[
  {
    "path": ".editorconfig",
    "content": "# EditorConfig helps developers define and maintain consistent\n# coding styles between different editors and IDEs\n# editorconfig.org\n\nroot = true\n\n[*]\n# change these settings to your own preference\nindent_style = space\nindent_size = 4\n\n# we recommend you to keep these unchanged\nend_of_line = lf\ncharset = utf-8\ntrim_trailing_whitespace = true\ninsert_final_newline = true\n\n[*.{md,markdown}]\ntrim_trailing_whitespace = false\n\n[.github/workflows/*.{yaml,yml}]\nindent_size = 2\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-提交-简体中文-.md",
    "content": "---\nname: Bug 提交（简体中文）\nabout: 提交 BUG\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\n感谢您提交议题！请补充以下内容，以便我们能更好地协助您：\n提交议题前确保您已阅读[常见问题（FAQ）](https://github.com/maboloshi/github-chinese/issues/493)\n\n### 问题/建议的具体描述\n\n### 操作步骤或重现方式（如有带上测试链接）\n\n### 预期行为与实际表现\n\n### 相关截图或附件（如有）\n\n### 您使用的浏览器类型、脚本管理器及插件版本（不再接受 1.9.2 版本反馈）\n\n- 浏览器类型及版本：\n- 脚本管理器及版本：\n- GitHub 中文化插件版本:\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug-提交-繁體中文-.md",
    "content": "---\nname: Bug 提交（繁體中文）\nabout: 提交 BUG\ntitle: ''\nlabels: bug\nassignees: ''\n\n---\n\n感謝您提交議題！請補充以下內容，以便我們能更好地協助您：\n提交議題前確保您已閲讀[常見問題（FAQ）](https://github.com/maboloshi/github-chinese/issues/493)\n\n### 問題/建議的具體描述\n\n### 操作步驟或重現方式（如有帶上測試連結）\n\n### 預期行為與實際表現\n\n### 相關截圖或附件（如有）\n\n### 您使用的瀏覽器類型、腳本管理器及插件版本（不再接受 1.9.2 版本反饋）\n\n- 瀏覽器類型及版本：\n- 腳本管理器及版本：\n- GitHub 中文化插件版本:\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/config.yml",
    "content": "blank_issues_enabled: false\n"
  },
  {
    "path": ".github/copilot-instructions.md",
    "content": "When performing a code review, respond in Chinese.\n"
  },
  {
    "path": ".github/dependabot.yml",
    "content": "# To get started with Dependabot version updates, you'll need to specify which\n# package ecosystems to update and where the package manifests are located.\n# Please see the documentation for all configuration options:\n# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file\n\nversion: 2\nupdates:\n  - package-ecosystem: \"\" # See documentation for possible values\n    directory: \"/\" # Location of package manifests\n    schedule:\n      interval: \"weekly\"\n"
  },
  {
    "path": ".github/workflows/locals(greasyfork).js_update.yaml",
    "content": "name: main(greasyfork).user.js and locals(greasyfork).js update\non:\n  schedule:\n    # 每周四的UTC时间16点（北京时间周五凌晨0点）\n    - cron: \"0 16 * * 4\"\n  workflow_dispatch:\n\npermissions:\n  contents: write\n\njobs:\n  update_version:\n    runs-on: ubuntu-latest\n    environment: github-pages\n    steps:\n      - name: Generate a token\n        id: generate_token\n        uses: actions/create-github-app-token@v2\n        with:\n          app-id: ${{ vars.APP_ID }}\n          private-key: ${{ secrets.APP_PRIVATE_KEY }}\n\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Sync update locals(greasyfork).js\n        run: |\n          # 获得最近以`main.user.js Update to version`开头的提交的引用\n          ref=$(git log --grep=\"^main.user.js Update to\" -n 1 --pretty=format:\"%H\")\n\n          # 获取该提交中`locals.js`的文件时间, 并设置环境变量\n          locals_js_time=$(git log -1 --format=%at $ref -- locals.js)\n          echo \"locals_js_time=$locals_js_time\" >> $GITHUB_ENV\n\n          # 从该提交中提取文件`locals.js`并覆写到本地文件`locals(greasyfork).js`\n          git show $ref:locals.js > \"locals(greasyfork).js\"\n\n          git diff --quiet --exit-code \"locals(greasyfork).js\" || \\\n          echo \"LOCALS_JS_CHANGED=true\" >> $GITHUB_ENV\n\n      - name: Update version in main(greasyfork).user.js\n        if: |\n          ${{ env.LOCALS_JS_CHANGED == 'true' }}\n        run: |\n          # 使用`locals.js`的文件日期为词库版本号\n          locals_js_date=$(TZ='Asia/Shanghai' date -d \"@${{ env.locals_js_time }}\" +'%Y-%m-%d')\n          sed -i -E \"\n            s/(@version\\s*([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n            s/(@require.+435207-github-.+.js\\?v([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n          \" \"main(greasyfork).user.js\"\n\n          git diff --quiet --exit-code \"main(greasyfork).user.js\" || \\\n          echo \"MAIN_USER_JS_CHANGED=true\" >> $GITHUB_ENV\n\n      - name: Commit and push locals(greasyfork).js and main(greasyfork).user.js\n        if: ${{ env.LOCALS_JS_CHANGED == 'true' &&\n                env.MAIN_USER_JS_CHANGED == 'true' }}\n        env:\n          GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}\n          APP_SLUG: ${{ steps.generate_token.outputs.app-slug }}\n        run: |\n          version=$(sed -n -E 's/^\\/\\/ @version\\s+(.+)/\\1/p' \"main(greasyfork).user.js\")\n          bash script/ci_commit_with_signature.sh \\\n          -R \"${{ github.repository }}\" \\\n          -B \"${{ github.ref_name }}\" \\\n          -P \"${{ github.sha }}\" \\\n          -F \"locals(greasyfork).js, main(greasyfork).user.js\" \\\n          -h \"main(greasyfork).user.js Sync Thesaurus to $version\"\n"
  },
  {
    "path": ".github/workflows/main.user.js_version_update_and_sync_zh-TW.yaml",
    "content": "name: main.user.js version update & sync zh-TW\non:\n  schedule:\n    # 每周日的UTC时间16点（北京时间周一凌晨0点）\n    - cron: \"0 16 * * 0\"\n  workflow_dispatch:\n\npermissions:\n  contents: write\n\njobs:\n  update_main:\n    runs-on: ubuntu-latest\n    environment: github-pages\n    outputs:\n      locals_js_date: ${{ steps.version_update.outputs.locals_js_date }}\n      oid: ${{ steps.api_commit.outputs.oid }}\n    steps:\n      - name: Generate a token\n        id: generate_token\n        uses: actions/create-github-app-token@v2\n        with:\n          app-id: ${{ vars.APP_ID }}\n          private-key: ${{ secrets.APP_PRIVATE_KEY }}\n\n      - name: Checkout repository\n        uses: actions/checkout@v4\n        with:\n          fetch-depth: 0\n\n      - name: Test if locals.js has changed since the last release\n        id: detect_locals_js_changes\n        run: |\n          # 最近提交是否存在tag\n          if [ ! \"$(git tag --contains ${{ github.sha }})\" ]; then\n            # 获得最近以`main.user.js Update to`开头的提交的sha和时间戳\n            release_commit_sha=$(git log --grep=\"^main.user.js Update to\" -n 1 --pretty=format:\"%H\")\n            release_commit_timestamp=$(git show -s --format=%ct $release_commit_sha)\n\n            # 最近的tag对应提交的sha和时间戳\n            latest_tag_commit_sha=$(git rev-list --tags --max-count=1)\n            latest_tag_commit_timestamp=$(git show -s --format=%ct $latest_tag_commit_sha)\n\n            if [ $release_commit_timestamp -gt $latest_tag_commit_timestamp ]; then\n              ref=$release_commit_sha\n            else\n              ref=$latest_tag_commit_sha\n            fi\n\n            # 如果 locals.js 变化，设置环境变量\n            git diff --quiet --exit-code $ref locals.js || \\\n            echo \"LOCALS_JS_CHANGED=true\" >> $GITHUB_ENV\n          fi\n\n      # 如果 locals.js 没有变化，直接跳过后续步骤\n      - name: Exit if no changes in locals.js\n        if: env.LOCALS_JS_CHANGED != 'true'\n        run: echo \"No changes in locals.js, exiting...\"\n\n      - name: Update version in main.user.js\n        id: version_update\n        if: env.LOCALS_JS_CHANGED == 'true'\n        run: |\n          # 获取最后一次提交中`locals.js`的文件时间\n          locals_js_time=$(git log -1 --format=%at -- locals.js)\n\n          # 使用`locals.js`的文件日期为词库版本号\n          locals_js_date=$(TZ='Asia/Shanghai' date -d \"@$locals_js_time\" +'%Y-%m-%d')\n          echo \"locals_js_date=$locals_js_date\" >> $GITHUB_OUTPUT\n\n          # 更新 main.user.js\n          sed -i -E \"\n            s/(@version\\s*([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n            s/(@require.+locals\\.js\\?v([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n          \" main.user.js\n\n          # 如果 main.user.js 变化，设置环境变量\n          git diff --quiet --exit-code main.user.js || \\\n          echo \"MAIN_USER_JS_CHANGED=true\" >> $GITHUB_ENV\n\n      - name: Commit and push main.user.js\n        id: api_commit\n        if: env.LOCALS_JS_CHANGED == 'true' && env.MAIN_USER_JS_CHANGED == 'true'\n        env:\n          GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}\n          APP_SLUG: ${{ steps.generate_token.outputs.app-slug }}\n        run: |\n          version=$(sed -n -E 's/^\\/\\/ @version\\s+(.+)/\\1/p' main.user.js)\n          oid=$(bash script/ci_commit_with_signature.sh \\\n            -R \"${{ github.repository }}\" \\\n            -B \"${{ github.ref_name }}\" \\\n            -P \"${{ github.sha }}\" \\\n            -F \"main.user.js\" \\\n            -h \"main.user.js Update to $version\" | tee >(cat >&2) | grep -oP '✅ 请求成功，SHA: \\K[a-f0-9]{40}')\n\n          # 验证SHA格式\n          if [[ \"$oid\" =~ ^[a-f0-9]{40}$ ]]; then\n            echo \"oid=$oid\" >> $GITHUB_OUTPUT\n          fi\n\n  sync_zh_tw:\n    runs-on: ubuntu-latest\n    if: success() && needs.update_main.outputs.oid\n    needs: update_main\n    environment: github-pages\n    steps:\n      - name: Checkout files\n        uses: actions/checkout@v4\n        with:\n          ref: ${{ needs.update_main.outputs.oid }}\n\n      - name: Generate token\n        id: generate_token\n        uses: actions/create-github-app-token@v2\n        with:\n          app-id: ${{ vars.APP_ID }}\n          private-key: ${{ secrets.APP_PRIVATE_KEY }}\n\n      - name: Cache apt packages\n        uses: actions/cache@v4\n        with:\n          path: |\n            /var/cache/apt/archives/*.deb\n            !/var/cache/apt/archives/partial\n            !/var/cache/apt/archives/lock\n          key: apt-${{ runner.os }}-${{ hashFiles('**/apt-packages.txt') }}\n          restore-keys: |\n            apt-${{ runner.os }}-\n\n      - name: Install OpenCC\n        run: |\n          sudo apt-get update\n          sudo apt-get install -y opencc\n\n      - name: Sync locals.js -> locals_zh-TW.js\n        run: |\n          opencc -i locals.js -o locals_zh-TW.js -c s2tw.json\n          perl ./script/t2s-convert.pl -v locals_zh-TW.js\n\n      - name: Update version in main_zh-TW.user.js\n        run: |\n          # 同步版本号\n          locals_js_date=\"${{ needs.update_main.outputs.locals_js_date }}\"\n          sed -i -E \"\n            s/(@version\\s*([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n            s/(@require.+locals_zh-TW.js\\?v([0-9]+\\.){2}[0-9]+)(-[0-9]{4}-[0-9]{2}-[0-9]{2})?/\\1-$locals_js_date/\n          \" main_zh-TW.user.js\n\n      - name: Commit and push main_zh-TW.user.js, locals_zh-TW.js\n        env:\n          GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}\n          APP_SLUG: ${{ steps.generate_token.outputs.app-slug }}\n        run: |\n          version=$(sed -n -E 's/^\\/\\/ @version\\s+(.+)/\\1/p' main_zh-TW.user.js)\n          bash script/ci_commit_with_signature.sh \\\n            -R \"${{ github.repository }}\" \\\n            -B \"${{ github.ref_name }}\" \\\n            -P \"${{ needs.update_main.outputs.oid }}\" \\\n            -F \"main_zh-TW.user.js, locals_zh-TW.js\" \\\n            -h \"main_zh-TW.user.js Sync Thesaurus to $version\"\n"
  },
  {
    "path": ".github/workflows/remove_dup.yml",
    "content": "name: 词条去重\n\non:\n  workflow_dispatch:\n\njobs:\n  clean:\n    name: 词条去重\n    runs-on: ubuntu-latest\n    steps:\n      - name: 拉取仓库\n        uses: actions/checkout@v4\n\n      - name: 去重\n        run: |\n          python script/rd.py\n\n      - name: 提交\n        run: |\n          git config --global user.name \"github-actions[bot]\"\n          git config --global user.email \"github-actions[bot]@users.noreply.github.com\"\n          git add .\n          git commit -m \"词条去重\"\n          git push"
  },
  {
    "path": ".github/workflows/update_contributors_images.yml",
    "content": "name: Update contributors images in README.md\non:\n  workflow_dispatch:\n\npermissions:\n  contents: write\n\njobs:\n  build-deploy:\n    runs-on: ubuntu-latest\n    environment: github-pages\n    steps:\n      - name: Generate a token\n        id: generate_token\n        uses: actions/create-github-app-token@v1\n        with:\n          app-id: ${{ vars.APP_ID }}\n          private-key: ${{ secrets.APP_PRIVATE_KEY }}\n\n      - name: Checkout repository\n        uses: actions/checkout@v4\n\n      - name: Generate Contributors Images\n        uses: jaywcjlove/github-action-contributors@v1.3.5\n        id: contributors\n        with:\n          filter-author: (action-assistant\\[bot\\]|renovate\\[bot\\]|renovate-bot|@github-actions-bot|dependabot\\[bot\\]|ImgBotApp|imgbot\\[bot\\])\n          avatarSize: 42\n\n      - name: Modify README.md\n        run: |\n          escapedHtmlList=$(echo -e '${{steps.contributors.outputs.htmlList}}' | sed ':a;N;$!ba;s/\\n/\\\\n/g;s/\\\\n$//')\n          openDelimiter='<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-->'\n          closeDelimiter='<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-END-->'\n          sed -i \"/$openDelimiter/,/$closeDelimiter/c\\\\$openDelimiter$escapedHtmlList$closeDelimiter\" README.md\n          git diff --quiet --exit-code README.md || echo \"CHANGES_DETECTED=true\" >> $GITHUB_ENV\n\n      - name: Commit and push README.md\n        if: ${{ env.CHANGES_DETECTED == 'true' }}\n        env:\n          GITHUB_TOKEN: ${{ steps.generate_token.outputs.token }}\n          APP_SLUG: ${{ steps.generate_token.outputs.app-slug }}\n        run: |\n          bash script/ci_commit_with_signature.sh \\\n          -R \"${{ github.repository }}\" \\\n          -B \"${{ github.ref_name }}\" \\\n          -P \"${{ github.sha }}\" \\\n          -F \"README.md\" \\\n          -h \"修改文档: 更新\\`贡献者列表\\`\"\n"
  },
  {
    "path": ".gitignore",
    "content": "!.gitignore\n\n# windows thumbnail cache\nThumbs.db\nDesktop.ini\n\n# Mac DS_Store Files\n.DS_Store\n\n# webstorm\n.idea\n\nmain(local).js"
  },
  {
    "path": "LICENSE",
    "content": "                    GNU 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                            Preamble\n\n  The GNU General Public License is a free, copyleft license for\nsoftware and other kinds of works.\n\n  The licenses for most software and other practical works are designed\nto take away your freedom to share and change the works.  By contrast,\nthe GNU General Public License is intended to guarantee your freedom to\nshare and change all versions of a program--to make sure it remains free\nsoftware for all its users.  We, the Free Software Foundation, use the\nGNU General Public License for most of our software; it applies also to\nany other work released this way by its authors.  You can apply it to\nyour programs, too.\n\n  When we speak of free software, we are referring to freedom, not\nprice.  Our General Public Licenses are designed to make sure that you\nhave the freedom to distribute copies of free software (and charge for\nthem if you wish), that you receive source code or can get it if you\nwant it, that you can change the software or use pieces of it in new\nfree programs, and that you know you can do these things.\n\n  To protect your rights, we need to prevent others from denying you\nthese rights or asking you to surrender the rights.  Therefore, you have\ncertain responsibilities if you distribute copies of the software, or if\nyou modify it: responsibilities to respect the freedom of others.\n\n  For example, if you distribute copies of such a program, whether\ngratis or for a fee, you must pass on to the recipients the same\nfreedoms that you received.  You must make sure that they, too, receive\nor can get the source code.  And you must show them these terms so they\nknow their rights.\n\n  Developers that use the GNU GPL protect your rights with two steps:\n(1) assert copyright on the software, and (2) offer you this License\ngiving you legal permission to copy, distribute and/or modify it.\n\n  For the developers' and authors' protection, the GPL clearly explains\nthat there is no warranty for this free software.  For both users' and\nauthors' sake, the GPL requires that modified versions be marked as\nchanged, so that their problems will not be attributed erroneously to\nauthors of previous versions.\n\n  Some devices are designed to deny users access to install or run\nmodified versions of the software inside them, although the manufacturer\ncan do so.  This is fundamentally incompatible with the aim of\nprotecting users' freedom to change the software.  The systematic\npattern of such abuse occurs in the area of products for individuals to\nuse, which is precisely where it is most unacceptable.  Therefore, we\nhave designed this version of the GPL to prohibit the practice for those\nproducts.  If such problems arise substantially in other domains, we\nstand ready to extend this provision to those domains in future versions\nof the GPL, as needed to protect the freedom of users.\n\n  Finally, every program is threatened constantly by software patents.\nStates should not allow patents to restrict development and use of\nsoftware on general-purpose computers, but in those that do, we wish to\navoid the special danger that patents applied to a free program could\nmake it effectively proprietary.  To prevent this, the GPL assures that\npatents cannot be used to render the program non-free.\n\n  The precise terms and conditions for copying, distribution and\nmodification follow.\n\n                       TERMS AND CONDITIONS\n\n  0. Definitions.\n\n  \"This License\" refers to version 3 of the GNU General Public License.\n\n  \"Copyright\" also means copyright-like laws that apply to other kinds of\nworks, such as semiconductor masks.\n\n  \"The Program\" refers to any copyrightable work licensed under this\nLicense.  Each licensee is addressed as \"you\".  \"Licensees\" and\n\"recipients\" may be individuals or organizations.\n\n  To \"modify\" a work means to copy from or adapt all or part of the work\nin a fashion requiring copyright permission, other than the making of an\nexact copy.  The resulting work is called a \"modified version\" of the\nearlier work or a work \"based on\" the earlier work.\n\n  A \"covered work\" means either the unmodified Program or a work based\non the Program.\n\n  To \"propagate\" a work means to do anything with it that, without\npermission, would make you directly or secondarily liable for\ninfringement under applicable copyright law, except executing it on a\ncomputer or modifying a private copy.  Propagation includes copying,\ndistribution (with or without modification), making available to the\npublic, and in some countries other activities as well.\n\n  To \"convey\" a work means any kind of propagation that enables other\nparties to make or receive copies.  Mere interaction with a user through\na computer network, with no transfer of a copy, is not conveying.\n\n  An interactive user interface displays \"Appropriate Legal Notices\"\nto the extent that it includes a convenient and prominently visible\nfeature that (1) displays an appropriate copyright notice, and (2)\ntells the user that there is no warranty for the work (except to the\nextent that warranties are provided), that licensees may convey the\nwork under this License, and how to view a copy of this License.  If\nthe interface presents a list of user commands or options, such as a\nmenu, a prominent item in the list meets this criterion.\n\n  1. Source Code.\n\n  The \"source code\" for a work means the preferred form of the work\nfor making modifications to it.  \"Object code\" means any non-source\nform of a work.\n\n  A \"Standard Interface\" means an interface that either is an official\nstandard defined by a recognized standards body, or, in the case of\ninterfaces specified for a particular programming language, one that\nis widely used among developers working in that language.\n\n  The \"System Libraries\" of an executable work include anything, other\nthan the work as a whole, that (a) is included in the normal form of\npackaging a Major Component, but which is not part of that Major\nComponent, and (b) serves only to enable use of the work with that\nMajor Component, or to implement a Standard Interface for which an\nimplementation is available to the public in source code form.  A\n\"Major Component\", in this context, means a major essential component\n(kernel, window system, and so on) of the specific operating system\n(if any) on which the executable work runs, or a compiler used to\nproduce the work, or an object code interpreter used to run it.\n\n  The \"Corresponding Source\" for a work in object code form means all\nthe source code needed to generate, install, and (for an executable\nwork) run the object code and to modify the work, including scripts to\ncontrol those activities.  However, it does not include the work's\nSystem Libraries, or general-purpose tools or generally available free\nprograms which are used unmodified in performing those activities but\nwhich are not part of the work.  For example, Corresponding Source\nincludes interface definition files associated with source files for\nthe work, and the source code for shared libraries and dynamically\nlinked subprograms that the work is specifically designed to require,\nsuch as by intimate data communication or control flow between those\nsubprograms and other parts of the work.\n\n  The Corresponding Source need not include anything that users\ncan regenerate automatically from other parts of the Corresponding\nSource.\n\n  The Corresponding Source for a work in source code form is that\nsame work.\n\n  2. Basic Permissions.\n\n  All rights granted under this License are granted for the term of\ncopyright on the Program, and are irrevocable provided the stated\nconditions are met.  This License explicitly affirms your unlimited\npermission to run the unmodified Program.  The output from running a\ncovered work is covered by this License only if the output, given its\ncontent, constitutes a covered work.  This License acknowledges your\nrights of fair use or other equivalent, as provided by copyright law.\n\n  You may make, run and propagate covered works that you do not\nconvey, without conditions so long as your license otherwise remains\nin force.  You may convey covered works to others for the sole purpose\nof having them make modifications exclusively for you, or provide you\nwith facilities for running those works, provided that you comply with\nthe terms of this License in conveying all material for which you do\nnot control copyright.  Those thus making or running the covered works\nfor you must do so exclusively on your behalf, under your direction\nand control, on terms that prohibit them from making any copies of\nyour copyrighted material outside their relationship with you.\n\n  Conveying under any other circumstances is permitted solely under\nthe conditions stated below.  Sublicensing is not allowed; section 10\nmakes it unnecessary.\n\n  3. Protecting Users' Legal Rights From Anti-Circumvention Law.\n\n  No covered work shall be deemed part of an effective technological\nmeasure under any applicable law fulfilling obligations under article\n11 of the WIPO copyright treaty adopted on 20 December 1996, or\nsimilar laws prohibiting or restricting circumvention of such\nmeasures.\n\n  When you convey a covered work, you waive any legal power to forbid\ncircumvention of technological measures to the extent such circumvention\nis effected by exercising rights under this License with respect to\nthe covered work, and you disclaim any intention to limit operation or\nmodification of the work as a means of enforcing, against the work's\nusers, your or third parties' legal rights to forbid circumvention of\ntechnological measures.\n\n  4. Conveying Verbatim Copies.\n\n  You may convey verbatim copies of the Program's source code as you\nreceive it, in any medium, provided that you conspicuously and\nappropriately publish on each copy an appropriate copyright notice;\nkeep intact all notices stating that this License and any\nnon-permissive terms added in accord with section 7 apply to the code;\nkeep intact all notices of the absence of any warranty; and give all\nrecipients a copy of this License along with the Program.\n\n  You may charge any price or no price for each copy that you convey,\nand you may offer support or warranty protection for a fee.\n\n  5. Conveying Modified Source Versions.\n\n  You may convey a work based on the Program, or the modifications to\nproduce it from the Program, in the form of source code under the\nterms of section 4, provided that you also meet all of these conditions:\n\n    a) The work must carry prominent notices stating that you modified\n    it, and giving a relevant date.\n\n    b) The work must carry prominent notices stating that it is\n    released under this License and any conditions added under section\n    7.  This requirement modifies the requirement in section 4 to\n    \"keep intact all notices\".\n\n    c) You must license the entire work, as a whole, under this\n    License to anyone who comes into possession of a copy.  This\n    License will therefore apply, along with any applicable section 7\n    additional terms, to the whole of the work, and all its parts,\n    regardless of how they are packaged.  This License gives no\n    permission to license the work in any other way, but it does not\n    invalidate such permission if you have separately received it.\n\n    d) If the work has interactive user interfaces, each must display\n    Appropriate Legal Notices; however, if the Program has interactive\n    interfaces that do not display Appropriate Legal Notices, your\n    work need not make them do so.\n\n  A compilation of a covered work with other separate and independent\nworks, which are not by their nature extensions of the covered work,\nand which are not combined with it such as to form a larger program,\nin or on a volume of a storage or distribution medium, is called an\n\"aggregate\" if the compilation and its resulting copyright are not\nused to limit the access or legal rights of the compilation's users\nbeyond what the individual works permit.  Inclusion of a covered work\nin an aggregate does not cause this License to apply to the other\nparts of the aggregate.\n\n  6. Conveying Non-Source Forms.\n\n  You may convey a covered work in object code form under the terms\nof sections 4 and 5, provided that you also convey the\nmachine-readable Corresponding Source under the terms of this License,\nin one of these ways:\n\n    a) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by the\n    Corresponding Source fixed on a durable physical medium\n    customarily used for software interchange.\n\n    b) Convey the object code in, or embodied in, a physical product\n    (including a physical distribution medium), accompanied by a\n    written offer, valid for at least three years and valid for as\n    long as you offer spare parts or customer support for that product\n    model, to give anyone who possesses the object code either (1) a\n    copy of the Corresponding Source for all the software in the\n    product that is covered by this License, on a durable physical\n    medium customarily used for software interchange, for a price no\n    more than your reasonable cost of physically performing this\n    conveying of source, or (2) access to copy the\n    Corresponding Source from a network server at no charge.\n\n    c) Convey individual copies of the object code with a copy of the\n    written offer to provide the Corresponding Source.  This\n    alternative is allowed only occasionally and noncommercially, and\n    only if you received the object code with such an offer, in accord\n    with subsection 6b.\n\n    d) Convey the object code by offering access from a designated\n    place (gratis or for a charge), and offer equivalent access to the\n    Corresponding Source in the same way through the same place at no\n    further charge.  You need not require recipients to copy the\n    Corresponding Source along with the object code.  If the place to\n    copy the object code is a network server, the Corresponding Source\n    may be on a different server (operated by you or a third party)\n    that supports equivalent copying facilities, provided you maintain\n    clear directions next to the object code saying where to find the\n    Corresponding Source.  Regardless of what server hosts the\n    Corresponding Source, you remain obligated to ensure that it is\n    available for as long as needed to satisfy these requirements.\n\n    e) Convey the object code using peer-to-peer transmission, provided\n    you inform other peers where the object code and Corresponding\n    Source of the work are being offered to the general public at no\n    charge under subsection 6d.\n\n  A separable portion of the object code, whose source code is excluded\nfrom the Corresponding Source as a System Library, need not be\nincluded in conveying the object code work.\n\n  A \"User Product\" is either (1) a \"consumer product\", which means any\ntangible personal property which is normally used for personal, family,\nor household purposes, or (2) anything designed or sold for incorporation\ninto a dwelling.  In determining whether a product is a consumer product,\ndoubtful cases shall be resolved in favor of coverage.  For a particular\nproduct received by a particular user, \"normally used\" refers to a\ntypical or common use of that class of product, regardless of the status\nof the particular user or of the way in which the particular user\nactually uses, or expects or is expected to use, the product.  A product\nis a consumer product regardless of whether the product has substantial\ncommercial, industrial or non-consumer uses, unless such uses represent\nthe only significant mode of use of the product.\n\n  \"Installation Information\" for a User Product means any methods,\nprocedures, authorization keys, or other information required to install\nand execute modified versions of a covered work in that User Product from\na modified version of its Corresponding Source.  The information must\nsuffice to ensure that the continued functioning of the modified object\ncode is in no case prevented or interfered with solely because\nmodification has been made.\n\n  If you convey an object code work under this section in, or with, or\nspecifically for use in, a User Product, and the conveying occurs as\npart of a transaction in which the right of possession and use of the\nUser Product is transferred to the recipient in perpetuity or for a\nfixed term (regardless of how the transaction is characterized), the\nCorresponding Source conveyed under this section must be accompanied\nby the Installation Information.  But this requirement does not apply\nif neither you nor any third party retains the ability to install\nmodified object code on the User Product (for example, the work has\nbeen installed in ROM).\n\n  The requirement to provide Installation Information does not include a\nrequirement to continue to provide support service, warranty, or updates\nfor a work that has been modified or installed by the recipient, or for\nthe User Product in which it has been modified or installed.  Access to a\nnetwork may be denied when the modification itself materially and\nadversely affects the operation of the network or violates the rules and\nprotocols for communication across the network.\n\n  Corresponding Source conveyed, and Installation Information provided,\nin accord with this section must be in a format that is publicly\ndocumented (and with an implementation available to the public in\nsource code form), and must require no special password or key for\nunpacking, reading or copying.\n\n  7. Additional Terms.\n\n  \"Additional permissions\" are terms that supplement the terms of this\nLicense by making exceptions from one or more of its conditions.\nAdditional permissions that are applicable to the entire Program shall\nbe treated as though they were included in this License, to the extent\nthat they are valid under applicable law.  If additional permissions\napply only to part of the Program, that part may be used separately\nunder those permissions, but the entire Program remains governed by\nthis License without regard to the additional permissions.\n\n  When you convey a copy of a covered work, you may at your option\nremove any additional permissions from that copy, or from any part of\nit.  (Additional permissions may be written to require their own\nremoval in certain cases when you modify the work.)  You may place\nadditional permissions on material, added by you to a covered work,\nfor which you have or can give appropriate copyright permission.\n\n  Notwithstanding any other provision of this License, for material you\nadd to a covered work, you may (if authorized by the copyright holders of\nthat material) supplement the terms of this License with terms:\n\n    a) Disclaiming warranty or limiting liability differently from the\n    terms of sections 15 and 16 of this License; or\n\n    b) Requiring preservation of specified reasonable legal notices or\n    author attributions in that material or in the Appropriate Legal\n    Notices displayed by works containing it; or\n\n    c) Prohibiting misrepresentation of the origin of that material, or\n    requiring that modified versions of such material be marked in\n    reasonable ways as different from the original version; or\n\n    d) Limiting the use for publicity purposes of names of licensors or\n    authors of the material; or\n\n    e) Declining to grant rights under trademark law for use of some\n    trade names, trademarks, or service marks; or\n\n    f) Requiring indemnification of licensors and authors of that\n    material by anyone who conveys the material (or modified versions of\n    it) with contractual assumptions of liability to the recipient, for\n    any liability that these contractual assumptions directly impose on\n    those licensors and authors.\n\n  All other non-permissive additional terms are considered \"further\nrestrictions\" within the meaning of section 10.  If the Program as you\nreceived it, or any part of it, contains a notice stating that it is\ngoverned by this License along with a term that is a further\nrestriction, you may remove that term.  If a license document contains\na further restriction but permits relicensing or conveying under this\nLicense, you may add to a covered work material governed by the terms\nof that license document, provided that the further restriction does\nnot survive such relicensing or conveying.\n\n  If you add terms to a covered work in accord with this section, you\nmust place, in the relevant source files, a statement of the\nadditional terms that apply to those files, or a notice indicating\nwhere to find the applicable terms.\n\n  Additional terms, permissive or non-permissive, may be stated in the\nform of a separately written license, or stated as exceptions;\nthe above requirements apply either way.\n\n  8. Termination.\n\n  You may not propagate or modify a covered work except as expressly\nprovided under this License.  Any attempt otherwise to propagate or\nmodify it is void, and will automatically terminate your rights under\nthis License (including any patent licenses granted under the third\nparagraph of section 11).\n\n  However, if you cease all violation of this License, then your\nlicense from a particular copyright holder is reinstated (a)\nprovisionally, unless and until the copyright holder explicitly and\nfinally terminates your license, and (b) permanently, if the copyright\nholder fails to notify you of the violation by some reasonable means\nprior to 60 days after the cessation.\n\n  Moreover, your license from a particular copyright holder is\nreinstated permanently if the copyright holder notifies you of the\nviolation by some reasonable means, this is the first time you have\nreceived notice of violation of this License (for any work) from that\ncopyright holder, and you cure the violation prior to 30 days after\nyour receipt of the notice.\n\n  Termination of your rights under this section does not terminate the\nlicenses of parties who have received copies or rights from you under\nthis License.  If your rights have been terminated and not permanently\nreinstated, you do not qualify to receive new licenses for the same\nmaterial under section 10.\n\n  9. Acceptance Not Required for Having Copies.\n\n  You are not required to accept this License in order to receive or\nrun a copy of the Program.  Ancillary propagation of a covered work\noccurring solely as a consequence of using peer-to-peer transmission\nto receive a copy likewise does not require acceptance.  However,\nnothing other than this License grants you permission to propagate or\nmodify any covered work.  These actions infringe copyright if you do\nnot accept this License.  Therefore, by modifying or propagating a\ncovered work, you indicate your acceptance of this License to do so.\n\n  10. Automatic Licensing of Downstream Recipients.\n\n  Each time you convey a covered work, the recipient automatically\nreceives a license from the original licensors, to run, modify and\npropagate that work, subject to this License.  You are not responsible\nfor enforcing compliance by third parties with this License.\n\n  An \"entity transaction\" is a transaction transferring control of an\norganization, or substantially all assets of one, or subdividing an\norganization, or merging organizations.  If propagation of a covered\nwork results from an entity transaction, each party to that\ntransaction who receives a copy of the work also receives whatever\nlicenses to the work the party's predecessor in interest had or could\ngive under the previous paragraph, plus a right to possession of the\nCorresponding Source of the work from the predecessor in interest, if\nthe predecessor has it or can get it with reasonable efforts.\n\n  You may not impose any further restrictions on the exercise of the\nrights granted or affirmed under this License.  For example, you may\nnot impose a license fee, royalty, or other charge for exercise of\nrights granted under this License, and you may not initiate litigation\n(including a cross-claim or counterclaim in a lawsuit) alleging that\nany patent claim is infringed by making, using, selling, offering for\nsale, or importing the Program or any portion of it.\n\n  11. Patents.\n\n  A \"contributor\" is a copyright holder who authorizes use under this\nLicense of the Program or a work on which the Program is based.  The\nwork thus licensed is called the contributor's \"contributor version\".\n\n  A contributor's \"essential patent claims\" are all patent claims\nowned or controlled by the contributor, whether already acquired or\nhereafter acquired, that would be infringed by some manner, permitted\nby this License, of making, using, or selling its contributor version,\nbut do not include claims that would be infringed only as a\nconsequence of further modification of the contributor version.  For\npurposes of this definition, \"control\" includes the right to grant\npatent sublicenses in a manner consistent with the requirements of\nthis License.\n\n  Each contributor grants you a non-exclusive, worldwide, royalty-free\npatent license under the contributor's essential patent claims, to\nmake, use, sell, offer for sale, import and otherwise run, modify and\npropagate the contents of its contributor version.\n\n  In the following three paragraphs, a \"patent license\" is any express\nagreement or commitment, however denominated, not to enforce a patent\n(such as an express permission to practice a patent or covenant not to\nsue for patent infringement).  To \"grant\" such a patent license to a\nparty means to make such an agreement or commitment not to enforce a\npatent against the party.\n\n  If you convey a covered work, knowingly relying on a patent license,\nand the Corresponding Source of the work is not available for anyone\nto copy, free of charge and under the terms of this License, through a\npublicly available network server or other readily accessible means,\nthen you must either (1) cause the Corresponding Source to be so\navailable, or (2) arrange to deprive yourself of the benefit of the\npatent license for this particular work, or (3) arrange, in a manner\nconsistent with the requirements of this License, to extend the patent\nlicense to downstream recipients.  \"Knowingly relying\" means you have\nactual knowledge that, but for the patent license, your conveying the\ncovered work in a country, or your recipient's use of the covered work\nin a country, would infringe one or more identifiable patents in that\ncountry that you have reason to believe are valid.\n\n  If, pursuant to or in connection with a single transaction or\narrangement, you convey, or propagate by procuring conveyance of, a\ncovered work, and grant a patent license to some of the parties\nreceiving the covered work authorizing them to use, propagate, modify\nor convey a specific copy of the covered work, then the patent license\nyou grant is automatically extended to all recipients of the covered\nwork and works based on it.\n\n  A patent license is \"discriminatory\" if it does not include within\nthe scope of its coverage, prohibits the exercise of, or is\nconditioned on the non-exercise of one or more of the rights that are\nspecifically granted under this License.  You may not convey a covered\nwork if you are a party to an arrangement with a third party that is\nin the business of distributing software, under which you make payment\nto the third party based on the extent of your activity of conveying\nthe work, and under which the third party grants, to any of the\nparties who would receive the covered work from you, a discriminatory\npatent license (a) in connection with copies of the covered work\nconveyed by you (or copies made from those copies), or (b) primarily\nfor and in connection with specific products or compilations that\ncontain the covered work, unless you entered into that arrangement,\nor that patent license was granted, prior to 28 March 2007.\n\n  Nothing in this License shall be construed as excluding or limiting\nany implied license or other defenses to infringement that may\notherwise be available to you under applicable patent law.\n\n  12. No Surrender of Others' Freedom.\n\n  If conditions are imposed on you (whether by court order, agreement or\notherwise) that contradict the conditions of this License, they do not\nexcuse you from the conditions of this License.  If you cannot convey a\ncovered work so as to satisfy simultaneously your obligations under this\nLicense and any other pertinent obligations, then as a consequence you may\nnot convey it at all.  For example, if you agree to terms that obligate you\nto collect a royalty for further conveying from those to whom you convey\nthe Program, the only way you could satisfy both those terms and this\nLicense would be to refrain entirely from conveying the Program.\n\n  13. Use with the GNU Affero General Public License.\n\n  Notwithstanding any other provision of this License, you have\npermission to link or combine any covered work with a work licensed\nunder version 3 of the GNU Affero General Public License into a single\ncombined work, and to convey the resulting work.  The terms of this\nLicense will continue to apply to the part which is the covered work,\nbut the special requirements of the GNU Affero General Public License,\nsection 13, concerning interaction through a network will apply to the\ncombination as such.\n\n  14. Revised Versions of this License.\n\n  The Free Software Foundation may publish revised and/or new versions of\nthe GNU General Public License from time to time.  Such new versions will\nbe similar in spirit to the present version, but may differ in detail to\naddress new problems or concerns.\n\n  Each version is given a distinguishing version number.  If the\nProgram specifies that a certain numbered version of the GNU General\nPublic License \"or any later version\" applies to it, you have the\noption of following the terms and conditions either of that numbered\nversion or of any later version published by the Free Software\nFoundation.  If the Program does not specify a version number of the\nGNU General Public License, you may choose any version ever published\nby the Free Software Foundation.\n\n  If the Program specifies that a proxy can decide which future\nversions of the GNU General Public License can be used, that proxy's\npublic statement of acceptance of a version permanently authorizes you\nto choose that version for the Program.\n\n  Later license versions may give you additional or different\npermissions.  However, no additional obligations are imposed on any\nauthor or copyright holder as a result of your choosing to follow a\nlater version.\n\n  15. Disclaimer of Warranty.\n\n  THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW.  EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT\nHOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM \"AS IS\" WITHOUT WARRANTY\nOF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,\nTHE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\nPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM\nIS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF\nALL NECESSARY SERVICING, REPAIR OR CORRECTION.\n\n  16. Limitation of Liability.\n\n  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING\nWILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS\nTHE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY\nGENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE\nUSE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF\nDATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD\nPARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),\nEVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF\nSUCH DAMAGES.\n\n  17. Interpretation of Sections 15 and 16.\n\n  If the disclaimer of warranty and limitation of liability provided\nabove cannot be given local legal effect according to their terms,\nreviewing courts shall apply local law that most closely approximates\nan absolute waiver of all civil liability in connection with the\nProgram, unless a warranty or assumption of liability accompanies a\ncopy of the Program in return for a fee.\n\n                     END OF TERMS AND CONDITIONS\n\n            How to Apply These Terms to Your New Programs\n\n  If you develop a new program, and you want it to be of the greatest\npossible use to the public, the best way to achieve this is to make it\nfree software which everyone can redistribute and change under these terms.\n\n  To do so, attach the following notices to the program.  It is safest\nto attach them to the start of each source file to most effectively\nstate the exclusion of warranty; and each file should have at least\nthe \"copyright\" line and a pointer to where the full notice is found.\n\n    <one line to give the program's name and a brief idea of what it does.>\n    Copyright (C) <year>  <name of author>\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\nAlso add information on how to contact you by electronic and paper mail.\n\n  If the program does terminal interaction, make it output a short\nnotice like this when it starts in an interactive mode:\n\n    <program>  Copyright (C) <year>  <name of author>\n    This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.\n    This is free software, and you are welcome to redistribute it\n    under certain conditions; type `show c' for details.\n\nThe hypothetical commands `show w' and `show c' should show the appropriate\nparts of the General Public License.  Of course, your program's commands\nmight be different; for a GUI interface, you would use an \"about box\".\n\n  You should also get your employer (if you work as a programmer) or school,\nif any, to sign a \"copyright disclaimer\" for the program, if necessary.\nFor more information on this, and how to apply and follow the GNU GPL, see\n<https://www.gnu.org/licenses/>.\n\n  The GNU General Public License does not permit incorporating your program\ninto proprietary programs.  If your program is a subroutine library, you\nmay consider it more useful to permit linking proprietary applications with\nthe library.  If this is what you want to do, use the GNU Lesser General\nPublic License instead of this License.  But first, please read\n<https://www.gnu.org/licenses/why-not-lgpl.html>.\n"
  },
  {
    "path": "README.md",
    "content": "<div align=\"center\"><a name=\"readme-top\"></a>\n\n# [GitHub 中文化插件][github-project-link]\n\n> 让 GitHub 界面全面中文化 | 源自 [52cik/github-hans](https://github.com/52cik/github-hans)\n\n**简体中文** · [繁體中文](./README_zh-TW.md) · [反馈问题][github-issues-link]\n\n<!-- SHIELD GROUP -->\n\n[![GitHub stars][github-stars-shield]][github-stars-link]\n[![GitHub forks][github-forks-shield]][github-forks-link]\n[![GitHub issues][github-issues-shield]][github-issues-link]\n[![license GPL-3.0][github-license-shield]][github-license-link]\n[![GreasyFork installs][greasyFork-shield]][greasyFork-link]\n\n<a href=\"https://hellogithub.com/repository/738d0abae49543f18d887a7e29ec9e90\" target=\"_blank\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=dark\" />\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=neutral\" />\n    <img alt=\"Featured｜HelloGitHub\" src=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=neutral\" style=\"width: 250px; height: 54px;\" />\n  </picture>\n</a>\n\n</div>\n\n> [!warning]\n> 本项目从未发布至 GitCode，如您发现请截图并保留证据\n\n<details>\n<summary><kbd>目录树</kbd></summary>\n\n#### TOC\n- [🌟 功能特性](#-功能特性)\n- [🌐 兼容环境](#-兼容环境)\n- [💻 安装指南](#-安装指南)\n- [🔧 本地调试](#-本地调试)\n- [🔄 更新日志](#-更新日志)\n- [📌 待办事项](#-待办事项)\n- [🤝 参与贡献](#-参与贡献)\n- [🖼️ 效果预览](#-效果预览)\n- [🙏 特别鸣谢](#-特别鸣谢)\n- [📈 项目统计](#-项目统计)\n- [🎁 欢迎打赏](#-欢迎打赏)\n</details>\n\n## 🌟 功能特性\n\n- [x] 全面中文化 GitHub 界面元素（菜单栏、标题、按钮等）\n- [x] 智能正则匹配功能\n- [x] 支持项目描述的人机翻译\n- [x] 自动本地化时间元素\n- [x] 持续更新词库\n\n## 🌐 兼容环境\n\n浏览器类型           | 支持的脚本管理器\n:------------------: | :---------------:\nChrome / Chromium 内核 | [Tampermonkey][Tampermonkey], [Violentmonkey][Violentmonkey]\nSafari（全平台）     | [Tampermonkey][Tampermonkey], [Macaque][Macaque], [Stay][Stay]\nFirefox / Gecko 内核   | [Tampermonkey][Tampermonkey], [Violentmonkey][Violentmonkey]\nVia（Android）       | 内置管理器\n\n## 💻 安装指南\n\n1. 安装用户脚本管理器：\n    - 推荐：[Tampermonkey][Tampermonkey]\n1. **基于 Chrome / Chromium 内核浏览器：**\n    1. 务必开启 “扩展程序” 管理中的 **“开发者模式”**[^1]\n    1. 务必开启 “扩展程序” 管理中脚本管理器扩展的 **“允许运行用户脚本”**\n    1. 具体可参考 [Tampermonkey 官方指引](https://www.tampermonkey.net/faq.php#Q209)\n1. 选择安装源：\n    - [GitHub 源【开发版】][main.user.js]\n    - [GreasyFork 源【稳定版】][main(greasyfork).user.js]\n1. 刷新页面后，插件即可生效\n1. 必要时，重启浏览器\n\n[^1]: [Chrome 切换到 Manifest V3后，使用问题](https://github.com/maboloshi/github-chinese/issues/234)\n\n> [!NOTE]\n> **版本说明**：\n> - 🚀 开发版：实时更新，每周五自动更新词库\n> - 🛡️ 稳定版：每周一同步开发版词库，更稳定\n\n## 🔧 本地调试\n\n1. 安装 [Tampermonkey][Tampermonkey]，并启用 “允许访问文件网址”。\n1. 下载词库文件到本地（如：`D:\\github-chinese\\locals.js`）\n1. 在脚本管理器中修改引用路径：\n   ```js\n   // 原始路径\n   // @require https://raw.githubusercontent.com/...\n   \n   // 修改为\n   // @require file:///D:/github-chinese/locals.js\n   ```\n1. 刷新页面生效\n\n> [!IMPORTANT]\n> **若无效：**\n> 1. 进入 [Tampermonkey][Tampermonkey] 插件`设置页`\n> 1. 将 `通用 - 配置模式` 设置为`高级`，进入高级设置模式\n> 1. 找到 `安全 - 允许脚本访问本地文件` 并设置为 `外部(@require 和 @resource)`\n\n> [!TIP]\n> 💡 **温馨提示：** 您可以将词库文件拖拽至浏览器地址栏，复制路径直接使用。\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 🔄 更新日志\n\n### 最新版本\n\n#### v1.9.3 (2024-08-18)\n\n1. 新增功能：通过设置中文环境，自动本地化时间元素，仅保留`on`开头的时间正则，并停用时间元素监视\n1. 优化突变翻译处理：\n   - 引入`characterDataPage`规则，对特定页面启用`筛选字符数据`的变更\n   - 引入`ignoreMutationSelectorPage`规则，忽略特定突变元素\n1. 合并`reIgnoreClass，reIgnoreItemprop，ignoreId，ignoreTag`为`ignoreSelectorPage`规则，处理全局及特定页面，忽略特定元素\n1. 引入全局缓存模式，减少重复构建包括不限于基于`page`变化的忽略规则、正则规则数组等\n1. 调整：更新讯飞听见翻译引擎v2.0\n1. 优化：梳理、优化脚本\n1. 调整：调整词库语言代码为`zh-CN`, 与环境语言设置一致\n\n<details><summary><kbd>查看更多历史版本</kbd></summary>\n\n#### v1.9.2 (2024-06-14)\n\n1. 适配`www.githubstatus.com`\n1. 适配`skills.github.com`\n\n#### v1.9.1 (2024-05-23)\n\n1. 更新`切换正则功能按钮`\n\n#### v1.9.0 (2023-12-09)\n\n1. 重新定义版本号规则, 如`1.9.0-2023-12-09`。\n   - `1.9.0`: 主版本号（由项目所有者更新）\n   - `2023-12-09`：`词库`发布版本号（由 GitHub Action 自动更新）\n1. 加强: [GitHub 源【开发版】][main.user.js]每周一凌晨自动更新`词库`发布版本号\n1. 加强: [GreasyFork 源【稳定版】][main(greasyfork).user.js]每周五凌晨自动更新`词库`发布版本号, 词库内容同上一次[GitHub 源【开发版】][main.user.js]\n1. 加强：在 `README.md` 中自动更新贡献者头像\n1. 更新: 忽略规则, 词条等\n\n#### v1.8.5 (2023-08-31)\n\n1. 优化: `transDesc 函数`代码\n1. 修复: 重复添加`translate-me`翻译按钮\n1. 加强：`watchUpdate 函数`新增节点文本更新的情况\n1. 调整: `transBySelector和transDesc函数`延迟执行时间\n1. 更新: 忽略规则, 词条等\n\n#### v1.8.4 (2023-08-08)\n\n1. 修复: `Itemprop`过滤规则, 依然使用正则方式\n1. 修复: `tooltipped`样式提示, 依然使用正则方式\n\n#### v1.8.3 (2023-08-07)\n\n1. 梳理、优化脚本\n1. 更新: 忽略规则, 大量词条等\n\n#### v1.8.2 (2023-05-15)\n\n1. `greasyfork 托管`源切换到`按页面精细化词条模式`\n1. 调整词库格式\n1. 功能加强: 优化`元素筛选器`翻译逻辑\n1. 更新: 忽略规则, 大量词条等\n\n#### v1.8.1 (2023-01-22)\n\n1. 修复: #8 与 dark reader 扩展发生冲突，导致时间显示出现问题\n1. `GitHub`源开始切换到`按页面精细化词条模式(开发版)`, 词库未完全迁移适配\n1. 停止`greasyfork`源词库文件的同步更新\n\n#### v1.8.0 (2023-01-18)\n\n1. 删除: `TURBO-FRAME`框架处理代码. Github 已调整新动态加载模式, 直接检测`url`的变化就能获取对应的`page`信息\n1. 新增: 支持时间元素的`Shadow DOM`翻译, 并监听变化\n1. 新增: 启用并更新`时间元素翻译`专项正则词条\n1. 新增: 仅当`page`有效才翻译页面\n1. 修复: 原`简介翻译`引擎`GitHub中文社区`失效, 改为`讯飞`引擎(测试)\n1. 修复: 追加公共正则重复迭代的问题\n1. 修复: 正则标记变量`RegExp`与构造函数`new RegExp`冲突\n1. 更新: 忽略规则, 词条等\n\n预告, 下次将细化`page`匹配规则, 导致词库文件结构大调整, 词库文件会适当变大, 页面正则更精细效率会提升\n\n#### v1.7.9 (2022-07-17)\n\nGitHub 的 ajax 载入方式逐步从 [defunkt/jquery-pjax](https://github.com/defunkt/jquery-pjax) 切换到 [hotwired/turbo](turbo.hotwired.dev), 导致已有的动态监测方式逐步失效\n\n目前, 通过以下修复:\n\n1. 新增 `BODY` 元素新增监视\n1. 解析 `TURBO-FRAME` 框架, 获取对应的 `page`\n1. 修复 github 新动态加载模式, 导致`翻译描述`返回值无法插入\n1. 修复 github 新动态加载模式, 导致`chrome`浏览器自带翻译功能卡死页面\n\n其他更新:\n\n1. 修复`rePagePath`,`rePagePathRepo`,`rePagePathOrg`匹配规则，限制路径匹配层次，排除干扰\n1. 直接使用网页URL`document.URL`变化触发`标题翻译`和`JS 筛选器`翻译\n1. 修复`关闭正则`无法生效, 需要刷新页面才生效\n1. 日常更新词库和忽略规则\n1. 更新`JS 筛选器`规则\n\n#### v1.7.8 (2022-06-29)\n\n1. 紧急修复: GitHub 变更了`document.body`和`title`更新机制, 导致原有的`监测更新`规则部分失效, 目前使用`document.documentElement`监视整个页面 DOM 的变更\n1. 跳过`<HEAD>`标签\n1. `标题翻译`和`JS 筛选器`翻译, 依据 URL变化更新\n\n#### v1.7.7 (2022-06-26)\n\n1. 新增`时间元素翻译`功能\n1. 重写`页面标题翻译`函数\n1. 梳理`遍历节点`函数逻辑\n1. 优化`transPage`函数，默认翻译公共部分\n1. 调整`getPage`函数, 使`ClassName匹配规则`优先\n1. 优化`translate`函数, 跳过`不存在英文字母和符号,.`, 保留首尾空白部分等\n1. 部分函数重命名，使用`es6`新语法\n1. 日常更新词库和忽略规则，修复一个`JS 选择器规则`\n\n#### v1.7.6 (2022-05-12)\n\n1. 日常更新词库和忽略规则\n1. 添加手动开启/禁用正则翻译，添加切换菜单\n1. 优化翻译文本函数：避免已翻译词汇二次匹配，提高效率；局部翻译优先于全局\n\n</details>\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 📌 待办事项\n\n1. 添加 GitHub 专用名词解释\n1. 整理 [Git](https://git-scm.com/) & [GitHub](https://github.com/) 学习资料\n1. 完善文档翻译，需大家 PR 共同翻译\n\n## 🤝 参与贡献\n\n欢迎通过以下方式参与贡献：\n\n1. 完善词库翻译（编辑 `locals.js`）\n1. 提交议题报告，参与话题讨论\n1. 改进代码逻辑\n\n[![][pr-welcome-shield]][pr-welcome-link]\n\n### 翻译参考资源:\n\n1. [Pro Git 第二版 简体中文](https://git-scm.com/book/zh/v2)\n1. [Pro Git: 翻译约定](https://github.com/progit/progit2-zh/blob/master/TRANSLATION_NOTES.asc)\n1. [Git 官方软件包的简体中文翻译](https://github.com/git/git/blob/master/po/zh_CN.po)\n1. [GitHub 词汇表官方译本](https://docs.github.com/cn/get-started/quickstart/github-glossary)\n1. **[CSS 选择器](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Reference/Selectors) 用于编写忽略规则**\n\n> [查看详细贡献指南](https://github.com/maboloshi/github-chinese/discussions/57)\n\n## 🖼️ 效果预览\n\n  <picture>\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img1.png\"/>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img3.png\"/>\n    <img src=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img1.png\" width=\"75%\" />\n  </picture>\n  <picture>\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img2.png\"/>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img4.png\"/>\n    <img src=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img2.png\" width=\"75%\" />\n  </picture>\n\n## 🙏 特别鸣谢\n\n### 核心团队\n\n- [maboloshi](https://github.com/maboloshi) - 项目作者\n- [wyc-26](https://github.com/wyc-26)，[陈生杂物房](https://github.com/TC999) - 项目协作者\n- [52cik](https://github.com/52cik) - 项目原作者\n\n### 贡献者墙\n\n一如既往，感谢我们出色的贡献者❤️！\n\n<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-->\n<a href=\"https://github.com/maboloshi\" title=\"沙漠之子\">\n  <img src=\"https://avatars.githubusercontent.com/u/7850715?v=4\" width=\"42;\" alt=\"沙漠之子\"/>\n</a>\n<a href=\"https://github.com/52cik\" title=\"楼教主\">\n  <img src=\"https://avatars.githubusercontent.com/u/5033310?v=4\" width=\"42;\" alt=\"楼教主\"/>\n</a>\n<a href=\"https://github.com/TC999\" title=\"陈生杂物房\">\n  <img src=\"https://avatars.githubusercontent.com/u/88823709?v=4\" width=\"42;\" alt=\"陈生杂物房\"/>\n</a>\n<a href=\"https://github.com/qznfbnj\" title=\"其智乃反不能及\">\n  <img src=\"https://avatars.githubusercontent.com/u/100760086?v=4\" width=\"42;\" alt=\"其智乃反不能及\"/>\n</a>\n<a href=\"https://github.com/wyc-26\" title=\"wyc-26\">\n  <img src=\"https://avatars.githubusercontent.com/u/154735436?v=4\" width=\"42;\" alt=\"wyc-26\"/>\n</a>\n<a href=\"https://github.com/LuYifei2011\" title=\"Lu Yifei\">\n  <img src=\"https://avatars.githubusercontent.com/u/118034848?v=4\" width=\"42;\" alt=\"Lu Yifei\"/>\n</a>\n<a href=\"https://github.com/tangyuan0821\" title=\"Paper Moon\">\n  <img src=\"https://avatars.githubusercontent.com/u/195516213?v=4\" width=\"42;\" alt=\"Paper Moon\"/>\n</a>\n<a href=\"https://github.com/pylover7\" title=\"大叶子\">\n  <img src=\"https://avatars.githubusercontent.com/u/56282729?v=4\" width=\"42;\" alt=\"大叶子\"/>\n</a>\n<a href=\"https://github.com/cat-kun\" title=\"cat-kun\">\n  <img src=\"https://avatars.githubusercontent.com/u/8529528?v=4\" width=\"42;\" alt=\"cat-kun\"/>\n</a>\n<a href=\"https://github.com/ChinaGodMan\" title=\"人民的勤务员\">\n  <img src=\"https://avatars.githubusercontent.com/u/96548841?v=4\" width=\"42;\" alt=\"人民的勤务员\"/>\n</a>\n<a href=\"https://github.com/buiawpkgew1\" title=\"菾凴\">\n  <img src=\"https://avatars.githubusercontent.com/u/71136405?v=4\" width=\"42;\" alt=\"菾凴\"/>\n</a>\n<a href=\"https://github.com/pecasha\" title=\"Pecasha\">\n  <img src=\"https://avatars.githubusercontent.com/u/9607128?v=4\" width=\"42;\" alt=\"Pecasha\"/>\n</a>\n<a href=\"https://github.com/Kisechan\" title=\"Kise Platinyl\">\n  <img src=\"https://avatars.githubusercontent.com/u/162338950?v=4\" width=\"42;\" alt=\"Kise Platinyl\"/>\n</a>\n<a href=\"https://github.com/yrljroli\" title=\"苓𥤚\">\n  <img src=\"https://avatars.githubusercontent.com/u/169890386?v=4\" width=\"42;\" alt=\"苓𥤚\"/>\n</a>\n<a href=\"https://github.com/YiShengJunn\" title=\"益生君\">\n  <img src=\"https://avatars.githubusercontent.com/u/134821571?v=4\" width=\"42;\" alt=\"益生君\"/>\n</a>\n<a href=\"https://github.com/3DMXM\" title=\"小莫\">\n  <img src=\"https://avatars.githubusercontent.com/u/28587093?v=4\" width=\"42;\" alt=\"小莫\"/>\n</a>\n<a href=\"https://github.com/xuexb\" title=\"前端小武\">\n  <img src=\"https://avatars.githubusercontent.com/u/3872051?v=4\" width=\"42;\" alt=\"前端小武\"/>\n</a>\n<a href=\"https://github.com/wang4yu6peng13\" title=\"wang4yu6peng13\">\n  <img src=\"https://avatars.githubusercontent.com/u/10207042?v=4\" width=\"42;\" alt=\"wang4yu6peng13\"/>\n</a>\n<a href=\"https://github.com/pangshitong\" title=\"pangshitong\">\n  <img src=\"https://avatars.githubusercontent.com/u/41714457?v=4\" width=\"42;\" alt=\"pangshitong\"/>\n</a>\n<a href=\"https://github.com/daydaygo\" title=\"dayday\">\n  <img src=\"https://avatars.githubusercontent.com/u/3986303?v=4\" width=\"42;\" alt=\"dayday\"/>\n</a>\n<a href=\"https://github.com/heicks\" title=\"create new ██████╗  ██╔══██╗ ██████╔╝ ██╔══██╗ ██████╔╝ ╚═════╝  　　██╗ 　  ██╗ 　　██║ 　  ██║ 　　██║  　 ██║ 　　██║  　 ██║ 　　╚█████╔╝  　　╚═════╝  ███████╗ ██╔════╝　 ██║████═╗　 ██║　   ██　║ ╚██████╔╝　 　╚══════╝\">\n  <img src=\"https://avatars.githubusercontent.com/u/12287943?v=4\" width=\"42;\" alt=\"create new ██████╗  ██╔══██╗ ██████╔╝ ██╔══██╗ ██████╔╝ ╚═════╝  　　██╗ 　  ██╗ 　　██║ 　  ██║ 　　██║  　 ██║ 　　██║  　 ██║ 　　╚█████╔╝  　　╚═════╝  ███████╗ ██╔════╝　 ██║████═╗　 ██║　   ██　║ ╚██████╔╝　 　╚══════╝\"/>\n</a>\n<a href=\"https://github.com/NyA1K0\" title=\"NyA!K0\">\n  <img src=\"https://avatars.githubusercontent.com/u/177237971?v=4\" width=\"42;\" alt=\"NyA!K0\"/>\n</a>\n<a href=\"https://github.com/KS-OTO\" title=\"KS-OTO\">\n  <img src=\"https://avatars.githubusercontent.com/u/6616413?v=4\" width=\"42;\" alt=\"KS-OTO\"/>\n</a>\n<a href=\"https://github.com/swsoyee\" title=\"InfinityLoop\">\n  <img src=\"https://avatars.githubusercontent.com/u/20528423?v=4\" width=\"42;\" alt=\"InfinityLoop\"/>\n</a>\n<a href=\"https://github.com/ImgBotApp\" title=\"Imgbot\">\n  <img src=\"https://avatars.githubusercontent.com/u/31427850?v=4\" width=\"42;\" alt=\"Imgbot\"/>\n</a>\n<a href=\"https://github.com/neveler\" title=\"neveler\">\n  <img src=\"https://avatars.githubusercontent.com/u/55753029?v=4\" width=\"42;\" alt=\"neveler\"/>\n</a>\n<a href=\"https://github.com/wang93wei\" title=\"AlanWang\">\n  <img src=\"https://avatars.githubusercontent.com/u/6371053?v=4\" width=\"42;\" alt=\"AlanWang\"/>\n</a>\n<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-END-->\n\n> 贡献者列表，由 [GitHub Action][update-contributors-images] 自动生成\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 📈 项目统计\n\n<a href=\"https://star-history.com/#maboloshi/github-chinese&Timeline\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline&theme=dark\" />\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline\" />\n    <img alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline\" width=\"75%\" />\n  </picture>\n</a>\n\n![Alt](https://repobeats.axiom.co/api/embed/ae4c378f0e6ec317654ec5c4e8b01218c734cd53.svg \"Repobeats analytics image\")\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n## 🎁 欢迎打赏\n[赞赏列表](https://github.com/maboloshi/maboloshi/issues/1)\n|                                        微信赞赏                                        |                                       支付宝赞赏                                       |\n| :--------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------: |\n| <img src=\"https://cdn.jsdelivr.net/gh/maboloshi/maboloshi/img/wechat.png?raw=true\" alt=\"WeChat QRcode\" width=200> <br><small>☕喝点咖啡继续干☕</small> | <img src=\"https://cdn.jsdelivr.net/gh/maboloshi/maboloshi/img/alipay-1.jpg?raw=true\" alt=\"AliPay QRcode\" width=200> <br><small>🌶️来包辣条吧~🍪</small> |\n\n\n<!-- LINK GROUP -->\n\n[back-to-top]: https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square\n[github-project-link]: https://github.com/maboloshi/github-chinese \"GitHub 中文化插件\"\n[github-issues-link]: https://github.com/maboloshi/github-chinese/issues \"议题\"\n[github-issues-shield]: https://img.shields.io/github/issues/maboloshi/github-chinese?style=flat-square&logo=github&label=Issue\n[github-stars-link]: https://github.com/maboloshi/github-chinese/stargazers \"星标\"\n[github-stars-shield]: https://img.shields.io/github/stars/maboloshi/github-chinese?style=flat-square&logo=github&label=Star\n[github-forks-link]: https://github.com/maboloshi/github-chinese/network \"复刻\"\n[github-forks-shield]: https://img.shields.io/github/forks/maboloshi/github-chinese?style=flat-square&logo=github&label=Fork\n[github-license-link]: https://opensource.org/licenses/GPL-3.0  \"许可证\"\n[github-license-shield]: https://img.shields.io/github/license/maboloshi/github-chinese?style=flat-square&logo=github&label=License\n[greasyFork-link]: https://greasyfork.org/scripts/435208  \"GreasyFork 源 - GitHub 中文化插件\"\n[greasyFork-shield]: https://img.shields.io/greasyfork/dt/435208?style=flat-square&logo=GreasyFork&label=GreasyFork%20Installs\n[pr-welcome-link]: https://github.com/maboloshi/github-chinese/pulls\n[pr-welcome-shield]: https://img.shields.io/badge/🤯_pr_welcome-%E2%86%92-ffcb47?labelColor=black&style=for-the-badge \"欢迎提交 PR\"\n[Tampermonkey]: http://tampermonkey.net/ \"篡改猴\"\n[Violentmonkey]: https://violentmonkey.github.io/ \"暴力猴\"\n[Macaque]: https://macaque.app/ \"猕猴\"\n[Stay]: https://apps.apple.com/cn/app/stay-for-safari-%E6%B5%8F%E8%A7%88%E5%99%A8%E4%BC%B4%E4%BE%A3/id1591620171 \"Stay\"\n[main.user.js]: https://github.com/maboloshi/github-chinese/raw/gh-pages/main.user.js \"GitHub 中文化插件 - GitHub 源\"\n[main(greasyfork).user.js]: https://greasyfork.org/scripts/435208-github-%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6/code/GitHub%20%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6.user.js \"GitHub 中文化插件 - GreasyFork 源\"\n[update-contributors-images]: https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml\n"
  },
  {
    "path": "README_zh-TW.md",
    "content": "<div align=\"center\"><a name=\"readme-top\"></a>\n\n# [GitHub 中文化插件][github-project-link]\n\n> 讓 GitHub 界面全面中文化 | 源自 [52cik/github-hans](https://github.com/52cik/github-hans)\n\n[简体中文](./README.md) · **繁體中文** · [反饋問題][github-issues-link]\n\n<!-- SHIELD GROUP -->\n\n[![GitHub issues][github-issues-shield]][github-issues-link]\n[![GitHub stars][github-stars-shield]][github-stars-link]\n[![GitHub forks][github-forks-shield]][github-forks-link]\n[![license GPL-3.0][github-license-shield]][github-license-link]\n[![GreasyFork installs][greasyFork-shield]][greasyFork-link]\n\n<a href=\"https://hellogithub.com/repository/738d0abae49543f18d887a7e29ec9e90\" target=\"_blank\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=dark\" />\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=neutral\" />\n    <img alt=\"Featured｜HelloGitHub\" src=\"https://api.hellogithub.com/v1/widgets/recommend.svg?rid=738d0abae49543f18d887a7e29ec9e90&claim_uid=zepvSg6Vwl4EqMr&theme=neutral\" style=\"width: 250px; height: 54px;\" />\n  </picture>\n</a>\n\n</div>\n\n> [!warning]\n> 本項目從未發佈至 GitCode，如您發現請截圖並保留證據\n\n> [!IMPORTANT]\n> 💡 **重要：** 本繁體語言版本，使用基於[OpenCC](https://github.com/BYVoid/OpenCC)及[自定義規則](./t2s_rules.conf)轉換\n\n<details>\n<summary><kbd>目錄樹</kbd></summary>\n\n#### TOC\n- [🌟 功能特性](#-功能特性)\n- [🌐 兼容環境](#-兼容環境)\n- [💻 安裝指南](#-安裝指南)\n- [🔧 本地調試](#-本地調試)\n- [🔄 更新日誌](#-更新日誌)\n- [📌 待辦事項](#-待辦事項)\n- [🤝 參與貢獻](#-參與貢獻)\n- [🖼️ 效果預覽](#-效果預覽)\n- [🙏 特別鳴謝](#-特別鳴謝)\n- [📈 項目統計](#-項目統計)\n- [🎁 歡迎打賞](#-歡迎打賞)\n</details>\n\n## 🌟 功能特性\n\n- [x] 全面中文化 GitHub 界面元素（菜單欄、標題、按鈕等）\n- [x] 智能正則匹配功能\n- [x] 支持項目描述的人機翻譯\n- [x] 自動本地化時間元素\n- [x] 持續更新詞庫\n\n## 🌐 兼容環境\n\n瀏覽器類型           | 支持的腳本管理器\n:------------------: | :---------------:\nChrome / Chromium 內核 | [Tampermonkey][Tampermonkey], [Violentmonkey][Violentmonkey]\nSafari（全平臺）     | [Macaque][Macaque], [Stay][Stay]\nFirefox / Gecko 內核   | [Tampermonkey][Tampermonkey], [Violentmonkey][Violentmonkey]\nVia（Android）       | 內置管理器\n\n## 💻 安裝指南\n\n1. 安裝用戶腳本管理器：\n    - 推薦：[Tampermonkey][Tampermonkey]\n1. **基於 Chrome / Chromium 內核瀏覽器：**\n    1. 務必開啟 「擴展程序」 管理中的 **「開發者模式」**[^1]\n    1. 務必開啟 「擴展程序」 管理中腳本管理器擴展的 **「允許運行用戶腳本」**\n    1. 具體可參考 [Tampermonkey 官方指引](https://www.tampermonkey.net/faq.php#Q209)\n1. 選擇安裝源：\n    - [GitHub 源【開發版】][main_zh-TW.user.js]\n1. 刷新頁面後，插件即可生效\n1. 必要時，重啟瀏覽器\n\n[^1]: [Chrome 切換到 Manifest V3後，使用問題](https://github.com/maboloshi/github-chinese/issues/234)\n\n> [!NOTE]\n> **版本說明**：\n> - 🚀 開發版：實時更新，每週五自動更新詞庫\n> - 🛡️ 穩定版：每週一同步開發版詞庫，更穩定\n\n## 🔧 本地調試\n\n1. 安裝 [Tampermonkey][Tampermonkey]，並啟用 “允許訪問文件網址”。\n1. 下載詞庫文件到本地（如：`D:\\github-chinese\\locals.js`）\n1. 在腳本管理器中修改引用路徑：\n   ```js\n   // 原始路徑\n   // @require https://raw.githubusercontent.com/...\n   \n   // 修改為\n   // @require file:///D:/github-chinese/locals.js\n   ```\n1. 刷新頁面生效\n\n> [!TIP]\n> 💡 **溫馨提示：** 您可以將詞庫文件拖拽至瀏覽器地址欄，複製路徑直接使用。\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 🔄 更新日誌\n\n### 最新版本\n\n#### v1.9.3 (2024-08-18)\n\n1. 新增功能：通過設置中文環境，自動本地化時間元素，僅保留`on`開頭的時間正則，並停用時間元素監視\n1. 優化突變翻譯處理：\n   - 引入`characterDataPage`規則，對特定頁面啟用`篩選字符數據`的變更\n   - 引入`ignoreMutationSelectorPage`規則，忽略特定突變元素\n1. 合併`reIgnoreClass，reIgnoreItemprop，ignoreId，ignoreTag`為`ignoreSelectorPage`規則，處理全局及特定頁面，忽略特定元素\n1. 引入全局緩存模式，減少重複構建包括不限於基於`page`變化的忽略規則、正則規則數組等\n1. 調整：更新訊飛聽見翻譯引擎v2.0\n1. 優化：梳理、優化腳本\n1. 調整：調整詞庫語言代碼為`zh-CN`, 與環境語言設置一致\n\n<details><summary><kbd>查看更多歷史版本</kbd></summary>\n\n#### v1.9.2 (2024-06-14)\n\n1. 適配`www.githubstatus.com`\n1. 適配`skills.github.com`\n\n#### v1.9.1 (2024-05-23)\n\n1. 更新`切換正則功能按鈕`\n\n#### v1.9.0 (2023-12-09)\n\n1. 重新定義版本號規則, 如`1.9.0-2023-12-09`。\n   - `1.9.0`: 主版本號（由項目所有者更新）\n   - `2023-12-09`：`詞庫`發佈版本號（由 GitHub Action 自動更新）\n1. 加強: [GitHub 源【開發版】][main.user.js]每週一凌晨自動更新`詞庫`發佈版本號\n1. 加強: [GreasyFork 源【穩定版】][main(greasyfork).user.js]每週五凌晨自動更新`詞庫`發佈版本號, 詞庫內容同上一次[GitHub 源【開發版】][main.user.js]\n1. 加強：在 `README.md` 中自動更新貢獻者頭像\n1. 更新: 忽略規則, 詞條等\n\n#### v1.8.5 (2023-08-31)\n\n1. 優化: `transDesc 函數`代碼\n1. 修復: 重複添加`translate-me`翻譯按鈕\n1. 加強：`watchUpdate 函數`新增節點文本更新的情況\n1. 調整: `transBySelector和transDesc函數`延遲執行時間\n1. 更新: 忽略規則, 詞條等\n\n#### v1.8.4 (2023-08-08)\n\n1. 修復: `Itemprop`過濾規則, 依然使用正則方式\n1. 修復: `tooltipped`樣式提示, 依然使用正則方式\n\n#### v1.8.3 (2023-08-07)\n\n1. 梳理、優化腳本\n1. 更新: 忽略規則, 大量詞條等\n\n#### v1.8.2 (2023-05-15)\n\n1. `greasyfork 託管`源切換到`按頁面精細化詞條模式`\n1. 調整詞庫格式\n1. 功能加強: 優化`元素篩選器`翻譯邏輯\n1. 更新: 忽略規則, 大量詞條等\n\n#### v1.8.1 (2023-01-22)\n\n1. 修復: #8 與 dark reader 擴展發生衝突，導致時間顯示出現問題\n1. `GitHub`源開始切換到`按頁面精細化詞條模式(開發版)`, 詞庫未完全遷移適配\n1. 停止`greasyfork`源詞庫文件的同步更新\n\n#### v1.8.0 (2023-01-18)\n\n1. 刪除: `TURBO-FRAME`框架處理代碼. Github 已調整新動態加載模式, 直接檢測`url`的變化就能獲取對應的`page`信息\n1. 新增: 支持時間元素的`Shadow DOM`翻譯, 並監聽變化\n1. 新增: 啟用並更新`時間元素翻譯`專項正則詞條\n1. 新增: 僅當`page`有效才翻譯頁面\n1. 修復: 原`簡介翻譯`引擎`GitHub中文社區`失效, 改為`訊飛`引擎(測試)\n1. 修復: 追加公共正則重複迭代的問題\n1. 修復: 正則標記變量`RegExp`與構造函數`new RegExp`衝突\n1. 更新: 忽略規則, 詞條等\n\n預告, 下次將細化`page`匹配規則, 導致詞庫文件結構大調整, 詞庫文件會適當變大, 頁面正則更精細效率會提升\n\n#### v1.7.9 (2022-07-17)\n\nGitHub 的 ajax 載入方式逐步從 [defunkt/jquery-pjax](https://github.com/defunkt/jquery-pjax) 切換到 [hotwired/turbo](turbo.hotwired.dev), 導致已有的動態監測方式逐步失效\n\n目前, 通過以下修復:\n\n1. 新增 `BODY` 元素新增監視\n1. 解析 `TURBO-FRAME` 框架, 獲取對應的 `page`\n1. 修復 github 新動態加載模式, 導致`翻譯描述`返回值無法插入\n1. 修復 github 新動態加載模式, 導致`chrome`瀏覽器自帶翻譯功能卡死頁面\n\n其他更新:\n\n1. 修復`rePagePath`,`rePagePathRepo`,`rePagePathOrg`匹配規則，限制路徑匹配層次，排除干擾\n1. 直接使用網頁URL`document.URL`變化觸發`標題翻譯`和`JS 篩選器`翻譯\n1. 修復`關閉正則`無法生效, 需要刷新頁面才生效\n1. 日常更新詞庫和忽略規則\n1. 更新`JS 篩選器`規則\n\n#### v1.7.8 (2022-06-29)\n\n1. 緊急修復: GitHub 變更了`document.body`和`title`更新機制, 導致原有的`監測更新`規則部分失效, 目前使用`document.documentElement`監視整個頁面 DOM 的變更\n1. 跳過`<HEAD>`標籤\n1. `標題翻譯`和`JS 篩選器`翻譯, 依據 URL變化更新\n\n#### v1.7.7 (2022-06-26)\n\n1. 新增`時間元素翻譯`功能\n1. 重寫`頁面標題翻譯`函數\n1. 梳理`遍歷節點`函數邏輯\n1. 優化`transPage`函數，默認翻譯公共部分\n1. 調整`getPage`函數, 使`ClassName匹配規則`優先\n1. 優化`translate`函數, 跳過`不存在英文字母和符號,.`, 保留首尾空白部分等\n1. 部分函數重命名，使用`es6`新語法\n1. 日常更新詞庫和忽略規則，修復一個`JS 選擇器規則`\n\n#### v1.7.6 (2022-05-12)\n\n1. 日常更新詞庫和忽略規則\n1. 添加手動開啟/禁用正則翻譯，添加切換菜單\n1. 優化翻譯文本函數：避免已翻譯詞彙二次匹配，提高效率；局部翻譯優先於全局\n\n</details>\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 📌 待辦事項\n\n1. 添加 GitHub 專用名詞解釋\n1. 整理 [Git](https://git-scm.com/) & [GitHub](https://github.com/) 學習資料\n1. 完善文檔翻譯，需大家 PR 共同翻譯\n\n## 🤝 參與貢獻\n\n歡迎通過以下方式參與貢獻：\n\n1. 完善詞庫翻譯（編輯 `locals.js`）\n1. 提交議題報告，參與話題討論\n1. 改進代碼邏輯\n\n[![][pr-welcome-shield]][pr-welcome-link]\n\n### 翻譯參考資源:\n\n1. [Pro Git 第二版 簡體中文](https://git-scm.com/book/zh/v2)\n1. [Pro Git: 翻譯約定](https://github.com/progit/progit2-zh/blob/master/TRANSLATION_NOTES.asc)\n1. [Git 官方軟件包的簡體中文翻譯](https://github.com/git/git/blob/master/po/zh_CN.po)\n1. [GitHub 詞彙表官方譯本](https://docs.github.com/cn/get-started/quickstart/github-glossary)\n1. **[CSS 選擇器](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Reference/Selectors) 用於編寫忽略規則**\n\n> [查看詳細貢獻指南](https://github.com/maboloshi/github-chinese/discussions/57)\n\n## 🖼️ 效果預覽\n\n  <picture>\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img1.png\"/>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img3.png\"/>\n    <img src=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img1.png\" width=\"75%\" />\n  </picture>\n  <picture>\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img2.png\"/>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img4.png\"/>\n    <img src=\"https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/preview/img2.png\" width=\"75%\" />\n  </picture>\n\n## 🙏 特別鳴謝\n\n### 核心團隊\n\n- [maboloshi](https://github.com/maboloshi) - 項目作者\n- [wyc-26](https://github.com/wyc-26)，[陳生雜物房](https://github.com/TC999) - 項目協作者\n- [52cik](https://github.com/52cik) - 項目原作者\n\n### 貢獻者牆\n\n一如既往，感謝我們出色的貢獻者❤️！\n\n<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-->\n<a href=\"https://github.com/maboloshi\" title=\"沙漠之子\">\n  <img src=\"https://avatars.githubusercontent.com/u/7850715?v=4\" width=\"42;\" alt=\"沙漠之子\"/>\n</a>\n<a href=\"https://github.com/52cik\" title=\"樓教主\">\n  <img src=\"https://avatars.githubusercontent.com/u/5033310?v=4\" width=\"42;\" alt=\"樓教主\"/>\n</a>\n<a href=\"https://github.com/TC999\" title=\"陳生雜物房\">\n  <img src=\"https://avatars.githubusercontent.com/u/88823709?v=4\" width=\"42;\" alt=\"陳生雜物房\"/>\n</a>\n<a href=\"https://github.com/qznfbnj\" title=\"其智乃反不能及\">\n  <img src=\"https://avatars.githubusercontent.com/u/100760086?v=4\" width=\"42;\" alt=\"其智乃反不能及\"/>\n</a>\n<a href=\"https://github.com/wyc-26\" title=\"wyc-26\">\n  <img src=\"https://avatars.githubusercontent.com/u/154735436?v=4\" width=\"42;\" alt=\"wyc-26\"/>\n</a>\n<a href=\"https://github.com/pylover7\" title=\"大葉子\">\n  <img src=\"https://avatars.githubusercontent.com/u/56282729?v=4\" width=\"42;\" alt=\"大葉子\"/>\n</a>\n<a href=\"https://github.com/cat-kun\" title=\"cat-kun\">\n  <img src=\"https://avatars.githubusercontent.com/u/8529528?v=4\" width=\"42;\" alt=\"cat-kun\"/>\n</a>\n<a href=\"https://github.com/ChinaGodMan\" title=\"人民的勤務員\">\n  <img src=\"https://avatars.githubusercontent.com/u/96548841?v=4\" width=\"42;\" alt=\"人民的勤務員\"/>\n</a>\n<a href=\"https://github.com/buiawpkgew1\" title=\"菾凴\">\n  <img src=\"https://avatars.githubusercontent.com/u/71136405?v=4\" width=\"42;\" alt=\"菾凴\"/>\n</a>\n<a href=\"https://github.com/yrljroli\" title=\"𠭞\">\n  <img src=\"https://avatars.githubusercontent.com/u/169890386?v=4\" width=\"42;\" alt=\"𠭞\"/>\n</a>\n<a href=\"https://github.com/YiShengJunn\" title=\"益生君\">\n  <img src=\"https://avatars.githubusercontent.com/u/134821571?v=4\" width=\"42;\" alt=\"益生君\"/>\n</a>\n<a href=\"https://github.com/3DMXM\" title=\"小莫\">\n  <img src=\"https://avatars.githubusercontent.com/u/28587093?v=4\" width=\"42;\" alt=\"小莫\"/>\n</a>\n<a href=\"https://github.com/xuexb\" title=\"前端小武\">\n  <img src=\"https://avatars.githubusercontent.com/u/3872051?v=4\" width=\"42;\" alt=\"前端小武\"/>\n</a>\n<a href=\"https://github.com/wang4yu6peng13\" title=\"wang4yu6peng13\">\n  <img src=\"https://avatars.githubusercontent.com/u/10207042?v=4\" width=\"42;\" alt=\"wang4yu6peng13\"/>\n</a>\n<a href=\"https://github.com/pangshitong\" title=\"pangshitong\">\n  <img src=\"https://avatars.githubusercontent.com/u/41714457?v=4\" width=\"42;\" alt=\"pangshitong\"/>\n</a>\n<a href=\"https://github.com/daydaygo\" title=\"dayday\">\n  <img src=\"https://avatars.githubusercontent.com/u/3986303?v=4\" width=\"42;\" alt=\"dayday\"/>\n</a>\n<a href=\"https://github.com/heicks\" title=\"create new ██████╗  ██╔══██╗ ██████╔╝ ██╔══██╗ ██████╔╝ ╚═════╝  　　██╗ 　  ██╗ 　　██║ 　  ██║ 　　██║  　 ██║ 　　██║  　 ██║ 　　╚█████╔╝  　　╚═════╝  ███████╗ ██╔════╝　 ██║████═╗　 ██║　   ██　║ ╚██████╔╝　 　╚══════╝\">\n  <img src=\"https://avatars.githubusercontent.com/u/12287943?v=4\" width=\"42;\" alt=\"create new ██████╗  ██╔══██╗ ██████╔╝ ██╔══██╗ ██████╔╝ ╚═════╝  　　██╗ 　  ██╗ 　　██║ 　  ██║ 　　██║  　 ██║ 　　██║  　 ██║ 　　╚█████╔╝  　　╚═════╝  ███████╗ ██╔════╝　 ██║████═╗　 ██║　   ██　║ ╚██████╔╝　 　╚══════╝\"/>\n</a>\n<a href=\"https://github.com/KS-OTO\" title=\"KS-OTO\">\n  <img src=\"https://avatars.githubusercontent.com/u/6616413?v=4\" width=\"42;\" alt=\"KS-OTO\"/>\n</a>\n<a href=\"https://github.com/swsoyee\" title=\"InfinityLoop\">\n  <img src=\"https://avatars.githubusercontent.com/u/20528423?v=4\" width=\"42;\" alt=\"InfinityLoop\"/>\n</a>\n<a href=\"https://github.com/ImgBotApp\" title=\"Imgbot\">\n  <img src=\"https://avatars.githubusercontent.com/u/31427850?v=4\" width=\"42;\" alt=\"Imgbot\"/>\n</a>\n<a href=\"https://github.com/neveler\" title=\"neveler\">\n  <img src=\"https://avatars.githubusercontent.com/u/55753029?v=4\" width=\"42;\" alt=\"neveler\"/>\n</a>\n<!--AUTO_GENERATED_PLEASE_DONT_DELETE_IT-END-->\n\n> 貢獻者列表，由 [GitHub Action][update-contributors-images] 自動生成\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n\n## 📈 項目統計\n\n<a href=\"https://star-history.com/#maboloshi/github-chinese&Timeline\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline&theme=dark\" />\n    <source media=\"(prefers-color-scheme: light)\" srcset=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline\" />\n    <img alt=\"Star History Chart\" src=\"https://api.star-history.com/svg?repos=maboloshi/github-chinese&type=Timeline\" width=\"75%\" />\n  </picture>\n</a>\n\n![Alt](https://repobeats.axiom.co/api/embed/ae4c378f0e6ec317654ec5c4e8b01218c734cd53.svg \"Repobeats analytics image\")\n\n<div align=\"right\">\n\n[![][back-to-top]](#readme-top)\n\n</div>\n\n## 🎁 歡迎打賞\n[讚賞列表](https://github.com/maboloshi/maboloshi/issues/1)\n|                                        微信讚賞                                        |                                       支付寶讚賞                                       |\n| :--------------------------------------------------------------------------------: | :--------------------------------------------------------------------------------: |\n| <img src=\"https://cdn.jsdelivr.net/gh/maboloshi/maboloshi/img/wechat.png?raw=true\" alt=\"WeChat QRcode\" width=200> <br><small>☕喝點咖啡繼續幹☕</small> | <img src=\"https://cdn.jsdelivr.net/gh/maboloshi/maboloshi/img/alipay-1.jpg?raw=true\" alt=\"AliPay QRcode\" width=200> <br><small>🌶️來包辣條吧~🍪</small> |\n\n\n<!-- LINK GROUP -->\n\n[back-to-top]: https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square\n[github-project-link]: https://github.com/maboloshi/github-chinese \"GitHub 中文化插件\"\n[github-issues-link]: https://github.com/maboloshi/github-chinese/issues \"議題\"\n[github-issues-shield]: https://img.shields.io/github/issues/maboloshi/github-chinese?style=flat-square&logo=github&label=Issue\n[github-stars-link]: https://github.com/maboloshi/github-chinese/stargazers \"星標\"\n[github-stars-shield]: https://img.shields.io/github/stars/maboloshi/github-chinese?style=flat-square&logo=github&label=Star\n[github-forks-link]: https://github.com/maboloshi/github-chinese/network \"復刻\"\n[github-forks-shield]: https://img.shields.io/github/forks/maboloshi/github-chinese?style=flat-square&logo=github&label=Fork\n[github-license-link]: https://opensource.org/licenses/GPL-3.0  \"許可證\"\n[github-license-shield]: https://img.shields.io/github/license/maboloshi/github-chinese?style=flat-square&logo=github&label=License\n[greasyFork-link]: https://greasyfork.org/scripts/435208  \"GreasyFork 源 - GitHub 中文化插件\"\n[greasyFork-shield]: https://img.shields.io/badge/dynamic/json?style=flat-square&logo=GreasyFork&label=GreasyFork&query=total_installs&suffix=%20installs&url=https://greasyfork.org/scripts/435208.json\n[pr-welcome-link]: https://github.com/maboloshi/github-chinese/pulls\n[pr-welcome-shield]: https://img.shields.io/badge/🤯_pr_welcome-%E2%86%92-ffcb47?labelColor=black&style=for-the-badge \"歡迎提交 PR\"\n[Tampermonkey]: http://tampermonkey.net/ \"篡改猴\"\n[Violentmonkey]: https://violentmonkey.github.io/ \"暴力猴\"\n[Macaque]: https://macaque.app/ \"獼猴\"\n[Stay]: https://apps.apple.com/cn/app/stay-for-safari-%E6%B5%8F%E8%A7%88%E5%99%A8%E4%BC%B4%E4%BE%A3/id1591620171 \"Stay\"\n[main_zh-TW.user.js]: https://github.com/maboloshi/github-chinese/raw/gh-pages/main_zh-TW.user.js \"GitHub 中文化插件（繁體版） - GitHub 託管\"\n[update-contributors-images]: https://github.com/maboloshi/github-chinese/blob/gh-pages/.github/workflows/update_contributors_images.yml\n"
  },
  {
    "path": "apt-packages.txt",
    "content": "opencc\n"
  },
  {
    "path": "locals(greasyfork).js",
    "content": "/*******************************************************************************\n\n    locals.js - 搭配用户脚本插件`GitHub 中文化插件`的页面匹配规则, 翻译忽略规则,\n                词条库文件\n    Copyright (C) 2016-2021 楼教主 (https://github.com/52cik)\n    Copyright (C) 2021-当前 沙漠之子 (https://github.com/maboloshi)\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\n    Home: https://github.com/maboloshi/github-chinese\n*/\nvar I18N = {};\n\nI18N.conf = {\n\n    /**\n     * 匹配 pathname 页面的正则\n     *\n     * 注册页面 /signup\n     * 登录二步验证 /login/oauth\n     * 登录页面 /login\n     * 密码重置 /password_reset\n     * 组织页面 /orgs\n     * 探索页面 /explore\n     * 订阅页面 /notifications/subscriptions\n     * 通知页面 /notifications\n     * 关注页面 /watching\n     * 星标页面 /stars\n     * 议题页面 /issues\n     * 拉取请求 /pulls\n     * 搜索页面 /search\n     * 趋势页面 /trending\n     * 展示页面 /showcases\n     * 导入仓库 /new/import\n     * ...\n     */\n    rePagePath: /^\\/($|home|dashboard|feed|copilot|spark|signup|account_verifications|login\\/oauth|login|logout|sessions?|password_reset|orgs|explore|topics|notifications\\/subscriptions|notifications|watching|stars|issues|pulls|repos|search|trending|showcases|new\\/(import|project)|new|import|settings\\/(profile|admin|appearance|accessibility|notifications|billing|emails|security_analysis|security-log|security|auth|sessions|keys|ssh|gpg|organizations|enterprises|blocked_users|interaction_limits|code_review_limits|repositories|codespaces|models|codespaces\\/allow_permissions|deleted_repositories|packages|copilot|pages|replies|installations|apps\\/authorizations|reminders|sponsors-log|apps|(?:personal-access-|)tokens|developers|applications\\/new|applications|connections\\/applications|education\\/benefits)|settings|installations\\/new|marketplace|apps|account\\/(organizations\\/new|choose|upgrade|billing\\/history)|projects|redeem|discussions|collections|sponsors|sponsoring|github-copilot\\/(signup|free_signup|code-review-waitlist|pro)|codespaces|developer\\/register|features|security|sitemap|education|mcp)|^\\/users\\/[^\\/]+\\/(projects|packages|succession\\/invitation)/,\n\n    // 仓库路径\n    rePagePathRepo: /^\\/[^\\/]+\\/[^\\/]+\\/(issues|pulls|pull|tree|watchers|stargazers|new|edit|delete|upload|find|models|wiki|branches|discussions|activity|rules|releases|packages|tags|labels|milestones?|compare|commit|blob|blame|actions(\\/metrics\\/(usage|performance))?|runs|deployments|security|pulse|community|forks|fork|import|graphs\\/(contributors|community|traffic|commit-activity|code-frequency)|network$|network\\/(dependencies|dependents|updates|members)|settings\\/(access|code_review_limits|interaction_limits|branches|branch_protection_rules|tag_protection|rules|actions|models\\/access-policy|hooks|copilot\\/(code_review|coding_agent)|environments|codespaces|pages|security_analysis|dependabot_rules|keys|secrets|variables|installations|notifications|key_links)|settings|transfer|projects\\/new|projects|pkgs|contribute|subscription|invitations|codespaces|attestations|custom-properties|reported_content|agents|tasks)/,\n\n    // 组织路径\n    rePagePathOrg: /^\\/[^\\/]+\\/[^\\/]+\\/(repositories\\/new|repositories|sponsoring|discussions|projects|packages|teams|new-team|people|outside-collaborators|pending_collaborators|dashboard|billing_managers\\/new|invitations?|settings\\/(profile|billing|roles|member_privileges|teams|import-export|blocked_users|interaction_limits|code_review_limits|moderators|repository-defaults|rules|codespaces|copilot|actions|hooks|discussions|packages|pages|projects|security_analysis|security|dependabot_rules|domains|secrets|variables|oauth_application_policy|installations|personal-access-token|reminders|sponsors-log|audit-log|deleted_repositories|applications\\/new|applications|apps\\/new|apps|publisher|policies\\/repositories)|topics|domain\\/new|audit-log\\/event_settings|billing\\/(history|plans)|policies\\/applications)|^\\/[^\\/]+\\/(enterprise_plan|sponsoring)/,\n\n    // 特定页面，启用`字符数据`监测\n    characterDataPage: ['repository/new', 'repository/edit', 'new', 'new/import', 'orgs/repositories/new', 'repository/blob', 'repository/pull', 'marketplace', 'homepage', 'repository/issues', 'repository/commit', 'copilot', 'spark', 'repository/settings/rules'],\n\n    // 特定页面，忽略突变元素规则\n    ignoreMutationSelectorPage: {\n        'repository/new': [\".cm-scroller\"], // 代码编辑器\n        'repository/edit': [\".cm-scroller\", \"table\"], // 代码编辑器\n        'repository/pull': [\n            \"td.blob-code\", // 代码差异 分屏/同屏\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/compare': [\n            \"tbody\", // 代码差异\n            \".js-preview-body\", // 新建拉取请求 - 正文编辑器预览\n        ],\n        'repository/commit': [\"td.blob-code\", \"div.diff-text-inner\"], // 代码差异 分屏/同屏\n        'repository/blob': [\n            \"#highlighted-line-menu-positioner\", // 代码视图 存在\n            \"#repos-sticky-header\", // 代码视图 置顶标题\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n        ],\n        'repository/blame': [\"#highlighted-line-menu-positioner\"], // 代码视图\n        'repository': [\n            \".AppHeader-context\",\n            \"table\",\n            \"article.markdown-body\",\n        ],\n        'repository/tree': [\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n        ],\n        'repository/releases': [\".Box-footer\"], // 附件清单\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建议题 - 正文编辑器预览\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', // 某个议题 - 正文以及正文编辑器、添加评论编辑器预览\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源码视图\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark':[\n            '.cm-line',\n        ],\n        '*': [\n            'div.QueryBuilder-StyledInputContainer', // 顶部搜索栏 关键词\n            '#qb-input-query span', // 搜索页面 搜索栏 关键词\n\t\t\t'div.styled-input-content', // 筛选条\n        ],\n    },\n\n    // 特定页面，忽略元素规则\n    ignoreSelectorPage: {\n        'page-profile': [\n            'span.p-nickname', // 用户昵称\n            'span.p-name', // 同上\n        ],\n        'page-profile/followers': [\n            'span.f4.Link--primary',\n            \"span.Link--secondary.pl-1\",\n        ],\n        'page-profile/repositories': [\n            'a[itemprop=\"name codeRepository\"]', // 仓库名称\n        ],\n        'page-profile/stars': [\n            '.mb-1.d-inline-block > h3', // 仓库名称\n        ],\n        'repository': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'strong[itemprop=\"name\"]', // 仓库名称\n            // 'ul.list-style-none', // 右侧 部署列表 无效\n            'div[data-testid=\"latest-commit\"]', // 最新的提交\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n            'p.f4.my-3', // 仓库简介正文\n            '#translate-me',\n            '.my-3.d-flex.flex-items-center', // 仓库简介中的链接\n            'article.markdown-body', // 自述文件正文\n            'li.mt-2',\n        ],\n        'repository/tree': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'div.react-tree-show-tree-items', // 左侧文件树项目\n            'span.PRIVATE_TreeView-item-content-text', // 左侧文件树项目 - 子文件夹\n            'article.markdown-body', // Markdown 正文\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n        ],\n        'repository/blob': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'article.markdown-body', // Markdown 正文\n            'div.react-tree-show-tree-items', // 左侧文件树项目\n            '[id^=\"offset\"]', // 符号-->引用\n            '#highlighted-line-menu-positioner', // 代码视图\n            '#filter-results', // 右侧 符号筛选\n            '.Text__StyledText-sc-17v1xeu-0', // 右侧 符号筛选\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n        ],\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建议题 - 正文编辑器预览\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', //  某个议题 - 正文以及正文编辑器、添加评论编辑器预览\n        ],\n        'repository/commit': [\n            'td.blob-code', // 代码差异 分屏/同屏\n            'span.ws-pre-wrap', // 提交说明\n            \"h4[class^='Title-module__heading']\", // 提交标题\n        ],\n        'repository/pull': [\n            'td.blob-code', // 代码差异 分屏/同屏\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/compare': [\n            'td.blob-code', // 代码差异 分屏/同屏\n        ],\n        'repository/edit': [\n            '.cm-scroller', // 代码编辑器\n            'table', // 代码差异预览\n        ],\n        'repository/new': [\n            '.cm-scroller', // 代码编辑器\n            'table', // 代码差异预览\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源码视图\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/releases': [\n            'div.Box-body>div.markdown-body', // 发布版正文\n        ],\n        'repository/wiki': [\n            '#wiki-body', // wiki 正文\n            'ul.list-style-none.mx-4.px-1', // 右侧目录\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'orgs': [\n            'a[itemprop=\"name codeRepository\"]', // 仓库名称\n        ],\n        'search': [\n            'span.search-match', // 搜索匹配信息\n            'div.code-list', // 代码片段预览\n            'optgroup > option', // 下拉菜单列表\n        ],\n        'dashboard': [\n            '.js-notice-dismiss', // 右侧栏 广告\n            '.TimelineItem', // 右侧栏 最新变化\n            'section.comment-body', // 发布版正文\n        ],\n        'gist': [\n            '.gist-content[itemprop=\"about\"]', // Gist 简介\n            'div.js-blob-code-container', // 代码框\n            'table.js-diff-table', // 代码差异\n        ],\n        'topics': [\n            'h3.f3.color-fg-muted.text-normal.lh-condensed', // 仓库名称\n        ],\n        'marketplace': [\n            '.markdown-body',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark': [\n            '.Table',\n            '.monaco-editor',\n        ],\n        '*': [\n            '.comment-body', '.js-preview-body',\n            '.markdown-title',\n            'span.ActionListItem-descriptionWrap',  // 顶部搜索栏 关键词\n            'CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD', 'SVG', 'MARK', // 特定元素标签\n\t\t\t'div.styled-input-content', // 筛选条\n        ],\n    },\n\n    // 以下兼容 1.9.2 版本，且冻结 等待 1.9.3 明显 Bug 修复\n    /**\n     * 要翻译的页面正则(不含仓库页)\n     *\n     * 2021-10-07 11:53:34\n     * GitHub 网站更新 调整 Class 过滤规则\n     * 且过滤 Class 并不是总是生效，增加 PathName 规则补充\n     */\n    rePageClass: /\\b(page-(profile|new-repo|create-org)|session-authentication)\\b/,\n\n    /**\n     * 忽略区域的 class 正则\n     *\n     * 代码编辑器 内容 代码高亮 CodeMirror\n     * 代码编辑器 最小单元 cm-line ͼ.*\n     * 代码高亮 blob-code\n     * 仓库名和用户名 repo-and-owner (已知出现在：应用安装授权页和设置页 选定仓库)\n     * 文件,目录位置栏 |js-path-segment|final-path\n     * 文件列表 files js-navigation-container js-active-navigation-container\n     * 评论内容等 js-comment-body\n     * 评论预览 js-preview-body\n     * 评论编辑区域 comment-form-textarea\n     * 文件搜索模式 js-tree-finder-virtual-filter\n     * 仓库文件列表 js-navigation-open Link--primary\n     * 快捷键 按键 js-modifier-key\n     * 洞察-->流量-->热门内容列表 capped-list-label\n     * realease 页面 描述主体 markdown-body my-3\n     * 仓库页 仓库描述 f4 my-3\n     * 提交的用户名 commit-author$\n     * 搜索页 搜索结果 search-match\n     * 追溯 视图 代码 react-code-text\n     * tree 视图 文件名 react-directory-filename-column 提交信息 react-directory-commit-message\n     * 代码差异页面 代码 pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en\n     */\n    reIgnoreClass: /(cm-line|ͼ.*|pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en|CodeMirror|blob-code|highlight-.*|repo-and-owner|js-path-segment|final-path|files js-navigation-container|js-comment-body|js-preview-body|comment-form-textarea|markdown-title|js-tree-finder-virtual-filter|js-navigation-open Link--primary|js-modifier-key|capped-list-label|blob-code blob-code-inner js-file-line|markdown-body my-3|f4 my-3|commit-author$|search-match|react-directory-filename-column|react-directory-commit-message|react-code-text|zausi)/,\n\n    /**\n     * 忽略区域的 itemprop 属性正则\n     * name 列表页 仓库名\n     * author 仓库页 作者名称\n     * additionalName 个人主页 附加名称\n     */\n    reIgnoreItemprop: /(name|author|additionalName)/,\n\n    /**\n     * 忽略区域的 特定元素id 正则\n     * /blob页面 offset  符号-->引用\n     * /blob页面 右侧 符号筛选 filter-results\n     * fix repo详情页文件路径breadcrumb\n     */\n    reIgnoreId: /(readme|^offset|breadcrumb|file-name-id|filter-results)/,\n\n    /**\n     * 忽略区域的 标签 正则\n     * /i 规则不区分大小写\n     */\n    reIgnoreTag: ['CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD'],\n    // marked-text --> 文件搜索模式/<user-name>/<repo-name>/find/<branch> 文件列表条目\n    // ^script$ --> 避免勿过滤 notifications-list-subscription-form\n    // ^pre$ --> 避免勿过滤\n};\n\nI18N[\"zh-CN\"] = {};\n\nI18N[\"zh-CN\"][\"title\"] = { // 标题翻译\n    \"static\": { // 静态翻译\n        \"Sign up to GitHub · GitHub\": \"注册 · GitHub\",\n        \"Sign in to GitHub · GitHub\": \"登录 GitHub · GitHub\",\n        \"Join GitHub · GitHub\": \"加入 GitHub · GitHub\",\n        \"Forgot your password? · GitHub\": \"忘记您的密码了吗？· GitHub\",\n        \"Forgot your password?\": \"忘记您的密码了吗？\",\n        \"GitHub · Where software is built\": \"GitHub · 软件构建的地方\",\n        \"Create a New Repository\": \"新建仓库\",\n        \"Import a Repository\": \"导入仓库\",\n        \"New Project\": \"创建项目\",\n        \"Your Repositories\": \"我的仓库\",\n        \"Your Projects\": \"我的项目\",\n        \"Your Packages\": \"我的软件包\",\n        \"Your Stars\": \"我的星标页面\",\n        \"Your profile\": \"个人资料\",\n        \"Your Achievements\": \"我的成就\",\n        \"Your Followers\": \"我的关注者\",\n        \"Who You’re Following\": \"我关注的人\",\n        \"Account settings\": \"账户设置\",\n        \"Appearance\": \"外观\",\n        \"Accessibility\": \"无障碍\",\n        \"Notification settings\": \"通知设置\",\n        \"Billing\": \"账单\",\n        \"Email settings\": \"邮箱设置\",\n        \"Account security\": \"账户安全\",\n        \"SSH and GPG keys\": \"SSH 与 GPG 公钥\",\n        \"Organizations\": \"组织\",\n        //\"Blocked users\": \"拉黑用户\",\n        \"Temporary interaction limits\": \"临时互动限制\",\n        \"Code review limits\": \"代码审查限制\",\n        \"Repositorys\": \"仓库\",\n        \"Deleted Packages\": \"删除的软件包\",\n        \"Pages\": \"GitHub 页面\",\n        \"Saved replies\": \"快捷回复\",\n        \"Security & analysis\": \"安全与分析\",\n        \"Installed GitHub Apps\": \"已安装的 GitHub 应用\",\n        \"Issue search results\": \"议题搜索结果\",\n        \"Scheduled reminders\": \"定时提醒\",\n        \"Security log\": \"安全日志\",\n        \"Sponsorship Log\": \"赞助日志\",\n        \"GitHub Apps\": \"GitHub 应用\",\n        \"Developer applications\": \"开发者应用\",\n        \"Personal Access Tokens\": \"个人访问令牌\",\n        \"Register new GitHub App\": \"注册新 GitHub 应用\",\n        \"New OAuth Application\": \"新 OAuth 应用\",\n        \"Create a new Gist\": \"创建新代码片段\",\n        \"Discover gists\": \"探索代码片段\",\n        \"Enable two-factor authentication\": \"启用双因素身份验证\",\n        \"Manage two-factor authentication\": \"管理双因素身份验证\",\n        \"Options\": \"仓库 · 选项\",\n        \"Confirm access\": \"授权访问\",\n        \"General\": \"通常\",\n        \"Manage access\": \"访问管理\",\n        \"Branches\": \"分支\",\n        \"Tags\": \"标签\",\n        \"Webhooks\": \"Web 钩子\",\n        \"Environments\": \"环境\",\n        \"Security & analysis\": \"安全性与分析\",\n        \"Deploy keys\": \"部署密钥\",\n        \"Add deploy key\": \"添加部署密钥\",\n        \"Actions secrets\": \"操作机密\",\n        \"Dependabot secrets\": \"Dependabot 机密\",\n        \"Configure email notifications\": \"配置邮件通知\",\n        \"Community Standards\": \"社区准则\",\n        \"General Organization Settings\": \"常规组织设置\",\n        \"Member privileges\": \"成员权限\",\n        \"Teams\": \"团队\",\n        \"Trending repositories on GitHub today\": \"今日热门仓库\",\n        \"Trending repositories on GitHub this week\": \"本周热门仓库\",\n        \"Trending repositories on GitHub this month\": \"本月热门仓库\",\n        \"Repository defaults\": \"仓库默认值\",\n        \"Repository search results\": \"仓库搜索结果\",\n        \"Runners\": \"运行器\",\n        \"Runner Groups\": \"运行器组\",\n        \"Packages\": \"软件包\",\n        \"Package\": \"软件包\",\n        \"Payment Information\": \"支付信息\",\n        \"Security\": \"安全\",\n        \"Verified & approved domains\": \"经验证和批准的域名\",\n        \"Add a Pages verified domain\": \"添加一个经验证的 GitHub Pages 域名\",\n        \"Third-party application access policy\": \"第三方应用访问策略\",\n        \"Audit log\": \"审计日志\",\n        \"Deleted Repositories\": \"已删除的仓库\",\n        \"GitHub Publisher Verification\": \"GitHub 发布者验证\",\n        \"Notifications\": \"通知\",\n        \"Confirm your account recovery settings\": \"确认您的账户恢复设置\",\n        \"Your stars\": \"我的星标\",\n        \"Your starred repositories\": \"我的星标仓库\",\n        \"Your starred topics\": \"我的星标主题\",\n        \"Register for the GitHub Developer Program\": \"注册 GitHub 开发者计划\",\n        \"Codespaces\": \"代码空间\",\n        \"Codespace Templates\": \"代码空间模版\",\n        \"Create new codespace\": \"创建代码空间\",\n        \"Error\": \"错误\",\n        \"Discover gists · GitHub\": \"探索代码片段 · GitHub\",\n        \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n        \"Actions Usage Metrics\": \"操作使用情况\",\n        \"Actions usage metrics\": \"操作使用情况\",\n        \"Fine-grained Personal Access Tokens\": \"精细化的个人访问令牌\",\n        \"Import repository\": \"导入仓库\",\n        \"Explore GitHub\": \"探索 GitHub\",\n        //\"Rate limit · GitHub\": \"速率限制 · GitHub\",\n        //\"GitHub: Let’s build from here · GitHub\": \"GitHub: 让我们从这里开始\",\n        \"GitHub · Build and ship software on a single, collaborative platform · GitHub\": \"GitHub · 在单一协作平台上构建和发布软件\",\n        \"GitHub · Build and ship software on a single, collaborative platform\": \"GitHub · 在单一协作平台上构建和发布软件\",\n        \"Topics on GitHub · GitHub\": \"GitHub 上的主题\",\n        \"Code security\": \"代码安全\",\n        \"Deploy keys\": \"部署密钥\",\n        \"Actions Performance Metrics\": \"操作数据看板\",\n        \"Actions performance metrics\": \"操作数据看板\",\n        \"GitHub Sitemap · GitHub\": \"GitHub 网站地图\",\n        \"Code search results\": \"代码搜索结果\",\n        \"Enterprises\": \"企业版\",\n        \"Blocked users\": \"黑名单\",\n        \"New conversation · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n        \"Models · GitHub Marketplace\": \"模型 · GitHub 市场\",\n        \"GitHub Education\": \"GitHub 教育\",\n        \"GitHub Student Developer Pack - GitHub Education\": \"学生开发包 - GitHub 教育\",\n        \"Get your GitHub benefits - GitHub Education\": \"获取福利 - GitHub 教育\",\n        \"Signup to GitHub Copilot\": \"注册 GitHub Copilot\",\n        \"Device Activation\": \"设备激活\",\n        \"Spending Limit\": \"支付限额\",\n        \"Autolink references\": \"自动链接引用\",\n        \"Add autolink reference\": \"添加自动链接引用\",\n        \"Billing Overview\": \"账单概览\",\n        \"Billing Usage\": \"计费用量\",\n        \"Budgets\": \"预算\",\n        \"Code Security\": \"代码安全性\",\n        \"New Fine-grained Personal Access Token\": \"新建精细化个人访问令牌\",\n        \"Coding agent\": \"编程智能体\",\n        \"Get Started With GitHub Discussions\": \"开始使用 GitHub 讨论\",\n        \"SSH and GPG keys\": \"SSH 和 GPG 密钥\",\n        \"MCP Registry\": \"MCP 互联\",\n        \"User repositories\": \"用户仓库\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Authorized OAuth Apps/, \"授权的 OAuth 应用\"],\n        [/Authorized GitHub Apps/, \"授权的 GitHub 应用\"],\n        [/Installed GitHub Apps/, \"已安装的 GitHub 应用\"],\n        [/Accessibility/, \"无障碍\"],\n        [/Environments/, \"环境\"],\n        [/New repository/, \"新仓库\"],\n        [/([^ ]+) \\((.+)\\) \\/ Repositories/, \"$1 / 仓库\"], // github 账户名/ 成就\n        [/([^ ]+) \\((.+)\\) \\/ Starred/, \"$1($2) / 星标\"], // github 账户名（昵称）/ 星标\n        [/Repositories/, \"仓库\"],\n        [/Starred/, \"星标页面\"],\n        [/starred repositories/, \"星标仓库\"],\n        [/starred topics/, \"星标主题\"],\n        [/starred/, \"星标\"],\n        [/Commits · ([^ ]+)/, \"提交 · $1\"],\n        [/New Issue/, \"新建议题\"],\n        [/Issues?/, \"议题\"],\n        [/Pull (R|r)equests?/, \"拉取请求\"],\n        [/Actions secrets · ([^ ]+)/, \"操作机密 · $1\"],\n        [/Actions settings · ([^ ]+)/, \"操作设置 · $1\"],\n        [/Actions/, \"操作\"],\n        [/Projects/, \"项目\"],\n        [/Packages?/, \"软件包\"],\n        [/Settings · Rulesets/, \"设置 · 规则集\"],\n        [/Security Overview/, \"安全概述\"],\n        [/Security Policy/, \"安全政策\"],\n        [/Security Advisories/, \"安全公告\"],\n        [/Dependabot alerts/, \"Dependabot 警报\"],\n        [/Pulse/, \"统计\"],\n        //[/Contributors to/, \"贡献者 ·\"],\n        [/Dashboard/, \"仪表板\"],\n        [/Deployments/, \"部署\"],\n        [/Community/, \"社区\"],\n        [/Traffic/, \"流量\"],\n        [/Commit Activity/, \"提交活动\"],\n        [/Code frequency/, \"代码频率\"],\n        [/Created/, \"已创建\"],\n        [/Dependencies/, \"依赖项\"],\n        [/Network Dependents/, \"网络依赖者\"],\n        [/Network Graph/, \"网络图\"],\n        [/Revisions/,\"修订\"],\n        [/GitHub Skills Quickstart Guide/, \"GitHub 技能快速入门指南\"],\n        [/Skills/, \"技能\"],\n        [/Sponsoring/, \"捐助\"],\n        [/Stargazers/, \"追星者\"],\n        [/Forks?/, \"复刻\"],\n        [/Settings · Tags · ([^ ]+)/, \"设置 · 标签 · $1\"],\n        [/Tags?/, \"标签\"],\n        [/Edit release/, \"编辑发行版\"],\n        [/Releases?/, \"发行版\"],\n        [/Draft Advisory/, \"安全公告草案\"],\n        [/Code scanning alerts/, \"代码扫描警报\"],\n        [/Repository topics/, \"仓库主题\"],\n        [/Scheduled reminders/, \"定时提醒\"],\n        [/Sponsorship Log/, \"赞助日志\"],\n        [/Sponsor @([^ ]+) on GitHub Sponsors/, \"在 GitHub 上赞助 $1\"],\n        [/OAuth applications/, \"OAuth 应用\"],\n        [/People · Pending Collaborators/, \"成员 · 待定协作者\"],\n        [/Members · People · ([^ ]+)/, \"成员 · $1\"],\n        [/People/, \"成员\"],\n        [/Outside collaborators/, \"外部协作者\"],\n        [/New Discussion/, \"新讨论\"],\n        [/Discussions/, \"讨论\"],\n        [/Workflow runs/, \"工作流运行\"],\n        [/Webhooks · Settings/, \"Web 钩子 · 设置\"],\n        [/Add a code of conduct to/, \"添加代码行为准则到\"],\n        [/Caches?/, \"缓存\"],\n        [/Runners?/, \"运行器\"],\n        [/Attestations?/, \"证书\"],\n        [/Activit(y|ies)/, \"活动\"],\n        [/Rate limit/, \"速率限制\"],\n        [/Comparing/, \"比较\"],\n        [/History for ([^ ]+)/, \"$1 的历史\"],\n        [/Compare plans for ([^ ]+)/, \"为 $1 比较计划\"],\n        [/([^ ]+)’s gists/, \"$1 的代码片段\"],\n        [/Secret scanning · ([^ ]+)/, \"机密扫描 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 机密 · $1\"],\n        [/Contributors to ([^ ]+)/, \"贡献者 · $1\"],\n        [/([^ ]+) repositories^/, \"$1 的仓库\"],\n        [/Create new page · ([^ ]+) Wiki/, \"新建页面 · $1 的 Wiki\"],\n        [/Settings · Branches · ([^ ]+)/, \"设置 · 分支 · $1\"],\n        [/Webhooks · Settings · ([^ ]+)/, \"Web 钩子  · 设置 · $1\"],\n        [/Environments · ([^ ]+)/, \"环境 · $1\"],\n        [/Branches · ([^ ]+)/, \"分支 · $1\"],\n        [/([^ ]+) · GitHub Topics/, \"$1 · GitHub 主题\"],\n        [/New release · ([^ ]+)/, \"新发行版 · $1\"],\n        [/Codespaces secrets · ([^ ]+)/, \"代码空间机密 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 机密 · $1\"],\n        [/Invitation to join ([^ ]+)/, \"加入 $1 邀请\"],\n        [/Security Managers for · ([^ ]+)/, \"安全管理员 · $1\"],\n        [/New File at \\/ · ([^ ]+)/, \"新建文件 · $1\"],\n        [/Blaming ([^ ]+) at ([^ ]+) · ([^ ]+)/, \"追溯 $1（$2） · $3\"],\n        [/Deleting ([^ ]+)\\/([^ ]+) at ([^ ]+) · ([^ ]+)/, \"删除 $3/$2 · $4\"], // 简化部分内容\n        [/([^ ]+)'s list \\/ (.+)/, \"$1 的列表 / $2\"],\n        [/([^ ]+) \\((.+)\\) \\/ Achievements/, \"$1($2) / 成就\"], // github 账户名（昵称）/ 成就\n        [/Teams · ([^ ]+)/, \"团队 · $1\"],\n        [/Create new team · ([^ ]+)/, \"新建团队 · $1\"],\n        [\"_regexp_end\", \"end\"]\n    ],\n};\n\nI18N[\"zh-CN\"][\"public\"] = { // 公共区域翻译\n    \"static\": { // 静态翻译\n        // 错误页面\n            \"Find code, projects, and people on GitHub:\": \"在 GitHub 上查找代码、项目和人员：\",\n            \"Access has been restricted\": \"访问被限制\",\n                \"You have triggered a rate limit.\": \"您已触发速率限制。\",\n                \"Please wait a few minutes before you try again;\": \"请稍等几分钟再重试；\",\n                \"in some cases this may take up to an hour.\": \"在某些情况下，这可能最多需要一个小时。\",\n            \"No server is currently available to service your request.\": \"当前服务器无法为您的请求提供服务。\",\n            \"This page is taking too long to load.\": \"此页面加载时间过长。\",\n            \"We had issues producing the response to your request.\": \"我们在响应您的请求时遇到了问题。\",\n            \"Sorry about that. Please try refreshing and contact us if the problem persists.\": \"对此我们很抱歉。请尝试刷新，如果问题仍然存在，请联系我们。\",\n            \"Error\": \"错误\",\n            \"Looks like network is down!\": \"看起来网络未连接！\",\n            \"Contact Support\": \"联系 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 状态\",\n\n        // 底部红条\n            \"You can’t perform that action at this time.\": \"此时无法执行该操作。\",\n\n        // 速率限制 - 短时间频繁访问网页，至少包括 https://github.com/issues\n            \"Whoa there!\": \"请停一下！\",\n            \"You have exceeded a secondary rate limit.\": \"您已经超出次要速率限制。\",\n            \"Please wait a few minutes before you try again;\": \"请稍等几分钟再重试；\",\n            \"in some cases this may take up to an hour.\": \"在某些情况下，这可能最多需要一个小时。\",\n\n        // 议题、拉取请求、讨论浮动信息卡（在任一引用这些链接的页面都会出现\n            \"You opened this issue\": \"您打开了这个议题\",\n            \"You opened this pull request\": \"您打开了这个拉取请求\",\n            \"You commented on this issue\": \"您对此议题发表了评论\",\n            \"You commented on and opened this issue\": \"您打开了这个议题并发表评论\",\n            \"You commented on this pull request\": \"您对此拉取请求发表了评论\",\n            \"You commented on and opened this pull request\": \"您打开了这个拉取请求并发表评论\",\n            \"You were mentioned on and commented on this issue\": \"您在此议题上被提及并发表评论\",\n            \"You were mentioned on and commented on this pull request\": \"您在此拉取请求上被提及并发表评论\",\n            \"You were mentioned on and opened this pull request\": \"您被提及并打开了此拉取请求\",\n            \"You are assigned to this pull request\": \"您被指派处理此拉取请求\",\n            \"You are assigned to and opened this pull request\": \"您打开并被指派处理此拉取请求\",\n            \"You left a review\": \"您已评论\",\n            \"Changes requested\": \"请求更改\", // 拉取请求\n            \"Review required\": \"请求审查\", // 拉取请求\n            \"Approved\": \"已批准\", // 拉取请求\n            \"replied\": \"已回复\", // 讨论\n\n        // 顶部栏 (未登录)\n            \"Platform\": \"平台\",\n                \"AI CODE CREATION\": \"AI 代码生成\",\n                    // Copilot\n                        \"Write better code with AI\": \"借助 AI 写出更好的代码\",\n                    // Spark\n                        \"Build and deploy intelligent apps\": \"构建和部署智能应用\",\n                    \"GitHub Models\": \"GitHub 模型\",\n                        \"Manage and compare prompts\": \"管理和比较提示词\",\n                    \"MCP Registry\": \"MCP 互联\",\n                        \"Integrate external tools\": \"集成外部工具\",\n                \"DEVELOPER WORKFLOWS\": \"开发者工作流\",\n                    // 操作\n                        \"Automate any workflow\": \"自动化任何工作流程\",\n                    // 代码空间\n                        \"Instant dev environments\": \"即时开发环境\",\n                    // 议题\n                        \"Plan and track work\": \"计划和追踪工作\",\n                    \"Code Review\": \"代码审查\",\n                        \"Manage code changes\": \"管理代码更改\",\n                \"APPLICATION SECURITY\": \"应用安全\",\n                    \"GitHub Advanced Security\": \"GitHub 高级安全\",\n                        \"Find and fix vulnerabilities\": \"查找并修复漏洞\",\n                    \"Code security\": \"代码安全\",\n                        \"Secure your code as you build\": \"边开发边保障代码安全\",\n                    \"Secret protection\": \"密钥保护\",\n                        \"Stop leaks before they start\": \"在泄露发生前就阻止它们\",\n\n                \"EXPLORE\": \"探索\",\n                    \"Why GitHub\": \"为什么选择 GitHub\",\n                    \"Changelog\": \"更新日志\",\n                    \"GitHub Marketplace\": \"GitHub 市场\",\n\n                \"View all features\": \"查看所有功能\",\n\n            \"Solutions\": \"解决方案\",\n                \"BY COMPANY SIZE\": \"企业规模\",\n                    \"Enterprises\": \"企业\",\n                    \"Small and medium teams\": \"中小团队\",\n                    \"Startups\": \"初创公司\",\n                    \"Nonprofits\": \"非盈利组织\",\n                \"BY USE CASE\": \"使用案例\",\n                    \"App Modernization\": \"应用现代化\",\n                    \"DevSecOps\": \"开发安全运维\",\n                    \"DevOps\": \"开发运维\",\n                    \"CI/CD\": \"持续集成/持续部署\",\n                    \"View all use cases\": \"查看所有使用案例\",\n                \"BY INDUSTRY\": \"工业\",\n                    \"Healthcare\": \"健康护理\",\n                    \"Financial services\": \"金融服务\",\n                    \"Manufacturing\": \"制造业\",\n                    \"Government\": \"政府\",\n                    \"View all industries\": \"查看所有工业\",\n                \"View all solutions\": \"查看所有解决方案\",\n\n            \"Resources\": \"资源\",\n                \"EXPLORE BY TOPIC\": \"按主题探索\",\n                    \"Software Development\": \"软件开发\",\n                    \"View all topics\": \"查看所有主题\",\n                \"EXPLORE BY TYPE\": \"按类型探索\",\n                    \"Customer Stories\": \"客户案例\",\n                    \"Customer stories\": \"客户案例\",\n                    \"Events & webinars\": \"活动与网络研讨会\",\n                    \"Ebooks & reports\": \"电子书与报告\",\n                    \"Business insights\": \"商业洞察\",\n                    \"GitHub Skills\": \"GitHub 技能课程\",\n                \"SUPPORT & SERVICES\": \"支持与服务\",\n                    \"Partners\": \"合作洽谈\",\n                    \"Customer support\": \"客户支持\",\n                    \"Community forum\": \"社区论坛\",\n                    \"Trust center\": \"信任中心\",\n\n            \"Open Source\": \"开源\",\n                \"COMMUNITY\": \"社区\",\n                    \"GitHub Sponsors\": \"GitHub 赞助者\",\n                        \"Fund open source developers\": \"资助开源开发人员\",\n                \"PROGRAMS\": \"项目\",\n                    \"Security Lab\": \"安全实验室\",\n                    \"Maintainer Community\": \"维护者社区\",\n                    \"Accelerator\": \"加速器计划\",\n                    \"Archive Program\": \"存档计划\",\n                \"REPOSITORIES\": \"仓库\",\n                    \"Topics\": \"主题\",\n                    \"Trending\": \"趋势\",\n                    \"Collections\": \"集合\",\n\n            \"Enterprise\": \"企业\",\n                \"ENTERPRISE SOLUTIONS\": \"企业级解决方案\",\n                    \"Enterprise platform\": \"企业平台\",\n                        \"AI-powered developer platform\": \"AI 驱动的开发者平台\",\n                \"AVAILABLE ADD-ONS\": \"可选附加组件\",\n                    // GitHub 高级安全\n                        \"Enterprise-grade security features\": \"企业级安全功能\",\n                    \"Copilot for Business\": \"Copilot 企业版\",\n                        \"Enterprise-grade AI features\": \"企业级 AI 功能\",\n                    \"Premium Support\": \"高级支持\",\n                        \"Enterprise-grade 24/7 support\": \"企业级 24 小时全天候支持\",\n            \"Pricing\": \"价格\",\n            \"Search\": \"搜索\",\n            \"Sign in\": \"登录\",\n            \"Sign up\": \"注册\",\n\n        // 搜索栏\n            \"Search or jump to...\": \"搜索或跳转到…\",\n            \"Type\": \"请键入\",\n            \"to search\": \"去搜索\",\n            \"Command palette\": \"命令面板\",\n            \"Saved queries\": \"已保存的搜索\",\n            \"All of GitHub\": \"整个 GitHub\",\n            \"Autocomplete\": \"自动完成\",\n            \"Search all of GitHub\": \"搜索整个 GitHub\",\n            \"Search in this directory\": \"在文件夹中搜索\",\n            \"Search in this repository\": \"在该仓库中搜索\",\n            \"Search in this owner\": \"在该所有者中搜索\",\n            \"Search in this organization\": \"在该组织中搜索\",\n            \"Owners\": \"所有者\",\n            \"Languages\": \"语言\",\n            \"Search syntax tips\": \"搜索语法提示\",\n            \"Jump to\": \"跳转到\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n            \"Start a new Copilot thread\": \"启动新的 Copilot 对话\",\n\n            // 未登录时\n                \"Enterprise\": \"企业\",\n                \"Security\": \"安全\",\n                \"Pricing\": \"价格\",\n\n        // 左上角下拉栏 (已登录)\n            \"Open menu\": \"打开菜单\",\n            \"Close menu\": \"关闭菜单\",\n            \"Homepage\": \"主页\",\n            \"Home\": \"主页\",\n            \"Feed\": \"动态\",\n            \"Issues\": \"议题\",\n            \"Pull requests\": \"拉取请求\",\n            \"Projects\": \"项目\",\n            \"Discussions\": \"讨论\",\n            \"Codespaces\": \"代码空间\",\n            \"Explore\": \"探索\",\n            \"Marketplace\": \"市场\",\n            \"MCP registry\": \"MCP 互联\",\n\n            \"Top repositories\": \"热门仓库\",\n                \"Search for repositories\": \"搜索仓库\",\n                \"Close search\": \"关闭搜索\",\n                // 团队\n                \"Search for teams\": \"搜索团队\",\n\n            \"Teams have moved to\": \"团队已迁移至\",\n\n        // 顶部提示横幅\n            \"Don't get locked out of your account.\": \"不要被锁定在您的账户之外。\",\n            \"Download your recovery codes\": \"下载您的恢复码\",\n            \"add a passkey\": \"添加通行密钥\",\n            \"so you don't lose access when you get a new device.\": \"这样您在登录新设备时就不会失去访问权限。\",\n            \"GitHub users are\": \"GitHub 用户\",  //下半句正则\n            \"now required\": \"现在被要求\",  //下半句正则\n            \"Enable 2FA\": \"启用 2FA\",\n\n            \"You only have a single verified email address. We recommend verifying at least one more email address to ensure you can recover your account if you lose access to your primary email.\": \"您只有一个经过验证的电子邮件地址。我们建议您至少再验证一个电子邮件地址，以确保在失去主邮箱访问权限时可以恢复账户。\",\n            \"Email settings\": \"电子邮件设置\",\n            \"Your recovery codes have not been saved in the past year. Make sure you still have them stored somewhere safe by viewing and downloading them again.\": \"如果您在过去一年中没有保存恢复密码。请确保将其保存在安全的地方，并再次查看和下载。\",\n                \"View recovery codes\": \"查看恢复码\",\n            \"You can also\": \"您也可以\",\n            \"view this object as it appeared at the time of the comment\": \"查看此对象在评论时的状态\",\n\n\n        \"Your issues\": \"您的议题\",\n        \"Your pull requests\": \"您的拉取请求\",\n\n        // 右上角通知按钮提示\n            \"You have no unread notifications\": \"您没有未读通知\",\n            \"You have unread notifications\": \"您有未读通知\",\n\n        // 右上角新建按钮下拉菜单\n            \"Create new...\": \"新建…\",\n            \"Create new…\": \"新建…\",\n                \"New repository\": \"新建仓库\",\n                \"Import repository\": \"导入仓库\",\n                \"New spark\": \"新建 spark\",\n                \"New agent task\": \"新建智能体任务\",\n                \"New codespace\": \"新建代码空间\",\n                \"New gist\": \"新建代码片段\",\n                \"New organization\": \"新建组织\",\n                \"New project\": \"新建项目\",\n                \"This organization\": \"本组织\", // 组织\n                \"New team\": \"新建团队\", // 组织\n                // 新建议题 对话框\n                    \"Create new issue\": \"新建议题\",\n                    \"Copy link\": \"复制链接\",\n                    \"Templates and forms\": \"模板和表单\",\n                    \"Blank issue\": \"空白议题\",\n                        \"Create a new issue from scratch\": \"从头开始创建新议题\",\n\n        // 右上角 Copilot 下拉菜单\n            \"Agents\":\"智能体\",\n            \"Chat with Copilot\": \"与 Copilot 聊天\",\n            \"Learn more about Copilot coding agent\": \"了解有关 Copilot 编程智能体的更多信息\",\n            \"Start a new task with Copilot\": \"使用 Copilot 启动新任务\",\n            \"Describe a coding task to work on\": \"描述要完成的编程任务\",\n            \"Open Copilot…\": \"打开 Copilot…\",\n                \"Start a pull request\": \"创建拉取请求\",\n                \"New conversation in\": \"新聊天\",\n                \"New conversation\": \"新聊天\",\n                    \"Assistive\": \"小窗\",\n                    \"Spaces\": \"空间\",\n                    \"Immersive\": \"全屏\",\n                \"Download for\": \"下载插件\",\n\n            \"Select a branch\": \"选择分支\",\n            \"Find a branch...\": \"查找分支…\",\n\n            \"Create a custom agent\": \"创建自定义智能体\",\n\n            \"Navigate to Copilot\": \"导航到 Copilot\",\n\n            \"Open agents panel\": \"打开智能体面板\",\n                \"Start a task with Copilot coding agent\": \"使用 Copilot 编程智能体开始任务\",\n                    \"Describe your task in natural language. Copilot will work in the background and open a pull request for your review.\": \"请用自然语言描述您的任务。Copilot 会在后台工作，并创建一个拉取请求供您审核。\",\n\n                \"Agent tasks\": \"智能体任务\",\n                    \"Switch branches\": \"切换分支\",\n                        \"Filter branches\": \"查找分支\",\n                        \"default\": \"默认\",\n\n                \"Recent tasks\": \"近期任务\",\n\n        // 右上角个人图标下拉菜单\n            \"Open user navigation menu\": \"打开用户导航菜单\",\n            \"Account switcher\": \"账户切换\",\n                \"Add account\": \"添加账户\",\n                \"Switch account\": \"切换账户\",\n                \"Sign out...\": \"登出…\",\n            \"Set status\": \"状态设置\",\n            \"Profile\": \"个人资料\",\n            \"Gists\": \"代码片段\",\n\n            \"Settings\": \"设置\",\n            \"Copilot settings\": \"Copilot 设置\",\n            \"Feature preview\": \"功能预览\",\n            \"Feature Preview\": \"功能预览\",\n                \"Get early access to new features and give feedback\": \"测试新功能并提交反馈\",\n                \"Help us improve this and make your experience even better.\": \"帮我们改进此功能，提升您的体验。\",\n                \"On\": \"开\",\n                \"Off\": \"关\",\n                // 对话框\n                \"Feature preview dialog\": \"功能预览对话框\",\n                \"Enable\": \"启用\",\n                \"Enabled\": \"启用\",\n                \"Disable\": \"禁用\",\n                \"Disabled\": \"禁用\",\n                \"Documentation\": \"文档\",\n\n                \"Colorblind themes\": \"色盲主题\",\n                    \"Varying by gender and geography, color blindness can affect on average 8% of men and up to 0.5% of women. Our previous colorblind theme has been split into two new themes:\": \"色盲会因性别和地域的不同而有所不同，平均而言，色盲会影响约 8% 的男性和约 0.5% 的女性。我们之前的色盲主题被分为两个新主题：\",\n                    \"Light/dark Protanopia & Deuteranopia for red/green color blindness.\": \"明/暗 - 红绿色盲主题适用于红绿色盲。\",\n                    \"Light/dark Tritanopia for blue/yellow color blindness.\": \"明/暗 - 蓝色盲主题适用于蓝黄色盲。\",\n                \"Command Palette\": \"命令面板\",\n                    \"Quickly navigate and jump between your organizations or repositories and search recent issues, pull requests, projects and more with the new command palette. You can also execute time saving commands all without lifting your fingers off the keyboard!\": \"使用新的命令面板，可以快速导航并跳转到您所在的组织或仓库，并搜索最近的议题、拉取请求、项目等等。您还可以执行节省时间的命令，而无需将手指从键盘上移开！\",\n                    \"To open the command palette:\": \"打开命令面板：\",\n                        \"other:\": \"其他：\",\n                \"Organization Custom Instructions\": \"组织自定义指令\",\n                    \"Organization administrators can apply custom instructions across all Copilot chats in github.com.\": \"组织管理员可以在 GitHub.com 的所有 Copilot 聊天中应用自定义指令。\",\n                \"New Dashboard Experience\": \"新仪表板体验\",\n                    \"The updated home dashboard introduces enhanced agent workflows, making it easier to create and manage agent sessions, issues, and pull requests directly from your personalized dashboard. Once enabled, please refresh to see the changes.\": \"更新后的主页仪表板引入了增强的智能体工作流，使您可以更轻松地直接从个性化仪表板创建和管理智能体会话、议题和拉取请求。启用后，请刷新以查看更改。\",\n                \"Rich Jupyter Notebook Diffs\": \"Jupyter Notebook 的丰富差异视图\",\n                    \"Enables rich diffs of Jupyter Notebooks in pull requests\": \"在拉取请求中启用 Jupyter Notebook 的丰富差异视图\",\n                    \"Note: commenting on rich diff views of notebooks is not yet supported\": \"注意：尚不支持对 Jupyter Notebook 的丰富差异视图进行评论\",\n                \"Semantic issue search\": \"语义议题搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的语义搜索查找问题。在存储库的问题页面上输入自然语言查询，以发现相关的语义索引结果。您还可以结合过滤器和关键字进行传统搜索。\",\n                \"New Files Changed Experience\": \"新版文件更改体验\",\n                    \"Feature enabling the new Files Changed Page\": \"启用新版更改的文件页\",\n                \"New Files Changed Perf Experiment\": \"新版更改的文件性能优化\",\n                    \"Performance improvement for reviewing large pull requests in the New Files Changed experience. When enabled, the new experience uses virtualization to reduces the number of DOM elements and event listeners the browser has to manage. This can significantly improve memory utilization and the responsiveness of the page.\": \"这项性能优化针对“新版文件更改体验”中审查大型拉取请求的场景。启用后，新体验将采用虚拟化技术，减少浏览器需要管理的 DOM 元素数量和事件监听器数量，从而显著改善内存占用并提升页面响应速度。\",\n                    \"Note: this features only works when the New Files Changed Experience feature preview is enabled.\": \"注意：此功能仅在启用“新版文件更改体验”功能预览时才生效。\",\n                \"Slash Commands\": \"斜杠命令\",\n                    \"Slash commands make it easier to type more complex Markdown, such as tables, tasklists, and code blocks.\": \"斜线命令可以让您更轻松地输入更复杂的 Markdown，如表格、任务列表和代码块。\",\n                    \"Simply type\": \"只需在议题、拉取请求和讨论中键入\",\n                    \"on Issues, PRs and Discussions to check out a list of available commands!\": \"，即可查看可用命令的列表！\",\n                \"Feature disabled.\": \"功能已禁用。\",\n                    \"Please\": \"请\",\n                    \"give feedback\": \"提交反馈\",\n                    \"so we can improve it!\": \"以便我们加以改进！\",\n                \"Semantic issue search\": \"语义议题搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的语义议题搜索功能查找议题。在仓库的议题页面输入自然语言查询，即可发现语义索引的相关结果。您还可以结合过滤器和关键词进行传统搜索。\",\n                // 出错提示\n                    \"Sorry, something went wrong and we were not able to fetch the feature previews\": \"对不起，出了点问题，我们无法获取功能预览\",\n                \"Changes saved! Please\": \"更改已保存！请\",\n                    \"reload\": \"刷新\",\n                    \"the page to view the changes.\": \"页面以查看更改。\",\n            \"Appearance\": \"外观\",\n            \"Accessibility\": \"无障碍\",\n            \"Upgrade\": \"升级\",\n            \"Try Enterprise\": \"试用企业版\",\n                \"Free\": \"免费\",\n            \"Sign out\": \"退出\",\n\n        // 状态设置对话框\n        // 出现位置: 个人资料页, Gist 个人主页, 仓库页右上角个人图标下拉菜单\n            \"Edit status\": \"编辑状态\",\n            \"What's happening?\": \"发生了什么？\",\n\n            \"Suggestions\": \"建议\",\n                \"On vacation\": \"在度假\",\n                \"Out sick\": \"生病\",\n                \"Working from home\": \"在家工作\",\n                \"Focusing\": \"专注中\",\n\n            \"Busy\": \"繁忙中\",\n                \"When others mention you, assign you, or request your review, GitHub will let them know that you have limited availability.\": \"当其他人提及您、指派您或请求您进行评论时，GitHub 会告知他们您很忙。\",\n                \"I may be slow to respond.\": \"我的回复可能比较慢。\",\n\n            \"Clear status\": \"清除状态\",\n                \"Never\": \"永不\",\n                \"in 30 minutes\": \"30 分钟\",\n                \"in 1 hour\": \"1 小时\",\n                \"in 4 hours\": \"4 小时\",\n                \"after today\": \"今日之后\",\n                \"after this week\": \"本周之后\",\n                \"after a month\": \"本月之后\",\n                \"How long until this status will automatically clear.\": \"多久后状态自动清除。\",\n            \"Visible to\": \"可见\",\n                \"Everyone\": \"任何人\",\n                    \"Scope status visibility to a single organization.\": \"将状态可视范围扩大到单个组织。\",\n            \"Filter emoji\": \"筛选表情符号\",\n                \"Search results\": \"筛选结果\",\n\n        // 底部条\n            \"Terms\": \"服务条款\",\n            \"Privacy\": \"隐私\",\n            \"Security\": \"安全\",\n            \"Status\": \"状态\",\n            \"Community\": \"社区\",\n            \"Docs\": \"文档\",\n            \"Contact\": \"联系我们\",\n            \"Manage cookies\": \"管理 Cookies\",\n            \"Do not share my personal information\": \"请勿分享我的个人信息\",\n\n        // 左侧栏底部条\n            \"About\": \"关于\",\n            \"Blog\": \"博客\",\n            \"Manage Cookies\": \"管理 Cookies\",\n\n        // 其他\n            \"Contact GitHub\": \"联系 GitHub\",\n            \"Training\": \"培训\",\n\n        // 描述、评论编辑器翻译\n            \"Add a comment\": \"添加评论\",\n            \"Add a body\": \"添加内容\",\n            \"Write\": \"撰写\",\n                \"Use Markdown to format your comment\": \"使用 Markdown 格式编写评论\",\n                \"Add your comment here...\": \"在此添加您的评论…\",\n                \"Add your answer here...\": \"在此添加您的答复…\", // 具体讨论页\n                \"Text field is empty\": \"文本框为空\",\n            \"Preview\": \"预览\",\n                \"Nothing to preview\": \"没有可预览的内容。\",\n                \"This file is empty.\": \"这是一个空文件。\",\n                \"Try again with a file that’s not empty.\": \"使用非空文件重试。\",\n            \"Leave a comment\": \"发表评论\",\n            \"Write a reply\": \"发表回复\", // 具体讨论页\n            \"Write a comment\": \"发表评论\", // 具体讨论页\n            \"Suggest an answer\": \"提出答复\", // 具体讨论页\n            \"Ask a question, start a conversation, or make an announcement\": \"提出问题、开始讨论或发布公告\", // 新建讨论\n            \"Nothing to preview\": \"没有什么可预览\",\n            \"This repository has been archived.\": \"此仓库已存档。\", // 已存档仓库 某个提交的评论框\n            \"Add review comment\": \"添加审查意见\", // 具体拉取请求 文件审查意见\n            \"Failed to save comment: Body can't be blank\": \"保存评论失败：正文内容不能为空\", // 具体拉取请求 文件审查意见\n            \"Start a review\": \"开始审查\", // 具体拉取请求 文件审查意见\n            // 取消按钮 提醒信息\n            \"Are you sure you want to discard your unsaved changes?\": \"您确定要放弃未保存的更改吗？\",\n\n            \"Apply Suggestion\": \"添加建议\",\n            \"Add a title\": \"添加标题\",\n                \"Title\": \"标题\",\n            \"Add a description\": \"添加描述\",\n                \"Add your description here...\": \"在此添加您的描述…\",\n                \"Add an optional description...\": \"添加可选描述…\",\n            \"There was an error trying to commit changes: Failed to submit suggested changes\": \"提交更改时出错：提交建议更改失败\",\n\n            // 网络错误\n                \"There was a problem saving your comment. Please try again.\": \"保存您的评论时出现问题。请再试一次。\",\n\n            // 拉取请求 代码审查 回复对话框\n                \"Add a suggestion, <Ctrl+g>\": \"添加建议, <Ctrl+g>\",\n                \"Heading\": \"标题\",\n                \"Bold\": \"粗体\",\n                \"Italic\": \"斜体\",\n                \"Quote\": \"摘引\",\n                \"Link\": \"链接\",\n                \"Menu\": \"菜单\", // Android UA 下出现\n                \"Numbered list\": \"有序列表\",\n                \"Unordered list\": \"无序列表\",\n                \"Task list\": \"任务列表\",\n                \"Attach files\": \"附件\",\n                \"Mention\": \"提及\",\n                \"Reference\": \"引用\",\n                \"Saved replies\": \"快速回复\",\n                    \"Select a reply\": \"选择回复\",\n                    \"Create a new saved reply\": \"创建新的快速回复\",\n                \"Slash commands\": \"斜杠命令\",\n                    \"Alerts\": \"警示\",\n                        \"Add a markdown alert to emphasize important information\": \"添加 MarkDown 警示标记，强调重要信息\",\n                    \"Code block\": \"代码块\",\n                        \"Insert a code block formatted for a chosen syntax\": \"插入针对所选语法格式化的代码块\",\n                    \"Details\": \"详细信息\",\n                        \"Add a details tag to hide content behind a visible heading\": \"添加详情标签，将内容隐藏在可见标题后面\",\n                    // \"快速回复\": \"\",\n                        \"Insert one of your saved replies\": \"插入您快速回复\",\n                    \"Table\": \"表格\",\n                        \"Add markdown table\": \"添加 Markdown 表格\",\n                    \"Templates\": \"模板\",\n                        \"Insert one of your issue templates\": \"插入您的议题模板\",\n\n                    \"Slash\": \"斜杠\",\n                    // 代码块\n                        \"No Syntax\": \"无语法\",\n                    // 快速回复\n                        \"No saved replies\": \"尚无快速回复\",\n                        \"You can create one in your\": \"您可以创建一个在您的\",\n                        \"settings\": \"设置\",\n                    // 表格\n                        \"Columns\": \"列\",\n                        \"1 column\": \"1 列\",\n                        \"2 columns\": \"2 列\",\n                        \"3 columns\": \"3 列\",\n                        \"4 columns\": \"4 列\",\n                        \"5 columns\": \"5 列\",\n\n                        \"Rows\": \"行\",\n                        \"1 row\": \"1 行\",\n                        \"2 rows\": \"2 行\",\n                        \"3 rows\": \"3 行\",\n                        \"4 rows\": \"4 行\",\n                        \"5 rows\": \"5 行\",\n\n                    // 模板\n                        \"No issue templates\": \"尚无议题模板\",\n                        \"Learn more about\": \"了解更多关于\",\n                        \"issue templates\": \"议题模板\",\n\n                // 小屏 插入链接 对话框\n                    \"Insert Link\": \"插入链接\",\n                    \"Link Text\": \"链接文本\",\n                    \"Add\": \"添加\",\n\n            \"Attach files by\": \"通过\",\n            \"dragging & dropping,\": \"拖放，\",\n            \"selecting or pasting them.\": \"选择或粘贴来附加文件。\",\n            \"Markdown is supported\": \"支持 Markdown 语法\",\n            \"Styling with Markdown is supported.\": \"支持 Markdown 语法。\",\n            \"Paste, drop, or click to add files\": \"粘贴、拖放或点击添加文件\",\n            \"Write with Copilot\": \"使用 Copilot 撰写\",\n            \"Type your description here…\": \"在此输入描述…\",\n            \"Assignee\": \"受理人\",\n            \"Label\": \"标签\",\n            \"Create more\": \"添加更多\",\n            \"Start typing to create an item, or type # to select a repository\": \"开始输入以创建项目，或输入 # 选择仓库\",\n            \"Uploading your files…\": \"正在上传您的文件…\",\n            // 文件过大\n                \"This video is too big.\": \"该影片过大。\",\n                \"Try again\": \"请上传\",\n                \"with a file size less than 10MB.\": \"体积小于10MB的文件\",\n\n            \"Close issue\": \"关闭议题\", // issue页 评论框\n                \"Close as completed\": \"完成后关闭\",\n                    \"Done, closed, fixed, resolved\": \"已完成、已关闭、已修复、已解决\",\n                \"Close as not planned\": \"非计划中关闭\",\n                    \"Won't fix, can't repro, duplicate, stale\": \"不会修复，无法重现，重复，陈旧\",\n                    \"Won't fix, can't repro, stale\": \"不会修复，无法重现，陈旧\", // 新版议题页\n                // 因重复而关闭（新版议题页）\n                    \"Duplicate of another issue\": \"重复议题\",\n            \"Close with comment\": \"评论并关闭\", // 议题/拉取请求 评论框\n            \"Close pull request\": \"关闭拉取请求\", // 拉取请求页 评论框\n            \"Reopen discussion\": \"重新打开讨论\", // discussion页 评论框\n            \"Close discussion\": \"关闭讨论\", // discussion页 评论框\n                \"Close as resolved\": \"因解决而关闭\",\n                    \"The discussion has been resolved\": \"讨论已解决\",\n                \"Close as outdated\": \"因过时而关闭\",\n                    \"The discussion is no longer relevant\": \"讨论不再相关\",\n                \"Close as duplicate\": \"因重复而关闭\",\n                    \"The discussion is a duplicate of another\": \"讨论与另一个讨论重复\",\n            \"Comment\": \"评论\",\n            \"comment\": \"评论\",\n            \"Submit new issue\": \"提交新议题\",\n            \"Comment on this commit\": \"评论\",\n            \"Close and comment\": \"提交并关闭\",\n            \"Reopen and comment\": \"提交并重新打开\",\n            \"Reopen issue\": \"重新打开议题\", // 具体议题\n            \"Reopen with comment\": \"重新打开评论\", // 具体议题\n            \"Reopen pull request\": \"重新打开拉取请求\", //具体拉取请求\n            \"Add single comment\": \"评论\", // 具体提交页 进行某条代码评论\n            \"Reply\": \"回复\", // 具体讨论页\n            \"Answer\": \"答复\", // 具体讨论页\n            \"Start discussion\": \"开始讨论\", // 新建讨论\n            \"discussion\": \"讨论\", // 新建讨论\n            \"discussions\": \"讨论\", // 新建讨论\n\n            \"Spammy\": \"仅自己可见\",\n                \"This user is marked as spammy. Their comments will onlyshow in staff mode.\": \"该用户已被封号，评论仅自己可见。\",\n\n        // 添加到清单\n            \"Add to list\": \"添加到清单\",\n                \"You don't have any lists yet.\": \"您尚无任何清单。\",\n                \"Lists\": \"清单\",\n                    \"Search lists\": \"搜索清单\",\n                    \"🔮 Future ideas\": \"🔮 超前想法\",\n                    \"🚀 My stack\": \"🚀 技术栈\",\n                    \"✨ Inspiration\": \"✨ 灵感\",\n                    \"No results found.\": \"未找到结果。\",\n                \"Create list\": \"创建清单\",\n                    \"Create a list to organize your starred repositories.\": \"创建一个清单来组织您的星标仓库。\",\n                    \"⭐️ Name this list\": \"⭐️ 清单名称\",\n                    \"Write a description\": \"简单描述\",\n                    // 小贴士\n                        \"type\": \"输入\",\n                        \"to add emoji to the name or description.\": \"在名称或描述中添加表情符号\",\n                    \"Lists are currently in beta.\": \"清单目前处于测试阶段。\",\n                    \"Share feedback and report bugs.\": \"分享反馈意见和报告错误。\",\n                    \"Creating...\": \"创建中…\",\n                    // 私有\n                        \"Enabling this makes the list visible only to you.\": \"启用此选项将使该列表仅对您可见。\",\n\n        // 全局快捷键对话框 - 快捷键 ? 打开\n            \"Keyboard shortcuts\": \"键盘快捷键\",\n            \"Site-wide shortcuts\": \"全站快捷键\",\n                \"Open command palette\": \"打开命令面板\",\n                \"Open command palette in command mode\": \"在命令模式下打开命令面板\",\n                \"Focus search bar\": \"聚焦搜索栏\", // gist\n                \"Open search bar\": \"打开搜索栏\",\n                \"Go to notifications\": \"跳转到通知\",\n                \"Go to dashboard\": \"跳转到仪表板\",\n                \"Go to your issues\": \"跳转到议题\",\n                \"Go to your pull requests\": \"跳转到拉取请求\",\n                \"Bring up this help dialog\": \"弹出这个帮助对话框\",\n                \"Move selection down\": \"向下移动选择\",\n                \"Move selection up\": \"向上移动选择\",\n                \"Toggle selection\": \"切换选择\",\n                \"Open selection\": \"打开选择\",\n                \"Expand and move focus into focused link's hovercard\": \"展开并将焦点移至聚焦链接的悬浮卡\",\n            \"View all keyboard shortcuts\": \"查看所有键盘快捷键\",\n\n        // 命令面板 - ctrl k 或 ctrl alt k 打开\n            \"Clear Command Palette\": \"清除命令面板\",\n            \"Tip:\": \"小贴士：\",\n                \"Go to your accessibility settings to change your keyboard shortcuts\": \"跳转到您的无障碍设置，以更改您的键盘快捷键\",\n                \"to search discussions\": \"搜索讨论\", // 键入 #\n                \"to search issues\": \"搜索议题\", // 键入 #\n                \"to search pull requests\": \"搜索拉取请求\", // 键入 #\n                \"to search projects\": \"搜索项目\", // 键入 !\n                \"to search people and organizations\": \"搜索成员和组织\", // 键入 @\n                \"to search teams\": \"搜索团队\", // 键入 @\n                \"to activate command mode\": \"激活命令模式\", // 键入 >\n                \"Type is:issue to filter to issues\": \"键入 is:issue 以筛选议题\",\n                \"Type is:pr to filter to pull requests\": \"键入 is:pr 以筛选拉取请求\",\n                \"Type is:open to filter to open content\": \"键入 is:open 以筛选打开的内容\",\n                \"Type author:@me to search your content\": \"键入 author:@me 以筛选您的内容\",\n                \"for help and tips\": \"寻求帮助和提示\", // 键入 ?\n\n            \"Pages\": \"GitHub Pages\",\n            \"Dashboard\": \"仪表板\",\n            \"Notifications\": \"通知\",\n            // \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Insights\": \"洞察\",\n            \"Organizations\": \"组织\",\n            \"Repositories\": \"仓库\",\n            \"Packages\": \"软件包\",\n            \"Users\": \"用户\",\n            \"to jump to\": \"去跳转\",\n\n            \"Top result\": \"最佳结果\",\n            \"No results matched your search\": \"没有与您的搜索相符的结果\",\n            // [/in ([\\w]+/[\\w]+)/, \"在 $1\"],\n\n            // # 模式\n                \"Search issues and pull requests\": \"搜索议题和拉取请求\",\n                \"Search issues, pull requests, discussions, and projects\": \"搜索议题、拉取请求、讨论和项目\",\n                \"Issues, pull requests, and discussions\": \"议题、拉取请求和讨论\",\n\n            // ! 模式\n                \"Search projects\": \"搜索项目\",\n\n            // @ 模式\n                \"Search or jump to a repository\": \"搜索或跳转到仓库\",\n                \"Search or jump to a user, organization, or repository\": \"搜索或跳转到用户、组织或仓库\",\n\n            // / 文件模式\n                \"Search files\": \"搜索文件\",\n                \"Files\": \"文件\",\n\n            // > 命令模式\n                \"Run a command\": \"运行命令\",\n                \"Run command\": \"运行命令\",\n                \"Commands\": \"命令\",\n                \"Global Commands\": \"全局命令\",\n                \"Type > to filter\": \"键入 > 去筛选\",\n                \"– New repository\": \"- 新建仓库\",\n                \"– Import repository\": \"- 导入仓库\",\n                \"– New project\": \"- 新建项目\",\n                \"– New discussion\": \"- 新建讨论\",\n                \"– New organization\": \"- 新建组织\",\n                \"– New gist\": \"- 新建代码片段\",\n                \"– New issue\": \"- 新建议题\",\n                \"– New file\": \"- 新建文件\",\n                \"– Change tab size rendering\": \"- 切换制表符尺寸\",\n                \"– Switch theme\": \"- 切换主题\",\n\n                \"New issue\": \"新建议题\",\n                \"New discussion\": \"新建讨论\",\n                \"New file\": \"新建文件\",\n                \"Change tab size rendering\": \"切换制表符尺寸\",\n                \"Change tab size r...\": \"切换制表符尺寸\",\n                    \"2 spaces\": \"2 个空格\",\n                    \"3 spaces\": \"3 个空格\",\n                    \"4 spaces\": \"4 个空格\",\n                    \"5 spaces\": \"5 个空格\",\n                    \"6 spaces\": \"6 个空格\",\n                    \"7 spaces\": \"7 个空格\",\n                    \"8 spaces\": \"8 个空格\",\n                    \"9 spaces\": \"9 个空格\",\n                    \"10 spaces\": \"10 个空格\",\n                    \"12 spaces\": \"12 个空格\",\n                \"Switch theme\": \"切换主题\",\n                    \"Default dark\": \"暗 - 默认\",\n                    \"Default light\": \"亮 - 默认\",\n                    \"Dark dimmed\": \"昏暗\",\n                    \"Switch theme to dark high contrast\": \"切换主题为 暗 - 高对比\",\n                    \"Sync with system settings\": \"与系统设置同步\",\n\n            // ? 模式\n                \"Modes\": \"模式\",\n                \"Search for\": \"搜索\",\n                \"across all of GitHub\": \"在整个 GitHub 中\",\n                \"issues, pull requests, discussions,\": \"议题、拉取请求、讨论\",\n                \"organizations, repositories,\": \"组织、仓库\",\n                \"projects\": \"项目\",\n                \"files\": \"文件\",\n                \"issues\": \"议题\",\n                \"pull requests\": \"拉取请求\",\n                \"organizations\": \"组织\",\n                \"repositories\": \"仓库\",\n                \"users\": \"用户\",\n                \"Activate\": \"激活\",\n                \"command mode\": \"命令模式\",\n\n                \"Use filters in issues, pull requests, discussions, and projects\": \"在议题、拉取请求、讨论和项目中使用过滤器\",\n                \"Search your issues, pull requests, and discussions\": \"搜索您的议题、拉取请求和讨论\",\n                \"Filter to pull requests\": \"筛选拉取请求\",\n                \"Filter to issues\": \"筛选议题\",\n                \"Filter to discussions\": \"筛选讨论\",\n                \"Filter to projects\": \"筛选项目\",\n                \"Filter to open issues, pull requests, and discussions\": \"筛选打开的议题、拉取请求和讨论\",\n\n            // 议题页面\n                \"Edit issue title\": \"编辑议题标题\",\n                \"Edit issue body\": \"编辑议题内容\",\n                \"Transfer issue…\": \"转移议题…\",\n                \"Delete issue…\": \"删除议题…\",\n\n        // 公共词 高频词\n            \"Follow\": \"关注\",\n            \"Unfollow\": \"取消关注\",\n            \"Star\": \"星标\",\n            \"Stars\": \"星标\",\n            \"Unstar\": \"已加星标\",\n            \"Starred\": \"已加星标\",\n            \"Fork\": \"复刻\",\n            \"Save\": \"保存\",\n            \"Saving…\": \"保存中…\",\n            \"Saving...\": \"保存中…\",\n            \"Save changes\": \"保存更改\",\n            \"Update\": \"更新\",\n            \"Updating\": \"更新中\",\n            \"Updating…\": \"更新中…\",\n            \"Updating...\": \"更新中…\",\n            \"Delete\": \"删除\",\n            \"Cancel\": \"取消\",\n            \"Edit\": \"编辑\",\n            \"Added on\": \"添加于\",\n            \"Loading\": \"加载中\",\n            \"Loading…\": \"载入中…\",\n            \"Loading...\": \"载入中…\",\n            \"Copy\": \"复制\",\n            \"Copied!\": \"✅ 复制成功!\",\n            \"Copy to clipboard\": \"复制到剪切板\",\n            \"Give feedback\": \"反馈\",\n            \"Give us your feedback\": \"向我们提供反馈意见\",\n            \"Download\": \"下载\",\n            \"View\": \"查看\",\n            \"Create\": \"创建\",\n\n            \"Close\": \"关闭\",\n            \"Closed\": \"已关闭\",\n            \"Open\": \"打开\",\n            \"Reopen\": \"重新打开\",\n\n            \"and\": \"和\",\n            \", and\": \"，和\",\n            \"or\": \"或\",\n            \", or\": \"，或\",\n            \"to\": \"到\",\n            \"by\": \"由\",\n            \"on\": \"于\",\n            \"Use\": \"使用\",\n            \"New\": \"新\",\n\n            \"Learn more\": \"了解更多\",\n            \"Learn More\": \"了解更多\",\n            \"Learn more.\": \"了解更多。\",\n            \",\": \"，\",\n            \".\": \"。\",\n\n            \"Prev\": \"上一页\",\n            \"Previous\": \"上一页\",\n            \"Next\": \"下一页\",\n\n            \"Less\": \"更少\",\n            \"More\": \"更多\",\n\n            \"Show more\": \"显示更多\",\n            \"Show less\": \"显示更少\",\n\n            \"Load more…\": \"载入更多…\",\n            \"Loading more…\": \"载入更多…\",\n            \"Loading more...\": \"载入更多…\",\n\n            // 名词\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Public archive\": \"公共存档\",\n                \"Private archive\": \"私有存档\",\n                \"Public template\": \"公共模板\",\n                \"Public mirror\": \"公共镜像\",\n                \"Code\": \"代码\",\n                \"Overview\": \"概况\",\n                \"Followers\": \"关注者\",\n                \"Collaborators\": \"协作者\",\n                \"collaborators\": \"协作者\",\n                \"Sponsors\": \"赞助者\",\n                \"Sponsoring\": \"赞助者\",\n                \"commit\": \"提交\",\n                \"commits\": \"提交\",\n                \"Organization\": \"组织\",\n                \"People\": \"成员\",\n                \"Teams\": \"团队\",\n\n            // 相对时间\n                \"just now\": \"刚刚\",\n                \"now\": \"当前\",\n                \"yesterday\": \"昨天\",\n                \"last month\": \"上个月\",\n\n        // 验证标记浮动信息\n            \"This commit was created on GitHub.com and signed with GitHub’s\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub's\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub’s verified signature\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was signed with the committer's\": \"此提交已签名，使用提交者的\",\n            \"This tag was signed with the committer's\": \"此标签已签署，使用提交者的\", // /<user-name>/<repo-name>/releases\n            \"This commit was signed with the committer’s\": \"此提交已签名，使用提交者的\",\n            \"This tag was signed with the committer’s\": \"此标签已签署，使用提交者的\", //\n            \"This commit is signed with the committer’s\": \"此提交已签名，使用提交者的\",\n            \"’s contribution has been verified via GPG key.\": \"的贡献已通过 GPG 密钥验证。\",\n            \"verified signature\": \"已验证签名\",\n            \"The key has expired\": \"密钥已过期\",\n            \"This commit is not signed, but one or more authors requires that any commit attributed to them is signed.\": \"此提交未签名，但一位或多位作者要求对归属于他们的任何提交进行签名。\",\n            \"We had a problem verifying this signature. Please try again later.\": \"我们在验证此签名时遇到问题。请稍后再试。\",\n            \"We were unable to verify this signature.\": \"我们无法验证此签名。\",\n            \"This user has not yet uploaded their public signing key.\": \"此用户尚未上传其公共签名密钥。\",\n\n            \"GPG key ID:\": \"GPG 密钥 ID：\",\n            \"GPG Key ID:\": \"GPG 密钥 ID：\",\n            \"SSH key Fingerprint:\": \"SSH 密钥指纹：\",\n            \"SSH Key Fingerprint:\": \"SSH 密钥指纹：\",\n            \"Learn about vigilant mode\": \"了解警戒模式\",\n            \"The email in this signature doesn’t match the committer email.\": \"此签名中的电子邮箱与提交者的电子邮箱不相符。\",\n            \"No user is associated with the committer email.\": \"提交者的电子邮箱未与用户相关联。\",\n\n            \"Verified\": \"已验证\",\n            \"Expired\": \"已过期\",\n            \"Partially verified\": \"部分验证\",\n                \"We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.\": \"我们无法验证来自共同作者的签名，并且此提交的某些共同作者要求对其提交进行签名。\",\n            \"Unverified\": \"未验证\",\n                \"Upload your public signing GPG key\": \"上传您的公共签名 GPG 密钥\",\n                \"to verify your signature.\": \"以验证您的签名。\",\n\n        // 邮箱验证提示\n            \"Please verify your email address to access all of GitHub's features.\": \"请验证您的电子邮箱地址以便开启所有 GitHub 功能。\",\n            \"Configure email settings\": \"修改电子邮箱设置\",\n            \"Your email was verified.\": \"您的电子邮箱地址验证成功！\",\n\n        // 标签提示\n            \"New feature or request\": \"新功能或要求\",\n\n        // 更换新手机, 要求重新下载恢复码的全局提醒\n            \"Don't get locked out - if you get a new phone this season, be sure to transfer your authenticator app data to the new phone. Enable cloud back up if your authenticator app supports it and consider\": \"不要被锁在门外——如果您在这个季节买了一部新手机，请务必将您的身份验证器应用数据传输到新手机。如果您的身份验证器应用支持云备份，请启用它并考虑\",\n            \"redownloading your recovery codes\": \"重新下载您的恢复码\",\n            \", just to be safe.\": \"，以确保安全。\",\n\n        // 刷新会话提示条\n            \"You signed in with another tab or window.\": \"您使用其他标签页或窗口登录。\",\n            \"Reload\": \"重新加载\",\n            \"to refresh your session.\": \"以刷新您的会话\",\n\n        // Cookie 设置\n            \"Manage cookie preferences\": \"管理 Cookie 偏好设置\",\n            \"Most GitHub websites use cookies. Cookies are small text files placed on your device to store data so web servers can use it later. GitHub and our third-party partners use cookies to remember your preferences and settings, help you sign in, show you personalized ads, and analyze how well our websites are working. For more info, see the Cookies and similar technologies section of the\": \"大多数 GitHub 网站都使用 Cookie。Cookie 是保存在您的设备上的小型文本文件，用于存储数据，以便 Web 服务器稍后使用。GitHub 和我们的第三方合作伙伴使用 Cookie 来记住您的偏好和设置、帮助您登录、向您显示个性化广告以及分析我们网站的运行情况。有关更多信息，请参阅隐私声明中的\",\n            \"Privacy Statement\": \"Cookie 和类似技术部分\",\n            \"Accept\": \"接受\",\n            \"Reject\": \"拒绝\",\n            \"Reset all\": \"重置全部\",\n            \"Required\": \"必要的\",\n            \"GitHub uses required cookies to perform essential website functions and to provide the services. For example, cookies are used to log you in, save your language preferences, provide a shopping cart experience, improve performance, route traffic between web servers, detect the size of your screen, determine page load times, improve user experience, and for audience measurement. These cookies are necessary for our websites to work.\": \"GitHub 使用必需的 Cookie 来执行基本网站功能并提供服务。例如，Cookie 用于登录、保存您的语言偏好、提供购物车体验、提高性能、在 Web 服务器之间路由流量、检测屏幕大小、确定页面加载时间、改善用户体验以及用于受众测量。这些 Cookie 是我们网站正常运行所必需的。\",\n            \"Analytics\": \"分析\",\n            \"We allow third parties to use analytics cookies to understand how you use our websites so we can make them better. For example, cookies are used to gather information about the pages you visit and how many clicks you need to accomplish a task. We also use some analytics cookies to provide personalized advertising.\": \"我们允许第三方使用分析性 Cookie 来了解您如何使用我们的网站，以便我们改进网站。例如，Cookie 用于收集有关您访问的页面以及完成任务所需的点击次数的信息。我们还使用一些分析性 Cookie 来提供个性化广告。\",\n            \"Social Media\": \"社交媒体\",\n            \"GitHub and third parties use social media cookies to show you ads and content based on your social media profiles and activity on GitHub's websites. This ensures that the ads and content you see on our websites and on social media will better reflect your interests. This also enables third parties to develop and improve their products, which they may use on websites that are not owned or operated by GitHub.\": \"GitHub 和第三方使用社交媒体 Cookie 根据您的社交媒体个人资料和 GitHub 网站上的活动向您显示广告和内容。这可以确保您在我们的网站和社交媒体上看到的广告和内容将更好地反映您的兴趣。还使第三方能够开发和改进它们的产品，它们可能会在不由 GitHub 拥有或运营的网站上使用这些产品。\",\n            \"Advertising\": \"广告\",\n            \"In addition, GitHub and third parties use advertising cookies to show you new ads based on ads you've already seen. Cookies also track which ads you click or purchases you make after clicking an ad. This is done to show you ads that are more relevant to you and for business purposes with our advertising partners. For example, cookies are used to detect when you click an ad and to show you ads based on your social media interests and website browsing history.\": \"此外，GitHub 和第三方使用广告 Cookie 根据您已经看过的广告向您显示新广告。Cookie 还会跟踪您点击的广告或点击广告后进行的购买。这样做是为了向您显示与您更相关的广告，并用于与我们的广告合作伙伴开展业务。例如，Cookie 用于检测您何时点击广告，并根据您的社交媒体兴趣和网站浏览历史记录向您显示广告。\",\n\n        // 日历\n            \"Jan\": \"1月\",\n            \"Feb\": \"2月\",\n            \"Mar\": \"3月\",\n            \"Apr\": \"4月\",\n            \"May\": \"5月\",\n            \"Jun\": \"6月\",\n            \"Jul\": \"7月\",\n            \"Aug\": \"8月\",\n            \"Sep\": \"9月\",\n            \"Oct\": \"10月\",\n            \"Nov\": \"11月\",\n            \"Dec\": \"12月\",\n\n            \"January\"   : \"1月\",\n            \"February\"  : \"2月\",\n            \"March\"     : \"3月\",\n            \"April\"     : \"4月\",\n            \"June\"      : \"6月\",\n            \"July\"      : \"7月\",\n            \"August\"    : \"8月\",\n            \"September\" : \"9月\",\n            \"October\"   : \"10月\",\n            \"November\"  : \"11月\",\n            \"December\"  : \"12月\",\n\n            \"Sun\"  : \"周日\",\n            \"Mon\"  : \"周一\",\n            \"Tue\"  : \"周二\",\n            \"Wed\"  : \"周三\",\n            \"Thu\"  : \"周四\",\n            \"Fri\"  : \"周五\",\n            \"Sat\"  : \"周六\",\n\n        // 语言名称（仅适配热门语言\n            \"Arabic\": \"阿拉伯文\",\n            \"Chinese\": \"中文\",\n            \"English\": \"英文\",\n            \"French\": \"法文\",\n            \"German\": \"德文\",\n            \"Greek, Modern\": \"希腊文\",\n            \"Italian\": \"意大利文\",\n            \"Japanese\": \"日文\",\n            \"Korean\": \"韩文\",\n            \"Latin\": \"拉丁文\",\n            \"Portuguese\": \"葡萄牙文\",\n            \"Russian\": \"俄文\",\n            \"Sichuan Yi, Nuosu\": \"彝文\", // 存疑\n            \"Spanish, Castilian\": \"西班牙文\",\n            \"Thai\": \"泰文\",\n            \"Tibetan\": \"藏文\",\n            \"Vietnamese\": \"越南文\",\n            \"Zhuang, Chuang\": \"壮文\", // 存疑\n\n        // Copilot 窗口\n            // 顶部\n            \"All repositories\": \"所有仓库\",\n            \"Back\": \"返回\",\n            \"Conversation options\": \"选项\",\n                \"Enable custom instructions\": \"启用个人指导\",\n                \"Disable custom instructions\": \"禁用个人指导\",\n                \"Personal instructions\": \"个人指导\",\n                    \"Set up Copilot to align with your workflows and preferences. These instructions will only impact your personal conversation.\": \"设置 Copilot 以符合您的工作流程和偏好。这些指导仅影响您的个人对话。\",\n                    \"Your instructions\": \"您的指导\",\n                        \"Role\": \"角色\",\n                        \"Communication\": \"通信\",\n                        \"Code preferences\": \"代码偏好\",\n                    \"characters\": \"字符\",\n                \"Delete conversation\": \"删除对话\",\n                \"View all conversations\": \"查看全部对话\",\n                    \"There are no conversations at the moment.\":\"目前没有对话。\",\n                    \"Start a new conversation\":\"开始新对话\",\n                    \"Active conversations\": \"最近对话\",\n                    \"All conversations\": \"所有对话\",\n                    // 删除\n                        \"Are you sure? This can’t be undone.\": \"您确定吗？此操作无法撤销。\",\n            \"Continue in immersive\": \"全屏对话\",\n            \"Close chat\": \"关闭\",\n\n            \"public\": \"公共\",\n            \"repository\": \"仓库\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n                \"Select a repository to get started. Ask questions about your codebase to get answers fast and learn your way around.\": \"选择一个仓库即可开始。询问有关代码库的问题，以快速获得答案并了解相关知识。\",\n                \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Search repositories to chat about\": \"搜索要讨论的仓库\",\n            \"Recent repositories\": \"最近访问\",\n            \"General purpose chat\": \"普通对话\",\n\n            \"Loading Conversation\": \"加载中\",\n            \"Chatting about code and programming\": \"讨论关于代码和编程\",\n            // 对话框\n            \"Ask about the repository:\": \"询问关于此仓库的信息：\",\n            \"Ask about the tree comparison:\": \"询问关于比较的信息：\",\n            \"How can I help you?\": \"有什么可以帮忙？\",\n            \"Attach\": \"附件\",\n            \"Attach files or symbols\": \"附加文件或符号\",\n                \"Fetching files, folders, and symbols…\": \"正在获取文件（夹）和符号…\",\n            \"Add an extension\": \"添加扩展\",\n                //\"Files and symbols…\": \"文件和符号…\",\n                \"Files, folders, and symbols\": \"文件（夹）和符号…\",\n                    \"First attach a repository\": \"请先附加仓库\",\n                    \"Select files, folders, and symbols\": \"选择文件（夹）和符号\",\n                    \"Choose a repository to browse for files, folders, and symbols.\": \"选择仓库以浏览文件（夹）和符号。\",\n                    //\"Attach files and symbols\": \"附加文件和符号\",\n                        //\"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的文件和符号。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Choose what you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的内容。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Search files and symbols\": \"搜索文件和符号\",\n                        \"Current attachments\": \"当前附件\",\n                        \"Symbols\": \"符号\",\n                \"Repository…\": \"仓库…\",\n                    \"Attach a repository\": \"附加仓库\",\n                        \"Search repositories\": \"搜索仓库\",\n                        \"Fetching repositories…\": \"正在获取仓库\",\n                \"Repository\": \"仓库\",\n                \"Repositories…\": \"仓库…\",\n                    \"Select a repository\": \"选择仓库\",\n                    \"Select repositories\": \"选择仓库\",\n                        \"Choose repositories to chat about.\": \"选择以聊天\",\n                        \"Choose a repository to chat about.\": \"选择以聊天\",\n                \"Remove topic\": \"移除主题\",\n                \"Add repositories, files, and spaces\": \"添加仓库、文件和空间\",\n                \"Upload from computer\": \"上传本机文件\",\n                \"Files and folders\": \"文件和文件夹\",\n                \"Spaces…\": \"空间…\",\n                \"Create your first space\": \"创建您的第一个空间\",\n                \"Extensions…\": \"扩展…\",\n                \"Extensions\": \"扩展\",\n                    \"Chat with your favorite tools and services\": \"使用您最喜欢的工具和服务聊天\",\n                    \"Browse the marketplace to find extensions for the tools and services you rely on\": \"浏览市场以查找您所依赖的工具和服务的扩展\",\n                    \"Browse marketplace\": \"前往市场\",\n            \"Add attachment\": \"添加附件\",\n            \"Remove topic\": \"移除主题\",\n            \"Convert to file\": \"转成文件\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件选项\",\n                \"Remove attachments\": \"移除附件\",\n            \"Send now\": \"发送\",\n            \"Stop response\": \"停止响应\",\n            // 反馈\n            \"Rate your experience\": \"反馈\",\n            // 四个表情\n                \"Love it\": \"优\",\n                \"It’s ok\": \"良\",\n                \"Not great\": \"中\",\n                \"Hate it\": \"差\",\n\n            \"Tell us what you liked or what could be better\": \"告诉我们您喜欢什么或可以改进的地方\",\n\n            // 响应状态\n                \"Copilot is responding…\": \"Copilot 响应中…\",\n                \"creating plan\": \"创建计划中\",\n                \"getting data\": \"获取数据中\",\n                \"Using the GitHub API to search pull requests\": \"正在使用 GitHub API 搜索拉取请求\",\n                \"Using the GitHub API to get latest release\": \"正在使用 GitHub API 获取最新发行版\",\n                    \"Copilot used the\": \"Copilot 已使用\",\n                    \"Issue API\": \"议题 API\",\n                    \"tool\": \"工具\",\n\n            // 聊天内容 - 创建拉取请求\n                \"Are you sure?\": \"您确定吗？\",\n                    \"Are you sure you wish to execute the \\\"Create pull request with Copilot coding agent\\\" tool?\": \"您确定要执行“使用 Copilot 编程智能体创建拉取请求”工具吗？\",\n                    \"Allow\": \"允许\",\n                    \"Dismiss\": \"拒绝\",\n\n                \"accepted\": \"允许\",\n                    \"the action\": \"此操作\",\n\n            // 引用\n                \"More reference options\": \"更多引用选项\",\n                    \"Attach to chat\": \"附加至聊天\",\n                    \"Raw\": \"源码\",\n                    \"Show content\": \"显示内容\",\n                        \"above\": \"上方\",\n                        \"below\": \"下方\",\n                    \"Reference details\": \"引用信息\",\n                        \"contributor\": \"贡献者\",\n                        \"contributors\": \"贡献者\",\n                        \"updated\": \"更新于\",\n\n            // 报错\n                \"Copilot was interrupted before it could finish this message.\": \"Copilot 在完成此消息之前被中断。\",\n\n            \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"请不要包含敏感、机密或个人数据。您的匿名反馈有助于我们改进服务，根据\",\n            \"Privacy Policy\": \"隐私政策\",\n            \"Send\": \"发送\",\n            \"Task\": \"任务\",\n            \"Create task\": \"创建任务\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n\n            \"Copy code\": \"复制代码\",\n            \"Copied!\": \"复制成功！\",\n\n            \"Good response\": \"点赞\",\n                \"positive feedback submitted\": \"已提交正面反馈\",\n            \"Bad response\": \"点踩\",\n            \"Retry\": \"重试\",\n\n            \"Give additional feedback\": \"提交额外反馈\",\n                \"Would you like to participate in our research?\": \"您愿意参与我们的研究吗？\",\n                \"You will be compensated for your time\": \"您的时间将得到补偿。\",\n                \"Book a session\": \"预约\",\n                \"No, thanks\": \"不，谢谢\",\n\n            \"Chats\": \"聊天\",\n            \"No chats yet\": \"还没有聊天\",\n            \"Ask Copilot anything on the right to start your first chat.\": \"在右侧询问 Copilot 任何问题，开始您的第一次聊天。\",\n\n            \"Agent sessions\": \"智能体任务\",\n                \"New agent session\": \"新智能体任务\",\n                \"No agents running\": \"没有智能体任务运行\",\n                \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您现在可以请求 Copilot 在后台处理任务，创建一个拉取请求供您审查。\",\n\n            \"Explore the latest Copilot launches from Universe ’25\": \"探索 Universe ’25 的最新 Copilot 启动\",\n            \"See what’s new\": \"查看最新内容\",\n            \"Explore GitHub’s latest tools shaping agentic software and developer choice.\": \"探索 GitHub 最新的工具，塑造智能化的软件和开发者选择。\",\n\n            \"Select a custom agent\": \"选择自定义智能体\",\n                \"Create an agent\": \"新建智能体\",\n\n            \"Start task\": \"开始任务\",\n\n            \"Recent agent sessions\": \"最近智能体任务\",\n            \"Recent sessions\": \"最近任务\",\n                \"No sessions found. Create one by sending a prompt above.\": \"没有找到任务。通过发送提示来创建一个。\",\n\n            // 空间\n            \"Duplicate\": \"复制\",\n            \"Duplicate Space\": \"复制空间\",\n            \"Spaces are now available through the GitHub MCP in VSCode.\": \"空间现在可以通过 VSCode 的 GitHub MCP 使用。\",\n            \"Install\": \"安装\",\n            \"Spaces organize your files, pull requests, issues, and standards so Copilot can give more relevant help for your work.\": \"空间组织您的文件、拉取请求、议题和标准，以便 Copilot 为您的工作提供更相关的帮助。\",\n            \"Create space\": \"创建空间\",\n            \"Search...\": \"搜索…\",\n            \"Shared with me\":\"与我共享的空间\",\n            \"Start your first space\": \"开始您的第一个空间\",\n            \"Need help? Read the docs\": \"需要帮助？阅读文档\",\n            \"Generate code\": \"生成代码\",\n            \"Produce code that follows your team's patterns.\": \"生成符合团队规范的代码。\",\n            \"Share knowledge\": \"分享知识\",\n            \"Centralize docs so your team can quickly find answers.\": \"集中管理文档，让团队快速找到答案。\",\n            \"Plan projects\": \"规划项目\",\n            \"Create requirements and issues your team can ship.\": \"创建团队可交付的需求与议题。\",\n            \"New Space\": \"新空间\",\n            \"Space name\": \"空间名称\",\n            \"Choose a name that describes your project or use case\": \"选择一个描述您的项目或用例的名称\",\n            \"Only you will be able to see this space.\": \"只有您可以看到此空间。\",\n            \"Create Space\": \"创建空间\",\n            \"Install MCP\": \"安装 MCP\",\n            \"Add a short description to explain this space's purpose (e.g., 'Frontend design system' or 'API docs hub').\": \"添加一个简短的描述，解释此空间的用途（例如，'前端设计系统'或'API 文档中心'）。\",\n            \"Add files\": \"添加文件\",\n            \"Define Copilot’s role, focus, and what to avoid in this space. Ex. “You are a [role]. Follow our [framework/patterns] to [type of task]. Avoid [practices or tools] unless specified”.\": \"定义 Copilot 的角色、焦点和在此空间中避免的内容。例如，“您是 [角色]。遵循我们的 [框架/规范] 来 [任务类型]。除非另有说明，否则避免 [实践或工具]。”\",\n            \"Sources\": \"来源\",\n            \"Conversations\": \"对话\",\n            \"Add sources\": \"添加来源\",\n                \"Add repository\": \"添加仓库\",\n                \"Add files from repository\": \"从仓库添加文件\",\n                \"Link files, pull requests, and issues\": \"链接文件、拉取请求和议题\",\n                \"Local\": \"本地\",\n                \"Upload a file\": \"上传文件\",\n                \"Add text content\": \"添加文本内容\",\n            \"Add sources to get started\": \"添加来源以开始\",\n            \"Provide files, docs, issues, or repositories so Copilot can give more relevant answers.\": \"提供文件、文档、议题或仓库，以便 Copilot 为您提供更相关的答案。\",\n            \"Start a new conversation in this space by typing in the input box at the top.\": \"通过在顶部输入框中输入，开始在此空间中的新对话。\",\n            \"Space not found\": \"空间未找到\",\n            \"This URL may be incorrect, you're signed out of your organization, or the Space may have been deleted.\": \"此 URL 可能不正确，您已退出组织，或空间可能已被删除。\",\n            \"Manage session\": \"管理会话\",\n            \"View pull request\": \"查看拉取请求\",\n            \"View verbose logs\": \"查看详细日志\",\n            \"More actions\": \"更多操作\",\n            \"Copilot started work\": \"Copilot 开始工作\",\n            \"Summary\": \"摘要\",\n            \"Copy head branch name to clipboard\": \"复制头分支名称到剪贴板\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // Copilot 窗口\n        [/Chatting about ([^ ]+)/, \"关于 $1 的对话\"],\n        [/Chatting with (\\d+) attachments?/, \"附加 $1 个附件\"],\n        //[/Public code references from 4 repositories/, \"\"],\n        [/Public code references from (\\d+) repositor(y|ies)/, \"公共代码，引用自 $1 个仓库\"],\n        [/(\\d+) references?/, \"$1 条引用\"],\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 代码行（line of code）= 行数 - 空行数（lines - blank lines）\n        [/Using the GitHub API to search for issues assigned to user ([^ ]+)/, \"使用 GitHub API 搜索分配给用户 $1 的议题\"],\n        [/Chatting with (\\d+) attachments?/, \"附件 $1 个\"],\n        [/Choose items from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"从 $1 中选择项目来进行交流。使用较少的引用以获得更准确的回答。\"],\n        [/Choose files, folders, and symbols from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"选择 $1 中的文件（夹）和符号进行聊天。引用越少，回复越准确。\"],\n        [/Delete conversation: \\\"(.+)\\\"/, \"删除对话：“$1”\"],\n        // 智能体\n        [/Branch: (.+)/, \"分支：$1\"],\n        [/Agent: (.+)/, \"智能体：$1\"],\n        /**\n         * 匹配时间格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否稳定, 暂时先试用着. 2016-03-19 20:46:45\n         *\n         * 更新于 2021-10-04 15:19:18\n         * 增加 带介词 on 的格式，on 翻译不体现\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新于 2021-10-10 13:44:36\n         * on 星期(简写), 月 日 年  // 个人访问令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多规则\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全称), 月 日, 年 // 仓库-->洞察-->流量 图示标识\n         * Sunday, November 14, 2021\n         *\n         * 星期(全称), 日 月 年// 仓库-->洞察-->贡献者 和 仓库-->洞察-->代码频率\n         * Sunday, 4 Jul 2023\n         *\n         * 更新于 2023-07-04 13:19:21\n         * 新增前缀词, 减少二次组织翻译\n         *  Updated Jul 4            // 仪表板页面 仓库标签卡\n         *  Commits on Jul 4, 2023   // 提交页面、仓库拉取请求页->提交卡\n         *  Joined on Jul 4, 2023    // 追星者，关注者页面\n         *\n         * 更新于 2023-11-11 16:48:02\n         * 个人资料页->贡献卡\n         * 日期带后缀\n         * on March 19th.\n         * on August 22nd.\n         * on August 21st.\n         *\n         * Tip:\n         * 正则中的 ?? 前面的字符 重复0次或1次\n         * 正则中的 ?: 非捕获符号(即关闭圆括号的捕获能力) 使用方法 (?: 匹配规则) -->该匹配不会被捕获 为 $数字\n         */\n        [/(^Updated (?:on )?|^Commits on |^Joined on |on )?(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?)?,? )?(?:(\\d{1,2})(?:st.|nd.|rd.|th.)?)? ?(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?) ?(\\d{1,2})?,? (\\d{4})?/g, function (all, prefix, week, date1, month, date2, year) {\n            var prefixKey = {\n                \"Updated \"   : \"更新于 \",\n                \"Commits on \": \"提交于 \",\n                \"Joined on \" : \"加入于 \",\n                //\"Submitted \": \"提交于 \", // 教育\n            };\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            // 处理日期\n            var date = date1 ? date1 : date2;\n            var formattedDate = (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '');\n\n            // 处理星期\n            var formattedWeek = week ? '，' + weekKey[week.substring(0, 3)] : '';\n\n            // 返回翻译结果\n            return (prefixKey[prefix] ? prefixKey[prefix] : '') + formattedDate + formattedWeek;\n        }],\n        /**\n         * 相对时间格式处理\n         *\n         * 更新于 2021-11-21 16:47:14\n         * 1. 添加 前缀词\n         *    over xxx ago // 里程碑页面 最后更新时间\n         *    about xxx ago // 里程碑页面 最后更新时间\n         *    almost xxx ago // 里程碑页面 最后更新时间\n         *    less than xxx ago // 导出账户数据\n         * 2. xxx之内的相对时间格式\n         *  in 6 minutes // 拉取请求页面\n         *\n         * 更新于 2021-11-22 11:54:30\n         * 1. 修复 Bug: 意外的扩大了匹配范围(不带前缀与后缀的时间) 干扰了带有相对时间的其他规则\n         *  7 months\n         */\n         [/^just now|^now|^last month|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '现在';\n            }\n            if (all === 'just now') {\n                return '刚刚';\n            }\n            if (all === 'last month') {\n                return '上个月';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改为 1\n\n            var unitKey = {second: '秒', minute: '分钟', hour: '小时', day: '天', month: '个月', year: '年'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大约 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之内' : '之前');\n            }\n        }],\n        /**\n         * 匹配时间格式 2\n         *\n         * in 5m 20s\n         */\n        [/^(?:(in) |)(?:(\\d+)m |)(\\d+)s/,function (all, prefix, minute, second) {\n            all = minute ? minute + '分' + second + '秒' : second + '秒';\n            return (prefix ? all + '之内' : all);\n        }],\n\n        // 其他翻译\n        [/to enable two-factor authentication as an additional security measure. Your activity on GitHub includes you in this requirement. You will need to enable two-factor authentication on your account before ([^ ]+), or be restricted from account actions./, \"启用双因素身份验证（2FA）作为额外安全措施。您在 GitHub 上的活动让您接收到此要求。您将需要在 $1 前启用双因素身份验证，否则会被限制账户操作。\"],\n    ],\n    \"time-regexp\": [ // 时间正则翻译专项\n        /**\n         * 匹配时间格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否稳定, 暂时先试用着. 2016-03-19 20:46:45\n         *\n         * 更新于 2021-10-04 15:19:18\n         * 增加 带介词 on 的格式，on 翻译不体现\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新于 2021-10-10 13:44:36\n         * on 星期(简写), 月 日 年  // 个人访问令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多规则\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全称), 月 日, 年 // 仓库-->洞察-->流量 图示标识\n         * Sunday, November 14, 2021\n         *\n         * Tip:\n         * 正则中的 ?? 前面的字符 重复0次或1次\n         * 正则中的 ?: 非捕获符号(即关闭圆括号的捕获能力) 使用方法 (?: 匹配规则) -->该匹配不会被捕获 为 $数字\n         */\n        [/(?:on |)(?:(\\d{1,2}) |)(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?), |)(?:(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May(?:)??|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)(?:,? |$))(\\d{4}|)(\\d{1,2}|)(?:,? (\\d{4})|)/g, function (all, date1, week, month, year1, date2, year2) {\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\",\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n            var date = date1 ? date1 : date2;\n            var year = year1 ? year1 : year2;\n            return (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '') + (week ? ', ' + weekKey[week.substring(0, 3)] : '');\n        }],\n        /**\n         * 相对时间格式处理\n         *\n         * 更新于 2021-11-21 16:47:14\n         * 1. 添加 前缀词\n         *    over xxx ago // 里程碑页面 最后更新时间\n         *    about xxx ago // 里程碑页面 最后更新时间\n         *    almost xxx ago // 里程碑页面 最后更新时间\n         *    less than xxx ago // 导出账户数据\n         * 2. xxx之内的相对时间格式\n         *  in 6 minutes // 拉取请求页面\n         *\n         * 更新于 2021-11-22 11:54:30\n         * 1. 修复 Bug: 意外的扩大了匹配范围(不带前缀与后缀的时间) 干扰了带有相对时间的其他规则\n         *  7 months\n         */\n        [/^just now|^now|^last year|^last month|^last week|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year|week)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '现在';\n            }\n            if (all === 'just now') {\n                return '刚刚';\n            }\n            if (all === 'last year') {\n                return '最近 1 年';\n            }\n            if (all === 'last month') {\n                return '上个月';\n            }\n            if (all === 'last week') {\n                return '上周';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改为 1\n\n            var unitKey = {second: '秒', minute: '分钟', hour: '小时', day: '天', month: '个月', year: '年', week: '周'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大约 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之内' : '之前');\n            }\n        }],\n        [/(\\d+)(y|h|d|w|m)/, function (all, count, suffix) {\n            var suffixKey = {y: '年', h: '小时', d: '天', w: '周', m: '个月'};\n\n            return count + ' ' + suffixKey[suffix] + '之前';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Where software is built\": \"GitHub · 软件构建的地方\",\n            \"Page not found · GitHub\": \"找不到页面 · GitHub\",\n        },\n        \"regexp\": [],\n    },\n};\n\nI18N[\"zh-CN\"][\"orgs-public\"] = { // 组织公共部分\n    \"static\": { // 静态翻译\n    },\n    \"regexp\": [ // 正则翻译\n        [/Invite someone to/, \"邀请加入到组织\"],\n        [/New team in/, \"新建团队在组织\"],\n        [/New repository in/, \"新建仓库在组织\"],\n        [/This organization was marked as archived by an administrator on (.+). It is no longer maintained./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `该组织已由管理员于 ${translatedDate} 存档。不再维护。`;\n        }],\n        [/You are now a member of ([^ ]+)!/, \"您现在是 $1 的成员了！\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-dashboard\"] = { // 已登录的首页 - 仪表板（含组织）\n    \"static\": { // 静态翻译\n        // 顶部 GPT 聊天窗口\n        \"Ask anything\": \"询问任何事\",\n        \"Ask\": \"询问\",\n        \"Send\": \"发送\",\n        \"Feedback\": \"反馈\",\n            \"Message\": \"消息\",\n            \"Tell us your feedback on the new dashboard experience\":\"告诉我们您对新仪表板体验的反馈\",\n            \"Please don’t include sensitive, confidential, or personal data. Your feedback helps us improve our services in line with our\":\"请不要包含敏感、机密或个人信息。您的反馈有助于改进我们的服务\",\n\n        // 智能体任务\n            \"Start an agent session to create new work or iterate on an existing project.\": \"启动智能体会话以新建工作或迭代现有项目。\",\n            \"Start a session\": \"启动一个会话\",\n\n        // 新版首页功能区\n        \"Ask\": \"询问\",\n        \"Task\": \"任务\",\n        \"to access more models and higher limits.\": \"来获得更多模型和更高限制。\",\n        \"Create issue\": \"创建议题\",\n            \"First, create a new draft issue. Then ask for additional information to fill out the issue.\":\"首先，创建一个新的草稿议题。然后，要求提供更多信息来完善议题。\",\n            \"First, create an issue with sub issues. Then ask for additional information to fill out these issues.\":\"首先，创建一个包含子议题的议题。然后，要求提供更多信息来完善这些子议题。\",\n        \"Write code\": \"编写代码\",\n        \"Models\": \"模型\",\n            \"Create a profile README\":\"个人资料\",\n            \"Generate a simple calculator\":\"简易计算器\",\n            \"Make a Pong game\":\"乒乓球游戏\",\n            \"Design a Mermaid architecture overview\":\"Mermaid 架构预览\",\n        // Git\n            \"Basic Git commands\":\"基本 Git 命令\",\n            \"Git branching\":\"Git 分支\",\n            \"Advanced Git commands\":\"高级 Git 命令\",\n        // 拉取请求\n            \"My open pull requests\":\"我打开的\",\n            \"Summarize my latest PR\":\"总结最近\",\n\n        \"Fast and cost-efficient\": \"快速、经济高效\",\n        \"Versatile and highly intelligent\": \"多功能、高智能\",\n        \"Most powerful at complex tasks\": \"在复杂任务中最强大\",\n        \"Agent sessions\": \"智能体任务\",\n        \"No sessions found. Try a different filter, or\": \"没有找到会话。尝试不同的过滤器，或\",\n        \"start a session\": \"开始任务\",\n        \"Agent sessions options\": \"智能体任务选项\",\n        \"Agent sessions to include\": \"智能体任务包含\",\n        \"View all\": \"查看全部\",\n        \"Number of results\": \"结果数量\",\n        \"Pull request options\": \"拉取请求选项\",\n        \"Pull requests to include\": \"拉取请求包含\",\n            \"Authored\": \"由您创建\",\n            \"Mentioned\": \"被提及\",\n            \"Review requested\": \"请求审查\",\n            \"Reviewed\": \"已审查\",\n        \"Issue options\": \"议题选项\",\n        \"Issues to include\": \"议题包含\",\n            \"Assigned to me\": \"分配给我\",\n            \"Involves me\": \"涉及我\",\n        \"Open in Copilot chat\": \"在 Copilot Chat 中打开\",\n        \"Assign to Copilot\": \"分配给 Copilot\",\n        \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n\n            // 选项\n                \"Task\": \"任务\",\n                \"Create issue\": \"创建议题\",\n\n            \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、经济高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"执行复杂任务\",\n\n        \"Try the new experience\": \"尝试新版\",\n        \"Try the new dashboard experience\": \"试用新仪表板\",\n        \"Switch back\": \"切回旧版\",\n\n        // 新手帮助\n        \"Learn Git and GitHub without any code!\": \"了解 Git 和 GitHub 无需任何代码！\",\n        \"Using the Hello World guide, you’ll create a repository, start a branch,\": \"使用 Hello World 指南，您将创建一个仓库，开始一个分支，\",\n        \"write comments, and open a pull request.\": \"写评论，并创建一个拉取请求。(教程内容就不翻译了...)\",\n        \"Let's get started!\": \"让我们开始吧！\",\n        \"Hide this notice forever\": \"永久的隐藏该信息\",\n\n        \"Welcome to GitHub! What’s next?\": \"欢迎来到 GitHub！下一步干什么？\",\n        \"Create a repository\": \"创建一个仓库\",\n        \"Tell us about yourself\": \"介绍一下您自己\",\n        \"Browse interesting repositories\": \"浏览有趣的仓库\",\n        \"on Twitter\": \"在 Twitter 上\",\n\n        \"You don’t have any repositories yet!\": \"您目前还没有任何仓库！\",\n        \"Create your first repository\": \"创建您的第一个仓库\",\n        \"or\": \"或者\",\n        \"Learn more about Git and GitHub\": \"了解更多关于 Git 和 GitHub 的信息\",\n\n        // 教育版\n        \"Join GitHub Education!\": \"加入 GitHub 教育！\",\n            \"GitHub Education opens doors to new skills, tools, and a collaborative community eager to drive innovation. Join us and build a foundation for your future in technology.\": \"GitHub 教育为您打开通往新技能、新工具以及渴望推动创新的协作社区的大门。加入我们，为您的技术未来打下基础。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n\n        // 组织\n        // [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 组织的所有者！\"],\n        // [/Create a repository for ([^ ]+)/, \"为 $1 创建仓库\"],\n        \"Welcome to the\": \"欢迎来到\",\n        \"View your teams\": \"查看您的团队\",\n        \"View and create teams\": \"查看并创建团队\",\n        \"See all owners\": \"查看全部所有者\",\n        \"You've been added to the\": \"您已被添加至\",\n        \"organization.\": \"组织\",\n        // [/Edit ([^ ]+)’s settings/, \"编辑 $1 的设置\"],\n        \"Return to your personal dashboard\": \"返回到您的个人仪表板\",\n\n        // 已有仓库的项目\n        // 左侧栏\n        \"View organization\": \"查看组织\", // 组织\n        \"Browse organization's repositories\": \"浏览组织的仓库\", // 组织\n        \"Top repositories\": \"置顶仓库\",\n        \"Top Repositories\": \"置顶仓库\", // 安卓UA\n        \"New\": \"新建\",\n        \"Find a repository…\": \"搜索仓库…\",\n        \"Your teams\": \"您的团队\",\n            \"You don’t belong to any teams yet!\": \"您还不属于任何团队！\",\n        \"Find a team…\": \"搜索团队…\",\n        \"Recent activity\": \"近期活动\",\n            \"When you take actions across GitHub, we’ll provide links to that activity here.\": \"当您在 GitHub 上采取行动时，我们会在这里提供该活动的链接。\", // 组织\n\n        \"Create your first project\": \"创建您的第一个项目\",\n            \"Ready to start building? Create a repository for a new idea or bring over an existing repository to keep contributing to it.\": \"准备好开始构建了吗？为新想法创建一个仓库或使用现有仓库继续为其做出贡献。\",\n            \"Create repository\": \"创建仓库\",\n\n        \"Forked from\": \"复刻自\", // 复刻仓库\n\n        // 中间栏\n        \"Feed\": \"动态\",\n        \"The home for all developers — including you.\": \"所有开发者的家园——包括您。\",\n        \"Welcome to your personal dashboard, where you can find an introduction to how GitHub works, tools to help you build software, and help merging your first lines of code.\": \"欢迎来到您的个人仪表板，在这里您可以看到关于 GitHub 工作原理的介绍，帮助您构建软件的工具，以及帮助您合并您的第一行代码。\",\n        \"Learn with a tutorial project\": \"通过教程项目学习\",\n            \"Introduction to GitHub\": \"GitHub 简介\",\n            \"Get started using GitHub in less than an hour.\": \"一个小时内学会如何使用 GitHub。\",\n            \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 从您的 GitHub 仓库创建网站或博客。\",\n            \"Code with Copilot\": \"使用 Copilot 编程\",\n            \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、代码空间和 VS Code 通过 AI 驱动的代码建议进行开发。\",\n            \"Hello GitHub Actions\": \"您好 GitHub Actions\",\n            \"Create a GitHub Action and use it in a workflow.\": \"创建一个 GitHub Actions 并在工作流中使用它 \",\n            \"See more tutorial projects\": \"查看更多的教程项目\",\n        \"Start writing code\": \"开始编写代码\",\n            \"A repository contains all of your project's files, revision history, and collaborator discussion.\": \"仓库包含项目的所有文件、修订历史记录和协作者讨论。\",\n            \"Repository name\": \"仓库名称\",\n            \"name your new repository...\": \"命名您的新仓库……\",\n            \"Anyone on the internet can see this repository\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            \"You choose who can see and commit to this repository\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Create a new repository\": \"创建新的仓库\",\n            \"You're seeing this because you haven't created a repository in a while.\": \"您看到这个是因为您有一段时间没有创建仓库了。\",\n            \"You're seeing this because you haven't used repositories, issues, and pull requests recently.\": \"您看到这个是因为您最近没有使用仓库、议题和拉取请求。\",\n            \"Remove from dashboard\": \"从仪表板中删除\",\n            \"Repositories that need your help\": \"这些仓库需要您的帮助\",\n            \"See more repos with good first issues\": \"查看更多适合新手提交议题的仓库\",\n        \"Use tools of the trade\": \"使用贸易工具\",\n            \"You're seeing this because you haven't opened a pull request in a while.\": \"您看到这个是因为您有一段时间没有打开拉取请求了。\",\n                \"Simplify your development workflow with a GUI\": \"使用 GUI 简化开发工作流程\",\n                \"Install GitHub Desktop\": \"安装 GitHub Desktop\",\n                \"to visualize, commit, and push changes without ever touching the command line.\": \"来可视化、提交和推送更改，而无需使用命令行。\",\n            \"Get AI-based coding suggestions\": \"获取基于 AI 的编码建议\",\n                \"Try GitHub Copilot free for 30 days,\": \"免费试用 GitHub Copilot 30 天，\",\n                \"which suggests entire functions in real time, right from your editor.\": \"它可以直接从您的编辑器实时建议所有函数。\",\n            \"Write code in your web browser\": \"在您的网络浏览器中编写代码\",\n                \"Use\": \"使用\",\n                \"the github.dev web-based editor\": \"基于 github.dev 的网络编辑器\",\n                \"from your repository or pull request to create and commit changes.\": \"从您的仓库或拉取请求中创建和提交更改。\",\n        \"Install a powerful code editor\": \"安装一个强大的代码编辑器\",\n            \"is a multi-platform code editor optimized for building and debugging software.\": \"是针对构建和调试软件进行了优化的多平台代码编辑器。\",\n        \"Set up your local dev environment\": \"设置本地开发环境\",\n            \"set up Git\": \"设置 Git\",\n            \", simplify your dev workflow with\": \"，简化您的开发工作流程，使用\",\n            \", or\": \"，或\",\n            \"bring GitHub to the command line\": \"将 GitHub 引入命令行\",\n        \"Get started on GitHub\": \"开始使用 GitHub\",\n            \"You're seeing this because you haven't used GitHub's core features, yet.\": \"您看到这个是因为您有一段时间没有使用过 GitHub 的核心功能了。\",\n        \"Introduce yourself with a profile README\": \"使用 README 介绍自己\",\n            \"Share information about yourself by creating a profile README, which appears at the top of your profile page.\": \"通过创建个人资料自述文件（README）来分享有关您自己的信息，该信息将显示在您的个人资料页面顶部。\",\n        \"Follow this exercise to try the GitHub flow\": \"按照此练习尝试 GitHub 流程\",\n            \"GitHub's “Hello World” tutorial teaches you essentials, where you create your own repository and learn GitHub's pull request workflow for creating and reviewing code.\": \"GitHub 的 “Hello World” 教程会教您基本知识，您可以在其中创建自己的仓库并学习 GitHub 用于创建和审查代码的拉取请求工作流程。\",\n            \"Try the GitHub flow\": \"尝试 GitHub 流程\",\n        \"About version control and Git\": \"关于版本控制和 Git\",\n        \"Learn about the version control system, Git, and how it works with GitHub.\": \"了解版本控制系统、Git 以及它如何与 GitHub 一起工作。\",\n        \"The GitHub Flow\": \"GitHub 流程\",\n        \"Adopt GitHub's lightweight, branch-based workflow to collaborate on projects.\": \"采用 GitHub 的轻量级、基于分支的工作流程来协作处理项目。\",\n\n        \"One moment please...\": \"稍等一会儿…\",\n        \"Loading activity...\": \"载入活动…\",\n        \"All activity\": \"所有活动\",\n\n        \"Welcome to the new feed!\": \"欢迎来到新的动态提要!\",\n        \"We’re updating the cards and ranking all the time, so check back regularly. At first, you might need to follow some people or star some repositories to get started\": \"我们一直在更新卡片和排名，所以请定期查看。一开始，您可能需要关注一些人或标星一些仓库才能开始\",\n        \"Send feedback\": \"发送反馈\",\n\n        \"Updates to your homepage feed\": \"主页动态摘要的更新\",\n        \"We've combined the power of the Following feed with the For you feed so there’s one place to discover content on GitHub. There’s improved filtering so you can customize your feed exactly how you like it, and a shiny new visual design. ✨\": \"我们将 “关注动态提要” 与 “您的动态提要” 的强大功能结合在一起，让您在一个地方就能发现 GitHub 上的内容。此外，我们还改进了筛选功能，让您可以完全按照自己的喜好定制动态提要，并采用全新的视觉设计。 ✨\",\n        \"Learn more\": \"了解更多\",\n\n        \"Explore GitHub\": \"探索 GitHub\",\n            \"to receive personalized suggestions.\": \"以获取个性化建议。\",\n\n        // 提要筛选\n        \"Filter\": \"筛选器\",\n            \"Feed filters\": \"提要筛选器\",\n            \"Events\": \"事件\",\n                \"Activity you want to see on your feed\": \"您想在提要上看到的活动\",\n            \"Announcements\": \"公告\",\n                \"Special discussion posts from repositories\": \"来自仓库的特别讨论帖\",\n            \"Releases\": \"发行版\",\n                \"Update posts from repositories\": \"来自仓库的更新帖\",\n            // 赞助\n                \"Relevant projects or people that are being sponsored\": \"获得赞助的相关项目或人员\",\n            \"Stars\": \"星标\",\n                \"Repositories being starred by people\": \"被人们标星的仓库\",\n            \"Repositories\": \"仓库\",\n                \"Repositories that are created or forked by people\": \"由人们创建或复刻的仓库\",\n            \"Repository activity\": \"仓库活动\",\n                \"Issues and pull requests from repositories\": \"来自仓库的议题和拉取请求\",\n            \"Follows\": \"关注\",\n                \"Who people are following\": \"人们在关注谁\",\n            \"Recommendations\": \"推荐\",\n                \"Repositories and people you may like\": \"您可能喜欢的仓库和人\",\n\n            \"Include events from starred repositories\": \"包括来自星标仓库中的事件\",\n                \"By default, the feed shows events from repositories you sponsor or watch, and people you follow.\": \"默认情况下，动态提要显示的事件来自您赞助或关注的仓库，以及您关注的人。\",\n            \"Reset to default\": \"重置\",\n            \"Save\": \"保存\",\n\n        \"Show all\": \"显示所有\",\n\n        \"Uh oh!\": \"哎呀！\",\n        \"There was an error in loading the activity feed.\": \"载入动态提要时发生错误。\",\n        \"Reload this page\": \"重载此页面\",\n\n        // 动态 状态词\n        \"starred\": \"标星了\",\n        \"created\": \"创建了\",\n        \"forked from\": \"复刻自\",\n        \"generated from\": \"创建自\",\n        \"mirrored from\": \"镜像自\",\n        \"forked\": \"复刻了\",\n        \"from\": \"来自\",\n        \"for\": \"\",\n        \"pushed\": \"推送\",\n        \"pushed to\": \"推送到\",\n        \"released\": \"发布了\",\n        \"published\": \"发布了\",\n        \"started sponsoring\": \"赞助给\",\n        \"started following\": \"已关注\",\n        \"you\": \"您\",\n        \"Updated\": \"更新于\",\n        \"a repository\": \"1 个仓库\",\n        \"has a new repository\": \"创建了仓库\",\n        \"created a repository\": \"创建了仓库\",\n        \"a branch in\": \"一个分支在\",\n        \"created a branch in\": \"创建了一个分支在\",\n        \"in\": \"分支在\",\n        \"Forked to\": \"复刻为\",\n        \"of\": \"\",\n        \"made\": \"将\",\n        \"public\": \"设为公共\",\n        \"committed\": \"提交于\",\n        \"posted a discussion in\": \"发表讨论于\",\n        \"made this repository public\": \"将此仓库公开\",\n        \"labeled a pull request\": \"将标签添加到拉取请求中\",\n        \"launched their sponsorship page 💖\": \"推出了他们的赞助页面 💖\",\n        //[/and (\\d+) more/, \"和另外 $1 个\"],\n        \"All reactions\": \"所有看法\",\n        \"commented on an issue in\": \"于一个议题发表了评论在\",\n        \"commented on a pull request in\": \"于一个拉取请求发表了评论在\",\n        \"opened a pull request\": \"打开了一个拉取请求在\",\n        \"closed a pull request\": \"关闭了一个拉取请求在\",\n        \"opened\": \"打开\",\n        \"deleted\": \"删除\",\n        \"commented on\": \"发表了评论于\",\n\n        \"published a release\": \"发布发行版\",\n        \"forked a repository\": \"复刻仓库\",\n        \"starred a repository\": \"星标仓库\",\n        \"sponsored\": \"赞助了\",\n        \"followed\": \"关注了\",\n        \"added a repository to\": \"已将仓库添加到\",\n        \"contributed to\": \"贡献给\",\n            // 现在会显示拉取请求状态\n            \"Merged\": \"已合并\",\n\n        \"your repository\": \"您的仓库\",\n\n        \"Read more\": \"阅读更多内容\",\n        \"Load more...\": \"加载更多……\",\n\n        \"Subscribe to your news feed\": \"订阅您的新闻提要\",\n        \"Subscribe to the\": \"订阅\", // 组织\n        \"organization news feed\": \"组织的新闻提要\", // 组织\n\n        //主页上仓库3个点\n        \"Feed item options\": \"推送选项\",\n        \"You're seeing this because of your activity.\": \"您看到这个是因为您的活动。\",\n        \"Show less activity like this\": \"显示较少这类活动\",\n        // [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到这个是因为您与 $1 有过合作\"],\n        // [/You're seeing this because you starred ([^ ]+)/, \"您看到这个，是因为您标星了 $1\"],\n        \"Unstar this repository\": \"取消标星此仓库\",\n        // [/You're seeing this because you follow ([^ ]+)/, \"您看到这个，是因为您关注了 $1\"],\n        \"Unfollow this user\": \"取消关注此用户\",\n\n        \"Contributors\": \"贡献者\",\n        \"Report\": \"举报\",\n        \"Recommended for you\": \"为您推荐\",\n        \"Trending repositories\": \"热门仓库\",\n        \"Latest from our changelog\":\"来自我们的更新日志\",\n        \"Try the new experience\": \"尝试新体验\",\n        \"See more\": \"查看更多\",\n        \"Read more\": \"阅读更多\",\n        \"You're seeing this based on GitHub-wide trends.\": \"您看到的是基于 GitHub-wide 的趋势。\",\n        \"Recommended based on people you follow\": \"根据您关注的人推荐\",\n        \"has a new discussion in\": \"有一条新讨论，在\",\n        \"Join discussion\": \"参与讨论\",\n        \"Popular among\": \"很受欢迎\",\n        \"Popular projects among\": \"热门项目\",\n        \"people you follow\": \"在您关注的人中\",\n        \"Sponsor\": \"赞助\",\n        \"added\": \"添加\",\n\n        // 右侧栏\n        \"Latest changes\": \"最新变化\",\n        \"View changelog →\": \"查看更新日志 →\",\n        \"Explore repositories\": \"探索仓库\",\n        \"Explore more →\": \"探索更多 →\",\n\n        \"Member statuses\": \"成员状态\", // 组织\n\n        // 仪表板右上方看板\n        \"The world’s fair of software is here.\": \"世界软件博览会就在这里。\",\n        \"The GitHub Universe call for sessions is now open! Apply to share your expertise by submitting a session proposal today. Plus, get 35% off your tickets to GitHub Universe only for a limited time.\": \"GitHub Universe 的会议征集现已开启！立即提交您的会议提案，分享您的专业知识。此外，现在限时可享 35% 的 GitHub Universe 会议门票折扣。\",\n\n        // 教育看板（申请教育包才有）\n        \"Learn. Collaborate. Grow.\": \"学习，协作，成长。\",\n        \"GitHub Education gives you the tools and community support to take on tech challenges and turn them into opportunities. Your future in tech starts here!\": \"GitHub 教育提供工具和社区支持，帮助您应对技术挑战并将其转化为机遇。您科技领域的未来从这里开始！\",\n        \"Go to GitHub Education\": \"前往 GitHub 教育\",\n\n        // 用户 浮动信息卡\n        \"Member of\": \"隶属组织\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n\n        // 组织  浮动信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        // [/(\\d+) members?/, \"$1 个成员\"],\n\n        \"Go to organization dashboard\": \"前往组织仪表板\", // 组织\n        \"Switch dashboard context\": \"切换默认身份\", // 组织\n        \"Manage organizations\": \"管理组织\", // 组织\n        \"Create organization\": \"创建组织\", // 组织\n\n        // 首次加入组织通知\n        \"You’ve been added to the\": \"您已经被添加到\",\n        \"organization!\": \"组织！\",\n        \"Here are some quick tips for a first-time organization member.\": \"以下是首次加入组织的一些提示。\",\n        \"Use the switch context button in the upper left corner of this page to switch between your personal context (\": \"使用页面左上角的切换身份按钮，您可以在（\",\n        \") and organizations you are a member of.\": \"）和组织身份之间进行切换。\",\n        \"After you switch contexts you’ll see an organization-focused dashboard that lists out organization repositories and activities.\": \"当您切换身份，您会看到一个组织为中心的页面，其中列出了组织库和活动。\",\n\n        // 快捷键\n        \"Dashboards\": \"仪表板\",\n        \"Go to your issues\": \"跳转到您的议题\",\n        \"Go to your pull requests\": \"跳转到您的拉取请求\",\n\n        // 新版首页（已登录）2025-10-29\n            \"Your personal account\": \"我的个人账户\",\n\n            \"Started\": \"开始于\",\n            \"Completed\": \"完成于\",\n            \"In progress\": \"进行中\",\n\n            \"Unable to load agent tasks, try again later.\": \"无法加载智能体任务，请稍后重试。\",\n            \"Unable to load pull requests, try again later.\": \"无法加载拉取请求，请稍后重试。\",\n\n            \"Updated\": \"更新于\",\n            \"Ready for review\": \"准备审查\",\n            \"Assigned to Copilot\": \"分配给 Copilot\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) pull requests/, \"$1 个拉取请求\"],\n        [/added (\\d+) repositor(y|ies) to/, \"添加 $1 个仓库到\"],\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        [/(\\d+) of your repositor(y|ies)/, \"您的 $1 个仓库\"],\n        [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        [/is being deleted./, \"正在被删除。\"], // 仓库 组织被删除\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"], // 仓库删除\n        [/(\\d+) releases?/, \"$1 个发行版\"],\n        [/(\\d+k?) followers?/, \"$1 个关注者\"],\n        [/(\\d+) users?/, \"$1 个用户\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) commits? to/, \"$1 个提交到\"],\n        [/(\\d+) more commits? »/, \"$1 个更多提交到\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/Join discussion/, \"加入讨论\"],\n        // [/Updated/, \"更新于\"],\n        // 创建于\n        [/Created/, \"创建于\"],\n        [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 组织的所有者！\"], // 组织\n        [/Create a repository for ([^ ]+)/, \"为 $1 创建仓库\"], // 组织\n        [/Edit ([^ ]+)’s settings/, \"编辑 $1 的设置\"], // 组织\n        [/Check out ([^ ]+)’s public profile/, \"查看 $1 的公开资料\"], // 组织\n        [/and (\\d+) more/, \"和另外 $1 个\"],\n        [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到这个是因为您与 $1 有过合作\"],\n        [/You're seeing this because you starred ([^ ]+)/, \"您看到这个，是因为您标星了 $1\"],\n        [/You're seeing this because you follow ([^ ]+)/, \"您看到这个，是因为您关注了 $1\"],\n        [/You and/, \"您和另外\"],\n        [/You reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/,function (all, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return '您' + reactedKey[reacted];\n        }],\n        [/(\\d+) (?:people|person) reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/, function (all, number, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return number + ' 人' + reactedKey[reacted];\n        }],\n        [/Support ([^ ]+)'s open source work/, \"支持 $1 的开源工作\"],\n        [/Start a new repository for/, \"创建一个仓库为\"],\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您发表评论\"], // 拉取请求 浮动信息卡\n        // 顶部提醒\n        // 继任者相关\n        [/You are now the designated successor for ([^ ]+)'s account./, \"您现在是 $1 的指定继任者了。\"],\n        [/You have declined to become the designated successor for ([^ ]+)'s account./, \"您已经谢绝了成为 $1 账户指定继任者的邀请。\"],\n        // 拉取请求状态\n        [/merged (\\d+) commits?/, \"合并 $1 个提交\"],\n        // 新版首页\n        [/Good morning, ([^ ]+)!/, \"早上好，$1！\"],\n        [/Good afternoon, ([^ ]+)!/, \"下午好，$1！\"],\n        [/Good evening, ([^ ]+)!/, \"晚上好，$1！\"],\n        [/Switch dashboard: ([^ ]+)/, \"切换仪表板：$1\"],\n        [/(.+)\\#(\\d+) · Opened by ([^ ]+) ·/, \"$1#$2 · 打开者 $3\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Dashboard\": \"GitHub 仪表盘\",\n            \"Feed\": \"动态\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"dashboard\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\nI18N[\"zh-CN\"][\"feed\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\nI18N[\"zh-CN\"][\"orgs/dashboard\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\n\nI18N[\"zh-CN\"][\"page-profile-public\"] = { // 个人首页（含组织）\n    \"static\": { // 静态翻译\n        // 左侧用户信息栏\n            \"Change your avatar\": \"修改头像\",\n            \"they/them\": \"他们\",\n            \"she/her\": \"她\",\n            \"he/him\": \"他\",\n            \"You have blocked this user\": \"您已拉黑此用户\",\n            \"Follow\": \"关注\",\n            \"Sponsor\": \"赞助\",\n            \"follower\": \"关注者\",\n            \"followers\": \"关注者\",\n            \"following\": \"关注\",\n            \"Followed by\": \"共同关注者：\",\n            \"Joined\": \"加入于\",\n            \"Achievements\": \"成就\",\n            \"Highlights\": \"高光时刻\",\n                \"Label: Pro\": \"标签：专业版\",\n            \"Developer Program Member\": \"开发者计划成员\",\n            \"security advisory credits\": \"个安全咨询分\",\n            \"security advisory credit\": \"个安全咨询分\",\n            \"Organizations\": \"组织\",\n            \"Block or Report\": \"拉黑或举报\",\n            \"Unblock or report user\": \"取消拉黑或举报\",\n            \"- same time\": \"- 时间相同\",\n\n            // 编辑个人资料\n                \"Edit profile\": \"编辑个人资料\",\n                \"Name\": \"名称\",\n                \"Display\": \"显示\",\n                    \"badge.\": \"徽章。\",\n                \"Bio\": \"个人简介\",\n                \"Add a bio\": \"添加个人简介\",\n                    \"You can\": \"您可\",\n                    \"@mention\": \"@用户名或组织名\",\n                    \"other users and organizations to link to them.\": \"链接到其他用户和组织。\",\n                \"Pronouns\": \"代词\",\n                    \"Don't specify\": \"不说明\",\n                    \"they/them\": \"他们\",\n                    \"she/her\": \"她\",\n                    \"he/him\": \"他\",\n                    \"Custom\": \"自定义\",\n                \"Company\": \"公司\",\n                \"Location\": \"位置\",\n                \"Display current local time\": \"显示当前当地时间\",\n                \"same time\": \"相同时间\",\n                \"Website\": \"网站\",\n                \"Social accounts\": \"社交账户\",\n                \"Link to social profile\": \"链接到社交账户\",\n                \"Link to social profile 1\": \"链接到社交账户\",\n                \"Link to social profile 2\": \"链接到社交账户\",\n                \"Link to social profile 3\": \"链接到社交账户\",\n                \"Link to social profile 4\": \"链接到社交账户\",\n\n            // 成就浮动界面\n                // 北极代码库贡献者\n                    \"Arctic Code Vault Contributor\": \"北极代码库贡献者\",\n                        \"History\": \"历史\",\n                        \"100% unlocked\": \"100% 解锁\",\n                        \"· Unlocked\": \"· 解锁于\",\n                        \"these repositories, and more, were archived\": \"这些仓库以及更多仓库已存档\",\n                // YOLO\n                    \"You want it? You merge it.\": \"您想要它？您合并它。\",\n                    \"inaccessible\": \"已删库\",\n                    \"Merged without a review\": \"未经审查就合并\",\n                // Pull Shark\n                    \"Pull Shark\": \"鲨鱼拉\",\n                    \"Bronze unlocked\": \"青铜已解锁\",\n                    \"Bronze and Silver unlocked\": \"青铜和白银已解锁\",\n                    \"· First unlocked\": \"· 首次解锁于\",\n                    \"2nd pull request merged\": \"2 个拉取请求被合并\",\n                    \"16th pull request merged\": \"16 个拉取请求被合并\",\n                    \"128th pull request merged\": \"128 个拉取请求被合并\",\n                    \"1024th pull request merged\": \"1024 个拉取请求被合并\",\n                // Starstruck\n                    \"Starstruck\": \"追星族\",\n                    \"⭐️ 16 stars\": \"⭐️ 16 个星标\",\n                    \"⭐️ 128 stars\": \"⭐️ 128 个星标\",\n                    \"⭐️ 512 stars\": \"⭐️ 512 个星标\",\n                    \"⭐️ 4096 stars\": \"⭐️ 4096 个星标\",\n                // Pair Extraordinaire\n                    \"Pair Extraordinaire\": \"非凡搭档\",\n                    \"Unlocked\": \"解锁于\",\n                    \"Coauthored with\": \"与下列用户共同合作\",\n                    \"Coauthored with an unknown user\": \"与未知用户共同合作\",\n                // Quickdraw\n                    \"Quickdraw\": \"快速关闭\",\n                    \"Gitty up!\": \"赶快开始！\",\n                    \"Closed within 5 minutes of opening\": \"在打开的 5 分钟内关闭\",\n                // Galaxy Brain\n                    \"Galaxy Brain\": \"银河大脑\",\n                    \"2nd accepted answer\": \"2 个答案被接受\",\n                    \"8th accepted answer\": \"8 个答案被接受\",\n                    \"16th accepted answer\": \"16 个答案被接受\",\n                    \"32nd accepted answer\": \"32 个答案被接受\",\n                // Public Sponsor\n                    \"Public Sponsor\": \"公共赞助者\",\n                    \"1st sponsorship\": \"1 次赞助\",\n                // Mars 2020 Contributor\n                    \"Mars 2020 Contributor\": \"火星 2020 贡献者\",\n                    \"Mars 2020 Helicopter Mission\": \"2020 火星无人直升机首飞计划\",\n                    \"this repository was included\": \"该仓库已收录\",\n\n                // ?tab=achievements\n                    \"Hide from profile\": \"从个人资料中隐藏\",\n                    \"Hidden from your profile.\": \"已从您的个人资料中隐藏\",\n                    \"Show on profile\": \"在个人资料中显示\",\n                    \"Copy share link\": \"复制共享链接\",\n                    \"Preview on Twitter\": \"在 Twitter 上预览\",\n\n                    // 顶部提醒\n                        // [/The (.+) achievement will now be hidden from your profile./, \"现在，将从您的个人资料中隐藏 “$1” 成就。\"],\n                        // [/The (.+) achievement will now be shown in your profile./, \"现在，将在您的个人资料中显示 “$1” 成就。\"],\n\n                \"Send feedback\": \"发送反馈\",\n\n            // 拉黑 & 举报用户对话框\n                // [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n                \"Block user\": \"拉黑用户\",\n                \"Prevent this user from interacting with your repositories and sending you notifications. Learn more about\": \"防止该用户与您的仓库互动并向您发送通知。了解更多关于\",\n                \"blocking users\": \"拉黑用户\",\n\n                \"Add an optional note:\": \"添加可选备注：\",\n                    \"Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.\": \"请勿包含任何个人信息，如法定姓名或电子邮件地址。最多 100 个字符，支持标记符。此备注只有您本人可见。\",\n\n                \"Unblock user\": \"取消拉黑\",\n                \"Allow this user to interact with your repositories and send you notifications. Learn more about\": \"允许该用户与您的仓库互动并向您发送通知。了解更多关于\",\n\n                \"Report abuse\": \"举报滥用\",\n                    \"Contact GitHub support about this user’s behavior. Learn more about\": \"就该用户的行为联系 GitHub 支持部门。了解更多关于\",\n                    \"reporting abuse\": \"举报滥用\",\n\n        // 仓库\n            \"Forked from\": \"复刻自\",\n            \"Updated\": \"更新于\",\n\n            // 许可证\n                \"GNU General Public License v3.0\": \"GNU 通用公共许可证 v3.0\",\n                \"GPL-3.0 License\": \"GPL-3.0 许可证\",\n                \"AGPL-3.0 License\": \"AGPL-3.0 许可证\",\n                \"LGPL-3.0 License\": \"LGPL-3.0 许可证\",\n                \"MIT License\": \"MIT 许可证\",\n                \"Apache License 2.0\": \"Apache-2.0 许可证\",\n                \"OFL-1.1 License\": \"OFL-1.1 许可证\",\n                \"0BSD License\": \"0BSD 许可证\",\n                \"BSD-3-Clause License\": \"BSD-3-Clause 许可证\",\n                \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 许可证\",\n                \"CC0-1.0 License\": \"CC0-1.0 许可证\",\n                \"WTFPL License\": \"WTFPL 许可证\",\n                \"Other\": \"其他\",\n                \"Unknown\": \"未知\",\n\n        // 标签栏\n            \"Sponsoring\": \"赞助\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) discussions? answered/, \"$1 个讨论已回答\"], // 高光时刻\n        [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n        [/contributed code to several repositories in the/, \"为多个仓库贡献了代码，在\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存档计划\"], // 成就浮动款\n        [/opened pull requests that have been merged./, \"打开的拉取请求已被合并。\"], // Pull Shark\n        [/created a repository that has many stars./, \"创建了一个拥有很多星标的仓库。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"与他人共同提交了合并的拉取请求。\"], // Pair Extraordinaire\n        [/answered discussions./, \"回答了讨论。\"], // Galaxy Brain\n        [/(\\@[^ ]+) (?:is sponsoring|has sponsored) (\\d+) organizations? or users?./, \"$1 赞助了 $2 个组织或用户。\"], // Public Sponsor\n        [/contributed code to (\\d+) repositor(y|ies) used in the/, \"贡献于 $1 个仓库收录于\"], // Mars 2020 Helicopter Mission.\n        [/The (.+) achievement will now be hidden from your profile./, \"现在，将从您的个人资料中隐藏 “$1” 成就。\"],\n        [/The (.+) achievement will now be shown in your profile./, \"现在，将在您的个人资料中显示 “$1” 成就。\"],\n        [/^(\\d+) repositor(y|ies)/, \"$1 仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Followers\": \"我的关注者\",\n            \"Who You’re Following\": \"我关注的人\",\n        },\n        \"regexp\": [\n            [/Achievements/, \"成就\"],\n            [/Followers/, \"关注者\"],\n            [/Following/, \"关注\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"page-profile/achievements\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=achievements\nI18N[\"zh-CN\"][\"page-profile/followers\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=followers\nI18N[\"zh-CN\"][\"page-profile/following\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=following\n\nI18N[\"zh-CN\"][\"page-profile\"] = { // 个人首页\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 概述标签卡 即主页 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Customize your pins\": \"自定义置顶\",\n            // 设置置顶项目对话框\n            \"Edit pinned items\": \"设置置顶项目\",\n            \"Select up to six public repositories or gists you'd like to show to anyone.\": \"最多选择 6 个您想向任何人展示的公共仓库或代码片段。\",\n            \"Select up to six public repositories you'd like to show.\": \"最多选择 6 个要显示的公共仓库。\", // 组织页\n            \"Filter repositories and gists\": \"筛选仓库和代码片段\",\n            \"Repositories\": \"仓库\",\n            \"Gists\": \"代码片段\",\n            \"Filter repositories\": \"筛选仓库\", // 组织页\n            \"Show:\": \"显示：\",\n            \"Save pins\": \"保存置顶\",\n\n            \"Drag to reorder\": \"拖动重新排序\",\n\n            // 顶部提醒\n            \"You unlocked new Achievements with private contributions! Show them off by including private contributions in your Profile in\": \"您通过私人贡献解锁了新成就！通过在您的个人资料中包含私人贡献来展示它们。\",\n            \"You unlocked new Achievements! Show them off by including achievements and private contributions in your Profile in\": \"您通过私人贡献解锁了新成就！通过在您的个人资料中包含私人贡献来展示它们。\",\n            \"Your pins have been updated. Drag and drop to reorder them.\": \"您的置顶已更新。拖放来重新排列它们。\",\n            \"Your popular repositories will now be shown instead of your pins.\": \"现在将显示您的热门仓库，而不是您的置顶。\",\n\n            \"Only you can see your full profile.\": \"只有您可以查看完整的个人资料。\",\n                \"You have marked your profile as private, which limits what activity other people can see.\": \"您已将个人资料设为私密，这会限制其他人查看您的活动。\",\n                \"Update profile settings\": \"更新个人资料设置\",\n            \"View what others see\": \"以他人视角查看\",\n            \"View full profile\": \"查看完整个人资料\",\n\n            \"Your pins have been updated.\": \"您的置顶已更新。\",\n            // 拖拽排序提醒\n            \"Order updated.\": \"置顶已更新。\",\n\n            \"Pinned\": \"已置顶\",\n            \"Top repositories\": \"置顶的仓库\",\n            \"Popular repositories\": \"热门仓库\",\n\n            \"Learn how we count contributions\": \"了解我们如何计算贡献\",\n            \"Contribution settings\": \"贡献设置\",\n\n            // 复刻仓库特有\n            \"Forked from\": \"复刻自\",\n            // 贡献设置下拉菜单\n            \"Private contributions\": \"私人贡献\",\n            \"Turning on private contributions will show anonymized private activity on your profile.\": \"开启私人贡献则将在您的个人资料上显示匿名的私人活动。\",\n            \"Visitors will now see your public and anonymized private contributions.\": \"访客现在将看到您的公开和匿名的私人贡献。\",\n            \"Turning off private contributions will show only public activity on your profile.\": \"关闭私人贡献则将仅在您的个人资料中显示公开活动。\",\n            \"Visitors will now see only your public contributions.\": \"访客现在将只能看到您的公开贡献。\",\n            \"Activity overview\": \"活动概况\",\n            \"Turning off the activity overview will hide the section on your profile.\": \"关闭活动概况则将隐藏您的个人资料中的部分内容。\",\n            \"The 'Activity overview' section will no longer appear on your profile.\": \"“活动概况” 部分将不再出现在您的个人资料中。\",\n            \"Turning on the activity overview will show an overview of your activity across organizations and repositories.\": \"开启活动概况将显示跨组织和仓库的活动概况。\",\n            \"Others will now see 'Activity overview' when they view your profile.\": \"其他人在查看您的资料时，现在会看到 “活动概况”。\",\n\n            \"Contribution activity\": \"贡献活动\",\n                \"Year:\": \"年份：\", // 小屏模式\n\n            \"Search by name\": \"搜索组织名\",\n            \"Contributed to\": \"贡献给了\",\n            \"Activity in\": \"活动在\",\n            \"No activity overview available.\": \"没有可用的活动概况。\",\n\n            \"open\": \"打开\",\n            \"closed\": \"已关闭\",\n            \"merged\": \"已合并\",\n            \"pull request\": \"拉取请求\",\n\n            \"commits\": \"次提交\",\n            \"comments\": \"次评论\",\n            \"Commits\": \"提交\",\n            \"Code review\": \"代码审查\",\n            \"Built by\": \"构建者\",\n\n            \"Created their first repository\": \"创建了他们的第一个仓库\",\n            \"Created an issue in\": \"创建一个议题在\",\n            \"a private repository\": \"私有仓库\",\n            \"Created a pull request in\": \"创建一个拉取请求在\",\n                \"lines changed\": \"行更改\",\n            \"First repository\": \"第一个仓库\",\n            \"First pull request\": \"第一次拉取请求\",\n            \"First issue\": \"第一次议题\",\n            \"Opened their first issue on GitHub in\": \"打开了他们第一个议题\",\n            \"Opened their first pull request on GitHub in\": \"打开了他们第一个拉取请求\",\n            \"Opened their first pull request on GitHub in a private repository\": \"在私有仓库中打开了他们第一个拉取请求\",\n            \"Joined GitHub\": \"刚加入 GitHub\",\n            \"Joined the\": \"加入\",\n            \"organization\": \"组织\",\n            \"Show more activity\": \"加载更多动态\",\n\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的东西？请看一下\",\n            \"GitHub profile guide\": \"GitHub 个人资料指南\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) discussions? answered/, \"$1 个讨论已回答\"], // 高光时刻\n        [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存档计划\"], // 成就浮动款\n        [/(\\d+) remaining/, \"$1 剩余\"], // 置顶项目 剩余\n        [/([^ ]+) doesn('|’)t have any public repositories yet./, \"$1 尚无任何公共仓库。\"],\n        [/([\\d,]+) contributions? in the last year in ([^ ]+)/, \"在过去的一年中向 $2 贡献 $1 次\"],\n        [/([\\d,]+) contributions? in the last year/, \"在过去的一年中贡献 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+) in ([^ ]+)/, \"在 $2 年中向 $3, 贡献 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+)/, \"在 $2 年中贡献 $1 次\"],\n        [/(\\d+) contributions? in private repositor(y|ies)/, \"私有仓库 $1 个贡献\"],\n        [/Only people who can see (.+) can see this contribution/, \"只有能看到 $1 的人才能看到此贡献\"],\n        [/(\\d+|No) contribution(?:s)? on (.+)(?:st|nd|rd|th)./, (match, number, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            //return optKey[opt] + `${translatedDate}`;\n            return number === 'No' ? `${translatedDate}，无贡献` : `${translatedDate}，` + number + ` 次贡献`;\n        }],// 贡献日历\n        //[/A graph representing ([^ ]+)'s contributions from ( .+) to ( .+)./, \"$1 从 $2 到 $3 的贡献图。\"],\n        [/and (\\d+) other repositor(y|ies)/, \"和 $1 个其他仓库\"], // 活动概览\n        // 贡献信息\n        [/Created ([\\d,]+) commits? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中创建了 $1 次提交\"],\n        [/Created (\\d+) (other)? repositor(y|ies)/, \"创建了 $1 个仓库\"],\n        [/Opened (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中打开了 $1 个拉取请求\"],\n        [/Opened (\\d+) other pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个其他仓库中打开了 $1 个拉取请求\"],\n        [/Opened (\\d+) issues? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中打开了 $1 个议题\"],\n        [/Opened (\\d+) other issues? in (\\d+) repositor(y|ies)/, \"在 $2 个其他仓库中打开了 $1 个其他议题\"],\n        [/Reviewed (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中审查了 $1 个拉取请求\"],\n        [/Answered (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中答复了 $1 个讨论\"],\n        [/Started (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中发起了 $1 个讨论\"],\n        [/(\\d+) commits?/, \"$1 次提交\"],\n        [/(\\d+) pull requests?/, \"$1 次拉取请求\"],\n        [/that received (\\d+) comments?/  , \"收到 $1 条评论\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/([^ ]+) doesn't have any projects yet./, \"$1 目前还没有任何项目。\"],\n        [/([^ ]+) has no activity yet for this period./, \"$1 目前还没有活动。\"],\n        [/([^ ]+) had no activity during this period./, \"$1 在此期间没有活动。\"],\n        [/Contribution activity in ([^ ]+)/, \"在 $1 中的贡献活动\"],\n        [/([^ ]+) had no activity in ([^ ]+) during this period./, \"在此期间，$1 在 $2 中没有活动。\"],\n        [/([^ ]+) has no activity in ([^ ]+) yet for this period./, \"在此期间，$1 在 $2 中没有活动。\"],\n        [/@([^ ]+)'s activity is private/, \"$1 的活动不可见\"],\n        [/Created (\\d+\\+?) repositor(y|ies)/, \"创建了 $1 个仓库\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/(\\d+) tasks?/, \"$1 任务\"], // 带任务议题\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n        [/(?:on )?(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        //[/A graph representing ([^ ]+)'s contributions from (.+) to (.+). The contributions are (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review)./, function(all, user, date1, date2, cd1, c1, cd2, c2, cd3, c3, cd4, c4){\n        //    var c1Key, c2Key ,c3Key, c4Key = {\n        //        'commits': '提交',\n        //        'pull requests': '拉取请求',\n        //        'code review': '代码审查',\n        //        'issues': '议题',\n        //    };\n        //    return user + '从' + date1 + '到' + date2 + '的贡献图。其中' + cd1 + c1Key[c1] + '，' + cd2 + c2Key[c2] + '，' +cd3 + c3Key[c3] + '，' + cd4 + c4Key[c4]+ '。';\n        //}],\n        // 成就\n        [/answered discussions./, \"回答了讨论。\"], // Galaxy Brain\n        [/opened pull requests that have been merged./, \"打开的拉取请求已被合并。\"], // Pull Shark\n        [/created a repository that has many stars./, \"创建了一个拥有很多星标的仓库。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"与他人共同提交了合并的拉取请求。\"], // Pair Extraordinaire\n        [/(\\@[^ ]+) contributed code to several repositories in the/, \"$1 为多个仓库贡献了代码，在\"], // 北极代码库贡献者\n    ],\n};\nI18N[\"zh-CN\"][\"page-profile/overview\"] = I18N[\"zh-CN\"][\"page-profile\"];\n\nI18N[\"zh-CN\"][\"page-profile/repositories\"] = { // 个人首页 - 仓库标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 仓库标签卡 ?tab=repositories >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n            // 顶部提醒\n                // [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"],\n\n            // \"Search repositories…\": \"搜索这些查库…\",\n            // \"Search starred repositories…\": \"搜索星标仓库…\",\n\n            // 搜索, 筛选 & 排序工具栏\n            \"Find a repository…\": \"搜索仓库…\",\n            // \"Type\": \"类型\", // 与全局冲突 使用 Selector 规则翻译\n                // 下拉菜单\n                \"Select type\": \"选择类型\",\n                \"All\": \"全部\",\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源码\",\n                \"Forks\": \"复刻\",\n                \"Archived\": \"存档\",\n                \"Can be sponsored\": \"可赞助\",\n                \"Mirrors\": \"镜像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"语言\",\n                // 下拉菜单\n                \"Select language\": \"选择语言\",\n                \"All languages\": \"所有语言\",\n            \"Sort\": \"排序\",\n                // 下拉菜单\n                \"Select order\": \"选择排序\",\n                \"Last updated\": \"最近更新\",\n                // \"Name\": \"仓库名\",\n                // \"Recently starred\": \"最近星标\",\n                // \"Recently active\": \"最近活跃\",\n                // \"Most stars\": \"最多星标\",\n                // \"Unstar\": \"取消星标\",\n            \"New\": \"新建\",\n\n            // 筛选结果\n            \"result for\": \"个结果在\",\n            \"results for\": \"个结果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源码\",\n                \"forked\": \"复刻\",\n                \"archived\": \"存档\",\n                \"sponsorable\": \"可赞助\",\n                \"mirror\": \"镜像\",\n                \"template\": \"模板\",\n            \"repositories matching\": \"仓库中匹配了\",\n            \"result for repositories matching\": \"个结果在仓库中匹配了\",\n            \"results for repositories matching\": \"个结果在仓库中匹配了\",\n            \"repositories sorted by\": \"仓库，排序按\",\n            \"written in\": \"，使用语言\",\n            \"results for repositories written in\": \"个结果在仓库中使用语言\",\n            \"star matching\": \"个星标匹配\", //?tab=stars\n            \"stars matching\": \"个星标匹配\", //?tab=stars\n            \"star written in\": \"个星标使用语言\", //?tab=stars\n            \"stars written in\": \"个星标使用语言\", //?tab=stars\n            \"sorted by\": \"，排序按\",\n                \"last updated\": \"最近更新\",\n                \"name\": \"仓库名\",\n                \"stars\": \"星标\",\n\n            \"Clear filter\": \"清除筛选\",\n\n            // [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"],\n            \"This organization doesn’t have any repositories that match.\": \"该组织没有任何匹配的仓库。\", // 组织仓库\n\n            \"This organization has no public repositories.\": \"该组织没有公共仓库。\", //组织仓库\n\n            \"No repositories matched your search.\": \"没有与您的搜索匹配的仓库。\", // 无匹配仓库\n\n            // 项目 状态词\n            \"Updated\": \"更新于\",\n            \"Forked from\": \"复刻自\",\n\n            // 曲线图提示\n            \"Past year of activity\": \"过去一年的活动\",\n\n        // 新版 组织 - 仓库概述 https://github.com/orgs/<orgs-name>/repositories\n            \"Filter\": \"筛选\",\n                \"Advanced filters\": \"高级筛选器\",\n                    \"Build complex filter queries\": \"构建复杂的筛选查询\",\n                        \"To start building your query add your first filter using the button below.\": \"要开始创建查询，请使用下面的按钮添加第一个筛选器。\",\n                    \"Add a filter\": \"新增筛选器\",\n                    \"Apply\": \"应用\",\n                    \"Qualifier\": \"限定词\",\n                        \"Created\": \"已创建\",\n                        \"Total forks\": \"复刻总数\",\n                        \"Total good-first issues\": \"好的首发议题总数\",\n                        \"Has\": \"包含文件\",\n                        \"Total help-wanted issues\": \"求助议题总数\",\n                        \"License\": \"许可证\",\n                        \"Mirror\": \"镜像\",\n                        \"Size (Kb)\": \"大小 (Kb)\",\n                        \"Sponsorable\": \"可接受赞助\",\n                        \"Text\": \"文本\",\n                        \"Total topics\": \"主题总数\",\n                        \"Total stars\": \"星标总数\",\n                        \"Template\": \"模板\",\n                        \"Topic\": \"话题\",\n                        \"Visibility\": \"可见性\",\n                    \"Operator\": \"操作符\",\n                        \"is\": \"是\",\n                        \"is not\": \"不是\",\n                        \"before\": \"之前\",\n                        \"after\": \"之后\",\n                        \"between\": \"之间\",\n                            \"From\": \"起\",\n                            \"To\": \"至\",\n                        \"is one of\": \"包括\",\n                        \"is not one of\": \"不包含\",\n                        \"greater than\": \"大于\",\n                        \"less than\": \"小于\",\n                        \"greater than or equal to\": \"大于或等于\",\n                        \"less than or equal to\": \"小于或等于\",\n                        \"equal to\": \"等于\",\n                    \"Value\": \"值\",\n                        \"Enter a number\": \"输入数字\",\n                        \"Enter search text\": \"输入搜索文本\",\n                        \"Make a selection\": \"进行选择\",\n                            \"Select items\": \"选择项目\",\n                            \"Select an item\": \"选择项目\",\n                                \"Filter values\": \"筛选值\",\n                                    // 复刻\n                                        \"Only forks\": \"仅复刻\",\n                                        \"Exclude forks\": \"排除复刻\",\n                                    // 排序\n                                        \"Recently pushed\": \"最近推送\",\n                                        \"Topics\": \"话题\",\n                                        \"Size\": \"尺寸\",\n                                        \"Recently pushed (descending)\": \"最近推送（降序）\",\n                                        \"Name (descending)\": \"名称（降序）\",\n                                        \"Language (descending)\": \"语言（降序）\",\n                                        \"License (descending)\": \"许可证（降序）\",\n                                        \"Topics (ascending)\": \"主题（升序）\",\n                                        \"Size (ascending)\": \"大小（降序）\",\n                                        \"Total stars (ascending)\": \"星标总数（降序）\",\n                                        \"Total forks (ascending)\": \"复刻总数（降序）\",\n                                        \"Help-wanted issues (ascending)\": \"求助议题总数（升序）\",\n                                        \"Help-wanted issues (descending)\": \"求助议题总数（降序）\",\n                                    // 可见性\n                                        \"Internal\": \"内部\",\n                \"Discard changes?\": \"放弃更改？\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                    \"Keep editing\": \"继续编辑\",\n                    \"Close and discard\": \"关闭并放弃\",\n            \"Search repositories\": \"搜索仓库\",\n                \"No repositories matched your search\": \"没有与您的查询相匹配的仓库\",\n                    \"Try a different search query\": \"尝试不同的搜索查询\",\n\n            \"Last pushed\": \"最近提送\",\n                \"Ascending\": \"升序\",\n                \"Descending\": \"降序\",\n            \"repository\": \"仓库\",\n            \"No language\": \"无语言\",\n\n            \"Compact display density\": \"紧凑显示密度\",\n            \"Comfortable display density\": \"舒适显示密度\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+(k|M|B)?) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"], // 仓库标签卡\n        [/([^ ]+) doesn’t have any public repositories yet./, \"$1 没有任何公共仓库。\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#type-options > summary > span:nth-child(1)\", \"类型\"], // 个人主页 --> 仓库标签页-->类型筛选器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Repositories\": \"我的仓库\",\n        },\n        \"regexp\": [\n            [/(R|r)epositories/, \"仓库\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/projects\"] = { // 个人首页- 项目标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 项目标签卡 ?tab=projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"There aren't any projects yet\": \"尚无任何项目\",\n            \"Provide quick access to relevant projects.\": \"提供快速访问相关项目的途径。\",\n            \"Add projects to view them here.\": \"将项目添加到此处查看。\",\n\n            \"Welcome to projects\": \"欢迎访问项目页面\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"构建像电子表格一样的项目表，给您一个实时的画布来对议题和拉取请求进行筛选、排序和分组。通过自定义字段和保存的视图，使它们符合您的需要。\",\n\n            \"Learn more about projects\": \"了解更多关于项目的信息\", // ?tab=projects\n\n            \"Create your first GitHub project\": \"创建您的第一个 GitHub 项目\",\n            \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"项目是一个可定制的、灵活的工具，用于规划和跟踪您的工作。\",\n\n            \"Sort\": \"排序\",\n                // 排序下拉菜单\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n            // 清除筛选\n            \"Clear current search query and sorts\": \"清除当前的搜索查询和分类\",\n\n            \"No open projects\": \"无已打开的项目\",\n\n            \"Plan and track work across repositories with custom fields and multiple views\": \"通过自定义字段和多个视图来计划和跟踪整个仓库的工作\",\n            \"Kanban-style project board\": \"看板式项目面板\",\n\n            \"You don't have any projects yet.\": \"您还没有任何项目。\",\n            \"There are no projects matching your search.\": \"没有符合您搜索条件的项目。\",\n            \"Learn More\": \"了解更多\",\n\n            \"No description\": \"无描述\",\n\n            // 顶部提醒\n            \"Project closed.\": \"项目已关闭。\",\n            \"Project reopened.\": \"项目已重新打开。\",\n\n            // 组织\n            \"Created by me\": \"由我创建\",\n            \"Create your first GitHub project template\": \"创建您的第一个 GitHub 项目模板\",\n            \"Templates can be used to quickly get started with a new project.\": \"模板可以用于快速新建项目。\",\n            \"New template\": \"新建模版\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            \"New view\": \"新建视图\",\n            \"Layout\": \"布局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"时间线\",\n            \"Duplicate view\": \"复制视图\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分组\",\n            \"No grouping\": \"不进行分组\",\n            \"Markers\": \"标记\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不进行排序\",\n            \"Zoom level\": \"缩放级别\",\n            \"Field sum\": \"字段总和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不进行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成图表\",\n            \"Rename view\": \"重命名视图\",\n            \"Delete view\": \"删除视图\",\n            \"Export view data\": \"导出视图数据\",\n            \"Assignees\": \"负责人\",\n            \"Project templates\": \"项目模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用户设置\",\n            \"Truncate titles\": \"截断标题\",\n            \"Show date fields\": \"显示日期字段\",\n            \"Add status update\": \"添加状态更新\",\n            \"Project details\": \"项目详情\",\n            \"View more options\": \"查看更多选项\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加项目\",\n            \"Start typing to create a draft, or type # to select a repository\": \"开始输入以创建草案，或输入 # 选择一个仓库\",\n            \"Scroll to previous date range\": \"滚动到上一个日期范围\",\n            \"Scroll to next date range\": \"滚动到下一个日期范围\",\n            \"Filter by keyword or by field\": \"按关键字或字段筛选\",\n            \"Discard\": \"放弃\",\n            \"Save changes to new view\": \"保存更改到新视图\",\n            \"Visible fields\": \"可见字段\",\n            \"Hidden fields\": \"隐藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"栏目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存档项目\",\n            \"Make a copy\": \"复制\",\n            \"GitHub Projects\": \"GitHub 项目\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"项目设置\",\n            \"Project name\": \"项目名称\",\n            \"Short description\": \"简短描述\",\n            \"More options\": \"更多选项\",\n            \"Make a copy of this project.\": \"复制此项目\",\n            \"Danger zone\": \"危险区\",\n            \"This project is currently private.\": \"此项目当前为私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"关闭项目将禁用其工作流程，并将其从打开项目列表中删除.\",\n            \"Close this project\": \"关闭此项目\",\n            \"Manage access\": \"管理访问权限\",\n            \"Who has access\": \"谁有访问权限\",\n            \"Private project\": \"私有项目\",\n            \"Only those with access to this project can view it.\": \"只有有权访问此项目的人才能查看它.\",\n            \"Invite collaborators\": \"邀请协作者\",\n            \"Manage access\": \"管理访问权限\",\n            \"Custom fields\": \"自定义字段\",\n            \"Field name\": \"字段名称\",\n            \"Field type\": \"字段类型\",\n            \"Text\": \"文本\",\n            \"Number\": \"数字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"单选\",\n            \"Starts on\": \"开始于\",\n            \"Duration\": \"持续时间\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存并创建\",\n            \"You don't have any collaborators yet.\": \"您还没有任何协作者.\",\n            \"Add a collaborator to see them here.\": \"添加协作者以在此处查看他们.\",\n            \"Make template\": \"制作模板\",\n            \"Copy as template\": \"复制为模板\",\n            \"Visibility\": \"可见性\",\n            \"Close project\": \"关闭项目\",\n            \"Delete project\": \"删除项目\",\n            \"Delete this project\": \"删除此项目\",\n            \"Status chart\": \"状态图表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此图表显示了项目中所有项目的当前状态.\",\n            \"Default charts\": \"默认图表\",\n            \"Custom charts\": \"自定义图表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置图表\",\n            \"Group by (optional)\": \"分组 (可选)\",\n            \"X-axis\": \"X 轴\",\n            \"Y-axis\": \"Y 轴\",\n            \"Save to new chart\": \"保存到新图表\",\n            \"Add a project status update\": \"添加项目状态更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"状态更新是跟踪项目健康和进度的简要报告. 从添加更新开始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"让每个人都知道这个项目是关于什么的，如何使用它，并链接到重要资源.\",\n            \"A short description about this project.\": \"关于此项目的简短描述.\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/View (\\d+)/, \"视图 $1\"],\n        [/([\\d,]+) Open/, \"$1 打开\"], // 项目标签卡\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Projects\": \"我的项目\",\n        },\n        \"regexp\": [\n            [/Projects/, \"项目\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/sponsoring\"] = { // 个人首页- 赞助标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n            \"has sponsored\": \"曾赞助\",\n            \"organization or maintainer in the past\": \"个组织或维护者\",\n            \"organization or maintainer\": \"个组织或维护者\",\n            \"Bulk Sponsor\": \"批量赞助\",\n            \"Sponsor multiple maintainers in one easy transaction.\": \"一次交易即可赞助多个维护者。\",\n            \"Get started\": \"前去赞助\",\n            \"Past sponsorship\": \"曾经赞助\",\n            \"Sponsored\": \"赞助于\",\n            \"organizations and maintainers and has sponsored\": \"个组织和维护者，过去曾赞助过\",\n                \"in the past\": \"个\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/is sponsoring/, \"正在赞助\"],\n        [/Sponsoring since (.+)/, (match ,p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `赞助自 ${translatedDate}`;\n        }],\n        [/Sponsored/, \"赞助于\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"赞助\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/packages\"] = { // 个人首页 - 软件包标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 软件包标签卡 ?tab=packages >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Get started with GitHub Packages\": \"开始使用 GitHub 软件包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地发布包，将您的包与您的代码一起存储，并与您的团队私下共享您的包。\",\n            \"Choose a registry\": \"选择注册表\",\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用于构建基于容器的应用的软件平台——小型轻量级执行环境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用于 Java 编程语言和 Java 运行环境的一个默认包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一个自由和开源的开源包管理器，用于包括 .NET 在内的 Microsoft 开发平台。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分发用于 Ruby 编程语言的 Ruby 程序和库的标准格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一个 JavaScript 的包管理器，包含在 Node.js 中。它使开发人员能够轻松地分享和重用代码。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"为您的团队提供一个管理 Docker 镜像的单一场所，并决定谁可以看到和访问您的镜像。\",\n\n            \"Type:\": \"类型:\",\n                // 下拉菜单\n                \"Select type\": \"选择类型\",\n                \"All\": \"全部\",\n            \"Search packages…\": \"搜索软件包…\",\n            \"Visibility:\": \"可见性:\",\n                \"Select visibility\": \"选择可见性\",\n                \"Internal\": \"内部\",\n            \"Sort by:\": \"排序方式:\",\n                \"Select sort view\": \"选择排序视图\",\n                \"Most downloads\": \"最多下载\",\n                \"Least downloads\": \"最少下载\",\n\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n            // 筛选结果\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"Try\": \"尝试\",\n            \"browsing all packages\": \"浏览所有软件包\",\n            \"to find what you're looking for.\": \"，以找寻您想要的内容。\",\n\n            \"Published\": \"发布于\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) packages?/, \"$1 软件包\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Packages\": \"我的软件包\",\n        },\n        \"regexp\": [\n            [/Packages/, \"软件包\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/sponsors\"] = { // 个人首页 - 赞助标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 赞助标签卡 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // [/is sponsoring/, \"正在赞助\"],\n            \"organization or developer:\": \"个组织或开发者：\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/is sponsoring/, \"正在赞助\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-profile/stars\"] = { // 个人首页 - 星标标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 星标标签卡 ?tab=stars >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Show all lists...\": \"显示所有列表…\",\n\n            \"Sort by\": \"排序方式\",\n            // 排序补充\n                \"Name ascending (A-Z)\": \"名称升序 (A-Z)\",\n                \"Name descending (Z-A)\": \"名称降序 (Z-A)\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Last updated\": \"最后更新\",\n\n            \"Create your first list\": \"创建您的第一个清单\",\n            \"Lists make it easier to organize and curate repositories that you have starred.\": \"列表可使您更容易组织和策划您的星标仓库。\",\n            \"Create your first list.\": \"创建您的第一个清单。\",\n\n            // 搜索, 筛选 & 排序工具栏\n            \"Search stars\": \"搜索星标\",\n            \"Type: All\"    : \"类型：全部\",\n            \"Type: Public\" : \"类型：公共\",\n            \"Type: Private\": \"类型：私有\",\n            \"Type: Sources\": \"类型：源码\",\n            \"Type: Forks\"  : \"类型：复刻\",\n            \"Type: Mirrors\": \"类型：镜像\",\n            \"Type: Templates\": \"类型：模板\",\n                \"All\"    : \"全部\",\n                \"Public\" : \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源码\",\n                \"Forks\"  : \"复刻\",\n                \"Can be sponsored\": \"可赞助\",\n                \"Mirrors\": \"镜像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"语言\",\n                // 下拉菜单\n                \"Select language\": \"选择语言\",\n                \"All languages\": \"所有语言\",\n            \"Sort\": \"排序\",\n                // 下拉菜单\n            \"Sort by: Recently starred\": \"排序：最近星标\",\n            \"Sort by: Recently active\": \"排序：最近活跃\",\n            \"Sort by: Most stars\": \"排序：最多星标\",\n                \"Recently starred\": \"最近星标\",\n                \"Recently active\": \"最近活跃\",\n                \"Most stars\": \"最多星标\",\n                \"Languages\": \"语言\",\n\n            // 筛选结果\n            \"result for\": \"个结果在\",\n            \"results for\": \"个结果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源码\",\n                \"forked\": \"复刻\",\n                \"sponsorable\": \"可赞助\",\n                \"archived\": \"存档\",\n                \"mirror\": \"镜像\",\n                \"template\": \"模板\",\n            \"star matching\": \"个星标匹配\", //?tab=stars\n            \"stars matching\": \"个星标匹配\", //?tab=stars\n            \"star written in\": \"个星标使用语言\", //?tab=stars\n            \"stars written in\": \"个星标使用语言\", //?tab=stars\n            \"starred repositories\": \"星标仓库\",\n            \"starred repositories written in\": \"星标仓库使用语言\",\n\n            \"Clear filter\": \"清除筛选\",\n\n            // 项目 状态词\n            \"Updated\": \"更新于\",\n            \"Forked from\": \"复刻自\",\n\n            \"That’s it. You’ve reached the end of your stars.\": \"而已。您已经到了星海的尽头。\",\n\n            \"Topics\": \"主题\",\n\n            \"Add to list\": \"添加到清单\",\n            \"Lists\": \"清单\",\n            \"You don't have any lists yet.\": \"您尚无任何清单。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n\n            // 他人库 星标页 补充\n            \"Search starred repositories\": \"搜索星标仓库\",\n            \"Starred repositories\": \"星标仓库\",\n            \"Starred topics\": \"星标主题\",\n            \"See all starred topics\": \"查看所有星标主题\",\n\n            // [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已经到了$1 星海的尽头。\"], // 他人星标页 搜索结果\n\n        // https://github.com/stars/<user-name>/lists/<清单>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Edit list\": \"编辑清单\",\n                \"Delete list\": \"删除清单\",\n                    \"Are you sure you want to delete this list?\": \"您确定要删除此清单吗？\",\n                        // 顶部提醒\n                        // [/Deleted \\\"(.*)\\\"./, \"已删除 “$1”。], // 删除星标清单\n                \"Save list\": \"保存清单\",\n            \"Add repositories to this list\": \"添加仓库到此清单\",\n            \"Star repositories on GitHub to keep track of your favorite projects and inspirational code.\": \"GitHub 上的星标仓库可以跟踪您最喜欢的项目和鼓舞人心的代码。\",\n            \"Explore repositories.\": \"探索仓库。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Deleted \\\"(.*)\\\"./, \"已删除 “$1”。\"], // 删除星标清单 顶部提醒\n        [/doesn’t have any starred repositories yet./, \"尚无任何星标仓库。\"],\n        [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已经到了$1 星海的尽头。\"], // 他人星标页 搜索结果\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/Language: /, \"语言：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Stars\": \"我的星标\",\n        },\n        \"regexp\": [\n            [/Your list/, \"我的清单\"],\n            [/Starred/, \"星标\"],\n            [/'s list/, \" 的清单\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"confirm-access\"] = { // “授权访问” 对话框\n    \"static\": { // 静态翻译\n        // 授权访问 sudo 模式身份验证\n            \"Confirm access\": \"授权访问\",\n            \"Signed in as\": \"登录身份为\",\n            \"Authentication code\": \"验证码\",\n                \"More information about sudo mode authentication\": \"更多关于 sudo 模式身份验证的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器 (TOTP) 应用或浏览器扩展以查看您的身份验证码。\",\n            \"Verify\": \"验证\",\n            \"Verify\": \"验证\",\n            \"Verifying…\": \"验证中…\",\n            \"Your authentication code has been sent.\": \"您的验证码已发送。\",\n\n            \"Having problems?\": \"有问题吗？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your passkey\": \"使用您的通行密钥\",\n            \"Use your authenticator app\": \"使用您的身份验证器应用\",\n            \"Send a code via email\": \"通过电子邮件发送验证码\",\n            \"Use your password\": \"使用您的密码\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"为您的 GitHub Mobile 应用创建验证请求。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我们向您的 GitHub Mobile 应用发送了一个验证请求。输入下面显示的数字以进入 sudo 模式。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"Password\": \"密码\",\n            \"Forgot password?\": \"忘记密码？\",\n            \"Confirm\": \"确认\",\n\n            \"Passkey\": \"通行密钥\",\n            \"When you are ready, authenticate using the button below.\": \"准备好后，请使用下面的按钮进行身份验证。\",\n            \"This browser or device does not fully support passkeys.\": \"此浏览器或设备不完全支持通行密钥。\",\n            \"Use passkey\": \"使用通行密钥\",\n\n            \"Authentication failed.\": \"认证失败。\",\n            \"Retry passkey\": \"重试通行密钥\",\n\n            \"Unable to verify with your passkey?\": \"无法验证您的通行密钥？\",\n    },\n};\n\nI18N[\"zh-CN\"][\"payment-module\"] = { // 通用账单及支付信息模块\n    \"static\": { // 静态翻译\n        \"Account\": \"账户\",\n            \"Personal account\": \"个人账户\",\n\n        \"Billing information\": \"账单信息\",\n            \"You have not added any billing information.\": \"您尚未添加账单信息。\",\n               \"Add your information to show on every invoice\": \"在每张发票上添加您的信息\",\n\n            // 添加/编辑账单信息\n                \"First name\": \"名字\",\n                    \"First name can't be blank.\": \"名字不能为空。\",\n                    \"First name can't be blank\": \"名字不能为空\",\n                \"Last name\": \"姓氏\",\n                    \"Last name can't be blank.\": \"姓氏不能为空。\",\n                    \"Last name can't be blank\": \"姓氏不能为空\",\n                \"Address\": \"地址\",\n                    \"(Street, P.O. box)\": \"（街道，邮政信箱）\",\n                    \"Address can't be blank.\": \"地址不能为空。\",\n                    \"Address can't be blank\": \"地址不能为空\",\n                \"Address line 2\": \"地址第 2 行\",\n                    \"(Apartment, suite, unit)\": \"（公寓、套房、单元）\",\n                \"City\": \"城市\",\n                    \"City can't be blank.\": \"城市不能为空。\",\n                    \"City can't be blank\": \"城市不能为空\",\n                \"Country/Region\": \"国家/地区\",\n                \"State/Province\": \"州/省\",\n                    \"Required for certain countries\": \"某些国家/地区需要\",\n                \"Postal/Zip code\": \"邮政编码\",\n                    \"(9-digit zip code for US)\": \"（美国为 9 位邮政编码）\",\n                \"VAT/GST ID\": \"增值税/消费税编号\",\n\n                \"Save billing information\": \"保存账单信息\",\n                \"Save and continue\": \"保存并继续\",\n\n            // 顶部提醒\n                \"You have not added any billing information.\": \"您尚未添加账单信息。\",\n                \"Successfully updated billing information.\": \"保存账单信息成功。\",\n                \"An error occurred while saving billing information.\": \"保存账单信息发生错误。\",\n\n            // 组织设置\n                \"This organization is linked with your billing information:\": \"该组织与您的账单信息相关联：\",\n\n                \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"组织所有者或账单管理者必须将其个人账单信息与该组织账户关联。您可以切换到企业账户，以使用企业的账单信息通过\",\n                \"signing\": \"签署\",\n                \"the\": \" \",\n                \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n\n                \"Allow my billing information to be linked with this organization\": \"允许我的账单信息与该组织关联\",\n\n                    \"Confirm your details shown below. To make changes,\": \"确认以下显示的详细信息。要做出更改，\",\n                    \"edit your billing information\": \"请编辑您的账单信息\",\n\n                \"Update your billing information\": \"更新您的账单信息\",\n                \"to be able to link it with this organization.\": \"以便与该组织关联。\",\n                    // 顶部提醒\n                        \"You have successfully linked your billing information with this organization.\": \"您已成功将您的账单信息与该组织关联。\",\n\n                // 移除对话框\n                    \"Remove\": \"移除\",\n                    \"Remove your billing information?\": \"确定移除您的账单信息？\",\n                        \"You are about to remove the billing information for this organization. Are you sure you want to do this?\": \"您即将移除此组织的账单信息。确定要继续此操作吗？\",\n                    \"Remove billing information\": \"移除账单信息\",\n                    // 顶部提醒\n                        \"Successfully removed billing information.\": \"已成功移除账单信息。\",\n\n            // 其他\n                // 来自 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n                    \"Please confirm your billing details to continue. You only need to do this once.\": \"请确认您的账单详情以继续。您只需确认一次。\",\n\n        \"payment method\": \"支付方式\",\n        \"Payment method\": \"支付方式\",\n        \"Payment Method\": \"支付方式\",\n            \"You have not added a payment method.\": \"您尚未添加支付方式。\",\n\n        \"Payment information\": \"支付信息\",\n            \"Pay with\": \"支付方式：\",\n                \"Loading payment information…\": \"正在加载支付信息…\",\n\n                \"Credit or debit card\": \"信用卡或借记卡\",\n                    \"Card Number *\": \"卡号\",\n                    \"Expiration Date (YYYY) *\": \"终止日期 (YYYY) *\",\n                        \"- Select One -\": \"- 选择一个 -\",\n                    \"Save payment information\": \"保存付款信息\",\n                    \"You are currently paying with your PayPal account\": \"您目前正在使用您的 PayPal 账户支付\",\n                    \", but you can switch to using a credit or debit card at any time.\": \"，但是您随时可以切换到使用信用卡或借记卡支付。\",\n\n                \"PayPal account\": \"PayPal 账户\",\n                \"Paypal account\": \"PayPal 账户\",\n                    \"Sign in to\": \"登录到\",\n                    \"Connecting to PayPal…\": \"正在连接到 PayPal…\",\n                    \"Sorry, we’re having trouble with PayPal right now, please try again a bit later.\": \"抱歉，我们目前与 PayPal 的连接遇到问题，请稍后再试。\",\n                    \"PayPal update\": \"\",\n                    \"Charge to\": \"收费至\",\n                    \"Sign in to PayPal to use a different account.\": \"登录 PayPal 以使用其他账户。\",\n                    \"You are currently paying with a credit card, but you can switch to using PayPal at any time.\": \"您目前使用信用卡付款，但您可以随时切换为使用 PayPal。\",\n\n                // 顶部提醒\n                    \"An error occurred while saving payment information.\": \"保存支付信息时发生错误。\",\n                    \"Your PayPal account has been successfully added.\": \"您的 PayPal 账户已成功添加。\",\n                    \"Your credit card has been successfully updated.\": \"您的信用卡已成功更新。\",\n\n                \"504 Gateway Time-out\": \"504 网关超时\",\n                \"We may place a temporary hold on your payment method to verify its validity. This is not a charge, and it will be released automatically after verification.\": \"我们可能会暂时冻结您的支付方式以验证其有效性。这不是收费，验证后将会自动解除。\",\n    },\n};\n\nI18N[\"zh-CN\"][\"settings-menu\"] = { // 设置 - 公共部分\n    \"static\": { // 静态翻译\n        \"Settings\": \"设置\", // 新版全局导航\n\n        \"Your personal account\": \"我的个人账户\",\n        \"Switch settings context\": \"切换设置上下文\", // 存在组织时\n        \"Go to your personal profile\": \"去我的个人资料\",\n        // 左侧菜单\n        \"Public profile\": \"基本资料\",\n        \"Account\": \"账户\",\n        \"Appearance\": \"外观\",\n        \"Accessibility\": \"无障碍\",\n        \"Notifications\": \"通知\",\n\n        \"Access\": \"访问\",\n            \"Billing and licensing\": \"账单和许可\",\n                \"Usage\": \"使用情况\",\n                \"Premium request analytics\": \"高级请求分析\",\n                \"Budgets and alerts\": \"预算和警报\",\n                \"Licensing\": \"许可\",\n                \"Payment information\": \"支付信息\",\n                \"Payment history\": \"支付历史\",\n                \"Additional billing details\": \"其他账单\",\n                \"Education benefits\": \"教育福利\",\n            \"Emails\": \"电子邮箱\",\n            \"Password and authentication\": \"密码和身份验证\",\n            \"Sessions\": \"会话\",\n            \"SSH and GPG keys\": \"SSH 与 GPG 公钥\",\n            \"Organizations\": \"组织\",\n            \"Enterprises\": \"企业版\",\n            \"Moderation\": \"节制\",\n                \"Blocked users\": \"黑名单\",\n                \"Interaction limits\": \"互动限制\",\n                \"Code review limits\": \"代码审查限制\",\n\n        \"Code, planning, and automation\": \"代码、规划和自动化\",\n            // \"Repository\": \"仓库\"\n            // 代码空间\n            \"Models\": \"模型\",\n            \"Packages\": \"软件包\",\n            \"Copilot\": \"GitHub Copilot\",\n                \"Features\": \"功能\",\n                \"Coding agent\": \"编程智能体\",\n            \"Pages\": \"GitHub Pages\",\n            \"Saved replies\": \"快捷回复\",\n\n        // \"Security\": \"安全\",\n            \"Code security\": \"代码安全性\",\n\n        \"Integrations\": \"集成\",\n            \"Applications\": \"应用\",\n            \"Scheduled reminders\": \"定时提醒\",\n\n        \"Archives\": \"存档\",\n            \"Security log\": \"安全日志\",\n            \"Sponsorship log\": \"赞助日志\",\n\n        \"Developer settings\": \"开发者设置\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs-settings-menu\"] = { // 组织设置 公共部分\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 公用部分\n            \"Organization\": \"组织\",\n            \"Switch settings context\": \"切换设置上下文\", // 存在组织时\n            \"Go to your organization profile\": \"去我的组织主页\",\n        // 左侧菜单\n            \"General\": \"常规\",\n            \"Policies\": \"策略\",\n            \"Access\": \"访问\",\n                \"Billing and licensing\": \"账单和许可\",\n                    \"Usage\": \"使用情况\",\n                    \"Budgets and alerts\": \"预算和警报\",\n                    \"Licensing\": \"许可\",\n                    \"Payment information\": \"支付信息\",\n                    \"Payment history\": \"支付历史\",\n                    \"Additional billing details\": \"其他账单\",\n                \"Organization roles\": \"组织角色\",\n                    \"Role management\": \"角色管理\",\n                    \"Role assignments\": \"角色分配\",\n                \"Repository roles\": \"仓库角色\",\n                \"Member privileges\": \"成员权限\",\n                // \"Team discussions\": \"团队讨论\",\n                \"Import/Export\": \"导入/导出\",\n                \"Moderation\": \"节制\",\n                    \"Blocked users\": \"黑名单\",\n                    \"Interaction limits\": \"互动限制\",\n                    \"Code review limits\": \"代码审查限制\",\n                    \"Moderators\": \"版主\",\n\n            \"Code, planning, and automation\": \"代码、规划和自动化\",\n                \"Repository\": \"仓库\",\n                    \"Topics\": \"主题\",\n                    \"Rulesets\": \"规则集\",\n                    \"Rule insights\": \"规则洞察\",\n                    \"Custom properties\": \"自定义属性\",\n                \"Codespaces\": \"代码空间\",\n                \"Planning\": \"计划\",\n                    \"Issue types\": \"议题类型\",\n                \"Copilot\": \"GitHub Copilot\",\n                    \"Access\": \"访问\",\n                    \"Coding agent\": \"编程智能体\",\n                \"Actions\": \"操作\",\n                    \"Runners\": \"运行器\",\n                    \"Runner groups\": \"运行器组\",\n                    \"Custom images\": \"自定义镜像\",\n                    \"Caches\": \"缓存\",\n                \"Models\": \"模型\",\n                    \"Development\": \"开发\",\n                    \"Custom models\": \"自定义模型\",\n                \"Webhooks\": \"Web 钩子\",\n                \"Packages\": \"软件包\",\n                \"Projects\": \"项目\",\n\n            \"Security\": \"安全\",\n                \"Authentication security\": \"身份验证安全\",\n                \"Advanced Security\": \"高级安全\",\n                    \"Configurations\": \"配置\",\n                    \"Global settings\": \"全局设置\",\n                \"Deploy keys\": \"部署密钥\",\n                \"Compliance\": \"承诺\",\n                \"Verified and approved domains\": \"经验证和批准的域名\",\n                \"Secrets and variables\": \"机密和变量\",\n                    \"Private registries\": \"私有注册表\",\n\n            \"Third-party Access\": \"第三方访问\",\n                \"GitHub Apps\": \"GitHub 应用\",\n                \"OAuth app policy\": \"OAuth 应用策略\",\n                \"Personal access tokens\": \"个人访问令牌\",\n                    \"Active tokens\": \"活跃的令牌\",\n                    \"Pending requests\": \"待处理的请求\",\n\n            \"Integrations\": \"集成\",\n                \"Scheduled reminders\": \"定时提醒\",\n\n            \"Archive\": \"存档\",\n                \"Logs\": \"日志\",\n                    \"Sponsorship log\": \"赞助日志\",\n                    \"Audit log\": \"审计日志\",\n                \"Deleted repositories\": \"删除的仓库\",\n\n            \"Developer settings\": \"开发者设置\",\n                \"OAuth Apps\": \"OAuth 应用\",\n                \"Publisher Verification\": \"发布者验证\",\n            \"Account settings\": \"账户设置\",\n\n            \"Developer Settings\": \"开发者设置\"\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/profile\"] = { // 设置 - 个人资料\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Profile 个人资料 https://github.com/settings/profile\n            \"Public profile\": \"基本资料\",\n            \"Profile picture\": \"我的头像\",\n                \"Edit\": \"编辑\",\n                \"Upload a photo…\": \"上传图片…\",\n                \"Remove photo\": \"删除图片\",\n                \"Are you sure you want to reset your current avatar?\": \"您确定要重置当前的头像吗？\",\n                \"Your profile picture has been reset. It may take a few minutes to update across the site.\": \"您的个人头像已重置，整个网站的更新可能需要几分钟的时间。\",\n                \"Your profile picture has been updated. It may take a few minutes to update across the site.\": \"您的个人头像已更新，整个网站的更新可能需要几分钟的时间。\",\n                // 裁剪个人头像对话框\n                \"Crop your new profile picture\": \"裁剪个人头像\",\n                \"Set new profile picture\": \"设置新的个人头像\",\n            //\"You can also drag and drop a picture from your computer.\": \"您也可以直接拖拽照片镜像上传.\",\n            \"Name\": \"昵称\",\n            \"Your name may appear around GitHub where you contribute or are mentioned. You can remove it at any time.\": \"您的昵称可能会出现在 GitHub 上，您的贡献或被提及的地方。您可以随时删除它。\",\n            \"Public email\": \"公开电子邮箱\",\n            \"Remove\": \"移除\",\n            \"Select a verified email to display\": \"选择显示一个已验证的电子邮箱\",\n            \"You have set your email address to private. To toggle email privacy, go to\": \"您已将电子邮箱地址设置为私密。需要切换电子邮箱地址的私密性，请转到\",\n            \"email settings\": \"邮箱设置\",\n            \"and uncheck \\\"Keep my email address private.\\\"\": \"并取消 “保持我的电子邮箱地址的私密性”。\",\n            \"You can manage verified email addresses in your\": \"您可以管理已验证的电子邮箱地址在您的\",\n            //\"Don’t show my email address\": \"不显示我的邮箱\",\n            //\"You can add or remove verified email addresses in your\": \"您可以添加或删除邮件地址在您的\",\n            //\"personal email settings\": \"邮箱设置\",\n            \"Bio\": \"个人简介\",\n            \"Tell us a little bit about yourself\": \"自我介绍一下您自己的相关信息\",\n            \"You can\": \"您可以\",\n            \"@mention\": \"@用户名或组织名\",\n            \"other users and organizations to link to them.\": \"链接到其他用户和组织。\",\n            \"URL\": \"网站\",\n            \"Social accounts\": \"社交账户\",\n                \"Link to social profile 1\": \"链接到社交账户\",\n                \"Link to social profile 2\": \"链接到社交账户\",\n                \"Link to social profile 3\": \"链接到社交账户\",\n                \"Link to social profile 4\": \"链接到社交账户\",\n            \"Company\": \"公司\",\n            \"your company’s GitHub organization to link it.\": \"链接到您所在公司的 GitHub 组织。\",\n             //\"your company's GitHub organization to link it.\": \"贵公司和GitHub的组织联系起来。\",\n            \"Pronouns\": \"代词\",\n                \"Don't specify\": \"不说明\",\n                \"they/them\": \"他们\",\n                \"she/her\": \"她\",\n                \"he/him\": \"他\",\n                \"Custom\": \"自定义\",\n            \"Location\": \"位置\",\n            \"Display current local time\": \"显示当前当地时间\",\n                \"Other users will see the time difference from their local time.\": \"其他用户将看到与本地时间的时差。\",\n                \"Time zone\": \"时区\",\n\n            \"All of the fields on this page are optional and can be deleted at any time, and by filling them out, you're giving us consent to share this data wherever your user profile appears. Please see our\": \"此页面上的所有字段都是可选的，可以随时删除，填写这些字段，即表示您同意我们在您的个人资料出现的任何地方共享此数据。请参阅我们的\",\n            \"privacy statement\": \"隐私声明\",\n            \"to learn more about how we use this information.\": \"以了解更多关于我们如何使用这些信息。\",\n            \"Update profile\": \"更新资料\",\n            // 顶部提醒\n                \"Profile updated successfully\": \"资料更新成功。\",\n                \"Profile updated successfully —\": \"资料更新成功 —\",\n                \"view your profile.\": \"查看您的个人资料。\",\n\n            \"Contributions & activity\": \"贡献与活动\",\n                \"Make profile private and hide activity\": \"将个人资料设置为私密，并隐藏活动\",\n                    \"Enabling this will hide your contributions and activity from your GitHub profile and from social features like followers, stars, feeds, leaderboards and releases.\": \"启用此功能后，您的贡献和活动将会从您的 GitHub 个人资料中隐藏起来，也不会被关注者、观星者、动态提要、排行榜和发布等社交功能所发现。\",\n                \"Include private contributions on my profile\": \"在我的个人资料显示私人贡献\",\n                    \"Your contribution graph, achievements, and activity overview will show your private contributions without revealing any repository or organization information.\": \"您的贡献图、成就和活动概览将显示您的私人贡献，而不会透露任何仓库或组织信息。\",\n                    \"Read more\": \"了解更多\",\n            \"Update preferences\": \"更新设置\",\n\n            \"Profile settings\": \"个人资料设置\",\n                \"Display PRO badge\": \"显示 PRO 徽章\",\n                    \"This will display the\": \"将会显示\",\n                    \"badge on your public profile page.\": \"徽章在您的个人资料中。\",\n                \"Show Achievements on my profile\": \"在我的个人资料上显示成就\",\n                    \"Your achievements will be shown on your profile.\": \"您的成就将显示在您的个人资料中。\",\n\n            \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"has guides, API and webhook references, information about creating GitHub Apps and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"包含指南、API 和 Web 钩子、有关创建 GitHub 应用的信息以及用于构建与 GitHub 集成的应用的其他资源。确保您的联系信息是最新的。感谢您的加入！\",\n\n                \"Support email address\": \"技术支持电子邮件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用户联系您寻求支持的电子邮件地址。\",\n                \"Product or company website\": \"产品或公司网站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"与 GitHub 集成的产品、公司或服务的网址。\",\n                \"Update contact information\": \"更新联系信息\",\n                \"Leave the program\": \"退出计划\",\n\n                \"Building an application, service, or tool that integrates with GitHub?\": \"构建与 GitHub 集成的应用、服务或工具？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 开发者计划\",\n                \", or read more about it at our\": \"，或了解更多信息在我们的\",\n                \"GitHub developer program\": \"GitHub 开发者计划\",\n                \"Developer site\": \"开发者站点\",\n\n            \"Jobs profile\": \"就业状态\",\n            \"Available for hire\": \"求 HR 带走\",\n            \"Save jobs profile\": \"保存状态\",\n                // 顶部提醒\n                \"Profile updated successfully —\": \"个人资料更新成功 —\",\n                \"view your profile.\": \"查看您的个人资料。\",\n                \"Visitors will now see your public and anonymized private contributions.\": \"现在访客可以看到您的公开和匿名私人贡献。\",\n                \"Visitors will now see only your public contributions.\": \"现在访客只能看到您的公开贡献\",\n\n            \"Trending settings\": \"趋势设置\",\n            \"Preferred spoken language\": \"首选语言\",\n            \"No Preference\": \"未设置\",\n            \"We'll use this language preference to filter the trending repository lists on\": \"我们将使用此语言偏好来过滤趋势仓库列表在\",\n            \"our\": \"我们的\",\n            \"Trending Repositories\": \"趋势仓库\",\n            \"page.\": \"页面。\",\n            \"Save Trending settings\": \"保存趋势设置\",\n\n            \"ORCID provides a persistent identifier - an ORCID iD - that distinguishes you from other researchers. Learn more at\": \"ORCID 提供持久标识符 - ORCID iD - 将您与其他开发人员区分，了解更多信息请访问\",\n            \"Connect your ORCID iD\": \"关联您的 ORCID iD\",\n            \"Successfully connected your GitHub account with ORCID.\": \"已成功将您的 GitHub 账户与 ORCID 关联。\",\n            \"You have a connected ORCID iD\": \"您的 ORCID iD\",\n            \"for the account\": \"已关联账户\",\n            \"Display your ORCID iD on your GitHub profile\": \"在您的 GitHub 个人资料上显示 ORCID iD\",\n            \"Disconnecting your ORCID iD may affect areas of your profile where your ORCID iD is displayed.\": \"解除关联 ORCID iD 可能会影响您个人资料中显示 ORCID iD 的区域。\",\n            \"Disconnect your ORCID iD\": \"解除关联您的 ORCID iD\",\n            \"Successfully disconnected ORCID from your GitHub Account.\": \"已成功解除 ORCID 与您的 GitHub 账户的连接。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your profile\": \"个人资料\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings\"] = I18N[\"zh-CN\"][\"settings/profile\"];\n\nI18N[\"zh-CN\"][\"settings/admin\"] = { // 设置 - 账户\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Account settings 账户设置 https://github.com/settings/admin\n            \"Change username\": \"更改用户名\",\n            \"Changing your username can have\": \"更改您的用户名可能会有\",\n            \"unintended side effects\": \"意想不到的副作用\",\n                \"Really change your username?\": \"确定要更改您的用户名？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                \"We\": \"我们\",\n                \"will not\": \"不会\",\n                \"will\": \"会\",\n                \"set up redirects for your old profile page.\": \"为您的旧资料页设置重定向\",\n                \"set up redirects for Pages sites.\": \"为 GitHub Pages 站点设置重定向。\",\n                \"create redirects for your repositories (web and git access).\": \"为您的仓库设置重定向（ web 和 git 访问）。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要几分钟的时间来完成。\",\n                \"I understand, let’s change my username\": \"我明白了，依然更改我的用户名\",\n\n                \"Enter a new username\": \"输入新用户名\",\n                \"Choose a new username\": \"选择新用户名\",\n                \"Change my username\": \"更改我的用户名\",\n                \"Trademark Policy\": \"商标政策\",\n                \"are available.\": \"都可以使用。\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用户名只能包含字母数字字符或单个连字符，不能以连字符开始或结束。\",\n            \"Looking to manage account security settings? You can find them in the\": \"想管理账户安全设置？您可以在\",\n            \"page.\": \"页面找到它们。\",\n\n            \"Link Patreon account\": \"关联 Patreon 账户\",\n                \"Connect a Patreon account for\": \"关联\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 账户，以便赞助维护者。当被赞助者也关联 Patreon 和 GitHub 账户时，在 Patreon 上获得的赞助也会显示在 GitHub 上，并显示 GitHub 赞助者的公开个人资料。\",\n                \"Connect with Patreon\": \"关联 Patreon 账户\",\n                \"Successfully connected your GitHub account with Patreon.\": \"已成功将您的 GitHub 账户与 Patreon 关联。\",\n\n            \"Unlink Patreon account\": \"取消关联 Patreon 账户\",\n                \"Disconnect the Patreon account\": \"取消 Patreon 账户\",\n                \"for\": \"和\",\n                \"to sponsor maintainers with. Any sponsorships made on Patreon will no longer receive recognition on GitHub.\": \"的关联，在 Patreon 上进行的任何赞助将不会在 GitHub 显示。\",\n                \"Successfully disconnected your GitHub account from Patreon.\": \"已成功解除您的 GitHub 账户与 Patreon 的关联。\",\n\n            \"Export account data\": \"导出账户数据\",\n            \"Export all repositories and profile metadata for\": \"导出所有仓库和配置元数据，自\",\n            \". Exports will be available for 7 days.\": \"。导出结果将有 7 天有效期。\",\n            \"Start export\": \"开始导出\",\n            \"Recent exports\": \"近期导出\",\n            \"New export\": \"新建导出\",\n            \"We're preparing your export! We'll send you an email when it's finished.\": \"我们正在为您准备导出！我们完成后会发一封电子邮件。\",\n            \"New exports cannot be requested while an export is currently in progress\": \"当前正在导出中，无法请求新的导出\",\n            \"Resend email with link\": \"重新发送带有链接的邮件\",\n            \"Download deleted\": \"导出内容已删除\",\n            \"Job queued to delete file.\": \"正在排队删除文件的作业。\",\n\n            \"Successor settings\": \"设置继任者\",\n            // 未指定\n            \"designated below\": \"（下面指定的）\",\n            \", in the event of my death. I understand that this appointment of a successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will.\": \"。我明白，这种指定继任者的做法并不凌驾于具有法律约束力的近亲规则或任何相关司法管辖区的遗产法，也不产生具有约束力的遗嘱。\",\n            \"Learn more about account successors.\": \"了解更多关于账户继任者的信息。\",\n            \"Add Successor\": \"添加继任者\",\n            \"Search by username, full name, or email address\": \"搜索用户名、全名、或电子邮箱\",\n            \"You have not designated a successor.\": \"您还没有指定继任者。\",\n            // 等待回应\n            \"Pending\": \"待处理\",\n            \"Copy invite link\": \"复制邀请链接\",\n            // 已指定\n            \"Learn more about account successors\": \"了解更多关于账户继任者的信息\",\n            \"Revoke\": \"撤销\",\n            // 被谢绝\n            \"Declined\": \"被谢绝\",\n\n            \"Delete account\": \"删除账户\",\n            \"Once you delete your account, there is no going back. Please be certain.\": \"您一旦删除了您的账户，将再也无法恢复。请确认！\",\n                \"Your account is currently an owner in these organizations:\": \"您的账户目前是以下组织的所有者：\", // 存在组织\n                \"You must\": \"您必须先\",\n                \"remove yourself\": \"删除您自己\",\n                \"transfer ownership\": \"转让所有权\",\n                \"delete these organizations\": \"删除这些组织\",\n                \"before you can delete your user.\": \"，您才可以删除您的用户。\",\n            \"Delete your account\": \"删除账户\",\n            \"Are you sure you don’t want to just\": \"您确定不希望仅仅是\",\n            \"downgrade your account\": \"降级您的账户\",\n            \"to a\": \"为\",\n            \"FREE\": \"免费\",\n            \"account? We won’t charge your credit card anymore.\": \"账户吗？我们不会再向您信用卡账户扣款。\",\n            \"account? We won’t charge your payment information anymore.\": \"账户吗？我们不会再向您支付账户扣款。\",\n            \"account? We won’t charge your PayPal account anymore.\": \"账户吗？我们将不再向您 PayPal 账户扣款。\",\n                \"Are you sure you want to do this?\": \"您确定要这么做吗？\",\n                \"This is extremely important.\": \"这是极其重要的。\",\n                \"We will\": \"我们将\",\n                \", along with all of your forks, wikis, issues, pull requests, and GitHub Pages sites.\": \"以及您所有的复刻、Wiki、议题、拉取请求和 GitHub Pages 站点。\",\n                \"You will no longer be billed, and after 90 days your username will be available to anyone on GitHub.\": \"您将不再被收取费用，并且 90 天后您的用户名将被 GitHub 上的任何人使用。\",\n                \"For more help, read our article \\\"\": \"如需更多帮助，请阅读我们的文章 “\",\n                \"Deleting your user account\": \"删除您的账户\",\n                \"\\\".\": \"”。\",\n                \"Your username or email:\": \"您的用户名或电子邮箱：\",\n                \"To verify, type\": \"为了验证，请输入\",\n                \"below:\": \"在下面：\",\n                \"Confirm your password:\": \"确认您的密码：\",\n                \"Cancel plan and delete this account\": \"取消计划并删除此账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/is available\\./, \"可用。\"],\n        [/Username ([^ ]+) is not available\\. Please choose another\\. To submit a trademark claim, please see our/, \"用户名 $1 不可用。请重新选择。要提交商标索赔，请看我们的\"],\n        [/immediately delete all of your repositor(y|ies) \\((\\d+)\\)/, \"立即删除您所有的仓库（$1个）\"],\n\n        // 设置继任者\n        [/By clicking \\\"Add Successor\\\" below, I acknowledge that I am the owner of the([^@]+@[^\\n]+) account, and am authorizing GitHub to transfer content within that account to my GitHub Successor,/, \"通过点击下面的 “添加继任者”，我确认我是 $1 账户的所有者，并授权 GitHub 在我死亡的情况下将此账户内的内容转让给我的 GitHub 继任者\"],\n        [/This link will only work for ([^ ]+)./, \"此链接仅对 $1 有效。\"],\n\n        // 顶部提醒\n        [/You have successfully sent the successor invitation to ([^ ]+)./, \"您已经成功向 $1 发送了继任者邀请。\"],\n        [/You have revoked the successor invitation to ([^ ]+)./, \"您已经撤销了对 $1 的继任者邀请。\"],\n        [/You have canceled the invitation to ([^ ]+) to be your designated successor./, \"您已经取消了让 $1 成为您的指定继任者的邀请。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account settings\": \"账户设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"succession/invitation\"] = { // 账户继任者邀请  users/<邀请者的 user-name>/succession/invitation\n    \"static\": { // 静态翻译\n        // 受邀者\n        \"invited you to be their account successor\": \"邀请您成为其账户继任者\",\n        \"Learn more about account successors\": \"了解更多关于账户继任者的信息\",\n        //[/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通过点击下面的 “接受邀请”，我确认我同意按照其继任者要求所授权的方式担任 $1 的继任者。我同意在使用和维护其帐户内容时遵守 GitHub 的\"],\n        \"Terms of Service\": \"服务条款\",\n        \"and the user's written requests, if any, in my use and maintaining of their account's content.\": \"和用户的书面请求（如果有）。\",\n        \"I understand that accepting this appointment as successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will, and I agree to comply or assist with a valid request by an individual with legal authority over the user's property (such as next-of-kin, an estate's executor, and/or a beneficiary of their will).\": \"我明白，接受此继任者任命的做法并不凌驾于具有法律约束力的近亲规则或任何相关司法管辖区的遗产法，也不产生具有约束力的遗嘱，并且我同意遵守或协助对用户财产拥有合法权力的个人（例如近亲、遗产执行人和/或其遗嘱受益人）的有效请求。\",\n        \"Accept invitation\": \"接受邀请\",\n        \"Decline\": \"谢绝\",\n        // 已接受\n        \"This invitation has already been accepted.\": \"此邀请已被接受。\",\n        // 已谢绝\n        \"This invitation has already been declined.\": \"此邀请已被谢绝。\",\n        // 不存在\n        \"Invitation not found\": \"此邀请已被谢绝。\",\n        \"Your invitation could not be found, or is not valid.\": \"找不到您的邀请，或是其已不再有效。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/As an account successor, you would be able to manage ([^ ]+)'s repositories if they're not able to./, \"作为账户继任者，在 $1 再也无法管理其仓库时，您将能够管理其仓库。\"],\n        [/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通过点击下面的 “接受邀请”，我确认我同意按照其继任者要求所授权的方式担任 $1 的继任者。我同意在使用和维护其帐户内容时遵守 GitHub 的\"],\n    ]\n};\n\nI18N[\"zh-CN\"][\"settings/appearance\"] = { // 设置 - 外观\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Appearance 外观 https://github.com/settings/appearance\n            \"Theme preferences\": \"主题首选项\",\n            \"Choose how GitHub looks to you. Select a single theme, or sync with your system and automatically switch between day and night themes. Selections are applied immediately and saved automatically.\": \"选择 GitHub 在您眼中的样子。选择单一主题，或与您的系统同步并自动在白天和夜晚的主题之间切换。选择将立即生效并自动保存。\",\n            \"Theme mode\": \"主题模式\",\n                \"Single theme\": \"单一主题\",\n                \"Sync with system\": \"与系统同步\",\n            \"GitHub will use your selected theme\": \"GitHub 将使用您选择的主题\",\n            \"GitHub theme will match your system active settings\": \"GitHub 主题将匹配您的系统设置\",\n            \"Light default\": \"浅色 - 默认\",\n            \"Light protanopia and deuteranopia\": \"浅色 - 色盲\",\n            \"Light colorblind\": \"浅色 - 色盲\",\n            \"Light tritanopia\": \"浅色 - 蓝色盲\",\n            \"Dark default\": \"深色 - 默认\",\n            \"Dark protanopia and deuteranopia\": \"深色 - 色盲\",\n            \"Dark colorblind\": \"深色 - 色盲\",\n            \"Dark tritanopia\": \"深色 - 蓝色盲\",\n            \"Soft dark\": \"深色 - 柔和\",\n            \"Light theme\": \"浅色主题\",\n            \"Dark theme\": \"深色主题\",\n            \"Active\": \"激活\",\n            \"This theme will be active when your system is set to “light mode”\": \"当您的系统设置为 “浅色模式” 时，该主题将被激活。\",\n            \"This theme will be active when your system is set to “dark mode”\": \"当您的系统设置为 “深色模式” 时，该主题将被激活。\",\n            \"Beta\":\"预览\",\n\n            \"Contrast\": \"对比度\",\n                \"Increase contrast\": \"增加对比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根据您的系统设置启用对浅色或深色模式（或两者）的高对比度\",\n                    \"Light mode\": \"浅色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"Off\": \"关闭\",\n                    \"On\": \"开启\",\n\n            \"Emoji skin tone preference\": \"表情符号肤色首选项\",\n            \"Preferred default emoji skin tone\": \"默认的表情符号肤色\",\n\n            \"Tab size preference\": \"制表符首选项\",\n            \"Choose the number of spaces a tab is equal to when rendering code\": \"在渲染代码时，选择一个制表符等于多少个空格\",\n            \"4 (Default)\": \"4 (默认)\",\n\n            \"Markdown editor font preference\": \"Markdown 编辑器字体首选项\",\n            \"Font preference for plain text editors that support Markdown styling (e.g. pull request and issue descriptions, comments.)\": \"支持 Markdown 样式的纯文本编辑器的字体首选项（例如拉取请求和议题描述、评论。）\",\n            \"Use a fixed-width (monospace) font when editing Markdown\": \"编辑 Markdown 时使用固定宽度（等宽）字体\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Appearance\": \"外观\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/accessibility\"] = { // 设置 - 无障碍\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Accessibility 无障碍 https://github.com/settings/accessibility\n            \"General\": \"通常\",\n            \"Character keys\": \"字符键\",\n                \"GitHub shortcuts\": \"GitHub 快捷键\",\n                \"that don't use modifier keys in their activation. For example, the\": \"，这些快捷键在激活时不使用修改键。例如，\",\n                \"shortcut to navigate notifications, or\": \"快捷键来导航到通知，或\",\n                \"to view context relevant shortcuts.\": \"查看与上下文相关的快捷键。\",\n                \"Learn more about character key shortcuts\": \"了解更多关于字符快捷键的信息\",\n                \"Save keyboard shortcut preferences\": \"保存键盘快捷键首选项\",\n\n            // 顶部提醒\n                \"Keyboard shortcut preference successfully saved.\": \"键盘快捷键首选项已成功保存。\",\n\n            \"Command palette\": \"命令面板\",\n                \"Modify the shortcuts to trigger the Command Palette for the default search mode and the command mode\": \"修改快捷键以触发默认搜索模式和命令模式的命令面板\",\n                \"Search mode\": \"搜索模式\",\n                    \"control + k or control + alt + k (default)\": \"control + k 或 control + alt + k (默认)\",\n                    \"Disabled\": \"禁用\",\n                \"Command mode\": \"命令模式\",\n                    \"control + shift + k (default)\": \"control + shift + k (默认)\",\n                \"Save command palette preferences\": \"保存命令面板首选项\",\n\n            \"Motion\": \"动态\",\n                \"Autoplay animated images\": \"自动播放动态图片\",\n                    \"Select whether animated images should play automatically.\": \"选择是否需要自动播放动态图片。\",\n                \"Sync with system\": \"与系统同步\",\n                    \"Adopts your system preference for reduced motion\": \"采用您的系统偏好以减少运动\",\n                \"Enabled\": \"启用\",\n                    \"Automatically plays animated images\": \"自动播放动态图片\",\n                // 禁用\n                    \"Prevents animated images from playing automatically\": \"防止自动播放动态图片\",\n                \"Save motion preferences\": \"保存动态首选项\",\n\n            // 顶部提醒\n                \"Motion preferences successfully saved.\": \"动态首选项已成功保存。\",\n\n            \"Content\": \"内容\",\n                \"Link underlines\": \"链接下划线\",\n                    \"Toggle the visibility of underlines on links that are adjacent to text.\": \"切换文本相邻链接上下划线的可见性。\",\n                \"Hide link underlines\": \"隐藏链接下划线\",\n                \"Show link underlines\": \"显示链接下划线\",\n                \"Save content preferences\": \"保存内容首选项\",\n\n            // 顶部提醒\n                \"Link underline preferences successfully saved.\": \"链接下划线首选项已成功保存。\",\n\n            \"Hovercards\": \"悬浮卡\",\n                \"preview information about other parts of GitHub.\": \"预览 GitHub 其他部分的信息。\",\n                \"Show hovercards\": \"显示悬浮卡\",\n                    \"Enable previewing link content via mouse hover or keyboard focus before navigation. Move focus to hovercard content using\": \"在导航之前，可通过鼠标悬停或键盘聚焦预览链接内容。使用以下方法将焦点移至悬停卡片内容\",\n                \"Save hovercard preferences\": \"保存悬浮卡偏好设置\",\n            // 顶部提醒\n                \"Hovercard preferences successfully saved.\": \"悬浮卡首选项已成功保存。\",\n\n            \"Editor settings\": \"编辑器设置\",\n                \"URL paste behavior\": \"URL 粘贴行为\",\n                \"Select if URLs should be formatted on paste. You can use\": \"选择是否应在粘贴时格式化 URL。您可以使用\",\n                \"to paste a link in the opposite way.\": \"以相反的方式粘贴链接。\",\n                \"Formatted link\": \"格式化链接\",\n                    \"Pasting a URL while having text selected will format to a Markdown link\": \"在选择了文本的情况下，粘贴 URL 将格式化为 Markdown 链接\",\n                \"Plain text\": \"纯文本\",\n                    \"Pasting a URL while having text selected will replace the text\": \"在选择了文本的情况下，粘贴 URL 将替换文本\",\n                \"Save editor settings\": \"保存编辑器设置\",\n            // 顶部提醒\n                    \"Paste behavior preferences successfully saved.\": \"粘贴行为首选项已成功保存。\",\n\n            \"Assistive technology hints\": \"辅助技术提示\",\n                \"Add or remove instructions for how to operate complex controls.\": \"添加或删除如何操作复杂控件的说明。\",\n                // 悬浮卡\n                    \"Enable screen reader hint\": \"启用屏幕阅读器提示\",\n                    \"Disable screen reader hint\": \"禁用屏幕阅读器提示\",\n                \"Save assistive technology hint preferences\": \"保存辅助技术提示首选项\",\n            // 顶部提醒\n                \"Hovercard assistive technology hint preferences successfully saved.\": \"悬浮卡辅助技术提示首选项已成功保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Accessibility\": \"无障碍\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/notifications\"] = { // 设置 - 通知\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Notification center 通知 https://github.com/settings/notifications\n            \"Default notifications email\": \"默认邮件通知设置\",\n                \"Choose where you'd like emails to be sent. You can add more email addresses. Use custom routes to specify different email addresses to be used for individual organizations.\": \"请选择希望接收通知邮件的邮箱。您可以添加多个邮箱地址。可借助自定义路由为不同的组织指定不同的邮箱地址。\",\n                \"Custom routing\": \"自定义路由\",\n\n            \"Automatically watch repositories\": \"自动关注仓库\",\n                \"When you're given push access to a repository, automatically receive notifications for it.\": \"当您给一个仓库推送权限时，自动接收相关通知。\",\n            \"Automatically watch teams\": \"自动关注团队\",\n                \"Anytime you join a new team, you will automatically be subscribed to updates and receive notification when that team is @mentioned.\": \"当您加入新团队时，您将自动订阅更新，并在该团队 @提及 时收到通知。\",\n\n                \"On\": \"开启\",\n                \"Off\": \"关闭\",\n\n            \"Subscriptions\": \"订阅\",\n                \"Watching\": \"关注仓库\",\n                    \"Notifications for all repositories, teams, or conversations you're watching.\": \"所有您正在关注的仓库、团队或对话所发出的通知。\",\n                    \"View watched repositories\": \"查看正在关注的仓库\",\n                    \"Notify me:\": \"提醒我：\",\n                    \"Select notification channels\": \"选择通知渠道\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、电子邮件、CLI 上\",\n                    \"on GitHub, CLI\": \"在 GitHub、CLI 上\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、电子邮件、CLI 上\",\n                    \"on GitHub, Email\": \"在 GitHub、电子邮件 上\",\n                    \"On GitHub\": \"在 GitHub 上\",\n                    \"on GitHub\": \"在 GitHub 上\",\n                \"Don't notify\": \"取消通知\",\n\n                \"Participating, @mentions and custom\": \"参与、@提及和自定义\",\n                    \"Notifications for the conversations you are participating in, or if someone cites you with an @mention. Also for all activity when subscribed to specific events.\": \"您参与的对话、或有人 @您、以及您订阅的特定事件所发出的通知。\",\n\n                \"Customize email updates\": \"自定义电子邮件更新\",\n                    \"Choose which additional events you'll receive emails for when participating or watching.\": \"选择参与或关注时，您将收到哪些额外活动的电子邮件。\",\n                    \"Select events\": \"选择事件\",\n                    \"Reviews\": \"审查\",\n                    \"Reviews, Pushes\": \"审查、推送\",\n                    \"Reviews, Pushes, Comments\": \"审查、推送、评论\",\n                    \"Reviews, Pushes, Comments, My own updates\": \"审查、推送、评论、自我更新\",\n                    \"Pull Request reviews\": \"拉取请求审核\",\n                    \"Pull Request pushes\": \"拉取请求推送\",\n                    \"Comments on Issues and Pull Requests\": \"关于议题和拉取请求的评论\",\n                    \"Includes your own updates\": \"包括您自己的更新\",\n                \"Ignored repositories\": \"忽略的仓库\",\n                \"You'll never be notified.\": \"您将永远不会收到通知。\",\n                \"View ignored repositories\": \"查看忽略的仓库\",\n\n            \"System\": \"系统\",\n                \"Actions\": \"操作\",\n                    \"Notifications for workflow runs on repositories set up with\": \"仓库的工作流程通知，设置在\",\n                    \". (\": \"。（\",\n                    \"Failed workflows only\": \"仅工作流程失败时\",\n                    \"Only notify for failed workflows\": \"只对失败的工作流程进行通知\",\n\n            \"Dependabot alerts: New vulnerabilities\": \"Dependabot 警报：新漏洞\",\n                \"When you're given access to\": \"当您获得\",\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                \"automatically receive notifications when a new vulnerability is found in one of your dependencies.\": \" 访问权限时，当您的某个依赖项中发现新的漏洞时，就会自动收到通知。\",\n\n            \"Dependabot alerts: Email digest\": \"Dependabot 警报：电子邮件摘要\",\n                \"Email a regular summary of Dependabot alerts for up to 10 of your repositories.\": \"通过电子邮件发送最多 10 个仓库库的 Dependabot 警报定期摘要。\",\n                \"Don't send\": \"不发送\",\n                \"Send weekly\": \"每周发送\",\n                \"Send daily\": \"每日发送\",\n\n            \"Security campaign emails\": \"安全活动电子邮件\",\n                \"Receive email notifications about security campaigns in repositories where you have access to security alerts.\": \"接收有关您有权访问安全警报的仓库中的安全活动的电子邮件通知。\",\n\n            \"\\'Deploy key\\' alert email\": \"“部署密钥” 警报电子邮件\",\n                \"When you are given admin permissions to an organization, automatically receive notifications when a new deploy key is added.\": \"当您获得组织的管理员权限时，会在添加新部署密钥时自动接收通知。\",\n\n            \"In-product messages\": \"产品消息\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"从 GitHub 获取有关我们认为您可能感兴趣的产品、服务和活动的提示、解决方案和独家优惠。\",\n\n        // 通知 自定义路由 https://github.com/settings/notifications/custom_routing\n                \"/ Custom Routing\": \"/ 自定义路由\",\n                    \"You can send notifications to different\": \"您可借助自定义路由为不同的组织指定不同的邮箱地址\",\n                    \"verified\": \"（经验证的邮箱）\",\n                    \"email addresses depending on the organization that owns the repository.\": \"。\",\n                    \"is your current default email for notifications.\": \"是您目前默认的通知邮箱。\",\n\n                    \"No custom routes yet.\": \"尚无自定义路由\",\n                    \"Add new route\": \"添加新路由\",\n                        \"Pick organization\": \"挑选组织\",\n                            \"Select an item\": \"选择一项\",\n                        \"Search organizations\": \"搜索组织\",\n                        \"Select Email\": \"选择邮箱\",\n                        \"Saved\": \"已保存\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notification settings\": \"通知设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/billing\"] = { // 设置 - 账单和计划\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        // 概况 https://github.com/settings/billing\n            // 顶部提示\n                \"Successfully updated billing information.\": \"成功更新支付信息。\",\n\n                \"For more information on using these billing pages\": \"有关使用这些账单页面的更多信息，\",\n                    \"please refer to the docs content here\": \"请参阅此处的文档内容\",\n\n            // 概况\n                \"Current metered usage\": \"当前计费用量\",\n                    \"Gross metered usage for\": \" \",\n                    \"Showing gross metered usage for your account.\": \"显示您账户的总计费用量。\",\n                    \"Showing gross metered usage for your organization.\": \"显示您组织的总计费用量。\", // 组织\n\n                \"Current included usage\": \"当前包含用量\",\n                    \"More details\": \"详情\",\n                    \"Included usage discounts for\": \" \",\n                    \"Showing currently applied discounts for your account.\": \"显示您账户当前应用的折扣。\",\n                    \"Showing currently applied discounts for your organization.\": \"显示您组织当前应用的折扣。\", // 组织\n                    \"* As per current pricing\": \"* 根据当前定价方案\",\n                    \"Download your Copilot premium request usage report\": \"下载您的 Copilot 高级请求使用报告：\",\n                        \"here\": \"下载\",\n\n                // 当前包含用量详情\n                    \"Included usage and credits\": \"包含用量和额度\",\n                        \"Showing currently applied usage and credits for your account.\": \"显示您账户当前的使用情况和额度。\", // 后续走正则\n\n                        \"Included usage*\": \"包含用量*\",\n                            \"Included premium requests\": \"包含高级请求\",\n                            \"Free usage**\": \"免费使用**\",\n                                \"100% off per month\": \"100%减免/每月\",\n\n                        \"* Included usage is an approximate amount based on current pricing.\": \"* 所包含的用量是基于当前定价的预估值。\",\n                        \"** GitHub Packages usage is free for public packages. For details on free Actions usage, see\": \"** GitHub 软件包对公共包的使用是免费的。有关 GitHub Actions 免费使用的详细信息，请参阅\",\n                        \"Free use of GitHub Actions\": \"Github Actions 的免费使用\",\n\n            \"Next payment due\": \"下一次应付款\",\n\n            \"Subscriptions\": \"订阅\",\n                \"Manage subscriptions\": \"管理订阅\",\n                \"per\": \"/\",\n                \"month\": \"月\",\n\n            \"Metered usage\": \"计费用量\",\n                \"Usage by products\": \"按产品分类\", // 省略重复内容\n                // 时间段，这部分走正则\n                    \"Today\": \"今天\",\n                    \"Current month\": \"这个月\",\n                    \"Last month\": \"上个月\",\n                    // 后 2 项正则\n\n                    \"Billable usage\": \"计费\",\n                        // 操作\n                        \"consumed usage\": \"使用\",\n                        \"discounts\": \"减免\",\n\n                        \"Billable spend for Actions and Actions Runners for the selected timeframe. Applicable discounts cover Actions usage in public repositories and included usage for Actions minutes and storage.\": \"在所选时间范围内，Actions 和 Actions 运行器的可计费支出。适用的折扣涵盖公共仓库中的 Actions 使用，以及包含的 Actions 分钟数和存储用量。\",\n                        \"Billable spend for Codespaces for the selected timeframe.\": \"所选时间范围内代码空间的可计费支出。\",\n                        \"Billable spend for Git LFS for the selected timeframe. Applicable discounts cover included usage for Git LFS bandwidth and storage.\": \"所选时间范围内 Git LFS 的可计费支出。适用的折扣涵盖 Git LFS 带宽和存储的包含用量。\",\n                        \"Billable spend for Packages for the selected timeframe. Applicable discounts cover Packages usage in public repositories and included usage for Packages data transfer and storage.\": \"所选时间范围内软件包的可计费支出。适用的折扣涵盖公共仓库中的软件包使用，以及包含的软件包数据传输和存储用量。\",\n                    \"Included usage\": \"包含\",\n                        \"Manage budgets\": \"管理预算\",\n                        \"Actions minutes\": \"操作分钟数\",\n                        \"Git LFS bandwidth\": \"Git LFS 带宽\",\n                        \"Git LFS storage\": \"Git LFS 存储\",\n                        \"Packages data transfer\": \"软件包数据传输\",\n                        \"Packages storage\": \"软件包存储\",\n                        \"Included usage limits reset in\": \"将重置于\",\n                        \"days\": \"天内\",\n                        \"day\": \"天内\",\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"DateTime\": \"日期时间\",\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n                \"All usage\": \"全部\",\n                    // 某单位\n                    \"Gross:\": \"总计：\",\n                    \"Billed:\": \"计费：\",\n                    \"Discount:\": \"优惠：\",\n                \"Usage by repository\": \"按仓库统计\",\n                    \"Top three repositories today\": \"今日排名前三的仓库\",\n                    \"Top two repositories this month\": \"本月排名前二的仓库\",\n                    \"Top three repositories this month\": \"本月排名前三的仓库\",\n                    \"Top four repositories last month\": \"上月排名前四的仓库\",\n                    \"Top four repositories this year\": \"今年排名前四的仓库\",\n                    \"Top four repositories this month\": \"上年排名前四的仓库\",\n\n                    \"View all\": \"查看所有\",\n                    \"usage\": \"用量\",\n                    \"Gross amount\": \"总计\",\n                    \"All other repositories\": \"其他\",\n\n                \"No usage found\": \"无数据\",\n\n                // 底下计算部分\n                    \"View details\": \"详情\",\n                    \"consumed usage -\": \"计费 -\",\n                    \"in discounts =\": \"折扣 =\",\n                    \"in billable usage\": \"计费\",\n                    \"Usage for Actions and Actions Runners.\": \"操作（运行器）用量。\", // 后半句走正则\n                    \"Copilot usage\": \"Copilot 用量\",\n                        \"Total spend on Copilot for the selected timeframe, excluding applicable discounts.\": \"所选时间段内 Copilot 的总支出，不含适用折扣。\",\n                    \"Billable licenses\": \"计费许可数\",\n                        \"Billable licenses info\": \"计费许可信息\",\n                            \"If a user stops consuming a license within the month, the adjustment will be reflected in your next month's bill.\": \"如果用户在当月停止使用许可，相关调整将体现在您下个月的账单中。\",\n                            \"Billable licenses are only available for the 'Current month' timeframe.\": \"计费许可仅适用于“当前月”时间段。\",\n                            \"Learn more about billable licenses\": \"了解更多关于可计费许可证的信息\",\n                        \"Showing total unique licenses billed for your enterprise. Actual billed amount for each license is prorated based on when it is added during the billing cycle.\": \"显示您企业所计费的唯一许可证总数。每个许可证的实际计费金额将根据其在计费周期内添加的时间按比例分摊。\",\n                    \"Copilot premium requests\": \"Copilot 高级请求\",\n                        \"About Copilot premium requests\": \"关于 Copilot 高级请求\",\n                        \"If enabled, additional premium requests beyond the included amount for each license will be billed.\": \"若启用此功能，每个许可证所包含额度之外的额外高级请求将另行计费。\",\n                        \"Manage Copilot policy\": \"管理 Copilot 策略\",\n                    // 模型\n                        \"About GitHub Models rate limits\": \"关于 GitHub 模型速率限制\",\n                            \"GitHub Models rate limits\": \"GitHub 模型速率限制\",\n                                \"The playground and free API usage are rate limited by requests per minute, requests per day, tokens per request, and concurrent requests.\": \"操场和免费 API 的使用受到以下限制：每分钟请求数、每天请求数、每次请求的令牌数以及并发请求数。\",\n                                \"Learn more about GitHub Models rate limits\": \"了解更多\", // 有上下文，故省略\n\n                    // Spark\n                        \"Spark premium requests\": \"Spark 高级请求\",\n\n            // 代码空间超限\n            \"You've used 90% of included services for GitHub Codespaces storage.\": \"您已使用 90% 代码空间存储。\",\n            \"You've used 100% of included services for GitHub Codespaces storage.\": \"您已使用 100% 代码空间存储。\",\n                \"When your allotment is exhausted, you won't be able to use Codespaces until you set up a spending limit or your free Codespaces allotment is reset next month. If you want to access your in progress work from a codespace, you can\": \"当您的额度耗尽后，您将无法使用代码空间，直到您设置支出上限或下月重置您的免费额度。如果您想访问代码空间中正在进行的工作，您可以\",\n                \"export your unpushed work to a branch.\": \"将未推送的工作导出到分支。\",\n                \"To see a full list of your usage, obtain a copy of your\": \"要查看所有使用情况，请获取您的\",\n                \"usage report\": \"使用报告\",\n                \"to see the codespaces and prebuilds created by your account. The usage report is the only place where prebuild usage is visible. If you see charges you'd like to stop going forward, you can delete a\": \"，以查看您的账户创建的代码空间和预构建。使用报告是唯一能显示预构建使用情况的地方。如果您看到希望以后停止的费用，您可以删除一个\",\n                \"codespace\": \"代码空间\",\n                \"delete prebuilds for a repository.\": \"删除某个仓库的预构建。\",\n            \"Update spending limit\": \"更新支出限额\",\n\n        // 使用情况 https://github.com/settings/billing/usage\n            \"Get usage report\": \"获取使用情况报告\",\n                \"Metered billing usage report\": \"计费用量\",\n                    \"Provides a breakdown of all metered usage\": \"提供所有计量使用情况的详细分解\",\n                    // 窗口\n                    \"Select report type:\": \"选择报告类型：\", // 下方小字走正则\n                        \"Summarized\": \"总结\",\n                            \"Metered usage by repository for up to 1 year\": \"每个仓库的计量使用情况，最长可追溯至一年\",\n                        \"Detailed\": \"详细\",\n                            \"Metered usage by username and workflow for up to 31 days\": \"每个用户和工作流的计量使用情况，最长可追溯至 31 天\",\n                        \"Legacy\": \"传统\",\n                            \"Metered usage before the billing transition, until April 04, 2025\": \"计费切换前的计量使用情况，截至2025年4月4日\",\n                    \"Select time frame\": \"选择时间段\",\n                        \"This year\": \"今年\",\n                        \"Custom range\": \"自定义\",\n                            \"Up to 1 year\": \"最长 1 年\",\n                            \"Up to 31 days\": \"最长 31 天\",\n                            \"Choose date...\": \"选择日期…\",\n                                \"Su\": \"日\",\n                                \"Mo\": \"一\",\n                                \"Tu\": \"二\",\n                                \"We\": \"三\",\n                                \"Th\": \"四\",\n                                \"Fr\": \"五\",\n                                \"Sa\": \"六\",\n                    \"Email me the report\": \"发送\",\n                \"Copilot premium requests usage report\": \"Copilot 高级请求\",\n                    \"Provides a per user breakdown of requests exhausted and their monthly quota for the current billing period.\": \"提供每个用户的请求耗尽情况及其当前计费周期的月度配额。\",\n            \"Search or filter usage\": \"搜索或筛选使用情况\",\n\n            //\"Group: None\": \"分组：无\",\n            //\"Group: Product\": \"分组：产品\",\n            //\"Group: SKU\": \"分组：库存单位\",\n            //\"Group: Repository\": \"分组：仓库\",\n                \"None\": \"无\",\n                // \"SKU\": \"库存单位\",\n            \"Metered usage grouped by Product\": \"分组：产品\",\n                \"actions\": \"操作\",\n                \"codespaces\": \"代码空间\",\n\n                \"Products\": \"产品\",\n            \"Metered usage grouped by SKU\": \"分组：库存单位\",\n                \"Actions storage\": \"操作存储\",\n                \"Codespaces storage\": \"代码空间存储\",\n                \"Actions Windows\": \"操作 Windows\",\n                \"Actions Linux\": \"操作 Linux\",\n                \"Actions macOS 3-core\": \"操作 macOS 三核\",\n                \"Codespaces compute 2-core\": \"代码空间 - 双核\",\n                \"Copilot Premium Request\": \"Copilot 高级请求\",\n            \"Metered usage grouped by Repository\": \"分组：仓库\",\n                \"All other\": \"其他\",\n\n            \"For license-based products, the price/unit is a prorated portion of the monthly price.\": \"对于基于许可证的产品，每单位价格为月度价格按比例分摊的部分。\",\n\n            // 有上下文，后面重复部分直接省略\n            \"Actions usage\": \"操作\",\n            \"Actions usage grouped by SKU\": \"操作 - 详细\",\n            \"Copilot usage\": \"Copilot\",\n            \"Copilot usage grouped by SKU\": \"Copilot - 详细\",\n            \"Codespaces usage\": \"代码空间\",\n            \"Codespaces usage grouped by SKU\": \"代码空间 - 详细\",\n            \"Git_lfs usage\": \"Git LFS\",\n            \"Git_lfs usage grouped by SKU\": \"Git LFS - 详细\",\n            \"Packages usage\": \"软件包\",\n            \"Packages usage grouped by SKU\": \"软件包 - 详细\",\n\n            \"Usage breakdown\": \"用量分析\",\n                \"Date\": \"日期\",\n                \"SKUs\": \"库存单位\",\n                \"Products\": \"产品\",\n                \"Repositories\": \"仓库\",\n                \"Units\": \"单位\",\n                \"Price/unit\": \"单价\",\n                \"Billed amount\": \"计费\",\n\n        // 高级请求分析 https://github.com/settings/billing/premium_requests_usage\n            \"Usage analytics for premium requests in your personal account.\": \"在您的个人账户中针对高级请求的使用分析。\",\n\n            \"Billed premium requests\": \"计费高级请求\",\n                \"Increase your budget\": \"提高您的预算\",\n                    \"to use premium requests beyond your included request limit.\": \"以便在超出包含请求额度后继续使用。\",\n\n            \"Included premium requests consumed\": \"包含高级请求\",\n                \"included\": \" \", // 多余原文，直接删除\n                \"Premium requests included in your\": \"高级请求包含在您的\",\n                    \"Copilot plan\": \"Copilot 计划中\",\n                    // 后续走正则\n\n            // 用量分析\n                \"Model\": \"模型\",\n                    \"Included requests\": \"包含请求\",\n                    \"Billed requests\": \"计费请求\",\n                    \"Code Review model\": \"代码审查模型\",\n                    \"Coding Agent model\": \"编程智能体模型\",\n\n            // 获取使用情况报告\n                \"Premium requests usage report\": \"高级请求使用报告\",\n                    \"Detailed per-user breakdown of premium requests consumed.\": \"详细列出每位用户消耗的高级请求数量。\",\n                \"Legacy usage report\": \"旧版使用报告\",\n\n        // 预算和警报 https://github.com/settings/billing/budgets\n           \"Account budgets\": \"账户预算\",\n                \"New budget\": \"新建\",\n                // \"On\": \"开\",\n                // \"Off\": \"关\",\n                \"Stop usage\": \"停止使用\",\n                \"Yes\": \"是\",\n                \"spent\": \"支出\",\n                \"budget\": \"预算\",\n            \"Budgets let you set monthly usage limits for specific GitHub products or SKUs. If no budget is set, usage for that product is unlimited.\":\"预算允许您为特定的 GitHub 产品或 SKU 设置每月使用限制。如果未设置预算，该产品的使用量将不受限制。\",\n            \"Product\":\"产品类型\",\n\n        // 新建/更新预算 https://github.com/settings/billing/budgets/new\n        // https://github.com/settings/billing/budgets/<id>/edit\n            // 提醒栏\n                \"Info\": \"信息\",\n                \"SKU level budgets are only available for products that have > 1 SKU.\": \"只有拥有大于 1个 SKU 的产品才有 SKU 级别的预算。\",\n\n            \"Budgets and Alerts\": \"预算和警报\",\n            \"New monthly budget\": \"新建月度预算\",\n            \"Edit monthly budget\": \"编辑每月预算\", // edit\n                \"Create a budget to track spending for a selected product and scope.\": \"创建预算以跟踪选定产品和范围的支出。\",\n            // 缺失支付方式\n                \"Payment method is missing\":\"支付方式缺失\",\n                \"Please set up a valid payment method before creating or adjusting your budget.\": \"请在创建或调整预算前设置有效的付款方式。\",\n                \"Add payment method\":\"添加支付方式\",\n\n            \"Budget type\": \"预算类型\",\n                \"Set budget for either a product or individual SKU within a product.\": \"为产品或产品中的单个 SKU 设置预算。\",\n                \"Product-level budget\": \"产品级预算\",\n                    \"Codespaces\": \"代码空间\",\n                    \"Actions\": \"操作\",\n                    \"Models\": \"模型\",\n                        \"Enable billing to set a budget. See\": \"启用计费以设置预算。查看\",\n                        \"Models policy configuration\": \"模型策略配置\",\n                    \"Packages\": \"软件包\",\n                    \"Select 1 product\": \"选择产品\",\n                \"SKU-level budget\": \"SKU 级预算\",\n                    \"Select\": \"选择\",\n                    \"Select an item\": \"选择项目\",\n\n            \"Next: Configure budget\": \"下一步：配置预算\",\n\n            \"All Premium Request SKUs\":\"所有高级请求 SKU\",\n            \"A budget for all SKUs that consume premium requests\":\"所有消耗高级请求的 SKU 的预算\",\n            \"Supported SKUs:\":\"支持的 SKUs：\",\n                \"Coding Agent premium requests\":\"Coding Agent 高级请求\",\n\n            \"Budget scope\": \"预算范围\",\n                \"Select the scope of spending for this budget.\": \"选择此预算的支出范围。\",\n                // 仓库\n                    \"Scoped budgets track spending for a single repository\": \"范围预算跟踪单个仓库的支出\",\n\n                        \"Select repository\": \"选择仓库\",\n                        \"Select the\": \"选择\",\n                        \"to include in this\": \"包含在此\",\n                        \". You can only add/remove the\": \"您只能添加/删除您可以访问的\",\n                        \"that you have access to.\": \"。\",\n                        \"Search repository\": \"搜索仓库\",\n                        \"Showing\": \"显示\",\n                        \"of\": \"/\",\n                        // [/(\\d+) selected/, \"$1 个选定\"],\n                // 账户\n                    \"Scoped budgets track spending for all repositories owned by your account\": \"范围预算跟踪您账户下所有仓库的支出\",\n                    \"Scoped budgets track all spending for your account\": \"范围预算跟踪您账户的所有支出\",\n\n            \"Budget\": \"预算\",\n                \"Set a budget amount to track your spending on a monthly basis.\": \"设置预算金额以按月跟踪您的支出。\",\n                \"Usage before budget creation isn't counted in the current billing cycle.\": \"预算创建前的使用情况不会计入当前计费周期。\",\n                \"Budget amount\": \"预算金额\",\n                    \"Stop usage when budget limit is reached\": \"达到预算上限时停止使用\",\n                        \"Spending won't exceed your set budget\": \"支出不会超出您设定的预算\",\n\n            // 警示\n                \"Get emails and GitHub notifications when your spending has reached 75%, 90%, and 100% of the budget threshold.\": \"当您的支出达到预算阈值的 75%、90% 和 100% 时，接收电子邮件和 GitHub 通知。\",\n                \"Receive emails when usage reaches 75%, 90%, and 100% of the budget amount.\":\"当您的支出达到预算阈值的 75%、90% 和 100% 时，接收电子邮件通知。\",\n\n                \"Receive budget threshold alerts\": \"接收预算阈值警报\",\n\n            \"Create budget\": \"创建预算\",\n            \"Update budget\": \"更新预算\", // edit\n\n            // 左下角提示\n                \"Please add a payment method to use budgets.\": \"请添加付款方式，以便使用预算。\",\n\n        // 许可 https://github.com/settings/billing/licensing\n            // Github Copllot\n                \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                    \"You are eligible to use GitHub Copilot for free.\": \"您有资格免费使用 GitHub Copilot。\",\n\n            \"Current plan\": \"当前计划\",\n                \"Compare all plans\": \"比较所有计划\",\n                    \"per month\": \"每月\",\n\n                \"GitHub Free\": \"GitHub 免费版\",\n                \"The basics for all developers\": \"基础计划（所有开发者）\",\n                //\"GitHub Pro\": \"GitHub 专业\",\n\n                \"The basics for organizations and developers\": \"组织和开发者的基本计划\", // 组织设置\n                \"Unlimited public/private repos\": \"无限的公共/私有仓库\",\n                \"Unlimited collaborators\": \"无限协作者\",\n                \"2,000 Actions minutes/month\": \"每月 2,000 分钟 GitHub Actions\",\n                \"500MB of Packages storage\": \"500MB 的 GitHub Packages 存储空间\",\n                \"120 core-hours of Codespaces compute per developer\": \"每位开发者拥有 120 个核心小时的代码空间计算能力\",\n                \"15GB of Codespaces storage per developer\": \"每位开发者拥有 15GB 的代码空间存储空间\",\n                \"Community support\": \"社区支持\",\n                // pro\n                    \"Downgrade to Free\": \"降级至免费版\",\n                \"3,000 Actions minutes/month\": \"每月 3,000 分钟 GitHub Actions\",\n                \"2GB of Packages storage\": \"2GB 的 GitHub Packages 存储空间\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小时的代码空间计算时长\",\n                \"20GB of Codespaces storage\": \"20GB 的代码空间存储空间\",\n                \"Code owners, required reviewers, GitHub Pages,\": \"代码所有者、所需审核者、GitHub Pages，\",\n                \"and more\": \"以及更多\",\n                \"advanced tools\": \"高级工具\",\n\n                \"Not included:\": \"不包含：\",\n                \"Free Codespaces usage per organization\": \"每个组织的免费代码空间使用量\",\n                \"Protected branches on all repos\": \"所有仓库上的受保护分支\",\n                \"Increase Codespaces\": \"提高代码空间\",\n                \"spend limits\": \"消费限额\",\n                \"Multiple reviewers in pull requests\": \"拉取请求中多个审查者\",\n                \"Required status checks\": \"状态检查\",\n                \"Code owners\": \"代码所有者\",\n                \"Required reviewers\": \"所需的审查者\",\n                \"Pages for static website hosting\": \"静态网站页面托管\",\n                \"Web-based support\": \"基于网络的支持\",\n                \"See all features and compare plans\": \"查看所有功能并比较计划\",\n\n            \"Active subscription\": \"当前订阅\",\n                \"Copilot Free\": \"Copilot 免费版\",\n                    \"Upgrade Copilot\": \"升级 Copilot\",\n                    \"You can upgrade to Copilot Pro at any time. Check out this\": \"您可以随时升级至 Copilot 专业版。详情查看\",\n                        \"documentation\": \"文档\",\n                        \"for more details.\": \"。\",\n\n            \"Current GitHub base plan\": \"当前 GitHub 基础计划\",\n                \"Compare base plans\": \"比较基础计划\",\n                \"Upgrade to GitHub Pro\": \"升级至 GitHub 专业版\",\n                // 有付费计划\n                    \"Switch to yearly billing\": \"切换至年度计费\",\n                    \"Switch to monthly billing\": \"切换至月度计费\",\n\n            \"Current Copilot plan\": \"当前 Copilot 计划\",\n                \"Monthly payment\": \"每月支付\",\n                \"Next payment\": \"下次支付\",\n                \"You can upgrade your subscription to yearly billing or cancel any time.\" : \"您可以随时将订阅升级为年度计费或取消订阅。\",\n                \"Read billing documentation\": \"阅读计费文档\",\n\n            \"Compare Copilot plans\": \"比较 Copilot 计划\",\n            \"Upgrade to Copilot Pro+\" : \"升级至 Copilot Pro+\",\n            \"Manage subscription\": \"管理订阅\",\n            \"Switch to annual billing\": \"切换至年度计费\",\n            \"Cancel subscription\": \"取消订阅\",\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Last payment\": \"最后一次支付\",\n                \"You have not made any payments.\": \"您尚未支付任何款项。\",\n\n            \"Coupon\": \"优惠劵\",\n                \"Redeem a coupon\": \"兑换优惠券\",\n                \"You don't have an active coupon.\": \"您没有有效的优惠券。\",\n                \"* Discount only applies for GitHub Pro\": \"* 优惠仅限 GitHub Pro。\",\n\n            \"Additional information\": \"附加信息\",\n                \"Add specific contact or tax information to your receipts, like your full business name, VAT/GST identification number, or address of record here. We’ll make sure it shows up on every receipt.\": \"在您的收据上添加具体的联系方式或税务信息，例如您的企业全称、VAT/GST 识别号码或记录地址。我们将确保它显示在每张收据上。\",\n                \"Add information\": \"添加信息\",\n                \"No additional information added to your receipts.\": \"您的收据上没有添加任何额外的信息。\",\n                \"Extra information\": \"附加信息\",\n\n                // “额外账单信息” 对话框\n                    \"Extra billing information\": \"额外的账单信息\",\n                    \"This information will appear on all your receipts.\": \"此信息将出现在您的所有收据上。\",\n                    \"For your security, do not include any confidential or financial information (like credit card numbers).\": \"为了您的安全，请勿包含任何机密或财务信息（如信用卡号）。\",\n                    \"To update the information that appears on\": \"要更新显示在\",\n                        \"invoices\": \"发票\",\n                        \"(if enabled), visit the\": \"上的信息（如果已启用），请访问\",\n                    \"Full business name or address of record\": \"企业全称或记录地址\",\n                    \"Save contact information\": \"保存联系信息\",\n                    \"Saving contact information…\": \"正在保存联系信息…\",\n                    // 顶部提醒\n                        \"Updated your optional contact information, it will show up on your next receipt.\": \"已更新您的可选联系信息，该信息将显示在您的下一张收据上。\",\n\n            // 组织\n            \"Invoice\": \"发票\",\n                \"Receive an invoice for your GitHub purchases\": \"接收 GitHub 购物发票\",\n\n                \"The data from Billing Information, such as your address and VAT/GST ID will appear on your invoices.\": \"账单信息中的数据，如您的地址和增值税/消费税 ID，将显示在您的发票上。\",\n                \"Update your information displayed on your invoices in the\": \"更新发票上显示信息中的\",\n                \"billing information section\": \"账单信息栏\",\n\n                \"Automatically receive an invoice alongside the payment receipt\": \"在收到付款收据的同时自动接收发票\",\n                    \"* Enables invoices for all NEW payments.\": \"* 为所有新付款启用发票。\",\n                \"Save invoice preference\": \"保存发票首选项\",\n\n            // 组织\n            \"Metered billing via Azure\": \"通过 Azure 计量计费\",\n                \"Add Azure Subscription\": \"添加 Azure 订阅\",\n                \"To manage metered billing for this account through Microsoft Azure an Azure Subscription ID must be added to your account.\": \"通过 Microsoft Azure 管理此账户的计量计费，必须将 Azure 订阅 ID 添加到您的账户中。\",\n\n        // 支付历史 https://github.com/account/billing/history\n            \"Amounts shown in USD\": \"以美元显示的金额\",\n\n        // 其他账单 https://github.com/settings/billing/subscriptions\n            // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除个人账户外，您还可以管理 $1 个组织。\"],\n            \"Manage your organizations\": \"管理您的组织\",\n                \"Create a new organization\": \"创建新组织\",\n\n            \"Start your first organization\": \"开始您的第一个组织\",\n                \"With CI/CD, Dependabot, and the world's largest developer community, GitHub gives your team everything they need to ship better software faster\": \"通过 CI/CD、Dependabot 以及全球最大的开发者社区，GitHub 为您的团队提供了交付更优质软件所需的一切，让开发更高效、更快捷。\",\n                \"Create an organization\": \"创建组织\",\n\n            \"Marketplace apps\": \"市场应用\",\n                \"Change plan\": \"更改计划\",\n                \"Cancel plan\": \"取消计划\",\n                    \"Are you sure you want to cancel this integration?\": \"您确定要取消此集成吗？\",\n                    // 顶部提醒\n                        // [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消对 $1 的订阅。此计划变更将于 $2 生效。\"],\n                        \"Dismiss\": \"忽略\",\n                \"Do you have any questions? Contact\": \"您有任何问题吗？请联系\",\n\n            // 组织设置\n            \"Billing Contacts\": \"账单联系人\",\n                \"Receipts are sent to billing managers and email recipients.\": \"收据会被发送给账单管理员和邮件接收者。\",\n\n                \"Billing managers\": \"账单管理员\",\n                    \"You have not invited any billing managers\": \"您尚未邀请任何账单管理员\",\n                    \"Invite\": \"邀请\",\n\n                \"Email recipients\": \"邮件接收者\",\n                    \"Add\": \"添加\",\n                    \"Primary\": \"主账户\",\n\n                    // 编辑账单电子邮箱对话框\n                        \"Edit billing email address\": \"编辑账单电子邮箱\",\n                        \"Billing primary email\": \"账单主账户邮箱\",\n                        \"(Private)\": \"（私密）\",\n\n                    // 添加账单接收者对话框\n                        \"Add billing recipient\": \"添加账单接收者\",\n                        \"Add billing recipient email\": \"添加账单接收者邮箱\",\n\n            \"Sponsorships\": \"赞助\",\n                \"GitHub Sponsors\": \"GitHub 赞助\",\n                    \"Connect with the community that builds the tools you use\": \"与构建您使用的工具的社区联系\",\n                    \"Start sponsoring\": \"开始赞助\",\n                    \"You're currently not sponsoring anyone.\": \"您目前没有赞助任何人。\",\n                    \"Learn more about GitHub Sponsors\": \"了解更多关于 GitHub 赞助的信息\",\n                    \"Switch to invoiced billing\": \"切换到发票账单\", // 组织\n\n        // 比较计划 https://github.com/account/billing/plans\n            \"Compare plans\": \"比较计划\",\n            \"Free\": \"免费版\",\n                \"All the basics\": \"所有基础\",\n            \"Pro\": \"专业版\",\n                \"Advanced tools for private repos\": \"用于私人仓库的高级工具\",\n            // 具体内容\n                \"Code management\": \"代码管理\",\n                    \"Public repositories\": \"公共仓库\",\n                        \"Host open source projects in public GitHub repositories, accessible via web or command line. Public repositories are accessible to anyone at GitHub.com.\": \"在 GitHub 公共仓库中托管开源项目，可通过网络或命令行访问。任何人都可以访问 GitHub.com 上的公共仓库。\",\n                    \"Private repositories\": \"私有仓库\",\n                        \"Host code in private GitHub repositories, accessible via appliance, web, and command line. Private repositories are only accessible to you and people you share them with.\": \"在私有 GitHub 仓库中托管代码，可通过设备、网络和命令行访问。只有您和与您共享的人才能访问私有仓库。\",\n\n                \"Code workflow\": \"代码工作流\",\n                    \"GitHub Codespaces\": \"GitHub 代码空间\",\n                        \"Spin up fully configured dev environments in the cloud with the power of your favorite editor. A \\\"core hour\\\" denotes compute usage. On a 2-core machine, you would get 60 hours free. On a 4-core machine, you would get 30 hours free, etc. Free hours are assigned to personal accounts, rather than free organizations.\": \"利用您喜爱的编辑器的强大功能，在云中快速配置完整的开发环境。“核心小时” 表示计算使用量。在双核机器上，您将获得 60 小时的免费时长。在 4 核机器上，您将获得 30 小时的免费时长，以此类推。免费时长数分配给个人账户，而不是免费组织。\",\n                    \"GitHub Actions\": \"Github 操作\",\n                        \"Use execution minutes with GitHub Actions to automate your software development workflows. Write tasks and combine them to build, test, and deploy any code project on GitHub. Minutes are free for public repositories.\": \"利用 GitHub Actions 的几分钟执行时间，实现软件开发工作流程自动化。编写任务并组合它们，即可在 GitHub 上构建、测试和部署任何代码项目。对于公共仓库，执行时间是免费的。\",\n                        \"Learn more about billing\": \"了解更多关于账单的信息\",\n                    \"GitHub Packages\": \"Github 软件包\",\n                        \"Host your own software packages or use them as dependencies in other projects. Both private and public hosting available. Packages are free for public repositories.\": \"托管您的软件包，或将其用作其他项目的依赖项。提供私有和公共托管。对于公共仓库，软件包是免费的。\",\n                    \"Code reviews\": \"代码审查\",\n                        \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"审查新代码，查看可视化的代码更改，并通过自动化状态检查自行地合并代码更改。\",\n                    // 拉取请求\n                        \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允许贡献者轻松通知您他们推送到仓库的更改，访问权限仅限于您指定的贡献者。轻松合并您接受的更改。\",\n                    \"Protected branches\": \"受保护的分支\",\n                    \"Repository rules\":\"仓库规则\",\n                        \"Enforce restrictions on how code branches are merged, including requiring reviews by selected collaborators, or allowing only specific contributors to work on a particular branch.\": \"对代码分支的合并方式实施限制，包括要求由选定的协作者进行审查，或仅允许特定的贡献者在特定分支上工作。\",\n                    // 代码所有者\n                        \"Automatically request reviews – or require approval – by selected contributors when changes are made to sections of code that they own.\": \"当选定的贡献者对其拥有的代码部分进行修改时，自动要求审查或要求批准。\",\n                    \"Draft pull requests\": \"拉取请求草案\",\n                        \"Easily discuss and collaborate on pull requests before submitting to formal review.\": \"在提交正式审查之前，轻松讨论和协作拉取请求。\",\n                    \"Multiple pull request assignees\": \"多个拉取请求受理人\",\n                        \"Assign more than one person to a pull request.\": \"为拉取请求指派多人受理。\",\n                    \"Repository insights\": \"仓库洞察\",\n                        \"See data about activity and contributions within your repositories, including trends. You can use this data to improve collaboration and make development faster and more effective.\": \"查看有关仓库中的活动和贡献数据，包括趋势。您可以利用这些数据来改善协作，使开发更加迅速和有效。\",\n                    // 定时提醒\n                        \"Send scheduled messages to you or your team listing open pull requests.\": \"按计划的向您或您的团队发送信息，列出打开的拉取请求。\",\n                    \"Automatic code review assignment\": \"自动代码审查分配\",\n                        \"Automatically assign code reviews to members of your team based on one of two algorithms.\": \"根据两种算法之一，自动为团队成员分配代码审查。\",\n                    \"Environment protection rules\": \"环境保护规则\",\n                        \"When a workflow job references an environment, the job won't start until all of the environment's protection rules pass.\": \"当工作流作业引用环境时，只有环境的所有保护规则都通过后，作业才会启动。\",\n                    \"Environment deployment branches and secrets\": \"环境部署分支和机密\",\n                        \"A job cannot access secrets that are defined in an environment unless it is running on the specified branch.\": \"除非作业在指定的分支上运行，否则无法访问环境中定义的机密。\",\n\n                \"Collaboration\": \"协作\",\n                    \"Collaborators for public repositories\": \"公共仓库协作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a public repository you control – including making changes and opening issues.\": \"邀请任何 GitHub 成员或所有 GitHub 成员，在您控制的公共仓库上与您共同处理代码，包括进行更改和提出议题。\",\n                    \"Collaborators for private repositories\": \"私有仓库协作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a private repository you control – including making changes and opening issues.\": \"邀请任何 GitHub 成员或所有 GitHub 成员，在您控制的私有仓库上与您共同处理代码，包括进行更改和提出议题。\",\n                    // 议题\n                        \"Track bugs, enhancements, and other requests, prioritize work, and communicate with stakeholders as changes are proposed and merged.\": \"跟踪漏洞、增强功能和其他请求，确定工作的优先级，并在提出和合并变更时与利益相关者沟通。\",\n                    // 项目\n                        \"Visualize and manage issues and pull requests across tables, boards, and roadmaps with custom fields and views that you can arrange to suit your workflow.\": \"通过自定义字段和视图，在表格、面板和路线图上可视化管理议题和拉取请求，以适应您的工作流程。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Track progress on groups of issues or pull requests in a repository, and map groups to overall project goals.\": \"跟踪仓库中议题或拉取请求组的进展，并将组映射到整体项目目标。\",\n                    // 团队讨论\n                    \"Team discussions\": \"团队讨论\",\n                        \"Discuss any topic, unattached to a specific project or issue. Control who has access, notify discussion participants with updates, and link from anywhere.\": \"讨论任何主题，不与特定项目或议题相关。控制访问权限，通知讨论参与者最新情况，并从任何地方进行链接。\",\n                    \"Organization and team management\": \"组织和团队管理\",\n                        \"Manage access to projects on a team-by-team, or individual user, basis.\": \"以团队或个人用户为基础管理对项目的访问。\",\n                    \"Pages and wikis\": \"GitHub Pages 和 Wiki\",\n                        \"Host documentation and simple websites for your project in a wiki format that contributors can easily edit either on the web or command line.\": \"以 Wiki 格式为您的项目托管文档和简单网站，贡献者可以轻松在网络或命令行上进行编辑。\",\n                    \"Multiple issue assignees\": \"多个议题受理人\",\n                        \"Assign more than one person to an issue.\": \"为议题指派多人受理\",\n                    \"GitHub organizations give you team-based access control and discussions.\": \"GitHub 组织为您提供基于团队的访问控制和讨论。\",\n                        \"Learn more about organizations\": \"了解更多关于组织的信息\",\n\n                \"Platform security and compliance\": \"平台安全性与合规性\",\n                    \"Repository rulesets\": \"仓库规则集\",\n                        \"Enforce consistent code standards, security, and compliance across branches and tags.\": \"跨仓库分支和标签，一致的代码标准、安全性和合规性。\",\n                    // SBOMs\n                        \"Export a software bill of materials (SBOM) for your repository.\": \"为仓库导出软件物料清单 (SBOM)。\",\n                    \"Artifact attestations\": \"附件证明\",\n                        \"Ensure unfalsifiable provenance and integrity for your software.\": \"确保软件的不可篡改性和完整性。\",\n                    \"GitHub Security Advisories\": \"GitHub 安全公告\",\n                    \"Role-based access control\": \"基于角色的访问控制\",\n                        \"Define users' level of access to your code, data and settings.\": \"定义用户访问代码、数据和设置的级别。\",\n                    \"Required 2FA\": \"双因素身份验证（2FA）\",\n                        \"Use an extra layer of security with two factor authentication (2FA) when logging into GitHub.\": \"登录 GitHub 时，使用双因素身份验证（2FA）作为额外的安全层。\",\n                    // 审计日志\n                        \"Quickly review the actions performed by members of your organization.\": \"快速审查组织成员执行的操作。\",\n                    \"Enterprises can connect to advanced systems like LDAP and SAML single sign-on (SSO).\": \"企业可以连接到如 LDAP 和 SAML 单一登录 (SSO) 等高级系统。\",\n                        \"Learn more about GitHub Enterprise\": \"了解更多关于 GitHub 企业版的信息。\",\n\n                \"Marketplace and integrations\": \"市场和集成\",\n                    // Github应用\n                        \"Install apps that integrate directly with GitHub's API to improve development workflows – or build your own for private use or publication in the GitHub Marketplace.\": \"安装直接与 GitHub API 集成的应用，改进开发工作流程，或创建自己的应用，供个人使用或在 GitHub 市场发布。\",\n                    \"Status checks\": \"状态检查\",\n                        \"Define tests that GitHub automatically runs against code being committed to your repository, and get details about failures and what is causing them.\": \"定义 GitHub 针对提交到仓库的代码自动运行的测试，并获取有关失败和失败原因的详细信息。\",\n                    \"Enterprise Server customers create pre-receive hooks to automatically accept or reject a push.\": \"企业服务器客户创建预接收挂钩，以自动接受或拒绝推送。\",\n                        \"Learn more about pre-receive hooks\": \"了解更多关于预接收挂钩的信息。\",\n\n                \"Support and deployment\": \"支持与部署\",\n                    \"Community Support\": \"社区支持\",\n                        \"Get help with most of your GitHub questions and issues in our Community Forum.\": \"在我们的社区论坛中，获取大多数有关 GitHub 问题和议题的帮助。\",\n                    \"Standard Support\": \"标准支持\",\n                        \"GitHub Support can help you troubleshoot issues you run into while using GitHub. Get support via the web.\": \"GitHub 支持可帮助您解决使用 GitHub 时遇到的问题。通过网络获取支持。\",\n                    \"Enterprises also get Premium Support, invoice billing, and self-hosted deployment.\": \"企业还可以获得高级支持、发票计费和自托管部署。\",\n                       // \"Learn more about GitHub Enterprise\": \"了解更多关于 GitHub 企业版的信息。\",\n\n                // 表格中内容\n                    \"per user/month\": \"每人/月\",\n                    \"Upgrade to Pro\": \"升级到专业版\",\n                    \"Unlimited\": \"无限\",\n                    \"$0 spend limit\": \"$0 支出限额\",\n                        \"With policies and controls\": \"带策略及限制\",\n                    \"180 core-hours compute/month and 20GB storage\": \"每月 180 个核心小时计算和 20GB 存储\",\n                    \"2,000 minutes/month\": \"2000 分钟/月\",\n                        \"Free for public repositories\": \"免费用于公共仓库\",\n                    \"3,000 minutes/month\": \"3,000 分钟/月\",\n                    \"Public repositories\": \"公共仓库\",\n\n        // 组织设置 邀请账单管理员 '/organizations/<org-login>/billing_managers/new'\n            \"Billing\": \"账单\",\n            \"/ Add a billing manager\": \"/ 添加账单管理员\",\n            \"A\": \" \",\n            \"billing manager\": \"账单管理员\",\n            \"is a user who manages the billing settings of your organization.\": \"是管理您组织的账单设置的用户。\",\n            \"will\": \"会\",\n            \"will not\": \"不会\",\n            \"have the ability to:\": \"具备以下能力：\",\n                \"Change the billing plan\": \"更改账单计划\",\n                \"Add, update, or remove payment methods\": \"添加、更新或删除支付方式\",\n                \"View payment history\": \"查看支付记录\",\n                \"Download, and receive receipts\": \"下载并接收收据\",\n                \"View a list of billing managers\": \"查看账单管理员列表\",\n                \"Invite additional billing managers\": \"邀请其他账单管理员\",\n                \"Remove other existing billing managers\": \"移除其他现有的账单管理员\",\n                \"Start, modify, or cancel sponsorships\": \"开始、修改或取消赞助\",\n            \"be able to:\": \"能够：\",\n                \"Create or access repositories in your organization\": \"在您的组织中创建或访问仓库\",\n                \"See private members of your organization\": \"查看您组织的私人成员\",\n                \"Be seen in the list of organization members\": \"在组织成员列表中可见\",\n                \"Use the organization’s payment method\": \"使用组织的支付方式\",\n                \"Enable or manage Copilot\": \"启用或管理 GitHub Copilot\",\n                \"Purchase, edit, or cancel Marketplace subscriptions\": \"购买、编辑或取消市场订阅\",\n\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n            \"Send invitation\": \"发送邀请\",\n\n            // 加载\n            \"Loading Actions data...\": \"加载操作数据…\",\n            \"Loading Packages data...\": \"加载软件包数据…\",\n            \"Loading Shared Storage data...\": \"加载共享存储数据…\",\n            \"Loading Codespaces data...\": \"加载代码空间数据…\",\n            \"Loading usage breakdown…\": \"正在加载使用明细…\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // 高级请求分析（词条打架调整位置） https://github.com/settings/billing/premium_requests_usage\n        [/. Monthly limit resets in (\\d+) days? on (.+)./, \"。将在 $1 天后（$2）重置。\"],\n        [/Usage for (.+) - (.+). Price per premium request is \\$0.04./, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}用量。高级请求价格为 $0.04 / 个。`;\n        }],\n        [/Per-user breakdown of premium requests in the last 45 days. Sunsetting(.*)\\./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `过去 45 天内每用户高级请求明细。${translatedDate} 日落`;\n        }],\n\n        // billing 概况页面\n        [/(?:Gross metered usage|Included usage discounts) for (.+) - (.+).$/, (match, p1, p2) => { // 概况下方小字，过于啰嗦直接省略\n            //const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n            //const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}`;\n        }],\n        //[/Included usage discounts for (.+) - (.+)./, (match, p1, p2) => {\n        //    const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n        //    const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n        //    return `${translatedP1}-${translatedP2}`;\n        //}],\n        [/([\\d,]+) min used \\/ ([\\d,]+) min included/, \"$1 / $2 分钟\"],\n        //(\\d+) min used \\/ ([\\d,+]) min included\n        [/(\\d+) GB used \\/ (\\d+) GB included/, \"$1/$2 GB\"],\n        // 当前包含用量 - 详情 对话框\n            [/Current usage for (.+) - (.+). Monthly quota resets in (\\d+) day\\(s\\)./, (match, p1, p2, p3) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n                return `统计时间段：${translatedP1}-${translatedP2}。本月配额将在${p3}天内重置。`;\n            }],\n            [/([\\d,+]) included Actions minutes \\(~(\\$\\d+\\.\\d+) off\\*\\)/, \"$1 操作分钟数（~$2 减免*）\"],\n            [/~(\\$\\d+\\.\\d+) off\\*/, \"~$1 减免*\"],\n            [/~(\\$\\d+(\\.\\d+)?) off/, \"~$1 减免\"],\n\n            [/([\\d,+]) included Actions minutes/, \"$1 操作分钟数\"],\n            [/(\\d+) GB included Actions storage/, \"$1 GB 操作存储\"],\n            [/(\\d+) GB included Git LFS bandwidth/, \"$1 GB Git LFS 带宽\"],\n            [/(\\d+) GB included Git LFS storage/, \"$1 GB Git LFS 存储\"],\n            [/(\\d+) GB included Packages data transfer/, \"$1 GB 软件包数据传输\"],\n            [/(\\d+) GB included Packages storage/, \"$1 GB 软件包存储\"],\n            [/Discount for usage in public repositories \\((\\d+%) off\\)/, \"公共仓库使用折扣（$1 减免）\"],\n            [/(\\d+) GB included Codespaces storage/, \"$1 GB 代码空间存储\"],\n            [/(\\d+) included Codespaces core hours/, \"$1 代码空间核心小时数\"],\n            [/(\\d+) requests/, \"$1 请求\"],\n            [/Cost calculated based on (\\d+) Spark premium requests? that exceed the premium request usage included with your Copilot licenses./, \"根据您的 Copilot 许可证中包含的高级请求使用量，计算出 $1 个超出部分的 Spark 高级请求费用。\"],\n\n        // 计费用量 - 右上角时间选项\n            [/^Timeframe: (Today|Current month|Last month|This year \\((\\d+)\\)|Last year \\((\\d+)\\))$/, (match, p1, p2, p3) => {\n                switch (p1) {\n                  case 'Today':\n                    return '时间段：今天';\n                  case 'Current month':\n                    return '时间段：本月';\n                  case 'Last month':\n                    return '时间段：上个月';\n                  case `This year (${p2})`:\n                    return `时间段：今年（${p2}）`;\n                  case `Last year (${p3})`:\n                    return `时间段：去年（${p3}）`;\n                  default:\n                    return match;\n                }\n            }],\n            //Timeframe: Current month\n            [/This year \\((\\d+)\\)/, \"今年（$1）\"],\n            [/Last year \\((\\d+)\\)/, \"去年（$1）\"],\n        // 计费用量 - 今天 日期标题\n            [/(.+) \\(All times in UTC\\)/, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}（UTC时间）`;\n            }],\n        // 计费用量图表 数据卡\n            [/(Usage|codespaces|actions|Codespaces storage|Codespaces compute 2-core|Actions Windows|Actions macOS 3-core|Actions Linux|Actions storage|All other) (?:[^ ]+), (.+)/, (match, s1, p1) => {\n                //const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n                //const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n                var s1Key = {'Usage': '用量','actions': '操作', 'codespaces': '代码空间', 'Codespaces storage': '代码空间存储', 'Codespaces compute 2-core': '代码空间 - 双核','Actions Windows': '操作 Windows', 'Actions Linux': '操作 Linux','Actions macOS 3-core': '操作 macOS 三核','Actions storage': \"操作存储\",'All other': '其他'};\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}` + s1Key[s1];// 星期几暂时省略\n            }],\n        // 计费用量 - 今天 X轴\n            [/(\\d+)(AM|PM)/, (match, p1, p2) => {\n                // 运行规则：非12AM照搬，PM数字加12，12AM=0\n                let hour = parseInt(p1, 10);\n                if (p2 === \"PM\" && hour !== 12) {\n                    hour += 12;\n                } else if (p2 === \"AM\" && hour === 12) {\n                    hour = 0;\n                }\n                return `${hour}:00`;\n            }],\n\n        // 计费用量 - 按仓库统计\n            [/Top (three|four|five) repositories (today|this month|last month|this year|)/, function(all , num, time) {\n                var numKey = {\"three\": \"三\", \"four\": \"四\", \"five\": \"五\"}\n                var timeKey = {\"today\": \"今天\",\"this month\": \"这个月\",\"last month\": \"上个月\",\"this year\": \"今年\",\"last year\": \"去年\"};\n                return timeKey[time] + \"排名前\" + numKey[num] + \"的仓库\";\n            }],\n\n        // 计费用量 - 底下计算部分\n            [/Cost calculated based on additional (\\d+) premium requests?/, \"费用计算基于额外的 $1 高级请求\"],\n            [/Cost calculated based on additional (\\d+) premium requests for Copilot and Spark./, \"费用计算基于 Copilot 和 Spark 的 $1 项额外高级请求。\"],\n            [/Cost calculated based on additional (\\d+) token units/, \"费用根据额外的 $1 项令牌单位计算\"],\n\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro yearly plan./, \"计划变更成功。@$1 已更新为专业版年度计费。\"],\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro monthly plan./, \"计划变更成功。@$1 已更新为专业版月度计费。\"],\n        // [/We're preparing your report! We’ll send an email to ([^@]+@[^\\n]+) when it’s ready./, \"我们正在准备您的报告！完成后，我们将发送电子邮件至 $1。\"], //顶部提醒\n        // [/Included minutes quota resets? in (\\d+) days?./, \"包含的分钟配额将在 $1 天之内重置\"],\n        // [/Data transfer quota resets? in (\\d+) days?./, \"数据传输配额将在 $1 天之内重置\"],\n        // //[/Included minutes quota resets/, \"\"],\n        // [/Included quotas resets? in (\\d+) days?./, \"包含的配额将在 $1 天之内重置\"],\n        // [/Bandwidth quota resets? in (\\d+) days?./, \"带宽使用配额将在 $1 天之内重置\"],\n        // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除了您的个人账户之外，您还管理 $1 个组织。\"],\n        // [/Leaving it at (\\$\\d+\\.\\d{2}) will avoid any extra expenses/, \"将其限制在 $1 美元将避免任何额外的费用。\"],\n        // [/isn’t a GitHub member/, \"不是 GitHub 成员\"], // 组织设置\n        // [/of ([\\d,]+\\.\\d{2}) min included/, \"/ $1 分钟\"],\n        // [/(?:GB )?of ([^ ]+) GB(?: included)?/, \"/ $1 GB\"],\n        // //[/of ([^ ]+) GB( included)?/, \"/ $1 GB\"],\n        // [/of (\\d+\\.\\d{2}) included core hours used/, \"/ $1 核心小时数\"],\n        // [/of (\\d+\\.\\d{2}) included GB-month used/, \"/ $1 GB/每月\"],\n        // [/Last (\\d+) days/, \"最近 $1 天\"],\n        // [/Included minutes quota only applies to Ubuntu 2-core, Windows 2-core and macOS 3-core runners\\. Windows 2-core and macOS 3-core runners consume included minutes at higher rates\\. Your (\\d+\\.\\d+) included minutes used consists of (.*)/, \"包含的分钟配额仅适用于双核 Ubuntu、双核 Windows 和三核 macOS 运行器。双核 Windows 和三核 macOS 运行器以更高的速度消耗包括的分钟数。您已使用的 $1 分钟包含分钟数由 $2 组成。\"],\n        // [/(\\$\\d+\\.\\d{2})\\/month/, \"$1/月\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ month/, \"-$1/月\"],\n        // [/(\\$\\d+\\.\\d{2})\\/year/, \"$1/年\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ year/, \"-$1/年\"],\n        // [/(Due by|On|Expires) (.+)/, (match, opt, p1) => {\n        //     var optKey = {\"Due by\": \"结算\", \"On\": \"开始\", \"Expires\": \"到期\"};\n        //     const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n        //     const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n        //     return `${translatedDate}` + optKey[opt];\n        // }],\n\n        // 计费用量 https://github.com/settings/billing/usage + 高级请求分析 https://github.com/settings/billing/premium_requests_usage\n            [/^Group(?: by)?: (None|Product|SKU|Repository|Models)$/, function(all, group) {\n                var groupKey = {'None': '无','Product': '产品','SKU': 'SKU','Repository': '仓库', 'Models': '模型'};\n                return '分组：' + groupKey[group];\n            }],\n            [/Usage for (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}`; // 有标题作为上下文，直接省略，只剩日期\n            }],\n            [/(\\d+) min$/, \"$1 分\"],\n            [/([\\d,+]\\.\\d+|[\\d,+]) GB-hr/, \"$1 GB/时\"],\n            [/(\\d+\\.\\d+) hr/, \"$1 小时\"],\n\n        // 使用情况\n            [/We're preparing your usage report. It may take ~30 minutes to see usage in your report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我们正在准备您的使用报告。可能需要大约 30 分钟。报告准备好后，我们会发送电子邮件到 $1。\"],\n            [/We're preparing your usage report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我们正在准备您的使用报告。报告准备好后，我们会发送电子邮件到 $1。\"],\n            [/Your usage report request is already in progress. Check ([^@]+@[^\\n]+) for the report when it's ready./, \"您的使用报告请求正在处理。报告准备好后，请到 $1 查收。\"],\n            // 获取使用报告窗口\n            [/The usage report will be emailed when it's ready to ([^@]+@[^\\n]+)./, \"使用报告准备好后，将通过电子邮件发送到 $1。\"],\n              // 传统选项\n              //[/Metered usage before the billing transition, until (.+)/, (match, p1) => {\n              //  const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n              //  const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n              //  return `计费切换前的计量使用情况，截至${translatedDate}`;\n              //}],\n\n        // 账户预算 https://github.com/settings/billing/budgets\n            [/(\\d+) budgets?/, \"$1 预算\"],\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            [/(\\$\\d+\\.\\d{2}) off per month for (\\d+) years/, \"每月优惠 $1，为期 $2 年\"],\n            [/until (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `直到 ${translatedDate}。`;\n            }],\n\n        // 其他账单 https://github.com/settings/billing/subscriptions\n            [/In addition to your personal account, you manage (\\d+) organizations?./, \"除个人账户外，您还可以管理 $1 个组织。\"],\n            [/([^ ]+) support/, \"$1 支持\"],\n            [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消对 $1 的订阅。此计划变更将于 $2 生效。\"],\n\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Billing Overview\": \"账单概览\",\n            \"Billing Usage\": \"计费用量\",\n            \"Premium request analytics\": \"高级请求分析\",\n            \"Budgets\": \"预算\",\n            \"Billing\": \"账单\",\n            \"Payment Information\": \"支付信息\",\n            \"Payment history\": \"支付历史\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"account/billing/history\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/settings/billing\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing_managers/new\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing/history\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing/plans\"] = I18N[\"zh-CN\"][\"settings/billing\"];\n\nI18N[\"zh-CN\"][\"settings/education/benefits\"] = {  // 设置 - 账单和计划（新）- 教育福利\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        \"GitHub Education\": \"GitHub 教育\",\n\n        \"Free GitHub developer resources for students and teachers\": \"为学生和教师提供免费的 GitHub 开发者资源\",\n\n        \"Education Benefits\": \"教育福利\",\n            \"Complete a teacher or student application to unlock tools and resources for your educational journey.\": \"完成教师或学生申请，解锁教育旅程所需的工具和资源。\",\n            //\"You have a current student coupon applied.\": \"您当前已应用学生优惠券。\",\n            \"You have a current student coupon applied. Find more information on your benefits\": \"您当前已应用学生优惠券。详情查看\",\n                \"here\": \"这里\",\n            \"Start an application\": \"申请\",\n                \"You have not submitted an application for education benefits.\": \"没有申请\",\n\n                \"Education Benefits Application\": \"教育福利申请\",\n                    \"Select your role in education: *\": \"选择您的角色：*\",\n                        \"Teacher\": \"教师\",\n                        \"Student\": \"学生\",\n\n                        \"What is the name of your school? *\": \"学校名称 *\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page. A minimum of two characters is required to find your school.\": \"如果您的学校未在列表中，请输入完整的学校名称并继续。下一页将要求您提供有关学校的更多信息。查找学校至少需要输入两个字符。\",\n                            // 提醒设置学校邮箱\n                                \"We require applicants of\": \"我们要求申请者\",\n                                \"to use one of these school-issues email addresses to apply:\": \"使用以下学校发放的电子邮箱地址进行申请：\",\n                                \"add and verify your\": \"添加并验证您的\",\n                                \"school-issued email address\": \"学校发放的电子邮箱地址\",\n                                \"in your account settings -- or a contact email if you do not have one. Once your email is verified, you can try applying again.\": \"在您的账户设置中——若未设置邮箱，请填写联系邮箱。邮箱验证通过后，即可重新尝试申请。\",\n\n                        \"What is your school email address?\": \"教育邮箱地址\",\n                            \"Have a different email address you use with your school?\": \"您是否有其他在校使用的电子邮件地址？\",\n                            \"Add it here.\": \"添加\",\n\n                        \"You have verified the email address\": \"您已验证邮件\",\n                        \"on your GitHub account. This academic domain is associated with the school\": \"。该域名属于：\",\n                        \"Unselect this school\": \"取消选择此学校\",\n\n                        \"Share Location\": \"位置共享\",\n                        \"Location shared\": \"位置已共享\",\n                        \"Continue\": \"继续\",\n\n                        \"Please select the type of proof you would like to provide *\": \"请选择您希望提供的证明类型 *\",\n                        \"1. Dated school ID - Good\": \"1. 注明日期的学校证件 - 完整\",\n                        \"What is a valid proof of education?\": \"什么是有效的教育证明？\",\n                        \"Good\": \"完整\",\n                            \"proof requires infinite academic affiliation documentation most likely to help you be approved.\": \"的证明需要详尽的学术关系文件，以最大限度地帮助您通过审核。\",\n                        \"For\": \"部分\",\n                            \"proof types may lower your chances of being approved.\": \"证明类型可能会降低您的审核通过概率。\",\n                        \"Poor\": \"无效\",\n                            \"proof types are unlikely to be acceptable.\": \"的证明类型通常无法被接受。\",\n\n                        \"There was an error creating the discount request. Errors: Discount request could not be created. Discount request errors: School email must be verified on your GitHub account\": \"创建折扣请求时出错。错误信息：无法创建折扣请求。折扣请求错误：学校邮箱必须在您的 GitHub 账户中完成验证\",\n\n                \"Application Type:\": \"申请类型：\",\n\n            \"Approved\": \"批准\",\n                // 等待\n                    \"Coupon applied\": \"优惠券已应用\",\n                    \"Expires in almost 2 years\": \"有效期大约 2年\",\n                    \"Your academic status has been verified. Congratulations!\": \"您的学术状态已验证。恭喜！\",\n                    \"Your academic benefits, including Partner offers, will become available after 72 hours of your verification.\": \"您的学术福利，包括合作伙伴优惠，将在您资格审核通过后的 72 小时内生效。\",\n                    \"Once the benefits become available, you will be able to access the Students Developer Pack offers\": \"权益生效后，您将可以访问学生开发者礼包优惠在\",\n                    \"To redeem your Copilot Pro coupon, please sign up via this\": \"要兑换您的 Copilot Pro 优惠券，请访问此\",\n                    \"link\": \"链接\",\n                    \"We hope you enjoy your GitHub Education benefits.\": \"希望您享受 GitHub 教育权益。\",\n                // 结束\n                    \"Congratulations! Your application has been approved and the coupon code has been applied to your account.\": \"恭喜！您的申请已获批准，优惠码已成功应用到您的账户。\",\n                    \"Please visit the\": \"请访问\",\n                    \"Developer Pack\": \"开发者包\",\n                    \"page to view your benefits.\": \"页面查看您的权益。\",\n                \"Your benefits will expire on\": \"您的福利过期时间：\",\n            \"Loading details\": \"加载详情\",\n            \"Revoked\": \"撤销\",\n            \"Denied\": \"拒绝\",\n                \"Reason(s):\": \"拒绝原因：\",\n\n                    \"Please complete your\": \"请完善您的\",\n                    \"GitHub billing information\": \"GitHub 账单信息\",\n                    \"with your full name exactly as it appears in your academic affiliation document. You do not have to add a payment method. You may need to log out and log back in to GitHub before reapplying. If you have only a single legal name, enter it in both the first and last name fields.\": \"，并确保其中的姓名与您学籍证明文件中的姓名完全一致。您无需添加支付方式。您可能需要先登出 GitHub，然后重新登录后再申请。如果您只有一个法定姓名，请在名字和姓氏字段中填写相同的姓名。\",\n\n                    \"You are unlikely to be verified until you have completed your\": \"在您用学籍证明文件上的全名完善\",\n                    \"GitHub user profile\": \"GitHub 用户资料\",\n                    \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通过验证。请不要使用姓名的变体或昵称。更新资料信息后，请先登出 GitHub，然后重新登录后再申请。\",\n    },\n    \"regexp\": [\n        [/Submitted(?: about)? (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交于 ${translatedDate}`;\n        }],\n        [/Expires in almost (\\d+) years?/, \"有效期大约 $1 年\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/emails\"] = { // 设置 - 电子邮箱\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Emails 电子邮箱 https://github.com/settings/emails\n            // 黄框警告\n                \"You have a single verified email associated with your GitHub account. Add an additional verified email address in case you lose access to your primary email.\": \"您的 GitHub 账户只有一个经过验证的电子邮箱。添加另一个经过验证的电子邮箱地址吧，那样即使主电子邮箱无法使用也不要紧。\",\n            // 顶部提示信息\n                \"Emails you can use to sign in to your account. Verified emails can be used as the author or committer addresses for web-based Git operations, e.g. edits and merges.\":\"可用于登录账户的电子邮箱。经过验证的电子邮箱可以用作基于网页的 Git 操作（如编辑和合并）的作者或提交者地址。\",\n            // [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)/, \"可用于登录账户的电子邮箱。这些邮箱不会用作基于网页的 Git 操作（如编辑和合并）的 “发件人” 地址。所有基于网页的 Git 操作都将关联至 $1。\"],\n\n            \"Primary\": \"主账户\",\n                \"Backup\": \"备用\",\n                \"This email address is the default for GitHub notifications, such as replies to issues, pull requests, and similar activity.\": \"此电子邮箱地址是 GitHub 通知的默认地址，例如对议题、拉取请求和类似活动的回复。\",\n                // [/Manage email/, \"管理邮箱地址\"],\n                \"Manage email preferences\": \"管理电子邮件首选项\",\n                \"Resend verification email\": \"重新发送验证邮件\",\n                // 删除按钮 提醒信息\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account.\": \"您确定要从账户中移除此邮箱吗？移除后，该邮箱地址关联的提交记录将不再与您的账户关联。。\",\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account. One of your other emails will become your primary address.\": \"您确定要从账户中移除此邮箱吗？移除后，该邮箱地址关联的提交记录将不再与您的账户关联。您其他邮箱中的一个将自动成为主要地址。\",\n                    \"At least one email is required.\": \"至少需要一个电子邮箱。\",\n                    \"At least one verified email is required.\": \"至少需要一个已验证的电子邮箱。\",\n                    // 顶部提醒\n                        // [/Removed email ([^@]+@[^\\n]+) from your account./, \"已将邮箱 $1 从您的账户中移除。\"],\n\n            \"Add email address\": \"添加电子邮箱\",\n                \"Email address\": \"电子邮箱\",\n                    // 顶部提醒\n                        // [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我们已向 $1 发送了验证邮件，请登录邮箱已完成验证。\"],\n\n            \"Primary email address\": \"主电子邮箱\",\n                \"Select an email to be used for account-related notifications and can be used for password reset.\": \"选择用于帐户相关通知的电子邮件地址，并可用于密码重置。\",\n                // 顶部提醒\n                    \"Your primary email was changed to\": \"您的主电子邮箱已更改为\",\n                    \". Your default notification email address is still set to\": \"。您的默认通知电子邮箱仍然设置为\",\n                    \". Would you like to update that as well?\": \"。您也想更新它吗？\",\n                    \"Yes, update my notification email\": \"是的，更新我的通知电子邮箱\",\n\n            \"Backup email address\": \"备用电子邮箱\",\n                \"Your backup GitHub email address will be used as an additional destination for security-relevant account notifications and can also be used for password resets.\": \"您的备用 GitHub 电子邮箱将用作接收账户安全相关通知的额外方式，也可以用于密码重置。\",\n                    \"Allow all verified emails\": \"允许所有已验证的电子邮箱\",\n                        // 顶部提醒\n                            \"All verified emails can now be used for password resets.\": \"所有已验证的电子邮箱现在均可用于密码重置。\",\n                    \"Only allow primary email\": \"仅允许主电子邮箱\",\n                        // 顶部提醒\n                            \"Only your primary email address can now be used for password resets.\": \"现在只有您的主电子邮箱可用于密码重置。\",\n\n            \"Keep my email addresses private\": \"保持我的电子邮箱地址的私密性\",\n                \"We’ll remove your public profile email and use\": \"我们将删除您的公开个人资料中的电子邮箱，并使用\",\n                \"when performing web-based Git operations (e.g. edits and merges) and sending email on your behalf. If you want command line Git operations to use your private email you must\": \"执行基于 Web 的 Git 操作（例如：编辑和合并）并以您的名义发送电子邮件。如果您想在命令行 Git 操作中使用您的私人电子邮箱，您必须\",\n                \"set your email in Git\": \"在 Git 中设置您的电子邮箱\",\n                \"Previously authored commits associated with a public email will remain public.\": \"以前创建的与公共电子邮件相关的提交将保持公开状态。\",\n                \"Off\": \"禁用\",\n                \"On\": \"启用\",\n\n                // 顶部提醒\n                    \"Your primary email address is now public. To select which email to display on your profile, visit\": \"您的主电子邮箱地址现已公开。要选择在您的个人资料中显示哪个电子邮箱，请访问\",\n                    \"profile settings.\": \"个人资料设置。\",\n                    \"Your primary email address is now private. If you previously made your email public, we’ve removed it from your profile.\": \"您的主电子邮箱地址现已设为私密。如果您以前公开过您的电子邮箱，我们已经从您的个人资料中删除了它。\",\n\n            \"Block command line pushes that expose my email\": \"阻止在命令行推送中暴露我的电子邮箱\",\n                \"When you push to GitHub, we’ll check the most recent commit. If the author email on that commit is a private email on your GitHub account, we will block the push and warn you about exposing your private email.\": \"当您推送到 GitHub 时，我们会检查最近的提交。如果该提交的作者电子邮箱是您 GitHub 账户上的私人电子邮箱，我们会阻止推送并警告您不要暴露您的私人电子邮箱。\",\n                // 顶部提醒\n                    \"Commits pushed with a private email will no longer be blocked.\": \"使用私人电子邮箱推送的提交将不再被阻止。\",\n                    \"Commits pushed with a private email will now be blocked and you will see a warning.\": \"使用私人电子邮箱推送的提交将被阻止，您会看到一个警告。\",\n\n        // 订阅偏好 https://github.com/settings/emails/subscriptions\n            \"Subscription preferences for\": \"订阅首选项\",\n            \"⏳Please wait while we find your subscriptions...⌛\": \"⏳请稍候，我们正在查找您的订阅...⌛\",\n            \"No subscriptions found\": \"未找到订阅信息\",\n            \"Save subscription preferences\": \"保存订阅首选项\",\n            \"Back to email settings\": \"返回电子邮件设置\",\n            \"To stop receiving emails for the topics below, uncheck any topics you don't want to receive, then click Save subscription preferences\": \"要停止接收以下主题的电子邮件，请取消选中您不想接收的任何主题，然后单击保存订阅首选项\",\n            \"General info and offers from GitHub\": \"GitHub 上的一般信息和优惠\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"从 GitHub 获取有关我们认为您可能感兴趣的产品、服务和活动的提示、解决方案和独家优惠。\",\n            \"Unsubscribe from all topics\": \"取消订阅所有主题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)./, \"可用于登录账户的电子邮箱。该邮箱不会用作基于网页的 Git 操作（如编辑和合并）的 “发件人” 地址。所有基于网页的 Git 操作都将关联至 $1。\"],\n        [/Manage email/, \"管理邮箱地址\"],\n        [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我们已向 $1 发送了验证邮件，请登录邮箱已完成验证。\"],\n        [/Your primary email was changed to ([^@]+@[^\\n]+)\\./, \"您的主电子邮箱已更改为 $1\"],\n        [/Subscription preferences for ([^@]+@[^\\n]+)/, \"$1 的订阅偏好\"],\n        [/Removed email ([^@]+@[^\\n]+) from your account./, \"已将邮箱 $1 从您的账户中移除。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Email settings\": \"邮箱设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security\"] = { // 设置 - 密码和身份身份验证\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 密码和身份身份验证 - 账户安全 https://github.com/settings/security\n            \"Change password\": \"更改密码\",\n            \"Old password\": \"旧密码\",\n            \"New password\": \"新密码\",\n            \"Confirm new password\": \"确认新密码\",\n            \"Make sure it's\": \"请确保\",\n            \"at least 15 characters\": \"至少需要15个字符\",\n            \"OR\": \" 或者\",\n            \"at least 8 characters\": \"至少需要8个字符\",\n            \"including a number\": \"包括数字\",\n            \"and a lowercase letter\": \"和小写字母\",\n            \"Password is too short (minimum is 8 characters)\": \"密码太短（最少8个字符）\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, and is in a list of passwords commonly used on other websites\": \"密码太短（最少8个字符），至少需要1个小写字母，而且已在其他网站常用密码列表中\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密码太短（最少为8个字符），至少需要1个小写字母，而且不能包括您的登录名，以及在其他网站常用的密码列表中。\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 number, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密码太短（最少8个字符），需要至少1个数字，不能包含您的登录名，以及在其他网站常用的密码列表中\",\n            \"Password is too short (minimum is 8 characters) and is in a list of passwords commonly used on other websites\": \"密码太短（最少为8个字符），而且已在其他网站常用的密码列表中。\",\n            \"Password needs at least 1 lowercase letter and is in a list of passwords commonly used on other websites\": \"密码需要至少 1 个小写字母，而且已在其他网站常用的密码列表中\",\n            \"Password is in a list of passwords commonly used on other websites\": \"密码在其他网站常用的密码列表中\",\n            \"Update password\": \"更新密码\",\n            \"I forgot my password\": \"我忘记了我的密码\",\n\n            \"Strengthen your account by ensuring your password is strong.\": \"确保密码的安全性，以保护您的账户。\",\n            \"Learn more about creating a strong password\": \"了解更多关于创建强密码的信息\",\n\n            \"Passkeys\": \"通行密钥\",\n                \"Passwordless sign-in with passkeys\": \"使用通行密钥进行无密码登录\",\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method. Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。通行密钥可以作为一种简单且安全的替代方式用于登录，替代您的密码和双因素身份验证凭证。\",\n                \"This browser or device does not fully support passkeys - you may be able to use a passkey from another device.\": \"此浏览器或设备不完全支持通行密钥 - 您可以尝试使用来自其他设备的通行密钥。\",\n                \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此浏览器或设备不完全支持通行密钥 - 您可以尝试使用来自其他设备的通行密钥。\",\n                \"Add a passkey\": \"添加通行密钥\",\n\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。\",\n                \"Learn more about passkeys\": \"了解更多关于通行密钥的信息\",\n\n                \"Your passkeys\": \"您的通行密钥\",\n                \"Edit passkey nickname\": \"编辑通行密钥昵称\",\n                // [/Delete `([^ ]+)` passkey/, \"删除 “$1” 通行密钥\"],\n\n                // 删除密钥对话框\n                    \"Delete passkey?\": \"删除通行密钥？\",\n                    // [Are you sure you want to delete your `([^ ]+)` passkey?/, \"您确定要删除您的 “$1” 通行密钥吗？\"],\n                    \"You will no longer be able to use it to sign-in to your account.\": \"您将无法再使用它登录您的账户。\",\n                    \"Note: You may continue to see this passkey as an option during sign-in until you also delete it from your browser, device or associated account's password management settings.\": \"注意：您可能会在登录过程中继续看到此通行密钥作为一个选项，直到您将其从浏览器、设备或关联账户的密码管理设置中删除。\",\n                    \"Deleting…\": \"删除中…\",\n\n            // Google\n                \"1 account connected\": \"已连接 1 个帐户\",\n                \"Google sign in method dropdown\": \"Google 登录方法下拉菜单\",\n\n            // 双因素身份验证\n                // 顶部提醒\n                    \"You can now manage your two-factor authentication methods from this page.\": \"您现在可以从此页面管理您的双因素身份验证方法。\",\n                    \"Two-factor authentication successfully disabled.\": \"成功禁用双因素身份验证。\",\n                    \"SMS/Text message successfully configured.\": \"短信/文本信息配置成功。\",\n                    \"Authenticator app successfully reconfigured.\": \"验证器重配置成功。\",\n\n            \"Sign in methods\": \"登录方式\",\n                \"Email\": \"电子邮件\", // 下行内容走正则\n                    \"Manage\": \"管理\",\n                // 通行密钥\n                    \"Passwordless sign-in with biometrics or security keys\": \"使用生物识别或安全密钥进行无密码登录\",\n                    \"Add passkey\": \"添加通行密钥\",\n                    \"Seen from this browser\": \"在此浏览器中可见\",\n                    \"Synced\": \"已同步\",\n                // Google\n                    \"Sign in with your Google account\": \"使用 Google 账户登录\",\n                    \"Connect\": \"连接\",\n                // Apple\n                    \"Sign in with your Apple account\": \"使用 Apple 账户登录\",\n\n            \"Two-factor authentication\": \"双因素身份验证\",\n                \"Two-factor authentication is not enabled yet.\": \"尚未启用双因素身份验证。\",\n                \"Enable two-factor authentication\": \"启用双因素身份验证\",\n\n                \"Because of your contributions on GitHub, two-factor authentication is required for your account. Thank you for helping keep the ecosystem safe!\": \"基于您在 GitHub 上的贡献，您的账户需要双因素身份验证。感谢您帮助维护生态系统安全！\",\n                \"Because of your contributions on GitHub, two-factor authentication will be required for your account starting\": \"基于您在 GitHub 上的贡献，从\",\n                \". Thank you for helping keep the ecosystem safe!\": \" 开始，您的账户将需要双因素身份验证，感谢您帮助维护生态系统的安全！\",\n                \"Learn more about our two-factor authentication initiative\": \"了解更多关于我们的双因素身份验证的倡议\",\n\n                \"Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to sign in.\": \"双因素身份验证不仅仅要求密码登录，还为您的账户增加了一层额外的安全性。\",\n                \"Learn more about two-factor authentication\": \"了解更多关于双因素身份验证的信息\",\n\n\n                \"Enable\": \"启用\",\n                \"Enabled\": \"启用\",\n                    \"Two-factor authentication is required for at least one organization or enterprise account you're affiliated with.\": \"至少有一个您所属的组织或企业账户需要进行双因素身份验证。\",\n                \"Disable\": \"停用\",\n\n            \"Preferred 2FA method\": \"首选 2FA 方法\",\n                \"Set your preferred method to use for two-factor authentication when signing into GitHub.\": \"设置登录 GitHub 时用于双因素身份验证的首选方法。\",\n                \"Passkeys should be used primarily for standalone, password-less authentication.\":\"通行密钥应主要用于独立的无密码身份验证。\",\n\n            \"Two-factor methods\": \"双因素身份验证方式\",\n                \"Configured\": \"已配置\",\n\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出现提示时，使用身份验证器应用或浏览器扩展获取双因素身份验证码。\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份验证应用或浏览器扩展生成一次性代码。\",\n\n                    \"Manage Authenticator app\": \"管理身份验证器应用\",\n\n                    \"Authenticator apps and browser extensions like\": \"身份验证器应用和浏览器扩展，例如\",\n                    \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密码，在登录过程中出现提示时用作第二验证因素来验证您的身份。\",\n\n                    \"Scan the QR code\": \"扫描二维码\",\n                    \"Re-scan the QR code\": \"重新扫描二维码\",\n                    \"Use an authenticator app or browser extension to scan.\": \"请使用身份验证器应用或浏览器扩展进行扫描。\",\n                    \"Learn more about enabling 2FA\": \"了解更多关于启用 2FA 的信息\",\n\n                    \"Unable to scan? You can use the\": \"无法扫描？您可以使用\",\n                    \"setup key\": \"设置密钥\",\n                    \"to manually configure your authenticator app.\": \"手动配置您的身份验证器应用。\",\n                        \"Your two-factor secret\": \"您的双因素密钥\",\n\n                    \"Verify the code from the app\": \"验证来自身份验证器应用的验证码\",\n                    \"Two-factor code verification failed. Please try again.\": \"双因素身份验证码验证失败。请重试。\",\n\n                \"SMS/Text message\": \"短信/文字信息\",\n                    \"Manage SMS/Text message\": \"管理短信/文字信息\",\n                    \"Less secure\": \"不安全\",\n\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests. We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. It is recommended to use an Authenticator app instead of SMS.\": \"通过短信向您的手机送达一次性验证码，以完成身份验证请求。我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，且送达率可能不可靠。建议使用身份验证器应用代替短信。\",\n\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登录 GitHub 时通过手机短信获取验证码。确保\",\n                    \"your country or region is supported\": \"支持您的国家/地区\",\n                    \"for SMS delivery.\": \"用于短信发送。\",\n\n                    \"Verify account\": \"验证账户\",\n                    \"Before setting up SMS, please verify that you're a human.\": \"在设置短信之前，请验证您是人类。\",\n\n                    \"Country or region code\": \"国家/地区代码\",\n                    \"Your phone number\": \"您的手机号码\",\n                    \"Send authentication code\": \"发送验证码\",\n\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已发送。短信可能需要一分钟时间才能送达。\",\n                    \"Verify the code sent to your phone\": \"验证发送到您手机的验证码\",\n\n                    // [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，而且送达率可能不可靠。相反，我们建议配置一个身份验证器应用，并禁用短信作为双因素身份验证。您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n\n                    // 顶部提醒\n                        \"SMS/Text message successfully disabled.\": \"短信/文字消息已成功禁用。\",\n\n                \"Security keys\": \"安全密钥\",\n                    \"Security keys are webauthn credentials that can only be used as a second factor of authentication.\": \"安全密钥是 WebAuthn 凭证，只能用作第二验证因素。\",\n                    \"Hide\": \"隐藏\",\n                    \"No security keys\": \"没有安全密钥\",\n\n                    \"Register new security key\": \"注册新安全密钥\",\n                    \"Enter a nickname for this security key\": \"输入安全密钥的昵称\",\n                    \"Waiting for input from browser interaction...\": \"等待来自浏览器交互的输入…\",\n                    \"Security key registration failed.\": \"安全密钥注册失败。\",\n                    \"Try again\": \"请重试\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通过安装 GitHub Mobile 应用并登录账户，可以使用 GitHub Mobile 来进行双因素身份验证。\",\n                    \"Manage GitHub Mobile\": \"管理 GitHub Mobile\",\n\n                    // [/(\\d+) devices?/, \"$1 设备\"], // 设置--> 密码和身份验证页\n                    \"Show\": \"显示\",\n\n            \"Recovery options\": \"恢复选项\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by viewing and downloading or printing them again.\": \"您的双因素身份验证恢复码在过去一年中未被下载或打印。请通过查看并再次下载或打印恢复码，确保您的恢复码是最新的。\",\n\n                \"Recovery codes\": \"恢复码\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                    \"Viewed\": \"已查看\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) devices?/, \"$1 个设备\"], // 设置--> 密码和身份验证页\n        [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，而且送达率可能不可靠。相反，我们建议配置一个身份验证器应用，并禁用短信作为双因素身份验证。您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n        [/Delete `([^ ]+)` passkey/, \"删除 “$1” 通行密钥\"],\n        [/Are you sure you want to delete your `([^ ]+)` passkey?/, \"您确定要删除您的 “$1” 通行密钥吗？\"],\n        [/(\\d+) verified emails? configured/, \"已配置 $1 个已验证的邮箱\"],\n        // 1 passkey configured\n        [/(\\d+) passkeys? configured/, \"已配置 $1 个通行密钥\"],\n        [/Added (.*) \\| Last used (.*)/, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const dateAdded = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const dateLastUsed = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `添加于 ${dateAdded} | 最后使用 ${dateLastUsed}`;\n        }]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account security\": \"账户安全\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/auth\"] = {\n    \"static\": { // 静态翻译\n\n        // 查看恢复码 https://github.com/settings/auth/recovery-codes\n            // 顶部提醒\n                \"New two-factor recovery codes successfully generated. Save them in a safe, durable location and discard your previous codes.\": \"已成功生成新的双因素身份验证恢复码。将它们保存在安全、耐用的位置，并丢弃以前的恢复码。\", // 生成新恢复码\n\n            \"Two-factor recovery codes\": \"双因素身份验证恢复码\",\n                \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by downloading or printing them again.\": \"您的双因素身份验证恢复码在过去一年中没有下载或打印过。请重新下载或打印恢复代码，确保您的恢复代码是最新的。\",\n\n            \"Recovery codes\": \"恢复码\",\n                \"Keep your recovery codes as safe as your password. We recommend saving them with a password manager such as\": \"保持您的恢复码与您的密码一样安全。我们建议使用密码管理器保存它们，例如\",\n                \"Keep your recovery codes in a safe spot.\": \"将您的恢复码保存在一个安全的地方。\",\n                \"These new codes have replaced your old codes. Save them in a safe spot.\": \"这些新恢复码已取代您的旧恢复。请将它们保存在安全的地方。\", // 生成新恢复码\n                \"These codes are the last resort for accessing your account in case you lose your password and second factors. If you cannot find these codes, you\": \"这些恢复码是在您丢失密码和第二验证因素的情况下访问您账户的最后手段。如果您找不到这些恢复码，您\",\n                \"will\": \"将\",\n                \"lose access to your account.\": \"无法访问您的账户。\",\n\n                \"Print\": \"打印\",\n\n            \"Generate new recovery codes\": \"生成新恢复码\",\n                \"When you generate new recovery codes, you must download or print the new codes.\": \"当您生成新恢复码时，您必须下载或打印新恢复码。\",\n                \"Your old codes won't work anymore.\": \"您的旧恢复码将失效。\",\n\n            \"Back to settings\": \"返回设置\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/sessions\"] = {\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 会话详情 https://github.com/settings/sessions\n            \"Web sessions\": \"网络会话\",\n            \"GitHub Mobile can be used to verify your identity when signing in from a new device and as a two-factor authentication method.\": \"GitHub Mobile 可用于从新设备登录时验证您的身份，并作为一种双因素身份验证方法。\",\n            \"Learn more about authentication with GitHub Mobile.\": \"了解更多关于 GitHub Mobile 身份验证的信息。\",\n            \"To get started, install GitHub Mobile for\": \"首先，安装 GitHub Mobile 适用于\",\n            \"and sign in to your account.\": \"并登录您的账户。\",\n\n            \"This is a list of devices that have logged into your account. Revoke any sessions that you do not recognize.\": \"这是已登录您账户的设备列表。 撤销任何您不认识的会话。\",\n            \"See more\": \"查看更多\",\n            \"Your current session\": \"您当前的会话\",\n            \"Last accessed on\": \"最后访问日期：\",\n            \"active\": \"激活\",\n            \"stale\": \"闲置\",\n\n            \"GitHub Mobile sessions\": \"GitHub Mobile 会话\",\n            \"This is a list of devices that have logged into your account via the GitHub Mobile app. Revoke any session that you do not recognize or you can\": \"这是已通过 GitHub Mobile 应用登录到您账户的设备列表。撤销任何您不认识的会话，或者您可以\",\n            \"revoke\": \"撤消\",\n            \"your GitHub Mobile app authorization to sign out of all your devices.\": \"您的 GitHub Mobile 应用授权，以登出您的所有设备。\",\n            \"Revoke\": \"撤消\",\n            \"Registered -\": \"注册于 -\",\n            \"Last accessed -\": \"最后访问 -\",\n            \"Last used for authentication -\": \"最后一次认证 -\",\n            \"Never used\": \"未使用\",\n\n        // 会话详情 https://github.com/settings/sessions/<id>\n            \"Session details\": \"会话详情\",\n            \"Revoke session\": \"撤销会话\",\n            \"Device:\": \"设备：\",\n            \"Last location:\": \"最后的位置：\",\n            \"Signed in:\": \"登录：\",\n            \"View all sessions\": \"查看所有会话\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Seen in/, \"登录于\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sessions\": \"会话\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/keys\"] = { // 设置 - SSH 与 GPG 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // SSH and GPG keys SSH 与 GPG 公钥 https://github.com/settings/keys\n            \"SSH keys\": \"SSH 密钥\",\n            \"New SSH key\": \"新建 SSH 密钥\",\n            \"Authentication keys\": \"认证密钥\",\n            \"Signing keys\": \"签名密钥\",\n            \"Signing\": \"签名\",\n            \"There are no SSH keys associated with your account.\": \"没有与您的账户关联的 SSH 密钥。\",\n            \"This is a list of SSH keys associated with your account. Remove any keys that you do not recognize.\": \"这是与您的账户相关的 SSH 密钥的列表。删除任何您无法识别的密钥。\",\n            \"Never used\": \"从未使用\",\n                \"— Read/write\": \"- 读写\",\n            \"Last used within the last week\": \"上周内最后一次使用\",\n            \"Check out our guide to\": \"请看我们的指南\",\n            \"connecting to GitHub using SSH keys\": \"使用 SSH 密钥连接到 GitHub\",\n            \"or troubleshoot\": \"或解决\",\n            \"common SSH problems\": \"常见的 SSH 问题\",\n\n            \"GPG keys\": \"GPG 密钥\",\n            \"New GPG key\": \"新建 GPG 密钥\",\n            \"There are no GPG keys associated with your account.\": \"没有与您的账户关联的 GPG 密钥。\",\n            \"This is a list of GPG keys associated with your account. Remove any keys that you do not recognize.\": \"这是与您的账户相关的 GPG 密钥的列表。删除任何您无法识别的密钥。\",\n\n            \"Email address:\": \"电子邮件地址：\",\n            \"Key ID:\": \"密钥 ID：\",\n            \"Subkeys:\": \"子密钥：\",\n            \"Added\": \"添加于\",\n\n            \"Learn how to\": \"了解如何\",\n            \"generate a GPG key and add it to your account\": \"生成 GPG 密钥并将其添加到您的账户\",\n\n            \"Vigilant mode\": \"警戒模式\",\n            \"Flag unsigned commits as unverified\": \"将未签名的提交标记为未验证\",\n            \"This will include any commit attributed to your account but not signed with your GPG or S/MIME key.\": \"这将包括任何归属于您的账户但没有用您的 GPG 或 S/MIME 密钥签名的提交。\",\n            \"Note that this will include your existing unsigned commits.\": \"请注意，这将包括您现有的未签名的提交。\",\n            \"Learn about vigilant mode\": \"了解警戒模式\",\n\n            // SSH 密钥删除 对话框\n            \"Are you sure you want to delete this SSH key?\": \"您确定要删除此 SSH 密钥吗？\",\n            \"This action\": \"该操作\",\n            \"CANNOT\": \"不能\",\n            \"be undone. This will permanently delete the SSH key and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 SSH 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"I understand, delete this SSH key\": \"我明白了，删除此 SSH 密钥\",\n\n            // GPG 密钥删除 对话框\n            \"Are you sure you want to delete this GPG key?\": \"您确定要删除此 GPG 密钥吗？\",\n            \"be undone. This will permanently delete the GPG key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 GPG 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"Any commits you signed with this key will become unverified after removing it.\": \"删除后，您使用此密钥签名的任何提交都将变成未验证。\",\n            \"Commits you signed with this key may become unverified after removing it.\": \"移除此密钥后，您使用它签署的提交可能会变为未验证状态。\",\n            \"Learn more about persistent commit signature verification.\": \"了解更多关于持久性提交签名验证的信息。\",\n            \"I understand, delete this GPG key\": \"我明白了，删除此 GPG 密钥\",\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功删除该密钥。\",\n            \"cannot\": \"不能\",\n\n            // 顶部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n            \"We got an error doing that.\": \"我们在这样做时出错了。\",\n            \"We got an error adding your GPG key. Please verify the input is a valid GPG key.\": \"添加您的 GPG 密钥时出错。请确认输入的是有效的 GPG 密钥。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You have successfully added the key \\'([^ ]+)\\'./, \"成功添加密钥 “$1”。\"],\n        [/Last used within the last (\\d+) weeks?/, \"$1 周内最后一次使用\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"SSH and GPG keys\": \"SSH 和 GPG 密钥\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/ssh\"] = { // 设置 - SSH 与 GPG 公钥 - 添加 SSH 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 添加 SSH 公钥 https://github.com/settings/ssh/new\n            \"Add new SSH Key\": \"添加新 SSH 密钥\",\n            \"Title\": \"标题\",\n            \"Key type\": \"密钥类型\",\n                \"Authentication Key\": \"认证密钥\",\n                \"Signing Key\": \"签名密钥\",\n            \"Key\": \"密钥\",\n            \"Add SSH key\": \"添加 SSH 密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/gpg\"] = { // 设置 - SSH 与 GPG 公钥 - 添加 GPG 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 添加 GPG 公钥 https://github.com/settings/gpg/new\n            \"Add new GPG key\": \"添加新 GPG 密钥\",\n            \"Title\": \"标题\",\n            \"Key\": \"密钥\",\n            \"Add GPG key\": \"添加 GPG 密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/organizations\"] = { // 设置 - 组织\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Organizations 组织 https://github.com/settings/organizations\n            \"You are not a member of any organizations.\": \"您暂无任何组织。\",\n\n            \"Owner\": \"所有者\",\n            \"Member\": \"成员\",\n            \"Compare plans\": \"比较计划\",\n            \"Leave\": \"离开\",\n            \"Leave organization\":\"离开组织\",\n\n            \"Transform account\": \"账户变更\",\n            \"You cannot transform this account into an organization until you leave all organizations that you’re a member of.\": \"在您离开您所属的所有组织之前，您无法将此账户转换为组织。\", // 存在所属组织时\n            \"You cannot transform this account into an organization because you have an active GitHub Sponsors account.\": \"由于您有一个活跃的 GitHub 赞助者账户，因此您无法将此账户转换为组织。\", // 存在赞助者账户时\n            \"Account Transformation Warning\": \"账户变更警告\",\n            \"What you are about to do is an irreversible and destructive process. Please be aware:\": \"这将是一个不可逆转的过程，请确认：\",\n            \"Any user-specific information (OAuth tokens, SSH keys, Job Profile, etc) will be erased\": \"任何用户特定的信息（OAuth 令牌, SSH 密钥, 职位简介, 等）将被删除。\",\n            \"You will no longer be able to create or modify gists owned by the converted personal account\": \"您将无法再创建或修改已转换的个人账户所拥有的代码片段\",\n            \"create a new personal account\": \"创建一个新的个人账户\",\n            \"The total amount of collaborators across private repositories will be the total amount of seats for the organization\": \"跨私人仓库的协作者总数将是该组织的席位总数\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Turn ([^ ]+) into an organization/, \"变更 $1 为组织\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您将无法再登录 $1（所有管理权限都将授予您选择的所有者）\"],\n        [/Any commits and comments credited to ([^ ]+) will no longer be linked to this GitHub account/, \"任何归功于 $1 的提交和评论将不再与此 GitHub 账户相关联\"],\n        [/Any GitHub Apps installed on ([^ ]+) will be uninstalled/, \"$1 上安装的任何 GitHub 应用程序都将被卸载\"],\n        [/If you are using ([^ ]+) as a personal account, you should/, \"如果您将 $1 用作个人账户，您应该在将 $1 转变为组织之前先\"],\n        [/before transforming ([^ ]+) into an organization./, \"。\"],\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的外部协作者\"], // 设置 - 组织\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的成员和协作者\"],\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories and teams./, \"您确定要离开 $1 吗？您将失去对所有仓库和团队的访问权。\"], // 设置 - 组织 离开按钮 提醒\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories./, \"您确定要离开 $1 吗？您将失去对所有仓库的访问权。\"], // 设置 - 组织 离开按钮 提醒\n        [/You left ([^ ]+)\\. It may take a few minutes to process\\./, \"您已离开 $1。可能需要几分钟处理。\"], //设置，离开组织后的提示\n    ],\n    \"title\": {\n        \"static\": {\n            \"Organizations\": \"组织\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/enterprises\"] = { // 设置 - 企业版\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 企业版 https://github.com/settings/enterprises\n        \"Enterprises\": \"企业版\",\n        \"You don't have any enterprises\": \"您还没有任何企业版\",\n        \"Designed for businesses or teams who collaborate on GitHub.com\": \"专为在 GitHub.com 上协作的企业或团队而设计\",\n\n        \"Start free for 30 days\": \"免费试用 30 天\",\n        \"Start a free trial\": \"开启免费体验\",\n        \"Learn more about enterprises\": \"了解更多关于企业版信息\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Enterprises\": \"企业版\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/blocked_users\"] = { // 设置 - 黑名单\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Blocked users 黑名单 https://github.com/settings/blocked_users\n            \"Block a user\": \"拉黑用户\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用户可以防止所有仓库中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打开或评论议题或拉取请求\",\n            \"starring, forking, or watching\": \"标星、复刻、关注\",\n            \"adding or editing wiki pages\": \"添加或编辑 Wiki 页面\",\n            \"Additionally, blocked users are not able to:\": \"此外，被拉黑用户无法：\",\n            \"invite you as a collaborator to their repositories\": \"邀请您作为其仓库的协作者\",\n            \"follow your account’s public activity\": \"关注您的账户的公共活动\",\n            \"send you notifications by @mentioning your username in public repositories\": \"在公共仓库中通过 @您 向您发送通知\",\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Learn more about blocking a user\": \"了解更多关于拉黑用户的信息\",\n            \"Block user\": \"拉黑用户\",\n            \"You have not blocked any users.\": \"您还没有拉黑任何用户。\",\n            \"Unblock\": \"取消拉黑\",\n            \"Warn me when a blocked user is a prior contributor to a repository\": \"请警告我，当被拉黑的用户是仓库的先前贡献者时\",\n            \"On repositories you haven’t contributed to yet, we’ll warn you when a user you’ve blocked has previously made contributions.\": \"在您还没有贡献的仓库里，当您拉黑的用户之前有贡献时，我们会警告您。\",\n            \"You can block a user to deny them access to repositories and more.\": \"您可以拉黑用户，以拒绝他们访问仓库和其他功能。\",\n            \"On repositories you haven't contributed to yet, we'll warn you when a user you've blocked has previously made contributions.\": \"在您还没有贡献的仓库里，当您拉黑的用户之前有贡献时，我们会警告您。\",\n            \"All blocked users\": \"所有被拉黑的用户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Blocked users\": \"黑名单\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/interaction_limits\"] = { // 设置 - 互动限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Interaction limits 互动限制 https://github.com/settings/interaction_limits\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n            \"Interaction limits may already exist in your account's\": \"互动限制可能已经存在于您的\",\n            \"public repositories\": \"公开仓库\",\n            \". Any changes here will override those limits.\": \" 的设置中。此处的全局设置将覆盖那些仓库的局部设置。\",\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with your repositories.\": \"最近创建账户的用户将无法与您的仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously committed to the default branch of one of your repositories will be unable to interact with that repository.\": \"以前从未提交到您某个仓库默认分支的用户将无法与该仓库互动。\",\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not collaborators of one of your repositories will not be able to interact with that repository.\": \"不是您某个仓库的协作者将无法与该仓库互动。\",\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n            // 顶部提醒\n            \"User interaction limit settings saved.\": \"用户交互限制设置已保存。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Enabled with (.+) remaining./, \"已启用，还剩 $1。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"临时互动限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/code_review_limits\"] = { // 设置 - 代码审查限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 顶部提示\n            \"Code review limit settings saved.\": \"代码审查限制设置已保存。\",\n\n        // Code review limits 代码审查限制 https://github.com/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in your public repositories.\": \"限制允许批准或请求更改公共仓库中拉取请求的用户。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"代码审查限制可能已经由各个仓库指定。此处的任何更改都将覆盖这些限制，直至取消设置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有仓库代码审查限制都是单独管理的。启用限制，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。删除限制，允许所有用户提交拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n            \"Code review limits are currently\": \"目前，所有仓库都\",\n            \"enabled\": \"启用\",\n            \"disabled\": \"禁用\",\n            \"for all repositories. Only users explicitly granted access to these repositories may submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews continue to be able to do so.\": \"代码审查限制。只有被明确授予访问这些仓库权限的用户才能提交 “批准” 或 “请求更改” 的拉取请求审查。所有能够提交评论拉取请求审查的用户仍可继续提交。\",\n            \"for all repositories. All users are able to submit pull request reviews, including those that \\\"approve\\\" or \\\"request changes\\\". Limit reviews to only permit users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\".\": \"代码审查限制。所有用户都可以提交拉取请求审查，包括那些 “批准” 或 “请求更改” 的审查。限制审查，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。\",\n            \"Unset\": \"撤销\",\n            \"Limit reviews on all repositories\": \"限制对所有仓库的审查\",\n            \"Remove review limits from all repositories\": \"取消对所有仓库的审查限制\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"代码审查限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/repositories\"] = { // 设置 - 仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Repository 仓库 https://github.com/settings/repositories\n            \"Repository default branch\": \"仓库默认分支\",\n            \"Choose the default branch for your new personal repositories. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"为您新的个人仓库选择默认的分支。由于工作流程的不同，或者由于您的集成仍然需要 “master” 作为默认分支名，您可能想改变默认名称。您可以随时改变个人仓库的默认分支名称。\",\n            \"Learn more about default branches.\": \"了解更多关于默认分支的信息。\",\n            \"Deleted repositories\": \"删除的仓库\",\n            \"Leave\": \"离开\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) collaborators?/, \"$1 位协作者\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repositorys\": \"仓库\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/deleted_repositories\"] = { // 设置 - 仓库 - 删除的仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 删除的仓库 https://github.com/settings/deleted_repositories\n            \"Deleted repositories\": \"删除的仓库\",\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"仓库可能需要一个小时的时间才能显示在这里。您只能恢复不是复刻或没有被复刻的仓库。\",\n            \"Learn more about restoring deleted repositories\": \"了解更多关于恢复已删除仓库的信息\",\n\n            \"These repositories were deleted, but can't be restored by you. Contact support if you want to restore them.\": \"这些仓库已被删除，但您无法恢复。如果您想恢复它们，请联系 GitHub 支持人员。\",\n\n            \"Deleted\": \"删除于\",\n            // [/by/, \"由\"], // 删除的仓库\n            \"Restore\": \"恢复\",\n            \"Queue…\": \"排队中…\",\n            \"Done!\": \"完成!\",\n\n            // 恢复仓库 对话框\n            // [/Are you sure you want to restore ([^ ]+)?/, \"您确定要恢复 $1 吗？\"],\n            \"This repository will be in a private state when it is restored. To change this state, go to settings once the repo is restored.\": \"此仓库在恢复时将处于私有状态。要更改此状态，请在仓库恢复后转到设置。\",\n            \"Any team or collaborator permissions that previously existed for this repository will not be restored. If you require specific team or collaborator permissions, you will need to configure them in settings.\": \"此仓库以前存在的任何团队或协作者的权限将不会被恢复。如果您需要特定的团队或协作者权限，则需要在设置中配置。\",\n            \"I understand, restore this repository\": \"我明白了，依然恢复该仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable repositories were found for ([^ ]+)\\./, \"没有找到 $1 的可恢复仓库。\"],\n        [/by/, \"由\"], // 删除的仓库\n        [/Are you sure you want to restore ([^ ]+)?/, \"您确定要恢复 $1 吗？\"], // 删除的仓库\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/codespaces\"] = { // 设置 - 代码空间\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 代码空间 https://github.com/settings/codespaces\n            \"Dotfiles\": \"点文件\",\n            \"Automatically install dotfiles\": \"自动安装点文件\",\n            \"Codespaces can automatically install your dotfiles into every codespace you create.\": \"代码空间可以自动将您点文件安装到您创建的每个代码空间。\",\n            \"Learn how to set up your dotfiles for Codespaces.\": \"了解如何为代码空间设置点文件。\",\n            \"Select repository\": \"选择仓库\",\n            \"Search for a repository\": \"搜索仓库\",\n            \"Changes saved\": \"更改已保存\",\n\n            \"Secrets\": \"机密\",\n            \"Codespace user secrets\": \"代码空间用户机密\",\n            \"New secret\": \"新建机密\",\n            \"Development environment secrets are environment variables that are encrypted. They are available to any codespace you create using repositories with access to that secret.\": \"开发环境机密是加密的环境变量。它们可用于您可访问该机密的仓库创建的任何代码空间。\",\n            \"There are no Codespace secrets.\": \"尚无代码空间机密\",\n            \"Secrets created at the user level can be shared with specified repositories.\": \"在用户级别创建的机密可以与指定的仓库共享。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n            \"Updated\": \"更新于\",\n            // [/Are you sure you want to delete ([^ ]+)\\?/, \"您确定要删除 $1 吗？\"],\n\n            \"GPG verification\": \"GPG 验证\",\n                \"Codespaces can have GPG commit signing capabilities so that GitHub can verify that commits made in the codespace come from a trusted source. When enabled, this setting will be applied to your list of trusted repositories.\": \"代码空间可以具有 GPG 提交签名功能，以便 GitHub 可以验证代码空间中的提交是来自受信任的来源。启用后，该设置将被应用到您的受信任仓库列表中。\",\n                // \"Enabled\": \"启用\",\n                    \"GPG signing will be available in Codespaces\": \"GPG 签名将在代码空间中可用\",\n\n            \"Settings Sync\": \"设置同步\",\n                \"By enabling, your codespaces will be able to pull from VS Code Settings Sync service and push only for the trusted repositories you specify. Only enable this for repositories that you trust.\": \"通过启用，您的代码空间将能够从 VS Code 设置同步服务中提取数据，并仅推送您指定的受信任仓库。请只对您信任的仓库启用此功能。\",\n                // \"Enabled\": \"启用\",\n                    \"VS Code Settings Sync will be available in Codespaces\": \"VS Code 设置同步将在代码空间中可用\",\n\n            // 通知\n            \"When enabled, you will receive emails when your codespaces are nearing deletion due to inactivity.\": \"启用后，当您的代码空间因长时间未使用而即将被删除时，您将收到电子邮件通知。\",\n            \"Warning notifications for codespace deletions will be enabled\": \"代码空间删除警告通知将启用\",\n\n            \"Trusted repositories\": \"受信任仓库\",\n                \"The following repositories will be referenced by GPG verification and Settings Sync.\": \"以下仓库将被 GPG 验证和设置同步所引用。\",\n\n                \"All repositories\": \"所有仓库\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces for all repositories\": \"GPG 签名和 VS Code 设置同步将适用于所有仓库的代码空间\",\n                \"Selected repositories\": \"选定的仓库\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces from the selected repositories\": \"GPG 签名和 VS Code 设置同步将适用于选定仓库的代码空间\",\n                    \"Select repositories\": \"选择仓库\",\n                    // [/Selected (\\d+) repositor(y|ies)./, \"选定 #1 个仓库\"],\n                    \"GPG and VS Code Settings Sync will be available for Codespaces from these repositories.\": \"GPG 和 VS Code 设置同步将可用于这些仓库的代码空间。\",\n\n                \"Submit\": \"确定\",\n\n            \"Access and security\": \"访问和安全\",\n            \"Deprecated\": \"弃用\",\n            \"Codespaces you create for your personal account can either be restricted to accessing the repository it was opened for, or granted read access to other repositories you own.\": \"您为您个人账户创建的代码空间可以限制访问已启用的仓库或您其他被赋予读取权限的仓库\",\n            \"Disabled\": \"禁用\",\n            \"Limit access of personal Codespaces to the repository they were opened for\": \"限制个人代码空间只能访问对其打开的仓库\",\n            \"All Codespaces can access other repositories I own\": \"所有代码空间都可以访问我拥有的其它仓库\",\n            \"Personal Codespaces created for specific repositories can access other repositories I own\": \"为特定仓库创建的个人代码空间可以访问我拥有的其它仓库\",\n\n            \"Editor preference\": \"编辑器偏好\",\n                // VS code\n                    \"Connect to the cloud from your local desktop client. Requires\": \"从本地桌面客户端连接到云。要求\",\n                    \"with the\": \"安装\",\n                    \"GitHub Codespaces\": \"GitHub 代码空间\",\n                    \"extension.\": \"插件。\",\n\n                \"Visual Studio Code for the Web\": \"网络版的 Visual Studio Code\",\n                    \"Edit and preview changes straight from the browser.\": \"直接从浏览器编辑和预览更改。\",\n\n                // \"JetBrains Gateway\": \"\",\n                    \"Connect to the cloud from your local desktop client. Requires the\": \"从本地桌面客户端连接到云。要求\",\n                    \"plugin, and a JetBrains license.\": \"插件和 JetBrains 许可证。\",\n\n                // JupyterLab\n                    \"Edit and run notebooks from the browser with JupyterLab.\": \"使用 JupyterLab 从浏览器编辑和运行笔记本。\",\n\n            \"Default idle timeout\": \"默认空闲超时\",\n                \"A codespace will suspend after a period of inactivity. You can specify a default idle timeout value, which will apply to all codespaces created after the default is changed. You will be charged for the entire time your codespace is running, even if it is idle. The maximum value is\": \"一段时间不活动后，代码空间将暂停。您可以指定一个默认的空闲超时值，该值将应用于更改默认值后创建的所有代码空间。您将在代码空间运行的整个过程中付费，即使它是空闲的。最大值是\",\n                \"minutes (4 hours).\": \"分钟（4小时）。\",\n                \"minutes\": \"分钟\",\n\n            \"Default retention period\": \"默认保留期\",\n                \"Inactive codespaces are automatically deleted 30 days after the last time they were stopped. A shorter retention period can be set, and will apply to all codespaces created going forward. The default and maximum value is\": \"不活跃的代码空间在上次停止后 30 天自动删除。可以设置更短的保留期，并将应用于以后创建的所有代码空间。默认值和最大值是\",\n                \"days.\": \"天。\",\n                \"Learn about retention setting\": \"了解关于保留时间的设置\",\n                \"days\": \"天\",\n\n            \"Host image version preference\": \"主机镜像版本偏好\",\n                \"The host image defines the operating system in which development containers run. These images receive periodic upgrades for security, functionality, and performance. GitHub Codespaces offers early access to beta images to ensure compatibility with existing development container configurations. Any codespace created or resumed after changing this setting will use the specified image configuration.\": \"主机镜像定义了开发容器运行的操作系统。这些镜像会定期进行安全、功能和性能升级。GitHub 代码空间提供对测试版镜像的早期访问，以确保与现有开发容器配置的兼容性。更改此设置后创建或恢复的代码空间都将使用指定的镜像配置。\",\n                \"Learn more about host images\": \"了解更多关于主机镜像的信息\",\n                \"Stable\": \"稳定版\",\n                    \"Always use the latest stable configuration.\": \"始终使用最新的稳定版。\",\n                \"Beta\": \"测试版\",\n                    \"Use a beta image configuration when available. Otherwise, use the latest stable configuration.\": \"如果可用，请使用测试版映像配置。否则，请使用最新的稳定配置。\",\n\n            \"Region\": \"地区\",\n                \"Your default region will be used to designate compute resources to your codespaces. GitHub can set your region automatically based on your location, or you can set it yourself. Codespaces are deployed to a subset of Azure regions.\": \"您的默认区域将被用来为您的代码空间指定计算资源。 GitHub 可以根据您的位置自动设置您的区域，您也可以自己设置。代码空间部署到 Azure 区域的子集。\",\n                \"Set automatically\": \"自动设置\",\n                \"We will determine the closest available region based on your location (IP address) at codespace creation time.\": \"我们将在创建代码空间时根据您的位置（IP地址）确定最近的可用区域。\",\n                \"Set manually\": \"手动设置\",\n                \"Choose your default region\": \"选择您的默认区域\",\n                    \"United States\": \"美国\",\n                        \"US West\": \"美国西部\",\n                        \"US East\": \"美国东部\",\n                    \"Europe\": \"欧洲\",\n                        \"Europe West\": \"欧洲西部\",\n                    \"Asia Pacific\": \"亚太地区\",\n                        \"Southeast Asia\": \"东南亚\",\n                    \"Australia\": \"澳大利亚\",\n\n            // 顶部提醒\n                \"Secret added.\": \"机密已添加。\",\n                \"Secret deleted.\": \"机密已删除。\",\n                \"Secret updated.\": \"机密已更新。\",\n\n        // 代码空间 机密新建 https://github.com/settings/codespaces/secrets/new\n            \"/ New secret\": \"/ 新建机密\",\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名称\",\n                \"YOUR_SECRET_NAME\": \"您的机密名称\",\n                \"Secret name is required and must not start with GITHUB\": \"机密名称是必需的，并且不能以 GITHUB 开头\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"仓库权限\",\n            \"Available to\": \"适用于\",\n            \"repository\": \"仓库\",\n            \"This secret will not be active until at least 1 repository is selected.\": \"至少选择 1 个仓库，否则此机密不会处于活动状态。\",\n\n        // 编辑机密 https://github.com/settings/codespaces/secrets/<机密名称>/edit\n            \"/ Update secret\": \"/ 更新机密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"机密值已加密，无法显示，但您可以\",\n            \"enter a new value.\": \"输入一个新值。\",\n            \"Update secret\": \"更新机密\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Selected (\\d+) repositor(y|ies)./, \"选定 $1 个仓库\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/Are you sure you want to delete ([^ ]+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/Remove ([^ ]+)/, \"移除 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/models\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        \"Billing\": \"账单\",\n\n        \"Models paid usage\": \"使用付费模型\",\n            \"If enabled, usage beyond the free tier will be billed per token based on model pricing from your Models budget.\": \"如果启用，超出免费额度的使用将根据您模型预算中的模型定价按令牌计费。\",\n            \"Models pricing\": \"模型价格\",\n\n            \"To enable Models paid usage, a payment method is needed.\": \"要启用付费模型，需要添加支付方式。\",\n                \"Add payment method\": \"添加支付方式\",\n\n            \"You currently have\": \"您当前有\",\n                \"free rate limits\": \"免费额度\",\n                \". Enable paid usage to avoid interruption and add tokens.\": \"。启用付费使用以避免中断并添加令牌。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Models\": \"模型\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/packages\"] = { // 设置 - 软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        // Packages 软件包 https://github.com/settings/packages\n            \"Packages permissions\": \"软件包权限\",\n\n            // 组织设置\n                \"Package creation\": \"包的创建\",\n                \"Members will be able to publish only the selected visibility types for packages and containers. Outside collaborators can never publish packages or containers.\": \"成员只能发布选定可见性类型的软件包和容器。外部协作者永远不能发布软件包或容器。\",\n                \"Public\": \"公共\",\n                    \"Members will be able to create public packages, visible to anyone.\": \"成员将能够创建公共包，对任何人都可见。\",\n                \"Private\": \"私有\",\n                    \"Members will be able to create private packages, visible to organization members with permission.\": \"成员将能够创建私有包，对具有权限的组织成员可见。\",\n                \"Internal\": \"内部\",\n                    \"Members will be able to create internal packages, visible to all organization/enterprise members.\": \"成员将能够创建内部包，对所有组织/企业成员可见。\",\n\n            \"Default Package Setting\": \"默认软件包设置\",\n            \"Default package settings\": \"默认软件包设置\", // 组织\n            \"This setting will be applied to new Container, npm, rubygems and NuGet packages.\": \"此设置将应用于新的容器、npm、rubygems 和 NuGet 软件包。\",\n            \"Inherit access from source repository\": \"从源仓库继承访问权限\",\n            \"Save\": \"保存\",\n\n            \"Deleted Packages\": \"删除的软件包\",\n            \"Deleted packages\": \"删除的软件包\", // 组织\n            \"These are packages that have been previously deleted belonging to you. You can restore a package deleted within the last 30 days.\": \"这些是先前已删除的属于您的软件包。您可以恢复在过去 30 天内删除的包。\",\n            \"These are packages that have been previously deleted belonging to this organization. You can restore a package deleted within the last 30 days.\": \"这些是先前已删除的属于您组织的软件包。您可以恢复在过去 30 天内删除的包。\", // 组织设置\n            \"Search deleted packages\": \"搜索已删除的软件包\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable packages were found for ([^ ]+)./, \"没有找到 $1 的可恢复包。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Packages\": \"软件包\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/packages\"] = I18N[\"zh-CN\"][\"settings/packages\"];\n\nI18N[\"zh-CN\"][\"settings/copilot\"] = { // 设置 - GitHub Copilot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // GitHub Copilot https://github.com/settings/copilot/features\n            \"Trained on billions of lines of code,\": \"经过数十亿行代码的训练，\",\n            \"turns natural language prompts into coding suggestions across dozens of languages.\": \"将自然语言提示转换为多种语言的编码建议。\",\n            \"Start free trial\": \"开始免费试用\",\n            \"After that $10/month\": \"结束试用后 $10 / 月\",\n            \"Get Copilot from an organization\": \"从组织中获取 GitHub Copilot\",\n            \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"组织可以为其成员（包括您）及其团队提供使用 GitHub Copilot 的权限。\",\n            \"Organizations owned by enterprise accounts\": \"企业账户拥有的组织\",\n            \"are not currently listed.\": \"目前未包含在此计划中。\",\n            \"You do not belong to any organizations.\": \"您不属于任何组织。\",\n            \"Create an organization\": \"创建一个组织\",\n\n            \"Ask admin for access\": \"向管理员请求访问权限\",\n            \"Requesting...\": \"请求中…\",\n            \"Remove request\": \"撤销请求\",\n            \"Cancelling...\": \"撤销中…\",\n            \"Buy Copilot Business\": \"购买 GitHub Copilot 企业版\",\n            \"Owner\": \"所有者\",\n            \"Member\": \"成员\",\n\n            \"Getting started\": \"开始使用\",\n                \"complete\": \"完成\",\n                \"Remove section\":\"移除区域\",\n            \"Install Copilot in your editor\": \"在您的编辑器中安装 Copilot\",\n            \"Ask about coding problems and get code completions while you work.\": \"在工作时询问问题并获得代码补全。\",\n            \"Chat with Copilot anywhere\": \"随时随地与 Copilot 聊天\",\n            \"Open\": \"在 GitHub 的任何位置打开导航栏中的\",\n            \"Copilot chat in the navigation from anywhere on GitHub. Try asking\": \"按钮，即可与 Copilot 聊天。尝试询问\",\n            \"“what can I do with Copilot?”\": \"“我能用 Copilot 做什么？”\",\n            \"to get started.\": \"来开始聊天。\",\n            \"Go to Copilot\": \"前往 Copilot\",\n            \"Start building with Copilot\": \"使用 Copilot 开始构建项目\",\n            \"Learn how to build with Copilot in Visual Studio Code or Visual Studio.\": \"学习如何在 Visual Studio Code 或 Visual Studio 中使用 Copilot 来构建项目\",\n            \"Get started\": \"开始\",\n\n        // 免费版\n            \"You are using Copilot for free\": \"您正在使用 Copilot 免费版\",\n                \"Responses are limited to 2,000 code completions and 50 chat messages per month.\": \"回复上限为每月 2,000 次代码完成和 50 条聊天信息。\",\n                \"Upgrade for higher limits, premium models, AI reviews. Free responses reset in 20 days.\": \"升级以获得更高的限制、高级模型和 AI 评审。免费版的会话将在 20 天后重置。\",\n            \"Get unlimited usage with Copilot Pro\": \"通过 Copilot Pro 无限制使用\",\n                \"Unlimited messages and interactions\": \"信息和互动无限制\",\n                \"Access to the latest models\": \"访问最新模型\",\n                \"Customize conversations to your private codebase and extensions\": \"为您的私人代码库和扩展定制会话\",\n                \"Start a free trial\": \"免费试用\",\n                \"Code completions\":\"代码补全\",\n                \"Chat messages\":\"聊天信息\",\n\n            \"Copilot policies\": \"Copilot 规则\",\n                \"Copilot Chat in GitHub.com\": \"在 GitHub.com 中使用 Copilot Chat\",\n                    \"You can use Copilot Chat in GitHub.com. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。Copilot 代码审查和预览功能仅适用于付费版。\",\n                    \"You can use Copilot Chat in GitHub.com. Preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。预览功能仅适用于付费版。\",\n                    \"Learn more about Copilot in GitHub.com\": \"了解更多关于在 GitHub.com 中使用 Copilot 的信息\",\n                \"Editor preview features\": \"编辑器预览功能\",\n                    \"You can use preview features in your editor.\": \"您可以在编辑器中使用预览功能。\",\n                \"Suggestions matching public code\": \"公共代码匹配的建议\",\n                    \"Copilot can allow or block suggestions matching public code. Learn more about\": \"Copilot 可允许或阻止与公共代码匹配的建议。了解更多关于\",\n                    \"code suggestions\": \"代码建议\",\n                    \"Allowed\": \"允许\",\n                        \"GitHub Copilot will show suggestions matching public code.\": \"GitHub Copilot 将显示与公共代码匹配的建议。\",\n                    \"Blocked\": \"阻止\",\n                        \"GitHub Copilot won't show suggestions matching public code.\": \"GitHub Copilot 不会显示与公共代码匹配的建议。\",\n                \"Allow GitHub to use my data for product improvements\": \"允许 GitHub 将数据用于产品改进\",\n                //\"Allow GitHub to use my code snippets from the code editor for product improvements\": \"允许 GitHub 将代码编辑器中的代码片段用于产品改进\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for product improvements. More information in the\": \"允许GitHub、其关联公司和第三方使用我的数据，包括提示、建议和代码片段，以改进产品。更多信息请查看\",\n                    //\"Allow GitHub, its affiliates and third parties to use my code snippets to research and improve GitHub Copilot suggestions, related models and product features. More information in the\": \"允许 GitHub、其附属机构和第三方使用我的代码片段来研究和改进 GitHub Copilot 建议、相关模型和产品功能。更多\",\n                    \"About GitHub Copilot privacy.\": \"关于 GitHub Copilot 隐私的信息。\",\n                \"Allow GitHub to use my data for AI model training\": \"允许 GitHub 将数据用于训练 AI 模型\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for AI model training. More information in the\": \"允许GitHub、其关联公司和第三方使用我的数据，包括提示、建议和代码片段，以训练 AI 模型。更多信息请查看\",\n                \"Copilot can search the web\": \"网络搜索\",\n                    \"Copilot can answer questions about new trends and give improved answers, via Bing. See\": \"Copilot 可以回答有关新趋势的问题并给出改进的答案，通过必应。请参阅\",\n                    \"Microsoft Privacy Statement\": \"微软隐私声明\",\n\n                    \"GitHub Copilot will answer questions about new trends and give improved answers\": \"GitHub Copilot 将回答有关新趋势的问题并给出改进的答案\",\n                    \"GitHub Copilot won't answer questions about new trends and give improved answers\": \"GitHub Copilot 将不会回答有关新趋势的问题并给出改进的答案\",\n                    \"Select an option\": \"选择\",\n                        \"You will have access to the feature\": \"您将能够访问此功能\",\n                        \"You won’t have access to the feature\": \"您将不能访问此功能\",\n                \"Learn more about how GitHub Copilot serves OpenAI GPT-5-Codex and confirm compatibility with your IDE in our documentation.\": \"了解更多关于 GitHub Copilot 如何为 OpenAI GPT-5-Codex 提供服务，并确认与您的 IDE 的兼容性。\",\n                \"Dashboard entry point\": \"仪表板入口\",\n                    \"Allows instant chatting when landing on GitHub.com\": \"允许登录 GitHub.com 时即时聊天\",\n                \"Copilot code review\": \"Copilot 代码审查\",\n                    \"Use Copilot to\": \"使用 Copilot\",\n                    \"review your code\": \"审查代码\",\n                    \"and generate\": \"并生成\",\n                    \"pull request summaries\": \"拉取请求总结\",\n\n                    \"Automatically request Copilot code review\": \"自带请求 Copilot 代码审查\",\n                        \"Use Copilot to automatically review all the pull requests you've created.\": \"使用 Copilot 自动审查您创建的拉取请求。\",\n\n            \"For more information about the data your organization receives regarding your use of GitHub Copilot, please review\": \"如需了解贵机构在使用 GitHub Copilot 时会收到哪些数据，请查看\",\n                \"GitHub's Privacy Statement\": \"GitHub 的《隐私声明》\",\n            \"It can take up to 30 minutes for the changes to take effect. Restart your code editor for the changes to take effect immediately.\": \"更改可能需要 30 分钟才能生效。重新启动代码编辑器，更改会立即生效。\",\n\n            \"Visibility\": \"可见度\",\n                \"Show Copilot\": \"显示 Copilot\",\n                \"Enable Copilot for all GitHub features, including navigation bar, search, and dashboard.\": \"为所有 GitHub 功能启用 Copilot，包括导航栏、搜索和仪表板。\",\n                \"When disabled, Copilot will be hidden and unavailable. This setting does not apply to Copilot search on GitHub Docs.\": \"禁用后，Copilot 将隐藏且不可用。此设置不适用于 GitHub Docs 中的 Copilot 搜索。\",\n\n        // 专业版\n            // 顶部提醒\n                \"It appears you are not eligible to sign up to GitHub Copilot for free\": \"您似乎没有资格免费注册 GitHub Copilot\",\n            \"Your GitHub Copilot setup is incomplete. Select your preferences below to start using GitHub Copilot.\": \"您的 GitHub Copilot 设置不完整。请在下面选择您的偏好，开始使用 GitHub Copilot。\",\n\n            \"GitHub Copilot Pro is active for your account\": \"您的 GitHub Copilot Pro 帐户已激活\",\n                \"You currently have an active\": \"您当前拥有有效的\",\n                \"Copilot Pro subscription\": \"GitHub Copilot Pro 订阅\",\n                \"Get started by installing the extension in your preferred IDE.\": \"首先在您首选的 IDE 中安装扩展。\",\n                \"Get started by installing the extension in your preferred environment.\": \"首先在您首选环境中安装扩展。\",\n                \"Copilot in your IDE\": \"集成在 IDE\",\n                \"Copilot in the CLI\": \"在终端中使用\",\n                \"Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用\",\n                \"More features\": \"更多功能\",\n\n            \"Premium requests\": \"高级请求\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. You can enable additional premium requests in the\": \"请注意，显示的使用百分比可能会有延迟。您计划的高级请求权限将在下个月初重置。您可以在以下位置启用额外的高级请求：\",\n                \"Billing settings\": \"账单设置\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. To enable additional premium requests,\": \"请注意，显示的使用百分比可能会有延迟。您计划的高级请求权限将在下个月初重置。要启用额外的高级请求，请\",\n                \"update your Copilot premium request budget\": \"更新您的 Copilot 高级请求预算\",\n\n            \"Features\": \"功能\",\n                // \"Copilot in github.com\": \"在 github.com 中使用 Copilot\",\n                    //\"You can use Copilot Chat in Github.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 Github.com 中使用 Copilot Chat，也可以使用 Copilot 拉取请求和所有预览功能。\",\n                    \"You can use Copilot Chat in GitHub.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 GitHub.com 中使用 Copilot Chat，Copilot 拉取请求和所有预览功能。\",\n                    \"You can use Copilot Chat in GitHub.com and Copilot for pull requests. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 上使用 Copilot Chat，也可以在拉取请求中使用 Copilot。Copilot 的代码审查和预览功能仅对付费许可证用户开放。\",\n\n                // \"Copilot in the CLI\": \"在终端中使用\",\n                    \"You can use\": \"您可以\",\n                    \"GitHub Copilot for assistance in terminal\": \"GitHub Copilot 终端辅助工具\",\n                \"Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"GitHub Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"to explain a piece of code, propose bug fixes, or generate unit tests in a chat interface from your editor.\": \"在编辑器的聊天界面上解释代码、提出错误修复建议或生成单元测试。\",\n                \"Copilot Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用 Copilot Chat\",\n                    \"personalized to a codebase.\": \"，个性化代码。\",\n                \"Copilot in GitHub Desktop\": \"在 GitHub Desktop 中使用\",\n                    \"GitHub Copilot for assistance in GitHub Desktop\": \"在 GitHub Desktop 中获得 Copilot 的协助\",\n                \"Automatic Copilot code review\": \"自动 Copilot 代码审查\",\n                    \"Copilot will automatically review your pull requests.\": \"Copilot 将自动审查您的拉取请求。\",\n                    \"Learn more about configuring automatic code reviews.\": \"了解如何配置自动代码审查。\",\n                \"Copilot coding agent\": \"Copilot 编程智能体\",\n                    \"With Copilot coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用 Copilot 编程智能体，您可以将任务委托给 Copilot，从而让您专注于最具创造性的、复杂且影响深远的工作。只需将问题分配给 Copilot，等待智能体请求您审查，然后在拉取请求中留下反馈以进行迭代。\",\n                    \"Delegate tasks to Copilot coding agent in repositories where it is enabled\": \"将任务委托给已启用 Copilot 编程智能体的仓库\",\n                \"MCP servers in Copilot\": \"Copilot 中的 MCP 服务器\",\n                    \"Connect MCP servers to Copilot in all Copilot editors and Coding Agent.\": \"在所有 Copilot 编辑器和编程智能体中连接 MCP 服务器。\",\n                // Grok\n                    \"If enabled, you can access and send data to xAI Grok Code Fast 1.\": \"若启用，您可以访问 xAI Grok Code Fast 1 并发送数据。\",\n                \"Copilot-generated commit messages\" : \"Copilot 生成的提交消息\",\n                    \"Allow Copilot to suggest commit messages when you make changes on GitHub.com.\": \"允许 Copilot 在您于 GitHub.com 上进行更改时提供提交消息建议。\",\n                    \"Learn more about Copilot-generated commit messages.\": \"了解更多关于 Copilot 生成的提交消息。\",\n                \"Copilot Spaces\": \"Copilot 空间\",\n                    \"If enabled, you can view and create\": \"若启用，您可以查看和创建\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot view or create any Copilot Spaces.\": \"。当禁用时，您无法查看或创建任何 Copilot 空间。\",\n                \"Choose which repositories Copilot coding agent should be enabled in. Copilot coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"选择要在其中启用 Copilot 编程智能体的仓库。Copilot 编程智能体仅在为该仓库启用并符合 Copilot 许可证政策的情况下可用。\",\n                \"Copilot Spaces Individual Access\":\"Copilot Spaces 个人访问权限\",\n                    \"If enabled, you can create individually owned\":\"若启用，您可以创建个人拥有的\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot create individual spaces.\":\"。当禁用时，您无法创建个人空间。\",\n                \"Copilot Spaces Individual Sharing\":\"Copilot Spaces 个人分享\",\n                    \"If enabled, you can share individually owned\": \"若启用，您可以分享个人拥有的\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot share individual spaces.\":\"。当禁用时，您无法分享个人空间。\",\n\n\n\n        // 编程智能体(预览 https://github.com/settings/copilot/coding_agent\n            // 顶部提示\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以为其他用户启用 Copilot 编程智能体，但由于您没有 Copilot Pro+ 或 Copilot 企业版许可证，因此无法向 Copilot 分配任务。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because the Copilot coding agent policy has been disabled by an administrator.\":  \"您可以为其他用户启用 Copilot 编程智能体，但由于管理员已禁用 Copilot 编程智能体策略，您将无法向 Copilot 分配任务。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro, Copilot Pro+, Copilot Business or Copilot Enterprise license.\": \"虽然您可以为其他用户启用 Copilot 编码代理，但由于您未持有 Copilot Pro、Copilot Pro+、Copilot Business、Copilot Enterprise 许可证，因此无法向 Copilot 分配任务。\",\n\n            \"With Coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用编程智能体，您可以将任务委派给 Copilot，从而让您专注于最具创造性的、复杂且影响深远的工作。只需将问题分配给 Copilot，等待智能体请求您审查，然后在拉取请求中留下反馈以进行迭代。\",\n                \"Learn more in the docs.\": \"详情\",\n\n            \"Repository access\": \"仓库访问\",\n                \"Choose which repositories Coding agent should be enabled in. Coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"选择要启用编程智能体的仓库。编程智能体仅在为该仓库启用并符合 Copilot 许可证政策的情况下可用。\",\n\n                \"No repositories\": \"无仓库\",\n                // 所有\n                    \"Include all current and future repositories\": \"包括所有当前和未来的仓库\",\n                \"Only selected repositories\": \"手动选择\",\n                    \"Applies only to specifically selected repositories\": \"仅适用于您选择的仓库\",\n\n                    \"Search or filter\": \"搜索或筛选\",\n                        \"Mirror\": \"镜像\",\n                        \"Custom properties\": \"自定义属性\",\n                        \"Language\": \"语言\",\n                        \"License\": \"许可证\",\n                        \"Exclude\": \"排除\",\n\n                    \"Select all\": \"全选\",\n\n                    \"of\": \"/\",\n                    \"items shown.\": \"仓库显示。\",\n                    \"Use the search to find specific items\": \"搜索查找特定仓库\",\n\n                    \"Select\": \"选择\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 编程智能体需遵守\",\n                \"pre-release terms\": \"预发行条款\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的外部协作者\"],\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的成员和协作者\"],\n        [/Upgrade for higher limits, premium models, AI reviews. Free responses reset in (\\d+) days.?/, \"升级以获取更高的限制、高级模型和 AI 审核。免费额度将在 $1 天内重置。\"], // 免费版额度\n        [/You can use the latest (.+) model\\./, \"您可以使用最新的 $1 模型。\"],\n        [/Learn more about how GitHub Copilot serves (.+)\\./, \"了解更多关于 GitHub Copilot 如何为 $1 提供服务。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 编程智能体\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/pages\"] = { // 设置 - GitHub Pages\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置菜单\n\n        // GitHub Pages https://github.com/settings/pages\n            \"Verified domains\": \"经验证的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"There are no verified domains.\": \"暂无经验证的域名\",\n            \"There are no verified domains for this organization.\": \"此组织暂无经验证的域名\", // 组织设置\n            \"Verify domains to restrict who can publish GitHub Pages on them.\": \"验证域名以限制谁可以在上面发布 GitHub Pages。\",\n            \"One of your domains is unverified. Please verify it to prevent others from claiming it for their Pages sites.\": \"您添加的域名之一未经验证，请对其进行验证，以防止其他人在其主页网站上声明该信息。\",\n            \"Please verify your domain\": \"请验证您的域名\",\n            \"Continue verifying\": \"继续验证\",\n            \"Review verification steps\": \"查看验证步骤\",\n\n            // 域名删除对话框\n            \"Delete verified domain\": \"删除已验证的域名\",\n            \"This is a destructive action. Your GitHub Pages sites may lose their custom domains.\": \"这是一个破坏性的操作，您的 GitHub Pages 网站可能会失去自定义域名。\",\n            \"Your GitHub Pages sites may be unpublished from their custom domains if another organization claims ownership of this domain.\": \"如果其他组织声称拥有此域名的所有权，您的 GitHub Pages 网站可能会被从此自定义域名中取消发布。\",\n            \"Please type\": \"请输入\",\n            \"to confirm.\": \"进行确认\",\n            \"I understand, delete verified domain\": \"我明白了，依然删除已验证的域名\",\n\n        // GitHub Pages - 添加域名 https://github.com/settings/pages_verified_domains/new\n            \"Add a verified domain\": \"经验证的域名\",\n            \"What domain would you like to add?\": \"您想添加什么域名？\",\n            \"Add domain\": \"添加域名\",\n            \"Domain name has already been added\": \"域名已添加\",\n            \"Add a DNS TXT record\": \"添加 DNS TXT 记录\",\n            \"Before we can verify\": \"在我们验证\",\n            \", you'll need to complete these steps:\": \" 之前，您需要完成以下步骤：\",\n            \"Create a TXT record in your DNS configuration for the following hostname:\": \"在 DNS 配置中为以下主机创建 TXT 记录：\",\n            \"Use this code for the value of the TXT record:\": \"使用以下代码作为 TXT 记录的值：\",\n            \"Wait until your DNS configuration changes. This could take up to 24 hours to propagate.\": \"等待您的 DNS 变更解析生效，最长可能需要 24 小时。\",\n            \"Verify\": \"验证\",\n            \"Copy verification steps\": \"复制验证步骤\",\n            \"Your domain is verified. No further action is needed.\": \"您的域名已验证，无需其它操作。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Successfully verified/, \"已成功验证\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/pages\"] = I18N[\"zh-CN\"][\"settings/pages\"];\n\nI18N[\"zh-CN\"][\"settings/replies\"] = { // 设置 - 快捷回复\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Saved replies 快捷回复 https://github.com/settings/replies\n            \"Saved replies are re-usable text snippets that you can use throughout GitHub comment fields. Saved replies can save you time if you’re often typing similar responses.\": \"快捷回复是可重复使用的文本片段，您可以在整个 GitHub 评论区使用。如果您经常输入类似的回复，快捷回复可以节省您的时间。\",\n            \"Learn more about working with saved replies\": \"了解更多关于使用快捷回复的信息\",\n            \"No saved replies yet.\": \"暂时没有快捷回复。\",\n            \"Add a saved reply\": \"添加快捷回复\",\n            \"Saved reply title\": \"快捷回复的标题\",\n            \"Add a short title to your reply\": \"为您的快捷回复添加简短的标题\",\n            \"Add your saved reply\": \"添加您的快捷回复\",\n            \"Add saved reply\": \"添加快捷回复\",\n            \"Your saved reply was created successfully.\": \"您的快捷回复已成功创建。\",\n            \"Edit saved reply\": \"编辑快捷回复\",\n            \"Update saved reply\": \"更新快捷回复\",\n            \"Your saved reply was updated successfully.\": \"您的快捷回复已成功更新。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Saved replies\": \"快捷回复\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security_analysis\"] = { // 设置 - 代码安全性与分析\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 代码安全性与分析 https://github.com/settings/security_analysis\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repositories.\": \"安全和分析功能有助于确保您的仓库安全和更新。通过启用这些功能，您授予我们对您的仓库执行只读分析的权限。\",\n\n            \"User\": \"用户\",\n                \"Security and analysis features help keep you secure and updated, wherever you are.\": \"无论您身在何处，安全和分析功能都可以帮助您保持安全并及时更新。\",\n\n                \"Keep your public pushes safe with push protection\": \"通过推送保护确保您的公共推送安全\",\n                \"GitHub will enable push protection for all GitHub Free individuals in January 2024. Enable below to try it now in beta.\": \"GitHub 将于 2024 年 1 月为所有 GitHub 免费用户启用推送保护。在下面启用以立即在测试版中尝试。\",\n                    \"Dismiss\": \"忽略\",\n\n                \"Push protection for yourself\": \"启用推送保护\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的机密\",\n                    \"across all public repositories on GitHub.\": \"涵盖 GitHub 上的所有公共仓库。\",\n\n                    // 对话框\n                        \"Enable push protection for yourself\": \"为自己启用推送保护\",\n                            \"Pushes that contain secrets will be blocked on public repositories. You'll have the option to bypass the block.\": \"包含机密的推送将在公共仓库中被阻止。您可以选择绕过该阻止。\",\n                            \"Enable push protection\": \"启用推送保护\",\n\n                        \"Disable push protection for yourself\": \"为自己禁用推送保护\",\n                            \"Pushes that contain secrets will not be blocked.\": \"包含机密的推送将不会被阻止。\",\n                            \"Disable push protection\": \"禁用推送保护\",\n\n                        // 顶部提醒\n                            // [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了 $1 的仓库的安全设置。\"],\n\n            // 仓库\n                 \"Security and analysis features help keep your repositories secure and updated.\": \"安全和分析功能有助于确保您的代码仓库安全且保持更新。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"启用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n                \"Automatically enable for new public repositories\": \"为新公共仓库自动启用\",\n\n                // 对话框\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞报告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中禁用私下漏洞报告。\"],\n                        \"Enable by default for new public repositories\": \"默认启用新公共仓库\",\n\n                    \"Enable private vulnerability reporting\": \"启用私下漏洞报告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中启用私下漏洞报告。\"],\n\n            \"Dependency graph\": \"依赖项关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n                \"Automatically enable for new private repositories\": \"为新私有仓库自动启用\",\n\n                // 对话框\n                    \"Enable dependency graph\": \"启用依赖项关系图\",\n                        \"You're about to enable dependency graph on all your private repositories.\": \"您即将启用您所有私有仓库上的依赖项关系图。\",\n                        \"Enable by default for new private repositories\": \"默认为新私有仓库启用\",\n\n                    \"Disable dependency graph\": \"禁用依赖项关系图\",\n                        \"You're about to disable dependency graph on all your private repositories. This will also disable Dependabot alerts and Dependabot security updates on those repositories.\": \"您即将禁用您所有私有仓库上的依赖项关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖项的安全和最新\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖项的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                        \"Configure alert notifications\": \"配置警报通知\",\n                    \"Automatically enable for new repositories\": \"为新仓库自动启用\",\n\n                    // 对话框\n                        \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                            \"You're about to enable Dependabot alerts on all your repositories. Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled.\": \"您即将启用您所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖项关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\",\n                                \"Enable by default for new repositories\": \"默认为新仓库启用\",\n\n                        \"Disable Dependabot alerts\": \"禁用 Dependabot 警报\",\n                            \"You're about to disable Dependabot alerts on all your repositories. This will also disable Dependabot security updates on those repositories.\": \"您即将禁用您所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\",\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。\",\n                        \"Dependabot rules\": \"Dependabot 规则\",\n\n                    // 对话框\n                        \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                            \"You're about to enable Dependabot security updates on all your repositories. Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories.\": \"您即将启用您所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们也将为所有仓库启用他们。\",\n\n                        \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                            \"You're about to disable Dependabot security updates on all your repositories.\": \"您即将禁用您所有仓库上的 Dependabot 安全更新。\",\n\n                \"Grouped security updates\": \"分组安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。此选项可能会被 dependentabot.yml 中指定的分组规则覆盖 -\",\n                    \"Learn how to group updates.\": \"了解如何配置分组更新\",\n\n                    // 对话框\n                        \"Enable grouped security updates\": \"启用分组安全更新\",\n                            \"You're about to enable grouped security updates on all your repositories. Grouped security updates require the dependency graph, Dependabot alerts and Dependabot security updates, so we'll also turn that on for all repositories.\": \"您即将启用您所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot 警报和 Dependabot 安全更新，因此我们也将为所有仓库启用他们。\",\n\n                        \"Disable grouped security updates\": \"禁用分组安全更新\",\n                            \"You're about to disable grouped security updates on all your repositories.\": \"您即将禁用您所有仓库上的分组安全更新。\",\n\n                \"Dependabot on Actions runners\": \"Dependabot 应用于操作运行器\",\n                    \"Run Dependabot security and version updates on Actions runners.\": \"在操作运行器上运行 Dependabot 安全和版本更新。\",\n\n                    // 对话框\n                        \"Enable dependabot on actions\": \"在操作中启用 Dependabot\",\n                            \"You're about to enable dependabot on actions on all your repositories. Dependabot on actions requires Actions so we'll also turn that on for all repositories.\": \"您将要在所有仓库操作中启用 dependabot 。操作中的 Dependabot需要操作，因此我们还将为所有仓库启用它。\",\n\n                        \"Disable dependabot on actions\": \"在操作中禁用 Dependabot\",\n                            \"You're about to disable dependabot on actions on all your repositories.\": \"您将要在所有仓库操作中禁用 Dependabot。\",\n\n                \"Dependabot on self-hosted runners\": \"Dependabot 应用于自托管运行器\",\n                    \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自托管运行程序上运行 Dependabot 安全和版本更新。\",\n\n                    // 对话框\n                        \"Enable dependabot self-hosted\": \"在自托管运行器上启用 Dependabot\",\n                            \"You're about to enable dependabot self-hosted on all your repositories. Dependabot self-hosted depends on Dependabot on Actions so we'll also turn that on for all repositories.\": \"您将在所有仓库上启用 dependabot 自托管。Dependabot 自托管依赖于操作中的 Dependabot，因此我们还将为所有仓库启用它。\",\n\n                        \"Disable dependabot self-hosted\": \"在自托管运行器上禁用 Dependabot\",\n                            \"You're about to disable dependabot self-hosted on all your repositories.\": \"您将在所有仓库上禁用 dependabot 自托管。\",\n\n            \"Secret scanning\": \"机密扫描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有关检测到的机密、密钥或其他令牌的警报。\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 会随时向合作伙伴发送公共仓库中检测到的机密警报。\",\n                \"Learn more about partner patterns\": \"了解更多关于合作伙伴模式的信息\",\n\n                // 对话框\n                    \"Enable secret scanning for eligible repositories?\": \"启用符合条件的仓库的机密扫描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"这将为所有公共仓库启用机密扫描。\",\n                        \"Enable for eligible repositories\": \"启用符合条件的仓库\",\n\n                    \"Disable secret scanning?\": \"禁用机密扫描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"这将禁用所有仓库的机密扫描。\",\n                        \"Disable secret scanning\": \"禁用机密扫描\",\n\n                \"Push protection\": \"推送保护\",\n                    // \"Block commits that contain\": \"阻止提交，包含\",\n                    // \"supported secrets\": \"受支持的机密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自动启用对添加到机密扫描的仓库进行扫描\",\n\n                    // 对话框\n                        \"Enable push protection for eligible repositories?\": \"启用符合条件的仓库的推送保护？\",\n                            \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"这将为所有已启用秘密扫描的仓库启用推送保护。\",\n\n                        \"Disable push protection?\": \"禁用推送保护？\",\n                            \"This will disable push protection on all repositories where it is enabled.\": \"这将禁用所有仓库的推送保护。\",\n                            \"You can still enable push protection at the repository level.\": \"您仍然可以在仓库级别启用推送保护。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中禁用私下漏洞报告。\"],\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中启用私下漏洞报告。\"],\n        [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了$1 的仓库的安全设置。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security & analysis\": \"安全与分析\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/installations\"] = { // 设置 - 应用/安装的 GitHub 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n        \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n        \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n\n        // 安装的 GitHub 应用 https://github.com/settings/installations\n            // 顶部提醒\n                // [/You're all set! (.*) has been uninstalled./, \"一切就绪！$1 已被卸载。\"],\n                // [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就绪！卸载 “$1” 应用的任务已排队等候。\"],\n                // [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安装在 $2 账户上。\"],\n                // [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$1 账户的 $1 已更新。\"],\n\n            // \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n                \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 应用通过商业、开源和自主开发的工具来增强和扩展您在 GitHub 上的工作流程。\",\n                \"Permission updates requested.\": \"待处理的 GitHub 权限请求\",\n\n            \"Pending GitHub Apps installation requests\": \"待处理的 GitHub 应用安装请求\", // 组织设置\n                \"Members in your organization can request that GitHub Apps be installed. Pending requests are listed below.\": \"您组织中的成员可以请求安装 GitHub 应用。下面列出了待处理的请求。\",\n\n            \"No installed GitHub Apps\": \"没有已安装的 GitHub 应用\",\n            \"You have no GitHub Apps installed on this account.\": \"此账户上没有安装任何 GitHub 应用。\",\n            \"Configure\": \"配置\",\n            \"Suspended\": \"已暂停\",\n            \"Visit Marketplace\": \"访问市场\",\n            \"My GitHub Apps\": \"我的 GitHub 应用\",\n\n        // 安装的 GitHub 应用设置 https://github.com/settings/installations/<id>\n            // 顶部提醒\n                // [/Your installation was suspended by you on/, \"您的安装已暂停于\"],\n                \"Your app has been unsuspended\": \"您的应用已被取消暂停\",\n\n            \"Installed\": \"安装于\",\n            \"Developed by\": \"开发者\",\n            \"App settings\": \"应用设置\",\n            \"Permissions\": \"权限\",\n                // [/is requesting an update to its permissions./, \"正在请求更新其权限。\"],\n                \"Read\": \"读取\",\n                \"write\": \"写入\",\n                \"access to metadata\": \"元数据的权限\",\n                \"Review request\": \"审核请求\",\n                \"Access public information (read-only)\": \"访问公开信息（只读）\",\n                \"Access user email addresses (read-only)\": \"访问用户电子邮件地址（只读）\",\n                \"Read all user profile data\": \"读取所有用户个人资料数据\",\n                \"Create gists\": \"创建代码片段\",\n                \"Full control of private repositories\": \"完全控制私有仓库\",\n                \"Update github action workflows\": \"更新 GitHub Action 工作流\",\n                \"Update all user data\": \"更新所有用户数据\",\n                \"Full control of codespaces\": \"完全控制 Codespaces\",\n                \"Read all user profile data\": \"读取所有用户个人资料数据\",\n\n            \"Repository access\": \"仓库访问权限\",\n            \"All repositories\": \"所有仓库\",\n                \"This applies to all current and future repositories owned by the resource owner. Also includes public repositories (read-only).\": \"这适用于资源所有者拥有的所有当前和未来的仓库。还包括公共仓库（只读）。\",\n            \"Only select repositories\": \"仅选定的仓库\",\n                \"Select at least one repository. Also includes public repositories (read-only).\": \"至少选择一个仓库。还包括公共仓库（只读）。\",\n                // [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n            \"Select repositories\": \"选择仓库\",\n            \"Search for a repository\": \"搜索仓库\",\n\n            \"Danger zone\": \"危险区\",\n            \"Suspend your installation\": \"暂停使用\",\n            \"This will block the app access to your resources.\": \"这将阻止应用访问您的资源。\",\n            \"Suspend\": \"暂停\",\n                // 取消按钮 提醒信息\n                \"Are you sure you want to suspend this GitHub App?\": \"您确定要暂停此 GitHub 应用吗？\",\n            \"This will remove the app and revoke access to all resources.\": \"这将删除应用并撤销对所有资源的访问权限。\",\n            // [/Uninstall \"(.*)\"/, \"卸载 “$1”\"],\n            \"Uninstall\": \"卸载\",\n                // 取消按钮 提醒信息\n                // [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作无法撤消。您确定要从 1 个仓库中卸载此 GitHub 应用吗？\"],\n            \"Unsuspend your installation\": \"取消暂停\",\n                \"This grant the app access to your resources.\": \"这将授予应用访问您的资源。\",\n                \"Unsuspend\": \"取消暂停\",\n\n            \"Report abuse\": \"举报滥用\",\n            \"Revoke\": \"撤销\",\n            \"Read more about connecting with third-party applications at\": \"了解更多关于与第三方应用连接的信息，请访问\",\n            \"GitHub Help\": \"GitHub 帮助\",\n\n        // 安装的 GitHub 应用授权更新 https://github.com/settings/installations/<id>/permissions/update\n            // [/The (.*) app by/, \"$1 应用（由\"],\n            \"is requesting updated permissions\": \"创建）正在请求更新权限\",\n\n            \"Read and write\": \"读写权限\",\n            \"Read-only\": \"只读权限\",\n            \"Admin\": \"管理员权限\",\n            \"access to\": \"针对\",\n            \"New request\": \"新请求\",\n            \"Show unchanged permissions\": \"显示未更改的权限\",\n            \"Hide unchanged permissions\": \"隐藏未更改的权限\",\n            \"Accept new permissions\": \"接受新权限\",\n            // [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您选择不接受新权限，“$1” 应用将保留其当前权限。\"],\n\n        // 授权的 GitHub 应用 https://github.com/settings/apps/authorizations\n            // \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n            \"No authorized applications\": \"无授权申请\",\n            \"You have no applications authorized to access your account.\": \"您没有授权访问您的账户的应用。\",\n\n        // 授权的 OAuth 应用 https://github.com/settings/applications\n            // \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n            \"You have granted\": \"您已经授权\",\n            \"access to your account.\": \"访问您的账户。\",\n            \"Revoke all\": \"撤销全部\",\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Alphabetical\": \"按字母排列\",\n            \"Recently used\": \"最近使用的\",\n            \"Least recently used\": \"最近使用最少的\",\n\n            \"Never used · Owned by\": \"从未使用 · 作者\",\n            \"Last used within the last week · Owned by\": \"最后一次使用是最近 1 周之内 · 作者\",\n\n            \"Report abuse\": \"举报滥用\",\n            \"Revoke\": \"撤销\",\n\n            // 撤销对话框\n            \"Are you sure you want to revoke authorization?\": \"您确定要撤销授权吗？\",\n            \"I understand, revoke access\": \"我明白了，依然撤销访问\",\n\n            // 全部撤销对话框\n            \"Are you sure you want to revoke access for all applications?\": \"您确定要撤销对所有应用的访问权限吗？\",\n            \"This will revoke access for\": \"这将撤销访问\",\n            \"all third-party\": \"所有第三方\",\n            \"OAuth applications. This action cannot be undone.\": \"OAuth 应用。此操作无法撤消。\",\n            \"Any SSH keys created on your behalf by applications will also be deleted.\": \"任何由应用代表您创建的 SSH 密钥也将被删除。\",\n            \"Type your username to confirm.\": \"输入您的用户名进行确认。\",\n            \"I understand, revoke access for everything\": \"我明白了，依然撤销对一切的访问\",\n\n            // 举报滥用对话框\n            \"Report Abuse\": \"举报滥用\",\n            \"More options\": \"更多选项\",\n            \"Revoking will deny future access to your account\": \"撤销授权，将拒绝今后访问您的账户\",\n\n        // 授权的 GitHub 应用授权设置 https://github.com/settings/connections/applications/<client-id>\n        // 授权的 OAuth 应用授权设置 https://github.com/settings/connections/applications/<id>\n            \"Never used\": \"从未使用\",\n            \"Last used within the last week\": \"最后一次使用是最近一周之内\",\n\n            \"Developed by\": \"开发者:\",\n            \"Permissions\": \"权限\",\n            \"Revoke access\": \"撤销授权\",\n                \"Are you sure you want to revoke authorization?\": \"您确定要撤销授权吗？\",\n                    // [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 将无法再访问 GitHub API。您无法撤销此操作。\"],\n                \"I understand, revoke access\": \"我明白了，依然撤销授权\",\n                    \"Revoking…\": \"撤消中…\",\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications you authorize will always have access to public data in your organizations.\": \"应用根据您授予的权限代表您访问数据。组织可控制允许哪些应用访问其私人数据。您授权的应用始终可以访问您组织中的公共数据。\",\n            \"Read about third-party access.\": \"了解关于第三方访问的信息。\",\n\n            \"Organization access\": \"组织权限\",\n                \"Grant\": \"批准\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"该组织允许应用访问上述权限中所述的组织数据。\",\n                \"Request\": \"请求\",\n                    \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予访问权限之前，应用无法访问组织的私有数据或修改其公共数据。\",\n\n        // 组织 OAuth 应用策略设置 /orgs/<orgs-name>/policies/applications/<id>\n            \"approval requested by\": \"请求批准:\",\n            \"Currently:\": \"当前\",\n                \"No private access\": \"无法访问私有\",\n                \"Approved\": \"已批准\",\n            \"Review third-party application access request\": \"审查第三方应用访问请求\",\n                \"Grant access\": \"批准访问\",\n                \"Granting access will give this application the ability to request access to private data in the\": \"授权该应用访问私有数据在\",\n                \"organization.\": \"组织。\",\n\n                \"Deny access\": \"拒绝访问\",\n                \"Denying access will remove this application’s ability to request access to private data in the\": \"拒绝该应用访问数据在\",\n\n            // 顶部提醒\n                // [/(.*) is authorized to access this organization’s resources/, \"$1 已获授权访问该组织的资源\"],\n                // [/(.*) is denied access this organization’s resources/, \"$1 被拒绝访问该组织的资源\"],\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications authorized by members will always have access to public data in your organization.\": \"应用根据您授予的权限代表您访问数据。组织可控制允许哪些应用访问其私有数据。成员授权的应用始终可以访问组织中的公共数据。\",\n            \"Read about organization OAuth app access restrictions.\": \"了解有关组织 OAuth 应用访问限制的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Your installation was suspended by you on/, \"您的安装已暂停于\"],\n        [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作无法撤消。您确定要从 $1 个仓库中卸载此 GitHub 应用吗？\"],\n        [/Uninstall \"(.*)\"/, \"卸载 “$1”\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您将无法再登录 $1（所有管理权限都将授予您选择的所有者）\"],\n        [/(\\d+) applications?/, \"$1 个应用\"],\n        [/([^ ]+) will no longer be able to access your GitHub account. You cannot undo this action./, \"$1 将无法再访问您的 GitHub 账户。您无法撤消此操作。\"],\n        [/([^ ]+) has been revoked from your account./, \"$1 已经从您的账户中被撤销了。\"],\n        [/Last used within the last (\\d+) weeks? · Owned by/, \"最后一次使用是最近 $1 周之内 · 作者\"],\n        [/Last used within the last (\\d+) months? · Owned by/, \"最后一次使用是最近 $1 月之内 · 作者\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n        [/You're all set! (.*) has been uninstalled./, \"一切就绪！$1 已被卸载。\"],\n        [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就绪！卸载 “$1” 应用的任务已排队等候。\"],\n        [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安装在 $2 账户上。\"],\n        [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$2 账户的 $1 已更新。\"],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"],\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 月之内\"],\n        [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 将无法再访问 GitHub API。您无法撤销此操作。\"],\n        [/is requesting an update to its permissions./, \"正在请求更新其权限。\"],\n        [/The (.*) app by/, \"$1 应用（由\"],\n        [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您选择不接受新权限，“$1” 应用将保留其当前权限。\"],\n        [/(.*) is authorized to access this organization’s resources/, \"$1 已获授权访问该组织的资源\"],\n        [/(.*) is denied access this organization’s resources/, \"$1 被拒绝访问该组织的资源\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Installed GitHub Apps\": \"已安装的 GitHub 应用\",\n            \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n            \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings/apps/authorizations\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"settings/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"settings/connections/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"orgs/settings/installations\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"orgs/policies/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\n\nI18N[\"zh-CN\"][\"settings/reminders\"] = { // 设置 - 定时提醒\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 定时提醒 https://github.com/settings/reminders\n            \"Reminders allow you to push certain events to authorized instances of Microsoft Teams or Slack.\": \"提醒功能允许您将特定事件推送到 Microsoft Teams 或 Slack 的授权实例。\",\n            \"To use scheduled reminders, make sure that the Slack or Microsoft Teams integration is installed and up-to-date. If you need help with this, please contact your organization's owner.\": \"要使用定时提醒，请确保已安装 Slack 或 Microsoft Teams 集成并且是最新版本，如果您需要这方面的帮助，请联系您组织的所有者。\",\n            \"Available organizations\": \"可用的组织\",\n            \"Unavailable organizations\": \"不可用的组织\",\n            \"Configure Reminder\": \"配置提醒\",\n            \"No reminders\": \"没有提醒\",\n            \"Needs installing\": \"需要安装\",\n\n        // 新的预定提醒 https://github.com/settings/reminders/<orgs-name>\n            \"New scheduled reminder\": \"新建预定提醒\",\n            \"Slack workspace\": \"Slack 工作区\",\n            \"Authorize Slack workspace\": \"授权 Slack 工作区\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Monday\"    : \"周一\",\n                \"Tuesday\"   : \"周二\",\n                \"Wednesday\" : \"周三\",\n                \"Thursday\"  : \"周四\",\n                \"Friday\"    : \"周五\",\n                \"Saturday\"  : \"周六\",\n                \"Sunday\"    : \"周日\",\n            \"Times\": \"时间\",\n                \"Filter\": \"筛选\",\n            \"Review requests assigned to you\": \"审查分配给您的请求\",\n                \"Receive reminders for reviews waiting on you.\": \"接收等待您的审查提醒。\",\n            \"Review requests assigned to your team\": \"审查分配给您团队的请求\",\n                \"Receive reminders for reviews waiting on your team.\": \"接收等待您的团队的审查提醒。\",\n            \"Enable real-time alerts\": \"启用实时警报\",\n                \"Receive immediate Slack messages when certain events happen\": \"当某些事件发生时，会立即收到 Slack 消息\",\n\n            \"You will only receive notifications from public repositories in this organization because the current plan for\": \"您将只收到来自该组织中公共仓库的通知，因为目前\",\n            \"does not support reminders for private repositories.\": \"的计划不支持私人仓库的提醒。\",\n            \"Upgrade to Team\": \"升级为团队\",\n            \"Create reminder\": \"创建提醒者\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Scheduled reminders\": \"定时提醒\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security-log\"] = { // 设置 - 安全日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Security log 安全日志 https://github.com/settings/security-log\n            \"Loading audit log entries…\": \"正在加载日志条目…\",\n            \"Filters\": \"筛选\",\n                \"Filter audit logs\": \"筛选审计日志\",\n                \"Yesterday's activity\": \"昨天的活动\",\n                \"Repository management\": \"仓库管理\",\n                \"Billing updates\": \"账单更新\",\n                \"Copilot activity\": \"Copilot 活动\",\n                \"Personal access token activity\": \"个人访问令牌活动\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n            \"Filter by Member\": \"按用户筛选\",\n            \"Filter by Action\": \"按事件筛选\",\n            \"Search audit logs\": \"搜索审计日志\",\n            \"Search your security log\": \"搜索您的安全日志\",\n            \"Clear current search query\": \"清除当前的搜索查询\",\n            \"Events matching search query\": \"搜索查询匹配结果\",\n            \"Export\": \"导出\",\n            \"Recent events\": \"最近的事件\",\n            \"Unknown IP address\": \"未知 IP 地址\",\n            \"Unknown location\": \"未知位置\",\n            // [/Found (\\d+) events?/, \"发现 $1 个活动\"],\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n            \"ProTip!\": \"专业提示！\",\n                \"View all events created yesterday\": \"查看昨天创建的所有事件\",\n                \"View all events where you created something\": \"查看所有您创建内容时产生的事件\",\n            \"Country changed from your previous session\": \"国家或地区与上一次会话有所不同\",\n            \"Logged in\": \"登录\",\n            \"User signed in from an unrecognized device.\": \"用户从无法识别的设备登录。\",\n            \"User signed in from an unrecognized device and location.\": \"用户从无法识别的设备与位置登录。\",\n            \"New Device Used\": \"使用新设备\",\n            \"Created the repository\": \"创建了仓库\",\n            \"Deleted the repository\": \"删除了仓库\",\n            \"Created GitHub Pages site in\": \"创建了 GitHub Pages 在\",\n            \"Modified GitHub Pages source in\": \"修改了 GitHub Pages 源代码在\",\n            \"Created environment\": \"创造环境\",\n            \"Added\": \"添加\",\n            \"to the\": \"至\",\n            \"repository\": \"仓库\",\n                \"organization with\": \"组织，使用\",\n                \"read\": \"读取\",\n                \"permission\": \"权限\",\n            \"Added the following repositories to the\": \"添加以下仓库到\",\n            \"Removed the following repositories from the\": \"删除以下仓库到\",\n            \"integration:\": \"集成：\",\n            \"Enabled GitHub Actions for\": \"启用仓库操作：\",\n            \"Created a secret for\": \"创建机密：\",\n            \"Created a token for\": \"创建令牌：\",\n            \"Regenerated a token for\": \"重新生成令牌：\",\n            \"Revoked a token for\": \"撤销令牌：\",\n                \"ending in\": \"结尾\",\n                \"for the\": \"用于\",\n                \"GitHub App\": \"GitHub 应用\",\n\n            \"We couldn’t find any events matching your search.\": \"无匹配结果。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Found (\\d+) events?/, \"发现 $1 个活动\"],\n        [/View ([^ ]+)'s profile/, \"查看 $1 的资料\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security log\": \"安全日志\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/sponsors-log\"] = { // 设置 - 赞助日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Sponsorship log 赞助日志 https://github.com/settings/sponsors-log\n            \"Sponsors log\": \"赞助日志\",\n            \"New sponsorships, changes, and cancellations\": \"新的赞助、更改和取消\",\n            \"Period:\": \"周期：\",\n            \"Filter activity\": \"筛选活动\",\n            \"All-time\": \"所有时间\",\n            \"Past day\": \"过去一天\",\n            \"Past week\": \"过去一周\",\n            \"Past month\": \"过去一月\",\n            \"Past year\": \"过去一年\",\n            \"No sponsorship activity in this time period\": \"这段时间没有赞助活动\",\n            \"This is where you can review activity from your sponsorships.\": \"您可以在此处查看您的赞助活动。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sponsorship Log\": \"赞助日志\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/apps\"] = { // 设置 - 开发者设置/GitHub 应用\n    \"static\": { // 静态翻译\n        \"Developer Settings\": \"开发者设置\",\n        \"GitHub Apps\": \"GitHub 应用\",\n        \"OAuth Apps\": \"OAuth 应用\",\n        \"Personal access tokens\": \"个人访问令牌\",\n            \"Fine-grained tokens\": \"精细化的令牌\",\n            \"Tokens (classic)\": \"令牌（经典）\",\n\n        // GitHub 应用 https://github.com/settings/apps\n            // 顶部提醒\n                \"Job queued to revoke all user tokens\": \"撤销所有用户令牌的任务已排队等待\",\n\n            \"Register a new GitHub App\": \"注册新的 GitHub 应用\",\n            \"Want to build something that integrates with and extends GitHub?\": \"想要构建与 GitHub 集成和扩展的东西吗？\",\n            \"New GitHub App\": \"注册新 GitHub 应用\",\n            \"to get started developing on the GitHub API. You can also read more about building GitHub Apps in our\": \"，开始在 GitHub API 上进行开发。您还可以在我们的文档中阅读更多关于构建 GitHub 应用的信息\",\n            \"developer documentation\": \"开发者文档\",\n            \"A GitHub App can act on its own behalf, taking actions via the API directly instead of impersonating a user. Read more in our\": \"GitHub 应用可以代表自己执行操作，直接通过 API 执行操作，而不是冒充用户。阅读我们的更多内容\", // 存在 app时\n\n            // 无应用提示\n                \"No GitHub Apps\": \"无 GitHub 应用\",\n                    \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想创建与 GitHub 集成并扩展 GitHub 的应用程序吗？注册一个新的 GitHub 应用程序，开始使用 GitHub API 进行开发。\",\n\n                \"View documentation\": \"查看文档\",\n\n        // 注册 GitHub 应用 https://github.com/settings/apps/new\n            \"Register new GitHub App\": \"注册新 GitHub 应用\",\n            \"GitHub App name\": \"GitHub 应用名称\",\n            \"The name of your GitHub App.\": \"您的 GitHub 应用的名称。\",\n            \"Markdown supported\": \"支持 Markdown 语法\",\n            \"This is displayed to users of your GitHub App\": \"展示给 GitHub 应用的使用者\",\n            \"Homepage URL\": \"主页地址\",\n                \"The full URL to your GitHub App’s website.\": \"GitHub 应用网站的主页地址\",\n\n            \"Identifying and authorizing users\": \"识别并授权用户\",\n                \"The full URL to redirect to after a user authorizes an installation.\": \"用户授权安装后重定向到的完整地址。\",\n                \"Callback URL documentation\": \"回调地址文档\",\n                \"Add Callback URL\": \"添加回调地址\",\n\n                \"Callback URL\": \"回调地址\",\n                \"Expire user authorization tokens\": \"用户授权令牌\",\n                    \"This will provide a\": \"这将提供一个\",\n                    \"which can be used to request an updated access token when this access token expires.\": \"，用于在此访问令牌到期时，请求更新访问令牌。\",\n                \"Request user authorization (OAuth) during installation\": \"在安装期间请求用户授权 (OAuth)\",\n                    \"Requests that the installing user grants access to their identity during installation of your App\": \"请求用户在安装应用期间授予其身份访问权限。\",\n                    \"Identifying and authorizing users for GitHub Apps documentation\": \"关于 GitHub 应用识别并授权用户的文档\",\n                \"Enable Device Flow\": \"启用设备流\",\n                    \"Allow this GitHub App to authorize users via the Device Flow.\": \"允许此 GitHub 应用通过设备流程授权用户。\",\n                    \"Read the\": \"阅读\",\n                    \"Device Flow documentation\": \"设备流程文档\",\n\n            \"Post installation\": \"安装完成后\",\n                \"Setup URL (optional)\": \"设置网址 (可选)\",\n                    \"Users will be redirected to this URL after installing your GitHub App to complete additional setup.\": \"用户在安装完 GitHub 应用后，会被重定向到这个网址，以完成额外的设置。\",\n                    \"Unavailable when requesting OAuth during installation.\": \"安装过程中请求 OAuth 时不可用。\",\n                    \"Users will be redirected to the 'User authorization callback URL' to complete additional setup.\": \"用户将被重定向到 “用户授权回调网址” 以完成其他设置。\",\n                \"Redirect on update\": \"更新时重定向\",\n                    \"Redirect users to the 'Setup URL' after installations are updated (E.g. repositories added/removed).\": \"在安装后更新时将用户重定向到 “设置网址”（例如: 添加/删除仓库）。\",\n                    \"Redirect users to the 'User authorization callback URL' after installations are updated (E.g repositories added/removed).\": \"在安装后更新时将用户重定向到 “用户授权回调网址”（例如: 添加/删除仓库）。\",\n\n            \"Webhook\": \"Web 钩子\",\n                \"Active\": \"激活\",\n                    \"We will deliver event details when this hook is triggered.\": \"当钩子被触发时，我们将提供事件详细信息。\",\n                \"Webhook URL\": \"Web 钩子网址\",\n                    \"Events will POST to this URL. Read our\": \"事件将 POST 到此网址。阅读\",\n                    \"webhook documentation\": \"关于 Web 钩子\",\n                    \"for more information.\": \"以获取更多信息。\",\n                \"Secret\": \"机密\",\n                    \"Read our\": \"阅读我们\",\n                    \"webhook secret documentation\": \"Web 钩子机密文档\",\n\n            \"Permissions\": \"权限\",\n                \"User permissions are granted on an individual user basis as part of the\": \"用户权限的授予是以单个用户为基础的，是一个环节\",\n                \"User authorization flow\": \"用户授权流程\",\n                \"permissions documentation\": \"权限文档\",\n                \"for information about specific permissions.\": \"以了解关于特定权限的信息。\",\n\n                \"Access:\": \"访问权限：\",\n                \"Select an access level\": \"选择访问级别\",\n                \"No access\": \"禁止访问\",\n                \"Read-only\": \"只读\",\n                \"Read and write\": \"读写\",\n                \"Admin\": \"管理员\",\n\n                  \"Selected\": \"项被选中\",\n                  \"mandatory\": \"强制\",\n\n                \"Repository permissions\": \"仓库权限\",\n                    \"Repository permissions permit access to repositories and related resources.\": \"仓库权限允许访问仓库和相关资源。\",\n\n                    \"Actions\": \"操作\",\n                        \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的运行和工件。\",\n                    \"Administration\": \"管理\",\n                        \"Repository creation, deletion, settings, teams, and collaborators.\": \"仓库创建、删除、设置、团队和协作者。\",\n                    \"Attestations\": \"证书\",\n                        \"Create and retrieve attestations for a repository.\": \"创建和检索仓库的证书。\",\n                    \"Checks\": \"检查\",\n                        \"Checks on code.\": \"检查代码。\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                        \"View and manage code scanning alerts.\": \"查看和管理代码扫描警报。\",\n                    // \"\": \"代码空间\",\n                        \"Create, edit, delete and list Codespaces.\": \"创建、编辑、删除和列出代码空间。\",\n                    \"Codespaces lifecycle admin\": \"代码空间的生命周期管理\",\n                        \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理代码空间的生命周期，包括启动和停止。\",\n                    \"Codespaces metadata\": \"代码空间元数据\",\n                        \"Access Codespaces metadata including the devcontainers and machine type.\": \"访问代码空间元数据，包括开发容器和机器类型。\",\n                    \"Codespaces secrets\": \"代码空间机密\",\n                        \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制代码空间的用户机密对特定仓库的修改。\",\n                    \"Commit statuses\": \"提交状态\",\n                        \"Commit statuses.\": \"提交状态。\",\n                    \"Contents\": \"内容\",\n                        \"Repository contents, commits, branches, downloads, releases, and merges.\": \"仓库内容、提交、分支、下载、发布和合并。\",\n                    // 自定义属性\n                        \"View and set values for a repository's custom properties, when allowed by the property.\": \"在属性允许的情况下，查看和设置仓库自定义属性的值。\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                        \"Retrieve Dependabot alerts.\": \"检索 Dependabot 警报。\",\n                    \"Dependabot secrets\": \"Dependabot 机密\",\n                        \"Manage Dependabot repository secrets.\": \"管理 Dependabot 仓库的机密。\",\n                    \"Deployments\": \"部署\",\n                        \"Deployments and deployment statuses.\": \"部署和部署状态。\",\n                    \"Discussions\": \"讨论\",\n                        \"Discussions and related comments and labels.\": \"讨论及相关评论和标签。\",\n                    \"Environments\": \"环境\",\n                        \"Manage repository environments.\": \"管理仓库环境。\",\n                    \"Issues\": \"议题\",\n                        \"Issues and related comments, assignees, labels, and milestones.\": \"议题及相关评论、受理人、标签和里程碑。\",\n                    \"Merge queues\": \"合并列队\",\n                        \"Manage a repository's merge queues\": \"管理仓库的合并队列。\",\n                    \"Metadata\": \"元数据\",\n                        \"Search repositories, list collaborators, and access repository metadata.\": \"搜索仓库、列出协作者，访问仓库元数据。\",\n                    \"Packages\": \"软件包\",\n                        \"Packages published to the GitHub Package Platform.\": \"发布软件包到 GitHub Package 平台。\",\n                    \"Pages\": \"GitHub Pages\",\n                        \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"检索页面状态、配置和构建，以及创建新的构建。\",\n                    \"Projects\": \"项目\",\n                        \"Manage classic projects within a repository.\": \"管理仓库中的经典项目。\",\n                    \"Pull requests\": \"拉取请求\",\n                        \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取请求及相关评论、受让人、标签、里程碑和合并。\",\n                    \"Repository security advisories\": \"仓库安全公告\",\n                        \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                        \"View and manage secret scanning alerts.\": \"查看和管理机密扫描警报。\",\n                    \"Secrets\": \"机密\",\n                        \"Manage Actions repository secrets.\": \"管理操作仓库机密。\",\n                    \"Single file\": \"单个文件\",\n                        \"Manage just a single file.\": \"只管理单个文件。\",\n                        \"Path\": \"路径\",\n                        \"The content paths to single files your app can access.\": \"应用可以访问的单个文件的内容路径。\",\n                    \"Variables\": \"变量\",\n                        \"Manage Actions repository variables.\": \"管理操作仓库变量。\",\n                    \"Webhooks\": \"Web 钩子\",\n                        \"Manage the post-receive hooks for a repository.\": \"管理仓库的接收后钩子。\",\n                    \"Workflows\": \"工作流程\",\n                        \"Update GitHub Action workflow files.\": \"更新 GitHub Action 工作流程文件。\",\n\n                \"Organization permissions\": \"组织权限\",\n                    \"Organization permissions permit access to organization related resources.\": \"组织权限允许访问组织相关资源。\",\n\n                    \"API Insights\": \"API 洞察\",\n                        \"View statistics on how the API is being used for an organization.\": \"查看有关组织如何使用 API 的统计信息。\",\n                    // 管理\n                        \"Manage access to an organization.\": \"管理对组织的访问。\",\n                    \"Blocking users\": \"拉黑用户\",\n                        \"View and manage users blocked by the organization.\": \"查看和管理被组织拉黑的用户。\",\n                    \"Custom organization roles\": \"自定义组织角色\",\n                        \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"创建、编辑、删除和列出自定义组织角色。查看系统组织角色。\",\n                    \"Custom properties\": \"自定义属性\",\n                        \"View custom properties, write repository values, and administer definitions.\": \"查看自定义属性、写入仓库值并管理定义。\",\n                    \"Custom repository roles\": \"自定义仓库角色\",\n                        \"Create, edit, delete and list custom repository roles.\": \"创建、编辑、删除和列出自定义仓库角色。\",\n                    \"Events\": \"活动\",\n                        \"View events triggered by an activity in an organization.\": \"查看组织中某项活动所触发的事件。\",\n                    \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                        \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商业版席位和设置\",\n                    \"Knowledge bases\": \"知识库\",\n                        \"View and manage knowledge bases for an organization.\": \"查看和管理组织的知识库。\",\n                    \"Members\": \"成员\",\n                        \"Organization members and teams.\": \"组织成员和团队。\",\n                    \"Organization announcement banners\": \"组织公告横幅\",\n                        \"View and modify announcement banners for an organization.\": \"查看并修改组织的公告横幅。\",\n                    \"Organization codespaces\": \"组织代码空间\",\n                        \"Manage Codespaces for an organization.\": \"管理组织的代码空间。\",\n                    \"Organization codespaces secrets\": \"组织代码空间机密\",\n                        \"Manage Codespaces Secrets for an organization.\": \"管理组织的代码空间机密。\",\n                    \"Organization codespaces settings\": \"组织代码空间设置\",\n                        \"Manage Codespaces settings for an organization.\": \"管理组织的代码空间设置。\",\n                    \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                        \"Manage Dependabot organization secrets.\": \"管理 Dependabot 组织的机密。\",\n                    \"Organization private registries\": \"组织私有注册表\",\n                        \"Manage private registries for an organization.\": \"管理组织的私有注册表。\",\n                    \"Personal access token requests\": \"个人访问令牌请求\",\n                        \"Manage personal access token requests from organization members.\": \"管理来自组织成员的个人访问令牌请求。\",\n                    \"Personal access tokens\": \"个人访问令牌\",\n                        \"View and revoke personal access tokens that have been granted access to an organization.\": \"查看和撤销已被授予组织访问权限的个人访问令牌。\",\n                    \"Plan\": \"计划\",\n                        \"View an organization's plan.\": \"查看组织的计划。\",\n                    // 项目\n                        \"Manage projects for an organization.\": \"管理组织的项目。\",\n                    // 机密\n                        \"Manage Actions organization secrets.\": \"管理操作组织机密\",\n                    \"Self-hosted runners\": \"自托管运行器\",\n                        \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理组织可用的 “操作自托管运行器”。\",\n                    \"Team discussions\": \"团队讨论\",\n                        \"Manage team discussions and related comments.\": \"管理团队讨论及相关评论。\",\n                    // 变量\n                        \"Manage Actions organization variables.\": \"管理操作组织变量。\",\n                    // Web 钩子\n                        \"Manage the post-receive hooks for an organization.\": \"管理组织的接收后钩子。\",\n\n                \"Account permissions\": \"账户权限\",\n                    \"These permissions are granted on an individual user basis as part of the User authorization flow.\": \"这些权限是在单个用户的基础上授予的，作为用户授权流程的一部分\",\n\n                    \"Block another user\": \"拉黑其他用户\",\n                        \"View and manage users blocked by the user.\": \"查看和管理被用户拉黑的用户。\",\n                    \"Codespaces user secrets\": \"代码空间用户机密\",\n                        \"Manage Codespaces user secrets.\": \"管理代码空间用户机密。\",\n                    \"Copilot Chat \": \"\",\n                        \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"此应用将接收您的 GitHub ID、GitHub Copilot Chat 会话消息（不包括发送到其他应用的消息）以及所提供的 GitHub Copilot Chat 会话消息的时间戳。Copilot 扩展必须启用此权限。\",\n                    \"Copilot Editor Context\": \"Copilot 编辑器语境\",\n                        \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每当您通过 Copilot Chat 向应用发送消息时，该应用都会收到一些编辑器上下文（例如当前打开的文件）。\",\n                    \"Email addresses\": \"电子邮箱地址\",\n                        \"Manage a user's email addresses.\": \"管理用户的电子邮箱地址。\",\n                    // 活动\n                        \"View events triggered by a user's activity.\": \"查看用户活动触发的事件。\",\n                    // 关注者\n                        \"A user's followers\": \"用户的关注者\",\n                    \"GPG keys\": \"GPG 密钥\",\n                        \"View and manage a user's GPG keys.\": \"查看和管理用户的 GPG 密钥。\",\n                    // Gist\n                        \"Create and modify a user's gists and comments.\": \"创建和修改用户的代码片段和评论。\",\n                    \"Git SSH keys\": \"Git SSH 密钥\",\n                    \"Interaction limits\": \"交互限制\",\n                        \"Interaction limits on repositories\": \"仓库的交互限制\",\n                    // 计划\n                        \"View a user's plan.\": \"查看用户的计划。\",\n                    \"Profile\": \"个人信息\",\n                        \"Manage a user's profile settings.\": \"管理用户的个人信息设置。\",\n                    \"SSH signing keys\": \"SSH 签名密钥\",\n                        \"View and manage a user's SSH signing keys.\": \"查看和管理用户的 SSH 签名密钥。\",\n                    \"Starring\": \"星标\",\n                        \"List and manage repositories a user is starring.\": \"列出和管理用户标星的仓库。\",\n                    \"Watching\": \"关注\",\n                        \"List and change repositories a user is subscribed to.\": \"列出和更改用户订阅的仓库。\",\n\n            // 以下的事件 与 钩子页面 一致\n            // 添加钩子 页面 /<user-name>/<repo-name>/settings/hooks/new\n            \"Subscribe to events\": \"订阅事件\",\n                \"Based on the permissions you’ve selected, what events would you like to subscribe to?\": \"根据您选择的权限，您想订阅哪些事件？\",\n                \"Installation target\": \"安装目标\",\n                    \"A GitHub App installation target is renamed.\": \"GitHub 应用安装目标已重命名。\",\n                \"Meta\": \"元数据\",\n                    \"When this App is deleted and the associated hook is removed.\": \"当该应用被删除和相关的钩子被删除时。\",\n                \"Security advisory\": \"安全提示\",\n                    \"Security advisory published, updated, or withdrawn.\": \"安全提示的发布、更新或撤销。\",\n                \"Branch protection configuration\": \"分支保护配置\",\n                    \"All branch protections disabled or enabled for a repository.\": \"禁用或启用仓库的所有分支保护。\",\n                \"Branch protection rule\": \"分支保护规则\",\n                    \"Branch protection rule created, deleted or edited.\": \"分支保护规则的创建、删除或编辑。\",\n                \"Code scanning alert\": \"代码扫描警报\",\n                    \"Code Scanning alert created, fixed in branch, or closed\": \"代码扫描警报的创建、在分支中修复或关闭。\",\n                \"Check run\": \"检查运行\",\n                    \"Check run is created, requested, rerequested, or completed.\": \"检查运行的创建、请求、重新请求或完成。\",\n                \"Check suite\": \"检查套件\",\n                    \"Check suite is requested, rerequested, or completed.\": \"检查套件的请求、重新请求或完成。\",\n                \"Commit comment\": \"提交评论\",\n                    \"Commit or diff commented on.\": \"提交或差异评论。\",\n                //\"创建\": \"\",\n                    \"Branch or tag created.\": \"分支或标签的创建。\",\n                \"Custom property\": \"自定义属性\",\n                    \"Custom property is created, updated, or deleted.\": \"自定义属性的创建、更新或删除。\",\n                \"Custom property values\": \"自定义属性值\",\n                    \"Custom property values are changed for a repository\": \"仓库自定义属性值的更改。\",\n                \"Discussion\": \"讨论\",\n                    \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"讨论的创建、编辑、关闭、重新打开、置顶、取消置顶、锁定、解锁、转移、答复、取消答复、标记、取消标记、更改其类别或删除。\",\n                \"Discussion comment\": \"讨论评论\",\n                    \"Discussion comment created, edited, or deleted.\": \"讨论评论的创建、编辑或删除。\",\n                //\"删除\": \"\",\n                    \"Branch or tag deleted.\": \"分支或标签的删除。\",\n                \"Dependabot alert\": \"Dependabot 警报\",\n                    \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警报的自动解除、自动重新打开、创建、解除、重新打开、修复或重新引入。\",\n                \"Deploy key\": \"部署密钥\",\n                    \"A deploy key is created or deleted from a repository.\": \"在仓库中部署密钥的创建或删除。\",\n                \"Deployment\": \"部署\",\n                    \"Repository was deployed or a deployment was deleted.\": \"仓库的部署或删除部署。\",\n                \"Deployment protection rule\": \"部署保护规则\",\n                    \"Deployment protection rule requested for an environment.\": \"环境请求部署保护规则。\",\n                \"Deployment review\": \"部署审查\",\n                    \"Deployment review requested, approved or rejected\": \"部署审查的请求、批准或拒绝\",\n                \"Deployment status\": \"部署状态\",\n                    \"Deployment status updated from the API.\": \"通过 API 更新部署状态。\",\n                \"Exemption request push ruleset\": \"推送规则集豁免请求\",\n                    \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push rules is currently in beta and subject to change.\": \"推送规则集旁路请求已创建、取消、完成、收到响应或驳回响应。注：推送规则的委托旁路目前处于测试阶段，可能会有更改。\",\n                \"Exemption request secret scanning\": \"秘密扫描豁免请求\",\n                    \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"秘密扫描推送保护旁路请求已创建、取消、完成、收到响应或驳回响应。注：推送保护的授权旁路目前处于测试阶段，可能会有更改。\",\n                //\"复刻\": \"\",\n                    \"Repository forked.\": \"仓库复刻。\",\n                \"Gollum\": \"咕噜\",\n                    \"Wiki page updated.\": \"Wiki 页面的更新。\",\n                \"Issue comment\": \"议题评论\",\n                    \"Issue comment created, edited, or deleted.\": \"议题评论的创建、编辑或删除。\",\n                //\"议题\": \"\",\n                    \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, unlocked, typed, or untyped.\": \"议题的打开、编辑、删除、转移、置顶、取消置顶、关闭、重新打开、分配、取消分配、标记、取消标记、设置里程碑、取消里程碑、锁定、解锁。\",\n                \"Label\": \"标签\",\n                    \"Label created, edited or deleted.\": \"标签的创建、编辑或删除。\",\n                \"Milestone\": \"里程碑\",\n                    \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的创建、关闭、打开、编辑或删除。\",\n                \"Member\": \"成员\",\n                    \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"协作者添加到仓库、从仓库中删除或更改了仓库的权限。\",\n                \"Membership\": \"团队成员\",\n                    \"Team membership added or removed.\": \"团队成员的添加或删除。\",\n                \"Merge group\": \"合并组\",\n                    \"Merge Group requested checks, or was destroyed.\": \"合并组的请求检查或销毁。\",\n                \"Merge queue entry\": \"合并队列条目\",\n                    \"Merge Queue entry added\": \"合并队列条目的添加。\",\n                \"Organization\": \"组织\",\n                    \"Organization deleted, renamed, member invited, member added, or member removed.\": \"组织的删除、重命名以及成员的邀请、添加或删除。\",\n                \"Page build\": \"构建 GitHub Pages\",\n                    \"Pages site built.\": \"GitHub Pages 站点的建立。\",\n                \"Personal access token request\": \"个人访问令牌请求\",\n                    \"Personal access token request created, approved, denied, or cancelled.\": \"个人访问令牌请求的创建、批准、拒绝或取消。\",\n                \"Project\": \"项目\",\n                    \"Project created, updated, or deleted.\": \"项目的创建、更新或删除。\",\n                \"Project card\": \"项目面板卡\",\n                    \"Project card created, updated, or deleted.\": \"项目面板卡的创建、更新或删除\",\n                \"Project column\": \"项目栏目\",\n                    \"Project column created, updated, moved or deleted.\": \"项目栏目的创建、更新、移动或删除。\",\n                \"Projects v2 item\": \"项目 v2 条目\",\n                    \"Project item created, edited, deleted, archived, restored, converted, or reordered.\": \"项目条目的创建、编辑、删除、归档、恢复、转换或重新排序。\",\n                \"Projects v2\": \"项目 v2\",\n                    \"Project created, updated, deleted, closed, or reopened.\": \"项目的创建、更新、删除、关闭或重新打开。\",\n                \"Projects v2 status update\": \"项目 v2 状态更新\",\n                    \"Project status updates created, updated, or deleted.\": \"项目状态更新的创建、更新或删除。\",\n                // 公共\n                    \"Repository changes from private to public.\": \"仓库从私有更改为公共。\",\n                \"Pull request\": \"拉取请求\",\n                    \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取请求的分配、禁用自动合并、启用自动合并、关闭、转换为草案、取消里程碑、取消队列、编辑、队列、标记、锁定、设置里程碑、打开、准备审查、重新打开、取消审查请求、请求审查、同步、取消分配、取消标记或解锁。\",\n                \"Pull request review\": \"拉取请求审查\",\n                    \"Pull request review submitted, edited, or dismissed.\": \"拉取请求审查的提交、编辑或驳回。\",\n                \"Pull request review comment\": \"拉取请求审查意见\",\n                    \"Pull request diff comment created, edited, or deleted.\": \"拉取请求差异评论的创建、编辑或删除。\",\n                \"Pull request review thread\": \"拉取请求线程\",\n                    \"A pull request review thread was resolved or unresolved.\": \"拉取请求的审查线程解决或未解决。\",\n                \"Push\": \"推送\",\n                    \"Git push to a repository.\": \"Git 推送到仓库。\",\n                \"Registry package\": \"注册软件包\",\n                    \"Registry package published or updated in a repository.\": \"仓库中注册软件包的发布或更新。\",\n                \"Release\": \"发行版\",\n                    \"Release created, edited, published, unpublished, or deleted.\": \"发行版的创建、编辑、发布、取消发布或删除。\",\n                \"Repository\": \"仓库\",\n                    \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"仓库的创建、删除、归档、取消归档、公开、私有化、编辑、重命名或转让。\",\n                \"Repository dispatch\": \"仓库调度\",\n                    \"When a message is dispatched from a repository.\": \"当信息从仓库发出时。\",\n                \"Repository ruleset\": \"仓库规则集\",\n                    \"Repository ruleset created, deleted or edited.\": \"仓库规则集的创建、删除或编辑。\",\n                \"Security and analysis\": \"安全和分析\",\n                    \"Code security features enabled or disabled for a repository.\": \"启用或禁用仓库的代码安全功能。\",\n                \"Secret scanning alert\": \"机密扫描警报\",\n                    \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"机密扫描警报的创建、解决、重新打开、验证或公开泄露。\",\n                \"Secret scanning alert location\": \"机密扫描警报位置\",\n                    \"Secrets scanning alert location created.\": \"机密扫描警报位置的创建。\",\n                \"Secret scanning scan\": \"机密扫描\",\n                    \"Secrets scanning scan completed.\": \"机密扫描已完成\",\n                // 星标\n                    \"A star is created or deleted from a repository.\": \"标星或取消仓库星标。\",\n                //\"状态\": \"\",\n                    \"Commit status updated from the API.\": \"通过 API 更新提交状态。\",\n                //\"团队\": \"\",\n                    \"Team is created, deleted, edited, or added to/removed from a repository.\": \"团队的创建、删除、编辑以及向仓库添加团队、从仓库中移除团队。\",\n                \"Sub issues\": \"子议题\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子议题和父议题的添加或删除。\",\n                \"Team add\": \"团队添加\",\n                    \"Team added or modified on a repository.\": \"仓库团队的添加或修改。\",\n                \"Watch\": \"关注\",\n                    \"User stars a repository.\": \"用户标星仓库。\",\n                \"Workflow dispatch\": \"工作流程调度\",\n                    \"A manual workflow run is requested.\": \"请求手动运行工作流程。\",\n                \"Workflow job\": \"工作流程作业\",\n                    \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"仓库中工作流作业的队列、等待、正在进行或完成。\",\n                \"Workflow run\": \"工作流程运行\",\n                    \"Workflow run requested or completed on a repository.\": \"仓库中工作流程运行的请求或完成。\",\n                \"Org block\": \"组织黑名单\", // 组织设置\n                    \"A user has been blocked or unblocked.\": \"用户拉黑或解除拉黑。\",\n                \"Repository advisory\": \"仓库公告\",\n                    \"Repository advisory published or reported.\": \"仓库公告发布或报告。\",\n                \"Sub issues\": \"子提议\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子议题和父议题的添加或删除。\",\n\n            \"Where can this GitHub App be installed?\": \"这款 GitHub 应用可以安装在哪里？\",\n                \"Only on this account\": \"仅在当前账户\",\n                    // [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"仅允许在 $1 帐户上安装此 GitHub 应用。\"],\n                \"Any account\": \"任何账户\",\n                    \"Allow this GitHub App to be installed by any user or organization.\": \"允许任何用户或组织安装此 GitHub 应用。\",\n\n            \"Create GitHub App\": \"创建 GitHub 应用\",\n\n        // 某个 GitHub 应用 https://github.com/settings/apps/<app-name>\n            // 顶部提醒\n                // GitHub App 注册成功\n                \"Registration successful. You must\": \"注册成功。您必须\",\n                \"generate a private key\": \"生成私钥\",\n                \"in order to install your GitHub App.\": \"才能安装 GitHub 应用。\",\n                // GitHub App 已更新\n                \"Got it. Your GitHub App has been updated.\": \"GitHub 应用已更新。\",\n                \"The GitHub App is now public. Anyone is free to install it.\": \"GitHub 应用已公开化。任何人都可以自由安装。\",\n                \"The GitHub App is now private. It can only be installed on this account.\": \"GitHub 应用已私有化。只能安装在此账户上。\",\n\n            \"Developer settings\": \"开发者设置\",\n            // 左侧栏\n                \"General\": \"通常\",\n                \"Permissions & events\": \"权限与事件\",\n                \"Install App\": \"安装应用\",\n                \"Advanced\": \"高级\",\n                \"Optional features\": \"可选功能\",\n                \"Public page\": \"公共页面\",\n\n            // 关于\n                \"Owned by:\": \"拥有者：\",\n                \"Using your App ID to get installation tokens? You can now\": \"使用您的 App ID 获取安装令牌？您现在可以\",\n                \"use your Client ID instead\": \"使用您的 Client ID\",\n                \"Revoke all user tokens\": \"撤销所有用户令牌\",\n                \"GitHub Apps can use OAuth credentials to identify users. Learn more about identifying users by reading our\": \"GitHub 应用可以使用 OAuth 凭据来识别用户。了解更多关于识别用户的信息，请阅读我们的\",\n                \"integration developer documentation\": \"集成开发者文档\",\n\n                \"Public link\": \"公共链接\",\n\n                // 撤销所有用户令牌对话框\n                \"Revoke all user tokens?\": \"撤销所有用户令牌？\",\n                    \"Are you sure you want to revoke\": \"您确定要撤销此应用的\",\n                    \"all\": \"所有\",\n                    \"user tokens for this application?\": \"用户令牌吗？\",\n                    \"All users of this application will be forced back through the\": \"该应用的所有用户都将被迫返回\",\n                    \"authorization flow\": \"授权流程\",\n                    \"before they can use your application again.\": \"，然后才能再次使用您的应用。\",\n                    \"All SSH keys created by this application will also be deleted.\": \"此应用创建的所有 SSH 密钥也将被删除。\",\n                    \"This action is not reversible.\": \"此操作不可逆转。\",\n                    \"I understand, revoke all user tokens\": \"我明白了，依然撤销所有用户令牌\",\n\n            \"Client secrets\": \"客户端机密\",\n                \"Generate a new client secret\": \"生成客户端机密\",\n                \"You need a client secret to authenticate as the application to the API.\": \"您需要一个客户端机密，才能以应用的身份验证 API。\",\n\n            \"Basic information\": \"基本信息\",\n\n            \"Display information\": \"显示信息\",\n                \"Drag & drop\": \"拖放\",\n                \"Upload a logo...\": \"上传 Logo 图片…\",\n                    \"Uploading...\": \"上传中…\",\n                \"You can also drag and drop a picture from your computer.\": \"您也可以从电脑中拖放图片。\",\n                        \"Only images, please. Try again.\": \"仅限图片，请重试。\",\n                        \"1MB or less, please. Try again.\": \"请上传 1MB 以内的文件，请重试。\",\n                        \"Whoops! Try again.\": \"哎呀！请重试。\",\n                        \"File contents don’t match the file extension. Try again.\": \"文件内容与扩展名不符，请重试。\",\n\n                \"Delete this image\": \"删除图片\",\n                \"Badge background color\": \"徽章背景颜色\",\n                \"The hex value of the badge background color. Hex colors should only contain numbers and letters from a-f.\": \"徽章背景颜色的十六进制值。十六进制颜色只能包含 a-f 之间的数字和字母。\",\n                // 剪裁对话框\n                    \"Crop your new avatar\": \"裁剪您的新头像\",\n                    \"Set new avatar\": \"设置新头像\",\n                // 顶部提醒\n                    \"Your avatar has been updated. It may take a few minutes to update across the site.\": \"您的头像已更新。整个网站的更新可能需要几分钟的时间。\",\n                    \"This avatar has been deleted.\": \"该头像已被删除。\",\n\n            // 市场\n                \"List your GitHub App in the\": \"上架您的 GitHub 应用到\",\n                \"GitHub Marketplace\": \"GitHub 市场\",\n                \"so that other users can discover it.\": \"以便其他用户可以发现它。\",\n                \"List in Marketplace\": \"上架应用\",\n\n                \"Edit how your GitHub App is presented in the Marketplace directory, including screenshots and links.\": \"编辑 GitHub 应用在市场索引中的展示方式，包括截图和链接。\",\n                \"Edit Marketplace listing\": \"编辑市场上架信息\",\n\n            \"Private keys\": \"私钥\",\n                \"Generate a private key\": \"生成私钥\",\n                \"You need a private key to sign access token requests.\": \"您需要私钥来签署访问令牌请求。\",\n\n                \"Learn more about private keys\": \"了解更多关于私钥的信息\",\n                \"Private key\": \"私钥\",\n                \"Added\": \"已添加于\",\n\n            \"IP allow list\": \"IP 允许列表\",\n                \"Enter the IP addresses of your GitHub App to allow organizations with\": \"输入 GitHub 应用的 IP 地址，以便在安装时允许在\",\n                \"IP allow lists\": \"IP 允许列表\",\n                \"to selectively inherit the App's IP allow list when installed.\": \"的组织有选择地继承应用的 IP 允许列表。\",\n                \"Learn more about App IP allow lists\": \"了解更多关于应用 IP 允许列表的信息\",\n\n                \"There are no IP addresses on the allow list yet.\": \"允许列表中尚无 IP 地址。\",\n                \"IP address or range in CIDR notation\": \"以 CIDR 表示的 IP 地址或范围\",\n                \"Short description of IP address or range\": \"IP 地址或范围的简短描述\",\n\n                \"Check IP address\": \"检查 IP 地址\",\n                    \"Enter an IP address to check whether it is permitted by enabled entries on the IP allow list.\": \"输入 IP 地址，检查 IP 允许列表中的启用条目是否允许该地址。\",\n\n        // 某个 GitHub 应用 - 权限 https://github.com/settings/apps/<app-name>/permissions\n            \"Changes to permissions will be applied to all future installations. Current users will be prompted to accept any changes and enable the new permissions on their installation.\": \"对权限的更改将应用于今后的所有安装。系统将提示当前用户接受任何更改，并在其安装中启用新权限。\",\n\n            \"Add a note to users\": \"为用户添加注释\",\n                \"This note will be displayed on the permissions update approval page.\": \"该注释将显示在权限更新批准审查页面上。\",\n                    \"Add a note to your users explaining why you are requesting these changes.\": \"向您的用户添加注释，解释您请求这些更改的原因。\",\n\n                \"Are you sure you want to update permissions?\": \"您确定要更新权限吗？\",\n                    \"Current users will be prompted to accept these changes and enable the new permissions on their installation.\": \"系统将提示当前用户接受这些更改，并在其安装中启用新权限。\",\n\n        // 某个 GitHub 应用 - 智能体 https://github.com/settings/apps/<app-name>/agent\n            \"A Copilot configuration allows your GitHub App to integrate with Copilot. Learn more about building GitHub Copilot Extensions in the\": \"Copilot 配置允许您的 GitHub 应用与 Copilot 集成。了解更多关于构建 GitHub Copilot 扩展的信息，请访问\",\n            \"documentation\": \"文档\",\n\n            \"Accept the Marketplace Developer agreement to create your Copilot Extension\": \"接受市场开发者协议以创建您的 Copilot 扩展\",\n                \"By clicking \\\"Accept Terms\\\" below, you agree to the\": \"点击下面的 “接受条款”，即表示您同意以下条款\",\n                \"GitHub Copilot Extension Developer Policy\": \"GitHub Copilot 扩展开发者政策\",\n                \"Pre-release License terms\": \"预发布许可条款\",\n                \"on behalf of\": \"代表\",\n                \". Please check to make sure that you are agreeing to these terms on behalf of the correct account.\": \"。请检查以确保您代表正确的帐户同意这些条款。\",\n                \"Accept Terms\": \"接受条款\",\n\n            \"To enable Copilot functionality, you must first accept the Marketplace Developer agreement\": \"要启用 Copilot 功能，您必须首先接受市场开发者协议\",\n            \"To enable Copilot functionality, you must first grant your app permission to read Copilot Messages. To do so, navigate to Permissions & Events > Account Permissions > Read-only for Copilot Chat\": \"要启用 Copilot 功能，必须先授予应用读取 Copilot 消息的权限。为此，请导航至权限和事件 > 帐户权限 > Copilot 聊天 - 只读\",\n\n        // 某个 GitHub 应用 - 安装 https://github.com/settings/apps/<app-name>/installations\n            // [/Install (.*)/, \"安装 $1\"],\n            // [/Choose an account to install (.*) on:/, \"选择要安装 $1 的账户：\"],\n            \"Install\": \"安装\",\n            // [/Install (.*) on this account./, \"安装 $1 到此账户上。\"],\n            \"Installed\": \"已安装\",\n            // [/(.*) is installed on this account./, \"$1 已安装在此账户上。\"],\n\n        // 某个 GitHub 应用 - 高级 https://github.com/settings/apps/<app-name>/advanced\n            \"Danger zone\": \"危险区\",\n                \"Transfer ownership of this GitHub App\": \"转让此 GitHub 应用的所有权\",\n                    \"Transferring may be delayed until the new owner approves the transfer.\": \"转让可能会延迟，直至新所有者批准转让\",\n                    \"Transfer ownership\": \"转让所有权\",\n                        // [/Where should we transfer (.*)\\?/, \"将 $1 转让给谁？\"],\n                        \"Type the name of the GitHub App to confirm\": \"键入要确认的 GitHub 应用名称\",\n                        \"New owner’s GitHub username or organization name\": \"新所有者的 GitHub 用户名或组织名称\",\n                        \"Transfer this GitHub App\": \"转让所有权\",\n                \"Delete this GitHub App\": \"删除此 GitHub 应用\",\n                    \"This cannot be undone. Please be certain.\": \"此操作无法撤销。请确认。\",\n\n                    \"Delete GitHub App\": \"删除 GitHub 应用\",\n                        \"Delete GitHub App?\": \"删除 GitHub 应用？\",\n                            \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                            \"This action\": \"此操作\",\n                            \"CANNOT\": \"无法\",\n                            \"be undone. This will permanently delete the\": \"撤销。这将永久删除\",\n                            \"GitHub App.\": \"GitHub 应用。\",\n\n                            \"This will also uninstall the GitHub App from\": \"这还将卸载 GitHub 应用从\",\n                            // [/(\\d+) accounts?/, \"$1 个账户\"],\n\n                            \"Please type in the name of the GitHub App to confirm.\": \"请键入 GitHub 应用的名称进行确认。\",\n                            \"I understand the consequences, delete this GitHub App\": \"我明白后果，依然删除该 GitHub 应用\",\n                \"Make this GitHub App public\": \"公开 GitHub 应用\",\n                    \"Allow this GitHub App to be installed on other accounts.\": \"允许在其他账户中安装此 GitHub 应用。\",\n\n                    \"Make public\": \"转为公开\",\n                        // [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用户或组织都可以安装此 GitHub 应用。您确定要公开 $1 吗？\"],\n                \"Make this GitHub App private\": \"私有化 GitHub 应用\",\n                    \"Private GitHub Apps cannot be installed on other accounts.\": \"私有 GitHub 应用不能安装在其他账户上。\",\n                    \"Make private\": \"转为私有\",\n                        \"This integration cannot be made private since it is already installed on other accounts.\": \"此应用无法转为私有，因为它已安装在其他账户上。\",\n                \"Make this application private\": \"私有化应用\",\n                    \"Private applications cannot be installed on other accounts.\": \"私有应用不能安装在其他账户上。\",\n                        // [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 应用只能安装在 $1 账户上。您确定要将 $2 设为私有吗？\"],\n\n        // 某个 GitHub 应用 - 可选功能 https://github.com/settings/apps/<app-name>/beta\n            // [/Activate optional features for (.*)/, \"激活 $1 的可选功能\"],\n            // [/Choose a feature to activate for (.*):/, \"选择要为 $1 激活的功能：\"],\n\n            \"User-to-server token expiration\": \"用户到服务器访问令牌过期\",\n                \"User-to-server access tokens will expire after 8 hours. A Refresh Token will be provided which can be exchanged for a new access token.\": \"用户到服务器访问令牌将在 8 小时后过期。我们将提供一个刷新令牌，用户可以用它换取新的访问令牌。\",\n                \"Opt-out\": \"选择退出\",\n                \"Opt-in\": \"选择加入\",\n                    \"Disable user-to-server token expiration for this app.\": \"禁用此应用的用户到服务器访问令牌过期。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"仅允许在 $1 帐户上安装此 GitHub 应用。\"],\n        [/Choose an account to install (.*) on:/, \"选择要安装 $1 的账户：\"],\n        [/Install (.*) on this account./, \"安装 $1 到此账户上。\"],\n        [/Install (.*)/, \"安装 $1\"],\n        [/(.*) is installed on this account./, \"$1 已安装在此账户上。\"],\n        [/Where should we transfer (.*)\\?/, \"将 $1 转让给谁？\"],\n        [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用户或组织都可以安装此 GitHub 应用。您确定要公开 $1 吗？\"],\n        [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 应用只能安装在 $1 账户上。您确定要将 $2 设为私有吗？\"],\n        [/(\\d+) accounts?/, \"$1 个账户\"],\n        [/Activate optional features for (.*)/, \"激活 $1 的可选功能\"],\n        [/Choose a feature to activate for (.*):/, \"选择要为 $1 激活的功能：\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"New OAuth Application\": \"新 OAuth 应用\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/apps/new\"] = I18N[\"zh-CN\"][\"settings/apps\"];\n\nI18N[\"zh-CN\"][\"settings/developers\"] = { // 设置 - 开发者设置/OAuth 应用\n    \"static\": { // 静态翻译\n            \"Developer Settings\": \"开发者设置\",\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"OAuth Apps\": \"OAuth 应用\",\n            \"Personal access tokens\": \"个人访问令牌\",\n                \"Fine-grained tokens\": \"精细化的令牌\",\n                \"Tokens (classic)\": \"令牌（经典）\",\n\n        // OAuth 应用 https://github.com/settings/developers\n            \"No OAuth applications\": \"没有 OAuth 应用\",\n            \"OAuth applications are used to access the GitHub API.\": \"OAuth 应用用于访问 GitHub API。\",\n            \"Read the docs\": \"阅读文档\",\n            \"to find out more.\": \"以了解更多情况。\",\n            \"Register a new application\": \"注册新 OAuth 应用\",\n\n            \"No OAuth apps\": \"无 OAuth 应用\",\n            \"OAuth apps are used to access the GitHub API. Read the docs to find out more.\": \"OAuth 应用程序用于访问 GitHub API。阅读文档了解详情。\",\n            \"New OAuth app\": \"注册新 OAuth 应用\",\n\n            \"View documentation\": \"查看文档\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Developer applications\": \"开发者应用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/applications/new\"] = { // 设置 - 开发者设置/OAuth 应用\n    \"static\": { // 静态翻译\n\n        // 注册 OAuth 应用 https://github.com/settings/applications/new\n            \"Developer Settings\": \"开发者设置\",\n\n            \"Register a new OAuth app\": \"注册 OAuth 应用\",\n            \"Application name\": \"应用名\",\n            \"Something users will recognize and trust.\": \"让用户识别和信任。\",\n            \"Homepage URL\": \"主页地址\",\n            \"The full URL to your application homepage.\": \"您的应用主页地址。\",\n            \"Application description\": \"应用描述\",\n            \"Application description is optional\": \"应用描述 (可选)\",\n            \"This is displayed to all users of your application.\": \"所有用户都能看到您的应用描述。\",\n            \"Authorization callback URL\": \"认证回调地址\",\n            \"Your application’s callback URL. Read our\": \"您的应用授权回调地址。阅读我们\",\n            \"OAuth documentation\": \"OAuth 文档\",\n            \"for more information.\": \"了解更多信息。\",\n            \"Enable Device Flow\": \"启用设备流程\",\n            \"Allow this OAuth App to authorize users via the Device Flow.\": \"允许此 OAuth 应用通过设备流程授权用户。\",\n            \"Read the\": \"阅读\",\n            \"Device Flow documentation\": \"设备流程文档\",\n            \"Register application\": \"注册应用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/applications/new\"] = I18N[\"zh-CN\"][\"settings/applications/new\"];\n\nI18N[\"zh-CN\"][\"settings/personal-access-tokens\"] = { // 设置 - 开发者设置/个人访问令牌\n    \"static\": { // 静态翻译\n            \"Developer Settings\": \"开发者设置\",\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"OAuth Apps\": \"OAuth 应用\",\n            \"Personal access tokens\": \"个人访问令牌\",\n                \"Fine-grained tokens\": \"精细化的令牌\",\n                \"Tokens (classic)\": \"令牌（经典）\",\n\n        // 开发者设置 - 精细化的个人访问令牌 https://github.com/settings/personal-access-tokens\n            \"Fine-grained personal access tokens\": \"精细化的个人访问令牌\",\n            // 未创建时\n                \"No fine-grained tokens created\": \"没有创建精细化的个人访问令牌\",\n                \"Need an API token for scripts or testing? Generate a personal access token for quick access to the GitHub API.\": \"需要用于脚本或测试的 API 令牌？生成个人访问令牌，快速访问 GitHub API。\",\n\n            \"These are fine-grained, repository-scoped tokens suitable for personal\": \"这些都是精细化的、仓库域的令牌，适合个人\",\n            \"use and for using Git over HTTPS.\": \"使用和通过 HTTPS 使用 Git。\",\n\n            \"Never used •\": \"从未使用过 •\",\n            \"Last used within the last week\": \"最后一次使用是最近 1 周之内\",\n            // [/Last used within/, \"最后一次使用是\"],\n\n            \"Loading expiration ...\": \"载入有效期 …\",\n            \"This token has expired.\": \"此令牌已过期。\",\n                \"To set a new expiration date, you must regenerate the token.\": \"要设置新的有效期，您必须重新生成令牌。\",\n            \"Regenerate\": \"重新生成\",\n\n            // 生成令牌后提醒复制\n                \"Make sure to copy your personal access token now as you will not be able to see this again.\": \"请务必立即复制您的个人访问令牌，因为您将无法再次看到它。\",\n\n            // 删除令牌对话框\n                \"Are you sure you want to delete this token?\": \"您确定要删除此令牌吗？\",\n                \"Any applications or scripts using this token will no longer be able to access the GitHub API. You cannot undo this action.\": \"任何使用此令牌的应用或脚本将无法再访问 GitHub API。您无法撤消此操作。\",\n                \"I understand, delete this token\": \"我明白了，依然删除该令牌。\",\n\n            // 顶部提醒\n                \"Deleted personal access token\": \"已删除个人访问令牌\",\n\n        // 创建精细化个人访问令牌 https://github.com/settings/personal-access-tokens/new\n            \"New fine-grained personal access token\": \"新建精细化个人访问令牌\",\n            \"Create a fine-grained, repository-scoped token suitable for personal API use and for using Git over HTTPS.\": \"创建精细化的、仓库域的令牌，适合个人 API 使用和通过 HTTPS 使用 Git。\",\n\n            \"Token name\": \"令牌名称\",\n                \"A unique name for this token. May be visible to resource owners or users with possession of the token.\": \"此令牌的唯一名称。可能对资源所有者或持有该令牌的用户可见。\",\n                \"Name can't be blank\": \"名称不能为空\",\n                \"' is available.\": \"' 可用。\",\n                \"' is not available. The token name has already been taken.\": \"' 不可用。令牌名称已被占用。\",\n                \"Name has already been taken\": \"名称已被占用\",\n            \"Description\": \"描述\",\n            \"Resource owner\": \"资源所有者\",\n                \"The token will only be able to make changes to resources owned by the selected resource owner. Tokens can always read all public repositories.\": \"该令牌只能修改所选资源所有者拥有的资源。令牌始终可以读取所有公共仓库。\",\n\n                    \"Select resource owner\": \"选择资源所有者\",\n                        \"You may only select resource owners with fine-grained PATs enabled.\": \"您只能选择已启用精细化个人访问令牌（PAT）的资源所有者。\",\n            \"Authorizing...\": \"授权中…\",\n\n            \"Expiration\": \"有效期\",\n                \"7 days\": \"7 天\",\n                \"30 days\": \"30 天\",\n                \"60 days\": \"60 天\",\n                \"90 days\": \"90 天\",\n                \"Custom\": \"自定义\",\n                    \"Select date *\": \"选择日期 *\",\n                    \"Expiration date can't be blank\": \"过期时间不能为空\",\n                \"No expiration\": \"无有效期\",\n                // [/Limit set by ([^ ]+) organization/, \"由 $1 组织设定的限制\"],\n                \"between 1 and 366 days\": \"1~366 天\",\n\n                \"The token will expire on the selected date\": \"此令牌将在指定日期过期\",\n                \"GitHub strongly recommends that you set an expiration date for your token to help keep your information secure.\": \"GitHub 强烈建议您为令牌设置有效期，以帮助确保您的信息安全。\",\n\n            \"Repository access\": \"仓库访问\",\n                \"Select the repositories this token can access. Personal access tokens can always read from all public repositories on GitHub.com\": \"选择此令牌可以访问的仓库。个人访问令牌始终可以读取 GitHub.com 上所有公共仓库中的内容。\", // 更新模式下\n\n                \"Public repositories\": \"公共仓库\",\n                    \"Read-only access to public repositories.\": \"对公共仓库的只读访问权限。\",\n                \"All repositories\": \"所有仓库\",\n                    \"This applies to all current and future repositories you own. Also includes public repositories (read-only).\": \"规则适用于您所有现有及未来仓库。同时包括公共仓库（只读）。\",\n                    \"This applies to all current and future repositories that you can access in this organization. Also includes public repositories (read-only).\": \"此规则适用于您在此组织内可访问的所有现有及未来仓库，同时包括公共仓库（只读）。\",\n                \"Only select repositories\": \"仅选定的仓库\",\n                    \"Select at least one repository. Max 50 repositories. Also includes public repositories (read-only).\": \"至少选择一个仓库，最多可选择 50 个仓库。同时包括公共仓库（只读）。\",\n                    \"Select repositories\": \"选择仓库\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"选定 #1 个仓库\"],\n                        \"Select at least one repository.\": \"至少选择一个仓库。\",\n                            \"No repositories found.\": \"未找到仓库。\",\n\n            \"Permissions\": \"权限\",\n                \"Choose the minimal permissions necessary for your needs.\": \"选择满足您需求的最低权限。\",\n                \"Learn more about permissions.\": \"了解更多关于权限的信息。\",\n\n                \"Access:\": \"访问权限：\",\n                \"Read and write\": \"读写\",\n                \"Read-only\": \"只读\",\n                \"Access: Read-only\": \"访问权限: 只读\",\n                    \"Read access required to use other repository permissions.\": \"使用其他仓库权限需要读取权限。\",\n                    \"Read access required to use other repository permissions\": \"使用其他仓库权限需要读取权限。\",\n\n                \"Add permissions\": \"添加权限\",\n                    \"Select repository permissions\": \"选择仓库权限\",\n                        \"No items available\": \"尚无可用项目\",\n                    \"Select account permissions\": \"选择账户权限\",\n                    \"Select organization permissions\": \"选择组织权限\",\n\n            // 仓库权限\n                \"No repository permissions added yet\": \"尚未添加仓库权限\",\n                \"Repository permissions permit access to repositories and related resources.\": \"仓库权限允许访问仓库和相关资源。\",\n\n                \"Actions\": \"操作\",\n                    \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的运行和工件。\",\n                \"Administration\": \"管理\",\n                    \"Repository creation, deletion, settings, teams, and collaborators.\": \"仓库创建、删除、设置、团队和协作者。\",\n                \"Artifact metadata\": \"附件元数据\",\n                    \"Create and retrieve artifact metadata for a repository.\": \"创建和检索仓库附件的元数据。\",\n                \"Attestations\": \"证书\",\n                    \"Create and retrieve attestations for a repository.\": \"创建和检索仓库的证书。\",\n                // \"Checks\": \"检查\",\n                //     \"Checks on code.\": \"检查代码。\",\n                \"Code scanning alerts\": \"代码扫描警报\",\n                    \"View and manage code scanning alerts.\": \"查看和管理代码扫描警报。\",\n                // \"\": \"代码空间\",\n                    \"Create, edit, delete and list Codespaces.\": \"创建、编辑、删除和列出代码空间。\",\n                \"Codespaces lifecycle admin\": \"代码空间的生命周期管理\",\n                    \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理代码空间的生命周期，包括启动和停止。\",\n                \"Codespaces metadata\": \"代码空间元数据\",\n                    \"Access Codespaces metadata including the devcontainers and machine type.\": \"访问代码空间元数据，包括开发容器和机器类型。\",\n                \"Codespaces secrets\": \"代码空间机密\",\n                    \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制代码空间的用户机密对特定仓库的修改。\",\n                \"Commit statuses\": \"提交状态\",\n                    \"Commit statuses.\": \"提交状态。\",\n                \"Contents\": \"内容\",\n                    \"Repository contents, commits, branches, downloads, releases, and merges.\": \"仓库内容、提交、分支、下载、发布和合并。\",\n                // 自定义属性\n                    \"Read and write repository custom properties values at the repository level, when allowed by the property.\": \"在属性允许的情况下，在仓库级别读取和写入仓库自定义属性值。\",\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Retrieve Dependabot alerts.\": \"检索 Dependabot 警报。\",\n                \"Dependabot secrets\": \"Dependabot 机密\",\n                    \"Manage Dependabot repository secrets.\": \"管理 Dependabot 仓库的机密。\",\n                \"Deployments\": \"部署\",\n                    \"Deployments and deployment statuses.\": \"部署和部署状态。\",\n                \"Discussions\": \"讨论\",\n                    \"Discussions and related comments and labels.\": \"讨论及相关评论和标签。\",\n                \"Environments\": \"环境\",\n                    \"Manage repository environments.\": \"管理仓库环境。\",\n                \"Issues\": \"议题\",\n                    \"Issues and related comments, assignees, labels, and milestones.\": \"议题及相关评论、受理人、标签和里程碑。\",\n                \"Merge queues\": \"合并列队\",\n                    \"Manage a repository's merge queues\": \"管理仓库的合并队列。\",\n                \"Metadata\": \"元数据\",\n                    \"Search repositories, list collaborators, and access repository metadata.\": \"搜索仓库、列出协作者，访问仓库元数据。\",\n                // \"Packages\": \"软件包\",\n                //     \"Packages published to the GitHub Package Platform.\": \"发布软件包到 GitHub Package 平台。\",\n                \"Pages\": \"GitHub Pages\",\n                    \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"检索页面状态、配置和构建，以及创建新的构建。\",\n                // \"Projects\": \"项目\",\n                //     \"Manage classic projects within a repository.\": \"管理仓库中的经典项目。\",\n                \"Pull requests\": \"拉取请求\",\n                    \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取请求及相关评论、受让人、标签、里程碑和合并。\",\n                \"Repository security advisories\": \"仓库安全公告\",\n                    \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                \"Secret scanning alert dismissal requests\": \"机密扫描警报解除请求\",\n                    \"View and manage secret scanning alert dismissal requests\":\"查看和管理机密扫描警报解除请求\",\n                \"Secret scanning alerts\": \"机密扫描警报\",\n                    \"View and manage secret scanning alerts.\": \"查看和管理机密扫描警报。\",\n                \"Secret scanning push protection bypass requests\": \"机密扫描推送保护绕过请求\",\n                    \"Review and manage repository secret scanning push protection bypass requests.\": \"审查和管理仓库机密扫描推送保护绕过请求。\",\n                \"Secrets\": \"机密\",\n                    \"Manage Actions repository secrets.\": \"管理操作仓库机密。\",\n                \"Variables\": \"变量\",\n                    \"Manage Actions repository variables.\": \"管理操作仓库变量。\",\n                \"Webhooks\": \"Web 钩子\",\n                    \"Manage the post-receive hooks for a repository.\": \"管理仓库的接收后钩子。\",\n                \"Workflows\": \"工作流程\",\n                    \"Update GitHub Action workflow files.\": \"更新 GitHub Actions 工作流程文件。\",\n\n            // 账户权限\n                \"Account\": \"账户\",\n                \"No account permissions added yet\": \"尚未添加账户权限\",\n                \"User permissions permit access to resources under your personal GitHub account.\": \"用户权限允许访问您个人 GitHub 账户下的资源。\",\n\n                \"Block another user\": \"拉黑其他用户\",\n                    \"View and manage users blocked by the user.\": \"查看和管理被用户拉黑的用户。\",\n                \"Codespaces user secrets\": \"代码空间用户机密\",\n                    \"Manage Codespaces user secrets.\": \"管理代码空间用户机密。\",\n                \"Copilot Chat\": \"Copilot 聊天\",\n                    \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"该应用程序将获取您的 GitHub ID、您的 GitHub Copilot 聊天会话消息（不包括发送到其他应用程序的消息），以及提供的 GitHub Copilot 聊天会话消息的时间戳。必须启用此权限才能使用 Copilot 扩展功能。\",\n                \"Copilot Editor Context\": \"Copilot 编辑器上下文\",\n                    \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每当您通过 Copilot Chat 向该应用发送消息时，该应用将接收部分编辑器上下文（例如当前打开的文件）。\",\n                \"Copilot Requests\": \"Copilot 请求\",\n                    \"Send Copilot requests.\": \"发送 Copilot 请求\",\n                \"Email addresses\": \"电子邮箱地址\",\n                    \"Manage a user's email addresses.\": \"管理用户的电子邮箱地址。\",\n                // 活动\n                    \"View events triggered by a user's activity.\": \"查看由用户活动触发的事件。\",\n                // 关注者\n                    \"A user's followers\": \"用户的关注者\",\n                \"GPG keys\": \"GPG 密钥\",\n                    \"View and manage a user's GPG keys.\": \"查看和管理用户的 GPG 密钥。\",\n                // Gist\n                    \"Create and modify a user's gists and comments.\": \"创建和修改用户的代码片段和评论。\",\n                \"Git SSH keys\": \"Git SSH 密钥\",\n                \"Interaction limits\": \"交互限制\",\n                    \"Interaction limits on repositories\": \"仓库的交互限制\",\n                \"Knowledge bases\": \"知识库\",\n                    \"View knowledge bases for a user.\": \"为用户查看知识库。\",\n                \"Models\": \"模型\",\n                    \"Allows access to GitHub Models.\": \"允许访问 GitHub 模型。\",\n                \"Plan\": \"计划\",\n                    \"View a user's plan.\": \"查看用户的计划。\",\n                \"Private repository invitations\": \"私有仓库邀请\",\n                    \"View a user's invitations to private repositories\": \"查看用户对私有仓库的邀请\",\n                \"Profile\": \"个人信息\",\n                    \"Manage a user's profile settings.\": \"管理用户的个人信息设置。\",\n                \"SSH signing keys\": \"SSH 签名密钥\",\n                    \"View and manage a user's SSH signing keys.\": \"查看和管理用户的 SSH 签名密钥。\",\n                \"Starring\": \"星标\",\n                    \"List and manage repositories a user is starring.\": \"列出和管理用户标星的仓库。\",\n                \"Watching\": \"关注\",\n                    \"List and change repositories a user is subscribed to.\": \"列出和更改用户订阅的仓库。\",\n\n            // 组织权限\n                \"No organization permissions added yet\": \"尚未组织账户权限\",\n                \"Organization permissions permit access to organization related resources.\": \"组织权限允许访问组织相关资源。\",\n\n                \"API Insights\": \"API 洞察\",\n                    \"View statistics on how the API is being used for an organization.\": \"查看 API 在组织中的使用统计。\",\n                // 管理\n                    \"Manage access to an organization.\": \"管理对组织的访问。\",\n                \"Blocking users\": \"拉黑用户\",\n                    \"View and manage users blocked by the organization.\": \"查看和管理被组织拉黑的用户。\",\n                \"Campaigns\": \"活动\",\n                    \"Manage campaigns.\": \"管理活动。\",\n                \"Custom organization roles\": \"自定义组织角色\",\n                    \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"创建、编辑、删除和列出自定义组织角色。查看系统组织角色。\",\n                \"Custom properties\": \"自定义属性\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"读取和写入组织级别的仓库自定义属性值并管理定义。\",\n                \"Custom properties for organizations\": \"自定义组织属性\",\n                    \"Read and write organization custom properties values at the organization level, when allowed by the property.\": \"在属性允许的情况下，读取和写入组织级别的自定义属性值。\",\n                \"Custom repository roles\": \"自定义仓库角色\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"读取和写入组织级别的仓库自定义属性值并管理定义。\",\n                \"Events\": \"事件\",\n                    \"View events triggered by an activity in an organization.\": \"查看组织中某项活动所触发的事件。\",\n                \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                    \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商业版席位和设置\",\n                \"Hosted runner custom images\": \"托管的运行器自定义镜像\",\n                    \"View and manage hosted runner custom images available to an organization.\": \"查看和管理组织可用的托管运行器自定义镜像。\",\n                \"Issue Fields\": \"议题字段\",\n                    \"Manage issue fields for an organization.\": \"管理组织的议题字段。\",\n                \"Issue Types\": \"议题类型\",\n                    \"Manage issue types for an organization.\": \"管理组织的议题类型。\",\n                // 知识库\n                    \"View and manage knowledge bases for an organization.\": \"查看和管理组织的知识库。\",\n                \"Members\": \"成员\",\n                    \"Organization members and teams.\": \"组织成员和团队。\",\n                // 模型\n                    \"Manage model access for an organization.\": \"管理组织的模型访问。\",\n                \"Network configurations\": \"网络配置\",\n                    \"View and manage hosted compute network configurations available to an organization.\": \"查看和管理组织可用的托管计算网络配置。\",\n                \"Organization announcement banners\": \"组织公告横幅\",\n                    \"View and modify announcement banners for an organization.\": \"查看并修改组织的公告横幅。\",\n                \"Organization bypass requests for secret scanning\": \"组织绕过机密扫描请求\",\n                    \"Review and manage secret scanning push protection bypass requests.\": \"审查和管理机密扫描推送保护绕过请求。\",\n                \"Organization codespaces\": \"组织代码空间\",\n                    \"Manage Codespaces for an organization.\": \"管理组织的代码空间。\",\n                \"Organization codespaces secrets\": \"组织代码空间机密\",\n                    \"Manage Codespaces Secrets for an organization.\": \"管理组织的代码空间机密。\",\n                \"Organization codespaces settings\": \"组织代码空间设置\",\n                    \"Manage Codespaces settings for an organization.\": \"管理组织的代码空间设置。\",\n                \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                    \"Manage Dependabot organization secrets.\": \"管理 Dependabot 组织的机密。\",\n                \"Organization dismissal requests for code scanning\": \"组织代码扫描的解除请求\",\n                    \"Review and manage code scanning alert dismissal requests.\": \"审查和管理代码扫描警报解除请求。\",\n                \"Organization private registries\": \"组织私有注册表\",\n                    \"Manage private registries for an organization.\": \"管理组织的私有注册表。\",\n                \"Plan\": \"计划\",\n                    \"View an organization's plan.\": \"查看组织的计划。\",\n                // 项目\n                    \"Manage projects for an organization.\": \"管理组织的项目。\",\n                // 机密扫描警报解除请求\n                    \"Review and manage secret scanning alert dismissal requests\": \"审查和管理机密扫描警报解除请求\",\n                // 机密\n                    \"Manage Actions organization secrets.\": \"管理操作组织机密\",\n                \"Self-hosted runners\": \"自托管运行器\",\n                    \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理组织可用的 “操作自托管运行器”。\",\n                \"Team discussions\": \"团队讨论\",\n                    \"Manage team discussions and related comments.\": \"管理团队讨论及相关评论。\",\n                // 变量\n                    \"Manage Actions organization variables.\": \"管理操作组织变量。\",\n                // Web 钩子\n                    \"Manage the post-receive hooks for an organization.\": \"管理组织的接收后钩子。\",\n\n            \"This token will be ready for use immediately.\": \"该令牌将即可可用。\",\n\n            \"New personal access token\": \"新建个人访问令牌\",\n                \"Your new personal access token\": \"您的新个人访问令牌\",\n                \"will be ready for use immediately. It will expire on\": \"将立即准备就绪，可供使用。其有效期至\",\n                // [/(.+) grants you/, \"$1 授予您\"],\n                // [/(\\d+) account permissions?/, \"$1 项账户权限\"],\n                // [/(\\d+) permissions? for all repositories:/, \"所有仓库的 $1 项权限\"],\n                // [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 个仓库的 $2 项权限\"],\n                // [/(\\d+) organization permissions?/, \"$1 项组织权限\"],\n                \"Generating...\": \"生成中…\",\n\n        // 查看、更新精细化个人访问令牌 https://github.com/settings/personal-access-tokens/<id>\n            \"No description\": \"暂无描述\",\n            \"Created\": \"创建于\",\n                \"today\": \"今日\",\n\n            \"Access on\": \"访问:\",\n            \"Access on the\": \"访问:\",\n            \"organization\": \"组织\",\n\n            \"User permissions\": \"用户权限\",\n            \"Repository permissions\": \"仓库权限\",\n            \"Organization permissions\": \"组织权限\",\n\n\n            // 具体权限暂时翻译 太麻烦 主要他将读/写具体的权限合并描述\n\n            // 顶部提醒\n                \"Your personal access token has been updated\": \"您的个人访问令牌已更新\",\n\n        // 重新生成精细化个人访问令牌 https://github.com/settings/personal-access-tokens/<id>/regenerate\n            \"Regenerate fine-grained personal access token\": \"重新生成精细化个人访问令牌\",\n\n        // 开发者设置 - 个人访问令牌（经典） https://github.com/settings/tokens\n            \"Personal access tokens (classic)\": \"个人访问令牌（经典）\",\n            \"Generate new token\": \"生成新令牌\",\n                \"Fine-grained, repo-scoped\": \"精细化、 仓库域\",\n                \"Generate new token (classic)\": \"生成新令牌（经典）\",\n                    \"For general use\": \"一般用途\",\n\n            \"Tokens you have generated that can be used to access the\": \"生成令牌用于访问\",\n\n            \"Expires\": \"有效期至\",\n            \"This token has no expiration date\": \"此令牌未设置有效期\",\n            \"This token has expired\": \"此令牌已过期\",\n            \"Never used\": \"从未使用\",\n\n            // 生成令牌后提醒复制\n                \"Make sure to copy your personal access token now. You won’t be able to see it again!\": \"确保立即复制您的个人访问令牌。您将无法再看到它！\",\n\n            \"Personal access tokens (classic) function like ordinary OAuth access tokens. They can be used instead of a password for Git over HTTPS, or can be used to\": \"个人访问令牌（经典）的功能类似于普通的 OAuth 访问令牌。它们可以用来代替 HTTPS 上 Git 的密码，或者可以用来\",\n            \"authenticate to the API over Basic Authentication\": \"通过 ‘基本身份验证’ 对 API 进行身份验证\",\n\n        // 创建新个人访问令牌（经典） https://github.com/settings/tokens/new\n            \"New personal access token (classic)\": \"新建个人访问令牌（经典）\",\n            \"Note\": \"备注\",\n                \"Note can't be blank\": \"备注不能为空\",\n            \"What’s this token for?\": \"这个令牌有什么用？\",\n\n            \"Expiration\": \"有效期\",\n            // \"This token expires\": \"该令牌有效期至\",\n            \". To set a new expiration date, you must\": \"。要设置一个新的有效期，您必须\",\n\n\n            \"Select scopes\": \"选择作用域\",\n                \"Scopes define the access for personal tokens.\": \"作用域定义了个人令牌的访问范围。\",\n                \"Read more about OAuth scopes.\": \"了解更多关于 OAuth 作用域的信息。\",\n\n            // 权限\n                \"Full control of private repositories\": \"完全控制私有仓库\",\n                \"Access commit status\": \"访问提交状态\",\n                \"Access deployment status\": \"访问部署状态\",\n                \"Access public repositories\": \"访问公共仓库\",\n                \"Access repository invitations\": \"访问仓库邀请\",\n                \"Read and write security events\": \"读写安全事件\",\n                \"Update GitHub Action workflows\": \"更新 GitHub Actions 工作流程\",\n                \"Upload packages to GitHub Package Registry\": \"将包上传到 GitHub Packages 包注册\",\n                \"Download packages from GitHub Package Registry\": \"从 GitHub Packages 包注册表下载包\",\n                \"Delete packages from GitHub Package Registry\": \"从 GitHub Packages 包注册表中删除包\",\n                \"Full control of orgs and teams, read and write org projects\": \"完全控制组织和团队，读写组织项目\",\n                \"Read and write org and team membership, read and write org projects\": \"读写组织和团队成员，读写组织项目\",\n                \"Read org and team membership, read org projects\": \"读取组织和团队成员，读取组织项目\",\n                \"Manage org runners and runner groups\": \"管理组织运行器和运行器组\",\n                \"Full control of user public keys\": \"完全控制用户公钥\",\n                \"Write user public keys\": \"写入用户公钥\",\n                \"Read user public keys\": \"读取用户公钥\",\n                \"Full control of repository hooks\": \"完全控制仓库钩子\",\n                \"Write repository hooks\": \"写入仓库钩子\",\n                \"Read repository hooks\": \"读取仓库钩子\",\n                \"Full control of organization hooks\": \"完全控制组织钩子\",\n                \"Create gists\": \"创建代码片段\",\n                \"Access notifications\": \"访问通知\",\n                \"Update ALL user data\": \" 更新所有用户数据\",\n                \"Read ALL user profile data\": \"读取所有用户个人资料数据\",\n                \"Access user email addresses (read-only)\": \"访问用户电子邮箱地址（只读）\",\n                \"Follow and unfollow users\": \"关注和取消关注用户\",\n                \"Delete repositories\": \"删除仓库\",\n                \"Read and write team discussions\": \"读写团队讨论\",\n                \"Read team discussions\": \"读取团队讨论\",\n                \"Full control of enterprises\": \"完全控制企业\",\n                \"Manage enterprise runners and runner groups\": \"管理企业运行器和运行器组\",\n                \"Read and write enterprise billing data\": \"读写企业计费数据\",\n                \"Read enterprise profile data\": \"读取企业个人数据\",\n                \"Provisioning of users and groups via SCIM\": \"通过 SCIM 配置用户和组\",\n                \"Full control of audit log\": \"完全控制审核日志\",\n                \"Read access of audit log\": \"读取审核日志\",\n                \"Full control of codespaces\": \"完全控制代码空间\",\n                \"Ability to create, read, update, and delete codespace secrets\": \"创建、读取、更新和删除代码空间机密\",\n                \"Full control of GitHub Copilot settings and seat assignments\": \"完全控制 GitHub Copilot 设置和席位分配\",\n                \"View and edit Copilot Business seat assignments\": \"查看和编辑 GitHub Copilot 商业版席位分配\",\n                \"Write org hosted compute network configurations\": \"写入组织托管计算网络配置\",\n                \"Read org hosted compute network configurations\": \"读取组织托管计算网络配置\",\n                \"Full control of projects\": \"完全控制项目\",\n                \"Read access of projects\": \"读取项目\",\n                \"Full control of public user GPG keys\": \"完全控制公共用户 GPG 密钥\",\n                \"(Developer Preview)\": \"（开发者预览版）\",\n                \"Write public user GPG keys\": \"写入公共用户 GPG 密钥\",\n                \"Read public user GPG keys\": \"读取公共用户 GPG 密钥\",\n                \"Full control of public user SSH signing keys\": \"完全控制公共用户 SSH 签名密钥\",\n                \"Write public user SSH signing keys\": \"写入公共用户 SSH 签名密钥\",\n                \"Read public user SSH signing keys\": \"读取公共用户 SSH 签名密钥\",\n\n            \"Generate token\": \"生成令牌\",\n                // 顶部提醒\n                \"Some of the scopes you’ve selected are included in other scopes. Only the minimum set of necessary scopes has been saved.\": \"您选择的一些作用域包含在其他作用域中。只保存了必要作用域的最小集合。\",\n                \"Note has already been taken\": \"备注已存在\",\n\n        // 重新生成个人访问令牌（经典） https://github.com/settings/tokens/<id>/regenerate\n            \"Regenerate personal access token (classic)\": \"重新生成个人访问令牌（经典）\",\n                \"Submitting this form will generate a new token. Be aware that any scripts or applications using this token will need to be updated.\": \"提交此表单将产生一个新的令牌。请注意，任何使用该令牌的脚本或应用将需要更新。\",\n            \"Regenerate token\": \"重新生成令牌\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Expires on ([^ ]+), ([^ ]+) (\\d+) (\\d+)/, function(all, week, month, day, year){\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '有效期至 ' + year + '年' + monthKey[month] + day + '日，' + weekKey[week];\n        }],\n        [/(\\d+) days? \\((.+)\\)/, (match, d , p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return d + `天（${translatedDate}）`;\n        }],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"],\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 月之内\"],\n        [/Last used within the last (\\d+) years?/, \"最后一次使用是最近 $1 年之内\"],\n        [/Limit set by ([^ ]+) organization/, \"由 $1 组织设定的限制\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选定 $1 个仓库\"],\n        // 新建个人访问令牌对话框\n            [/(.+) grants you/, \"$1 授予您\"],\n            [/(\\d+) account permissions?/, \"$1 项账户权限\"],\n            [/(\\d+) permissions? for all repositories:/, \"所有仓库的 $1 项权限\"],\n            [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 个仓库的 $2 项权限\"],\n            [/(\\d+) organization permissions?/, \"$1 项组织权限\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Fine-grained Personal Access Tokens\": \"精细化的个人访问令牌\",\n            \"New Fine-grained Personal Access Token\": \"新建精细化个人访问令牌\",\n            \"Personal Access Tokens (Classic)\": \"个人访问令牌（经典）\",\n            \"New Personal Access Token (Classic)\": \"新建个人访问令牌（经典）\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings/tokens\"] = I18N[\"zh-CN\"][\"settings/personal-access-tokens\"];\n\n// 仓库相关==\nI18N[\"zh-CN\"][\"repository-public\"] = { // 仓库 - 公共部分\n    \"static\": { // 静态翻译\n        // 仓库页面 /<user-name>/<repo-name>/\n            // 被 GitHub 官方禁用\n            \"This repository has been disabled.\": \"此仓库已被禁用。\",\n            \"Access to this repository has been disabled by GitHub Staff due to a violation of GitHub's terms of service. If you are the owner of the repository, you may reach out to GitHub Support for more information.\": \"由于违反了 GitHub 的服务条款，GitHub 已禁止访问此仓库。如果您是仓库的所有者，您可以联系 GitHub 支持以获取更多信息。\",\n\n            // 仓库地址-浮动信息窗口(仅 Android UA)\n            \"Navigate back to\": \"返回到\",\n\n            // 顶部提示\n            \"Sorry, that branch already exists.\": \"抱歉，该分支已存在。\",\n            \"has invited you to collaborate on this repository\": \"邀请您成为该仓库协作者\",\n                \"View invitation\": \"查看\",\n            \"Updated issue templates for this repository\": \"已为此仓库更新议题模板\",\n\n            // 存档\n            \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已被所有者存档。它现在是只读的。\",\n\n            \"Appearance settings\": \"外观设置\", // 未登录时出现\n                \"Increase contrast\": \"高对比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根据您的系统设置，为浅色或深色模式（或两者）启用高对比度\",\n                    \"Light mode\": \"浅色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"On\": \"开\",\n                    \"Off\": \"关\",\n\n            // 仓库违反 DMCA\n            \"Repository unavailable due to DMCA takedown.\": \"由于 DMCA 删除，仓库不可用。\",\n            \"This repository is currently disabled due to a DMCA takedown notice. We have disabled public access to the repository. The notice has been\": \"由于 DMCA 删除通知，此仓库当前已被禁用。我们已经禁止公众访问该仓库。该通知已\",\n            \"publicly posted\": \"公开发布\",\n            \"If you are the repository owner, and you believe that your repository was disabled as a result of mistake or misidentification, you have the right to file a counter notice and have the repository reinstated. Our help articles provide more details on our\": \"如果您是仓库所有者，并且您认为您的仓库由于错误或误认而被禁用，您有权提交反通知并恢复仓库。我们的帮助文章提供了关于我们的更多详细信息\",\n            \"DMCA takedown policy\": \"DMCA 删除政策\",\n            \"how to file a counter notice\": \"如何提交反通知\",\n            \". If you have any questions about the process or the risks in filing a counter notice, we suggest that you consult with a lawyer.\": \"。如果您对提交反通知的流程或风险有任何疑问，我们建议您咨询律师。\",\n\n            // 仓库包含危险内容\n            \"This repository contains malicious content that may cause technical harms. We have decided to preserve this content for security research purposes. Please exercise CAUTION when clicking links, downloading releases, or otherwise interacting with this repository.\": \"此仓库包含恶意内容，可能导致技术性损害。出于安全研究目的，我们决定保留此内容。在点击链接、下载发行版或与此仓库进行任何交互时，请务必谨慎。\",\n            \"Discover other projects on GitHub\": \"在 GitHub 上探索其他仓库\",\n            \"View repository\": \"查看仓库\",\n            \"Additional resources\": \"更多资源\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n\n             // 用户 浮动信息卡\n                \"- same time\": \"- 时间相同\",\n                \"Recently edited these files\": \"最近编辑过这些文件\",\n                \"Owns this repository\": \"拥有该仓库\",\n                \"Left a review\": \"留下了一个评论\",\n                \"Committed to this repository\": \"已提交过这个仓库\",\n                \"Committed to this repository in the past day\": \"最近一天里已提交过这个仓库\",\n                \"Committed to this repository in the past week\": \"最近一周里已提交过这个仓库\",\n                \"Committed to this repository in the past month\": \"最近一个月里已提交过这个仓库\",\n                \"Member of\": \"隶属组织\",\n                // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n                \"Opened this issue\": \"打开了该议题\",\n                \"Opened this pull request\": \"打开了该拉取请求\",\n                \"Opened this pull request (their first ever)\": \"打开了该拉取请求（他们有史以来的第一个请求）\",\n                \"Started this discussion\": \"开启了该讨论\",\n\n            // 组织  浮动信息卡\n                // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n                // [/(\\d+) members?/, \"$1 个成员\"],\n\n            \"Some checks haven't completed yet\": \"部分检查还未完成\",\n            \"Started\": \"开始于\",\n            \"— This check has started...\": \"— 检查已开始...\",\n\n            \"Jump to bottom\": \"跳到底部\", //小屏模式\n            \"Forked from\": \"复刻自\", // 同上（发行版未登录页面）\n\n            \"people\": \"人\", // 提交\n            \"committed\": \"提交于\", // 提交浮窗\n            \"authored\": \"撰写于\",\n            \"authored and\": \"撰写和\", // 1 编写，由 2 提交\n\n            // 标签栏\n            \"Code\": \"代码\",\n            \"Pull requests\": \"拉取请求\",\n            \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"项目\",\n            \"Models\": \"模型\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"设置\",\n\n            \"Additional navigation options\": \"更多导航选项\", // 小屏\n            \"View all files\": \"查看所有文件\", //Android UA 下出现\n\n            // \"Pulse\": \"统计\",\n            // \"Graphs\": \"图表\",\n\n            // 返回通知页状态条\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Subscribe\": \"订阅\",\n            \"Unsubscribe\": \"退订\",\n            \"Mark as read\": \"标记为已读\",\n            \"Mark as unread\": \"标记为未读\",\n            \"Move to inbox\": \"移动到收件箱\",\n            \"Save\": \"保存\",\n            \"Unsave\": \"未保存\",\n\n            // 评论框头部栏 (议题 & 拉取请求)\n                \"Contributor\": \"贡献者\",\n                \"Owner\": \"所有者\",\n                \"Author\": \"作者\",\n                    \"You are the author of this issue\": \"您是这个议题的作者。\",  // 议题\n                    \"You are the author of this pull request.\": \"您是这个拉取请求的作者。\", // 拉取请求\n                    \"This user is the author of this issue\": \"该用户是这个议题的作者。\",  // 议题\n                    \"This user is the author of this issue.\": \"该用户是这个议题的作者。\",// 拉取请求\n                    \"This user is the author of this pull request.\": \"该用户是这个拉取请求的作者。\",// 拉取请求\n                \"Member\": \"成员\",\n                    //[/This user is a member of the ([^ ]+)./, \"该用户是 $1 组织的成员。\"],\n                \"Collaborator\": \"协作者\",\n                    //[/This user has been invited to collaborate on the ([^ ]+) repository./, \"该用户已被邀请在 $1 仓库上进行协作。\"],\n                \"Pick your reaction\": \"选择您的表情\",\n                \"Copy link\": \"复制链接\",\n                \"Quote reply\": \"引用回复\",\n                \"Reference in new issue\": \"引用到新议题\",\n                    // 引用到新议题 对话框\n                    \"Body\": \"正文\",\n                    \"Issue title\": \"议题标题\",\n                    \"Issue body\": \"议题正文\",\n                    \"Select repository\": \"选择仓库\",\n                    \"Repository:\": \"仓库：\",\n                    \"No matching repositories.\": \"没有匹配的仓库。\",\n                \"Report content\": \"举报内容\",\n                \"Report\": \"举报\",\n                // 评论删除提醒\n                    \"Are you sure you want to delete this?\": \"您定要删除这个吗？\",\n\n                \"commented\": \"评论于\",\n                \"commented on behalf of\": \"评论，代表\",\n                \"— with\": \"— 通过\",\n                \"Update comment\": \"更新评论\",\n                \"Hide\": \"隐藏\",\n                    \"via email\": \"通过邮件\",\n\n                \"created\": \"创建\",\n                \"edited\": \"编辑\",\n                \"(most recent)\": \"(最近的)\",\n                \"(deleted)\": \"(已删除)\",\n                \"deleted this content\": \"删除了该内容\",\n                // 评论历史查看\n                \"Options\": \"选项\",\n                // 选项下拉菜单\n                \"More options\": \"更多选项\",\n                \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修订版不能被删除。需要删除敏感信息？请到信息的具体编辑处修改。\",\n                \"Delete revision from history\": \"从历史记录中删除修订\",\n                \"This edit’s content will no longer be visible.\": \"此修改的内容将不再可见。\",\n                    \"Delete revision\": \"删除修订\",\n                // 评论状态\n                \"This comment has been hidden.\": \"此评论被隐藏。\",\n                \"This comment was marked as abuse.\": \"此评论被标记为滥用。\",\n                \"This comment was marked as spam.\": \"此评论被标记为垃圾信息。\",\n                \"This comment was marked as off-topic.\": \"此评论被标记为偏离主题。\",\n                \"This comment was marked as outdated.\": \"此评论被标记为已过时。\",\n                \"This comment was marked as duplicate.\": \"此评论被标记为重复。\",\n                \"This comment was marked as resolved.\": \"此评论被标记为已解决。\",\n                \"Sign in to view\": \"登录后查看\", // 未登录\n\n            // 切换分支/标签 下拉菜单\n                \"Switch branches/tags\": \"切换分支/标签\",\n                \"Find or create a branch…\": \"查找或创建分支…\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Filter branches/tags\": \"搜索分支/标签\",\n                \"Branches\": \"分支\",\n                \"default\": \"默认\",\n                \"View all branches\": \"查看全部分支\",\n                \"Find a tag\": \"查找标签\",\n                \"Tags\": \"标签\",\n                \"Tag\": \"标签\",\n                \"Search for a tag\": \"搜索标签\",\n                \"Nothing to show\": \"暂无\",\n                \"View all tags\": \"查看全部标签\",\n\n                \"Find or create a branch...\": \"查找或创建分支…\",\n                \"Search or create a new tag\": \"搜索或创建新标签\",\n                \"View all\": \"查看全部\",\n                \"branches\": \"分支\",\n                \"Find a tag...\": \"查找标签…\",\n                \"Nothing to show\": \"暂无\",\n                \"tags\": \"标签\",\n\n                \"View all rules\": \"查看全部规则\",\n\n            // 键盘快捷键\n                \"Open in codespace\"  : \"在代码空间中打开\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Open cs.github.com in a new tab\": \"在新标签页中打开 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二级搜索栏\",\n                \"Go to Code\"                 : \"跳转到代码\",\n                \"Go to Issues\"               : \"跳转到议题\",\n                \"Go to Pull Requests\"        : \"跳转到拉取请求\",\n                \"Go to Actions\"              : \"跳转到操作\",\n                \"Go to Projects\"             : \"跳转到项目\",\n                \"Go to Wiki\"                 : \"跳转到 Wiki\",\n                \"Go to Discussions\"          : \"跳转到讨论\",\n\n                \"Copilot chat\": \"Copilot 聊天\",\n                \"Open Copilot chat\": \"打开 Copilot 聊天\",\n                \"Close Copilot chat\": \"关闭 Copilot 聊天\",\n                \"Expand/collapse Copilot chat\": \"展开/折叠 Copilot 聊天\",\n\n            // 议题\n                \"Submit comment\": \"提交评论\",\n                \"Submit comment and close issue\": \"提交评论并关闭议题\",\n                \"Preview comment\": \"预览评论\",\n                \"Create issue\": \"创建议题\",\n                // \"筛选用户\": \"\",\n                \"Filter by or edit assignees\"  : \"按受理人筛选或编辑受理人\",\n                \"Filter by or edit labels\"     : \"按标签筛选或编辑标签\",\n                \"Filter by or edit projects\"   : \"按项目筛选或编辑项目\",\n                \"Filter by or edit milestones\" : \"按里程碑筛选或编辑里程碑\",\n                \"Reply (quoting selected text)\": \"答复（引用所选文本）\",\n                \"Open saved replies\": \"打开快捷回复（引用所选文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回复（打开快捷回复）\",\n\n                \"Pull request list\": \"拉取请求列表\",\n                    \"Open pull request\"  : \"打开拉取请求\",\n                \"Pull request - Conversation tab\": \"拉取请求 - 对话标签卡\",\n                    \"Submit comment and close or open pull request\": \"提交评论和关闭或打开拉取请求\",\n                    \"Request reviewers\": \"请求审查者\",\n                    \"Link an issue or pull request from the same repository\": \"链接同一仓库的议题或拉取请求\",\n                    \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切换所有折叠审查意见的可见性，而不仅仅是当前的审查意见\",\n                \"Pull request - Files changed tab\": \"拉取请求 - 文件更改标签卡\",\n                    \"Open commits list\": \"打开提交列表\",\n                    \"Open files list\": \"打开文件列表\",\n                    \"Next commit\": \"下一个提交\",\n                    \"Previous commit\": \"上一个提交\",\n                    \"Show or hide annotations\": \"显示或隐藏批注\",\n                    \"Show or hide comments\": \"显示或隐藏评论\",\n                    \"Submit a review comment\": \"提交审查意见\",\n                    \"Collapse or expand all files instead of just the current one\": \"折叠或展开所有文件，而不仅仅是当前文件\",\n                    \"and click\": \"和点击\",\n\n            // 高频词\n                \"Merged\": \"已合并\",\n                \"Draft\": \"草案\",\n                \"Branch\": \"分支\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"标签\",\n\n            \"Compare & pull request\": \"比较 & 拉取请求\",\n\n        // 仓库 404 页面（非删库状态）\n            \"404 - page not found\": \"404 - 找不到页面\",\n            \"The\": \"该\",\n            \"branch of\": \"分支\",\n            \"does not contain the path\": \"仓库，不包含路径\",\n            \"Return to the repository overview\": \"返回仓库概述\",\n            \"Cannot find a valid ref in\": \"未找到有效的引用\",\n            \"Go to default branch\": \"跳转到默认分支\",\n\n        // 500 页面\n            \"Looks like something went wrong!\": \"好像出了什么问题！\",\n            \"We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.\": \"我们会自动跟踪这些错误，但如果问题仍然存在，请随时与我们联系。与此同时，尝试刷新。\",\n            \"Contact Support\": \"联系 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 状态\",\n\n        // 页面加载异常(仓库)\n            \"Error loading page\": \"加载页面出错\",\n            \"It looks like your internet connection is down. Please check it.\": \"您的网络连接似乎出现故障。请检查一下。\",\n\n        // 邀请继任者提醒\n            \"Ensure the future of your work!\": \"确保您工作的未来！\",\n            \"Consider inviting another GitHub user to be your successor.\": \"考虑邀请另一位 GitHub 用户作为您的继任者。\",\n            \"Inviting a successor helps ensure the continuity of your work in case you are unable to access your account.\": \"邀请继任者有助于在您无法访问账户时确保工作的连续性。\",\n            \"Invite a successor\": \"邀请继任者\",\n\n        // 仓库赞助\n            \"Couldn't load subscription status.\": \"无法加载赞助状态。\",\n            \"Retry\": \"重试\",\n\n        // 提交检查对话框\n            \"Some checks haven’t completed yet\": \"部分检查尚未完成\",\n            \"Some checks were not successful\": \"部分检查未成功\",\n            \"All checks have passed\": \"所有检查通过\",\n            \"All checks have failed\": \"所有检查失败\",\n            \"Waiting to run this check...\": \"正在等待运行此检查…\",\n            \"Queued\": \"队列中\",\n            \"Skipped\": \"已跳过\",\n            \"Deployed\": \"已部署\",\n            \"Pending\": \"待处理\",\n            \"Build Failed\": \"构建失败\",\n            \"Build Passed\": \"构建通过\",\n            \"Build Errored\": \"构建错误\",\n            \"Build Canceled\": \"构建取消\",\n            \"Waiting for build\": \"等待构建\",\n\n        // 未登录浮窗\n            \"You must be signed in to change notification settings\": \"您必须登录后才能更改通知设置\",\n            \"You must be signed in to star a repository\": \"您必须登录后才能标星仓库\",\n            \"You must be signed in to add this repository to a list\": \"您必须登录后才能将此仓库添加到列表中\",\n            \"You must be logged in to vote\": \"您必须登录后才能投票\",\n\n        \"Open commit details\": \"打开提交详情\",\n        \"failure\": \"失败\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Started (\\d+) discussions? in this repository in the past day/, \"过去一天内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository in the past week/, \"过去一周内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository in the past month/, \"过去一个月内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository/, \"在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Opened this pull request \\(their first in ([^ ]+)\\)/, \"打开了这个拉取请求（首次在 $1 发表）\"], // 用户 浮动信息卡\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您发表评论\"], // 拉取请求 浮动信息卡\n        [/(\\d+) successful checks?/, \"$1 个成功的检查\"],\n        [/(\\d+) successful/, \"$1 成功\"],\n        [/(@\\S+) generated this status\\./, \"$1 创建了这个状态\"],\n        [/Successful in (\\d+)s/, \"在 $1 秒内成功\"],\n        [/Successful in (\\d+)m/, \"在 $1 分内成功\"],\n        [/(\\d+) failing checks?/, \"$1 个失败的检查\"],\n        // 3 skipped\n        [/(\\d+) skipped/, \"$1 个跳过\"],\n        [/Failing after (\\d+)s/, \"在 $1 秒后失败\"],\n        [/(\\d+) in progress check/, \"$1 个正在运行的检查\"],\n        // [/ and /, \" 和 \"],\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/^(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        [/Answered (\\d+) discussions? in this repository in the past month/, \"过去一个月内在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Answered (\\d+) discussions? in this repository in the past week/, \"过去一周内在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Answered (\\d+) discussions? in this repository/, \"在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/had recent pushes (\\d+) seconds? ago/, \"分支有了最新的推送，$1 秒之前\"],\n        [/had recent pushes (\\d+) minutes? ago/, \"分支有了最新的推送，$1 分钟之前\"],\n        [/had recent pushes less than (\\d+) minutes? ago/, \"分支有了最新的推送，不到 $1 分钟\"],\n        [/had recent pushes about/, \"分支有了最新的推送，大约\"],\n        [/This user is a member of the ([^ ]+) organization./, \"该用户是 $1 组织的成员。\"],\n        [/This user has been invited to collaborate on the ([^ ]+) repository./, \"该用户已被邀请在 $1 仓库上进行协作。\"],\n        [/You are the owner of the (.*) repository./, \"您是 $1 仓库的所有者。\"],\n        [/This user is the owner of the (.*) repository./, \"该用户是 $1 仓库的所有者。\"],\n        [/You have been invited to collaborate on the (.*) repository./, \"您已受邀参与 $1 仓库的协作。\"],\n        [/You have previously committed to the (.*) repository./, \"您之前有提交到 $1 仓库。\"],\n        [/This user has previously committed to the (.*) repository./, \"该用户之前有提交到 $1 仓库。\"],\n        [/This repository was archived by the owner on (.+). It is now read-only./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `此仓库已由所有者于${translatedDate}存档。它现在是只读的。`;\n        }],\n        [/, and ([^ ]+)/, \", 和 $1\"],\n        [/reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes) emoji/, function (all, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return reactedKey[reacted];\n        }],\n        // 成为协作者提示\n        [/You now have push access to the ([^ ]+) repository./, \"您现在拥有推送至 $1 仓库的权限\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n        // 提交 - 作者窗\n        [/(\\d+) authors?/, \"$1 作者\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-new-repo\"] = {// 仓库 - 新建/导入/复刻仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 新建仓库 https://github.com/new\n            \"Create a new repository\": \"新建仓库\",\n                \"A repository contains all project files, including the revision history.\": \"仓库包含项目中的所有文件，包括修订历史记录。\",\n                \"Already have a project repository elsewhere?\": \"在其他地方已有仓库？\",\n                \"Import a repository\": \"导入仓库\",\n                \"Required fields are marked with an asterisk (*).\": \"带星号 (*) 的为必填项。\",\n\n            \"🎉 Try the new experience\": \"🎉 尝试新版页面\",\n\n            \"Repository template\": \"仓库模板\",\n                \"Fetching templates…\": \"正在获取模板…\",\n                \"No template\": \"不设置模板\",\n                \"No templates available.\": \"无可用模板。\",\n                \"Start your repository with a template repository's contents.\": \"使用模板仓库的内容新建仓库。\",\n\n            \"Owner\": \"所有者\",\n            \"Repository name\": \"仓库名称\",\n            \"Great repository names are short and memorable. Need inspiration? How about\": \"好的仓库名称应该简单且容易记忆。需要灵感吗？这个怎么样：\",\n                \"Checking availability…\": \"检查可用性…\",\n                \"is available.\": \"名称可用。\",\n                \"The repository\": \"仓库\",\n                \"already exists on this account\": \"已经存在于此账户\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                \"New repository name must not be blank\": \"新仓库名称不能为空\",\n\n                // 用户名同名仓库\n                \"You found a secret!\": \"您发现了一个秘密！\",\n                \"is a ✨\": \"是一个 ✨\",\n                \"special\": \"特别的\",\n                \"✨ repository that you can use to add a\": \"✨ 仓库，您可以用它来添加一个\",\n                \"to your GitHub profile. Make sure it’s public and initialize it with a\": \"到您的 GitHub 个人资料。确保它是公开的，并在初始化时加入一个\",\n                \"to get started.\": \"以便开始工作。\",\n                 // 组织 .github 仓库\n                \"to your organization's GitHub profile. Make sure it’s public and initialize it with a\": \"到您组织的 GitHub 个人资料。确保它是公开的，并在初始化时加入一个\",\n                \"in the\": \"在\",\n                \"directory to get started.\": \"目录下以便开始工作。\",\n\n                // 组织仓库\n                \"You may not create private repositories by organization policy.\": \"根据组织政策，您不能创建私有仓库。\",\n\n            \"Description\": \"描述\",\n                \"(optional)\": \"(可选)\",\n            \"Public\": \"公共\",\n                \"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            \"Private\": \"私有\",\n                \"You choose who can see and commit to this repository.\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Initialize this repository with:\": \"使用以下方式初始化此仓库：\",\n                // \"Skip this step if you’re importing an existing repository.\": \"如果您要导入现有仓库，请跳过此步骤。\",\n                \"Add a README file\": \"添加 README 文件\",\n                    \"This is where you can write a long description for your project.\": \"您可以在此处为您的项目编写详细描述。\",\n                    \"Learn more about READMEs.\": \"了解更多关于 README 的信息。\",\n            \"Add .gitignore\": \"添加 .gitignore 文件\",\n                \"Choose which files not to track from a list of templates.\": \"从模板列表中选择哪些文件不需要跟踪。\",\n                \"Learn more about ignoring files.\": \"了解更多关于忽略文件的信息。\",\n                \".gitignore template:\": \".gitignore 模板：\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"筛选…\",\n                    \"None\": \"无\",\n\n                    // 筛选 - 无模板\n                    \"You haven't created any items yet\": \"您尚未创建任何项目\",\n                        \"Please add or create new items to populate the list.\": \"请添加或创建新项目以填充列表。\",\n            \"Choose a license\": \"选择许可证\",\n                \"A license tells others what they can and can't do with your code.\": \"许可证告诉其他人，他们可以使用您的代码做什么和不能做什么。\",\n                \"Learn more about licenses.\": \"了解更多关于许可证的信息。\",\n\n                \"License:\": \"许可证：\",\n                    \"License\": \"许可证\",\n\n            // 市场应用列表\n            \"Grant your Marketplace apps access to this repository\": \"授予市场应用访问该仓库的权限\",\n            \"You are\": \"您\",\n            \"subscribed to\": \"订阅了\",\n            \"Marketplace app\": \"个市场应用\",\n            \"s\": \" \",\n\n            \"You are creating a public repository in your personal account.\": \"您正在个人账户中创建公共仓库\",\n            \"You are creating a private repository in your personal account.\": \"您正在个人账户中创建私有仓库\",\n\n            \"This will set\": \"这将设置\",\n            \"as the default branch.\": \"为默认分支。\",\n            \"Change the default name in\": \"变更默认名称在\",\n            \"your\": \"您的\",\n            \"settings\": \"设置\",\n\n            \"Create repository\": \"创建仓库\",\n            \"Creating repository...\": \"创建仓库中…\",\n\n        // 依据模板新建仓库 https://github.com/new?template_owner=<template-owner>&template_name=<template-name>\n            \"Include all branches\": \"包括所有分支\",\n                \"Copy all branches from\": \"复制所有\",\n                \"and not just the default branch.\": \"仓库分支，而不仅仅是默认分支。\",\n\n                \"If enabled, all branches from the template repository will be included.\": \"如果启用，将包含来自模板仓库的所有分支。\",\n\n        // 导入仓库 第一页 https://github.com/new/import\n            \"Import your project to GitHub\": \"将您的项目导入到 GitHub\",\n                \"Import all the files, including revision history, from another version control system.\": \"导入的所有文件，包括修订历史记录，来自其他版本控制系统。\",\n                \"Support for importing Mercurial, Subversion and Team Foundation Version Control (TFVC) repositories ended on April 12, 2024. For more details, see the\": \"对导入 Mercurial、Subversion 和 Team Foundation 版本控制 (TFVC) 仓库的支持已结束于 2024 年 4 月 12 日。有关详细信息，请参阅\",\n                \"changelog\": \"更新日志\",\n\n            \"Your source repository details\": \"您源仓库的详情\",\n            \"The URL for your source repository\": \"您源仓库的 URL\",\n                \"Learn more about the types of\": \"了解更多关于\",\n                \"importing git repositories\": \"导入 Git 仓库\",\n\n            \"Please enter your credentials if required for cloning your remote repository.\": \"如果需要克隆远程仓库，请输入您的凭据。\",\n            \"Your username for your source repository\": \"源仓库用户名\",\n            \"Your access token or password for your source repository\": \"源仓库的访问令牌或密码\",\n\n            \"Your new repository details\": \"新仓库详情\",\n            //\"Owner\": \"所有者\",\n            // \"Repository name\": \"仓库名称\",\n                // \"is available.\": \"名称可用。\",\n                //\"The repository\": \"仓库\",\n                //\"already exists on this account.\": \"已经存在于此账户。\",\n                //\"Your new repository will be created as\": \"您的新仓库将被创建为\",\n            //\"Public\": \"公共\",\n            //\"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            //\"Private\": \"私有\",\n            //\"You choose who can see and commit to this repository.\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Cancel\": \"取消\",\n            \"Begin import\": \"开始导入\",\n            \"Preparing import…\": \"准备导入…\",\n            \"Importing commits and revision history to GitHub...\": \"导入提交和修订历史到 GitHub…\",\n\n        // 导入仓库 第一页 /<user-name>/<repo-name>/import\n            \"Import all the files, including the revision history, from another version control system.\": \"导入的所有文件，包括修订历史记录，来自其他版本控制系统。\",\n            \"Your old repository’s clone URL\": \"您旧仓库的克隆地址\",\n            \"supported VCS.\": \"VCS 的支持。\",\n            \"Your existing repository\": \"您已存在的仓库\",\n            \"Change repository\": \"选择仓库\",\n\n        // 导入仓库 第二页 /<user-name>/<repo-name>/import\n            \"Your import will begin shortly...\": \"导入即将开始…\",\n            \"Preparing your new repository\": \"准备您的新仓库\",\n                \"There is no need to keep this window open, we’ll email you when the import is done.\": \"无需保持此窗口，导入完成后我们会通过电子邮件通知您。\",\n                \"There is no need to keep this window open. We'll email you when the import is done.\": \"无需保持此窗口，导入完成后我们会通过电子邮件通知您。\",\n            \"Detecting your project’s version control system…\": \"正在检测项目的版本控制系统…\",\n            \"Importing commits and revision history…\": \"导入提交和修订历史…\",\n            // [/Updating branches and (\\d) commit authors?…/, \"更新分支和 $1 个提交者…\"],\n            \"Optimizing repository and pushing commits to GitHub…\": \"优化仓库并将提交推送到 GitHub…\",\n            \"Importing complete! Your new repository\": \"导入完成！您的新仓库\",\n            \"is ready.\": \"已准备就绪。\",\n\n        // 复刻仓库 /<user-name>/<repo-name>/fork\n            \"Create a new fork\": \"创建新复刻\",\n                \"A\": \" \",\n                \"fork\": \"复刻\",\n                \"is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project.\": \"是一个仓库的副本。复刻仓库可以让您在不影响原项目的情况下自由地进行修改实验。\",\n                \"View existing forks.\": \"查看现有复刻。\",\n\n            \"No available destinations to fork this repository.\": \"没有复刻此仓库的可用目标。\",\n            \"Creating fork…\": \"正在创建复刻…\",\n\n            // \"Owners\": \"所有者\",\n                \"Search owners\": \"搜索\",\n                \"Choose an owner\": \"选择所有者\",\n                    \"(fork already exists)\": \"(复刻已存在)\",\n            // \"Repository name\": \"仓库名称\",\n\n                // \"The repository\": \"仓库\",\n                // \"already exists on this account.\": \"已经存在于此账户。\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                    \"The repository name can only contain ASCII letters, digits, and the characters\": \"仓库名称只能包含 ASCII 字母、数字和字符\",\n\n            \"By default, forks are named the same as their upstream repository. You can customize the name to distinguish it further.\": \"默认情况下，复刻的名称与他们的上游仓库相同。您可以自定义名称以进一步区分它。\",\n\n            \"Copy the\": \"仅复制\",\n            \"branch only\": \"分支\",\n\n            \"Contribute back to\": \"回馈给\",\n            \"by adding your own branch.\": \"通过添加您自己的分支。\",\n\n            \"You are creating a fork in your personal account.\": \"您正在向您的个人账户中创建一个复刻。\",\n            \"Create fork\": \"创建复刻\",\n\n        // 新版新建仓库页\n            \"Switch back to classic experience\": \"回到经典页面\",\n            \"Repositories contain a project's files and version history.\": \"仓库包含项目的文件和版本历史。\",\n            \"Have a project elsewhere?\": \"在其他地方已有仓库？\",\n\n            \"General\": \"通常\",\n                \"Great repository names are short and memorable. How about\": \"好的仓库名称应该简单且容易记忆。这个怎么样：\",\n\n            \"Configuration\": \"配置\",\n                \"Choose visibility\": \"选择可见性\",\n                    \"Choose who can see and commit to this repository\": \"选择谁可以查看并提交此仓库\",\n                \"Start with a template\": \"使用模板开始\",\n                    \"Templates pre-configure your repository with files.\": \"模板会用文件预先配置您的仓库。\",\n                \"Add README\": \"添加自述文件\",\n                    \"READMEs can be used as longer descriptions.\": \"自述文件可以用作更长的描述。\",\n                    \"About READMEs\": \"关于自述文件\",\n                // gitignore\n                    \".gitignore tells git which files not to track.\": \".gitignore 告诉 git 不追踪哪些文件。\",\n                    \"About ignoring files\": \"关于忽略文件\",\n\n                    \"Choose a .gitignore template\": \"选择 .gitignore 模板\",\n                        \"Search templates\": \"搜索模板\",\n                        \"No .gitignore\": \"无\",\n                \"Add license\": \"添加许可证\",\n                    \"Licenses explain how others can use your code.\": \"许可证解释其他人如何使用您的代码。\",\n                    \"About licenses\": \"关于许可证\",\n\n                    \"Search licenses\": \"选择许可证\",\n                    \"No license\": \"无\",\n                \"Connect GitHub Apps\": \"连接 GitHub 应用\",\n                    \"Connect this repository to apps\": \"将此仓库连接到\",\n                    \"is subscribed to\": \"订阅的应用\",\n\n                    \"Choose GitHub Apps\": \"选择 GitHub 应用\",\n                    \"Search apps\": \"搜索应用\",\n                    \"Cancel and close\": \"关闭\",\n\n            \"Jumpstart your project with Copilot (optional)\": \"用 Copilot 快速启动您的项目（可选）\",\n                \"Tell Copilot what you want to build in this repository. After creation, Copilot will open a pull request with generated files - such as a basic app, starter code, or other features you describe - then request your review when it's ready.\": \"告诉 Copilot 您想在此仓库中构建什么。在创建完成后，Copilot 会打开一个包含生成文件的拉取请求（例如基础应用、起始代码或您描述的其他功能），然后在准备好后请求您进行审核。\",\n                \"About Copilot coding agent\": \"关于 Copilot 编程智能体\",\n\n                \"Prompt\": \"提示词\",\n                    \"Describe what you want Copilot to build\": \"描述您想让 Copilot 做什么\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // [/([^ ]+) is available\\./,\"$1 名称可用。\"],\n        [/You are creating a public repository in the ([^ ]+) organization./,\"您正在 $1 组织中创建一个公共仓库。\"], // 创建组织的公共仓库\n        [/You are creating a private repository in the ([^ ]+) organization./,\"您正在 $1 组织中创建一个私有仓库。\"], // 创建组织的私有仓库\n        // [/\\(fork already exists\\)/, \"（复刻已存在）\"], // 复刻页面\n        // [/\\(repository already exists\\)/, \"（仓库已存在）\"], // 复刻页面\n        [/You are creating a fork in the ([^ ]+) organization./, \"您正在 $1 组织中创建一个复刻。\"], // 复刻页面\n        [/Updating branches and (\\d+) commit authors?…/, \"更新分支和 $1 个提交者…\"], // 仓库导入第二页\n        //[/Connect this repository to apps ([^ ]+) is subscribed to/, \"将此仓库连接到 $1 订阅的应用程序\"],\n        [/Auto-installed by ([^ ]+)/, \"由 $1 自动安装\"],\n        [/(\\d+) apps? selected/, \"已选择 $1 个应用\"],\n        [/The repository ([^ ]+) already exists on this account/, \"仓库 $1 已存在于此账户\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        // [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New repository\": \"新建仓库\",\n            \"Import repository\": \"导入仓库\",\n        },\n        \"regexp\": [\n            [/Fork/, \"复刻\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"new\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"new/import\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"repository/import\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"repository/fork\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"orgs/repositories/new\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\n\nI18N[\"zh-CN\"][\"repository\"] = { // 仓库页面 /<user-name>/<repo-name>/\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 顶部\n            \"Help us improve GitHub Codespaces\": \"帮助我们改进 GitHub 代码空间\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通过三个简单的问题告诉我们如何让 GitHub 代码空间更适合您。\",\n\n            \"Sorry, couldn’t delete that branch.\": \"抱歉，无法删除此分支。\",\n            \"Copilot will begin working on your prompt in a draft pull request, and will request review from you when ready.\": \"Copilot 将起草一个拉取请求开始处理您的需求，并在准备好后请求您进行审核。\",\n\n        // 代码标签卡 & 仓库首页 /<user-name>/<repo-name>/ 和 /<user-name>/<repo-name>/tree/<branch>\n            // [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名为 $2。\"],\n\n            // 快捷键\n                \"Commands\": \"命令\",\n                \"Clone repository: Copy HTTPS\": \"克隆仓库：复制 HTTPS\",\n                \"Clone repository: Copy SSH\": \"克隆仓库：复制 SSH\",\n                \"Clone repository: Copy GitHub CLI\": \"克隆仓库：复制 GitHub CLI\",\n                \"Copy file permalink\": \"复制文件永久链接\",\n\n            // 操作条\n                \"forked from\": \"复刻自\",\n                \"Public repository · Forked from\": \"公共仓库 · 复刻自\", // Android UA 下出现\n                \"Public repository · Generated from\": \"公共仓库 · 创建自\", // 同上\n                \"Public archive repository\": \"公共存档仓库\",\n                \"Public archive repository · Forked from\": \"公共存档仓库 · 复刻自\",\n                \"generated from\": \"创建自\",\n                \"mirrored from\": \"镜像自\",\n\n                \"Pin\": \"置顶\",\n                    \"Pin this repository to your profile\": \"置顶此仓库到您的个人资料\",\n                    \"No pin slots remaining in your profile\": \"您的个人资料中没有剩余的置顶位\",\n                \"Edit Pins\": \"编辑置顶\",\n                    \"Pin to…\": \"置顶到…\",\n                    \"Profile\": \"个人资料页\",\n                        \"Pin this to your personal profile, visible to everyone\": \"将此置顶到您的个人资料，对所有人可见\",\n                        \"Limit reached\": \"已达上限\",\n                    // 组织仓库\n                    \"Public pins in this organization\": \"该组织的公共置顶\",\n                        \"Visible to anyone\": \"对任何人可见\",\n                    \"Private pins in this organization\": \"该组织的私有置顶\",\n                        \"Visible to members only\": \"仅对成员可见\",\n                \"Unpin\": \"取消置顶\",\n\n                \"Ignoring\": \"忽略\",\n                \"Stop ignoring\": \"取消忽略\",\n                \"Watch\": \"关注\",\n                \"Unwatch\": \"取消关注\",\n\n                \"Star\": \"星标\",\n                \"Unstar\": \"已加星标\",\n                \"Fork\": \"复刻\",\n                \"Unfork\": \"取消复刻\",\n\n                \"Sponsor\": \"赞助\",\n                // 赞助对话框\n                // [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n                \"External links\": \"外部链接\",\n                \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n                \"Report abuse\": \"举报滥用\",\n\n                // 提交栏 GitHub Action\n                \"All checks have passed\": \"已通过所有检查\",\n\n\n                // 关注 & 订阅通知设置 下拉菜单\n                \"Notification settings\": \"通知设置\", //小屏模式\n                \"Subscribe to events for\": \"订阅事件\",\n                \"Notifications\": \"通知类型\",\n                \"Participating and @mentions\": \"参与和 @您\",\n                    \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n                \"All Activity\": \"所有活动\",\n                    \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n                \"Ignore\": \"忽略\",\n                    \"Never be notified.\": \"永不接收通知。\",\n                \"Custom\": \"自定义\",\n                    \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n                \"Get push notifications on\": \"要获取推送通知，使用\",\n                \"Releases\": \"发行版\",\n                    //\"Issues are not enabled for this repository\": \"此仓库未启用议题功能\",\n                \"Discussions\": \"讨论\",\n                    //\"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n                    //\"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n                    \"are not enabled for this repository\": \"功能未启用\",\n                \"Security alerts\": \"安全警报\",\n                //\"Cancel\": \"取消\",\n                \"Apply\": \"应用\",\n\n                // 复刻下拉\n                \"Cannot fork because repository is empty.\": \"无法复刻，因为仓库是空的。\",\n                \"Cannot fork because you own this repository and are not a member of any organizations.\": \"不能复刻，因为您拥有该仓库，而且不是任何组织的成员。\",\n                \"Existing forks\": \"现有的复刻\",\n                \"You don't have any forks of this repository.\": \"您没有此仓库的任何复刻。\",\n                \"Create a new fork\": \"创建复刻\",\n\n                //\n                \"Star this repository\": \"标星仓库\", //小屏模式\n                \"Unstar this repository\": \"取消仓库星标\", //小屏模式\n\n            // 仓库主页 分支保护\n                // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"], // 仓库主页 分支保护\n                \"Your\": \"您的\",\n                \"branch isn't protected\": \"分支不受保护\", // 新版仓库概述\n                \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保护此分支免受强制推送或删除，或在合并前要求状态检查。\",\n                \"View documentation.\": \"查看文档\",\n                \"Protect this branch\": \"保护该分支\",\n                \"Dismiss\": \"忽略\",\n\n            // 仓库主页 Dependabot 警告框\n                \"We found potential security vulnerabilities in your dependencies.\": \"我们在您的依赖项中发现了潜在的安全漏洞。\",\n                \"Only the owner of this repository can see this message.\": \"仅此仓库的所有者可以看到此消息。\",\n                \"See Dependabot alerts\": \"查看 Dependabot 警报\",\n\n            // 空仓库\n                \"This repository is empty.\": \"此仓库是空的。\",\n                \"Care to check out the\": \"是否愿意查看\",\n                \"GitHub Channel on YouTube\": \"YouTube 上的 GitHub 频道\",\n                \"while you wait?\": \"在您等待的时候？\",\n\n            // 已上架的 GitHub Action 项目\n                \"Use this GitHub action with your project\": \"将此 GitHub Actions 用于您的项目\",\n                \"Add this Action to an existing workflow or create a new one\": \"将此操作添加到现有工作流程或创建新工作流程\",\n                \"View on Marketplace\": \"去市场查看\",\n\n            // 未上架的 GitHub Action 项目\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以将此 Action 发布到 GitHub 市场\",\n                \"Draft a release\": \"起草发布\",\n\n            // 访问已删除的分支\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"这个提交不属于本仓库的任何分支，可能属于仓库以外的分支。\",\n\n            // 最近有了新提交提醒\n            // [/had recent pushes less than/, \"有了最近的推送，不到\"], //最近有了新提交提醒\n            // [/had recent pushes/, \"有了最近的推送，\"], //最近有了新提交提醒\n\n            \"Navigate back to\": \"导航回\", // 小屏模式\n\n            // 左侧正文\n\n            // 文档栏目(仅 Andoid UA)\n            \"Menu\": \"菜单\",\n\n            // 自述文件(README.md)\n            \"Filter headings\": \"筛选标题\",\n            \"Edit file\": \"编辑文件\",\n\n            // 默认分支被重命名提醒框\n                \"The default branch has been renamed!\": \"默认分支已重命名!\",\n                \"is now named\": \"已重命名为\",\n                \"If you have a local clone, you can update it by running the following commands.\": \"如果您有一个本地克隆，您可以通过运行以下命令来更新它。\",\n                \"OK, got it\": \"好的，我知道了！\",\n\n                // 上游仓库分支重命名\n                    \"The default branch on the parent repository has been renamed!\": \"上游仓库默认分支已被重新命名!\",\n                    \"renamed its default branch\": \"默认分支重命名为\",\n                    \"You can rename this fork's default branch to match in\": \"您可以重命名此复刻默认分支以匹配，在\",\n                    \"branch settings\": \"分支设置\",\n\n            \"branch\": \"分支\",\n            \"branches\": \"分支\",\n            \"tag\": \"标签\",\n            \"tags\": \"标签\",\n\n            \"Go to file\": \"转到文件\",\n                \"No matches found\": \"未找到匹配项\",\n                \"Go to folder\": \"转到文件夹\",\n                \"See all results\": \"查看所有结果\",\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜单\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上传文件\",\n                \"Upload file\": \"上传文件\", // Android UA\n\n            // 代码 下拉菜单\n                \"Local\": \"本地\",\n                    \"Clone\": \"克隆\",\n                        // HTTPS\n                        \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n                        // SSH\n                        \"You don't have any public SSH keys in your GitHub account.\": \"您的 GitHub 账户中没有任何公共 SSH 密钥。\",\n                        \"You can\": \"您可以\",\n                        \"add a new public key\": \"添加新的公共密钥\",\n                        \", or try cloning this repository via HTTPS.\": \"，或尝试通过 HTTPS 克隆此仓库。\",\n\n                        \"Use a password-protected SSH key.\": \"使用受密码保护的 SSH 密钥。\",\n                        // GitHub CLI\n                        \"Work fast with our official CLI.\": \"使用我们的官方 CLI 快速工作。\",\n                        \"Learn more about the CLI\": \"了解更多关于 CLI 的信息\",\n\n                    \"Open with GitHub Desktop\": \"在 GitHub Desktop 中打开\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 启动中\",\n                            \"If nothing happens,\": \"如果没有响应\",\n                            \"download GitHub Desktop\": \"下载 GitHub Desktop\",\n                            \"and try again.\": \"并重试\",\n                    \"Open with Visual Studio\": \"在 Visual Studio 中打开\",\n                    \"Download ZIP\": \"下载 ZIP 压缩包\",\n\n                    \"Code 55% faster with AI pair programming.\": \"与 AI 一起编程，写代码速度提高55%。\",\n                        \"Start my free trial\": \"开始我的免费试用\",\n                        \"Don't show again\": \"不再显示\",\n\n                    \"Which remote URL should I use?\": \"我应该使用哪个远程 URL ?\",\n                    \"Copy url to clipboard\": \"复制链接到剪贴板\",\n                    // \"Copy to clipboard\": \"复制到剪切板\",\n                    // \"Copied!\": \"✅ 复制成功!\",\n\n                // 代码空间\n                    // 维护提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"this announcement\": \"此公告\",\n                    \"Your workspaces in the cloud\": \"您在云端的工作空间\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Codespace repository configuration\": \"代码空间仓库配置\",\n                        \"New with options...\": \"新建（选项）…\",\n                        \"Configure dev container\": \"配置开发容器\",\n                        \"Set up prebuilds\": \"设置预构建\",\n                        \"Manage codespaces\": \"管理代码空间\",\n                        \"Share a deep link\": \"分享深度链接\",\n                            \"Share codespace configuration\": \"共享代码空间配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"选择共享时要包含此配置中的哪些设置\",\n                            \"Quick start\": \"快速开始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自动创建或使用最新匹配的代码空间。\",\n                            \"Read more about creating a link.\": \"阅读有关创建链接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下代码片段在您自己的页面或 README 中嵌入此配置的 “在 Codespaces 中打开” 按钮。\",\n                        \"What are codespaces?\": \"什么是代码空间？\",\n                    \"No codespaces\": \"尚无代码空间\",\n                    \"You don't have any codespaces with this repository checked out\": \"您没有检出此仓库的任何代码空间\",\n                    \"Opening in codespace\": \"正在打开代码空间\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Learn more about codespaces...\": \"了解更多关于代码空间的信息…\",\n                    \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n\n                    \"On current branch\": \"在当前分支\",\n                        \"No codespaces on current branch\": \"当前分支上没有代码空间\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探险\",\n                    \"Open miniature adventure in web\": \"在网络中打开迷你探险\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打开…\",\n                            \"Open in browser\": \"在浏览器中打开\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"将代码空间显示名称更改为…\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Create branch\": \"创建分支\",\n                        \"Change machine type\": \"更改机器类型\",\n                            \"Change codespace machine type\": \"更改代码空间机器类型\",\n                            \"Machine type\": \"机器类型\",\n                                \"2-core\": \"双核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"联系我们团队\",\n                            \"to enable 32-core or GPU machines.\": \"启用 32 核或 GPU 机器。\",\n                            \"Update codespace\": \"升级代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                        \"Open in Browser\": \"在浏览器中打开\",\n                        \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                        \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                        \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Rename codespace\": \"重命名代码空间\",\n                            \"Name\": \"名称\",\n                        \"Auto-delete codespace\": \"自动删除代码空间\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Checking branch status\": \"检查分支情况\",\n                            \"Create branch\": \"创建分支\",\n                        \"Export changes to a fork\": \"将更改导出到复刻\",\n                            \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                            \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                            \"Create fork\": \"创建复刻\",\n                        \"Change machine type\": \"修改机器类型\",\n                            \"Change codespace machine type\": \"修改代码空间机器类型\",\n                            \"Update codespace\": \"更新代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"No changes\": \"未更改\",\n                    \"Uncommitted changes\": \"未提交更改\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n                    // 删除对话框\n                        \"Are you sure?\": \"您确定吗？\",\n\n                // Copilot\n                    \"Describe a task...\": \"描述任务…\",\n                    \"Start task\": \"开始任务\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n\n\n            \"Use this template\": \"使用此模板\",\n                \"Create a new repository\": \"新建仓库\",\n                \"Open in a codespace\": \"在代码空间中打开\",\n\n            // 个人仓库 当前分支状态\n            \"This branch is\": \"该分支\",\n            \"ahead of\": \"领先于\", // 新版仓库概述\n            \"behind\": \"落后\", // 新版仓库概述\n            \"This branch is up to date with\": \"该分支保持同步与\", // 新版仓库概述\n\n            \"Contribute\": \"贡献\",\n                // 贡献按钮下拉菜单\n                \"This branch is not ahead of the upstream\": \"这个分支不领先于上游\",\n                \"No new commits yet. Enjoy your day!\": \"尚无新提交。祝您愉快！\",\n                \"Open a pull request to contribute your changes upstream.\": \"打开拉取请求以向上游贡献您的更改。\",\n                \"This branch is not behind the upstream\": \"这个分支不落后于上游\",\n                \"Open pull request\": \"打开拉取请求\",\n\n            \"Sync fork\": \"同步复刻\",\n                // 同步复刻按钮下拉菜单\n                \"This branch is out-of-date\": \"此分支已过时\",\n                \"Update branch to merge the latest changes from the upstream repository into this branch.\": \"更新分支，将上游仓库的最新修改合并到本分支。\",\n                // [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通过从上游仓库同步 $1 个提交来更新分支，以使该分支保持最新。\"], // 同步复刻\n                \"Update branch to keep this branch up-to-date by syncing\": \"更新分支以保持该分支与最新状态同步，需要同步\",\n                \"from the upstream repository.\": \"来自上游仓库。\",\n                \"Learn more about syncing a fork\": \"了解更多关于复刻同步的信息\",\n                // [/This branch is not behind the upstream ([^ ]+)/, \"该分支不落后与上游 $1\"], // 同步复刻\n                \"No new commits to fetch. Enjoy your day!\": \"尚无新提交。祝您愉快！\", //相同\n                \"Compare\": \"对比\",\n                \"Update branch\": \"更新分支\",\n\n                \"This branch has conflicts that must be resolved\": \"该分支有必须解决的冲突\",\n                // [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+)commits? will be removed from this branch./, \"丢弃 $1 个提交，以使本分支与上游仓库一致。$2 个提交将从本分支中删除。\"],\n                \"Discard\": \"丢弃\", // 新版仓库概述\n                \"to make this branch match the upstream repository.\": \"，以使本分支与上游仓库一致。\", // 新版仓库概述\n                \"will be removed from this branch.\": \"将从本分支中删除。\", // 新版仓库概述\n                \"You can resolve merge conflicts using the command line and a text editor.\": \"您可以使用命令行和文本编辑器解决合并冲突。\",\n                // [/Discard (\\d+) commits?/, \"丢弃 $1 个提交\"],\n                \"Discarding changes...\": \"放弃更改…\",\n\n                // 顶部提醒\n                    // [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功从上游 $1 获取并合并。\"],\n\n            // \"Choose a head ref\": \"选择一个头引用\",\n\n            // \"There isn’t anything to compare.\": \"没有什么可比较的。\",\n            // \"and\": \"和\",\n            // \"are entirely different commit histories.\": \"是完全不同的提交历史。\",\n            // \"No commit comments for this range\": \"在此范围内没有提交评论\",\n            // \"No new commits yet. enjoy your day!\": \"尚无新提交。祝您愉快！\",\n            // \"Find a branch\": \"查找分支\",\n\n            // 正文\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"failure\": \"失败\",\n            \"success\": \"成功\",\n            \"Approved\": \"已批准\",\n            // [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版仓库概述\n            \"Open commit details\": \"打开提交详细信息\", // TODO: 修复该词条翻译不生效问题\n\n            \"Failed to load latest commit information.\": \"载入最新提交信息失败。\",\n\n            \"View code\": \"查看代码\", //小屏模式\n\n            // 仓库缺失 README 提醒\n            \"Help people interested in this repository understand your project by adding a README.\": \"通过添加 README，帮助对此仓库感兴趣的人了解您的项目。\",\n            \"Help people interested in this repository understand your project.\": \"帮助对此仓库感兴趣的人了解您的项目。\",\n            \"Add a README\": \"添加 README\",\n\n            // 右侧栏\n\n            // 与用户名同名仓库 编辑 README\n            \"is a special repository.\": \"是一个特殊的仓库。\",\n            \"Its\": \"它的\",\n            \"will appear on your public profile.\": \"将出现在您的公开个人资料中。\",\n            \"Edit README\": \"编辑 README\",\n            \"Visit profile\": \"查看资料\",\n\n            \"is special. If you\": \"是特殊的。如果您\",\n            \"make this a public repository\": \"将仓库设置为公开\",\n            \", its\": \"，它的\",\n            \"Go to Settings\": \"前往设置\",\n\n            // 组织下.github 仓库 README\n                \"is a special repository. Create a\": \"是一个特殊的仓库。创建\",\n                \"and it will appear on the organization's profile!\": \"并将出现在该组织资料中!\",\n                \"Add profile README\": \"添加 profile/README\",\n\n                \"is a special repository.\": \"是一个特殊的仓库。\",\n                \"will appear on the organization's profile.\": \"将出现在该组织资料中。\",\n\n            // 组织下.github-private 仓库 README\n                \"Add a README with an overview of your project.\": \"为您项目添加一个概述 README 文件。\",\n                \"The\": \" \",\n                // [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"将出现在 $1 的成员资料中，仅对组织成员可见。\"],\n\n            // \"About\": \"关于\"，\n            \"No description, website, or topics provided.\": \"未提供描述、网站或主题。\",\n            \"Readme\": \"自述文件\",\n            \"README\": \"自述文件\",\n            \"Contributing\": \"贡献指南\",\n            \"View license\": \"查看许可证\",\n                \"GPL-3.0 license\": \"GPL-3.0 许可证\",\n                \"AGPL-3.0 license\": \"AGPL-3.0 许可证\",\n                \"LGPL-3.0 license\": \"LGPL-3.0 许可证\",\n                \"MIT license\": \"MIT 许可证\",\n                \"Apache-2.0 license\": \"Apache-2.0 许可证\",\n                \"OFL-1.1 license\": \"OFL-1.1 许可证\",\n                \"0BSD license\": \"0BSD 许可证\",\n                \"BSD-3-Clause license\": \"BSD-3-Clause 许可证\",\n                \"CC0-1.0 license\": \"CC0-1.0 许可证\",\n                \"WTFPL license\": \"WTFPL 许可证\",\n                \"Unknown\": \"未知\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n            \"Cite this repository\": \"引用此仓库\",\n                \"If you use this software in your work, please cite it using the following metadata.\": \"如果您使用此软件，请使用以下元数据进行引用。\",\n                \"Learn more about CITATION files.\": \"了解更多关于引用文件的信息。\",\n                \"View citation file\": \"查看引用文件\",\n            \"Activity\": \"活动\",\n            \"Custom properties\": \"自定义属性\",\n            \"star\": \"星标\",\n            \"stars\": \"星标\",\n            \"watching\": \"关注\",\n            \"fork\": \"复刻\",\n            \"forks\": \"复刻\",\n            \"Report repository\": \"举报仓库\",\n            \"Public repository\": \"公共仓库\", //小屏模式\n            \"Private repository\": \"私有仓库\", //小屏模式\n\n\n            // 仓库描述编辑 对话框\n            \"Edit repository details\": \"编辑仓库简述\",\n            \"Description\": \"描述\",\n            \"Short description of this repository\": \"简短的描述下您的仓库\",\n            \"Website\": \"网址\",\n            \"Enter a valid URL\": \"请输入有效的 URL\",\n            \"Use your GitHub Pages website\": \"使用您的 GitHub Pages 站点\",\n            \"Topics\": \"主题\",\n            \"(separate with spaces)\": \"（空格分隔）\",\n            \"Suggested:\": \"建议：\",\n                \"Add this topic\": \"接受该建议\",\n                \"Decline this topic\": \"拒绝该建议\",\n                    \"This isn’t relevant\": \"这并不相关\",\n                    \"This is too specific\": \"这太具体了\",\n                    \"This is too general\": \"这太笼统了\",\n                    \"I just don’t like it\": \"我只是不喜欢它\",\n            \"Include in the home page\": \"包含在主页中\",\n\n                // 顶部提醒\n                \"Your repository details have been saved.\": \"您的仓库简述已保存。\",\n\n            \"Releases\": \"发行版\",\n                \"No releases published\": \"未发布任何版本\",\n                \"Latest\": \"最新\",\n                \"Create a new release\": \"创建发行版\",\n            // \"Packages\": \"软件包\",\n                \"No packages published\": \"未发布软件包\",\n                \"Publish your first package\": \"发布软件包\",\n            \"Sponsor this project\": \"赞助本项目\",\n                \"Learn more about GitHub Sponsors\": \"了解更多关于 GitHub 赞助者的信息\",\n            \"Used by\": \"使用者\",\n            \"Contributors\": \"贡献者\",\n            \"Environments\": \"环境\",\n            \"Deployments\": \"部署\",\n                \"+ more deployments\": \"+ 更多部署\",\n            \"Languages\": \"语言\",\n\n            // \"branch\": \"分支\",\n            // \"branches\": \"分支\",\n            // \"release\": \"次发布\",\n            // \"releases\": \"次发布\",\n            // \"contributor\": \"个贡献者\",\n            // \"contributors\": \"个贡献者\",\n\n        // 新版仓库概述\n            // /<user-name>/<repo-name>#coc\n                \"Add a code of conduct\": \"添加行为准则\",\n                \"Define community standards, signal a welcoming and inclusive project, and outline procedures for handling abuse by adding a code of conduct.\": \"通过添加行为准则，明确社区标准，体现项目的欢迎和包容性，并概述处理滥用行为的程序。\",\n\n            // /<user-name>/<repo-name>#license\n                \"License\": \"许可证\",\n                \"Add a license\": \"添加许可证\",\n                \"Add a license to your repository to make it clear how others can use, change, and contribute to your project.\": \"向仓库中添加许可证，以明确其他人可以如何使用、更改您的项目并为您的项目做出贡献。\",\n\n            // /<user-name>/<repo-name>#security\n                \"Add a security policy\": \"添加安全策略\",\n                \"Help your community understand how to securely report security vulnerabilities for your project.\": \"帮助您的社区了解如何安全地报告项目的安全漏洞。\",\n\n        // Action 仓库 右侧栏\n            \"Suggested workflows\": \"建议的工作流程\",\n            \"Based on your tech stack\": \"基于您的技术堆栈\",\n            \"Set up\": \"设立\",\n            \"Configure\": \"设置\",\n            \"More workflows\": \"更多工作流程\",\n            \"Dismiss suggestions\": \"隐藏建议\",\n\n        // 仓库复刻中...\n            // [/Forking ([^ ]+)/, \"复刻 $1 中\"], // 复刻中...\n            \"Generating your repository...\": \"正在创建您的仓库…\",\n            \"It should only take a few seconds.\": \"应该只需要几秒钟的时间。\",\n            \"Refresh\": \"刷新\",\n\n        // 初始化空仓库 /<user-name>/<repo-name>/\n            \"Start coding with Codespaces\": \"使用代码空间开始编程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件并在安全、可配置和专用的开发环境中开始编码。\",\n                \"Create a codespace\": \"创建代码空间\",\n            // 组织仓库\n            \"Set up GitHub Copilot\": \"设置 GitHub Copilot\",\n                \"Use GitHub's AI pair programmer to autocomplete suggestions as you code.\": \"使用 GitHub 的 AI 配对程序员在您编码时自动完成建议。\",\n                \"Get started with GitHub Copilot\": \"开始使用 GitHub Copilot\",\n            \"Add collaborators to this repository\": \"将协作者添加到此仓库\",\n                \"Search for people using their GitHub username or email address.\": \"使用 GitHub 用户名或电子邮件地址搜索人员。\",\n                \"Invite collaborators\": \"邀请协作者\",\n            \"Quick setup\": \"快速安装\",\n            \"— if you’ve done this kind of thing before\": \"- 如果您以前做过这样的事\",\n            \"Set up in Desktop\": \"安装到 GitHub Desktop\",\n            \"Get started by\": \"通过\",\n            \"creating a new file\": \"创建一个新文件\",\n            \"uploading an existing file\": \"上传一个现有的文件\",\n            \". We recommend every repository include a\": \"来开始。我们推荐每个仓库都包括\",\n            \", and\": \"，和\",\n            \"…or create a new repository on the command line\": \"…或在命令行上创建一个新的仓库\",\n            \"…or push an existing repository from the command line\": \"…或从命令行中推送现有的仓库\",\n            \"…or import code from another repository\": \"…或从另一个仓库导入代码\",\n            \"You can initialize this repository with code from a Subversion, Mercurial, or TFS project.\": \"您可以初始化此仓库从一个 Subversion，Mercurial 或 TFS 项目导入。\",\n            \"Import code\": \"导入代码\",\n            \"ProTip!\": \"专业提示！\",\n                \"Use the URL for this page when adding GitHub as a remote.\": \"将 GitHub 添加为远程时，请使用此页面上的 URL。\",\n\n        // 文件管理器 /<user-name>/<repo-name>/tree/<branch>/<文件夹路径>/\n          // /<user-name>/<repo-name>/?search=1\n          // /<user-name>/<repo-name>/tree/?search=1\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Search this repository\": \"搜索此仓库\",\n\n                // 搜索框\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜单\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上传文件\",\n\n            // 新三个点\n                \"Copy path\": \"复制路径\",\n                \"Copy permalink\": \"复制永久链接\",\n                \"Delete directory\": \"删除文件夹\",\n                \"View options\": \"查看选项\",\n                    \"Center content\": \"核心内容\",\n\n            \"Copied path!\": \"✅ 路径已复制！\",\n\n            \"History\": \"历史\",\n\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n            \"Name\": \"文件名\",\n            \"Last commit message\": \"最后提交消息\",\n            \"Last commit date\": \"最后提交时间\",\n\n            // 编辑按钮\n            \"Edit README\": \"编辑 README\", // md 文件\n\n            // 超过 1000 个文件截断提示\n            \"Sorry, we had to truncate this directory to\": \"抱歉，我们已将该目录截断至\",\n                \"files.\": \"文件。\",\n                \"entries were\": \"条目\",\n                \"omitted from the list. Latest commit info may be omitted.\": \"被省略。最新提交信息可能会省略。\",\n\n        // 文件管理器 - 议题模板 /<user-name>/<repo-name>/tree/<branch>/.github/ISSUE_TEMPLATE\n            \"Customize the issue creation experience with a\": \"自定义议题的创建模板使用一个\",\n            \"file.\": \"文件。\",\n            \"Learn more about configuring a template chooser.\": \"了解更多关于配置模板选择器的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // 个人仓库 贡献和同步复刻操作后 信息提示条\n        [/Successfully fetched and fast-forwarded from upstream ([^ ]+)\\./, \"成功从上游 $1 中获取并快速转发。\"],\n        [/Successfully discarded changes and synchronized branch to match upstream ([^ ]+)\\./, \"成功丢弃更改，并将分支与上游 $1 保持同步。\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/commits by (.+)/, \"由 $1 提交\"],\n        [/Signed-off-by: (.*)/, \"签字人：$1\"], // TODO: 修复该词条翻译不生效问题\n        [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名为 $2。\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"], // 仓库主页 分支保护\n        [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版仓库概述\n        [/Create a codespace on (.+)/, \"在 $1 上创建代码空间\"], // 仓库主页 创建代码空间\n        [/Create codespace on (.+)/, \"在 $1 上创建代码空间\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/\\+ ([\\d,]+) releases?/, \"+ $1 个发行版\"], // 仓库首页右侧栏 发行版\n        [/\\+ ([\\d,]+) packages?/, \"+ $1 个软件包\"], // 仓库首页右侧栏 软件包\n        [/\\+ ([\\d,]+) contributors?/, \"+ $1 位贡献者\"], // 仓库首页右侧栏 贡献者\n        [/\\+ ([\\d,]+) environments?/, \"+ $1 个环境\"], // 仓库首页右侧栏 环境\n        [/\\+ ([\\d,]+) deployments?/, \"+ $1 个部署\"], // 仓库首页右侧栏 部署\n        // 同步复刻\n        [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通过从上游仓库同步 $1 个提交来更新分支，以使该分支保持最新。\"],\n        [/This branch is not behind the upstream ([^ ]+)/, \"该分支不落后与上游 $1\"],\n        [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+) commits? will be removed from this branch./, \"丢弃 $1 个提交，以使本分支与上游仓库一致。$2 个提交将从本分支中删除。\"],\n        [/Discard (\\d+) commits?/, \"丢弃 $1 个提交\"],\n        [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功从上游 $1 获取并合并。\"],\n        // 贡献\n        [/This branch is not ahead of the upstream ([^ ]+)\\./, \"该分支并不领先上游 $1。\"],\n        [/This branch is (\\d+) commits? ahead of ([^ ]+)\\./, \"该分支领先上游 $2 $1个提交。\"],\n        // 个人仓库当前分支状态\n        [/This branch is up to date with ([^ ]+)\\./, \"该分支与上游 $1 保持同步。\"],\n        [/(\\d+) commits? ahead/, \"领先 $1 个提交\"],\n        [/(\\d+) commits? behind/, \"落后 $1 个提交\"],\n        [/(\\d+) commits?/, \"$1 个提交\"], // 新版仓库概述\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的电脑。\"],\n        [/Forking ([^ ]+)/, \"复刻 $1 中\"], // 复刻中...\n        [/Fork your own copy of ([^ ]+)/, \"复刻成您自己的 $1 副本\"], // 复刻按钮提示\n        [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"将出现在 $1 的成员资料中，仅对组织成员可见。\"],\n        [/and ([^ ]+) were installed on this repository/, \"和 $1 已安装到此仓库\"], // 顶部提示：市场应用（如果有）\n        [/([^ ]+) and (\\d+) other licenses found/, function(all, lic, num){\n            var licKey = {'Unknown': '未知'};\n            return licKey[lic] + '和另外' + num + '个许可证';\n        }],\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n        [/Copy \\\"(.+)\\\" to clipboard/, \"复制“$1”到剪切板\"],\n        // 代码 -> 代码空间\n        [/(\\d+) changes?/, \"$1 个更改\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您确定要删除吗？\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n            [/(.+) at (.+)/, \"$1 在分支 $2\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/tree\"] = I18N[\"zh-CN\"][\"repository\"];\n\nI18N[\"zh-CN\"][\"repository/milestones\"] = { // 仓库 - 里程碑页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 里程碑页面 /<user-name>/<repo-name>/milestones\n            \"Labels\": \"标签\",\n            \"Milestones\": \"里程碑\",\n\n            \"You haven’t created any Milestones.\": \"您尚未创建任何里程碑。\",\n            \"Use Milestones to create collections of Issues and Pull Requests for a particular release or project.\": \"使用里程碑为特定版本或项目创建议题和拉取请求的集合。\",\n\n            // 组织 仓库 里程碑\n            \"No Milestones found!\": \"没有发现里程碑!\",\n            \"If this project had milestones, we’d show you them here. Promise!\": \"如果该项目有里程碑，我们会在此处向您展示。\",\n\n            \"Create a Milestone\": \"创建里程碑\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序\",\n                \"Recently updated\": \"最近更新\",\n                \"Furthest due date\": \"最迟到期日\",\n                \"Closest due date\": \"最近到期日\",\n                \"Least complete\": \"最不完整\",\n                \"Most complete\": \"最完整\",\n                \"Alphabetical\": \"按字母顺序\",\n                \"Reverse alphabetical\": \"按字母倒序\",\n                \"Most issues\": \"最多的议题\",\n                \"Fewest issues\": \"最少的议题\",\n\n            \"No due date\": \"没有截止日期\",\n            \"issues closed\": \"议题关闭\",\n            // [/Due by (.*)/, \"截止日期 $1\"], // 里程碑截止日期\n            \"Last updated\": \"最后更新\",\n            \"(more)\": \"（更多）\",\n            // 完成进度条\n            \"complete\": \"已完成\",\n            \"open\": \"打开\",\n            \"closed\": \"关闭\",\n\n        // 新建里程碑页面 /<user-name>/<repo-name>/milestones/new\n            \"New milestone\": \"新建里程牌\",\n                \"Create a new milestone to help organize your issues and pull requests. Learn more about\": \"创建一个新的里程碑来帮助组织您的议题和拉取请求。了解更多关于\",\n                \"milestones and issues\": \"里程碑和议题\",\n            \"Title\": \"标题\",\n            \"Due date (optional)\": \"截止日期（可选）\",\n            \"Description\": \"描述\",\n            \"Create milestone\": \"创建里程碑\",\n\n        // 单个里程碑页 /<user-name>/<repo-name>/milestones\n            \"opened\": \"打开于\",\n            \"was closed\": \"关闭于\",\n\n            \"There are no open issues in this milestone\": \"此里程碑没有打开议题\",\n            \"Add issues to milestones to help organize your work for a particular release or project. Find and add\": \"将议题添加到里程碑，有助于为特定的版本或项目组织您的工作。在此仓库中查找并添加\",\n            \"issues with no milestones\": \"没有里程碑的议题。\",\n            \"in this repo.\": \" \",\n\n            \"There are no closed issues in this milestone\": \"此里程碑没有已关闭议题\",\n            \"Issues will automatically be moved here when they are closed.\": \"议题在关闭后会自动移到这里。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(\\d+\\%) completed/, \"$1 已完成\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/milestone\"] = I18N[\"zh-CN\"][\"repository/milestones\"]; // 仓库 - 某里程碑\n\nI18N[\"zh-CN\"][\"repository/pull_issue_public\"] = { // 仓库 - 议题和拉取请求页面公共部分\n    \"static\": { // 静态翻译\n        // pull 与 request 公共词条\n            \"Filters\": \"筛选\",\n                // 筛选下拉菜单\n                \"Filter Issues\": \"筛选议题\",\n                \"Open issues and pull requests\": \"打开的议题和拉取请求\",\n                \"Your issues\": \"您提出的议题\",\n                \"Your pull requests\": \"您的拉取请求\",\n                \"Everything assigned to you\": \"任何分配给您的\",\n                \"Everything mentioning you\": \"任何提及您的\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n\n            \"Search all issues\": \"搜索所有议题\",\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n\n            \"ProTip!\": \"专业提示！\",\n                \"Find everything you created by searching\": \"通过搜索查找您创建的所有内容：\",\n                \"Exclude your own issues with\": \"排除您自己创建的议题：\",\n                \"Mix and match filters to narrow down what you’re looking for.\": \"通过混合和匹配筛选器以缩小查找范围。\",\n                \"Exclude everything labeled\": \"排除所有标有\",\n                \"with\": \"标签的内容，使用：\",\n                \"Follow long discussions with\": \"要跟进长讨论，请使用：\",\n                \"on any issue or pull request to go back to the pull request listing page.\": \"在任何议题或拉取请求上使用以返回拉取请求列表页面。\",\n                \"Filter pull requests by the default branch with\": \"通过默认分支过滤拉取请求：\",\n                \"to see everything that’s not assigned.\": \"以查看所有未分配的内容。\",\n                \"Find all pull requests that aren't related to any open issues with\": \"查找所有未关联任何打开议题的拉取请求，使用：\",\n                \"Add comments to specific lines under\": \"在以下特定行添加注释：\",\n                \"will show everything without a milestone.\": \"将显示所有没有里程碑的内容。\",\n                \"Updated in the last three days:\": \"最近 3 天更新：\",\n                \"Notify someone on an issue with a mention, like:\": \"在议题中通过 @ 提及通知某人，例如：\",\n                \"Adding\": \"添加\",\n                \"will show everything without a label.\": \"将显示所有无标签的内容。\",\n                \"on any issue or pull request to go back to the issue listing page.\": \"在任何议题或拉取请求上使用以返回议题列表页面。\",\n                \"Click a checkbox on the left to edit multiple issues at once.\": \"单击左侧复选框即可同时编辑多个议题。\",\n                // [/Ears burning? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的内容，请使用\"]\n\n\n            \"Labels\": \"标签\",\n                \"No labels\": \"无标签\",\n            \"Milestones\": \"里程碑\",\n            \"New issue\": \"创建议题\",\n            \"New\": \"创建\", // 小屏\n\n            // 筛选工作条\n            // \"Author\": \"作者\",\n                \"Filter by author\": \"按用户筛选\",\n                \"Filter users\": \"筛选用户名\",\n\n            \"Label\": \"标签\",\n                \"Filter by label\": \"按标签筛选\",\n                \"Filter labels\": \"筛选标签\",\n                \"Unlabeled\": \"无标签\",\n                \"to exclude labels\": \"排除标签\",\n                \"for logical OR\": \"表示逻辑“或”\",\n\n            // \"Projects\": \"项目\",\n                \"Filter by project\": \"按项目筛选\",\n                \"Filter projects\": \"筛选项目\",\n                \"Repository\": \"仓库\",\n                \"Organization\": \"组织\",\n                \"No projects found. Sorry about that.\": \"很抱歉，未找到任何项目。\",\n\n            // \"Milestones\": \"里程碑\",\n                \"Filter by milestone\": \"按里程碑筛选\",\n                \"Filter milestones\": \"筛选里程碑\",\n                \"Issues with no milestone\": \"无里程碑的议题\",\n                \"Pull requests with no milestone\": \"无里程碑的拉取请求\", // pulls\n                \"Nothing to show\": \"暂无\",\n\n            \"Assignee\": \"受理人\",\n                \"Filter by who’s assigned\": \"按受理人筛选\",\n                \"Filter assignees\": \"筛选受理人\",\n                \"Assigned to nobody\": \"无受理人\",\n                // [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 审查请求\"],\n                \"Requested changes must be addressed to merge this pull request.\": \"要合并这个拉取请求，必须先解决所要求的更改。\",\n                \"No one -\": \"无人 -\",\n                    \"Assign yourself\": \"分配给自己\",\n\n            \"Relationships\": \"关系\",\n                \"Parent issue\": \"父议题\",\n\n            \"Sort\": \"排序\",\n                \"Sort by\": \"排序\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Most commented\": \"最多评论\",\n                \"Least commented\": \"最少评论\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\", //?\n                \"Most reactions\": \"多数反应\",\n                \"Best match\": \"最佳匹配\",\n\n            // 选中模式\n                \"selected\": \"选中\",\n                \"Mark as\": \"标记为\",\n                \"Apply labels\": \"应用标签\",\n                \"Assign\": \"分配\",\n                    \"Assign someone\": \"分配给某人\",\n                    \"Assign to nobody\": \"分配给任何人\",\n\n            // 筛选结果\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"You could search\": \"您可以搜索\",\n            \"all of GitHub\": \"所有 GitHub\",\n            \"or try an\": \"或者尝试\",\n            \"advanced search\": \"高级搜索\",\n\n            // 状态词\n            \"was merged\": \"合并于\",\n            \"was closed\": \"关闭于\",\n            \"closed this\": \"关闭了这个\",\n            \"reopened this\": \"重新打开了这个\",\n            \"Approved\": \"已批准\",\n            \"Review required\": \"需要审查\", // 拉取请求 页面状态词\n                \"Review required before merging\": \"合并前需要审查\",\n            \"outdated\": \"陈旧的\",\n            \"Pending\": \"待定\",\n            \"Draft\": \"草案\",\n            \"deployed\": \"部署\",\n                \"View deployment\": \"查看部署\",\n            \"This was referenced\": \"被引用于\",\n            \"locked as\": \"锁定为\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"并限制与协作者对话\",\n            \"assigned\": \"分配给\",\n            \"labels\": \"标签\",\n\n            // 图标浮窗\n            \"Open issue\": \"议题已打开\",\n            \"Closed issue\": \"议题已完成\",\n            \"Closed as not planned issue\": \"议题已关闭因未计划\",\n            \"Open Pull Request\": \"拉取请求已打开\",\n            \"Draft Pull Request\": \"拉取请求草案\",\n            \"Merged Pull Request\": \"拉取请求已合并\",\n            \"Closed Pull Request\": \"拉取请求已关闭\",\n\n            // [/(\\d+) linked pull requests?/, \"链接 $1 个拉取请求\"],\n\n        // 某个拉取请求和某个议题 公共词条\n            // 顶部提醒\n                \"You’ve been unsubscribed from this thread.\": \"您已退订该主题。\",\n\n            // 右侧栏\n                \"Reviewers\": \"审查者\",\n                    \"No reviews\": \"无人审查\",\n                    \"Loading suggestions…\": \"载入推荐…\",\n                    // [/([^ ]+) left review comments/, \"$1 发表了审查意见\"],\n                    // [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合并此拉取请求至少需要 $1 次批准审核。\"], // 具体的拉取请求 审查者\n                    \"No reviews—at least 1 approving review is required.\": \"未经审查—至少需要 1 次批准审查。\",\n                    \"Re-request review\": \"重新请求审核\",\n                    \"Still in progress?\": \"仍在进行中吗？\",\n                    // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的审查请求\"]\n                    \"Learn about draft PRs\": \"了解拉取请求草案\",\n                        \"Try draft pull requests\": \"尝试拉取请求草案\",\n                        \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打开正在进行的拉取请求，无需请求正式审核，也不必冒不必要的合并风险。当您准备好进行代码审核时，您可以将拉取请求草案标记为已准备好审核，这将请求任何代码所有者进行审核。\",\n                        \"Ask admin for access\": \"向管理员请求权限\",\n                    \"Convert to draft\": \"设置为草案\",\n                        // 设置草案对话框\n                            \"Convert this pull request to draft?\": \"将此拉取请求转换为草案？\", // 拉取请求\n                            \"People who are already subscribed will not be unsubscribed.\": \"已订阅的用户将不会被取消订阅。\",\n                    // 下拉\n                    \"Request up to 15 reviewers\": \"最多请求 15 个审查者\",\n                    // [/([^ ]+) approved these changes/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n                    \"Request\": \"请求\",\n                    // [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n                    \"This pull request is waiting on your review.\": \"此拉取请求正在等待您的审核。\",\n\n                \"Assignees\": \"受理人\",\n                    \"No one assigned\": \"无人受理\",\n                    \"No one—\": \"无人 - \",\n                    \"assign yourself\": \" 受理自己\",\n                    // 下拉框\n                    \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 议题\n                    \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取请求\n                    \"Clear assignees\": \"清除受理人\",\n                    \"Type or choose a user\": \"输入或选择用户\",\n                    \"Suggestions\": \"建议\",\n\n                // \"Labels\": \"标签\",\n                    \"None yet\": \"暂无\",\n                    // 下拉\n                    \"bug\": \"BUG\",\n                        \"Something isn't working\": \"有些东西不工作\",\n                    \"dependencies\": \"依赖性\",\n                        \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                    \"documentation\": \"文档\",\n                        \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                    \"duplicate\": \"重复\",\n                        \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                    \"enhancement\": \"增强\",\n                        \"New feature or request\": \"新功能或请求\",\n                    \"good first issue\": \"好的首发议题\",\n                        \"Good for newcomers\": \"适合新人\",\n                    \"help wanted\": \"需要帮助\",\n                        \"Extra attention is needed\": \"需要特别关注\",\n                    \"invalid\": \"无效\",\n                        \"This doesn't seem right\": \"这似乎不对\",\n                    \"question\": \"问题\",\n                        \"Further information is requested\": \"要求提供更多信息\",\n                    \"wontfix\": \"不会修复\",\n                        \"This will not be worked on\": \"这将不会被处理\",\n\n                    \"Apply labels to this issue\": \"应用标签\", // 议题\n                    \"Apply labels to this pull request\": \"应用标签\", // 拉取请求\n                    \"Edit labels\": \"编辑标签\",\n\n                    // 拉取请求\n                    \"dependencies\": \"依赖项\",\n                        \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n\n                // 项目\n                    \"Recent\": \"最近\",\n                    \"User\": \"用户\",\n                    \"No projects\": \"无项目\",\n\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"无里程碑\",\n                    //下拉\n                    \"Set milestone\": \"设置里程碑\",\n                        \"Nothing to show\": \"暂无\",\n\n                \"Development\": \"进展\",\n                    \"Successfully merging this pull request may close these issues.\": \"成功合并此拉取请求可能会关闭这些议题。\",\n                    \"Successfully merging a pull request may close this issue.\": \"成功合并一个拉取请求可能会关闭此议题。\",\n                    // 下拉\n                    \"Link an issue from this repository\": \"关联来自此仓库的议题\",\n                    \"Filter\": \"筛选\",\n                    \"No results\": \"无结果\",\n                    \"Open in Workspace\": \"在工作区打开\",\n\n                // \"Notifications\": \"通知类型\",\n                \"Customize\": \"自定义\",\n                \"Subscribe\": \"订阅\",\n                // \"Unsubscribe\": \"取消订阅\",\n                \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You're not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您正在关注此仓库。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您提出了该话题。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因为有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因为您发表了评论。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因为您正在关注此仓库上的拉取请求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因为您正在关注此仓库上的议题。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因为您修改了打开/关闭状态。\",\n                \"You’re receiving notifications because you were assigned.\": \"您收到通知是因为您受理了它。\",\n                \"You’re ignoring this repository.\": \"您忽略了这个仓库。\",\n\n                    // 通知设置对话框\n                    \"Notification settings\": \"通知设置\",\n                    \"Notifications settings\": \"通知设置\", // 新版议题页面\n                    \"Not subscribed\": \"未订阅\",\n                        \"Only receive notifications from this pull request when you have participated or have been @mentioned.\": \"只有在您参与或被 @您 时才会收到来自此拉取请求的通知。\",\n                        \"Only receive notifications from this issue when you have participated or have been @mentioned.\": \"只有在您参与或被 @您 时才会收到来自此议题的通知。\", // 议题页面\n                    \"Subscribed\": \"订阅\",\n                        \"Receive all notifications from this pull request.\": \"接收来自此拉取请求的所有通知。\",\n                        \"Receive all notifications from this issue.\": \"接收来自此议题的所有通知。\",  // 议题页面\n                    \"Custom\": \"自定义\",\n                        \"You will only be notified for events selected from the list below. If you participate or are @mentioned you will be subscribed.\": \"您只会收到从以下列表中选择的事件的通知。如果您参与或 @您 时，将自动订阅。\",\n                        \"You will only be notified for the events selected from the list below.\": \"您只会收到从以下列表中选择的事件的通知。\",\n                        \"If you participate or are @mentioned you will be subscribed.\": \"如果您参与或 @您 时，将自动订阅。\",\n                    // 议题\n                        \"Receive a notification when this issue has been closed.\": \"当议题被关闭时，收到通知。\",\n                        \"Reopened\": \"重新打开\",\n                            \"Receive a notification when this issue has been reopened.\": \"当议题被重新打开时，收到通知。\",\n                    // 拉取请求\n                        \"Receive a notification when this pull request has been merged.\": \"当拉取请求被合并时，收到通知。\",\n                        \"Receive a notification when this pull request has been closed.\": \"当拉取请求被关闭时，收到通知。\",\n                        \"Receive a notification when this pull request has been reopened.\": \"当拉取请求被重新打开时，收到通知。\",\n\n                \"Lock conversation\": \"锁定对话\",\n                    \"Lock conversation on this issue\": \"锁定此议题的对话\",\n                    \"Lock conversation on this pull request\": \"锁定此拉取请求的对话\",\n                    \"Other users\": \"其他用户\",\n                    \"can’t add new comments\": \"无法添加新评论\",\n                    \"to this issue.\": \"到该议题。\",\n                    \"to this pull request.\": \"到该拉取请求。\",\n                    \"You and other collaborators\": \"您和其他协作者\",\n                    \"with access\": \"有权限访问\",\n                    \"to this repository\": \"该仓库\",\n                    \"can still leave comments\": \"仍然可以发表评论\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                    \"You can always unlock this issue again in the future.\": \"您今后仍可以随时再次解锁此议题。\",\n                    \"You can always unlock this pull request again in the future.\": \"您今后仍可以随时再次解锁此拉取请求。\",\n                    \"Other users can't add new comments to this issue. You and other members of teams with\": \"其他用户无法在此议题下添加新评论。您及\",\n                    \"write access\": \"有权访问\",\n                    \"to this repository can still leave comments that others can see. You can always unlock this issue again in the future.\": \"该仓库的团队成员仍可发表其他用户可见的评论。您随时可以在未来重新解锁此议题。\",\n                    \"Reason for locking\": \"锁定原因\",\n                    \"Choose a reason\": \"选择原因\",\n                    \"Reason\": \"原因\",\n                        \"No reason\": \"无\",\n                        \"Off-topic\": \"偏离主题\",\n                        \"Too heated\": \"争论不休\",\n                        \"Resolved\": \"已解决\",\n                        \"Spam\": \"垃圾信息\",\n                    \"Optionally, choose a reason for locking that others can see. Learn more about when it’s appropriate to\": \"或者，选择其他人可以看到的锁定原因。详细了解何时适合\",\n                    \"lock conversations\": \"锁定对话\",\n                    // \"Lock conversation on this issue\": \"锁定对话\",\n                \"Unlock conversation\": \"解锁对话\",\n                    \"Unlock conversation on this issue\": \"解锁此议题的对话\",\n                    \"Unlock conversation on this pull request\": \"解锁此拉取请求的对话\",\n                    \"Everyone\": \"任何人\",\n                    \"will be able to comment on this issue once more.\": \"将能够再次对这个议题发表评论。\",\n                    \"will be able to comment on this pull request once more.\": \"将能够再次对这个拉取请求发表评论。\",\n                    \"You can always lock this pull request again in the future.\": \"您今后仍可以随时再次锁定此拉取请求。\",\n                    \"You can always lock this issue again in the future.\": \"您今后仍可以随时再次锁定此议题。\",\n                    \"Everyone will be able to comment on this issue once more. You can always lock this issue again in the future.\": \"任何人将能够再次对这个议题发表评论。您今后仍可以随时再次锁定此议题。\",\n\n                // 隐藏评论对话框\n                \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Learn more about hiding comments\": \"了解更多关于隐藏评论的信息\",\n                \"comment\": \"评论\",\n                \"Unhide\": \"取消隐藏\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n                \"This comment has been minimized.\": \"此评论已最小化。\",\n                    \"Show comment\": \"显示评论\",\n                    \"Hide comment\": \"隐藏评论\",\n\n            \"Remember, contributions to this repository should follow our\": \"请记住，对该仓库的贡献应遵循我们的\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n            \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循\",\n            \"contributing guidelines\": \"贡献指南\",\n            \"security policy\": \"安全政策\",\n            \"code of conduct\": \"行为准则\",\n            \"contributing guidelines\": \"贡献准则\",\n\n            // 被锁定\n                \"This conversation has been locked as\": \"此对话已锁定为\",\n                    \"and limited to collaborators.\": \"，并限制与协作者对话。\",\n                \"You can't perform this action at this time.\": \"您此时不能操作。\",\n\n            // 底部赞助\n                \"Show your support for\": \"通过赞助来表达您对\",\n                \"by sponsoring them.\": \"的支持。\",\n                \"Sponsor\": \"赞助\",\n\n            // 底部提示栏 (未登录)\n                \"Sign up for free\": \"免费注册\",\n                \"to subscribe to this conversation on GitHub\": \"在 GitHub 上订阅这个讨论\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n                \". Already have an account?\": \"。已经有账户？\",\n                \"Sign in to comment\": \"登录后发表评论\",\n    },\n    \"regexp\": [ // 正则翻译\n        // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n        [/(\\+\\d+) more reviewers?/, \"$1 个审查者\"],\n        [/(\\d+) linked issues?/, \"链接 $1 个议题\"],\n        [/Assigned to (.*)/, \"分配给 $1\"],\n        [/Edited (\\d+) times?/, \"编辑 $1 次\"],\n        [/Open issues created by ([^ ]+)/, \"$1 创建议题\"],\n        [/issues opened by ([^ ]+)/, \"$1 打开议题\"],\n        [/Open pull requests created by ([^ ]+)/, \"$1 创建拉取请求\"],\n        [/pull requests opened by ([^ ]+)/, \"$1 打开拉取请求\"],\n        [/(\\d+) hidden conversations/, \"$1 条隐藏对话\"],\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的内容，请使用\"]\n    ]\n};\n\nI18N[\"zh-CN\"][\"repository/issues\"] = { // 仓库 - 议题页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 仓库 --> 议题 标签卡/<user-name>/<repo-name>/issues\n        // /<user-name>/<repo-name>/labels/<label-name>\n            // 欢迎信息\n            \"Welcome to issues!\": \"欢迎关注议题！\",\n            \"Issues are used to track todos, bugs, feature requests, and more. As issues are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"议题用于跟踪待办事项、错误、功能请求等。创建议题后，它们将出现在可搜索和可筛选的列表中。要开始，您应该\",\n            \"create an issue\": \"创建议题\",\n                \"Open issue creation in fullscreen\": \"全屏\", // 有议题模板时\n\n            \"Label issues and pull requests for new contributors\": \"标记新贡献者的议题和拉取请求\",\n            \"Now, GitHub will help potential first-time contributors\": \"现在，GitHub 将帮助潜在的首次贡献者\",\n            \"discover issues\": \"探索议题\",\n            \"labeled with\": \"标记为\",\n                \"Completed\": \"已完成\",\n            \"Project\": \"项目\",\n\n            \"Clear filter\": \"清除筛选\",\n            \"Filter authors\": \"筛选作者\",\n            \"Filter by assignees\": \"筛选受理人\",\n                \"No assignees\": \"无人受理\",\n            // 新版内容\n                // 顶部\n                    \"👋 Want to contribute to\": \"👋 想做贡献给\",\n                // 排序\n                    \"Created on\": \"创建时间\",\n                    \"Comments\": \"评论\",\n                    \"Total comments\": \"评论数\",\n                    \"Reactions\": \"看法数\",\n                    \"Total reactions\": \"总看法数\",\n                    \"Thumbs up\": \"点赞\",\n                    \"Thumbs down\": \"点踩\",\n                    \"Rocket\": \"火箭\",\n                    \"Hooray\": \"欢呼\",\n                    \"Eyes\": \"关注\",\n                    \"Heart\": \"比心\",\n                    \"Laugh\": \"大笑\",\n                    \"Confused\": \"拒绝\",\n                    \"Ascending\": \"递增\",\n                    \"Descending\": \"递减\",\n\n                \"Types\": \"类型\",\n                \"Issue type\": \"议题类型\",\n                    \"Filter by issue type\": \"按议题类型筛选\",\n                    \"Select issue type\": \"选择议题类型\",\n                    \"Filter types\": \"筛选类型\",\n                        \"No type\": \"无类型\",\n                            \"Issues with no type\": \"无类型议题\",\n                            \"No issue type\": \"无议题类型\",\n                // 搜索\n                \"Try adjusting your search filters.\": \"尝试调整搜索筛选器。\",\n\n            // [/Want to contribute to ([^ ]+)/, \"想为 $1 做贡献吗？\"], /issues\n            \"If you have a bug or an idea, read the\": \"如果您发现一个错误或有任何想法，请阅读\",\n            \"before opening an issue.\": \"，在打开议题之前。\",\n            \"If you have a bug or an idea, browse the open issues before opening a new one. You can also take a look at the\": \"如果您发现一个错误或有任何想法，请在打开新议题之前浏览未解决的议题。您也可以看看\",\n            \"Open Source Guide\": \"开源指南\",\n                \"Learn about Open Source and how to contribute\": \"了解开源和如何贡献\",\n            \"If you're ready to tackle some open issues,\": \"如果您准备好解决一些未解决的议题，\",\n            \"we've collected some good first issues for you\": \"我们已为您收集了一些好的首发议题\",\n            \"we've collected some good first issues for you.\": \"我们已为您收集了一些好的首发议题。\", // 新版议题页\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"仅对该仓库不在提示\",\n                \"Dismiss for all repositories\": \"对所有仓库均不在提示\",\n\n\n            \"There aren’t any open issues.\": \"暂无开放的议题。\",\n\n            // 状态词\n            \"Merged\": \"已合并\",\n            // \"open\": \"打开\",\n            // \"Opened\": \"打开\",\n            \"opened\": \"打开于\",\n            // \"closed\": \"已关闭\",\n            // 新版\n                \"Closed as not planned\": \"关闭因未计划\",\n                \"Closed as duplicate\": \"关闭因重复\",\n                \"of\": \"于\",\n                \"Not planned\": \"未计划\",\n\n            // 父级议题\n            \"Parent:\": \"父级：\",\n            // 子级议题\n            \"Create sub-issue\": \"创建子议题\",\n                //\"Create sub-issue\": \"创建子议题\",\n                    // 窗口\n                        \"Create new issue\": \"新建议题\",\n                            \"Select an item\": \"选择一项\",\n                                \"Select repository\": \"选择仓库\",\n                            \"Templates and forms\": \"模板和表单\",\n                                // 空白议题\n                                    \"Create a new issue from scratch\": \"从头开始创建新议题\",\n                \"Add existing issue\": \"添加现有议题\",\n                    \"Search issues\": \"搜索议题\",\n                        \"Group selected\": \"分组选择\",\n\n\n                \"Blank issue\": \"空白议题\",\n                    \"in\": \"在\",\n                \"Type your description here…\": \"在此键入介绍…\",\n                \"Create more sub-issues\": \"创建更多子议题\",\n\n                // 警告\n                    \"Are you sure?\": \"您确定吗？\",\n                        \"Sub-issues are limited to one parent. Confirm you want to proceed with this change.\": \"子议题仅允许关联一个父议题。请确认是否要继续进行此更改？\",\n                        \"Change parent issue\": \"更改父议题\",\n\n            \"Sub-issues\": \"子议题\",\n                \"Collapse Sub-issues\": \"折叠子议题\",\n                \"Expand Sub-issues\": \"展开子议题\",\n\n                \"More list item action bar\": \"更多操作\",\n                    \"Remove sub-issue\": \"移除子议题\",\n\n            \"Invalid value\": \"无效值\",\n            \"for\": \"，\",\n            //\"parent-issue\": \"父议题\",\n\n            \"You commented on and opened this issue\": \"您打开了此议题并发表了评论\",\n            \"You were mentioned on and commented on this issue\": \"您被提及并对此议题发表了评论\",\n            \"You commented on this issue\": \"您对此议题发表了评论\",\n            \"You opened this issue\": \"您打开了此议题\",\n\n            // 置顶议题\n            \"Pinned issues\": \"置顶议题\",\n            \"Drag to reorder\": \"拖拽排序\",\n            \"Pinned issue options\": \"置顶选项\",\n\n            \"Unpin\": \"取消置顶\",\n            \"Advanced move...\": \"高级移动…\",\n                \"Move selected item\": \"移动选中项\",\n                    \"Item\": \"标题\",\n                    \"Action\": \"操作\",\n                    \"Move item before\": \"移动到…之前\",\n                    \"Move item after\": \"移动到…之后\",\n                    \"Move to position\": \"指定位置\",\n                    \"Move\": \"移动\",\n            \"Search Issues\": \"搜索议题\",\n                // 仓库\n                    \"No repository\": \"无仓库\",\n                    \"Has repository\": \"包含仓库\",\n                    \"Exclude repo\": \"排除仓库\",\n                // 组织\n                    \"Has organization\": \"包含组织\",\n                    \"Exclude org\": \"排除组织\",\n                \"Is\": \"类型为\",\n                    \"Exclude is\": \"排除类型为\",\n                    \"Issue\": \"议题\",\n                    \"Pull Request\": \"拉取请求\",\n                    \"Unmerged\": \"未合并\",\n                    \"Locked\": \"已锁定\",\n                    \"Unlocked\": \"未锁定\",\n                    \"Blocked\": \"已阻塞\",\n                \"State\": \"状态\",\n                    \"Exclude state\": \"排除状态\",\n                // 标签\n                    \"No label\": \"无标签\",\n                    \"Has label\": \"包含标签\",\n                    \"Exclude label\": \"排除标签\",\n                    \"aesthetics\": \"美化\",\n                    \"bug\": \"缺陷\",\n                    \"dependencies\": \"依赖项\",\n                    \"development\": \"开发中\",\n                    \"discuss\": \"讨论\",\n                    \"documentation\": \"文档\",\n                    \"duplicate\": \"重复\",\n                    \"enhancement\": \"功能增强\",\n                    \"forums\": \"论坛\",\n                    \"good first issue\": \"适合新手\",\n                    \"help wanted\": \"求助\",\n                    \"invalid\": \"无效\",\n                    \"question\": \"提问\",\n                    \"website\": \"网站\",\n                    \"wontfix\": \"不会修复\",\n                // 类型\n                    \"No type\": \"无类型\",\n                    \"Has type\": \"包含类型\",\n                \"Project\": \"项目\",\n                    \"No project\": \"无项目\",\n                    \"Has project\": \"包含项目\",\n                    \"Exclude project\": \"排除项目\",\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"无里程碑\",\n                    \"Has milestone\": \"包含里程碑\",\n                    \"Exclude milestone\": \"排除里程碑\",\n                // 受理人\n                    \"No assignee\": \"无受理人\",\n                    \"Has assignee\": \"包含受理人\",\n                    \"Me\": \"我\",\n                        \"Signed-in user\": \"已登录用户\",\n                    // Copilot\n                        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                        \"Assign to Copilot\": \"受理给 Copilot\",\n                        // 窗口\n                            \"Assign Copilot to issue\": \"分配议题给 Copilot\",\n                            \"Feedback\": \"反馈\",\n                                \"Copilot will open a pull request using the issue's description, comments, and the additional prompt if you provide one. Choose a custom agent to tailor Copilot for specific tasks.\": \"Copilot 将根据议题的描述、评论以及您提供的额外提示词（若有）来开启拉取请求。您可以选择自定义智能体，以便针对特定任务定制 Copilot。\",\n                                \"Optional prompt\": \"提示词（可选）\",\n                                    \"Provide additional instructions for Copilot\": \"提供可选提示给 Copilot\",\n                                \"Auto\": \"自动\",\n                    \"Exclude assignee\": \"排除受理人\",\n                \"Author\": \"作者\",\n                    \"Has author\": \"包含作者\",\n                    \"Exclude author\": \"排除作者\",\n                \"Involves\": \"涉及\",\n                    \"Has involves\": \"包含涉及\",\n                    \"Exclude involves\": \"排除涉及\",\n                \"Mentions\": \"提及\",\n                    \"Has mentions\": \"包含提及\",\n                    \"Exclude mentions\": \"排除提及\",\n                \"Parent issue\": \"父议题\",\n                    \"No parent issue\": \"无父议题\",\n                    \"Has parent issue\": \"包含父议题\",\n                    \"Exclude parent-issue\": \"排除父议题\",\n                \"Blocking\": \"阻塞\",\n                    \"No blocking\": \"无阻塞\",\n                    \"Has blocking\": \"包含阻塞\",\n                    \"Exclude blocking\": \"排除阻塞\",\n                \"Blocked by\": \"被…阻塞\",\n                    \"No blocked by\": \"无被阻塞\",\n                    \"Has blocked by\": \"包含被阻塞\",\n                    \"Exclude blocked-by\": \"排除被阻塞\",\n                \"Sub-issue\": \"子议题\",\n                    \"No sub-issue\": \"无子议题\",\n                    \"Has sub-issue\": \"包含子议题\",\n                    \"Exclude sub-issue\": \"排除子议题\",\n                \"Update date\": \"更新日期\",\n                    \"Exclude updated\": \"排除更新日期\",\n                    \"Today\": \"今天\",\n                    \"Yesterday\": \"昨天\",\n                    \"Past 7 days\": \"过去 7 天\",\n                    \"Past 30 days\": \"过去 30 天\",\n                    \"Past year\": \"过去 1 年\",\n                \"Creation date\": \"创建日期\",\n                    \"Has creation date\": \"包含创建日期\",\n                    \"Exclude created\": \"排除创建日期\",\n                \"Closed date\": \"关闭日期\",\n                    \"Has closed date\": \"包含关闭日期\",\n                    \"Exclude closed\": \"排除关闭日期\",\n                \"Merge date\": \"合并日期\",\n                    \"Has merge date\": \"包含合并日期\",\n                    \"Exclude merged\": \"排除合并日期\",\n                \"Review requested\": \"已请求评审\",\n                    \"Has review requested\": \"包含已请求评审\",\n                    \"Exclude review-requested\": \"排除已请求评审\",\n                \"In\": \"在\",\n                    \"Has in\": \"包含在\",\n                    \"Exclude in\": \"排除在\",\n                    \"Body\": \"正文\",\n                    \"Comments\": \"评论\",\n                \"Commenter\": \"评论者\",\n                    \"Has commenter\": \"包含评论者\",\n                    \"Exclude commenter\": \"排除评论者\",\n                \"User\": \"用户\",\n                    \"Has user\": \"包含用户\",\n                    \"Exclude user\": \"排除用户\",\n                \"User review requested\": \"已请求用户评审\",\n                    \"Has user review requested\": \"包含已请求用户评审\",\n                    \"Exclude user-review-requested\": \"排除已请求用户评审\",\n                \"Reviewed by\": \"评审者\",\n                    \"Has reviewed by\": \"包含评审者\",\n                    \"Exclude reviewed-by\": \"排除评审者\",\n                \"Comment count\": \"评论数\",\n                    \"Has comment count\": \"有评论数\",\n                    \"Less than 10\": \"少于 10\",\n                    \"More than 10\": \"多于 10\",\n                    \"Between 10 and 100\": \"10 到 100\",\n                \"Interactions count\": \"互动数\",\n                    \"Has interactions count\": \"有互动数\",\n                \"Closed reason\": \"关闭原因\",\n                    \"Exclude reason\": \"排除原因\",\n                    \"Completed\": \"已完成\",\n                    \"Not planned\": \"未计划\",\n                    \"Duplicate\": \"重复\",\n                \"Linked\": \"已链接\",\n                    \"Has linked\": \"包含已链接\",\n                    \"Exclude linked\": \"排除已链接\",\n                \"Archived\": \"已归档\",\n                    \"Has archived\": \"包含已归档\",\n                    \"Exclude archived\": \"排除已归档\",\n                    \"True\": \"是\",\n                    \"False\": \"否\",\n                \"Reaction count\": \"表情回应数\",\n                    \"Has reaction count\": \"有表情回应数\",\n                // 草案\n                    \"Has draft\": \"包含草案\",\n                    \"Exclude draft\": \"排除草案\",\n                \"Review state\": \"评审状态\",\n                    \"Has review state\": \"包含评审状态\",\n                    \"Exclude review\": \"排除评审状态\",\n                    \"No reviews\": \"无评审\",\n                \"Code language\": \"代码语言\",\n                    \"Has code language\": \"包含代码语言\",\n                    \"Exclude language\": \"排除代码语言\",\n                \"Commit SHA\": \"提交 SHA\",\n                    \"Has commit sha\": \"包含提交 SHA\",\n                    \"Exclude sha\": \"排除提交 SHA\",\n                \"Base\": \"基础分支\",\n                    \"Has base\": \"包含基础分支\",\n                    \"Exclude base\": \"排除基础分支\",\n                \"Head\": \"对比分支\",\n                    \"Has head\": \"包含对比分支\",\n                    \"Exclude head\": \"排除对比分支\",\n                // 状态 (Status)\n                    \"Has status\": \"包含状态检查\",\n                    \"Exclude status\": \"排除状态检查\",\n                    \"Pending\": \"待处理\",\n                    \"Success\": \"成功\",\n                    \"Failure\": \"失败\",\n                    \"Queued\": \"排队中\",\n                    \"Waiting\": \"等待中\",\n                    \"Cancelled\": \"已取消\",\n                    \"Skipped\": \"已跳过\",\n                \"Team\": \"团队\",\n                    \"Has team\": \"包含团队\",\n                    \"Exclude team\": \"排除团队\",\n                \"Team review requested\": \"已请求团队评审\",\n                    \"Has team review requested\": \"包含已请求团队评审\",\n                    \"Exclude team-review-requested\": \"排除已请求团队评审\",\n                // 排序\n                    \"Has sort\": \"包含排序\",\n                    \"Exclude sort\": \"排除排序\",\n                    \"Least reactions\": \"最少回应\",\n                    \"Most thumbs up (👍) reactions\": \"👍 回应最多\",\n                    \"Least thumbs up (👍) reactions\": \"👍 回应最少\",\n                    \"Most thumbs down (👎) reactions\": \"👎 回应最多\",\n                    \"Least thumbs down (👎) reactions\": \"👎 回应最少\",\n                    \"Most laugh (😄) reactions\": \"😄 回应最多\",\n                    \"Least laugh (😄) reactions\": \"😄 回应最少\",\n                    \"Most confused (😕) reactions\": \"😕 回应最多\",\n                    \"Least confused (😕) reactions\": \"😕 回应最少\",\n                    \"Most tada (🎉) reactions\": \"🎉 回应最多\",\n                    \"Least tada (🎉) reactions\": \"🎉 回应最少\",\n                    \"Most heart (❤️) reactions\": \"❤️ 回应最多\",\n                    \"Least heart (❤️) reactions\": \"❤️ 回应最少\",\n                    \"Most eyes (👀) reactions\": \"👀 回应最多\",\n                    \"Least eyes (👀) reactions\": \"👀 回应最少\",\n                \"AND\": \"且\",\n                \"OR\": \"或\",\n                \"Exclude\": \"排除\",\n            // 过滤器问题\n                \"Empty value for\": \"空值\",\n                \"Invalid value\": \"无效值\",\n                \"for\": \"对于\",\n                \"Unbalanced quotation marks\": \"引号不匹配\",\n\n            \"Order\": \"顺序\",\n\n        // 新建议题 选择议题模板  /<user-name>/<repo-name>/issues/new/choose\n            \"Get started\": \"开始\",\n            \"Don’t see your issue here?\": \"在这里没有看到您的议题？\",\n            \"Open a blank issue.\": \"打开一个空白议题。\",\n            \"Edit templates\": \"编辑模板\",\n            \"Report abuse\": \"举报滥用\",\n\n            \"View organization templates\": \"查看组织模板\", // 组织仓库\n\n            // 警告\n                \"Discard changes?\": \"丢弃更改？\",\n                \"Close and discard\": \"丢弃并关闭\",\n\n        // 新建空白议题  /<user-name>/<repo-name>/issues/new\n            \"Title\": \"标题\",\n            \"Helpful resources\": \"帮助性资源\",\n            \"Create more\": \"创建多个\",\n            \"Write with Copilot\": \"请 Copilot 编写\",\n                \"Navigate to Copilot Chat\": \"导航到 Copilot 聊天\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                    \"Keep editing\": \"否\", // 实际作用：返回编写页面\n                    \"Go to Copilot\": \"是\", // 实际作用：前往 Copilot 页面\n\n            \"Choose a different template\": \"切换模板\",\n\n        // 从讨论创建议题  /<user-name>/<repo-name>/issues/new?created_from_discussion_number=<id>\n            \"Documentation has changed since you last contributed\": \"自您上次贡献以来，文档已更改\",\n            \". Take a look before submitting an issue:\": \"。在提交议题之前先看一下：\",\n            \"Contributing guidelines\": \"贡献指南\",\n            \"Last updated\": \"最后更新\",\n\n        // 某条具体的议题 /<user-name>/<repo-name>/issues/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 快捷键\n                \"Convert issue to discussion…\": \"将议题转化为讨论…\",\n\n            \"This issue was moved to a discussion.\": \"这个议题被转移到讨论中。\",\n            \"You can continue the conversation there.\": \"您可以在那里继续讨论。\",\n            \"Go to discussion →\": \"转到讨论→\",\n\n            \"Edit\": \"编辑\",\n            \"Issue body actions\": \"菜单\", // 原文过于啰嗦，直接省略\n\n            // 状态词 同 /<user-name>/<repo-name>/pull/<id>\n            \"changed the title\": \"修改了标题\",\n            \"opened this issue\": \"打开了该议题\",\n            \"· Fixed by\": \"· 修复了\",\n            \"mentioned this issue\": \"提及了该议题\",\n            \"mentioned this\": \"提及此\",\n            \"opened this\": \"打开了这个\",\n            \"linked a pull request\": \"关联了一个拉取请求\",\n            \"linked a pull request that will close this issue\": \"关联了一个关闭此议题的拉取请求\",\n            //\"that will\": \"这将会\",\n            //\"close\": \"关闭\",\n            //\"this issue\": \"这个议题\",\n            // \"that will close this issue\": \"这将会关闭这个议题\",\n            // \"Issue\": \"议题\",\n            \"added a commit that closed this issue\": \"在提交时关闭了这个议题\",\n            \"closed this in\": \"关闭于\",\n            \"added the\": \"添加了\",\n            \"added\": \"添加了\",\n            \"and removed\": \"并移除了\",\n            \"removed the\": \"移除了\",\n            \"removed\": \"移除了\",\n            \"label\": \"标签\",\n            \"labels\": \"标签\",\n            \"self-assigned this\": \"自己受理了该议题\",\n            // \"edited\": \"编辑的\",\n            \"added this to the\": \"添加到\",\n            \"added this to\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"moved this to\": \"移动到\",\n            \"closed this\": \"关闭了\",\n            \"as\": \"因\",\n            \"as a\": \"因\",\n            \"closed this as\": \"已关闭因\",\n                \"not planned\": \"非计划中\",\n                \"completed\": \"已完成\",\n            \"reopened this\": \"重新打开了这个\",\n            \"This was referenced\": \"这是引用\",\n            \"deleted a comment from\": \"删除了评论，来自\",\n            \"· May be fixed by\": \" · 可通过该方案修复\",\n            \"pinned this issue\": \"置顶议题\",\n            \"unpinned this issue\": \"取消置顶\",\n            \"Repository owner\": \"仓库所有者\",\n            \"Repository owner locked and limited conversation to collaborators\": \"仓库所有者锁定并限制与协作者对话\",\n            \"Repository owner locked as\": \"仓库所有者锁定为\",\n            \"Repository owner deleted a comment\": \"仓库所有者删除了评论\",\n            \"Repository owner deleted a comment from\": \"仓库所有者删除了评论来自\",\n            \"locked\": \"锁定\",\n            \"locked as\": \"锁定为\",\n                \"off-topic\": \"偏离主题\",\n                \"too heated\": \"争论不休\",\n                \"resolved\": \"已解决\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"并限制与协作者对话\",\n            \"unlocked this conversation\": \"解锁了对话\",\n            \"merged commit\": \"已合并提交\",\n            // \"into\": \"到\",\n            \"deleted the\": \"删除了\",\n            \"locked and limited conversation to collaborators\": \"锁定并限制与协作者对话\",\n            \"converted this issue into discussion\": \"此议题已转化为讨论\",\n            \"converted this issue into a discussion\": \"此议题已转化为讨论\",\n            \"removed their assignment\": \"取消了他们的任务\",\n            \"assigned\": \"分配给了\",\n            \"unassigned\": \"取消分配给\",\n            \"and unassigned\": \"和取消了分配给\",\n            \"marked this pull request as draft\": \"将此拉取请求标记为草案\",\n            \"marked this pull request as ready for review\": \"将此拉取请求标记为可供审查\",\n            \"dismissed a stale review via\": \"驳回了一个陈旧的审查，通过\",\n            \"requested changes\": \"请求了更改\",\n            \"added a commit that referenced this issue\": \"添加了一个引用此问题的提交\",\n            \"referenced this issue\": \"提及这个议题\",\n            \"closed this as completed\": \"已完成，关闭\",\n            \"added a parent issue\": \"添加了一个父议题\",\n            \"added a commit that references this issue\": \"添加了一个引用此议题的提交\",\n            \"transferred this issue from\": \"将此议题转移，从\",\n            \"as off topic\": \"为偏离主题\",\n            \"as too heated\": \"为争论不休\",\n            \"as spam\": \"为垃圾信息\",\n            \"as resolved\": \"为已解决\",\n            \"added a sub-issue\": \"添加子议题\",\n            \"added sub-issues\": \"添加子议题\",\n            \"removed a parent issue\": \"移除父议题\",\n            \"removed a sub-issue\": \"移除子议题\",\n            \"marked\": \"标记\",\n                \"as a duplicate of this issue\": \"议题同此重复\", // 示例 https://github.com/maboloshi/github-chinese/issues/405\n\n            // 右侧栏 补充\n            \"Metadata\": \"元数据\", // 小屏模式\n                // \"Development\": \"进展\",\n                    \"Code with agent mode\": \"智能体模式编程\",\n                        \"Select code repository\": \"选择仓库\",\n                        \"Start a codespace with Copilot agent mode for this issue in another repository.\": \"为另一个仓库中的此议题启动使用 Copilot 智能体模式的代码空间。\",\n                    \"No branches or pull requests\": \"没有分支或拉取请求\",\n                    \"Shows branches and pull requests linked to this issue.\": \"显示与该议题相关的分支和拉取请求。\",\n                    \"Create a branch\": \"创建分支\",\n                    \"for this issue or link a pull request.\": \"为这个议题或关联一个拉取请求\",\n                    \"When branches are created from issues, their pull requests are automatically linked.\": \"当从议题中创建分支时，它们的拉取请求会自动关联。\",\n\n                    // 关系\n                        \"Add parent\": \"添加父议题\",\n                        \"Select a repository\": \"选择一个仓库\",\n                        \"Change or remove parent\": \"更改或移除父议题\",\n                            \"Selected\": \"当前\",\n\n                    // 参与者数大于2\n                        \"and others\": \"等\",\n\n                    // 下拉\n                    \"Link a pull request from this repository\": \"关联来自此仓库的拉取请求\",\n\n                    // \"linked a pull request that will\": \"关联一个拉取请求, 将会\",\n                    // \"close\": \"关闭\",\n                    // \"this issue\": \"这个议题\",\n\n                    // 第一次打开议题\n                    \"It looks like this is your first time opening an issue in this project!\": \"看起来这是您第一次在此项目中打开议题！\",\n                    \"Be sure to review the\": \"请务必查阅\",\n\n                    // 议题表单\n                    \"You're using an\": \"您正在使用\",\n                    \"issue form\": \"议题表单\",\n                    \", a new type of issue template.\": \"，一种新型议题模板。\",\n\n                    // 创建分支 对话框\n                        \"Create a branch for this issue\": \"为该议题创建一个分支\",\n                        \"Branch name\": \"分支名称\",\n                        \"Repository destination\": \"仓库目的地\",\n                            \"Search for a repository\": \"搜索仓库\",\n                        \"Change branch source\": \"更改分支源\",\n                        \"What's next?\": \"下一步是什么？\",\n                            \"Checkout locally\": \"检出本地\",\n                            \"Open branch with GitHub Desktop\": \"使用 GitHub Desktop 打开分支\",\n                        \"Create branch\": \"创建分支\",\n\n                    // 在本地仓库检出对话框\n                        \"Checkout in your local repository\": \"在本地仓库检出\",\n                        \"Run the following commands in your local clone.\": \"在您的本地克隆中运行以下指令。\",\n\n                    // 项目\n                        \"Select projects\": \"选择项目\",\n\n                    // 进展\n                        \"Link a branch or pull request\": \"关联分支或拉取请求\",\n                        \"Select a repository to search for branches and pull requests or\": \"选择一个仓库来搜索分支和拉取请求或\",\n                        \"create a branch\": \"创建一分支\",\n                        \"Search pull requests\": \"搜索拉取请求\",\n                        \"Search for repositories\": \"搜索仓库\",\n                        \"Link a branch, pull request, or\": \"关联分支、拉取请求或\",\n                        \"Search for branches or pull requests\": \"搜索分支或拉取请求\",\n                        \"no pull request\": \"无拉取请求\",\n\n                \"Duplicate issue\": \"复制议题\",\n                    // [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中复制当前议题\"],\n                    \"Changing the repository may remove Milestone, Labels, Type, and Assignees from the duplicate issue.\": \"更改仓库可能会从重复议题中移除里程碑、标签、类型和分配人员。\",\n                    \"This issue is being duplicated across repositories. The following metadata might not be copied: Milestone, Labels.\": \"该议题正跨仓库中被复制创建。以下元数据可能不会被复制：里程碑、标签。\",\n                \"Pin issue\": \"置顶议题\",\n                    \"Up to 3 issues can be pinned and they will appear publicly at the top of the issues page\": \"最多可以置顶 3 个议题，它们将公开显示在议题页面的顶部\",\n                    \"Up to 3 issues can be pinned to the top of the issues page\": \"最多可以在议题页面置顶 3 个议题\",\n                    \"This will unpin this issue from the top of the issues page\": \"将从议题页面取消置顶该议题\",\n                    // 顶部提醒\n                    \"The issue has been pinned.\": \"该议题已置顶。\",\n                \"Unpin issue\": \"取消置顶\",\n                    \"Up to 3 issues can be pinned and they will appear at the top of the issues page\": \"最多可以置顶 3 个议题，它们将显示在议题页面的顶部\",\n                    \"3/3 issues already pinned. Unpin an issue to pin this one.\": \"已有3/3个议题被置顶。请先取消置顶其中一个议题，才能置顶当前议题。\",\n                    // 顶部提醒\n                    \"The issue has been unpinned.\": \"该议题已取消置顶。\",\n                \"Transfer issue\": \"转移议题\",\n                    // 转移议题 对话框\n                        \"Transfer this issue\": \"转移议题\",\n                            \"This does not scrub any issue content. Content such as text references to other issues, pull requests, projects and teams will still appear in the description or comments. Labels will be transferred.\": \"该操作不会清除任何议题内容。对其它议题、拉取请求、项目和团队的文本引用仍会保留在描述或评论中。标签将会被转移。\",\n                            \"Repository projects assigned to this issue will not transfer to the new location\": \"分配给此议题的仓库项目不会转移到新位置\",\n                        \"Choose a repository\": \"选择仓库\",\n                        \"Find a repository\": \"搜索仓库\",\n                        \"Warning!\": \"警告！\",\n                            \"Transferring an issue does not scrub any issue content. Content such as text references to other issues, pull requests, projects, teams will remain in this issue's descriptions and comments.\": \"转移议题不会清除任何议题内容。诸如对其他议题、拉取请求、项目、团队的文本引用等内容将保留在此议题的描述和评论中。\",\n                            \"Assignees, labels and milestones will be transferred if they are present in the target repository.\": \"如果目标仓库中存在受让人、标签和里程碑，它们将被转移。\",\n                \"Convert to discussion\": \"转为讨论\",\n                    // 转换议题为讨论 对话框\n                    \"Convert issue to a discussion\": \"转换议题为讨论\",\n                        \"Are you sure you want to convert this issue to a discussion?\": \"您确定要将议题转换为讨论吗？\",\n                        \"What happens when an issue is converted into a discussion:\": \"将议题转化为讨论时，会发生什么：\",\n                        \"Issue will be closed and locked\": \"议题将被关闭并锁定\",\n                        \"Title, description, and author will be the same as the issue\": \"标题、描述和作者将与议题相同\",\n                        \"All comments and reactions will be the same as the issue\": \"所有评论和反应将与议题相同\",\n                        \"Category for new discussion\": \"新讨论的类别\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"问与答\",\n                            \"Show and tell\": \"展示与讲述\",\n                        \"I understand, convert this issue\": \"我明白了，依然转化该议题\",\n                \"Delete issue\": \"删除议题\",\n                    \"Delete issue?\": \"删除议题？\",\n                    \"Are you sure you want to delete this issue?\": \"您确定要删除此议题吗？\",\n                    \"This cannot be undone\": \"这不能被撤消\",\n                    \"Only adminstrators can delete issues\": \"只有管理员可以删除议题\",\n                    \"Deletion will remove the issue from search and previous references will point to a placeholder\": \"删除将会从搜索中删除议题，以前的引用将指向一个占位符\",\n                    \"Delete this issue\": \"删除议题\",\n                    \"Deleting issue…\": \"议题删除中…\",\n                    // 顶部提醒\n                    \"The issue was successfully deleted.\": \"该议题已成功删除。\",\n\n                \"Participants\": \"参与者\",\n                    \"No participants\": \"尚无参与者\",\n\n            // 新版议题页面\n            \"remaining\": \"剩余\",\n            \"items\": \"项\",\n            \"Load more\": \"载入更多\",\n\n            \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定并限制与协作者对话。\",\n            \"This issue has been deleted.\": \"该议题已被删除。\",\n            \"deleted this from\": \"删除了这个，从\",\n\n            \"Reference in a new issue\": \"在新议题中提及\",\n\n            // 评论框\n            \"edited by\": \"编辑者\",\n            \"Hidden as\": \"隐藏因\",\n                \"abuse\": \"滥用\",\n                \"show comment\": \"显示评论\",\n                \"hide comment\": \"隐藏评论\",\n            \"Edits\": \"编辑\",\n                \"Most recent\": \"最近\",\n                \"Viewing edit\": \"查看编辑\",\n                \"Delete revision\": \"删除修订\",\n            \"Reopen Issue\": \"重新打开议题\",\n                \"You do not have permissions to reopen this issue\": \"您没有权限重新打开此议题\",\n            // 评论删除对话框\n                \"Delete comment\": \"删除评论\",\n                \"Are you sure you'd like to delete this comment?\": \"您确定要删除这条评论吗？\",\n            // 关闭议题\n                \"You do not have permissions to close this issue\": \"您没有权限关闭此议题\",\n            \"Comment can not be empty\": \"评论不能为空\",\n            \"Add files\": \"添加文件\", // 小屏模式\n\n        // 议题标签管理 /<user-name>/<repo-name>/issues/labels\n        // 仓库 --> 标签页面 /<user-name>/<repo-name>/labels\n            \"Labels\": \"标签\",\n            \"Milestones\": \"里程碑\",\n            \"Search all labels\": \"搜索所有标签\",\n\n            \"labels\": \"标签\",\n\n            \"New label\": \"新建标签\",\n                \"Label preview\": \"标签预览\",\n                \"Label name\": \"标签名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可选）\",\n                \"Color\": \"颜色\",\n                    \"Get a new color\": \"获得新颜色\",\n                    \"Choose from default colors:\": \"从默认颜色中选择：\",\n                \"Create label\": \"创建标签\",\n\n            \"Sort\": \"排序\",\n                \"Alphabetically\": \"按字母顺序\",\n                \"Reverse alphabetically\": \"按字母倒序\",\n                \"Most issues\": \"最多的议题\",\n                \"Fewest issues\": \"最少的议题\",\n\n            // 标签\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n            // [/open issues? and pull requests?/, \"个打开的议题和拉取请求\"], // 标签页面\n            // [/open issues? or pull requests?/, \"个打开的议题或拉取请求\"], // 标签页面\n\n            \"Convert to discussions\": \"转为讨论\",\n                // 转换议题为讨论 对话框\n                \"Convert issue to discussion\": \"转换议题为讨论\",\n                \"Convert issues to discussions\": \"转换议题为讨论\",\n                    // [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您确定要将带有以下标签的 $1 条议题转换为讨论吗？\"],\n                    // \"What happens when an issue is converted into a discussion:\": \"将议题转化为讨论时，会发生什么：\",\n                    \"Issue will be locked\": \"议题将被锁定\",\n                    // \"Title, description, and author will be the same as the issue\": \"标题、描述和作者将与议题相同\",\n                    \"Existing links will redirect to the new discussion\": \"现有链接将重定向至新讨论\",\n                    // \"All comments and reactions will be the same as the issue\": \"所有评论和反应将与议题相同\",\n                    \"Discussions do not have tasklists\": \"讨论没有任务列表\",\n                    \"Discussions do not have assignees\": \"讨论没有受理人\",\n                    \"Discussions cannot be added to projects\": \"讨论无法添加到项目\",\n                    \"Discussions do not have milestones\": \"讨论没有里程碑\",\n                    \"You must choose a category for the discussion to belong to. You will be able to change this after the conversion is complete.\": \"您必须为讨论选择一个所属类别。转换完成后，您可以更改类别。\",\n                    \"Choose a category\": \"选择类别\",\n                        \"Announcements\": \"公告\",\n                        \"General\": \"通常\",\n                        \"Ideas\": \"想法\",\n                        \"Polls\": \"投票\",\n                        \"Q&A\": \"问与答\",\n                        \"Show and tell\": \"展示与讲述\",\n                    \"I understand, convert issue to discussion\": \"我明白了，依然将议题转换为讨论\",\n                    \"I understand, convert issues to discussions\": \"我明白了，依然将议题转换为讨论\",\n                    \"Future issues with this label will not be automatically converted into discussions.\": \"今后带有此标签的议题不会自动转换为讨论。\",\n\n        // 添加/编辑议题模板 /<user-name>/<repo-name>/issues/templates/edit\n            \"Propose changes\": \"提出更改\",\n            \"Add template:\": \"添加模板：\",\n            \"select\": \"选择\",\n            \"Bug report\": \"错误报告\",\n                \"Standard bug report template\": \"标准错误报告模板\",\n                \"Create a report to help us improve\": \"创建报告以帮助我们改进\",\n            \"Feature request\": \"功能要求\",\n                \"Standard feature request template\": \"标准功能请求模板\",\n                \"Suggest an idea for this project\": \"为这个项目提出想法\",\n            \"Custom template\": \"自定义模板\",\n                \"Blank template for other issue types\": \"其他议题类型的空白模板\",\n                \"Custom issue template\": \"自定义议题模板\",\n                \"Describe this issue template's purpose here.\": \"在此处描述此议题模板的用途。\",\n\n            \"Preview and edit\": \"预览和编辑\",\n            \"Close preview\": \"关闭预览\",\n\n            \"Template name\": \"模板名称\",\n            \"This file lives in\": \"该文件位于\",\n            \"Template content\": \"模板内容\",\n                \"Styling with Markdown is supported\": \"支持 Markdown 格式\",\n            \"Optional additional items\": \"可选附加项目\",\n            \"Issue default title\": \"议题默认标题\",\n            \"This will be suggested as the issue title\": \"建议作为议题标题\",\n                \"Add a placeholder for issue title, ex. [BUG]\": \"设置默认议题标题，例如：[BUG]\",\n\n            \"Commit changes\": \"提交更改\",\n                \"Commit message\": \"提交信息\",\n                \"Extended commit message\": \"扩展描述\",\n                    \"Add an optional extended description\": \"添加描述... (可选)\",\n                \"Commit directly to the\": \"提交到\",\n                \"branch.\": \"分支。\",\n\n                \"Some rules will be bypassed by committing directly\": \"直接提交可以绕过一些规则\",\n                \"Bypass rules and commit changes\": \"绕过规则并提交更改\",\n\n                \"Create a\": \"创建\",\n                \"new branch\": \"新分支\",\n                \"for this commit and start a pull request.\": \"为这个提交，并且发起一个拉取请求。\",\n\n        // Copilot 浮窗 独有词条\n            \"Ask about the issue:\": \"讨论此议题：\",\n\n        // 底部提示栏（未登录\n        \"to join this conversation on GitHub.\": \"加入 GitHub 上的这个讨论。\",\n            \"Already have an account?\": \"已经有账户？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Want to contribute to ([^ ]+)\\?/, \"想为 $1 做贡献？\"],\n        [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 审查请求\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/(#\\d+) by/, \"$1 打开者\"],\n        [/(\\d+) linked pull requests?/, \"链接 $1 个拉取请求\"],\n        [/([\\d,]+) linked issues?/, \"$1 个关联议题\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次为 $1 做贡献？\"],\n\n        // 具体某条议题 /<user-name>/<repo-name>/issues/<id>\n        [/· ([\\d,]+) comments?/, \"• $1 条评论\"],\n        [/([\\d,]+) participants?/, \"$1 位参与者\"],\n        [/(\\d+) similar comments?/, \"$1 条类似评论\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/added a commit to ([^ ]+) that referenced this issue/, \"为 $1 添加了引用这个议题的提交\"],\n        [/Only people who can see ([^ ]+) will see this reference./, \"只有能看到 $1 的人才能看到这个参考。\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/Edited (\\d+) times?/, \"已编辑 $1 次\"],\n        [/edited by ([^ ]+)/, \"由 $1 编辑\"],\n        [/This issue will close when (#?\\d+) is merged/, \"此议题将在 $1 合并时关闭\"],\n        [/Opened this issue \\(their first in ([^ ]+)\\)/, \"打开了这个议题（首次在 $1 发表）\"],\n        [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中复制当前议题\"],\n        [/added (\\d+) commits? that reference this issue/, \"添加 $1 个引用此议题的提交\"],\n        [/This issue will close once commit ([a-f0-9]{7}) is merged into the \\'([^ ]+)\\' branch./, \"此议题将在提交 $1 合并到 '$2' 分支后关闭。\"],\n\n        // 标签页面\n        [/open issues? and pull requests?/, \"个打开的议题和拉取请求\"],\n        [/open issues? or pull requests?/, \"个打开的议题或拉取请求\"],\n        [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您确定要将带有以下标签的 $1 条议题转换为讨论吗？\"],\n        [/(\\d+) labels/, \"$1 个标签\"],\n\n        // 子议题\n        [/Create new sub-issue in ([^ ]+)/, \"在 $1 中新建子议题\"],\n        [/(\\d+) of (\\d+)/, \"$1 / $2\"],\n        [/Filter contains (\\d+) issues?\\:/, \"筛选包含 $1 个议题：\"],\n\n        // 新版议题\n        [/(.+) will be between (.+) and (.+)./, \"“$1” 将在 “$2” 和 “$3” 之间。\"],\n        [/(.+) will not be moved./, \"“$1” 将不会被移动。\"],\n        [/(.+) will be first item in the list./, \"“$1” 将移至最前。\"],\n        [/(.+) will be last item in the list./, \"“$1” 将移至最后。\"],\n        [/of (\\d+) selected/, \"/ $1 选中\"],\n        [/(\\d+\\%) completed/, \"$1 完成\"],\n        [/Issue (#\\d+) created/, \"议题 $1 已创建\"],\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n        [/mentioned this in (\\d+) issues?/, \"在 $1 个议题中提及\"],\n        [/Create new issue in (.+)/, \"在 $1 新建议题\"],\n        [/Close as duplicate of (\\#\\d+)/, \"因同 $1 重复关闭\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New Issue\": \"创建议题\",\n        },\n        \"regexp\": [\n            [/Issues?/, \"议题\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/labels\"] = I18N[\"zh-CN\"][\"repository/issues\"];\n\nI18N[\"zh-CN\"][\"repository/pulls\"] = { // 仓库 - 拉取请求页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 仓库 --> 拉取请求 标签卡 /<user-name>/<repo-name>/pulls\n            // 欢迎信息\n            \"Welcome to pull requests!\": \"欢迎使用拉取请求！\",\n            \"Pull requests help you collaborate on code with other people. As pull requests are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"拉取请求可帮助您与其他人协作处理代码。创建拉取请求后，它们将出现在可搜索和可筛选的列表中。要开始，您应该\",\n            \"create a pull request\": \"创建拉取请求\",\n\n            // [/First time contributing to ([^ ]+)?/, \"首次为 $1 做贡献？\"], // /pulls\n            \"If you know how to fix an\": \"如果您知道如何修复一个\",\n            \"issue\": \"议题\",\n            \", consider opening a pull request for it.\": \"，可考虑为它打开一个拉取请求。\",\n            \"You can read this repository’s\": \"您可以阅读该仓库的\",\n            \"to learn how to open a good pull request.\": \"，去学习如何打开一个好的拉取请求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request.\": \"如果您想向这个仓库提交代码，请考虑打开一个拉取请求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request. You can read this repository’s\": \"如果您想向这个仓库提交代码，请考虑打开一个拉取请求。您可以阅读该仓库的\",\n\n            \"Label issues and pull requests for new contributors\": \"标记新贡献者的议题和拉取请求\",\n            \"Now, GitHub will help potential first-time contributors\": \"现在，GitHub 将帮助潜在的首次贡献者\",\n            \"discover issues\": \"探索议题\",\n            \"labeled with\": \"标记为\",\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"仅对该仓库不在提示\",\n                \"Dismiss for all repositories\": \"对所有仓库均不在提示\",\n\n            \"New pull request\": \"发起拉取请求\",\n\n            \"Reviews\": \"审查\",\n                // 筛选工作条\n                \"Filter by reviews\": \"按审查筛选\",\n                \"No reviews\": \"未经审查\",\n                // \"Review required\": \"需要审查\",\n                \"Approved review\": \"已批准的审查\",\n                \"Changes requested\": \"已请求更改\",\n                \"Reviewed by you\": \"由您审查\",\n                \"Not reviewed by you\": \"您未审查\",\n                \"Awaiting review from you\": \"等待您审查\",\n                \"Awaiting review from you or your team\": \"等待您或您的团队的审查\",\n                \"Awaiting review from you specifically\": \"特别等待您审查\",\n\n                // 筛选结果\n                \"There aren’t any open pull requests.\": \"暂无拉取请求。\",\n\n                \"You commented on and opened this pull request\": \"您打开了此拉取请求并发表了评论\",\n                \"You were mentioned on and commented on this pull request\": \"您被提及并对此拉取请求发表了评论\",\n                \"You commented on this pull request\": \"您对此拉取请求发表了评论\",\n                \"You opened this pull request\": \"您打开了此拉取请求\",\n\n                \"Suggested change\": \"建议更改\",\n\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n\n        [/(\\d+) reviews? requesting changes?/, \"$1 个请求审查更改\"],\n        [/(\\d+) linked issues?/, \"链接 $1 个议题\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/(#\\d+) by/, \"$1 打开者\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/(\\d+) Total/, \"$1 总计\"],\n        [/(\\d+) review requesting changes/, \"$1 个要求修改的审查\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次为 $1 做贡献？\"],\n        [/Suggested change/, \"建议更改\"],\n        [/Ears burning\\? Get\\@([^ ]+) mentions with/, \"耳朵痒吗？使用 @$1 查看提及：\"], // 专业提示\n        [/Notify someone on an issue with a mention, like: \\@([^ ]+)/, \"在议题中通过 @ 提及通知某人，例如：@$1\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pull requests/, \"拉取请求\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/pull\"] = { // 仓库 - 某个拉取请求页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 某条具体的拉取请求 /<user-name>/<repo-name>/pull/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 顶部提醒\n                \"The head ref may contain hidden characters:\": \"头部引用可能包含隐藏字符：\",\n                \"Your review was submitted on a merged pull request.\": \"您的审查已提交，一个合并的拉取请求。\",\n                \"Marked pull request as ready for review.\": \"标记拉取请求为可审核。\",\n                \"Your review was submitted successfully.\": \"您的审查已成功提交。\",\n                \"requested your review on this pull request.\": \"请求审核此拉取请求。\",\n                // Dependabot 打开的拉取请求\n                    \"Merging this pull request will resolve\": \"合并此拉取请求将解决\", // 后面警报数走正则\n                    //\"on rollup including a\": \"，包括 1 个\",\n                    \"severity alert.\": \"风险警报。\",\n\n            // 快捷键\n                \"Edit pull request title\": \"编辑拉取请求标题\",\n                \"Edit pull request body\": \"编辑拉取请求主体\",\n\n            // 编辑 -> 选择基础库\n            \"Choose a base branch\": \"选择基础分支\",\n            \"base:\": \"基础：\",\n                // 更改基础分支对话框\n                \"Find a branch\": \"搜索分支\",\n                \"Are you sure you want to change the base?\": \"您确定要更改基础分支吗？\",\n                \"Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.\": \"旧的基础分支的一些提交可能会从时间线上删除，而旧的审查意见可能会变得过时。\",\n                \"Change base\": \"更改基础分支\",\n\n            // 代码 下拉菜单\n                \"Code 55% faster with AI pair programming.\": \"与 AI 一起编程，写代码速度提高55%。\",\n                    \"Start my free trial\": \"开始我的免费试用\",\n                    \"Don't show again\": \"不再显示\",\n\n                \"Local\": \"本地\",\n                    \"Checkout with GitHub CLI\": \"使用 GitHub CLI 检出\",\n                    \"Work fast with our official CLI.\": \"使用我们的官方 CLI 快速工作。\",\n                    \"Checkout with GitHub Desktop\": \"使用 GitHub Desktop 检出\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 启动中\",\n                        \"If nothing happens,\": \"如果没有响应\",\n                            \"download GitHub Desktop\": \"下载 GitHub Desktop\",\n                            \"and try again.\": \"并重试\",\n\n                // 代码空间\n                    // 维护提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"this announcement\": \"此公告\",\n                    \"This pull request must be reopened to create new codespaces on it.\": \"必须重新打开此拉取请求才能在其上创建新的代码空间。\",\n                    \"Your workspaces in the cloud\": \"您在云端的工作空间\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Codespace repository configuration\": \"代码空间仓库配置\",\n                        \"New with options...\": \"新建（选项）…\",\n                        \"Configure dev container\": \"配置开发容器\",\n                        \"Set up prebuilds\": \"设置预构建\",\n                        \"Manage codespaces\": \"管理代码空间\",\n                        \"Share a deep link\": \"分享深度链接\",\n                            \"Share codespace configuration\": \"共享代码空间配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"选择共享时要包含此配置中的哪些设置\",\n                            \"Quick start\": \"快速开始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自动创建或使用最新匹配的代码空间。\",\n                            \"Read more about creating a link.\": \"阅读有关创建链接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下代码片段在您自己的页面或 README 中嵌入此配置的 “在 Codespaces 中打开” 按钮。\",\n                        \"What are codespaces?\": \"什么是代码空间？\",\n                    \"No codespaces\": \"尚无代码空间\",\n                    \"You don't have any codespaces with this repository checked out\": \"您没有检出此仓库的任何代码空间\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Learn more about codespaces...\": \"了解更多关于代码空间的信息…\",\n\n                    \"On current branch\": \"在当前分支\",\n                        \"No codespaces on current branch\": \"当前分支上没有代码空间\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探险\",\n                    \"Open miniature adventure in web\": \"在网络中打开迷你探险\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打开…\",\n                            \"Open in browser\": \"在浏览器中打开\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"将代码空间显示名称更改为…\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Create branch\": \"创建分支\",\n                        \"Change machine type\": \"更改机器类型\",\n                            \"Change codespace machine type\": \"更改代码空间机器类型\",\n                            \"Machine type\": \"机器类型\",\n                                \"2-core\": \"双核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"联系我们团队\",\n                            \"to enable 32-core or GPU machines.\": \"启用 32 核或 GPU 机器。\",\n                            \"Update codespace\": \"升级代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"Codespace configuration\": \"代码空间设置\",\n                    \"No changes\": \"未更改\",\n\n                    \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n                    // 被拉黑\n                        \"Repository access limited\": \"仓库访问受限\",\n                            \"You do not have access to push to this repository and its owner has disabled forking.\": \"您无权推送到此仓库，其所有者已禁用了复刻。\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n\n                // Copilot\n                    \"Describe a change you'd like to make to this pull request, such as adding tests or documentation...\": \"描述您想对此拉取请求进行的更改，例如添加测试或文档…\",\n                    \"Start task\": \"开始任务\",\n                    \"You can ask Copilot to make changes to this pull request by mentioning @copilot in a comment.\": \"您可以在评论中提及 @copilot，让 Copilot 对此拉取请求进行更改。\",\n                    \"Copilot generated this review using guidance from\": \"Copilot 生成此次审查，使用\",\n                        \"repository custom instructions\": \"仓库自定义指令\",\n\n            // 自动修复漏洞 提示\n                \"This automated pull request fixes a\": \"这个自动拉取请求将修复了一个\",\n                \"security vulnerability\": \"安全漏洞\",\n                \"Only users with access to Dependabot alerts can see this message.\": \"只有有权访问 Dependabot 警报的用户才能看到此消息。\",\n                \"Learn more about Dependabot security updates\": \"了解更多关于 Dependabot 安全更新的信息\",\n                \"opt out\": \"选择退出\",\n            // 顶部提醒\n                \"Opted out of Dependabot security updates.\": \"选择退出 Dependabot 安全更新。\",\n\n            // Dependabot 警报 拉取请求 提示\n                \"Merging this pull request will resolve a\": \"合并此拉取请求将解决\",\n                \"high\": \"高\",\n                \"severity\": \"严重性\",\n                    \"Filter alerts by 'high' severity.\": \"按“高”严重性过滤警报。\", // BUG: 不生效\n                \"Dependabot alert\": \"Dependabot 警报\",\n                \"on\": \"：\",\n                // 首次弹窗\n                    \"Your first automated security update\": \"您的第一个自动安全更新\",\n                        \"Dependabot security updates keep your projects secure and up-to-date.\": \"Dependabot 安全更新使您的项目安全且最新。\",\n                        \"You can opt out at any time in\": \"您可以在任何时候选择退出在\",\n                        \"this repository’s settings\": \"仓库设置\",\n                        \"Got it!\": \"我知道了\",\n\n                // 合并后顶部提醒\n                    // [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"该请求解决了 $1 的 Dependabot 警报问题。\"],\n\n            // 状态词\n            // [/merged (\\d+) commits? into/, \"将 4 个提交合并到\"],\n            \"into\": \"到\",\n            // \"merged\": \"已合并\",\n            \"wants to merge\": \"希望合并\",\n            \"commit into\": \"个提交到\",\n            \"commits into\": \"个提交到\",\n            \"from\": \"来自\",\n            \"closed this\": \"关闭了这个\",\n            \"reopened this\": \"重新打开了这个\",\n            \"added a commit that referenced this pull request\": \"添加了引用此拉取请求的提交\",\n            \"removed the request for review from\": \"取消请求审查\",\n            \"pushed a commit that referenced this pull request\": \"推送了一个引用此拉取请求的提交\",\n            \"suggested changes\": \"建议更改\",\n            \"deleted the branch\": \"删除了分支\",\n            \"deleted a comment from\": \"删除了评论从\",\n            // Copilot 专属状态词\n            \"started work\": \"开工\",\n            \"on behalf of\": \"代表\",\n                \"View session\": \"查看\",\n            \"finished work\": \"完工\",\n            \"finished work on behalf of\": \"完工，代表\",\n            \"stopped work on behalf of\": \"停工，代表\",\n                \"due to an error\": \"因为错误\",\n\n            // 标签栏\n            \"Conversation\": \"讨论\",\n            // 提交\n                \"No new commits\": \"无新提交\", // 下方句子走正则\n                \"was force-pushed and no longer has any new commits. Pushing new commits will allow the pull request to be re-opened.\": \"分支已强制推送，并且不再包含任何新的提交。推送新的提交将允许重新打开拉取请求。\",\n            \"Checks\": \"检查\",\n                \"Search logs\": \"搜索日志\",\n                \"Pushing new commits will allow the pull request to be re-opened.\": \"推送新的提交将允许重新打开拉取请求。\", // 上面的句子走正则\n            \"Files changed\": \"更改的文件\",\n                \"No changes to show.\": \"无更改显示。\", // 删除复刻仓库的提交时出现\n                \"This commit has no content.\": \"该提交无内容。\", // 同上\n              \"authored\": \"撰写于\",\n\n            // 右侧栏 补充\n                // 审查者\n                \"Reviewers whose approvals may not affect merge requirements\": \"审查者的批准可能不影响合并要求。\",\n\n                \"Allow edits by maintainers\": \"允许维护者进行编辑\",\n                    \"Allowing edits by maintainers\": \"允许维护者进行编辑\",\n                    \"If checked, users with write access to\": \"若勾选此项，拥有对\",\n                    \"can add new commits to\": \"具有写入权限的用户可以在您的\",\n                    \"branch.\": \"分支上添加新的提交。\",\n                    \"You can always change this setting later.\": \"您可以随时修改此设置。\",\n                    \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通过授予写入权限，维护者可能会编辑您仓库的工作流程以揭示机密值，并获取对其他分支的访问权限。\",\n                    \"Got it\": \"知道了\",\n                    \"If checked,\": \"如果选中，\",\n                    // [/users with write access to ([^ ]+) can add new commits/, \"对 $1 具有写权限的用户可以添加新的提交\"], // 具体拉取请求\n                    \"to your\": \"到您的\",\n                    \"branch. You can always change this setting later.\": \"分支。您以后可以随时更改此设置。\",\n                \"Allow edits and access to secrets by maintainers\": \"允许维护者编辑和访问机密\",\n                    \"Maintainers could potentially edit this repository's workflows to reveal values of secrets and gain access to other branches.\": \"维护者有可能编辑这个仓库的工作流程来获取机密值，并获得对其他分支的访问。\",\n\n                \"Maintainers are allowed to edit this pull request.\": \"允许维护者编辑此拉取请求。\",\n\n                // 进展\n                    \"In progress\": \"进行中\",\n                    \"started\": \"开始于\",\n                    \"Copilot is done\": \"Copilot 已完成\",\n                    \"Copilot has failed\": \"Copilot 已失败\",\n                    \"completed after\": \"总耗时\", // 示例：总耗时 11分45秒\n                    \"failed after\": \"失败于\",\n\n            // 讨论标签卡 主页\n            \"Refresh\": \"刷新\",\n\n            \"marked this pull request as draft\": \"将此拉取请求标记为草案\",\n            \"First-time contributor\": \"首次贡献者\",\n            // [/This user is a first-time contributor to the ([^ ]+) repository./, \"该用户是第一次为 $1 仓库做贡献。\"]\n            \"View changes\": \"查看更改\",\n            \"Outdated\": \"陈旧的\",\n            \"Resolve conversation\": \"转为已解决对话\",\n                \"Resolving conversation…\": \"正在转为已解决对话……\",\n            \"Unresolve conversation\": \"转为未解决对话\",\n                \"Unresolving conversation…\": \"正在转为未解决对话……\",\n                \"marked this conversation as resolved.\": \"已将此对话标记为已解决。\",\n            \"Changes requested\": \"更改请求\",\n            \"Change requested\": \"更改请求\",\n            \"Show resolved\": \"显示已解决\",\n            \"Hide resolved\": \"隐藏已解决\",\n            \"Reviews\": \"审查\",\n            \"Show all reviewers\": \"显示所有审查者\",\n            \"Hide all reviewers\": \"隐藏所有审查者\",\n            \"New changes since you last viewed\": \"自您上次查看以来的新变化\",\n            \"mentioned this pull request\": \"提及这个拉取请求\",\n            \"linked an issue\": \"链接议题\",\n            \"that may be\": \"将在该拉取请求合并时\",\n            \"closed\": \"关闭\",  // 浮动小字走正则\n            \"by this pull request\": \" \",\n            \"dismissed\": \"驳回\",\n            \"\\’s\": \" 的\",\n            \"stale review\": \"陈旧审查\",\n            \"via\": \"通过\",\n            \"force-pushed\": \"强制推送\",\n            \"enabled auto-merge (squash)\": \"启用自动合并（压缩）\",\n            \"the\": \" \",\n            \"branch from\": \"分支从\",\n            \"and others\": \"和其他成员\",\n            \"previously\": \"预先\",\n            \"approved these changes\": \"批准这些更改\",\n            \"previously approved these changes\": \"预先批准这些更改\",\n                \"See review\": \"查看审查\",\n                \"Dismiss review\": \"驳回审查\",\n            \"started a review\": \"开始审查\",\n                \"View reviewed changes\": \"查看已审核的更改\",\n            \"self-requested a review\": \"自我要求审查\",\n            \"self-assigned this\": \"已自我审查\",\n            \"unassign me\": \"取消自我分配\",\n            \"marked this pull request as ready for review\": \"已将此拉取请求标记为可审核\",\n            \"merged commit\": \"合并提交\",\n            \"left a comment\": \"发表评论\",\n            \"Add more commits by pushing to the\": \"添加更多提交，通过推送到\",\n            \"branch on\": \"分支在\",\n            \"requested review from\": \"请求审查\",\n                \"a team\": \"团队\",\n                \"as a\": \"作为\",\n                \"code owner\": \"代码所有者\",\n            \"started reviewing\": \"开始审查\",\n            \"finished reviewing on behalf of\": \"完成审查，代表\",\n            \"This pull request was\": \"此拉取请求已\",\n            \"Compare\": \"比较\",\n            \"deleted the\": \"删除\",\n            \"branch\": \"分支\",\n            \"added\": \"添加\",\n            \"requested changes\": \"要求更改\",\n            \"changed the title\": \"修改了标题\",\n            \"changed the base branch from\": \"更改基础分支从\",\n            \"added the\": \"添加\",\n            \"label\": \"标签\",\n            \"closed this\": \"已关闭\",\n            \"reopened this\": \"已重新打开\",\n            \"closed this by deleting the head repository\": \"已关闭因仓库已删除\",\n            \"Requested changes\": \"请求更改\",\n            \"restored the\": \"恢复\",\n            \"unlocked this conversation\": \"解锁此对话\",\n            \"added this to the\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"review requested due to automatic review settings\": \"因设置自动审查\",\n\n            //\n            \"This branch has not been deployed\": \"该分支尚未部署\",\n            \"No deployments\": \"未部署\",\n\n            // 拉取请求状态\n            \"Review requested\": \"请求审查\",\n            \"New changes require approval from someone other than the last pusher.\": \"新更改需要最后推送者以外的其他人批准。\",\n            \"Review has been requested on this pull request. It is not required to merge.\": \"此拉取请求已请求进行审查。这不是合并的必要条件。\",\n            \"Learn more about requesting a pull request review.\": \"了解更多关于申请拉取请求审核的信息。\",\n            // [/(\\d+) pending reviewers?/, \"$1 名待审者\"],\n            \"was requested for review\": \"被请求审查\",\n\n            \"Changes reviewed\": \"更改已审查\",\n                \"No applicable reviews submitted by reviewers with write access.\": \"没有具有写入权限的审查者提交适用的审查意见。\",\n\n            // 已请求更改\n                // [/(\\d+) reviews? requesting changes by reviewers with write access./, \"$1 条评论请求更改由具有写入权限的审查者进行更改。\"], // 拉取请求\n\n            \"All conversations are resolved\": \"所有对话均已解决\",\n                // [/(\\d+) resolved conversations?/, \"2 条对话已解决\"], // 拉取请求\n\n            \"No unresolved conversations\": \"没有未解决的对话\",\n                \"There aren't yet any conversations on this pull request.\": \"此拉取请求尚无任何对话。\",\n\n            \"This pull request is still a work in progress\": \"此拉取请求仍在进行中\",\n                \"Ready for review\": \"准备审核\",\n                \"Draft pull requests cannot be merged.\": \"拉取请求草案不能合并。\",\n            \"This pull request can be automatically merged by project collaborators\": \"此拉取请求可以由项目协作者自动合并\",\n                \"Only those with\": \"只有对此仓库具有\",\n                \"write access\": \"写入访问权限\",\n                \"to this repository can merge pull requests.\": \"的才可合并拉取请求。\",\n                \"to this repository can mark a draft pull request as ready for review.\": \"的才可将拉取请求草案标记为可供审查。\",\n\n            // \"Review required\": \"需要审查\", // 拉取请求 页面状态词\n                \"Add your review\": \"添加您的评论\",\n                // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n            \"Code owner review required\": \"需要代码所有者审核\",\n                \"was requested for review as a code owner\": \"要求以代码所有者身份进行审查\",\n            \"Conversation resolution required\": \"需要解决对话\",\n                \"A conversation must be resolved before this pull request can be merged.\": \"在合并此拉取请求前，必须先解决对话。\",\n            \"Learn more about pull request reviews.\": \"了解更多关于拉取请求审核的信息。\",\n            \"Changes approved\": \"变更已获批准\",\n            \"Approval not required\": \"不需要批准\",\n            \"This pull request may be merged without approvals.\": \"可以在没有批准的情况下合并此拉取请求。\",\n            // [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 个批准的审查由具有写入权限的审查者进行审查。\"],\n            // [/(\\d+) approvals?/, \"$1 项批准\"],\n            \"Some checks haven’t completed yet\": \"有些检查还没有完成\",\n            // [/1 in progress check/, \"$1个正在进行的检查\"],\n            \"Some checks were not successful\": \"有些检查不成功\",\n            // [/1 skipped, 4 successful, and 2 failing checks/, \"$1 个跳过, $2 个成功, $3 失败\"],\n            // [/1 skipped, 4 successful, and 2 expected checks/, \"$1 个跳过, $2 个成功, $3 个预先检查\"],\n            \"All checks have passed\": \"所有检查均已通过\",\n            \"All checks have failed\": \"所有检查均失败\",\n            // [/5 successful checks/, \"\"],\n            // [/6 checks passed/, \"\"],\n                \"Show all checks\": \"显示所有检查\",\n                \"Hide all checks\": \"隐藏所有检查\",\n                \"Details\": \"细节\",\n                \"Required\": \"必须\",\n                \"Checks settings\": \"检查设置\",\n                    \"Group by status\": \"按状态分组\",\n                    \"No grouping\": \"不分组\",\n            \"Unresolved conversations\": \"未解决的讨论\",\n                // [/(\\d+) conversations? must be resolved before merging./, \"合并之前必须解决 $1 个对话。\"],\n            \"No conflicts with base branch\": \"与基础分支没有冲突\",\n                \"Changes can be cleanly merged.\": \"更改可以被干净地合并。\",\n\n                \"Update branch options\": \"更新分支选项\",\n            \"Merging is blocked\": \"合并被阻止\",\n                \"Commits must have verified signatures.\": \"提交必须验证签名。\",\n                \"The base branch requires all conversations on code to be resolved.\": \"基础分支要求解决所有关于代码的对话。\",\n                \"The base branch requires all commits to be signed.\": \"基础分支要求所有提交都经过签名。\",\n                \"Learn more about signing commits.\": \"了解更多关于签名提交的信息。\",\n                \"View rules\": \"查看规则\",\n                // 无权提交\n                \"You're not authorized to push to this branch. Visit\": \"您没有权限推送到此分支。请访问\",\n                    \"for more information.\": \"获取更多信息。\",\n                // 新版合并界面\n                \"Merge is not an allowed merge method in this repository.\": \"合并不是此仓库允许的合并方法。\",\n                \"Pull request cannot be merged because it has a merge conflict.\": \"由于存在合并冲突，无法合并拉取请求。\",\n                \"User does not have push access to the repository.\": \"用户无权推送到此仓库。\",\n                \"You're not authorized to push to this branch. Visit https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches for more information.\": \"您无权推送到该分支。请访问 https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches 了解更多信息。\",\n\n                // 绕过规则合并\n                \"Merge without waiting for requirements to be met (bypass rules)\": \"无需等待满足要求即可合并（绕过规则）\",\n                \"Bypass rules and merge\": \"绕过规则合并\",\n                    \"Confirm bypass rules and merge\": \"确认绕过规则合并\",\n                \"Bypass rules and merge (squash)\": \"绕过规则合并（压缩）\",\n                    \"Confirm bypass rules and merge (squash)\": \"确认绕过规则合并（压缩）\",\n                \"Bypass rules and merge (rebase)\": \"绕过规则合并（变基）\",\n                    \"This will rebase your changes and merge them into\": \"将更改变基合并到\",\n                    \"Confirm bypass rules and merge (rebase)\": \"确认绕过规则合并（变基）\",\n\n            \"Merging can be performed automatically once the requested changes are addressed.\": \"一旦请求的更改得到解决，合并就可以自动执行。\",\n            \"This branch is out-of-date with the base branch\": \"此分支相比基础分支已过时\",\n                \"Merge the latest changes from\": \"将\",\n                \"into this branch.\": \"的最新更改合并到此分支中。\",\n                    \"Update branch\": \"更新分支\",\n                        \"Update with merge commit\": \"使用合并提交更新\",\n                            \"The latest changes will be merged into this branch with a merge commit.\": \"最新的更改将通过合并提交合并到此分支中。\",\n                            \"The merge commit will be associated with your account.\": \"合并提交将与您的账户相关联。\",\n                        \"Update with rebase\": \"使用变基更新\",\n                            \"This branch cannot be rebased due to conflicts.\": \"由于冲突，此分支不能变基。\",\n                            \"This pull request will be rebased on top of the latest changes and then force pushed.\": \"此拉取请求将会在最新的更改之上进行变基，并且会使用强制推送的方式提交。\",\n                            \"This branch cannot be rebased due to conflicts\": \"由于冲突，无法对此分支执行变基操作。\",\n                // [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"将最新更改从 $1 分支合并到当前分支。该合并提交将与用户 $2 相关联。\"],\n\n            \"The base branch restricts merging to authorized users.\": \"基础分支合并仅限于授权用户。\",\n            \"Learn more about protected branches.\": \"了解更多关于受保护分支的信息。\",\n            // [/Merging can be performed automatically with (\\d+) approving review./, \"合并可以通过 $1 次批准审查自动执行。\"],\n            \"Merge without waiting for requirements to be met (bypass branch protections)\": \"合并而无需等待需求满足（绕过分支保护）。\",\n                \"Extended description\": \"扩展描述\",\n                \"Add an optional extended description…\": \"添加可选的扩展描述…\",\n                // [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"],\n            \"Checks awaiting conflict resolution\": \"等待冲突解决\",\n\n            // 合并失败提示\n                \"Merge attempt failed\": \"合并尝试失败\",\n                \"We couldn’t merge this pull request. Reload the page before trying again.\": \"我们无法合并此请求。重新加载页面后再试。\",\n\n            // [/(\\d+) workflow awaiting approval/, \"$1 个工作流等待批准\"],\n            \"First-time contributors need a maintainer to approve running workflows.\": \"首次贡献者需要维护者来批准正在运行的工作流。\",\n            \"The base branch does not accept merge commits. Alternate merge methods are preferred.\": \"基础分支不接受合并提交。其他合并方法是首选。\",\n            // [/The ([^ ]+) branch requires linear history/, \"$1 分支为要求线性历史记录\"],\n            \"Learn more about required linear history.\": \"了解更多关于要求线性历史记录的信息。\",\n\n            \"Checking for the ability to merge automatically...\": \"检测自动合并的能力…\",\n            \"Hang in there while we check the branch's status.\": \"请等待，我们正在检查该分支的状态\",\n\n            \"Required statuses must pass before merging\": \"合并前必须通过所需的状态\",\n            \"All required\": \"所有必需\",\n            \"statuses\": \"状态\",\n            \"and check runs on this pull request must run successfully to enable automatic merging.\": \"和检查运行在该拉取请求上必须成功运行，才能启用自动合并。\",\n\n            \"Continuous integration has not been set up\": \"尚未设置持续集成\",\n            \"several other apps\": \"其他一些应用\",\n            \"can be used to automatically catch bugs and enforce style.\": \"可用于自动捕获错误和强制执行样式。\",\n\n            \"This branch has no conflicts with the base branch\": \"该分支与基础分支没有冲突\",\n            \"No conflicts with base branch\": \"与基本分支无冲突\",\n                \"Merging can be performed automatically.\": \"可以自动地执行合并。\",\n                \"Changes can be cleanly merged.\": \"可以干净地合并更改。\",\n\n            \"This branch has no conflicts with the base branch when rebasing\": \"该分支基变时与基础分支没有冲突。\",\n                \"Rebase and merge can be performed automatically.\": \"可以自动执行变基和合并。\",\n\n                \"You’re not\": \"您无\",\n                \"authorized\": \"权限\",\n                \"to merge this pull request.\": \"合并此拉取请求。\",\n\n            \"Merge pull request\": \"合并拉取请求\",\n                \"Merging is blocked due to failing merge requirements\": \"由于未满足合并要求，合并已被阻止。\",\n            // 合并拉取请求 按钮下拉\n            \"Select merge method\": \"选择合并方式\",\n                \"Create a merge commit\": \"创建合并提交\",\n                    \"All commits from this branch will be added to the base branch via a merge commit.\": \"该分支的所有提交都将通过合并提交加入到基础分支中。\",\n                    \"Not enabled for this repository\": \"未为此仓库启用\",\n                \"Squash and merge\": \"压缩合并\",\n                    // [/The (\\d+) commits? from this branch will be added to the base branch./, \"该分支的 $1 个提交将合并到基本分支中。\"],\n                \"Rebase and merge\": \"变基合并\",\n                    // [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 个提交将变基合并到基础分支中。\"],\n                    \"Failed to load repo merge settings\": \"无法加载仓库合并设置\",\n\n            //确认合并 对话框\n                // 新版合并界面\n                \"Commit header\": \"提交标题\",\n                \"Commit message\": \"提交信息\",\n                \"This commit will be authored by\": \"此提交的作者是\",\n            \"Confirm merge\": \"确认合并\",\n            \"Confirm squash and merge\": \"确认压缩合并\",\n            \"Confirm rebase and merge\": \"确认变基合并\",\n            \"Merging…\": \"合并中…\",\n\n            \"You can also\": \"您也可以\",\n            \"open this in GitHub Desktop\": \"在 GitHub Desktop 中打开\",\n            \"or view\": \"，或查看\",\n            \"You can also merge this with the command line, view\": \"您也可以使用命令行合并，查看\",\n            \"command line instructions\": \"命令行指令\",\n            \"You can also merge this with the command line.\": \"您也可以使用命令行合并。\",\n            \"View command line instructions.\": \"查看命令行指令。\",\n\n            // \"Merged\": \"已合并\",\n            \"More actions\": \"更多操作\",\n            \"View details\": \"查看详情\",\n            \"Hide details\": \"隐藏详情\",\n            \"Revert\": \"还原\",\n                \"Create a new pull request to revert these changes\": \"创建一个新的拉取请求以恢复这些更改\",\n            \"Closed with unmerged commits\": \"已关闭的未合并的提交\",\n                \"This pull request is closed.\": \"此拉取请求已关闭。\",\n\n            \"Pull request successfully merged and closed\": \"拉取请求已成功合并并关闭\",\n                \"You're all set — the\": \"一切就绪\",\n                \"branch has been merged and deleted.\": \"分支已合并并删除。\",\n                \"You're all set — the branch has been merged.\": \"一切就绪 - 该分支已合并。\",\n            \"Delete branch\": \"删除分支\",\n            \"Restore branch\": \"恢复分支\",\n\n            \"Pull request closed\": \"拉取请求已关闭\",\n            \"This pull request is closed, but the\": \"此拉取请求已关闭，但是\",\n            \"branch has unmerged commits.\": \"分支具有未合并的提交。\",\n            \"branch has unmerged commits. You can delete this branch if you wish.\": \"分支具有未合并的提交。您可以根据需要删除此分支。\",\n            \"If you wish, you can also delete this fork of\": \"如果需要，还可以删除此复刻\",\n            \"If you wish, you can delete this fork of\": \"如果需要，可以删除此复刻\",\n            \"in the\": \"在\",\n            \"settings\": \"设置\",\n\n            // \"Only those with\": \"只有对此仓库具有\",\n            // \"write access\": \"写入访问权限\",\n            // \"to this repository can merge pull requests.\": \"的才可合并拉取请求。\",\n            \"You’re all set — the\": \"一切就绪 —\",\n            \"You’re all set—the\": \"一切就绪 —\",\n            \"branch can be safely deleted.\": \"分支可以被安全删除。\",\n            \"This branch has conflicts that must be resolved\": \"该分支存在冲突，必须解决\",\n                \"Resolve conflicts then push again. These conflicts are too complex to resolve in the web editor. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"解决冲突后再次推送。这些冲突过于复杂，无法在 Web 编辑器中解决。当该拉取请求存在合并冲突时，操作工作流将不会触发该拉取请求的活动。\",\n                \"These conflicts are too complex to resolve in the web editor.\": \"这些冲突过于复杂，无法在网页编辑器中解决。\",\n                \"You do not have permission to push to the head branch.\": \"您没有权限向主分支推送。\",\n                \"Use the command line\": \"使用命令行\",\n                \"to resolve conflicts before continuing.\": \"解决冲突后再继续。\",\n                \"or the command line to resolve conflicts before continuing. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"或通过命令行解决冲突。在此拉取请求仍存在合并冲突的情况下，操作工作流不会因该拉取请求的活动而触发。\",\n                \"or the command line to resolve conflicts before continuing.\": \"或通过命令行解决冲突后再继续。\",\n                \"Use the command line to resolve conflicts before continuing.\": \"使用命令行解决冲突后再继续。\",\n\n                \"Checkout via command line\": \"通过命令行检出\",\n                \"Checkout via the command line\": \"通过命令行检出\", // 新版合并界面\n                \"If the conflicts on this branch are too complex to resolve in the web editor, you can check it out via command line to resolve the conflicts.\": \"如果该分支上的冲突过于复杂，无法在 Web 编辑器中解决，您可以通过命令行检出来解决冲突。\",\n                \"If you do not want to use the merge button or an automatic merge cannot be performed, you can perform a manual merge on the command line. However, the following steps are not applicable if the base branch is protected.\": \"如果不想使用合并按钮或无法执行自动合并，可以在命令行上执行手动合并。但若基本分支受到保护，则不适用以下步骤。\", //新版合并界面\n                \"Step\": \"步骤\", // 新版合并界面\n                \"Step 1:\": \"第 1 步：\",\n                    \"From your project repository, check out a new branch and test the changes.\": \"从项目仓库中，检出新分支并测试更改。\",\n                    \"Clone the repository or update your local repository with the latest changes.\": \"克隆仓库或使用最新更改更新本地仓库。\",\n                \"Step 2:\": \"第 2 步：\",\n                    \"Merge the changes and update on GitHub.\": \"合并更改并在 GitHub 上更新。\",\n                    \"Switch to the head branch of the pull request.\": \"切换到拉取请求的头部分支。\",\n                \"Step 3:\": \"第 3 步：\",\n                    \"Merge the base branch into the head branch.\": \"将基础分支合并至头部分支。\",\n                \"Step 4:\": \"第 4 步：\",\n                    \"Fix the conflicts and commit the result.\": \"修复冲突并提交。\",\n                    \"See\": \"查阅\",\n                        \"Resolving a merge conflict using the command line\": \"使用命令行解决合并冲突\",\n                        \"for step-by-step instructions on resolving merge conflicts.\": \"的分步说明。\",\n                \"Step 5:\": \"第 5 步：\",\n                    \"Push the changes.\": \"推送更改。\",\n                // 新版合并界面 复制按钮\n                    \"Copy clone URL\": \"复制克隆链接\",\n                    \"Copy clone command\": \"复制克隆命令\",\n                    \"Copy checkout command\": \"复制切换命令\",\n                    \"Copy merge command\": \"复制合并命令\",\n                    \"Copy push command\": \"复制推送命令\",\n\n            \"Resolve conflicts\": \"解决冲突\",\n                \"Use the\": \"使用\",\n                \"web editor\": \"Web 编辑器\",\n                \"or the\": \"或\",\n                \"command line\": \"命令行\",\n                \"to resolve conflicts.\": \"来解决冲突。\",\n                \"These conflicts are too complex to resolve in the web editor\": \"这些冲突过于复杂，无法在网页编辑器中解决\",\n            \"Conflicting files\": \"冲突的文件:\",\n\n            \"Require approval from specific reviewers before merging\": \"合并前需要特定审查者的批准\",\n                \"Branch protection rules\": \"分支保护规则\",\n                \"Rulesets\": \"规则集\",\n                \"ensure specific people approve pull requests before they're merged.\": \"确保特定人员在合并之前批准拉取请求。\",\n            \"Add rule\": \"添加规则\",\n            // [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"确保特定的人或团队在拉取请求被合并到您的 $1 分支之前批准它们。\"], // 合并拉取请求\n\n            // [/(\\d+) workflows? awaiting approval/, \"$1 个工作流程等待批准\"],\n            \"This workflow requires approval from a maintainer.\": \"此工作流程需要维护者批准。\",\n            \"Learn more about approving workflows.\": \"了解更多关于批准工作流程的信息。\",\n            \"Approve and run\": \"批准并运行\",\n            \"Approve and run workflows\": \"批准并运行工作流程\",\n            \"Approve workflows to run\": \"批准运行工作流程\",\n\n            // 状态词\n            \"reviewed\": \"审查\",\n            \"requested a review from\": \"请求审查\",\n            \"Reply...\": \"回复…\",\n\n            // 代码审查回复\n            \"Suggestions cannot be applied on outdated comments.\": \"建议不要应用于过时的评论。\",\n            \"Suggested change\": \"更改建议\",\n            \"This code change can be committed by users with write permissions.\": \"具有写入权限的用户可以提交此代码更改。\",\n\n            \"This branch was successfully deployed\": \"该分支已成功部署\",\n            \"Show environments\": \"显示环境\",\n            // [/(\\d+) active deployments?/, \"$1 个活动的部署\"],\n\n            // 评论输入框选项，仅PR界面有\n                \"Copilot actions\": \"Copilot 操作\",\n                   \"Generate\": \"生成\",\n                   \"Summary\": \"总结\",\n                   \"Generate a summary of the changes in this pull request.\": \"生成此拉取请求的更改摘要。\",\n                \"Summarizing changes… this might take a minute\": \"总结更改…这可能需要 1 分钟\",\n\n        // 拉取请求 --> 提交 标签卡 /<user-name>/<repo-name>/pull/<id>/commits\n            // 顶部提示\n                \"This pull request is big! We're only showing the most recent 250 commits\": \"该拉取请求过大！仅显示最近 250 次提交\",\n            \"Commits\": \"提交\",\n            // [/Commits (.+)/, \"提交于 $1\"]\n            \"committed\": \"提交于\",\n\n            \"Copy the full SHA\": \"复制完整的 SHA\",\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n        // 拉取请求--> 提交 --> 某提交详情/<user-name>/<repo-name>/pull/<id>/commits/<full SHA>\n            \"commit\": \"提交\",\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand All\": \"展开全部\",\n            \"Collapse expanded lines\": \"折叠展开行\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n\n            // 修改的 yaml 文件，预览窗口\n            \"Loading Dependency Review...\": \"正在加载依赖审查…\",\n            \"No dependencies changed.\": \"未更改依赖。\",\n                \"The changes to this file likely do not affect the dependencies\": \"对此文件的更改可能不会影响依赖\",\n\n            \"Give feedback on\": \"提交反馈，在\",\n                \"dependency review\": \"依赖项审查\",\n\n            // 修改的文件 右侧下拉\n            \"Show comments\": \"显示评论\",\n            \"Show annotations\": \"显示注释\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"编辑文件\",\n            \"Delete file\": \"删除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打开\",\n            \"Copilot is not available for this file type\": \"Copilot 不支持此文件类型\",\n\n            // 上一页\n            \"You are viewing the earliest commit\": \"您正在查看最早的提交\",\n            // 下一页\n            \"You are viewing the latest commit\": \"您正在查看最新的提交\",\n\n            \"This merge commit was added into this branch cleanly.\": \"该合并提交被干净利落地添加到该分支中。\",\n                \"There are no new changes to show, but you can still\": \"没有新的更改可显示，但您仍然可以\",\n                \"view the diff.\": \"查看差异。\",\n\n            // 中间\n            \"Loading branch information\": \"正在加载分支信息\",\n\n            \"Some comments aren't visible on the classic Files Changed page.\": \"某些评论在传统更改的文件页不可见。\",\n\n        // 拉取请求 --> 更改的文件 标签卡 /<user-name>/<repo-name>/pull/<id>/files\n            // 网络错误\n            \"There was an issue loading this file\": \"加载此文件时出错\",\n                \"Try refreshing the page or if the problem persists\": \"请尝试刷新页面，如果问题仍然存在，请\",\n                    \"contact support\": \"联系支持人员\",\n\n            \"Try the new experience\": \"尝试新体验\",\n            // 工具条\n            \"Browse files\": \"浏览文件\", // 两个提交的比较页面\n\n            \"Show file tree\": \"显示文件树\",\n            \"Hide file tree\": \"隐藏文件树\",\n            \"Changes from\": \"更改自\",\n                \"all commits\": \"所有提交\",\n                // 下拉\n                \"Show all changes\": \"显示所有更改\",\n                // [/(\\d+) commits?/, \"$1 条提交\"],\n                \"Show changes since your last review\": \"显示自您上次评论以来的更改\",\n                // \"You haven‘t reviewed this pull requeste\": \"您尚未审查过此请求请求\",\n                \"You haven’t reviewed this pull request yet\": \"您尚未审查此请求请求\",\n                \"Select commit\": \"选择提交\",\n                \"Hold shift + click to select a range\": \"按住 shift + 单击以选择一个范围\",\n            \"File filter\": \"文件筛选\",\n                \"Filter by extension\": \"按文件后缀名筛选\",\n                    \"No extension\": \"无后缀名\",\n                    // [/All (\\d+) file types? selected/, \"所有 $1 种文件类型被选中\"],\n                    // [/Select all 1 file types?/, \"选择所有 $1 种文件类型\"],\n                    \"Only manifest files\": \"仅清单文件\",\n                \"There are no files selected for viewing\": \"没有选择要查看的文件\",\n                \"Viewed files\": \"查看过的文件\",\n                // \"filter file types\": \"筛选文件类型\",\n                // \"filter viewed files\": \"筛选已查看文件\",\n                // \"hide viewed files\": \"隐藏已查看文件\",\n                // \"filter by context\": \"按内容筛选\",\n            \"Clear filters\": \"清除筛选\",\n            \"Conversations\": \"讨论\",\n            \"Jump to conversation\": \"跳转到讨论\",\n                \"Give feedback\": \"反馈\",\n                // [/Unresolved conversations/, \"未解决的讨论\"],\n                \"Nice work!\": \"干得好！\",\n                \"All of your conversations have been resolved.\": \"您的所有讨论都已解决。\",\n                // [/Resolved conversations/, \"已解决的讨论\"],\n                \"No conversations yet\": \"尚无讨论\",\n                \"Review conversations will show up here.\": \"审查讨论将显示在这里。\",\n            // \"Jump to\": \"跳转到\",\n                \"Jump to file\": \"跳转到文件\",\n                \"Filter changed files\": \"筛选已更改文件\",\n                    \"No files found.\": \"未找到文件。\",\n            // 差异视图\n                \"Diff view\": \"差异视图\",\n                // \"Always\": \"总是\",\n                \"Unified\": \"同屏\",\n                \"Split\": \"分屏\",\n                // \"Just for now\": \"仅当前\",\n                // \"Hide whitespace changes\": \"隐藏空白更改\",\n                \"Hide whitespace\": \"隐藏空白\",\n                \"Apply and reload\": \"应用并重新加载\",\n            \"Show whitespace\": \"显示空白\",\n            \"Expand file\": \"展开文件\",\n            \"Collapse file\": \"折叠文件\",\n            // \"Refresh\": \"刷新\",\n            // 复制文件按钮\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n\n            \"Open overview side panel\": \"打开概览侧边栏\",\n                \"Close overview panel\": \"关闭\", // 过于啰嗦省略\n            // 评论\n                \"No replies\": \"无回复\",\n\n            \"files viewed\": \"查看过的文件\",\n                \"Marking files as viewed can help keep track of your progress, but will not affect your submitted review\": \"将文件标记为已查看可以帮助您跟踪进度，但不会纠正您提交的审查\",\n            // 咨询 Copilot\n                \"Loading Copilot features…\": \"加载 Copilot 功能…\",\n                \"Copilot is not available for this pull request\": \"Copilot 不可用于此拉取请求\",\n            \"Review in codespace\": \"在代码空间中审查\",\n            // \"Review changes\": \"审查更改\", // 使用 Selector 规则翻译\n                // 下拉\n                \"Finish your review\": \"完成审查\",\n                    \"Submit general feedback without explicit approval.\": \"未批准，并提出一般性反馈意见。\",\n                \"Approve\": \"批准\",\n                    \"Submit feedback approving these changes.\": \"批准，并提出反馈意见。\",\n                    \"Submit feedback and approve merging these changes.\": \"提交反馈意见并批准合并这些更改。\",\n                    \"Pull request authors can’t approve their own pull request.\": \"拉取请求作者无法批准自己的拉取请求。\",\n                    \"Only users with explicit access to this repository may approve pull requests\": \"只有对这个仓库有明确访问权限的用户才能批准拉取请求\",\n                \"Request changes\": \"请求更改\",\n                    \"Submit feedback suggesting changes.\": \"请求更改，并提出更改反馈意见。\",\n                    \"Submit feedback that must be addressed before merging.\": \"提交合并前必须解决的反馈意见\",\n                    \"Pull request authors can’t request changes on their own pull request.\": \"拉取请求作者不能在自己的拉取请求上请求更改。\",\n                    \"Only users with explicit access to this repository may request changes to pull requests\": \"只有对这个仓库有明确访问权限的用户才能请求更改拉取请求\",\n                \"Abandon review\": \"放弃审核\",\n                \"Submit review\": \"提交审查\",\n                    // 顶部提醒\n                        \"You need to leave a comment indicating the requested changes.\": \"您需要留下评论，说明所要求的更改。\",\n                \"Cancel review\": \"取消审核\",\n                \"pending\": \"条待处理\",\n                \"comment\": \"评论\",\n                \"comments\": \"评论\",\n\n            \"Review changes\": \"审查更改\",\n                // 被锁定\n                \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定，并限制与协作者对话。\",\n\n            \"Viewed\": \"已查看\",\n            \"Comment on this file\": \"评论此文件\",\n            \"Comment on file\": \"评论此文件\",\n\n            \"No changes to show\": \"没有更改\",\n                \"This commit does not include any file changes\": \"此提交未包含文件更改\",\n\n            \"Load diff\": \"载入差异\", // old 待清理\n            \"Load Diff\": \"载入差异\", // new\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不呈现。了解更多信息关于\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的显示方式\", // old 待清理\n            \"customizing how changed files appear on GitHub.\": \"自定义更改文件在 GitHub 中的显示方式。\", // new\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n                \"Added\": \"增加\",\n                \"Deleted\": \"删除\",\n                \"2-up\": \"并排\",\n                \"Swipe\": \"拖拽\",\n                \"Onion Skin\": \"渐变\",\n\n            // 大型拉取请求提示\n            \"This page has been optimized for large pull requests. Some browser features (like Find on Page or Select All) may not work as expected.\": \"此页面已针对大型拉取请求进行了优化。某些浏览器功能（如页面查找或全选）可能无法正常工作。\",\n                \"Switch to single file mode\": \"切换至单文件模式\",\n\n            \"These merge commits were added into this branch cleanly.\": \"这些合并提交已被干净利落地添加到该分支中。\",\n                \"There are no new changes to show.\": \"没有任何新的变化。\",\n\n            // 未更改文件检查注释(GA 检查)\n                \"Unchanged files with check annotations\": \"带检查注释的未更改文件\",\n                    \"View workflow job for this annotation\": \"查看此注释的工作流程作业\",\n\n            // 代码评论\n                \"Comment on lines\": \"评论行\",\n                \"Commenting on lines\": \"评论行\",\n\n            // Copilot 菜单\n                \"Ask Copilot about this diff\": \"与 Copilot 讨论此差异\",\n                    \"Copilot is not available for this file type\": \"Copilot 不支持此文件类型\",\n                \"Ask Copilot about this file-diff\": \"与 Copilot 讨论此文件差异\",\n                \"Copilot menu\": \"Copilot 菜单\",\n                    \"Explain\": \"解释\",\n                    \"Attach to current thread\": \"附加到当前主题\",\n                    \"Reference added to thread\": \"已附加至主题\", // 左下角浮窗\n                    \"Ask about this diff\": \"询问此差异\",\n\n                \"Select files to discuss\": \"选择文件讨论\",\n                    \"Copilot is not available for this file\": \"Copilot 不支持此文件\",\n                    \"Start chat\": \"开始聊天\",\n\n            // 建议更改\n                \"Suggested change\": \"建议更改\",\n                \"Sign off and commit suggestion\": \"签署并提交建议\",\n                    \"Suggestions cannot be applied from pending reviews.\": \"无法应用待审核中的更改\",\n                    \"This suggestion has been applied or marked resolved.\": \"该建议已被应用或标记为已解决。\",\n                    \"Outdated suggestions cannot be applied.\": \"过时建议不能应用。\",\n                \"Add suggestion to batch\": \"批量添加建议\",\n                    \"Add this suggestion to a batch that can be applied as a single commit.\": \"将此建议添加到可批量处理的单个提交中。\",\n                    \"Batching suggestions must be done from the files tab.\": \"批处理建议必须在 “文件” 选项卡中进行。\",\n                \"Commit suggestion\": \"提交建议\",\n\n                \"Pending in batch\": \"待批量处理\",\n                \"Remove from batch\": \"从批量处理中移除\",\n                    \"Remove this suggestion from those to be applied in batch\": \"从批量应用的建议中删除此建议\",\n                \"Sign off and commit suggestions\": \"签署并提交建议\",\n                    \"Apply all batched suggestions as a single commit\": \"将所有批量建议作为单个提交应用\",\n                \"Sign off and commit changes\": \"签署并提交更改\",\n                    \"Applying commit...\": \"正在应用提交…\",\n\n                \"This diff has recently been updated.\": \"该差异最近已更新。\",\n                \"Refresh and try again.\": \"刷新并重试。\",\n\n                \"Multiple suggested changes can be batched together in a single commit. Each suggestion author will be attributed in the commit as a co-author.\": \"多个建议更改可以在一次提交中批量处理。每个建议作者都将在提交中被归为共同作者。\",\n\n            // 新版\n                \"Switch back\": \"返回旧版\",\n                \"Feedback\": \"反馈\",\n\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Expand file tree\": \"展开文件树\",\n\n                \"All changes\": \"所有更改\",\n                \"All commits\": \"所有提交\",\n                \"Changes since your last review\": \"自您上次审核以来的更改\",\n                \"Specific commit…\": \"特定提交…\",\n                    \"Pick one or more commits\": \"选择多个提交\",\n                    \"Clear selection\": \"清除选择\",\n                        \"Picking a range will select commits in between.\": \"选择一个范围将会选中其间的提交。\",\n\n                \"viewed\": \"已审查\",\n\n                \"Comments\": \"评论\",\n                \"Submit\": \"提交\",\n                    \"review\": \"审查\",\n\n                \"Filter files…\": \"筛选文件…\",\n                \"Filter options\": \"选项\",\n                    \"File extensions\": \"文件扩展名\",\n\n                \"Layout\": \"结构\",\n                \"Minimize comments\": \"最小化评论\",\n                \"Compact line height\": \"紧凑行高\",\n\n                \"Select all\": \"全选\",\n                \"Expand above\": \"向上展开\",\n                \"Expand below\": \"向下展开\",\n                \"Go to next hunk\": \"下一块\",\n\n        // 拉取请求 --> 更改的文件 标签卡 /<user-name>/<repo-name>/pull/<id>/files/<full SHA>\n            \"You are viewing a condensed version of this merge commit. You can view the\": \"您正在查看该合并提交的浓缩版本。您可以查看\",\n            \"full changes here\": \"完整的更改\",\n\n            \"We went looking everywhere, but couldn’t find those commits.\": \"我们尝试寻找，就是找不到那些提交者。\",\n            \"Sometimes commits can disappear after a force-push. Head back to the\": \"有时提交会在强推后消失。头部回到\",\n            \"latest changes here\": \"最新的更改\",\n\n            \"Previous file (K)\": \"上个文件 (K)\",\n            \"Next file (J)\": \"下个文件 (J)\",\n\n            \"Comment on line\": \"评论行\",\n            \"Expand comment\": \"展开评论\",\n            \"Collapse comment\": \"折叠评论\",\n            \"Unresolve comment\": \"取消解决评论\",\n                \"marked this comment as resolved\": \"标记为已解决\",\n            \"Resolve comment\": \"解决评论\",\n                \"Apply suggestion\": \"应用建议\",\n                    \"More suggestion batching options\": \"更多选项\",\n                        \"This feature is not supported yet.\": \"此功能尚未支持。\",\n            \"Return to code\": \"返回代码\",\n            \"Reference in a new issue\": \"在新议题中引用\",\n\n            // 图片压缩\n            \"You're in single-file mode\": \"当前为单文件模式\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由于此拉取请求中的更改数量较多，因此一次只显示一个文件。\",\n\n                \"buttons to move between files.\": \"按钮在文件之间移动。\",\n\n                \"OK, got it\": \"知道了\",\n\n            // 评论\n                \"Filter comments\": \"筛选评论\",\n                    \"Show resolved comments\": \"显示已解决评论\",\n                    \"Show outdated comments\": \"显示陈旧的评论\",\n\n                \"No comments on changes yet\": \"还没有评论\",\n                    \"Comments will show up here as soon as there are some.\": \"评论将在此显示。\",\n\n                // Copilot\n                    \"Implement suggestion\": \"采纳建议\",\n                    \"Mention Copilot\": \"提及 Copilot\",\n                        \"Copilot isn't available for cross-repository pull requests\": \"Copilot 在跨仓库的拉取请求中不可用\",\n\n        // 拉取请求 --> 解决冲突 /<user-name>/<repo-name>/pull/<id>/conflicts\n            \"Resolving conflicts\": \"解决冲突\",\n            \"between\": \" \",\n            \"and committing changes\": \"并提交更改\",\n            // [/(\\d+) conflicting files?/, \"$1 个冲突文件\"],\n            // [/(\\d+) conflicts?/, \"$1 处冲突\"],\n\n            \"Keyboard hints\": \"快捷键\",\n                \"How to interact with code conflict editor via keyboard\": \"如何通过键盘与代码冲突编辑器交互\",\n                    \"Toggle between edit mode and tab focus mode\": \"切换编辑模式和标签焦点模式\",\n                    \"Navigation between elements with tab focus mode on\": \"在 Tab 焦点模式下在元素之间导航\",\n                    \"Move to next conflict control after accepting suggestion\": \"接受建议后移动到下一个冲突控件\",\n                    \"Exit editor\": \"退出编辑器\",\n                        \"then\": \"以及\",\n\n            \"Mark as resolved\": \"标记为已解决\",\n                \"Remove all conflict markers to resolve this file\": \"删除所有冲突标记以解决此文件冲突\",\n            \"Indent mode\": \"缩进模式\",\n                \"Spaces\": \"空格\",\n                \"Tabs\": \"制表符\",\n            \"Indent size\": \"缩进尺寸\",\n            \"Line wrap mode\": \"换行模式\",\n                \"No wrap\": \"不换行\",\n                \"Soft wrap\": \"软换行\",\n\n            \"Commit merge\": \"提交合并\",\n            \"Sign off and commit merge\": \"签署并提交合并\",\n                \"Heads up, this will commit to\": \"请注意，这将提交到\",\n                \"Commit updates to the\": \"提交更改到\",\n                \"branch.\": \"分支。\",\n                \"Create a\": \"创建\",\n                \"new branch\": \"新分支\",\n                \"and commit updates. Your pull request will be updated automatically.\": \"并提交更改。您的拉取请求将自动更新。\",\n                // [/I understand, sign off and update/, \"我明白了，依然签署并更新\"],\n                \"You are\": \"您将\",\n                \"signing off\": \"签署\",\n                // [/on this commit as ([^@]+@[^\\n]+)/, \"该提交以 $1 身份\"],\n                \"Committing merge…\": \"正在提交合并…\",\n\n                \"conflict\": \"冲突\",\n                \"conflicts\": \"冲突\",\n\n            \"Accept current change\": \"接受当前更改\",\n            \"Accept incoming change\": \"接受传入更改\",\n            \"Accept both changes\": \"接受全部更改\",\n\n        // 拉取请求 - 由 Copilot 编写 https://github.com/用户名/仓库名/pull/编号/agent-sessions\n            \"Back to pull request #\": \"返回到拉取请求 #\",\n\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 编程智能体现在使用更少的高级请求！\",\n                \"From now on, each session uses just one premium request.\": \"从现在起，每个会话只会使用一次高级请求。\",\n\n            // 状态\n                \"Failed\": \"失败\",\n            \"Sessions\": \"进度\",\n            \"Duration\": \"总时长\",\n            \"Premium requests\": \"高级请求\",\n                \"Learn more about premium requests\": \"关于高级请求\",\n\n            \"premium\": \"高级\",\n            \"request\": \"请求\",\n            \"requests\": \"请求\",\n            \"used in\": \"被用于\",\n            \"session\": \"任务\",\n            \"sessions\": \"任务\",\n\n            \"Stop session\": \"停止任务\",\n            \"Open menu\": \"操作\",\n                \"View verbose logs\": \"查看日志\",\n\n            \"Spinning up dev environment…\": \"正在启动开发环境…\",\n            \"Starting MCP servers…\": \"正在启动 MCP 服务器…\",\n            \"Making sure Copilot feels comfortable in the cockpit…\": \"确保 Copilot 在驾驶舱中感到舒适…\",\n            \"Fueling the runtime engines…\": \"为运行时引擎加油…\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Copilot stopped work due to an error\": \"Copilot 因错误停工\",\n                \"Copilot has encountered an error. See logs for additional details.\": \"Copilot 遇到错误。请查看日志以获取更多详细信息。\",\n                // 内部错误，走正则\n                \"View detailed logs\": \"查看详细日志\",\n\n            // 进度\n            \"View repository\": \"查看仓库\",\n\n        // 新版拉取请求提交页面\n            \"authored and\": \"撰写和\",\n            \"Browse repository at this point\": \"查看此时间点的仓库\",\n\n        \"ProTip!\": \"专业提示！\",\n            \"to the end of URLs for Git’s plaintext views.\": \"到 Git 纯文本视图的 URL 结尾。\",\n            \"Add comments to specific lines under\": \"为以下特定行添加注释于\",\n        \"Switch back to the classic merge experience\": \"切换回经典的合并界面\",\n        \"Try the new merge experience\": \"尝试新的合并界面\",\n\n        \"Repository owner locked as\": \"仓库所有者锁定为\",\n            \"resolved\": \"已解决\",\n            \"too heated\": \"争论不休\",\n            \"off-topic\": \"偏离主题\",\n\n        \"Merge status cannot be loaded\": \"合并状态加载出错\",\n            \"Try reloading the page, or if the problem persists\": \"尝试重新加载页面，或者如果问题仍然存在\",\n                \"contact support\": \"请联系支持人员\",\n            \"GitHub status\": \"GitHub 状态\",\n\n        \"Mention \\@copilot in a comment to make changes to this pull request.\": \"在评论中提及 @copilot 以对该拉取请求进行更改。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 次提交将变基并添加到基本分支。\"],\n        [/([^ ]+):([^ ]+)% was force-pushed and no longer has any new commits./, \"$1:$2 分支被强制推送，现在没有新的提交。\"], // 放这里是因为跟现有词条冲突\n        // 建议更改（词条打架移动至此）\n        [/on this commit as ([^@]+@[^\\n]+)/, \"该提交以 $1 身份\"],\n        // Dependabot 打开的拉取请求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"此拉取请求解决了 1 个 Dependabot 警报，在 $1 上。\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n        [/^on ([^ ]+) including a/, \"在 $1 上，包括 1 个\"],\n        [/^on ([^ ]+)./, \"在 $1 上。\"],\n\n        // 提交时展开收缩的描述\n        [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n\n        // 新版 PR 提交页\n        [/wants to merge (\\d+) commits? into/, \"希望合并 $1 条提交到\"],\n        [/Commits on (.+)/,  (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交于${translatedDate}`;\n        }],\n        [/Add(?: a)? comment on line ((L|R)(\\d+))/, \"在 $1 行评论\"],\n        [/Suggest change on line ((L|R)(\\d+))/, \"建议更改 $1 行\"],\n        [/Expand all lines: (.+)/, \"展开所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"折叠未更改行：$1\"],\n        // CODEOWNERS 文件指定所有者\n        [/Owned by (\\@.+) \\(from CODEOWNERS line (\\d+)\\)/, \"由 $1 拥有（来自 CODEOWNERS 第 $2 行）\"],\n\n        // 具体某条拉取请求\n        [/edited by ([^ ]+)/, \"由 $1 编辑\"],\n        [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合并此拉取请求至少需要 $1 次批准审核。\"],\n        [/Commits?/, \"提交\"],\n        [/Files? changed/, \"文件更改\"],\n        [/merged (\\d+) commits? into/, \"将 $1 个提交合并到\"],\n        [/Copy full SHA for ([^ ]+)/, \"复制 $1 完整的 SHA\"], // Android UA ? 提交卡\n        [/View checks?/, \"查看检查\"], // Android UA ?\n        [/([^ ]+) left review comments?/, \"$1 发表了审查意见\"],\n        [/([^ ]+) approved these changes?/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n        [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n        [/users with write access to ([^ ]+) can add new commits/, \"对 $1 具有写权限的用户可以添加新的提交\"], // 具体拉取请求\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"], // 具体的拉取请求 审查者\n        [/This user is a first-time contributor to the ([^ ]+) repository./, \"该用户是第一次为 $1 仓库做贡献。\"],\n        [/(\\d+) pending reviewers?/, \"$1 名待审者\"],\n        [/([\\d,]+) participants?/, \"$1 位参与者\"],\n        [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n        [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 个批准的审查由具有写入权限的审查者进行审查。\"],\n        [/(\\d+) review requesting changes by reviewers? with write access./, \"$1 个请求审查更改由具有写入权限的审查者进行审查。\"],\n        [/(\\d+) approvals?/, \"$1 项批准\"],\n        [/(\\d+) reviews? requesting changes by reviewers with write access/, \"$1 项审查，要求有写入权限的审查者进行更改\"], // 拉取请求\n        [/(\\d+) changes? requested by reviewers with write access/, \"具有写入权限的审查者提出 $1 项更改请求\"],\n        [/(\\d+) changes? requested/, \"$1 项更改请求\"],\n        [/This pull request closes issue (#\\d+)./, \"该拉取请求将关闭议题 $1。\"], // 死活不翻译\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/(\\d+) requested change/, \"$1 项请求更改\"],\n\n        // 状态\n        [/branch (\\d+) times, most recently from/, \"分支 $1 次，最近一次从\"],\n        [/pushed a commit to ([^ ]+) that referenced this pull request/, \" 向 $1 推送一次提交，其中引用了此拉取请求\"],\n        [/added a commit to ([^ ]+) that referenced this pull request/, \"向 $1 添加一个提交，其中引用了此拉取请求\"],\n        [/Missing successful active ([^ ]+) deployment./, \"未成功激活 $1 部署。\"], // 新本合并页面\n\n        [/(\\d+) in progress checks?/, \"$1 个正在进行的检查\"],\n        [/(\\d+) in progress(es)?/, \"$1 个正在进行的检查\"],\n        [/(\\d+) skipped and (\\d+) successful checks?/, \"$1 个跳过, $2 个成功检查\"],\n        [/(\\d+) successful and (\\d+) failing checks?/, \"$1 个成功, $2 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) failing checks?/, \"$1 个跳过, $2 个成功, $3 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) cancelled, and (\\d+) failing checks?/, \"$1 个跳过, $2 个成功, $3 个取消, $4 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个预先检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) queue, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个排队, $4 个预先检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) in progress, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个正在进行, $4 个预先检查\"],\n        [/(\\d+) neutral checks?/, \"$1 次中立检查\"],\n        [/(\\d+) successful checks?/, \"$1 次成功检查\"],\n        [/(\\d+) of (\\d+) checks? passed/, \"$1/$2 次检查通过\"],\n        [/(\\d+) checks? passed/, \"$1 次检查通过\"],\n\n        [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"将最新更改从 $1 分支合并到当前分支。该合并提交将与用户 $2 相关联。\"],\n        [/Merging can be performed automatically with (\\d+) approving review./, \"合并可以通过 $1 次批准审查自动执行。\"],\n        [/(\\d+) workflow awaiting approval/, \"$1 个工作流等待批准\"],\n        [/The ([^ ]+) branch requires linear history/, \"$1 分支为要求线性历史记录\"],\n        [/The (\\d+) commits? from this branch will be added to the base branch./, \"该分支的 $1 个提交将合并到基本分支中。\"], // 合并拉取请求 按钮下拉\n        [/The (\\d+) commits? from this branch will be combined into one commit in the base branch./, \"该分支的 $1 个提交将合并到基础分支中。\"], // 合并拉取请求 按钮下拉\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 个提交将变基合并到基础分支中。\"], // 合并拉取请求 按钮下拉\n        [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"确保特定的人或团队在拉取请求被合并到您的 $1 分支之前批准它们。\"], // 合并拉取请求\n        [/(\\d+) commits?/, \"$1 条提交\"],\n        [/All (\\d+) file types? selected/, \"所有 $1 种文件类型被选中\"], // 文件筛选\n        [/Select all (\\d+) file types?/, \"选择所有 $1 种文件类型\"],\n        [/Unresolved conversations/, \"未解决的讨论\"],\n        [/Resolved conversations/, \"已解决的讨论\"],\n        // [/Commits (.+)/, \"提交于 $1\"], // 提交标签卡\n        [/(#\\d+) will be closed when this pull request is merged/, \"$1 将在该拉取请求合并时关闭\"],\n        // 代码空间\n        [/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/(\\d+) conflicting files?/, \"$1 个冲突文件\"], //conflicts\n        [/(\\d+) conflicts?/, \"$1 处冲突\"],  //conflicts\n        [/Awaiting requested review from ([^ ]+)/, \"等待 $1 审查请求\"], // 具体的拉取请求\n        [/([^ ]+) is a code owner/, \"$1 是代码所有者\"], // 具体的拉取请求\n        [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"], // 具体的拉取请求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"该请求解决了 $1 的 Dependabot 警报问题。\"],\n        [/(\\d+) workflows? awaiting approval/, \"$1 个工作流程等待批准\"],\n        [/(\\d+) resolved conversations?/, \"$1 条对话已解决\"], // 拉取请求\n        [/I understand, continue updating ([^ ]+)/, \"我明白了，继续更新 $1\"],\n        [/I understand, sign off and update/, \"我明白了，依然签署并更新\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/(\\d+) conversations? must be resolved before merging./, \"合并之前必须解决 $1 个对话。\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/([^ ]+) requested changes/, \"$1 要求更改\"],\n        [/(\\d+) active deployments?/, \"$1 个活动的部署\"],\n        [/Check failure on line (\\d+)/, \"第 $1 行检查失败：\"],\n\n        // 命令行解决冲突页面\n        [/Copy (.+?) to clipboard/, \"复制 $1 到剪切板\"],\n\n        // 文件差异过大 参考 https://github.com/maboloshi/github-chinese/pull/306/files\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"差异过大，不会显示 $1 行添加以及 $2 行删除。请使用本地 Git 客户端查看更改。\"],\n\n        // 任务\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n\n        // 评论\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n\n        // 建议更改\n        //[/on this commit as ([^@]+@[^\\n]+)/, \"提交，身份为 $1\"],\n\n        // Copilot\n        [/Copilot has encountered an internal error. If the problem persists, please contact GitHub Support, including the request ID `([^ ]+)`. To retry, leave a comment on this pull request asking Copilot to try again./, \"Copilot 遇到了内部错误。如果问题仍然存在，请联系 GitHub 支持，并附上请求 ID `$1`。要重试，请在此拉取请求中发表评论，要求 Copilot 再试一次。\"],\n\n        // 解决冲突编辑器（似乎又是 F12 才会翻译）\n        [/Search:/, \"搜索：\"],\n        [/\\(Use \\/re\\/ syntax for regexp search\\)/, \"(使用 /re/ 进行正则搜索)\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"span[data-message='Review changes']\", \"审查更改\"], // 拉取请求 --> 更改的文件\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) by (.+) · Pull Request #(\\d+) · (.+)/, \"$1 作者：$2 · 拉取请求 #$3 · $4\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/compare\"] = { // 仓库 - 比较并创建拉取请求\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 变更比较 页面 /<user-name>/<repo-name>/compare@\n            \"Compare changes\": \"比较变更\",\n            \"Compare changes across branches, commits, tags, and more below. If you need to, you can also\": \"比较跨分支，提交，标签，和更多的变更。如果您需要，也可以\",\n            \"compare across forks\": \"比较复刻库和源仓库\",\n            \"Learn more about diff comparisons here\": \"点击此处了解更多关于差异比较的信息\",\n            \"This is a direct comparison between two commits made in this repository or its related repositories.\": \"这是本仓库或其相关仓库中两次提交的直接比较。\",\n            \"View the default comparison\": \"查看此范围的默认比较\",\n            \"for this range or\": \"或\",\n\n            // 分支选择栏\n            \"base repository:\": \"基础仓库：\",\n                \"Choose a Base Repository\": \"选择基础仓库\",\n                \"Filter repos\": \"筛选仓库\",\n            \"head repository:\": \"头部仓库：\",\n                \"Choose a Head Repository\": \"选择头部仓库\",\n\n            \"base:\": \"基础分支：\",\n                \"Choose a base ref\": \"选择基础引用\",\n                \"Find a branch\": \"搜索分支\",\n                \"Find a tag\": \"搜索标签\",\n            \"compare:\": \"比较分支：\",\n                \"Choose a head ref\": \"选择头部引用\",\n\n            \"Choose different branches or forks above to discuss and review changes.\": \"选择不同的分支或复刻来讨论和查看变化。\",\n            \"Learn about pull requests\": \"了解拉取请求\",\n\n            \"Create pull request\": \"创建拉取请求\",\n\n            \"Compare and review just about anything\": \"比较和审查任何文件\",\n            \"Branches, tags, commit ranges, and time ranges. In the same repository and across forks.\": \"分支，标签，提交范围和时间范围。在同一仓库和复刻的仓库。\",\n            \"Example comparisons\": \"比较例子\",\n\n            \"Commit\": \"提交\",\n            \"Commits\": \"提交\",\n            \"File changed\": \"更改的文件\",\n            \"Files changed\": \"更改的文件\",\n\n        // 提出合并分支 /<user-name>/<repo-name>/compare/<branch>...<user-name-1>:<branch-1>\n        // /<user-name>/<repo-name>/compare/<branch>...<branch-1>\n        // <user-name>/<repo-name>/compare/<branch>...<user-name-1>:<repo-name-1>:<branch-1>\n            \"Comparing changes\": \"比较变更\",\n            \"Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also\": \"选择两个分支，看看发生了什么改变，或发起一个新的拉请求。如果您需要，您也可以\",\n            \"learn more about diff comparisons\": \"了解更多关于差异比较的信息\",\n            // \"base fork:\": \"基复刻：\",\n            \"Documentation has changed since you last contributed\": \"文件已发生变化，自您上次提交文件于\",\n            \". Take a look before submitting a pull request:\": \"。在提交拉取请求前，请先看一下：\",\n            \"Contributing guidelines\": \"贡献指南\",\n            \"Last updated\": \"最近更新于\",\n\n            \"There isn’t anything to compare.\": \"没有任何东西可比较。\",\n                \"We couldn’t figure out how to compare these references, do they point to valid commits?\": \"我们不知道如何比较这些引用，它们是否指向有效的提交？\",\n\n                \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用两个不同的分支名称来进行有效的比较。\",\n                \"Check out some of these sample comparisons.\": \"看看这些比较的例子吧。\",\n\n                \"is up to date with all commits from\": \"已是最新，提交于\",\n                \". Try\": \"。尝试\",\n                \"switching the base\": \"切换基础库\",\n                \"for your comparison.\": \"来进行比较。\",\n\n                \"are entirely different commit histories.\": \"是完全不同的提交历史。\",\n\n            \"Discuss and review the changes in this comparison with others.\": \"与他人讨论并回顾此次对比中的变化。\",\n\n            \"This comparison is big! We’re only showing the most recent 250 commits\": \"这个比较是很大的! 我们只显示最近的 250 个提交。\",\n\n            \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用两个不同的分支名称来进行有效的比较。\",\n\n            \"are identical.\": \"是相同的。\",\n\n            \"Create another pull request to discuss and review the changes again.\": \"创建另一个拉取请求，再次讨论和审查这些更改。\",\n\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand All\": \"展开全部\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n\n            \"Load diff\": \"载入差异\",\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不会呈现。详细了解\",\n                \"how customized files appear on GitHub\": \"自定义文件在 GitHub 上的显示方式\",\n            \"Empty file.\": \"空文件。\",\n\n            // 提交相关\n            \"Copy the full SHA\": \"复制完整 SHA\",\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n        // 直接提交拉取请求 /<user-name>/<repo-name>/compare/<branch>...<branch-1>?quick_pull=1\n            \"Open a pull request\": \"新建一个拉取请求\",\n            \"The change you just made was written to a new branch named\": \"您刚刚所做的更改已写入新分支\",\n            \". Create a pull request below to propose these changes.\": \". 请在下方创建拉取请求，提出这些更改。\",\n            \"Create a new pull request by comparing changes across two branches. If you need to, you can also\": \"通过比较两个分支的更改来创建一个新的拉请求。如果需要，还可以\",\n\n            // 提示框（第一次提交拉取请求时）\n            \"It looks like this is your first time opening a pull request in this project!\": \"看起来这是您在这个项目中首次发起的拉取请求呢！\",\n            \"Be sure to review the\": \"请务必查阅\",\n            \"contributing guidelines\": \"贡献指南\",\n            \"Reporting a security vulnerability?\": \"报告安全漏洞？\",\n            \"Check out the project's\": \"查看本项目的\",\n            \"Looking for help?\": \"需要帮助？\",\n                \"Check out the project’s\": \"查看本项目的\",\n                \"instructions for getting support\": \"支持说明\",\n\n            \"Checking mergeability…\": \"检查可合并性…\",\n            \"Don’t worry, you can still create the pull request.\": \"别担心，您仍然可以创建拉取请求。\",\n            \"Able to merge.\": \"可被合并。\",\n            \"Can’t automatically merge.\": \"无法自动合并。\",\n            \"These branches can be automatically merged.\": \"该分支可被自动合并。\",\n\n            \"View pull request\": \"查看拉取请求\", //存在拉取请求时\n                \"No description available\": \"无说明\", // 拉取请求无评论时\n\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"file changed\": \"个文件变更\",\n            \"files changed\": \"个文件变更\",\n            \"contributor\": \"位贡献者\",\n            \"contributors\": \"位贡献者\",\n            // \"No commit comments for this range\": \"该范围变更没有提交注释\",\n\n            \"Reviewers\": \"审查者\",\n                \"No reviews\": \"未经审查\",\n                \"Loading suggestions…\": \"载入推荐…\",\n                // [/([^ ]+) left review comments/, \"$1 发表了审查意见\"],\n                // [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"],\n                \"No reviews—at least 0 approving review is required.\": \"未经审查 — 至少需要 0 次批准审查。\",\n                \"Re-request review\": \"重新请求审核\",\n                \"Still in progress?\": \"仍在进行中吗？\",\n                // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的审查请求\"]\n                \"Learn about draft PRs\": \"了解拉取请求草案\",\n                    \"Try draft pull requests\": \"尝试拉取请求草案\",\n                    \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打开正在进行的拉取请求，无需请求正式审核，也不必冒不必要的合并风险。当您准备好进行代码审核时，您可以将拉取请求草案标记为已准备好审核，这将请求任何代码所有者进行审核。\",\n                    \"Ask admin for access\": \"向管理员请求权限\",\n                \"Convert to draft\": \"设置为草案\",\n                \"Request up to 15 reviewers\": \"最多请求 15 个审查者\",\n                // [/([^ ]+) approved these changes/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n                \"Request\": \"请求\",\n                // [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n                \"This pull request is waiting on your review.\": \"此拉取请求正在等待您的审核。\",\n                // Copilot\n                    \"Copilot can review pull requests\": \"Copilot 可以审查拉取请求\",\n                    \"Request a review from Copilot to get fast, actionable feedback on your code, so you can start iterating before you receive a human review.\": \"向 Copilot 请求代码审查，即可获得快速且可操作的反馈，让您能在收到人工审查前就开始迭代优化。\",\n                    \"OK, dismiss\": \"关闭\",\n\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"无人受理\",\n                \"No one—\": \"无人 - \",\n                \"assign yourself\": \" 受理自己\",\n                \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 议题\n                \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取请求\n                \"Clear assignees\": \"清除受理人\",\n                \"Type or choose a user\": \"输入或选择用户\",\n                \"Suggestions\": \"建议\",\n\n            \"Labels\": \"标签\",\n                \"None yet\": \"暂无\",\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"confirmed\": \"已确认\",\n                    \"Issue confirmed to exist and the reason is known\": \"问题已确认存在，原因已知\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"Not going to fix it\": \"不打算修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n                \"Apply labels to this issue\": \"应用标签\", // 议题\n                \"Apply labels to this pull request\": \"应用标签\", // 拉取请求\n                \"Edit labels\": \"编辑标签\",\n\n                \"dependencies\": \"依赖项\",\n                    \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n                \"Recent\": \"最近\",\n                \"User\": \"用户\",\n                \"No projects\": \"无项目\",\n\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"无里程碑\",\n                \"Set milestone\": \"设置里程碑\",\n                    \"Nothing to show\": \"暂无\",\n\n        \"Allow edits and access to secrets by maintainers\": \"允许维护人员编辑和访问机密\",\n            \"If checked,\": \"如果勾选，\",\n            \"users with write access to\": \"则拥有\",\n            \"can add new commits\": \"写访问权限的用户可以向您的\",\n            \"to your\": \"向您的\",\n            \"branch.\": \"分支添加新提交。\",\n            \"You can always change this setting later.\": \"您可以随时更改这一设置。\",\n            \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通过授予写入权限，维护者可能会编辑您仓库的工作流程以揭示机密值，并获取对其他分支的访问权限。\",\n            \"Got it\": \"知道了\",\n        // 创建拉取请求 按钮下拉\n            \"Open a pull request that is ready for review\": \"打开一个准备好进行审核的拉取请求\",\n            \"Automatically requests reviews from code owners\": \"自动请求代码所有者进行审查\",\n            \"Create draft pull request\": \"创建拉取请求草案\",\n            \"Cannot be merged until marked ready for review\": \"在标记为准备好进行审核之前无法合并\",\n            \"Doesn't request code owners review and cannot be merged\": \"不请求代码所有者审核并且无法合并\",\n            \"Draft pull request\": \"拉取请求草案\",\n        \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循其\",\n        \"security policy\": \"安全政策\",\n        \"code of conduct\": \"行为准则\",\n        \"Remember, contributions to this repository should follow our\": \"请记住，对此仓库的贡献应遵循我们的\",\n        \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n        \"Support\": \"支持\",\n\n        // 右侧栏补充\n        \"Development\": \"进展\",\n            \"Use\": \"使用\",\n            \"Closing keywords\": \"关闭关键词\",\n            \"in the description to automatically close issues\": \"在描述中，以自动关闭议题\",\n            \"Use Closing keywords to add a closing reference\": \"使用关闭关键词添加一个关闭引用\",\n\n        \"Helpful resources\": \"帮助性资源\",\n            // \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n            \"Contributing\": \"贡献准则\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n\n        // 标签对应版本比较 /<user-name>/<repo-name>/compare/<tag-id1>...<tag-id2>\n            // 仅限 MD文件\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n\n            \"Load more commits\": \"载入更多的提交\",\n\n        // /<user-name>/<repo-name>/compare/<tag>...<branch>\n            \"Commit comments\": \"提交评论\",\n\n        \"Showing\": \"显示\",\n        \"with\": \"包含\",\n\n        // 编辑器右上角三点，“显示评论”走正则\n        \"View file\": \"查看文件\",\n        \"Edit file\": \"编辑文件\",\n        \"Delete file\": \"删除文件\",\n\n        // 加载差异失败\n        \"This comparison is taking too long to generate.\": \"生成比较结果的时间过长。\",\n        \"Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.\": \"不幸的是，我们现在无法为您提供这种比较。它可能太大了，或者您的仓库有什么奇怪的地方。\",\n        \"You can try running this command locally to see the comparison on your machine:\": \"您可以尝试在本地运行此命令以查看比较结果：\",\n\n        // 评论输入框选项\n        \"Copilot actions\": \"Copilot 操作\",\n            \"Generate\": \"生成\",\n                \"Summary\": \"总结\",\n                    \"Generate a summary of the changes in this pull request.\": \"生成此拉取请求的更改摘要。\",\n        \"Summarizing changes… this might take a minute\": \"总结更改…这可能需要 1 分钟\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Show comments?/, \"显示评论\"], // 编辑器右上角三点\n        [/committed/, \"提交于\"],\n        [/(\\d+) contributors?/, \"$1 贡献者\"],\n        [/Allow(ing)? edits by maintainers/, \"允许维护人员编辑\"],\n        [/users with write access to ([^ ]+) can add new commits/, \"则拥有 $1 写访问权限的用户可以向您的\"],\n        [/(\\d+) changed files?/, \"更改的文件\"],\n        [/(\\d+) additions?/, \"$1 处增加\"],\n        [/(\\d+) deletions?/, \"$1 处删除\"],\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"], // 创建拉取请求\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Compare/, \"比较\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/commit\"] = { // 仓库 - 提交页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 具体某个提交页面 /<user-name>/<repo-name>/commit/<full SHA>\n            \"Commit\": \"提交\",\n\n            // 快捷键\n            \"Browsing commits\": \"浏览提交\",\n            // \"\": \"提交评论\",\n            \"Close form\": \"关闭评论\",\n            \"Parent commit\": \"父提交\",\n            \"Other parent commit\": \"其他父提交\",\n\n            // 访问已删除的提交\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"这个提交不属于本仓库的任何分支，可能属于仓库以外的分支。\",\n\n            \"Browse files\": \"浏览文件\",\n            \"Loading branch information\": \"载入分支信息\",\n\n            // [/This commit closes issue (#\\d+)./, \"此提交关闭了提议 $1。\"], //具体提交页面\n            \"committed\": \"提交于\",\n            \"commit\": \"提交\",\n\n            \"Showing\": \"显示\",\n            \"with\": \"包含\",\n            \"always\": \"总是\",\n            \"Whitespace\": \"显示空白字符差异\",\n            \"Ignore whitespace\": \"忽略空白字符差异\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            \"Minimize comments\": \"最小化评论\",\n\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n            \"Comment on this file\": \"评论此文件\", // new code view\n\n            \"Filter changed files\": \"筛选已更改的文件\", // new code view 侧栏\n            \"Show file tree\": \"显示文件树\", // new code view 侧栏\n            \"Hide file tree\": \"隐藏文件树\", // new code view 侧栏\n\n            \"Submodule\": \"子模块\",\n            \"updated\": \"已更新\",\n            // [/from ([^ ]+) to ([^ ]+)/, \"从 $1 到 $2。\"], //具体提交页面\n\n            \"Binary file not shown.\": \"不显示二进制文件\",\n            \"Empty file.\": \"空文件。\",\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"Whitespace-only changes.\": \"仅空白字符更改。\",\n\n            \"Some content is hidden\": \"某些内容被隐藏\",\n                \"Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.\": \"大型提交默认隐藏部分内容。使用下面的搜索框查找可能隐藏的内容。\",\n            \"Dismiss banner\": \"关闭\",\n\n            \"Load diff\": \"载入差异\",\n            \"Load Diff\": \"载入差异\",\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不呈现。了解更多信息关于\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的显示方式\",\n            \"customizing how changed files appear on GitHub.\": \"自定义更改文件在 GitHub 上显示方式。\",\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Diff is too big to render. To view,\": \"差异过大，\",\n            \"check out this pull request locally.\": \"请在本地查看拉取请求。\",\n\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n            \"Collapse expanded lines\": \"折叠展开的线\",\n\n            // 修改的 yaml 文件，预览窗口\n            \"Loading Dependency Review...\": \"正在加载依赖审查…\",\n            \"No dependencies changed.\": \"未更改依赖。\",\n                \"The changes to this file likely do not affect the dependencies\": \"对此文件的更改可能不会影响依赖\",\n\n            \"Give feedback on\": \"提交反馈，在\",\n                \"dependency review\": \"依赖项审查\",\n\n            // 修改的文件 右侧下拉\n            \"Show comments\": \"显示评论\",\n            \"Show annotations\": \"显示注释\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"编辑文件\",\n            \"Delete file\": \"删除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打开\",\n            \"Copilot is loading...\": \"Copilot 加载中…\",\n            \"Ask about this diff\": \"询问此差异\",\n                \"Explain\": \"解释\",\n                \"Attach to current thread\": \"附加至当前话题\",\n\n            //底部评论框上部\n            \"Lock conversation\": \"锁定对话\",\n                \"Lock conversation on this commit\": \"锁定关于此提交的对话\",\n                \"Locking the conversation means:\": \"锁定对话意味着：\",\n                    \"Other users\": \"其他用户\",\n                    \"can’t add new comments\": \"无法添加新评论\",\n                    \"to this commit.\": \"到这个提交。\",\n                    \"You and other collaborators\": \"您和其他协作者\",\n                    \"with access\": \"有权限访问\",\n                    \"to this repository\": \"该仓库\",\n                    \"can still leave comments\": \"仍然可以发表评论\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                \"You can always unlock this commit again in the future.\": \"您可以随时再次解锁此提交。\",\n            \"Unlock conversation\": \"解锁对话\",\n                \"Unlock conversation on this commit\": \"解锁关于此提交的对话\",\n                \"Unlocking the conversation means:\": \"解锁对话意味着：\",\n                \"will be able to comment on this commit once more.\": \"将能够再次对此提交发表评论。\",\n                \"You can always lock this commit again in the future.\": \"您可以随时再次锁定此提交。\",\n\n                \"Reply…\": \"回复…\",\n\n            \"commented on\": \"评论于\",\n            \"Comment on line\": \"评论行\",\n\n            \"Paste, drop, or click to add files\": \"粘贴、拖放或点击添加文件\",\n\n            // 隐藏评论\n            \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n            \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Unhide\": \"取消隐藏\",\n                \"comment\": \"评论\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n            \"Subscribe\": \"订阅\",\n            \"Unsubscribe\": \"取消订阅\",\n            \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n            \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您编写了提交。\",\n            \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n            \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您关注了该仓库。\",\n\n        // 提交 commits 页面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            \"Commits\": \"提交\",\n            \"commit\": \"提交\",\n            // 快捷键\n                \"Copy file permalink\": \"复制文件永久链接\",\n\n            \"Copy full SHA for\": \"复制该提交的完整 SHA\", // Android UA\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n            // 拉取请求悬浮卡\n                \"You were mentioned on and commented on this pull request\": \"您在该请求中被提及并发表了评论\",\n                \"You left a review\": \"您发表了评论\",\n\n            // 议题悬浮卡\n                \"You commented on this issue\": \"您对此议题发表了评论\",\n                \"You commented on and opened this issue\": \"您评论并打开了此议题\",\n\n        // /commits?since=<start-date XXXX-XX-XX>&until=<end-date XXXX-XX-XX>&author=<author-name>\n            \"No commits history\": \"尚无提交历史记录\",\n            \"There isn't any commit history to show here\": \"此处没有可显示\",\n            \"for the selected date range\": \"所选日期范围内的任何提交历史记录\",\n            \"There isn't any commit history to show here for the selected date range\": \"这里没有显示所选日期范围内的任何提交历史记录\",\n\n        // 新版提交 commits 页面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            // 用户筛选\n                \"All users\": \"所有用户\",\n                \"Find a user...\": \"寻找一个用户……\",\n                \"Filter on author\": \"筛选作者：\",\n                \"View commits for all users\": \"查看所有用户的提交\",\n            // 时间筛选\n                \"All time\": \"所有时间\",\n                \"Today\": \"今天\",\n            \"Clear\": \"清除\",\n            \"Browse repository at this point\": \"查看此时间点的仓库\",\n            \"View code at this point\": \"查看此时间点的代码\",\n\n            // 日历\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n            // [/Copy full SHA for ([a-f0-9]{7})/, \"复制提交 $1 的完整 SHA\"],\n            // [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n            // [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n\n        // 提交中文件历史 /<user-name>/<repo-name>/commits/<branch>/<file> 或 /<user-name>/<repo-name>/commits/<full SHA>/<file>\n            \"History for\": \"历史：\",\n            \"View at this point in the history\": \"在这一历史节点上查看\",\n\n            // [/Renamed from/, \"重命名自\"], // 提交中文件历史\n            \"(Browse History)\": \"（浏览历史）\",\n\n        // 提交中文件夹历史 /<user-name>/<repo-name>/commits/<branch>/<folder> 或 /<user-name>/<repo-name>/commits/<full SHA>/<folder>\n            \"End of commit history for this file\": \"此文件的提交历史结束\",\n\n        // 2/commits?author=maboloshi&since=2021-09-30&until=2021-10-13\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的东西？请看一下\",\n            \"GitHub commits guide\": \"GitHub 提交指南\",\n\n        // 新版提交页\n            \"More actions\": \"更多操作\",\n            // 具体某条提交\n            \"authored and\": \"撰写和\",\n            \"authored\": \"撰写于\",\n\n            // 左侧文件管理器\n            \"Filter options\": \"筛选…\",\n            \"Filter files…\": \"筛选文件…\",\n                \"File extensions\": \"文件扩展名\",\n                \"No extension\": \"无扩展名\",\n\n            // 中间\n            \"file\": \"个文件\",\n                \"s\": \" \",\n                \"changed\": \"更改\",\n\n            // 展开/收起文件树按钮\n                \"Collapse file tree\": \"收起文件树\",\n                \"Expand file tree\": \"展开文件树\",\n\n            // 展开/收起文件按钮\n                \"Collapse file\": \"收起文件\",\n                \"Expand file\": \"展开文件\",\n            // 复制文件按钮\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n\n            \"There are no files selected for viewing\": \"没有更改\",\n\n            // 右侧\n            \"Search within code\": \"在代码中搜索\",\n            \"Top\": \"顶部\",\n            \"Open diff view settings\": \"打开差异视图设置\",\n                \"Layout\": \"布局\",\n                    \"Hide whitespace\": \"隐藏空白\",\n                    \"Compact line height\": \"自定义行高\",\n\n                \"View comments\": \"查看评论\",\n                    \"Loading comments\": \"加载评论中\",\n                    \"Comment on lines\": \"评论于行\",\n\n                \"Select all\": \"全选\",\n                \"Expand above\": \"向上展开\",\n                \"Expand below\": \"向下展开\",\n                \"Go to previous hunk\": \"上一块\",\n                \"Go to next hunk\": \"下一块\",\n\n            \"Customizable line height\": \"自定义行高\",\n                \"The default line height has been increased for improved accessibility. You can choose to enable a more compact line height from the view settings menu.\": \"默认行高已增加，以提高可访问性。您可以从视图设置菜单中选择启用更紧凑的行高。\",\n                \"Enable compact line height\": \"启用自定义行高\",\n                \"Dismiss\": \"禁用\",\n\n            // 底部评论\n            \"Comments\": \"评论\",\n            \"edited by\": \"编辑者\",\n            \"Edits\": \"编辑\",\n                \"Most recent\": \"最近\",\n                \"Deleted\": \"已删除\",\n            \"Lock\": \"锁定\",\n                \"conversation\": \"对话\",\n                \"Off-topic\": \"偏离主题\",\n            \"Load more comments\": \"加载更多评论\",\n            \"Reference in a new issue\": \"在新议题中提及\",\n            \"Add Files\": \"添加文件\",\n            \"You're not receiving notifications from this thread.\": \"您没有收到来自此主题的通知。\",\n            \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因为您订阅了此主题。\",\n            \"Return to code\": \"返回代码\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) parents?/, \"$1 个父\"],\n        [/lines? changed/, \"行更改\"],//新版提交页面\n        [/(\\d+) changed files?/, \"$1 个更改的文件\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?$/, \"$1 处更改：$2 处增加和 $3 处删除\"],\n        [/(\\d+) additions?$/, \"$1 处增加\"],\n        [/(\\d+) deletions?$/, \"$1 处删除\"],\n        [/This commit closes issue (#\\d+)./, \"此提交关闭了议题 $1。\"], //具体提交页面\n        [/from ([^ ]+) to ([^ ]+)/, \"从 $1 到 $2。\"], //具体提交页面\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/(\\d+) comments? on commit/, \"该提交有 $1 条评论\"],\n        [/Edited (\\d+) times?/, \"编辑 $1 次\"],\n        // [/Commits (.+)/, \"提交于 $1\"], // 提交页面 /<user-name>/<repo-name>/commits/<branch\n        [/Renamed from/, \"重命名自\"], // 提交中文件历史\n        [/Copy full SHA for ([a-f0-9]{7})/, \"复制提交 $1 的完整 SHA\"],\n        [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n        [/View (\\d+) commit comments?/, \"查看 $1 条提交评论\"], // 新版提交 commits 页面 /<user-name>/<repo-name>/commits/<branch>\n        [/View checks?/, \"查看检查\"], // Android UA\n        [/Add a comment on line (L|R)(\\d+)/, \"在 $1$2 行添加评论\"], // 新版提交详情页\n        [/Add a comment on lines (L|R)(\\d+) to (L|R)(\\d+)/, \"在 $1$2 行到 $3$4 行上添加评论\"],\n        [/Start conversation on line (L|R)(\\d+)/, \"在 $1$2 行开始讨论\"], // 新版提交详情页\n        [/Expand all lines: ([^ ]+)/, \"展开全部：$1\"],\n        [/Collapse file: ([^ ]+)/, \"折叠文件：$1\"],\n        [/Collapse non-diff lines: ([^ ]+)/, \"折叠无差异行：$1\"],\n        [/(\\d+) tags?/, \"$1 标签\"], // 出现位置：某提交所跨标签数\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/blob\"] = { // 仓库 - 浏览代码\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 公共部分\n            // 许可证文件 中间栏 顶部 权限信息\n                \"the\": \"为：\", // 上半句走正则\n\n                // 许可证类型\n                    \"GNU General Public License v3.0\": \"GNU 通用公共许可证 v3.0\",\n                    \"GPL-3.0 License\": \"GPL-3.0 许可证\",\n                    \"AGPL-3.0 License\": \"AGPL-3.0 许可证\",\n                    \"LGPL-3.0 License\": \"LGPL-3.0 许可证\",\n                    \"MIT License\": \"MIT 许可证\",\n                    \"Apache License 2.0\": \"Apache-2.0 许可证\",\n                    \"OFL-1.1 License\": \"OFL-1.1 许可证\",\n                    \"0BSD License\": \"0BSD 许可证\",\n                    \"BSD-3-Clause License\": \"BSD-3-Clause 许可证\",\n                    \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 许可证\",\n                    \"CC0-1.0 License\": \"CC0-1.0 许可证\",\n                    \"WTFPL License\": \"WTFPL 许可证\",\n                    \"Unknown\": \"未知\",\n\n                // 许可证概述 懒得翻译 O(∩_∩)O哈哈~\n\n                // 许可证范围, 限制, 条件\n                    \"Permissions\": \"许可事项\",\n                    \"Limitations\": \"限制条件\",\n                        \"Commercial use\": \"商业用途\",\n                        \"Modification\": \"修改\",\n                        \"Distribution\": \"分布\",\n                        \"Patent use\": \"专利使用\",\n                        \"Private use\": \"私人使用\",\n                        \"Trademark use\": \"商标使用\",\n                        \"Liability\": \"责任\",\n                        \"Warranty\": \"担保\",\n                        \"Disclose source\": \"开源\",\n                        \"Same license\": \"相同的许可证\",\n                    \"Conditions\": \"条件\",\n                        \"License and copyright notice\": \"许可和版权声明\",\n                        \"State changes\": \"状态变化\",\n                        \"License and copyright notice for source\": \"来源许可和版权声明\",\n                        \"Network use is distribution\": \"网络使用即分发\",\n                        \"Same license (library)\": \"相同的许可证（库）\",\n                        \"Same license (file)\": \"相同的许可证（文件）\",\n\n                \"This is not legal advice.\": \"这并不是法律建议。\",\n                \"Learn more about repository licenses\": \"了解更多关于仓库许可证的信息\",\n\n\n        // 文件代码页面 /<user-name>/<repo-name>/blob/<brach>/<file>\n            // 顶部提醒\n                \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"此提交不属于该仓库上的任何分支，并且可能属于仓库的外部分支。\",\n\n            // 快捷键\n                \"Source code browsing\": \"源代码浏览\",\n                    \"Jump to line\": \"跳转到行\",\n                    \"Switch branch/tag\": \"切换分支/标签\",\n                    \"Expand URL to its canonical form\": \"将 URL 扩展为其规范形式\",\n                    \"Show/hide all inline notes\": \"显示/隐藏所有内嵌注释\",\n                    \"Open blame\": \"打开追溯视图\",\n                    \"Copy file path\": \"复制文件路径\",\n                    \"Toggle symbols panel\": \"切换符号面板\",\n                    \"Toggle file tree\": \"切换文件树\",\n                    \"Open code view\": \"打开代码视图\",\n                    \"Open preview\": \"打开预览\",\n                    \"Open raw file\": \"打开源文件\",\n                \"File tree\": \"文件树\",\n                    \"Move focus to row starting with string\": \"将焦点移至字符串\",\n                    \"Focus previous row\": \"聚焦上一行\",\n                    \"Focus next row\": \"聚焦下一行\",\n                    \"Collapse row, or focus parent row\": \"折叠行或聚焦父行\",\n                    \"Expand row, or focus child row\": \"展开行或聚焦子行\",\n\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                // 搜索框\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            // Git LFS 托管的文件\n                \"Stored with Git LFS\": \"Git LFS 托管\",\n\n            // Action的 action.yml 文件\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以将此 Action 发布到 GitHub 市场\",\n                \"Draft a release\": \"起草发布\",\n            // 工作流程文件 /blob/<brach>/.github/workflows/xxxx.yml\n                \"View Runs\": \"查看运行情况\",\n            // 议题模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.yml\n                \"This file is used as an Issue Form template.\": \"该文件用作议题表单模板。\",\n                \"Give Feedback.\": \"提交反馈。\",\n            // 议题模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.md\n                \"info\": \"信息\",\n                \"This file is used as a markdown issue template.\": \"该文件用作 Markdown 议题模板。\",\n            // 添加文件按钮, 文件夹模式下\n                \"Add file\": \"添加文件\",\n            // 三个点\n                \"Raw file content\": \"原始文件内容\",\n                    // \"Jump to line\": \"跳转到行\",\n                    \"Find in file\": \"在文件中查找\", // 激活 “换行” 时显示\n                    \"Copy path\": \"复制路径\",\n                    \"Copy permalink\": \"复制永久链接\",\n                    \"View options\": \"查看选项\",\n                        \"Show code folding buttons\": \"显示代码折叠按钮\",\n                        \"Wrap lines\": \"换行\",\n                        \"Center content\": \"核心内容\",\n                        \"Open symbols on click\": \"单击打开符号\",\n                    \"Ask about this file\": \"讨论此文件\",\n                    \"Delete file\": \"删除文件\",\n\n            \"Copied path!\": \"✅ 路径已复制！\",\n\n            \"History\": \"历史\",\n\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n            // 正文 - 错误信息，例如某些二进制文件\n                \"Error rendering embedded code\": \"嵌入代码渲染错误\",\n                    \"Invalid PDF\": \"无效 PDF\",\n\n            // 代码操作栏\n                \"Blame\": \"追溯\",\n                \"Your blame took too long to compute.\": \"追溯花了太长时间来计算。\",\n                // [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行 ($1 个位置) ·\"],\n                // Copilot 广告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 编码速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的时间创建模板和重复的代码模式，花更多的时间构建优秀的软件。在 GitHub 代码空间或您最喜欢的文件编辑器中尝试一下哈。\",\n                        \"Get GitHub Copilot\": \"获取 GitHub Copilot\",\n                        \"Don't show again\": \"不再显示\",\n\n                \"Executable File\": \"可执行文件\",\n                \"executable file\": \"可执行文件\",\n\n                // Copilot\n                \"Ask Copilot about this file\": \"与 Copilot 讨论此文件\",\n\n                \"Raw\": \"源码\",\n                // 文件复制图标\n                    \"Copy raw file\": \"复制原始文件\",\n                    \"Copy raw content\": \"复制原始文件\",\n                // 文件下载图标\n                    \"Download raw file\": \"下载原始文件\",\n                // 文件编辑图标\n                    \"More file actions\": \"更多文件操作\",\n                    \"Edit this file\": \"编辑本文件\",\n                        \"More edit options\": \"更多编辑选项\",\n                            \"Edit file...\": \"编辑文件…\",\n                            \"In place\": \"就地编辑\",\n                    \"Edit the file in your fork of this project\": \"在您的复刻中编辑文件\",\n                        \"Edit file\": \"编辑文件\",\n                            \"Edit in place\": \"就地编辑\",\n                        \"Open with...\": \"打开…\",\n                            \"You must be on a branch to make or propose changes to this file\": \"您必须在分支上才能对该文件进行修改或提出修改建议\",\n\n                    // 按钮提示\n                    \"Fork this repository and edit the file\": \"复刻此仓库并编辑文件\",\n                // 符号面板图标\n                    \"Open symbols panel\": \"打开符号面板\",\n                    \"Close symbols panel\": \"关闭符号面板\",\n\n            // 代码视图 行号栏 菜单\n                \"Copy line\": \"复制行\",\n                \"Copy lines\": \"复制行\",\n                \"Copy permalink\": \"复制永久链接\",\n                \"View git blame\": \"浏览 Git 追溯\",\n                \"Reference in new issue\": \"引用到新议题\",\n                \"Reference in new discussion\": \"引用到新讨论\",\n                \"View file in GitHub.dev\": \"在 GitHub.dev 中查看文件\",\n                \"View file in different branch/tag\": \"查看不同分支/标签中的文件\",\n\n            // 提醒\n                \"This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.\": \"此文件包含双向 Unicode 文本，其解释或编译方式可能与下面的显示不同。要查看，请在一个能显示隐藏的 Unicode 字符的编辑器中打开文件。\",\n                \"Learn more about bidirectional Unicode characters\": \"了解更多关于双向 Unicode 字符的信息\",\n                \"Show hidden characters\": \"显示隐藏字符\",\n                \"Code view is read-only.\": \"代码视图只读。\",\n                    \"Switch to the editor.\": \"切换到编辑器。\",\n\n            // 代码视图底部\n                \"View remainder of file in raw view\": \"以原码视图查看文件剩余部分\",\n\n            // 正文部分\n                // 只读模式\n                    \"Code view is read-only. \": \"代码视图是只读的。\",\n                    \"Switch to the editor.\": \"请切换至编辑器。\",\n                // csv 文件\n                    \"Search this file\": \"搜索这个文件\", // csv 文件\n                    // 提醒\n                        \"We can make this file\": \"如果纠正此错误，我们可以使该文件\",\n                        \"beautiful and searchable\": \"美观且可搜索\",\n                        \"if this error is corrected: No commas found in this CSV file in line 0.\": \"：在此 CSV 文件中的第 0 行中找不到逗号。\",\n\n                // 大文件\n                    \"View raw\": \"查看原始数据\",\n                    \"(Sorry about that, but we can’t show files that are this big right now.)\": \"（很抱歉，但我们现在无法显示这么大的文件。）\",\n                // 无法渲染\n                    \"Sorry, something went wrong.\": \"抱歉，出了一些问题。\",\n                    \"Reload?\": \"重新加载？\",\n                    \"Unable to render code block\": \"无法渲染代码块\",\n\n            \"More Pages\": \"更多页面\",\n\n            // Markdown 文件右侧大纲面板\n                \"Outline\": \"大纲\",\n                    \"Close outline\": \"关闭大纲\",\n                    \"Filter headings\": \"筛选标题\",\n\n            // 右侧符号面板\n                \"Symbols\": \"符号\",\n                    \"Close symbols\": \"关闭符号面板\",\n                    \"Symbol outline not available for this file\": \"大纲不适用于此文件\",\n                    \"To inspect a symbol, try clicking on the symbol directly in the code view.\": \"要检查一个符号，可以尝试在代码视图中直接点击该符号。\",\n                    \"Code navigation supports a limited number of languages.\": \"代码导航支持有限数量的语言。\",\n                    \"See which languages are supported.\": \"查看支持哪些语言。\",\n\n                    \"Find definitions and references for functions and other symbols in this file by clicking a symbol below or in the code.\": \"通过点击下方或代码中的符号，查找此文件中函数和其他符号的定义和引用。\",\n                    \"Filter symbols\": \"筛选符号\",\n\n                \"All Symbols\": \"所有符号\",\n                    \"Search for this symbol in this repository\": \"在此仓库中搜索此符号\",\n                    \"all repositories.\": \"所有仓库。\",\n                    \"In this file\": \"在这个文件中\",\n                    \"Definition\": \"定义\",\n                    \"search-based\": \"基于搜索\",\n                    \"References\": \"引用\",\n                    \"Reference\": \"引用\",\n                    \"No definitions or references found\": \"未找到定义或引用\",\n                    \"Search for this symbol\": \"搜索此符号\",\n\n        // 代码追溯页面 /<user-name>/<repo-name>/blame/<branch>/<file>\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n            \"Contributor\": \"贡献者\",\n            \"Contributors\": \"贡献者\",\n\n            // 浮动搜索框\n                \"Find\": \"查找\",\n                \"Press\": \"按\",\n                \"again to open the browser's find menu\": \"打开浏览器的查找菜单\",\n                \"Search this file\": \"搜索此文件\",\n\n            \"Ask Copilot about this snippet\": \"向 Copilot 询问此片段\",\n                \"Explain\": \"解释\",\n                \"Suggest improvements\": \"提出优化建议\",\n                \"Attach to current thread\": \"附加至当前话题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 代码行（line of code）= 行数 - 空行数（lines - blank lines）\n        [/(\\d+) References?/, \"$1 次引用\"],\n        [/Blame prior to change ([a-f0-9]{7}), made on ([^ ]+)/, \"追溯提交 $1，创建于 $2\"],\n\n        // 代码追溯页面\n        [/(\\d+) contributors?/, \"$1 位贡献者\"],\n        [/(\\d+) commits?/, \"$1 个提交\"],\n\n        // 许可证\n        [/([^ ]+) is licensed under/, \"$1 的许可证\"],\n\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n\n        [/Line (\\d+) options/, \"行 $1 选项\"], // TODO: 修复翻译未生效问题\n\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/blame\"] = I18N[\"zh-CN\"][\"repository/blob\"];\n\nI18N[\"zh-CN\"][\"repository/discussions\"] = { // 讨论页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 没有任何讨论时\n            \"Get started with GitHub Discussions\": \"开始使用 GitHub 讨论\",\n                \"Discussions is a central gathering space for your community to ask questions, share ideas, and build connections with each other—all right next to your code.\": \"讨论是一个社区成员集中交流的空间，大家可以在这里提问、分享想法，并彼此建立联系——而且这一切都在您的代码旁边完成。\",\n\n                \"Get Started\": \"开始使用\",\n                \"Not now\": \"暂不\",\n\n                \"Only maintainers can see this page and enable Discussions\": \"只有维护者能看到此页面并启用讨论\",\n\n            // 用法介绍\n                // 自定义分类\n                    \"Create custom categories and discussion types to suit your community's unique needs.\": \"创建自定义类别和讨论类型，以满足您社区的独特需求。\",\n                \"Mark the most helpful answer\": \"标记答案\",\n                    \"Highlight quality responses and make the best answer super discoverable.\": \"突出优质回答，让最佳答案易于被发现。\",\n                \"Pin big announcements\": \"置顶功能\",\n                    \"Direct the community’s attention to important announcements or popular discussions.\": \"将社区的关注引导至重要公告或热门讨论。\",\n                \"Label your discussions\": \"标签功能\",\n                    \"Organize and triage discussions to keep your space tidy and help contributors filter to areas of interest.\": \"组织和筛选讨论内容，以保持社区空间整洁，并帮助参与者过滤到感兴趣的领域。\",\n                \"Respond on-the-go with mobile\": \"通过移动端随时响应\",\n                    \"Check in and respond to discussions whenever and wherever is convenient for you.\": \"随时随地在方便的时候查看并回复讨论。\",\n                \"Connect to your apps\": \"链接应用\",\n                    \"Integrate with your existing workflows and GitHub Actions via the GraphQL API and webhooks.\": \"通过 GraphQL API 和 Web 钩子与现有工作流程及 GitHub Actions 集成。\",\n                \"Thread your conversations\": \"串联对话\",\n                    \"Keep conversations on track and encourage collaboration with threaded comments.\": \"通过串联评论让对话保持正轨并促进协作。\",\n                \"Monitor community insights\": \"社区数据看板\",\n                    \"Track the health and growth of your community with a dashboard full of actionable data.\": \"通过充满可操作数据的仪表盘，追踪社区的健康状况与发展情况。\",\n                \"Ask your community with polls\": \"社区投票\",\n                    \"Gauge interest in a feature, vote on a meetup time, or learn more about your community with polls.\": \"通过投票来衡量对某项功能的兴趣、对聚会时间进行表决，或进一步了解您的社区情况。\",\n\n            \"Communities using Discussions\": \"使用讨论交流\",\n\n            \"Ready to try Discussions?\": \"准备尝试讨论？\",\n                \"Click “get started” to enable it for your community and start your first discussion. Now is not the right time? Click “not now” to dismiss this tab. You can always turn Discussions on in your repository settings later.\": \"点击 “开始使用” 即可为您的社区启用该功能，并发起您的首次讨论。现在不方便操作？点击 “暂不” 可关闭此标签页。您也可以稍后在仓库设置中随时开启讨论功能。\",\n\n            \"Read about best practices for setting up Discussions for your community.\": \"了解为社区设置讨论功能的最佳实践。\",\n                \"Visit the docs\": \"查看\",\n\n        // 讨论页面 /<user-name>/<repo-name>/discussions\n        // 组织讨论页 /orgs/<orgs-name>/discussions\n            // 顶部提示\n                \"You can't perform that action at this time.\": \"您现在不能执行该操作。\",\n\n            \"Start a new discussion\": \"开始新的讨论\",\n            \"Get started by creating the first\": \"开始吧，为您的社区创建\",\n            \"discussion for your community.\": \"第一个讨论。\",\n            \"Got it\": \"知道了\",\n\n            \"About pinned discussions\": \"关于置顶讨论\",\n            \"When you start a discussion,\": \"当您开始讨论时，\",\n            \"you can choose to feature it\": \"您可以选择将\",\n            \"here by pinning it.\": \"其置顶在此处。\",\n\n            \"Personalize your categories\": \"自定义您的分类\",\n            \"Choose categories that fit your community. These could be announcements, Q&A with marked answers, open-ended conversations, or polls for community voting.\": \"选择适合您社区的类别。这些可以是公告、带有标记答案的问答、开放式对话或用于调查的社区投票。\",\n\n            \"Welcome to discussions!\": \"欢迎参与讨论！\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more.\": \"讨论是为了分享公告，在您的社区创造对话，回答问题，以及更多。\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more. To get started, you can create a\": \"讨论是为了分享公告，在您的社区创造对话，回答问题，以及更多。首先，您可以创建一个\",\n\n            // 组织讨论\n            \"Welcome to Organization Discussions!\": \"欢迎参与组织讨论！\",\n            \"There are no discussions here yet\": \"这里还没有讨论\",\n            \"Organization discussions are to broadcast news, create conversation in your community, answer questions, and share ideas. To get started, you can\": \"组织讨论是为了广播新闻，在您的社区创造对话，回答问题，并分享想法。要开始，您可以\",\n            \"create a new discussion.\": \"创建新的讨论。\",\n\n            // 左侧栏\n            \"Submit search\": \"提交搜索\",\n            \"Search all discussions\": \"搜索所有讨论\",\n            \"Suggested filters\": \"推荐的筛选器\",\n            \"filter by discussion author\": \"按讨论作者筛选\",\n            \"filter by discussion category\": \"按讨论分类筛选\",\n            \"filter by answered or unanswered\": \"按已答复或未答复筛选\",\n\n            \"Categories\": \"分类\",\n            \"View all discussions\": \"查看全部讨论\", // 组织讨论\n            \"View all\": \"查看全部\", // 仓库讨论\n\n            \"Most helpful\": \"最有帮助\",\n                \"Be sure to mark someone’s comment as an answer if it helps you resolve your question — they deserve the credit!\": \"如果某人的评论有助于您解决问题，请务必将其标记为答案——他们值得称赞！\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Community guidelines\": \"社区指南\",\n            \"Community insights\": \"社区见解\",\n\n            //\n            \"Sort by:\": \"排序方式：\",\n                \"Latest activity\": \"最新活动\",\n                \"Date created\": \"创建日期\",\n                \"Top: Past week\": \"置顶：过去一周\",\n                \"Top: Past month\": \"置顶：过去一月\",\n                \"Top: Past day\": \"置顶：过去一天\",\n                \"Top: Past year\": \"置顶：过去一年\",\n                \"Top: All\": \"置顶：所有\",\n            \"Label\": \"标签\",\n                \"Filter by label\": \"按标签筛选\",\n                \"Filter labels\": \"筛选标签\",\n                \"Unlabeled\": \"无标签\",\n\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n                \"Edit labels\": \"编辑标签\",\n            \"Filter\": \"筛选\",\n            \"Filter:\": \"筛选:\",\n                \"Closed\": \"已关闭\",\n                \"Answered\": \"已答复\",\n                \"Unanswered\": \"未答复\",\n                \"Locked\": \"锁定\",\n                \"Unlocked\": \"未锁定\",\n                \"All\": \"所有\",\n\n            \"New discussion\": \"新建讨论\",\n\n            \"There aren't any discussions.\": \"暂无任何讨论。\",\n            \"There are no matching discussions.\": \"没有匹配的讨论。\",\n            \"There are no matching answered discussions.\": \"没有匹配的已答复讨论。\",\n            \"There are no matching unanswered discussions.\": \"没有匹配的未答复讨论。\",\n            \"You can open a\": \"您可以打开一个\",\n            \"new discussion\": \"新讨论\",\n            \"to ask questions about this repository or get help.\": \"，询问关于这个仓库的问题或获得帮助。\",\n\n            \"asked\": \"回复\",\n            \"started\": \"开始于\",\n            \"· Unanswered\": \" · 未答复\",\n            \"· Answered\": \" · 已答复\",\n\n            // 下拉补充\n            \"Use\": \"使用\",\n            \"click/return\": \"点击/回车\",\n            \"to exclude labels.\": \"去排除标签。\",\n\n            // 状态词\n            \"asked a question in\": \"提出了一个问题在\",\n            \"Unanswered Question\": \"未解答的问题\",\n            \"announced\": \"公布于\",\n            \"in\": \"在\",\n\n        // 讨论分类 /<user-name>/<repo-name>/discussions/categories\n            \"Manage discussion categories\": \"管理讨论分类\",\n                \"Sections are a dropdown of categories. Categories have types of discussions, and discussions within them.\": \"本栏目是类别的下拉菜单。类别中包含讨论类型和讨论内容。\",\n            // [/(\\d+) categories?/, \"$1 个分类\"],\n            \"Categories without section\": \"无栏目分类\",\n            \"Announcements\": \"公告\",\n                \"Updates from maintainers\": \"维护者的更新信息\",\n            \"General\": \"通常\",\n                \"Chat about anything and everything here\": \"在这里谈论任何事情\",\n            \"Ideas\": \"想法\",\n                \"Share ideas for new features\": \"分享对新功能的想法\",\n            \"Polls\": \"投票\",\n                \"Take a vote from the community\": \"社区中进行投票\",\n            \"Q&A\": \"问答\",\n                \"Ask the community for help\": \"向社会寻求帮助\",\n                \"Answers enabled\": \"已启用答案\",\n            \"Show and tell\": \"展示与讲述\",\n                \"Show off something you've made\": \"炫耀您所做的事情\",\n\n            \"New section\": \"新建栏目\",\n            \"New category\": \"新建分类\",\n\n            \"Edit Announcements category\": \"编辑 “公告” 分类\",\n            \"Edit General category\": \"编辑 “通常” 分类\",\n            \"Edit Ideas category\": \"编辑 “想法” 分类\",\n            \"Edit Polls category\": \"编辑 “投票” 分类\",\n            \"Edit Q&A category\": \"编辑 “问与答” 分类\",\n            \"Edit Show and tell category\": \"编辑 “展示与讲述” 分类\",\n\n            \"Delete Announcements category\": \"删除 “公告” 分类\",\n            \"Delete General category\": \"删除 “通常” 分类\",\n            \"Delete Ideas category\": \"删除 “想法” 分类\",\n            \"Delete Polls category\": \"删除 “投票” 分类\",\n            \"Delete Q&A category\": \"删除 “问与答” 分类\",\n            \"Delete Show and tell category\": \"删除 “展示与讲述” 分类\",\n\n            // 删除分类\n                \"If this category has discussions associated, where would you like to reassign them?\": \"如果此类别有相关的讨论，您希望将它们重新分配到何处？\",\n                \"Delete and move\": \"删除并移动\",\n\n            // 删除栏目\n                // [/Delete (.*) section/, \"删除 “$1” 栏目\"],\n                \"Are you sure you want to delete this section? All categories in this section will no longer belong to a section.\": \"您确定要删除此栏目吗？此栏目中的所有分类将不再属于一个栏目。\",\n\n        // 新建 & 编辑 分类 /<user-name>/<repo-name>/discussions/categories/new\n        // /<user-name>/<repo-name>/discussions/categories/<id>/edit\n            \"Create category\": \"创建分类\",\n            \"Edit category\": \"编辑分类\",\n            \"Category name\": \"分类名称\",\n            \"Description\": \"描述\",\n            \"Add a description (optional)\": \"添加描述（可选）\",\n            \"Discussion Format\": \"讨论形式\",\n                \"Open-ended discussion\": \"开放式讨论\",\n                    \"Enable your community to have conversations that don't require a definitive answer to a question. Great for sharing tips and tricks or just chatting.\": \"使您的社区能够进行对话，不需要对问题作出明确的回答。很适合分享技巧和窍门，或者只是聊天。\",\n                \"Question / Answer\": \"问 / 答\",\n                    \"Enable your community to ask questions, suggest answers, and vote on the best suggested answer.\": \"使您的社区能够提出问题、建议答案并投票选出最佳建议答案。\",\n                \"Announcement\": \"公告\",\n                    \"Share updates and news with your community. Only maintainers and admins can post new discussions in these categories, but anyone can comment and reply.\": \"与您的社区分享更新和新闻。只有维护者和管理员可以在这些类别中发布新讨论，但任何人都可以发表评论和回复。\",\n                \"Poll\": \"投票\",\n                    \"Gauge interest, vote, and interact with other community members using polls.\": \"调查兴趣，投票，并使用投票与其他社区成员互动。\",\n                    \"Cannot be changed to polls. Please create a new category for polls.\": \"不能更改为投票。请为投票创建一个新类别。\",\n            \"Add this category to a section (optional)\": \"将此分类添加到一个栏目（可选）\",\n                \"No section\": \"无栏目\",\n\n            \"Submitting\": \"提交中\",\n\n            // 顶部提醒\n                \"Category Announcements has been created.\": \"分类 “公告” 已创建\",\n                \"Category General has been created.\": \"分类 “通常” 已创建\",\n                \"Category Ideas has been created.\": \"分类 “想法” 已创建\",\n                \"Category Polls has been created.\": \"分类 “投票” 已创建\",\n                \"Category Q&A has been created.\": \"分类 “问与答” 已创建\",\n                \"Category Show and tell has been created.\": \"分类 “展示与讲述” 已创建\",\n\n                \"Category Announcements has been updated.\": \"分类 “公告” 已更新\",\n                \"Category General has been updated.\": \"分类 “通常” 已更新\",\n                \"Category Ideas has been updated.\": \"分类 “想法” 已更新\",\n                \"Category Polls has been updated.\": \"分类 “投票” 已更新\",\n                \"Category Q&A has been updated.\": \"分类 “问与答” 已更新\",\n                \"Category Show and tell has been updated.\": \"分类 “展示与讲述” 已更新\",\n\n                \"Category Announcements has been deleted.\": \"分类 “公告” 已删除\",\n                \"Category General has been deleted.\": \"分类 “通常” 已删除\",\n                \"Category Ideas has been deleted.\": \"分类 “想法” 已删除\",\n                \"Category Polls has been deleted.\": \"分类 “投票” 已删除\",\n                \"Category Q&A has been deleted.\": \"分类 “问与答” 已删除\",\n                \"Category Show and tell has been deleted.\": \"分类 “展示与讲述” 已删除\",\n\n                // [/Category \\\"(.*)\\\" has been created./, \"分类 “$1” 已创建。\"],\n                // [/Category \\\"(.*)\\\" has been updated./, \"分类 “$1” 已更新。\"],\n                // [/Category \\\"(.*)\\\" has been deleted./, \"分类 “$1” 已删除。\"],\n\n        // 新建 & 编辑栏目 /<user-name>/<repo-name>/discussions/sections/new\n            \"Create section\": \"创建栏目\",\n            \"Section name\": \"栏目名称\",\n            \"Add categories to this section\": \"向栏目添加分类\",\n            \"A category can only belong to one section at a time.\": \"一个分类一次只能属于一个栏目。\",\n\n            // 顶部提醒\n                // [/Section \\\"(.*)\\\" has been created./, \"栏目 “$1” 已创建。\"],\n                // [/Section \\\"(.*)\\\" has been updated./, \"栏目 “$1” 已更新。\"],\n                // [/Section \\\"(.*)\\\" has been deleted./, \"栏目 “$1” 已删除。\"],\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new\n            \"Start a new discussion\": \"开始新的讨论\",\n            \"Select a discussion category\": \"选择讨论分类\",\n            \"Get started\": \"开始\",\n            \"Category:\": \"分类：\",\n            \"Contributing\": \"贡献\",\n            \"It looks like this is your first time starting a discussion in this repository!\": \"看起来这是您第一次在此仓库中开始讨论！\",\n            \"This is a community we build together. Please be welcoming and open minded.\": \"这是我们共同建立的社区。请保持热情和开放的态度。\",\n\n            // 投票类\n            \"Poll question\": \"投票问题\",\n            \"Ask your question here (required)\": \"在此提出您的问题（必填）。\",\n            \"Poll options\": \"投票选项\",\n            \"Option 1 (required)\": \"选项 1（必填）\",\n            \"Option 2 (required)\": \"选项 2（必填）\",\n            \"Option\": \"选项\",\n            \"+ Add an option\": \"+ 增加选项\",\n\n            // 右侧栏\n            \"Labels\": \"标签\",\n                \"None yet\": \"暂无\",\n            \"Helpful resources\": \"帮助性资源\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n            \"Support\": \"支持\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n\n            \"Ask a question, start a conversation, or make an announcement\": \"提出问题、开始对话或发布公告\",\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new?category=general\n            \"If this doesn’t look right you can\": \"如果这个看起来不对，您可以\",\n            \"choose a different category.\": \"选择不同的类别。\",\n            \"Fields marked with an asterisk (*) are required.\": \"标有星号（*）的字段是必填字段。\",\n            \"Discussion title\": \"讨论标题\",\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new?category=announcements&welcome_text=true\n            \"Since you're new here, we're helping you to get started by generating your first post to the community. Don't worry, you can edit this discussion after you post!\": \"由于您是新来的，我们正在帮助您开始向社区发布您的第一个帖子。不用担心，您可以在发布后编辑此讨论！\",\n\n        // 某个讨论页面 /<user-name>/<repo-name>/discussions/<id>\n            // [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已经在 $1 中创建了第一个讨论!\"],\n\n            // 顶部提醒\n                \"Discussion has successfully been pinned.\": \"讨论已成功置顶。\",\n                \"Discussion has been unpinned.\": \"讨论已取消置顶。\",\n                \"Discussion pinned to Announcements\": \"在 “公告” 上置顶讨论\",\n                \"Discussion pinned to General\": \"在 “通常” 上置顶讨论\",\n                \"Discussion pinned to Ideas\": \"在 “想法” 上置顶讨论\",\n                \"Discussion pinned to Polls\": \"在 “投票” 上置顶讨论\",\n                \"Discussion pinned to Q&A\": \"在 “问与答” 上置顶讨论\",\n                \"Discussion pinned to Show and tell\": \"在 “展示与讲述” 上置顶讨论\",\n                \"Discussion unpinned from Announcements\": \"取消在 “公告” 上置顶讨论\",\n                \"Discussion unpinned from General\": \"取消在 “通常” 上置顶讨论\",\n                \"Discussion unpinned from Ideas\": \"取消在 “想法” 上置顶讨论\",\n                \"Discussion unpinned from Polls\": \"取消在 “投票” 上置顶讨论\",\n                \"Discussion unpinned from Q&A\": \"取消在 “问与答” 上置顶讨论\",\n                \"Discussion unpinned from Show and tell\": \"取消在 “展示与讲述” 上置顶讨论\",\n\n            \"Pinned\": \"已置顶\",\n\n            \"announced in\": \"宣布于\",\n            \"started this conversation in\": \"开始了这次讨论，在\",\n            \"asked this question in\": \"提出了这个问题，在\",\n            \"Maintainer\": \"维护者\",\n            \"Sponsor\": \"赞助者\",\n            \"Discussion options\": \"讨论选项\",\n            \"Category\": \"分类\",\n\n            \"You are a maintainer on this repository.\": \"您是这个仓库的维护者。\",\n            \"You are the author of this discussion.\": \"您是这个讨论的作者。\",\n\n            // [/(\\d+) answers?/, \"$1 位答复者\"],\n            \"Return to top\": \"返回顶部\",\n            // [/(\\d+) comments?/, \"$1 条评论\"],\n            // [/(\\d+) replies?/, \"$1 条答复\"],\n            // [/(\\d+) suggested answer/, \"$1 个建议答案\"],\n\n            \"Answered by\": \"答复者：\",\n            \"View full answer\": \"查看完整答案\",\n            \"Oldest\": \"最早\",\n            \"Newest\": \"最新\",\n            \"Top\": \"置顶\",\n            \"Comment options\": \"评论选项\",\n\n\n            \"Events\": \"活动\",\n            \"Marked\": \"标记为\",\n            \"an\": \"一个\",\n            \"Marked then unmarked an answer\": \"标记后，又取消标记\",\n            \"Marked as answer\": \"标记为答案\",\n            \"Mark as answer\": \"标记为答案\",\n            \"Answer selected by\": \"被标记答案由\",\n            \"Unmark as answer\": \"取消标记为答案\",\n            \"Answer\": \"答案\",\n\n            \"This comment has been minimized.\": \"此评论被最小化。\",\n            \"This comment was marked as off-topic.\": \"此评论被标记为偏离主题。\",\n            \"Show comment\": \"显示评论\",\n            \"Hide comment\": \"隐藏评论\",\n\n            // 隐藏评论对话框\n                \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Learn more about hiding a comment\": \"了解更多关于隐藏评论的信息\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Unhide\": \"取消隐藏\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n            // 取消隐藏评论\n                \"Unhide\": \"取消隐藏\",\n                \"Unhide comment\": \"取消隐藏评论\",\n                \"Are you sure you want to unhide this comment?\": \"您确定要取消隐藏此评论吗？\",\n\n            // [/Show (\\d+) previous repl(y|ies)/, \"显示 $1 条之前的答复\"],\n            // [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n\n            \"Loading more replies...\": \"载入更多回复中…\",\n\n            \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循\",\n            \"Remember, contributions to this repository should follow our\": \"请记住，对该仓库的贡献应遵循我们的\",\n            \"code of conduct\": \"行为准则\",\n            \"contributing guidelines\": \"贡献准则\",\n\n            // [/(\\d+) new suggested answers?/, \"$1 个新的建议答案\"],\n            \"Answer selected\": \"已选择答案\",\n\n            // 右侧栏\n            // /([\\d,]+) participants?/, \"$1 位参与者\"\n            \"and others\": \"和其它\",\n            \"Reopened\": \"重新打开\",\n            \"Closed as resolved\": \"关闭为已解决\",\n\n            \"Change category\": \"更改类别\",\n            \"Converted from issue\": \"由议题转化而来\",\n                // [/This discussion was converted from issue/, \"本讨论由以下议题转换而来\"],\n\n            \"Notifications\": \"通知类型\",\n                \"Subscribe\": \"订阅\",\n                \"Unsubscribe\": \"退订\",\n                \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您正在关注此仓库。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您提出了该话题。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因为有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因为您发表了评论。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因为您正在关注此仓库上的拉取请求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因为您正在关注此仓库上的议题。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因为您修改了打开/关闭状态。\",\n                \"You’re ignoring this repository.\": \"您忽略了这个仓库。\",\n\n            // 锁定对话\n            \"Lock conversation\": \"锁定对话\",\n                \"Are you sure you want to lock conversation on this discussion?\": \"您确定要锁定此讨论的对话吗？\",\n                \"Other users\": \"其他用户\",\n                \"can’t add new comments\": \"无法添加新评论\",\n                \"to this discussion.\": \"到该讨论。\",\n                \"You and other collaborators\": \"您和其他协作者\",\n                \"with access\": \"具有访问权限\",\n                \"to this repository\": \"该仓库\",\n                \"can still leave comments\": \"仍然可以留下评论\",\n                \"that others can see.\": \"，其他人可以看到。\",\n                \"You can always unlock this discussion again in the future.\": \"您今后仍可以随时再次解锁此讨论。\",\n                \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定，仅协作者可评论。\",\n            \"Unlock conversation\": \"解锁对话\",\n                \"Are you sure you want to unlock conversation on this discussion?\": \"您确定要解锁此讨论的对话吗？\",\n                \"Everyone\": \"任何人\",\n                \"will be able to comment on this discussion once more.\": \"将能够再次对这个讨论发表评论。\",\n                \"You can always lock this discussion again in the future.\": \"您今后仍可以随时再次锁定此讨论。\",\n            \"Transfer this discussion\": \"转移讨论\",\n                // 转移议题 对话框\n                \"Results are limited to top repositories, search to find more.\": \"结果仅限于置顶仓库，请搜索以查找更多信息。\",\n                \"Move this discussion to another repository owned by\": \"将此讨论移至另一个拥有的仓库由\",\n                \"Move this discussion to another repository you own.\": \"将此讨论移至您拥有的另一个仓库。\",\n                \"Search repositories\": \"搜索仓库\",\n                \"There aren't any eligible repositories that match your query.\": \"没有任何符合条件的仓库与您的查询匹配。\",\n                \"There aren't any eligible repositories to transfer this discussion to.\": \"没有任何符合条件的仓库可以将此讨论转移到其他仓库。\",\n                \"Transfer discussion\": \"转移讨论\",\n            \"Pin discussion\": \"置顶讨论\",\n                \"You can pin up to 4 discussions. They will appear publicly at the top of the discussions page.\": \"您最多可以置顶 4 个讨论。它们将公开显示在讨论页面的顶部。\",\n                \"Configure pinned discussion\": \"设置置顶讨论\",\n                    \"Background\": \"背景色\",\n                    \"Pattern\": \"图案\",\n                \"Pinning discussion…\": \"置顶讨论…\",\n            \"Edit pinned discussion\": \"编辑置顶讨论\",\n            \"Unpin discussion\": \"取消置顶讨论\",\n                \"Are you sure you want to unpin this discussion?\": \"您确定要取消置顶讨论吗？\",\n                \"The discussion itself won't be deleted, it just won't be shown prominently above the list of discussions.\": \"讨论本身不会被删除，只是不会突出显示在讨论列表上方。\",\n                // 顶部提醒\n                // [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"讨论 “$1” 已取消置顶。\"],\n            \"Pin discussion to Announcements\": \"将讨论置顶到 “公告”\",\n                \"Pin this discussion to this category\": \"将此讨论置顶到此类别\",\n                    \"This will pin this discussion to the top of the Announcements category.\": \"这将此讨论置顶到 “公告” 类别顶部。\",\n                    \"Pin to Announcements\": \"置顶到 “公告”\",\n            \"Pin discussion to General\": \"将讨论置顶到 “通常”\",\n                    \"This will pin this discussion to the top of the General category.\": \"这将此讨论置顶到 “通常” 类别顶部。\",\n                    \"Pin to General\": \"置顶到 “通常”\",\n            \"Pin discussion to Ideas\": \"将讨论置顶到 “想法”\",\n                    \"This will pin this discussion to the top of the Ideas category.\": \"这将此讨论置顶到 “想法” 类别顶部。\",\n                    \"Pin to Ideas\": \"置顶到 “想法”\",\n            \"Pin discussion to Polls\": \"将讨论置顶到 “投票”\",\n                    \"This will pin this discussion to the top of the Polls category.\": \"这将此讨论置顶到 “投票” 类别顶部。\",\n                    \"Pin to Polls\": \"置顶到 “投票”\",\n            \"Pin discussion to Q&A\": \"将讨论置顶到 “问与答”\",\n                    \"This will pin this discussion to the top of the Q&A category.\": \"这将此讨论置顶到 “问与答” 类别顶部。\",\n                    \"Pin to Q&A\": \"置顶到 “问与答”\",\n            \"Pin discussion to Show and tell\": \"将讨论置顶到 “展示与讲述”\",\n                    \"This will pin this discussion to the top of the Show and tell category.\": \"这将此讨论置顶到 “展示与讲述” 类别顶部。\",\n                    \"Pin to Show and tell\": \"置顶到 “展示与讲述”\",\n            \"Unpin discussion from this category\": \"从此类别取消置顶\",\n                \"Are you sure you want to unpin this discussion from Announcements?\": \"您确定要从 “公告” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from General?\": \"您确定要从 “通常” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Ideas?\": \"您确定要从 “想法” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Polls?\": \"您确定要从 “投票” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Q&A?\": \"您确定要从 “问与答” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Show and tell?\": \"您确定要从 “展示与讲述” 中取消置顶此讨论吗？\",\n                \"The discussion itself won't be deleted, it just won't be shown at the top of this category.\": \"讨论本身不会被删除，只是不会显示在该类别的顶部。\",\n            \"Create issue from discussion\": \"从讨论中创建议题\",\n            \"Delete discussion\": \"删除讨论\",\n                \"Delete discussion?\": \"删除讨论？\",\n                \"The discussion will be deleted permanently. You will not be able to restore the discussion or its comments.\": \"该讨论将被永久删除。您将无法恢复该讨论或其评论。\",\n                \"Deleting discussion…\": \"正在删除讨论…\",\n                // 顶部提醒\n                \"The discussion was successfully deleted.\": \"该讨论已成功删除。\",\n\n            \"The original post will be copied into a new issue, and the discussion will remain active.\": \"原帖将被复制到一个新的议题中，讨论将保持活跃。\",\n            \"OK, got it!\": \"好的，我知道了！\",\n\n            // 评论删除对话框\n                \"Delete comment\": \"删除评论\",\n                \"Are you sure you want to delete this comment?\": \"您确定要删除这条评论吗？\",\n\n            // 底部提示栏 (未登录)\n                \"Sign up for free\": \"免费注册\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n                \". Already have an account?\": \"。已经有账户？\",\n                \"Sign in to comment\": \"登录后发表评论\",\n\n        // 转移议题到讨论 /<user-name>/<repo-name>discussions/<id>?converting=<讨论id>\n            \"This discussion is being migrated\": \"此讨论正在迁移\",\n                \"The issue and any comments are still being copied to this discussion thread, please check back later.\": \"该议题和所有评论仍在复制到此讨论话题中，请稍后查看\",\n                \"Refresh\": \"刷新\",\n\n        // /<user-name>/community/discussions\n            // [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"这是一个 ✨ 特别的 ✨ 仓库，包含 $1 的组织层面的讨论。这里发布的所有内容在组织层面上也是可见的。\"],\n            \"View organization discussions\": \"查看组织讨论\",\n\n        // 标签浮动文本\n            \"This user is a collaborator on this repository.\": \"该用户是此仓库的协作者。\",\n            \"This user is a maintainer on this repository.\": \"该用户是此仓库的维护者。\",\n            \"This user is the author of this discussion.\": \"该用户是此讨论的作者。\",\n\n        // 开始讨论按钮上方小字\n            \"I have done a\": \"我已\", // 与下条二选一展示\n            \"Reminder to\": \"记得\", // 同上\n            \"search for similar discussions\": \"搜索相似话题先\",\n\n        // 评论框编辑\n            \"Edited\": \"编辑于\",\n            \"'s edit\": \" 编辑\",\n        // 反应相关\n            \"You can't vote on a locked discussion\": \"您不能在锁定讨论投票\",\n            \"Uh oh! You can't vote right now.\": \"哎呀！您现在不能投票。\",\n\n        // 投票\n            \"Show Results\": \"显示结果\",\n            \"Hide Results\": \"隐藏结果\",\n            \"Vote\": \"投票\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) categories?/, \"$1 个分类\"],\n        [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已经在 $1 中创建了第一个讨论!\"],\n        [/(\\d+) answers?/, \"$1 位答复者\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) repl(y|ies)/, \"$1 条答复\"],\n        [/(\\d+) suggested answers?/, \"$1 个建议答案\"],\n        [/(\\d+) participants?/, \"$1 位参与者\"],\n        [/Show (\\d+) previous repl(y|ies)/, \"显示 $1 条之前的答复\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"讨论 “$1” 已取消置顶。\"],\n        [/Edited (\\d+) times?/,\"编辑 $1 次\"], //评论框编辑次数\n        [/edited by ([^ ]+)/,\"被 $1 编辑\"], //评论框 被他人编辑\n        [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"这是一个 ✨ 特别的 ✨ 仓库，包含 $1 的组织层面的讨论。这里发布的所有内容在组织层面上也是可见的。\"],\n        [/Category \\\"(.*)\\\" has been created./, \"分类 “$1” 已创建。\"],\n        [/Category \\\"(.*)\\\" has been updated./, \"分类 “$1” 已更新。\"],\n        [/Category \\\"(.*)\\\" has been deleted./, \"分类 “$1” 已删除。\"],\n        [/Section \\\"(.*)\\\" has been created./, \"栏目 “$1” 已创建。\"],\n        [/Section \\\"(.*)\\\" has been updated./, \"栏目 “$1” 已更新。\"],\n        [/Section \\\"(.*)\\\" has been deleted./, \"栏目 “$1” 已删除。\"],\n        [/Edit (.*) category/, \"编辑 “$1” 分类\"],\n        [/Delete (.*) category/, \"删除分类 “$1”\"],\n        [/Edit section (.*)/, \"编辑栏目 “$1”\"],\n        [/Delete section (.*)/, \"删除栏目 “$1”\"],\n        [/Delete (.*) section/, \"删除 “$1” 栏目\"],\n        [/(\\d+) new suggested answers?/, \"$1 个新的建议答案\"],\n        [/This discussion was converted from issue (#\\d+) on (.+)/, \"本讨论由以下议题转换而来：$1 ，$2\"],\n        [/(\\d+) new comments?/, \"$1 条新评论\"],\n        [/Show (\\d+) more repl(y|ies)/, \"显示剩余 $1 条答复\"],\n        [/(\\d+) new/, \"$1 新\"],\n        [/Filter:\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered)(?:,\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered))*\\s*/, function (all, stat) {\n            var statKey = {Open: '打开', Closed: '关闭', Locked: '锁定', Unlocked: '未锁定', Answered: '已答复', Unanswered: '未答复', \" ,\": \"，\"};\n\n            return '筛选：' + statKey[stat];\n        }],\n        [/This user is sponsoring ([^ ]+)./, \"该用户正在赞助 $1。\"],\n        [/(\\d+) votes?/, \"$1 投票\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Discussions/, \"讨论\"],\n            [/New Discussion · (.+) · Category selection/, \"新讨论 · $1 · 分类选择\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/orgs/discussions\"] = I18N[\"zh-CN\"][\"repository/discussions\"] ;\n\nI18N[\"zh-CN\"][\"repository/actions\"] = { // 仓库 - 操作页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 顶部提示\n            \"Actions Enabled.\": \"操作已启用。\",\n\n        // 复刻仓库操作页面提示\n            \"Workflows aren’t being run on this forked repository\": \"这个分支仓库并未运行任何工作流程。\",\n            \"Workflows aren't being run on this forked repository\": \"这个分支仓库并未运行任何工作流程。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository.\": \"因为这个仓库在被分支时含有工作流文件，我们已禁止在此分支上运行它们。在开启此仓库的操作之前，请务必理解配置的工作流程及其预期的使用方式。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository. Some GitHub features that depend on Actions may still be able to run.\": \"因为这个仓库在被分支时含有工作流文件，我们已禁止在此分支上运行它们。在开启此仓库的操作之前，请务必理解配置的工作流程及其预期的使用方式。一些依赖于 Actions 的 GitHub 功能可能可以运行。\",\n            \"I understand my workflows, go ahead and enable them\": \"我已理解我的工作流程，可以放心启用它们。\",\n            \"View the workflows directory\": \"查看工作流程目录\",\n\n        //无工作流程\n            \"There are no workflow runs yet.\": \"无工作流程运行。\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new\n            \"Get started with GitHub Actions\": \"开始使用 GitHub Actions\",\n            \"Choose a workflow\": \"选择工作流程\",\n            \"Build, test, and deploy your code. Make code reviews, branch management, and issue triaging work the way you want. Select a workflow to get started.\": \"构建、测试和部署您的代码。以您想要的方式进行代码审查、分支管理和议题分类。选择一个工作流以开始使用。\",\n            \"Skip this and\": \"跳过并\",\n            \"set up a workflow yourself\": \"建立工作流程\",\n            \"Search workflows\": \"搜索工作流\",\n\n            \"Suggested for this repository\": \"建议该仓库采用\",\n            \"Categories\": \"类别\",\n            \"Configure\": \"设置\",\n            \"Deployment\": \"部署\",\n            \"Continuous integration\": \"持续集成\",\n            \"Automation\": \"自动化\",\n            \"Browse all categories\": \"浏览所有类别\",\n                \"Code scanning\": \"代码扫描\",\n            \"View all\": \"查看全部\",\n\n            \"Learn more about GitHub Actions\": \"了解更多关于 GitHub Actions 的信息\",\n            \"Getting started and core concepts\": \"入门和核心概念\",\n            \"New to Actions? Start here. Learn the core concepts and how to get started.\": \"初次接触 Actions？从这里开始。了解核心概念和如何开始。\",\n            \"Configuring and managing workflows\": \"配置和管理工作流程\",\n            \"Create custom workflows to control your project's life cycle processes.\": \"创建自定义工作流程以控制项目的生命周期过程。\",\n            \"Language and framework guides\": \"语言与框架指南\",\n            \"Guides for projects written in many programming languages.\": \"项目指南由多种编程语言编写。\",\n\n            \"Didn't find what you're looking for?\": \"没有找到您需要的？\",\n            \"Fill out a 2-minute survey to request a new workflow template for GitHub Actions.\" :\"填写一份 2 分钟的调查，为 GitHub Actions 申请一个新的工作流模板。\",\n            \"Request\": \"申请\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new?category=xxxx\n            // [/Found (\\d+) workflows?/, \"发现 $1 个工作流程\"],\n\n        // 操作 /<user-name>/<repo-name>/actions\n            // 快捷键\n                \"Go to usage\": \"跳转到运用\",\n                \"Go to workflow file\": \"跳转到工作流程文件\", // /actions/runs/<id>\n                \"Toggle timestamps in logs\": \"切换日志中的时间戳\",\n                \"Toggle fullscreen logs\": \"切换全屏日志\",\n                \"Exit fullscreen logs\": \"退出全屏日志\",\n                \"Actions main view search bar\": \"操作主视图搜索栏\",\n\n            \"Automate your workflow from idea to production\": \"从创意到产品，使您的工作流程自动化\",\n            \"GitHub Actions makes it easy to automate all your software workflows, now with world-class CI/CD. Build, test, and deploy your code right from GitHub.\": \"GitHub Actions 现在可以使用世界一流的 CI/CD 轻松自动化所有软件工作流程。直接从 GitHub 构建、测试和部署您的代码。\",\n            \"Learn more about getting started with Actions.\": \"了解更多关于开始使用 GitHub Actions 的信息。\",\n            \"Linux, macOS, Windows, ARM, and containers\": \"Linux、macOS、Windows、ARM 和容器\",\n            \"Hosted runners for every major OS make it easy to build and test all your projects. Run directly on a VM or inside a container. Use your own VMs, in the cloud or on-prem, with self-hosted runners.\": \"为每一个主要的操作系统提供的托管运行程序，使您能够轻松地构建和测试您的所有项目。直接在虚拟机上或容器内运行。在云端或本地使用您自己的虚拟机，以及自托管的运行器。\",\n\n            \"Matrix builds\": \"矩阵式构建\",\n            \"Save time with matrix workflows that simultaneously test across multiple operating systems and versions of your runtime.\": \"使用矩阵工作流程可同时跨多个操作系统和版本运行，节省时间\",\n\n            \"Any language\": \"任何语言\",\n            \"GitHub Actions supports Node.js, Python, Java, Ruby, PHP, Go, Rust, .NET, and more. Build, test, and deploy applications in your language of choice.\": \"GitHub Actions 支持 Node.js、Python、Java、Ruby、PHP、Go、Rust、.NET 等。以您选择的语言构建、测试和部署应用。\",\n\n            \"Live logs\": \"实时日志\",\n            \"See your workflow run in realtime with color and emoji. It’s one click to copy a link that highlights a specific line number to share a CI/CD failure.\": \"使用颜色和表情符号实时查看您的工作流程。只需单击即可复制突出显示特定行号的链接以共享 CI/CD 故障。\",\n\n            \"Built-in secret store\": \"内置的机密存储\",\n            \"Automate your software development practices with workflow files embracing the Git flow by codifying it in your repository.\": \"通过将工作流程文件编码到您的仓库，您的软件开发实践，包括 Git 流程自动化。\",\n\n            \"Multi-container testing\": \"多容器测试\",\n            \"Test your web service and its DB in your workflow by simply adding some\": \"在您的工作流程中测试您的网络服务和它的数据库，只需添加一些\",\n            \"docker-compose\": \"docker-组合\",\n            \"to your workflow file.\": \"到您的工作流程文件。\",\n\n            // 左侧栏\n                \"New workflow\": \"新建工作流程\",\n                \"Management\": \"管理\",\n                    \"Caches\": \"缓存\",\n                    \"Deployments\": \"部署\",\n                    \"Attestations\": \"证书\",\n                    \"Runners\": \"运行器\",\n                    \"Usage metrics\": \"使用情况\",\n                    \"Performance metrics\": \"数据看板\",\n                \"Disabled\": \"已禁用\",\n\n                // 顶部提醒\n                    // [/Workflow (.*) pinned./, \"工作流程 $1 已置顶\"],\n                    // [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置顶\"],\n\n                // 取消置顶对话框\n                    \"Unpin this workflow?\": \"取消工作流程置顶？\",\n                        \"This action will unpin the workflow for all viewers of this repository.\": \"此操作将为该仓库的所有查看者取消置顶工作流程。\",\n                    \"Yes, unpin\": \"是的，取消固定\",\n\n            // 工作流文件不存在\n            \"Not found\": \"未找到\",\n                \"This workflow does not exist.\": \"此工作流不存在。\",\n\n            \"All workflows\": \"全部工作流程\",\n                \"Show more workflows...\": \"显示更多工作流程…\",\n                \"Showing runs from all workflows\": \"显示所有工作流程的运行情况\",\n\n            \"Codespaces Prebuilds\": \"代码空间预构建\",\n                \"Showing all prebuild configuration runs for Codespaces. Learn about\": \"显示代码空间所有预构建设置的运行情况。了解\",\n                \"prebuilding your codespaces.\": \"代码空间预构建。\",\n\n            // 筛选条\n                \"Filter workflow runs\": \"筛选工作流程\",\n                    \"Narrow your search\": \"缩小搜索范围\",\n\n            //访问上限\n            //示例：https://github.com/wilsonzlin/fastrender/actions/workflows/ci.yml?page=1174\n                \"You have hit the limit of pages.\": \"您已到达页面访问上限。\",\n                \"You could filter by\":\"您可以按以下筛选\",\n                \"to continue reviewing older workflow runs.\":\"继续查看旧的工作流程运行。\",\n\n\n            // 反馈提醒\n                \"Help us improve GitHub Actions\": \"帮助我们改进 GitHub Actions\",\n                    \"Tell us how to make GitHub Actions work better for you with three quick questions.\": \"通过三个快速问题告诉我们如何让 GitHub Actions 更好地为您服务。\",\n\n\n            // [/(\\d+) workflow runs?$/, \"$1 个工作流程运行\"],\n            // [/(\\d+) workflow runs results/, \"$1 个工作流程运行结果\"],\n\n            \"Event\": \"事件\",\n                \"Filter by Event\": \"按事件筛选\",\n                \"No matching events.\": \"无匹配事件。\",\n                //\"Filter by event\": \"按事件筛选\",\n                \"Find an event\": \"查找事件\",\n                    \"issue_comment\": \"议题评论\",\n                    \"pull_request\": \"拉取请求\",\n                    \"pull_request_target\": \"拉取请求目标\",\n                    \"push\": \"推送\",\n                    \"schedule\": \"日程\",\n                    \"watch\": \"关注\",\n                    \"workflow_dispatch\": \"工作流程调度\",\n                    \"repository_dispatch\": \"仓库调度\",\n                    \"dynamic\": \"动态\",\n            // 状态\n                \"Filter by Status\": \"按状态筛选\",\n                \"Find a status\": \"查找状态\",\n                    \"queued\": \"排队\",\n                    \"in progress\": \"正在进行中\",\n                    \"waiting\": \"等待中\",\n                    \"completed\": \"已完成\",\n                    \"neutral\": \"中立\",\n                    \"success\": \"成功\",\n                    \"failure\": \"失败\",\n                    \"failed\": \"失败\",\n                    \"cancelled\": \"已取消\",\n                    \"action required\": \"需要采取行动\",\n                    \"timed out\": \"已超时\",\n                    \"skipped\": \"跳过\",\n                    \"stale\": \"陈旧\",\n                    \"required action\": \"需要操作\",\n            \"Branch\": \"分支\",\n                \"Filter by Branch\": \"按分支筛选\",\n                \"Find a branch\": \"查找分支\",\n                \"Default\": \"默认\",\n            \"Actor\": \"角色\",\n                \"Filter by Actor\": \"按角色筛选\",\n                \"Find a user\": \"查找用户\",\n\n            // 日志 右侧按钮\n                // 时间补丁 25年9月24日更新\n                \"Today at\": \"今天\",\n            \"Cancel run\": \"取消运行\",\n            \"View workflow file\": \"查看工作流程文件\",\n            \"Delete workflow run\": \"删除工作流程运行\",\n                // 删除工作流程运行 对话框\n                    \"Are you sure you want to permanently delete this workflow run?\": \"您确定要永久删除此工作流程运行吗？\",\n                    \"This action cannot be undone.\": \"此操作无法撤消。\",\n                    \"Yes, delete this workflow run\": \"是的，删除此工作流程\",\n                // 顶部提醒\n                    \"Workflow run deleted successfully.\": \"工作流程运行删除成功。\",\n\n            // 筛选结果\n                \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n                \"You could search\": \"您可以搜索\",\n                \"all workflow runs\": \"所有工作流程运行\",\n                \"or try different filters.\": \"或尝试不同的筛选器。\",\n\n            // 列表区域\n                // 工作流程运行状态\n                \"In progress\": \"进行中\",\n                \"Queued\": \"排队中\",\n                \"Pending\": \"待定中\",\n\n            // 顶部提醒\n                \"You have successfully requested the workflow to be canceled.\": \"您已成功请求取消工作流。\",\n\n        // /<user-name>/<repo-name>/actions/workflows/<file>.yml\n            //右侧三个点\n                \"Show workflow options\": \"显示工作流程选项\",\n                    \"Create status badge\": \"创建状态徽章\",\n                        // 对话框\n                            \"Default branch\": \"默认分支\",\n                                \"Filter branches\": \"筛选分支\",\n                            \"Copy status badge Markdown\": \"复制状态徽章 Markdown 代码\",\n                    \"Pin workflow\": \"固定工作流程\",\n                    \"Disable workflow\": \"禁用工作流程\",\n                        // 顶部提醒\n                        \"Workflow disabled successfully.\": \"工作流程已成功禁用。\",\n\n            \"This workflow has a\": \"这个工作流程有一个\",\n            \"event trigger.\": \"事件触发器。\",\n\n            \"Run workflow\": \"运行工作流程\",\n                \"Use workflow from\": \"使用工作流程来自：\",\n                \"Branch:\": \"分支：\",\n                \"Select branch\": \"选择分支\",\n                \"Select ref\": \"选择引用\",\n                \"Select a tag\": \"选择标签\",\n                    \"Nothing to show\": \"暂无\",\n\n                    \"Workflow does not exist or does not have a\": \"工作流程不存在或没有\",\n                    \"trigger in this branch.\": \"触发在此分支。\",\n                    \"Learn more about manual workflows\": \"了解更多关于手工工作流程的信息\",\n                \"Running workflow...\": \"正在运行工作流程…\",\n                // 顶部提醒\n                    \"Workflow run was successfully requested.\": \"工作流程已成功请求运行。\",\n\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days.\": \"此计划工作流程已禁用，因为此仓库至少 60 天没有活动。\",\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days. Enable this workflow to resume scheduled runs.\": \"此计划的工作流程已禁用，因为此仓库至少有 60 天没有活动。启用此工作流程可恢复计划运行。\",\n            \"This scheduled workflow is disabled because scheduled workflows are disabled by default in forks.\": \"此计划工作流程已被禁用，因为计划工作流程在复刻仓库中默认被禁用。\",\n            \"This workflow was disabled manually.\": \"工作流程已被手动禁用。\",\n            \"This workflow is\": \"此工作流程正在等待维护者\",\n                \"awaiting approval\": \"批准\",\n                \"from a maintainer in\": \"在\",\n            \"Enable workflow\": \"启用工作流程\",\n                // 顶部提醒\n                    \"Workflow enabled successfully.\": \"工作流程已成功启用。\",\n            \"Re-run jobs\": \"重新运行作业\",\n                \"Re-running...\": \"重新运行中…\",\n\n            // 重新运行对话框\n            \"Re-run single job\": \"重新运行单个作业\",\n                \"A new attempt of this workflow will be started, including\": \"将开始此工作流程的新尝试，包括\",\n                \"all the jobs\": \"所有作业\",\n                \"all failed jobs\": \"所有失败作业\",\n                \"and dependents:\": \"和依赖：\",\n                \"debug logging\": \"调试日志\",\n\n            \"This workflow has no runs yet.\": \"此工作流程尚未运行。\",\n\n        // 缓存 /<user-name>/<repo-name>/actions/caches\n            \"Showing caches from all workflows.\": \"显示所有工作流程的缓存。\",\n            \"Learn more about managing caches.\": \"了解更多关于管理缓存的信息。\",\n            \"Filter caches\": \"筛选缓存\",\n            \"Filter by branch\": \"按分支筛选\",\n            \"Approaching total cache storage limit\": \"接近总缓存存储限制\",\n            \"Least recently used caches will be automatically evicted to limit the total cache storage to 10 GB.\": \"最近最少使用的缓存将被自动驱逐，以限制总缓存存储为 10 GB。\",\n            \"Learn more about cache usage.\": \"了解更多关于缓存使用的信息。\",\n\n            // [/(\\d+) caches?/, \"$1 个缓存\"],\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜单\n                \"Recently used\": \"最近使用\",\n                \"Least recently used\": \"最近最少使用\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n            \"No caches\": \"尚无缓存\",\n            \"Nothing has been cached by workflows running in this repository.\": \"在此仓库中运行的工作流程尚未缓存任何内容。\",\n            \"Learn more about caching\": \"了解更多关于缓存的信息\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依赖项和构建输出以缩短工作流执行时间。\",\n            \"Last used\": \"最近使用\",\n\n            // [/(\\d+) cache results?/, \"$1 个缓存结果\"],\n            \"No caches matched your search\": \"没有与您的搜索相匹配的缓存\",\n            // [/No caches matched your search branch:([^ ]+)/, \"没有与您搜索的分支: $1 相匹配的缓存\"],\n            \"Remove the filters\": \"删除筛选器\",\n            \"or try a different search query.\": \"或尝试不同的搜索查询。\",\n\n            \"Delete cache\": \"删除缓存\",\n                \"Remove cache\": \"删除缓存\",\n                \"Are you sure you want to delete this cache?\": \"您确定要删除此缓存吗？\",\n                \"This action cannot be undone\": \"此操作无法撤消\",\n                \"Yes, permanently delete this cache\": \"是的，永久删除此缓存\",\n\n                \"Deleting Cache...\": \"删除缓存中…\",\n                // 顶部提醒\n                \"Cache deleted successfully.\": \"缓存已成功删除。\",\n\n        // 运行器 /<user-name>/<repo-name>/actions/runners\n            \"Runners available to this repository\": \"此仓库可用的运行器\",\n            \"New runner\": \"新建运行器\",\n            \"GitHub-hosted runners\": \"GitHub 托管的运行器\",\n                // [/(\\d+) available runners?/, \"$1 个可用运行器\"],\n                \"Larger GitHub-hosted runners\": \"大型 GitHub 托管运行程序\",\n                \"Unprovisioned\": \"未配置\",\n                \"Team & Enterprise\": \"团队与企业\",\n                \"Sizes up to:\": \"尺寸可达：\",\n                \"Standard GitHub-hosted runners\": \"标准 GitHub 托管的运行器\",\n                \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型运行器。\",\n                \"Learn more about GitHub-hosted runners.\": \"了解更多关于 GitHub 托管运行器的信息。\",\n                \"Copy ubuntu-latest\": \"复制 ubuntu-latest\",\n                \"Copy windows-latest\": \"复制 windows-latest\",\n                \"Copy macos-latest\": \"复制 macos-latest\",\n\n                \"View larger runner docs\": \"查看大型运行器文档\",\n                \"See pricing\": \"查看定价\",\n            \"Self-hosted runners\": \"自托管运行器\",\n                \"You don't have any\": \"此仓库尚无任何\",\n                \"self-hosted\": \"自托管\",\n                \"runners for this repository\": \"运行器\",\n                    \"Self-hosted runners are virtual machines for GitHub Actions workflows that you manage and maintain outside of GitHub.\": \"自托管运行器是您在 GitHub 外部管理和维护的 GitHub Actions 工作流程的虚拟机。\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>\n            // 顶部提醒\n                \"Logs deleted successfully.\": \"日志已成功删除。\",\n\n            // 标题\n            \"Re-run all jobs\": \"重新运行所有作业\",\n            \"Re-run failed jobs\": \"重新运行失败作业\",\n            \"Cancel workflow\": \"取消工作流程\",\n\n            //\"Latest attempt\": \"最后运行\",\n            //\"Attempt\": \"运行\",\n            \"Explain error\": \"解释错误\",\n            //右侧按钮\n            \"View workflow runs\": \"查看工作流程运行\",\n            \"Workflow run options\": \"工作流程运行选项\",\n            \"Delete all logs\": \"删除所有日志\",\n            \"Sign in to view logs\": \"登录后查看日志\",\n\n            // 左侧栏\n            \"Summary\": \"摘要\",\n            \"All jobs\": \"所有作业\",\n                \"Filter by job status\": \"由作业状态筛选\",\n                    \"Filter by status\": \"状态筛选\",\n            \"Jobs\": \"作业\",\n            \"Run details\": \"运行详情\",\n            \"Usage\": \"运用\",\n\n            //状态条\n            \"Triggered via pull request\": \"通过拉取请求触发\",\n            \"Triggered via issues\": \"通过议题触发\",\n            \"Triggered via push\": \"通过推送触发\",\n            \"Triggered via schedule\": \"通过计划表触发\",\n            \"Triggered via dynamic\": \"通过动态触发\",\n            \"Triggered via GitHub Pages\": \"通过 GitHub 页面触发\",\n            \"Triggered via repository dispatch\": \"通过仓库调度触发\",\n            \"Triggered via release\": \"通过发行版触发\",\n            \"Triggered via issue\": \"通过议题触发\",\n            \"Triggered via discussion\": \"通过讨论触发\",\n            \"Triggered via discussion comment\": \"通过讨论评论触发\",\n            \"Triggered via workflow run\": \"通过工作流运行触发\",\n            \"Re-run triggered\": \"重新触发\",\n            \"Manually triggered\": \"手动触发\",\n\n            \"pushed\": \"推送\",\n            \"opened\": \"打开\",\n            \"reopened\": \"重新打开\",\n            \"commented on\": \"评论于\",\n            \"opened by\": \"打开者\",\n\n            // 状态\n                \"Success\": \"成功\",\n                \"Failure\": \"失败\",\n                \"Startup failure\": \"失败\",\n                \"Cancelled\": \"取消\",\n                \"Action required\": \"请求操作\",\n                \"Waiting\": \"等待\",\n            \"Total duration\": \"总时长\",\n            \"Billable time\": \"计费时间\",\n\n            \"This workflow is waiting for\": \"该工作流程正在等待\",\n                \"to complete before running.\": \"完成后再运行。\",\n                \"Learn more about concurrency\": \"了解有关并发执行的更多信息\",\n\n            \"Job summary generated at run-time\": \"运行时生成的工作摘要\",\n\n            // 右侧中间栏\n                \"This workflow graph cannot be shown\": \"无法显示此工作流图表\",\n                \"A graph will be generated the next time this workflow is run.\": \"下次运行此工作流时将生成一个图表。\",\n\n                \"This run and associated checks have been archived and are scheduled for deletion.\": \"此运行和相关检查已存档并计划删除。\",\n                \"Learn more about checks retention\": \"了解更多关于检查保留的信息\",\n\n            \"Artifacts\": \"附件\",\n                \"Produced during runtime\": \"在运行期间生成\",\n                \"Name\": \"名称\",\n                \"Size\": \"大小\",\n                \"Digest\": \"校验值\",\n                // [/Delete artifact ([^ ]+)/, \"删除附件 $1\"],\n                \"Expired\": \"已过期\",\n                    \"This artifact has expired and you can no longer download it\": \"此附件已过期，您无法再下载\",\n            \"Annotations\": \"说明\",\n                \"The self-hosted runner lost communication with the server. Verify the machine is running and has a healthy network connection. Anything in your workflow that terminates the runner process, starves it for CPU/Memory, or blocks its network access can cause this error.\": \"自行托管的运行器与服务器通信中断。请确认机器正在运行且网络连接正常。工作流中任何终止运行器进程、耗尽 CPU/内存或阻塞其网络访问的操作都可能导致此错误。\",\n                \"The job has exceeded the maximum execution time of 6h0m0s\": \"该作业已超过最大执行时间 6 小时\",\n                // [/1 error/, \"$1 个错误\"],\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/job/<job-id>\n            \"The logs for this run have expired and are no longer available.\": \"此运行日志已过期，不再可用。\",\n            \"This job was cancelled\": \"作业已取消\",\n            \"This step has been truncated due to its large size. View the raw logs from the\": \"此步骤因内容过大，已将其截断。工作流运行完成后，从\",\n            \"menu once the workflow run has completed.\": \"菜单中查看原始日志。\",\n\n            \"Started\": \"开始于\",\n            \"succeeded\": \"成功于\",\n            \"ago\": \"之前\",\n\n            \"Search logs\": \"搜索日志\",\n            \"Re-run this job\": \"重新运行此作业\",\n            // 设置按钮\n                \"Show timestamps\": \"显示时间戳\",\n                \"Show full screen (Shift+F)\": \"全屏显示（Shift+F）\",\n                \"Download log archive\": \"下载日志存档\",\n                \"View raw logs\": \"查看原始日志\",\n                \"View job summary\": \"查看作业摘要\",\n\n            \"Try broadening your search filters.\": \"尝试扩大您的搜索筛选器。\",\n\n            \"Re-run all checks\": \"重新运行所有检查\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/usage\n            \"Run and billable time\": \"运行和计费时间\",\n            \"Learn about OS pricing on GitHub Actions\": \"了解 GitHub Actions 上的操作系统定价\",\n            \"Job\": \"工作\",\n            \"Run time\": \"运行时间\",\n            \"Billable\": \"计费\",\n            \"time\": \"时间\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/workflow\n            \"Workflow file\": \"工作流程文件\",\n            \"Workflow file for this run\": \"本次运行的工作流程文件\",\n\n        // 操作面板\n            \"Show all jobs\": \"显示所有工作\",\n            \"Scheduled\": \"计划运行\",\n            \"Commit\": \"提交\",\n                \"pushed by\": \"推送者\",\n            \"Manually run by\": \"手动运行由\",\n            \"The run was canceled by\": \"取消由\", // 原文过于啰嗦\n            \"Pull request\": \"拉取请求\",\n                \"synchronize by\": \"同步者\",\n                \"synchronize\": \"同步自\",\n                \"reopened by\": \"重新打开者\",\n            \"The operation was canceled.\": \"已取消。\",\n            \"Release\": \"发行版\",\n                \"published by\": \"发布者\",\n            \"created by\": \"创建者\",\n            \"completed by\": \"完成者\",\n            //\"Process completed with exit code 1.\": \"进程完成，退出代码为 1。\",\n            \"Cache not found\": \"找不到缓存\",\n            \"Starting job\": \"作业启动中\",\n            \"This job failed\": \"此作业失败\",\n            \"This job was skipped\": \"此作业被跳过\",\n            \"Waiting for pending jobs\": \"等待中\",\n            \"Input required and not supplied: token\": \"需要输入但未提供：令牌\",\n            \"The deployment was rejected or didn't satisfy other protection rules.\": \"部署被拒绝或不符合其他保护规则。\",\n            \"Fit to window\": \"适合\",\n            \"Zoom out\": \"缩小\",\n            \"Zoom in\": \"放大\",\n\n        // 摘要窗口\n            \"Unable to load summary\": \"无法加载摘要\",\n            \"This job summary has expired and is no longer available\": \"此作业摘要已过期，不再可用\",\n                // 右侧三个点\n                \"View job logs\": \"查看日志\",\n                \"View raw markdown\": \"查看原始 Markdown\",\n                \"Copy permalink\": \"复制永久链接\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Back to pull request (#\\d+)/, \"返回拉取请求 $1\"],\n        [/Workflow (.*) pinned./, \"工作流程 $1 已置顶\"],\n        [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置顶\"],\n        [/Found (\\d+) workflows?/, \"发现 $1 个工作流程\"],\n        [/(\\d+) workflow runs?$/, \"$1 个工作流程运行\"],\n        [/(\\d+) workflow runs? results?/, \"$1 个工作流程运行结果\"],\n        [/Download ([^ ]+) \\(opens in a new tab\\)/, \"下载 $1（在新标签中打开）\"],\n        [/Download ([^ ]+)/, \"下载 $1\"],\n        [/Delete ([^ ]+)/, \"删除 $1\"],\n        [/(\\d+) errors?/, \"$1 个错误\"],\n        [/(\\d+) cache results?/, \"$1 个缓存结果\"],\n        [/(\\d+) caches?/, \"$1 个缓存\"],\n        [/No caches matched your search branch:([^ ]+)/, \"没有与您搜索的分支: $1 相匹配的缓存\"],\n        [/(\\d+) available runners?/, \"$1 个可用运行器\"],\n        [/(\\d+)\\/(\\d+) jobs? completed/, \"$1/$2 个工作完成\"],\n        [/(\\d+) jobs? completed/, \"$1 个工作完成\"],\n        [/(\\d+) warnings?/, \"$1 个警告\"],\n        [/Latest attempt (#\\d+)/, \"最后运行 $1\"],\n        [/Latest (#\\d+)/, \"最新 $1\"],\n        [/Attempt (#\\d+)/, \"运行 $1\"],\n        [/cached/, \"被缓存\"],\n        [/(\\d+)-cores · (\\d+) GB RAM · (\\d+) GB SSD Storage/, \"$1 核心 · $2 GB内存 · $3 GB SSD 存储\"],\n        [/Process completed with exit code (\\d+)/, \"进程已结束，退出代码为 $1\"],\n        [/([^ ]+) value is not set/, \"$1 值未设置\"],\n        [/([^ ]+) summary/, \"$1 摘要\"],\n        [/By ([^ ]+)/, \"创建：$1\"],\n        [/Branch \"([^ ]+)\" is not allowed to deploy to ([^ ]+) due to environment protection rules./, \"由于环境保护规则，“$1”分支不允许部署到 $2 上。\"],\n        // 时间\n        [/(\\d+)d (\\d+)h (\\d+)m (\\d+)s/, \"$1天$2时$3分$4秒\"],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1时$2分$3秒\"],\n        [/(\\d+)h (\\d+)m/, \"$1时$2分\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Workflow runs/, \"工作流程运行\"],\n            [/Caches/, \"缓存\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/runs\"] = I18N[\"zh-CN\"][\"repository/actions\"];\n\nI18N[\"zh-CN\"][\"repository/deployments\"] = { // 仓库 - 部署页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/deployments\n            // 左侧栏\n                \"Deployed\": \"部署\",\n                    \"All deployments\": \"所有部署\",\n                    \"Environments\": \"环境\",\n                    \"Manage environments\": \"管理环境\",\n\n            // 面板\n                // 所有部署\n                    \"Latest deployments from pinned environments\": \"来自固定环境的最新部署\",\n                //具体某一项\n                    \"Latest deployments\": \"最新部署\",\n                    \"Last\": \"最后\",\n                    \"deployed\": \"部署于\",\n                // 中间面板\n                    \"Your search did not match any deployments\": \"您的搜索未匹配任何部署\",\n                    \"Try a different search query\": \"尝试不同的搜索查询\",\n\n                // 筛选条\n                    \"Filter\": \"筛选\",\n                        \"Filter deployments\": \"筛选部署\",\n                        // 搜索框菜单\n                            \"State\": \"状态\",\n                                \"success\": \"成功\",\n                                \"failure\": \"失败\",\n                                \"error\": \"错误\",\n                                \"inactive\": \"不活跃\",\n                                \"pending\": \"待定\",\n                                \"queued\": \"排队\",\n                                \"in progress\": \"进行中\",\n                                \"waiting\": \"等待中\",\n                            \"Creator\": \"创建者\",\n                            \"Environment\": \"环境\",\n                            \"Ref\": \"引用\",\n                            \"Text\": \"文本\",\n\n                    // 筛选器窗口\n                        \"Advanced filters\": \"高级筛选\",\n                        \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                        \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n\n                        \"Qualifier\": \"限定\",\n                        \"Operator\": \"操作\",\n                            \"is one of\": \"之中的\",\n                            \"is\": \"是\",\n                        \"Value\": \"值\",\n                            \"Make a selection\": \"请选择\",\n                            \"Select items\": \"请选择项目\",\n                            \"Filter values\": \"筛选值\",\n                            \"Enter search text\": \"键入任意文本\",\n                                \"Me\": \"我\",\n                                \"Signed-in user\": \"已登录用户\",\n                        \"Add a filter\": \"添加筛选器\",\n                        \"Apply\": \"应用\",\n\n                    // 关闭弹窗\n                        \"Discard changes?\": \"是否放弃更改？\",\n                            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                            \"Keep editing\": \"继续编辑\",\n                            \"Close and discard\": \"关闭并放弃\",\n\n                    //筛选器报错窗口\n                        \"Empty value for\": \"空值：\",\n                        \"Text will be ignored since log searching is not yet available:\": \"由于尚未提供日志搜索功能，文本将被忽略：\",\n\n                // 列表\n                    \"Active\": \"活跃\",\n                    \"Inactive\": \"不活跃\",\n                    \"Abandoned\": \"废弃\",\n                    \"Deployed to\": \"部署到\",\n                    \"Failed to deploy to\": \"无法部署到\",\n\n                    \"View logs\": \"查看日志\",\n                    \"View workflow run\": \"查看工作流程运行\",\n\n        // /<user-name>/<repo-name>/deployments/activity_log?environment=github-pages\n            \"Deployments\": \"部署\",\n            \"/ History\": \"/ 历史\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/deployments?/, \"部署\"],\n        [/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"], // 过滤器报错窗口\n        [/via/, \"通过\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Deployments/, \"部署\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/attestations\"] = { // 仓库 - 证书页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // <user-name>/repo-name>/attestations 证书\n            \"Attestations\": \"证书\",\n\n            \"No attestations\": \"尚无证书\",\n                \"Create attestations using the\": \"创建证书，请使用\",\n                \"action\": \"操作工作流\",\n\n            \"Filter\": \"筛选\",\n                \"Sort by:\": \"排序方式：\",\n                    \"Newest\": \"最新\",\n                    \"Oldest\": \"最早\",\n                \"Search or filter\": \"搜索或筛选\",\n                \"Advanced filters\": \"高级筛选\",\n                \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n                \"Add a filter\": \"添加筛选器\",\n                \"Apply\": \"应用\",\n                \"Created\": \"创建于\",\n                    \"before\": \"之前\",\n                    \"after\": \"之后\",\n                    \"before and including\": \"之前包括\",\n                    \"after and including\": \"之后包括\",\n                    \"between\": \"之间\",\n                    \"is one of\": \"之中的\",\n                    \"is not one of\": \"不包含\",\n                    \"is\": \"是\",\n                \"Has\": \"包含\",\n                \"Predicate type\": \"谓词类型\",\n                \"Exclude\": \"排除\",\n                \"Text\": \"文本\",\n                    \"Enter search text\": \"键入任意文本\",\n\n\n            \"Qualifier\": \"条件\",\n            \"Operator\": \"操作\",\n            \"Value\": \"值\",\n                \"Make a selection\": \"请选择\",\n                \"Select items\": \"请选择项目\",\n                \"Select an item\": \"请选择一个项目\",\n                \"Filter values\": \"筛选值\",\n    },\n    \"title\": {\n        \"regexp\": [\n            [/Attestations/, \"证书\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/watchers\"] = { // 仓库 - 关注者页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 关注者页面  /<user-name>/<repo-name>/watchers\n            \"Watchers\": \"关注者\",\n            \"No one’s watching this repository yet. You could be the first.\": \"暂无关注者。您可以成为第一个\",\n            \"Learn more about how watching repositories works on GitHub\": \"了解更多关于如何在 GitHub 上关注仓库的工作方式\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入于\"], // 追星者，关注者页面\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/stargazers\"] = { // 仓库 - 追星者页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 追星者页面  /<user-name>/<repo-name>/stargazers\n            \"Stargazers\": \"追星者\",\n            \"All\": \"全部\",\n            \"You know\": \"您关注的\",\n            \"Be the first to star this repository\": \"成为第一个为这个仓库标星的人\",\n            \"about how starring works on GitHub.\": \"关于如何在 GitHub 上标星。\",\n            \"Be the first of your friends to star this repository.\": \"成为第一个为这个仓库标星的朋友。\",\n\n        // /<user-name>/<repo-name>/stargazers/you_know\n            \"No one you follow has starred this repository yet.\": \"您关注的任何人都未标星此仓库。\",\n            \"Learn more about how starring works on GitHub.\": \"了解更多关于在 GitHub 上标星的工作原理。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入于\"], // 追星者，关注者页面\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/new\"] = { // 仓库 - 新建/编辑/上传/删除文件页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 新建文件页面 /<user-name>/<repo-name>/new/<branch>\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Add file\": \"添加文件\",\n                // 搜索框\n                    \"Search this repository\": \"搜索此仓库\",\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            \"Name your file...\": \"文件名…\",\n            \"in\": \"在\",\n\n            \"Cancel changes\": \"取消更改\",\n                \"You have unsaved changes. Do you want to discard them?\": \"您有未保存的更改。您想丢弃它们吗？\",\n            \"Commit changes...\": \"提交更改…\",\n\n            \"Preview\": \"预览\",\n                \"Loading preview…\": \"载入预览…\",\n                    \"There is no content to preview.\": \"没有可预览的内容。\",\n                    \"There has been an error generating the preview.\": \"生成预览时发生错误。\",\n                    \"Unable to load this preview, sorry.\": \"抱歉，无法加载此预览。\",\n                    \"There are no changes to show.\": \"没有要显示的更改。\",\n                    \"But you can preview the whole file.\": \"但您可以预览整个文件。\", // new code view\n\n            // 代码编辑框\n                // Copilot 广告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 编码速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的时间创建模板和重复的代码模式，花更多的时间构建优秀的软件。在 GitHub 代码空间或您最喜欢的文件编辑器中尝试一下哈。\",\n                        \"Get GitHub Copilot\": \"获取 GitHub Copilot\",\n                        \"Don't show again\": \"不再显示\",\n\n                \"Indent mode\": \"缩进模式\",\n                    \"Spaces\": \"空格\",\n                    \"Tabs\": \"Tab\",\n                \"Indent size\": \"缩进大小\",\n                \"Line wrap mode\": \"换行模式\",\n                    \"No wrap\": \"不换行\",\n                    \"Soft wrap\": \"软换行\",\n\n            \"Show Diff\": \"显示差异\",\n\n            // 提交对话框\n                \"Commit changes\": \"提交更改\",\n                    \"There was an error committing your changes:\": \"在提交您的更改时出现错误：\",\n                    \"A file with the same name already exists. Please choose a different name and try again.\": \"已存在同名文件。请选择其他名称并重试。\",\n                    \"File could not be edited\": \"文件不能编辑\",\n                    \"See what changed\": \"查看更改\",\n                \"Sign off and commit changes\": \"提交更改并签署\",\n                \"Propose changes\": \"提出更改建议\", // 向他人仓库提交\n                \"Sign off and propose changes\": \"提出更改建议并签署\", // 向他人仓库提交\n                    \"Commit message\": \"提交信息\",\n                    \"Extended description\": \"扩展描述\",\n                        \"Add an optional extended description...\": \"添加描述... (可选)\",\n\n                    \"Message and description suggested by Copilot.\": \"Copilot建议的消息和描述。\",\n                        \"Send feedback\": \"提交反馈\",\n\n                    \"You are\": \"您将\",\n                    \"signing off\": \"签署\",\n                    // [/on this commit as/,\"该提交以\"],\n\n                    \"You can’t commit to\": \"您不能提交到\",\n                    \"because its is a\": \"，因为它是一个\",\n                    \"protected branch\": \"受保护分支\",\n\n                    \"Commit directly to the\": \"提交到\",\n                    \"branch\": \"分支\",\n\n                    \"Some rules will be bypassed by committing directly\": \"直接提交可以绕过一些规则\",\n                    \"Bypass rules and commit changes\": \"绕过规则并提交更改\",\n\n                    \"Create a\": \"创建\",\n                    \"new branch\": \"新分支\",\n                    \"for this commit and start a pull request\": \"为这个提交，并且发起一个拉取请求\",\n                    \"Learn more about pull requests\": \"了解更多关于拉取请求的信息\",\n\n                \"Something went wrong. Please fork the project, then try from your fork.\": \"出错了。请复刻该项目，然后从您的复刻处尝试。\",\n\n            // 底部栏\n                \"Use\": \"使用\",\n                \"to toggle the\": \"切换\",\n                \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                \"then\": \"键，然后\",\n                \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n\n            // 顶部提醒\n            // [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的许可证已准备就绪。请在下面审查它并将其提交到 $1 分支或新分支。\"],\n\n        // 编辑文件页面 /<user-name>/<repo-name>/edit/<branch>/<file>\n            // 非本人仓库\n                \"You need to fork this repository to propose changes.\": \"您需要复刻此仓库以提出更改。\",\n                    \"Sorry, you’re not able to edit this repository directly—you need to fork it and propose your changes from there instead.\": \"抱歉，您无法直接编辑此仓库——您需要将其复刻并从那里提出您的更改。\",\n                \"Fork this repository\": \"复刻此仓库\",\n                    \"Learn more about forks\": \"了解更多关于复刻的信息\",\n\n                \"You have unsaved changes on this file that can be restored.\": \"您可以恢复该文件上未保存的更改。\",\n                    \"Discard\": \"丢弃\",\n                    \"Restore\": \"恢复\",\n\n                \"You’re making changes in a project you don’t have write access to. Submitting a change will write it to a new branch in your fork\": \"您正在对没有写入权限的项目进行更改。提交更改会将其写入您的复刻\",\n                \", so you can send a pull request.\": \" 中的新分支，这样您就可以发送拉取请求。\",\n\n            // 复刻仓库过旧\n                \"Sorry, it looks like your fork is outdated!\": \"抱歉，您的复刻好像过时了！\",\n                \"You’ll have to bring it up to date before you can propose changes.\": \"在提出修改意见之前，您必须对其进行更新。\",\n                \"Update your fork\": \"更新您的复刻\",\n\n            // 组织仓库 编辑文件页面\n                \"You’re making changes in a project you don’t have write access to. We’ve\": \"您正在对没有写入权限的项目进行更改。我们已经\",\n                \"created a fork of this project\": \"为该项目创建复刻\",\n                \"for you to commit your proposed changes to. Submitting a change will write it to a new branch in your fork, so you can send a pull request.\": \"供您提交建议的更改。提交更改会将其写入复刻中的新分支，这样您就可以发送拉取请求。\",\n\n            // 混合换行符\n                \"We’ve detected the file has mixed line endings. When you commit changes we will normalize them to\": \"我们检测到该文件具有混合行结尾。当您提交更改时，我们会将它们标准化为\",\n                \"Windows-style\": \"Windows 样式\",\n\n            // 与用户名同名仓库 编辑 README.md 文件\n                \"is a special repository: its\": \"是一个特殊的仓库：它的\",\n                \"will appear on your profile!\": \"将出现在您的个人资料中！\",\n\n                \"is now a special repository: its\": \"现在是一个特殊的仓库：它的\",\n\n            // 组织下.github 仓库 编辑 /profile/README.md 文件\n                \"is a special repository: this\": \"是一个特殊的仓库：这个\",\n                \"will appear on your organization's profile!\": \"将出现在您的组织资料中!\",\n\n            // 编辑 .gitignore 文件\n                \"Choose .gitignore template\": \"选择 .gitignore 模板\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"筛选…\",\n                    \"None\": \"无\",\n\n            // 编辑 工作流程文件 .github/workflows/xxxx.yml\n                \"Collapse help panel\": \"折叠帮助面板\",\n\n                // 帮助面板侧边栏\n                    \"Search Marketplace for Actions\": \"搜索 Actions 市场\",\n                    \"Featured Actions\": \"特色 Actions\",\n                    \"Featured categories\": \"特色分类\",\n                        \"Code quality\": \"代码质量\",\n                        \"Monitoring\": \"监控\",\n                        \"Continuous integration\": \"持续集成\",\n                        \"Project management\": \"项目管理\",\n                        \"Deployment\": \"部署\",\n                        \"Project management\": \"项目管理\",\n                        \"Testing\": \"测试\",\n                    \"\\/ Search results\": \"\\/搜索结果\",\n                    \"Browse all actions on the GitHub Marketplace\": \"浏览 GitHub 市场 上的所有 Actions\",\n\n                    // 具体某个操作\n                        \"View full Marketplace listing\": \"去市场查看详细信息\", // 跳转去市场对应页面\n                        \"Installation\": \"安装\",\n                        \"Copy and paste the following snippet into your\": \"将以下代码段复制并粘贴到您的\",\n                            \"file.\": \"文件。\",\n                        \"Version:\": \"版本：\",\n\n                // 底部栏补充\n                    \"Space\": \"空格\",\n                    \"to trigger autocomplete in most situations.\": \"在大多数情况下将触发自动完成。\",\n                    \"Documentation\": \"文档\",\n\n            // 编辑 LICENSE 许可证文件\n                \"Choose a license template\": \"选择许可证模板\",\n\n            // 编辑 议题表单模板文件 .github/ISSUE_TEMPLATE/xxxx.yml\n                // 顶部提示\n                \"Looks like this file is an issue template. Need help?\": \"此文件是一个议题模板。需要帮助？\",\n                \"Learn more about issue templates.\": \"了解更多关于议题模板的信息。\",\n                \"Give feedback.\": \"提交反馈。\",\n                // 右侧帮助说明\n                \"Top-level configuration options\": \"顶层配置选项\",\n                    \"Required Fields\": \"必填项\",\n                        \"(String): The template's name. Must be unique across all templates, including Markdown templates.\": \"（字符串）模板名。不能与其他模板名重复，包括 Markdown 模板\",\n                        \"(String): A description of this template's intended use. This will be shown in the issue template chooser interface.\": \"(字符串）：该模板预期用途的说明。这将显示在议题模板选择界面中。\",\n                    \"Optional Fields\": \"可选项\",\n                        \"(Array or String): This issue will be automatically assigned to these users. Can be array of usernames or comma-delimited string, e.g. \\\"monalisa,nat\\\"\": \"(数组或字符串）：此议题将自动分配给这些用户。可以是用户名数组或以逗号分隔的字符串，例如 “monalisa,nat”。\",\n                        \"(Array or String): This issue will automatically receive these labels upon creation. Can be array of labels or comma-delimited string, e.g. \\\"bug,needs-triage\\\"\": \"(数组或字符串）：该议题在创建时将自动接收这些标签。可以是标签数组或以逗号分隔的字符串，例如 “bug,needs-triage”（错误，需要分流）。\",\n                        \"(Array or String): This issue will be automatically added to these projects. Can be array of projects or comma-delimited string, e.g. \\\"github\\/1,github\\/2\\\"\": \"(数组或字符串）：该议题将自动添加到这些项目中。可以是项目数组或以逗号分隔的字符串，如 “github\\/1,github\\/2”。\",\n                        \"(String): Default title that will be pre-populated in the issue submission form.\": \"(字符串）：将在议题表单中预填的默认标题。\",\n                        \"(Array): Definition of user inputs.\": \"(数组）：用户输入的定义。\",\n                \"Input type configuration options\": \"输入类型配置项\",\n                    // Markdown\n                        \"Markdown blocks contain arbitrary text that a maintainer can add to a template, to provide extra context or guidance to a contributor. Supports Markdown formatting. This text will\": \"Markdown 块包含任意文本，维护者可将其添加到模板中，为贡献者提供额外的上下文或指导。支持 Markdown 格式。这些文本\",\n                        \"not be rendered in the submitted issue body\": \"不会在提交的议题正文中呈现。\",\n                        // 必填项\n                            \"(String): The text that will be rendered. Markdown formatting is supported.\": \"(字符串）：将渲染的文本。支持 Markdown 格式。\",\n                        \"Tip #1: YAML processing will cause the hash symbol to be treated as a comment. To insert Markdown headers, wrap your text in quotes.\": \"提示 1：YAML 处理会将 # 号视为注释。要插入 Markdown 标题，请用引号将文本包起来。\",\n                        \"Tip #2: For multi-line text, you can use the pipe operator.\": \"提示 2：对于多行文本，可以使用管道运算符。\",\n                        \"Example\": \"示例\",\n                    \"Input\": \"输入\",\n                        \"Inputs are single-line form input fields. Contributors may use markdown formatting in their responses.\": \"输入为单行表单输入字段。贡献者可在回复中使用标记符格式。\",\n                        \"Required Attributes\": \"必要属性\",\n                            \"(String): A brief description of the expected user input.\": \"(字符串）： 预期用户输入的简要说明。\",\n                        \"Optional Attributes\": \"可选属性\",\n                            \"(String): Extra context or guidance about filling out this form input. Supports Markdown.\": \"(字符串）：有关填写此表单输入的额外上下文或指导。支持 Markdown。\",\n                            \"(String): Renders as semi-transparent \\\"placeholder\\\" element in the input field when it's empty.\": \"(字符串）：当输入框为空时，渲染为半透明的 “placeholder”元素。\",\n                            \"(String): Default text that is pre-populated in the input field.\": \"(字符串）：输入字段中预填的默认文本。\",\n                        // ID\n                            \"(String): Optional unique identifier. Can only contain alphanumeric characters,\": \"(字符串）：可选的唯一标识符。只能包含字母数字字符、\",\n                        \"Validations\": \"验证\",\n                            \"(Boolean): If\": \"(布尔值）：若\",\n                            \", the form will not be submittable until this is filled out. Only for public repositories.\": \"，则填写此信息后才能提交表格。仅适用于公共仓库。\",\n                    \"Textarea\": \"文本区域\",\n                        \"Very similar to inputs, textareas are multiple-line form input fields. Typically used if you'd like a contributor to provide an answer longer than a few words. Contributors may use markdown formatting in their responses.\": \"文本区域与输入非常相似，都是多行表单输入字段。如果希望贡献者提供长于几个单词的答案，通常会使用文本区域。贡献者可以在回复中使用标记符格式。\",\n                        // 可选属性\n                            \"(String): If a value is provided, user-submitted text will be formatted into a codeblock automatically.\": \"(字符串）：如果提供该值，用户提交的文本将自动格式化为代码块。\",\n                    \"Dropdown\": \"下拉菜单\",\n                        \"Users can select their answer from options defined by the maintainer.\": \"用户可以从维护者定义的选项中选择答案。\",\n                            \"(String Array): Set of values that user can select from to answer. Cannot be empty, and all choices must be distinct.\": \"(字符串数组）：用户可从中选择回答的一组值。不能为空，且所有选择必须是不同的。\",\n                        // 可选属性\n                            \", users can submit multiple selections.\": \"则用户可提交多选项。\",\n                        // 验证\n                            \", the form will not be submittable until at least one choice is selected. Only for public repositories.\": \"则至少选择一个选项后才能提交表单。仅适用于公共仓库。\",\n                    \"Checkboxes\": \"勾选框\",\n                    \"A group of one or more checkboxes. This will be saved as a Markdown checkbox, and will continue to support interactive updating.\": \"由一个或多个复选框组成的组。这将被保存为 Markdown 复选框，并将继续支持交互式更新。\",\n                        \"(Array): Set of values that user can select from to answer. Cannot be empty. Each item must have a\": \"(数组）：用户可从中选择回答的数值集合。不能为空。每个项目必须有一个\",\n                        \", described below.\": \"，如下所述。\",\n                    \"Within each item in\": \"对于任何带\",\n                        \", the following fields are supported:\": \"元素则支持以下字段：\",\n                        \"(String): The text that will appear beside the checkbox. Markdown is supported for bold or italic text formatting, and hyperlinks.\": \"(字符串）：复选框旁边显示的文本。Markdown 支持粗体或斜体文本格式以及超链接。\",\n                    \"Optional\": \"可选\",\n                        \"(Boolean): If required, the form will not be submittable unless checked. Only for public repositories.\": \"(布尔值）：如果需要，除非选中，否则表单将无法提交。仅适用于公共仓库。\",\n\n            // 查找工具栏\n                \"Find\": \"查找\",\n                \"next\": \"下一处\",\n                \"previous\": \"上一处\",\n                \"all\": \"全部\",\n                \"match case\": \"区分大小写\",\n                \"regexp\": \"正则\",\n                \"by word\": \"全字匹配\",\n                \"Replace\": \"替换\",\n                \"replace\": \"替换\",\n                \"replace all\": \"全部替换\",\n\n        // 删除文件页面 /<user-name>/<repo-name>/delete/<branch>/<file>\n            // 顶部提醒\n            \"File successfully deleted.\": \"文件已成功删除。\",\n\n            \"Copy path to clipboard\": \"复制路径到剪切板\",\n\n            \"Load diff\": \"加载差异\",\n            \"This file was deleted.\": \"此文件已删除。\",\n\n        // 上传文件页面 /<user-name>/<repo-name>/upload/<branch>\n            // 自有仓库\n                \"Drag files here to add them to your repository\": \"拖拽文件添加到当前仓库\",\n                \"Drag additional files here to add them to your repository\": \"拖拽其他文件添加到当前仓库\",\n                \"Or\": \"或\",\n                \"choose your files\": \"选择文件\",\n                \"Drop to upload your files\": \"拖拽上传您的文件\",\n                // 处理反馈\n                \"Yowza, that’s a big file. Try again with a file smaller than 25MB.\": \"我勒个擦，这么大的文件，单文件不得超过25MB\",\n                \"Yowza, that’s a lot of files. Try again with fewer than 100 files.\": \"我勒个擦，这么多文件，一次不能超过100个\",\n                \"This file is\": \"这个文件是\",\n                \"empty\": \"空的\",\n                \"Something went really wrong, and we can’t process that file.\": \"遇到错误，我们无法处理这个文件。\",\n\n                // 文件上传进度条\n                \"Uploading\": \"文件上传中\",\n                \"of\": \"/\",\n\n                // 提交框 补充\n                    \"Add files via upload\": \"通过上传添加文件\",\n                    \"Add an optional extended description…\": \"添加可选的扩展描述…\",\n\n                    \"branch.\": \"分支。\", // 上传页面\n                    \"for this commit and start a pull request.\": \"为这个提交，并且发起一个拉取请求。\", // 上传页面\n                    \"Learn more about pull requests.\": \"了解更多关于拉取请求的信息。\", // 上传页面\n\n                // 提交后处理页面\n                    \"Processing your files…\": \"正在处理您的文件…\",\n\n            // 他人仓库\n                \"Uploads are disabled.\": \"上传功能已禁用。\",\n                \"File uploads require push access to this repository.\": \"文件上传需要推送访问此仓库。\",\n\n        // new code view\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/on this commit as/,\"该提交以\"],\n        [/Commit changes?/, \"提交更改\"], // 提交对话框\n        [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的许可证已准备就绪。请在下面审查它并将其提交到 $1 分支或新分支。\"],\n        [/Your search has returned (\\d+) results?./, \"您的搜索返回了 $1 条结果。\"],\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n        [/([^ ]+) has committed since you started editing./, \"$1 自您开始编辑以来已提交。\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/New File at/, \"新建文件在\"],\n            [/Editing (.+) at (.+) · (.+)/, \"编辑文件 $1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/edit\"] = I18N[\"zh-CN\"][\"repository/new\"];\nI18N[\"zh-CN\"][\"repository/delete\"] = I18N[\"zh-CN\"][\"repository/new\"];\nI18N[\"zh-CN\"][\"repository/upload\"] = I18N[\"zh-CN\"][\"repository/new\"];\n\nI18N[\"zh-CN\"][\"repository/find\"] = { //  仓库 - 查找文件页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // Find file 页面 /<user-name>/<repo-name>/find/<branch>\n            \"You’ve activated the\": \"您已激活\",\n            \"file finder\": \"文件搜索模式\",\n            \". Start typing to filter the file list. Use\": \"。输入关键词查找您的文件。使用\",\n            \"and\": \"和\",\n            \"to navigate,\": \"选择文件\",\n            \"to view files,\": \"查看文件\",\n            \"to exit.\": \"返回。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/models\"] = { // 仓库 - 模型\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        \"Public Preview\": \"公共预览\",\n        \"Expand menu\": \"展开目录\",\n        \"Collapse menu\": \"折叠目录\",\n        \"Catalog\": \"目录\",\n        \"Share feedback\": \"反馈\",\n        \"Filter items\": \"筛选项目\",\n\n        // 概况\n            \"Build your AI products—right inside GitHub. Create prompts, test models, and ship AI-powered features with built-in tools for model access, prompt collaboration, and lightweight evaluation.\": \"在 GitHub 内部构建您的 AI 产品。利用内置的模型接入、提示协作和轻量级评估工具，创建提示词、测试模型，并发布 AI 驱动的功能。\",\n                \"Read the docs\": \"阅读文档\",\n                \"to learn more.\": \"了解详情。\",\n\n            \"You do not have access to GitHub Models on this repository\": \"您无权访问此仓库上的 GitHub 模型\",\n                \"You need write permissions or higher for this repository to use GitHub Models.\": \"您需要拥有此仓库写入权限或更高权限，才能使用 GitHub 模型。\",\n                \"Learn more about GitHub Models.\": \"了解更多。\",\n\n            \"Get started\": \"开始使用\",\n                \"Watch the models demo\": \"观看模型演示\",\n                \"Watch this 3-minute demo reel to learn everything you can do with GitHub Models\": \"观看这个 3 分钟的演示视频，了解您可以使用 GitHub 模型完成的所有操作\",\n\n            \"Prompts\": \"提示词\",\n                \"Create, evaluate, and iterate on prompts right inside your repo.\": \"在您的仓库内直接创建、评估和迭代提示词。\",\n                \"Get write permissions or higher for this repository to create and manage prompts.\": \"获得对此仓库的写入权限或更高权限，才能创建和管理提示词。\",\n                \"Create a prompt\": \"创建提示词\",\n                \"Build with natural language or using\": \"使用自然语言或使用\",\n                \"prompt.yml files\": \"prompt.yml 文件\",\n                \"Test sample prompt\": \"测试示例提示词\",\n                \"Manage prompts stored in your repo using\": \"管理您仓库中的提示词，使用\",\n                \"Get started with Models in your codebase\": \"开始使用模型您的代码库\", // 还有一些部分未翻译\n\n            \"Add AI to your project now\": \"立即添加 AI 到您的项目\",\n                \"Drop this snippet into your code to start using AI instantly.\": \"将此代码片段插入您的代码中，即可立即开始使用 AI。\",\n                \"Get API Key\": \"获取 API 密钥\",\n\n            \"Explore 40+ models in the catalog\": \"在目录中探索 40+ 模型\",\n                \"Compare models in the playground—test parameters, token usage, and latency to find the right fit for your use case.\": \"在游乐场中对比模型——测试参数、令牌使用量和延迟，以找到最适合您用例的模型。\",\n            \"Power your prompt with the right model\": \"为您的提示词选择合适的模型\",\n                \"Test and compare models against your prompt to find the best fit, then commit it directly to your project when you're ready.\": \"针对您的提示词测试和对比不同模型，以找到最合适的模型，然后在准备好后将其直接提交到您的项目中。\",\n            \"Instrument your Actions workflow with models\": \"使用模型为您的 Actions 工作流提供支持\",\n                \"Set up a new GitHub Actions workflow using models.\": \"使用模型新建 Actions 工作流。\",\n\n        // 提示词\n            \"Manage\": \"管理\",\n                \"prompts stored in your repo using\": \"您仓库中的提示词，使用\",\n                \".prompt.yml file\": \".prompt.yml 文件\",\n                \"format.\": \"格式。\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) prompts? found/, \"$1 条提示词\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Models/, \"模型\"],\n            [/Prompts/, \"提示词\"],\n        ],\n    },\n}\n\nI18N[\"zh-CN\"][\"repository/wiki\"] = { // 仓库 - wiki 页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // wiki 页面  /<user-name>/<repo-name>/wiki\n            // [/Welcome to the ([^ ]+) wiki!/, \"欢迎访问 $1 的 Wiki\"], // wiki页面\n            \"You do not have permission to update this wiki.\": \"您无权更新此 wiki。\",\n            \"Wikis provide a place in your repository to lay out the roadmap of your project, show the current status, and document software better, together.\": \"Wiki 为您的仓库提供了一个更好的文档资料。\",\n            \"Create the first page\": \"创建第一个页面\",\n\n            // [/edited this page/, \"编辑此页\"], // wiki\n            // [/(\\d+) revisions?/, \"$1 次修订\"], // wiki\n            \"New page\": \"新建页面\",\n            \"Add a custom footer\": \"添加自定义页脚\",\n\n            // 右侧栏\n            \"Pages\": \"页面\",\n                \"Toggle table of contents\": \"折叠/展开目录\",\n                \"Find a page…\": \"搜索页面…\",\n            \"Add a custom sidebar\": \"添加自定义侧边栏\",\n            \"Clone this wiki locally\": \"在本地克隆这个 Wiki\",\n\n            \"Last updated\": \"最后更新\",\n\n        // 新建 wiki 页面 /<user-name>/<repo-name>/wiki/_new\n            \"Create new page\": \"创建新页面\",\n            \"Title\": \"标题\",\n            \"Write\": \"编辑\",\n            \"Preview\": \"预览\",\n            \"Edit mode:\": \"标记语言：\",\n            \"Edit message\": \"提交信息\",\n\n            \"Write a small message here explaining this change. (Optional)\": \"请简要描述所作修改(可选)\",\n            \"Save page\": \"保存页面\",\n            // 顶部提醒\n                \"Your Wiki was created.\": \"您的 Wiki 已创建。\",\n\n        // 编辑 wiki 页面 /<user-name>/<repo-name>/wiki/<page name>/_edit\n            // [/Editing/, \"编辑\"], //编辑 wiki\n            \"Page history\": \"页面历史\",\n            \"Delete page\": \"删除页面\",\n                \"Are you sure you want to delete this page?\": \"您确定要删除此页面吗？\",\n\n            \"Someone has edited the wiki since you started. Please reload this page and re-apply your changes.\": \"此页面已被其他用户修改。请重新加载此页面并重新应用您的更改。\",\n\n            // 顶部提醒\n                \"The wiki page was successfully deleted.\": \"Wiki 页面已成功删除。\",\n\n        // wiki页面历史 /<user-name>/<repo-name>/wiki/<page name>/_history\n            \"History\": \"历史\",\n            \"Edit page\": \"编辑页面\",\n            \"Revisions\": \"修订\",\n            \"Compare revisions\": \"对比修订\",\n                \"Invalid or empty diff.\": \"无效或无差异。\",\n\n        // wiki修订间差异 /<user-name>/<repo-name>/wiki/<page name>/_compare\n            \"Revert changes\": \"撤销更改\",\n            \"Back to top\": \"回到顶部\",\n            \"Showing\": \"显示\",\n            \"with\": \"包含\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            // 差异按钮\n                \"Display the source diff\": \"显示源差异\",\n                \"Display the rich diff\": \"显示富差异\",\n            // 修改的文件 右侧下拉\n                \"Show comments\": \"显示评论\",\n                \"Show annotations\": \"显示注释\",\n                \"View file\": \"查看文件\",\n                \"Edit file\": \"编辑文件\",\n                \"Delete file\": \"删除文件\",\n\n        // wiki 编辑器（补全未翻译部分\n            // 工具栏\n                \"Header 1\": \"1 级标题\",\n                \"Header 2\": \"2 级标题\",\n                \"Header 3\": \"3 级标题\",\n\n                \"Image\": \"图片\",\n                    \"Insert Image\": \"插入图片\",\n                        \"Image URL\": \"图片 URL\",\n                        \"Alt Text\": \"文本\",\n\n                \"Unordered List\": \"无序列表\",\n                \"Ordered List\": \"有序列表\",\n                \"Blockquote\": \"整段引用\",\n                \"Horizontal Rule\": \"水平规则\",\n\n                \"Help\": \"帮助\",\n                    \"Block Elements\": \"段落元素\",\n                        \"Paragraphs & Breaks\": \"图表 & 段落\",\n                            \"To create a paragraph, simply create a block of text that is not separated by one or more blank lines. Blocks of text separated by one or more blank lines will be parsed as paragraphs.\": \"要创建一个段落，只需创建一个没有一个或多个空行分隔的文本块即可。被一个或多个空行分隔的文本块将被解析为段落。\",\n                            \"If you want to create a line break, end a line with two or more spaces, then hit Return/Enter.\": \"如果要创建换行符，请在行尾空两格或更多格，然后按 Return/Enter 键。\",\n                        \"Headers\": \"标题\",\n                            // Markdown 支持两种标题格式。维基编辑器使用“atx”样式的标题。只需在标题文本前加上 # 字符数即可指定标题深度。例如：# 1 级标题，## 2 级标题 和 ### 3 级标题 的标题将逐渐变小。您可以用任意数量的#号结束标题。\n                            \"Markdown supports two header formats. The wiki editor uses the “atx”-style headers. Simply prefix your header text with the number of\": \"Markdown 支持两种标题格式。维基编辑器使用“atx”样式的标题。只需在标题文本前加上\",\n                            \"characters to specify heading depth. For example:\": \"字符数即可指定标题深度。例如：\",\n                            \"will be progressively smaller headers. You may end your headers with any number of hashes.\": \"的标题将逐渐变小。您可以用任意数量的#号结束标题。\",\n                        \"Blockquotes\": \"整段引用\",\n                            // Markdown 通过在每行前加上 > 来创建电子邮件风格的 “楷体引号”。如果您决定硬包文本并在每行前加上 > 字符，这种方法看起来效果最好，但 Markdown 也支持在段落前加上 >。\n                                \"Markdown creates blockquotes email-style by prefixing each line with the\": \"Markdown 通过在每行前加上\",\n                                \". This looks best if you decide to hard-wrap text and prefix each line with a\": \"来创建电子邮件风格的 “楷体引号”。如果您决定硬包文本并在每行前加上\",\n                                \"character, but Markdown supports just putting\": \"字符，这种方法看起来效果最好，但 Markdown 也支持在段落前加上\",\n                                \"before your paragraph.\": \"。\",\n                        // 清单\n                            // Markdown 支持有序和无序列表。要创建有序列表，只需在每行前加上一个数字（任何数字都可以，这就是编辑器只使用一个数字的原因）。要创建无序列表，可以在每行前加上 *、+ 或 -。\n                                \"Markdown supports both ordered and unordered lists. To create an ordered list, simply prefix each line with a number (any number will do — this is why the editor only uses one number.) To create an unordered list, you can prefix each line with\": \"Markdown 支持有序和无序列表。要创建有序列表，只需在每行前加上一个数字（任何数字都可以，这就是编辑器只使用一个数字的原因）。要创建无序列表，可以在每行前加上\",\n                                \"or\": \"或\",\n                            // 列表项可以包含多个段落，但每个段落必须缩进至少 4 个空格或一个制表符。\n                                \"List items can contain multiple paragraphs, however each paragraph must be indented by at least 4 spaces or a tab.\": \"列表项可以包含多个段落，但每个段落必须缩进至少 4 个空格或一个制表符。\",\n                        \"Code Blocks\": \"代码块\",\n                            \"Markdown wraps code blocks in pre-formatted tags to preserve indentation in your code blocks. To create a code block, indent the entire block by at least 4 spaces or one tab. Markdown will strip the extra indentation you’ve added to the code block.\": \"Markdown 将代码块封装在预设格式的标签中，以保留代码块的缩进。要创建代码块，请将整个代码块缩进至少 4 个空格或一个制表符。Markdown 会去掉您添加到代码块中的额外缩进。\",\n                        \"Horizontal Rules\": \"水平规则\",\n                            \"Horizontal rules are created by placing three or more hyphens, asterisks or underscores on a line by themselves. Spaces are allowed between the hyphens, asterisks or underscores.\": \"横线规则是将三个或三个以上的连字符、星号或下划线单独放在一行中。连字符、星号或下划线之间允许有空格。\",\n                    \"Span Elements\": \"引用元素\",\n                        \"Links\": \"链接\",\n                            // Markdown 有两种链接类型：内联和引用。对于这两种类型的链接，您希望向用户显示的文本都放在方括号中。例如，如果您想让链接显示文本 “GitHub”，您可以写成 [GitHub]。\n                                \"Markdown has two types of links:\": \"Markdown 有两种链接类型：\",\n                                \"inline\": \"内联\",\n                                \"reference\": \"引用\",\n                                \". For both types of links, the text you want to display to the user is placed in square brackets. For example, if you want your link to display the text “GitHub”, you write\": \"。对于这两种类型的链接，您希望向用户显示的文本都放在方括号中。例如，如果您想让链接显示文本 “GitHub”，您可以写成\",\n                            // 要创建内嵌链接，请在括号后创建一组括号，并在括号内写入 URL。(例如，[GitHub](https://github.com/)）。内联链接允许使用相对路径。\n                                \"To create an inline link, create a set of parentheses immediately after the brackets and write your URL within the parentheses. (e.g.,\": \"要创建内嵌链接，请在括号后创建一组括号，并在括号内写入 URL。(例如，\",\n                                \"). Relative paths are allowed in inline links.\": \"）。内联链接允许使用相对路径。\",\n                            // 要创建引用链接，请使用两组方括号。[[我的内部链接|内部引用]]将链接到内部引用。\n                                \"To create a reference link, use two sets of square brackets.\": \"要创建引用链接，请使用两组方括号。\",\n                                \"will link to the internal reference\": \"将链接到\",\n                        \"Emphasis\": \"强调\",\n                            // 星号（*）和下划线（_）被视为强调，并用 `<em>` 标签包裹，这在大多数浏览器中通常显示为斜体。双星号（**）或双下划线（__）被视为使用 `<strong>` 标签的粗体。要创建斜体或粗体文本，只需用单个/双个星号/下划线包裹您的单词。例如，**我的双重强调文本** 变成我的双重强调文本，*我的单一强调文本* 变成我的单一强调文本。\n                                \"Asterisks (\": \"星号（\",\n                                \") and underscores (\": \"）和下划线（\",\n                                \") are treated as emphasis and are wrapped with an\": \"）被视为强调，并用\",\n                                \"tag, which usually displays as italics in most browsers. Double asterisks (\": \"标签包裹，这在大多数浏览器中通常显示为斜体。双星号（\",\n                                \") or double underscores (\": \"）或双下划线（\",\n                                \") are treated as bold using the\": \"）被视为使用\",\n                                \"tag. To create italic or bold text, simply wrap your words in single/double asterisks/underscores. For example,\": \"标签的粗体。要创建斜体或粗体文本，只需用单个/双个星号/下划线包裹您的单词。例如，\",\n                                \"becomes\": \"变成\",\n                                \", and\": \"，\",\n                        // 代码\n                            // 要创建内联代码，只需用反标 (`) 将代码包起来即可。Markdown 会将 `myFunction` 变成 myFunction。\n                                \"To create inline spans of code, simply wrap the code in backticks (\": \"要创建内联代码，只需用反标\",\n                                \"). Markdown will turn\": \") 将代码包起来即可。Markdown 会将\",\n                                \"into\": \"变成\",\n                        \"Images\": \"图片\",\n                            // Markdown 的图像语法与链接语法很相似；基本上是相同的语法，前面加上一个感叹号（!）。例如，如果您想链接到 https://github.com/unicorn.png 网站上的图片，并使用另一文本 “我的独角兽”，您可以写成 ![My Unicorn](https://github.com/unicorn.png)。\n                            \"Markdown image syntax looks a lot like the syntax for links; it is essentially the same syntax preceded by an exclamation point (\": \"Markdown 的图像语法与链接语法很相似；基本上是相同的语法，前面加上一个感叹号（\",\n                            \"). For example, if you want to link to an image at\": \"）。例如，如果您想链接到\",\n                            \"with the alternate text\": \"网站上的图片，并使用另一文本\",\n                            \", you would write\": \"，您可以写成\",\n                    \"Miscellaneous\": \"杂项\",\n                        \"Automatic Links\": \"自动链接\",\n                            // 如果您想创建一个能显示实际 URL 的链接，markdown 允许您用 < 和 > 来快速封装 URL。例如，只要写入 <https://github.com/>，就能轻松创建 https://github.com/ 链接。\n                            \"If you want to create a link that displays the actual URL, markdown allows you to quickly wrap the URL in\": \"如果您想创建一个能显示实际 URL 的链接，markdown 允许您用\",\n                            \"to do so. For example, the link\": \"来快速封装 URL。例如，创建链接\",\n                            \"is easily produced by writing\": \"只需写入\",\n                        \"Escaping\": \"忽略\",\n                            \"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\": \"如果您想在文档中使用特殊的 Markdown 字符（例如显示星号），可以用反斜杠 (\",\n                            \"). Markdown will ignore the character directly after a backslash.\": \") 来转义该字符。Markdown 将忽略反斜线后的字符。\",\n                            //\"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\\). Markdown will ignore the character directly after a backslash.\": \"如果您想在文档中使用特殊的 Markdown 字符（例如显示星号），可以用反斜杠 (\\) 来转义该字符。Markdown 将忽略反斜线后的字符。\",\n\n            // 底部\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通过拖放、选择或粘贴来添加文件。\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 创建样式\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Welcome to the ([^ ]+) wiki!/, \"欢迎访问 $1 的 Wiki\"], // wiki页面\n        [/edited this page/, \"编辑此页\"], // wiki\n        [/(\\d+) revisions?/, \"$1 次修订\"], // wiki\n        [/Editing/, \"编辑\"], //编辑 wiki\n        [/Could not find version \"([^ ]+)\"/, \"找不到版本 “$1”\"],\n        [/Compare:/, \"对比：\"],\n        [/(\\d+) additions?/, \"$1 处增加\"],\n        [/(\\d+) deletions?/, \"$1 处删除\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/branches\"] = { // 仓库 - 分支页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 分支页面 branches  /<user-name>/<repo-name>/branches\n            // 标签卡栏\n            \"Overview\": \"概况\",\n            \"Yours\": \"您的\",\n            \"Active\": \"活跃的\",\n            \"Stale\": \"陈旧的\",\n            \"All branches\": \"所有分支\",\n            \"All\": \"所有\",\n            \"branches\": \"分支\",\n            \"New branch\": \"新建分支\",\n                // 创建分支对话框\n                \"Branch source\": \"源分支\",\n                    \"Choose from this fork or its upstream repository.\": \"从此复刻或其上游仓库中进行选择。\",\n                    \"Choose a source branch\": \"选择源分支\",\n                \"Share feedback\": \"分享反馈\",\n            \"Search branches…\": \"搜索分支…\",\n            \"Copy branch name to clipboard\": \"复制分支名到剪切板\",\n\n            \"Default branch\": \"默认分支\",\n            \"Switch default branch\": \"切换默认分支\",\n            \"View branch activity\": \"查看分支活动\",\n            \"Default\": \"默认\",\n\n            // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"],\n            \"Your\": \"您的\",\n            \"branch isn't protected\": \"分支不受保护\",\n            \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保护此分支不被强制推送或删除，或在合并之前要求状态检查。\",\n            \"Dismiss\": \"驳回\",\n            \"Protect this branch\": \"保护该分支\",\n\n            \"Updated\": \"更新于\",\n            \"New pull request\": \"发起拉取请求\",\n\n                // 重命名分支对话框\n                \"Rename default branch\": \"重命名默认分支\", // 重命名默认分支 标题\n                \"Rename this branch\": \"重命名分支\", // 重命名其他分支 标题\n                \"Rename\": \"重命名\",\n                \"to:\": \"为：\",\n                \"Most projects name the default branch\": \"大多数项目将默认分支名为\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 该分支存在来自其他分支的拉取请求时\n                        \"Will update\": \"将更新\",\n                        \"pull request targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"pull\": \"条拉取请求\",\n                        \"request\": \" \",\n                        \"targeting this\": \"针对\",\n                        \"branch.\": \"该分支。\",\n                        \"branch protection rule that explicitly targets\": \"条分支保护规则明确针对\",\n\n                    // 该分支存在用于其他分支的拉取请求时\n                        \"Will close\": \"将关闭\",\n                        \"open pull request for this branch.\": \"个该分支的拉取请求。\",\n                        \"open pull\": \"个打开的拉取请求\",\n                        \"for this branch.\": \"针对该分支。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"将取消当前发布的 GitHub Pages 站点。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您当前的 GitHub Pages 站点将被取消发布。重命名分支上的新提交将再次发布 GitHub Pages 站点。\",\n\n                    \"Will not update your members' local environments.\": \"不会更新您成员的本地环境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不会更新您成员的本地环境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成员将不得不手动更新他们的本地环境。我们会在他们访问仓库时通知他们，或者您可以共享以下命令。\",\n\n                \"Rename branch\": \"重命名分支\",\n                \"Saving…\": \"保存中…\",\n\n                \"Deleted\": \"已删除\",\n                // 删除分支后\n                \"Restore\": \"还原\",\n                \"Deleted just now by\": \"刚刚被删除\",\n\n                // 删除对话框 仅当该分支存在拉取请求\n                \"The branch\": \"分支\",\n                // [/is associated with (\\d+) open pull requests?:/, \"与 $1 个拉取请求相关联：\"], // 分支页面\n                \"is associated with an open pull request:\": \"与 1 个拉取请求相关联：\", // 分支页面\n                \"If you delete this branch, the pull request will be closed.\": \"如果您删除此分支，则拉取请求将被关闭。\",\n                \"Are you sure you want to delete this branch?\": \"您确定要删除此分支吗？\",\n\n                // 顶部提醒\n                // [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 将很快重命名为 $2。\"], //分支重命名成功\n\n            \"Your branches\": \"您的分支\",\n            \"You haven’t pushed any branches to this repository.\": \"您没有推送任何分支到该仓库。\",\n            \"Active branches\": \"活跃的分支\",\n            \"There aren’t any active branches.\": \"没有任何活跃的分支。\",\n            \"Stale branches\": \"陈旧的分支\",\n            \"There aren’t any stale branches.\": \"没有任何陈旧的分支。\",\n            \"View more active branches\": \"查看更多活跃的分支\",\n            \"View more stale branches\": \"查看更多陈旧的分支\",\n\n            // [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"领先 $1 个提交，落后 $2 个提交于 $3\"],\n\n            // 新版分支视图\n                // 创建分支对话框\n                \"Create a branch\": \"创建分支\",\n                    \"New branch name\": \"新分支名称\",\n                    \"Source\": \"源分支\",\n                        \"Switch branches\": \"切换分支\",\n                        \"Find a branch...\": \"查找分支…\",\n                        \"default\": \"默认\",\n                    \"Create new branch\": \"创建新分支\",\n\n                \"Search branches...\": \"搜索分支…\",\n\n                // 无匹配结果\n                    \"No branches\": \"没有分支\",\n                    \"No branches match the search\": \"没有符合搜索条件的分支\",\n\n                \"Check status\": \"检查状态\",\n                \"Behind\": \"落后\",\n                \"Ahead\": \"领先\",\n                \"Pull request\": \"拉取请求\",\n\n                \"Copy branch name to clipboard\": \"将分支名称复制到剪贴板\",\n                \"This branch is protected by branch protections\": \"该分支受分支保护的保护\",\n\n                \"Branch menu\": \"分支菜单\",\n                    \"Activity\": \"活动\",\n                    \"View rules\": \"查看规则\",\n                        \"There are no rulesets associated with this branch.\": \"该分支没有相关的规则集。\",\n\n                \"View more branches\": \"查看更多分支\",\n\n                // 底部提醒\n                    \"You can't delete this protected branch.\": \"您无法删除此受保护分支。\",\n                    \"You can't delete the default branch.\": \"您不能删除默认分支。\",\n                    \"Branch could not be deleted.\": \"不能删除分支。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"],\n        [/Rename default branch/, \"重命名默认分支\"],\n        [/Rename branch/, \"重命名分支\"],\n        [/Your branch name will be ([^ ]+)/, \"分支将重命名为 $1\"],\n        [/Delete branch/, \"删除分支\"],\n        // [/is associated with (\\d+) open pull requests?:/, \"与 $1 个拉取请求相关联：\"],\n        [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 将很快重命名为 $2。\"], //分支重命名成功\n        [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"领先 $1 个提交，落后 $2 个提交于 $3\"],\n        [/(\\d+) commits? behind ([^ ]+)/, \"落后 $1 个提交于 $2\"],\n        [/(\\d+) commits? ahead ([^ ]+)/, \"领先 $1 个提交于 $2\"],\n        [/Ahead behind count: (\\d+)/, \"领先落后数：$1\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"a[data-target='branch-filter.allFilter']\", \"所有分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Branches/, \"分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/activity\"] = { // 仓库 - 活动页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 活动页面 /<user-name>/<repo-name>/activity\n            \"Activity\": \"活动\",\n\n            \"All branches\": \"所有分支\",\n                \"Switch branches\": \"切换分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Branches\": \"分支\",\n                \"default\": \"默认\",\n                \"View activity for all branches\": \"查看所有分支的活动\",\n\n            \"All activity\": \"所有活动\",\n                \"Direct pushes\": \"直接推送\",\n                \"Pull request merges\": \"拉取请求合并\",\n                \"Merge queue merges\": \"合并队列合并\",\n                \"Force pushes\": \"强制推送\",\n                \"Branch creations\": \"创建分支\",\n                \"Branch deletions\": \"删除分支\",\n\n            \"All users\": \"所有用户\",\n                \"Find a user...\": \"查找用户…\",\n                \"View activity for all users\": \"查看所有用户的活动\",\n\n            \"All time\": \"所有时间\",\n                \"Last 24 hours\": \"过去 24 小时\",\n                \"Last week\": \"上星期\",\n                \"Last month\": \"上个月\",\n                \"Last quarter\": \"上季度\",\n                \"Last year\": \"去年\",\n\n\n            \"Showing oldest first\": \"显示最早的\",\n            \"Showing most recent first\": \"显示最近的\",\n\n            \"Compare changes\": \"比较变更\",\n            \"Restore Branch\": \"恢复分支\",\n\n            \"Previous\": \"上一页\",\n            \"Next\": \"下一页\",\n\n            \"Direct push\": \"直接推送\",\n            \"Pull request merge\": \"拉取请求合并\",\n            \"Force push\": \"强制推送\",\n            \"Branch creation\": \"创建分支\",\n            \"Branch deletion\": \"删除分支\",\n\n            \"force pushed to\": \"强制推送到\",\n            \"deleted\": \"删除\",\n\n            \"Share feedback about this page\": \"分享关于此页面的反馈\",\n\n        // 活动页面 - 指定分支 /<user-name>/<repo-name>/activity?ref=<branch-name>\n            \"created this branch\": \"创建此分支\",\n            \"deleted this branch\": \"删除此分支\",\n            \"force pushed\": \"强制推送\",\n\n            \"No activity matched your search.\": \"没有与您搜索相匹配的活动。\",\n            \"Try expanding your search by selecting a different branch, activity type, user, or timeframe.\": \"尝试通过选择不同的分支、活动类型、用户或时间范围来扩大搜索范围。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/pushed (\\d+) commits? to/, \"推送 $1 个提交到\"],\n        [/pushed (\\d+) commits?/, \"推送 $1 个提交\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/releases\"] = { // 仓库 - 发行版页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 发行版 页面 /<user-name>/<repo-name>/releases\n            \"Releases\": \"发行版\",\n            // 无发行版时\n            \"There aren’t any releases here\": \"没有任何发行版\",\n            \"You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in\": \"您可以创建一个发行版来打包软件，以及发行说明和二进制文件链接，供其他人使用。了解更多关于发行版的信息，查看\",\n            \"our docs\": \"文档\",\n            \"Releases are powered by\": \"发行版是指通过对仓库中\",\n            \"tagging specific points of history\": \"特定历史点\",\n            \"in a repository. They’re great for marking release points like\": \"进行标记来发布。用于发布的版本号类似\",\n            \"Create a new release\": \"创建发行版\",\n\n            // 有发行版时\n            \"Draft a new release\": \"起草发行版\",\n            \"Find a release\": \"搜索发行版\",\n\n                // 搜索未找到\n                \"No releases found\": \"无匹配结果\",\n            // 左侧栏\n            \"Pre-release\": \"预发行版\",\n            \"Latest\": \"最新发行版\",\n            \"Draft\": \"草案\",\n\n            \"Compare\": \"对比\",\n                \"Choose a tag to compare\": \"选择标签进行比较\",\n                \"Find a tag\": \"搜索标签\",\n                \"View all tags\": \"查看全部标签\",\n\n            \"Read more\": \"阅读更多内容\",\n            \"Contributors\": \"贡献者\",\n            \"Assets\": \"资源\",\n            // [/Show all (\\d+) assets?/, \"显示所有 $1 个资产？\"],\n\n            \"Join discussion\": \"加入讨论\",\n\n            // [/Edit: (.*)/, \"编辑：$1\"],\n            // [/Delete: (.*)/, \"删除：$1\"],\n\n        // 发行版 标签卡 /<user-name>/<repo-name>/tags\n            \"Create release\": \"创建发行版\",\n            \"Edit release\": \"编辑发行版\",\n\n            \"Toggle commit message\": \"显示/隐藏提交消息\",\n\n            \"Notes\": \"说明\",\n            \"Downloads\": \"下载\",\n\n            \"Delete tag\": \"删除标签\",\n                // 删除标签 对话框\n                    \"Delete this tag?\": \"删除此标签？\",\n                    \"This will delete the information for the tag\": \"这将删除标签信息\",\n                    \"and cannot be undone.\": \"而且无法撤销。\",\n                    \"Delete this tag\": \"删除此标签\",\n\n        // 某个发行版标签 /<user-name>/<repo-name>/releases/tag/<tag>\n            // 不存在发行版时\n            // \"Create release\": \"创建发行版\",\n            \"from tag\": \"来自该标签\",\n            // \"Edit\": \"编辑\",\n            \"release\": \"发行版\",\n\n            // \"Read release notes\": \"阅读发布说明\",\n            // 状态词\n            \"released this\": \"发布于\",\n            \"tagged this\": \"标记了\",\n            \"drafted this\": \"起草了\",\n\n            // 删除标签对话框\n            \"Delete tag?\": \"删除标签？\",\n            \"This will delete the information for this tag and cannot be undone.\": \"将删除该标签的所有信息，并且无法撤消。\",\n            \"I understand, delete this tag\": \"我明白了，依然删除该标签\",\n\n            // 存在发行版时\n            // 15 commits to master since this release\n\n            \"Delete release\": \"删除发行版\",\n            // 删除发行版对话框\n            \"Delete this release?\": \"删除该发行版？\",\n            // \"This will delete the information for this release.\": \"这将会删除该发行版的信息。\",\n                \"This will delete the information for the release\": \"这将删除该发行版信息：\",\n            \"Delete this release\": \"删除发行版\",\n\n            // 顶部提醒框\n            \"Your tag was removed\": \"您的标签已删除\",\n            \"Your release was removed\": \"您的发行版已删除\",\n\n        // 创建发行版 /releases/new 和 编辑发行版 /releases/edit/<tag>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 提醒条\n            \"This is a draft and won’t be seen by the public unless it’s published.\": \"这是一个草案，除非发布，否则不会被公众看到。\",\n            \"This is a draft and won’t be seen by the public unless it is published\": \"这是一个草案，除非发布，否则不会被公众看到。\",\n            \"Discard draft\": \"丢弃草案\",\n\n            \"New Release\": \"新建发行版\", // 上方\n            \"New release\": \"新建发行版\", // 下方\n\n            \"Release notes\": \"发行版说明\",\n                \"Select a previous tag to create generated release notes\": \"选择一个先前的标签以生成发行说明\",\n\n            \"Choose a tag\": \"选择标签\",\n                \"Find or create a new tag\": \"查找或创建新标签\",\n                \"Search or create a new tag\": \"查找或新建标签\",\n            \"Tag:\": \"标签：\",\n                \"Select tag\": \"选择标签\",\n                \"Create new tag\": \"新建标签\",\n            \"Target:\": \"目标：\",\n                \"Pick a branch or recent commit\": \"选择分支或最近的提交\",\n                \"Filter branches…\": \"筛选分支…\",\n                \"Filter recent commits…\": \"筛选最近提交…\",\n                \"Recent Commits\": \"最近提交…\",\n            \"Choose an existing tag, or create a new tag on publish\": \"选择现有的标签，或在发布时创建新标签\",\n            \"Choose an existing tag, or create a new tag when you publish this release.\": \"选择现有的标签，或在您发布这个版本时，创建新标签。\",\n\n            \"Loading tag information…\": \"载入标签信息…\",\n            // 在筛选标签框输入 标签时\n            \"Create new tag:\": \"创建新标签：\",\n            \"on publish\": \"发布时\",\n            // 输入结果\n            \"Duplicate tag name\": \"重复的标签名\",\n                \"This tag already has release notes. Would you like to\": \"这个标签已经有发行说明。您是否愿意\",\n                \"edit them?\": \"编辑它们？\",\n                \"edit the existing notes\": \"编辑现有注释\",\n                \"Existing tag\": \"已存在的标签\",\n            \"Invalid tag name\": \"无效的标签名\",\n                \"We weren’t able to create the release for you. Make sure you have a valid tag.\": \"我们无法为您创建发行版。请确保您有一个有效的标签。\",\n                \"There was an error creating your Release: tag name can't be blank, tag name is not well-formed, published releases must have a valid tag.\": \"创建发行版时出错：标签名称不能为空，标签名称格式不正确，已发布的发行版必须有一个有效的标签。\",\n                \"We can’t create a tag with this name. Take a look at the suggestions in the sidebar for example tag names.\": \"我们不能用这个名字创建标签。看看侧边栏的建议，看看标签名称的例子。\",\n            \"Excellent! This tag will be created from the target when you publish this release.\": \"优秀! 当您发布这个版本时，这个标签将从目标创建。\",\n\n            \"Release title\": \"发行版标题\",\n\n            \"Previous tag:\": \"上一个标签：\",\n            \"Previous tag\": \"上一个标签\",\n                \"Auto\": \"自动\",\n                \"auto\": \"自动\",\n                \"Select previous tag to compare\": \"选择上一个标签进行比较\",\n                    \"Find previous tag\": \"筛选上一个标签\",\n            \"Generate release notes\": \"生成发行版说明\",\n                \"Select a valid tag to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"选择一个有效的标签，以自动为该差异中的所有合并拉取请求和该版本的贡献者添加至 Markdown 说明\",\n                \"Automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"自动为来自此差异和此发行版贡献者的所有已合并拉取请求，添加 Markdown 说明。\",\n                \"Clear existing notes to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"清除现有的注释，以自动添加来自此差异和此版本贡献者的所有合并的拉取请求的标记。\",\n\n                \"There were no pull requests associated with the commits included in this release.\": \"此版本中没有与提交相关的拉取请求。\",\n\n            \"Describe this release\": \"描述此发行版\",\n\n            // 编辑器按钮(老版)\n                \"Add heading text\": \"添加标题文本\",\n                \"Add bold text, <Ctrl+b>\": \"添加粗体文本 <Ctrl+b>\",\n                \"Add italic text, <Ctrl+i>\": \"添加斜体文本 <Ctrl+i>\",\n                \"Add a quote, <Ctrl+Shift+.>\": \"添加引用 <Ctrl+Shift+.>\",\n                \"Add code, <Ctrl+e>\": \"添加代码 <Ctrl+e>\",\n                \"Add a link, <Ctrl+k>\": \"添加链接 <Ctrl+k>\",\n                \"Add a bulleted list, <Ctrl+Shift+8>\": \"添加无序列表 <Ctrl+Shift+8>\",\n                \"Add a numbered list, <Ctrl+Shift+7>\": \"添加有序列表 <Ctrl+Shift+7>\",\n                \"Add a task list, <Ctrl+Shift+l>\": \"添加任务列表 <Ctrl+Shift+l>\",\n                \"Directly mention a user or team\": \"直接提及用户或团队\",\n                \"Reference an issue, pull request or discussion\": \"引用议题，拉取请求或讨论\",\n                \"Add saved reply\": \"添加快捷回复\",\n                    \"Select a reply\": \"选择回复\",\n                        \"Filter saved replies\": \"筛选快捷回复\",\n                        \"Create a new saved reply\": \"创建新快捷回复\",\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通过拖拽、选择或粘贴来附加文件。\",\n\n            // 附加文件\n            \"Attach binaries by dropping them here or selecting them.\": \"拖拽文件到这来或选择它们来附加文件。\",\n            \"Uploading your release now…\": \"正在上传到您的发行版…\",\n            \"Uploading your file now…\": \"正在上传您的文件…\",\n            \"An attachment with that filename already exists.\": \"同名附件已经存在。\",\n            \"Try a different file.\": \"请尝试不同的文件。\",\n            \"We don’t support that file type.  try zipping it.\": \"我们不支持该文件类型，请尝试压缩它。\",\n            \"Try another file.\": \"请尝试另一个文件。\",\n            \"Yowza, that’s a big file.\": \"哟，这可是个大文件。\",\n            \"Try again\": \"请尝试\",\n            \"With a file smaller than 2GB.\": \"一个小于 2GB 的文件。\",\n            \"This file is empty.\": \"这是一个空文件。\",\n            \"with a file that’s not empty.\": \"一个非空的文件。\",\n            \"Something went really wrong, and we can’t process that file.\": \"确实出了点问题，我们无法处理该文件。\",\n            \"Try again.\": \"请重试。\",\n\n            // \"Delete and try uploading this file again.\": \"删除并重新上传。\",\n            \"Upload failed. Delete and try uploading this file again.\": \"上传失败。请删除并重新上传。\",\n            \"will be deleted\": \"将被删除\",\n            \"Remove\": \"删除\",\n            \"Undo\": \"撤销\",\n\n            \"Set as a pre-release\": \"设置为预发布版本\",\n                \"This release is labeled as non-production ready.\": \"此版本标记为非正式版本。\",\n                \"This release will be labeled as non-production ready\": \"此版本将被标记为非正式版本。\",\n            \"Create a discussion for this release\": \"为此版本创建讨论\",\n                \"People will be able to leave comments and reactions on this release using Discussions.\": \"人们将能够使用“讨论”对此版本发表评论和反应。\",\n                        \"Category:\": \"类别：\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"问与答\",\n                            \"Show and tell\": \"展示与讲述\",\n            \"Set as the latest release\": \"设置为最新版本\", //edit\n                \"This release is labeled as the latest for this repository.\": \"此版本将被标记为此仓库的最新版本。\",\n                \"This release will be labeled as the latest for this repository.\": \"此版本将被标记为此仓库的最新版本。\",\n\n            \"Publish release\": \"发布发行版\",\n                \"Publishing…\": \"发布中…\",\n            \"Update release\": \"更新发行版\",\n                \"Saving release…\": \"保存中…\",\n            \"Save draft\": \"保存草案\",\n            \"Saved!\": \"已保存\",\n            \"Saving draft failed. Try again?\": \"保存草案失败。请重试？\",\n\n            // 丢弃草案 对话框\n            \"Are you sure?\": \"您确定哇?\",\n            \"This will delete the information for this draft.\": \"这将会删除该草案的信息。\",\n            \"Delete this draft\": \"删除草案\",\n\n            // 右侧栏\n            \"Tagging suggestions\": \"标签建议\",\n            \"It’s common practice to prefix your version names with the letter\": \"通常的做法是在版本名称前加上字母\",\n            \". Some good tag names might be\": \"。一些好的标签名称可能是\",\n            \"If the tag isn’t meant for production use, add a pre-release version after the version name. Some good pre-release versions might be\": \"如果标签不是用于生产的，就在版本名后面加上预发布版本。一些好的预发布版本可能是\",\n\n            \"Semantic versioning\": \"语义版本管理\",\n            \"If you’re new to releasing software, we highly recommend to\": \"如果您是发布新手，我们强烈您\",\n            \"learn more about semantic versioning.\": \"了解更多关于语义版本管理的信息。\",\n\n            \"A newly published release will automatically be labeled as the latest release for this repository.\": \"新发布的版本将自动标记为该仓库的最新版本。\",\n            \"If \\'Set as the latest release\\' is unchecked, the latest release will be determined by higher semantic version and creation date.\": \"如果未选中 “设置为最新版本”，则最新版本将由更高语义版本和创建日期确定。\",\n            \"Learn more about release settings.\": \"了解更多关于发行版设置的信息。\",\n\n       // 创建 Action 发行版到市场 /releases/new?marketplace 和 编辑 /releases/edit/... >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Release Action\": \"发布 Action\",\n                \"Publish this release to the GitHub Marketplace\": \"将此版本发布到 GitHub 市场\",\n                \"You must\": \"您必须\",\n                \"accept the GitHub Marketplace Developer Agreement\": \"接受 GitHub 市场开发者协议\",\n                \"before publishing an Action.\": \"在发布之前。\",\n\n                \"Publish this Action to the GitHub Marketplace\": \"将此 Action 发布到 GitHub  市场\",\n                \"Your Action will be discoverable in the Marketplace and available in GitHub search.\": \"您的 Action 将在市场中被发现，并可在 GitHub 搜索中找到。\",\n\n                \"Your action.yml needs changes before it can be published.\": \"您的 action.yml 需要更改才能发布。\",\n                \"Everything looks good! You have all the required information.\": \"一切看起来都不错！您拥有所有必需的信息。\",\n\n                \"Name\": \"名称\",\n                    \"- Name must be unique. Cannot match an existing action, user or organization name.\": \"- 名称必须唯一。不能与现有的操作、用户或组织名称相匹配。\",\n                \"Description\": \"描述\",\n                \"Icon\": \"图标\",\n                \"Color\": \"颜色\",\n\n                \"A README exists.\": \"已经存在 README 文件。\",\n\n                \"Primary Category\": \"主要类别\",\n                    \"Choose an option\": \"请选择\",\n                \"Another Category\": \"其他分类\",\n                    \"— optional\": \"— 可选\",\n\n        // 发行版评论\n            \"No significant changes\": \"无重大变化\", // GitHub Action 生成的发行版\n\n        // 反应相关\n            \"You reacted\": \"您表达看法\",\n            \"All reactions\": \"所有看法\", // Android UA\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Show all (\\d+) assets?/, \"显示所有 $1 个资产\"],\n        [/(\\d+) commits?/, \"$1 个提交\"],\n        [/to ([^ ]+) since this release/, \"在此发行版之后进入 $1 分支\"],  // $1 分支在此发行版之后有 xxx 个提交\n        [/This will delete the information for the release ([^ ]+)./, \"这将删除发行版 $1 的信息。\"],\n        [/Toggle (.*)'s commit message/, \"切换 $1 的提交消息\"],\n        [/Edit: (.*)/, \"编辑：$1\"],\n        [/Delete: (.*)/, \"删除：$1\"],\n        [/Remove attached binary ([^ ]+)/, \"删除 $1\"],\n        [/and (\\d+) other contributors/, \"和另外 $1 个贡献者\"],\n        [/You and (\\d+) others? reacted/, \"您和另外 $1 人表达看法\"],\n        [/^([^ ]+) and ([^ ]+)/, \"$1 和 $2\"], // 发行版 - 贡献者（2位\n        [/(\\d+) (people|person) reacted/, \"$1 人表达看法\"],\n        [/There are no releases containing \\\"([^ ]+)\\\"./, \"没有发行版包含“$1”。\"],\n        [/Edit (.+)/, \"编辑 $1\"],\n        [/^([^ ]+) will be created on publish/, \"$1 将在发布时创建\"],\n        [/^([^ ]+) is used by another release/, \"$1 已存在\"], // 省略部分内容\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Releases?/, \"发行版\"],\n            [/Tags/, \"标签\"],\n            [/New release/, \"新建发行版\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/tags\"] = I18N[\"zh-CN\"][\"repository/releases\"];\n\nI18N[\"zh-CN\"][\"repository/packages\"] = { // 仓库 - 软件包页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/packages\n            \"Get started with GitHub Packages\": \"开始使用 GitHub 软件包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地发布包，将您的包与您的代码一起存储，并与您的团队私下共享您的包。\",\n             \"Choose a registry\": \"选择注册表\",\n\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用于构建基于容器的应用的软件平台——小型轻量级执行环境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用于 Java 编程语言和 Java 运行环境的一个默认包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一个自由和开源的开源包管理器，用于包括 .NET 在内的 Microsoft 开发平台。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分发用于 Ruby 编程语言的 Ruby 程序和库的标准格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一个 JavaScript 的包管理器，包含在 Node.js 中。它使开发人员能够轻松地分享和重用代码。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"为您的团队提供一个管理 Docker 镜像的单一场所，并决定谁可以看到和访问您的镜像。\",\n\n            \"Package settings\": \"软件包设置\",\n            \"Repository source\": \"仓库来源\",\n            \"This is the repository where the package's source code is stored. This is defined in the repository's package.json file using the\": \"这是软件包源代码的仓库。这是在仓库中的 package.json 文件使用字段\",\n            \"field.\": \"定义的。\",\n            \"A GitHub repository has been identified as the source for this package. This package will be displayed in this repositories package list.\": \"GitHub 仓库已被确定为该软件包的来源，该软件包将显示在此仓库的软件包列表中。\",\n            \"You have referenced a non-GitHub source for this package that cannot be verified.\": \"您引用了一个无法验证的非 GitHub 来源的软件包。\",\n            \"Manage Actions access\": \"操作访问权限管理\",\n            \"Add Repository\": \"添加仓库\",\n            \"Pick the repositories that can access this package using\": \"选择可以访问此软件包的仓库，用于\",\n            \"Role:\": \"角色:\",\n            \"Choose role\": \"选择角色\",\n            \"Change role\": \"更改角色\",\n            \"Read\": \"只读\",\n            \"Write\": \"编辑\",\n            \"Admin\": \"管理\",\n            \"Remove\": \"删除\",\n            \"Actions repository access\": \"操作仓库访问\",\n            \"Pick the repositories that can access this package using GitHub Actions.\": \"选择可以使用 GitHub Actions 访问此软件包的仓库。\",\n            \"Permissions added for selected repositories.\": \"为选定的仓库添加了权限。\",\n            \"Permissions updated for selected repositories.\": \"更新了选定仓库的权限。\",\n            \"Can upload and download this package. Can read and write package metadata.\": \"可以上传和下载此软件包，并且可以读取和写入元数据。\",\n            \"Can download this package and read package metadata.\": \"可以下载此软件包并读取元数据。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can delete and restore packages.\": \"可以上传、下载和管理此软件包，可以读取和写入元数据，可以删除和恢复此软件包。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can grant package permissions.\": \"可以上传、下载和管理此软件包，可以读取和写入元数据，可以授予软件包权限。\",\n            \"Manage Codespaces access\": \"代码空间访问管理\",\n            \"Codespaces repository access\": \"代码空间仓库访问\",\n            \"Pick the repositories that can read this package using GitHub Codespaces.\": \"选择可以使用 GitHub 代码空间 读取此软件包的仓库。\",\n            \"Pick the repositories that can read this package using\": \"选择可以读取此软件包的仓库，用于\",\n            \"Inherited access\": \"继承访问\",\n            \"Inherit access from source repository (recommended)\": \"从源仓库继承访问权限 (推荐)\",\n            \"Go to\": \"转到\",\n            \"to change access, or remove inherited access to manage it separately. Inherited access is recommended.\": \"的访问设置以更改访问权限，或删除继承的访问权限以单独管理它，建议使用继承访问权限。\",\n            \"Danger Zone\": \"危险操作\",\n            \"Change package visibility\": \"更改软件包可见性\",\n            \"This package is currently public.\": \"该软件包当前是公开的\",\n            \"This package is currently private.\": \"该软件包当前是私有的\",\n            \"Change visibility\": \"更改可见性\",\n            \"Delete this package\": \"删除软件包\",\n            \"Once you delete a package, there is no going back. Please be certain.\": \"您一旦删除了软件包，将再也无法恢复，请确认！\",\n            \"Manage access\": \"访问管理\",\n            \"Invite teams or people\": \"邀请团队或人员\",\n\n        // 仓库链接对话框\n            \"Confirm you want to unlink this repository\": \"确认您要取消与此仓库的链接\",\n            \"Yes, unlink this repository\": \"是的，取消链接此仓库\",\n\n        // 添加仓库对话框\n            \"Select repository that can access this package using GitHub actions\": \"选择可以使用 GitHub 操作访问此软件包的仓库\",\n            \"Add repositories\": \"添加仓库\",\n\n        // 删除仓库对话框\n            \"Confirm you want to remove this repository\": \"确认要删除此仓库\",\n            \"Once removed,\": \"删除后，\",\n            \"will no longer have access to the\": \"将无法再访问\",\n            \"package.\": \"软件包。\",\n\n        // 代码空间添加仓库对话框\n            \"Select repository that can access this package using GitHub codespaces\": \"选择可以使用 GitHub 代码空间访问此软件包的仓库\",\n\n        // 更改软件包可见性对话框\n            \"Make this package visible to anyone.\": \"使这个软件包对所有人都可见。\",\n            \"Make this package visible privately, to organization members that have access.\": \"仅这个软件包有权访问的组织成员可见。\",\n            \"Please type\": \"请输入\",\n            \"to confirm:\": \"进行确认：\",\n            \"I understand the consequences, change package visibility.\": \"我明白后果，依然更改软件包可见性\",\n\n        // 删除软件包对话框\n            \"Are you absolutely sure?\": \"您真的确定吗？\",\n            \"Once this package is deleted, it will no longer be accessible.\": \"一旦删除了这个软件包，您将无法再访问它。\",\n            \"This action will delete package\": \"此操作将删除软件包\",\n            \". Versions of this package will no longer be accessible, and it will not appear in searches or package listings.\": \"。此软件包的版本将不再可访问，并且不会出现在搜索结果或软件包列表中。\",\n            \"I understand the consequences, delete this package\": \"我明白后果，依然删除这个软件包\",\n\n        // 更改仓库角色对话框\n            \"Select a new role\": \"选择新角色\",\n            \"Recommended for non-code contributors who want to view or discuss your package.\": \"推荐给想要查看或讨论您的软件包的非代码贡献者。\",\n            \"Recommended for contributors who actively push to your package.\": \"推荐给积极推送代码到您的软件包的贡献者。\",\n\n        // 更改成员角色对话框\n            \"Recommended for people who need full access to the package, including sensitive and destructive actions like managing security and package visibility.\": \"建议需要完全访问软件包的人员使用，包括管理安全性和软件包可见性等敏感和破坏性操作。\",\n\n        // 访问管理删除对话框\n            \"Confirm you want to remove this user\": \"确认删除该用户\",\n\n        // 邀请团队或人员对话框\n            \"Invite teams or people to\": \"邀请团队或人员参与\",\n            \"Search by username, full name, or email\": \"搜索用户名、全名或电子邮件\"\n    },\n    \"regexp\": [\n        [/Are you sure you want to unlink (.*) from (.*)\\?/, \"您确定要取消 $1 与 $2 的链接吗？\"],\n        [/(\\d+) repositor(y|ies) selected…/, \"选中 $1 个仓库\"],\n        [/Change the role of (\\d+) repositor(y|ies)\\?/, \"更改 $1 个仓库的角色？\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members? selected…/, \"选中 $1 个成员\"],\n        [/Change the role of (\\d+) members?\\?/, \"更改 $1 个成员的角色？\"],\n        [/(\\d+) members?/, \"$1 个成员\"],\n        [/(.*)'s access settings/, \"$1 访问设置\"],\n        [/Removed access from repository (.*)\\./, \"删除了仓库 $1 的访问权限。\"],\n        [/Removed (.*) as a package collaborator\\./, \"删除了 $1 作为软件包的协作者。\"],\n\n        // 删除仓库对话框\n        [/Remove (.*) from (.*)/, \"从 $2 中删除 $1\"],\n\n        // 更改仓库角色对话框\n        [/Change (\\d+) Roles?/, \"更改 $1 个角色\"],\n    ],\n}\n\nI18N[\"zh-CN\"][\"repository/pkgs\"] = { // 仓库 - 软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/packages\"][\"static\"],\n\n        // /<user-name>/<repo-name>/pkgs/container/<pag name>\n            \"Installation\": \"安装\",\n                \"OS / Arch\": \"系统 / 架构\",\n                    \"unknown/unknown\": \"未知/未知\",\n            \"Learn more about packages\": \"了解更多关于软件包的信息\",\n            \"Learn more about npm packages\": \"了解更多关于 npm 软件包的信息\",\n            \"Install from the command line\": \"从命令行安装\",\n            \"Install from the command line:\": \"从命令行安装：\",\n            \"Install via package.json:\": \"通过 package.json 安装：\",\n            \"Use as base image in Dockerfile:\": \"在 Dockerfile 中用作基础镜像：\",\n            \"Recent tagged image versions\": \"最近被标记的映像版本\",\n            \"latest\": \"最新\",\n            \"Latest\": \"最新\",\n            // [/Published (.*) · Digest/, \"发布于 $1 · 摘要\"],\n            \"View all tagged versions\": \"查看所有被标记的版本\",\n\n            \"Details\": \"详细信息\",\n                \"stars\": \"星标\",\n            \"Readme\": \"自述文件\",\n            \"Last published\": \"最新发布\",\n            \"Total downloads\": \"总下载量\",\n            \"Start a discussion\": \"开始讨论\",\n            \"Contributors\": \"贡献者\",\n            \"Open an issue\": \"打开一个议题\",\n            \"Package settings\": \"软件包设置\",\n\n            \"Recent Versions\": \"最近版本\",\n            \"View and manage all versions\": \"查看和管理所有版本\",\n\n            \"Add a Readme to the linked repository\": \"添加一个 README 自述文件到链接的仓库\",\n            \"The linked repository's Readme will be shown here.\": \"链接仓库中的 README 自述文件将在此处显示。\",\n\n        // 全部版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/versions\n            \"All versions\": \"所有版本\",\n            // [/Published (*)/, \"发布于 $1\"],\n            // [/(\\d+) tagged/, \"$1 个标记\"],\n            // [/(\\d+) untagged/, \"$1 个未标记\"],\n\n        // 某个版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/<version id>\n            \"About this version\": \"关于这个版本\",\n            \"Manifest\": \"清单\",\n            \"No description provided\": \"未提供说明\",\n            \"This package version was published\": \"此版本软件包发布于\",\n\n            \"To provide a description, add the following line to your Dockerfile:\": \"要提供描述，请将以下行添加到您的 Dockerfile 中：\",\n            \"For multi-arch images, set a value for the\": \"对于多架构镜像，请设置\",\n            \"key in the\": \"值在\",\n            \"field of the manifest:\": \"字段：\",\n            \"Learn more about labelling container images\": \"了解更多关于标记容器镜像的信息\",\n\n            \"Download activity\": \"下载活动\",\n                \"Download activity of this version\": \"此版本的下载活动\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last week\": \"最近一周\",\n            \"Today\": \"今天\",\n\n            \"Other tags on this version\": \"此版本的其他标签\",\n            \"View all versions\": \"查看全部版本\",\n\n        // 版本删除对话框\n            \"Are you absolutely sure?\": \"您真的确定吗？\",\n            \"This cannot be undone. This will permanently delete the version\": \"这个操作不能撤销，这将永久删除版本\",\n            \"so users and processes won’t be able to download this version.\": \"，用户和程序将无法再下载该版本。\",\n            \"Please type\": \"请输入\",\n            \"to confirm:\": \"进行确认：\",\n            \"I understand the consequences, delete this version\": \"我明白后果，依然删除此版本\"\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/packages\"][\"regexp\"],\n\n        //[/Published (.*) · Digest/, \"发布于 $1 · 摘要\"],\n        [/Published (.*) · Digest/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `发布于 ${translatedDate} · 摘要`;\n        }],\n        [/Published (.*)/, \"发布于 $1\"],\n        [/(\\d+) tagged/, \"$1 个标记\"],\n        [/(\\d+) untagged/, \"$1 个未标记\"],\n        [/(\\d+) dependencies/, \"$1 个依赖包\"],\n        [/(\\d+) active/, \"$1 个可用\"],\n        [/(\\d+) deleted/, \"$1 个已删除\"],\n        [/(\\d+) contributors?/, \"$1 位贡献者\"],\n    ],\n};\nI18N[\"zh-CN\"][\"packages\"] = { // 软件包 - 未链接仓库的软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository/pkgs\"][\"static\"],\n\n        \"Link this package to a repository\": \"将此软件包链接到仓库\",\n        \"By linking to a repository, you can automatically add a Readme, link discussions, and show contributors on this page.\": \"通过链接到仓库，您可以自动添加 README 自述文件、链接讨论、在此页面上显示贡献者。\",\n        \"Connect Repository\": \"关联仓库\",\n\n        // 关联仓库对话框\n        \"Select a repository to link to this package.\": \"选择一个仓库以链接到此软件包。\"\n    },\n    \"regexp\": [  // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/pkgs\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/security\"] = { // 仓库 - 安全页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 安全标签卡 & 安全概述 /<user-name>/<repo-name>/security\n\n            // 公共部分\n            \"Reporting\": \"报告\",\n                \"Policy\": \"政策\",\n                \"Advisories\": \"咨询\",\n            \"Vulnerability alerts\": \"漏洞警报\",\n                \"Code scanning\": \"代码扫描\",\n                \"Secret scanning\": \"机密扫描\",\n\n            \"Disabled\": \"禁用\",\n            \"Enabled\": \"启用\",\n            \"Needs setup\": \"需要设置\",\n\n            \"Security overview\": \"安全概述\",\n            \"Report a vulnerability\": \"报告漏洞\",\n            \"Fork this repository and edit the file\": \"复刻此仓库并编辑文件\",\n            \"Security policy •\": \"安全政策 •\",\n                \"Define how users should report security vulnerabilities for this repository\": \"定义用户应如何报告此仓库的安全漏洞\",\n\n                \"Suggest how users should report security vulnerabilities for this repository\": \"建议用户应如何报告此仓库的安全漏洞\",\n                \"Suggest a security policy\": \"安全政策建议\",\n\n                \"View how to securely report security vulnerabilities for this repository\": \"查看如何安全地报告此仓库的安全漏洞\",\n                \"View security policy\": \"查看安全策略\",\n\n            \"Security advisories •\": \"安全公告 •\",\n                \"View or disclose security advisories for this repository\": \"查看或公开此仓库的安全公告\",\n                \"View security advisories\": \"查看安全公告\",\n                \"View security advisories for this repository\": \"查看此仓库的安全公告\",\n\n            \"Private vulnerability reporting •\": \"私下漏洞报告 •\",\n                \"Allow users to privately report potential security vulnerabilities\": \"允许用户私下报告潜在的安全漏洞\",\n                \"Enable vulnerability reporting\": \"启用漏洞报告\",\n                \"See reported vulnerabilities\": \"查看报告的漏洞\",\n\n            \"Dependabot alerts •\": \"Dependabot 警报 •\",\n                \"— Active\": \"— 激活\",\n                \"Get notified when one of your dependencies has a vulnerability\": \"当您的一个依赖项存在漏洞时得到通知\",\n                \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                \"View Dependabot alerts\": \"查看 Dependabot 警报\",\n                \"You don't have permissito enable this feature\":\"您没有启用此功能的权限。\",\n\n            \"Code scanning alerts •\": \"代码扫描警报 •\",\n                \"Automatically detect common vulnerability and coding errors\": \"自动检测常见漏洞和编码错误\",\n                \"Set up code scanning\": \"设置代码扫描\",\n                \"View alerts\": \"查看警报\",\n                // 私有库\n                \"Advanced Security is only available for Organizations\": \"高级安全只适用于组织\",\n                \"Find out more\": \"了解更多\",\n                \"Code scanning for private repositories is part of GitHub Advanced Security\": \"私有仓库的代码扫描是 GitHub 高级安全的一部分\", //组织仓库\n                \"Contact sales\": \"联系销售\", //组织仓库\n\n            \"Secret scanning alerts •\": \"机密扫描警报 •\",\n                \"Get notified when a secret is pushed to this repository\": \"当机密被推送到仓库时得到通知\",\n                \"Enable in settings\": \"在设置中启用\",\n                \"View detected secrets\": \"查看检测到的机密\",\n\n            // \"Vulnerability details\": \"漏洞详情\",\n            \"High severity\": \"高风险\",\n            \"Moderate severity\": \"中风险\",\n            \"Low severity\": \"低风险\",\n            // \"Create dependabot security update\": \"创建可靠的安全更新\",\n\n            \"Suggest a policy\": \"建议政策\",\n\n            \"Code scanning configuratierror\": \"代码扫描配置错误\",\n                \"CodeQL is reporting errors. Check the\": \"CodeQL 出错。检查\",\n                \"status page\": \"状态页\",\n                \"for help.\": \"以寻求帮助\",\n\n            \"Checking code scanning status...\": \"正在检查代码扫描状态\",\n\n        // 安全政策 /<user-name>/<repo-name>/security/policy\n            \"Set up a security policy\": \"制定安全政策\",\n            \"Help your community understand how to securely report security vulnerabilities for your project.\": \"帮助您的社区了解如何安全地报告项目的安全漏洞。\",\n            \"Start setup\": \"开始设置\",\n\n            \"No security policy detected\": \"未检测到安全策略\",\n            \"This project has not set up a\": \"该项目尚未设置\",\n            \"file yet.\": \"文件。\",\n\n        // 安全公告 /<user-name>/<repo-name>/security/advisories\n            \"Security Advisories\": \"安全公告\",\n            \"Privately discuss, fix, and publish information about security vulnerabilities in your repository's code.\": \"私人讨论，修复和发布仓库代码中的安全漏洞的信息。\",\n            \"New draft security advisory\": \"新的安全建议草案\",\n\n            // [/(\\d+) Draft/, \"$1 项草案\"],\n            // [/(\\d+) Published/, \"$1 项已发布\"],\n            // [/(\\d+) Closed/, \"$1 项已关闭\"],\n\n            \"There aren’t any triage security advisories\": \"没有任何安全建议通知\",\n            \"There aren’t any draft security advisories\": \"没有任何安全建议草案\",\n            \"There aren’t any published security advisories\": \"没有任何已发布的安全公告\",\n            \"There aren’t any closed security advisories\": \"没有任何已关闭的安全公告\",\n\n            // 他人库\n            \"View information about security vulnerabilities from this repository's maintainers.\": \"查看仓库维护者提供的安全漏洞信息。\",\n\n        // Dependabot 警报 /<user-name>/<repo-name>/security/dependabot\n            \"Dependabot alerts\": \"Dependabot 警报\",\n            \"Dependency files checked\": \"检查依赖文件\",\n\n            \"Ignore the false alarms\": \"忽略误报\",\n            \"To help you focus on the alerts that matter, Dependabot now proactively dismisses low impact alerts. These alerts may only have limited effects (e.g. long-running builds or tests) or are unlikely to be exploitable.\": \"为了帮助您专注于重要的警报，Dependabot 现在会主动消除低影响警报。这些警报可能只会产生有限的影响（例如长时间运行的构建或测试）或不太可能被利用。\",\n            \"Opt out\": \"设置\",\n            \"learn more about auto-dismissing alerts.\": \"了解更多关于自动撤消警报的信息。\",\n\n            \"Auto-triage your alerts\": \"自动分类您的警报\",\n                \"Control how Dependabot opens pull requests, ignores false positives and snoozes alerts. Rules can be enforced at the organization level. Free for open source and available for private repos through\": \"控制 Dependabot 如何打开拉取请求、忽略误报和推迟警报。规则可以在组织层面强制执行。免费供开源项目使用，私有仓库需要通过\",\n                \"GitHub Advanced Security.\": \"GitHub 高级安全性。\",\n                \"Learn more about auto-triage\": \"了解更多关于自动分类的信息\",\n\n            \"opened\": \"打开于\",\n\n            \"Dependabot alerts are disabled.\": \"Dependabot 警报已禁用。\",\n            \"To receive Dependabot alerts, you must first enable Dependabot alerts in\": \"要接收 Dependabot 警报，必须首先启用 Dependabot 警报\",\n            \"this repository’s settings\": \"在仓库的设置中\",\n\n            \"Welcome to Dependabot alerts!\": \"欢迎使用 Dependabot 警报！\",\n            \"Dependabot alerts track security vulnerabilities that apply to your repository's dependencies. As alerts are created, they’ll appear here.\": \"Dependabot 警报跟踪适用于仓库依赖项的安全漏洞。一旦创建警报后，它们将显示在此处。\",\n\n            \"Configure\": \"设置\",\n                \"Manage repository vulnerability settings\": \"管理仓库漏洞设置\",\n                \"Manage Dependabot rules\": \"管理 Dependabot 规则\",\n                \"Manage account notification settings\": \"管理账户通知设置\",\n                \"Refresh Dependabot alerts\": \"刷新 Dependabot 警报\",\n                    \"Reprocess your project's current dependency files.\": \"重新处理项目当前的依赖项文件。\",\n                    // 顶部提醒\n                        \"Refresh queued, it may take several minutes to see changes reflected in your alerts.\": \"刷新队列后，可能需要几分钟才能看到警报中反映的更改。\",\n                        \"Refreshed recently, available again in about 1 hour.\": \"最近刷新，约 1 小时后可再次使用。\",\n\n            \"Search all Dependabot alerts\": \"搜索所有 Dependabot 警报\",\n                \"- submit\": \"- 提交\",\n                \"Narrow your search\": \"缩小搜索范围\",\n                    \"fix-started, no-bandwidth, tolerable-risk, inaccurate, not-used, fixed, auto-dismissed\": \"修复启动、无带宽、可容忍风险、不准确、未使用、已修复、自动忽略\",\n                    \"critical, high, moderate, low\": \"严重、高、中、低\",\n                    \"package-name\": \"软件包名称\",\n                    \"ecosystem-name\": \"生态系统名称\",\n                    \"most-important, newest, oldest, severity, manifest-path, package-name, epss-percentage\": \"最重要、最新、最旧、严重性、清单路径、软件包名称、EPSS-百分比\",\n                    \"open, closed\": \"打开、关闭\",\n                    \"patch\": \"补丁\",\n                    \"runtime, development\": \"运行时、开发\",\n                    \"direct\": \"直接\",\n                    \"team-name\": \"团队名称\",\n                    \"topic-name\": \"主题名称\",\n                    \"CVE exploitation likelihood. `n`, `>n`, `<n`, `>=n`, `<=n`, or range `n..n`, where `n` is a number from 0.0 to 1.0\": \"CVE 被利用的可能性。`n`, `>n`, `<n`, `>=n`, `<=n` 或范围 `n...n`，其中 `n` 为 0.0 至 1.0 之间的数字\",\n                    \"manifest-name\": \"清单名称\",\n\n            // 筛选条\n                \"Closed as\": \"关闭\",\n                    \"Filter by resolution\": \"按决议筛选\",\n                    \"Clear resolution\": \"清除决议筛选\",\n                        \"A fix has already been started\": \"修复已经开始\",\n                        \"No bandwidth to fix this\": \"没有带宽来修复\",\n                        \"Risk is tolerable to this project\": \"风险可承受\",\n                        \"This alert is inaccurate or incorrect\": \"此警报不准确或不正确\",\n                        \"Vulnerable code is not actually used\": \"漏洞代码实际未使用\",\n                        \"Dismissal comment\": \"忽略评论\",\n                        \"Dismiss Alerts\": \"忽略警报\",\n                        \"Fixed\": \"已修复\",\n                        \"fixed\": \"已修复\",\n                        \"Auto-dismissed\": \"自动忽略\",\n            \"Package\": \"软件包\",\n                \"Filter by packages\": \"按软件包筛选\",\n                \"Clear package filter\": \"清除软件包筛选器\",\n                \"No results found\": \"未找到结果\",\n            \"Ecosystem\": \"生态系统\",\n                \"Filter by ecosystem\": \"按生态系统筛选\",\n                \"Clear ecosystem filter\": \"清除生态系统筛选器\",\n            \"Manifest\": \"清单\",\n                \"Filter by manifest\": \"按清单筛选\",\n                \"Clear manifest filter\": \"清除清单筛选器\",\n            \"Severity\": \"严重等级\",\n                \"Filter by severity\": \"按严重性筛选\",\n            \"Sort\": \"排序\",\n                \"Most important\": \"最重要的\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Manifest path\": \"表现路径\",\n                \"Package name\": \"包名称\",\n\n            \"selected\": \"条被选中\",\n            \"Dismiss alerts\": \"忽略警报\",\n                \"Select a reason to dismiss\": \"选择忽略理由\",\n\n            \"opened\": \"打开于\",\n\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"Clear current search filters.\": \"清除当前搜索筛选器。\",\n\n            \"ProTip!\": \"专业提示！\",\n                \"See auto-dismissed alerts with\": \"要查看自动解除的警报，请使用\",\n                \"to see alerts without an available fix.\": \"来查看没有可用修复程序的警报。\",\n                \"Find alerts on your dev dependencies using\": \"使用以下命令查找开发依赖项的警报：\",\n                \"to see alerts with calls to vulnerable functions.\": \"查看调用易受攻击函数的警报。\",\n\n         // 具体某条 Dependabot 警报 /security/dependabot/<id>\n            \"Dismiss alert\": \"忽略警报\",\n\n            \"Opened\": \"打开\",\n            // [/Upgrade ([^ ]+) to fix/, \"升级 $1 去修复\"], // 某个 Dependabot 警报\n            // [/Upgrade ([^ ]+) to version/, \"升级 $1 到版本\"], // 某个 Dependabot 警报\n            \"Create Dependabot security update\": \"创建 Dependabot 安全更新\",\n\n            // [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 无法将 $1 更新为无漏洞的版本\"],\n            \"The latest possible version that can be installed is\": \"最新可以安装版本是\",\n            \"because of the following conflicting dependency:\": \"，但是存在以下冲突的依赖项：\",\n            \"because of the following conflicting dependencies:\": \"，但是存在以下冲突的依赖项：\",\n            \"The earliest fixed version is\": \"最早修复版本为\",\n            \"Try again\": \"再试一次\",\n            \"View logs\": \"查看日志\",\n            \"about troubleshooting Dependabot errors\": \"关于排除 Dependabot 错误的信息\",\n\n            \"Transitive dependency\": \"通过\",\n            \"is introduced via\": \"传递依赖性\",\n\n            \"Patched version\": \"补丁版本\",\n\n            \"Impact\": \"影响\",\n            \"Patches\": \"补丁\",\n            \"Workarounds\": \"解决方法\",\n            \"Workarounds / Mitigations\": \"解决方法/缓解措施\",\n            \"References\": \"参考信息\",\n            \"For more information\": \"更多信息\",\n\n            // [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"将 $1 从 $2 升级到 $3\"],\n            \"Merging this pull request would fix\": \"合并此拉取请求将修复\",\n            \"Review security update\": \"审查安全更新\",\n\n            \"opened this\": \"打开了这个\",\n\n            // 右侧栏\n                \"This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).\": \"该分数以通用漏洞评分系统 (CVSS) 为基础，从 0 到 10 计算总体漏洞严重性。\",\n                \"CVSS v4 base metrics\": \"CVSS v4 基本指标\",\n                    \"Exploitability Metrics\": \"可利用性指标\",\n                        \"Attack Vector\": \"攻击载体\",\n                            \"Network\": \"网络\",\n                            \"Local\": \"本地\",\n                        \"Attack Complexity\": \"攻击复杂性\",\n                        \"Attack Requirements\": \"攻击要求\",\n                        \"Privileges Required\": \"所需权限\",\n                            \"None\": \"无\",\n                        \"User interaction\": \"用户交互\",\n                            \"Required\": \"必须\",\n                    \"Vulnerable System Impact Metrics\": \"脆弱系统影响指标\",\n                        \"Confidentiality\": \"保密性\",\n                        \"Integrity\": \"完整性\",\n                        \"Availability\": \"可利用性\",\n                    \"Subsequent System Impact Metrics\": \"后续系统影响指标\",\n                    \"Learn more about base metrics\": \"了解更多关于基础指标的信息\",\n\n                    // CVSS v4 基本指标 对话框 // BUG: 详细解释文本翻译不生效\n                    // 可利用性指标\n                        \"Attack Vector:\": \"攻击载体：\",\n                            \"This metric reflects the context by which vulnerability exploitation is possible. This metric value (and consequently the resulting severity) will be larger the more remote (logically, and physically) an attacker can be in order to exploit the vulnerable system. The assumption is that the number of potential attackers for a vulnerability that could be exploited from across a network is larger than the number of potential attackers that could exploit a vulnerability requiring physical access to a device, and therefore warrants a greater severity.\": \"该指标反映漏洞被利用的可能性的上下文。攻击者距离越远（逻辑上和物理上），该指标值（以及由此得出的严重性）就越高。假设可以从网络上利用的漏洞比需要物理访问设备的漏洞拥有更多的潜在攻击者，因此严重性更高。\",\n                        \"Attack Complexity:\": \"攻击复杂性：\",\n                            \"This metric captures measurable actions that must be taken by the attacker to actively evade or circumvent existing built-in security-enhancing conditions in order to obtain a working exploit. These are conditions whose primary purpose is to increase security and/or increase exploit engineering complexity. A vulnerability exploitable without a target-specific variable has a lower complexity than a vulnerability that would require non-trivial customization. This metric is meant to capture security mechanisms utilized by the vulnerable system.\": \"该指标衡量攻击者为绕过或规避现有内置安全机制而必须采取的可量化操作。这些机制的主要目的是提升安全性或增加利用难度。不需要目标特定变量的漏洞比需要非平凡定制的漏洞复杂性更低。\",\n                        \"Attack Requirements:\": \"攻击要求：\",\n                            \"This metric captures the prerequisite deployment and executiconditions or variables of the vulnerable system that enable the attack. These differ from security-enhancing techniques/technologies (ref Attack Complexity) as the primary purpose of these conditions is not to explicitly mitigate attacks, but rather, emerge naturally as a consequence of the deployment and execution of the vulnerable system.\": \"该指标衡量使攻击成为可能的先决部署和执行条件或变量。这些条件与安全增强技术不同（参见攻击复杂性），它们并非专门用于缓解攻击，而是脆弱系统部署和运行的自然结果。\",\n                        \"Privileges Required:\": \"所需权限：\",\n                            \"This metric describes the level of privileges an attacker must possess prior to successfully exploiting the vulnerability. The method by which the attacker obtains privileged credentials prior to the attack (e.g., free trial accounts), is outside the scope of this metric. Generally, self-service provisioned accounts do not constitute a privilege requirement if the attacker can grant themselves privileges as part of the attack.\": \"该指标描述攻击者在成功利用漏洞前必须拥有的权限级别。攻击者在攻击前获取特权凭据的方式（如免费试用账户）不在本指标范围内。\",\n                        \"User interaction:\": \"用户交互：\",\n                            \"This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable system. This metric determines whether the vulnerability can be exploited solely at the will of the attacker, or whether a separate user (or user-initiated process) must participate in some manner.\": \"该指标衡量除攻击者外是否需要其他人类用户参与才能成功攻破脆弱系统。\",\n                    // 脆弱系统影响指标\n                        \"Confidentiality:\": \"机密性：\",\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the VULNERABLE SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"该指标衡量成功利用漏洞后对脆弱系统所管理信息的机密性影响。\",\n                        \"Integrity:\": \"完整性：\",\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the VULNERABLE SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"该指标衡量成功利用漏洞后对信息的可信度和准确性的影响。\",\n                        \"Availability:\": \"可用性：\",\n                            \"This metric measures the impact to the availability of the VULNERABLE SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"该指标衡量成功利用漏洞后对脆弱系统本身可用性的影响（如网络服务被打挂）。\",\n                    // 后续系统影响指标\n                        // 机密性\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the SUBSEQUENT SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"该指标衡量成功利用漏洞后对后续系统所管理信息的机密性影响。\",\n                        // 完整性\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the SUBSEQUENT SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"该指标衡量成功利用漏洞后对后续系统数据完整性的影响。\",\n                        // 可用性\n                            \"This metric measures the impact to the availability of the SUBSEQUENT SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"该指标衡量成功利用漏洞后对后续系统本身可用性的影响。\",\n\n                \"EPSS score\": \"EPSS 得分\",\n                \"Weaknesses\": \"缺陷\",\n                \"Related alerts\": \"相关警报\",\n                \"See advisory in GitHub Advisory Database\": \"请参阅 GitHub 咨询数据库中的咨询\",\n                \"See all of your affected repositories\": \"查看您所有受影响的仓库\",\n                \"See something to contribute?\": \"看到有什么可贡献的吗？\",\n                \"Suggest improvements for this advisory on the GitHub Advisory Database.\": \"在 GitHub 咨询数据库上建议改进此咨询。\",\n\n            // 生成安全更新\n                // 顶部提醒\n                    // [/Started generating a security update for ([^ ]+)./, \"开始为 $1 生成安全更新。\"],\n                // [/Creating a security update for ([^ ]+)/, \"为 $1 创建安全更新\"],\n                \"Dependabot is creating a security update to fix\": \"Dependabot 正在创建一个安全更新来修复\",\n                // [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n                // [/on ([^ ]+) in/, \"关于 $1 在\"],\n                // [/Or, manually upgrade ([^ ]+) to version/, \"或者，手动将 $1 升级到版本\"],\n                \"or later. For example:\": \"或更高。例如：\",\n\n         // 具体某条Dependabot 警报 日志 /security/dependabot/<id>/update-logs/<id2>\n            \"Update logs\": \"更新日志\",\n\n        // 代码扫描器 /<user-name>/<repo-name>/security/code-scanning\n            \"Automatically detect vulnerabilities in your code.\": \"自动检测您代码中的漏洞。\",\n            \"Configure tools that integrate with Code Scanning to keep the quality of your code under control. Learn more about\": \"配置与代码扫描集成的工具，以控制代码质量。了解更多关于\",\n            \"Code Scanning\": \"代码扫描\",\n\n            \"Configure scanning tool\": \"配置扫描工具\",\n\n            \"All tools are working as expected\": \"所有工具均按预期运行\",\n            \"Tools\": \"工具\",\n            \"Add tool\": \"添加工具\",\n\n            // 搜索条\n                \"Available filters\": \"可用筛选器\",\n                    \"filter by open/closed state\": \"按打开/关闭状态筛选\",\n                    \"filter by tool\": \"按工具筛选\",\n                    \"filter by branch name\": \"按分支名称筛选\",\n                    \"filter by pr number\": \"按 PR 号筛选\",\n                    \"filter by ref (e.g. branches/tags)\": \"按引用筛选（例如 分支/标签）\",\n                    \"filter by rule\": \"按规则筛选\",\n                    \"filter by rule tag\": \"按规则标签筛选\",\n                    \"filter by severity\": \"按严重程度筛选\",\n                    \"sort by\": \"排序方式\",\n                    \"only show alerts in application code\": \"仅在应用程序代码中显示警报\",\n                    \"filter by closure reason\": \"按关闭原因筛选\",\n                    \"filter by file path (e.g. lib/crypto or *_test.js)\": \"按文件路径筛选（例如 lib/crypto or *_test.js）\",\n                    \"filter by language\": \"按语言筛选\",\n                    \"filter by assignee\": \"按受理人过滤\",\n                    \"filter by presence of a property\": \"按属性的存在进行过滤\",\n                    \"filter by absence of a property\": \"按不存在属性进行过滤\",\n                \"Filter alerts\": \"筛选警报\",\n\n            \"Language\": \"语言\",\n                \"Filter by language\": \"筛选语言\",\n            \"Tool\": \"工具\",\n                \"Filter by tool\": \"筛选工具\",\n            // 分支\n                \"Filter by branch\": \"筛选分支\",\n            \"Rule\": \"规则\",\n                \"Filter by rule\": \"筛选规则\",\n                \"Filter rules\": \"筛选规则\",\n            // 严重等级\n                \"Medium\": \"中风险\",\n                \"Error\": \"错误\",\n                \"Warning\": \"警告\",\n                \"Note\": \"注意\",\n\n            \"Looking good!\": \"看起来不错！\",\n                \"No new code scanning alerts.\": \"没有新的代码扫描警报。\",\n            \"No code scanning alerts here!\": \"尚无代码扫描警报！\",\n                \"Keep up the good work!\": \"继续努力！\",\n            \"No code scanning alerts found.\": \"尚无代码扫描警报。\",\n                \"We'll keep watching out for new ones.\": \"我们会继续关注新的消息。\",\n\n            \"Detected by\": \"检测者\",\n            \"in\": \"在\",\n\n            \"CodeQL is reporting errors.\": \"CodeQL 出错。\",\n            \"Check the\": \"检查\",\n\n            // 专业提示\n                \"You can run CodeQL locally from the command line.\": \"您可以从命令行在本地运行 CodeQL。\",\n                \"You can run CodeQL locally using Visual Studio Code.\": \"您可以使用 Visual Studio Code 在本地运行 CodeQL。\",\n                \"CodeQL queries are developed by an open-source coaliticalled the\": \"CodeQL 查询由一个开源联盟开发：\", // BUG: 翻译不生效\n                    \"GitHub Security Lab\": \"GitHub 安全实验室\",\n                \"The libraries and queries that power CodeQL are open-source.\": \"支持 CodeQL 的库和查询是开源的。\",\n                \"You can upload code scanning analyses from other third-party tools using GitHub Actions.\": \"您可以使用 GitHub Actions 从其他第三方工具上传代码扫描分析。\",\n                \"You can configure CodeQL to run with additional queries.\": \"您可以配置 CodeQL 以运行其他查询。\",\n\n        // 具体某条 代码扫描 警报/<user-name>/<repo-name>/security/security/code-scanning/<id>\n            \"Code scanning alerts\": \"代码扫描警报\",\n            // 状态词\n                \"Dismissed\": \"关闭\",\n            \"← Code scanning alerts\": \"← 代码扫描警报\",\n            \"Speed up the remediatiof this alert with\": \"加快修复此警报的速度，使用\", // BUG: 翻译不生效\n                \"Copilot Autofix for CodeQL\": \"CodeQL 的 Copilot 自动修复\",\n            \"Generate fix\": \"创建修复\",\n            \"Affected branches\": \"受影响分支\",\n            \"Rule ID\": \"规则 ID\",\n            \"Query\": \"查询\",\n            \"View source\": \"查看源代码\",\n            \"First detected in commit\": \"首次在提交中检测到\",\n            \"Assignees\": \"受理人\",\n                \"No one -\": \"无人 -\",\n                \"Assign yourself\": \"分配给自己\",\n                \"Assign up to 10 people to this alert\": \"最多为 10 人分配此警报\",\n                \"Filter assignees\": \"筛选受理人\",\n                // Copilot\n                    \"bot\": \"机器人\",\n                    \"Ensure a fix has been generated.\": \"确保已生成修复程序。\",\n            \"Development\": \"开发\",\n                \"Link a branch, pull request, or\": \"链接分支、拉取请求或\",\n                    \"create a new branch\": \"创建新分支\",\n                    \"to start working this alert.\": \"以开始处理此警报。\", // BUG: 翻译不生效\n                \"Link a branch or pull request\": \"链接分支或拉取请求\",\n                \"Search pull requests\": \"搜索拉取请求\",\n                \"Group selected\": \"已选择组\",\n            // 受影响的分支\n                \"Configurations analyzing\": \"配置分析\",\n                    \"The following configurations have reported this alert.\": \"以下配置已报告此警报。\",\n                    \"Last updated\": \"最后更新\",\n            \"Appeared in branch\": \"出现在分支\",\n            \"Show paths\": \"显示路径\",\n                \"Source\": \"源头\",\n                \"Sink\": \"汇点\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status\n            \"Scanned files\": \"扫描文件\",\n                \"Download language CSV report\": \"下载语言 CSV 报告\",\n            \"Setup types\": \"设置类型\",\n            \"Default setup\": \"默认设置\",\n            \"· Last scan\": \"· 最近一次扫描\",\n            \"Menu\": \"菜单\",\n            \"View setup type\": \"查看设置类型\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status/configurations/automatic\n            // 设置类型\n                \"This setup is working as expected.\": \"此设置正在按预期工作。\",\n                // 详细信息\n                    \"Setup type\": \"设置类型\",\n                    \"First scan\": \"首次扫描\",\n                    \"Last scan\": \"最后扫描\",\n                \"Scan events\": \"扫描事件\",\n                    \"Push to\": \"推送到\",\n                    \"Pull request to\": \"拉取请求到\",\n            \"Configurations\": \"配置\",\n                \"last scan\": \"最后扫描\", // BUG: 不生效\n                \"This configuratiis working as expected.\": \"此配置正在按预期工作\", // BUG: 不生效\n                \"Configuratimenu\": \"配置菜单\", // BUG: 不生效\n                    \"Delete configuration\": \"删除配置\",\n                    \"Download list of rules used\": \"下载所用规则列表\",\n                // 详细信息\n                    \"Configuration\": \"配置\",\n                    \"Tool version\": \"工具版本\",\n\n        // 机密扫描警报 /<user-name>/<repo-name>/security/secret-scanning\n            // 顶端窗口\n            \"Can you give us some feedback?\": \"您能给我们一些反馈意见吗？\",\n            \"We want to better understand our users' needs and experiences.\": \"我们希望更好地了解用户的需求和体验。\",\n            \"Book some time with us\": \"与我们预约时间，\",\n            \"to discuss the GitHub secret scanning experience.\": \"讨论 GitHub 机密扫描体验。\",\n\n            \"Secret scanning alerts\": \"机密扫描警报\",\n            \"Secret scanning disabled\": \"机密扫描已停用\",\n                \"To scan for secrets, you must first enable secret scanning in\": \"要扫描机密，您必须首先启用机密扫描在\",\n                \"this repository's settings\": \"此仓库设置\",\n\n            // 关闭\n                \"Revoked\": \"已撤销\",\n                \"False positive\": \"假阳性\",\n                \"Used in tests\": \"仅测试\",\n                \"Won't fix\": \"不会修复\",\n                \"Ignored by configuration\": \"配置忽略\",\n                \"Clear closure reasons\": \"全部\",\n\n            \"Bypassed\": \"绕行\",\n                \"True\": \"是\",\n            \"Validity\": \"有效性\",\n                \"Active\": \"活跃\",\n                \"Inactive\": \"不活跃\",\n                \"Unknown\": \"未知\",\n            \"Secret type\": \"机密类型\",\n                \"Service Providers\": \"服务提供商\",\n                \"Custom Patterns\": \"自定义模式\",\n                \"Filter by secret type\": \"按机密类型筛选\",\n                \"Filter secret type\": \"筛选机密类型\",\n                \"Nothing to show\": \"暂无\",\n\n            \"Provider\": \"提供者\",\n                \"Filter by provider\": \"按提供者筛选\",\n                \"Filter provider\": \"筛选提供者\",\n\n            // 排序\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Clear current search query, filters, and sorts\": \"清除当前搜索查询、过滤器和排序\",\n\n            \"No secrets found.\": \"没有发现任何机密\",\n            \"Try\": \"尝试\",\n            \"clearing filters\": \"清除过滤器\",\n            \"to view all of this repository's secret alerts.\": \"以查看此仓库的所有机密警报。\",\n            \"Your repository doesn't have any unresolved secrets.\": \"您的仓库没有任何未解决的机密。\",\n\n            // 具体某条信息 https://github.com/<user-name>/<repo-name>/security/secret-scanning/<id>\n                \"detected a\": \"检测到\",\n                    \"secret\": \"机密\",\n                \"Give us feedback\": \"提交反馈\",\n\n                \"Close as\": \"关闭为\",\n                    \"Select a close reason\": \"选择关闭原因\",\n                    \"This secret has been revoked\": \"机密被撤销\",\n                    \"This secret is not in production code\": \"机密不在生产代码中\",\n                    \"This alert is not valid\": \"警报无效\",\n                    \"This alert is not relevant\": \"警报无关\",\n\n                \"Reopen alert\": \"重新打开\",\n\n                    \"Close alert\": \"关闭警报\",\n\n                \"Secret detected\": \"检测到\",\n                \"Possibly active secret\": \"可能活跃\",\n                    \"Copy token\": \"复制令牌\",\n\n                \"Remediation steps\": \"补救措施\",\n                    \"Follow the steps below before you close this alert.\": \"关闭此警报前，请按照以下步骤操作。\",\n                    \"Rotate the secret if it's in use to prevent breaking workflows.\": \"如果正在使用，请轮换机密以防中断工作流程。\",\n                    \"Revoke this\": \"撤销\",\n                    \"through\": \"通过\",\n                    \"to prevent unauthorized access.\": \"，以防止未经授权的访问。\",\n                    //\"Revoke this Google API Key through Google to prevent unauthorized access.\": \"通过 Google 撤销此 Google API 密钥，以防止未经授权的访问。\",\n                    \"Check security logs for potential breaches.\": \"检查安全日志，查找潜在漏洞。\",\n                    \"Close the alert as revoked.\": \"关闭已撤销的警报。\",\n\n                // 检测到位置\n                    \"Preview unavailable\": \"预览不可用\",\n                    \"This file is too large to show a preview\": \"文件过大，无法显示预览\",\n\n                    // 复制\n                        \"to clipboard\": \"到剪切板\",\n\n                    \"View file\": \"浏览文件\",\n                    \"View git blame\": \"浏览 Git 追溯\",\n\n                // 状态词\n                    \"opened this alert\": \"打开此警报\",\n                    \"reopened this\": \"重新打开\",\n                    \"closed this as\": \"将其关闭为\",\n                    \"closed as\": \"关闭为\",\n                        \"used in tests\": \"仅测试\",\n                        \"won't fix\": \"不会修复\",\n                        \"revoked\": \"忽略\",\n                        \"false positive\": \"假阳性\",\n                    \"closed this as completed in\": \"将其关闭为已完成\",\n\n                \"hidden item\": \"条隐藏项目\",\n                \"s\": \" \",\n                \"Load all...\": \"加载全部…\",\n\n        // 新建安全公告草案 /<user-name>/<repo-name>/security/advisories/new\n            \"Open a draft security advisory\": \"打开一个安全公告草案\",\n            \"After the draft security advisory is open, you can privately discuss it with collaborators and create a temporary private fork where you can collaborate on a fix. If you've already fixed the vulnerability, just fill out the draft security advisory and then publish it.\": \"在安全公告草案打开后，您可以与协作者私下讨论，并创建一个临时的私有复刻，在那里您们可以协作进行修复。如果您已经修复了该漏洞，只需填写安全公告草案，然后发布即可。\",\n\n            \"Advisory Details\": \"公告详情\",\n            \"Title *\": \"标题 *\",\n            \"CVE identifier\": \"CVE 标识符\",\n                \"Request CVE ID later\": \"稍后请求 CVE ID\",\n                \"I have an existing CVE ID\": \"我有一个现有的 CVE ID\",\n            \"Description *\": \"描述 *\",\n\n            \"Affected products\": \"受影响的产品\",\n            \"Ecosystem *\": \"生态系统 *\",\n                \"Don't see the ecosystem you're looking for? It may not be supported yet.\": \"没有看到您正在寻找的生态系统？可能还不支持。\",\n                \"Select an ecosystem\": \"选择一个生态系统\",\n                \"Go\": \"\",\n                \"Other\": \"其他\",\n            \"Affected versions\": \"受影响的版本\",\n            \"Patched versions\": \"补丁版本\",\n            \"Add another affected product\": \"添加另一个受影响的产品\",\n\n            // 严重等级\n            \"Pending selection\": \"待选择\",\n\n            \"Select severity\": \"选择严重程度\",\n                \"Low\": \"低风险\",\n                \"Moderate\": \"中风险\",\n                \"High\": \"高风险\",\n                \"Critical\": \"关键风险\",\n                \"Assess severity using CVSS\": \"使用 CVSS 评估严重程度\",\n\n            \"Vector string\": \"矢量字符串\",\n\n            \"Calculator\": \"计算器\",\n                \"Learn more about CVSS scoring\": \"了解更多关于 CVSS 计分的信息\",\n\n                \"Adjacent\": \"邻近\",\n                \"Physical\": \"物理\",\n\n            \"Common weakness enumerator (CWE)\": \"常见弱点枚举器 (CWE)\",\n                \"Search by CWE\": \"按 CWE 搜索\",\n\n            \"Credits\": \"用户\",\n                \"Add a user by username, full name, or email\": \"通过用户名、全名或电子邮件添加用户\",\n\n            \"Create draft security advisory\": \"创建安全公告草案\",\n\n            // 右侧栏\n            \"Access and visibility\": \"访问和可见性\",\n                \"Until it is published, this draft security advisory will only be visible to the maintainers of\": \"在发布之前，此安全公告草案仅对以下的所有者可见\",\n                \". Other users and teams may be added once the advisory is created.\": \"。 其他用户和团队可以在咨询创建后加入。\",\n            \"Once published, security advisories on public repositories are visible to everyone.\": \"一旦发布，公共仓库上的安全公告对所有人都是可见的。\",\n            \"Once reviewed by GitHub, security advisories may be broadcast on the\": \"一旦通过 GitHub 的审查，安全公告就可以出现在\",\n            \"GitHub Advisory Database\": \"GitHub 咨询数据库\",\n            \". They may also trigger Dependabot alerts to users that depend on this repository.\": \"。它们还可能向依赖此仓库的用户触发 Dependabot 警报。\",\n\n            \"Security policy\": \"安全政策\",\n            \"Glossary and documentation\": \"词汇表和文档\",\n            \"Dependabot language support\": \"Dependabot 语言支持\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Triages?/, \"$1 分类\"],\n        [/([\\d,]+) Draft/, \"$1 草案\"],\n        [/([\\d,]+) Published/, \"$1 发布\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/([\\d,]+) Closed/, \"$1 关闭\"],\n        [/(#\\d+) closed as/, \"$1 关闭为\"],\n        [/(\\d+) selected/, \"$1 条被选中\"],\n        [/Detected in (\\d+) locations?/, \"在 $1 个位置检测到\"],\n        [/Detected in ([^ ]+)/, \"在 $1 中检测到\"],\n        [/Upgrade ([^ ]+) to fix/, \"升级 $1 去修复\"], // 某个 Dependabot 警报\n        [/Upgrade ([^ ]+) to version/, \"升级 $1 到版本\"], // 某个 Dependabot 警报\n        [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 无法将 $1 更新为无漏洞的版本\"],\n        [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"将 $1 从 $2 升级到 $3\"],\n        [/Started generating a security update for ([^ ]+)./, \"开始为 $1 生成安全更新。\"],\n        [/Creating a security update for ([^ ]+)/, \"为 $1 创建安全更新\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n        [/on ([^ ]+) in/, \"关于 $1 在\"],\n        [/Or, manually upgrade ([^ ]+) to version/, \"或者，手动将 $1 升级到版本\"],\n        [/on (.+)/, \"$1\"],\n        [/(\\d+)\\/(\\d+) files? scanned/, \"$1/$2 文件已扫描\"],\n        //[/Copy ([^/]\\/(?:[^/]+\\/)*[^/]+$) to clipboard/, \"复制 $1 到剪切板\"],\n        [/Prototype Pollution in ([^ ]+)/, \"$1 上游污染\"],\n        [/First detected (.+)/, (match, p1) => { // 受影响的分支 // BUG: 翻译不生效\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `初次检测 ${translatedDate}`;\n        }],\n        [/(\\d+) steps? in (.+)/, \"$1 个步骤在 $2\"],\n        [/Step (\\d+)/, \"步骤 $1\"]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Security Overview/, \"安全概述\"],\n            [/Security Policy/, \"安全政策\"],\n            [/Security Advisories/, \"安全咨询\"],\n            [/Dependabot alerts?/, \"Dependabot 警报\"],\n            [/Code scanning alerts?/, \"代码扫描警报\"],\n            [/Secret scanning/, \"机密扫描\"],\n            [/Code scanning tool status/, \"代码扫描工具状态\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/contribute\"] = { // 仓库 - 贡献页面\n    \"static\": { // 静态翻译\n\n        // 贡献页面 /<user-name>/<repo-name>/contribute\n            \"Contribute to\": \"贡献于\",\n            \"Make your first contribution to this repository by tackling one of the issues listed below.\": \"通过解决下面列出的一个议题，为这个仓库做出您的第一个贡献。\",\n            \"Each issue displayed here is a \\\"good first issue,\\\" selected for its relative approachability for first-time contributors.\": \"此处显示的每个议题都是 “好的首发议题”，因其对首次贡献者来说相对容易。\",\n\n            \"Read the contributing guidelines\": \"阅读贡献指南\",\n\n            \"Good first issues\": \"好的首发议题\",\n            \"See all issues\": \"查看所有议题\",\n\n            \"This repo doesn't have any good first issues, yet\": \"该仓库暂无任何好的首发议题\",\n            \"Once its maintainers label issues and pull requests for new contributors, they will begin to appear here.\": \"一旦它的维护者为新的贡献者标记了议题和拉取请求，它们就会开始出现在这里。\",\n            \"All issues in this repository\": \"此仓库中的所有议题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/subscription\"] = { // 仓库 - 通知状态页面\n    \"static\": { // 静态翻译\n\n        // 仓库通知状态管理 /<user-name>/<repo-name>/subscription\n            \"Your\": \"您的\",\n            \"notifications status\": \"通知状态\",\n            \"A notification is created every time someone discusses something inside of the repository — Pull Requests, Issues, Comments, and Commit discussions. Whether you are watching the repository, not watching it, or ignoring it determines which notifications you receive.\": \"每当有人在仓库内讨论什么，比如拉取请求、议题、评论和提交讨论，都会产生一个通知。无论您是关注仓库、不关注还是忽略它，都决定了您会收到哪些通知。\",\n            \"Not watching\": \"不关注\",\n                \"You will only receive notifications when you participate or are @mentioned.\": \"只有当您参与或被 @您 时，您才会收到通知。\",\n            \"Releases only\": \"仅发行版\",\n                \"You will only receive notifications for new releases, or when you participate or are @mentioned.\": \"您只会收到新版本的通知，或者当您参与或被 @您 时。\",\n            \"Watching\": \"关注\",\n                \"You will receive all notifications for this repository.\": \"您将收到此仓库的所有通知。\",\n            \"Ignored\": \"忽略\",\n                \"You will not receive any notifications for this repository.\": \"您将不会收到有关此仓库的任何通知。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/invitations\"] = { // 仓库 - 接受邀请页面\n    \"static\": { // 静态翻译\n\n        // 接受邀请 /<user-name>/<repo-name>/invitations\n            \"invited you to collaborate\": \"邀请您进行协作\",\n            \"invited you to collaborate on\": \"邀请您进行协作\",\n            \"Accept invitation\": \"接受邀请\",\n            \"Decline\": \"拒绝\",\n            \"Decline invitation\": \"拒绝\",\n            \"Owners\": \"所有者\",\n            \"Your public profile information\": \"您的公开个人资料信息\",\n            \"Certain activity\": \"某些活动\",\n            \"within this repository\": \"在这个仓库中\",\n            \"Country of request origin\": \"请求来源国家/地区\",\n            \"Your access level for this repository\": \"您对该仓库的访问等级\",\n            \"Your IP address\": \"您的 IP 地址\",\n            \"Is this user sending spam or malicious content?\": \"此用户是否发送垃圾邮件或恶意内容？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/of ([^ ]+) will be able to see:/, \"$1 将能够看到：\"], // 邀请页\n        [/Block ([^ ]+)/, \"拉黑 $1\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/tasks\"] = {\n    \"static\": {\n        \"You\": \"您\",\n        \"created the session\": \"创建此任务\",\n\n        \"session\": \"任务\",\n        \"premium request\": \"高级请求\",\n\n        \"started a task\": \"开始任务\",\n\n        \"Stop\": \"停止\",\n        \"Setting up environment\": \"设置环境\",\n        \"View repository\": \"查看仓库\",\n    },\n    \"regexp\": [\n        [/View (\\d+) files?/, \"查看 $1 个文件\"],\n        [/Edit (\\d+) files?/, \"编辑 $1 个文件\"],\n    ],\n};\n\n\n// 洞察 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\nI18N[\"zh-CN\"][\"repository-insights-menu\"] = { // 仓库 -> 洞察 - 公共部分\n    \"static\": { // 静态翻译\n        // 公共部分\n            // 左侧菜单\n            \"Pulse\": \"统计\",\n            \"Contributors\": \"贡献者\",\n            \"Community\": \"社区\",\n            \"Community Standards\": \"社区准则\",\n            \"Community standards\": \"社区准则\",\n            \"Traffic\": \"流量\",\n            \"Commits\": \"提交\",\n            \"Code frequency\": \"代码频率\",\n            \"Dependency graph\": \"依赖项关系图\",\n            // \"Punch card\": \"时刻\",\n            \"Network\": \"网络\",\n            // \"Members\": \"成员\",\n            \"Forks\": \"复刻\",\n            \"Actions Usage Metrics\": \"操作使用情况\",\n            \"Actions Performance Metrics\": \"操作数据看板\",\n            \"Actions usage metrics\": \"操作使用情况\",\n            \"Actions performance metrics\": \"操作数据看板\",\n\n            \"People\": \"成员\", //组织仓库\n\n            // 私有库禁用部分功能的提醒\n            \"Upgrade to GitHub Pro or make this repository public to enable this feature.\": \"升级到 GitHub Pro 或将此仓库设为公开以启用此功能。\",\n            // 他人私有库\n            \"Contact an administrator to upgrade to GitHub Team or make this repository public to enable this feature.\": \"请联系管理员升级到 GitHub 团队或将此设为仓库公开以启用此功能。\",\n\n            \"We want to know how these insights are helping you and where they could be improved.\": \"我们想知道这些洞察如何帮助您，以及在哪些方面可以改进。\",\n            \"Give us your feedback\": \"向我们提供反馈意见\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/pulse\"] = { // 仓库 -> 洞察 - 统计\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 统计 /<user-name>/<repo-name>/pulse\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"24 hours\": \"24 小时\",\n                \"3 days\": \"3 天\",\n                \"1 week\": \"1 周\",\n                \"1 month\": \"1 个月\",\n            \"Active pull request\": \"活跃的拉取请求\",\n            \"Active pull requests\": \"活跃的拉取请求\",\n            \"Active issue\": \"活跃的议题\",\n            \"Active issues\": \"活跃的议题\",\n            \"Merged pull request\": \"合并的拉取请求\",\n            \"Merged pull requests\": \"合并的拉取请求\",\n            \"Open pull request\": \"打开的拉取请求\",\n            \"Open pull requests\": \"打开的拉取请求\",\n            \"Closed issue\": \"关闭的议题\",\n            \"Closed issues\": \"关闭的议题\",\n            \"New issue\": \"新议题\",\n            \"New issues\": \"新议题\",\n\n            \"Excluding merges,\": \"不包括合并，\",\n            // [/(\\d+) authors?/, \"$1 位作者\"],\n            \"have pushed\": \"推送了\",\n            \"has pushed\": \"推送了\",\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            // [/to ([^ ]+), and/, \"到 $1 分支和\"],\n            // [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n            // [/(\\d+) files?/, \"$1 个文件\"],\n            \"have changed and there have been\": \"已经发生了变化，并且有\",\n            \"has changed and there have been\": \"已经发生了变化，并且有\",\n            \"additions\": \"处增加\",\n            \"deletions\": \"处删除\",\n\n            \"commit authored by\": \"次提交，作者：\",\n            \"commits authored by\": \"次提交，作者：\",\n\n            \"Want to help out?\": \"想帮忙吗？\",\n            \"Fork this repository\": \"复刻仓库\",\n            \"Release published by\": \"个发行版已发布由\",\n            \"Releases published by\": \"个发行版已发布由\",\n            \"published\": \"发布\",\n            \"Pull request merged by\": \"个拉取请求已合并由\",\n            \"Pull requests merged by\": \"个拉取请求已合并由\",\n            \"Pull request opened by\": \"个拉取请求打开由\",\n            \"Pull requests opened by\": \"个拉取请求打开由\",\n            \"Issue closed by\": \"个议题已关闭由\",\n            \"Issues closed by\": \"个议题已关闭由\",\n            \"Issue opened by\": \"个议题打开由\",\n            \"Issues opened by\": \"个议题打开由\",\n            \"person\": \"人\",\n            \"people\": \"人\",\n            \"Sometimes conversations happen on old items that aren’t yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有时会针对尚未关闭的旧项目进行讨论。以下是所有未解决的讨论的议题和拉取请求的列表。\",\n            // [/• (\\d+) new comments/, \"• $1 个新评论\"],\n            \"Unresolved conversation\": \"个未解决的讨论\",\n            \"Unresolved conversations\": \"个未解决的讨论\",\n\n            \"merged\": \"已合并\",\n            \"opened\": \"打开\",\n            \"closed\": \"已关闭\",\n\n            // 新版（2025/9）\n            \"There hasn't been any commit activity on\": \"没有任何提交活动于\",\n            \"over the last\": \"在最近\",\n\n            \"Summary\": \"总结\",\n                \"author\": \"位作者\",\n                \"authors\": \"位作者\",\n                \"have\": \" \",\n                \"has\": \" \",\n                \"pushed\": \"推送\",\n                \"to all branches.\": \"到所有分支。\",\n\n                \"On\": \"在\",\n                \"file\": \"文件\",\n                \"changed and there have been\": \"已经发生了变化，并且有\",\n\n            \"Top Committers\": \"提交排行\",\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"Category\": \"作者\", // 此处原文错误\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n\n                \"Customization settings\": \"自定义设置\",\n                    \"Column & bar chart settings\": \"柱状图设置\",\n                        \"Increase Contrast\": \"增加对比度\",\n                            \"Adds gradients and outlines to increase contrast in charts.\": \"为图表添加渐变效果和轮廓，以增强对比度\",\n                        \"Show data labels\": \"显示数据标签\",\n                            \"Show labels for each data point in column and bar charts.\": \"在柱状图中显示每个数据点的标签\",\n\n            \"Sometimes conversations happen on old items that aren't yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有时对尚未关闭的旧项目会有新的讨论。以下是所有有未解决讨论的议题和拉取请求列表。\",\n                \"commented on\": \"评论于\",\n                \"new comments\": \"新评论\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) authors?/, \"$1 位作者\"],\n        [/to ([^ ]+) and/, \"到 $1 分支和\"],\n        [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n        [/(\\d+) files?/, \"$1 个文件\"],\n        [/(\\d+) commented on/, \"$1 评论于\",],\n        [/• (\\d+) new comments?/, \"• $1 个新评论\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 24 hours./, \"在过去的 24 小时里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 3 days./, \"在过去的 3 天里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last week./, \"在过去的 1 周里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last month./, \"在过去的 1 月里，$1 没有任何提交活动。\"],\n        [/releases? published/, \"发行版已发布\"],\n        [/pull requests? opened/, \"拉取请求打开\"],\n        [/pull requests? merged/, \"拉取请求合并\"],\n        [/issues? opened/, \"议题打开\"],\n        [/issues? closed/, \"议题关闭\"],\n        [/(\\d+) commits? authored by ([^ ]+)/, \"$2 提交 $1 次\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pulse/, \"洞察\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/contributors\"] = { // 仓库 -> 洞察 - 贡献者\n    \"static\": { // 静态翻译\n\n        // 贡献者 /<user-name>/<repo-name>/graphs/contributors\n            \"Loading contributions…\": \"载入贡献者…\",\n            // [/Contributions to (.*), excluding merge commits/, \"贡献到 $1 分支，不包括合并提交\"],\n            \"Contributions:\": \"贡献者：\",\n                // 下拉菜单\n                \"Filter contributions\": \"筛选贡献者\",\n                \"Additions\": \"添加数量\",\n                \"Deletions\": \"删除数量\",\n                // [/Contributions to (.*), excluding merge commits and bot accounts/, \"贡献到 $1 分支，不包括合并提交和机器人账户\"],\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            // 标题\n                \"Contributions per week to\": \"每周贡献到\",\n                \", excluding merge commits\": \" 分支，不包括合并提交\",\n                \", line counts have been omitted because commit count exceeds 10,000.\": \" 分支，由于提交次数超过 10,000 次，因此省略行数。\",\n            // 筛选栏\n                \"Period\": \"时间\",\n                    \"All\": \"全部\",\n                    \"Last month\": \"上月\",\n            // 日期\n                \"Weekly from\": \" 每周从\",\n                \"From\": \"从\",\n            // 提交图表\n                \"over time\": \"总览\",\n                \"commit\": \"次提交\",\n                    \"s\": \" \",\n                \"Contributions\": \"贡献\", // 图表旁竖写\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n                    // 表格窗口\n                        \"Commits over time\": \"提交总览\",\n                        \"DateTime\": \"日期时间\",\n                        \"Week of\": \"周\",\n\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n    },\n    \"regexp\": [ // 正则翻译\n        [/Contributions to (.*), excluding merge commits/, \"贡献到 $1 分支，不包括合并提交\"],\n        [/Contributions to (.*), excluding merge commits and bot accounts/, \"贡献到 $1 分支，不包括合并提交和机器人账户\"],\n        [/Contributions to (.*), line counts have been omitted because commit count exceeds 10,000./, \"贡献到 $1 分支，由于提交次数超过 10,000 次，因此省略行数。\"],\n        //[/Contributions per week to (.*), excluding merge commits/, \"每周贡献到 $1 分支，不包括合并提交\"],\n        [/([\\d,]+) commits?/, \"$1 次提交\"],\n        // 新版\n        [/Last (\\d+) months?/, \"最后 $1 个月\"],\n        [/([^ ]+)'s (Commits|Additions|Deletions)/, function(all, user, cont){\n\n            var contKey = {Commits: '提交', Additions: '添加数量', Deletions: '删除数量'};\n\n            return user + ' 的' + contKey[cont];\n        }],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周`; // 无论如何都是星期一\n        }],\n        [/([^ ]+)-([^ ]+) (\\d+)/, (match, p1, p2 ,p3) => { // 出现位置：具体某贡献者 - 贡献数柱形图日期，原文格式为 月-月 年\n            const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"static\"][p1] || p1;\n            const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"static\"][p2] || p2;\n            return `${p3}年 ${translatedP1}-${translatedP2}`; // 此处修改格式为 年 月-月\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Contributors to (.+)/, \"$1 的贡献者\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/community\"] = { // 仓库 -> 洞察 - 社区\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社区 /<user-name>/<repo-name>/graphs/community\n            \"Enable Discussions to unlock Community Insights!\": \"启用讨论，以解锁社区见解！\",\n            \"Discussions is the central space for your community to share announcements, ask questions, and host conversations.\": \"讨论是您的社区共享公告、提出问题和主持对话的中心空间。\",\n            \"Set up discussions\": \"建立讨论\",\n\n            \"Community insights\": \"社区见解\",\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 3 months\": \"最近 3 个月\",\n                \"Last year\": \"最近 1 年\",\n\n            \"Contribution activity\": \"贡献活动\",\n                \"Count of total contribution activity to Discussions, Issues, and PRs\": \"对讨论、议题和拉取请求的总贡献活动计数\",\n                \"discussions\": \"讨论\",\n                \"Quantity\": \"数量\",\n                \"Timeline\": \"时间轴\",\n                // [/(\\d+) pull requests created/, \"$1 个拉取请求创建\"],\n            \"We tried our best, but the graph wouldn’t load. Try reloading the page.\": \"我们尽了最大努力，但图表无法加载。尝试重新加载页面。\",\n            \"Discussions page views\": \"讨论页面浏览量\",\n                \"Total page views to Discussions segmented by logged in vs anonymous users.\": \"按登录用户与匿名用户划分的讨论的总页面浏览量。\",\n                \"logged in\": \"登录\",\n                \"anonymous\": \"匿名\",\n\n                \"Not enough data yet.\": \"还没有足够的数据。\",\n                \"It usually takes about a week to populate this chart.\": \"填充此图表通常需要大约一周的时间。\",\n                \"Read more about insights\": \"阅读更多关于见解的信息\",\n\n            \"Discussions daily contributors\": \"每日讨论的贡献者\",\n                \"Count of unique users who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所选时间段内，作出反应、投票、标记答案、评论或发帖的唯一用户的数量。\",\n            \"Discussions new contributors\": \"讨论的新贡献者\",\n                \"Count of unique new users to Discussions who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所选时间段内，对讨论作出反应、投票、标记答案、评论或发帖的唯一新用户的数量。\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) pull requests? created/, \"$1 个拉取请求创建\"],\n        [/(\\d+) issues? created/, \"$1 个议题创建\"],\n        [/(\\d+) discussions? created/, \"$1 个讨论创建\"],\n        [/(\\d+) contributors?/, \"$1 贡献者\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/community\"] = { // 仓库 -> 洞察 - 社区准则\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社区准则 /<user-name>/<repo-name>/community\n            \"Here’s how this project compares to\": \"以下是该项目内容，不同于\",\n            \"recommended community standards\": \"推荐的社区标准\",\n            \"Checklist\": \"检查清单\",\n            \"Add\": \"添加\",\n            \"Propose\": \"提议\",\n\n            \"Description\": \"描述\",\n                \"Add a description to your repository so people understand the goals of your project.\": \"向您的仓库添加描述，以便人们了解您项目的目标。\",\n            \"README\": \"自述文件（README）\",\n                \"Writing a README\": \"编写自述文件（README）\",\n            \"Code of conduct\": \"行为准则\",\n                \"What is a code of conduct?\": \"什么是行为准则？\",\n            \"Contributing\": \"贡献\",\n                \"Writing contributing guidelines\": \"编写贡献指南\",\n            \"License\": \"许可证\",\n                \"Choosing a license\": \"选择许可证\",\n            \"Security policy\": \"安全政策\",\n                \"Set up a security policy\": \"设置安全策略\",\n            \"Issue templates\": \"议题模板\",\n            \"Pull request template\": \"拉取请求模板\",\n            \"Repository admins accept content reports\": \"仓库管理员接受内容报告\", // 组织仓库?\n            \"What is\": \"什么是\",\n            \"the community profile\": \"社区简介\",\n\n        // 添加许可证 /<user-name>/<repo-name>/community/license/new?branch=main\n            \"Add a license to your project\": \"为您的项目添加许可证\",\n            \"Choose a license to add to your project\": \"选择要添加到项目的许可证\",\n            \"Select a template on the left to get started.\": \"在左侧选择一个模板开始。\",\n            \"Learn more about\": \"了解更多关于\",\n            \"which license best fits your project\": \"哪种许可证最适合您的项目\",\n\n        // 添加许可证 /<user-name>/<repo-name>/community/license/new?branch=<branch name>&template=<template name>\n            // 右侧栏\n                \"You’ll have a chance to review before committing a\": \"您将有机会在提交之前进行审查\",\n                \"file to a new branch or the root of your project.\": \"文件到新分支或项目的根目录。\",\n\n                \"To adopt\": \"采用\",\n                \", enter your details. You’ll have a chance to review before committing a\": \"，输入您的详细信息。您将有机会在提交之前进行审查\",\n                \"Year\": \"年份\",\n                    \"The current year\": \"当前年份\",\n                \"Full name\": \"全名\",\n                    \"The full name or username of the repository owner\": \"仓库所有者的全名或用户名\",\n                \"Review and submit\": \"审查并提交\",\n\n            // 中间栏 顶部 权限信息\n                \"Permissions\": \"许可事项\",\n                \"Limitations\": \"限制条件\",\n                    \"Commercial use\": \"商业用途\",\n                    \"Modification\": \"修改\",\n                    \"Distribution\": \"分布\",\n                    \"Patent use\": \"专利使用\",\n                    \"Private use\": \"私人使用\",\n                    \"Trademark use\": \"商标使用\",\n                    \"Liability\": \"责任\",\n                    \"Warranty\": \"担保\",\n                    \"Disclose source\": \"开源\",\n                    \"Same license\": \"相同的许可证\",\n                \"Conditions\": \"条件\",\n                    \"License and copyright notice\": \"许可和版权声明\",\n                    \"State changes\": \"状态变化\",\n                    \"License and copyright notice for source\": \"来源许可和版权声明\",\n                    \"Network use is distribution\": \"网络使用即分发\",\n                    \"Same license (library)\": \"相同的许可证（库）\",\n                    \"Same license (file)\": \"相同的许可证（文件）\",\n\n                \"This is not legal advice.\": \"这并不是法律建议。\",\n                \"Learn more about repository licenses\": \"了解更多关于仓库许可证的信息\",\n\n        // 添加行为准则 /<user-name>/<repo-name>/community/code-of-conduct/new\n            \"Add a code of conduct to your project\": \"为您的项目添加行为准则\",\n            \"Choose a code of conduct to add to your project\": \"选择要添加到项目中的行为准则\",\n            \"what a code of conduct is\": \"什么是行为准则\",\n            \"and how to enforce it.\": \"以及如何执行。\",\n            \"Contributor Covenant\": \"贡献者协议\",\n                \"Recommended for projects of all sizes\": \"建议用于各种规模的项目\",\n                \"Contact method\": \"联系方式\",\n            \"Citizen Code Of Conduct\": \"公民行为准则\",\n                \"Suitable for large communities and events\": \"适合大型社区和活动\",\n                \"Link to reporting guidelines\": \"报告指南链接\",\n                \"Link to policy\": \"政策链接\",\n                \"Note\": \"注释\",\n                \"Contact info\": \"联系信息\",\n                \"Community name\": \"团队名称\",\n                \"Governing body\": \"管理机构\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Community Standards\": \"社区准则\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/traffic\"] = { // 仓库 -> 洞察 - 流量\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 流量 /<user-name>/<repo-name>/graphs/traffic\n            \"Git clones\": \"Git 克隆\",\n            \"Clones\": \"克隆\",\n            \"Unique cloners\": \"唯一克隆者\",\n            \"clones\": \"次克隆\",\n            \"clone\": \"次克隆\",\n            \"unique cloners\": \"个唯一克隆者\",\n            \"unique cloner\": \"个唯一克隆者\",\n            \"Visitors\": \"访客\",\n\n            \"Referring sites\": \"引荐网站\",\n            \"Site\": \"站点\",\n            \"Domains\": \"域名\",\n            \"Views\": \"浏览\",\n            \"Unique visitors\": \"唯一访客\",\n            \"Unique Visits\": \"唯一访问\",\n            \"views\": \"次浏览\",\n            \"view\": \"次浏览\",\n            \"Visits\": \"访问\",\n            \"unique visitors\": \"个唯一访客\",\n            \"unique visitor\": \"个唯一访客\",\n            \"Popular content\": \"热门内容\",\n            \"Content\": \"内容\",\n            \"Path\": \"路径\",\n\n            \"We don’t have enough data to show anything useful.\": \"我们没有足够的数据来显示任何有用的东西。\",\n            \"It usually takes about a week to populate this graph.\": \"通常需要一周左右的时间来填充此图表。\",\n            \"It looks like traffic to your repository is a little light. Go spread the word and check back later!\": \"看起来您的仓库的流量有点少呀。去宣传一下吧，稍后再回来查看！\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            \"Referring sites and popular content are temporarily unavailable or may not display accurately. We're actively working to resolve the issue.\": \"引用网站和热门内容暂时无法使用或可能无法准确显示。我们正在积极解决该问题。\",\n\n            \"Clones in last 14 days\": \"最近 14 天克隆数\",\n            \"Unique cloners in last 14 days\": \"最近 14 天唯一克隆者\",\n                \"Cloners\": \"克隆者\",\n            \"Total views in last 14 days\": \"最近 14 天访问数\",\n                \"Total views\": \"总访问数\",\n            \"Unique visitors in last 14 days\": \"最近 14 天唯一访客\",\n\n            \"Chart options\": \"图表选项\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下载 CSV\",\n                \"Download PNG\": \"下载 PNG\",\n\n            \"Customization settings\": \"自定义设置\",\n                \"Line chart settings\": \"折线图设置\",\n                    \"Differentiate by line style\": \"折线样式区分\",\n                        \"Use unique line styles (dashed, dotted, etc.) to differentiate lines in charts.\": \"使用独特的线条样式（如虚线、点线等）在图表中区分不同的线条。\",\n                    \"Show data labels\": \"显示数据标签\",\n                        \"Show labels for each data point in line chart.\": \"在折线图每个数据点显示标签。\",\n\n            // 表格\n            \"Category\": \"日期\", // 实际上为日期\n            \"Total\": \"总计\",\n            \"Unique\": \"唯一\",\n\n            \"We don't have enough data to show anything useful.\": \"我们没有足够的数据来显示任何有用的东西。\",\n            \"It usually takes about a week to populate this table.\": \"通常需要一周左右的时间来填充此图表。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Clones?/, \"$1 次克隆\"],\n        [/(\\d+) Unique cloners?/, \"$1 位唯一克隆者\"],\n        [/(\\d+) Views?/, \"$1 次访问\"],\n        [/(\\d+) Unique visitors?/, \"$1 位唯一访客\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/commit-activity\"] = { // 仓库 -> 洞察 - 提交\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 提交 /<user-name>/<repo-name>/graphs/commit-activity\n            \"Sunday\"    : \"周日\",\n            \"Monday\"    : \"周一\",\n            \"Tuesday\"   : \"周二\",\n            \"Wednesday\" : \"周三\",\n            \"Thursday\"  : \"周四\",\n            \"Friday\"    : \"周五\",\n            \"Saturday\"  : \"周六\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            \"Commits over the last year of\": \"最近一年内提交到\",\n\n            \"Number of commits per week\": \"每周提交数\",\n            \"Customization settings\": \"自定义设置\",\n                \"Column & bar chart settings\": \"柱状图设置\",\n                    \"Increase Contrast\": \"增加对比度\",\n                    \"Adds gradients and outlines to increase contrast in charts.\": \"为图表添加渐变效果和轮廓，以增强对比度\",\n                    \"Show data labels\": \"显示数据标签\",\n                    \"Show labels for each data point in column and bar charts.\": \"在柱状图中显示每个数据点的标签\",\n\n            \"Chart options\": \"图表选项\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下载 CSV\",\n                \"Download PNG\": \"下载 PNG\",\n\n                \"DateTime\": \"日期\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/commits? the week of (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, month, day){\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '次提交本周，' + monthKey[month] + day + '日';\n        }],\n        [/Week of (.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周` ; // 这里写翻译结果\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/code-frequency\"] = { // 仓库 -> 洞察 - 代码频率\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 代码频率 /<user-name>/<repo-name>/graphs/code-frequency\n            \"Code frequency over the history of\": \"历史上的代码频率\",\n            \"Additions\": \"添加数量\",\n            \"Deletions\": \"删除数量\",\n            \"per week\": \"每周\",\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n            // 过多\n            \"There are too many commits to generate this graph.\": \"提交次数过多，无法生成图表。\",\n            \"More information about this data can be found in the\": \"有关这些数据的更多信息，请参阅\",\n            \"activity documentation\": \"活动文档\",\n\n        // 新版\n        \"Additions and deletions per week\": \"添加数量和删除数量/每周\",\n        \"Chart options\": \"图表选项\",\n            \"View as table\": \"以表格形式查看\",\n            \"Download CSV\": \"下载 CSV\",\n            \"Download PNG\": \"下载 PNG\",\n            // 图表本体\n                \"DateTime\": \"日期时间\",\n                \"Frequency\": \"频率\",\n                \"Values\": \"值\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周`; // 无论如何都是星期一\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Code frequency/, \"代码频率\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/dependencies\"] = { // 仓库 -> 洞察 - 依赖项关系图 - 依赖项\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n        // 依赖项关系图 - 依赖项 /network/dependencies\n            \"Tell us how to make the Dependency Graph work better for you with a few quick questions.\": \"请通过几个简单的问题告诉我们，如何使 “依赖项关系图” 更好地为您工作。\",\n\n            \"Dependency graph is disabled\": \"依赖项关系图未启用\",\n            \"The owner of this repository has not yet enabled the dependency graph. Once enabled, you can\": \"此仓库的所有者尚未启用依赖项关系图。一旦启用，您可以\", //个人仓库\n            \"Dependency graph has not been enabled by an organization owner or a user with admin permissions for this repository. Once enabled, you can\": \"依赖项关系图还没有被组织所有者或具有该仓库管理权限的用户启用。一旦启用，您可以\", // 组织仓库\n            \"track this repository’s dependencies\": \"追踪此仓库的依赖项\",\n            \"Learn more about how we use your data.\":\"深入了解我们对您数据的使用方式。\",\n\n            \"Enable the dependency graph\": \"启用依赖项关系图\",\n            \"Track this repository’s\": \"追踪该仓库的\",\n            \"dependencies and sub-dependencies\": \"依赖项和子依赖项\",\n            \"The\": \" \",\n            \"is not enabled for this repository. Click on \\\"Enable the dependency graph\\\" below to enable it.\": \"暂未启用。单击下面的 “启用依赖项关系图” 以启用它。\",\n            \"If you’d like to enable the\": \"如果您想启用\",\n            \"dependency graph\": \"依赖项关系图\",\n            \"vulnerability alerting\": \"漏洞警报\",\n            \"click on \\\"Allow access\\\" below to enable it.\": \"点击下面的 “允许访问” 来启用它。\",\n            \"Learn more about how we use your data\": \"了解更多关于我们如何使用您的数据的信息\",\n            \"Allow access\": \"允许访问\",\n\n            \"No dependencies found.\": \"未找到依赖项\",\n            \"To view your dependency graph, your repository must define dependencies in\": \"要查看依赖项关系图，您的仓库必须定义依赖项存在\",\n            \"one of the supported manifest file types\": \"一个支持的清单文件\",\n            \", like\": \"，例如\",\n            \", and\": \"，和\",\n\n            \"Export SBOM\": \"导出 SBOM\",\n\n            \"Detect additional dependencies with GitHub Actions\": \"使用 GitHub Actions 检测额外的依赖项\",\n                // 并非所有依赖项都会自动检测到，例如 Gradle 这样的生态系统。GitHub Actions 会通过依赖项提交 API 添加您的依赖项，这样您就可以收到有关已知漏洞的 Dependabot 警报。\n                \"Not all dependencies are automatically detected for ecosystems like Gradle. GitHub Actions adds your dependencies using the\": \"并非所有依赖项都会自动检测到，例如 Gradle 这样的生态系统。GitHub Actions 会通过\",\n                \"dependency submission API\": \"依赖项提交 API\",\n                \"so you can receive Dependabot alerts for known vulnerabilities.\": \"添加您的依赖项，这样您就可以收到有关已知漏洞的 Dependabot 警报。\",\n            \"View in Marketplace\": \"去市场查看\",\n\n            // \"Dependencies\": \"依赖项\",\n            \"Search all dependencies\": \"搜索所有依赖项\",\n                \"Suggested filters\": \"建议筛选\",\n\n            \"These dependencies are defined in\": \"这些依赖项被定义在\",\n            \"’s manifest files, such as\": \"的清单文件，例如\",\n            \"Dependencies defined in\": \"依赖项被定义在\",\n\n            // 发现已知漏洞\n            \"Dependencies defined in these manifest files have known security vulnerabilities and should be updated:\": \"这些清单文件中定义的依赖项具有已知的安全漏洞，应更新：\",\n            // [/(\\d+) vulnerabilities? found/, \"发现 $1 个漏洞\"],\n            \"Known security vulnerability in\": \"已知的安全漏洞，在\",\n                \"Known vulnerability found\": \"发现已知漏洞\",\n                \"update suggested:\": \"更新建议：\",\n                \"Always verify the validity and compatibility of suggestions with your codebase.\": \"始终验证建议与代码库的有效性和兼容性。\",\n\n            // [/(\\d+) more dependencies/, \"更多 $1 个依赖项\"],\n            // [/Load (\\d+) more…/, \"加载更多 $1个…\"],\n            \"Ecosystem\": \"生态系统\",\n                \"Filter by ecosystem\": \"按生态系统筛选\",\n\n            \"ProTip!\": \"专业提示！\",\n            \"What’s not been updated\": \"未更新内容\",\n                \"Supported ecosystems will have transitivity labels on their packages.\": \"受支持的生态系统将在其包上有传递性标签。\",\n\n            \"View transitive paths\": \"查看传递路径\",\n            \"You can view transitive paths for packages within supported ecosystems.\": \"您可以在受支持的生态系统中查看包的传递路径。\",\n            \"OK, got it\": \"好的，明白了\",\n            \"Show dependency options\": \"显示依赖选项\",\n                \"Show paths\": \"显示路径\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/View Dependabot alerts?/, \"查看 Dependabot 警报\"],\n        //[/Detected automatically on (.+)/, \"自动检测于$1\"],\n        [/· Detected automatically on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `· 自动检测于 ${translatedDate}`;\n        }],\n        [/(\\d+) Total/, \"$1 总计\"],\n        [/(\\d+) vulnerabilities? found/, \"发现 $1 个漏洞\"],\n        [/(\\d+) more dependencies/, \"更多 $1 个依赖项\"],\n        [/(\\d+) moderate · (\\d+) total/, \"$1 中风险 · $2 总计\"],\n        [/(\\d+) high · (\\d+) total/, \"$1 高风险 · $2 总计\"],\n        [/(\\d+) high/, \"$1 高风险\"],\n        [/(\\d+) moderate/, \"$1 中风险\"],\n        [/Load (\\d+) more…/, \"加载更多 $1个…\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Dependencies/, \"依赖项\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/dependents\"] = { // 仓库 -> 洞察 - 依赖项关系图 - 依赖者\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n        // 依赖项关系图 - 依赖者 /network/dependents\n            \"GitHub does not currently determine the dependents of private repositories\": \"GitHub 目前无法确定私有仓库的依赖者\",\n\n            \"Export SBOM\": \"导出 SBOM\",\n            // \"Dependents\": \"依赖者\",\n            \"We haven’t found any dependents for this repository yet.\": \"我们尚未找到此仓库的任何依赖者。\",\n            \"We’ll keep looking!\": \"我们会继续寻找！\",\n\n            \"Repositories that depend on\": \"依赖的仓库包括\",\n            \"Package:\": \"软件包：\",\n\n            \"These counts are approximate and may not exactly match the dependents shown below.\": \"这些计数是近似值，可能与下方显示的依赖项不完全匹配。\",\n\n            // [/(\\d+) Repositor(y|ies)/, \"$1 仓库\"],\n            // [/(\\d+) Packages?/, \"$1 软件包\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Repositor(y|ies)/, \"$1 仓库\"],\n        [/(\\d+) Packages?/, \"$1 软件包\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Dependents/, \"网络依赖者\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/updates\"] = { // 仓库 -> 洞察 - 依赖项关系图 - Dependabot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n\n        \"Export SBOM\": \"导出 SBOM\",\n        // 依赖项关系图 - Dependabot /network/updates\n            \"Enable Dependabot\": \"启用 Dependabot\",\n            \"Dependabot isn't enabled\": \"未启用 Dependabot\",\n            \"Dependabot isn't enabled on forks by default\": \"默认情况下，Dependabot 不会在复刻上启用。\",\n\n            \"Dependabot version updates aren't configured yet\": \"尚未配置 Dependabot 版本更新\",\n            \"Dependabot creates pull requests to keep your dependencies up-to-date.\": \"Dependabot 创建拉取请求以保持您的依赖项是最新的。\",\n            \"Create config file\": \"创建配置文件\",\n\n            \"Recent update jobs\": \"最近更新的工作\",\n\n            \"Dependabot version updates\": \"Dependabot 版本更新\",\n            \"automatically keep your application up-to-date by periodically updating dependencies to their latest versions.\": \"通过定期将依赖项更新到最新版本，自动保持应用的最新状态。\",\n            \"Dependabot security updates\": \"Dependabot 版本更新\",\n            \"can also help keep dependencies updated.\": \"还可以帮助保持依赖项更新。\",\n\n            \"Monitored dependency files\": \"受监控的依赖文件\",\n            \"Check for updates\": \"检查更新\",\n            \"Recent jobs\": \"近期工作\",\n            \"view logs\": \"查看日志\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/network\"] = { // 仓库 -> 洞察 - 网络图\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 网络图 /<user-name>/<repo-name>/network\n            // 键盘快捷键\n                \"Scroll left\": \"向左滑动\",\n                \"Scroll right\": \"向右滑动\",\n                \"Scroll up\": \"向上滑动\",\n                \"Scroll down\": \"向下滑动\",\n                \"Toggle visibility of the head labels\": \"切换头部标签的可见性\",\n                \"Scroll all the way left\": \"一直向左滑动\",\n                \"Scroll all the way right\": \"一直向右滑动\",\n                \"Scroll all the way up\": \"一直向上滑动\",\n                \"Scroll all the way down\": \"一直向下滑动\",\n\n            \"Network graph\": \"网络图\",\n            \"Timeline of the most recent commits to this repository and its network ordered by most recently pushed to.\": \"最近提交到此仓库的时间轴及其网络图按最近推送的顺序排序。\",\n\n            \"The repository network shows the 100 most recently pushed forks.\": \"仓库网络图显示最近推送的 100 个复刻。\",\n\n            \"Loading graph data\": \"加载网络图数据\",\n            \"Keyboard shortcuts available\": \"可用的键盘快捷键\",\n\n            \"Sorry, your browser doesn’t support the <canvas> element.\": \"抱歉，您的浏览器不支持 <canvas> 元素。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Graph/, \"网络图\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/members\"] = { // 仓库 -> 洞察 - 复刻\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 复刻 - 树形视图 /<user-name>/<repo-name>/network/members\n            \"switch to list view\": \"切换到列表视图\",\n\n            \"No one has forked this repository yet.\": \"目前，暂无人复刻该仓库。\",\n            \"Forks are a great way to contribute to a repository. After\": \"复刻是给该仓库做贡献的好方法。首先\",\n            \"forking a repository\": \"复刻仓库\",\n            \", you can send the original author a\": \"，然后您可向原作者发送\",\n            \"pull request\": \"拉取请求\",\n\n            \"Woah, this network is huge! We’re showing only some of this network’s repositories.\": \"哇，这个网络太庞大了! 我们只展示了这个网络中的一部分仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/forks\"] = { // 仓库 -> 洞察 - 复刻\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 复刻 - 列表视图 /<user-name>/<repo-name>/forks\n            \"Switch to tree view\": \"切换到树形视图\",\n\n            \"No one has forked this repository yet\": \"目前，暂无人复刻该仓库\",\n            \"Forks are a great way to contribute to a repository. After\": \"复刻是给该仓库做贡献的好方法。首先\",\n            \"forking a repository\": \"复刻仓库\",\n            \", you can send the original author a\": \"，然后您可向原作者发送\",\n            \"pull request\": \"拉取请求\",\n\n            \"No forked repositories found\": \"尚无复刻仓库\",\n            \"Try changing your filters, or search for\": \"尝试更改筛选器，或搜索\",\n            \"active forked repositories\": \"活跃的复刻仓库\",\n\n            \"Period:\": \"周期:\",\n                \"Filter by period\": \"筛选周期\",\n                \"1 month\": \"1 个月\",\n                \"6 months\": \"6 个月\",\n                \"1 year\": \"1 年\",\n                \"2 years\": \"2 年\",\n                \"5 years\": \"5 年\",\n                \"All time\": \"所有时间\",\n\n                \"Any repository that has not been created or updated during this period will be excluded.\": \"在此期间未被创建或更新的任何仓库将被排除在外。\",\n            \"Repository type:\": \"仓库类型:\",\n                \"Filter by repository type\": \"筛选仓库类型\",\n                \"None\": \"无\",\n                \"Active\": \"活跃\",\n                    \"Repositories with push activity\": \"有推送活动的仓库\",\n                \"Inactive\": \"不活跃\",\n                    \"Repositories with no push activity\": \"无推送活动的仓库\",\n                \"Network\": \"网络\",\n                    \"Forks of other forks\": \"其他复刻的复刻\",\n                \"Archived\": \"存档\",\n                    \"Archived repositories\": \"已存档的仓库\",\n                \"Starred\": \"星标\",\n                    \"Repositories with at least 1 star\": \"至少有 1 个星标的仓库\",\n            \"Sort:\": \"排序:\",\n                \"Sort by\": \"排序方式\",\n                    \"Most starred\": \"最多星标\",\n                    \"Recently updated\": \"最近更新\",\n                    \"Open issues\": \"打开的议题\",\n                    \"Open pull requests\": \"打开的拉取请求\",\n                \"Defaults Saved\": \"默认值已保存\",\n                \"Save Defaults\": \"保存默认值\",\n\n            \"Never updated\": \"从未更新\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Created/, \"创建于\"],\n        [/Updated/, \"更新于\"],\n        [/(Active|Inactive|Network|Archived|Starred) (\\+\\d+)/, function(all, type, num){\n            var typeKey = {\"Active\": \"活跃\",\"Inactive\": \"不活跃\",\"Network\": \"网络\",\"Archived\": \"存档\",\"Starred\": \"星标\"};\n            return typeKey[type] + ' ' + num;\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Forks/, \"复刻\"],\n        ],\n    },\n};\n\n// 洞察 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\nI18N[\"zh-CN\"][\"repository-settings-menu\"] = { // 仓库设置公共部分\n    \"static\": { // 静态翻译\n        // >>>>>>>>>>>>>>>>>>   仓库设置 公共部分  <<<<<<<<<<<<<<<<<<<\n            // 顶部提醒栏\n            \"Most repository settings are hidden for archived repositories. This repository must be unarchived to change them.\": \"对于存档的仓库，大多数仓库设置都是隐藏的。 必须解除仓库存档才能更改它们。\",\n            \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已由所有者存档。它现在是只读的。\",\n            \"Repository settings saved.\": \"仓库设置已保存。\",\n\n\n            // 左侧菜单\n            \"General\": \"通常\",\n\n            \"Access\": \"访问\",\n                // \"Collaborators\": \"协作者\",\n                \"Collaborators and teams\": \"协作者和团队\", // 组织仓库\n                \"Team and member roles\": \"团队和成员职责\",  // 组织仓库\n                \"Moderation options\": \"节制选项\",\n                    \"Interaction limits\": \"互动限制\",\n                    \"Code review limits\": \"代码审查限制\",\n\n            \"Code and automation\": \"代码与自动化\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"标签\",\n                \"Rules\": \"规则\",\n                    \"Rulesets\": \"规则集\",\n                // \"Actions\": \"操作\",\n                    // \"General\": \"通常\",\n                    \"Runners\": \"运行器\",\n                \"Models\": \"模型\",\n                \"Webhooks\": \"Web 钩子\",\n                // Copilot\n                    \"Code review\": \"代码审查\",\n                    \"Coding agent\": \"编程智能体\",\n                \"Environments\": \"环境\",\n                \"Pages\": \"GitHub Pages\",\n                \"Custom properties\": \"自定义属性\",  // 组织仓库\n\n            // \"Security\": \"安全\",\n                \"Advanced Security\": \"高级安全\",\n                \"Deploy keys\": \"部署密钥\",\n                \"Secrets and variables\": \"机密和变量\",\n\n            \"Integrations\": \"集成\",\n                \"GitHub Apps\": \"GitHub 应用\",\n                \"Email notifications\": \"邮件通知\",\n                \"Autolink references\": \"自动链接引用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/settings\"] = { // 仓库设置 - 通常 /<user-name>/<repo-name>/settings\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 通常 - 设置页面 /<user-name>/<repo-name>/settings ====================================\n            \"You don't have access to repository options\": \"你没有对仓库设置的访问权限\",\n                \"Check the sidebar for available repository settings.\": \"在侧边栏中查看可用的仓库设置。\",\n            \"Repository name\": \"仓库名称\",\n            \"Rename\": \"重命名\",\n                // [/is available./, \"名称可用。\"],\n                \"The repository\": \"仓库\",\n                \"already exists on this account.\": \"已经存在于此账户。\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                // 顶部提醒\n                \"Repository name was not changed\": \"仓库名称未更改\",\n\n                \"Renaming...\": \"重命名中…\",\n\n            \"Template repository\": \"模板库\",\n                \"Template repositories let users generate new repositories with the same directory structure and files.\": \"模板仓库允许用户生成具有相同目录结构和文件的新仓库。\",\n                \"A repository with LFS content cannot be used as a template.\": \"带有 LFS 内容的仓库不能作为模板使用。\",\n                \"Learn more about template repositories\": \"了解更多关于模板库的信息\",\n\n                \"Require contributors to sign off on web-based commits\": \"要求贡献者在基于 Web 的提交上签署\",\n                \"Enabling this setting will require contributors to sign off on commits made through GitHub’s web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"启用此设置将要求贡献者签署通过 GitHub 的 Web 界面所做的提交。签署是贡献者确认他们的提交符合仓库条款的一种方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"开发者来源证书（DCO）\",\n                \"Learn more about signing off on commits\": \"了解更多关于签署提交的信息\",\n\n            \"This setting is enabled on the upstream repository. Disabling this setting may block commits from being merged upstream.\": \"此设置在上游仓库中启用。禁用此设置可能会阻止提交向上游合并。\",\n\n            \"Default branch\": \"默认分支\",\n            \"The default branch is considered the “base” branch in your repository, against which all pull requests and code commits are automatically made, unless you specify a different branch.\": \"默认分支被认为是仓库中的 “基础” 分支，所有的拉取请求和代码提交都是针对该分支进行的，除非您指定一个不同的分支。\",\n            \"Rename branch\": \"重命名分支\",\n                // 重命名分支对话框\n                \"Rename this branch\": \"重命名分支\",\n                \"Rename\": \"重命名\",\n                \"to:\": \"为：\",\n                // [/is already the branch name./, \"已经是分支的名称了。\"],\n                // [/Your branch name will be/, \"您的分支的名称将重命名为\"],\n                \"Most projects name the default branch\": \"大多数项目将默认分支名为\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 该分支存在来自其他分支的拉取请求时\n                        \"Will update\": \"将更新\",\n                        \"pull request targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"pull requests targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"branch protection rule that explicitly targets\": \"条分支保护规则明确针对\",\n\n                    // 该分支存在用于其他分支的拉取请求时\n                        \"Will close\": \"将关闭\",\n                        \"open pull request for this branch.\": \"个该分支的拉取请求。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"将取消当前发布的 GitHub Pages 站点。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您当前的 GitHub Pages 站点将被取消发布。重命名分支上的新提交将再次发布 GitHub Pages 站点。\",\n\n                    \"Will not update your members' local environments.\": \"不会更新您成员的本地环境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不会更新您成员的本地环境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成员将不得不手动更新他们的本地环境。我们会在他们访问仓库时通知他们，或者您可以共享以下命令。\",\n                \"Saving…\": \"保存中…\",\n\n            \"Switch to another branch\": \"切换到另一分支\",\n                // 分支切换对话框\n                \"Switch default branch to another branch\": \"将默认分支切换到另一分支\",\n                // [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"选择另一分支作为 $1 的默认分支而不是\"], // 分支切换 对话框\n                \"Switch default branch\": \"切换默认分支\",\n                \"Filter branches\": \"筛选分支\",\n                \"default\": \"默认\",\n                // 更新默认分支对话框\n                \"Update default branch\": \"更新默认分支\",\n                \"Changing your default branch\": \"更改您的默认分支\",\n                \"can have unintended consequences that can affect new pull requests and clones.\": \"可能会产生意想不到的后果，影响新的拉取请求和克隆。\",\n                \"I understand, update the default branch.\": \"我明白了，依然更新默认分支\",\n                // 顶部提醒\n                    // [/Default branch changed to ([^ ])/, \"默认分支更改为 $1\"]\n\n            // 发行版\n                \"Enable release immutability\": \"启用发行版不可修改\",\n                    \"Disallow assets and tags from being modified once a release is published.\": \"禁止在发布发行版后修改资产和标签。\",\n\n            \"Social preview\": \"社交预览\",\n            // 关于私有库提醒\n            \"You can upload a social image, but it will not be visible publicly while\": \"您可以上传社交图片，但当\",\n            \"is private.\": \"是私密时，它不会公开显示。\",\n            \"Upload an image to customize your repository’s social media preview.\": \"上传图像以自定义仓库的社交媒体预览。\",\n            \"Images should be at least 640×320px (1280×640px for best display).\": \"图片至少应为 640×320 像素（1280×640 像素以获得最佳显示效果）。\",\n            \"Download template\": \"下载模板\",\n            \"Edit\": \"编辑\",\n                \"Upload an image…\": \"上传图片…\",\n                \"Remove image\": \"删除图片\",\n\n            \"Features\": \"功能\",\n            // \"Wikis\": \"\",\n                \"Wikis host documentation for your repository.\": \"Wikis 为您的仓库托管文档。\",\n                \"Restrict editing to collaborators only\": \"仅限协作者进行编辑\",\n                \"Restrict editing to users in teams with push access only\": \"仅限具有推送访问权限的团队中的成员进行编辑\", //组织仓库\n                    \"Public wikis will still be readable by everyone.\": \"公共 Wikis 仍然可供所有人阅读。\",\n\n            // 私人库 启用 Wiki 提醒\n                \"Upgrade or make this repository public to enable Wikis\": \"升级或公开此仓库，以启用 Wiki\",\n                \"GitHub Wikis is a simple way to let others contribute content. Any GitHub user can create and edit pages to use for documentation, examples, support, or anything you wish.\": \"GitHub Wikis 是一种让他人贡献内容的简单方法。任何 GitHub 用户都可以创建和编辑页面，用于文档、示例、支持或任何您想要的东西。\",\n                // \"Upgrade\": \"升级\",\n                    \"Learn more about wikis\": \"了解更多关于 Wiki 的信息\",\n\n            // 议题\n            \"Issues integrate lightweight task tracking into your repository. Keep projects on track with issue labels and milestones, and reference them in commit messages.\": \"议题将轻量级任务跟踪集成到您的仓库中。使用议题标签和里程碑保持项目正常运行，并在提交消息中引用它们。\",\n            \"Get organized with issue templates\": \"使用议题模板进行组织\",\n            \"Give contributors issue templates that help you cut through the noise and help them push your project forward.\": \"为贡献者提供议题模板，帮助您消除干扰并帮助他们推进您的项目。\",\n            \"Set up templates\": \"设置模板\",\n\n            \"Allow forking\": \"允许复刻\", // 组织仓库\n            \"If disabled, existing forks will be unaffected.\": \"如果禁用，现有复刻将不受影响。\", // 组织仓库\n\n            // 赞助\n            \"Sponsorships\": \"赞助\",\n            \"Sponsorships help your community know how to financially support this repository.\": \"赞助可帮助您的社区了解如何在资金上支持此仓库。\",\n            \"Display a \\\"Sponsor\\\" button\": \"显示 “赞助” 按钮\",\n            \"Add links to GitHub Sponsors or third-party methods your repository accepts for financial contributions to your project.\": \"添加指向 GitHub 赞助者或您的仓库接受的第三方收款链接，以便为您的项目提供资金捐助。\",\n            \"Set up sponsor button\": \"设置赞助按钮\",\n            \"Edit funding links\": \"编辑赞助链接\",\n\n            // 项目\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的项目可以帮助您组织工作并确定其优先次序。您可以为特定的功能工作、全面的路线图、甚至是发布清单创建项目\",\n\n            \"Preserve this repository\": \"保留这个仓库\",\n            \"Include this code in the\": \"将此代码包含在\",\n            \"GitHub Archive Program\": \"GitHub 存档计划中\",\n\n            \"Table of contents\": \"目录\",\n            \"Autogenerate table of contents for markdown files in this repository. the table of contents will be displayed near the top of the file.\": \"自动生成此仓库中 Markdown 文件的目录。目录将显示在文件顶部附近。\",\n\n            // \"Discussions\": \"讨论\",\n            \"Discussions is the space for your community to have conversations, ask questions and post answers without opening issues.\": \"讨论是您的社区进行对话、提问和发布答案的地方，而无需打开议题。\",\n            \"Get started with Discussions\": \"开始讨论\",\n            \"Engage your community by having discussions right in your repository, where your community already lives\": \"通过在您的社区已经存在的仓库中进行讨论来吸引您的社区\",\n            \"Set up discussions\": \"建立讨论\",\n\n            // 项目\n            \"Projects on GitHub are created at the repository owner's level (organization or user) and can be linked to a repository's Projects tab. Projects are suitable for cross-repository development efforts such as feature work, complex product roadmaps or even Issue triage.\": \"GitHub 上的项目是在仓库所有者级别（组织或用户）创建的，并且可以链接到仓库的项目选项卡。项目适用于跨仓库的开发工作，例如功能工作、复杂的产品路线图，甚至问题分流。\",\n\n            // 拉取请求\n            \"Pull requests allow others to suggest changes to your repository.\": \"拉取请求允许其他人向您的代码仓库提出更改建议。\",\n            \"Pull request permissions\": \"拉取请求权限\",\n                \"Creation allowed by:\": \"允许创建：\",\n                    \"All users\": \"所有用户\",\n                    \"Anyone can create a pull request\": \"任何人都可以创建拉取请求\",\n                    \"Collaborators only\": \"仅限协作者\",\n                    \"Only collaborators can create PRs\": \"仅协作者可以创建拉取请求\",\n                \"If restricted, pull requests will still be readable by everyone who can see this repository.\": \"即使设置了限制，所有能够查看此存储库的人仍然可以阅读拉取请求。\",\n\n            // \"Pull Requests\": \"拉取请求\",\n                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled. If you have linear history requirement enabled on any protected branch, you must enable squashing or rebasing.\": \"当合并拉取请求时，您可以允许合并提交、压缩或变基的任意组合。必须至少启用一个选项。如果您在任何受保护分支上启用了线性历史要求，则必须启用压缩或变基。\",\n\n                \"You must select at least one option\": \"您必须至少选择一个选项\",\n                \"Allow merge commits\": \"允许合并提交\",\n                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"使用合并提交将所有从头部分支的提交添加到基础分支。\",\n                        \"Default commit message\": \"默认提交信息\",\n                            \"Presented when merging a pull request with merge.\": \"当合并拉取请求时时出现。\",\n                        \"Default message\": \"默认信息\",\n                        \"Pull request title\": \"拉取请求标题\",\n                        \"Pull request title and commit details\": \"拉取请求标题和提交详情\",\n                        \"Pull request title and description\": \"拉取请求标题和描述\",\n\n                \"Allow squash merging\": \"允许压缩合并\",\n                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"将来自头部分支的所有提交合并到基础分支中的单个提交中。\",\n                        // \"Default commit message\": \"默认提交信息\",\n                            \"Presented when merging a pull request with squash.\": \"当使用压缩合并拉取请求时显示。\",\n                        \"Default to pull request title and commit details\": \"默认为拉取请求标题和提交详细信息\",\n\n                    \"Default to PR title for squash merge commits\": \"默认将拉取请求的标题作为压缩合并提交的信息\",\n                    \"This will pre-populate the commit message with the PR title when performing a squash merge.\": \"在执行压缩合并时，将在提交信息中添加拉取请求的标题。\",\n\n                \"Allow rebase merging\": \"允许变基合并\",\n                    \"Add all commits from the head branch onto the base branch individually.\": \"将来自头部分支的所有提交单独添加到基础分支。\",\n\n                \"Control how and when users are prompted to update their branches if there are new changes available in the base branch.\": \"如果基础分支中有可用的新更改，则控制提示用户更新其分支的方式和时间。\",\n                \"Always suggest updating pull request branches\": \"始终建议更新拉取请求分支\",\n                    \"Whenever there are new changes available in the base branch, present an “update branch” option in the pull request.\": \"每当基础分支中有可用的新更改时，就在拉取请求中显示 “更新分支” 选项。\",\n\n                \"You can allow setting pull requests to merge automatically once all required reviews and status checks have passed.\": \"一旦所有必需的审查和状态检查都通过，您可以允许设置拉取请求自动合并。\",\n\n                \"Allow auto-merge\": \"允许自动合并\",\n                    \"Waits for merge requirements to be met and then merges automatically.\": \"等待满足合并要求，然后自动合并。\",\n                    \"Why is this option disabled?\": \"为什么该选项被禁用？\",\n\n                \"After pull requests are merged, you can have head branches deleted automatically.\": \"合并拉取请求后，您可以自动删除头部分支。\",\n\n                    \"Automatically delete head branches\": \"自动删除头部分支\",\n                        \"Deleted branches will still be able to be restored.\": \"删除的分支仍然可以恢复。\",\n\n            \"Archives\": \"档案\",\n            \"When creating source code archives, you can choose to include files stored using Git LFS in the archive.\": \"创建源代码存档时，您可以选择在存档中包含使用 Git LFS 存储的文件。\",\n\n            \"Include Git LFS objects in archives\": \"在档案中包含 Git LFS 对象\",\n            \"Git LFS usage in archives is billed at the same rate as usage with the client.\": \"归档中的 Git LFS 使用率与客户端的使用率相同。\",\n\n            \"Pushes\": \"推送\",\n            \"Limit how many branches and tags can be updated in a single push\": \"限制一次推送中可以更新多少个分支和标签\",\n                \"Pushes will be rejected if they attempt to update more than this.\": \"如果推送尝试更新超过该值，则推送将被拒绝。\",\n                \"Learn more about this setting\": \"了解更多关于此设置的信息\",\n                \", and send us your\": \"，并向我们发送您的\",\n                \"feedback\": \"反馈\",\n\n                \"Up to\": \"在一次推送中最多可以更新\",\n                \"branches and tags can be updated in a push\": \"个分支和标签\",\n\n                // 提醒\n                \"Must be a whole number between 2 and 1000\": \"必须是 2 到 1000 之间的整数\",\n\n            // 议题\n                \"After merging a pull request, linked issues can be closed automatically.\": \"合并拉取请求后，可以自动关闭关联议题。\",\n                    \"Auto-close issues with merged linked pull requests\": \"使用已合并的关联拉取请求自动关闭议题\",\n                        \"Whenever linked pull requests have merged, auto-close the issue.\": \"当关联的拉取请求被合并时，自动关闭该议题。\",\n\n            \"Danger Zone\": \"危险区\",\n            \"Change repository visibility\": \"更改仓库可见性\",\n            \"You cannot change the visibility of a fork. please\": \"您无法更改复刻仓库的可见性。请\",\n            \"Duplicate the repository\": \"复制仓库\",\n            \"For security reasons, you cannot change the visibility of a fork.\": \"出于安全原因，您无法更改复刻仓库的可见性。\",\n\n            // 更改仓库可见性对话框\n            \"Change visibility\": \"更改可见性\",\n                \"Change to private\": \"更改为私有\",\n                \"Change to public\": \"更改为公开\",\n            \"This repository is currently public.\": \"该仓库当前是公开的。\",\n            \"This repository is currently private.\": \"该仓库当前是私有的。\",\n            \"I want to make this repository public\": \"我想将此仓库设为公开\",\n                \"The code will be visible to everyone who can visit https://github.com\": \"所有可以访问 https://github.com 的人都可以看到代码\",\n                \"Attachments uploaded to this repository's issues and pull requests will not be accessible unless it is made private again.\": \"上传到此仓库的议题和拉取请求的附件将无法访问，除非再次设为私有。\",\n                \"Anyone can fork your repository.\": \"任何人都可以复刻您的仓库。\",\n                \"All push rulesets will be disabled.\": \"所有推送规则集都将被禁用。\",\n                \"Your changes will be published as activity.\": \"您的更改将作为活动发布。\",\n                \"Actions history and logs will be visible to everyone.\": \"操作历史和日志将对所有人可见。\",\n                \"Make this repository public\": \"我想将此仓库设为公开\",\n            \"I want to make this repository private\": \"我想将此仓库设为私有\",\n                \"Making this repository private could permanently erase these counts by removing stars and watchers associated to users that will no longer have access to this repository:\": \"该仓库私有化，将会通过解除星标者和关注者，删除这些计数。他们将无法访问该仓库：\",\n                    \"star\": \"星标者\",\n                    \"stars\": \"星标者\",\n                    \"watcher\": \"关注者\",\n                    \"watchers\": \"关注者\",\n                \"If you decide to make this repository public in the future, it will not be possible to restore these stars and watchers and this will affect its repository rankings.\": \"即使您决定将来公开此仓库，也无法恢复这些星标者和关注者，这将影响其仓库排名。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository.\": \"依赖项关系图和 Dependabot 警报将保持启用，并有权限对该仓库进行只读分析。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository. Any custom Dependabot alert rules will be disabled unless GitHub Advanced Security is enabled for this repository.\": \"依赖项关系图和 Dependabot 警报将继续启用，并允许对该仓库执行只读分析。除非为该仓库启用了 GitHub 高级安全功能，否则任何自定义的 Dependabot 警报规则都将被禁用。\",\n                \"Code scanning will become unavailable.\": \"代码扫描将变得不可用。\",\n                \"Current forks will remain public and will be detached from this repository.\": \"当前的复刻将保持公开，并将从该仓库中分离出来。\",\n                \"Make this repository private\": \"将此仓库设为私有\",\n                \"I have read and understand these effects\": \"我已阅读并理解这些影响\",\n\n                \"Warning: this is a destructive action\": \"警告：这是一个破坏性的行为\",\n                \"To confirm, type the number of stars on this repository in the box below\": \"要确认，请在下面的框中输入此仓库的星标数\",\n\n            \"Disable branch protection rules\": \"禁用分支保护规则\",\n                \"Disable branch protection rules enforcement and APIs\": \"禁用分支保护规则执行和 API\",\n\n                // 顶部提醒\n                    \"Branch protection settings saved.\": \"分支保护设置已保存。\",\n\n            // 禁用分支保护对话框\n                \"This will hide the branch protection settings and disable branch protection rules for this repository.\": \"这将隐藏分支保护设置，并禁用该仓库的分支保护规则。\",\n                \"Disabling branch protection rules allows you to enforce branch and tag protections exclusively with Repository Rules.\": \"禁用分支保护规则后，允许您仅使用仓库规则来执行分支和标签保护。\",\n\n                \"This action will disable:\": \"此操作将禁用：\",\n                    \"Branch protection rule enforcement\": \"分支保护执行\",\n                    \"Branch protection rule APIs\": \"分支保护 API\",\n                // [/(\\d+) branch protection rules?/, \"$1 项分支保护规则\"],\n                \"will be disabled as part of this action\": \"作为此操作的一部分将被禁用\",\n\n            \"Re-enable branch protection rules\": \"重新启用分支保护规则\",\n                \"Re-enable branch protection rules enforcement and APIs\": \"重新启用分支保护规则执行和 API\",\n\n            // 重新启用分支保护对话框\n                \"Re-enable branch protection\": \"重新启用分支保护\",\n                \"will be re-enabled as part of this action\": \"作为此操作的一部分将被重新启用\",\n\n            \"Transfer ownership\": \"转让所有权\",\n            \"Transfer\": \"转让\",\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"将此仓库转让给另一位用户或您可以创建仓库的组织。\",\n            \"Organization members cannot transfer repositories\": \"组织成员没有转让所有权的权限\",\n\n            \"Leave fork network\": \"离开复刻网络\",\n            \"Can't leave the fork network because this fork has child forks.\": \"无法离开复刻网络，因为此复刻有子复刻。\",\n            \"Can't detach forks larger than 1 GB.\": \"无法解除大于 1 GB 的复刻关联。\",\n            \"Unlink this repository from the fork network and make it standalone.\": \"将该仓库从复刻网络中解除关联，使其成为独立仓库。\",\n            \"Detach is in progress.\": \"分离中。\",\n            // 顶部提醒\n                \"Detaching this repository.\": \"分离此仓库…\",\n\n            \"Archive this repository\": \"存档仓库\",\n            \"Mark this repository as archived and read-only.\": \"将此仓库标记为已存档和只读。\",\n\n            // 存档仓库对话框\n            \"Archive repository\": \"存档仓库\",\n            \"This repository will become read-only.\": \"该仓库将设置为只读。\",\n            \"You will still be able to fork the repository and unarchive it at any time.\": \"您仍然可以随时访问复刻仓库并取消存档。\",\n            \"Unexpected bad things will happen if you don’t read this!\": \"如果您不阅读此说明，将会发生意想不到的事情！\",\n            \"All scheduled workflows will stop running.\": \"所有预定的工作流程将停止运行。\",\n            \"Security features will be unavailable:\": \"安全功能将无法使用：\",\n            \"Code scanning\": \"代码扫描\",\n            \"Before you archive, please consider:\": \"在您存档之前，请考虑：\",\n            \"Updating any repository settings\": \"更新仓库设置\",\n            \"Closing all open issues and pull requests\": \"关闭所有打开的议题和拉取请求\",\n            \"Making a note in your README\": \"在您的 README 中做个说明\",\n            \"Please type\": \"请键入\",\n            \"to confirm.\": \"进行确定。\",\n            \"I understand the consequences, archive this repository\": \"我明白后果，依然存档该仓库\",\n            // \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已由所有者存档。它现在是只读的。\",\n\n            // 顶部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的仓库 “$1” 已成功存档。\"], //仓库存档\n\n            \"Unarchive this repository\": \"解除仓库存档\",\n            \"Mark this repository as unarchived and read-write.\": \"将此仓库标记为未存档和可读写。\",\n\n            // 解除仓库存档对话框\n            \"Unarchive repository\": \"解除仓库存档\",\n            \"This will make\": \"这将使\",\n            \"read-write.\": \"可读写。\",\n            \"Once unarchived, the following can be modified and commented on:\": \"一旦解除存档，就可以对以下内容进行修改和评论：\",\n            \"Pull Requests\": \"拉取请求\",\n            \"Labels\": \"标签\",\n            \"Releases\": \"发行版\",\n            \"Milestones\": \"里程碑\",\n            \"Past due by\": \"已经过期于\",\n            \"Security features will become available:\": \"安全功能将不可用：\",\n            \"I understand the consequences, unarchive this repository\": \"我明白后果，依然解除该仓库存档\",\n\n            \"Delete this repository\": \"删除仓库\",\n            \"Once you delete a repository, there is no going back. Please be certain.\": \"您一旦删除仓库，将再也无法恢复。请确认。\",\n            \"Organization members cannot delete repositories.\": \"组织成员没有删除仓库的权限\",\n\n            // 离开复刻网络对话框\n                \"This will permanently remove the fork relationship to the upstream repository\": \"这将永久移除与上游仓库的复刻关系：\",\n                \"will become a standalone repository and will no longer be able to fetch upstream updates or propose changes to the upstream repository\": \"将成为独立仓库，无法再获取上游更新，也无法向原仓库提交更改：\",\n                \"cannot rejoin the fork network.\": \"不能重新加入复刻网络。\",\n\n            // 顶部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的仓库 “$1” 已成功解除存档。\"], //仓库解除存档\n\n            // 删除仓库对话框\n                // [/Delete/, \"删除\"],\n                \"I want to delete this repository\": \"我想删除这个仓库\",\n\n                \"This will permanently delete the\": \"这将永久删除\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations will be permanently deleted.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有协作者关联。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有协作者关联。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all team associations.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有团队关联。\", // 组织仓库\n                \"This will not change your billing plan. If you want to downgrade, you can do so in your Billing Settings.\": \"这并不会更改您的结算方案。 如果您想降级，可以在结算设置中进行降级。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/is available./, \"名称可用。\"],\n        [/Make ([^ ]+) private/, \"将 $1 设为私有\"],\n        [/Make ([^ ]+) public/, \"将 $1 设为公开\"],\n        [/(\\d+) stars?/, \"$1 位星标者\"],\n        [/(\\d+) watchers?/, \"$1 位关注者\"],\n        [/To confirm, type \\\"([^ ]+)\\\" in the box below/, \"要确认，请在下面的方框中输入 \\\"$1\\\"\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的仓库 “$1” 已成功存档。\"], //仓库存档\n        [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的仓库 “$1” 已成功解除存档。\"], //仓库解除存档\n        [/is already the branch name./, \"已经是分支的名称了。\"],\n        [/Your branch name will be/, \"您的分支的名称将重命名为\"],\n        [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"选择另一分支作为 $1 的默认分支而不是\"], // 分支切换 对话框\n        [/(\\d+) branch protection rules?/, \"$1 项分支保护规则\"], // 禁用/重启启用分支保护\n        [/Delete/, \"删除\"],\n        [/Default branch changed to ([^ ])/, \"默认分支更改为 $1\"],\n        // 离开复刻网络\n        [/Forked from ([^ ])/, \"复刻自 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"General\": \"通常\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/access\"] = { // 仓库设置 - 协作者/(组织仓库 协作者和团队) /<user-name>/<repo-name>/settings/access\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 协作者 / 协作者和团队 - 访问管理页面 /<user-name>/<repo-name>/settings/access ====================================\n            // 顶部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"仓库邀请 URL 仅适用于受邀请的用户。您只能与受邀请的用户共享此 URL。\",\n\n                // [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"删除 $1 为 $2 的协作者\"],\n\n            \"Who has access\": \"谁有权访问\",\n            \"public repository\": \"公共仓库\",\n            \"Public repository\": \"公共仓库\",\n            \"This repository is public and visible to anyone\": \"该仓库是公开的，对任何人都可见\",\n            \"This repository is public and visible to anyone.\": \"该仓库是公开的，对任何人都可见。\",\n            \"private repository\": \"私有仓库\",\n            \"Only those with access to this repository can view it.\": \"只有拥有该仓库访问权的用户才能查看。\",\n            \"Manage\": \"管理\",\n            \"Manage visibility\": \"管理\", // 内容重复，直接省略\n\n            \"Direct access\": \"直接访问\",\n            \"collaborators have access to this repository. Only you can contribute to this repository.\": \"个协作者有权访问此仓库。 只有您可以对此仓库做出贡献。\",\n            \"has access to this repository.\": \"位有权访问此仓库。\",\n            \"have access to this repository.\": \"有权访问此仓库。\",\n            // 组织仓库\n            \"teams or members have access to this repository. Only\": \"团队或成员有权访问此仓库。只有\",\n            \"Owners\": \"所有者\",\n            \"can contribute to this repository.\": \"可以为此仓库做出贡献。\",\n\n            // 组织仓库\n            \"Base role\": \"基本角色\",\n            \"All\": \"所有\",\n            // [/(\\d+) members?/, \"$1 位成员\"],\n            \"can access this repository.\": \"可以访问此仓库。\",\n\n            \"Manage access\": \"访问管理\",\n            \"You haven't invited any collaborators yet\": \"您尚未邀请任何协作者\",\n            // \"invite a collaborator\": \"邀请协作者\",\n            \"Add people\": \"添加他人\",\n                // 邀请对话框\n                    \"Add people to\": \"添加成员到\",\n                    \"Search by username, full name, or email\": \"搜索用户名、全名、或电子邮箱\",\n                    \"Find people\": \"查找\",\n                    \"Invite collaborator\": \"邀请协作者\",\n                    \"Add to repository\": \"添加到仓库\",\n                    // 顶部提醒\n                        // [/([^ ]+) has been added as a collaborator on the repository./, \"$1 已被添加为仓库的协作者。\"],\n\n\n            \"Select all\": \"全选\",\n                // [/(\\d+) members? selected…/, \"已选择 $1 名成员...\"],\n                \"Change role\": \"切换角色\",\n                \"Remove Access\": \"删除访问权限\",\n            \"Type\": \"类型\",\n                \"Filter by member type\": \"按成员类型筛选\",\n                    \"Organization Members\": \"组织成员\",\n                    \"Outside Collaborators\": \"外部协作者\",\n                    \"Pending Invitations\": \"待处理邀请\",\n            \"Find a collaborator…\": \"寻找协作者……\",\n            \"Find people or a team…\": \"寻找用户或一个团队……\",\n            \"No Results\": \"无结果\",\n\n            \"Pending Invite\": \"待处理邀请\",\n            \"Invite expired\": \"已过期\",\n            // [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回复\"],\n            \"Remove\": \"移除\",\n\n            // 移除邀请对话框\n                \"Confirm you want to remove this invitation\": \"确认移除邀请\",\n                \"Once canceled,\": \"取消后，\",\n                \"will no longer be invited to access the\": \"将不再被邀请访问\",\n                \"repository.\": \"仓库。\",\n                // [/Cancel ([^ ]+)'s invitation/, \"取消邀请 $1\"],\n                // 顶部提醒\n                    // [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀访问该仓库。\"],\n\n            // 删除协助者对话框\n                \"Confirm you want to remove this member\": \"确认要删除此成员？\",\n                \"Once removed,\": \"一旦删除，\",\n                \"will no longer have direct access to this repository. However, they may still have access to this repository if they are a member of a team that is granted access.\": \"将不再能直接访问此仓库。但是，如果他们是获准访问该仓库的团队成员，则仍可访问该仓库。\",\n                // 顶部提醒\n                    // [/Remove ([^ ]+) from this repository/, \"从该仓库移除 $1\"],\n\n            // 组织仓库\n            \"Create team\": \"创建组织\",\n            \"You haven't added any teams or people yet\": \"您尚未添加团队或成员\",\n            \"Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access.\": \"组织所有者可以管理成员和团队对组织仓库的访问。团队维护者也可以管理一个团队的仓库访问。\",\n            \"Learn more about organization access\": \"了解更多关于组织访问权限的信息\",\n            \"Add teams\": \"添加团队\",\n\n            // \"Add people to\": \"添加成员到\",\n            \"Select a member above\": \"在上面选择一名成员\",\n            \"Add teams to\": \"添加团队\",\n            \"Search by team name\": \"按团队名称搜索\",\n            \"Select a team above\": \"在上面选择一个团队\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) members? selected…/, \"已选择 $1 名成员...\"],\n        [/(\\d+) members?/, \"$1 位成员\"],\n        [/(\\d+) collaborators?/, \"$1 位协作者\"],\n        [/(\\d+) invitations?/, \"$1 个邀请\"],\n        [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回复\"],\n        [/([^ ]+) • Collaborator/, \"$1 • 协作者\"],\n        [/([^ ]+) • Invite collaborator/, \"$1 • 邀请协作者\"],\n        [/(\\d+) users?/, \"$1 个用户\"],\n        [/(\\d+) teams?/, \"$1 个团队\"],\n        [/Add people to ([^ ]+)/, \"添加人员到 $1\"],\n        [/([^ ]+) has been added as a collaborator on the repository./, \"已将 $1 添加为仓库协作者。\"],\n        [/Cancel ([^ ]+)'s invitation/, \"取消邀请 $1\"],\n        [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀访问该仓库。\"],\n        [/Remove ([^ ]+) from this repository/, \"从该仓库移除 $1\"],\n        [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"删除 $1 为 $2 的协作者\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Manage access\": \"访问管理\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/interaction_limits\"] = { // 仓库设置 - 互动限制 /<user-name>/<repo-name>/settings/interaction_limits\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 审查设置 (仓库)互动限制 /<user-name>/<repo-name>/settings/interaction_limits\n        // 同全局 同组织仓库\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repository (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n\n            \"You can restrict repository interactions across your account in your\": \"您可以限制仓库交互，在您的账户设置中的\",\n            \"account settings\": \"互动限制\",\n\n            // [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 组织中限制仓库交互\"],\n\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with the repository.\": \"最近创建账户的用户将无法与该仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously\": \"以前从未\",\n                \"committed\": \"提交\",\n                // [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到该仓库的 $1 分支的用户将无法与该仓库互动。\"],\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not\": \"不是\",\n                // \"collaborators\": \"\",\n                // \"of one of your repositories will not be able to interact with that repository.\": \"\",\n                \"will not be able to interact with the repository.\": \"将无法与该仓库互动。\",\n\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            \"Organization members\": \"组织成员\", //组织仓库\n\n            \"Enable\": \"启用\",\n            \"Disable\": \"禁用\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n\n            // 顶部提醒\n            \"Repository interaction limit settings saved.\": \"仓库交互限制设置已保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n            [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 组织中限制仓库交互\"],\n            [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到该仓库的 $1 分支的用户将无法与该仓库互动。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"临时互动限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/code_review_limits\"] = { // 仓库设置 - 代码审查限制 /<user-name>/<repo-name>/settings/code_review_limits\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // Code review limits 代码审查限制 /<user-name>/<repo-name>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in this repository.\": \"限制允许批准或请求更改该仓库中拉取请求的用户。\",\n            \"Limit to users explicitly granted\": \"限于明确授予\",\n            \"read\": \"读取\",\n            \"or higher access\": \"或 更高权限的用户\",\n                \"When enabled, only users explicitly granted access to this repository will be able to submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews will continue to be able to do so.\": \"启用后，只有被明确授予该仓库访问权的用户才能提交 “批准” 或 “请求更改” 的拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n\n            // 顶部提醒\n                \"Code review limit settings saved.\": \"代码审查限制设置已保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"代码审查限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/branches\"] = { // 仓库设置 - 分支 /<user-name>/<repo-name>/settings/branches\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 分支管理页面 /<user-name>/<repo-name>/settings/branches====================================\n            \"Branch protection rules\": \"分支保护规则\",\n            \"Add rule\": \"添加规则\",\n\n            \"Define branch protection rules to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging. New to branch protection rules?\": \"定义分支保护规则，以禁止强制推送，防止分支被删除，并可选择要求在合并前进行状态检查。初次接触分支保护规则？\",\n\n            \"No branch protection rules defined yet.\": \"尚未定义分支保护规则。\",\n\n            \"You haven't protected any of your branches\": \"您没有保护任何分支\",\n            \"Classic branch protections have not been configured\": \"未配置经典分支保护\",\n            \"Define branch rules to disable force pushing, prevent branches from being deleted, or require pull requests before merging. Learn more about\": \"定义分支规则，以禁止强制推送、防止分支被删除或在合并前要求提交拉取请求。了解更多：\",\n            //\"Define a protected branch rule to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging.\": \"定义分支保护规则，以禁用强制推送，防止分支被删除，并可选择在合并前进行状态检查。\",\n            \"repository rules\": \"仓库规则\",\n            \"protected branches\": \"受保护分支\",\n            \"Add branch ruleset\": \"添加分支规则集\",\n            \"Add classic branch protection rule\": \"添加经典分支保护规则\",\n            //\"Learn more about protected branches\": \"了解更多关于受保护分支的信息\",\n            //\"Add branch protection rule\": \"添加分支保护规则\",\n\n            // 私有库 分支保护 未执行 提醒\n            \"Your protected branch rules won't be enforced on this private repository until you move to a GitHub Team or Enterprise organization account.\": \"您的受保护分支规则不会在这个私有仓库上执行，直到您迁移至 GitHub 团队或企业组织账户。\",\n            \"Move to an organization\": \"转移到组织\",\n\n            \"Not enforced\": \"未执行\",\n                \"Rules on your private repos can't be enforced until you upgrade to GitHub Team or Enterprise.\": \"在您升级到 GitHub 团队或企业版之前，您的私有仓库的规则不能被执行。\",\n\n            // [/Currently applies to (\\d+) branchs?/, \"目前适用于 $1 个分支\"], // 仓库设置-->分支-->分支保护规则\n\n            // 删除分支保护规则\n            \"Delete this branch protection rule?\": \"删除此分支保护规则？\",\n            \"This action cannot be undone.\": \"此操作无法撤消。\",\n            \"I understand, delete this rule.\": \"我明白了，依然删除此规则。\",\n\n            // 顶部提醒\n            \"Branch protection rule settings saved.\": \"分支保护规则设置已保存。\",\n            \"Branch protection rule created.\": \"分支保护规则已创建。\",\n            \"Branch protection rule was successfully deleted.\": \"分支保护规则已成功删除。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"], // 仓库设置-->分支-->分支保护规则\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches/, \"设置 · 分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/branch_protection_rules\"] = { // 仓库设置 - 分支/分支保护 /<user-name>/<repo-name>/settings/branch_protection_rules\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 新建分支保护规则 页面 /<user-name>/<repo-name>/settings/branch_protection_rules/new====================================\n            \"Branch protection rule\": \"分支保护规则\",\n\n            \"Protect your most important branches\": \"保护您最重要的分支\",\n                \"Branch protection rules\": \"分支保护规则\",\n                \"define whether collaborators can delete or force push to the branch and set requirements for any pushes to the branch, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送到分支，并对任何推送到分支的内容设置要求，如通过状态检查或线性提交历史。\",\n\n                \"Your GitHub Free plan\": \"您的 GitHub 免费计划\",\n                \"Your organization's GitHub Free plan\": \"您组织的 GitHub 免费计划\", // 组织仓库\n                \"can only enforce rules on its public repositories, like this one.\": \"只能对其公共仓库执行规则，例如这个。\",\n\n                \"Your rules won't be enforced on this private repository until you\": \"您的规则将不会在此私有仓库上强制执行，直到您\",\n                \"move to a GitHub Team or Enterprise organization account\": \"迁移至 GitHub 团队或企业组织账户\",\n                \"upgrade this organization to GitHub Team or Enterprise\": \"升级组织至 GitHub 团队或企业版\", // 组织仓库\n\n            \"Branch name pattern\": \"分支名称模式\",\n            \"Protect matching branches\": \"保护匹配的分支\",\n                \"Require a pull request before merging\": \"要求在合并前提交拉取请求\",\n                    \"When enabled, all commits must be made to a non-protected branch and submitted via a pull request before they can be merged into a branch that matches this rule.\": \"启用后，所有提交都必须提交到不受保护的分支，并通过拉取请求提交，然后才能将它们合并到与此规则匹配的分支中。\",\n                    \"Require approvals\": \"要求批准审查\",\n                        \"When enabled, pull requests targeting a matching branch require a number of approvals and no changes requested before they can be merged.\": \"启用后，针对匹配分支的拉取请求需要若干次批准审查，并且在合并之前无需请求更改。\",\n                        \"Required number of approvals before merging:\": \"合并前所需的批准审查数量：\",\n                    \"Dismiss stale pull request approvals when new commits are pushed\": \"当新的提交被推送时，撤销陈旧的拉取请求批准审查\",\n                        \"New reviewable commits pushed to a matching branch will dismiss pull request review approvals.\": \"推送到匹配分支的新的可审查提交将撤销之前的拉取请求的批准审查。\",\n                    \"Require review from Code Owners\": \"要求代码所有者进行审查\",\n                        \"Require an approved review in pull requests including files with a designated code owner.\": \"要求在拉取请求中进行批准审查，包括有指定代码所有者的文件。\",\n                    \"Restrict who can dismiss pull request reviews\": \"限制谁可以驳回拉取请求审查\", // 组织仓库\n                        \"Specify people, teams, or apps allowed to dismiss pull request reviews.\": \"指定允许驳回拉取请求审查的人员、团队或应用。\",\n                        \"People, teams, or apps that can dismiss reviews.\": \"允许驳回审查的人员、团队或应用。\",\n                            \"Organization and repository administrators\": \"组织和仓库管理员\",\n                                \"These members can always dismiss.\": \"这些成员总是允许驳回。\",\n                                \"These members cannot dismiss.\": \"这些成员不允许驳回。\",\n                    \"Allow specified actors to bypass required pull requests\": \"允许指定的参与者绕过所需的拉取请求\", //组织仓库\n                        \"Specify people, teams, or apps who are allowed to bypass required pull requests.\": \"指定允许绕过所需拉取请求的人员、团队或应用。\",\n                        \"People, teams, or apps who can bypass required pull requests\": \"允许绕过所需拉取请求的人员、团队或应用\",\n                            // \"Organization and repository administrators\": \"组织和仓库管理员\",\n                                \"These members can always bypass required pull requests.\": \"这些成员始终允许绕过所需的拉取请求。\",\n                                \"These members cannot bypass.\": \"这些成员不允许绕过。\",\n                    \"Require approval of the most recent reviewable push\": \"要求批准最新的可审查推送\",\n                        \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可审核推送是否必须得到推送者以外的其他人批准。\",\n                \"Require status checks to pass before merging\": \"要求在合并前通过状态检查\",\n                    \"Choose which\": \"选择那些\",\n                    \"status checks\": \"状态检查\",\n                    \"must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed.\": \"必须通过，才能将分支合并到符合此规则的分支。启用后，提交的内容必须先推送到另一个分支，然后在状态检查通过后再合并或直接推送到符合此规则的分支。\",\n\n                    \"Require branches to be up to date before merging\": \"要求分支在合并前必须是最新的\",\n                        \"This ensures pull requests targeting a matching branch have been tested with the latest code. This setting will not take effect unless at least one status check is enabled (see below).\": \"这可确保针对匹配分支的拉取请求已使用最新的代码进行了测试。除非启用了至少一个状态检查，否则这个设置不会生效（见下文）。\",\n\n                    \"Do not require status checks on creation\": \"不要求在创建时进行状态检查\",\n                        \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允许创建仓库和分支，否则检查将禁止创建。\",\n\n                    \"Search for status checks in the last week for this repository\": \"搜索此仓库最近一周的状态检查\",\n                    \"Status checks that are required.\": \"需要进行的状态检查。\",\n\n                    \"No status checks found\": \"尚无状态检查\",\n                        \"Sorry, we couldn’t find any status checks in the last week for this repository.\": \"抱歉，我们最近一周未找此仓库的任何状态检查。\",\n                    \"Learn more about status checks\": \"了解更多关于状态检查的信息\",\n                \"Require conversation resolution before merging\": \"要求在合并前解决对话\",\n                    \"When enabled, all conversations on code must be resolved before a pull request can be merged into a branch that matches this rule.\": \"启用后，必须先解决所有有关代码的对话，然后才能将拉取请求合并到与此规则匹配的分支中。\",\n                    \"Learn more about requiring conversation completion before merging\": \"了解更多关于合并前要求完成对话的信息\",\n                \"Require signed commits\": \"要求带签名的提交\",\n                    \"Commits pushed to matching branches must have verified signatures.\": \"推送到匹配分支的提交必须带有经过验证的签名。\",\n                \"Require linear history\": \"要求线性历史记录\",\n                    \"Prevent merge commits from being pushed to matching branches.\": \"防止合并后的提交被推送到匹配的分支。\",\n                \"Require merge queue\": \"要求合并队列\", // 组织仓库\n                    \"Merges to matching branches must be performed via a merge queue.\": \"对匹配分支的合并必须通过合并队列执行。\",\n                    \"Make sure to configure your CI to build branches created by the queue.\": \"确保您配置 CI 以构建由队列创建的分支\",\n                    \"Merge method\": \"合并模式\",\n                        \"Method to use when merging changes from queued pull requests.\": \"合并来自列队拉取请求的更改时使用的模式。\",\n                        \"Method:\": \"模式：\",\n                            \"Merge commit\": \"合并提交\",\n                            \"Squash and merge\": \"压缩合并\",\n                            \"Rebase and merge\": \"变基合并\",\n                    \"Build concurrency\": \"构建并发\",\n                        \"Limit the number of queued pull requests building at the same time.\": \"限制同时构建的列队拉取请求的数量。\",\n                        \"Maximum pull requests to build:\": \"构建的最大拉取请求：\",\n                    \"Merge limits\": \"合并限制\",\n                        \"Limit the number of pull requests merged into the protected branch in a single merge operation.\": \"限制在单个合并操作中合并到受保护分支的拉取请求的数量。\",\n                        \"Minimum pull requests to merge:\": \"合并的最小拉取请求：\",\n                            \"or after\": \"或\",\n                            \"minutes\": \"分钟之后\",\n                        \"Maximum pull requests to merge:\": \"合并的最大拉取请求：\",\n                        \"Only merge non-failing pull requests\": \"仅合并未失败的拉取请求\",\n                    \"Status check timeout\": \"状态检查超时\",\n                        \"Time (in minutes) a required status check must report a conclusion within to not be considered failed.\": \"所需的状态检查必须在规定的时间（以分钟为单位）内报告结论才不会被视为失败。\",\n                        \"Consider check failed after:\": \"考虑检查失败：\",\n                \"Require deployments to succeed before merging\": \"要求部署成功后再合并\",\n                    \"Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule.\": \"选择必须成功部署到哪些环境才能将分支合并到与此规则匹配的分支中。\",\n                            \"No deployment environments found\": \"尚无部署环境\",\n                            \"Sorry, we couldn’t find any deployments for this repository.\": \"抱歉，我们未找到此仓库的任何部署。\",\n                            \"Deployment environments found in this repository\": \"在此仓库中找到的部署环境\",\n                                \"Required\": \"必须\",\n                \"Lock branch\": \"锁定分支\",\n                    \"Branch is read-only. Users cannot push to the branch.\": \"分支为只读。用户无法推送到该分支。\",\n                \"Do not allow bypassing the above settings\": \"不允许绕过上述设置\",\n                    \"The above settings will apply to administrators and custom roles with the \\\"bypass branch protections\\\" permission.\": \"上述设置将应用于具有 “绕过分支保护” 权限的管理员和自定义角色。\",\n                \"Restrict who can push to matching branches\": \"限制谁可以推送到匹配的分支\", // 组织仓库\n                    \"Specify people, teams, or apps allowed to push to matching branches. Required status checks will still prevent these people, teams, and apps from merging if the checks fail.\": \"指定允许推送到匹配分支的人员、团队或应用。如果检查失败，所需的状态检查仍然会阻止这些人、团队和应用的合并。\",\n\n                    \"Restrict pushes that create matching branches\": \"限制创建匹配分支的推送\",\n                        \"Only people, teams, or apps allowed to push will be able to create new branches matching this rule.\": \"只有允许推送的人员、团队或应用才能创建符合此规则的新分支。\",\n                        \"People, teams, or apps with push access\": \"允许推送的人员、团队或应用\",\n                            \"Organization administrators, repository administrators, and users with the Maintain role.\": \"组织管理员、仓管理员和具有维护角色的用户。\",\n                            \"Organization administrators, repository administrators, the merge queue, and users with the Maintain role.\": \"组织管理员、仓管理员、合并队列和具有维护角色的用户。\", // 开启需要合并队列\n                                \"Admins can always push. Users with the Maintain role can push when required status checks pass.\": \"管理员始终允许推送。具有维护角色的用户允许在所需状态检查通过时推送。\",\n                                \"These members can push when required status checks pass.\": \"这些成员允许在所需状态检查通过时推送。\",\n\n            \"Rules applied to everyone including administrators\": \"规则适用于每个人，包括管理员\",\n                \"Allow force pushes\": \"允许强制推送\",\n                    \"Everyone\": \"所有人\",\n                        \"Permit force pushes for all users with push access.\": \"允许所有有推送权限的用户强制推送。\",\n                    \"Specify who can force push\": \"指定谁允许强制推送\",\n                        \"Only these people, teams, or apps are allowed to force push.\": \"仅允许这些人、团队或应用强制推送。\",\n                        \"Search for people, teams, or apps\": \"搜索人员、团队或应用\",\n                        \"People, teams, or apps who can force push\": \"允许强制推送的人员、团队或应用\",\n                            \"Organization and repository administrators (automatic)\": \"组织和仓库管理员（自动）\",\n                \"Allow deletions\": \"允许删除\",\n                    \"Allow users with push access to delete matching branches.\": \"允许具有推送权限的用户删除匹配的分支。\",\n\n            // 顶部提醒\n            \"Branch protection rule created.\": \"分支保护规则已创建。\",\n\n        // 编辑分支保护规则 页面 /<user-name>/<repo-name>/settings/branch_protection_rules/<id>===================================\n            // [/Applies to (\\d+) branchs?/, \"应用于 $1 个分支\"], //仓库设置-->分支-->分支保护规则-->编辑\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Applies to (\\d+) branch(?:es|)/, \"应用于 $1 个分支\"], //仓库设置-->分支-->分支保护规则-->编辑\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches · New branch protection rule/, \"设置 · 分支 · 新建分支保护规则\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/tag_protection\"] = { // 仓库设置 - 标签 /<user-name>/<repo-name>/settings/tag_protection\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 标签 页面 /<user-name>/<repo-name>/settings/tag_protection===============================\n            // 顶部提醒\n                \"Tag protection rule created.\": \"标签保护规则已创建。\",\n                \"Tag protection rule deleted.\": \"标签保护规则已删除。\",\n\n            // 顶部窗口\n            \"Level up your tag protections with Repository Rules\": \"利用仓库规则提升标签保护级别\",\n            \"Protected tags are being deprecated. To continue protecting tags, please migrate to a tag ruleset by August 30th. You can learn more about the sunset in our\": \"受保护的标签将被废弃。要继续保护标签，请在 8 月 30 日前迁移到标签规则集。您可以在我们的\",\n            \"changelog\": \"更改日志\",\n            \"and can get started now by migrating to rulesets.\": \"中了解更多信息，并且可以立即开始迁移到规则集。\",\n\n            \"Protected tags\": \"受保护的标签\",\n            \"Protected tags are available to Pro, Team, and Enterprise users\": \"专业版、团队版和企业版用户均可使用受保护的标签\", //私有库\n            \"Protected tags can only be created or deleted by users with enhanced permissions defined by your organization owners.\": \"受保护的标签只能由具有由组织所有者定义的增强权限的用户创建或删除。\",\n            \"Learn more about protected tags\": \"了解更多关于受保护标签的信息\",\n            \"No protected tag rules exist yet\": \"尚无受保护的标签规则存在\",\n            \"Protected tags have been deprecated\": \"受保护的标签已弃用\",\n            \"Go to rulesets to create new tag rules\": \"转到规则集创建新标签规则\",\n            \"New rule\": \"新建规则\",\n            \"Import to rulesets\": \"导入规则集\",\n                \"Import your tag protection rules into repository rules\": \"将您的标签保护规则导入仓库规则集\",\n                    \"Migrate your protected tags to one or more repository rulesets. This will implement the same tag protections you currently have today. Once created, the tag rulesets can take advantage of new ruleset features:\": \"将受保护的标签迁移到一个或多个仓库规则集。这将实现与当前相同的标签保护。创建后，标签规则集可利用规则集的新功能：\",\n                        \"Requiring status checks to pass\": \"要求通过状态检查\",\n                        \"Signed commits\": \"要求签名提交\",\n                        \"Requiring linear history\": \"需要线性历史\",\n                        \"and more\": \"和更多\",\n                    \"Create separate rulesets for creating and deleting protected tags\": \"为创建和删除受保护的标签创建单独的规则集\",\n                        \"Users and Teams with at least Maintainer role will be able to create new protected tags. Administrators will be able to delete protected tags. This is the same behavior as existing tag protections.\": \"至少具有维护者角色的用户和团队可以创建新的受保护标签。管理员可以删除受保护标签。这与现有标签保护的行为相同。\",\n                    \"Create one ruleset for all protected tag operations\": \"为所有受保护的标签操作创建规则集\",\n                        \"Administrators will be able to create and delete protected tags.\": \"管理员可以创建和删除受保护的标签。\",\n\n                    \"Learn more about tag rulesets\": \"了解更多关于标签规则集的信息\",\n                    \"Import\": \"导入\",\n\n            \"Delete tag protection rule\": \"删除标签保护规则\",\n                \"Delete tag protection rule?\": \"删除标签保护规则？\",\n                    \"Are you sure you want to delete this tag protection rule? Anyone who can write to this repository will be able to create tags with this pattern.\": \"您确定要删除此标签保护规则吗？任何可以写入此仓库的人都能够使用此模式创建标签。\",\n                    \"Yes, remove this tag protection rule\": \"是的，删除此标签保护规则\",\n\n            // [/(\\d+) rules?/, \"$1 条规则\"],\n\n        // 新建标签规则 页面 /<user-name>/<repo-name>/settings/tag_protection/new===============================\n            \"/ New rule\": \"/ 新建规则\",\n            \"Tag name pattern\": \"标签名称模式\",\n            \"Example: You can use\": \"示例：您可以使用\",\n            \"to target tags named\": \"来锁定名为\",\n            \", and so on.\": \"等的标签。\",\n\n            \"Add rule\": \"添加规则\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) rules?/, \"$1 条规则\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Tags/, \"设置 · 标签\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/rules\"] = { // 仓库设置 - 规则 - 规则集 /<user-name>/<repo-name>/settings/rules\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 仓库规则集页面 /<user-name>/<repo-name>/rules\n        // 规则集 页面 /<user-name>/<repo-name>/settings/rules\n            \"Your rulesets won't be enforced on this private repository until you upgrade this organization account to GitHub Team.\": \"在您将此组织账户升级到 GitHub Team 之前，您的规则集不会在此私有仓库上强制执行。\", // 组织 私有仓库\n\n            \"Organization rulesets won't be enforced\": \"在您将该组织账户升级到 GitHub 企业版之前，\", // 组织设置\n            \"until you upgrade this organization account to GitHub Enterprise.\": \"组织规则集将不会强制执行。\", // 组织设置\n\n            \"You haven't created any rulesets\": \"您尚未创建任何规则集\",\n                \"Define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送，并为任何推送设置要求，如通过状态检查或线性提交历史。\",\n                \"Learn more about rulesets.\": \"了解更多关于规则集的信息。\",\n\n            \"Rulesets\": \"规则集\",\n            \"New ruleset\": \"新建规则集\",\n                \"New branch ruleset\": \"新建分支规则集\",\n                    \"New tag ruleset\": \"新建标签规则集\",\n                    \"Import a ruleset\": \"导入规则集\",\n                        \"Choose a JSON file to upload\": \"选择 JSON 文件上传\",\n\n            \"Ruleset\": \"规则集\",\n\n            \"No rulesets have been added yet\": \"尚未添加任何规则集\",\n\n            \"All\": \"全部\",\n            \"• targeting\": \"• 针对\",\n            \", targeting\": \", 针对\",\n\n            \"Ruleset menu\": \"菜单\",\n                \"Export ruleset\": \"导出规则集\",\n                \"Delete ruleset\": \"删除规则\",\n\n            // 删除规则对话框\n                \"Delete ruleset?\": \"删除规则？\",\n                \"Are you sure you want to delete this ruleset? This action cannot be undone.\": \"您确定要删除此规则集吗？此操作无法撤消。\",\n\n        // 新建分支规则 /<user-name>/<repo-name>/settings/rules/new?target=branch&enforcement=disabled\n        // 新建标签规则 /<user-name>/<repo-name>/settings/rules/new?target=tag&enforcement=disabled\n        // 编辑规则 /<user-name>/<repo-name>/settings/rules/<id>\n\n            \"Protect your most important branches\": \"保护您最重要的分支\",\n                \"define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送，并为任何推送设置要求，如通过状态检查或线性提交历史。\",\n\n            \"Tag\": \"标签\",\n            \"tags\": \"标签\",\n\n            \"Open additional options\": \"打开其他选项\",\n            \"Export\": \"导出\",\n            \"ruleset\": \"规则\",\n\n            \"Name\": \"名称\",\n                \"Ruleset name cannot be empty\": \"规则集名称不能为空\",\n            \"Enforcement status\": \"执行状态\",\n                \"Active\": \"激活\",\n                    \"This ruleset will be enforced\": \"规则将被执行\",\n                    \"Rules will be enforced\": \"规则将被执行\",\n                    \"Enable Organization Ruleset\": \"启用组织规则集\", // 组织设置\n                        \"I want rules enforced on targeted repositories in this ruleset.\": \"我希望此规则集中强制执行针对目标仓库的规则。\",\n                \"Evaluate\": \"评估\", // 组织设置\n                    \"Evaluate Rulesets to trial rules and view insights\": \"评估规则集，以试用规则并查看洞察\",\n                    \"Evaluate mode is only available to Enterprise organizations.\": \"评估模式仅适用于企业组织。\",\n                        \"Upgrade to Enterprise to use this mode.\": \"升级到企业版即可使用此模式。\",\n                \"Disabled\": \"禁用\",\n                    \"Do not evaluate or enforce rules\": \"不评估或执行规则\",\n                    \"This ruleset will not be enforced\": \"规则将不被执行\",\n\n            \"Bypass list\": \"旁路列表\",\n                \"Exempt roles, teams, and apps from this ruleset by adding them to the bypass list.\": \"通过将角色、团队和应用程序添加到旁路列表，使其免受此规则集的约束。\",\n                \"Exempt roles, teams, or apps from this ruleset by adding them to the bypass list.\": \"通过将角色、团队或应用程序添加到旁路列表，使其免受此规则集的约束。\",\n                \"Exempt roles or teams from this ruleset by adding them to the bypass list\": \"通过将角色或团队添加到旁路列表，使其免受此规则集的约束\", // 组织设置\n                \"Add bypass\": \"添加旁路\",\n\n                 // 添加旁路对话框\n                    \"Choose which roles, teams, and apps can bypass this ruleset\": \"选择哪些角色、团队和应用可绕过此规则集\",\n\n                    \"Filter items\": \"筛选\",\n                    \"Filter bypass actors\": \"筛选旁路参与者\",\n\n                    \"No suggestions\": \"暂无建议\",\n\n                    \"Suggestions\": \"建议\",\n                        \"Role\": \"角色\",\n                        \"App\": \"应用\",\n                        \"Organization admin\": \"组织管理员\",\n                        \"Repository admin\": \"仓库管理员\",\n                        \"Maintain\": \"维护\",\n                        \"triage\": \"分类\",\n                        \"maintain\": \"维持\",\n                        \"read\": \"读取\",\n                        \"write\": \"写入\",\n                        \"vulnerability_reporter\": \"漏洞报告员\",\n                        \"Add selected\": \"添加所选\",\n\n                \"Always allow\": \"总是允许\",\n                \"Allow for pull requests only\": \"仅允许拉取请求\",\n                    \"Allow\": \"允许\",\n                        \"Always\": \"总是\",\n                        \"For pull requests only\": \"仅适用于拉取请求\",\n                    \"Delete bypass\": \"删除旁路\",\n\n                \"Bypass list is empty\": \"旁路列表为空\",\n\n            \"Target branches\": \"目标分支\",\n                \"Which branches should be matched?\": \"哪些分支应匹配？\",\n                \"Which branches do you want to make a ruleset for?\": \"您想为哪些分支制定规则集？\",\n                \"Which tags do you want to make a ruleset for?\": \"您想为哪些标签制定规则集？\", // 标签\n                \"Which repositories and branches do you want to make a ruleset for?\": \"您想为哪些仓库和分支创建规则集？\", // 组织设置\n\n                // 组织设置\n                    \"Target repositories\": \"目标仓库\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset. Use inclusion patterns to expand the list of repositories under this ruleset. Use exclusion patterns to exclude repositories.\": \"仓库目标确定哪些仓库将受此规则集保护。使用包含模式来扩展此规则集下的仓库列表。使用排除模式来排除仓库。\",\n                    \"Target:\": \"目标：\",\n                        \"All repositories\": \"所有仓库\",\n                            \"Target all repositories within the organization\": \"组织内的所有仓库\",\n                        \"Dynamic list by name\": \"按名称动态列表\",\n                            \"Target repositories based on name\": \"基于名称的目标仓库\",\n                        \"Dynamic list by property\": \"按属性动态列表\",\n                            \"Target repositories based on properties\": \"基于属性的目标仓库\",\n                        \"Select repositories\": \"选择仓库\",\n                            \"Target a specific list of selected repositories\": \"以选定仓库列表为目标\",\n\n                    \"Targeting criteria\": \"目标规则\",\n                        \"No repository targets have been added yet\": \"尚未添加仓库目标\",\n\n                        \"Prevent renaming of target repositories\": \"防止重命名目标仓库\",\n                            \"When checked, target repositories can only be renamed by those with bypass permission.\": \"选中后，目标仓库只能由具有绕过权限的成员重命名。\",\n\n                            \"Repositories that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的仓库将成为该规则集的目标。\",\n                            \"Repositories that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的仓库将成为该规则集的目标。\",\n\n                    \"Target by repository properties\": \"目标仓库属性\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset.\": \"仓库目标确定哪些仓库将受此规则集保护\",\n\n                        \"Add a target\": \"添加目标\",\n                            \"Include by property\": \"包含属性\",\n                            \"Exclude by property\": \"排除属性\",\n\n                        \"Include repositories by custom property\": \"按自定义属性包含仓库\",\n                            \"Custom properties allow you to create your own metadata for repositories\": \"自定义属性允许您为仓库创建自己的元数据，\",\n                            \"include\": \"包括\",\n                            \"exclude\": \"排除\",\n                            \"Property\": \"属性\",\n                                \"Select property\": \"选择属性\",\n                                    \"Select an item\": \"选择项目\",\n                                        \"Search for properties\": \"搜索属性\",\n\n                    // 仓库\n                        \"Select items\": \"选择项目\",\n                            \"Repos\": \"仓库\",\n\n                \"Target\": \"目标\",\n                    \"Branch targeting determines which branches will be protected by this ruleset. Use inclusion patterns to expand the list of branches under this ruleset. Use exclusion patterns to exclude branches.\": \"分支目标确定哪些分支将受此规则集保护。使用包含模式来扩展该规则集下的分支列表。使用排除模式来排除分支。\",\n                    \"Tag targeting determines which tags will be protected by this ruleset. Use inclusion patterns to expand the list of tags under this ruleset. Use exclusion patterns to exclude tags.\": \"标签目标确定哪些标签将受此规则集保护。使用包含模式来扩展该规则集下的标签列表。使用排除模式来排除标签。\", // 标签\n\n                    \"Branch targeting criteria\": \"目标分支规则\",\n                    \"Tag targeting criteria\": \"目标标签规则\", // 标签\n                        \"Add target\": \"添加目标\",\n                            \"Include default branch\": \"包含默认分支\",\n                            \"Include all branches\": \"包含所有分支\",\n                            \"Include all tags\": \"包含所有标签\", // 标签\n                            \"Target by inclusion or exclusion pattern\": \"通过包含或排除规则确定目标\",\n                            \"Include by pattern\": \"包含规则\",\n                            \"Exclude by pattern\": \"排除规则\",\n\n                        \"Branch targeting has not been configured\": \"尚未配置分支目标\",\n                        \"Tag targeting has not been configured\": \"尚未配置标签目标\", // 标签\n\n                        \"Default\": \"默认\",\n                        \"All branches\": \"所有分支\",\n                        \"All tags\": \"所有标签\", // 标签\n\n                        \"Applies to\": \"适用于\",\n                        \"target:\": \"个目标：\",\n                        \"targets:\": \"个目标：\",\n                        \"Targets have changed and branch match list will update on save.\": \"目标已更改，分支匹配列表将在保存时更新。\",\n                            \"Targets have changed and\": \"目标已更改，\",\n                            \"branch\": \"分支\",\n                            \"branches\": \"分支\",\n                            \"match list will update on save.\": \"匹配列表将在保存时更新。\",\n                        \"targets including\": \"个目标，包括\",\n                        \"Targets have changed and repository match list will update on save.\": \"目标已更改，仓库匹配列表将在保存时更新。\", // 组织设置\n\n                        // 包含规则 对话框\n                            \"Branches that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的分支将成为该规则集的目标。\",\n                            \"Tags that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的标签将成为该规则集的目标。\", // 标签\n                            \"naming pattern\": \"命名规则\",\n                                \"Pattern cannot be empty\": \"规则不能为空\",\n                            \"Example patterns: \\\"\": \"示例：\\\"\",\n                            \"Learn more about fnmatch\": \"了解更多关于 fnmatch 的信息\",\n                            \"Add Inclusion pattern\": \"添加包含规则\",\n\n                        // 排除规则 对话框\n                            \"Branches that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的分支将成为该规则集的目标。\",\n                            \"Tags that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的标签将成为该规则集的目标。\", // 标签\n                            \"Add Exclusion pattern\": \"添加排除规则\",\n\n            // 规则\n            \"Branch rules\": \"分支规则\",\n            \"rules\": \"规则\",\n                \"Which rules should be applied to the targets that you have selected?\": \"哪些规则应适用于您选择的目标？\",\n                \"Which rules should be applied?\": \"应适用哪些规则？\",\n\n                \"protections\": \"保护\",\n                    \"Restrict creations\": \"限制创建\",\n                        \"Only allow users with bypass permission to create matching refs.\": \"只允许具有绕过权限的用户创建匹配的引用。\",\n                    \"Restrict updates\": \"限制更新\",\n                        \"Only allow users with bypass permission to update matching refs.\": \"只允许具有绕过权限的用户更新匹配的引用。\",\n                            \"Allow fork syncing\": \"允许复刻仓库同步\",\n                                 \"Branch can pull changes from its upstream repository\": \"分支可从上游仓库中拉取更改\",\n                    \"Restrict deletions\": \"限制删除\",\n                        \"Only allow users with bypass permissions to delete matching refs.\": \"只允许具有绕过权限的用户删除匹配的引用。\",\n                    \"Require linear history\": \"需要线性历史\",\n                        \"Prevent merge commits from being pushed to matching refs.\": \"防止合并后的提交被推送到匹配的引用。\",\n                    \"Require merge queue\": \"要求合并队列\", // 组织仓库\n                        \"Merges must be performed via a merge queue.\": \"合并必须通过合并队列进行。\",\n                        \"Merge method\": \"合并模式\",\n                            \"Method to use when merging changes from queued pull requests.\": \"合并来自列队拉取请求的更改时使用的模式。\",\n\n                                \"Merge commit\": \"合并提交\",\n                                \"Squash and merge\": \"压缩合并\",\n                                \"Rebase and merge\": \"变基合并\",\n                        \"Build concurrency\": \"构建并发\",\n                            \"Limit the number of queued pull requests requesting checks and workflow runs at the same time.\": \"限制同时请求检查和工作流运行的队列拉取请求数量。\",\n                        \"Minimum group size\": \"最小分组数\",\n                            \"The minimum number of PRs that will be merged together in a group.\": \"将合并为一组的拉取请求的最小数量。\",\n                        \"Maximum group size\": \"最大分组数\",\n                            \"The maximum number of PRs that will be merged together in a group.\": \"将合并为一组的拉取请求的最大数量。\",\n                        \"Wait time to meet minimum group size (minutes)\": \"达到最小分组数的等待时间（分钟）\",\n                            \"The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.\": \"第一个拉取请求添加到队列后，合并队列为达到最小分组规模所需的等待时间。超过这一时间后，将忽略最小分组大小，合并一个较小的分组\",\n                        \"Require all queue entries to pass required checks\": \"要求所有队列条目通过必要的检查\",\n                            \"When this setting is disabled, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.\": \"禁用此设置后，只有位于合并组头部的提交（即包含组内所有拉取请求变更的提交）必须通过合并所需的检查。\",\n                        \"Status check timeout (minutes)\": \"状态检查超时（分钟）\",\n                            \"Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed\": \"报告结论所需的状态检查的最长时间。超过此时间后，未报告结论的检查将被视为失败\",\n                    \"Require deployments to succeed\": \"要求部署成功\",\n                        \"Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.\": \"选择必须成功部署到哪些环境，之后才能将引用推送到与此规则匹配的引用中。\",\n                        \"Hide additional settings\": \"隐藏附加设置\",\n                        \"Show additional settings\": \"显示附加设置\",\n                            \"Search for deployment environments\": \"搜索部署环境\",\n                            \"No deployment environments have been added\": \"未添加部署环境\",\n                            \"Learn more about deployment environments\": \"了解更多关于部署环境的信息\",\n                    \"Require signed commits\": \"要求带签名的提交\",\n                        \"Commits pushed to matching refs must have verified signatures.\": \"推送到匹配引用的提交必须带有经过验证的签名。\",\n                    \"Require a pull request before merging\": \"要求在合并前提交拉取请求\",\n                        \"Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.\": \"要求所有的提交都必须在非目标分支上进行，并在合并前通过拉取请求提交。\",\n                            \"Required approvals\": \"要求批准审查\",\n                                \"The number of approving reviews that are required before a pull request can be merged.\": \"拉取请求合并前所需的批准审查次数。\",\n                            \"Dismiss stale pull request approvals when new commits are pushed\": \"当新的提交被推送时，撤销陈旧的拉取请求批准审查\",\n                                \"New, reviewable commits pushed will dismiss previous pull request review approvals.\": \"推送新的可审查提交将撤销之前的拉取请求的批准审查。\",\n                            \"Require review from Code Owners\": \"要求代码所有者进行审查\",\n                                \"Require an approving review in pull requests that modify files that have a designated code owner.\": \"要求对具有指定代码所有者的文件修改的拉取请求中进行批准审查。\",\n                            \"Require approval of the most recent reviewable push\": \"要求批准最新的可审查推送\",\n                                \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可审核推送是否必须得到推送者以外的其他人批准。\",\n                            \"Require conversation resolution before merging\": \"要求在合并前解决对话\",\n                                \"All conversations on code must be resolved before a pull request can be merged.\": \"在合并拉取请求之前，必须解决有关代码的所有对话。\",\n                            \"Request pull request review from Copilot\": \"请求 Copilot 进行拉取请求审查\",\n                                \"Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review.\": \"如果作者有权访问 Copilot 代码审查，则自动请求 Copilot 对新拉取请求进行审查。\",\n\n                            \"Allowed merge methods\": \"允许合并方法\",\n                                \"Merge, Squash\": \"合并，压缩\",\n                                \"Merge, Squash, Rebase\": \"合并，压缩，变基\",\n                                \"Merge, Rebase, Squash\": \"合并，变基，压缩\",\n                                \"Merge, Rebase, Squash\": \"合并，变基，压缩\",\n                                \"Merge, Rebase\": \"合并，变基\",\n                                \"Squash, Rebase\": \"压缩，变基\",\n                                \"Squash, Rebase, Merge\": \"压缩，变基，合并\",\n                                \"Squash, Merge\": \"压缩，合并\",\n                                \"Squash, Merge, Rebase\": \"压缩，合并，变基\",\n                                \"Rebase, Merge\": \"变基，合并\",\n                                \"Rebase, Squash\": \"变基，压缩\",\n                                \"Rebase, Squash, Merge\": \"变基，压缩，合并\",\n                                \"Rebase, Merge, Squash\": \"变基，合并，压缩\",\n                                \"Merge\": \"合并\",\n                                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"将所有来自头部分支的提交通过一次合并提交添加到基础分支。\",\n                                \"Squash\": \"压缩\",\n                                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"将头部分支上的所有提交合并为一个提交，然后将其集成到基础分支。\",\n                                \"Rebase\": \"变基\",\n                                    \"Add all commits from the head branch onto the base branch individually.\": \"将头部分支中的所有提交逐个添加到基础分支上。\",\n                                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled.\": \"在合并拉取请求时，您可以允许合并提交、压缩或变基这三种方式中的任意组合。至少启用其中一种选项。\",\n                    \"Require status checks to pass\": \"要求通过状态检查\",\n                        \"Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.\": \"更新引用之前必须选择通过哪些状态检查。启用后，提交必须首先推送到检查通过的另一个引用。\",\n                            \"Require branches to be up to date before merging\": \"要求分支在合并前必须是最新的\",\n                                \"Whether pull requests targeting a matching branch must be tested with the latest code. This setting will not take effect unless at least one status check is enabled.\": \"针对匹配分支的拉取请求，使用最新代码进行测试。至少启用一项状态检查，否则此设置不会生效。\",\n                                \"Do not require status checks on creation\": \"不要求在创建时进行状态检查\",\n                                    \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允许创建仓库和分支，否则检查将禁止创建。\",\n                                // \"Enter the name of a status check\": \"输入状态检查的名称\",\n                                    // [/Add '(.*)'/, \"添加 $1\"],\n                                \"No required checks\": \"无需进行必要的检查\",\n                                    \"Add checks\": \"添加检查\",\n                                        \"Add Checks\": \"添加检查\",\n                                            \"Search for checks\": \"搜索检查\",\n                                            \"No results\": \"无结果\",\n                                \"No checks have been added\": \"未添加任何检查\",\n                                \"Learn more about status checks\": \"了解更多关于状态检查的信息\",\n                    \"Block force pushes\": \"阻止强制推送\",\n                        \"Prevent users with push access from force pushing to refs.\": \"防止具有推送权限的用户强制推送到引用。\",\n                    \"Require code scanning results\": \"需要代码扫描结果\",\n                        \"Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning must be enabled and have results for both the commit and the reference being updated.\": \"选择哪些工具必须在更新引用之前提供代码扫描结果。配置后，代码扫描必须启用，并为提交和正在更新的引用提供结果。\",\n                        \"Required tools and alert thresholds\": \"所需工具和警报阈值\",\n                            \"Add tool\": \"添加工具\",\n                                \"Tool name\": \"工具名称\",\n                                \"Enter the name of a code scanning tool\": \"输入代码扫描工具名称\",\n                        \"Security alerts\": \"安全警报\",\n                            \"None\": \"无\",\n                            \"Critical\": \"关键\",\n                            \"High or higher\": \"高风险及以上\",\n                            \"Medium or higher\": \"中风险及以上\",\n                        \"Alerts\": \"警报\",\n                            \"Errors\": \"仅错误\",\n                            \"Errors and Warnings\": \"错误和警告\",\n                        \"Delete Tool\": \"删除工具\",\n                        \"Tools that must provide code scanning results for this rule to pass.\": \"必须提供代码扫描结果才能通过此规则的工具。\",\n                        \"Learn more about enabling code scanning.\": \"了解更多关于启用代码扫描的信息。\",\n\n                    \"Require code quality results\": \"要求代码质量结果\",\n                        \"Choose which severity levels of code quality results should block pull request merges. When configured, a code quality analysis must be done on the pull request before the changes can be merged.\": \"选择哪些代码质量结果严重级别应阻止拉取请求合并。配置后，必须在拉取请求上进行代码质量分析，才能合并更改。\",\n                        \"Severity\": \"严重级别\",\n                            \"Error\": \"错误\",\n                            \"Warning\": \"警告\",\n                            \"Warnings and higher\": \"警告及以上\",\n                            \"Notes and higher\": \"备注及以上\",\n                        \"The lowest severity level at which code quality reviews need to be resolved before commits can be merged.\": \"在合并提交之前，需要解决的最低严重级别代码质量审查。\",\n\n                    \"Automatically request Copilot code review\": \"自动请求 Copilot 代码审查\",\n                        \"Request Copilot code review for new pull requests automatically if the author has access to Copilot code review and their premium requests quota has not reached the limit.\": \"如果作者有权访问 Copilot 代码审查并且其高级请求配额尚未达到限制，则自动请求 Copilot 对新拉取请求进行代码审查。\",\n                        \"Review new pushes\": \"审查新的推送\",\n                        \"Copilot automatically reviews each new push to the pull request.\": \"Copilot 自动审查每个新的推送请求。\",\n                        \"Review draft pull requests\": \"审查草稿拉取请求\",\n                        \"Copilot automatically reviews draft pull requests before they are marked as ready for review.\": \"Copilot 自动审查草稿拉取请求，在标记为准备好审查之前。\",\n\n                    \"Manage static analysis tools in Copilot code review\": \"在 Copilot 代码审查中管理静态分析工具\",\n                        \"Copilot code review will include findings from the selected static analysis tools in its review comments.\": \"Copilot 代码审查将在其审查意见中包括所选静态分析工具的结果。\",\n\n                    // 组织设置\n                    \"Require workflows to pass before merging\": \"要求合并前，工作流通过状态检查\",\n                        \"Require all changes made to a targeted branch to pass the specified workflows before they can be merged.\": \"要求目标分支上的所有更改在合并前通过指定的工作流\",\n                        \"Workflow configurations\": \"工作流程配置\",\n                            \"No workflow configurations found\": \"尚无工作流配置\",\n\n                        \"Add workflow\": \"添加工作流\",\n                            \"Add required workflow\": \"添加所需的工作流\",\n                                // 仓库\n                                    \"Select a repository\": \"选择仓库\",\n                                \"Select branch or tag\": \"选择分支或标签\",\n                                    \"Branch or tag\": \"分支或标签\",\n                                    \"Pin to commit\": \"固定到提交\",\n                                        \"Always reference the current commit\": \"始终引用当前提交\",\n                                \"Enter a SHA\": \"输入 SHA\",\n                                    \"Enter a valid SHA\": \"输入有效的 SHA\",\n                                    \"Enter the SHA for the commit you want to reference\": \"输入要引用的提交的 SHA\",\n                                    \"Invalid SHA\": \"无效的 SHA\",\n                                \"Pick a workflow file\": \"选择工作流文件\",\n                                    \"Please select a workflow path\": \"请选择工作流路径\",\n\n            \"Restrictions\": \"限制\", // 组织设置\n                \"Restrict commit metadata\": \"限制提交元数据\",\n                    \"Restrict commit author email addresses, committer email addresses, commit message content, and other metadata\": \"限制提交作者电子邮箱地址、提交者电子邮箱地址、提交消息内容和其他元数据\",\n\n                    \"Metadata restrictions\": \"元数据限制\",\n                        \"No metadata restrictions have been added\": \"尚无元素限制\",\n                        \"Learn more about\": \"了解更多关于\",\n                        \"metadata\": \"元素\",\n                        \"restrictions\": \"限制\",\n\n                        \"Add restriction\": \"添加限制\",\n                            // 添加元数据限制 对话框\n                                \"Add a metadata restriction\": \"添加元数据限制\",\n                                    \"Applies To\": \"适用于\",\n                                        \"Commit message\": \"提交信息\",\n                                        \"Author email\": \"作者电子邮箱地址\",\n                                        \"Committer email\": \"提交者电子邮箱地址\",\n                                        \"Branch name\": \"分支名称\",\n                                    \"Requirement\": \"要求\",\n                                        \"Must\": \"必须\",\n                                        \"start with a matching pattern\": \"以匹配规则开头\",\n                                        \"end with a matching pattern\": \"以匹配规则结束\",\n                                        \"contain a matching pattern\": \"包含匹配规则\",\n                                        \"match a given regex pattern\": \"匹配给定的正则表达式规则\",\n                                        \"Must not\": \"不得\",\n                                    \"Matching pattern\": \"匹配规则\",\n                                    \"Description\": \"描述\",\n                                        // [/Commit message must start with a matching pattern/, \"提交信息必须以匹配规则开头\"],\n                                        // [/Commit message must end with a matching pattern/, \"提交信息必须以匹配规则结束\"],\n                                        // [/Commit message must contain with a matching pattern/, \"提交信息必须包含匹配规则\"],\n                                        // [/Commit message must match a given regex pattern/, \"提交信息必须匹配给定的正则表达式规则\"],\n                                        // [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配规则开头\"],\n                                        // [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配规则结束\"],\n                                        // [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配规则\"],\n                                        // [/Commit message must not match a given regex pattern/, \"提交信息不得匹配给定的正则表达式规则\"],\n\n                                        // [/Author email must start with a matching pattern/, \"作者电子邮箱地址必须以匹配规则开头\"],\n                                        // [/Author email must end with a matching pattern/, \"作者电子邮箱地址必须以匹配规则结束\"],\n                                        // [/Author email must contain a matching pattern/, \"作者电子邮箱地址必须包含匹配规则\"],\n                                        // [/Author email must match a given regex pattern/, \"作者电子邮箱地址必须匹配给定的正则表达式规则\"],\n                                        // [/Author email must not start with a matching pattern/, \"作者电子邮箱地址不得以匹配规则开头\"],\n                                        // [/Author email must not end with a matching pattern/, \"作者电子邮箱地址不得以匹配规则结束\"],\n                                        // [/Author email must not contain a matching pattern/, \"作者电子邮箱地址不得包含匹配规则\"],\n                                        // [/Author email must not match a given regex pattern/, \"作者电子邮箱地址不得匹配给定的正则表达式规则\"],\n\n                                        // [/Committer email must start with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则开头\"],\n                                        // [/Committer email must end with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则结束\"],\n                                        // [/Committer email must contain a matching pattern/, \"提交者电子邮箱地址必须包含匹配规则\"],\n                                        // [/Committer email must match a given regex pattern/, \"提交者电子邮箱地址必须匹配给定的正则表达式规则\"],\n                                        // [/Committer email must not start with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则开头\"],\n                                        // [/Committer email must not end with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则结束\"],\n                                        // [/Committer email must not contain a matching pattern/, \"提交者电子邮箱地址不得包含匹配规则\"],\n                                        // [/Committer email must not match a given regex pattern/, \"提交者电子邮箱地址不得匹配给定的正则表达式规则\"],\n\n                                        // [/Branch name must start with a matching pattern/, \"分支名称必须以匹配规则开头\"],\n                                        // [/Branch name must end with a matching pattern/, \"分支名称必须以匹配规则结束\"],\n                                        // [/Branch name must contain a matching pattern/, \"分支名称必须包含匹配规则\"],\n                                        // [/Branch name must match a given regex pattern/, \"分支名称必须匹配给定的正则表达式规则\"],\n                                        // [/Branch name must not start with a matching pattern/, \"分支名称不得以匹配规则开头\"],\n                                        // [/Branch name must not end with a matching pattern/, \"分支名称不得以匹配规则结束\"],\n                                        // [/Branch name must not contain a matching pattern/, \"分支名称不得包含匹配规则\"],\n                                        // [/Branch name must not match a given regex pattern/, \"分支名称不得匹配给定的正则表达式规则\"],\n\n                                    \"How this rule will appear to your\": \"这个规则将如何在您的\",\n                                    \"organization\": \"组织\",\n                                    \"'s users throughout\": \"内的用户中显示\",\n                \"Restrict branch names\": \"限制分支名\",\n\n            \"Revert\": \"撤销\",\n            \"Reverting...\": \"撤销…\",\n            \"changes\": \"更改\",\n            \"change\": \"更改\",\n\n            // 右下角提示\n                \"Unauthorized\": \"未经授权\",\n                \"Ruleset created\": \"规则集已创建\",\n                \"Changes reverted\": \"更改已恢复\",\n                \"No changes have been made\": \"未作任何更改\",\n                \"Invalid rules: 'Required status checks'\": \"无效规则：“必需的状态检查”\",\n                \"This\": \"此\",\n                    \"does not target any resources and will not be applied.\": \"未针对任何资源，将不会生效。\",\n                \"Ruleset updated\": \"规则已更新\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Applies to (\\d+) target/, \"适用于 $1 个目标\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) branch rules? • targeting (\\d+) branch(es)?/, \"$1 条分支规则 • 针对 $1 个分支\"],\n        [/(\\d+) branch rules?/, \"$1 条分支规则\"],\n        [/(\\d+) rules?/, \"$1 条规则\"],\n        [/(\\d+) branch(?:es|)?/, \"$1 个分支\"],\n        [/(\\d+) tags?/, \" $1 个标签\"],\n        [/Add '(.*)'/, \"添加 $1\"],\n        [/Commit message must start with a matching pattern/, \"提交信息必须以匹配规则开头\"],\n        [/Commit message must end with a matching pattern/, \"提交信息必须以匹配规则结束\"],\n        [/Commit message must contain with a matching pattern/, \"提交信息必须包含匹配规则\"],\n        [/Commit message must match a given regex pattern/, \"提交信息必须匹配给定的正则表达式规则\"],\n        [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配规则开头\"],\n        [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配规则结束\"],\n        [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配规则\"],\n        [/Commit message must not match a given regex pattern/, \"提交信息不得匹配给定的正则表达式规则\"],\n        [/Author email must start with a matching pattern/, \"作者电子邮箱地址必须以匹配规则开头\"],\n        [/Author email must end with a matching pattern/, \"作者电子邮箱地址必须以匹配规则结束\"],\n        [/Author email must contain a matching pattern/, \"作者电子邮箱地址必须包含匹配规则\"],\n        [/Author email must match a given regex pattern/, \"作者电子邮箱地址必须匹配给定的正则表达式规则\"],\n        [/Author email must not start with a matching pattern/, \"作者电子邮箱地址不得以匹配规则开头\"],\n        [/Author email must not end with a matching pattern/, \"作者电子邮箱地址不得以匹配规则结束\"],\n        [/Author email must not contain a matching pattern/, \"作者电子邮箱地址不得包含匹配规则\"],\n        [/Author email must not match a given regex pattern/, \"作者电子邮箱地址不得匹配给定的正则表达式规则\"],\n        [/Committer email must start with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则开头\"],\n        [/Committer email must end with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则结束\"],\n        [/Committer email must contain a matching pattern/, \"提交者电子邮箱地址必须包含匹配规则\"],\n        [/Committer email must match a given regex pattern/, \"提交者电子邮箱地址必须匹配给定的正则表达式规则\"],\n        [/Committer email must not start with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则开头\"],\n        [/Committer email must not end with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则结束\"],\n        [/Committer email must not contain a matching pattern/, \"提交者电子邮箱地址不得包含匹配规则\"],\n        [/Committer email must not match a given regex pattern/, \"提交者电子邮箱地址不得匹配给定的正则表达式规则\"],\n        [/Branch name must start with a matching pattern/, \"分支名称必须以匹配规则开头\"],\n        [/Branch name must end with a matching pattern/, \"分支名称必须以匹配规则结束\"],\n        [/Branch name must contain a matching pattern/, \"分支名称必须包含匹配规则\"],\n        [/Branch name must match a given regex pattern/, \"分支名称必须匹配给定的正则表达式规则\"],\n        [/Branch name must not start with a matching pattern/, \"分支名称不得以匹配规则开头\"],\n        [/Branch name must not end with a matching pattern/, \"分支名称不得以匹配规则结束\"],\n        [/Branch name must not contain a matching pattern/, \"分支名称不得包含匹配规则\"],\n        [/Branch name must not match a given regex pattern/, \"分支名称不得匹配给定的正则表达式规则\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Rulesets?/, \"设置 · 规则集\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/rules\"] = I18N[\"zh-CN\"][\"repository/settings/rules\"];\nI18N[\"zh-CN\"][\"repository/rules\"] = I18N[\"zh-CN\"][\"repository/settings/rules\"];\n\nI18N[\"zh-CN\"][\"repository/settings/actions\"] = { // 仓库设置 - 操作 /<user-name>/<repo-name>/settings/actions\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作页面 /<user-name>/<repo-name>/settings/actions\n            \"Actions permissions\": \"操作权限\",\n                \"This setting has been disabled by organization administrators.\": \"此设置已被组织管理员禁用。\", // 组织仓库\n                \"Allow all actions and reusable workflows\": \"允许所有操作和可复用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可复用的工作流程，而不管它是谁创作的或在哪里定义的。\",\n            \"Disable actions\": \"禁用操作\",\n                \"The Actions tab is hidden and no workflows can run.\": \"“操作” 选项卡将被隐藏，无法运行任何工作流程。\",\n            // [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n                // [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n            // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n                // [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定条件的操作或工作流程，以及在 $1 的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n                \"Learn more about allowing specific actions and reusable workflows to run.\": \"了解更多关于允许运行特定操作和可复用的工作流程的信息。\",\n                \"Allow actions created by GitHub\": \"允许由 GitHub 创建的操作\",\n                \"Allow actions by Marketplace\": \"允许来自市场的操作，\",\n                \"verified creators\": \"由经验证的创建者创建\",\n                \"Allow specified actions and reusable workflows\": \"允许指定的操作和可复用的工作流程\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"输入以逗号分隔的操作和可复用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允许使用通配符、标签和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可复用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整个组织或仓库的示例：\",\n                // \"Save\": \"保存\",\n                // 顶部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n            \"Require actions to be pinned to a full-length commit SHA\": \"要求将操作固定到完整的提交 SHA\",\n\n            \"Artifact and log retention\": \"工件和日志保留\",\n                \"Choose the repository settings for artifacts and logs.\": \"选择工件和日志的仓库设置。\",\n                \"There is a maximum limit of\": \"最大限制为\",\n                \"days.\": \"天。\",\n                \"Your organization has set a maximum limit of\": \"您的组织已将上限设置为\", //组织仓库\n                \"Learn more about the artifact and log retention policy.\": \"了解更多关于工件和日志保留政策的信息。\",\n\n                // 输入框提示\n                \"Duration must be 1 or more.\": \"不能小于 1\",\n                \"Duration must be 90 or less\": \"不能大于 90\",\n                \"There is a maximum limit of\": \"最多\",\n\n                \"days\": \"天\",\n\n            \"Cache\": \"缓存\",\n                \"Choose the repository settings for cache.\": \"选择此存储库的缓存设置。\",\n                \"Cache retention\": \"缓存保留\",\n                    \"Retention can be set up to\": \"保留可以设置为\",\n                \"Cache size eviction limit\": \"缓存大小逐出限制\",\n                    \"Use this limit to control when cache evictions occur. Exceeding this limit will trigger evictions of the least recently used cache. Note this limit should not be used for controlling costs.\": \"使用此限制来控制何时发生缓存逐出。超过此限制将触发最近最少使用的缓存的逐出。请注意，此限制不应用于控制成本。\",\n                    \"Total cache size can be set up to\": \"总缓存大小可设置为\",\n\n            \"Fork pull request workflows\": \"复刻拉取请求工作流程\",\n                \"Run workflows from fork pull requests\": \"从复刻拉取请求运行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"这告诉 Actions 运行工作流程，来自仓库复刻的拉取请求。请注意，这样做将使这些复刻的维护者有能力在源码库上使用具有读取权限的令牌。\",\n                \"Send write tokens to workflows from fork pull requests.\": \"从复刻拉取请求，发送可写令牌到工作流程\",\n                    \"This tells Actions to send tokens with\": \"这告诉 Actions 发送令牌\",\n                    \"write\": \"写入\",\n                    \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"权限到工作流程，来自仓库复刻的拉取请求。请注意，这样做将授予这些复刻的维护者\",\n                    \"permissions against the source repository.\": \"权限，针对源仓库。\",\n                \"Send secrets to workflows from fork pull requests.\": \"从复刻拉取请求，发送机密到工作流程\",\n                    \"This tells Actions to send repository secrets to workflows from pull requests originating from repository forks.\": \"这告诉 Actions 发送仓库机密到工作流程，来自仓库复刻的拉取请求。\",\n\n            \"Approval for running fork pull request workflows from contributors\": \"允许贡献者运行复刻拉取请求工作流\",\n                \"Choose which subset of users will require approval before running workflows on their pull requests. Both the pull request author and the actor of the pull request event triggering the workflow will be checked to determine if approval is required. If approval is required, a user with write access to the repository must\": \"选择在拉取请求上运行工作流之前需要批准的用户子集。将检查拉取请求作者和触发工作流的拉取请求事件的行为者，以确定是否需要批准。如果需要批准，则必须由具有写权限的用户\",\n                \"approve the pull request workflow to be run.\": \"批准才能运行拉取请求工作流。\",\n            \"Fork pull request workflows from outside collaborators\": \"从外部协作者，复刻拉取请求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"选择哪些外部协作者的子集需要批准才能对他们的拉取请求运行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"了解更多关于批准来自公共复刻的工作流运行的信息。\",\n            \"Require approval for first-time contributors who are new to GitHub\": \"要求对首次加入 GitHub 的贡献者进行批准审查\",\n                \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近创建 GitHub 账户的首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Only users who are both new on GitHub and who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有新加入 GitHub 和从未有提交或拉取请求合并到该仓库的用户才需要批准运行工作流。\",\n            \"Require approval for first-time contributors\": \"要求对首次贡献者进行批准审查\",\n                \"Only first-time contributors will require approval to run workflows.\": \"只有首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Only users who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有从未有提交或拉动请求合并到该仓库的用户才需要批准运行工作流。\",\n            \"Require approval for all outside collaborators\": \"要求对所有外部协作者进行批准审查\",\n                \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部协作者将始终需要批准才能在他们的拉取请求上运行工作流程。\",\n            \"Require approval for all external contributors\": \"要求对所有外部贡献者进行批准审查\",\n                \"All users that are not a member or owner of this repository will require approval to run workflows.\": \"所有不是该仓库成员或所有者的用户，均需获得批准才能运行工作流。\",\n                // [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是该仓库成员或所有者，且未加入 $1 组织的用户，均需获得批准才能运行工作流。\"], // 组织\n\n            \"Workflow permissions\": \"工作流程权限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this repository. You can specify more granular permissions in the workflow using YAML.\": \"在仓库中运行工作流程时，选择授予 GITHUB_TOKEN 的默认权限。您可以使用 YAML 在工作流程中指定更细化的权限。\",\n                \"Learn more about managing permissions.\": \"了解更多关于管理权限的信息。\",\n                \"Read and write permissions\": \"读取和写入权限\",\n                    \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在仓库中对所有作用域具有读和写的权限。\",\n                \"Read repository contents and packages permissions\": \"读取仓库的内容和软件包的权限\",\n                    \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在仓库中仅对内容和软件包作用域具有只读的权限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"选择 GitHub Actions 是否可以创建拉取请求或提交批准拉取请求审查。\",\n                        \"Allow GitHub Actions to create and approve pull requests\": \"允许 GitHub Actions 创建和批准拉取请求\",\n\n                // 顶部提醒\n                    \"Default workflow permissions settings saved.\": \"已保存默认工作流程权限设置。\",\n\n        // 运行器页面 /<user-name>/<repo-name>/settings/actions/runners\n            \"New self-hosted runner\": \"新建自托管运行器\",\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows.\": \"托管您自己的运行器，并定制用于在您的 GitHub Actions 工作流程中运行作业的环境。\",\n            \"Learn more about self-hosted runners\": \"了解更多关于自托管运行器的信息\",\n            \"There are no runners configured\": \"暂无设置运行器\",\n            \"Learn more about using runners\": \"了解更多关于使用运行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服务器上运行操作的信息。\",\n            \"Idle\": \"空闲\",\n            \"Active\": \"活跃\",\n            \"Offline\": \"离线\",\n\n        // 运行器详情页面 /<user-name>/<repo-name>/settings/actions/runners/<id>\n            \"Configuration\": \"配置\",\n            \"Labels\": \"标签\",\n            \"Labels are values used with the\": \"标签是在工作流的 YAML 文件中与\",\n            \"key in your workflow's YAML to send jobs to specific runners. To copy a label, click on it.\": \"键配合使用的值，用于将任务分配到特定的运行器。要复制标签，请单击它。\",\n            \"Learn more about labels.\": \"了解有关标签的更多信息。\",\n            \"Active Job\": \"活跃中的作业\",\n            \"There are currently no running jobs\": \"当前没有正在运行的作业\",\n            \"Add `\": \"在工作流的 YAML 文件中添加 `\",\n            \"` to your workflow's YAML to send jobs to this runner.\": \"`，即可将任务发送至此运行器。\",\n            \"In progress\": \"进行中\",\n            \"Cancel run\": \"取消运行\",\n            \"View workflow file\": \"查看工作流文件\",\n\n        // 创建运行器页面 /<user-name>/<repo-name>/settings/actions/runners/new\n            // [/\\/ Add new self-hosted runner ·/, \"/ 创建自托管运行器 ·\"],\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。下载并配置 GitHub Actions 运行器 后，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服务条款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企业服务条款\",\n                \", as applicable.\": \"，如适用。\",\n            \"Runner image\": \"运行器镜像\",\n            \"Architecture\": \"架构\",\n            \"Download\": \"下载\",\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我们建议在 “\\\\actions-runner” 下配置运行器。这将有助于避免与 Windows 上的服务标识文件夹权限和长路径限制相关的议题。\",\n            \"Configure\": \"设置\",\n            \"Using your self-hosted runner\": \"使用您的自托管运行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"关于配置、运行或关闭运行器的其他细节，请查看我们的\",\n            \"product docs\": \"产品文档\",\n            \"Add new self-hosted runner\": \"添加新的自托管运行器\",\n            \"Using self-hosted runners in public repositories is not recommended.\": \"在公共仓库中使用自托管运行器不推荐。\",\n            \"Forks of your public repository can potentially run dangerous code on your self-hosted runner by creating a pull request.\": \"公共仓库的复刻可以潜在地在您的自托管运行器上运行危险代码，通过创建拉取请求。\",\n            \"Learn more about security hardening for self-hosted runners\": \"了解更多关于自托管运行器的安全强化\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. If you do not already have an existing volume licensing agreement for your GitHub purchases, by downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。如果您还没有现有的 GitHub 购买量许可证协议，通过下载并配置 GitHub 操作运行器，您同意\",\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/\\/ Add new self-hosted runner ·/, \"/ 创建自托管运行器 ·\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定条件的操作或工作流程，以及在 $1 的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n        [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是该仓库成员或所有者，且未加入 $1 组织的用户，均需获得批准才能运行工作流。\"], // 组织\n        [/Add new self-hosted runner · (.+)/, \"添加自托管运行器 · $1\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions settings/, \"操作设置\"],\n            [/Runners/, \"运行器\"],\n            [/Add new self-hosted runner/, \"添加自托管运行器\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/models/access-policy\"] = { // 仓库设置 - 模型 /<user-name>/<repo-name>/settings/models/access-policy\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        //\"Models\": \"模型\",\n\n        \"Models in this repository\": \"此仓库模型\",\n            \"If disabled, the Models tab will be hidden, and the prompt editor and comparison tooling evaluations will be unavailable.\": \"如果禁用，模型选项卡将被隐藏，提示编辑器和对比工具评估也将不可用。\",\n            \"Learn more about Models.\": \"了解更多。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"regexp\": [\n            [/settings · GitHub Models access policy/, \"设置 · GitHub 模型访问政策\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/hooks\"] = { // 仓库设置 - Web 钩子 /<user-name>/<repo-name>/settings/hooks\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Web 钩子 页面 /<user-name>/<repo-name>/settings/hooks====================================\n            \"Add webhook\": \"添加 Web 钩子\",\n            \"Webhooks allow external services to be notified when certain events happen. When the specified events happen, we'll send a POST request to each of the URLs you provide. Learn more in our\": \"Web 钩子允许在发生某些事件时通知外部服务。当指定的事件发生时，我们将向您提供的每个 URL 发送 POST 请求。了解更多信息，在我们的\",\n            \"Webhooks Guide\": \"Web 钩子指南\",\n\n            \"We will also send events from this repository to your\": \"我们还将把这个仓库的事件发送到您的\", // 组织仓库\n            \"organization webhooks\": \"组织 Web 钩子\", // 组织仓库\n\n            \"This hook has never been triggered.\": \"此钩子从未被触发过。\",\n            \"Last delivery was successful.\": \"上次触发成功。\",\n\n            // 删除对话框\n                \"Delete webhook?\": \"删除 Web 钩子？\",\n                \"This action cannot be undone. Future events will no longer be delivered to this webhook\": \"此操作无法撤消。未来的事件将不再传递到此 Web 钩子\",\n                \"Yes, delete webhook\": \"是的，删除 Web 钩子\",\n\n        // 添加钩子 页面 /<user-name>/<repo-name>/settings/hooks/new ====================================\n            \"Webhooks /\": \"Web 钩子 /\",\n            \"Add webhook\": \"添加 Web 钩子\",\n            \"We'll send a\": \"我们将\",\n            \"request to the URL below with details of any subscribed events. You can also specify which data format you'd like to receive (JSON,\": \"请求到以下 URL，其中包含任何订阅事件的详细信息。您还可以指定要接收的数据格式（JSON、\",\n            \"etc\": \"等\",\n            \"). More information can be found in\": \"）。更多信息可以在\",\n            \"our developer documentation\": \"开发人员文档\",\n\n            \"Payload URL\": \"有效负载 URL\",\n            \"Content type\": \"内容类型\",\n            \"Secret\": \"机密\",\n                \"Leave blank to remove secret\": \"留空以删除机密\",\n            \"There is currently a secret configured for this webhook. If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated.\": \"目前 Web 钩子已配置了一个机密。如果您丢失或忘记了这个机密，可以更改它，但请注意，任何使用此机密的集成将需要更新\",\n            \"Change secret\": \"修改机密\",\n\n            \"SSL verification\": \"SSL 验证\",\n            \"By default, we verify SSL certificates when delivering payloads.\": \"默认情况下，我们在交付有效负载时验证 SSL 证书。\",\n            \"Enable SSL verification\": \"启用 SSL 验证\",\n            \"Disable\": \"禁用\",\n            \"(not recommended)\": \"（不推荐）\",\n                \"Are you sure?\": \"您确定吗？\",\n                \"Warning\": \"警告\",\n                \": Disabling SSL verification has serious implications.\": \"：禁用 SSL 验证具有严重的影响。\",\n                \"SSL verification helps ensure that hook payloads are delivered to your URL endpoint securely, keeping your data away from prying eyes. Disabling this option is\": \"SSL 验证有助于确保钩子有效负载安全地传送到您的 URL 端点，使您的数据远离窥探。禁用此选项是\",\n                \"not recommended\": \"不推荐的\",\n                \"Disable, I understand my webhooks may not be secure\": \"禁用，我明白我的 web 钩子可能不安全\",\n\n            \"Which events would you like to trigger this webhook?\": \"您希望哪些事件触发此 Web 钩子？\",\n                \"Just the\": \"仅\",\n                \"push\": \"推送\",\n                \"event.\": \"事件。\",\n                \"Send me\": \"发送给我\",\n                \"everything\": \"所有\",\n                \"Let me select individual events.\": \"让我选择单个事件。\",\n                    \"Branch or tag creation\": \"分支或标签创建\",\n                        \"Branch or tag created.\": \"分支或标签的创建。\",\n                    \"Branch or tag deletion\": \"分支或标签删除\",\n                        \"Branch or tag deleted.\": \"分支或标签的删除。\",\n                    \"Branch protection configurations\": \"分支保护配置\",\n                        \"All branch protections disabled or enabled for a repository.\": \"禁用或启用仓库的所有分支保护。\",\n                    \"Branch protection rules\": \"分支保护规则\",\n                        \"Branch protection rule created, deleted or edited.\": \"分支保护规则的创建、删除或编辑。\",\n                    \"Bypass requests for push rulesets\": \"绕过推送规则集的请求\",\n                        \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed.\": \"推送规则集旁路请求已创建、取消、完成、收到回复或回复被驳回。\",\n                    \"Bypass requests for secret scanning push protections\": \"绕过机密扫描推送保护请求\",\n                        \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"机密扫描推送保护旁路请求的创建、取消、完成、收到回复或回复被驳回。注意：推送保护的委托旁路目前处于测试阶段，可能会有更改。\",\n                    \"Check runs\": \"检查运行\",\n                        \"Check run is created, requested, rerequested, or completed.\": \"检查运行的创建、请求、重新请求或完成。\",\n                    \"Check suites\": \"检查套件\",\n                        \"Check suite is requested, rerequested, or completed.\": \"检查套件的请求、重新请求或完成。\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                        \"Code Scanning alert created, fixed in branch, or closed\": \"代码扫描警报的创建、在分支中的修复或关闭。\",\n                    \"Collaborator add, remove, or changed\": \"协作者的添加、删除或更改\",\n                        \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"协作者添加到仓库、从仓库中删除或更改了仓库的权限。\",\n                    \"Commit comments\": \"提交评论\",\n                        \"Commit or diff commented on.\": \"提交或差异评论。\",\n                    \"Custom property\": \"自定义属性\",\n                        \"Custom property is created, updated, or deleted.\": \"自定义属性的创建、更新或删除。\",\n                    \"Custom property values\": \"自定义属性值\",\n                        \"Custom property values are changed for a repository\": \"仓库自定义属性值的更改。\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                        \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警报自动解除、自动重新打开、创建、解除、重新打开、修复或重新引入。\",\n                    \"Deploy keys\": \"部署密钥\",\n                        \"A deploy key is created or deleted from a repository.\": \"在仓库中部署密钥的创建或删除。\",\n                    \"Deployment statuses\": \"部署状态\",\n                        \"Deployment status updated from the API.\": \"通过 API 更新部署状态。\",\n                    \"Deployments\": \"部署\",\n                        \"Repository was deployed or a deployment was deleted.\": \"仓库的部署或删除部署。\",\n                    \"Discussion comments\": \"讨论评论\",\n                        \"Discussion comment created, edited, or deleted.\": \"讨论评论的创建、编辑或删除。\",\n                    // \"Discussion\": \"讨论\",\n                        \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"讨论的创建、编辑、关闭、重新打开、置顶、取消置顶、锁定、解锁、转移、答复、取消答复、标记、取消标记、更改其类别或删除。\",\n                    \"Forks\": \"复刻\",\n                        \"Repository forked.\": \"仓库复刻。\",\n                    \"Issue comments\": \"议题评论\",\n                        \"Issue comment created, edited, or deleted.\": \"议题评论的创建、编辑或删除。\",\n                    // \"Issue\": \"议题\",\n                        \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, or unlocked.\": \"议题的打开、编辑、删除、转移、置顶、取消置顶、关闭、重新打开、分配、取消分配、标记、取消标记、设置里程碑、取消里程碑、锁定或解锁。\",\n                    \"Labels\": \"标签\",\n                        \"Label created, edited or deleted.\": \"标签的创建、编辑或删除。\",\n                    \"Memberships\": \"团队成员\", // 组织设置\n                        \"Team membership added or removed.\": \"团队成员的添加或删除。\",\n                    \"Merge groups\": \"合并组\",\n                        \"Merge Group requested checks, or was destroyed.\": \"合并组的请求检查或销毁。\",\n                    \"Meta\": \"元数据\",\n                        \"This particular hook is deleted.\": \"这个特定的钩子被删除。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的创建、关闭、打开、编辑或删除。\",\n                    \"Org blocks\": \"组织黑名单\", // 组织设置\n                        \"A user has been blocked or unblocked.\": \"用户拉黑或解除拉黑。\",\n                    \"Organizations\": \"组织\", // 组织设置\n                        \"Organization deleted, renamed, member invited, member added, or member removed.\": \"组织的删除、重命名以及成员的邀请、添加或删除。\",\n                    // \"Packages\": \"软件包\",\n                        \"GitHub Packages published or updated in a repository.\": \"仓库中 GitHub 软件包的发布或更新 。\",\n                    \"Page builds\": \"构建 GitHub Pages\",\n                        \"Pages site built.\": \"GitHub Pages 站点的建立。\",\n                    \"Project cards\": \"项目面板卡\",\n                        \"Project card created, updated, or deleted.\": \"项目面板卡的创建、更新或删除。\",\n                    \"Project columns\": \"项目栏目\",\n                        \"Project column created, updated, moved or deleted.\": \"项目列目的创建、更新、移动或删除。\",\n                    \"Project v2 items\": \"项目项 v2\", // 组织设置\n                        \"Project item created, edited, deleted, archived, restored, converted, or reordered. Feedback is welcome in\": \"项目条目的创建、编辑、删除、归档、恢复、转换或重新排序。欢迎提供反馈意见在\",\n                        \"this discussion\": \"这个讨论\",\n                    // \"\": \"项目\",\n                        \"Project created, updated, or deleted.\": \"项目的创建、更新或删除。\",\n                    \"Projects v2\": \"项目 v2\", // 组织设置\n                        \"Project created, updated, deleted, closed, or reopened. Feedback is welcome in\": \"项目的创建、更新、删除、关闭或重新打开。欢迎提供反馈意见在\",\n                    \"Pull request review comments\": \"拉取请求审查意见\",\n                        \"Pull request diff comment created, edited, or deleted.\": \"拉取请求差异评论的创建、编辑或删除。\",\n                    \"Pull request review threads\": \"拉取请求的审查线程\",\n                        \"A pull request review thread was resolved or unresolved.\": \"拉取请求的审查线程的解决或未解决。\",\n                    \"Pull request reviews\": \"拉取请求审查\",\n                        \"Pull request review submitted, edited, or dismissed.\": \"拉取请求审查的提交、编辑或驳回。\",\n                    // \"\": \"拉取请求\",\n                        \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取请求的分配、禁用自动合并、启用自动合并、关闭、转换为草案、取消里程碑、取消队列、编辑、队列、标记、锁定、设置里程碑、打开、准备审查、重新打开、取消审查请求、请求审查、同步、取消分配、取消标记或解锁。\",\n                    \"Pushes\": \"推送\",\n                        \"Git push to a repository.\": \"Git 推送到仓库。\",\n                    \"Registry packages\": \"注册软件包\",\n                        \"Registry package published or updated in a repository.\": \"仓库中注册软件包的发布或更新。\",\n                    \"Releases\": \"发行版\",\n                        \"Release created, edited, published, unpublished, or deleted.\": \"发行版的创建、编辑、发布、取消发布或删除。\",\n                    // \"\": \"仓库\",\n                        \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"仓库的创建、删除、归档、取消归档、公开、私有化、编辑、重命名或转让。\",\n                    \"Repository advisories\": \"仓库公告\",\n                        \"Repository advisory published or reported.\": \"仓库公告发布或报告。\",\n                    \"Repository imports\": \"仓库导入\",\n                        \"Repository import succeeded, failed, or cancelled.\": \"仓库导入的成功、失败或取消。\",\n                    \"Repository rulesets\": \"仓库规则集\",\n                        \"Repository ruleset created, deleted or edited.\": \"仓库规则集的创建、删除或编辑。\",\n                    \"Repository vulnerability alerts\": \"仓库漏洞警报\",\n                        \"Dependabot alert (aka dependency vulnerability alert) created, resolved, or dismissed on a repository.\": \"Dependabot 警报（又名依赖漏洞警报）在仓库上的创建、解决或解除。\",\n                    \"Secret scanning alert locations\": \"机密扫描警报位置\",\n                        \"Secrets scanning alert location created.\": \"机密扫描警报位置的创建。\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                        \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"机密扫描警报的创建、解决、重新打开、验证或公开泄露。\",\n                    \"Security and analyses\": \"安全和分析\",\n                        \"Code security features enabled or disabled for a repository.\": \"启用或禁用仓库的代码安全功能。\",\n                    \"Secret scanning scans\": \"机密扫描\",\n                        \"Secrets scanning scan completed.\": \"机密扫描已完成\",\n                    // \"\": \"星标\",\n                        \"A star is created or deleted from a repository.\": \"标星或取消仓库星标。\",\n                    \"Statuses\": \"状态\",\n                        \"Commit status updated from the API.\": \"通过 API 更新提交状态。\",\n                    \"Team adds\": \"团队添加\",\n                        \"Team added or modified on a repository.\": \"在仓库上添加或修改的团队。\",\n                    \"Teams\": \"团队\",  // 组织设置\n                        \"Team is created, deleted, edited, or added to/removed from a repository.\": \"团队的创建、删除、编辑以及向仓库添加团队、从仓库中移除团队。\",\n                    \"Visibility changes\": \"可见性变化\",\n                        \"Repository changes from private to public.\": \"仓库从私有更改为公共。\",\n                    \"Watches\": \"关注\",\n                        \"User stars a repository.\": \"用户标星仓库。\",\n                    \"Wiki\": \"\",\n                        \"Wiki page updated.\": \"Wiki 页面的更新。\",\n                    \"Workflow jobs\": \"工作流程作业\",\n                        \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"仓库中工作流作业的队列、等待、正在进行或完成。\",\n                    \"Workflow runs\": \"工作流程运行\",\n                        \"Workflow run requested or completed on a repository.\": \"仓库中工作流程运行的请求或完成。\",\n                \"Active\": \"激活\",\n                \"We will deliver event details when this hook is triggered.\": \"当钩子被触发时，我们将提供事件详细信息。\",\n\n            // 顶部提醒\n            \"Okay, that hook was successfully created. We sent a ping payload to test it out! Read more about it at https://docs.github.com/webhooks/#ping-event.\": \"好的，这个钩子已经成功创建。我们发送了一个 ping 负载来测试它! 阅读更多关于它的信息，请访问 https://docs.github.com/webhooks/#ping-event。\",\n\n        // 管理 钩子 /<user-name>/<repo-name>/settings/hooks/<id>\n            \"Manage webhook\": \"管理 Web 钩子\",\n            \"If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated. —\": \"如果您丢失或忘记了此机密，则可以更改它，但请注意，使用此机密的任何集成都需要更新。 —\",\n            \"Change Secret\": \"更改机密\",\n            \"Update webhook\": \"更新 Web 钩子\",\n            // 顶部提醒\n                \"Okay, the hook was successfully updated.\": \"好的，Web 钩子已经成功更新。\",\n            \"Delete webhook\": \"删除 Web 钩子\",\n\n        // 最近交付标签 /<user-name>/<repo-name>/settings/hooks/<id>?tab=deliveries\n            \"Recent Deliveries\": \"最近交付\",\n                \"redelivery\": \"再交付\",\n            \"Loading deliveries…\": \"载入交付…\",\n            \"Detailed delivery information will be shown here once the hook has been triggered.\": \"一旦触发钩子，详细的交付信息将在此处显示。\",\n\n            \"Request\": \"请求\",\n            \"Response\": \"应答\",\n            \"Redeliver\": \"重新交付\",\n                \"Redeliver payload?\": \"重新交付有效负载？\",\n                \"The payload will be delivered to\": \"该有效负载将被发送到\",\n                \"using the current webhook configuration.\": \"使用当前的 Web 钩子 配置。\",\n                \"Yes, redeliver this payload\": \"是的，重新发送此有效负载\",\n                    \"Delivering payload…\": \"交付有效载荷…\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Completed in (\\d+(\\.\\d+)) seconds?./, \"在 $1 秒内完成。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Add webhook\": \"添加 Web 钩子\",\n        },\n        \"regexp\": [\n            [/Webhooks · Settings/, \"Web 钩子 · 设置\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/hooks\"] = I18N[\"zh-CN\"][\"repository/settings/hooks\"];\n\nI18N[\"zh-CN\"][\"repository/settings/copilot/code_review\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码审查\n            \"Enable automatic code review\": \"启用自动代码审查\",\n                \"You can enable Copilot to automatically review pull requests by enabling it inside Repository rules.\": \"您可以在仓库规则中启用 Copilot，从而让 Copilot 自动审查拉取请求。\",\n                \"Learn more about automatic code reviews.\": \"了解更多关于自动代码生成的信息。\",\n                \"Go to repository rules\": \"前往仓库规则\",\n\n        \"General settings\": \"常规设置\",\n            \"Use custom instructions when reviewing pull requests\": \"在审查拉取请求时使用自定义指令\",\n                \"Copilot references\": \"Copilot 在审查拉取请求时会参考\",\n                \"repository custom instructions\": \"仓库自定义指令\",\n                \"when reviewing pull requests.\": \"。\",\n\n        \"With Copilot code review, you can add Copilot as a reviewer to your pull requests, including drafts. You can also select lines in Visual Studio Code and ask Copilot to review and comment on specific sections.\": \"使用 Copilot 代码审查，您可以将 Copilot 添加为拉取请求的审查者，包括草稿。您还可以在 Visual Studio Code 中选择行，并请求 Copilot 审查和评论特定部分。\",\n        \"Learn more about Copilot code reviews.\": \"了解更多关于 Copilot 代码审查的信息。\",\n\n        \"Automated code reviews using rulesets\": \"使用规则集自动代码审查\",\n            \"Use rulesets to configure Copilot to review pull requests automatically.\": \"使用规则集配置 Copilot 自动审查拉取请求。\",\n            \"Learn how to set up rulesets.\": \"了解如何设置规则集。\",\n\n        \"Go to rulesets\": \"前往规则集\",\n        \"No rulesets set up for automated reviews\": \"尚无设置自动代码审查的规则集\",\n        \"Create a ruleset to automate code reviews for pull requests targeting your default branch\": \"创建一个规则集，自动代码审查针对您的默认分支的拉取请求\",\n        \"Create ruleset for default branch\": \"创建针对默认分支的规则集\",\n    },\n    \"regexp\": [\n        // 1 repository ruleset\n        [/(\\d+) repository rulesets?/, \"$1 仓库规则集\"],\n        // 3 branch rules • targeting 1 branch\n        [/(\\d+) branch rules? • targeting (\\d+) branch(?:es)?/, \"$1 分支规则 • 针对 $2 分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Code review/, \"设置 · 代码审查\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/copilot/coding_agent\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Copilot coding agent\": \"Copilot 编程智能体\",\n\n        \"You can configure Copilot coding agent for other users with access to this repository, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以为其他具有此仓库访问权限的用户配置 Copilot 编程智能体，但由于您没有 Copilot Pro+ 或 Copilot 企业版许可证，因此无法向 Copilot 分配任务。\",\n\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate. To learn more, see the\": \"使用 Copilot 编程智能体，开发者可以将任务委托给 Copilot，从而专注于更具创造性、复杂性和高影响力的重要工作。只需将议题分配给 Copilot，等待助手发起评审请求，然后在拉取请求上留下反馈进行迭代。更多信息请参阅\",\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate.\": \"借助 Copilot 编程智能体，开发者可以将任务委托给 Copilot，从而有更多时间专注于最重要的创造性、复杂和高影响力的工作。只需将议题分配给 Copilot，等待请求代码审查，然后在拉取请求上留下反馈，进行迭代即可。\",\n        \"Learn more about Copilot coding agent\": \"了解更多\",\n\n        \"Internet access\": \"访问互联网\",\n            \"Ensure that the agent only accesses approved network resources during code generation and execution.\": \"确保智能体在代码生成和执行过程中只访问已批准的网络资源。\",\n                \"Learn more about customizing network access\": \"了解更多\",\n\n            \"Enable firewall\": \"启用防火墙\",\n                \"Recommended\": \"推荐\",\n                \"Limit Copilot coding agent’s Internet access to only allow access to allowlisted locations\": \"将 Copilot 编程智能体的互联网访问权限限制为仅允许访问白名单中的位置。\",\n            \"Recommended allowlist\": \"推荐白名单\",\n                \"Allow access to locations frequently used to install tools, packages, and dependencies\": \"允许访问常用于安装工具、软件包和依赖项的位置\",\n            \"Custom allowlist\": \"自定义白名单\",\n                \"Allow access to specific domains, IP addresses, or URLs.\": \"允许访问特定域名、IP 地址或 URL。\",\n\n            // settings/copilot/coding_agent/allowlist 自定义白名单\n                \"Add items to the allowlist to enable Copilot coding agent to access specific domains, IP addresses, or URLs.\": \"将项目添加到允许列表，以便 Copilot 智能体能够访问特定的域名、IP 地址或 URL。\",\n                    \"See the GitHub Docs for syntax and examples.\": \"请参阅 GitHub 文档以获取语法和示例。\",\n\n                \"e.g. https://example.com/a/path or example.com\": \"例：https://example.com/a/path 或 example.com\",\n                \"Add rule\": \"添加规则\",\n                \"Rule must be a valid domain, IP address, or URL\": \"规则必须是有效域名、IP 地址或 URL\",\n\n                \"No rules yet\": \"无规则\",\n                    \"Tip: Paste a list of rules into the input to add them all at once.\": \"提示：将规则列表粘贴到输入框中，可以一次性添加所有规则。\",\n                \"Delete rule\": \"删除规则\",\n\n                // 保存\n                    \"Allowlist settings saved successfully!\": \"白名单设置保存成功！\",\n\n        \"Model Context Protocol (MCP)\": \"模型上下文协议（MCP）\",\n            \"The MCP is an open standard that defines how applications share context with large language models (LLMs). MCP provides a standardized way to connect AI models to different data sources and tools, enabling them to work together more effectively.\": \"MCP 是一个开放标准，定义了应用程序如何与大型语言模型（LLM）共享上下文。MCP 提供了一种标准化的方法，将 AI 模型与不同的数据源和工具连接起来，使它们能够更高效地协同工作。\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services. For information on how to write your JSON MCP configuration, see the\": \"您可以使用 MCP 通过将其连接到其他工具和服务，来扩展 Copilot 编程智能体的功能。有关如何编写您的 JSON MCP 配置的详细信息，请参见\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services.\": \"您可以使用 MCP 通过将其连接到其他工具和服务，来扩展 Copilot 编程智能体的功能。\",\n                \"Learn how to write your JSON MCP configuration\": \"了解如何编写您的 JSON MCP 配置\",\n\n            \"MCP configuration\": \"MCP 配置\",\n                // 代码窗 - 底部栏\n                  \"to toggle the\": \"切换\",\n                  \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                  \"then\": \"键，然后\",\n                  \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n\n            \"Your configuration will be validated on save.\": \"您的配置将在保存时进行验证。\",\n\n            \"Save MCP configuration\": \"保存\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 编程智能体需遵守\",\n                \"pre-release terms\": \"预发行条款\",\n    },\n    \"regexp\": [\n        [/(\\d+) rules?/, \"$1 规则\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 编程智能体\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/environments\"] = { // 仓库设置 - 环境 /<user-name>/<repo-name>/settings/environment\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 仓库 环境 /<user-name>/<repo-name>/settings/environments\n            \"New environment\": \"新建环境\",\n            \"You can configure environments with protection rules, variables, and secrets.\": \"您可以使用保护规则，变量和机密配置环境。\",\n            \"Learn more about configuring environments.\": \"了解更多关于配置环境的信息。\",\n\n            \"There are no environments for this repository\": \"此仓库尚无环境\",\n            \"Environments are used by your workflows for deployments.\": \"您的工作流程使用环境进行部署。\",\n            \"You can configure environments with protection rules and secrets.\": \"您可以使用保护规则和机密配置环境。\",\n\n            \"Delete environment\": \"删除环境\",\n            // 删除环境对话框\n            \"Are you sure you want to delete this environment?\": \"您确定要删除此环境吗？\",\n                \"Deleting an environment will delete all associated secrets, variables, and protection rules.\": \"删除环境将删除所有关联的机密、变量和保护规则。\",\n                \"I understand, delete this environment\": \"我明白了，依然删除这个环境\",\n            // 顶部提醒\n                \"Environment deleted.\": \"环境已删除。\",\n                \"There was an error saving your new environment.\": \"保存新环境时出错。\",\n\n        // 仓库 新建环境 /<user-name>/<repo-name>/settings/environments/new\n            \"/ Add\": \"/ 添加\",\n            \"Name\": \"名称\",\n            \"Configure environment\": \"设置环境\",\n            \"Name can't be blank\": \"名称不能为空\",\n\n        // 编辑环境 /<user-name>/<repo-name>/settings/environments/<id>/edit\n            // 顶部提醒\n                // [/Environment \\\"([^ ]+)\\\" created./, \"环境 “$1” 已创建。\"],\n                // [/Environment \\\"([^ ]+)\\\" updated./, \"环境 “$1” 已更新。\"],\n\n            \"/ Configure\": \"/ 设置\",\n\n            \"Deployment protection rules\": \"部署保护规则\",\n                \"Configure reviewers, timers, and custom rules that must pass before deployments to this environment can proceed.\": \"配置审查者、计时器和自定义规则，在继续部署到此环境之前必须通过这些规则。\",\n\n                \"Required reviewers\": \"所需的审查者\",\n                    \"Specify people or teams that may approve workflow runs when they access this environment.\": \"指定访问此环境时可以批准工作流运行的人员或团队。\",\n                        \"Add up to\": \"最多添加\",\n                        \"more\": \" \",\n                        \"reviewers\": \"位审查者\",\n                        \"Search for people or teams...\": \"搜索人员或团队…\",\n\n                    \"Prevent self-review\": \"防止自我审查\",\n                        \"Require a different approver than the user who triggered the workflow run.\": \"要求与触发工作流程运行的用户不同的批准审查者。\",\n                \"Wait timer\": \"等待计时器\",\n                    \"Set an amount of time to wait before allowing deployments to proceed.\": \"设置允许部署继续之前等待的时间。\",\n                    \"minutes\": \"分钟\",\n                \"Enable custom rules with GitHub Apps\": \"使用 GitHub Apps 启用自定义规则\",\n                    \"Learn about existing apps\": \"了解现有应用\",\n                    \"create your own protection rules\": \"创建您自己的保护规则\",\n                    \"so you can deploy with confidence.\": \"以便您可以放心地进行部署。\",\n                \"Allow administrators to bypass configured protection rules\": \"允许管理员绕过配置的保护规则\",\n                \"Save protection rules\": \"保存保护规则\",\n\n            \"Deployment branches and tags\": \"部署分支和标签\",\n                \"Limit which branches and tags can deploy to this environment based on rules or naming patterns.\": \"根据规则或命名模式限制哪些分支和标签可以部署到此环境。\",\n                \"No restriction\": \"没有限制\",\n                    \"No restriction to which branch or tag from this repository can deploy.\": \"不限制仓库中的分支或标签进行部署。\",\n                \"Protected branches only\": \"仅受保护的分支\",\n                    \"Deployment limited to branches with protection rules.\": \"部署仅限于具有保护规则的分支。\",\n                \"Selected branches and tags\": \"选中的分支和标签\",\n                    \"Specify a list of branches and tags using naming patterns.\": \"使用命名模式指定分支和标签的列表。\",\n\n                \"Applies to\": \"适用于\",\n                // [/(\\d+) branch(?:es|)/, \"$1 个分支\"],\n                \". Based on the existing\": \"。基于已有的\",\n                \"repository branch protection rules\": \"仓库分支保护规则\",\n                // [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"],\n\n                \"No branch or tag rules applied yet:\": \"尚未应用分支或标签规则：\",\n                \"all branches and tags are still allowed to deploy.\": \"仍允许所有分支和标签进行部署。\",\n\n                // [/(\\d+) branch(?:es|) allowed/, \"允许 $1 个分支\"],\n                // [/(\\d+) branch(?:es|) and (\\d+)  tags? allowed/, \"允许 $1 个分支和 $2 个标签\"],\n                \"Add deployment branch or tag rule\": \"添加部署分支或标签规则\",\n                    // 添加部署分支规则 对话框\n                    \"Ref type:\": \"引用类型：\",\n                        \"Tag\": \"标签\",\n                    \"Name pattern:\": \"名称的模式：\",\n                    \"Add rule\": \"添加规则\",\n                \"Update deployment branch rule\": \"更新部署分支规则\",\n                    \"Update rule\": \"更新规则\",\n                \"Remove\": \"删除\",\n\n                // 顶部提醒\n                    \"Environment changes successfully saved: all branches can deploy.\": \"环境更改已成功保存：所有分支都可以部署。\",\n                    \"Environment changes successfully saved: only protected branches can deploy.\": \"环境更改已成功保存：只有受保护的分支才能部署。\",\n                    \"Environment changes successfully saved: only selected branches and tags can deploy.\": \"环境更改已成功保存：只有选定的分支和标签才能部署。\",\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支规则 “$1” 已成功保存。\"],\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支规则 “$1” 已删除。\",]\n\n            \"Environment secrets\": \"环境机密\",\n                \"Secrets are encrypted environment variables. They are accessible only by GitHub Actions in the context of this environment by using the\": \"机密是加密的环境变量。它们只能由 GitHub Actions 在这个环境中访问\",\n                    \"secret context\": \"机密上下文\",\n\n                \"Name\": \"名称\",\n                \"Value\": \"值\",\n                \"Last updated\": \"最后更新\",\n\n                \"This environment has no secrets.\": \"该环境尚无机密。\",\n                \"Add environment secret\": \"添加环境机密\",\n                    // 添加机密对话框\n                    \"Add secret\": \"添加机密\",\n                    \"Secret value\": \"机密值\",\n                    // 提醒\n                        \"Failed to add secret: Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败：机密名称只能包含字母、数字字符 ([a-z], [A-Z], [0-9]) 或下划线 (_)。不允许使用空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n                        \"Name and value are required\": \"名称和值是必填项。\",\n\n                \"Update secret\": \"更新机密\",\n                // 删除机密 对话框\n                    \"Delete secret\": \"删除机密\",\n                        \"Are you sure you want to delete\": \"您确定要删除\",\n                        \"Yes, delete this\": \"是的，删除该\",\n                        \"secret\": \"机密\",\n\n            \"Environment variables\": \"环境变量\",\n                \"Variables are used for non-sensitive configuration data. They are accessible only by GitHub Actions in the context of this environment by using the\": \"变量用于非敏感配置数据。它们只能由 GitHub Actions 在此环境中访问\",\n                    \"variable context\": \"变量上下文\",\n\n                \"This environment has no variables.\": \"该环境尚无变量。\",\n                \"Add environment variable\": \"添加环境变量\",\n                    // 添加变量对话框\n                    \"Add variable\": \"添加变量\",\n                    \"Variable value\": \"变量值\",\n                    // 提醒\n                        \"Failed to add variable: Variable names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加变量失败： 变量名只能包含字母、数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许使用空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n\n                \"Update variable\": \"更新变量\",\n                // 删除变量 对话框\n                    \"Delete variable\": \"删除变量\",\n                    \"variable\": \"变量\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) protection rules?/, \"$1 个保护规则\"], // /environments\n        [/(\\d+) secrets?/, \"$1 个机密\"], // /environments\n        [/(\\d+) variables?/, \"$1 个变量\"], // /environments\n        [/Environment \\\"([^ ]+)\\\" created./, \"环境 “$1” 已创建。\"],\n        [/Environment \\\"([^ ]+)\\\" updated./, \"环境 “$1” 已更新。\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"],\n        [/(\\d+) branch(?:es|) and (\\d+) tags? allowed/, \"允许 $1 个分支和 $2 个标签\"],\n        [/(\\d+) branch(?:es|) allowed/, \"允许 $1 个分支\"],\n        [/(\\d+) branch(?:es|)/, \"$1 个分支\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支规则 “$1” 已成功保存。\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支规则 “$1” 已删除。\",]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Environments/, \"环境\"],\n            [/Create environment/, \"创建环境\"],\n            [/Configure environment/, \"配置环境\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/codespaces\"] = { // 仓库设置 - 代码空间 /<user-name>/<repo-name>/settings/codespaces\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 代码空间 /<user-name>/<repo-name>/settings/codespaces\n            // 顶部提醒\n                \"Prebuild configuration created\": \"预构建设置已创建\",\n                \"Prebuild configuration deleted\": \"预构建设置已删除\",\n            \"Prebuild configuration\": \"预构建设置\",\n\n            \"Set up prebuild\": \"设置预构建\",\n            \"There are no prebuilds configured for this repository\": \"尚无预构建设置\",\n            \"Prebuild configurations speed up Codespace creations significantly by pre-executing all the tasks required to build your development environment.\": \"预构建设置通过预先执行构建开发环境所需的所有任务，大大加快了代码空间的创建。\",\n            \"Learn more about setting up prebuilds\": \"了解更多关于预构建设置的信息\",\n\n            // 状态\n                \"Currently Running\": \"正在运行中\",\n                \"Disabled\": \"禁用\",\n            \"See output\": \"查看输出结果\",\n\n            \"Configuration menu\": \"设置菜单\",\n                \"Manually trigger\": \"手动触发\",\n                \"View runs\": \"查看运行日志\",\n                \"Disable runs\":\"暂停运行\",\n                \"Enable runs\":\"恢复运行\",\n\n            // 删除对话框\n                \"Are you sure?\": \"您确定吗？\",\n                \"Are you sure you want to delete this prebuild configuration? Running workflow may fail and templates associated with this configuration will be deleted.\": \"您确定要删除这个预构建设置吗？运行中的工作流可能会失败，与此设置相关的模板将被删除。\",\n\n        // 代码空间-新建预构建设置 /<user-name>/<repo-name>/settings/codespaces/prebuild_configurations/new\n            \"/ New prebuild configuration\": \"/ 新建预构建设置\",\n            // 黄色警告\n                \"Prebuilds consume storage space that will incur a billable charge. Learn more about\": \"预构建会占用存储空间，可能会产生费用。了解更多关于\",\n                \"prebuild configurations\": \"预构建设置\",\n\n            \"Configuration\": \"设置\",\n            \"Your prebuild will be built from the branch and configuration file selected below. Learn more about\": \"您的预构建将从下面选择的分支和配置文件中构建。了解更多关于\",\n            \"prebuild configuration.\": \"预构建的设置。\",\n            \"Select branch\": \"选择分支\",\n            \"Find a branch\": \"查找分支\",\n            \"Configuration File:\": \"设置文件：\",\n            \"Default Codespaces Configuration\": \"默认代码空间设置\",\n\n            \"Access and cost control\": \"访问和成本控制\",\n            \"Prebuild triggers\": \"预构建触发器\",\n            \"You can specify how often to prebuild your codespace based on changes to your repository or a schedule to manage Actions usage.\": \"您可以根据对仓库的更改或管理操作使用的计划来指定预构建代码空间的频率。\",\n            \"Learn about prebuild triggers\": \"了解预构建触发器\",\n            \"Every push\": \"每次推送\",\n                \"Default\": \"默认\",\n                \"Your codespace will prebuild on every push to this branch\": \"您的代码空间将在每次推送到该分支时预构建\",\n            \"Configuration change\": \"配置改变时\",\n                \"Your codespace will prebuild when a change is detected on the devcontainer.json and associated configuration files\": \"当检测到 devcontainer.json 和相关的配置文件有变化时，您的代码空间将预构建。\",\n            \"Scheduled\": \"计划\",\n                \"Your codespace will prebuild on a schedule\": \"您的代码空间将按计划进行预构建\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Every day\": \"每日\",\n                \"Sunday\"    : \"周日\",\n                \"Monday\"    : \"周一\",\n                \"Tuesday\"   : \"周二\",\n                \"Wednesday\" : \"周三\",\n                \"Thursday\"  : \"周四\",\n                \"Friday\"    : \"周五\",\n                \"Saturday\"  : \"周六\",\n            \"Times\": \"时间\",\n                \"Filter\": \"筛选\",\n\n            \"Region availability\": \"区域可用性\",\n            \"Reduce prebuild availability to only specific regions\": \"仅在特定区域提供预构建\",\n                \"By default, your prebuilt image will be available to all regions where codespaces are available and storage costs will apply for each region. You can adjust this to manage your storage usage.\": \"默认情况下，您的预构建镜像将在所有提供代码空间的区域可用，并且每个区域都会产生存储费用。您可以对此进行调整，以管理存储空间的使用。\",\n                \"Learn about region availability\": \"了解区域可用性\",\n                    \"US East\": \"美国东部\",\n                    \"US West\": \"美国西部\",\n                    \"Europe West\": \"欧洲西部\",\n                    \"Southeast Asia\": \"东南亚\",\n                    \"Australia\": \"澳大利亚\",\n            \"Template history\": \"模板历史\",\n                \"You can specify the number of prebuild template versions retained to speed up codespaces from an older commit to manage storage costs. The maximum value is 5 versions.\": \"您可以指定保留的预构建模板版本的数量，以加快旧提交的代码空间，以管理存储成本。最大值为 5 个版本。\",\n                \"Learn about template history\": \"了解模板历史\",\n            \"versions\": \"个版本\",\n\n            \"Failure notifications\": \"失败通知\",\n            \"You can specify users or teams to be notified via e-mail when prebuilds for this particular configuration fail.\": \"您可以指定用户或团队，当这个特定配置的预构建失败时，通过电子邮件通知他们。\",\n            \"Add by username, full name, or team name\": \"按用户名、全名或团队名称添加\",\n            \"You haven't added anyone yet\": \"尚未添加任何人\",\n            \"Add members to receive email notifications when prebuilds fail for this configuration\": \"添加成员，以便在此配置的预构建失败时接收电子邮件通知\",\n            \"Show advanced options\": \"显示高级选项\",\n\n            \"Advanced options\": \"高级选项\",\n            \"You can disable prebuild optimization if you're having issues where codespaces are several commits behind on a specific branch.\": \"如果您遇到代码空间在特定分支上落后多个提交的问题，您可以禁用预构建优化。\",\n            \"Learn about prebuild optimization\": \"了解预构建优化\",\n            \"Disable prebuild optimization\": \"禁用预构建优化\",\n                \"This prevents codespaces from attempting to use an older image to speed up boot time. This could adversely affect performance.\": \"这可以防止代码空间尝试使用旧的映像来加快启动时间。这可能会对性能产生不利影响。\",\n            \"Hide advanced options\": \"隐藏高级选项\",\n\n        // 代码空间-编辑预构建设置 /<user-name>/<repo-name>/settings/settings/codespaces/prebuild_configurations/<id>/edit\n            \"/ Edit configuration\": \"编辑预构建设置\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/pages\"] = { // 仓库设置页面(含组织仓库) /<user-name>/<repo-name>/settings\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // GitHub Pages 页面 /<user-name>/<repo-name>/settings/pages====================================\n            \"is designed to host your personal, organization, or project pages from a GitHub repository.\": \"旨在从 GitHub 仓库托管您的个人、组织或项目页面。\",\n            // 私有库 提醒\n            \"Upgrade or make this repository public to enable Pages\": \"升级或公开该仓库，以启用 GitHub Pages\",\n            \"GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository.\": \"GitHub Pages 旨在从 GitHub 仓库中托管您的个人、组织或项目页面。\",\n            \"Learn more about GitHub Pages\": \"了解更多关于 GitHub Pages 的信息\",\n            // 存档时 提醒\n            \"This repository has been archived. The associated GitHub Pages site remains published but settings are read-only.\": \"该仓库已存档。相关的 GitHub Pages 网站仍然发布，但设置是只读的。\",\n\n            // 已发布时\n            \"Your site is live at\": \"您的站点在\",\n                \"Last\": \"最近\",\n                \"deployed\": \"部署\",\n            \"Visit site\": \"访问网站\",\n            \"Additional site options\": \"站点附加选项\",\n            \"Unpublish site\": \"取消站点发布\",\n                // 顶部提醒\n                    \"GitHub Pages unpublished.\": \"GitHub  Pages 未发布。\",\n\n            \"Build and deployment\": \"构建和部署\",\n                // 顶部提醒\n                    \"GitHub Pages source saved.\": \"GitHub Pages 源已保存。\",\n            \"Source\": \"来源\",\n                // \"GitHub Actions\": \"\",\n                    \"Best for using frameworks and customizing your build process\": \"最适合使用框架和自定义构建过程\",\n                \"Deploy from a branch\": \"从分支部署\",\n                    \"Classic Pages experience\": \"经典页面体验\",\n\n            // GitHub Actions 部署模式\n                \"Send feedback\": \"发送反馈\",\n                \"Use a suggested workflow,\": \"使用建议的工作流程，\",\n                \"browse all workflows\": \"浏览所有工作流程\",\n                \", or\": \"，或\",\n                \"create your own\": \"自建\",\n\n                \"Configure\": \"设置\",\n\n                \"Workflow details will appear here once your site has been deployed.\": \"部署站点后，工作流程详细信息将显示在此处。\",\n                \"View workflow runs.\": \"查看工作流程运行情况。\",\n\n                \"Your site was last deployed to the\": \"您的站点上次部署到\",\n                \"environment by the\": \"环境，由\",\n                \"pages build and deployment\": \"页面构建和部署\",\n                \"workflow.\": \"工作流程。\",\n                \"Learn more about deploying to GitHub Pages using custom workflows\": \"了解更多关于使用自定义工作流程部署到 GitHub Pages 的信息\",\n\n            // 从分支部署模式\n            \"Branch\": \"分支\",\n                // 禁用时\n                \"GitHub Pages is currently disabled. Select a source below to enable GitHub Pages for this repository.\": \"GitHub Pages 目前已被禁用。在下面选择一个源，为该仓库启用 GitHub Pages。\",\n                \"GitHub Pages is currently disabled. You must first add content to your repository before you can publish a GitHub Pages site.\": \"GitHub Pages 目前已被禁用。您必须先将内容添加到您的仓库，然后才能发布 GitHub Pages 站点。\",\n                // 启用时\n                \"Your GitHub Pages site is currently being built from the\": \"您的 GitHub Pages 站点，目前正建立于\",\n                \"folder in the\": \"目录在\",\n                \"branch.\": \"分支。\",\n                \"Learn more about configuring the publishing source for your site\": \"了解更多关于配置网站发布源的信息\",\n\n                \"Select branch\": \"选择分支\",\n                    \"None\": \"无\",\n                \"Select folder\": \"选择文件夹\",\n                    \"/ (root)\": \"/ (根目录)\",\n\n                \"No results found\": \"无结果\",\n\n                \"Learn how to\": \"了解如何\",\n                \"add a Jekyll theme\": \"添加 Jekyll 主题\",\n                \"to your site.\": \"到您的站点。\",\n\n            \"Custom domain\": \"自定义域\",\n                \"Custom domains allow you to serve your site from a domain other than\": \"自定义域允许您从其他域为您的站点提供服务，而不是\",\n                \"Learn more about configuring custom domains\": \"了解更多关于配置自定义域的信息\",\n                    \"Remove\": \"移除\",\n                    \"Check again\": \"再检查一次\",\n                    \"DNS Check in Progress\": \"DNS 检查中\",\n                    \"DNS check successful\": \"DNS 检查成功\",\n                    \"DNS check unsuccessful\": \"DNS 检查失败\",\n                    \"Please wait for the DNS check to complete.\": \"请等待 DNS 检查结束。\",\n                    // [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正确\"],\n                    // [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您网站的 DNS 设置使用的是自定义子域 $1，该子域未设置正确的 CNAME 记录。我们建议您将此 CNAME 记录设置为指向 [YOUR USERNAME].github.io。有关详细信息，请参阅\"],\n\n                    \"DNS records should point to the\": \"DNS记录应该指向\",\n                    \"internationalized domain name\": \"国际化域名\",\n\n                    \"Domain does not resolve to the GitHub Pages server. For more information, see\": \"域名未解析至 GitHub Pages 服务器。更多信息，请参阅\",\n                    \"documentation\": \"文档\",\n                    \"(NotServedByPagesError).\": \"（Pages 服务错误）。\",\n\n                    \"Domain's DNS record could not be retrieved. For more information, see\": \"无法检索域的 DNS 记录。更多信息，请参阅\",\n                    \"(InvalidDNSError).\": \"（DNS 错误）。\",\n\n                    // 顶部提醒\n                    \"No changes to custom domain.\": \"没有对自定义域进行修改。\",\n                    \"Custom domain removed. Please remember to remove any GitHub Pages DNS records for this domain if you do not plan to continue using it with GitHub Pages.\": \"自定义域已删除。如果您不打算继续使用 GitHub Pages，请记得删除此域的任何 GitHub Pages 的 DNS 记录。\",\n\n                \"Enforce HTTPS\": \"强制 HTTPS\",\n                    \"— Unavailable for your site because your domain is not properly configured to support HTTPS (\": \"— 您的网站不可用，因为您的域未正确配置为支持 HTTPS (\",\n                    \"— Unavailable for your site because a certificate has not yet been issued for your domain (\": \"— 您的网站不可用，因为您的域尚未颁发证书 (\",\n                    \"Troubleshooting custom domains\": \"自定义域故障排除\",\n                    \"— Required for your site because you are using the default domain (\": \"— 必须先设置自定义域，目前您正在使用默认域 (\",\n\n                    \"HTTPS provides a layer of encryption that prevents others from snooping on or tampering with traffic to your site.\": \"HTTPS 提供了一层加密，防止他人窥探或篡改您站点的流量。\",\n                    \"When HTTPS is enforced, your site will only be served over HTTPS.\": \"当开启强制 HTTPS 时，您的站点将只通过 HTTPS 提供服务。\",\n                    \"Learn more about securing your GitHub Pages site with HTTPS\": \"了解更多关于使用 HTTPS 保护 GitHub Pages 站点安全的信息\",\n\n            \"Visibility\": \"可见性\",\n                \"GitHub Enterprise\": \"GitHub 企业版\",\n                \"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise. You can try GitHub Enterprise risk-free for 30 days.\": \"使用 GitHub 企业版账户，您可以通过私下发布来限制对 GitHub Pages 站点的访问。您可以使用私下发布的站点与企业成员共享您的内部文档或知识库。 您可以免费试用 GitHub 企业版 30 天。\",\n                //\"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise.\": \"使用 GitHub 企业版账户，您可以通过私下发布来限制对 GitHub Pages 站点的访问。您可以使用私下发布的站点与企业成员共享您的内部文档或知识库。\",\n                \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n                \"Try GitHub Enterprise risk-free for 30 days\": \"免费无风险试用 GitHub 企业版 30 天\",\n                \"Start free for 30 days\": \"免费试用 30 天\",\n                \"Learn more about the visibility of your GitHub Pages site.\": \"了解更多关于 GitHub Pages 站点可见性的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Custom domain \\\"([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?)\\\" saved./, \"自定义域“$1”已保存。\"],\n        [/Both ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) and its alternate name are improperly configured/, \"$1 及其备用名称均配置不正确\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) DNS check is in progress./, \"$1 的 DNS 检查正在进行。\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正确\"],\n        [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您网站的 DNS 设置使用的是自定义子域 $1，该子域未设置正确的 CNAME 记录。我们建议您将此 CNAME 记录设置为指向 [YOUR USERNAME].github.io。有关详细信息，请参阅\"],\n        [/Something went wrong issuing a certificate for ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?). Please contact the Pages team./, \"为 $1 颁发证书时出现问题。请联系 Pages 团队。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/settings/security_analysis\"] = { // 仓库设置 - 高级安全 /<user-name>/<repo-name>/settings/security_analysis\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 高级安全 /<user-name>/<repo-name>/settings/security_analysis\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository. Unarchive your repository to access additional features.\": \"高级安全功能有助于保护您的仓库安全并及时更新。启用这些功能，即表示您授权我们对您的代码库执行只读分析。请解除仓库的归档状态以使用更多功能。\", // 存档仓库\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository.\": \"高级安全功能有助于保护您的仓库安全并保持更新。启用这些功能，即表示您授权我们对您的仓库执行只读分析。\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n\n            \"Dependency graph\": \"依赖项关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n\n                // 禁用对话框\n                    \"Disable dependency graph\": \"禁用依赖项关系图\",\n                        \"Disabling the dependency graph will also disable Dependabot alerts and Dependabot security updates.\": \"禁用依赖项关系图也将同时禁用 Dependabot 警报和 Dependabot 安全更新。\", // Dependabot 警报和 Dependabot 安全更新启用时\n                        \"Disabling the dependency graph will also disable Dependabot alerts.\": \"禁用依赖项关系图也将同时禁用 Dependabot 警报。\", // Dependabot 警报启用, Dependabot 安全更新未启用时\n\n                // 启用时\n                \"Automatic dependency submission\": \"自动提交依赖项\",\n                    \"Automatically detect and report build-time dependencies for select ecosystems.\": \"自动检测并报告选定生态系统的构建时依赖项。\",\n                    // 启用\n                        \"Use standard GitHub runners\": \"使用标准 GitHub 运行器\",\n                    \"Enabled for labeled runners\": \"为有标签的运行器启用\",\n                        \"Use runners labeled with 'dependency-submission'\": \"使用带 “dependency-submission” 标签的运行器\",\n                        \"No runners with this label assigned to repository\": \"没有为仓库分配带有此标签的运行器\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖项的安全和最新。\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖项的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                    \"Configure alert notifications\": \"配置警报通知\",\n\n                    // 启用时\n                    \"Dependabot rules\": \"Dependabot 规则\",\n                        \"Create your own custom rules and manage alert presets.\": \"创建您自己的自定义规则并管理警报预设。\",\n                        \"Review and manage alert presets.\": \"查看和管理警报预设。\", //私有库\n                        // [/(\\d+) rules? enabled/, \"已启用 $1 条规则\"],\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。如果您想要更具体的配置选项，请将其禁用并使用\",\n                        // \"Dependabot rules\": \"Dependabot 规则\",\n\n                    // 启用对话框\n                        \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                            \"Dependabot security updates needs the dependency graph and Dependabot alerts to be enabled, so we'll turn them on too.\": \"Dependabot 安全更新需要启用依赖关系图和 Dependabot 警报，因此我们也将启用他们。\",\n                            \"Dependabot security updates needs Dependabot alerts to be enabled, so we'll turn that on too.\": \"Dependabot 安全更新需要启用 Dependabot 警报，因此我们也将启用它。\",\n\n                \"Grouped security updates\": \"分组安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。该选项可被 dependabot.yml 中指定的组规则覆盖 -\",\n                    \"learn more here\": \"在此了解更多\",\n\n                    // 启用对话框\n                        \"Grouped security updates needs the dependency graph, Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too\": \"分组安全更新需要启用依赖项关系图、Dependabot 警报和 Dependabot 安全更新，因此我们也将启用他们。\",\n                        \"Grouped security updates needs Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too.\": \"分组安全更新需要启用 Dependabot 警报和 Dependabot 安全更新，因此我们也将启用他们。\",\n                        \"Grouped security updates needs Dependabot security updates to be enabled, so we'll turn that on too.\": \"分组安全更新需要启用 Dependabot 安全更新，因此我们也将启用它。\",\n\n                \"Dependabot version updates\": \"Dependabot 版本更新\",\n                    \"Allow Dependabot to open pull requests automatically to keep your dependencies up-to-date when new versions are available.\": \"允许 Dependabot 自动打开拉取请求，以便在有新版本时保持您的依赖项是最新的。\",\n                    \"Learn more about configuring a dependabot.yml file\": \"了解更多关于配置 dependabot.yml 文件的信息\",\n                    \"Configure\": \"配置\",\n\n                // \"Dependabot on Actions runners\": \"Dependabot 应用于操作运行器\",\n                //     \"Run Dependabot security and version updates on Actions runners.\": \"在操作运行器上运行 Dependabot 安全和版本更新。\",\n\n                // \"Dependabot on self-hosted runners\": \"Dependabot 应用于自托管运行器\",\n                //     \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自托管运行程序上运行 Dependabot 安全和版本更新。\",\n\n            \"Code scanning\": \"代码扫描\",\n                \"Automatically detect common vulnerabilities and coding errors.\": \"自动检测常见漏洞和编码错误。\",\n\n                // 组织仓库\n                    // 提示区\n                        \"Code scanning with GitHub Actions is not available for this repository.\": \"使用 GitHub Actions 进行代码扫描不适用于该仓库。\",\n\n                        \"GitHub Actions is disabled on this repository because it is a fork. To use code scanning please\": \"GitHub 操作已在此仓库禁用，因为它是一个复刻。要使用代码扫描，请\",\n                        \"enable it\": \"启用它\",\n\n                        \"GitHub Actions is disabled on this repository by an enterprise or organization policy. To use code scanning, please ask your organization administrator to enable Actions, or\": \"由于企业或组织策略，此仓库中禁用了 GitHub Actions。要使用代码扫描，请请求您的组织管理员启用 GitHub Actions，或者\",\n                        \"submit code scanning results externally using the API\": \"使用 API 在代码扫描外部结果\",\n\n                    \"Prevent direct alert dismissals\": \"防止直接解除警报\",\n                        \"Actors must submit requests to dismiss an alert. This can impact pull requests requiring code scanning dismissal to merge.\": \"参与者必须提交解除警报的请求。这可能会影响需要解除代码扫描警报才能合并的拉取请求。\",\n\n                \"Tools\": \"工具\",\n                    \"CodeQL analysis\": \"CodeQL 分析\",\n                        \"Identify vulnerabilities and errors with\": \"识别代码中的漏洞和错误，通过\",\n                        \"for\": \"为\",\n                        \"eligible\": \"符合条件的\",\n                        \"repositories.\": \"仓库。\",\n\n                        \"Default setup\": \"默认设置\",\n                        \"Last scan\": \"最后一次扫描\",\n\n                        //未启用时\n                        \"Set up\": \"设置\",\n                            \"Default\": \"默认\",\n                                \"CodeQL will automatically find the best configuration for your repository.\": \"CodeQL 将自动给您的仓库找到最佳配置。\",\n                                // \"Languages detected in this repository are not compatible with this setup type at this time. Use the advanced setup instead.\": \"目前，该仓库中检测到的语言与该设置类型不兼容。请使用高级设置。\",\n                            \"Advanced\": \"高级\",\n                                \"Customize your CodeQL configuration via a YAML file checked into the repository.\": \"通过仓库中的 YAML 文件定制您的 CodeQL 配置。\",\n                            // \"Not supported\": \"不支持\",\n                            // \"Languages on this repository are not compatible with this feature. Learn more about\": \"该仓库上的语言与此功能不兼容。了解更多关于\",\n                            // \"supported languages and frameworks\": \"所支持的语言和框架\",\n\n                            // CodeQL 默认设置对话框\n                                \"CodeQL default configuration\": \"CodeQL 默认设置\",\n                                \"These languages were detected on the default branch of this repository.\": \"这些语言是在该仓库的默认分支上检测到的。\",\n                                //1 of 1 languages selected\n                                \"Query suites\": \"查询套件\",\n                                    \"Group of queries\": \"查询套件\",\n                                    \"to run against your code.\": \"针对您的代码运行。\",\n\n                                    // \"默认\n                                        \"Recommended\": \"推荐\",\n                                        \"CodeQL high-precision queries.\": \"CodeQL 高精度查询。\",\n                                \"Runner type\": \"运行器类型\",\n                                    \"This is the runner default setup will use to run\": \"这是运行器默认设置将用于运行\",\n                                    \"Standard GitHub runner\": \"标准 GitHub 运行器\",\n                                \"Scan events\": \"扫描事件\",\n                                    \"These events will trigger a new scan.\": \"这些事件将触发新的扫描。\",\n                                    \"On push and pull requests to\": \"推送和拉取请求到\",\n                                        \"protected branches\": \"受保护的分支\",\n                                    \"On a weekly schedule\": \"每周计划\",\n                                        \"Next scan of\": \"下次扫描\",\n                                \"Enable CodeQL\": \"启用 CodeQL\",\n\n                                \"Setting up\": \"设置中\",\n                                \"View setup log\": \"查看设置日志\",\n\n                                // 顶部提醒\n                                    \"Repository settings saved. This initial setup might take a while because CodeQL will perform a full scan of the repository.\": \"仓库设置已保存。此初始设置可能需要一段时间，因为 CodeQL 将对仓库执行完整扫描。\",\n\n                        // 启用后, 三个点菜单\n                            \"View last scan log\": \"查看最近一次扫描日志\",\n                            \"View Code Scanning alerts\": \"查看代码扫描警报\",\n                            \"View CodeQL configuration\": \"查看 CodeQL 设置\",\n                            \"Switch to advanced\": \"切换到高级\",\n                            // 切换到 CodeQL 工作流程对话框\n                                \"Switch to a CodeQL workflow?\": \"切换到 CodeQL 工作流程？\",\n                                    \"To switch to a workflow-based configuration, we must disable CodeQL first. CodeQL will stop analyzing code and resume once a valid workflow file is committed to the repository.\": \"要切换到基于工作流的配置，我们必须先禁用 CodeQL。CodeQL 将停止分析代码，并在有效的工作流文件提交到仓库后恢复分析。\",\n                            \"Disable CodeQL\": \"禁用 CodeQL\",\n                                // 禁用对话框\n                                    \"Disable CodeQL?\": \"禁用 CodeQL？\",\n                                    \"CodeQL will stop analyzing code from this repository. Existing alerts will remain open; you can dismiss them but not close them as fixed, as CodeQL needs to be enabled for that to happen. Existing CodeQL Actions workflows on this repository must be\": \"CodeQL 将停止分析该仓库中的代码。现有的警报将保持打开；您可以忽略它们，但不能关闭它们，因为 CodeQL 需要启用才能关闭。要\",\n                                    \"manually re-enabled to resume previous analyses\": \"恢复先前的分析，必须手动重新启用\",\n\n                    \"Other tools\": \"其他工具\",\n                        \"Add any third-party code scanning tool.\": \"添加任意第三方代码扫描工具。\",\n                        \"Explore workflows\": \"探索工作流程\",\n\n                    \"Copilot Autofix\": \"Copilot 自动修复\",\n                        \"Suggest fixes for CodeQL alerts using AI. CodeQL default or advanced setup must be enabled for this feature to work. Learn more about the\": \"使用 AI 为 CodeQL 警报提出修复建议。必须启用 CodeQL 默认设置或高级设置才能使用此功能。了解更多关于\",\n                        \"limitations of autofix code suggestions\": \"自动修复代码建议的限制\",\n                        \"On\": \"开\",\n                        \"Off\": \"关\",\n\n                    // 组织设置\n                    // \"Copilot Autofix for third-party tools\": \"适用于第三方工具的 Copilot 自动修复\",\n                    //     \"Suggest fixes for third-party alerts using AI. Ensure that these tools are properly configured or that an analysis is uploaded for this feature to work. Learn more about the\": \"使用人工智能对第三方警报提出修复建议。确保这些工具已正确配置或已上传分析，以便此功能正常工作。了解更多关于\",\n                    //     \"limitations of autofix code suggestions for third party tools\": \"第三方工具自动修复代码建议的限制\",\n\n                \"Protection rules\": \"保护规则\",\n                    \"Check runs failure threshold\": \"检查运行失败阀值\",\n                        \"Select the alert severity level for code scanning check runs to fail.\": \"选择代码扫描检查运行失败的警报严重性级别。\",\n                        \"Create a branch ruleset\": \"创建分支规则集\",\n                        \"to prevent a branch from merging when these checks fail.\": \"以防止分支在这些检查失败时被合并。\",\n\n                        \"Security alert severity level:\": \"安全警报级别：\",\n                            \"None\": \"无\",\n                            \"Only critical\": \"仅关键风险\",\n                            \"High or higher\": \"高风险及以上\",\n                            \"Medium or higher\": \"中风险及以上\",\n                            \"Any\": \"任何\",\n                        \"Standard alert severity level:\": \"标准警报级别：\",\n                            \"Only errors\": \"仅错误\",\n                            \"Errors and warnings\": \"错误和警告\",\n\n                // 顶部提醒\n                \"Code Scanning alert severity settings saved.\": \"代码扫描警报严重性设置已保存。\",\n\n            \"Secret Protection\": \"机密保护\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 会始终向合作伙伴发送检测到公共仓库中机密的警报。\",\n                \"Learn more about partner patterns\": \"了解更多关于合作伙伴模式的信息\",\n\n                // 开启对话框\n                    \"Enable Secret Protection\": \"启用机密保护\",\n                        \"This will enable Secret Protection for your repository.\": \"这将为您的仓库启用机密保护。\",\n                        \"Enable secret scanning alerts\": \"启用机密扫描警报\",\n                        \"No additional licenses will be consumed.\": \"不会消耗额外的许可。\",\n\n                //开启后\n                    \"Push protection\": \"推送保护\",\n                    \"Block commits that contain\": \"阻止推送包含\",\n                    \"supported secrets\": \"支持的机密\",\n\n            // 组织仓库\n                \"Access to alerts\": \"访问警报\",\n                \"Admins, users, and teams in the list below have permission to view and manage code scanning, Dependabot, or secret scanning alerts. These users may be notified when a new vulnerability is found in one of this repository's dependencies and when a secret or key is checked in. They will also see additional details when viewing Dependabot security updates. Individuals can manage how they receive these alerts in their\": \"以下列表中的管理员、用户和团队有权限查看和管理代码扫描、Dependabot 或机密扫描警报。当在此仓库的依赖项之一中发现新的漏洞，以及当机密或令牌被嵌入时，可能会通知这些用户。在查看 Dependabot 安全更新时，他们还会看到其他详细信息。用户可以管理他们如何接收这些警报，在他们的\",\n                \"notification settings\": \"通知设置\",\n\n                \"Choose the people or teams you would like to grant access\": \"选择您希望授予访问权限的人员或团队\",\n                    \"Search for people or teams\": \"搜索人员或团队\",\n                        \"You have reached the maximum number of people and teams you can add.\": \"您已达到可添加的人员和团队数量上限。\",\n                        \"Remove one or more to continue adding others.\": \"请移除一个或多个以继续添加其他成员。\",\n                \"People and teams with access\": \"拥有访问权限的人员和团队\",\n                \"Organization administrators, repository administrators, and teams with the security manager role\": \"具有安全管理员角色的组织管理员、仓库管理员和团队\",\n                \"These members always see code scanning, Dependabot, and secret scanning alerts.\": \"这些成员始终能够查看代码扫描、Dependabot 和机密扫描警报。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) rules? enabled/, \"已启用 $1 条规则\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Advanced Security/, \"设置 · 高级安全\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/keys\"] = { // 仓库设置 - 部署密钥 /<user-name>/<repo-name>/settings/keys\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 部署密钥 页面 /<user-name>/<repo-name>/settings/keys====================================\n            \"We recommend using\": \"我们建议使用\",\n            \"instead for fine grained control over repositories and\": \"来对仓库进行细粒度控制并\",\n            \"enhanced security\": \"增强安全性\",\n            \"use an SSH key to grant readonly or write access to a single repository. They are not protected by a passphrase and can be a security risk if your server is compromised. If you have a complex project or want more fine-grain control over permissions, consider using\": \"使用 SSH 密钥授予对单个仓库的只读或写入访问权限。它们不受密码保护，如果您的服务器受到威胁，则可能存在安全风险。如果您的项目很复杂或想要更精细地控制权限，请考虑使用\",\n            \"instead.\": \"。\",\n            \"Add deploy key\": \"添加部署密钥\",\n            \"There are no deploy keys for this repository\": \"此仓库暂无部署密钥\",\n            \"Check out our\": \"查看我们的\",\n            \"guide on deploy keys\": \"部署密钥指南\",\n            \"to learn more.\": \"了解更多。\",\n            \"Last used within the last week\": \"最后一次使用是最近 1 周之内\",\n            \"— Read/write\": \"— 读取和写入权限\",\n            \"— Read\": \"— 读取权限\",\n\n            // 密钥删除对话框\n            \"Are you sure you want to delete this SSH key?\": \"您确定要删除此 SSH 密钥吗？\",\n            \"This action\": \"该操作\",\n            \"cannot\": \"不能\",\n            \"be undone. This will permanently delete the SSH key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 SSH 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"I understand, delete this SSH key\": \"我明白了，依然删除该 SSH 密钥\",\n\n            // 顶部提醒\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功删除该密钥。\",\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n\n        // 部署密钥新建 页面 /<user-name>/<repo-name>/settings/keys/new====================================\n            \"/ Add new\": \"/ 新添\",\n            \"Title\": \"标题\",\n            \"Key\": \"密钥\",\n            \"Allow write access\": \"允许写访问\",\n            \"Can this key be used to\": \"该密钥允许\",\n            \"push\": \"推送\",\n            \"Begins with\": \"以\",\n            \"to this repository? Deploy keys always have pull access.\": \"到这个仓库？部署密钥始终具有拉取访问权限。\",\n            \"Add key\": \"添加密钥\",\n            // 顶部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"], // /keys\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 个月之内\"], // /keys\n    ],\n    \"title\": {\n        \"static\": {\n            \"Deploy keys\": \"部署密钥\",\n            \"Add deploy key\": \"添加部署密钥\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/secrets\"] = { // 仓库设置 - 机密 /<user-name>/<repo-name>/settings/secrets\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作机密 /<user-name>/<repo-name>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作机密和变量\",\n            \"New repository secret\": \"新建仓库机密\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"机密和变量允许您管理可重复使用的配置数据。机密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"并用于敏感数据。\",\n            \"Learn more about encrypted secrets\": \"了解更多关于加密机密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。变量显示为纯文本，用于\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"数据。\",\n            \"Learn more about variables\": \"了解更多关于变量的信息\",\n\n            \"Anyone with collaborator access to this repository can use these secrets and variables for actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何有协作者权限的人都可以使用这些机密和变量进行操作。它们不会被传递到由复刻的拉取请求触发的工作流中。\",\n\n            \"Secrets\": \"机密\",\n            \"Variables\": \"变量\",\n\n            \"Updated\": \"更新于\",\n            \"Remove\": \"移除\",\n\n            // 顶部提醒\n            \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败。机密名称只能包含字母数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许有空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n            \"Secret names must not start with GITHUB_.\": \"机密名称不能以“GITHUB_”开头。\",\n\n            \"Environment secrets\": \"环境机密\",\n                \"This environment has no secrets.\": \"此环境尚无机密。\",\n                \"Manage environment secrets\": \"管理环境机密\",\n\n            \"Repository secrets\": \"仓库机密\",\n                \"This repository has no secrets.\": \"此仓库尚无机密。\",\n                \"Last updated\": \"最近更新时间\",\n\n            //组织仓库\n            \"Secrets can also be created at the organization level and authorized for use in this repository.\": \"机密也可以在组织层面上创建，并授权在这个仓库中使用。\",\n            \"Organization secrets\": \"组织机密\",\n            \"Manage organization secrets\": \"管理组织机密\",\n            \"Organization secrets can only be used by public repositories on your plan.\": \"组织机密只能由您计划中的公共仓库使用。\",\n            \"If you would like to use organization secrets in a private repository, you will need to upgrade your plan.\": \"如果您想在私有仓库中使用组织机密，则需要升级您的计划。\",\n\n            // 删除机密对话框\n            \"Delete secret\": \"删除机密\",\n                \"Are you sure you want to delete\": \"您确定要删除\",\n                \"Yes, delete this secret\": \"是的，删除该机密\",\n                \"Yes, delete this\": \"是的，删除该\",\n                \"secret\": \"机密\",\n\n            // 顶部提醒\n                \"Repository secret added.\": \"添加了仓库机密。\",\n                \"Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"机密名称只能包含字母数字字符([a-z]、[A-Z]、[0-9])或下划线 (_)。不允许使用空格。必须以字母（[a-z]、[A-Z]）或下划线 (_) 开头。\",\n\n        // 操作变量 /<user-name>/<repo-name>/settings/variables/actions\n            \"Environment variables\": \"环境变量\",\n                \"This environment has no variables.\": \"此环境尚无变量。\",\n                \"Manage environment variables\": \"管理环境变量\",\n\n                \"Environment\": \"环境\",\n\n            \"Repository variables\": \"仓库变量\",\n                \"New repository variable\": \"新建仓库变量\",\n                \"This repository has no variables.\": \"此仓库尚无变量。\",\n\n            // 删除变量对话框\n            \"Delete variable\": \"删除变量\",\n                \"Yes, delete this variable\": \"是的，删除该变量\",\n                \"variable\": \"变量\",\n\n        // 新建仓库机密 /<user-name>/<repo-name>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作机密\",\n            \"/ New secret\": \"/ 新建机密\",\n\n            \"Name\": \"名称\",\n            \"Secret\": \"机密\",\n\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n        // 新建仓库变量 /<user-name>/<repo-name>/settings/variables/actions/new\n            \"Actions variables\": \"操作变量\",\n            \"/ New variable\": \"/ 新建变量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：变量值是以纯文本形式暴露的。如果您需要对敏感信息进行加密和屏蔽，请使用\",\n            \"create a secret\": \"创建机密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"变量名称只能包含字母数字字符（[A-Z]，[A-Z]，[0-9]）或仅下划线（_）。\",\n            \"Variable names cannot start with a number.\": \"变量名称不能以数字开头。\",\n            \"Variable names cannot start with\": \"变量名称不能以\",\n            \"prefix.\": \"前缀开头。\",\n\n            \"Add variable\": \"添加变量\",\n                \"Adding…\": \"添加中…\",\n\n        // 更新操作机密 /<user-name>/<repo-name>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新机密\",\n\n            \"Value\": \"值\",\n\n            \"Update secret\": \"更新机密\",\n\n        // 代码空间机密 /<user-name>/<repo-name>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"代码空间机密\",\n            \"Development environment secrets are environment variables that are\": \"开发环境机密是环境变量\",\n            \". Secrets are not passed to forks.\": \"。机密不会传递给复刻。\",\n\n            \"Repository development environment secrets\": \"仓库开发环境机密\", // 组织仓库\n            \"Organization development environment secrets\": \"组织开发环境机密\", // 组织仓库\n\n        // Dependabot 机密 /<user-name>/<repo-name>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 机密\",\n            \"Secrets are credentials that are\": \"机密是凭证\",\n            \". Anyone with\": \"。任何对此仓库具有\",\n            \"collaborator\": \"协作者\",\n            \"access to this repository can use these secrets for Dependabot.\": \"访问权限的人可以将这些机密用于 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"机密不会传递给复刻。\",\n            \"Encrypted secrets allow you to store private access tokens so that Dependabot can update dependencies from private registries.\": \"加密的机密允许您存储私有访问令牌，以便 Dependabot 可以从私有注册表更新依赖项。\",\n\n            // 组织仓库\n            \"No organization secrets have been authorized for this repository.\": \"该仓库暂无授权任何组织机密。\",\n            // [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的组织机密可以管理，在\"],\n            \"organization settings\": \"组织设置\",\n\n            // 顶部提醒\n            \"Secret updated.\": \"机密已更新\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的组织机密可以管理，在\"], // /secrets/dependabot\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions secrets/, \"操作机密\"],\n            [/Add Actions secret/, \"新建操作机密\"],\n            [/Actions variables/, \"操作变量\"],\n            [/Add Actions variable/, \"新建操作变量\"],\n            [/Codespaces secrets/, \"代码空间机密\"],\n            [/Add Codespaces secret/, \"新建代码空间机密\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/settings/variables\"] = I18N[\"zh-CN\"][\"repository/settings/secrets\"];\n\nI18N[\"zh-CN\"][\"repository/settings/installations\"] = { // 仓库设置 - GitHub 应用 /<user-name>/<repo-name>/settings/installations\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 集成应用 页面 /<user-name>/<repo-name>/settings/installations====================================\n        // 全局设置在 Applications 应用 /settings/installations\n            \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n            \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 应用通过商业、开源和自主开发的工具来增强和扩展您在 GitHub 上的工作流程。\",\n            \"Configure\": \"配置\",\n\n            \"There aren't any GitHub Apps installed on this repository.\": \"此仓库上未安装任何 GitHub 应用。\",\n            \"Suspended\": \"已暂停\",\n            \"Developed by\": \"开发者:\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 应用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/notifications\"] = { // 仓库设置 - 邮件通知 /<user-name>/<repo-name>/settings/notifications/edit\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 邮件通知管理 页面 /<user-name>/<repo-name>/settings/notifications/edit ====================================\n            \"Setup email addresses to receive notifications when push events are triggered.\": \"设置电子邮箱地址，以便在推送事件被触发时收到通知。\",\n            \"Asterisk (*) denotes a required field\": \"星号 (*) 表示必填字段\",\n            \"Address\": \"电子邮箱地址\",\n            \"Whitespace separated email addresses (at most two).\": \"用空格分隔的电子邮箱地址（最多两个）。\",\n            \"Approved header\": \"批准的标题\",\n            \"Sets the\": \"设置\",\n            \"Active\": \"激活\",\n            \"header to automatically approve the message in a read-only or moderated mailing list.\": \"标头以自动批准只读或审核邮件列表中的邮件。\",\n            \"We will send notification emails to the listed addresses when a\": \"我们将向所列地址发送通知邮件，当\",\n            \"event is triggered.\": \"事件被触发。\",\n            \"Setup notifications\": \"设置通知\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Configure email notifications\": \"配置电子邮件通知\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/key_links\"] = { // 仓库设置 - 自动链接引用（注：只有专业版有） /<user-name>/<repo-name>/settings/key_links\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        \"Add autolink reference\": \"添加自动链接引用\",\n\n        \"References to GitHub issues, pull requests, and commits are automatically converted into links. Configure your own autolink references for non-GitHub URLs.\": \"GitHub 问题、拉取请求和提交的引用会自动转换为链接。为非 GitHub URL 配置您自己的自动链接引用。\",\n            \"Learn more about automatic autolinks.\": \"了解更多有关自动链接的信息。\",\n        \"Autolinks can be either alphanumeric or numeric.\": \"自动链接可以是字母或数字。\",\n            \"Read more about the differences between the two.\": \"了解两者之间的区别。\",\n\n        \"No custom autolink references have been created yet.\": \"尚未创建自定义自动链接引用。\",\n\n        // 新建 <user-name>/<repo-name>/settings/key_links/new\n            \"/ Add new\": \"/ 添加\",\n                \"Alphanumeric\": \"字母数字\",\n                    \"Alphanumeric autolinks match\": \"匹配\",\n                    \". They are not case sensitive.\": \"。不区分大小写。\",\n                \"Numeric\": \"纯数字\",\n                    \"Numeric autolinks only match\": \"只匹配\",\n\n                \"Reference prefix\": \"引用前缀\",\n                    \"This prefix appended by a string will generate a link any time it is found in an issue, pull request, or commit.\": \"这段前缀加上一个字符串后，在议题、拉取请求或提交中找到时将生成一个链接。\",\n                \"Target URL\": \"目标链接\",\n                    \"The URL must contain\": \"该链接必须包含\",\n                    \"for the reference number.\": \"作为引用编号。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Autolink references\": \"自动链接引用\",\n            \"Add autolink reference\": \"添加自动链接引用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/transfer\"] = { // 转让仓库\n    \"static\": { // 静态翻译\n\n        // 转让仓库 /<user-name>/<repo-name>/transfer\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"将该仓库转让给另一位用户或一个您可以创建仓库的组织。\",\n            \"Required fields are marked with an asterisk (*).\": \"带星号 (*) 的为必填项。\",\n            \"To understand admin access, teams, issue assignments, and redirects after a repository is transferred, see\": \"要了解仓库转移后的管理员访问权限、团队、议题分配和重定向，请参阅\",\n            \"Transferring a repository\": \"转让仓库\",\n            \"in GitHub Help.\": \"在 GitHub 帮助中。\",\n            \"Transferring may be delayed until the new owner approves the transfer.\": \"转让可能会延迟，直到新所有者批准转让。\",\n            \"There\": \"有\",\n            \"are\": \" \",\n            \"is\": \" \",\n            \"that may be affected by this transfer.\": \"可能受到这次转让的影响。\",\n            \"New owner\": \"新所有者\",\n            \"Select one of my organizations\": \"选择一个我的组织\",\n            \"Choose an owner\": \"选择所有者\",\n            \"Filter…\": \"筛选…\",\n            \"Specify an organization or username\": \"指定组织或用户名\",\n            \"Repository name\": \"仓库名\",\n                \"Checking availability…\": \"检查可用性…\",\n                \"The repository\": \"仓库\",\n                \"already exists on this account\": \"已经存在于此账户\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                \"New repository name must not be blank\": \"新仓库名称不能为空\",\n\n            // 私有仓库转让\n                \"If\": \"如果\",\n                \"username\": \"用户名\",\n                \"is using\": \"使用\",\n                \"and accepts the transfer, they will lose access to private repository features:\": \"并接受转移，他们将失去对私有仓库功能的访问：\",\n                \"Code owners\": \"代码所有者\",\n                \"Any existing\": \"任何已存在的\",\n                \"wikis\": \"WiKi\",\n                \"Pulse, Contributors, Community, Traffic, Commits, Code Frequency, Network,\": \"统计，贡献者，社区，流量，提交，代码频率，网络，\",\n                \"Forks\": \"复刻\",\n                \"on the\": \"在\",\n                \"Insights\": \"洞察\",\n                \"tab\": \"标签页\",\n                \"Draft\": \"草案\",\n                \"PRs\": \"拉取请求\",\n                \"Multiple assignees\": \"多个受让人\",\n                \"for issues and PRs\": \"的议题和拉取请求\",\n                \"Multiple reviewers\": \"多个审查者\",\n                \"for PRs\": \"的拉去请求\",\n                \"Branch and tag protection rules\": \"分支和标签保护规则\",\n\n                \"can\": \"可\",\n                \"upgrade\": \"升级\",\n                \"their plan before accepting the transfer to avoid losing access.\": \"他们的计划在接受转让之前，以避免失去访问权。\",\n\n            \"Individual users, teams, and apps will be removed from the following options:\": \"个人用户、团队和应用将从以下选项中删除：\",\n                \"Repository ruleset bypassers\": \"仓库规则旁路设置\",\n                \"Protected branch pull request bypassers\": \"受保护分支拉取请求旁路设置\",\n                \"Protected branch authorized pull request review dismissers\": \"受保护分支授权拉取请求审核驳回者\",\n                \"Protected branch authorized pushers\": \"受保护分支授权的推送者\",\n                \"Protected branch allowed force pushers\": \"受保护分支允许强制推送者\",\n\n            \"Warning: This is a potentially destructive action.\": \"警告：这是一个潜在的破坏性行为。\",\n\n            \"to confirm.\": \"进行确认。\",\n            \"I understand, transfer this repository.\": \"我明白了，依然转让该仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Transfer repository:/, \"转让仓库:\"],\n        [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n        [/is available./, \"名称可用。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/codespaces\"] = { // 仓库 - 代码空间界面 /<user-name>/<repo-name>/codespaces\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 仓库 - 代码空间界面 /<user-name>/<repo-name>/codespaces\n            \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 代码空间入门\",\n                \"Learn core concepts\": \"学习核心概念\",\n                    \"New to Codespaces?\": \"刚接触代码空间？\",\n                    \"Start here\": \"从这里开始\",\n                    \". Learn the core concepts and how to get started.\": \"。学习核心概念以及如何开始。\",\n                \"Configure and manage\": \"配置和管理\",\n                    \"Learn more about features like\": \"了解更多关于功能的信息，例如\",\n                    \"secret management\": \"机密管理\",\n                    \"port forwarding\": \"端口转发\",\n                \"Develop locally\": \"在本地开发\",\n                    \"Access codespaces from within\": \"从内部访问代码空间，使用\",\n\n            \"Go to docs\": \"转到文档\",\n            // [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"2-core • 8GB RAM • 32GB\": \"双核 • 8GB 内存 • 32GB 硬盘\",\n                \"Configure and create codespace\": \"配置并创建代码空间\",\n                    \"Show advanced options before launching codespace\": \"启动代码空间前显示高级选项\",\n            \"Opening in codespace\": \"在代码空间中打开\",\n\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 内存 • 32GB 硬盘\",\n\n            // [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n            \"Retrieving…\": \"正在检索…\",\n            \"Active\": \"活跃\",\n            \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名代码空间\",\n                    \"Name\": \"名称\",\n                \"Export changes to a branch\": \"将更改导出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"检查分支情况\",\n                    \"Create branch\": \"创建分支\",\n                \"Export changes to a fork\": \"将更改导出到复刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                    \"Create fork\": \"创建复刻\",\n                \"Change machine type\": \"修改机器类型\",\n                    \"Change codespace machine type\": \"修改代码空间机器类型\",\n                        \"Machine type\": \"机器类型\",\n                            \"2-core\": \"双核\",\n                            \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n                        \"Update codespace\": \"更新代码空间\",\n                \"Stop codespace\": \"停止代码空间\",\n                \"Auto-delete codespace\": \"自动删除代码空间\",\n                \"Open in Browser\": \"在浏览器中打开\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n        [/Last used ([^ ]+)/, \"上次使用 $1\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/custom-properties\"] = { // 仓库 - 自定义属性 https://github.com/<uesr-name>/<repo-name>/custom-properties\n    \"static\": {\n        \"Custom properties\": \"自定义属性\",\n        \"Custom properties allow you to decorate your repository with information such as compliance frameworks, data sensitivity, or project details.\": \"自定义属性允许您为仓库添加信息，例如合规框架、数据敏感性或项目详情。\",\n\n        // 面板\n        \"No custom properties set for this repository.\": \"该仓库尚未设置自定义属性。\",\n        \"Learn more about custom properties\": \"了解更多关于自定义属性的信息\",\n        \"and how to set them at the organization level.\": \"以及如何在组织级别进行设置。\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"repository/codespaces\"] = { // 仓库 - 内容举报 /<user-name>/<repo-name>/reported_content\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        \"Reported content\": \"内容举报\",\n        \"Users can report abusive or distruptive content for review and moderation.\": \"用户可以举报辱骂性或破坏性内容，以供审查和审核。\",\n        \"Learn more about reported content\": \"了解更多关于举报内容的信息。\",\n        \"Report content setting\": \"举报内容设置\",\n        \"All users\": \"所有用户\",\n        \"Any user on GitHub is able to report content\": \"GitHub 上的任何用户都可以举报内容\",\n        \"Prior contributors and collaborators\": \"先前的贡献者和协作者\",\n        \"Only users who have previously contributed to the repository and collaborators will be able to report content\": \"只有之前曾为仓库做出贡献的用户和协作者才能够举报内容\",\n        \"Disable content reporting\": \"禁用内容举报\",\n        \"Disable content reporting for all users\": \"为所有用户禁用内容举报\",\n        \"Abuse reports\": \"滥用报告\",\n        \"The following content has been reported by users:\": \"以下内容已被用户举报：\",\n        \"Reported Content\": \"未解决\",\n        \"Resolved\": \"已解决\",\n        \"There aren't any unresolved content reports for this repository.\": \"此仓库没有任何未解决的内容举报。\",\n        \"There aren't any resolved content reports for this repository.\": \"此仓库没有任何已解决的内容举报。\",\n    },\n    \"regexp\": [ // 正则翻译\n\n    ],\n};\n\n// 仓库相关==\n\nI18N[\"zh-CN\"][\"homepage\"] = { // 未登录的首页\n    \"static\": { // 静态翻译\n        //\"GitHub Copilot is now available for free.\": \"免费使用 GitHub Copilot。\",\n        //\"Let’s build from here\": \"让我们从这里开始\",\n        //\"The world’s leading AI-powered developer platform.\": \"全球领先的人工智能开发者平台。\",\n        //\"Build and ship software on a single, collaborative platform\": \"在单一协作平台上构建和发布软件\",\n        //\"Join the world’s most widely adopted AI-powered developer platform.\": \"加入全球最广泛采用的人工智能开发者平台\",\n        //\"Join the world’s most widely adopted AI-powered developer platform where millions of developers, businesses, and the largest open source community build software that advances humanity.\": \"加入全球最广泛采用的人工智能开发者平台，在这里，数百万的开发人员、企业和最大的开源社区构建推动人类进步的软件。\",\n        \"Explore the latest tools from Universe '25\": \"探索 Universe '25 的最新工具\",\n        \"The future of building happens together\": \"构建未来的方式是共同创造\",\n        \"Tools and trends evolve, but collaboration endures. With GitHub, developers, agents, and code come together on one platform.\": \"工具与趋势不断演变，但协作永恒。有 GitHub在，开发者、智能体与代码在同一个平台汇聚。\",\n\n        //\"Email address\": \"电子邮箱地址\",\n        \"Enter your email\": \"键入邮箱地址\",\n        \"Sign up for GitHub\": \"注册 GitHub\",\n        //\"Start a free enterprise trial\": \"开始免费试用企业版\",\n        \"Try GitHub Copilot free\": \"免费试用 GitHub Copilot\",\n\n        \"Try Copilot Free\": \"试用 GitHub Copilot\",\n            \"30 days free\": \"30天免费\",\n        \"Free Enterprise trial\": \"免费试用企业版\", // 已登录\n        \"Explore upcoming releases\": \"探索即将发布的产品\", // 已登录\n\n        // 代码\n            \"Write, test, and fix code quickly with GitHub Copilot, from simple boilerplate to complex features.\": \"使用 GitHub Copilot 快速编写、测试和修复代码，从简单的样板代码到复杂功能都能胜任。\",\n        \"Plan\": \"计划\",\n            \"Align your team from idea to launch with tools that track work, visualize roadmaps, and gather insights.\": \"借助跟踪工作、可视化路线图、收集洞察的工具，让团队从创意到上线全程对齐。\",\n        \"Collaborate\": \"协作\",\n            \"Enable your team to collaborate with agents to plan, code, and test the next big thing.\": \"让团队与智能体协作，一起规划、编写和测试下一个大项目。\",\n        \"Automate\": \"自动化\",\n            \"Improve your software development process by automating builds, tests, and deployments with CI/CD.\": \"通过 CI/CD 自动化构建、测试和部署，提升整个软件开发流程。\",\n        \"Secure\": \"安全\",\n            \"Leverage tooling to detect, review, and fix vulnerabilities before they reach production.\": \"利用工具在漏洞进入生产之前检测、审查并修复漏洞。\",\n\n        \"Accelerate your entire workflow\": \"加速你的全部工作流\",\n            \"From your first line of code to final deployment, GitHub provides AI and automation tools to help you build and ship better software faster.\": \"从第一行代码到最终部署，GitHub 提供 AI 和自动化工具，帮助你更快地构建并发布更优质的软件。\",\n\n            \"Your AI partner everywhere.\": \"你的 AI 伙伴，无处不在。\",\n                \"Copilot is ready to work with you at each step of the software development lifecycle.\": \"Copilot 已准备好在软件开发生命周期的每一个阶段与你并肩工作。\",\n\n            \"Work 55% faster.\": \"工作快 55%。\",\n                \"Increase productivity with AI-powered coding assistance, including code completion, chat, and more.\": \"通过人工智能编码辅助（包括代码完成、聊天等）提高生产力。\",\n                \"Survey: The AI wave continues to grow on software development teams, 2024.\": \"调查：2024 年，人工智能浪潮将在软件开发团队中持续高涨。\",\n                \"Explore GitHub Copilot\": \"探索 GitHub Copilot\",\n\n            \"Duolingo boosts developer speed by 25% with GitHub Copilot\": \"多邻国利用 GitHub Copilot 将开发速度提高了 25%\",\n              \"Read customer story\": \"阅读客户故事\",\n\n            \"2025 Gartner® Magic Quadrant™ for AI Code Assistants\": \"2025 Gartner® AI 代码助手魔力象限™\",\n              \"Read industry report\": \"阅读行业报告\",\n\n        \"Automate your path to production\": \"自动化通往生产的路径\",\n            \"Ship faster with secure, reliable CI/CD.\": \"使用安全可靠的 CI/CD，更快交付。\",\n            \"Explore GitHub Actions\": \"探索 GitHub Actions\",\n\n            \"Code instantly from anywhere\": \"随时随地立即开始编码\",\n            \"Launch a full, cloud-based development environment in seconds.\": \"几秒内启动完整的云端开发环境。\",\n            \"Explore GitHub Codespaces\": \"探索 GitHub 代码空间\",\n\n            \"Keep momentum on the go\": \"随时随地保持开发节奏\",\n            \"Manage projects and assign tasks to Copilot, all from your mobile device.\": \"在手机上就能管理项目、给 Copilot 派任务。\",\n            \"Explore GitHub Mobile\": \"探索 GitHub 移动端\",\n\n            \"Shape your toolchain\": \"塑造你的工具链\",\n            \"Extend your stack with apps, actions, and AI models.\": \"通过应用、Actions 和 AI 模型扩展你的技术栈。\",\n            \"Explore GitHub Marketplace\": \"探索 GitHub 市场\",\n\n        \"Built-in application security where found means fixed\": \"内置应用安全，发现即修复\",\n            \"Use AI to find and fix vulnerabilities so your team can ship more secure software faster.\": \"利用 AI 发现并修复漏洞，让团队更快交付更安全的软件。\",\n\n            \"Apply fixes in seconds.\": \"在几秒钟内完成修复。\",\n                \"Spend less time debugging and more time building features with Copilot Autofix.\": \"使用 Copilot 自动修复，花更少时间调试，把更多时间用来开发新功能。\",\n                \"Explore GitHub Advanced Security\": \"探索 GitHub 高级安全\",\n\n                \"Security debt, solved.\": \"安全债务，一键解决。\",\n                    \"Leverage security campaigns and Copilot Autofix to reduce application vulnerabilities.\": \"利用安全整治活动和 Copilot 自动修复，大幅减少应用漏洞。\",\n                    \"Learn about GitHub Code Security\": \"了解 GitHub 代码安全功能\",\n\n                \"Dependencies you can depend on.\": \"您可以依赖的依赖项。\",\n                    \"Update vulnerable dependencies with supported fixes for breaking changes.\": \"使用支持的修复程序更新易受攻击的依赖项\\n以解决重大更改。\",\n                    \"Learn about Dependabot\": \"了解 Dependabot\",\n\n                \"Your secrets, your business.\": \"你的密钥，你说了算。\",\n                    \"Detect, prevent, and remediate leaked secrets across your organization.\": \"检测、预防并补救整个组织内泄露的机密。\",\n                    \"Learn about GitHub Secret Protection\": \"了解 GitHub 密钥保护功能\",\n\n                \"70% MTTR reduction\": \"平均修复时间 (MTTR) 降低 70%\",\n                    \"with Copilot Autofix\": \"得益于 Copilot 自动修复\",\n\n                \"8.3M secret leaks stopped\": \"阻止了 830 万次密钥泄露\",\n                    \"in the past 12 months with push protection\": \"过去 12 个月内通过推送保护实现\",\n\n        \"Work together, achieve more\": \"共同协作，取得更大成就\",\n            \"From planning and discussion to code review, GitHub keeps your team’s conversation and context next to your code.\": \"从规划、讨论到代码审查，GitHub 始终将团队的对话和上下文紧贴在代码旁边。\",\n\n            \"Plan with clarity.\": \"清晰规划。\",\n                \"Organize everything from high-level roadmaps to everyday tasks.\": \"从高层路线图到日常任务，一切井井有条。\",\n                \"Explore GitHub Projects\": \"探索 GitHub 项目\",\n            \"It helps us onboard new software engineers and get them productive right away. We have all our source code, issues, and pull requests in one place... GitHub is a complete platform that frees us from menial tasks and enables us to do our best work.\": \"它可以帮助我们吸收新的软件工程师，让他们立即投入工作。我们的所有源代码、问题和拉取请求都在一个地方... GitHub 是一个完整的平台，它将我们从琐碎的工作中解脱出来，让我们能够全力以赴。\",\n                \"Application manager at Mercedes-Benz\": \"Mercedes-Benz 应用管理员\",\n            \"Keep track of your tasks\": \"跟踪任务\",\n                \"Create issues and manage projects with tools that adapt to your code.\": \"创建议题和管理项目的工具能适应您的代码。\",\n                \"Explore GitHub Issues\": \"探索 GitHub 议题\",\n            \"Share ideas and ask questions\": \"交流想法和提出问题\",\n                \"Create space for open-ended conversations alongside your project.\": \"在开展项目的同时，为开放式对话创造空间。\",\n                \"Explore GitHub Discussions\": \"探索 GitHub 讨论\",\n            \"Review code changes together\": \"共同审查代码\",\n                \"Assign initial reviews to Copilot for greater speed and quality.\": \"将初步审查交给 Copilot，获得更快的速度和更高的质量。\",\n                \"Explore code review\": \"探索代码审查\",\n            \"Fund open source projects\": \"资助开源项目\",\n                \"Become an open source partner and support the tools and libraries that power your work.\": \"成为开源合作伙伴，支持为您的工作提供动力的工具和库。\",\n                \"Explore GitHub Sponsors\": \"探索 GitHub 赞助\",\n\n        \"From startups to enterprises,\": \"从初创公司到大型企业，\",\n            \"GitHub scales with teams of any size in any industry.\": \"GitHub 能适配任何规模、任何行业的团队。\",\n\n            // 工业\n                \"Technology\": \"技术\",\n                \"Figma streamlines development and strengthens security\": \"Figma 简化开发并增强安全性\",\n                \"Automotive\": \"汽车\",\n                \"Mercedes-Benz standardizes source code and automates onboarding\": \"奔驰标准化源代码并自动化入职\",\n                \"Mercado Libre cuts coding time by 50%\": \"Mercado Libre 将编码时间缩短了 50%\",\n            \"By size\": \"规模\",\n                \"Buffer enhances collaboration and control with GitHub Team\": \"Buffer 通过 GitHub 团队 提升协作与控制力\",\n                \"Accenture customizes GitHub Copilot for its 12,000 developers\": \"埃森哲为其 12,000 名开发者定制 GitHub Copilot\",\n                \"Philips reduces infrastructure costs by 80%\": \"飞利浦将基础设施成本降低 80%\",\n            // 使用案例\n                \"TELUS saves $16.9M with GitHub\": \"TELUS 使用 GitHub 节省 1690 万美元\",\n                \"Automation\": \"自动化\",\n                \"Fullstory automates DevSecOps at scale with GitHub\": \"Fullstory 使用 GitHub 大规模自动化 DevSecOps\",\n                \"EY leverages GitHub and Microsoft Azure DevOps to outpace the competition\": \"安永（EY）借助 GitHub 和 Microsoft Azure DevOps 领先竞争对手\",\n\n            \"Explore customer stories\": \"探索客户故事\",\n\n        \"Millions of developers and businesses call GitHub home\": \"数百万开发者和企业将 GitHub 视为自己的家\",\n            \"Whether you’re scaling your development process or just learning how to code, GitHub is where you belong. Join the world’s most widely adopted developer platform to build the technologies that shape what’s next.\": \"无论你是正在扩展开发流程，还是刚刚开始学习编程，GitHub 都是你的归属之地。加入全球采用最广泛的开发者平台，一起构建塑造未来的技术。\",\n\n        \"GitHub internal customer data, 2025.\": \"GitHub 内部客户数据，2025年。\",\n\n        // 底部栏\n        \"Subscribe to our developer newsletter\": \"订阅我们的开发者新闻\",\n        \"Get tips, technical guides, and best practices. Twice a month.\": \"获取提示、技术指南和最佳实践。每月两次。\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"获取提示、技术指南和最佳实践。每月两次。直接发送到您的收件箱。\",\n        \"Subscribe\": \"订阅\",\n\n        \"Features\": \"功能\",\n        \"Roadmap\": \"路线图\",\n        \"Compare GitHub\": \"比较 GitHub\",\n\n        \"Ecosystem\": \"生态\",\n        \"Platform\": \"平台\",\n        \"Developer API\": \"开发者 API\",\n        \"Education\": \"教育\",\n        \"GitHub Desktop\": \"GitHub 桌面端\",\n        \"GitHub Mobile\": \"GitHub 移动端\",\n\n        \"Support\": \"支持\",\n        \"Community Forum\": \"社区论坛\",\n        \"Professional Services\": \"专业服务\",\n        \"Premium Support\": \"高级支持\",\n        \"Skills\": \"技能\",\n\n        \"Company\": \"公司\",\n        \"Customer stories\": \"客户案例\",\n        \"The ReadME Project\": \"ReadME 项目\",\n        \"Careers\": \"招贤纳士\",\n        \"Press\": \"新闻\",\n        \"Inclusion\": \"包容性\",\n        \"Newsroom\": \"媒体\",\n        \"Social Impact\": \"社会责任\",\n        \"Shop\": \"商店\",\n\n        \"Sitemap\": \"网站地图\",\n        \"What is Git?\": \"什么是 Git？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Change is constant. GitHub keeps you ahead. · GitHub\": \"GitHub · 变化是常态，GitHub 让你始终领先 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"home\"] = I18N[\"zh-CN\"][\"homepage\"];\n\nI18N[\"zh-CN\"][\"session-authentication\"] = { // 登录页 包含(/login, /session, /sessions/two-factor, sessions/recovery, /sessions/recovery/token, /password_reset等)\n    \"static\": { // 静态翻译\n\n        // 登录页 https://github.com/login\n            \"Your account was created successfully. Please sign in to continue\": \"您的账户创建成功，请继续登录\",\n\n            \"Sign in to GitHub\": \"登录 GitHub\",\n            \"Sign in to\": \"登录\",\n            \"Signed in as\": \"登录身份为\",\n            \"to continue to\": \"继续登录\",\n            \"Username or email address\": \"用户名或电子邮箱\",\n            \"Password\": \"密码\",\n            \"Forgot password?\": \"忘记密码？\",\n            \"Sign in\": \"登录\",\n            \"Sign in with a passkey\": \"使用通行密钥登录\",\n            \"Signing in…\": \"登录中…\",\n\n            \"Add an account\": \"添加账号\", // 添加新账号\n            \"Want to create an account?\": \"想要新建一个账户吗？\", // 添加新账号\n\n            \"Or\": \"或\",\n            \"Continue with Google\": \"使用 Google 继续\",\n                \"Continuing with Google...\": \"使用 Google 继续…\",\n            \"Continue with Apple\": \"使用 Apple 继续\",\n                \"Continuing with Apple...\": \"使用 Apple 继续…\",\n            // \"This browser or device does not fully support passkeys.\": \"此浏览器或设备不完全支持通行密钥。\",\n            \"This browser or device is reporting partial passkey support.\": \"此浏览器或设备报告部分支持通行密钥。\",\n            \"Sign-in with a passkey\": \"使用通行密钥登录\",\n\n            \"New to GitHub?\": \"初次接触 GitHub？\",\n            \"Create an account\": \"那就注册个账户吧\",\n\n            \"Contact GitHub Support\": \"联系 GitHub 支持\",\n\n            // 验证状态提醒\n            \"Incorrect username or password.\": \"用户名或密码不正确。\",\n            \"Recovery code authentication failed.\": \"恢复码身份验证失败。\",\n\n        // 设备授权激活 https://github.com/login/device\n            \"Device Activation\": \"设备激活\",\n            \"Enter the code displayed on your device\": \"输入您的设备上显示的代码\",\n            \"Continue\": \"继续\",\n            \"GitHub staff will never ask you to enter your code on this page.\": \"GitHub 工作人员绝不会要求您在此页面上输入您的代码。\",\n\n        // 设备授权第2页面 https://github.com/login/device/confirmation\n            // [/Authorize/, \"授权\"],\n            \"This authorization was requested from\": \"此授权请求来自\",\n            \"Make sure you trust this device as it will get access to your account.\": \"请确保您信任该设备，因为它可以访问您的账户。\",\n            \"wants to access your\": \"希望访问您的\",\n            \"account\": \"账户\",\n            \"Organization access\": \"组织访问\",\n            \"Requested from\": \"请求自\",\n\n            \"Owned & operated by GitHub\": \"由 GitHub 拥有和运营\",\n            \"Created\": \"创建于\",\n            \"More than 1K\": \"超过1K\",\n            \"GitHub users\": \"GitHub 用户\",\n            \"Learn more about OAuth\": \"了解更多关于 OAuth 的信息\",\n\n        // 设备授权成功 https://github.com/login/device/success\n            \"Congratulations, you're all set!\": \"恭喜，一切就绪！\",\n            \"Your device is now connected.\": \"您的设备现已连接。\",\n\n        // 设备授权失败 https://github.com/login/device/failure?reason=not_found\n            \"Uh oh, we couldn't find anything\": \"呃，我们找不到任何东西\",\n            \"Please make sure you entered the user code correctly.\": \"请确保您输入正确的用户代码。\",\n\n        // 设备验证 https://github.com/sessions/verified-device\n            \"Device verification\": \"设备验证\",\n            \"Email\": \"电子邮件\",\n            \"Device Verification Code\": \"设备验证码\",\n            \"Having trouble verifying via email?\": \"通过电子邮件验证时遇到问题？\",\n                \"Re-send the authentication code\": \"重新发送验证码\",\n                \"Try GitHub Mobile for simplified device verification\": \"尝试 GitHub Mobile 的简化设备验证\",\n            \"If you'd like to require verification on every sign in, consider enabling\": \"如果您想在每次登录时都要求进行验证，请考虑在您的账户上启用\",\n                \"two-factor authentication\": \"双因素身份验证\",\n                \"on your account.\": \"。\",\n            // 黄色横幅\n            \"Incorrect verification code provided.\": \"提供的验证码错误。\",\n\n        // 双因素身份验证登录 https://github.com/sessions/two-factor/app\n            // \"Learn more\": \"了解更多\",\n            // \"Learn more.\": \"了解更多。\",\n            \"Confirm password to continue\": \"确认密码以继续\",\n            \"Confirm password\": \"确认密码\",\n            \"Tip:\": \"提示：\",\n\n            \"Two-factor authentication\": \"双因素身份验证\",\n            \"Authentication code\": \"验证码\",\n                \"More information about Authentication Codes\": \"更多关于验证码的信息\",\n            //\"Signing in…\": \"登录中…\",\n            \"6-digit code\": \"6位验证码\",\n            \"Verify\": \"验证\",\n                \"Verifying\": \"验证中\",\n                \"Verifying…\": \"验证中…\",\n            \"Open the two-factor authenticator (TOTP) app on your mobile device to view your authentication code.\": \"打开您的移动设备上的 “双因素身份验证器” 应用（TOTP），以查看您的身份验证码。\",\n\n            \"Use this method for future logins\": \"今后的登录中使用此方法\",\n                \"Future logins on this device will prompt you to use\": \"今后在该设备上的登录将提示您使用\",\n                \"an authentication code\": \"一个验证码\",\n                \"by default.\": \"作为默认方式。\",\n\n            \"Having problems?\": \"有问题吗？\",\n                \"Use your passkey\": \"使用您的通行密钥\",\n                \"Authenticate with GitHub Mobile\": \"使用 GitHub Mobile 进行身份验证\",\n                \"Use a recovery code or begin 2FA account recovery\": \"使用恢复码或开始 2FA 账户恢复\",\n\n        // https://github.com/sessions/two-factor/mobile\n            \"We sent you a sign-in request on your GitHub Mobile app. Approve the request to verify your identity.\": \"我们向您的 GitHub Mobile 应用发送了一个登录请求。批准验证您的身份的请求。\",\n            \"We sent you a sign-in request on your GitHub Mobile app. Enter the digits shown below to verify your identity.\": \"我们向您的 GitHub Mobile 应用发送了一个登录请求。输入下面显示的数字以验证您的身份。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"Unable to verify with GitHub Mobile?\": \"无法使用 GitHub Mobile 进行验证？\",\n                \"Enter two-factor authentication code\": \"输入双因素身份验证码\",\n\n            // 验证状态提醒\n            \"Sign-in request timed out.\": \"登录请求超时。\",\n\n        // https://github.com/sessions/two-factor/webauthn\n            \"Passkey\": \"通行密钥\",\n            \"When you are ready, authenticate using the button below.\": \"准备好后，请使用下面的按钮进行身份验证。\",\n            \"Use passkey\": \"使用通行密钥\",\n\n            \"Authentication failed.\": \"认证失败。\",\n            \"Retry passkey\": \"重试通行密钥\",\n\n            \"Unable to verify with your passkey?\": \"无法验证您的通行密钥？\",\n\n        // 双因素身份验证恢复 https://github.com/sessions/two-factor/recovery\n            \"Two-factor recovery\": \"双因素身份验证恢复\",\n            \"Recovery code\": \"恢复码\",\n\n            \"If you are unable to access your mobile device, enter one of your recovery codes to verify your identity.\": \"如果您无法访问您的移动设备，请输入您的一个恢复码以验证您的身份。\",\n\n            \"Don't have a recovery code?\": \"没有恢复码？\",\n            \"Where to find recovery codes\": \"哪里可以找到恢复码\",\n\n            \"Locked out?\": \"被锁在外面了吗？\",\n            \"Try recovering your account, or unlink your account email address(es)\": \"请尝试恢复您的账户，或取消关联您的账户电子邮件地址。\",\n\n            // 恢复账户对话框\n            \"Recovering your account\": \"恢复您的账户\",\n            \"If you can’t access a verified device or recovery codes you can request a reset of your authentication settings. For security reasons\": \"如果您无法访问已验证的设备或恢复码，您可以请求重置您的验证设置。出于安全考虑\",\n            \"this can take 1-3 days\": \"这可能需要 1-3 天\",\n            \"Step 1\": \"第一步\",\n            \"Verify an email associated with this account.\": \"验证与该账户相关的电子邮箱。\",\n            \"Step 2\": \"第二步\",\n            \"Verify a device, SSH key or personal access token.\": \"验证一个设备、SSH 密钥或个人访问令牌。\",\n            \"Step 3\": \"第三步\",\n            \"GitHub support will review your request\": \"GitHub 支持将审查您的请求\",\n            \"within 1-3 days\": \"在 1-3 天内\",\n            \"I understand, get started\": \"我知道了，开始吧\",\n\n            \"Two-factor authentication failed.\": \"双因素身份验证失败。\",\n\n        // 账户恢复 https://github.com/sessions/recovery\n            \"Account recovery\": \"账户恢复\",\n            \"The account recovery process can take 1-3 business days. We recommend one of the following if possible.\": \"账户恢复过程可能需要 1-3 个工作日。如果可能，我们推荐以下其中一项。\",\n            \"Enter a recovery code\": \"输入恢复码\",\n                \"The file containing your recovery codes may exist on your computer - check for a file named\": \"包含恢复码的文件可能存在于您的计算机上——请检查一个名为\",\n            //使用 GitHub Mobile 应用进行身份验证\n            \"It looks like you have a GitHub Mobile session that could be used for two-factor authentication. If you have access to your mobile device, you may be able to use it to login.\": \"看起来您有一个 GitHub Mobile 会话，可以用来进行双因素身份验证。如果您能访问您的移动设备，您也许能用它来登录。\",\n\n            \"First we need to verify an email address\": \"首先，我们需要验证一个电子邮箱地址\",\n            \"by sending a one-time password to all addresses associated with this account.\": \"用于通过向该账户关联的所有地址发送一次性密码。\",\n            \"Send one-time password\": \"发送一次性密码\",\n\n            // 验证提醒\n            \"Recovery email sent\": \"已发送恢复电子邮件\",\n\n            \"One-time password\": \"一次性密码\",\n            \"Verify email address\": \"验证电子邮箱地址\",\n            \"We sent an email to all addresses associated with this account containing a one-time password.\": \"我们向与该账户相关的所有邮箱地址发送了一封电子邮件，其中包含一个一次性的密码。\",\n            \"Resend email\": \"重新发送邮件\",\n\n            \"Next we need to verify an alternative factor.\": \"接下来，我们需要验证另一个因素。\",\n            \"This can be a verified device, an SSH key or a personal access token associated with this account.\": \"这可以是一个经过验证的设备，一个SSH 密钥或一个与此账户相关的个人访问令牌。\",\n            \"Cannot verify this device\": \"无法验证该设备\",\n            \"or verify a\": \"或者验证\",\n            \"SSH key\": \"SSH 密钥\",\n            \"Personal access token\": \"个人访问令牌\",\n\n            \"Unable to verify an alternative factor?\": \"无法验证另一个因素？\",\n            \"Contact support\": \"联系支持部门\",\n\n            // \"Sign in to\": \"登录\",\n            // \"To continue to\": \"继续登录\",\n\n            // 定时确认您的账户恢复设置\n            \"Confirm your account recovery settings\": \"确认您的账户恢复设置\",\n            \"Are your account recovery settings up to date? If not, you risk getting locked out of your account.\": \"您的账户恢复设置是否最新？如果没有，您就有被锁定账户的风险。\",\n            \"Emails\": \"电子邮箱\",\n                \"View and update your email addresses\": \"查看和更新您的电子邮箱地址\",\n\n                \"Verified emails\": \"经过验证的电子邮箱\",\n                    // [/(\\d+) verified emails?/, \"$1 个经过验证的邮箱\"],\n                \"Verified emails give you access to more features on GitHub.\": \"经过验证的电子邮箱让您可以使用 GitHub 上的更多功能。\",\n                \"Unverified emails\": \"未经验证的电子邮箱\",\n                \"Unverified emails cannot receive notifications or be used to reset your password.\": \"未经验证的电子邮箱无法接收通知或用于重置密码。\",\n            \"Password Alternatives\": \"密码替代方案\",\n                \"Passkeys\": \"通行密钥\",\n                // [/(\\d+) keys?/, \"$1 个通行密钥\"],\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。\",\n                    \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此浏览器或设备报告支持部分通行密钥，但您也许可以尝试使用附近设备的通行密钥。\",\n            \"Two-factor methods\": \"双因素身份验证方式\",\n                \"Your preferred 2FA method is\": \"您首选的 2FA 方式是\",\n                \"Configured\": \"已配置\",\n                \"Not configured\": \"未配置\",\n\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出现提示时，使用身份验证应用或浏览器扩展获取双因素身份验证码。\",\n                \"SMS/Text message\": \"短信/文字信息\",\n                    // [/You will receive one-time codes at this phone number:/, \"您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n                \"Security keys\": \"安全密钥\",\n                    \"Security keys are hardware devices that can be used as your second factor of authentication.\": \"安全密钥是一种硬件设备，可以作为您的第二验证因素。\",\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通过安装 GitHub Mobile 应用并登录账户，可以使用 GitHub Mobile 来进行双因素身份验证。\",\n                    \"No devices\": \"没有设备\",\n                \"SMS number\": \"手机号码\",\n            \"Recovery options\": \"恢复选项\",\n                \"Recovery codes\": \"恢复码\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                    \"Viewed\": \"已查看\",\n\n            \"Make changes\": \"进行更改\",\n            \"Confirm\": \"确认\",\n            \"Remind me later\": \"稍后提醒我\",\n\n        // 验证个人访问令牌 https://github.com/sessions/recovery/token\n            \"Verify a personal access token\": \"验证个人访问令牌\",\n            \"you've used in the past to verify your account. The token must have\": \"您过去曾用于验证您的账户。令牌必须具有\",\n            \"scope.\": \"范围。\",\n            \"Verify and submit for review\": \"验证并提交审核\",\n\n            // 验证提醒\n            \"Unable to verify personal access token\": \"无法验证个人访问令牌\",\n\n        // 配置无密码身份验证 https://github.com/sessions/trusted-device?return_to=%2Fsettings%2Fsecurity\n            \"Configure passwordless authentication\": \"配置无密码身份验证\",\n            \"Add a passkey\": \"添加通行密钥\",\n            \"Your device supports passkeys, a password replacement that validates your identity using touch, facial recognition, a device password, or a PIN.\": \"您的设备支持密码替代方案，通过触摸、面部识别、设备密码或者 PIN 码来验证您的身份。\",\n\n            \"Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密钥可以作为一种简单且安全的替代方式，用于登录而不需要密码和双因素身份验证。\",\n            \"Add passkey\": \"添加通行密钥\",\n            \"Passkey registration failed.\": \"密钥注册失败。\",\n            \"Ask me later\": \"稍后再问\",\n            \"Not interested?\": \"没兴趣？\",\n            \"Don't ask again for this browser\": \"不要再询问此浏览器\",\n\n            \"Successfully added a passkey\": \"已成功添加通行密钥\",\n            \"From now on, you can use this passkey to sign-in to GitHub.\": \"从现在起，您可以使用此通行密钥登录 GitHub。\",\n            \"Passkey nickname\": \"通行密钥昵称\",\n            \"Continue...\": \"继续中…\",\n\n        // 重置密码 https://github.com/password_reset\n            \"Reset your password\": \"重置您的密码\",\n            \"Enter your user account's verified email address and we will send you a password reset link.\": \"输入您的用户账户经过验证的电子邮箱，我们将向您发送一份带密码重置链接的邮件。\",\n            \"Enter your email address\": \"输入您的邮箱地址\",\n            \"Verify your account\": \"验证您的账户\",\n            \"Send password reset email\": \"发送密码重置邮件\",\n            \"Check your email for a link to reset your password. If it doesn’t appear within a few minutes, check your spam folder.\": \"检查您的电子邮件以获取重置密码的链接。如果它在几分钟内没有出现，请检查您的垃圾邮件文件夹。\",\n            \"Return to Sign in\": \"返回登录\",\n\n        // ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"], // [留待后期合并] 授权访问 sudo 模式身份验证\n            \"Confirm access\": \"授权访问\",\n            \"Signed in as\": \"登录身份为\",\n            \"Authentication code\": \"验证码\",\n                \"More information about sudo mode authentication\": \"更多关于 sudo 模式身份验证的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器 (TOTP) 应用或浏览器扩展以查看您的身份验证码。\",\n            \"Verify\": \"验证\",\n            \"Verify\": \"验证\",\n            \"Verifying…\": \"验证中…\",\n            \"Your authentication code has been sent.\": \"您的验证码已发送。\",\n\n            \"Having problems?\": \"有问题吗？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your authenticator app\": \"使用您的身份验证器应用\",\n            \"Send a code via email\": \"通过电子邮件发送验证码\",\n            \"Send a code via SMS\": \"通过短信发送验证码\",\n            \"Resend SMS\": \"重新发送短信\",\n            \"Use your password\": \"使用您的密码\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"为您的 GitHub Mobile 应用创建验证请求。\",\n            \"When your phone is ready, click the button below.\": \"当您的手机准备就绪时，请点击下面的按钮。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我们向您的 GitHub Mobile 应用发送了一个验证请求。输入下面显示的数字以进入 sudo 模式。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"We just sent you a message via SMS with your authentication code. Enter the code in the form above to verify your identity.\": \"我们刚刚通过短信向您发送了一条消息，其中包含您的验证码。在上面的表格中输入验证码以验证您的身份。\",\n\n            // \"Password\": \"密码\",\n            // \"Forgot password?\": \"忘记密码？\",\n            \"Confirm\": \"确认\",\n\n            \"You are entering\": \"您正在进入\",\n            \"sudo mode\": \"Sudo 模式\",\n            \". After you've performed a sudo-protected action, you'll only be asked to re-authenticate again after a few hours of inactivity.\": \"。在您执行了受 sudo 保护的操作后，在几个小时不活动后才会要求您重新进行身份验证。\",\n\n        // 首次设置双因素身份验证 https://github.com/settings/two_factor_authentication/setup/intro\n\n            \"Enable two-factor authentication (2FA)\": \"启用双因素身份验证 (2FA)\",\n            \"Loading…\": \"载入中…\",\n\n            // 第1步\n                \"Setup authenticator app\": \"设置身份验证器应用\",\n                \"Authenticator apps and browser extensions like\": \"身份验证器应用和浏览器扩展，例如\",\n                \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密码，在登录过程中出现提示时用作第二验证因素来验证您的身份。\",\n\n                \"Scan the QR code\": \"扫描二维码\",\n                \"Re-scan the QR code\": \"重新扫描二维码\",\n                \"Use an authenticator app or browser extension to scan.\": \"请使用身份验证器应用或浏览器扩展进行扫描。\",\n                \"Learn more about enabling 2FA\": \"了解更多关于启用 2FA 的信息\",\n\n                \"Unable to scan? You can use the\": \"无法扫描？您可以使用\",\n                \"setup key\": \"设置密钥\",\n                \"to manually configure your authenticator app.\": \"手动配置您的身份验证器应用。\",\n                    \"Your two-factor secret\": \"您的双因素密钥\",\n\n                \"Verify the code from the app\": \"验证来自身份验证器应用的验证码\",\n                \"Two-factor code verification failed. Please try again.\": \"双因素身份验证码验证失败。请重试。\",\n\n                \"Setup SMS authentication\": \"设置短信验证\",\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登录 GitHub 时通过手机短信获取验证码。确保\",\n                    \"your country is supported\": \"支持您的国家/地区\",\n                    \"for SMS delivery.\": \"用于短信发送。\",\n                    \"Country code\": \"国家代码\",\n                    \"Your phone number\": \"您的手机号码\",\n                    \"Send authentication code\": \"发送验证码\",\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已发送。短信可能需要一分钟时间才能送达。\",\n                    \"Verify the code sent to your phone\": \"验证发送到您手机的验证码\",\n\n                \"Continue\": \"继续\",\n\n                \"Alternative 2FA option:\": \"备选 2FA 选项:\",\n                \"SMS authentication\": \"短信验证\",\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests.\": \"通过短信向您的手机发送一次性代码，以完成认证请求。\",\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份验证应用或浏览器扩展生成一次性代码。\",\n                \"Select\": \"选择\",\n\n            // 第2步\n                \"Download your recovery codes\": \"下载您的恢复码\",\n                \"You can use recovery codes as a second factor to authenticate in case you lose access to your device. We recommend saving them with a secure password manager such as\": \"您可以使用恢复码作为第二验证因素来进行身份验证，以防您无法访问您的设备。我们建议使用安全的密码管理器保存它们，例如\",\n                \"Keep your recovery codes in a safe spot\": \"将您的恢复码保存在安全的地方\",\n                \"If you lose your device and don't have the recovery codes, you will lose access to your account.\": \"如果您丢失了您的设备，并且没有恢复码，您将无法访问您的账户。\",\n\n                \"Download\": \"下载\",\n                \"I have saved my recovery codes\": \"我已经保存了我的恢复码\",\n\n            // 第3步\n                \"Two-factor authentication (2FA) is now enabled for your GitHub account\": \"现已为您的 GitHub 账户启用双因素身份验证 (2FA)\",\n                \"You have enabled two-factor authentication using SMS.\": \"您已使用 SMS 启用双因素身份验证\",\n                \"You have enabled two-factor authentication using your authenticator app.\": \"您已使用身份验证应用启用双因素身份验证\",\n\n                \"Don't get locked out, configure additional authentication methods\": \"别被锁在外面，配置额外的身份验证方法\",\n                \"Configuring additional authentication methods will help you gain access to your account in case you lose your device and don't have your recovery codes.\": \"配置额外的认证方法将帮助您在丢失设备和没有恢复码的情况下获得对账户的访问。\",\n\n                \"Security key\": \"安全密钥\",\n                    \"Use your device with Touch ID, Windows Hello, etc. or a physical security key (e.g. YubiKey)\": \"使用您的设备配合 Touch ID、Windows Hello 等功能或物理安全密钥（例如YubiKey）。\",\n                    \"Manage\": \"管理\",\n                    \"Register new security key\": \"注册新安全密钥\",\n                    \"Enter a nickname for this security key\": \"输入安全密钥的昵称\",\n                    \"Waiting for input from browser interaction...\": \"等待来自浏览器交互的输入…\",\n                    \"Security key registration failed.\": \"安全密钥注册失败。\",\n                    \"Try again\": \"请重试\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"Install\": \"安装\",\n                    \"The GitHub Mobile app on your phone can be used as a 2FA method. Enable it by installing the GitHub Mobile app for\": \"您手机上的 GitHub Mobile 应用可用作双因素身份验证方法。通过安装 GitHub Mobile 应用（\",\n                    \"and signing in to your account.\": \"）并登录您的账户来启用它。\",\n                \"Done\": \"完成\",\n\n        // 定期验证双因素身份验证（2FA）设置\n            \"Verify your two-factor authentication (2FA) settings\": \"验证您的双因素身份验证（2FA）设置\",\n            \"This is a one-time verification of your recent configured 2FA credentials.\": \"这是对您最近配置的双因素身份验证凭据进行一次性验证。\",\n            \"Make sure that 2FA is correctly configured, and avoid a potential account lockout disaster. If you're having trouble verifying, you'll be able to reconfigure 2FA for your account.\": \"确保正确配置双因素身份验证，避免可能的账户锁定灾难。如果您在验证时遇到问题，可以重新为您的账户配置双因素身份验证。\",\n            \"Verify 2FA now\": \"现在验证双因素身份验证\",\n            \"You can choose to\": \"您可以选择\",\n            \"skip 2FA verification\": \"跳过双因素身份验证\",\n            \"at this moment, we'll remind you again tomorrow.\": \"此刻，我们会在明天再次提醒您。\",\n\n        // https://github.com/settings/two_factor_checkup?\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器（TOTP）应用或浏览器扩展，以查看您的身份验证码。\",\n            \"Verify your 2FA setup tomorrow\": \"明天验证您的双因素身份验证设置\",\n            \"Reconfigure 2FA on this account\": \"重新配置双因素身份验证\",\n\n        // https://github.com/settings/two_factor_checkup\n            \"2FA verification successful!\": \"双因素身份验证成功！\",\n            \"Keep your recovery codes safe and easy to access\": \"请将您的恢复码保管好以便于访问。\",\n            \"As a reminder, recovery codes can be used as a second factor to authenticate in case you lose your device. If you don't have your recovery codes, you may lose access to your account.\": \"作为提醒，恢复码可用作第二验证因素，以防您丢失设备。如果您没有恢复码，则可能无法访问您的账户。\",\n            \"Not sure where you saved them?\": \"您不确定把它们保存在哪里了吗？\",\n\n        // https://github.com/settings/security\n            \"Two-factor authentication (2FA)\": \"双因素身份验证 (2FA)\",\n            \"is required for your GitHub account\": \"您的 GitHub 账户需要\",\n\n            \"This will only take a minute.\": \"只需一分钟时间。\",\n            \"Enable 2FA now. You'll be able to continue on with your work right after.\": \"立即启用双因素身份验证。之后您将能够继续您的工作。\",\n\n            \"Two-factor authentication adds an\": \"双因素身份验证增加了一个\",\n            \"additional layer of account security\": \"额外的账户安全保护\",\n            \". It is a proven method of keeping you safe from hackers and account takeover, even if your password is stolen or compromised.\": \"。这是一种行之有效的方法，即使您的密码被盗或泄露，也能保证您不被黑客和账户接管。\",\n            \"Enable 2FA now\": \"立即启用双因素身份验证\",\n\n            \"You have\": \"您还有\",\n            \"left to enable 2FA. Take action now to avoid additional interruptions.\": \"时间启用双因素身份验证。请立即采取行动以避免额外的干扰。\",\n            \"Remind me tomorrow\": \"明天提醒我\",\n\n        // 登出页面 https://github.com/logout\n            \"Are you sure you want to sign out?\": \"您确定要登出？\",\n            \"Sign out\": \"登出\",\n\n            \"Select account to sign out\": \"选择要登出的账户\",\n            \"Sign out from all accounts\": \"登出所有账户\",\n\n        // 接受邀请 /<user-name>/<repo-name>/invitations\n        // 跳转至 协作者 / 协作者和团队 - 访问管理页面 /<user-name>/<repo-name>/settings/access 验证\n            // 顶部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"仓库邀请 URL 仅适用于受邀请的用户。您只能与受邀请的用户共享此 URL。\",\n\n        // 切换账户 https://github.com/switch_account\n            \"Signed out\": \"已注销\",\n            \"Add a different account\": \"添加其他账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) verified emails?/, \"$1 个经过验证的邮箱\"],\n        [/(\\d+) unverified emails?/, \"$1 个未经验证的邮箱\"],\n        [/(\\d+) keys?/, \"$1 个通行密钥\"],\n        [/(\\d+) devices?/, \"$1 设备\"],\n        [/You will receive one-time codes at this phone number:/, \"您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n        [/Continue as (.*)/, \"以 $1 身份继续使用\"],\n        [/Authorize/, \"授权\"],\n\n        // 设备验证 https://github.com/sessions/verified-device\n        [/We just sent your authentication code via email to (.*)\\. The code will expire at (.*)\\./, \"我们刚刚通过电子邮件将您的验证码发送给 $1。验证码将于 $2 过期。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Confirm access\": \"授权访问\",\n            \"Forgot your password?\": \"忘记您的密码了吗？\",\n            \"Sign in to GitHub · GitHub\": \"登录 GitHub · GitHub\",\n        },\n    },\n};\nI18N[\"zh-CN\"].login = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].logout = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].session = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].sessions = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].password_reset = I18N[\"zh-CN\"][\"session-authentication\"];\n\nI18N[\"zh-CN\"][\"signup\"] = { // 注册页\n    \"static\": { // 静态翻译\n        \"Create your free account\": \"创建免费账户\",\n            \"Explore GitHub's core features for individuals and organizations.\": \"探索 GitHub 为个人及组织提供的核心功能。\",\n            \"See what's included\": \"包含内容\",\n                \"Access to GitHub Copilot\": \"访问 GitHub Copilot\",\n                    \"Increase your productivity and accelerate software development.\": \"提升生产力，加快软件开发进程。\",\n                \"Unlimited repositories\": \"无限仓库\",\n                    \"Collaborate securely on public and private projects.\": \"在公开和私有项目上安全协作。\",\n                \"Integrated code reviews\": \"集成代码审查\",\n                    \"Boost code quality with built-in review tools.\": \"通过内置审查工具提升代码质量。\",\n                \"Automated workflows\": \"自动化工作流\",\n                    \"Save time with CI/CD integrations and GitHub Actions.\": \"使用 CI/CD 集成和 GitHub Actions 节省时间。\",\n                \"Community support\": \"社区支持\",\n                    \"Connect with developers worldwide for instant feedback and insights.\": \"与全球开发者即时交流，获取反馈和见解。\",\n\n        \"Already have an account?\": \"已经有账户吗？\",\n        \"Sign in →\": \"登录 →\",\n\n        \"Sign up for GitHub\": \"注册 GitHub\",\n            \"Continue with Google\": \"使用 Google 继续\",\n                \"Continuing with Google...\": \"使用 Google 继续…\",\n            \"Continue with Apple\": \"使用 Apple 继续\",\n                \"Continuing with Apple...\": \"使用 Apple 继续…\",\n\n            \"Email\": \"电子邮件\",\n                \"Email is invalid or already taken\": \"电子邮箱地址无效或已被占用\",\n                \"Email cannot be blank\": \"电子邮件不能为空\",\n                \"The email you have provided is already associated with an account.\": \"该邮件已被注册。\",\n                \"reset your password\": \"重置密码\",\n            \"Password\": \"密码\",\n                \"Password is too short\": \"密码太短\",\n                \"Password needs a number and lowercase letter\": \"密码需要有数字和小写字母\",\n                \"Password is strong\": \"密码很强\",\n                \"Password may be compromised\": \"密码可能被泄露\",\n                \"Password is in a list of passwords commonly used on other websites\": \"密码在其他网站常用的密码列表中\",\n                \"Password cannot be blank\": \"密码不能为空\",\n                \"Password should be at least 15 characters OR at least 8 characters including a number and a lowercase letter.\": \"密码应至少包含15个字符，或者至少包含8个字符且其中包括一个数字和一个小写字母。\",\n            \"Username\": \"用户名\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用户名只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\",\n                \"Username cannot be blank\": \"用户名不能为空\",\n                \"are available.\": \"可用。\",\n            \"Your Country/Region\": \"您的国家/地区\",\n                \"Select Country/Region\": \"选择国家/地区\",\n                \"For compliance reasons, we're required to collect country information to send you occasional updates and announcements.\": \"根据合规要求，我们需要收集您所在的国家/地区信息，以便向您发送最新的更新和公告。\",\n\n            \"Email preferences\": \"电子邮件偏好设置\",\n                \"Receive occasional product updates and announcements\": \"偶尔接收产品更新和公告\",\n\n            \"Create account\": \"创建账户\",\n                \"By creating an account, you agree to the\": \"创建账户即表示您同意\",\n                \"Terms of Service\": \"服务条款\",\n                \". For more information about GitHub's privacy practices, see the\": \"。更多关于 GitHub 隐私条款的信息，请参见\",\n                \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n                \". We'll occasionally send you account-related emails.\": \"。我们偶尔会向您发送与账户相关的电子邮件。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Username ([^ ]+) is not available./, \"用户名 $1 不可用。\"],\n        [/([^ ]+) is available./, \"用户名 $1 可用。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sign up for GitHub · GitHub\": \"注册 GitHub · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"account_verifications\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"signup\"][\"static\"],\n\n        \"Confirm your email address\": \"验证您的邮箱\",\n            \"We have sent a code to\": \"已发送验证码至\",\n        \"Enter code\": \"键入验证码\",\n        \"Didn't get your email?\": \"未收到邮件？\",\n            \"Resend the code\": \"重发验证码\",\n            \"update your email address\": \"修改邮箱\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"notifications\"] = { // 通知页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"All\": \"所有\",\n        \"Unread\": \"未读\",\n\n        \"Switch inbox\": \"切换收件箱\", // Android UA 下出现\n        \"Inbox\": \"收件箱\",\n        \"Saved\": \"已保存\",\n        \"Save\": \"保存\",\n        \"Done\": \"已完成\",\n        \"Filters\": \"筛选\",\n        \"Dismiss\": \"忽略\",\n        \"get started\": \"开始\",\n        \"Subscribe\": \"订阅\",\n        \"Unsubscribe\": \"退订\",\n\n        \"Search notifications\": \"搜索通知\",\n        \"Filter notifications\": \"筛选通知\",\n            \"Suggested filters\": \"建议筛选\",\n            \"Sorry, we don't support the\": \"抱歉，我们不支持\",\n            \"filter yet.\": \"筛选器。\",\n            \"Learn more about filters.\": \"了解更多关于筛选器的信息。\",\n\n            \"- submit\": \"- 提交\",\n            \"Submit search\": \"提交搜索\",\n\n            \"Available filters\": \"可用筛选器\",\n            \"filter by repository\": \"按仓库筛选\",\n            \"filter by status or discussion type\": \"按状态或评论类型筛选\",\n            \"filter by notification reason\": \"按通知原因筛选\",\n            \"filter by notification author\": \"按通知作者筛选\",\n            \"filter by organization\": \"按组织筛选\",\n        \"Group by:\": \"分组：\",\n        \"Group by: Date\": \"分组：日期\",\n        \"Group by: Repository\": \"分组：仓库\",\n        \"Date\": \"日期\",\n        \"Repository\": \"仓库\",\n        // [/(\\d+) new notifications?/, \"$1 条新通知\"], // 通知管理页\n\n        // 筛选结果\n        \"No results\": \"无结果\",\n        \"No notifications matched your query.\": \"没有与您的查询相匹配的通知。\",\n\n        \"Select all\": \"全选\",\n        \"selected\": \"条被选中\",\n        \"Mark as read\": \"标记为已读\",\n        \"Mark as unread\": \"标记为未读\",\n        \"Mark as done\": \"标记为已完成\",\n        \"Move to inbox\": \"移动到收件箱\",\n\n         \"Clear selection\": \"清除选中\",\n\n        //\"Mark all as read\": \"全部标为已读\",\n        //\"Are you sure?\": \"您确定吗？\",\n        //\"Are you sure you want to mark all unread notifications as read?\": \"您确定要将所有的未读通知标记为已读？\",\n        //\"Mark all notifications as read\": \"全部标为已读\",\n\n        \"Clear out the clutter.\": \"清除混乱。\",\n        \"Get the most out of your new inbox by quickly and easily marking all of your previously read notifications as done.\": \"快速轻松地将所有已阅读的通知标记为已完成，以充分利用新的收件箱。\",\n        \"Overwhelmed by notifications? We've found some repositories that may be causing notifications you don't need.\": \"通知不知所措？我们发现了一些仓库，这些仓库可能会导致您不需要的通知。\",\n        \"Update watching settings\": \"更新关注设置\",\n        \"Get started\": \"开始\",\n            \"Clean up your inbox\": \"清理收件箱\",\n            \"Marking your notifications as \\\"done\\\" helps to create a more focused inbox. Don't worry - if there is new activity, you'll still be notified.\": \"将您的通知标记为 “已完成” 有助于创建一个更加集中的收件箱。不用担心 - 如果有新的活动，您仍然会收到通知。\",\n            \"Mark all read notifications as done\": \"将所有已读通知标记为已完成\",\n            \"This process could take a few moments depending on the quantity.\": \"这个过程可能会根据数量的多少而耗费一些时间。\",\n            \"Bulk actions currently being processed.\": \"批量操作正在处理中。\",\n            \"Bulk action processing complete.\": \"批量操作处理完成。\",\n\n        \"Manage notifications\": \"管理通知\",\n        \"Notification settings\": \"通知设置\",\n        \"Watched repositories\": \"关注的仓库\",\n        \"Subscriptions\": \"订阅\",\n        \"Watching\": \"关注\",\n\n        \"assigned\": \"分配\",\n        \"subscribed\": \"订阅\",\n        \"mention\": \"提及\",\n        \"commented\": \"评论\",\n        \"author\": \"作者\",\n        \"manual\": \"手动\",\n        \"state change\": \"状态更改\",\n        \"review requested\": \"请求审查\",\n        \"ci activity\": \"CI 活动\",\n        \"security alert\": \"安全警报\",\n\n        \"View all gist notifications\": \"查看全部 Gist 通知\", // 仓库分组模式\n\n        \"Prev\": \"上一页\",\n        \"Previous\": \"上一页\",\n        \"Next\": \"下一页\",\n\n        \"change notification settings\": \"更改通知设置\",\n        \"you can change how you receive notifications from your account settings.\": \"您可以从账户设置更改接收通知的方式。\",\n        \"unwatch suggestions\": \"取消关注建议\",\n        \"these repositories may be causing unnecessary notifications.\": \"这些仓库可能导致不必要的通知。\",\n        \"unwatch all\": \"取消所有关注\",\n        \"customize\": \"自定义\",\n\n        \"🎯 Assigned\": \"🎯 已分配\",\n        \"💬 Participating\": \"💬 参与\",\n        \"✋ Mentioned\": \"✋ 提及\",\n        \"🙌 Team mentioned\": \"🙌 提到的团队\",\n        \"👀 Review requested\": \"👀 审查请求\",\n        \"Add new filter\": \"添加新筛选器\",\n        \"Name\": \"名称\",\n        \"Filter by…\": \"筛选…\", // Android UA 下才有\n        \"New filter\": \"新建\", // Android UA 下才有\n        \"Filter inbox by…\": \"筛选收件箱…\",\n        \"Create new filter\": \"创建新规则\",\n        \"Query\": \"规则\",\n\n        \"All caught up!\": \"处理完了！\",\n        \"Take a break, write some code, do what you do best.\": \"休息一下，写一些代码，做您最擅长的事。\",\n        \"Save something important\": \"保存重要的东西\",\n        \"Notifications you save will appear here to read later.\": \"您保存的通知会出现在这里，以便以后阅读。\",\n        \"Mark notifications as done so you can move on with your work.\": \"将通知标记为已完成，以便您可以继续工作。\",\n        \"New activity appears in your inbox.\": \"新活动出现在您的收件箱中。\",\n        \"All done here!\":\"这里都完成了！\",\n        \"You're caught up on this filter.\":\"您已处理完当前筛选下的所有任务。\",\n\n        // /notifications?query=repo 某个仓库\n        \"We've noticed that you rarely interact with this repository, are you sure you need notifications?\": \"我们注意到您很少与此仓库交互，您确定需要通知吗？\",\n        \"Unwatch\": \"取消关注\",\n        // \"Notifications\": \"通知类型\",\n            \"Participating and @mentions\": \"参与和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n            \"All Activity\": \"所有活动\",\n            \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定义\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n            \"Releases\": \"发行版\",\n            \"Discussions\": \"讨论\",\n                \"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n            \"Security alerts\": \"安全警报\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"应用\",\n\n        \"ProTip!\": \"专业提示！\",\n            \"Triage notifications on the go with GitHub Mobile for\": \"使用 GitHub Mobile 随时随地查看分类通知\",\n            \"When viewing a notification, press\": \"在查看一条通知时，按下\",\n            \"to mark it as Done.\": \"将其标记为 “已完成”。\",\n            \"to mark it as Unread.\": \"将其标记为 “未读”。\",\n            \"Create custom filters to quickly access your most important notifications.\": \"创建自定义筛选器以快速访问最重要的通知。\",\n            \"Filter by\": \"使用\",\n            \"to see what's new.\": \"查看新通知。\",\n            \"then bulk select and mark all as\": \"然后批量选择并将所有内容标记为\",\n            \"to clean up your inbox.\": \"以清理收件箱。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected/, \"$1 条被选中\"],\n        [/Select all (\\d+) notifications?/, \"选中全部 $1 条通知\"],\n        [/View all (\\d+) notifications?/, \"查看全部 $1 条通知\"], // 仓库分组模式\n        [/(\\d+) new notifications?/, \"$1 条新通知\"],\n        [/of (\\d+)/, \" 共 $1 条\"],\n        [/workflow run failed for ([^ ]+) branch/, \"工作流程运行失败，$1 分支\"], // F12 才翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notifications\": \"通知\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"watching\"] = { // 关注的仓库页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"Watching\": \"关注\",\n        \"Subscriptions\": \"订阅\",\n        \"Custom\": \"自定义\",\n        // \"Ignoring\": \"忽略\",\n\n        \"Unwatch suggestions\": \"取消关注建议\",\n        \"These repositories may be causing unnecessary notifications.\": \"这些仓库可能导致不必要的通知。\",\n\n        //\n        \"Are you sure?\": \"您确定吗?\",\n        // [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消对这 $1 个仓库的关注，您将只在参与或 @您 时收到通知。\"], //取消所以关注\n\n        \"Ignoring\": \"忽略\",\n        \"Stop ignoring\": \"取消忽略\",\n        \"Watch\": \"关注\",\n        \"Unwatch\": \"取消关注\",\n\n        //\"Watched repositories\": \"关注的仓库\",\n\n        // \"Stop ignoring\": \"取消忽略\",\n        //\"Sorted by most recently watched.\": \"按最近关注排序\",\n        \"Unwatch all\": \"取消所有关注\",\n            \"Unwatch repositories by owner\": \"按所有者取消关注仓库\",\n            \"Find a repository owner\": \"查找仓库所有者\",\n            \"All repositories\": \"所有仓库\",\n             // [/([^ ]+)'s repositories/, \"$1 的仓库\"],\n        \"Stop watching all repositories\": \"取消关注所有的仓库\",\n\n        // 取消所有者关注仓库对话框\n        // [/Confirm unwatching ([^ ]+)'s repositories/, \"确认不关注 $1 的仓库\"],\n        // [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您将停止接收您所关注的 $1 拥有的所有仓库的通知。\"],\n\n        // 关注 & 订阅通知设置 下拉菜单\n        // \"Notifications\": \"通知类型\",\n        \"Participating and @mentions\": \"参与和 @您\",\n        \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n        \"All Activity\": \"所有活动\",\n        \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n        \"Ignore\": \"忽略\",\n        \"Never be notified.\": \"永不接收通知。\",\n        // \"Custom\": \"自定义\",\n        \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n        \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n        \"Releases\": \"发行版\",\n        \"Discussions\": \"讨论\",\n            \"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n        \"Security alerts\": \"安全警报\",\n        //\"Cancel\": \"取消\",\n        \"Apply\": \"应用\",\n\n        \"Notification settings\": \"通知设置\",\n        \"You can change how you receive notifications from your account settings.\": \"您可以从账户设置更改接收通知的方式。\",\n        \"Change notification settings\": \"更改通知设置\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消对这 $1 个仓库的关注，您将只在参与或 @您 时收到通知。\"],\n        [/Unwatch (\\d+) repositor(y|ies)/, \"取消对 $1 个仓库关注\"],\n        [/You will stop receiving notifications for the (\\d+) repositor(y|ies) you are watching./, \"您将停止接收您正在关注的 $1 个仓库的通知。\"],\n        [/Confirm unwatching ([^ ]+)'s repositories/, \"确定不关注 $1 的仓库\"],\n        [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您将停止接收您所关注的 $1 拥有的所有仓库的通知。\"],\n        [/([^ ]+)'s repositories/, \"$1 的仓库\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"notifications/subscriptions\"] = { //订阅的仓库页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"Watching\": \"关注\",\n        \"Subscriptions\": \"订阅\",\n\n        \"Reason\": \"原因\",\n            \"Filter by reason\": \"按原因筛选\",\n            \"Any reason\": \"任何原因\",\n            \"Show all subscriptions\": \"显示所有订阅\",\n            \"Assign\": \"分配\",\n            \"You were assigned to the Issue/PR.\": \"您被分配到议题/拉取请求。\",\n            \"Author\": \"作者\",\n            \"You created the thread.\": \"您创造了这个话题。\",\n            \"Comment\": \"评论\",\n            \"You commented on the thread.\": \"您评论了这个话题。\",\n            \"Manual\": \"手动\",\n            \"You subscribed to the thread (via an Issue or Pull Request).\": \"您订阅了该主题（通过议题或拉取请求）。\",\n            \"Mention\": \"提及\",\n            \"You were specifically @mentioned in the content.\": \"在内容中特别 @您。\",\n            \"Review Requested\": \"请求审查\",\n            \"You were requested for review.\": \"您被要求进行审查。\",\n            \"State Change\": \"状态变化\",\n            \"You changed the thread state (for example, closing an Issue or merging a Pull Request).\": \"您更改了话题状态（例如，关闭议题或合并拉取请求）。\",\n            \"Team Mention\": \"提及团队\",\n            \"You were on a team that was mentioned.\": \"您在团队中被提及。\",\n        \"Repository\": \"仓库\",\n            \"Filter by repository\": \"按仓库筛选\",\n            \"Filter repository\": \"筛选仓库\",\n            \"All repositories\": \"所有仓库\",\n            \"Loading repositories…\": \"载入仓库中…\",\n        \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Most recently subscribed\": \"最近订阅最多的\",\n            \"Least recently subscribed\": \"最近订阅最少的\",\n\n        \"Reason:\": \"原因：\",\n        \"Repository:\": \"仓库：\",\n        \"Clear current filters\": \"清除当前筛选器\",\n        \"No results matched your search.\": \"没有符合您的搜索结果。\",\n\n        \"selected\": \"个被选中\",\n        \"Unsubscribe\": \"取消订阅\",\n\n        \"opened\": \"打开\",\n        \"• subscribed\": \"• 订阅于\",\n        \"• updated\": \"• 更新于\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"stars\"] = { // 星标 https://github.com/stars/<user-name>\n    \"static\": { // 静态翻译\n        \"Your Stars\": \"我的星标\",\n        \"Browse your starred repositories and topics\": \"浏览我的星标仓库和主题\",\n        \"Your Starred Repositories\": \"我的星标仓库\",\n        \"Browse your starred repositories\": \"浏览我的星标仓库\",\n        \"Your Starred Topics\": \"我的星标主题\",\n        \"Browse your starred topics\": \"浏览我的星标主题\",\n\n        \"Browse starred repositories and topics\": \"浏览星标仓库和主题\",\n        \"Starred Repositories\": \"星标仓库\", // 他人\n        \"Browse starred repositories\": \"浏览星标仓库\", // 他人\n        \"Starred Topics\": \"星标主题\", // 他人\n        \"Browse starred topics\": \"浏览星标主题\", // 他人\n\n        \"Search stars…\": \"搜索星标主题…\",\n        \"Sort:\": \"排序：\",\n            // 筛选下拉\n            \"Sort options\": \"排序选项\",\n            \"Recently starred\": \"最近标星\",\n            \"Recently active\": \"最近活跃\",\n            \"Most stars\": \"最多星标\",\n\n        \"Sponsor\": \"赞助\",\n        \"Unstar\": \"已加星标于\",\n        \"See all starred repositories\": \"查看所有星标仓库\",\n        \"See all starred topics\": \"查看所有星标主题\",\n\n        \"You don’t have any starred topics, yet.\": \"您尚无任何的星标主题。\",\n        \"As you\": \"如果您\",\n        \"explore GitHub\": \"探索 GitHub\",\n        \"star topics to save them for later and they’ll show up here.\": \" 时，标星主题，它们会在这里显示出来。\",\n\n\n        // 右侧栏\n        \"All stars\": \"所有星标\",\n        \"All repositories\": \"所有仓库\",\n        \"Your repositories\": \"我的仓库\",\n        \"Others’ repositories\": \"其他仓库\",\n        \"Topics\": \"主题\",\n\n        \"Filter by languages\": \"按语言筛选\",\n        \"Jump to a friend\": \"去好基友那\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your starred topics\": \"我的星标主题\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"issues\"] = { // 议题页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository/issues\"][\"static\"],\n\n        \"Pull Requests\": \"拉取请求\", // pulls\n\n        \"Assigned to me\": \"分配给您\",\n        \"Created by me\": \"由您创建\",\n\n        \"Created\": \"已创建\",\n        \"Assigned\": \"已分配\",\n        \"Mentioned\": \"提到的\",\n            \"Issues mentioning you\": \"提及您的议题\",\n            \"Pull Requests mentioning you\": \"提及您的拉取请求\", // pulls\n        \"Review requests\": \"审查请求\", // pulls\n            \"Pull Requests requesting your review\": \"请求您审查的拉取请求\", // pulls\n        \"Recent activity\": \"最近活动\",\n        \"Views\": \"视图\",\n            \"Untitled view\": \"未命名的视图\",\n            \"All views\": \"所有视图\",\n            \"Create view\": \"创建视图\",\n                \"Build powerful views to keep track of work\": \"构建强大的视图来跟踪工作\",\n                \"Create your own views to quickly find and access your work.\": \"创建您自己的视图以快速查找和访问您的工作。\",\n                \"You have unsaved changes\": \"您有未保存的更改\",\n                    \"Are you sure you want to discard them?\": \"您确定要丢弃它们吗？\",\n                    \"OK\": \"确定\",\n            \"Saved views menu\": \"保存的视图菜单\",\n            \"Edit view\": \"编辑视图\",\n                \"Icon\": \"图标\",\n                \"Description\": \"描述\",\n                \"Query\": \"查询\",\n                \"Save view\": \"保存视图\",\n            \"Delete view\": \"删除视图\",\n\n        \"Visibility\": \"可见性\",\n        \"Repository visibility\": \"仓库可见性\",\n        \"Private repositories only\": \"只有私有仓库\",\n        \"Public repositories only\": \"只有公共仓库\",\n\n        \"Organization\": \"组织\",\n        \"Filter by organization or owner\": \"按组织或所有者筛选\",\n        \"Filter organizations\": \"筛选组织\",\n\n        \"Sort\": \"排序\",\n        \"Sort by\": \"排序方式\",\n        \"Order\": \"顺序\",\n        \"Newest\": \"最新的\",\n        \"Oldest\": \"最早的\",\n        \"Most commented\": \"最多评论\",\n        \"Least commented\": \"最少评论\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n        \"Best match\": \"最佳匹配\",\n        \"Most reactions\": \"最多回应\",\n        \"Least reactions\": \"最少回应\",\n\n        // 状态词\n        \"was merged\": \"已合并\",\n        \"was closed\": \"已关闭\",\n        \"Approved\": \"已批准\",\n        \"Review required\": \"请求审查\", // 拉取请求 页面状态词\n            \"Review required before merging\": \"合并前需要审查\",\n        \"Changes requested\": \"请求更改\",\n        \"outdated\": \"陈旧的\",\n        \"Draft\": \"草案\",\n        \"Merged\": \"已合并\",\n        \"opened\": \"打开于\",\n\n        \"This issue was\": \"此议题已\",\n            \"closed\": \"关闭\",\n\n        // \"No results matched your search.\": \"没有符合您的搜索结果。\",\n        \"Search all issues\": \"搜索所有议题\",\n        // 筛选结果\n        \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n        \"You could search\": \"您可以搜索\",\n        \"all of GitHub\": \"所有 GitHub\",\n        \"or try an\": \"或者尝试\",\n        \"advanced search\": \"高级搜索\",\n        \"No results\":\"无结果\",\n        \"Try adjusting your search filters.\":\"尝试调整您的搜索筛选条件。\",\n        \"Failed to load issues.\": \"无法加载议题。\",\n        \"We encountered an error trying to load issues.\": \"我们在尝试加载议题时遇到了错误。\",\n\n        // \"Use the links above to find what you’re looking for, or try\": \"使用上面的链接找到您要找的内容，或尝试\",\n        // \"a new search query\": \"新的搜索查询\",\n        // \". The Filters menu is also super helpful for quickly finding issues most relevant to you.\": \"。筛选菜单也是快速找到议题最相关的您超级有帮助的。\",\n        // \"Updated in the last three days\": \"更新了最后三天：\",\n        \"ProTip!\": \"专业提示！\",\n            \"Exclude your own issues with\": \"排除自己的议题\",\n            \"Mix and match filters to narrow down what you’re looking for.\": \"通过混合和匹配筛选器以缩小您要查找的范围。\",\n            \"Exclude everything labeled\": \"如果要找到所有标有\",\n            \"with\": \"标签的，请使用\",\n            \"on any issue or pull request to go back to the issue listing page.\": \"在任何议题或拉取请求上以返回到问题列表页面。\",\n            \"on any issue or pull request to go back to the pull request listing page.\": \"在任何问题或拉取请求上以返回拉取请求列表页面。\",\n            \"Updated in the last three days:\": \"最近三天更新：\",\n            \"Find all pull requests that aren't related to any open issues with\": \"查找与任何未解决议题无关的所有拉取请求\",\n            \"Adding\": \"添加\",\n            \"will show everything without a label.\": \"将显示没有标签的所有内容。\",\n            \"Follow long discussions with\": \"要跟随长讨论，请使用\",\n            \"Find everything you created by searching\": \"找到您创建的所有内容，通过搜索\",\n            \"will show everything without a milestone.\": \"将显示没有里程碑的任何东西。\",\n            \"What’s not been updated in a month:\": \"1 个月之内没有更新的内容：\",\n            \"to see everything that’s not assigned.\": \"以查看所有未分配的内容。\",\n\n        // 键盘快捷键\n            \"Pull request list\"  : \"拉取请求列表\",\n                \"Open pull request\"  : \"打开拉取请求\",\n            \"Pull request - Conversation tab\": \"拉取请求 - 对话选项卡\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Submit comment\": \"提交评论\",\n                \"Submit comment and close or open pull request\": \"提交评论并关闭或打开拉取请求\",\n                \"Submit comment and close issue\": \"提交评论并关闭??议题\", // 议题\n                \"Preview comment\": \"预览评论\",\n                \"Create issue\": \"创建议题\", //议题\n                \"Request reviewers\": \"请求审查者\",\n                \"Filter by author\"             : \"按作者筛选\",\n                \"Filter by or edit assignees\"  : \"按受理人筛选或编辑受理人\",\n                \"Filter by or edit labels\"     : \"按标签筛选或编辑标签\",\n                \"Filter by or edit projects\"   : \"按项目筛选或编辑项目\",\n                \"Filter by or edit milestones\" : \"按里程碑筛选或编辑里程碑\",\n                \"Link an issue or pull request from the same repository\": \"链接同一仓库的议题或拉取请求\",\n                \"Reply (quoting selected text)\": \"答复（引用所选文本）\",\n                \"Open saved replies\": \"打开快捷回复（引用所选文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回复（打开快捷回复）\",\n                \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切换所有折叠审查意见的可见性，而不仅仅是当前的审查意见\",\n            \"Pull request - Files changed tab\": \"拉取请求 - 文件更改标签卡\",\n                \"Open commits list\": \"打开提交列表\",\n                \"Open files list\": \"打开文件列表\",\n                \"Next commit\": \"下一个提交\",\n                \"Previous commit\": \"上一个提交\",\n                \"Show or hide annotations\": \"显示或隐藏批注\",\n                \"Show or hide comments\": \"显示或隐藏评论\",\n                \"Submit a review comment\": \"提交审查意见\",\n                \"Collapse or expand all files instead of just the current one\": \"折叠或展开所有文件，而不仅仅是当前文件\",\n                    \"and click\": \"和点击\",\n\n        \"Search Issues\": \"搜索议题\",\n            // 仓库\n                \"No repository\": \"无仓库\",\n                \"Has repository\": \"包含仓库\",\n                \"Exclude repo\": \"排除仓库\",\n            // 组织\n                \"Has organization\": \"包含组织\",\n                \"Exclude org\": \"排除组织\",\n            \"Is\": \"类型为\",\n                \"Exclude is\": \"排除类型为\",\n                \"Issue\": \"议题\",\n                \"Pull Request\": \"拉取请求\",\n                \"Unmerged\": \"未合并\",\n                \"Locked\": \"已锁定\",\n                \"Unlocked\": \"未锁定\",\n                \"Blocked\": \"已阻塞\",\n            \"State\": \"状态\",\n                \"Exclude state\": \"排除状态\",\n            // 标签\n                \"No label\": \"无标签\",\n                \"Has label\": \"包含标签\",\n                \"Exclude label\": \"排除标签\",\n                \"aesthetics\": \"美化\",\n                \"bug\": \"缺陷\",\n                \"dependencies\": \"依赖项\",\n                \"development\": \"开发中\",\n                \"discuss\": \"讨论\",\n                \"documentation\": \"文档\",\n                \"duplicate\": \"重复\",\n                \"enhancement\": \"功能增强\",\n                \"forums\": \"论坛\",\n                \"good first issue\": \"适合新手\",\n                \"help wanted\": \"求助\",\n                \"invalid\": \"无效\",\n                \"question\": \"提问\",\n                \"website\": \"网站\",\n                \"wontfix\": \"不会修复\",\n            // 类型\n                \"No type\": \"无类型\",\n                \"Has type\": \"包含类型\",\n            \"Project\": \"项目\",\n                \"No project\": \"无项目\",\n                \"Has project\": \"包含项目\",\n                \"Exclude project\": \"排除项目\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"无里程碑\",\n                \"Has milestone\": \"包含里程碑\",\n                \"Exclude milestone\": \"排除里程碑\",\n            // 受理人\n                \"No assignee\": \"无受理人\",\n                \"Has assignee\": \"包含受理人\",\n                \"Me\": \"我\",\n                    \"Signed-in user\": \"已登录用户\",\n                // Copilot\n                    \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                \"Exclude assignee\": \"排除受理人\",\n            \"Author\": \"作者\",\n                \"Has author\": \"包含作者\",\n                \"Exclude author\": \"排除作者\",\n            \"Involves\": \"涉及\",\n                \"Has involves\": \"包含涉及\",\n                \"Exclude involves\": \"排除涉及\",\n            \"Mentions\": \"提及\",\n                \"Has mentions\": \"包含提及\",\n                \"Exclude mentions\": \"排除提及\",\n            \"Parent issue\": \"父议题\",\n                \"No parent issue\": \"无父议题\",\n                \"Has parent issue\": \"包含父议题\",\n                \"Exclude parent-issue\": \"排除父议题\",\n            \"Blocking\": \"阻塞\",\n                \"No blocking\": \"无阻塞\",\n                \"Has blocking\": \"包含阻塞\",\n                \"Exclude blocking\": \"排除阻塞\",\n            \"Blocked by\": \"被…阻塞\",\n                \"No blocked by\": \"无被阻塞\",\n                \"Has blocked by\": \"包含被阻塞\",\n                \"Exclude blocked-by\": \"排除被阻塞\",\n            \"Sub-issue\": \"子议题\",\n                \"No sub-issue\": \"无子议题\",\n                \"Has sub-issue\": \"包含子议题\",\n                \"Exclude sub-issue\": \"排除子议题\",\n            \"Update date\": \"更新日期\",\n                \"Exclude updated\": \"排除更新日期\",\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Past 7 days\": \"过去 7 天\",\n                \"Past 30 days\": \"过去 30 天\",\n                \"Past year\": \"过去 1 年\",\n            \"Creation date\": \"创建日期\",\n                \"Has creation date\": \"包含创建日期\",\n                \"Exclude created\": \"排除创建日期\",\n            \"Closed date\": \"关闭日期\",\n                \"Has closed date\": \"包含关闭日期\",\n                \"Exclude closed\": \"排除关闭日期\",\n            \"Merge date\": \"合并日期\",\n                \"Has merge date\": \"包含合并日期\",\n                \"Exclude merged\": \"排除合并日期\",\n            \"Review requested\": \"已请求评审\",\n                \"Has review requested\": \"包含已请求评审\",\n                \"Exclude review-requested\": \"排除已请求评审\",\n            \"In\": \"在\",\n                \"Has in\": \"包含在\",\n                \"Exclude in\": \"排除在\",\n                \"Body\": \"正文\",\n                \"Comments\": \"评论\",\n            \"Commenter\": \"评论者\",\n                \"Has commenter\": \"包含评论者\",\n                \"Exclude commenter\": \"排除评论者\",\n            \"User\": \"用户\",\n                \"Has user\": \"包含用户\",\n                \"Exclude user\": \"排除用户\",\n            \"User review requested\": \"已请求用户评审\",\n                \"Has user review requested\": \"包含已请求用户评审\",\n                \"Exclude user-review-requested\": \"排除已请求用户评审\",\n            \"Reviewed by\": \"评审者\",\n                \"Has reviewed by\": \"包含评审者\",\n                \"Exclude reviewed-by\": \"排除评审者\",\n            \"Comment count\": \"评论数\",\n                \"Has comment count\": \"有评论数\",\n                \"Less than 10\": \"少于 10\",\n                \"More than 10\": \"多于 10\",\n                \"Between 10 and 100\": \"10 到 100\",\n            \"Interactions count\": \"互动数\",\n                \"Has interactions count\": \"有互动数\",\n            \"Closed reason\": \"关闭原因\",\n                \"Exclude reason\": \"排除原因\",\n                \"Completed\": \"已完成\",\n                \"Not planned\": \"未计划\",\n                \"Duplicate\": \"重复\",\n            \"Linked\": \"已链接\",\n                \"Has linked\": \"包含已链接\",\n                \"Exclude linked\": \"排除已链接\",\n            \"Archived\": \"已归档\",\n                \"Has archived\": \"包含已归档\",\n                \"Exclude archived\": \"排除已归档\",\n                \"True\": \"是\",\n                \"False\": \"否\",\n            \"Reaction count\": \"表情回应数\",\n                \"Has reaction count\": \"有表情回应数\",\n            // 草案\n                \"Has draft\": \"包含草案\",\n                \"Exclude draft\": \"排除草案\",\n            \"Review state\": \"评审状态\",\n                \"Has review state\": \"包含评审状态\",\n                \"Exclude review\": \"排除评审状态\",\n                \"No reviews\": \"无评审\",\n            \"Code language\": \"代码语言\",\n                \"Has code language\": \"包含代码语言\",\n                \"Exclude language\": \"排除代码语言\",\n            \"Commit SHA\": \"提交 SHA\",\n                \"Has commit sha\": \"包含提交 SHA\",\n                \"Exclude sha\": \"排除提交 SHA\",\n            \"Base\": \"基础分支\",\n                \"Has base\": \"包含基础分支\",\n                \"Exclude base\": \"排除基础分支\",\n            \"Head\": \"对比分支\",\n                \"Has head\": \"包含对比分支\",\n                \"Exclude head\": \"排除对比分支\",\n            // 状态 (Status)\n                \"Has status\": \"包含状态检查\",\n                \"Exclude status\": \"排除状态检查\",\n                \"Pending\": \"待处理\",\n                \"Success\": \"成功\",\n                \"Failure\": \"失败\",\n                \"Queued\": \"排队中\",\n                \"Waiting\": \"等待中\",\n                \"Cancelled\": \"已取消\",\n                \"Skipped\": \"已跳过\",\n            \"Team\": \"团队\",\n                \"Has team\": \"包含团队\",\n                \"Exclude team\": \"排除团队\",\n            \"Team review requested\": \"已请求团队评审\",\n                \"Has team review requested\": \"包含已请求团队评审\",\n                \"Exclude team-review-requested\": \"排除已请求团队评审\",\n            // 排序\n                \"Has sort\": \"包含排序\",\n                \"Exclude sort\": \"排除排序\",\n                \"Least reactions\": \"最少回应\",\n                \"Most thumbs up (👍) reactions\": \"👍 回应最多\",\n                \"Least thumbs up (👍) reactions\": \"👍 回应最少\",\n                \"Most thumbs down (👎) reactions\": \"👎 回应最多\",\n                \"Least thumbs down (👎) reactions\": \"👎 回应最少\",\n                \"Most laugh (😄) reactions\": \"😄 回应最多\",\n                \"Least laugh (😄) reactions\": \"😄 回应最少\",\n                \"Most confused (😕) reactions\": \"😕 回应最多\",\n                \"Least confused (😕) reactions\": \"😕 回应最少\",\n                \"Most tada (🎉) reactions\": \"🎉 回应最多\",\n                \"Least tada (🎉) reactions\": \"🎉 回应最少\",\n                \"Most heart (❤️) reactions\": \"❤️ 回应最多\",\n                \"Least heart (❤️) reactions\": \"❤️ 回应最少\",\n                \"Most eyes (👀) reactions\": \"👀 回应最多\",\n                \"Least eyes (👀) reactions\": \"👀 回应最少\",\n            \"AND\": \"且\",\n            \"OR\": \"或\",\n            \"Exclude\": \"排除\",\n        // 过滤器问题\n            \"Empty value for\": \"空值\",\n            \"Invalid value\": \"无效值\",\n            \"for\": \"对于\",\n        \"Clear filter\": \"清除筛选\",\n\n        \"View issue\": \"查看议题\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/issues\"][\"regexp\"],\n\n        [/(\\d+) Open/, \"$1 打开\"],\n        [/(\\d+) Closed/, \"$1 已关闭\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) results?/, \"$1 个结果\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/(\\d+) review approvals?/, \"$1 次审查批准\"],// 拉取请求页 \"已批准' 浮动提示\n        [/(\\d+) review requesting changes?/, \"$1 条请求更改评论\"],\n        [/([\\d,]+) linked issues?/, \"$1 个关联议题\"],\n        [/([\\d,]+) linked pull requests?/, \"$1 个关联拉取请求\"],\n        [/(\\d+) \\/ (\\d+) checks? OK/, \"$1 / $2 检查 OK\"], // 对勾 的提醒 /pulls\n        [/Assigned to ([^ ]+)/, \"分配给 $1\"],\n        [/Created by ([^ ]+)/, \"由 $1 创建\"],\n        [/Updated/, \"更新于\"],\n        [/#([^ ]+) opened/, \"#$1 打开于\"],\n        [/#(\\d+) by/, \"#$1 打开者\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵痒了？用它筛选 @$1 的提及：\"], // 专业提示\n        [/Are you sure you want to delete view (.*)\\?/, \"您确定要删除视图 $1 吗？\"],\n        [/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            // issues\n            \"Assigned to me\": \"分配给您\",\n            \"Created by me\": \"由您创建\",\n            \"Mentioned\": \"提到的\",\n            \"Recent Activity\": \"最近活动\",\n            \"View\": \"视图\",\n\n            // pulls\n            \"Pull requests - Created\": \"拉取请求 - 已创建\",\n            \"Pull requests - Assigned\": \"拉取请求 - 已分配\",\n            \"Pull requests - Mentioned\": \"拉取请求 - 提到的\",\n            \"Pull requests - Review requests\": \"拉取请求 - 审查请求\",\n        },\n    },\n};\nI18N[\"zh-CN\"].pulls = I18N[\"zh-CN\"].issues;\n\nI18N[\"zh-CN\"][\"repos\"] = {\n    \"static\": {\n        \"My contributions\": \"我的贡献\",\n        \"My repositories\": \"我的仓库\",\n        \"My forks\": \"我的复刻\",\n        \"Adminable by me\": \"我可管理\",\n\n        \"Views\": \"视图\",\n            \"Create view\": \"新建\",\n                \"Icon\": \"图标\",\n                \"Description\": \"描述\",\n                \"Query\": \"查询\",\n\n                \"Save view\": \"保存\",\n\n        // 搜索栏\n            \"Clear filter\": \"清除筛选\",\n            \"Comfortable display density\": \"舒适视图\",\n            \"Compact display density\": \"紧凑视图\",\n\n        // 筛选框\n            \"Relevance\": \"相关性\",\n            \"Last pushed\": \"最后推送\",\n            \"Name\": \"名称\",\n\n            \"Ascending\": \"递增\",\n            \"Descending\": \"递减\",\n\n        \"Updated\": \"更新于\",\n    },\n    \"regexp\": [\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/([^ ]+)’s past year of commit activity/, \"近几年 $1 的提交活动\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"search\"] = { // 搜索页面\n    \"static\": { // 静态翻译\n        \"More than\": \"多余\",\n        \"ms\": \"毫秒\", // 时间，前面\"结果\"走正则匹配\n        \"s\": \"秒\", // 同上\n        \"in\": \"在\",\n        \"View topic\": \"查看主题\", //搜索结果中的主题\n        // 搜索 https://github.com/search >>>>>>>>>>>>>>>>>>>>>>>>\n            \"Search GitHub\": \"在 GitHub 上搜索\",\n\n            // ProTip\n            \"ProTip!\": \"专业提示！\",\n            \"Press the\": \"再次按\",\n            \"key to activate the search input again and adjust your query.\": \"键激活搜索输入并调整您的搜索结果。\",\n            \"For an\": \"要进行\",\n            \"advanced search\": \"高级搜索\",\n            \", use our\": \"，使用我们的\",\n            \"prefixes\": \"前缀\",\n\n            // 搜索技巧 对话框 (忽略 不翻译)\n            \"Search cheat sheet\": \"搜索小技巧\",\n            \"GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.\": \"GitHub 的搜索支持各种不同的操作。下面是一些常见搜索的快速小抄。\",\n            \"For more information, visit our\": \"更多有关信息，请访问我们的\",\n            \"search help section\": \"搜索帮助章节\",\n            \"Basic search\": \"基本搜索\",\n            \"This search\": \"关键规则\",\n            \"Finds repositories with…\": \"查找仓库…\",\n            \"Repository search\": \"仓库搜索\",\n            \"Code search\": \"代码搜索\",\n            \"Issue search\": \"议题搜索\",\n            \"User search\": \"用户搜索\",\n\n        // 搜索结果页面 https://github.com/search?q=  >>>>>>>>>>>>>>>>>>>>>>>>\n            // 左侧菜单\n            \"Filter by\": \"筛选\",\n            \"Code\": \"代码\",\n            \"Repositories\": \"仓库\",\n            \"Commits\": \"提交\",\n            \"Discussions\": \"讨论\",\n            \"Topics\": \"主题\",\n            \"Users\": \"用户\",\n\n            \"States\": \"状态\",\n\n            \"Languages\": \"语言\",\n            \"More languages...\": \"更多语言…\",\n\n            // &type=code\n            \"Files with identical content are grouped together.\": \"内容相同的文件已归为一组。\",\n                \"Hide these extra files instead\": \"隐藏这些重复文件\",\n\n            \"More repositories...\": \"更多仓库…\",\n            \"Paths\": \"路径\",\n            \"More directories...\": \"更多路径…\",\n\n            // &type=registrypackages\n            \"Types\": \"类型\",\n\n            // &type=issues\n            \"State\": \"状态\",\n\n            \"Advanced\": \"高级搜索\",\n                \"Owner\": \"所有者\",\n                \"Size\": \"尺寸\",\n                \"Number of followers\": \"关注数\",\n                \"Number of forks\": \"复刻数\",\n                \"Number of stars\": \"星标数\",\n                \"Date created\": \"创建日期\",\n                \"Date pushed\": \"推送日期\",\n                \"Topic\": \"话题\",\n                \"License\": \"许可证\",\n                \"Archived\": \"存档\",\n\n                // &type=code\n                \"Symbol\": \"符号\",\n                \"Exclude archived\": \"排除存档\",\n\n                // &type=issues\n                \"Close reason\": \"关闭原因\",\n                \"Has linked pull request\": \"已关联的拉取请求\",\n                \"Author\": \"作者\",\n                \"Assignee\": \"受理人\",\n                \"Mentioned user\": \"提及的用户\",\n                \"Mentioned team\": \"提及的团队\",\n                \"Commenter\": \"评论者\",\n                \"Involved user\": \"相关用户\",\n                \"Label\": \"标签\",\n                \"Milestone\": \"里程碑\",\n                \"Number of comments\": \"评论数\",\n                \"Number of interactions\": \"互动数\",\n\n                // &type=pullrequests\n                \"CI status\": \"CI 状态\",\n                \"Review status\": \"审查状态\",\n                \"Merged\": \"已合并\",\n                \"Not merged\": \"未合并\",\n\n                // &type=discussions\n                \"Organization\": \"组织\",\n                \"Involves user\": \"相关用户\",\n\n                // &type=users\n                \"Full name\": \"全称\",\n                \"Location\": \"地区\",\n                \"Language\": \"语言\",\n                \"Sponsorable\": \"可赞助\",\n\n                // &type=commits\n                \"Committer\": \"提交至\",\n                \"Author email\": \"作者电子邮箱\",\n                \"Committer email\": \"提交者电子邮箱\",\n                \"Merge commits\": \"合并提交\",\n                \"Hash\": \"哈希值\",\n                \"Parent hash\": \"父哈希值\",\n                \"Tree hash\": \"树哈希值\",\n\n            \"Advanced search\": \"高级搜索\",\n                // &type=wikis\n                \"User\": \"用户\",\n                \"Repository\": \"仓库\",\n                \"Last updated date\": \"最后更新日期\",\n                // &type=topics\n                \"Curated topics\": \"策划主题\",\n                \"Featured topics\": \"精选主题\",\n                \"Number of repositories\": \"仓库数\",\n                \"Creation date\": \"创建日期\",\n\n            \"Cheat sheet\": \"搜索技巧\",\n\n            \"Sort by:\": \"排序方式：\",\n            \"Sort by\": \"排序方式\", // Android UA\n                // 筛选下拉\n                // &type=repositories\n                \"Sort options\": \"排序选项\",\n                \"Best match\": \"最佳匹配\",\n                \"Most stars\": \"最多星标\",\n                \"Fewest stars\": \"最少星标\",\n                \"Most forks\": \"最多复刻\",\n                \"Fewest forks\": \"最少复刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                // 提交\n                \"Recently committed\": \"最近提交\",\n                \"Least recently committed\": \"最早提交\",\n                \"Recently authored\": \"最近撰写\",\n                \"Least recently authored\": \"最早撰写\",\n                // 议题\n                \"Most commented\": \"最多评论\",\n                \"Least commented\": \"最少评论\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                // 讨论\n                \"Highest score\": \"得分最高\",\n                \"Lowest score\": \"得分最低\",\n                // 软件包\n                \"Most downloads\": \"最多下载\",\n                \"Fewest downloads\": \"最少下载\",\n                // 用户\n                \"Most followers\": \"最多关注者\",\n                \"Fewest followers\": \"最少关注者\",\n                \"Most recently joined\": \"最近加入\",\n                \"Fewest recently joined\": \"最早加入\",\n                \"Least recently joined\": \"最早加入\",\n                \"Most repositories\": \"最多仓库\",\n                \"Fewest repositories\": \"最少仓库\",\n\n            \"More options\": \"更多选项\",\n            \"your search\": \"您的搜索\", // Android UA\n            \"View search docs\": \"查看搜索文档\",\n\n            // 部分状态词\n            \"Updated\": \"更新于\", // &type=repositories\n            \"committ\": \"提交\",\n            \"committed\": \"提交于\", // &type=commits\n            \"Opened\": \"打开于\", // &type=issues\n            \"Last updated\": \"最近更新于\", // &type=wikis\n            \"posted\": \"发布于\", // &type=discussions\n\n            // 保存对话框\n            \"Create saved search\": \"创建保存的搜索\",\n                \"Use saved searches to filter your results more quickly\": \"使用保存的搜索更快地筛选结果\",\n                \"Name\": \"名称\",\n                \"Query\": \"询问\",\n                \"To see all available qualifiers, see our\": \"要查看所有可用的限定符，请参阅我们的\",\n                \"documentation\": \"文档\",\n\n                \"Name has already been taken\": \"名称被占用\",\n\n            // &type=repositories\n                \"Sponsor\": \"赞助\",\n                // [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n                // 赞助对话框\n                \"External links\": \"外部链接\",\n                \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n                \"Report abuse\": \"举报滥用\",\n\n                // 右侧栏\n                    \"Sponsor open source projects you depend on\": \"赞助您依赖的开源项目\",\n                    \"Contributors are working behind the scenes to make open source better for everyone—give them the help and recognition they deserve.\": \"贡献者们正在幕后努力，为每个人创造更好的开源环境——给予他们应有的帮助和认可\",\n                    \"Explore sponsorable projects\": \"探索可赞助项目\",\n\n                    \"How can we improve search?\": \"我们如何改进搜索？\",\n                    \"Give feedback\": \"提供反馈意见\",\n                        // 对话框\n                        \"Provide feedback\": \"提供反馈\",\n                            \"We read every piece of feedback, and take your input very seriously.\": \"我们认真阅读每一份反馈意见，并非常重视您的建议。\",\n                            \"Include my email address so I can be contacted\": \"附上我的电子邮件地址以便于联系\",\n                            \"Submit feedback\": \"提交\",\n\n            // &type=code\n                // [/Show ([\\d,]+) more matches?/, \"显示更多 $1 处匹配\"],\n                \"This file contains\": \"该文件还包含\",\n                \"more\": \"处\",\n                \"match\": \"匹配\",\n                \"matches\": \"匹配\",\n                \"not shown.\": \"未显示。\",\n                \"See all\": \"查看完整文件中的所有\",\n                \"matche in the full file\": \"处匹配\",\n                \"matches in the full file\": \"处匹配\",\n                // 未登录\n                \"Sign in to search code on GitHub\": \"登录以在 GitHub 上搜索代码\",\n                \"Before you can access our code search functionality please sign in or create a free account.\": \"在使用代码搜索功能之前，请先登录或创建一个免费帐户。\",\n\n            // &type=issues\n                \"Learn how you can use GitHub Issues to plan and track your work.\": \"了解如何使用 GitHub 议题计划和跟踪工作。\",\n                \"Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.\": \"保存冲刺、待办事项、团队或发布的视图。根据场合对议题进行排名、排序和筛选。可能性是无止境。\",\n                \"Learn more about GitHub Issues\": \"了解更多关于 GitHub 议题的信息\",\n\n            // &type=registrypackages\n                \"Learn GitHub Packages\": \"了解 GitHub 软件包\",\n                \"GitHub Packages is a platform for hosting and managing packages, including containers and other dependencies. Get started with publishing or installing packages yourself.\": \"GitHub 软件包是一个托管和管理包（包括容器和其他依赖项）的平台。开始自行发布或安装软件包吧\",\n                \"Learn more about GitHub Packages\": \"了解更多关于 GitHub 软件包的信息\",\n\n            // &type=topics\n                \"Related:\": \"相关的：\",\n\n            // &type=registrypackages\n                \"latest\": \"最新\",\n\n            \"Your search did not match any\": \"您的搜索没有匹配任何\",\n            \"code\": \"代码\",\n            \"issue\": \"议题\",\n            \"issues\": \"议题\",\n            \"pull request\": \"拉取请求\",\n            \"pull requests\": \"拉取请求\",\n            \"discussion\": \"讨论\",\n            \"discussions\": \"讨论\",\n            \"commit\": \"提交\",\n            \"commits\": \"提交\",\n            \"package\": \"软件包\",\n            \"packages\": \"软件包\",\n            \"wikis\": \"Wiki\",\n            \"Try one of the tips below to find more code\": \"请尝试使用以下提示查找更多代码\",\n            \"Try one of the tips below to find more repositories\": \"请尝试使用以下提示查找更多仓库\",\n            \"You could try one of the tips below.\": \"请尝试使用以下提示\",\n\n            \"However we found\": \"然而我们发现\",\n            \"code results\": \"代码结果\",\n            \"code result\": \"代码结果\",\n            \"and\": \"和\",\n            \"that matched your search query. Alternatively try one of the tips below.\": \"与您的搜索查询相匹配。或者尝试以下提示之一。\",\n\n            \"Search across repositories\": \"跨仓库搜索\",\n                \"Within a repository:\": \"在仓库内：\",\n                \"Across several:\": \"跨越几个：\",\n                \"Alternative way:\": \"替代方式：\",\n\n                \"Note that we don't currently support regular expressions in the repo or org qualifiers. For more information on search syntax, see our\": \"请注意，我们目前不支持 repo 或 org 限定符中的正则表达式。更多关于搜索语法的信息，请参阅我们的\",\n                \"syntax guide\": \"语法指南\",\n\n            \"Search across an organization\": \"跨组织搜索\",\n                \"Within an organization:\": \"在组织内：\",\n                \"User's code:\": \"用户代码：\",\n\n            \"Find a particular file extension\": \"查找特定的文件扩展名\",\n                \"With .txt extensions:\": \"带有 .txt 扩展名：\",\n                \"JavaScript and TypeScript files:\": \"JavaScript 和 TypeScript 文件：\",\n\n                \"The path qualifier can search the entire file path, not just the extension, and supports regular expressions. For more information, see our\": \"路径限定符可以搜索整个文件路径，而不仅仅是扩展名，并且支持正则表达式。更多信息，请参阅我们的\",\n\n            \"Why wasn't my code found?\": \"为什么找不到我的代码？\",\n                \"When you search within a repository for the first time, please note that the repository undergoes indexing.\": \"首次在仓库中搜索时，请注意仓库会进行索引。\",\n                \"This process may take a few minutes.\": \"这一过程可能需要几分钟。\",\n\n                \"The index currently includes more than 70 million popular public repositories, plus all private repositories that users search for.\": \"该索引目前包括超过 7000 万个热门公共仓库，以及用户搜索的所有私有仓库。\",\n                \"Beyond that, we also don't include all files in the search index:\": \"除此之外，我们也不会将所有文件都纳入搜索索引：\",\n                    \"Vendored and generated code is excluded\": \"排除供应和生成的代码\",\n                    \"Empty files and files over 350 kiB are excluded\": \"排除空文件和超过 350 kiB 的文件\",\n                    \"Only UTF-8 encoded files are indexed\": \"仅对 UTF-8 编码的文件进行索引\",\n                    \"Very large repositories may not be indexed\": \"非常大的仓库可能不会被索引\",\n\n                \"We intend to continue to increase the amount of code available in the index as much as possible. If we are missing files that are useful to you, feel free to\": \"我们打算继续尽可能增加索引中可用的代码量。如果我们缺少对您有用的文件，请随意在此处\",\n                \"provide feedback here\": \"提供反馈\",\n\n            \"Regular expressions\": \"正则表达式\",\n                \"Sparse followed by index:\": \"稀疏跟随索引：\",\n                \"Lines that end with return:\": \"以回车结束的行：\",\n                \"File paths matching:\": \"文件路径匹配：\",\n\n                \"Note that you'll have to escape any slashes in the regex. For more information, see our\": \"注意，您必须在 正则中转义任何斜线。更多信息，请参阅我们的\",\n\n            \"Saved searches\": \"保存搜索\",\n                \"Always searching within the same organization or set of repositories? Try constructing a query and click the save button in the top right corner.\": \"总是在同一个组织或一组仓库中搜索？请尝试创建一个查询，然后点击右上角的保存按钮。\",\n\n            \"You could try an\": \"您可以尝试\",\n\n        // 高级搜索 https://github.com/search/advanced >>>>>>>>>>>>>>>>>>>>>>>>\n            // 高级搜索\n            // \"Advanced search\": \"高级搜索\",\n            \"Search\": \"搜索\",\n            \"Advanced options\": \"高级选项\",\n            \"From these owners\": \"指定作者\",\n            \"In these repositories\": \"指定仓库\",\n            \"Created on the dates\": \"创建日期\",\n            \"Written in this language\": \"使用语言\",\n            \"Any language\": \"任何语言\",\n                \"Popular\": \"热门\",\n                \"Everything else\": \"其他语言\",\n\n            \"Repositories options\": \"仓库选项\",\n            \"With this many stars\": \"指定星标数\",\n            \"With this many forks\": \"指定复刻数\",\n            \"Of this size\": \"仓库大小\",\n            \"Pushed to\": \"推送于\",\n            \"With this license\": \"用何种许可证\",\n                \"Any license\": \"任意许可证\",\n                \"Licenses\": \"许可证\",\n                \"License families\": \"许可证系列\",\n            \"Return repositories\": \"搜索结果\",\n            \"not\": \"不\",\n            // \"and\": \"要\",\n            \"only\": \"仅\",\n            \"including forks.\": \"包含复刻仓库。\",\n\n            \"Code options\": \"代码选项\",\n            \"With this extension\": \"文件后缀\",\n            \"Of this file size\": \"文件大小\",\n            \"In this path\": \"文件路径\",\n            \"With this file name\": \"文件名称\",\n            \"Return code\": \"搜索结果\",\n            // \"Return code from forked repositories\": \"搜索结果包括被复刻的仓库。\",\n\n            \"Issues options\": \"议题选项\",\n            \"In the state\": \"议题状态\",\n                \"open/closed\": \"打开/关闭\",\n                \"open\": \"打开\",\n                \"closed\": \"已关闭\",\n            \"With the reason\": \"原因\",\n                \"any reason\": \"任何原因\",\n                \"completed\": \"已完成\",\n                \"not planned\": \"无计划\",\n                \"reopened\": \"重新打开\",\n            \"With this many comments\": \"评论数量\",\n            \"With the labels\": \"议题标签\",\n            \"Opened by the author\": \"提议人\",\n            \"Mentioning the users\": \"提及谁\",\n            \"Assigned to the users\": \"分配给谁\",\n            \"Updated before the date\": \"更新于\",\n\n            \"Users options\": \"用户选项\",\n            \"With this full name\": \"用户全称\",\n            \"From this location\": \"来自哪里\",\n            \"With this many followers\": \"有多少关注者\",\n            \"With this many public repositories\": \"有多少公共仓库\",\n            \"Working in this language\": \"擅长什么语言\",\n            \"Wiki options\": \"Wiki 选项\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Filters?/, \"过滤\"], // Android UA\n        [/(\\d+(k|M|B)?) results?/, \"$1 个结果\"], // 顶部，数字后可能带 K、M、B 三种字母其中一个\n        [/(\\d+(k|M|B)?) files?/, \"$1 个文件\"], // 同上 https://github.com/search?q=<keyword>&type=code\n        [/More than ([\\d,]+) results?/, \"大于 $1 个结果\"],\n        [/Show ([\\d,]+) more matches?/, \"显示更多 $1 处匹配\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/on (.+)/, \"$1\"], // 日期去除 on\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(2) > label > select > option:nth-child(2)\", \"要\"],\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(3) > label > select > option:nth-child(2)\", \"要\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repository search results\": \"仓库搜索结果\",\n            \"Code search results\": \"代码搜索结果\",\n            \"Issue search results\": \"议题搜索结果\",\n            \"Pull request search results\": \"拉取请求搜索结果\",\n            \"Discussion search results\": \"讨论搜索结果\",\n            \"User search results\": \"用户搜索结果\",\n            \"Commit search results\": \"提交搜索结果\",\n            \"Package search results\": \"软件包搜索结果\",\n            \"Wiki search results\": \"Wiki 搜索结果\",\n            \"Topic search results\": \"主题搜索结果\",\n            \"Marketplace search results\": \"市场搜索结果\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"repository/search\"] = I18N[\"zh-CN\"][\"search\"];\n\nI18N[\"zh-CN\"][\"discussions\"] = {\n    \"static\": { // 静态翻译\n        // https://github.com/discussions\n            \"Discussions\": \"讨论\",\n\n            \"Created\": \"已创建\",\n            \"Commented\": \"已评论\",\n\n            \"Search all discussions\": \"搜索所有讨论\",\n\n            \"No discussions match the selected filters.\": \"没有符合所筛选条件的讨论。\",\n            \"Discussions are used to ask questions and have open-ended conversations.\": \"讨论用于提出问题并进行开放式对话。\",\n\n        // https://github.com/discussions/commented\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Discussions\": \"讨论\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"gist\"] = { // 代码片段页面\n    \"static\": { // 静态翻译\n        // 快捷键\n        \"Site wide shortcuts\": \"全局快捷键\",\n        \"Gists\": \"代码片段\",\n        \"Go to Code\": \"跳转到代码\",\n        \"Go to Revisions\": \"跳转到修订\",\n\n        \"Instantly share code, notes, and snippets.\": \"即时分享您的代码，笔记，片段，以及灵感。\",\n        \"Search…\": \"搜索…\", // 未登录\n        \"Search...\": \"搜索…\", // 已登录\n        \"Search Gists\": \"搜索代码片段\",\n            \"No results.\": \"没有结果。\",\n            \"Yours\": \"您的\",\n        \"All gists\": \"所有片段\",\n        \"Back to GitHub\": \"返回到 GitHub\",\n        \"You don’t have any gists yet.\": \"您还没有任何代码片段。\",\n        \"Your public gists will show up here on your profile.\": \"您的公开代码片段将显示在这里。\",\n        \"Create a gist\": \"新建一个代码片段\",\n\n        \"Forked\": \"复刻\",\n        \"Starred\": \"星标\",\n\n        // 左侧用户信息栏\n        \"Change your avatar\": \"修改头像\",\n        \"follower\": \"关注者\",\n        \"followers\": \"关注者\",\n        \"following\": \"关注\",\n        \"Joined\": \"加入于\",\n        \"View GitHub Profile\": \"查看 GitHub 个人资料\",\n\n        \"Create new gist\": \"新建片段\",\n        // 右上角个人图标下拉菜单\n            \"Signed in as\": \"登录身份为\",\n            \"Your gists\": \"我的代码片段\",\n            \"Starred gists\": \"我的星标代码片段\",\n            \"Help\": \"帮助\",\n        \"Your GitHub profile\": \"我的 GitHub 个人资料\",\n\n        \"View profile and more\": \"查看更多信息\",\n        \"See all of your gists\": \"查看您的所有片段\",\n\n        // 返回通知页状态条\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Unsubscribe\": \"退订\",\n            \"Mark as unread\": \"标记为未读\",\n            \"Save\": \"保存\",\n\n        // 用户 浮动信息卡\n        \"Member of\": \"隶属组织\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n\n        // 新建片段页面\n        \"View your gists\": \"查看您的片段\",\n        \"Gist description…\": \"片段描述…\",\n        \"Filename including extension…\": \"文件名 (包括扩展名)…\",\n        \"Create secret gist\": \"创建私密片段\",\n        \"Secret gists are hidden by search engines but visible to anyone you give the URL to.\": \"私密片段对搜索引擎不可见，对直接访问您分享的链接可见。\",\n        \"Create public gist\": \"创建公开片段\",\n        \"Public gists are visible to everyone.\": \"公开片段对所有人可见。\",\n\n        // 代码编辑框\n        \"Indent mode\": \"缩进模式\",\n        \"Spaces\": \"空格\",\n        \"Tabs\": \"Tab\",\n        \"Indent size\": \"缩进大小\",\n        \"Line wrap mode\": \"换行模式\",\n        \"No wrap\": \"不换行\",\n        \"Soft wrap\": \"软换行\",\n        \"Add file\": \"添加文件\",\n        \"Remove file\": \"移除文件\",\n\n        // All gists 标签卡\n        // 筛选 & 排序工具栏\n        \"Sort:\": \"排序:\",\n        \"Sort options\": \"排序选项\",\n        \"Recently created\": \"最近创建\",\n        \"Least recently created\": \"最早创建\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n\n        \"Type:\": \"类型:\",\n        \"Filter options\": \"筛选选项\",\n        \"All\": \"所有\",\n        \"Public\": \"公共\",\n        \"Secret\": \"私密\",\n\n        \"Created\": \"创建于\",\n        \"Last active\": \"最后活动于\",\n        \"Forked from\": \"复刻自\",\n        \"— forked from\": \"— 复刻自\",\n\n        \"Newer\": \"新的\",\n        \"Older\": \"旧的\",\n\n        // View 代码 页面\n        // 头部通用信息\n        \"Only those with the link can see this gist.\": \"只有知道链接的人才能看到此 Gist。\",\n        \"Edit\": \"编辑\",\n        \"Delete\": \"删除\",\n            \"Are you positive you want to delete this Gist?\": \"您确定要删除此 Gist 吗？\",\n            // 顶部提醒\n                \"Gist deleted successfully.\": \"代码片段已成功删除。\",\n        \"Subscribe\": \"订阅\",\n        // \"Unsubscribe\": \"退订\",\n        \"Star\": \"标星\",\n            \"Star this gist\": \"标星该代码片段\",\n            \"You must be signed in to star a gist\": \"您必须登录才能标星代码片段\",\n        \"Unstar\": \"取消星标\",\n            \"Unstar this gist\": \"取消该代码片段星标\",\n        \"Forks\": \"复刻\",\n            \"Fork this gist\": \"复刻代码片段\",\n            \"You must be signed in to fork a gist\": \"您必须登录才能复刻代码片段\",\n        \"User actions\": \"用户操作\",\n        \"Report abuse\": \"举报滥用\",\n        \"Disable comments\": \"禁用评论\",\n            \"Comments have been disabled.\": \"评论已禁用。\", // 顶部提示\n            \"Comments are disabled for this gist.\": \"评论已被禁用。\", // 评论框底部提示\n        \"Enable comments\": \"启用评论\",\n            \"Comments have been enabled.\": \"评论已启用。\", // 顶部提示\n\n        \"Code\": \"代码\",\n        \"Revisions\": \"修订\",\n        \"Stars\": \"星标\",\n\n        \"Drop one or more files here to prefill your gist!\": \"在此处拖放一个或多个文件以填充您的 Gist！\",\n\n        // 分享工具条\n        \"What would you like to do?\": \"您想做什么？\",\n        \"Embed\": \"嵌入\",\n            \"Embed this gist in your website.\": \"嵌入到您的网页中。\",\n        \"Share\": \"分享\",\n            \"Copy sharable link for this gist.\": \"复制片段共享链接。\",\n        \"Clone via HTTPS\": \"通过 HTTPS 方式克隆\",\n            \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n        \"Clone via SSH\": \"通过 SSH 方式克隆\",\n            \"Clone with an SSH key and passphrase from your GitHub settings.\": \"通过 GitHub 设置中的 SSH 密钥和密码进行克隆。\",\n        \"Learn more about clone URLs\": \"了解更多关于克隆地址的信息\",\n\n        // 外部编辑器\n        \"Open repository with\": \"打开仓库于\",\n\n        \"Copy to clipboard\": \"复制到剪切板\",\n        \"Copied!\": \"✅ 复制成功!\",\n        \"Download ZIP\": \"下载 Zip 压缩包\",\n        \"Permalink\": \"永久链接\",\n\n        // 代码标签卡\n        \"Raw\": \"源码\",\n        \"Load earlier comments...\": \"载入早期的评论…\",\n\n        // 修订标签卡\n        \"Unified\": \"同屏\",\n        \"Split\": \"分屏\",\n        \"created\": \"创建\",\n        \"revised\": \"修订\",\n        \"renamed\": \"重命名\",\n        \"this gist\": \"该片段于\",\n        \"with\": \"包含\",\n        \"No changes.\": \"无变化\",\n\n        \"Show comments\": \"显示评论\",\n        \"View file\": \"查看文件\",\n\n        \"Display the source diff\": \"显示源差异\",\n        \"Display the rich diff\": \"显示富差异\",\n        \"Empty file.\": \"空文件。\",\n        \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n        // [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处添加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n\n        // 星标标签卡\n        \"Stargazers\": \"追星者\",\n        \"Be the first to star this gist.\": \"成为第一个为该代码片段标星的人。\",\n        \"Learn more about starring Gists\": \"了解更多关于标星代码片段的信息\",\n\n        // 复刻标签卡\n        \"Modified\": \"修改\",\n        \"View fork\": \"浏览复刻\",\n\n        // 编辑代码页面\n        \"Editing\": \"编辑\",\n        \"Edit file\": \"编辑文件\",\n        \"Edit new file\": \"编辑新文件\",\n        \"Preview changes\": \"预览更改\",\n        \"Loading preview…\": \"载入预览…\",\n        // 搜索框\n            \"Search:\": \"搜索：\",\n            \"(Use /re/ syntax for regexp search)\": \"（使用 /re/ 语法进行正则搜索）\",\n        \"Attach files by selecting or pasting them.\": \"通过选择或粘贴来附加文件。\",\n        // 底部栏\n            \"Use\": \"使用\",\n            \"to toggle the\": \"切换\",\n            \"key moving focus.\": \"键移动对焦。\",\n        \"Make secret\": \"转为私密\",\n        \"Make public\": \"转为公开\",\n        \"Cancel\": \"取消\",\n        \"Update public gist\": \"更新公开片段\",\n        \"Update secret gist\": \"更新私密片段\",\n\n        // 已加星标页面\n        \"You don’t have any starred gists yet.\": \"您还没有任何星标代码片段。\",\n\n        // 评论框\n        \"Owner\": \"所有者\",\n        \"Author\": \"作者\",\n        \"Copy link\": \"复制链接\",\n        \"Quote reply\": \"引用回复\",\n        \"Report content\": \"举报内容\",\n        \"Report\": \"举报\",\n        // 评论删除提醒\n            \"Are you sure you want to delete this?\": \"您定要删除这个吗？\",\n\n        \"You are the owner of the gist.\": \"您是代码片段的所有者。\",\n        \"You are the author of this gist.\": \"您是代码片段的作者。\",\n        \"You are the author of this .\": \"您是代码片段的作者。\",\n\n        \"commented\": \"评论于\",\n        \"via email\": \"通过邮件\",\n        \"Update comment\": \"更新评论\",\n        \"Hide\": \"隐藏\",\n\n        \"edited\": \"编辑\",\n        \"(most recent)\": \"(最近的)\",\n        \"(deleted)\": \"(已删除)\",\n        \"deleted this content\": \"删除了该内容\",\n        \"Options\": \"选项\",\n        \"More options\": \"更多选项\",\n        \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修订版不能被删除。需要删除敏感信息？请到信息的具体编辑处修改。\",\n        \"Delete revision from history\": \"从历史记录中删除修订\",\n        \"This edit’s content will no longer be visible\": \"此修改的内容将不再可见\",\n\n        // 探索页面\n        \"Discover gists\": \"探索代码片段\",\n\n        // 搜索页面\n        //\"Sort:\": \"排序:\",\n            \"Best match\": \"最佳匹配\",\n            \"Most stars\": \"最多星标\",\n            \"Fewest stars\": \"最少星标\",\n            \"Most forks\": \"最多复刻\",\n            \"Fewest forks\": \"最少复刻\",\n\n        // 底部提示栏 (未登录)\n        \"Sign up for free\": \"免费注册\",\n        \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n        \". Already have an account?\": \"。已经有账户？\",\n        \"Sign in to comment\": \"登录后发表评论\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/View ([^ ]+) on GitHub/, \"查看 $1 的 GitHub\"],\n        [/(\\d+) files?/, \"$1 文件\"],\n        [/(\\d+) forks?/, \"$1 复刻\"],\n        [/(\\d+) comments?/, \"$1 评论\"],\n        [/(\\d+) stars?/, \"$1 星标\"],\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的电脑。\"],\n        //代码修订\n        [/(\\d+) changed files?/, \"$1 个更改的文件\"],\n        [/(\\d+) additions?$/, \"$1 处增加\"],\n        [/(\\d+) deletions?$/, \"$1 处删除\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?/, \" $1 处更改：$2 处增加 & $3 处删除\"],\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/Edited (\\d+) times?/,\"编辑 $1 次\"], //评论框编辑次数\n        [/edited by ([^ ]+)/,\"被 $1 编辑\"], //评论框 被他人编辑\n        // [/Joined/,\"加入于\"], //星标标签卡\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/doesn’t have any public gists yet./, \"尚无任何公开的代码片段。\"],\n        [/([\\d,]+) gist results?/, \"$1 个片段结果\"],\n        [/Sort:/, \"排序：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Create a new Gist\": \"新建代码片段\",\n            \"Discover gists\": \"探索代码片段\",\n        },\n        \"regexp\": [\n            [/’s gists/, \" 的代码片段\"],\n            [/Search/, \"搜索\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"login/oauth\"] = { // 应用授权\n    \"static\": { // 静态翻译\n        // 第三页 安装中\n\n        // 第四页 安装后 授权\n        // GitHub 应用安装授权 /login/oauth/authorize?client_id=<client-id>&state=<state>\n        // 示例 /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n            \"Resources on your account\": \"您账户中的资源\",\n            \"Act on your behalf\": \"代表您行事\",\n            \"Email addresses\": \"电子邮箱地址\",\n            \"(read)\": \"(只读)\",\n            \"View your email addresses\": \"查看您的电子邮箱地址\",\n            \"Authorizing will redirect to\": \"授权将重定向到\",\n            \"Not\": \"不由\",\n            \"owned or operated by GitHub\": \"GitHub 拥有或运营\",\n            \"Created\": \"创建于\",\n            \"GitHub users\": \"GitHub 用户\",\n\n        // OAuth 应用安装授权 /login/oauth/authorize?client_id=<client-id>&redirect_uri=<redirect-uri>&scope=<scope>&state=<>\n        // 示例 /login/oauth/authorize?client_id=78a2ba87f071c28e65bb&redirect_uri=https%3A%2F%2Fcircleci.com%2Fauth%2Fgithub%3Freturn-to%3D%252Fdashboard%253Futm_medium%253Dpartner%2526utm_campaign%253Dghmarketplace%2526utm_source%253Dgithub&scope=repo%2Cuser%3Aemail&state=uZ9BTIkhQ3_98icRI09o1L1HJmfvIO8gK3FDGwytNAzbBRzXwTge440cKS7NaGtvS0tqCR_HzGMH2z3p\n            \"wants to access your\": \"想访问您的\",\n            \"account\": \"账户\",\n            \"Public and\": \"公共库和\",\n            \"private\": \"私有库\",\n            \"This application will be able to\": \"该应用将能够\",\n            \"read and write all public and private repository data\": \"读写所有公共和私有仓库数据\",\n            \". This includes the following:\": \"。这包括以下内容：\",\n            \"Wikis\": \"Wiki\",\n            \"Webhooks and services\": \"Web 钩子和服务\",\n            \"Deploy keys\": \"部署密钥\",\n            \"Collaboration invites\": \"合作的邀请\",\n\n            \"Personal user data\": \"个人用户资料\",\n            \"Email addresses (read-only)\": \"电子邮箱地址(只读)\",\n            \"This application will be able to read your private email addresses.\": \"此应用将能够读取您的私人电子邮箱地址。\",\n\n            \"Organization access\": \"组织访问\",\n                \"Request\": \"请求\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"该组织允许应用访问上述权限中所述的组织数据。\",\n                \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予访问权限之前，应用无法访问组织的私有数据或修改其公共数据。\",\n                \"The application cannot access this organization’s private data or modify its public data.\": \"应用无法访问该组织的私有数据或修改其公共数据。\",\n\n            // >>>>>具体的权限不打算汉化<<<<<<<\n\n            \"Owned & operated by GitHub\": \"由 GitHub 拥有和运营\",\n\n        // 第五页 即将跳转到 重定向页面\n            \"You are being redirected to the authorized application.\": \"您将被重定向到授权的应用。\",\n            \"If your browser does not redirect you back, please visit\": \"如果您的浏览器没有将您重定向回来，请\",\n            \"If your browser does not redirect you back, please\": \"如果您的浏览器没有将您重定向回来，请\",\n            \"click here\": \"点击这里\",\n            \"this setup page\": \"点击这里\",\n            \"to continue.\": \"继续。\",\n            \"would like permission to:\": \"希望获得以下许可：\",\n            \"Know which resources you can access\": \"了解您可以访问哪些资源\",\n\n        // 选择账户授权 https://github.com/login/oauth/select_account?*\n            //\"Select user to authorize\": \"选择用户进行授权\",\n            //\"Signed in as\": \"登录身份为\",\n            \"From the options below, choose which account you would like to use to authorize this app.\": \"从下面的选项中，选择您要使用哪个帐户来授权此应用程序。\",\n            \"Use a different account\": \"使用其他账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n        [/Verify your GitHub identity/, \"验证您的 GitHub 身份\"],\n        [/Select user to authorize ([^ ]+)/, \"选择用户进行授权 $1\"],\n        [/Signed in as/, \"登录身份为 \"],\n        [/has not been installed on any accounts you have access to./, \"尚未安装在您有权访问的任何账户上。\"],\n        [/Learn more about/, \"了解更多关于\"],\n        [/More than ([^ ]+)/, \"超过 $1\"],\n        // /apps/codacy-production/installations/new/permissions?target_id=7850715\n        // [/Install & Authorize on your personal account/, \"安装和授权到您的个人账户\"],\n        // [/Install & Authorize/, \"安装和授权\"],\n        [/Authorize ([^ ]+)/, \"授权 $1\"], // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login 调整位置避免覆盖\n        // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装和授权 $1 则会立即授予您账户的以下权限：\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n    ],\n};\n// I18N[\"zh-CN\"][\"installations/new\"] = I18N[\"zh-CN\"][\"login/oauth\"];\n\nI18N[\"zh-CN\"][\"explore\"] = { // 探索页面\n    \"static\": { // 静态翻译\n\n        // github.com/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            // 右侧信息栏\n            \"Trending repositories\": \"热门仓库\",\n                \"today\": \"今日\",\n            \"See more trending repositories\": \"查看更多热门仓库\",\n            \"Trending developers\": \"热门开发者\",\n            \"See more trending developers\": \"查看更多热门开发者\",\n\n            // 中间信息栏\n            \"Here's what we found based on your interests...\": \"以下是我们根据您的兴趣发现的内容…\",\n            \"Here's what's popular on GitHub today...\": \"这是今天 GitHub 热门内容…\", // 未登录\n                \"This recommendation was generated by GitHub computers\": \"此推荐由 GitHub 计算机生成\",\n                \"Based on repositories you’ve starred\": \"基于您标星的仓库\",\n                \"Based on topics you've starred\": \"基于您标星的主题\",\n                \"Based on people you follow\": \"基于您关注的人\",\n                \"Based on repositories you’ve viewed\": \"基于您查看过的仓库\",\n                \"Based on your public repository contributions\": \"基于您对公共仓库的贡献\",\n                \"App recommended by GitHub\": \"GitHub 推荐的应用\",\n                \"Staff pick\": \"员工精选\",\n                \"This recommendation was created by GitHub staff\": \"此推荐由 GitHub 工作人员创建\",\n                \"Upcoming event recommended by GitHub\": \"GitHub 推荐的即将举行的活动\",\n                \"For the Love of Code submission\": \"代码之爱投稿\", // 机翻\n\n            \"Trending repository\": \"热门仓库\", // 未登录\n            \"Popular topic\": \"热门主题\", // 未登录\n\n            \"Star topics that interest you\": \"标星您感兴趣的主题\",\n            \"and we'll show you the latest from the octoverse.\": \"我们将向您展示来自八维空间的最新信息。\",\n            \"Explore more topics\": \"探索更多主题\",\n\n            \"Collection recommended by GitHub\": \"GitHub 推荐的合集\",\n\n            \"That's everything we found for you, for now.\": \"这就是我们目前为您找到的一切。\",\n                \"Come back soon to see what we find next,\": \"请尽快回来查看我们接下来会发现什么，\",\n                \"get email updates.\": \"获取电子邮件更新。\",\n                \"check how often you receive email updates.\": \"检查您收到电子邮件更新的频率。\", // 已设置邮件更新通知\n\n            \"Updated\": \"更新于\",\n            \"See more matching repositories\": \"查看更多匹配的仓库\",\n\n        // github.com/explore/email\n            \"Explore email newsletter\": \"探索电子邮件通讯\",\n                \"Get email updates about what GitHub finds for you based on your interests\": \"根据您的兴趣，通过电子邮件获取 GitHub 为您找到的最新信息\",\n\n            \"None\": \"无\",\n                \"Email isn’t for everyone. Or maybe you’ve just made github.com/explore your homepage. We won’t send you any emails.\": \"电子邮件并不适合所有人。或者，您刚刚把 github.com/explore 作为您的主页。我们不会给您发送任何电子邮件。\",\n            \"Daily\": \"每天\",\n                \"Start your day with a delicious cup of coffee (or perhaps an artisan matcha latte) and interesting repositories every day.\": \"每天以一杯美味的咖啡（或可能是手工抹茶拿铁）和有趣的仓库开始您的一天。\",\n            \"Weekly\": \"每周\",\n                \"The perfect way to keep on top of everything GitHub. Every Tuesday, we’ll send you an email with everything we found for you in the past week based on your interests.\": \"掌握 GitHub 一切信息的完美方式。每周二，我们会根据您的兴趣向您发送一封电子邮件，内容是我们在过去一周为您找到的所有内容。\",\n            \"Monthly\": \"每月\",\n                \"The best option for lurkers who want to keep up with major happenings in the open source world.\": \"对于想了解开源世界重大事件的潜伏者来说，这是最佳选择。\",\n            \"Unsubscribed!\": \"已取消订阅！\",\n            \"Subscribed!\": \"已订阅！\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([\\d,]+) more/, \"其他 $1 项\"],\n        [/([\\d,]+) starred topics?/, \"$1 个星标主题\"],\n        [/([\\d,]+) starred repositories?/, \"$1 个星标仓库\"],\n        [/There are ([\\d,]+) public repositories? matching this topic/, \"有 $1 个公共仓库与此主题相匹配\"],\n        [/See the ([\\d,]+) items? in this collection/, \"查看该系列中的 $1 个项目\"],\n        [/Topic: ([^ ]+)/, \"主题：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub\": \"探索 GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"topics\"] = { // 探索-->主题页面\n    \"static\": { // 静态翻译\n\n        // github.com/topics\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            \"Browse popular topics on GitHub.\": \"浏览 GitHub 上的热门主题。\",\n            \"All featured topics\": \"所有主题\",\n            \"Popular topics\": \"热门主题\",\n            \"Unstar\": \"已加星标\",\n\n        // github.com/topics/<某主题>\n            \"Created by\": \"创建者\",\n            \"Released\": \"发布于\",\n            \"Latest release\": \"最新发行\",\n\n            \"Related Topics\": \"相关主题\",\n            \"Updated\": \"更新于\",\n            \"Sponsor\": \"赞助\",\n\n            \"Language:\": \"语言:\",\n                \"Filter by language\": \"按语言筛选\",\n                \"All\": \"所有\",\n            \"Sort:\": \"排序:\",\n                \"Sort options\": \"排序选项\",\n                \"Most stars\": \"最多星标\",\n                \"Fewest stars\": \"最少星标\",\n                \"Most forks\": \"最多复刻\",\n                \"Fewest forks\": \"最少复刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Improve this page\": \"改善此页面\",\n                \"Add a description, image, and links to the\": \"为\",\n                \"topic page so that developers can more easily learn about it.\": \"主题页面添加描述、图片和链接，以便开发人员可以更轻松地了解它。\",\n                \"Curate this topic\": \"整理此主题\",\n            \"Add this topic to your repo\": \"将此主题添加到您的仓库\",\n                \"To associate your repository with the\": \"将您的仓库与\",\n                \"topic, visit your repo's landing page and select \\\"manage topics.\\\"\": \"主题关联，请访问仓库的登录页面，然后选择 “管理主题”。\",\n\n            // 没有任何仓库\n                // 原句：The <主题名> topic hasn't been used on any public repositories, yet.\n                \"The\": \" \",\n                    \"topic hasn't been used on any public repositories, yet.\": \"尚未被任何公共仓库使用。\",\n                \"Explore topics\": \"探索主题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/followers?/, \"个关注者\"],\n        [/Here are ([\\d,]+) public repositories? matching this topic.../, \"有 $1 个公共仓库与此主题相匹配\"],\n        [/Topic: ([^ ]+)/, \"主题：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Topics on GitHub\": \"GitHub 上的主题\",\n        },\n        \"regexp\": [\n            [/GitHub Topics/, \"GitHub 主题\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"trending\"] = { // 热门页面\n    \"static\": { // 静态翻译\n        \"Explore\": \"探索\",\n        \"Topics\": \"主题\",\n        \"Trending\": \"热门\",\n        \"Collections\": \"集合\",\n        \"Events\": \"活动\",\n        \"GitHub Sponsors\": \"GitHub 赞助\",\n        \"Get email updates\": \"获取电子邮件更新\",\n        \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n        \"See what the GitHub community is most excited about today.\": \"看看 GitHub 社区今天最受关注的项目。\",\n        \"See what the GitHub community is most excited about this week.\": \"看看 GitHub 社区本周最受关注的项目。\",\n        \"See what the GitHub community is most excited about this month.\": \"看看 GitHub 社区本月最受关注的项目。\",\n\n        \"These are the developers building the hot tools today.\": \"这些是今天创建热门项目的开发人员。\",\n        \"These are the developers building the hot tools this week.\": \"这些是本周创建热门项目的开发人员。\",\n        \"These are the developers building the hot tools this month.\": \"这些是本月创建热门项目的开发人员。\",\n\n        \"Repositories\": \"仓库\",\n        \"Developers\": \"开发者\",\n\n        \"Sponsor\": \"赞助\",\n        \"Built by\": \"构建者\",\n\n        \"Spoken Language:\": \"母语：\",\n            \"Select a spoken language\": \"选择母语：\",\n            \"This setting can be saved in your\": \"此设置可以保存在您的\",\n            \"This setting can be updated in your\": \"此设置可以更新于您的\",\n            \"profile settings.\": \"个人资料。\",\n            \"Filter spoken languages\": \"筛选母语\",\n            \"Clear spoken language\": \"清除母语\",\n            \"Any\": \"任何\",\n            // 弹窗\n            \"Filter by spoken language\": \"使用母语筛选\",\n                \"Select your preferred spoken language in order to see matching trending results.\": \"选择您喜欢的母语以查看匹配的趋势结果。\",\n                \"Got it!\": \"确定\",\n        \"Language:\": \"语言：\",\n            \"Select a language\": \"选择语言：\",\n            \"Filter languages\": \"筛选语言\",\n            \"Unknown languages\": \"未知语言\",\n        \"Date range:\": \"日期范围：\",\n            \"Adjust time span\": \"调整的时间跨度\",\n                \"Today\": \"今天\",\n                \"This week\": \"本周\",\n                \"This month\": \"本月\",\n        \"Sponsorable:\": \"可赞助：\",\n            \"GitHub Sponsors participation\": \"参与 GitHub 赞助\",\n            \"Sponsorable developers\": \"可赞助的开发者\",\n            \"All developers\": \"所有开发者\",\n            \"All\": \"所有\",\n\n        // 开发者页\n        \"Popular repo\": \"热门仓库\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([\\d,]+) stars? today/, \"今日 $1 星标\"],\n        [/([\\d,]+) stars? this week/, \"本周 $1 星标\"],\n        [/([\\d,]+) stars? this month/, \"本月 $1 星标\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Trending repositories on GitHub today\": \"今日热门仓库\",\n            \"Trending repositories on GitHub this week\": \"本周热门仓库\",\n            \"Trending repositories on GitHub this month\": \"本月热门仓库\",\n            \"Trending developers on GitHub today\": \"今日热门开发者\",\n            \"Trending developers on GitHub this week\": \"本周热门开发者\",\n            \"Trending developers on GitHub this month\": \"本月热门开发者\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"collections\"] = { // 集合页面\n    \"static\": { // 静态翻译\n        \"Explore\": \"探索\",\n        \"Topics\": \"主题\",\n        \"Trending\": \"热门\",\n        \"Collections\": \"集合\",\n        \"Collection\": \"集合\",\n        \"Events\": \"活动\",\n        \"GitHub Sponsors\": \"GitHub 赞助\",\n        \"Get email updates\": \"获取电子邮件更新\",\n        \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n        \"Curated lists and insight into burgeoning industries, topics, and communities.\": \"精心策划的列表和对新兴行业、主题和社区的见解。\",\n        \"Create a collection\": \"创建一个集合\",\n        \"Suggest edits\": \"建议修改\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Collections\": \"集合\",\n        },\n        \"regexp\": [\n            [/Collection: /, \"集合：\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"sponsors\"] = { // 赞助界面\n    \"static\": {\n        // 赞助者首页 https://github.com/sponsors\n            \"Invest in the software that powers your world\": \"投资驱动您世界的项目\",\n            \"See your top dependencies\": \"查看您的首要依赖项\",\n            \"Get sponsored\": \"获得赞助\",\n            \"A new way to contribute\": \"为开源做出贡献的\",\n            \"to open source\": \"新方式\",\n            \"Invest in your supply chain\": \"投资您的供应链\",\n            \"You depend on open source every day\": \"您每天都依赖于开源项目\",\n            \"Make open source careers possible\": \"使开源生涯成为可能\",\n            \"Thanks to our partners\": \"感谢我们的合作伙伴\",\n            \"Available in 103 regions\": \"可用于 103 个地区\",\n            \"to receive updates when we expand.\": \"以便在我们扩展时接收更新。\",\n            \"View country and region list\": \"查看国家和地区支持列表\",\n            \"Anyone can sponsor, but you must reside in a supported region to receive funds.\": \"任何人都可以赞助，但您必须居住在受支持的地区才能获得资金。\",\n            \"Frequently asked questions\": \"常见问题\",\n            \"Invest in the projects you depend on\": \"投资您所依赖的项目\",\n\n        // 赞助者账户页面 https://github.com/sponsors/accounts\n            // 标题\n                \"GitHub Sponsors accounts\": \"GitHub 赞助者账户\",\n            // 管理\n                \"Manage who you sponsor\": \"管理您赞助的对象\",\n                    \"You haven't sponsored anyone yet.\": \"您还没有赞助任何人。\",\n                    \"Find someone to sponsor\": \"寻找赞助对象\",\n            // 名单\n                \"GitHub Sponsors eligible accounts\": \"符合 GitHub 赞助者资格的账户\",\n                    \"This account has not applied to join GitHub Sponsors.\": \"此账户尚未申请加入 GitHub 赞助者。\",\n                    \"Join the waitlist\": \"加入等候名单\",\n\n            \"GitHub Sponsors applications\": \"GitHub 赞助者申请\",\n                \"Pending\": \"排队\",\n                    \"This GitHub Sponsors profile is waiting to be reviewed by GitHub.\": \"此 GitHub 赞助者个人资料正在等待 GitHub 审核。\",\n                \"Manage\": \"管理\",\n\n        // GitHub 赞助者个人资料 https://github.com/sponsors/<user-name>\n        // GitHub 赞助者组织资料 https://github.com/sponsors/<org-name>\n        // ...?preview=true\n        \"You are previewing your GitHub Sponsors profile.\": \"您正在预览您的 GitHub 赞助者个人资料。\",\n        \"Edit your profile.\": \"编辑您的个人资料。\",\n        // 组织\n        // [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在预览 $1 组织的 GitHub 赞助者个人资料。\"],\n        // [/Edit ([^ ]+)’s profile./, \"编辑 $1 组织的个人资料。\"],\n            // 标题\n            \"Become a sponsor to\": \"成为赞助者\",\n\n            \"Current sponsors\": \"当前赞助者\",\n            \"Past sponsors\": \"过去赞助者\",\n\n            \"Private Sponsor\": \"私密赞助者\",\n\n            \"Meet the team\": \"查看团队\",\n            \"Featured work\": \"精选\",\n\n            \"Learn more about sponsoring developers and organizations\": \"了解更多关于赞助开发者和组织的信息\",\n            \"Report abuse\": \"举报滥用\",\n\n            // 右侧栏\n            \"towards\": \"达成\",\n            \"goal\": \"目标\",\n            \"Sponsor as\": \"赞助身份为\",\n\n            \"Hover over your avatar to review the badge you'll get that shows\": \"当鼠标悬停在您的头像时，将显示\",\n            \"you're a sponsor.\": \"的赞助者徽章。\",\n\n            \"Select a tier\": \"选择\",\n            \"Monthly\": \"每月\",\n                \"a month\": \"/月\",\n                \"Select\": \"选择\",\n                \"Choose a custom amount.\": \"填入自定义金额。\",\n            \"One-time\": \"一次性\",\n                \"one time\": \"/次\",\n                \"A Public Sponsor achievement will be added to your profile.\": \"一个 “公开赞助者” 成就将添加到您的个人资料中。\",\n\n        // 赞助者登录页 https://github.com/sponsors/<user-name>/signup\n            // 标题\n                \"GitHub Sponsors · Get sponsored\": \"GitHub 赞助者 · 获得赞助\",\n                \"Get Sponsored\": \"获得赞助\",\n                \"Launch a\": \"启动一个\",\n                \"GitHub Sponsors profile\": \"GitHub 赞助者资料\",\n                \"and start receiving funding.\": \"并开始获得资金。\",\n            // 联系电子邮箱\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly. You can manage verified email addresses in your\": \"选择一个经过验证的电子邮件地址，以便我们就您的 GitHub 赞助者资料与您联系。该地址不会公开共享。您可以在您的\",\n            // 收款方式\n                \"Bank account\": \"银行账户\",\n                    \"Use a bank account to receive your sponsorships. Note: If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"使用银行账户接收您的赞助。注意：如果您使用个人银行账户，您所在的国家/地区可能会将您的 GitHub 赞助者 付款作为个人收入征税。\",\n                    \"Country or region where your bank account is located\": \"请选择您的银行账户所在的国家或地区\",\n                \"Fiscal Host\": \"财政主办方\",\n                    \"Choose a fiscal host\": \"请选择一个财政主办方\",\n                    \"Members of supported fiscal hosts can use their fiscal host to join GitHub Sponsors instead of using a bank account.\": \"受支持财务主办方的成员可使用其财务主机加入 GitHub 赞助者，而无需使用银行账户。\",\n            \"Submit\": \"提交\",\n            \"Your information has been saved.\": \"您的信息已保存。\",\n\n        // 加入等候名单界面 https://github.com/sponsors/<user-name>/waitlist\n            \"GitHub Sponsors is now out of beta for 103 regions!\": \"GitHub 赞助者现已在 103 个地区推出测试版！\",\n                \"If you have a bank account in\": \"如果您的银行账户所在\",\n                \"a country or region where GitHub Sponsors is generally available\": \"国家或地区普遍支持 GitHub 赞助者\",\n                \", you will get an email from us when your application has been reviewed.\": \"，您将在申请通过审核后收到我们的电子邮件。\",\n                \"If you don't have an eligible bank account, don't worry! We're working hard to get more countries out of beta soon. Join the waitlist to be the first to know.\": \"如果您没有符合条件的银行账户，也不用担心！我们正在努力让更多的国家或地区通过测试。加入等候名单，第一时间获知消息。\",\n            \"Contact email\": \"联系电子邮箱\",\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly.\": \"请选择一个经过验证的电子邮箱地址，以便我们就您的 GitHub 赞助者个人资料与您联系。该邮箱地址不会公开。\",\n                \"You can manage verified email addresses in your\": \"您可以管理已验证的电子邮箱地址在您的\",\n                \"email settings\": \"电子邮箱设置\",\n            \"Country or region of residence\": \"居住的国家或地区\",\n                \"Select a country or region\": \"选择一个国家或地区\",\n                \"The country or region where you reside. This is required for tax purposes.\": \"您居住的国家或地区。这是出于税务目的所必需的。\",\n            \"Bank account country or region\": \"银行账户所在的国家或地区\",\n            \"How you receive payments\": \"收款方式\",\n                \"Use a bank account\": \"使用银行账户\",\n                    \"You can use your bank account to join GitHub Sponsors.\": \"您可以使用您的银行账户加入 GitHub 赞助者。\",\n                    \"Note that you are responsible for all applicable taxes on payouts you receive. If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"请注意，您需承担您收到的付款的所有适用税款。如果您使用个人银行账户，您所在国家或地区可能会将您的 GitHub 赞助者收款作为个人收入征税。\",\n                    \"Learn more about setting up a Stripe account\": \"了解更多关于设置 Stripe 账户的信息\",\n\n                    \"Country or region where your bank account is located:\": \"您的银行账户所在的国家或地区：\",\n                        \"Your region is\": \"您所在的地区\",\n                        \"not supported\": \"不受支持\",\n                        \"or may be in\": \"或者可能处于\",\n                        \"beta\": \"测试阶段\",\n                    \"Use another bank account where GitHub Sponsors is available or complete signup to receive a notification if your region becomes available.\": \"使用另一个 GitHub 赞助者可用的银行账户，或者在您所在的地区可用时完成注册以收到通知。\",\n                \"Use a fiscal host\": \"使用财务托管\",\n                    \"You can use a fiscal host to join GitHub Sponsors instead of using your own bank account.\": \"您可以使用财务托管机构代替自己的银行账户来加入 GitHub 赞助者。\",\n                    \"Choose a fiscal host:\": \"选择一个财务托管机构：\",\n                    \"Select a fiscal host\": \"选择一个财务托管机构\",\n\n                    \"Fiscal host project profile URL:\": \"财务托管机构项目资料链接：\",\n                        \"Please include a link to your profile on your fiscal host's site, if available.\": \"如果有的话，请提供您在的财务托管机构上的个人资料链接。\",\n                    \"e.g.,\": \"例如，\",\n            \"Join waitlist\": \"加入等候名单\",\n\n        // 探索 GitHub 赞助者界面 https://github.com/sponsors/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助者\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n                \"Fund the work of developers and projects you depend on.\": \"为您所依赖的开发者和项目提供资金。\",\n\n            // 左侧栏\n                \"Explore as\": \"使用以下身份进行探索\",\n                \"Ecosystems\": \"生态系统\",\n                    \"All ecosystems\": \"所有生态系统\",\n                \"Filters\": \"过滤器\",\n                    \"Direct dependencies only\": \"仅直接依赖项\",\n\n            \"None of your dependencies can be sponsored\": \"您的任何依赖项都尚未开放赞助\",\n                // [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依赖于任何可以赞助其维护人员的仓库。\"],\n            \"You don't directly depend on any repositories whose maintainers can be sponsored.\": \"您不直接依赖任何可赞助维护者的仓库。\",\n            \"developers who maintain your dependencies\": \"位开发人员维护您的依赖项\",\n            \"Download your\": \"下载\",\n            \"results as CSV\": \"结果（CSV格式）\",\n\n            \"Order by\": \"排序依据\",\n                \"Most used\": \"较常使用\",\n                \"Least used\": \"较少使用\",\n                \"Most sponsors\": \"较多赞助者\",\n                \"Fewest sponsors\": \"较少赞助者\",\n                \"Newest Sponsors profile\": \"最新赞助者资料\",\n                \"Oldest Sponsors profile\": \"最早赞助者资料\",\n\n            \"Apply\": \"应用\",\n\n            \"You depend on\": \"您依赖于\",\n            // [/(\\d+) repositor(y|ies) they own or maintain/, \"他们拥有或维护 $1 个仓库\"],\n            // [/others? sponsor, including (\\d+) organizations?/, \"位其他赞助者，包括 $1 个组织\"],\n            \"sponsors\": \"赞助者\",\n            \"others sponsor\": \"位其他赞助者\",\n            // [/(\\d+)% towards goal/, \"实现目标的 $1%\"],\n\n            \"Explore people and projects\": \"探索人员和项目\",\n            \"Bulk Sponsor\": \"批量赞助\",\n                \"Sponsor multiple maintainers in one easy transaction.\": \"在一笔简单的交易中赞助多位维护人员。\",\n                \"Get started\": \"开始\",\n            \"Don't see what you're looking for? Try\": \"没有看到您在找的东西？尝试\",\n            \"searching for people you can sponsor\": \"寻找可以接受您赞助的人\",\n            \"and filtering by language!\": \"并通过语言筛选！\",\n            \"Clear filter\": \"清除筛选器\",\n            \"Sponsor\": \"赞助\",\n\n            // 仓库列表\n            \"Repository list\": \"仓库列表\",\n                \"You\": \"您\",\n                \"owns or maintains.\": \"拥有或维护\",\n                \"We check their maintainer status by seeing if they're listed in a repository's\": \"我们会确认他们是否被列在一个仓库中来检查他们的维护者状态，查看：\",\n                \"funding file\": \"资助文件\",\n                \"Load more...\": \"加载更多…\",\n\n            // [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 赞助吗？\"],\n            \"Talk to your organization about GitHub Sponsors\": \"与您的组织讨论 GitHub 赞助者事宜\",\n            \"Share this discovery page with your team to start a conversation about investing in the people and projects you rely on.\": \"与您的团队分享本发现页面，并就投资于您所依赖的人员和项目展开讨论。\",\n            \"Invest in open source software and we'll track your progress here!\": \"投资开源软件，我们将在这里跟踪您的进度！\",\n\n        // 批量赞助页 https://github.com/sponsors/bulk-sponsorships/frequencies\n            \"Bulk sponsor\": \"批量赞助\",\n            \"Bulk sponsorship\": \"批量赞助\",\n\n            \"Choose a frequency\": \"选择一个频率\",\n                \"Choose\": \"选择\",\n                // 一次性\n                    \"Sponsored maintainers will receive a one-time payment. Your profile picture will appear in their sponsors for one month.\": \"赞助的维护者将收到一笔一次性付款。您的个人资料照片将在他们的赞助商中显示一个月。\",\n                // 每月\n                    \"Sponsored maintainers will receive a recurring sponsorship until you cancel. Your profile picture will appear in their sponsors for the duration of your sponsorship.\": \"赞助的维护者将获得定期赞助，直到您取消为止。在您的赞助期间，您的个人资料照片将显示在他们的赞助商中。\",\n        // 批量赞助页 https://github.com/sponsors/bulk-sponsorships/import/new\n            \"Import\": \"导入\",\n\n            \"One-time bulk sponsorship\": \"一次性批量赞助\",\n            \"Monthly bulk sponsorship\": \"每月批量赞助\",\n\n            \"Import a CSV\": \"从 CSV 导入\",\n                \"Choose file\": \"选择文件\",\n                \"Download example CSV\": \"下载示例 CSV\",\n\n                \"Or export a list of your dependencies on\": \"或者导出您的依赖项列表\",\n                    \"Explore Sponsors\": \"探索赞助者\",\n\n                \"A CSV is a type of file that contains the names of the people you want to sponsor and the sponsorship amount. We'll look for columns labeled Maintainer Username and Amount in USD. We'll safely ignore the rest of your columns. You can modify the file using a tool like Microsoft Excel, Google Sheets, or a text editor.\": \"CSV 是一种文件类型，其中包含您想要赞助的人员的姓名和赞助金额。我们将查找标有维护者用户名和美元金额的列。我们将安全地忽略您的其余专栏。您可以使用 Microsoft Excel、Google Sheets 或文本编辑器等工具修改该文件。\",\n    },\n    \"regexp\": [ // 正则匹配\n        [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在预览 $1 组织的 GitHub 赞助者个人资料。\"], // sponsors/<org-name>?preview=true\n        [/Edit ([^ ]+)’s profile./, \"编辑 $1 组织的个人资料。\"], // sponsors/<org-name>?preview=true\n        [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依赖于任何可以赞助其维护人员的仓库。\"],\n        [/(\\d+) repositor(y|ies) they own or maintain/, \"他们拥有或维护 $1 个仓库\"],\n        [/others? sponsor, including (\\d+) organizations?/, \"位其他赞助者，包括 $1 个组织\"],\n        [/(\\d+)% towards goal/, \"实现目标的 $1%\"],\n        [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 赞助吗？\"],\n        [/depend on (\\d+) repositor(y|ies)/, \"依赖于他的 $1 个仓库：\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members/, \"$1 位成员\"],\n        [/(\\$\\d+) a month/, \"$1/月\"],\n        [/(\\$[\\d,]+) per month/, \"$1 每月\"],\n        [/Amount must be at least (\\$\\d+)/, \"至少填入 $1\"],\n        [/Amount exceeds maximum tier amount of (\\$[\\d,]+)/, \"至多填入 $1\"],\n        [/You'll receive any rewards listed in the (\\$\\d+) monthly tier. Additionally, a Public Sponsor achievement will be added to your profile./, \"您将获得 $1 月度奖励中列出的所有奖励。此外，您的个人档案中还将添加公共赞助商成就。\"],\n        [/and (\\d+) others sponsor this goal/, \"和另外 $1 人赞助此目标\"],\n        [/(\\d+) of your repositories depends? on this/, \"您有 $1 个仓库依赖此\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n            \"GitHub Sponsors accounts\": \"GitHub 赞助者账户\",\n            \"GitHub Sponsors · Get sponsored\": \"GitHub 赞助者 · 获得赞助\",\n            \"Choose frequency to bulk sponsor\": \"选择批量赞助的频率\",\n            \"Create sponsorships in bulk via file import\": \"通过文件导入批量创建赞助\",\n        },\n        \"regexp\": [\n            [/Sponsor @(.+) on GitHub Sponsors/, \"GitHub 赞助上赞助者 @$1\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"showcases\"] = { // 展示页面\n    \"static\": { // 静态翻译\n        \"Open source showcases\": \"开源展示\",\n        \"Browse popular repositories based on the topic that interests you most.\": \"浏览热门仓库基于您最感兴趣的主题。\",\n        \"Search showcases\": \"搜索展示\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"account/organizations/new\"] = { // 创建组织\n    \"static\": { // 静态翻译\n        // 创建免费的组织 https://github.com/account/organizations/new?coupon=&plan=team_free\n        // https://github.com/account/organizations/new?coupon=&plan=free\n        // 第 1 页\n        \"Tell us about your organization\": \"告诉我们您的组织\",\n        \"Set up your organization\": \"设置您的组织\",\n        \"Verify your account\": \"验证您的账户\",\n        \"Organization name\": \"组织名称\",\n            // [/The name \\'(\\d+)\\' is already taken./, \"名称 '$1' 已被采用。\"],\n            // [/The name \\'(\\d+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名称 '$1' 只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\"],\n            // [/Organization name \\'([^ ]+)\\' is unavailable./, \"组织名称 '$1' 不可用。\"], //\n            \"This will be the name of your account on GitHub.\": \"这将是您在 GitHub 上的账户名称。\",\n            \"Your URL will be: https://github.com/\": \"您的网址将是：https://github.com/\",\n        \"Contact email\": \"联系电子邮箱\",\n            \"Email is invalid\": \"电子邮箱无效\",\n        \"This organization belongs to:\": \"该组织属于：\",\n            \"My personal account\": \"我的个人账户\",\n                // [/I.e.,/, \"即：\"],\n            \"A business or institution\": \"企业或机构\",\n                \"For example: GitHub, Inc., Example Institute, American Red Cross\": \"比如说：GitHub, Inc., Example Institute, American Red Cross\",\n                \"Name of business or institution this organization belongs to\": \"该组织所属的企业或机构的名称\",\n                \"This business or institution — not\": \"该企业或机构 — 不是\",\n                \"(your personal account) — will control this organization.\": \"（您的个人账户）— 将控制此组织。\",\n        \"Add-ons\": \"附加组件\",\n            \"Get GitHub Copilot Business in this organization\": \"在组织中获取 GitHub Copilot 商业版\",\n                \"Boost developer productivity for $19/user/month. Pay only for assigned seats after setup.\": \"以 $19 /用户/月的价格提高开发人员的工作效率。仅需在设置后为分配的席位付费。\",\n                \"See Copilot Business docs.\": \"请参阅 GitHub Copilot 商业版文档。\",\n        \"I hereby accept the\": \"我特此接受\",\n            // 个人账户\n            \"Terms of Service\": \"服务条款\",\n            \". For more information about GitHub's privacy practices, see the\": \"。关于 GitHub 隐私条款的更多信息，请参见\",\n            \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n            // 企业或机构\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n            \"on behalf of my organization and confirm that I have the authority to do so\": \"代表我的组织，并确认我有权力这样做\",\n\n        // \". We'll occasionally send you account-related emails.\": \"。我们偶尔会向您发送与账户相关的电子邮件。\",\n\n        // https://github.com/organizations/<org-name>/invite\n        // 第 2 页 邀请成员\n        \"Start collaborating\": \"开始合作\",\n        // [/Welcome to/, \"欢迎来到\"],\n        \"Add organization members\": \"添加组织成员\",\n        \"Organization members will be able to view repositories, organize into teams, review code, and tag other members using @mentions.\": \"组织成员将能够使用 @提及来查看仓库、组织成团队、审查代码以及标记其他成员。\",\n        \"Learn more about permissions for organizations →\": \"了解更多关于组织权限的信息 →\",\n        \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n        \"Complete setup\": \"完成设置\",\n        \"Skip this step\": \"跳过\",\n\n        // https://github.com/orgs/<org-name>/invitations/bulk_create_for_new_org\n        // https://github.com/orgs/<org-name>/welcome_survey/new\n    },\n    \"regexp\": [ // 正则翻译\n        [/The name \\'([^ ]+)\\' is already taken./, \"名称 '$1' 已被采用。\"],\n        [/The name \\'([^ ]+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名称 '$1' 只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\"],\n        [/Organization name \\'([^ ]+)\\' is unavailable./, \"组织名称 '$1' 不可用。\"],\n        [/I.e.,/, \"即：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Set up your organization\": \"设置您的组织\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"account/choose\"] = { // 账户升级选择\n    \"static\": { // 静态翻译\n        // https://github.com/account/choose?action=upgrade\n            \"Which do you want to upgrade?\": \"您想升级哪个？\",\n            \"Your personal account\": \"您的个人账户\",\n            \"Organization\": \"组织\",\n            \"Create a new organization\": \"创建新组织\",\n            \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"account/upgrade\"] = { // 账户\n    \"static\": {\n        // https://github.com/account/upgrade?plan=pro&source=account+compare+plans\n            \"Upgrade your account from GitHub Free to GitHub Pro\": \"从 GitHub 免费版升级到 GitHub 专业版\",\n            \"Back to billing settings\": \"返回账单设置\",\n\n            \"Plan details\": \"计划详情\",\n                \"Pro\": \"Pro 专业版\",\n                \"Includes everything in\": \"包含所有\",\n                \"GitHub Free\": \"GitHub 免费版\",\n                \"plus:\": \"以及：\",\n                \"Required reviewers in private repos\": \"私有仓库的必需审查者\",\n                \"Protected branches in private repos\": \"私有仓库的受保护分支\",\n                \"Repository insights in private repos\": \"私有仓库的仓库洞察\",\n                \"Wikis in private repos\": \"私有仓库的 Wiki\",\n                \"Pages in private repos\": \"私有仓库的 GitHub Pages\",\n                \"Code owners in private repos\": \"私有仓库的代码所有者\",\n                \"3,000 minutes for GitHub Actions\": \"3,000 分钟的 GitHub Actions 使用时长\",\n                \"2GB of GitHub Packages storage\": \"2GB 的 GitHub Packages 存储空间\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小时的代码空间计算时长\",\n                \"20GB of Codespaces storage\": \"20GB 的代码空间存储空间\",\n\n            \"Payment frequency\": \"支付频率\",\n                \"Pay yearly\": \"按年支付\",\n                \"Pay monthly\": \"按月支付\",\n\n                \"Note: Switching from monthly to yearly billing will also impact your other active subscriptions. Any necessary adjustments will be reflected on your invoice.\": \"注意：从月度计费转换为年度计费也会影响您的其他活跃订阅。任何必要的调整将反映在您的账单上。\",\n\n                \"/ year\": \"/年\",\n                \"/ month\": \"/月\",\n\n                \"Total amount\": \"总计\",\n                \"Due today\": \"今天到期\",\n                // [/Payment due/, \"付款截止日期为\"],\n                // 示例 Payment due Nov 19, 2025\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Upgrade to GitHub Pro\": \"更新到 GitHub Pro\",\n            \"By clicking “Upgrade to GitHub Pro”, you agree to our\": \"通过点击 “更新到 GitHub Pro”，您同意我们的\",\n            \"Terms of Service\": \"服务条款\",\n            \"Corporate Terms of Service\": \"企业服务条款\",\n            \". We’ll occasionally send you account-related emails.\": \"。我们会偶尔发送与账户相关的电子邮件。\",\n\n    },\n    \"regexp\": [\n        [/Payment due/, \"付款截止日期为\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"marketplace\"] = { // GitHub 市场\n    \"static\": { // 静态翻译\n\n        // GitHub 市场主页及相关type页 https://github.com/marketplace\n\t\t\t\"Enhance your workflow with extensions\": \"增强您的工作流程\",\n\t\t\t\t\"Tools from the community and partners to simplify tasks and automate processes\": \"社区和合作伙伴提供的简化任务和自动化流程的工具\",\n\t\t\t\t\"Search for apps, actions, and models\": \"搜索应用程序、操作和模型\",\n    \t\t\t\t\"Listing Type\": \"显示类型\",\n    \t\t\t\t\t\"Has listing type\": \"包含显示类型\",\n                    \"Input modality\": \"输入模态\",\n                        \"No input modality\": \"无输入模态\",\n                        \"Has input modality\": \"包含输入模态\",\n                        \"audio\": \"音频\",\n                        \"image\": \"图片\",\n                        \"text\": \"文本\",\n                    \"Supported language\": \"支持的语言\",\n                        \"No supported language\": \"无支持的语言\",\n                        \"Has supported language\": \"包含支持的语言\",\n                    \"Output modality\": \"输出模态\",\n                        \"No output modality\": \"无输出模态\",\n                        \"Has output modality\": \"包含输出模态\",\n                        \"embeddings\": \"嵌入\",\n                    \"Capability\": \"能力\",\n                        \"No capability\": \"无能力\",\n                        \"Has capability\": \"包含能力\",\n                    \"Publisher\": \"供应商\",\n                        \"No publisher\": \"无供应商\",\n                        \"Has publisher\": \"包含供应商\",\n                    // 类别\n                        \"No category\": \"无类别\",\n                        \"Has category\": \"包含类别\",\n                        \"agents\": \"智能体\",\n                        \"coding\": \"编码\",\n                        \"conversation\": \"对话\",\n                        \"instruction\": \"指令\",\n                        \"large context\": \"长上下文\",\n                        \"low latency\": \"低延时\",\n                        \"multilingual\": \"多语言\",\n                        \"multimodal\": \"多模态\",\n                        \"multipurpose\": \"多用途\",\n                        \"rag\": \"RAG\",\n                        \"reasoning\": \"推理\",\n                        \"summarization\": \"文本摘要\",\n                        \"understanding\": \"理解\",\n                        \"vision\": \"视觉\",\n\t\t\t\t    \"Exclude\": \"排除\",\n                    \"Has\": \"包含\",\n                \"Copilot extensions\": \"Copilot 扩展\",\n\t\t\t\t\"Clear filter\": \"清除筛选\",\n\t\t\t\t// 过滤器问题\n\t\t\t\t\t\"Empty value for\": \"空值\",\n\t\t\t\t\t\"Invalid value\": \"无效值\",\n\t\t\t\t\t\"for\": \"对于\",\n\t\t\t\t\"Menu\": \"菜单\", // Android UA 下出现\n\n            \"Featured\": \"精选\",\n                \"Models for your every use case\": \"适用于各种方案的模型\",\n                \"Try, test, and deploy from a wide range of model types, sizes, and specializations.\": \"尝试、测试和部署各种型号、尺寸和专业化产品。\",\n\n                // 未登录 或 https://github.com/marketplace?type=\n                \"Discover apps with Copilot extensions\": \"使用 Copilot 扩展程序探索应用\",\n                \"Your favorite tools now work with GitHub Copilot.\": \"您最喜欢的工具现在可与 GitHub Copilot 配合使用。\",\n\n                \"Recommended\": \"推荐\",\n                \"Recently added\": \"最近添加\",\n\t\t\t\t\"Most popular\": \"最热门\",\n\n            // Copilot\n                \"Copilot Extensions\": \"Copilot 扩展\",\n                \"Extend Copilot capabilities using third party tools, services, and data\": \"使用第三方工具、服务或数据扩展 Copilot 的功能\",\n\n                \"Filter:\": \"筛选：\",\n                    \"All\": \"全部\",\n                    \"Free trial\": \"免费试用\",\n                \"By:\": \"分类：\",\n                    \"All creators\": \"所有创作者\",\n                    \"Verified creators\": \"已验证创作者\",\n                \"Sort:\": \"排序：\",\n                    \"Popularity\": \"热门\",\n                    \"Best match\": \"最佳匹配\",\n\n            \"Models\": \"模型\",\n                \"Model\": \"模型\",\n                \"Catalog\": \"目录\",\n\n\t\t\t\t\t\"Create applications with GitHub powered by AI Models. Free to use, quick personal setup, and seamless model switching to help you build AI products using the latest models.\": \"使用由 AI 模型提供支持的 GitHub 创建应用程序。免费使用、快速个人设置和无缝模型切换，帮助您使用最新模型构建 AI 产品。\",\n\n\t\t\t\t\t\"Try models in playground\": \"在运行场上尝试模型\",\n\n\t\t\t\t\t// 分类\n                        \"All providers\": \"所有提供商\",\n                    \"Publisher:\": \"发布者：\",\n                    \"Capability:\": \"能力：\",\n                        \"Chat/completion\": \"聊天/完成\",\n                        \"Embeddings\": \"嵌入\",\n                    \"Tag:\": \"标签\",\n                    \"Category:\": \"类型：\",\n                        \"Agents\": \"智能体\",\n                        \"Conversation\": \"对话\",\n                        \"Large context\": \"大模型\",\n                        \"Low latency\": \"低延迟\",\n                        \"Multilingual\": \"多语言\",\n                        \"Multimodal\": \"多模态\",\n                        \"Multipurpose\": \"多功能\",\n                        \"Rag\": \"检索增强生成\",\n                        \"Reasoning\": \"推理\",\n                        \"Understanding\": \"理解\",\n\t\t\t\t\t\t\"Audio\": \"音频\",\n\t\t\t\t\t\t\"Coding\": \"编码\",\n\t\t\t\t\t\t\"Instruction\": \"指令\",\n\t\t\t\t\t\t\"RAG\": \"检索增强生成\",\n\t\t\t\t\t\t\"Vision\": \"视觉\",\n                    // 排序\n                        \"Alphabetical\": \"A-Z\",\n                        \"Output token limit\": \"输出令牌限制\",\n                        \"Input token limit\": \"输入令牌顺序\",\n\n            \"All apps\": \"所有应用\",\n                \"Apps\": \"应用\",\n                \"Build on your workflow with apps that integrate with GitHub\": \"使用与 GitHub 集成的应用构建您的工作流程。\",\n                \"App\": \"应用\",\n\n            \"AI Assisted\": \"AI 助理\",\n                \"AI Assisted apps\": \"AI 助理应用\",\n                \"AI Assisted actions\": \"AI 助理操作\",\n                \"Tools that are superpowered with AI (artificial intelligence) to help you be a better developer.\": \"使用人工智能（AI）强化的工具，助您成为更优秀的开发者。\",\n\n            \"API management\": \"API 管理\",\n                \"API management apps\": \"API 管理应用\",\n                \"API management actions\": \"API 管理操作\",\n                \"Structure your API infrastructure to enable various internet gateways to interact with your service.\": \"构建应用接口基础设施，使各种互联网网关能够与您的服务互动。\",\n\n            \"Backup Utilities\": \"备份工具\",\n                \"Backup Utilities apps\": \"备份工具应用\",\n                \"Backup Utilities actions\": \"备份工具操作\",\n                \"Utilities providing periodic backups of your GitHub data\": \"定期备份 GitHub 数据的实用工具\",\n\n            \"Chat\": \"聊天\",\n                \"Chat apps\": \"聊天应用\",\n                \"Chat actions\": \"聊天操作\",\n                \"Bring GitHub into your conversations.\": \"将 GitHub 纳入您的对话中。\",\n\n            \"Code quality\": \"代码质量\",\n                \"Code quality apps\": \"代码质量应用\",\n                \"Code quality actions\": \"代码质量操作\",\n                \"Automate your code review with style, quality, security, and test‑coverage checks when you need them.\": \"在需要时，通过样式、质量、安全性和测试覆盖检查自动进行代码审查。\",\n\n            \"Code review\": \"代码审查\",\n                \"Code review apps\": \"代码审查应用\",\n                \"Code review actions\": \"代码审查操作\",\n                \"Ensure your code meets quality standards and ship with confidence.\": \"确保您的代码符合质量标准，并能放心交付。\",\n\n            \"Code Scanning Ready\": \"代码扫描\",\n                \"Code Scanning Ready apps\": \"代码扫描应用\",\n                \"Code Scanning Ready actions\": \"代码扫描操作\",\n                \"Static analysis, dynamic analysis, container scanning, linting, and fuzzing tools that integrate with GitHub Code Scanning SARIF Upload\": \"与 GitHub 代码扫描 SARIF 上传集成的静态分析、动态分析、容器扫描、代码规范检查（linting）和模糊测试（fuzzing）工具。\",\n\n            \"Code search\": \"代码搜索\",\n                \"Code search apps\": \"代码搜索应用\",\n                \"Code search actions\": \"代码搜索操作\",\n                \"Query, index, or hash the semantics of your source code.\": \"查询、索引或哈希您的源代码语义。\",\n\n            \"Container CI\": \"容器持续集成\",\n                \"Container CI apps\": \"容器 CI 应用\",\n                \"Container CI actions\": \"容器 CI 操作\",\n                \"Continuous integration for container applications.\": \"容器应用的持续集成。\",\n\n            \"Continuous integration\": \"持续集成\",\n                \"Continuous integration apps\": \"持续集成应用\",\n                \"Continuous integration actions\": \"持续集成操作\",\n                \"Automatically build and test your code as you push it to GitHub, preventing bugs from being deployed to production.\": \"当您将代码推送到 GitHub 时，自动构建和测试您的代码，从而防止将错误部署到生产中。\",\n\n            \"Dependency management\": \"依赖管理\",\n                \"Dependency management apps\": \"依赖管理应用\",\n                \"Dependency management actions\": \"依赖管理操作\",\n                \"Secure and manage your third-party dependencies.\": \"保护和管理第三方依赖关系。\",\n\n            \"Deployment\": \"部署\",\n                \"Deployment apps\": \"部署应用\",\n                \"Deployment actions\": \"部署操作\",\n                \"Streamline your code deployment so you can focus on your product.\": \"简化代码部署，让您专注于产品。\",\n\n            \"Deployment Protection Rules\": \"部署保护规则\",\n                \"Deployment Protection Rules apps\": \"部署保护规则应用\",\n                \"Deployment Protection Rules actions\": \"部署保护规则操作\",\n                \"Enables custom protection rules to gate deployments with third-party services\": \"启用自定义保护规则，以使用第三方服务进行部署\",\n\n            \"Desktop tools\": \"桌面工具\",\n                \"Desktop tools apps\": \"桌面工具应用\",\n                \"Developer tools that are run natively on your local machine.\": \"在本地计算机上本机运行的开发者工具。\",\n\n            \"Game CI\": \"游戏 CI\",\n                \"Game CI apps\": \"游戏 CI 应用\",\n                \"Game CI actions\": \"游戏 CI 操作\",\n                \"Tools for building a CI pipeline for game development\": \"用于构建游戏开发 CI 管道的工具\",\n\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n                \"GitHub Sponsors actions\": \"GitHub 赞助操作\",\n                \"Tools to manage your\": \"管理您的\",\n                    \"community\": \"社区\",\n\n                \"IDEs\": \"集成开发环境\",\n                \"IDEs apps\": \"IDE 应用\",\n                \"IDEs actions\": \"IDE 操作\",\n                \"Find the right interface to build, debug, and deploy your source code.\": \"找到合适的界面来构建、调试和部署源代码。\",\n\n            \"Learning\": \"学习\",\n                \"Learning apps\": \"学习应用\",\n                \"Learning actions\": \"学习操作\",\n                \"Get the skills you need to level up.\": \"获得升级所需的技能。\",\n\n            \"Localization\": \"本地化\",\n                \"Localization apps\": \"本地化应用\",\n                \"Localization actions\": \"本地化操作\",\n                \"Extend your software's reach. Localize and translate continuously from GitHub.\": \"扩展您的软件的覆盖范围。从 GitHub 持续本地化和翻译。\",\n\n            \"Mobile\": \"移动\",\n                \"Mobile apps\": \"移动应用\",\n                \"Mobile actions\": \"移动操作\",\n                \"Improve your workflow for the small screen.\": \"针对小屏幕改进工作流程。\",\n\n            \"Mobile CI\": \"移动 CI\",\n                \"Mobile CI apps\": \"移动 CI 应用\",\n                \"Mobile CI actions\": \"移动 CI 操作\",\n                \"Continuous integration for Mobile applications\": \"移动应用的持续集成\",\n\n            \"Monitoring\": \"监控\",\n                \"Monitoring apps\": \"监控应用\",\n                \"Monitoring actions\": \"监控操作\",\n                \"Monitor the impact of your code changes. Measure performance, track errors, and analyze your application.\": \"监控代码更改的影响。衡量性能、跟踪错误并分析您的应用。\",\n\n            \"Open Source management\": \"开源管理\",\n                \"Open Source management apps\": \"开源管理应用\",\n                \"Open Source management actions\": \"开源管理操作\",\n                \"Running open source projects can be hard. Here are some tools to make that process a little more fun and a ton more manageable.\": \"运营开源项目可能会很困难。以下是一些工具，可以让这个过程变得更有趣且更加易于管理。\",\n\n            \"Project management\": \"项目管理\",\n                \"Project management apps\": \"项目管理应用\",\n                \"Project management actions\": \"项目管理操作\",\n                \"Organize, manage, and track your project with tools that build on top of issues and pull requests.\": \"使用基于置顶议题和拉取请求的工具来组织、管理和跟踪您的项目。\",\n\n            \"Publishing\": \"发布\",\n                \"Publishing apps\": \"发布应用\",\n                \"Publishing actions\": \"发布操作\",\n                \"Get your site ready for production so you can get the word out.\": \"让您的网站做好生产准备，以便您可以宣传。\",\n\n            // \"Recently added\": \"最近添加\",\n                \"Recently added apps\": \"最近添加应用\",\n                \"Recently added actions\": \"最近添加操作\",\n                \"The latest tools that help you and your team build software better, together.\": \"最新的工具可帮助您和您的团队更好地共同构建软件。\",\n\n            \"Reporting\": \"报告\",\n                \"Reporting apps\": \"报告应用\",\n                \"Get insights into how your teams are developing software using GitHub.\": \"了解您的团队如何使用 GitHub 开发软件的深入见解。\",\n\n            // 安全\n                \"Security apps\": \"安全应用\",\n                \"Security actions\": \"安全操作\",\n                \"Find, fix, and prevent security vulnerabilities before they can be exploited.\": \"发现、修复和预防安全漏洞，防患于未然。\",\n\n            // 支持\n                \"Support apps\": \"支持应用\",\n                \"Support actions\": \"支持操作\",\n                \"Get your team and customers the help they need.\": \"为您的团队和客户提供所需的帮助。\",\n\n            \"Sustainability\": \"可持续\",\n                \"Sustainability actions\": \"可持续操作\",\n                \"Optimize your work to minimize impact on the environment.\": \"优化您的工作以尽量减少对环境的影响。\",\n\n            \"Testing\": \"测试\",\n                \"Testing apps\": \"测试应用\",\n                \"Testing actions\": \"测试操作\",\n                \"Eliminate bugs and ship with more confidence by adding these tools to your workflow.\": \"通过将这些工具添加到您的工作流程中，消除错误并更有信心地交付。\",\n\n            \"Time tracking\": \"时间跟踪\",\n                \"Time tracking apps\": \"时间追踪应用\",\n                \"Time tracking actions\": \"时间追踪操作\",\n                \"Track your progress, and predict how long a task will take based on your coding activity.\": \"跟踪您的进度，并根据您的编码活动预测完成任务所需的时间。\",\n\n            \"Utilities\": \"实用工具\",\n                \"Utilities apps\": \"实用工具应用\",\n                \"Utilities actions\": \"实用工具操作\",\n                \"Auxiliary tools to enhance your experience on GitHub\": \"辅助工具，提升您的 GitHub 使用体验\",\n\n            // 操作\n            \"All actions\": \"所有操作\",\n                \"Automate your workflow from idea to production\": \"实现从构思到生产的工作流程自动化\",\n                    \"Action\": \"操作\",\n\n            \"Create a new extension\": \"创建新扩展\",\n\n            // 搜索结果\n                \"No results\": \"无结果\",\n                \"Try searching by different keywords.\": \"尝试使用不同的关键字进行搜索。\",\n\n        // 待处理订单页面 https://github.com/marketplace/orders/pending\n            // 老页面 左侧栏 不在兼容\n\n            \"Pending orders\": \"待处理订单\",\n            \"Review and complete your orders\": \"查看并完成您的订单\",\n                \"We noticed you started setting up some new plans but didn’t finish. You can complete your pending orders below or review any active subscriptions on the\": \"我们注意到您开始制定一些新计划，但尚未完成。您可以完成下面的待处理订单或查看任何有效的订阅在\",\n                \"billing overview page\": \"账单概览页面\",\n\n            \"Next: Confirm your installation location.\": \"下一步：确认您的安装位置。\",\n            \"Next: Confirm your installation location and payment information.\": \"下一步：确认您的安装位置和支付信息。\",\n\n            \"Remove from pending orders\": \"从待处理订单中删除\",\n            \"This will not affect your existing subscriptions.\": \"这不会影响您现有的订阅。\",\n\n            // 顶部提醒\n                // [/plan has been deleted./, \"计划已被删除。\"],\n\n        // 待安装页面 https://github.com/marketplace/installations/pending\n            // 老页面 左侧栏 不在兼容\n\n            \"Pending installations\": \"待安装\",\n            \"We noticed you’ve purchased some apps but didn't finish installing them. You can review and install them below.\": \"我们注意到您购买了一些应用，但尚未完成安装。您可以在下面查看并安装它们。\",\n            \"View or cancel any active subscriptions on the\": \"查看或取消任何有效的订阅\",\n            \"Install\": \"安装\",\n            \"Grant this app access to your GitHub account to complete installation.\": \"授予此应用访问 GitHub 账户的权限，以完成安装。\",\n\n        // 应用介绍页面 https://github.com/marketplace/<app-name>\n        // 示例: https://github.com/marketplace/codacy 第一页\n            \"by\": \"创建者：\",\n            \"install\": \"安装\",\n            \"s\": \" \",\n\n            // 添加\n                \"Edit current plan\": \"编辑当前计划\",\n                \"Configure account access\": \"配置账户访问权限\",\n\n            // 左侧信息栏\n                // 关于\n                    \"GitHub has verified that the publisher controls the domain and meets other requirements.\": \"GitHub 已经验证了发布者对该域名的控制权和满足其他要求\",\n\n                \"Category\": \"类别\",\n                \"Supported languages\": \"支持的语言\",\n                \"Customers\": \"客户\",\n                \"From the developer\": \"来自开发者\",\n                \"Support\": \"支持\",\n                \"Documentation\": \"文档\",\n                \"Privacy Policy\": \"隐私条款\",\n                \"Terms of Service\": \"服务条款\",\n                \"Report abuse\": \"举报滥用\",\n\n            // 右侧正文\n\n            // 下半部分\n            \"Pricing and setup\": \"定价与设置\",\n\n            \"Open source\": \"开源\",\n            \"Free for open source projects\": \"对开源项目免费\",\n            \"Free for both open source and private projects\": \"对开源和私人项目免费\",\n            \"Unlimited private repositories\": \"无限制私有项目\",\n            \"Free Trial\": \"免费试用\",\n            \"Pay-as-you-go\": \"即用即付\",\n\n            \"User\": \"用户\",\n            \"in this plan\": \"在计划中\",\n            \"per\": \"每\",\n\n            // \"Search by name\": \"按名称搜索\",\n            \"Install it for free\": \"免费安装\",\n            \"Try free for 14 days\": \"免费试用 14 天\",\n\n            \"Buy with GitHub\": \"通过 GitHub 购买\",\n            // [/Set up with ([^ ]+)/, \"使用 $1 设置\"],\n            \"Next: Confirm your installation location\": \"下一步：确认您的安装位置\",\n            \"and payment information\": \"和支付信息\",\n\n            \"is provided by a third-party and is governed by\": \"是由第三方提供的，并受\",\n            \"separate\": \"单独的\",\n            \"terms of service\": \"服务条款\",\n            \"privacy policy\": \"隐私政策\",\n            \", and\": \"，和\",\n            \"support documentation\": \"支持文档\",\n            \"support contact\": \"支持联络\",\n\n            // [/By clicking Set up with (.*), you agree to (.*)’s/, \"单击 “使用 $1 设置”，即表示您同意 $1 的以下条款\"],\n            \"You previously agreed to the\": \"您之前已同意\",\n            \"Marketplace Terms of Service\": \"市场服务协议\",\n\n        // 应用的审查、编辑订单 第二页 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n        // 个人 应用示例: https://github.com/marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n            \"Edit your plan\": \"编辑您的计划\",\n            \"Account:\": \"账户：\",\n            \"Order summary\": \"订单摘要\",\n            \"Open Source\": \"开源\",\n            \"Free\": \"免费\",\n            \"(current plan)\": \"(当前计划)\",\n            \"Plans\": \"计划\",\n                \"/ month\": \"/ 月\",\n\n            \"To complete this installation, you must\": \"要完成此安装，您必须\",\n            \"grant this app access\": \"授予此应用的权限\",\n            \"to your GitHub account.\": \"访问您的 GitHub 账户。\",\n\n            \"Cancel this plan\": \"取消计划\",\n\n            // 右侧栏\n            \"Current plan\": \"当前计划\",\n            \"New plan\": \"新计划\",\n                \"Due today\": \"截止到今天\",\n                // [/Prorated for/, \"按比例计算\"],\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n        // 组织 应用示例: https://github.com/marketplace/gitlocalize/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW4zOTg=?account=maboloshi\n            \"Review your order\": \"审查您的订单\",\n            \"For individuals, teams, and communities, public and private projects\": \"对于个人、团队和社区，公共和私人项目\",\n            \"Total amount\": \"总金额\",\n\n            \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"组织所有者或账单管理者必须将其个人账单信息与该组织账户关联。您可以切换到企业账户，以使用企业的账单信息通过\",\n            // \"By clicking \\\"Complete order and begin installation\\\", you agree to the\": \"通过单击“完成订单并开始安装”，您同意\",\n            // \"Marketplace Terms of Service\": \"市场服务条款\",\n            \"signing\": \"签署\",\n            \"the\": \" \",\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n            // \"Complete order and begin installation\": \"完成订单并开始安装\",\n\n            \"Save and continue\": \"保存并继续\",\n\n        // 操作介绍页面 https://github.com/marketplace/actions/<action-name>\n        // 示例: https://github.com/marketplace/actions/merge-upstream\n            // 顶部提醒\n                \"Sorry, we couldn’t find that version of this Action. Here’s the latest version.\": \"对不起，我们找不到此 GitHub Action 的这个版本。 下面是最新的版本。\",\n                \"You're viewing an older version of this GitHub Action. Do you want to see the\": \"您正在查看此 GitHub Action 的旧版本。您想查看\",\n                \"latest version\": \"最新版本\",\n                \"instead?\": \"吗？\",\n\n            // 右侧栏\n                \"Latest version\": \"最新发行版\",\n                    \"Choose a version\": \"选择发行版\",\n                // [/Use (v\\d+)/, \"使用 $1\"], // 右上角绿色按钮\n\n                // 安装窗口\n                    \"Installation\": \"安装\",\n                    \"Copy and paste the following snippet into your\": \"将以下代码段复制并粘贴到您的\",\n                        \"file.\": \"文件。\",\n                    \"Learn more about this action in\": \"了解更多关于该操作的信息，请访问\",\n\n                // 关于\n                    \"Latest\": \"最新\",\n                    \"By\": \"创建者：\",\n\n                // 已验证\n                    \"GitHub has manually verified the creator of the action as an official partner organization. For more info see\": \"GitHub 已手动验证该操作的创建者为官方合作伙伴组织。欲了解更多信息，请参阅\",\n                        \"About badges in GitHub Marketplace\": \"关于 GitHub 市场中的徽章\",\n\n                \"Contributors\": \"贡献者\",\n                \"Start a discussion\": \"开始讨论\",\n                \"Open an issue\": \"打开议题\",\n                \"View source code\": \"查看源代码\",\n                \"Security policy\": \"安全政策\",\n\n                \"is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"未经 GitHub 认证。它由第三方提供，并受单独的服务条款、隐私政策和支持文档的约束。\",\n\n        // GitHub 模型集合页 https://github.com/marketplace/models\n            \"Select a Model\": \"选择模型\",\n\n            \"Welcome to GitHub Models\": \"欢迎访问 GiHub 模型\",\n                \"A catalog and playground of AI models to help you build AI features and products.\": \"一个AI模型目录和运行场，帮助您构建AI特性和产品。\",\n\n            \"Model switching:\": \"模型切换：\",\n                \"A single API key for all models & billing.\": \"一个 API 密钥适用于所有模型和计费。\",\n            \"Quick personal setup:\": \"快速个人设置：\",\n                \"GitHub PAT to install models in your projects.\": \"使用 GitHub 个人访问令牌（PAT）在您的项目中安装模型。\",\n            \"Free to start:\": \"免费开始：\",\n                \"No charges until you hit our rate limits.\": \"在达到速率制限之前不收费。\",\n\n            \"Select a model to get started, or\": \"选择一个模型开始，或\",\n                \"explore the full model catalog\": \"浏览完整模型目录\",\n\n        // GitHub 模型页面 https://github.com/marketplace/models/<user-name>/<model-name>\n            \"You're already on the waitlist! We'll send you an email once your access is granted.\": \"GitHub 模型限量公开测试将有名额限制。如果您获准访问，您将收到一封电子邮件。\",\n            \"You're already on the waitlist! We'll send you an email once your access is granted\": \"GitHub 模型限量公开测试将有名额限制。如果您获准访问，您将收到一封电子邮件\",\n\n            // 顶部\n            \"Playground\": \"运行\",\n            \"Use this model\": \"使用此模型\",\n            \"Get started\": \"开始\",\n                \"Language:\": \"语言：\",\n                \"Chapters\": \"步骤\",\n            \"Get API key\": \"获取 API 密钥\",\n\n            \"Enter a message...\": \"键入信息…\",\n                \"Submit message\": \"发送\",\n\n            // 中间横条\n            \"README\": \"自述文件\",\n            \"Evaluation\": \"评估\",\n            \"Transparency\": \"透明度\",\n            \"License\": \"许可证\",\n\n            // 右侧\n            \"Context\": \"文本\",\n                \"input\": \"输入\",\n                \"output\": \"输出\",\n            \"Training date\": \"训练日期\",\n            // 价格\n                \"View pricing\": \"查看价格\",\n            \"Free rate limit tier\": \"免费速率限制等级\",\n                \"Low\": \"低\",\n                \"High\": \"高\",\n                \"Custom\": \"自定义\",\n                \"Undisclosed\": \"未公布\",\n            \"Provider support\": \"供应商支持\",\n            \"Tags\": \"标签\",\n\n            // 获取 API 密钥窗口（从“使用此模型”进入\n\n                \"1. Create a personal access token\": \"1. 创建个人访问令牌（PAT）\",\n                \"2. Install dependencies\": \"2. 安装依赖\",\n                \"3. Run a basic code sample\": \"3. 运行基本代码示例\",\n                \"4. Explore more samples\": \"运行更多示例\",\n                \"5. Going beyond rate limits\": \"5. 超出速率限制\",\n                // REST\n                    \"2. Run a basic code sample\": \"3. 运行基本代码示例\",\n                    \"3. Explore more samples\": \"运行更多示例\",\n                    \"4. Going beyond rate limits\": \"5. 超出速率限制\",\n\n                \"Run with codespaces\": \"在代码空间运行\",\n                    \"Seriously, you'll be up and running in seconds. It will be great.\": \"请放心，您只需数秒即可完成配置并开始使用，效果超乎预期\",\n                    \"Run codespace\": \"运行代码空间\",\n\n        // GitHub 模型聊天页面 https://github.com/marketplace/models/<user-name>/<model-name>/playground\n            // 顶部栏\n            \"Model:\": \"模型：\",\n                \"Close\": \"关闭\",\n                \"Switch model\": \"切换模型\",\n                \"View all models\": \"查看所有模型\",\n            \"Prompt editor\": \"提示词编辑器\",\n            \"Preset:\": \"预设：\",\n                \"Default\": \"默认\",\n                \"Edit preset\": \"编辑预设\",\n                \"Delete preset\": \"删除预设\",\n                     // 弹窗\n                         \"Are you sure you want to delete this preset?\": \"您确定要删除吗？\",\n                \"Create new preset\": \"新建预设\",\n                    \"Presets save your current parameters, chat history, and state.\": \"预设可保存当前参数、聊天记录和状态。\",\n                    \"Name\": \"名称\",\n                        \"Name is required\": \"需要名称\",\n                    \"Description\": \"简述\",\n                    \"Save chat history\": \"保存聊天历史\",\n                        \"Chat history in this preset will be saved and visible to others when shared.\": \" 此预设中的聊天记录将被保存，并在共享时对其他人可见。\",\n                        \"Note: Image attachments are not saved with the preset.\": \"注意：预设不保存图像附件。\",\n                    \"Enable sharing\": \"启用分享\",\n                        \"Anyone with the URL will be able to view and use this preset, but not edit. Presets are private by default.\": \"任何拥有该 URL 的人都可以查看和使用该预设，但不能进行编辑。预设默认为私有。\",\n                    \"Create preset\": \"新建\",\n            \"Raw\": \"源码\",\n            \"Input:\": \"输入：\",\n            \"• Output:\": \"• 输出：\",\n            \"ms\": \"毫秒\",\n\n            \"Welcome to GitHub Models!\": \"欢迎使用 GitHub 模型！\",\n                \"We want to make Models Playground amazing for you. Got feedback? Book a call or\": \"我们致力于让模型游乐场为您带来卓越体验。如有反馈，请预约通话或\",\n            // 聊天窗口\n                // 顶部横条\n                    \"Restore last session\": \"恢复上次聊天\",\n                    \"Compare\": \"比较\",\n                        \"Select model\": \"选择模型\",\n                    \"Reset chat history\": \"删除聊天\",\n                // 中间\n                \"Responding...\": \"响应中…\",\n                \"An error occurred. Please try again.\": \"发生错误，请重试。\",\n\n                    \"Positive\": \"点赞\",\n                    \"Negative\": \"点踩\",\n                    \"Regenerate\": \"重新生成\",\n                    \"Edit prompt\": \"编辑提示词\",\n\n                \"Attach an image\": \"附加图像\",\n                    \"Remove\": \"移除\",\n                \"Type your prompt…\": \"键入提示词…\",\n                    \"Send now\": \"发送\",\n\n            // 参数设置\n                \"Parameters\": \"参数\",\n                \"Reset to default inputs\": \"重置\",\n                \"Hide parameters setting\": \"隐藏参数设置\",\n                \"Show parameters setting\": \"显示参数设置\",\n                \"System prompt\": \"系统提示词\",\n                    //\"Set the context for the model response.\": \"设置模型响应的环境。\",\n                    \"You are a helpful assistant...\": \"您是一个得力的助手…\", // 默认提示词\n                \"Improve prompt\": \"增强提示词\",\n                    \"Adjust your prompt with specific suggestions or simply click to enhance your prompt.\": \"根据具体建议调整，或者简单地点击以增强您的提示词。\",\n                    \"Current prompt\": \"原提示词\",\n                    \"What would you like to improve? (optional)\": \"您想增强什么内容？（可选）\",\n                        \"Eg: explain X for a beginner and write responses in nested bullets.\": \"例如：为初学者解释 X ，并用嵌套项目符号编写回应。\",\n                \"Response format\": \"响应格式\",\n                    \"Text\": \"文本\",\n                    \"Set the format for the model response.\": \"设置模型响应的格式。\",\n                \"Max Tokens\": \"最大令牌\",\n                \"Max Completion Tokens\": \"最大输出标记\",\n                    \"Limit the maximum output tokens for the model response.\": \"限制模型响应的最大输出标记。\",\n                \"Reasoning Effort\": \"推理强度调节\",\n                    \"Adjust the model's cognitive load with options for low, medium, and high reasoning levels.\": \"通过低、中、高三级可选项调整模型的计算资源分配，控制输出结果的逻辑复杂度和思考深度。\",\n                    \"high\": \"高\",\n                    \"medium\": \"中\",\n                    \"low\": \"低\",\n                \"Temperature\": \"随机度\",\n                    \"Controls randomness in the response, use lower to be more deterministic.\": \"控制响应的随机性，使用较低值则更具确定性。\",\n                \"Top P\": \"最大概率\",\n                    \"Controls text diversity by selecting the most probable words until a set probability is reached.\": \"通过选择最有可能出现的词语来控制文本多样性，直到达到设定的概率。\",\n                \"Presence Penalty\": \"重复惩罚\",\n                    \"Discourages the model from repeating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their presence in the text.\": \"通过根据文本中已存在的词语或短语施加惩罚（范围在-2.0到2.0之间），抑制模型过于频繁地重复使用相同词语或短语的倾向。\",\n                \"Frequency Penalty\": \"频率惩罚\",\n                    \"Discourages the model from generating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their existing frequency in the text.\": \"通过根据文本中已存在词语或短语的出现频率施加惩罚（范围在-2.0到2.0之间），抑制模型过于频繁地生成相同词语或短语的倾向。\",\n                \"Stop\": \"停止\",\n                    \"Force cutting the output when this string occurs.\": \" 当出现该字符串时，强制切断输出。\",\n            // 模型比较\n                \"Close model\": \"关闭\",\n                \"Show model info\": \"显示模型信息\",\n                // 参数设置窗口\n                \"Sync chat input and parameters\": \"同步聊天输入和参数\",\n            // 详细信息\n                \"Model details page\": \"详细信息\",\n\n                \"Got feedback?\": \"提交反馈？\",\n                    \"share feedback via discussion\": \"前往讨论\",\n\n            // 底部\n                \"Azure hosted. AI powered, can make mistakes.\": \" Azure 托管。人工智能驱动，可能犯错。\",\n                \"Share feedback\": \"分享反馈\",\n                \". Subject to\": \"。受\",\n                \"Product Terms\": \"产品条款\",\n                \". Not intended for production/sensitive data.\": \"约束。不适用于生产/敏感数据。\",\n\n        // 提示词编辑器 https://github.com/marketplace/models/<user-name>/<model-name>/prompt\n\n            // 左侧\n                \"Edit variables\": \"编辑变量\",\n                    \"System\": \"系统\",\n                        \"Define the model's behavior or role. Example: 'You are a spaceship captain telling intergalactic tales.'\": \"定义模型的行为模式或角色设定。例如：\\\"您是一位正在讲述星际传奇故事的宇宙飞船舰长\\\"\",\n                    // 用户\n                        \"Enter the task or question for the model. Example: 'Write me a song about GitHub.' Use {{variable}} for placeholders.\": \"输入模型需处理的任务或问题。示例：\\\"创作一首关于 GitHub 的歌曲\\\"。使用 {{variable}} 作为占位符\",\n\n            // 中间\n                \"Run\": \"运行\",\n\n                \"We want to make this new experience amazing for you! Got feedback? Book a call or\": \"我们致力于为您打造非凡的全新体验！有任何反馈？立即预约通话或\",\n                    \"share your thoughts\": \"分享您的想法\",\n                    \"Book a call\": \"预约通话\",\n\n                \"Iterate on your prompt\": \"持续优化提示词\",\n                    \"Use the prompt editor to run a single prompt repeatedly, refining it and adjusting\": \"通过提示词编辑器反复执行单个提示词，持续优化内容并动态调整\",\n                    \"to achieve the perfect response.\": \"，最终生成理想响应结果\",\n\n        // 加入模型内测页 https://github.com/marketplace/models/waitlist/join\n            \"GitHub Models waitlist\": \"GitHub 模型等待名单\",\n\n            // 左侧\n                \"Limited Public Beta\": \"有限公开测试\",\n                \"Join the GitHub Models waitlist\": \"加入 GitHub 模型等待名单\",\n                    \"Join the limited public beta for early access to GitHub Models.\": \"加入有限公开测试，提前访问 GitHub 模型。\",\n\n            // 问卷\n                \"What level of experience do you have in building GenAI solutions that use large language models (LLMs)?\": \"您在构建使用大型语言模型 (LLM) 的 GenAI 解决方案方面有哪些经验？\",\n                    \"Exploration/proof-of-concept\": \"探索/概念验证\",\n                    \"In development\": \"开发\",\n                    \"I have built 1 solution that is in production\": \"我已构建了 1 个解决方案，并已投入生产\",\n                    \"I have built 2 or more solutions that are in production\": \"我已构建了 2 个或更多解决方案，并已投入生产\",\n                \"What is your main business use case for GenAI applications? Please select all that apply.\": \"GenAI 应用程序的主要业务用例是什么？请选择所有适用情况。\",\n                    \"RAG-based chat applications (\\\"chat with my own data\\\")\": \"基于 RAG 的聊天应用程序（“与我自己的数据聊天”）\",\n                    \"Sentiment analysis\": \"情绪分析\",\n                    \"Summarization\": \"归纳总结\",\n                    \"Content generation\": \"内容生成\",\n                    \"Entity extraction\": \"实体提取\",\n                    \"Text classification\": \"文本分类\",\n                    \"Image classification\": \"图片分类\",\n                    \"Translation\": \"翻译\",\n                    \"Other (please specify):\": \"其他（请说明）：\",\n\n                \"Join GitHub Models waitlist\": \"加入 GitHub 模型等待名单\",\n\n                \"By signing up for the waitlist you agree to\": \"注册等待名单即代表您同意\",\n                \"GitHub's preview terms\": \"GitHub 预览条款\",\n                \". Signing up does not guarantee access.\": \"。注册并不保证可以访问。\",\n\n                // 成功，标题走正则\n                \"Admission to the limited public beta for GitHub Models will be limited. You will receive an email if you are granted access.\": \"GitHub 模型的限量公开测试有名额限制。如果您获准访问，您将收到一封电子邮件。\",\n                \"Return to continue exploring\": \"继续探索\",\n                \"GitHub Models\": \"GitHub 模型\",\n\t\t// 新上市市场页 https://github.com/marketplace/new\n\t\t\t\"List your tool\": \"上市你的工具\",\n\t\t\t\"List your tool on GitHub Marketplace\": \"在 GitHub 市场上市你的工具\",\n\n\t\t\t\"You have no tools to list on GitHub Marketplace\": \"您没有可在 GitHub 市场上市的工具\",\n\t\t\t\t\"Learn more about the requirements\": \"了解有关要求的更多信息\",\n\t\t\t\t\"to list a tool on GitHub Marketplace.\": \"在 GitHub 市场上市工具。\",\n\n            \"More about tools and GitHub Marketplace\": \"有关工具和 GitHub 市场的更多信息\",\n                \"About GitHub Marketplace\": \"关于 GitHub 市场\",\n                    \"How to create and list tools on the GitHub Marketplace, including guidelines for listing content, artwork, and screenshots.\": \"如何在 GitHub 市场上创建和上市工具，包括列出内容、插图和屏幕截图的指南。\",\n                \"Adding webhooks for a GitHub Marketplace listing\": \"为 GitHub 市场上市添加 Webhook\",\n                    \"Add webhooks for your app to notify you when specified events are triggered.\": \"为您的应用程序添加 Webhooks，以便在触发指定事件时通知您。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Search results for “(.+)”/, \"“$1”的搜索结果\"], // 市场搜索\n        [/(\\d+) results?/, \"$1 个结果\"], // 市场搜索\n        [/plan has been deleted./, \"计划已被删除。\"],\n\n        [/Use (v\\d+)/, \"使用 $1\"], // 操作介绍页面 右上角绿色按钮\n        [/Set up with (.*)/, \"使用 $1 设置\"], // 应用介绍页面\n        [/By clicking Set up with (.*), you agree to (.*)’s/, \"单击 “使用 $1 设置”，即表示您同意 $1 的以下条款\"], // 应用介绍页面\n        // /marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n        [/Prorated for/, \"按比例计算\"],\n\n        [/Thank you! ([^ ]+) is now on the waitlist for GitHub Models./, \"谢谢！$1 现已进入 GitHub 模型等待名单。\"],\n\n\t\t[/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Marketplace\": \"市场\",\n            \"Marketplace · Tools to improve your workflow\": \"市场 · 改进工作流程的工具\",\n            \"GitHub Models\": \"GitHub 模型\",\n            \"Models · GitHub Marketplace\": \"模型 · GitHub 市场\",\n            \"New Marketplace Listing · GitHub Marketplace\": \"新建市场 · GitHub 市场\",\n        },\n        \"regexp\": [\n            [/Models/, \"模型\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"apps\"] = { // GitHub 应用\n    \"static\": { // 静态翻译\n\n        // GitHub 应用页面 https://github.com/apps/<app-name>\n        // 示例: https://github.com/apps/codacy-production\n            \"GitHub App\": \"GitHub 应用\",\n\n            \"No description\": \"尚无描述\",\n\n            \"Read more about this app on the Marketplace\": \"了解更多关于市场中此应用的信息\",\n\n            // 未安装\n                \"Install\": \"安装\",\n                \"Next: Confirm your installation location.\": \"下一步：确认您的安装位置。\",\n\n            // 已安装\n                \"Configure\": \"设置\",\n                \"Manage your installation settings.\": \"管理安装设置。\",\n\n            // 私有 App\n                \"Learn more about GitHub Apps\": \"了解更多关于 GitHub 应用的信息\",\n\n            \"Developer\": \"开发者\",\n                \"App settings\": \"应用设置\", // 已安装\n                \"Website\": \"网站\",\n\n            \"is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"是由第三方提供的，并受单独的服务条款、隐私政策和支持文档的约束。\",\n\n            \"Report abuse\": \"举报滥用\",\n\n        // GitHub 应用 安装、授权页面 https://github.com/apps/<app-name>/installations/new/permissions?target_id=<id>\n        // 示例 https://github.com/apps/codacy-production/installations/new/permissions?target_id=7850715\n            \"Install & Authorize\": \"安装与授权\",\n            \"Authorize & Request\": \"授权与请求\", // 他人的组织\n            \"Request\": \"请求\",\n            // [/Install & Authorize on your personal account (.*)/, \"在您的个人账户 $1 上安装与授权\"],\n            // [/Install on your personal account (.*)/, \"在您的个人账户 $1 上安装\"],\n            // [/Install & Authorize on your organization (.*)/, \"在您的组织 $1 上安装与授权\"], // 组织\n            // [/Install on your organization (.*)/, \"在您的组织 $1 上安装\"], // 组织\n            // [/Request on your organization (.*)/, \"对于您的组织 $1 的请求\"], // 组织\n            // [/Authorize & Request on your organization (.*)/, \"对于您的组织 $1 的授权与请求\"], // 组织\n\n            \"for these repositories:\": \"对于这些仓库：\",\n                \"All repositories\": \"所有仓库\",\n                    \"This applies to all current\": \"这适用于资源所有者拥有的所有当前\",\n                    \"and\": \"和\",\n                    \"future repositories owned by the resource owner.\": \"未来的仓库。\",\n                    \"Also includes public repositories (read-only).\": \"还包括公共仓库（只读）。\",\n                \"Only select repositories\": \"仅选定的仓库\",\n                    \"Select at least one repository.\": \"至少选择一个仓库。\",\n                    \"Select repositories\": \"选择仓库\",\n                        \"Search for a repository\": \"搜索仓库\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"已选择 $1 仓库。\"],\n                        \"request\": \"请求\",\n\n            \"with these permissions:\": \"授权以下权限：\",\n\n            // >>>>>具体的权限不打算汉化<<<<<<<\n            // >>>>>具体的权限不打算汉化<<<<<<<\n\n            \"User permissions\": \"用户权限\",\n            // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装 & 授权 $1 会立即在您的账户上授予以下权限：\"],\n            // [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"还可以请求用户对以下资源的许可。这些权限将在个人用户的基础上请求和授权。\"],\n            \"These permissions will also be requested and authorized as needed on an individual-user basis.\": \"这些权限也将根据个人用户的需要进行申请和授权。\", // 组织\n\n            \"Installing & Authorizing\": \"安装与授权中\",\n            \"Installing\": \"安装中\",\n            \"Requesting\": \"请求中\",\n\n            \"Next: you'll be redirected to\": \"下一步：您将被重定向到\",\n            \"Next: you’ll be directed to the GitHub App’s site to complete setup.\": \"下一步：您将被引导到GitHub 应用网站完成设置。\", // 组织\n\n        // 应用设置 - 选择目标 https://github.com/apps/<app-name>/installations/select_target\n            // [/Install (.*)/, \"安装 $1\"],\n            // [/Where do you want to install (.*)\\?/, \"您想把 $1 安装在哪里？\"],\n            // [/(.*) is installed. Click to configure./, \"$1 已安装。点击进行配置。\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Install & Authorize on your personal account (.*)/, \"在您的个人账户 $1 上安装与授权\"],\n        [/Install & Authorize on your organization (.*)/, \"在您的组织 $1 上安装与授权\"], // 组织\n        [/Install on your personal account (.*)/, \"在您的个人账户 $1 上安装\"],\n        [/Install on your organization (.*)/, \"在您的组织账户 $1 上安装\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"已选择 $1 仓库。\"],\n        [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装与授权 $1 会立即在您的账户上授予以下权限：\"],\n        [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"还可以请求用户对以下资源的许可。这些权限将在个人用户的基础上请求和授权。\"],\n        [/Authorize & Request on your organization (.*)/, \"对于您的组织 $1 的授权与请求\"], // 组织\n        [/Request on your organization (.*)/, \"对于您的组织 $1 的请求\"], // 组织\n        [/Install (.*)/, \"安装 $1\"],\n        [/Where do you want to install (.*)\\?/, \"您想把 $1 安装在哪里？\"],\n        [/(.*) is installed. Click to configure./, \"$1 已安装。点击进行配置。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs\"] = { // 组织页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n        //>>>>>>>>>>>>>>>>>> 组织主页/概况页 <<<<<<<<<<<<<<<<<<<<<\n            // [/doesn't have any pinned public repositories yet./, \"还没有任何置顶的公共仓库。\"],\n\n            \"followers\": \"关注者\",\n            \"Sponsor\": \"赞助\",\n\n            \"Send feedback\": \"发送反馈\",\n\n            \"Pinned\": \"已置顶\",\n            \"Popular repositories\": \"流行的仓库\",\n\n            // 仓库\n                // 搜索, 筛选 & 排序工具栏\n                \"Find a repository…\": \"搜索仓库…\",\n                // \"Type\": \"类型\", // 与全局冲突 使用 Selector 规则翻译\n                    // 下拉菜单\n                    \"Select type\": \"选择类型\",\n                    \"All\": \"全部\",\n                    \"Public\": \"公共\",\n                    \"Private\": \"私有\",\n                    \"Sources\": \"源码\",\n                    \"Forks\": \"复刻\",\n                    \"Archived\": \"存档\",\n                    \"Can be sponsored\": \"可赞助\",\n                    \"Mirrors\": \"镜像\",\n                    \"Templates\": \"模板\",\n                \"Language\": \"语言\",\n                    // 下拉菜单\n                    \"Select language\": \"选择语言\",\n                    \"All languages\": \"所有语言\",\n                \"Sort\": \"排序\",\n                    // 下拉菜单\n                    \"Select order\": \"选择排序\",\n                    \"Last updated\": \"最近更新\",\n                    \"Name\": \"仓库名\",\n                    // \"Recently starred\": \"最近标星\",\n                    // \"Recently active\": \"最近活跃\",\n                    // \"Most stars\": \"最多星标\",\n                    // \"Unstar\": \"取消星标\",\n                \"New\": \"新建\",\n\n                // 筛选结果\n                \"result for\": \"个结果在\",\n                \"results for\": \"个结果在\",\n                    \"public\": \"公共\",\n                    \"private\": \"私有\",\n                    \"source\": \"源码\",\n                    \"forked\": \"复刻\",\n                    \"archived\": \"存档\",\n                    \"sponsorable\": \"可赞助\",\n                    \"mirror\": \"镜像\",\n                    \"template\": \"模板\",\n                \"repositories matching\": \"仓库中匹配了\",\n                // \"result for repositories matching\": \"个结果在仓库中匹配了\",\n                // \"results for repositories matching\": \"个结果在仓库中匹配了\",\n                // \"repositories sorted by\": \"仓库，排序按\",\n                \"written in\": \"，使用语言\",\n                // \"results for repositories written in\": \"个结果在仓库中使用语言\",\n                // \"star matching\": \"个星标匹配\", //?tab=stars\n                // \"stars matching\": \"个星标匹配\", //?tab=stars\n                // \"star written in\": \"个星标使用语言\", //?tab=stars\n                // \"stars written in\": \"个星标使用语言\", //?tab=stars\n                \"repositories sorted by\": \"仓库，排序按\",\n                \"sorted by\": \"，排序按\",\n                    \"last updated\": \"最近更新\",\n                    \"name\": \"仓库名\",\n                    \"stars\": \"星标\",\n                \"all\": \"所有\",\n                \"repositories written in\": \"仓库中使用语言\",\n\n                \"Clear filter\": \"清除筛选\",\n\n                // [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"],\n                \"No repositories matched your search.\": \"没有与您的搜索相匹配的仓库。\",\n\n                // 项目 状态词\n                \"Updated\": \"更新于\",\n                \"Forked from\": \"复刻自\",\n\n\n            // 右侧栏\n                \"View as:\": \"浏览：\",\n                    \"Switch profile context\": \"切换视角\",\n                    \"Member\": \"成员\",\n                        \"Member of\": \"隶属于\", // 成员 - 浮动信息卡\n                        \"- same time\": \"- 时间相同\", // 成员 - 浮动信息卡\n\n                // 公共视角\n                    \"You are viewing the README and pinned repositories as a public user.\": \"您正在以公共用户的身份查看自述文件和置顶仓库。\",\n\n                // 组织成员视角\n                    // [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 组织成员的身份查看自述文件和置顶仓库。\"],\n\n                \"You can\": \"您可以\",\n                \"pin repositories\": \"置顶仓库\",\n                \"visible to anyone.\": \"让任何人都能看到。\",\n                \"visible only to members of the organization.\": \"仅对组织成员可见。\",\n\n                \"Get started with tasks\": \"开始任务\",\n                \"that most successful organizations complete.\": \"大多数成功的组织都会完成。\",\n                \"hide the tasks we've suggested\": \"隐藏我们建议的任务\",\n                \"on this page and bring them back later.\": \"在此页面上，以后再把它们带回来。\",\n\n                \"Top discussions this past month\": \"上个月的热门讨论\",\n                    \"Nothing to see here yet!\": \"这里还没什么可看的!\",\n                    \"Discussions are for sharing announcements, creating conversation in your community, answering questions, and more.\": \"讨论是为了分享公告，在您的社区创建对话，回答问题，以及更多。\",\n                    \"Start a new discussion\": \"开始新的讨论\",\n                    \"View all discussions\": \"查看全部讨论\", // 组织讨论\n\n                // \"People\": \"成员\",\n                    \"This organization has no public members. You must be a member to see who’s a part of this organization.\": \"该组织没有公共成员。您必须是成员才能查看谁是该组织的成员。\",\n                    \"Invite someone\": \"邀请他人\",\n                        // 邀请对话框\n                        // [/Invite a member to/, \"邀请成员加入\"],\n                        \"Search by username, full name or email address\": \"搜索用户名，全名或邮箱地址：\",\n                        \"Invite\": \"邀请\",\n                        \"Invite a billing manager\": \"邀请一位账单管理员\",\n                        \"Authenticate your members with SAML single sign-on\": \"使用 SAML 单一登录对您的成员进行身份验证\",\n                        \"Try risk-free for 30 days\": \"无风险试用 30 天\",\n                        \"learn more about SAML\": \"了解更多关于 SAML 的信息\",\n                        \", or\": \"，或\",\n                        \"dismiss this message\": \"忽略此消息\",\n                    \"View all\": \"查看全部\",\n\n                \"Top languages\": \"热门语言\",\n                    \"Loading…\": \"载入中…\",\n                \"Most used topics\": \"最常用的话题\",\n                \"Developer Program Member\": \"开发者计划成员\",\n                \"Report abuse\": \"举报滥用\",\n\n            \"Create new repository\": \"新建仓库\",\n            \"Import\": \"导入\",\n\n            \"This organization has no repositories.\": \"该组织暂无仓库。\",\n            \"View all repositories\": \"查看所有仓库\",\n\n            // 设置置顶\n            \"Edit pinned repositories\": \"设置置顶项目\",\n            \"Select up to six public repositories you'd like to show to anyone.\": \"最多选择 6 个您想向任何人展示的公共仓库。\",\n            \"Select up to six public, internal, or private repositories you'd like to show only to members of the organization.\": \"最多选择 6 个您想仅向组织成员展示的公共、内部或私有仓库。\",\n            \"No repositories or gists found.\": \"没有发现仓库或 Gists。\",\n            // 顶部提醒\n            \"You’re not a member of any teams in this organization.\": \"您不是该组织中任何团队的成员。\",\n            \"invited you to join the\": \"邀请您加入\",\n            \"organization\": \"组织\",\n            \"View invitation\": \"查看邀请\",\n\n            // 新组织 入门任务\n            \"We think you’re gonna like it here.\": \"我们认为您会喜欢这里的。\",\n            \"We’ve suggested some tasks here in your organization's overview to help you get started.\": \"我们在这里就您的组织概况提出了一些任务，以帮助您开始工作。\",\n            \"Invite your people\": \"邀请同伴\",\n                \"Invite your first member\": \"邀请首位成员\",\n                    \"Find people by their GitHub username or email address.\": \"通过 GitHub 用户名或电子邮件地址找到他们。\",\n                \"Customize members' permissions\": \"自定义成员权限\",\n                    \"Set everyone’s base permissions for your code.\": \"为您的代码设置每个人的基本权限。\",\n            \"Collaborative coding\": \"协助编码\",\n                \"See more about collaborative coding\": \"查看更多关于协作式编码的信息\",\n                \"Create a pull request\": \"创建拉取请求\",\n                    \"Propose and collaborate on changes to a repository.\": \"就对仓库的更改提出建议并进行协作。\",\n                \"Create a branch protection rule\": \"创建分支保护规则\",\n                    \"Enforce certain workflows for one or more branches.\": \"为一个或多个分支强制执行某些工作流程。\",\n            \"Automation and CI/CD\": \"自动化和 CI/CD\",\n                \"See more about automation and CI/CD\": \"查看更多关于自动化和 CI/CD 的信息\",\n                \"Auto-assign new issues\": \"自动分配新议题\",\n                    \"Try automatically assigning work with GitHub Actions.\": \"尝试使用 GitHub Actions 自动分配工作。\",\n                \"Run a continuous integration test\": \"运行持续集成测试\",\n                    \"Validate your code using a CI workflow.\": \"使用 CI 工作流程验证您的代码。\",\n            \"Discover new GitHub features\": \"发现 GitHub 的新功能\",\n                \"See all features\": \"查看所有功能\",\n                \"Client apps\": \"客户端应用\",\n                \"Project management\": \"项目管理\",\n                \"Team administration\": \"团队管理\",\n                \"Community\": \"社区\",\n\n            // 组织关注 指引框\n                \"You can now follow organizations\": \"您现在可以关注组织\",\n                \"Organization activity like new discussions, sponsorships, and repositories will appear in\": \"组织活动，如新的讨论、赞助和仓库将出现在\",\n                \"your dashboard feed\": \"您的仪表板的信息上\",\n                \"OK, got it!\": \"好的，知道了！\",\n\n            \"This organization has no public repositories.\": \"该组织没有公共仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/doesn't have any pinned public repositories yet./, \"还没有任何置顶的公共仓库。\"],\n        [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 组织成员的身份查看自述文件和置顶仓库。\"],\n        [/Invite a member to/, \"邀请成员加入\"],\n        [/\\((\\d+) issues? needs? help\\)/, \"($1 个议题需要帮助)\"],\n        [/([^ ]+)’s past year of commit activity/, \"近几年 $1 的提交活动\"],\n        // 用户 - 浮动信息卡\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n        [/, and (\\d+) more/, \" 等 $1 个组织\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#type-options > summary > span:nth-child(1)\", \"类型\"], // 组织主页 --> 仓库标签页-->类型筛选器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Choose a plan\": \"选择一个计划\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"orgs/repositories\"] = I18N[\"zh-CN\"][\"page-profile/repositories\"];\n\nI18N[\"zh-CN\"][\"orgs/projects\"] = I18N[\"zh-CN\"][\"page-profile/projects\"];\n\nI18N[\"zh-CN\"][\"orgs/packages\"] = I18N[\"zh-CN\"][\"page-profile/packages\"];\n\nI18N[\"zh-CN\"][\"orgs/people\"] = { // 组织 - 成员标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 成员标签页 https://github.com/orgs/<orgs-name>/people\n            // 左侧栏\n            \"Organization permissions\": \"组织权限\",\n            \"Members\": \"成员\",\n            \"Outside collaborators\": \"外部协作者\",\n            \"Pending collaborators\": \"待定协作者\",\n            \"Invitations\": \"邀请\",\n            \"Failed invitations\": \"失败邀请\",\n            \"Security Managers\": \"安全管理员\",\n\n            \"Find a member…\": \"搜索成员…\",\n\n            \"Export\": \"导出\",\n            \"Invite member\": \"邀请成员\",\n\n            \"You are the only owner of this organization! We recommend a minimum of two people within each organization have the owner role.\": \"您是该组织的唯一所有者！我们建议每个组织内至少有两人担任所有者角色。\",\n            \"Dismiss\": \"忽略\",\n\n            \"Filter by two-factor authentication\": \"按双因素身份验证筛选\",\n            \"Everyone\": \"所有人\",\n            \"Enabled\": \"启用\",\n            \"Disabled\": \"禁用\",\n            \"Required\": \"必须\",\n\n            \"Membership\": \"成员\",\n            \"Filter by membership\": \"按成员筛选\",\n            \"Owners\": \"所有者\",\n            \"Member\": \"成员\",\n\n            \"Organization visibility\": \"组织可见性\",\n            \"Your membership is visible to everyone and is displayed on your public profile.\": \"您的成员资格对所有人都是可见的，并显示在您的个人资料上。\",\n            \"Your membership is only visible to other members of this organization.\": \"您的成员资格只对本组织的其他成员可见。\",\n\n            \"Owner\": \"所有者\",\n            \"Owners have full access to teams, settings, and repositories.\": \"所有者拥有对团队、设置和仓库的完全访问权限。\",\n            // [/(\\d+) teams?/, \"$1 团队\"],\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n            \"Member settings\": \"成员设置\",\n            \"Manage\": \"管理\",\n            \"Change role…\": \"切换角色…\",\n            \"Convert to outside collaborator…\": \"转为外部协作者…\",\n            \"Remove from organization…\": \"从组织移除…\",\n\n            \"This organization has no public members.\": \"该组织没有公开的成员。\",\n\n            // 邀请对话框\n                // [/Invite a member to/, \"邀请成员加入\"],\n                \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Invite\": \"邀请\",\n                \"Invite a billing manager\": \"邀请一位账单管理员\",\n                \"Authenticate members with\": \"对成员进行身份验证，使用\",\n                \"SAML single sign-on\": \"SAML 单点登录\",\n                \"Try it in a 30-day trial of GitHub Enterprise.\": \"尝试试用 30 天 GitHub 企业版\",\n                \"Start a free trial\": \"开始免费试用\",\n\n            // 转换为外部协作者 对话框\n                // [/Convert ([^ ]+) to outside collaborator?/, \"将 $1 转换为外部协作者？\"],\n                \"Converting members to outside collaborators will remove them from this organization and from all teams, and if they do not currently have access to any private repositories in the organization their seat will be reclaimed.\": \"将成员转换为外部协作者会将把他们从本组织和所有团队中移除，如果他们目前无法访问组织中的任何私有仓库，他们的席位将被收回。\",\n                \"Their repository access will be preserved by making them collaborators on all repositories that their teams gave them access to. They will retain access to repositories that they were previously collaborators on, but all other access to this organization’s repositories will be lost.\": \"通过使他们成为其团队授予他们访问权限的所有仓库的协作者，他们的仓库访问权限将得到保留。他们将保留对之前作为协作者的仓库的访问权限，但对该组织仓库的所有其他访问权限都将丢失。\",\n                \"Convert to outside collaborator\": \"转换为外部协作者\",\n\n                //顶部提示\n                    \"You can't remove yourself from the organization. Have another admin do this for you.\": \"您无法将自己从组织中删除。请让其他管理员代劳。\",\n            // 移除成员 对话框\n                // [/Removing (\\d+) members? from/, \"移除 $1 名成员，从\"],\n                \"The following members will be removed:\": \"以下成员将被移除：\",\n                \"Remove members\": \"移除成员\",\n\n                // 顶部提醒\n                    \"You can't remove the last owner of this organization.\": \"您无法移除该组织的最后一位所有者。\",\n            // 顶部提醒\n                \"You publicized 1 membership.\": \"您公开了 1 名成员资格\",\n                \"You concealed 1 membership.\": \"您隐藏了 1 名成员资格\",\n\n        // 成员管理 https://github.com/orgs/<orgs-name>/people/<user-name>\n\n        // 成员权限详情 /orgs/<orgs-name>/people/<user-name>/repositories/<orgs-name>/<repo-name>\n\n        // 外部协作者 https://github.com/orgs/<orgs-name>/outside-collaborators\n            \"Find a collaborator…\": \"寻找协作者…\",\n            \"Select all\": \"全选\",\n            \"No one outside of the organization has access to its repositories.\": \"组织外部的任何人都无法访问其仓库。\",\n\n        // 待定协作者 https://github.com/orgs/<orgs-name>/pending_collaborators\n            \"Find a pending collaborator…\": \"搜索待定协作者…\",\n            \"There aren't any pending collaborators.\": \"暂无任何待定的协作者\",\n\n        // 待定邀请 https://github.com/orgs/<orgs-name>/people/pending_invitations\n            // 顶部提醒\n                // [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀请 $1 加入到 $2 ！他们很快就会收到一封电子邮件。他们还可以访问 $3 接受邀请。\"],\n                // [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀请。\"],\n                // [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已经取消了来自 $2 的 $1 个邀请。可能需要几分钟处理。\"],\n\n            \"Find an invitation…\": \"搜索邀请…\",\n\n            \"Role\": \"角色\",\n\n            \"Source\": \"来源\",\n            \"Filter by invitation source\": \"按邀请来源筛选\",\n            \"All sources\": \"所有来源\",\n\n            // [/(\\d+) invitations?/, \"邀请\"],\n\n            \"Sort\": \"排序\",\n            \"Sort Order\": \"排序方式\",\n            \"Order\": \"方式\",\n            \"Newest\": \"最新的\",\n            \"Oldest\": \"最早的\",\n\n            \"No matching invitations.\": \"暂无匹配的邀请。\",\n\n            \"Edit invitation\": \"编辑邀请\",\n            \"Cancel invitation\": \"取消邀请\",\n                // [/Cancel invitation from ([^ ]+)/, \"取消来自 $1 的邀请\"],\n                \"The following invitations will be canceled:\": \"以下邀请将被取消：\",\n\n        // 失败邀请 https://github.com/orgs/<orgs-name>/people/failed_invitations\n            // [/(\\d+) Failed invitations?/, \"个失败邀请\"],\n            \"No failed invitations.\": \"暂无失败邀请。\",\n\n        // 安全管理 https://github.com/orgs/<orgs-name>/people/security_managers\n            \"Find a security manager…\": \"搜索安全管理员…\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) teams?/, \"$1 团队\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) Failed invitations?/, \"$1 失败邀请\"],\n        [/Invite a member to/, \"邀请成员加入\"],\n        [/Convert ([^ ]+) to outside collaborator?/, \"将 $1 转换为外部协作者？\"],\n        [/Removing (\\d+) members? from/, \"移除 $1 名成员，从\"],\n        [/(\\d+) pe(?:ople|rson) in the ([^ ]+) organization/, \"$2 组织中的 $1 位成员\"],\n        [/(\\d+) security managers? in the ([^ ]+) organization/, \"$2 组织中的 $1 位安全管理员\"],\n        [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀请 $1 加入到 $2 ！他们很快就会收到一封电子邮件。他们还可以访问 $3 接受邀请。\"],\n        [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀请。\"],\n        [/Cancel invitation from ([^ ]+)/, \"取消来自 $1 的邀请\"],\n        [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已经取消了来自 $2 的 $1 个邀请。可能需要几分钟处理。\"],\n        [/(\\d+) invitations?/, \"$1 邀请\"],\n        [/Invited on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `邀请于${translatedDate}`;\n        }],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n   ],\n    \"title\": {\n        \"regexp\": [\n            [/Members · People/, \"成员 · 人\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/outside-collaborators\"] = I18N[\"zh-CN\"][\"orgs/people\"];\nI18N[\"zh-CN\"][\"orgs/pending_collaborators\"] = I18N[\"zh-CN\"][\"orgs/people\"];\n\n\nI18N[\"zh-CN\"][\"orgs/teams\"] = { // 组织 - 团队标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n        \"Organization roles\": \"组织角色\",\n\n        // 团队标签卡 https://github.com/orgs/<orgs-name>/teams\n            \"Seamless communication with teams\": \"与团队的无缝沟通\",\n            \"Teams are a great way for groups of people to communicate and work on code together. Take a look at why they’re great.\": \"团队是一群人在一起交流和编写代码的好方法。看看为什么他们很棒。\",\n            \"Flexible repository access\": \"灵活的仓库访问\",\n                \"You can add repositories to your teams with more flexible levels of access (Admin, Write, Read).\": \"您可以将仓库添加到您的团队中，并有更灵活的访问级别（管理员、写入、读取）。\",\n            \"Request to join teams\": \"申请加入团队\",\n                \"Members can quickly request to join any team. An owner or team maintainer can approve the request.\": \"成员可以快速申请加入任何团队。一个所有者或团队维护者可以批准该请求。\",\n            \"Team mentions\": \"团队提及\",\n                \"Use team @mentions (ex.\": \"使用团队 @提及（例如\",\n                \"for the entire team) in any comment, issue, or pull request.\": \"对于整个团队）在任何评论、议题或拉取请求中。\",\n                \"New team\": \"新建团队\",\n\n            \"Find a team…\": \"搜索团队……\",\n\n            \"Select all\": \"全选\",\n            \"Visibility\": \"可见性\",\n                \"All\": \"所有\",\n            \"Members\": \"成员\",\n            \"Team members\": \"团队成员\",\n                \"My teams\": \"我的团队\",\n                \"No members\": \"没有成员\",\n\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n        // 子团队 https://github.com/orgs/<orgs-name>/teams/team\n            // 申请提示\n                \"Membership requested. We’ll let you know once an administrator has reviewed your request.\": \"成员资格已申请。一旦管理员审核了您的请求，我们将通知您。\",\n                \"Okay, we’ve cancelled your request to join this team.\": \"好的，已取消加入此团队申请。\",\n\n            \"Find a member…\": \"查找成员…\",\n            \"Add a member\": \"添加成员\",\n\n            \"Request to join\": \"请求加入\",\n                \"Requires approval from an owner or team maintainer\": \"需要所有者或团队维护者批准\",\n            \"Cancel pending request\": \"取消请求\",\n                \"Your request to join this team is pending review\": \"您的请求待审查\",\n\n            \"This team doesn’t have any child team members.\": \"此团队没有子团队成员。\",\n\n            \"Filter by role\": \"筛选角色\",\n                \"Maintainer\": \"维护者\",\n                \"Member\": \"成员\",\n\n        // 子团队成员 https://github.com/orgs/<orgs-name>/teams/team/members\n            \"Invite\": \"邀请\",\n                \"Search by username, full name, or email address\": \"搜索用户名，全名或邮件\",\n\n            \"Invitations\": \"邀请\",\n            \"Requests\": \"请求\",\n                \"Approve\": \"批准\",\n                \"Deny\": \"拒绝\",\n\n        // 创建团队 /orgs/<org-login>/new-team\n            \"Create new team\": \"新建团队\",\n            \"Team name\": \"团队名称\",\n            \"You’ll use this name to mention this team in conversations.\": \"您将使用此名称在对话中提及此团队。\",\n            \"Description\": \"描述\",\n            \"What is this team all about?\": \"这个团队是什么？\",\n            \"Parent team\": \"父团队\",\n                \"There are no teams that can be selected.\": \"没有可以选择的团队。\",\n                \"Select parent team\": \"选择父团队\",\n                \"Search teams\": \"搜索团队\",\n                \"Clear selected value\": \"清除\",\n            \"Team visibility\": \"团队可见性\",\n                \"Visible\": \"可见\",\n                    \"Recommended\": \"推荐\",\n                    \"A visible team can be seen and\": \"可见的团队可以被看到并\",\n                    \"@mentioned\": \"@提及\",\n                    \"by every member of this organization.\": \"本组织的每一位成员。\",\n                \"Secret\": \"私密\",\n                    \"A secret team can only be seen by its members and may not be nested.\": \"私密团队只能被其成员看到，而且不能被嵌套。\",\n                \"Team notifications\": \"团队通知\",\n                    \"Enabled\": \"启用\",\n                        \"Everyone will be notified when the team is @mentioned.\": \"当团队被 @提及 时，每个人都会收到通知。\",\n                    \"Disabled\": \"禁用\",\n                        \"No one will receive notifications.\": \"没有人会收到通知。\",\n            \"Create team\": \"创建团队\",\n\n        // 团队设置 - 通常 https://github.com/orgs/<orgs-name>/teams/team/edit\n            \"General\": \"通常\",\n            \"Code review\": \"代码审查\",\n            \"Scheduled reminders\": \"定时提醒\",\n\n            \"Team settings\": \"团队设置：\",\n            \"Changing the team name will break past @mentions.\": \"更改团队名称会破坏过去的 @提及。\",\n            \"Profile picture\": \"团队头像\",\n            \"Upload new picture\": \"上传新头像\",\n            \"You may also drag and drop an image from your computer. The image must be less than 1MB.\": \"您也可以从电脑中拖放图片。图片必须小于 1MB。\",\n\n            \"Danger zone\": \"危险区\",\n                \"Delete this team\": \"删除团队\",\n                \"Once deleted, it will be gone forever. Please be certain.\": \"一旦删除，将永远消失。请确定\",\n\n                // 删除对话框\n                    \"Are you sure you want to delete this team?\": \"您确定要删除该团队吗？\",\n                        \"Once deleted, it will be gone forever.\": \"一旦删除，它将永远消失。\",\n                        \"I understand, delete this team\": \"我明白了，依然删除该团队\",\n\n        // 团队设置 - 代码审查 https://github.com/orgs/<orgs-name>/teams/team/edit/review_assignment\n            \"Only notify requested team members\": \"仅通知被请求的团队成员\",\n                \"If both a team and one or more of its members are requested for review, don't notify the entire team.\": \"不通知整个团队，仅通知被请求的团队成员\",\n            \"Enable auto assignment\": \"启用自动分配\",\n                \"This will automatically route this team's code review requests to individual team members.\": \"自动将代码审查请求转发给单个团队成员。\",\n                \"Note: this won't assign members who have committed to the pull request or have set their status to Busy.\": \"注意：这不会将已提交的拉取请求或已将状态设置为 “忙碌 ”的成员分配给他们。\",\n                    \"How many team members should be assigned to review?\": \"应指派多少名团队成员进行审查？\",\n                    \"Routing algorithm\": \"旁路算法\",\n                        \"Round robin\": \"循环\",\n                        \"Alternate reviews between each team member\": \"每位团队成员交替审核\",\n                        \"Load balance\": \"负载平衡\",\n                        \"Balance review load across the entire team\": \"平衡整个团队的审核负载\",\n                        \"Never assign certain team members\": \"绝不指派某些团队成员\",\n                            \"Select team members\": \"选择团队成员\",\n                    \"Child team members\": \"子团队成员\",\n                        \"Include the members of any child teams when assigning requests.\": \"在分配申请时，包括任何子团队的成员。\",\n                    \"Count existing requests\": \"计算现有请求\",\n                        \"Count any members whose review has already been requested against the total number of members to assign.\": \"在要分配的成员总数中计算任何已提出审核请求的成员。\",\n                    \"Team review request\": \"团队审查请求\",\n                        \"When assigning team members, remove the review request for the team.\": \"分配团队成员时，删除团队的审核请求。\",\n\n        // 团队设置 - 定时提醒 https://github.com/orgs/<orgs-name>/teams/team/settings/reminders\n            \"No scheduled reminders created.\": \"未创建预定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"为了保持项目进展，您现在可以提醒您的团队关于他们需要审查的拉取请求。\",\n\n            \"Connect a Slack workspace to get started\": \"连接 Slack 工作区以开始使用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) members?/, \"$1 成员\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) teams? in the ([^ ]+) organization/, \"$2 组织中的 $1 个团队\"],\n        [/(\\d+) teams?/, \"$1 团队\"],\n        [/(\\d+) child team members?/, \"$1 子团队成员\"],\n        [/Add member to (.+)/, \"添加成员至 $1\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/new-team\"]= I18N[\"zh-CN\"][\"orgs/teams\"];\n\nI18N[\"zh-CN\"][\"orgs/invitations\"] = { // 组织 - 邀请页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 邀请 https://github.com/orgs/<orgs-name>/invitations/<user-name>/edit\n            // [/Invite ([^ ]+) to ([^ ]+)/, \"邀请 $1 加入 $2 组织\"],\n            \"Give them an appropriate role in the organization and add them to some teams to give access to repositories.\": \"在组织中赋予他们适当的角色，并将他们添加到一些团队中，以便让他们访问仓库。\",\n            \"Role in the organization\": \"在组织中的角色\",\n                \"Member\": \"成员\",\n                    \"Members can see all other members, and can be granted access to repositories. They can also create new teams and repositories.\": \"成员可以看到所有其他成员，并可被授予访问仓库的权限。他们还可以创建新团队和仓库。\",\n                \"Owner\": \"所有者\",\n                    \"Owners have full administrative rights to the organization and have complete access to all repositories and teams.\": \"所有者拥有组织的全部管理权限，可以完全访问所有仓库和团队。\",\n            \"Send invitation\": \"发送邀请\",\n\n        // 编辑模式\n            // [/Edit ([^ ]+)’s invitation to ([^ ]+)/, \"编辑 $2 对 $1 的邀请\"],\n            \"Originally invited by\": \"最初由\",\n            // [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀请。作为所有者，您可以赋予 $1 不同的角色，并为他们挑选不同的团队。\"],\n            \"Cancel invitation\": \"取消邀请\",\n            \"Update invitation\": \"更新邀请\",\n\n        // 已通过邀请\n            // [/Invite a member to ([^ ]+)/, \"邀请会员加入 $1\"],\n            \"Sorry,\": \"抱歉!\",\n            // [/is already a member of ([^ ]+)./, \"已经是 $1 的成员。\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Invite ([^ ]+) to ([^ ]+)/, \"邀请 $1 加入 $2\"],\n        [/invitation to ([^ ]+)/, \"关于组织 $1 的邀请\"],\n        [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀请。作为所有者，您可以赋予 $1 不同的角色，并为他们挑选不同的团队。\"],\n        [/Invite a member to ([^ ]+)/, \"邀请会员加入 $1\"],\n        [/is already a member of ([^ ]+)./, \"已经是 $1 的成员。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/invitation\"] = { // 组织 - 接受邀请页面\n    \"static\": {\n\n        // 接受邀请 https://github.com/<orgs-name>/invitation\n            \"You’ve been invited to the\": \"您被邀请加入\",\n                \"organization!\": \"组织！\",\n\n            \"Invited by\": \"邀请者：\",\n\n            // [/Join ([^ ]+)/, \"加入 $1\"],\n            \"Decline\": \"拒绝\",\n\n            // [/of ([^ ]+) may be able to see:/, \"$1 将可以查看：\"],\n            // 组织权限\n                \"If you have\": \"您的\",\n                    \"two-factor authentication\": \"双重身份验证（2FA）\",\n                    \"enabled or not\": \"是否启用\",\n                \"Your public profile information\": \"您的公开信息\",\n                \"Certain activity\": \"某些活动\",\n                    \"within this organization\": \"在该组织内\",\n                \"Country of request origin\": \"请求来源国家/地区\",\n                \"Your access level to repositories within the organization\": \"您对组织内仓库的访问级别\",\n                \"Your IP address\": \"您的 IP 地址\",\n\n            \"Opt out\": \"拒绝\",\n                \"of future invitations from this organization.\": \"该组织未来的邀请。\",\n            \"of future invitations from this organization.\": \"该组织未来的邀请。\",\n\n    },\n    \"regexp\": [\n        [/Join ([^ ]+)/, \"加入 $1\"],\n        [/of ([^ ]+) may be able to see:/, \"$1 将可以查看：\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/domain/new\"] = { // 组织 - 添加域名\n    \"static\": { // 静态翻译\n        \"Verified & approved domains\": \"经验证和批准的域名\",\n        \"Add a domain\": \"添加域名\",\n        \"What domain would you like to add?\": \"您想添加什么域名？\",\n        \"Add domain\": \"添加域名\",\n        \"Domain name has already been added\": \"域名已添加\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/profile\"] = { // 组织设置 - 组织资料\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 顶部提示\n            \"Thanks for updating your Developer Program contact information!\": \"感谢您更新开发者联系信息！\",\n\n        // 组织资料 /organizations/<org-login>/settings/profile\n            \"Most organization settings are hidden for an archived organization. This organization must be unarchived to change them.\": \"对于已存档的组织，组织大多数设置都是隐藏的。必须取消对该组织的归档才能更改它们。\",\n\n            \"Organization profile\": \"基本资料\",\n                \"Profile picture\": \"我的头像\",\n                    \"Upload new picture\": \"上传新头像\",\n                    \"Note: To apply for a publisher verification your organization's profile picture should not be irrelevant, abusive or vulgar. It should not be a default image provided by GitHub.\": \"注意：需要申请发布者验证，您的组织的个人资料图片不应该是不相关的、辱骂性的或粗俗的。它不应该是由 GitHub 提供的默认图片。\",\n                \"Organization display name\": \"组织显示名称\",\n                \"Email (will be public)\": \"公开电子邮箱\",\n                \"Description\": \"描述\",\n                \"URL\": \"网站\",\n                \"Social accounts\": \"社交账户\",\n                \"Link to social profile\": \"链接到社交账户\",\n                \"Location\": \"位置\",\n                    \"Select a location\": \"选择位置\",\n                    \"Find a location...\": \"搜索位置…\",\n                    \"Clear Location\": \"清除位置\",\n                \"Billing email\": \"账单电子邮箱\",\n                \"(Private)\": \"（私人）\",\n                    \"Add more billing email recipients in the\": \"添加更多的账单邮件收件人在\",\n                    \"billing page\": \"账单页面\",\n                \"Gravatar email\": \"Gravatar 电子邮箱\",\n                \"Sponsors update email\": \"赞助者更新电子邮箱\",\n                    \"The developers and organizations that your organization sponsors can send you updates to this email.\": \"您的组织赞助的开发人员和组织可以向您发送此电子邮箱的更新。\",\n                \"Update profile\": \"更新资料\",\n                \"Profile updated successfully\": \"资料更新成功。\",\n\n            \"Link Patreon account\": \"关联 Patreon 账户\",\n                \"Connect a Patreon account for\": \"关联\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 账户，以便赞助维护者。当被赞助者也关联 Patreon 和 GitHub 账户时，在 Patreon 上获得的赞助也会显示在 GitHub 上，并显示 GitHub 赞助者的公开个人资料。\",\n                \"Connect with Patreon\": \"关联 Patreon 账户\",\n\n            \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"Building an application, service, or tool that integrates with GitHub?\": \"构建应用、服务或工具，集成到 GitHub 吗？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 开发者计划\",\n                \", or read more about it at our\": \"，或了解更多信息在我们的\",\n                \"GitHub developer program\": \"GitHub 开发者计划\",\n                \"Check out the Developer site\": \"查看开发者站点，\",\n                \"for guides, our API reference, and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"以获取指南、我们的 API 参考和其他用于构建与 GitHub 集成的应用的资源。请确保您的联系信息是最新的。感谢您成为我们的成员！\",\n\n            \"Terms of Service\": \"服务条款\",\n                \"Standard\": \"标准\",\n                    \"Best for individuals wanting the freedom to move data and remain independent of a corporation.\": \"最适合希望自由移动数据并保持独立于公司的个人。\",\n                    \"Read the Standard Terms of Service\": \"阅读 “标准服务条款”\",\n                \"Corporate\": \"企业\",\n                    \"Best for businesses that need to protect their intellectual property and secure visibility into their data.\": \"最适合需要保护知识产权并确保数据可见性的企业。\",\n                    \"Read the GitHub customer agreement\": \"请阅读 GitHub 用户协议\",\n                    \"Sign GitHub customer terms\": \"签署 GitHub 用户条款\",\n\n            \"Danger zone\": \"危险区\",\n                \"Rename organization\": \"重命名组织\",\n                    \"Renaming your organization can have\": \"重命名您的组织可能会有\",\n                    \"unintended side effects\": \"意想不到的副作用\",\n                    \"This organization cannot be renamed because it is archived.\": \"该组织无法重命名，因为它已存档。\",\n                \"Really rename your organization?\": \"确定要重命名您的组织？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                \"We\": \"我们\",\n                \"will not\": \"不会\",\n                \"will\": \"会\",\n                \"create redirects for your repositories (web and git access).\": \"为您的仓库设置重定向（ web 和 git 访问）。\",\n                \"You will need to update your local repositories to point to the new location.\": \"您将需要更新您的本地仓库，以指向新的位置。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要几分钟的时间来完成。\",\n                \"I understand, let’s rename my organization\": \"我明白了，依然重命名我的组织\",\n\n                \"Rename your organization\": \"重命名组织\",\n                \"Change organization’s name\": \"更改组织名\",\n                // 顶部提醒\n                    \"Organization name may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen\": \"组织名称只能包含字母数字字符或单连字符，不能以连字符开始或结束。\",\n                    \"Organization name is not available\": \"组织名称不可用\",\n\n                \"Archive this organization\": \"存档组织\",\n                    \"Mark this organization and all its repositories as archived and read-only.\": \"将此组织及其所有仓库标记为已存档和只读。\",\n                    \"Please provide\": \"请提供\",\n                    \"feedback\": \"反馈\",\n                    \"on this feature.\": \"关于此功能。\",\n\n                    \"Archive organization\": \"存档组织\",\n                        \"This organization will be archived.\": \"该组织将被存档。\",\n                        \"Modifying settings will be limited and creating new repositories will be blocked.\": \"修改设置将受到限制，并且创建新仓库将被阻止。\",\n\n                        \"All repositories will be\": \"所有仓库都将被\",\n                        \"archived\": \"存档\",\n                        \"and be read-only.\": \"并设为只读。\",\n                        \"Before you archive, please consider:\": \"在存档之前，请考虑：\",\n                            \"Updating any organization settings\": \"更新任何组织设置\",\n                            \"Making a note in your\": \"请标记在您的\",\n                            \"organization README\": \"组织 README\",\n                        \"Please type\": \"请输入\",\n                        \"to confirm.\": \"进行确定。\",\n                        \"I understand the consequences, archive this organization\": \"我明白后果，依然存档该组织\",\n\n                        // 顶部提醒\n                        // [/Your organization ([^ ]+) is being archived./, \"您的组织 $1 已归档。\"],\n\n                \"Unarchive this organization\": \"解锁存档组织\",\n                    \"Mark this organization as unarchived and read-write.\": \"将此组织标记为未存档且可读写。\",\n\n                    \"Unarchive organization\": \"解除组织存档\",\n                    \"This organization will be unarchived.\": \"该组织将解除存档。\",\n                    \"Modifying settings will be possible and creating new repositories will be unblocked.\": \"可以修改设置，创建新仓库也将不再受限。\",\n\n                    \"Repositories will be remain\": \"仓库将保持\",\n                    \"and need to be unarchived separately.\": \"，并需要单独解除存档。\",\n                    \"I understand the consequences, unarchive this organization\": \"我明白后果，依然解除该组织存档\",\n\n                        // 顶部提醒\n                        // [/Your organization ([^ ]+) has been unarchived./, \"您的组织 $1 已解除归档。\"],\n\n                \"Delete this organization\": \"删除组织\",\n                    \"Once deleted, it will be gone forever. Please be certain.\": \"您一旦删除，将再也无法恢复。请确认！\",\n\n                   \"Are you sure you want to delete this?\": \"您确定要删除吗？\",\n                   \"Deleting the\": \"删除\",\n                   \"organization will delete all of its repositories. The\": \"组织，将会删除其所有仓库。\",\n                   \"username will be unavailable for 90 days.\": \"用户名将在 90 天内不可用。\",\n                   \"Before proceeding, please be sure to review the\": \"在继续之前，请务必查看\",\n                   \"regarding account deletion.\": \"关于账户删除。\",\n                   \"Enter this organization’s name to confirm\": \"请输入组织的名称，进行确认\",\n                   \"Cancel plan and delete the organization\": \"取消计划并删除此组织\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Your organization ([^ ]+) is being archived./, \"您的组织 $1 已归档。\"],\n        [/Your organization ([^ ]+) has been unarchived./, \"您的组织 $1 已解除归档。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/policies/repositories\"] = { // 组织设置 - 策略 - 仓库策略\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库策略 /organizations/<org-login>/policies/repositories\n            \"Repository policies\": \"仓库策略\",\n            \"You haven't created any policies\": \"您尚未创建任何策略\",\n            \"Define whether members can perform operations on repositories such as delete and transfer.\": \"定义成员是否可以对仓库执行删除和转移等操作。\",\n            \"Learn more about rulesets.\": \"了解更多关于规则集的信息\",\n            \"Organization rulesets won't be enforced\": \"组织规则集将不会被强制执行\",\n            \"until you upgrade this organization account to GitHub Team.\": \"直到您将此组织账户升级至 GitHub 团体版。\",\n            \"New policy\": \"新建策略\",\n    }\n}\n\nI18N[\"zh-CN\"][\"orgs/settings/roles\"] = { // 组织设置 - 仓库角色\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库角色 /organizations/<org-login>/settings/roles\n            // \"Roles are used to grant access and permissions for teams and members. In addition to the available pre-defined roles, you can create up to 0 custom roles to fit your needs.\": \"角色是用来为团队和成员授予访问和权限的。除了可用的预定义角色外，您可以创建多达 0 个自定义角色以满足您的需求。\",\n            //     \"Learn more about custom repository roles\": \"了解更多关于自定义仓库角色的信息\",\n            \"Roles are used to grant access and permissions for teams and members.\": \"角色是用来为团队和成员授予访问和权限的。\",\n            \"Pre-defined roles\": \"预定义角色\",\n                \"You can\": \"您可\",\n                \"set the base role\": \"设置基础角色\",\n                \"for this organization from one of these roles.\": \"从该组织的这些角色中设置\",\n                    \"Read\": \"只读\",\n                        \"Read and clone repositories. Open and comment on issues and pull requests.\": \"读取和克隆仓库。打开并评论问题和拉取请求。\",\n                    \"Triage\": \"分级\",\n                        \"Read permissions plus manage issues and pull requests.\": \"读取权限外加管理议题和拉取请求的权限。\",\n                    \"Write\": \"可写\",\n                        \"Triage permissions plus read, clone and push to repositories.\": \"分级权限外加读取、克隆和推送到仓库。\",\n                    \"Maintain\": \"维护\",\n                        \"Write permissions plus manage issues, pull requests and some repository settings.\": \"可写权限外加管理议题、拉取请求和一些仓库设置。\",\n                    \"Admin\": \"管理员\",\n                        \"Full access to repositories including sensitive and destructive actions.\": \"对仓库的完全访问权限，包括敏感和破坏性操作。\",\n                        \"Modify Admin Role\": \"修改管理角色\",\n\n            \"Custom roles\": \"自定义角色\",\n                \"Create a role\": \"创建角色\",\n                \"Create custom roles with GitHub Enterprise\": \"使用 GitHub 企业版创建自定义角色\",\n                    \"Enterprise accounts offer organizations more granular control over permissions by allowing you to configure up to five custom repository roles. This enables greater control over who and how your users access code and data in your organization.\": \"企业账户允许配置最多五个自定义仓库角色，从而为企业提供更细粒度的权限控制。这样就能更好地控制组织内用户访问代码和数据。\",\n                \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/member_privileges\"] = { // 组织设置 - 成员权限\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 成员权限 /organizations/<org-login>/settings/member_privileges\n            \"Member repository permissions\": \"成员仓库权限\",\n                \"Base permissions\": \"基本权限\",\n                    \"Base permissions to the organization’s repositories apply to all members and excludes outside collaborators. Since organization members can have permissions from multiple sources, members and collaborators who have been granted a higher level of access than the base permissions will retain their higher permission privileges.\": \"组织仓库的基本权限适用于所有成员，不包括外部协作者。由于组织成员可以拥有多个来源的权限，已经被授予比基本权限更高的访问级别的成员和协作者将保留他们更高的权限。\",\n\n                    \"Organization member permissions\": \"组织成员的权限\",\n                        \"No permission\": \"无权限\",\n                            \"Members will only be able to clone and pull public repositories. To give a member additional access, you’ll need to add them to teams or make them collaborators on individual repositories.\": \"成员只能克隆和拉取公共仓库。要为成员提供额外的访问权限，您需要将他们添加到团队中，或者让他们成为单个仓库的协作者。\",\n                            // 对话框\n                                \"Change base permission to \\\"No permission\\\"\": \"将基本权限更改为 “无权限”\",\n                                \"You are about to change the base repository permission for this organization.\": \"您即将更改此组织仓库的基本权限。\",\n                                // [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"这可能会更改组织的 $1 个成员对其 $2 个仓库的权限。\"],\n                        \"Read\": \"只读\",\n                            \"Members will be able to clone and pull all repositories.\": \"成员将能够克隆和拉取所有仓库。\",\n                            // 对话框\n                                \"Change base permission to \\\"Read\\\"\": \"将基本权限更改为 “只读”\",\n                        \"Write\": \"可写\",\n                            \"Members will be able to clone, pull, and push all repositories.\": \"成员将能够克隆、拉取和推送所有仓库。\",\n                            // 对话框\n                                \"Change base permission to \\\"Write\\\"\": \"将基本权限更改为 “可写”\",\n                        \"Admin\": \"管理员\",\n                            \"Members will be able to clone, pull, push, and add new collaborators to all repositories.\": \"成员将能够克隆、拉取、推送和向所有仓库添加新的协作者。\",\n                            // 对话框\n                                \"Change base permission to \\\"Admin\\\"\": \"将基本权限更改为 “管理员”\",\n                        // 顶部提醒\n                            \"Base repository permission removed.\": \"基本仓库权限已被删除。\",\n                            \"Base repository permission updated to \\\"Read\\\".\": \"基本仓库权限已更新为 “只读” 。\",\n                            \"Base repository permission updated to \\\"Write\\\".\": \"基本仓库权限已更新为 “可写” 。\",\n                            \"Base repository permission updated to \\\"Admin\\\".\": \"基本仓库权限已更新为 “管理员” 。\",\n                        \"Update in progress\": \"正在更新中\",\n                        \". Refresh to see if it’s done.\": \"。刷新看看是否完成。\",\n\n                \"Repository creation\": \"仓库创建\",\n                    \"Members will be able to create only selected repository types. Outside collaborators can never create repositories.\": \"成员将只能创建选定类型的仓库。外部协作者永远不能创建仓库。\",\n                    \"Public\": \"公共\",\n                        \"Members will be able to create public repositories, visible to anyone.\": \"成员将能够创建任何人都可见的公共仓库。\",\n                        \"Why is this option disabled?\": \"为什么该选项被禁用？\",\n                    \"Private\": \"私有\",\n                        \"Members will be able to create private repositories, visible to organization members with permission.\": \"成员将能够创建私有仓库，对有权限的组织成员可见。\",\n                    // 顶部提醒\n                        \"Members can no longer create public or private repositories.\": \"成员不能再创建公共或私有仓库。\",\n                        \"Members can now create public repositories.\": \"成员现在可以创建公共仓库。\",\n                        \"Members can now create public and private repositories.\": \"成员现在可以创建公共和私有仓库。\",\n\n                \"Repository forking\": \"仓库复刻\",\n                    \"Allow forking of private repositories\": \"允许复刻私有仓库\",\n                        \"If enabled, forking is allowed on private and public repositories. If disabled, forking is only allowed on public repositories. This setting is also configurable per-repository.\": \"如果启用，则私有和公共仓库都允许复刻。如果禁用，则只允许复刻公共仓库。此设置也可以在每个仓库中进行配置。\",\n                    // 顶部提醒\n                        \"Repository forking setting updated!\": \"仓库复刻设置已经更新！\",\n                        \"Repository forking setting not updated. Please try again.\": \"仓库复刻设置不能更新。请重试。\",\n\n                \"Repository discussions\": \"仓库讨论\",\n                    \"Allow users with read access to create discussions\": \"允许具有读取权限的用户创建讨论\",\n                        // [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果启用，所有具有读取权限的用户都可以在 $1 的仓库中创建和评论讨论。\"],\n                        \"If disabled, discussion creation is limited to users with at least triage permission. Users with read access can still comment on discussions.\": \"如果禁用，讨论的创建仅限于至少具有分级权限的用户。具有读取权限的用户仍然可以对讨论发表评论。\",\n                    // 顶部提醒\n                        \"Users with read access to repositories can create new discussions.\": \"对仓库具有读取权限的用户可以创建新的讨论。\",\n                        \"Only users with at least triage access to repositories can create new discussions.\": \"只有至少对仓库有分级权限的用户才能创建新的讨论。\",\n\n                \"Projects base permissions\": \"项目基本权限\",\n                    \"Projects created by members will default to the elected role below.\": \"成员创建的项目将默认为下面选定的角色。\",\n\n                    \"No access\": \"无法访问\",\n                        \"Members will only be able to see projects that are made public. To give an organization member additional access, they can be added as part of a team or as a collaborator.\": \"成员只能看到公开项目。要赋予组织成员更多访问权限，可以将其添加为团队成员或协作者。\",\n                        // 对话框\n                            \"Change base permissions to \\\"No access\\\"\": \"将基本权限改为 “无法访问”\",\n                                \"You are about to change the base projects permission for this organization.\": \"您将更改该组织的基本项目权限\",\n                                \"This won't affect any existing projects.\": \"这不会影响任何现有项目\",\n                    // 只读\n                        \"Members can see projects.\": \"成员可以查看项目\",\n                        // 对话框\n                            \"Change base permissions to \\\"Read\\\"\": \"将基本权限改为 “只读”\",\n                    // 可写\n                        \"Members can see and make changes to projects.\": \"成员可以查看和修改项目\",\n                        // 对话框\n                            \"Change base permissions to \\\"Write\\\"\": \"将基本权限改为 “可写”\",\n                    // 管理员\n                        \"Members can see, make changes to, and add new collaborators to projects.\": \"成员可以查看和修改项目，并可为项目添加新的协助者。\",\n                        // 对话框\n                            \"You are about to change the base projects permission for this organization.\": \"您将更改该组织的基本项目权限\",\n                    // 顶部提醒\n                        \"Base permission updated to \\\"None\\\" for projects.\": \"项目的基本权限已更新为 “无”。\",\n                        \"Base permission updated to \\\"Read\\\" for projects.\": \"项目的基本权限已更新为 “只读”。\",\n                        \"Base permission updated to \\\"Write\\\" for projects.\": \"项目的基本权限已更新为 “可写”。\",\n                        \"Base permission updated to \\\"Admin\\\" for projects.\": \"项目的基本权限已更新为 “管理员”。\",\n\n                \"Pages creation\": \"页面创建\",\n                    \"Members will be able to publish sites with only the selected access controls.\": \"成员将能够发布仅只有选定的访问控制的站点。\",\n                    // \"Public\": \"公共\",\n                        \"Members will be able to create public sites, visible to anyone.\": \"成员将能够创建任何人都可见的公共站点。\",\n                    // \"Private\": \"私有\",\n                        \"Members will be able to create private sites, visible to anyone with permission.\": \"成员将能够创建私有站点，对任何有权限的人可见。\",\n                    // 顶部提醒\n                        \"Projects settings updated for this organization.\": \"该组织的项目设置已经更新。\",\n\n                \"Integration access requests\": \"集成访问请求\",\n                    \"Allow integration requests from outside collaborators\": \"允许来自外部协作者的集成请求\",\n                        \"Outside collaborators will be able to request access for GitHub or OAuth apps to access this organization and its resources.\": \"外部协作者将能够为 GitHub 或 OAuth 应用申请访问该组织及其资源的权限。\",\n                        // 顶部提醒\n                            \"Outside collaborators can no longer request third party access.\": \"外部协作者无法再请求第三方访问。\",\n                            \"Outside collaborators can now request third party access.\": \"外部协作者现在可以请求第三方访问。\",\n\n                \"Admin repository permissions\": \"管理员仓库权限\",\n                    \"Repository visibility change\": \"仓库可见性更改\",\n                        \"Allow members to change repository visibilities for this organization\": \"允许成员更改此组织的仓库可见性\",\n                            \"If enabled, members with admin permissions for the repository will be able to change its visibility. If disabled, only organization owners can change repository visibilities.\": \"如果启用，对仓库有管理权限的成员将能够更改其可见性。如果禁用，只有组织所有者可以更改仓库的可见性。\",\n                        // 顶部提醒\n                            \"Members can now change repository visibility.\": \"成员现在可以更改仓库可见性。\",\n                            \"Members can no longer change repository visibility.\": \"成员不能再更改仓库可见性。\",\n\n                    \"Repository deletion and transfer\": \"仓库的删除和转让\",\n                        \"Allow members to delete or transfer repositories for this organization\": \"允许成员删除或转让此组织的仓库\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete or transfer\": \"如果启用，对仓库有管理权限的成员将能够删除或转让\",\n                            \"public\": \"公共\",\n                            \"private\": \"私有\",\n                            \"repositories. If disabled, only organization owners can delete or transfer repositories.\": \"仓库。如果禁用，只有组织所有者可以删除或转让仓库。\",\n                        // 顶部提醒\n                            \"Members can now delete or transfer repositories.\": \"成员现在可以删除或转让仓库。\",\n                            \"Members can no longer delete or transfer repositories.\": \"成员不能再删除或转让仓库。\",\n\n                    \"Issue deletion\": \"议题删除\",\n                        \"Allow repository administrators to delete issues for this organization\": \"允许仓库管理员删除此组织的议题\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete issues. If disabled, only organization owners can delete issues.\": \"如果启用，对仓库有管理权限的成员将能够删除议题。如果禁用，只有组织所有者可以删除议题。\",\n                            \"Learn more about allowing people to delete issues in your organization\": \"了解更多关于允许成员删除组织内议题的信息\",\n\n                        // 顶部提醒\n                            \"Members can now delete issues.\": \"成员现在可以删除议题。\",\n                            \"Members can no longer delete issues.\": \"成员不能再删除议题。\",\n\n                \"Member team permissions\": \"成员团队权限\",\n                    \"Team creation rules\": \"团队创建规则\",\n                        \"Allow members to create teams\": \"允许成员创建团队\",\n                            \"If enabled, any member of the organization will be able to create new teams. If disabled, only organization owners can create new teams.\": \"如果启用，组织的任何成员将能够创建新的团队。如果禁用，只有组织所有者可以创建新的团队。\",\n                    // 顶部提醒\n                        \"Members can now create teams.\": \"成员现在可以创建团队。\",\n                        \"Members can no longer create teams.\": \"成员不能再创建团队。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"这可能会更改组织的 $1 个成员对其 $2 个仓库的权限。\"], // 组织 基本权限更改\n        [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果启用，所有具有读取权限的用户都可以在 $1 的仓库中创建和评论讨论。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/teams\"] = { // 组织设置 - 团队讨论\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 团队讨论 /organizations/<org-login>/settings/teams\n            \"Team discussions provide a place for a team to have conversations that span across projects or repositories and that don’t belong in an issue or a pull request.\": \"团队讨论为团队提供了一个进行跨项目或仓库，且不属于议题或拉取请求的对话的场所。\",\n            \"Enable team discussions for this organization\": \"为此组织启用团队讨论\",\n                \"This allows members to start discussions in any team in the\": \"这允许成员在任何团队中开始讨论，在\",\n            \"organization.\": \"组织中。\",\n\n            \"Looking for\": \"寻找\",\n            \"Organization Discussions\": \"组织讨论\",\n            \"? Go to\": \"？转到\",\n            \"Organization Discussions settings.\": \"组织讨论设置。\",\n\n            // 顶部提醒\n                \"Team discussions enabled for this organization.\": \"该组织启用了团队讨论。\",\n                \"Team discussions disabled for this organization.\": \"该组织禁用了团队讨论。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/import-export\"] = { // 组织设置 - 导入/导出\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Import/Export 导入/导出 - 占位账户 /organizations/<org-login>/settings/import-export\n            \"Mannequins\": \"占位账户\",\n            \"Search mannequins by login or email...\": \"通过登录名或电子邮箱地址搜索占位账户…\",\n            \"There are no mannequins in this organization\": \"该组织尚无占位账户\",\n            \"Mannequins represent authors of imported contributions. They do not have profile pages and cannot sign in. Their contributions can be reattributed to other members of your organization.\": \"占位账户代表导入贡献的作者。他们没有个人资料页，也不能登录。他们的贡献可以重新归属于您组织的其他成员。\",\n\n        // Import/Export 导入/导出 - 归属邀请 /organizations/<org-login>/settings/import-export/attribution-invitations\n            \"Attribution Invitations\": \"归属邀请\",\n            \"Below are the mannequin reattribution invitations that have been sent within this organization. If the state is \\\"invited,\\\" then the user has not yet replied; if it is \\\"completed,\\\" then the user has accepted and their contributions have been reattributed, and if it is \\\"rejected,\\\" then the user opted not to be credited for that mannequin's contributions.\": \"以下是该组织内已发送的占位账户重新归属的邀请。如果状态是 “已邀请”，则用户尚未回复；如果是 “已完成”，那么用户已经接受并且他们的贡献已经被重新归属；如果是 “已拒绝”，那么用户选择不记入该占位账户的贡献。\",\n            \"No attribution invitations have been sent\": \"尚未发出归属邀请\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/blocked_users\"] = { // 组织设置 - 黑名单\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Blocked users 黑名单 /organizations/<org-login>/settings/blocked_users\n            \"Block a user\": \"拉黑用户\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用户可以防止所有仓库中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打开或评论议题或拉取请求\",\n            \"starring, forking, or watching\": \"标星、复刻、关注\",\n            \"adding or editing wiki pages\": \"添加或编辑 Wiki 页面\",\n\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Learn more about blocking a user\": \"了解更多关于拉黑用户的信息\",\n            \"Block options\": \"拉黑选项\",\n                \"For 1 day\": \"1 天\",\n                \"For 3 days\": \"3 天\",\n                \"For 7 days\": \"7 天\",\n                \"For 30 days\": \"30 天\",\n                \"Until I unblock them\": \"直到取消拉黑\",\n            \"Block user\": \"拉黑用户\",\n            \"You have not blocked any users.\": \"您还没有拉黑任何用户。\",\n            \"Unblock\": \"取消拉黑\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/interaction_limits\"] = { // 组织设置 - 互动限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Interaction limits 互动限制 /organizations/<org-login>/settings/interaction_limits\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time. Users who are members of this organization will not be affected by these limits.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。作为该组织成员的用户将不受这些限制的影响。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n            \"Interaction limits may already exist in your organization's\": \"互动限制可能已经存在于您的组织\",\n            \"public repositories\": \"公开仓库\",\n            \". Any changes here will override those limits.\": \" 的设置中。此处的全局设置将覆盖那些仓库的局部设置。\",\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with this organization's repositories.\": \"最近创建账户的用户将无法与您组织的仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously committed to the default branch of a repository in this organization will be unable to interact with that repository.\": \"以前从未提交到您组织某个仓库默认分支的用户将无法与该仓库互动。\",\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not collaborators of a repository in this organization will not be able to interact with that repository.\": \"不是您组织某个仓库的协作者将无法与该仓库互动。\",\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            \"Organization members\": \"组织成员\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n            // 顶部提醒\n            \"User interaction limit settings saved.\": \"用户交互限制设置已保存。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/code_review_limits\"] = { // 组织设置 - 代码审查限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码审查限制 /organizations/<org-login>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in public repositories within this organization.\": \"限制该组织内允许批准或请求更改公共仓库中拉取请求的用户。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"代码审查限制可能已经由各个仓库指定。此处的任何更改都将覆盖这些限制，直至取消设置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有仓库代码审查限制都是单独管理的。启用限制，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。删除限制，允许所有用户提交拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n            \"Limit reviews on all repositories\": \"限制对所有仓库的审查\",\n            \"Remove review limits from all repositories\": \"取消对所有仓库的审查限制\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/moderators\"] = { // 组织设置 - 版主\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Moderators 版主 /organizations/<org-login>/settings/moderators\n            \"You can add organization members or teams as moderators for your organization. Moderators can block and unblock users from the organization, minimize comments, and manage interaction limits for all public organization repositories.\": \"您可以将组织成员或团队添加为组织的主版主。版主可以阻止和解除对该组织用户的阻止、最小化评论、并管理所有公共组织仓库的交互限制。\",\n\n            \"You may add up to\": \"您最多可以添加\",\n            \"members or teams as moderators.\": \"成员或团队作为版主。\",\n            \"Add a member or team\": \"添加成员或团队\",\n            \"You don't have any moderators for this organization.\": \"该组织尚无任何版主\",\n\n            // [/Successfully added (@[^\\n]+) as a moderator/, \"已成功将 $1 添加为版主\"],\n            // [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功将 $1 的版主身份移除\"],\n            \"Remove moderator\": \"移除版主\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Successfully added (@[^\\n]+) as a moderator/, \"已成功将 $1 添加为版主\"],\n        [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功将 $1 的版主身份移除\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/repository-defaults\"] = { // 组织设置 - 仓库 / 默认值\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库默认分支 /organizations/<org-login>/settings/repository-defaults\n            \"Repository default branch\": \"仓库默认分支\",\n                \"Choose the default branch for new repositories in this organization. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"为该组织中的新仓库选择默认的分支。由于工作流程的不同，或者由于您的集成仍然需要 “master” 作为默认分支名，您可能想改变默认名称。您可以随时改变单个仓库的默认分支名称。\",\n                \"Learn more about default branches.\": \"了解更多关于默认分支的信息。\",\n\n            // 顶部提醒\n                // [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中创建的新仓库将使用 main 作为其默认分支。\"],\n\n            \"Commit signoff\": \"提交签署\",\n                \"Choose whether repositories will require contributors to sign off on commits they make through GitHub's web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"选择仓库是否要求贡献者签署通过 GitHub 的 Web 界面所做的提交。签署是贡献者确认他们的提交符合仓库条款的一种方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"开发者来源证书（DCO）\",\n                \"Learn more about signing off on commits\": \"了解更多关于签署提交的信息\",\n                \"All repositories\": \"所有仓库\",\n                    \"Require signoff on web-based commits for all repositories in this organization\": \"要求对该组织中所有仓库的基于 Web 的提交进行签署\",\n                \"No policy\": \"无政策\",\n                    \"Each repository chooses whether to require signoff on web-based commits\": \"每个仓库选择是否要求对基于 Web 的提交进行签署\",\n\n                // 顶部提醒\n                    \"Commit signoff settings were updated.\": \"提交签署设置已更新。\",\n\n            \"Repository labels\": \"仓库标签\",\n                \"Set the labels that will be included when a new repository is created in this organization.\": \"设置在此组织中创建新的仓库时将包含的标签。\",\n                \"Learn more about managing default labels for your organization.\": \"了解更多关于为您的组织管理默认标签的信息。\",\n            \"New label\": \"新建标签\",\n                \"Label preview\": \"标签预览\",\n                \"Label name\": \"标签名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可选）\",\n                \"Color\": \"颜色\",\n                    \"Get a new color\": \"获得新颜色\",\n                    \"Choose from default colors:\": \"从默认颜色中选择：\",\n                \"Create label\": \"创建标签\",\n            // 删除提醒\n            \"Are you sure? Deleting a label will remove as a default, and no future repositories will receive this label when created.\": \"您确定吗？删除标签将作为默认值删除，以后的仓库在创建时不会收到此标签。\",\n\n            \"label\": \"个标签\",\n            \"labels\": \"个标签\",\n            \"bug\": \"BUG\",\n                \"Something isn't working\": \"有些东西不工作\",\n            \"dependencies\": \"依赖性\",\n                \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n            \"documentation\": \"文档\",\n                \"Improvements or additions to documentation\": \"文档的改进或补充\",\n            \"duplicate\": \"重复\",\n                \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n            \"enhancement\": \"增强\",\n                \"New feature or request\": \"新功能或请求\",\n            \"good first issue\": \"好的首发议题\",\n                \"Good for newcomers\": \"适合新人\",\n            \"help wanted\": \"需要帮助\",\n                \"Extra attention is needed\": \"需要特别关注\",\n            \"invalid\": \"无效\",\n                \"This doesn't seem right\": \"这似乎不对\",\n            \"question\": \"问题\",\n                \"Further information is requested\": \"要求提供更多信息\",\n            \"wontfix\": \"不会修复\",\n                \"This will not be worked on\": \"这将不会被处理\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中创建的新仓库将使用 main 作为其默认分支。\"],\n        [/Your default branch name will be ([^ ]+)/, \"您的默认分支名称将是 $1\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/topics\"] = { // 组织设置 - 仓库 /仓库主题\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库主题 /orgs/<org-login>/topics\n            \"No repositories\": \"尚无仓库\",\n            \"A code repository designed to show the best GitHub has to offer.\": \"旨在展示 GitHub 必须提供的最佳代码仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([^ ]+) repositories you contribute to/, \"您贡献的 $1 仓库\"],\n        [/There are no repositories in ([^ ]+) that you’ve contributed to and that you can set topics on./, \"$1  中没有您贡献过的并且可以设置主题的仓库。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/codespaces\"] = { // 组织设置 - 仓库 /代码空间\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n        \"To manage Codespace ownership settings, please\": \"要管理代码空间所有权设置，请\",\n        \"upgrade your plan\": \"升级您的计划\",\n        \"to enable your organization.\": \"以启用您的组织。\",\n\n        \"Codespaces access\": \"代码空间访问\",\n            \"Manage access to GitHub Codespaces for your organization's members on private and internal repositories. Codespaces are always available on public repositories.\": \"管理组织成员对私有和内部仓库中 GitHub 代码空间的访问权限。代码空间始终在公共仓库中可用。\",\n\n            \"By enabling Codespaces, you agree to GitHub’s\": \"启用代码空间即表示您同意 GitHub 的\",\n            \"additional products and features terms\": \"附加产品和功能条款\",\n            \"and approve of these terms on behalf of your organization.\": \"并代表您的组织批准这些条款。\",\n\n            \"Disabled\": \"禁用\",\n                \"Disable GitHub Codespaces for all organization owned private and internal repositories\": \"禁用所有组织拥有的私有和内部仓库的 GitHub 代码空间\",\n\n            \"Enable for specific members or teams\": \"为特定成员或团队启用\",\n                \"Enable GitHub Codespaces for specific organization members or teams on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为特定组织成员或团队启用 GitHub 代码空间\",\n\n            \"Enable for all members\": \"为所有成员启用\",\n                \"Enable GitHub Codespaces for all organization members on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为所有组织成员启用 GitHub 代码空间\",\n\n            \"Enable for all members and outside collaborators\": \"为所有成员和外部协作者启用\",\n                \"Enable GitHub Codespaces for all organization members and outside collaborators on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为所有组织成员和外部协作者启用 GitHub 代码空间\",\n\n        \"Codespace ownership\": \"代码空间所有权\",\n            \"Control who owns codespaces created by your organization’s members on organization owned repositories. Codespace ownership dictates who is billed for usage, whose policies apply, and where audit logs are sent.\": \"控制谁拥有组织成员在组织拥有的仓库上创建的代码空间。代码空间所有权决定了由谁来支付使用费、适用谁的策略以及审计日志发送到何处。\",\n\n            \"Organization ownership\": \"组织所有权\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the organization\": \"组织成员在组织仓库上创建的所有代码空间都归组织所有\",\n\n            \"User ownership\": \"用户所有权\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the creating member\": \"组织的成员在组织仓库上创建的所有代码空间都归创建成员所有\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/copilot\"] = {  // 组织设置 - GitHub Copilot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 组织设置 - GitHub Copilot /orgs/<org-login>/settings/copilot\n            \"The AI powered pair programmer for your organization. Once you complete onboarding, you’ll have the ability to manage policies and control which users or teams will have access to\": \"为您的组织提供人工智能助理程序员。完成入职后，您将能够管理策略并控制哪些用户或团队有权访问组织内的\",\n            \"inside your organization.\": \"。\",\n\n            \"Enable GitHub Copilot\": \"启用 GitHub Copilot\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/actions\"] = { // 组织设置 - 操作\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 操作页面 /organizations/<org-login>/settings/actions\n            \"General actions permissions\": \"常规操作权限\",\n\n            \"Policies\": \"政策\",\n                \"Choose which repositories are permitted to use GitHub Actions.\": \"选择允许哪些仓库使用 GitHub Actions。\",\n                \"All repositories\": \"所有仓库\",\n                    \"Actions can be run by any repository in the organization\": \"操作可以由组织中的任何仓库运行\",\n                \"Selected repositories\": \"选定的仓库\",\n                    \"Actions can only be run by specifically selected repositories\": \"操作只能由特定选择的仓库运行\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                    \"selected repository\": \"个选定的仓库\",\n                    \"selected repositories\": \"个选定的仓库\",\n                    // 对话框\n                        \"Select the organization repositories that may use Actions.\": \"选择可以使用操作的组织仓库。\",\n                        \"Filter repositories\": \"筛选仓库\",\n                        \"No repositories found.\": \"未找到仓库。\",\n                        \"Select repositories\": \"选定仓库\",\n                \"Disabled\": \"禁用\",\n                    \"GitHub Actions is disabled for all repositories in the organization\": \"对组织中的所有仓库禁用 GitHub Actions\",\n\n                \"Allow all actions and reusable workflows\": \"允许所有操作和可复用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可复用的工作流程，而不管它是谁创作的或在哪里定义的。\",\n                // [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n                //     [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 组织内的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n                // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n                //     [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定条件的操作或可复用的工作流程，以及在 $1 组织内的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n                    \"Learn more about allowing specific actions and reusable workflows to run.\": \"了解更多关于允许运行特定操作和可复用的工作流程的信息。\",\n                    \"Allow actions created by GitHub\": \"允许由 GitHub 创建的操作\",\n                    \"Allow actions by Marketplace\": \"允许来自市场的操作，\",\n                    \"verified creators\": \"由经验证的创建者创建\",\n                    \"Allow specified actions and reusable workflows\": \"允许指定的操作和可复用的工作流程\",\n                    \"Applies to\": \"适用于\",\n                    \"repositories only\": \"仓库，仅仅\",\n                        // \"Workflows using these actions in private repositories will fail.\": \"在私有仓库中使用这些操作的工作流程将失败。\",\n                        // \"Using a list of specific actions is only supported for public repositories on your current GitHub plan. To have this list apply to private repositories,\": \"只有当前 GitHub 计划中的公共仓库才支持使用特定操作列表。要将此列表应用于私有仓库，\",\n                        // \"upgrade your plan\": \"升级您的计划\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"输入以逗号分隔的操作和可复用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允许使用通配符、标签和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可复用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整个组织或仓库的示例：\",\n\n                // 顶部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n\n            // 运行器\n                \"Choose which repositories are allowed to create repository-level self-hosted runners.\": \"选择哪些仓库允许创建仓库级自托管运行器。\",\n                // 私有仓库\n                    \"Repo-level self-hosted runners can be used by any repository in the organization\": \"组织内的任何仓库都可以使用仓库级自托管运行器\",\n                // 选定的仓库\n                    \"Repo-level self-hosted runners can be used by specifically selected repositories\": \"选定的仓库允许使用仓库级自托管运行器\",\n                    \"Select the organization repositories that may use repository-level self-hosted runners.\": \"选择组织中允许使用仓库级自托管运行器的仓库。\",\n                // 禁用\n                    \"Repo-level self-hosted runners are disabled for all repositories in the organization\": \"组织中的所有仓库都禁用仓库级别的自托管运行器\",\n\n                // 顶部提醒\n                    \"Repo-level self-hosted runners settings changed.\": \"仓库级别的自托管运行器设置已更改。\",\n\n            \"Artifact and log retention\": \"工件和日志保留\",\n                \"Choose the default repository settings for artifacts and logs.\": \"选择工件和日志的默认仓库设置。\",\n                \"days\": \"天\",\n                \"You can set a maximum limit of\": \"您最多可以设置为\",\n                \"days.\": \"天。\",\n                \"Learn more about the artifact and log retention policy.\": \"了解更多关于工件和日志保留政策的信息。\",\n                \"Duration must be 90 or less\": \"必须为 1-90\",\n                \"Duration must be 1 or more.\": \"必须为 1-90\",\n\n            \"Fork pull request workflows from outside collaborators\": \"从外部协作者，复刻拉取请求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"选择哪些外部协作者的子集需要批准才能对他们的拉取请求运行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"了解更多关于批准来自公共复刻的工作流运行的信息。\",\n                \"Require approval for first-time contributors who are new to GitHub\": \"要求对首次加入 GitHub 的贡献者进行批准审查\",\n                    \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近创建 GitHub 账户的首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Require approval for first-time contributors\": \"要求对首次贡献者进行批准审查\",\n                    \"Only first-time contributors will require approval to run workflows.\": \"只有首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Require approval for all outside collaborators\": \"要求对所有外部协作者进行批准审查\",\n                    \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部协作者将始终需要批准才能在他们的拉取请求上运行工作流程。\",\n                // 顶部提醒\n                    \"Fork pull request outside collaborators settings saved.\": \"外部协作者复刻拉取请求设置已保存。\",\n\n            \"Fork pull request workflows in private repositories\": \"私有仓库的复刻拉取请求工作流程\",\n                \"These settings apply to private repositories. Repository administrators will only be able to change the settings that are enabled here.\": \"这些设置适用于私有仓库。仓库管理员只能改变这里启用的设置。\",\n                \"Run workflows from fork pull requests\": \"从复刻拉取请求运行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"这告诉 Actions 运行工作流程，来自仓库复刻的拉取请求。请注意，这样做将使这些复刻的维护者有能力在源码库上使用具有读取权限的令牌。\",\n                    \"Send write tokens to workflows from fork pull requests.\": \"从复刻拉取请求，发送可写令牌到工作流程\",\n                        \"This tells Actions to send tokens with\": \"这告诉 Actions 发送令牌\",\n                        \"write\": \"写入\",\n                        \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"权限到工作流程，来自仓库复刻的拉取请求。请注意，这样做将授予这些复刻的维护者\",\n                        \"permissions against the source repository.\": \"权限，针对源仓库。\",\n                    \"Send secrets and variables to workflows from fork pull requests.\": \"从复刻拉取请求，发送机密和变量到工作流程\",\n                        \"This tells Actions to send repository secrets and variables to workflows from pull requests originating from repository forks.\": \"这告诉 Actions 发送仓库机密和变量到工作流程，来自仓库复刻的拉取请求。\",\n                    \"Require approval for fork pull request workflows.\": \"要求批准复刻 拉取请求工作流程。\",\n                        \"Fork pull requests from users without write access will require approval to run workflows.\": \"来自没有写入权限的用户的复刻拉取请求需要获得批准才能运行工作流程。\",\n                // 顶部提醒\n                    \"Fork pull request workflow settings saved.\": \"复刻拉取请求工作流程设置已保存。\",\n\n            \"Workflow permissions\": \"工作流程权限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this organization. You can specify more granular permissions in the workflow using YAML.\": \"在组织中运行工作流程时，选择授予 GITHUB_TOKEN 的默认权限。您可以使用 YAML 在工作流程中指定更细化的权限。\",\n                \"Learn more about managing permissions.\": \"了解更多关于管理权限的信息。\",\n\n                \"Repository administrators will only be able to change the default permissions to a more restrictive setting.\": \"仓库管理员只能将默认权限改为更严格的设置。\",\n                    \"Read and write permissions\": \"读取和写入权限\",\n                        \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在仓库中对所有作用域具有读和写的权限。\",\n                    \"Read repository contents and packages permissions\": \"读取仓库的内容和软件包的权限\",\n                        \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在仓库中仅对内容和软件包作用域具有只读的权限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"选择 GitHub Actions 是否可以创建拉取请求或提交批准拉取请求审查。\",\n                    \"Allow GitHub Actions to create and approve pull requests\": \"允许 GitHub Actions 创建和批准拉取请求\",\n                        \"This controls whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"这控制 GitHub Actions 是否可以创建拉取请求或提交批准的拉取请求审查。\",\n                    // 顶部提醒\n                        \"Default workflow permissions settings saved.\": \"默认工作流程权限设置已保存。\",\n\n            \"Required workflows\": \"所需的工作流程\",\n                \"Add workflow\": \"添加工作流\",\n                \"Set required workflows to run in your organization’s repositories. These workflows will run alongside the repository workflows and branch merging will be blocked until the required checks succeed.\": \"设置所需的工作流程，在您的组织的仓库中运行。这些工作流程将与仓库的工作流程一起运行，分支合并将被阻止，直到所需的检查成功。\",\n                \"Learn more about required workflows.\": \"了解更多关于所需工作流程的信息。\",\n                \"There are no required workflows in this organization.\": \"此组织中尚无所需的工作流程。\",\n\n        // 运行器页面 /organizations/<org-login>/settings/actions/runners\n            \"Includes all runners across self-hosted and GitHub-hosted runners.\": \"包括所有自托管和 GitHub 托管的运行器。\",\n\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows. Runners added to this organization can be used to process jobs in multiple repositories in your organization.\": \"托管您自己的运行器，并定制用于在您的 GitHub Actions 工作流程中运行作业的环境。添加到该组织的运行器可以用来处理您的组织中的多个仓库的工作。\",\n            \"Learn more about self-hosted runners\": \"了解更多关于自托管运行器的信息\",\n\n            \"Search runners\": \"搜索运行器\",\n            \"New runner\": \"创建运行器\",\n                \"New self-hosted runner\": \"新建自托管运行器\",\n                    \"Bring your own infrastructure\": \"自备基础设施\",\n                \"New GitHub-hosted runner\": \"新建 GitHub 托管运行器\",\n                    \"Pay-as-you-go, customizable, secure, scaled &\": \"即用即付、可定制、安全、可扩展并\",\n                    \"managed by GitHub\": \"由 GitHub 管理\",\n                \"Only available on paid Team or Enterprise plans\": \"仅适用于付费团队或企业计划\",\n\n            \"There are no runners configured\": \"暂无设置运行器\",\n            \"Learn more about using runners\": \"了解更多关于使用运行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服务器上运行操作的信息。\",\n\n            \"Standard GitHub-hosted runners\": \"标准 GitHub 托管运行器\",\n            \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型运行器。\",\n            \"Idle\": \"空闲\",\n            \"Active\": \"活跃\",\n            \"Offline\": \"离线\",\n            // [/(\\d+) active jobs?/ ,\"$1 个活跃的工作\"]\n\n        // 由 GitHub 托管的运行器 /organizations/<org-login>/settings/actions/hosted-runners\n            \"/ GitHub-hosted runners\": \"/ GitHub 托管运行器\",\n            \"All jobs usage\": \"所有工作的使用情况\",\n            \"To increase your concurrency limit, upgrade your\": \"要增加您的并发限制，请升级您的\",\n            \"GitHub plan.\": \"GitHub 计划。\",\n\n            \"Labels\": \"标签\",\n\n            \"Active jobs\": \"活跃的工作\",\n            \"There are currently no running jobs\": \"目前没有正在运行的工作\",\n            \"Add `\": \"添加 `\",\n            \"` to your workflow's YAML to send jobs to GitHub-hosted runners.\": \"`到您的工作流程的YAML中，以发送作业到 GitHub 托管的运行器。\",\n\n        // 创建运行器页面 /organizations/<org-login>/settings/actions/runners/new\n            \"/ Create self-hosted runner\": \"/ 创建自托管运行器\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。下载并配置 GitHub Actions 运行器 后，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服务条款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企业服务条款\",\n                \", as applicable.\": \"，如适用。\",\n            \"Runner image\": \"运行器镜像\",\n            \"Architecture\": \"架构\",\n            \"Download\": \"下载\",\n            // win 64\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我们建议在 “\\\\actions-runner” 下配置运行器。这将有助于避免与 Windows 上的服务标识文件夹权限和长路径限制相关的议题。\",\n            // macOS-arm64\n            \"macOS-arm64 runners are currently in pre-release status and subject to change.\": \"macOS-arm64 的运行器目前处于预发布状态，可能会有变化。\",\n            \"Configure\": \"设置\",\n            \"Using your self-hosted runner\": \"使用您的自托管运行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"关于配置、运行或关闭运行器的其他细节，请查看我们的\",\n            \"product docs\": \"产品文档\",\n\n        // 运行器组 /organizations/<org-login>/settings/actions/runner-groups\n            \"Control access to your runners by specifying the repositories that are able to use your shared organization runners. New runners will be automatically assigned to the default group if no other group is specified. Upgrade to an Enterprise plan to create groups.\": \"通过指定能够使用您的共享组织运行器的仓库来控制对运行器的访问。如果没有指定其他组，新运行器将自动分配到默认组。升级到企业计划以创建组。\",\n\n            \"Search runner groups\": \"搜索运行器组\",\n            \"New runner group\": \"创建运行器组\",\n\n            \"Group\": \"组\",\n            \"Default\": \"默认\",\n                \"This group cannot be deleted and new runners will be automatically assigned to this group if no other group is specified.\": \"该组不能被删除，如果没有指定其他组，新的运行器将被自动分配到该组。\",\n                \"All repositories, excluding public repositories\": \"所有仓库，不包括公共仓库\",\n\n        // 缓存 /organizations/<org-login>/settings/actions/caches\n            \"Caches\": \"缓存\",\n            \"You can use caches for dependencies and other commonly reused files to speed up your workflows. The data on this page have at least 5 minutes of latency.\": \"您可以对依赖项和其他经常重复使用的文件的缓存来加快您的工作流程。此页面上的数据至少有 5 分钟的延迟。\",\n            \"Learn more about caches\": \"了解更多关于缓存的信息\",\n\n            \"Search repositories\": \"搜索仓库\",\n\n            \"Sort:\": \"排序：\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n\n            \"No repository uses caches\": \"尚无仓库使用缓存\",\n            \"Nothing has been cached by workflows running in any repositories of this organization.\": \"该组织任何仓库中运行的工作流程都未缓存任何内容。\",\n            \"Learn more about caching\": \"了解更多关于缓存\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依赖关系和构建输出以改善工作流程执行时间的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 组织内的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定条件的操作或可复用的工作流程，以及在 $1 组织内的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n        [/(\\d+) active jobs?/ ,\"$1 个活跃的工作\"], // settings/actions/runners\n        [/(\\d+) caches?/, \"$1 项缓存\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/discussions\"] = { // 组织设置 - 讨论\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 讨论 /organizations/<org-login>/settings/discussions\n            \"Discussions for your organization\": \"您组织的讨论\",\n            \"Setting up Discussions for your organization will allow you to broadcast updates, answer questions, and hold conversations for the entire organization.\": \"为您的组织设置 “讨论”，将您能够为整个组织广播更新、回答问题和举行对话。\",\n            \"Enable discussions for this organization\": \"启用组织的讨论功能\",\n\n            \"Choose a source repository that will host the discussions.\": \"选择承载讨论的源码库。\",\n                \"All discussions on the source repository will be surfaced to the organization Discussions tab.\": \"源码库上的所有讨论都将显示在组织讨论选项卡中。\",\n                \"Permissions from the repository will be applied to the organization Discussions. By default, all members of the organization will be able to create and comment on discussions.\": \"来自仓库的权限将应用于组织讨论。默认情况下，组织的所有成员都可以创建讨论并发表评论。\",\n                \"Members can now share updates or ask questions to the entire organization.\": \"成员现在可以向整个组织共享更新或提问。\",\n                \"For more information, see our documentation.\": \"有关更多信息，请参阅我们的文档。\",\n\n                \"Choose a repository\": \"选择仓库\",\n                \"Search for a repository\": \"搜索仓库\",\n\n            // 提醒\n                \"Organization discussions has been set up!\": \"组织讨论已经建立！\",\n                \"View organization discussions\": \"查看组织讨论\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/projects\"] = { // 组织设置 - 计划 - 项目\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 项目 /organizations/<org-login>/settings/projects\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的项目可以帮助您组织和安排工作的优先级。您可以为特定的功能工作、全面的路线图、甚至是发布清单创建项目。\",\n            \"Enable Projects for the organization\": \"启用项目，为组织\",\n                \"This allows members to create projects for the\": \"允许成员创建项目，为\",\n                \"organization. Members can create projects to organize and track issues from any\": \"组织。成员可以创建项目来组织和跟踪来自任何\",\n                \"-owned repository.\": \"组织拥有的仓库。\",\n            \"Allow members to change project visibilities for this organization\": \"允许成员更改此组织的项目可见性\",\n                \"If enabled, members with admin permissions on a project can make the project public or private. If disabled, only organization owners can make the project public or private. All projects are private by default.\": \"如果启用，在项目上有管理权限的成员可以将项目设为公开或私有。如果禁用，则只有组织所有者可以将项目设为公开或私有。默认情况下，所有项目都是私有的。\",\n\n            \"Welcome to projects\": \"欢迎来到项目！\",\n                \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"项目表格的构造类似电子表格，为您提供了一个实时画布，可用于筛选、排序和分组问题及拉取请求。您可以使用自定义字段和保存的视图，根据自身需求对其进行定制。\",\n\n            \"Recommended templates\": \"推荐模板\",\n                \"Customize a selection of recommended project templates for this organization. These templates will be surfaced first when a member of the organization creates a new project.\": \"为此组织定制一系列推荐的项目模板。当组织成员创建新项目时，这些模板将首先出现。\",\n\n                \"Create your first GitHub project template\": \"创建第一个 GitHub 项目模板\",\n                    \"Templates can be used to quickly get started with a new project.\": \"模板可用于快速开始新项目。\",\n                \"New template\": \"新建模板\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/security\"] = { // 组织设置 - 身份验证安全\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 身份验证安全  /organizations/<org-login>/settings/security\n            \"Two-factor authentication\": \"双因素身份验证\",\n            \"Requiring an additional authentication method adds another level of security for your organization.\": \"要求额外的身份验证方法为您的组织增加了另一个级别的安全性。\",\n            // [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求对 $1 组织中的每个成员进行双因素身份验证。\"],\n            \"Members, billing managers, and outside collaborators who do not have two-factor authentication enabled for their personal account will be removed from the organization and will receive an email notifying them about the change.\": \"未为其个人账户启用双因素身份验证的成员、账单管理员和外部协作者将从组织中删除，并会收到一封电子邮件，通知他们有关更改。\",\n\n            // 顶部提醒\n                \"Enabling two-factor authentication requirement.\": \"启用双因素身份验证。\",\n                \"Disabled two-factor authentication requirement.\": \"禁用双因素身份验证。\",\n\n            \"SSH Certificate Authorities\": \"SSH 证书颁发机构\",\n            \"Provide SSH certificates that members can use to access your resources with Git\": \"提供 SSH 证书，成员可以用 Git 来访问您的资源\",\n            \"Try risk-free for 30 days\": \"无风险试用 30 天\",\n            \"learn more\": \"了解更多\",\n            \", or\": \"，或\",\n            \"dismiss this message.\": \"忽略此消息。\",\n\n            \"IP allow list\": \"IP 允许列表\",\n            \"An IP allow list lets your organization limit access based on the IP address a person is accessing from.\": \"IP 允许列表可让您的组织根据成员访问的 IP 地址来限制访问。\",\n            \"Restrict access to your organization's assets by configuring a list of IP addresses that are allowed to connect\": \"通过配置 IP 允许列表来限制对组织资产的访问\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求对 $1 组织中的每个成员进行双因素身份验证。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/security_analysis\"] = { // 组织设置 - 代码安全性与分析\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码安全性与分析 /organizations/<org-login>/settings/security_analysis\n            \"Try our new settings\": \"尝试我们的新设置\",\n            // 顶部提醒\n                \"Something went wrong. Please try again.\": \"出了些问题。请再试一次。\",\n\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your organization's repositories.\": \"安全和分析功能有助于确保您的仓库安全和更新。通过启用这些功能，您授予我们对您组织的仓库执行只读分析的权限。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"启用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n                \"Automatically enable for new public repositories\": \"为新公共仓库自动启用\",\n\n                // 对话框\n                    \"Enable private vulnerability reporting\": \"启用私下漏洞报告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞报告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将禁用 $1 组织中所有私有仓库上的私下漏洞报告。\"],\n                        \"Enable by default for new public repositories\": \"默认启用新公共仓库\",\n\n            \"Dependency graph\": \"依赖关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n                \"Automatically enable for new private repositories\": \"为新私有仓库自动启用\",\n\n                // 对话框\n                    \"Enable dependency graph\": \"启用依赖关系图\",\n                        // [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的依赖关系图。\"],\n\n                    \"Disable dependency graph\": \"禁用依赖关系图\",\n                        // [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有私有仓库上的依赖关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\"],\n                        \"Enable by default for new private repositories\": \"默认为新私有仓库启用\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖关系的安全和最新\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖关系的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                        \"Configure alert notifications\": \"配置警报通知\",\n                    \"Automatically enable for new repositories\": \"为新仓库自动启用\",\n\n                // 对话框\n                    \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                        // [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即将启用 $1 组织中所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\"],\n\n                    \"Disable Dependabot alerts\": \"禁用 Dependabot 警报\",\n                        // [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\"],\n                        \"Enable by default for new repositories\": \"默认为新仓库启用\",\n\n                \"Dependabot rules\": \"Dependabot 规则\",\n                    \"Create your own custom rules and manage alert presets.\": \"创建您自己的自定义规则并管理警报预设。\",\n                    // [/(\\d+) rules? enabled/, \"$1 条规则启用\"],\n\n            \"Dependabot security updates\": \"Dependabot 安全更新\",\n                \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。如果您想要更具体的配置选项，请将其禁用并使用\",\n                    // \"Dependabot rules\": \"Dependabot 规则\",\n\n                // 对话框\n                    \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                        // [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们还将为所有仓库开启他们。\"],\n\n                    \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                        // [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的 Dependabot 安全更新。\"],\n\n            \"Grouped security updates\": \"分组安全更新\",\n                \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。该选项可被 dependabot.yml 中指定的组规则覆盖 -\",\n                \"learn more here\": \"在此了解更多\",\n\n                // 对话框\n                    \"Enable grouped security updates\": \"启用分组安全更新\",\n                        // [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot警报、Dependabot安全更新和 Dependabot安全更新，因此我们还将为所有仓库开启他们。\"],\n\n                    \"Disable grouped security updates\": \"禁用分组安全更新\",\n                        // [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的分组安全更新。\"],\n\n            \"Code scanning\": \"代码扫描\",\n                \"Identify vulnerabilities and errors with\": \"识别代码中的漏洞和错误，通过\",\n                \". Default CodeQL analysis will be set up on\": \"。默认的 CodeQL 分析将被设置为\",\n                \"eligible\": \"符合条件的\",\n                \"public repositories.\": \"公共仓库。\",\n\n                \"Recommend the extended query suite for repositories enabling default setup\": \"建议为启用默认设置的仓库提供扩展查询套件\",\n                    \"The extended query includes the default suite, plus lower severity and precision queries.\": \"扩展查询包括默认套件，以及较低严重性和精度的查询。\",\n\n                // 对话框\n                    \"Enable code scanning default setup\": \"启用代码扫描默认设置\",\n                        \"This will turn on CodeQL default setup for all eligible public repositories and repositories with GitHub Advanced Security enabled.\": \"这将为所有符合条件的公共仓库和已启用 GitHub 高级安全功能的仓库开启 CodeQL 默认设置。\",\n                        \"What makes a repository eligible for default setup?\": \"怎样的仓库符合默认设置？\",\n                        \"Query suites\": \"查询套件\",\n                            \"Group of queries\": \"查询套件\",\n                            \"to run against your code.\": \"针对您的代码运行。\",\n\n                            \"Default\": \"默认\",\n                                \"Recommended\": \"推荐\",\n                                \"CodeQL high-precision queries.\": \"CodeQL 高精度查询。\",\n                            \"Extended\": \"扩展\",\n                                \"Queries from the default suite, plus lower severity and precision queries.\": \"来自默认套件的查询，以及较低严重性和精度查询。\",\n                                \"Recommended by your organization. Queries from the default suite, plus lower severity and precision queries.\": \"由您的组织推荐。来自默认套件的查询，以及较低严重性和精度的查询。\",\n                        \"Code scanning uses GitHub Actions. Also, repositories where code scanning is already enabled will not be re-enabled.\": \"代码扫描使用 GitHub Actions。此外，已启用代码扫描的仓库将不会重新启用。\",\n\n                    \"Disable code scanning default setup\": \"禁用代码扫描默认设置\",\n                        \"This will disable CodeQL default setup on all repositories where it is enabled.\": \"这将禁用所有仓库的 CodeQL 默认设置。\",\n\n            \"Secret scanning\": \"机密扫描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有关检测到的机密、密钥或其他令牌的警报。\",\n\n                \"Push protection\": \"推送保护\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的机密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自动启用对添加到机密扫描的仓库进行扫描\",\n                    \"Add a resource link in the CLI and web UI when a commit is blocked\": \"当提交被阻止时，在 CLI 和 Web UI 中添加资源链接。\",\n                        \"Link will show in addition to\": \"显示链接和\",\n                        \"the message GitHub displays\": \"GitHub 显示的消息\",\n                        \"Save link\": \"保存链接\",\n\n                // 对话框\n                    \"Enable secret scanning for eligible repositories?\": \"启用适用仓库的机密扫描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"这将为所有公共仓库启用机密扫描。\",\n                        \"Enable for eligible repositories\": \"启用符合条件的仓库\",\n\n                    \"Disable secret scanning?\": \"禁用机密扫描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"这将禁用所有仓库的机密扫描。\",\n                        \"Disable secret scanning\": \"禁用机密扫描\",\n\n                    \"Enable push protection for eligible repositories?\": \"为符合条件的仓库启用推送保护？\",\n                        \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"这将为所有已启用秘密扫描的仓库启用推送保护。\",\n                        \"Push protection coverage\": \"推送保护覆盖范围\",\n                        \"Already enabled\": \"已启用\",\n                        \"Will be enabled\": \"将启用\",\n                        \"Not eligible\": \"不符合条件\",\n\n                    \"Disable push protection?\": \"禁用推送保护？\",\n                        // [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"这将在已启用推送保护的 $1 个仓库中禁用推送保护。\"],\n                        \"You can still enable push protection at the repository level.\": \"您仍然可以在仓库级别启用推送保护。\",\n                        \"Disable push protection\": \"禁用推送保护\",\n\n            \"Grant Dependabot access to private repositories\": \"授予 Dependabot 访问私有库权限\",\n                \"In order to update dependencies in your organization, Dependabot accesses dependencies in all public repositories and the selected private repositories. The contents of these repositories will be accessible to all users in your organization through Dependabot updates. Be sure that you want to share these repositories with everyone in your organization or consider using private registries instead.\": \"为了更新组织中的依赖项，Dependabot 会访问所有公共仓库和选定的私有库中的依赖项。您组织中的所有用户都可以通过 Dependabot 更新访问这些仓库内容。请确保您想与组织中的每个人共享这些仓库，或考虑使用私有注册表。\",\n                \"Add private repositories\": \"添加私有库\",\n                    \"Add a private repository\": \"添加私有库\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n\n            \"Security managers\": \"安全管理员\",\n                \"Grant a team permission to manage security alerts and settings across your organization. This team will also be granted read access to all repositories.\": \"授予团队管理整个组织的安全警报和设置的权限。该团队还将被授予对所有仓库的读取权限。\",\n                \"Learn more about these security privileges\": \"了解更多关于这些安全特权的信息\",\n                \"Search for teams\": \"搜索团队\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n        [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的依赖项关系图。\"],\n        [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有私有仓库上的依赖项关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即将启用 $1 组织中所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖项关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\"],\n        [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们还将为所有仓库开启他们。\"],\n        [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的 Dependabot 安全更新。\"],\n        [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot警报、Dependabot安全更新和 Dependabot安全更新，因此我们还将为所有仓库开启他们。\"],\n        [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的分组安全更新。\"],\n        [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"这将在已启用推送保护的 $1 个仓库中禁用推送保护。\"],\n        [/(\\d+) rules? enabled/, \"$1 条规则启用\"],\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/dependabot_rules\"] = { // 组织设置 - Dependabot 规则\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Dependabot 规则 /organizations/<org-login>/settings/dependabot_rules\n            // 顶部提醒\n                \"Rule created.\": \"规则已创建。\", // 仓库规则\n                \"Rule saved. It may take a moment for this rule to be applied to matching alerts\": \"规则已保存。此规则可能需要一段时间才能应用于匹配的警报\",\n                \"Rule saved.\": \"规则已保存。\",\n                \"Rule was successfully deleted.\": \"规则已成功删除。\",\n\n            \"/ Dependabot rules\": \"/ Dependabot 规则\",\n            \"New rule\": \"新建规则\",\n            \"GitHub presets\": \"GitHub 预设\",\n                \"Managed by GitHub\": \"由 GitHub 管理\",\n                \"Edit curated rule\": \"编辑策划规则\",\n                \"Edit rule\": \"编辑规则\",  // 仓库规则\n                \"Dismiss low-impact alerts for development-scoped dependencies\": \"解除开发范围下依赖项的低影响警报\",\n                    \"In a developer (non-production or runtime) environment, these alerts are unlikely to be exploitable or have limited effect like slow builds or long-running tests.\": \"在开发人员（非生产或运行时）环境中，这些警报不太可能被利用，或者影响有限，例如缓慢的构建或长时间运行的测试。\",\n                    \"Learn more about this methodology.\": \"了解更多关于此方式的信息。\",\n            \"Repository rules\": \"仓库规则\", // 仓库规则\n            \"Organization rules\": \"组织规则\",\n                // [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n                \"Edit custom rule\": \"编辑自定义规则\",\n\n        // 新建规则 /organizations/<org-login>/settings/dependabot_rules/new\n            // 顶部警告\n                \"The following inputs have errors:\": \"以下输入有错误：\",\n\n            \"Dependabot rules\": \"Dependabot 规则\",\n            \"/ New rule\": \"/ 新建规则\",\n            \"Rule name\": \"规则名称\",\n                \"Add a rule name\": \"添加规则名称\",\n            \"State\": \"状态\",\n                \"Rules will target all public repositories in this organization.\": \"规则将针对该组织中的所有公共仓库。\",\n                    \"Enabled\": \"启用\",\n                        \"Rule is enabled by default for all public repositories.\": \"默认情况下，规则对所有公共仓库启用。\",\n                    \"Enforced\": \"强制\",\n                        \"Rule is enabled for all public repositories and can never be disabled by individual repositories.\": \"规则对所有公共仓库启用，单个仓库永远无法禁用。\",\n                    \"Disabled\": \"禁用\",\n                        \"Rule can never be enabled on any repositories.\": \"规则永远不能在任何仓库中启用。\",\n            \"Target alerts\": \"目标警告\",\n                \"Add rule metadata\": \"添加规则元数据\",\n                    \"Suggested filters\": \"建议的过滤器\",\n                        \"severity:\": \"严重度：\",\n                            \"critical, high, moderate, low\": \"严重、高、中、低\",\n                                \"Severities\": \"严重度\",\n                                    \"critical\": \"严重\",\n                                    \"high\": \"高\",\n                                    \"moderate\": \"中\",\n                                    \"low\": \"低\",\n                        \"package:\": \"软件包：\",\n                            \"package-name\": \"软件包名称\",\n                        \"ecosystem:\": \"生态系统：\",\n                            \"ecosystem-name\": \"生态系统名称\",\n                        \"scope:\": \"范围：\",\n                            \"runtime, development\": \"运行时、开发\",\n                                \"Scopes\": \"范围\",\n                                    \"runtime\": \"运行时\",\n                                    \"development\": \"开发\",\n                        \"cwe:\": \"CWE：\",\n                            \"cwe-number\": \"CWE 号码\",\n                \"Rules will be applied for alerts matching all included metadata.\": \"规则将应用于与所有包含的元数据匹配的警报。\",\n            \"Rules\": \"规则\",\n                \"Select one or more rules to apply to matching alerts.\": \"选择一个或多个规则以应用于匹配的警报。\",\n                \"Dismiss alerts\": \"忽略警报\",\n                    \"Dependabot will automatically close or reopen alerts based on selected criteria.\": \"Dependabot 将根据选定的条件自动关闭或重新打开警报。\",\n                    \"Until patch is available\": \"直到补丁可用为止\",\n                    \"Indefinitely\": \"无限期\",\n                \"Open a pull request to resolve alerts\": \"打开拉取请求以解决警报\",\n                    \"Dependabot will attempt to open security updates based on selected criteria.\": \"Dependabot 将尝试根据选定的标准打开安全更新。\",\n            \"Create rule\": \"创建规则\",\n\n        // 编辑规则 /organizations/<org-login>/settings/dependabot_rules/edit/<id>\n            \"/ Edit rule\": \"/ 编辑规则\",\n            \"Save rule\": \"保存规则\",\n\n            \"Danger Zone\": \"危险区\",\n                \"Delete this rule\": \"删除规则\",\n                    \"Deleting this rule can potentially reopen associated alerts.\": \"删除此规则可能会重新打开相关警报。\",\n                    \"Delete rule\": \"删除规则\",\n\n                    \"Are you sure you want to delete this rule?\": \"您确定要删除此规则吗？\",\n                        // [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"这将永久删除规则 “$1” 并可能重新打开相关警报。\"],\n\n        // 编辑默认规则 /organizations/<org-login>/settings/dependabot_rules/edit_default/1\n            \"/ GitHub Preset rule\": \"/ GitHub 预设规则\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n        [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"这将永久删除规则 “$1” 并可能重新打开相关警报。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"repository/settings/dependabot_rules\"] = I18N[\"zh-CN\"][\"orgs/settings/dependabot_rules\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/domains\"] = { // 组织设置 - 经验证和批准的域名\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 经验证和批准的域名 /organizations/<org-login>/settings/domains\n            \"Verified & approved domains\": \"经验证和批准的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"You can verify the domains controlled by your organization to confirm your organization's identity on GitHub. A\": \"您可以验证组织控制的域，以确认组织在 GitHub 上的身份。一个\",\n            \"badge will be added to your organization's profile page if all of the domains displayed on your profile (e.g. public email or website URL) are verified. You may also approve a domain by first adding it to the list of eligible domains. Approved domains may be used for email notification routing to users with verified emails that do not belong to a domain that you can verify.\": \"的徽章，您的组织的资料页面上显示，则表明您的资料中显示的所有域名（例如公共电子邮箱地址或网站 URL）都经过验证。您也可以通过，首先将一个域名添加到合格的域名列表中来批准该域名。已批准的域名可用于通过电子邮件通知具有经过验证的邮箱地址的用户，这些电子邮箱地址不属于您可以验证的域名。\",\n            \"Learn more about verifying or approving a domain for your enterprise.\": \"了解更多关于验证或批准企业域名的信息。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/secrets\"] = { // 组织设置 - 机密和变量\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 操作机密 /organizations/<org-login>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作机密和变量\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"机密和变量允许您管理可重复使用的配置数据。机密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"，用于敏感数据。\",\n            \"Learn more about encrypted secrets\": \"了解更多关于加密机密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。变量是明文显示，用于\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"数据。\",\n            \"Learn more about variables\": \"了解更多关于变量的信息\",\n\n            \"Anyone with collaborator access to the repositories with access to a secret or variable can use it for Actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何具有协作者权限的人，只要能接触到机密或变量，都可以将其用于操作。它们不会被传递到由复刻的拉取请求触发的工作流中。\",\n\n            \"Organization secrets and variables cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织机密和变量。\",\n            \"Please consider\": \"请考虑\",\n            \"upgrading your plan\": \"升级您的计划\",\n            \"if you require this functionality.\": \"如果您需要此功能。\",\n\n            \"Secrets\": \"机密\",\n            \"Variables\": \"变量\",\n\n            \"Organization secrets\": \"组织机密\",\n                \"This organization has no secrets.\": \"该组织尚无机密。\",\n                \"New organization secret\": \"新建组织机密\",\n\n            \"Visibility\": \"可见性\",\n            \"Last updated\": \"最后更新\",\n\n            // 顶部提醒\n                \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败。机密名称只能包含字母数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许有空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n                \"Secret added.\": \"机密已添加。\",\n                \"Secret updated.\": \"机密已更新。\",\n                \"Secret deleted.\": \"机密已删除。\",\n\n            // 删除机密对话框\n            \"Delete secret\": \"删除机密\",\n                \"Are you sure you want to delete\": \"您确定要删除\",\n                    \"Deleting\": \"删除\",\n                    \"Unable to delete\": \"无法删除\",\n                \"Yes, delete this\": \"是的，删除该\",\n                \"secret\": \"机密\",\n\n        // 新建组织机密 /organizations/<org-login>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作机密\",\n            \"/ New secret\": \"/ 新建机密\",\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名称\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"仓库权限\",\n            \"Public repositories\": \"公共仓库\",\n                \"This secret may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"该机密可由组织中的公共仓库使用。付费的 GitHub 计划包括私有仓库。\",\n            \"Private repositories\": \"私有仓库\",\n                \"Organization secrets cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织机密。\",\n            \"Selected repositories\": \"选定的仓库\",\n                \"This secret may only be used by specifically selected repositories.\": \"该机密只能由特定仓库使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                // 机密仓库访问 对话框\n                    \"Secret repository access\": \"机密仓库访问\",\n                    \"Select the organization repositories that may use this secret.\": \"选择可以使用该机密的组织仓库。\",\n                        \"Filter repositories\": \"筛选仓库\",\n                        \"selected repository\": \"个选定的仓库\",\n                        \"selected repositories\": \"个选定的仓库\",\n                    \"Update selection\": \"更新选择\",\n\n        // 更新操作机密 /organizations/<org-login>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新机密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"机密值已加密，无法显示，但您可以\",\n            \"enter a new value.\": \"输入一个新值。\",\n\n        // 操作变量 /organizations/<org-login>/settings/variables/actions\n            \"Create new organization variable\": \"新建组织变量\",\n\n            \"Organization variables\": \"组织变量\",\n            \"This organization has no variables.\": \"此组织尚无变量。\",\n\n            // 删除变量对话框\n            \"Delete variable\": \"删除变量\",\n                \"variable\": \"变量\",\n\n        // 新建组织变量 /organizations/<org-login>/settings/variables/actions/new\n            \"Actions variables\": \"操作变量\",\n            \"/ New variable\": \"/ 新建变量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：变量值是以纯文本形式暴露的。如果您需要对敏感信息进行加密和屏蔽，请使用\",\n            \"create a secret\": \"创建机密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"变量名称只能包含字母数字字符（[A-Z]，[A-Z]，[0-9]）或仅下划线（_）。\",\n            \"Variable names cannot start with a number.\": \"变量名称不能以数字开头。\",\n            \"Variable names cannot start with\": \"变量名称不能以\",\n            \"prefix.\": \"前缀开头。\",\n\n            // 变量名称警示\n                \"Variable name can only contain alphanumeric characters. Special characters and spaces are not allowed.\": \"变量名称只能包含字母数字字符。不允许特殊字符和空格。\",\n                \"Variable name can only start with a letter or underscore.\": \"变量名称只能以字母或下划线开头。\",\n                \"Variable name cannot start with \\\"GITHUB_\\\" prefix.\": \"变量名称不能以 “GITHUB_” 前缀开头。\",\n\n            // \"Public repositories\": \"公共仓库\",\n                \"This variable may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"改变量可由组织中的公共仓库使用。付费的 GitHub 计划包括私有仓库。\",\n            // \"Private repositories\": \"私有仓库\",\n                \"Organization variables cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织变量。\",\n            // \"Selected repositories\": \"选定的仓库\",\n                \"This variable may only be used by specifically selected repositories.\": \"该变量只能由特定仓库使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                // 变量仓库访问 对话框\n                    \"Variable repository access\": \"变量仓库访问\",\n                    \"Select the organization repositories that may use this variable.\": \"选择可以使用该变量的组织仓库。\",\n\n            \"Add variable\": \"添加变量\",\n\n        // 更新组织变量 /organizations/<org-login>/settings/variables/actions/<name>\n            \"/ Update variable\": \"/ 更新变量\",\n            \"Update variable\": \"更新变量\",\n                \"Saving…\": \"保存中…\",\n                \"Save variable\": \"保存变量\",\n\n        // 代码空间机密 /organizations/<org-login>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"代码空间机密\",\n            \"Development environment secrets are environment variables that are\": \"开发环境机密是环境变量\",\n            \"encrypted\": \"被加密\",\n            \". They are available to any codespace user with\": \"。任何代码空间用户具有\",\n            \"collaborator\": \"协作者\",\n            \"access to the repositories with access to that secret.\": \"权限访问该机密的仓库。\",\n\n            \"Development environment secrets\": \"开发环境机密\",\n                \"This organization has no development environment secrets.\": \"该组织尚无开发环境机密。\",\n                \"New codespace secret\": \"新建代码空间机密\",\n\n        // Dependabot 机密 /organizations/<org-login>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 机密\",\n            \"Secrets are credentials that are\": \"机密是凭证\",\n            \". Anyone with\": \"。任何对此仓库具有\",\n            \"access to the repositories with access to each secret can use it for Dependabot.\": \"访问权限的人都可以访问仓库的每个机密用于 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"机密不会传递给复刻。\",\n\n        // Dependabot 机密 /organizations/<org-login>/settings/secrets/dependabot/new\n            \"All repositories\": \"所有仓库\",\n            \"This secret may be used by any repository in the organization.\": \"组织中的任何仓库都可以使用此机密。\",\n            \"This secret may be used by any private repository in the organization.\": \"组织中的任何私有仓库都可以使用此机密。\",\n\n        // 私有登记表 /organizations/<org-login>/settings/secrets/private_registries\n            \"Private Registries\": \"私有注册表\",\n            \"Private registry configurations include passwords or tokens that are handled as encrypted secrets. Access to private registry configurations is limited to\": \"私有注册表配置包括加密处理的密码或令牌作为机密。对私有注册表配置的访问仅限于\",\n            \"CodeQL default setup\": \"CodeQL 默认设置\",\n            \"for analyzing code. The automatically-generated name for a private registry configuration is visible to users in log files for debugging. No other information is accessible to users.\": \"用于分析代码。用户可以在日志文件中看到自动生成的私有注册表配置名称，以便进行调试。用户无法访问其他信息。\",\n            \"Private registry secrets\": \"私人注册表机密\",\n\n            \"New private registry\": \"新建私有注册表\",\n\n        // 新建私有登记表 /organizations/<org-login>/settings/secrets/private_registries/new\n            \"Private registries\": \"私有注册表\",\n            \"New private registry\": \"新建私有注册表\",\n            \"Select registry type\": \"选择注册表类型\",\n                \"Maven Repository\": \"Maven 仓库\",\n                \"NuGet Feed\": \"NuGet 订阅\",\n                \"Token\": \"令牌\",\n                \"Username and password\": \"用户名和密码\",\n                \"Username\": \"用户名\",\n                \"Password\": \"密码\",\n                \"Add Registry\": \"添加注册表\",\n\n        // 编辑私有登记表 /organizations/<org-login>/settings/secrets/private_registries/<>\n            \"Edit private registry\": \"编辑私有注册表\",\n            \"Type\": \"类型\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/variables\"] = I18N[\"zh-CN\"][\"orgs/settings/secrets\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/oauth_application_policy\"] = { // 组织设置 - 第三方应用访问策略\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 第三方应用访问策略 /organizations/<org-login>/settings/oauth_application_policy\n            \"Third-party application access policy\": \"第三方应用访问策略\",\n            \"Policy:\": \"策略：\",\n                \"Access restricted\": \"访问受限\",\n                    \"Only approved applications can access data in this organization. Applications owned by\": \"只有获得批准的应用才能访问该组织中的数据。应用由\",\n                    \"always have access.\": \"拥有的始终可以访问。\",\n                    \"Remove restrictions\": \"解除限制\",\n                    // 解除限制对话框\n                    \"Are you sure?\": \"您确定吗？\",\n                    \"You’re about to remove all third-party application restrictions. Please read this carefully.\": \"您即将删除所有第三方应用限制。请仔细阅读。\",\n                    \"Removing third-party application restrictions will immediately give member authorized applications access to private data in the\": \"取消第三方应用限制，将立即允许成员授权的应用访问私人数据，在\",\n                    \"Please be sure you want to do this.\": \"请确定您想这么做。\",\n                    \"Yes, remove application restrictions\": \"是的，取消应用限制\",\n                \"No restrictions\": \"未受限\",\n                    \"All applications authorized by organization members have access to\": \"所有由组织成员授权的应用都可以访问\",\n                    \"’s data.\": \"的数据。\",\n                    \"Setup application access restrictions\": \"设置应用访问限制\",\n\n            \"Denied\": \"拒绝\",\n            \"Approved\": \"已批准\",\n\n            \"No pending requests\": \"没有待处理的请求\",\n            \"As members request access for specific applications, those requests will be listed here for your approval. You can start by browsing\": \"当成员请求访问特定应用时，这些请求将在此处列出以供您批准。您可以浏览\",\n            \"your own authorized applications\": \"您授权的应用\",\n\n            \"When authorized, applications can act on behalf of organization members. Your access policy determines which applications can access data in your organization.\": \"获得授权后，应用可以代表组织成员进行操作。您的访问策略决定了哪些应用可以访问您组织中的数据。\",\n            \"Read more about third-party access and organizations.\": \"阅读更多关于第三方访问和组织的信息。\",\n\n        // 设置第三方应用访问限制 /settings/oauth_application_policy/confirm\n            \"Third-party application restrictions\": \"第三方应用限制\",\n            \"create an extra layer of security that allows owners to better control how applications access data in their organization.\": \"创建一个额外的安全层，使所有者能够更好地控制应用如何访问其组织中的数据。\",\n\n            \"Organization owners maintain an allowlist of trusted applications.\": \"组织所有者维护受信任应用的允许列表。\",\n            \"Applications owned by\": \"应用拥有者\",\n                \"are always trusted.\": \"的应用始终受信任。\",\n            \"Members can request organization approval for an application.\": \"成员可请求组织批准应用。\",\n            \"Approval requests notify organization owners, allowing them to deny or approve application access.\": \"批准请求会通知组织所有者，允许他们拒绝或批准应用的访问。\",\n            \"Only trusted applications can:\": \"只有受信任的应用才能：\",\n                \"Access private organization data via the API or SSH.\": \"通过 API 或 SSH 访问私有组织数据。\",\n                \"Change public organization data.\": \"更改公共组织数据。\",\n                \"Receive webhooks for private events.\": \"接收私人事件的 Web 钩子。\",\n\n            \"Restrict third-party application access\": \"限制第三方应用访问\",\n            \"Restricting access will immediately block all unapproved applications and will disable SSH keys created before February 2014.\": \"限制访问将立即阻止所有未经批准的应用，并禁用 2014 年 2 月前创建的 SSH 密钥。\",\n            \"Read more at GitHub Help.\": \"请访问 GitHub 帮助了解更多信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/personal-access-token\"] = { // 组织设置 - 个人访问令牌\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 个人访问令牌 - 精细化令牌 /organizations/<org-login>/settings/personal-access-tokens\n            \"Fine-grained tokens\": \"精细化令牌\",\n            \"Fine-grained personal access tokens\": \"精细化的个人访问令牌\",\n                \"By default, fine-grained personal access tokens cannot access content owned by your organization via the Public API or Git. This includes both public and private resources such as repositories.\": \"默认情况下，精细化的个人访问令牌不能通过公共 API 或 Git 访问您组织拥有的内容。这包括公共和私人资源，如仓库。\",\n                \"Allow access via fine-grained personal access tokens\": \"允许通过细化的个人访问令牌进行访问\",\n                    \"API and Git access will be allowed using approved organization member's fine-grained personal access tokens\": \"API 和 Git 访问将被允许使用经批准的组织成员的精细化个人访问令牌\",\n                \"Restrict access via fine-grained personal access tokens\": \"通过精细化的个人访问令牌限制访问。\",\n                    \"Organization members will not be allowed to access your organization using a fine-grained personal access token\": \"不允许组织成员使用精细化的个人访问令牌访问您的组织\",\n\n            \"Require approval of fine-grained personal access tokens\": \"要求批准精细化的个人访问令牌\",\n                \"Access requests by organization members can be subject to review by administrator before approval.\": \"组织成员的访问请求在批准之前可能需要经过管理员审查。\",\n                \"Require administrator approval\": \"需要管理员批准\",\n                    \"All access requests by organization members to this organization must be approved before the token is usable.\": \"组织成员对该组织的所有访问请求都必须在令牌可用之前得到批准。\",\n                \"Do not require administrator approval\": \"不需要管理员批准\",\n                    \"Tokens requested for this organization will work immediately, and organization members are not required to provide a justification when creating the token.\": \"为该组织申请的令牌将立即生效，并且组织成员在创建令牌时无需提供理由。\",\n\n            \"Set maximum lifetimes for personal access tokens\": \"设置个人访问令牌的最长使用期限\",\n                \"Control the maximum lifetime for fine-grained personal access tokens in your organizations. If set, your organization members can only use fine-grained personal access tokens against your resources if the tokens are set to expire within the period you provide.\": \"控制组织中精细化个人访问令牌的最长使用期限。如果设置了，您的组织成员只能在您提供的期限内对您的资源使用精细化个人访问令牌。\",\n                \"Learn more about token expiration policies.\": \"了解更多关于令牌过期策略的信息。\",\n\n            \"Fine-grained personal access tokens must expire\": \"精细化个人访问令牌必须过期\",\n                \"Select a maximum lifetime for fine-grained personal access tokens to be allowed to access your organizations.\": \"选择允许访问组织的精细化个人访问令牌的最长有效期。\",\n                // 有效期 下拉菜单\n                    \"7 days\": \"7 天\",\n                    \"30 days\": \"30 天\",\n                    \"60 days\": \"60 天\",\n                    \"90 days\": \"90 天\",\n                    \"366 days\": \"366 天\",\n                    \"Custom...\": \"自定义…\",\n\n                    \"days\": \"天\",\n                    \"between 1 and 366 days\": \"1 至 366 天之间\",\n\n        // 个人访问令牌 - 令牌（经典）/organizations/<org-login>/settings/personal-access-tokens?tab=classic\n            \"Tokens (classic)\": \"令牌（经典）\",\n            \"Restrict personal access tokens (classic) from accessing your organizations\": \"限制个人访问令牌（经典）访问您的组织\",\n                \"By default, personal access tokens (classic) can access content owned by your organization via the GitHub API or Git over HTTPS. This includes both public and private resources such as repositories.\": \"默认情况下，个人访问令牌（经典）可以通过 GitHub API 或基于 HTTPS 的 Git 访问您组织拥有的内容。这包括公共和私有资源，例如仓库。\",\n                \"Allow access via personal access tokens (classic)\": \"允许通过个人访问令牌进行访问（经典）\",\n                    \"API and Git access will be allowed using an organization member's personal access token (classic)\": \"允许组织成员使用个人访问令牌（经典）访问 API 和 Git。\",\n                \"Restrict access via personal access tokens (classic)\": \"通过个人访问令牌限制访问（经典）\",\n                    \"Organization members will not be allowed to access your organization using a personal access token (classic)\": \"不允许组织成员使用个人访问令牌（经典）访问您的组织\",\n\n            // 设置个人访问令牌的最长使用期限\n                \"Control the maximum lifetime for personal access tokens (classic) in your organizations. If set, your organization members can only use personal access tokens (classic) against your resources if the tokens are set to expire within the period you provide.\": \"控制组织中个人访问令牌（经典）的最长使用期限。如果设置了，您的组织成员只能在您提供的期限内对您的资源使用个人访问令牌（经典）。\",\n                \"Personal access tokens (classic) must expire\": \"个人访问令牌（经典）必须过期\",\n                    \"Select a maximum lifetime for personal access tokens (classic) to be allowed to access your organizations.\": \"选择允许访问组织的个人访问令牌（经典）的最长使用期限。\",\n\n        // 活跃的令牌  /organizations/<org-login>/settings/personal-access-tokens/active\n            \"Filter active fine-grained tokens\": \"筛选活跃的精细化令牌\",\n            \"Tokens\": \"令牌\",\n            \"Owner\": \"所有者\",\n                \"Filter by owner\": \"按所有者筛选\",\n                \"Filter users\": \"筛选用户\",\n                \"Clear\": \"清除\",\n\n            // \"Repository\": \"仓库\",\n                \"Filter by repository\": \"按仓库筛选\",\n                \"Filter repositories\": \"筛选仓库\",\n\n            \"Permissions\": \"权限\",\n                \"Filter by permission\": \"按权限筛选\",\n                \"Filter permissions\": \"筛选权限\",\n                    \"read\": \"只读\",\n                    \"write\": \"可写\",\n                    \"Administration\": \"管理员\",\n                    \"Attestations\": \"证书\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                    \"Codespaces lifecycle admin\": \"代码空间生命周期管理员\",\n                    \"Codespaces metadata\": \"代码空间元数据\",\n                    \"Codespaces secrets\": \"代码空间机密\",\n                    \"Commit statuses\": \"提交状态\",\n                    \"Contents\": \"内容\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Dependabot secrets\": \"Dependabot 机密\",\n                    \"Deployments\": \"部署\",\n                    \"Environments\": \"环境\",\n                    \"Merge queues\": \"合并列队\",\n                    \"Metadata\": \"元数据\",\n                    \"Repository announcement banners\": \"仓库公告横幅\",\n                    \"Repository security advisories\": \"仓库安全公告\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                    \"Secrets\": \"机密\",\n                    \"Variables\": \"变量\",\n                    \"Workflows\": \"工作流程\",\n                    \"Organization\": \"组织\",\n                        \"API Insights\": \"API 透视\",\n                        \"Blocking users\": \"拉黑用户\",\n                        \"Custom organization roles\": \"自定义组织角色\",\n                        \"Custom repository roles\": \"自定义仓库角色\",\n                        \"Events\": \"活动\",\n                        \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                        \"Knowledge bases\": \"知识库\",\n                        \"Members\": \"成员\",\n                        \"Organization announcement banners\": \"组织公告横幅\",\n                        \"Organization codespaces\": \"组织代码空间\",\n                        \"Organization codespaces secrets\": \"组织代码空间机密\",\n                        \"Organization codespaces settings\": \"组织代码空间设置\",\n                        \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                        \"Organization private registries\": \"组织私有注册表\",\n                        \"Plan\": \"计划\",\n                        \"Self-hosted runners\": \"自托管运行器\",\n\n            \"There aren't any fine-grained tokens for this organization\": \"该组织尚无任何精细化令牌\",\n\n        // 精细化的个人访问令牌请求  /organizations/<org-login>/settings/personal-access-token-requests\n            \"Fine-grained personal access token requests\": \"精细化的个人访问令牌请求\",\n            \"Filter fine-grained personal access tokens requests\": \"筛选精细化的个人访问令牌请求\",\n\n            \"Requests\": \"请求\",\n\n            \"There aren't any personal access token requests for this organization\": \"该组织尚无任何个人访问令牌的请求\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/reminders\"] = { // 组织设置 - 定时提醒\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 定时提醒 /organizations/<org-login>/settings/reminders\n            \"No scheduled reminders created.\": \"未创建预定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"为了保持项目进展，您现在可以提醒您的团队关于他们需要审查的拉取请求。\",\n\n            \"Connect a Slack workspace to get started\": \"连接 Slack 工作区以开始使用\",\n            // 对话框\n            \"Add Slack workspace\": \"添加 Slack 工作区\",\n            \"We have rolled out a new version of the GitHub app in Slack. If you are currently on the old app, please consider switching over to the new app! More info about migration can be found\": \"我们已经在 Slack 中推出了新版本的 GitHub 应用。如果您目前使用的是旧版应用，请考虑切换到新版应用！更多关于迁移的信息可以点击\",\n            \"here.\": \"这里。\",\n            \"1. Clicking on 'Add' will configure your Slack workspace with the new GitHub app.\": \"1. 点击 “添加” 将用新的 GitHub 应用配置您的 Slack 工作区。\",\n            \"2. If you already have the old app in Slack, it will uninstall the legacy app and install the new one.\": \"2. 如果您在 Slack 中已有旧应用，它将卸载旧应用并安装新应用。\",\n            \"Add workspace\": \"添加工作区\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/sponsors-log\"] = { // 组织设置 - 赞助日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Sponsorship log 赞助日志 /organizations/<org-login>/settings/sponsors-log\n            \"Sponsors log\": \"赞助日志\",\n            \"New sponsorships, changes, and cancellations\": \"新的赞助、更改和取消\",\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"All-time\": \"所有时间\",\n                \"Past Day\": \"过去一天\",\n                \"Past Week\": \"过去一周\",\n                \"Past Month\": \"过去一月\",\n                \"Past Year\": \"过去一年\",\n            \"No sponsorship activity in this time period\": \"这段时间没有赞助活动\",\n            // \"This is where you can review activity from your sponsorships.\": \"您可以在此处查看您的赞助活动。\",\n            // [/This is where you can review activity from ([^ ]+)'s sponsorships./ \"在这里您可以查看 $1 赞助的活动。\"],\n    },\n    \"regexp\": [ // 正则翻译\n        [/This is where you can review activity from ([^ ]+)'s sponsorships./,  \"在这里您可以查看 $1 赞助的活动。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/audit-log\"] = { // 组织设置 - 审计日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Audit log 审计日志 /organizations/<org-login>/settings/audit-log\n            \"Events\": \"活动\",\n            \"Loading audit log entries…\": \"正在加载日志条目…\",\n            \"Filters\": \"筛选\",\n                \"Filter audit logs\": \"筛选审计日志\",\n                \"Yesterday's activity\": \"昨日的活动\",\n                \"Organization membership\": \"组织成员\",\n                \"Team management\": \"团队管理\",\n                \"Repository management\": \"仓库管理\",\n                \"Billing updates\": \"账单更新\",\n                \"Copilot activity\": \"Copilot 活动\",\n                \"Hook activity\": \"挂钩活动\",\n                \"Personal access token activity\": \"个人访问令牌活动\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n            \"Search audit logs\": \"搜索审计日志\",\n            \"Export Git Events\": \"导出 Git 事件\",\n                \"Export Git events\": \"导出 Git 事件\",\n                \"Export file will be limited to 100 Mb.\": \"导出文件将限制为 100 Mb。\",\n                \"Select events from:\": \"选择事件，从：\",\n                \"To:\": \"到：\",\n                \"Download Results\": \"下载结果\",\n            \"Export\": \"导出\",\n                \"Exporting\": \"导出中\",\n            \"Recent events\": \"最近的事件\",\n\n            \"Clear current search query\": \"清除当前搜索查询\",\n            // [/Found (\\d+) events?/, \"找到 $1 个事件\"],\n            \"We couldn’t find any events matching your search.\": \"我们未找到与您的搜索相匹配的活动。\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n        // 源IP泄露 /organizations/<org-login>/audit-log/event_settings\n            \"Disclose actor IP addresses in audit logs\": \"在审计日志中披露行为人 IP 地址\",\n            \"Enable source IP disclosure\": \"启用源 IP 泄露\",\n            \"Enabling will allow you to view IP addresses of current members for organization audit log events. As this feature makes your users' IP addresses automatically available, you should review this change with your legal team to determine whether any user notification is required. When enabled at the enterprise level it will be automatically enabled for all organizations owned by the enterprise, the reverse is not true.\": \"启用此功能将允许您查看组织审计日志事件中当前成员的 IP 地址。由于此功能会自动公开用户的 IP 地址，因此您应该与法律团队一起审核此更改，以确定是否需要任何用户通知。当在企业级别启用时，它将自动为企业拥有的所有组织启用，反之则不然。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Found (\\d+) events?/, \"找到 $1 个事件\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/audit-log/event_settings\"] = I18N[\"zh-CN\"][\"orgs/settings/audit-log\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/deleted_repositories\"] = { // 组织设置 - 删除的仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 删除的仓库 /organizations/<org-login>/settings/deleted_repositories\n            \"Deleted Repositories\": \"删除的仓库\",\n            // [/No recoverable repositories were found for ([^ ]+)./, \"没有发现 $1 中可恢复仓库\"],\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"仓库可能需要一个小时的时间才能显示在这里。您只能恢复没有复刻，或没有被复刻的仓库。\",\n            \"Learn more about restoring deleted repositories\": \"了解更多关于恢复已删除仓库的信息\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable repositories were found for ([^ ]+)./, \"没有发现 $1 中可恢复仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/applications\"] = { // 组织设置 - OAuth 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // OAuth 应用 /organizations/<org-login>/settings/applications\n            \"OAuth apps\": \"OAuth 应用\",\n            \"No Organization Owned Apps\": \"没有组织拥有的应用\",\n            \"Do you want to develop an App that uses the GitHub API? Register an App to generate OAuth tokens.\": \"您想开发一个使用 GitHub API 的应用吗？注册应用 生成 OAuth 令牌。\",\n            \"New OAuth app\": \"新建 OAuth 应用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/apps\"] = { // 组织设置 - GitHub 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // GitHub 应用 /organizations/<org-login>/settings/apps\n            \"No GitHub Apps\": \"尚无 GitHub 应用\",\n                \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想创建与 GitHub 集成并扩展 GitHub 的应用吗？注册一个新的 GitHub 应用，开始使用 GitHub API 进行开发。\",\n            \"New GitHub App\": \"新建 GitHub 应用\",\n            \"View documentation\": \"查看文档\",\n\n            \"Management\": \"管理人员\",\n            \"Choose members that are allowed to manage all GitHub Apps belonging to this organization.\": \"选择允许管理属于该组织的所有 GitHub 应用的成员。\",\n            \"Organization owner\": \"组织所有者\",\n            \"Search by username or full name\": \"按用户名或全名搜索\",\n            \"Grant\": \"授予\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/publisher\"] = { // 组织设置 - GitHub 发布者验证\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 发布者验证 /organizations/<org-login>/settings/publisher\n            \"There must be 1 or more GitHub/OAuth App registered by the organization to request publisher verification\": \"组织必须有 1 个或多个 GitHub/OAuth 应用才能请求发布者验证\",\n            \"You can request publisher verification for your organization. A\": \"您可以为您的组织请求发布者验证。一个\",\n            \"badge will be added to your apps published in the marketplace, recognizing that apps and other published materials were created by you.\": \"徽章将添加到您在市场上发布的应用中，以识别应用和其他已发布材料是由您创建的。\",\n            \"Learn more about publisher verification.\": \"了解更多关于发布者验证的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"projects\"] = { // 项目页面(含仓库项目)\n    \"static\": { // 静态翻译\n        // >>>>>>>>>>>>>>>>>>仓库 公共部分<<<<<<<<<<<<<<<<<<<<<<<<<<<\n            // 头部条\n            \"forked from\": \"复刻自\",\n            \"mirrored from\": \"镜像自\",\n\n            \"Unpin\": \"取消置顶\",\n            \"Ignoring\": \"忽略\",\n            \"Stop ignoring\": \"取消忽略\",\n            \"Watch\": \"关注\",\n            \"Unwatch\": \"取消关注\",\n\n            \"Star\": \"标星\",\n            \"Unstar\": \"已加星标\",\n            \"Fork\": \"复刻\",\n            \"Unfork\": \"取消复刻\",\n\n            // 赞助对话框\n            \"External links\": \"外部链接\",\n            \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n            \"Report abuse\": \"举报滥用\",\n\n            // 关注 & 订阅通知设置 下拉菜单\n            \"Notifications\": \"通知类型\",\n            \"Participating and @mentions\": \"参与和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您时接收来自此仓库的通知。\",\n            \"All Activity\": \"所有活动\",\n            \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定义\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您之外还要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n            // \"Releases\": \"发行版\",\n            // \"Discussions\": \"讨论\",\n            \"Security alerts\": \"安全警报\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"应用\",\n\n            // 复刻下拉\n            \"Existing forks\": \"现有的复刻\",\n            \"You don't have any forks of this repository.\": \"您没有此仓库的任何复刻。\",\n            \"Create a new fork\": \"创建复刻\",\n\n            // 标签栏\n            \"Code\": \"代码\",\n            \"Pull requests\": \"拉取请求\",\n            \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"项目\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"设置\",\n\n            // 键盘快捷键\n                \"Open in codespace\"  : \"在代码空间中打开\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Open cs.github.com in a new tab\": \"在新标签页中打开 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二级搜索栏\",\n                \"Go to Code\"                 : \"跳转到代码\",\n                \"Go to Issues\"               : \"跳转到议题\",\n                \"Go to Pull Requests\"        : \"跳转到拉取请求\",\n                \"Go to Actions\"              : \"跳转到操作\",\n                \"Go to Projects\"             : \"跳转到项目\",\n                \"Go to Wiki\"                 : \"跳转到 Wiki\",\n                \"Go to Discussions\"          : \"跳转到讨论\",\n\n        // https://github.com/projects\n            \"Recently viewed\": \"最近浏览\",\n                \"Remove from recently viewed\": \"从最近浏览中删除\",\n            \"Created by me\": \"由我创建\",\n                \"Create your first GitHub project\": \"创建您的第一个 GitHub 项目\",\n                \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"项目是用于规划和跟踪您工作的可定制、灵活的工具。\",\n\n        // 公共词 简版 议题&拉取请求信息\n            \"opened by\": \"打开者\",\n            \"Opened in\": \"打开在\",\n            \"commented\": \"评论于\",\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"无人受理\",\n            \"Labels\": \"标签\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"尚无里程碑\",\n            \"Linked pull requests\": \"关联的拉取请求\",\n                \"Successfully merging a pull request may close this issue.\": \"成功合并一个拉取请求可能会关闭此议题。\",\n            \"None yet\": \"暂无\",\n            \"Go to issue for full details\": \"跳转到议题以获取完整详细信息\",\n\n            \"Loading details…\": \"载入细节…\",\n\n        // 新建项目 https://github.com/new/project\n          //同 仓库 新建项目页面  /<user-name>/<repo-name>/projects/new\n            \"Create a new classic project\": \"创建经典项目\",\n            \"Coordinate, track, and update your work in one place, so projects stay transparent and on schedule.\": \"在这里协调、跟踪和更新您的工作，使项目保持透明，并按计划进行。\",\n            \"Project board name\": \"项目面板名称\",\n            \"Description\": \"描述\",\n            \"(optional)\": \"(可选)\",\n            \"Project template\": \"项目模板\",\n            \"Save yourself time with a pre-configured project board template.\": \"使用预先配置的项目面板模板可为您节省时间。\",\n            \"Template:\": \"模板：\",\n                \"Templates\": \"模板\",\n                \"None\": \"无\",\n                    \"Start from scratch with a completely blank project board. You can add columns and configure automation settings yourself.\": \"从一个完全空白的项目面板开始。您可以自己添加栏目并配置自动化设置。\",\n                \"Basic kanban\": \"基础看板\",\n                    \"Basic kanban-style board with columns for To do, In progress and Done.\": \"基础风格看板，带有待办、进行中和已完成等栏目。\",\n                \"Automated kanban\": \"自动化看板\",\n                    \"Kanban-style board with built-in triggers to automatically move issues and pull requests across To do, In progress and Done columns.\": \"带有内置触发器的风格看板，可以自动将议题和拉取请求移到待办、进行中和已完成栏目中。\",\n                \"Automated kanban with reviews\": \"带审查的自动看板\",\n                    \"Everything included in the Automated kanban template with additional triggers for pull request reviews.\": \"除了包含自动化看板模板中的所有内容，还有拉取请求审查的额外触发器。\",\n                \"Bug triage\": \"BUG 分类\",\n                    \"Triage and prioritize bugs with columns for To do, High priority, Low priority, and Closed.\": \"使用待办事项、高优先级、低优先级和已关闭的栏目对错误进行分类和优先级排序。\",\n            \"Visibility\": \"可见性\",\n                // \"Public\": \"公共\",\n                    \"Anyone on the internet can see this project. You choose who can make changes.\": \"互联网上的任何人都可以看到这个项目。您选择谁可以进行更改。\",\n                \"Private\": \"私有\",\n                    \"You choose who can see and make changes to this project.\": \"您可以选择谁可以查看此项目并对其进行更改。\",\n            \"Linked repositories\": \"关联的仓库\",\n                \"Search\": \"搜索\",\n                \"to link repositories to this project for more accurate suggestions and better search results.\": \"将仓库关联到此项目，以获得更准确的建议和更好的搜索结果。\",\n                \"Search by repository name\": \"搜索仓库名\",\n                \"You've reached the limit of 25 linked repositories.\": \"您已经达到了 25 个关联仓库的上限。\",\n                \"Linked repositories:\": \"关联的仓库\",\n                \"None yet!\": \"啥也木有！\",\n            \"Create project\": \"创建项目\",\n\n        // 仓库 项目页面  /<user-name>/<repo-name>/projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Welcome to projects\": \"欢迎访问项目\",\n            \"No open projects\": \"无已打开的项目\",\n            \"No open project templates\": \"无已打开的项目模板\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\":\"项目表格就像电子表格一样构建，为您提供实时画布，用于筛选、排序和分组问题及拉取请求。您可以根据需求自定义字段并保存视图。\",\n            \"This repository doesn't have any projects yet\": \"该仓库目前没有任何项目\",\n            \"Create a project\": \"创建一个项目\",\n            \"Provide quick access to relevant projects.\":\"为相关项目提供便捷访问\",\n            \"Add projects to view them here.\":\"添加项目以在此处查看。\",\n            \"Link a project\":\" 关联一个项目\",\n            \"Link projects\":\"关联项目\",\n            \"Link a project to this repository\":\"将项目与该仓库进行关联\",\n\n            \"Organize your issues with project boards\": \"使用项目面板组织您的议题\",\n            \"Did you know you can manage projects in the same place you keep your code? Set up a project board on GitHub to streamline and automate your workflow.\": \"您知道您可以在保存代码的同一个地方管理项目吗？在 GitHub 上设置项目面板以简化和自动化您的工作流程。\",\n\n            \"Sort tasks\": \"排序任务\",\n            \"Add issues and pull requests to your board and prioritize them alongside note cards containing ideas or task lists.\": \"将议题和拉取请求添加到您的看板中，并将它们与包含想法或任务清单的笔记卡一起进行优先排序。\",\n            \"Plan your project\": \"规划项目\",\n            \"Sort tasks into columns by status. You can label columns with status indicators like \\\"To Do\\\", \\\"In Progress\\\", and \\\"Done\\\".\": \"将任务按状态分类成列。您可以用 “待办”、“进行中” 和 “已完成” 等状态指标给各栏贴上标签。\",\n            \"Automate your workflow\": \"自动化工作流程\",\n            \"Set up triggering events to save time on project management—we’ll move tasks into the right columns for you.\": \"设置触发事件，以节省项目管理的时间——我们将为您把任务移到正确的栏目中。\",\n            \"Track progress\": \"追踪进度\",\n            \"Keep track of everything happening in your project and see exactly what’s changed since the last time you looked.\": \"追踪项目中发生的一切，并准确查看自上次查看以来发生的变化。\",\n            \"Share status\": \"共享状态\",\n            \"Each card has a unique URL, making it easy to share and discuss individual tasks with your team.\": \"每张卡片都有一个唯一的 URL，可以轻松地与您的团队共享和讨论个人任务。\",\n            \"Wrap up\": \"结束工作\",\n            \"After you wrap up your work, close your project board to remove it from your active projects list. On to the next project!\": \"结束工作后，关闭项目面板，并从活动项目列表中删除。进入下一个项目！\",\n\n            \"Try the\": \"尝试\",\n            \"new projects today.\": \"新版项目。\",\n            \"Repository access coming soon ✨\": \"仓库访问即将推出 ✨\",\n            \"Remove project\":\"移除项目\",\n            \"Open\":\"已打开\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜单\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                \"Name\": \"名称\",\n            // 清除筛选\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n\n            \"No description\": \"无描述\",\n\n            // 顶部提醒\n            \"Project closed.\": \"项目已关闭。\",\n            \"Project reopened.\": \"项目已重新打开。\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            // 键盘快捷键\n                \"Project card shortcuts\": \"项目卡快捷键\",\n                    \"Open the issue or pull request associated with the focused card in the sidebar\": \"聚焦卡片的侧边栏中打开相关联的议题或拉取请求\",\n                \"Moving a card\": \"移动卡片\",\n                    \"Start moving the focused card\": \"开始移动聚焦卡片\",\n                    \"Cancel the move in progress\": \"取消正在进行的移动\",\n                    \"Complete the move in progress\": \"完成正在进行的移动\",\n                    \"Move card down\": \"向下移动卡片\",\n                    \"Move card to the bottom of the column\": \"移动到项目栏底部\",\n                    \"Move card up\": \"向上移动卡片\",\n                    \"Move card to the top of the column\": \"移动到项目栏顶部\",\n                    \"Move card to the bottom of the column on the left\": \"移动到左侧项目栏底部\",\n                    \"Move card to the top of the column on the left\": \"移动到左侧项目栏顶部\",\n                    \"Move card to the bottom of the leftmost column\": \"移动到最左侧项目栏底部\",\n                    \"Move card to the top of the leftmost column\": \"移动到最左侧项目栏顶部\",\n                    \"Move card to the bottom of the column on the right\": \"移动到右侧项目栏底部\",\n                    \"Move card to the top of the column on the right\": \"移动到右侧项目栏顶部\",\n                    \"Move card to the bottom of the rightmost column\": \"移动到最右侧项目栏底部\",\n                    \"Move card to the top of the rightmost column\": \"移动到最右侧项目栏顶部\",\n                \"Moving a column\": \"移动栏目\",\n                    \"Start moving the focused column\": \"开始移动聚焦栏目\",\n                    \"Move column to the left\": \"将栏目移到左侧\",\n                    \"Move column to the leftmost position\": \"将栏目移到最左侧\",\n                    \"Move column to the right\": \"将栏目移到右侧\",\n                    \"Move column to the rightmost position\": \"将栏目移到最右侧\",\n            // 顶部提醒\n            \"Project created from Basic kanban template.\": \"已从基础看板模板创建项目。\",\n\n            \"Updated\": \"更新于\",\n            \"Filter cards\": \"筛选卡片\",\n                \"Narrow your search\": \"缩小搜索范围\",\n            // 工具栏\n            \"Add cards\": \"添加卡片\",\n                \"You can use the filters available in\": \"您可使用的筛选器在\",\n                \"issue search\": \"议题搜索\",\n                \"Loading search results…\": \"载入搜索结果…\",\n                \"Search results\": \"搜索结果\",\n            \"Fullscreen\": \"全屏\",\n            \"Exit fullscreen\": \"退出全屏\",\n            \"Menu\": \"菜单\",\n                \"This project doesn’t have a description.\": \"该项目没有描述。\",\n                \"Add description\": \"添加描述\",\n                \"Close project\": \"关闭项目\",\n                    \"Are you sure you want to close\": \"您确定要关闭\",\n                \"Activity\": \"活动\",\n                // ... 展开\n                \"Loading activity\": \"载入活动\",\n                \"View archive\": \"查看活动\",\n                \"Showing all activity\": \"显示所有活动\",\n            // 活动 状态词\n                \"added\": \"添加了\",\n                \"created the project\": \"创建了项目\",\n                \"updated the project\": \"更新了项目\",\n                \"created the column\": \"创建了栏目\",\n                \"To do.\": \"待办。\",\n                \"Done.\": \"已完成。\",\n                \"In progress.\": \"进行中。\",\n                \"archived\": \"存档了\",\n                \"restored\": \"恢复了\",\n                \"moved\": \"移动了\",\n                \"from\": \"来自\",\n                \"From\": \"来自\",\n\n            // 编辑对话框\n                \"Edit project\": \"编辑项目\",\n                \"Name\": \"名称\",\n                \"Description\": \"描述\",\n                \"Track project progress\": \"跟踪项目进度\",\n                    \"A progress bar will be displayed to help you visualize the overall progress of your project based on your automated To Do, In Progress, and Done columns.\": \"将显示一个进度条，以帮助您根据您的自动化的待办、进行中和已完成栏目，直观地了解项目的总体进展。\",\n                \"Save project\": \"保存项目\",\n                // [/Delete/, \"删除\"],\n                \"Once you delete a project, there is no going back. Please be certain.\": \"删除项目后，将无法撤回。请确认。\",\n                \"Delete project\": \"删除项目\",\n\n            // 复制项目\n                \"Copy project board\": \"复制项目面板\",\n                \"Your copy of this project includes column names and positions. Cards will not be copied.\": \"此项目的副本包括栏目名称和位置。卡片不会被复制。\",\n                \"Owner\": \"所有者\",\n                    \"Choose an owner\": \"选择所有者\",\n                    \"Search organizations and repositories\": \"搜索组织和仓库\",\n                    \"Suggested\": \"建议\",\n                    \"Everything else\": \"其他一切\",\n                \"Project board name\": \"项目面板名称\",\n                \"Copy project\": \"复制项目\",\n\n            // 存档的卡片\n                \"Archived cards\": \"存档的卡片\",\n                \"Loading archived cards…\": \"载入存档的卡片…\",\n                \"Show all archived cards\": \"显示所有存档卡片\",\n                \"Filter by note or issue title\": \"按注释或提议标题筛选\",\n                \"Column:\": \"栏目：\",\n                    \"All\": \"所有\",\n                \"Restore\": \"恢复\",\n                \"No archived cards\": \"无存档卡片\",\n                \"You haven't archived any cards yet.\": \"您尚未归档任何卡片。\",\n\n            \"This project doesn’t have any columns or cards.\": \"该项目没有任何栏目或卡片。\",\n\n            \"Add a column\": \"添加栏目\",\n            \"Add column\": \"添加栏目\",\n                \"Column name\": \"栏目名称\",\n                \"Enter a column name (To Do, In Progress, Done)\": \"输入栏目名称（待办、进行中、已完成）\",\n                \"Automation\": \"自动化\",\n                \"Choose a preset to enable progress tracking, automation, and better context sharing across your project.\": \"选择预设值，以便在您的项目中实现进度跟踪、自动化和更好的内容共享。\",\n                \"Loading…\": \"载入中…\",\n                \"Preset:\": \"预设：\",\n                    \"Select type\": \"选择类型\",\n                    \"None\": \"无\",\n                        \"This column will not be automated\": \"本栏目将不会自动化\",\n                    \"To do\": \"待办\",\n                        \"Planned but not started\": \"已计划但未开始\",\n                        \"Move issues here when…\": \"当…时，将议题移至此处\",\n                            \"Newly added\": \"新添加的\",\n                                \"Issues will automatically move here when added to this project.\": \"添加到此项目时，议题将自动移至此处。\",\n                            \"Reopened\": \"重新打开\",\n                                \"If a closed issue in this project reopens, it will automatically move here.\": \"如果此项目中已关闭的议题重新打开，它将自动移至此处。\",\n                        \"Move pull requests here when…\": \"当…时，将拉取请求移到此处\",\n                            \"Pull requests will automatically move here when added to this project.\": \"添加到此项目时，拉取请求将自动移至此处。\",\n                            \"If a closed pull request in this project reopens, it will automatically move here.\": \"如果此项目中已关闭的拉取请求重新打开，它将自动移至此处。\",\n                    \"In progress\": \"进行中\",\n                        \"Actively being worked on\": \"正在积极开展工作\",\n                        \"Approved by reviewer\": \"由审查者批准\",\n                        \"Pull requests in this project will automatically move here when they meet the minimum number of required approving reviews. Recommended when another column has the\": \"当该项目中的拉取请求达到所需的最低批准审查数时，将自动移至此处。当另一栏启用了 “\",\n                        \"automation enabled.\": \"” 的自动化功能时推荐使用。\",\n                        \"Pending approval by reviewer\": \"由审查者待批准\",\n                        \"Pull requests in this project will automatically move here when a reviewer requests changes, or it no longer meets the minimum number of required approving reviews. Recommended when another column has the\": \"当审查者请求更改或不再满足所需的最小批准审查数时，此项目中的拉取请求将自动移至此处。当另一栏目启用了 “\",\n                    \"Done\": \"已完成\",\n                        \"Items are complete\": \"项目已完成\",\n                        // 已关闭\n                            \"If an open issue in this project is closed, it will automatically move here.\": \"如果该项目中的一个打开的议题被关闭，它将自动转移到这里。\",\n                        \"Merged\": \"已合并\",\n                            \"If an open pull request in this project is merged, it will automatically move here.\": \"如果该项目中的一个打开的拉取请求被合并，它将自动转移到这里。\",\n                        \"Closed with unmerged commits\": \"已关闭的未合并的提交\",\n                            \"If an open pull request in this project is closed with unmerged commits, it will automatically move here.\": \"如果该项目中的一个打开的拉取请求因未合并提交而关闭，它将自动移到这里。\",\n                \"Create column\": \"创建栏目\",\n\n            \"Edit column\": \"编辑栏目\",\n            \"Manage automation\": \"管理自动化\",\n            \"Archive all cards\": \"存档所有卡片\",\n                \"Archiving cards...\": \"存档卡片…\",\n            \"Copy column link\": \"复制栏目链接\",\n            \"Delete column\": \"删除栏目\",\n\n            // \"Manage automation for To do\": \"管理待办的自动化\",\n            // \"Manage automation for In progress\": \"管理进行中的自动化\",\n            // \"Manage automation for Done\": \"管理已完成的自动化\",\n            \"Update automation\": \"更新自动化设置\",\n\n            \"Add a note to this column\": \"向此栏目添加注释\",\n            \"Enter a note\": \"输入注释\",\n            \"Add\": \"添加\",\n\n            // \"Edit To do\": \"编辑 “待办”\",\n            // \"Edit In progress\": \"编辑 “进行中”\",\n            // \"Edit Done\": \"编辑 “已完成”\",\n            \"Update column\": \"更新栏目\",\n\n            \"Cards\": \"卡片\",\n            \"Automation\": \"自动化\",\n\n            // \"Archive all cards in To do\": \"存档所有 “待办” 卡片\",\n            // \"Archive all cards in In progress\": \"存档所有 “进行中” 卡片\",\n            // \"Archive all cards in Done\": \"存档所有 “已完成” 卡片\",\n            \"Are you sure you want to archive all cards in the\": \"您确定要将存档所有卡片\",\n            \"column? You will not be able to undo this action.\": \"栏目？您将无法撤消此操作。\",\n\n            // \"Delete To do\": \"删除 “待办” \",\n            // \"Delete In progress\": \"删除 “进行中” \",\n            // \"Delete Done\": \"删除 “已完成” \",\n            \"This action will remove any cards and automation preset associated with the column.\": \"此操作将删除与该列关联的所有卡片和自动化预设。\",\n\n            \"Copy card link\": \"复制卡片链接\",\n            \"Convert to issue\": \"转换为议题\",\n                \"Convert note to issue\": \"转换注释为议题\",\n                \"Repository\": \"仓库\",\n                    \"Choose a repository for this issue\": \"为这个议题选择一个仓库\",\n                    \"Find a repository\": \"查找仓库\",\n                    \"Title\": \"标题\",\n                    \"Body\": \"内容\",\n            \"Edit note\": \"编辑注释\",\n                \"Note\": \"注释\",\n                \"Save note\": \"保存注释\",\n            \"Archive\": \"存档\",\n            \"Delete note\": \"删除注释\",\n                \"This will remove this note from the project\": \"这将从项目中删除该注释\",\n            \"New view\": \"新建视图\",\n            \"Layout\": \"布局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"时间线\",\n            \"Duplicate view\": \"复制视图\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分组\",\n            \"No grouping\": \"不进行分组\",\n            \"Markers\": \"标记\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不进行排序\",\n            \"Zoom level\": \"缩放级别\",\n            \"Field sum\": \"字段总和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不进行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成图表\",\n            \"Rename view\": \"重命名视图\",\n            \"Delete view\": \"删除视图\",\n            \"Export view data\": \"导出视图数据\",\n            \"Assignees\": \"负责人\",\n            \"Project templates\": \"项目模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用户设置\",\n            \"Truncate titles\": \"截断标题\",\n            \"Show date fields\": \"显示日期字段\",\n            \"Add status update\": \"添加状态更新\",\n            \"Project details\": \"项目详情\",\n            \"View more options\": \"查看更多选项\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加项目\",\n            \"Pin side panel\": \"固定侧边栏\",\n            \"Close panel\": \"关闭侧边栏\",\n            \"Add your first item\": \"添加您的第一个项目\",\n            \"Click \\\"Add Item\\\" to get started or use the shortcut\": \"点击 \\\"添加项目\\\" 以开始，或使用快捷键\",\n            \"OK, dismiss\": \"好的，忽略\",\n            \"Create new item or add existing item\": \"创建新项目或添加现有项目\",\n            \"Add field\": \"添加字段\",\n            \"Status column options\": \"状态栏目选项\",\n                \"Select column\": \"选择栏目\",\n                \"Sort ascending\": \"升序\",\n                \"Sort descending\": \"降序\",\n                \"Filter by values…\": \"按值筛选…\",\n                \"Group by values\": \"按值分组\",\n                \"Slice by values\": \"按值切片\",\n                \"Hide field\": \"隐藏字段\",\n                \"Field settings…\": \"字段设置…\",\n                    \"Status field settings\": \"状态字段设置\",\n                    \"fields are created by GitHub and cannot be renamed.\": \"字段是由 GitHub 创建的，无法重命名。\",\n                    \"Todo\": \"待办\",\n                    \"In Progress\": \"进行中\",\n                    \"Open field actions for Todo\": \"打开待办字段操作\",\n                    \"Open field actions for In Progress\": \"打开进行中字段操作\",\n                    \"Open field actions for Done\": \"打开已完成字段操作\",\n                    \"Edit option\": \"编辑选项\",\n                        \"Label text\": \"标签文本\",\n                        \"Color\": \"颜色\",\n                        \"Visible in group headers and value pickers\": \"在分组头和值选择器中可见\",\n                    \"Advanced Move...\": \"高级移动…\",\n                        \"Move selected item\": \"移动选定项目\",\n                        \"Item\": \"项目\",\n                        \"Action\": \"操作\",\n                            \"Move item before\": \"移动项目之前\",\n                            \"Move item after\": \"移动项目之后\",\n                            \"Move to position\": \"移动到位置\",\n                            \"Move\": \"移动\",\n                    \"Remove option\": \"删除选项\",\n                    \"Add option…\": \"添加选项…\",\n                \"Move left\": \"向左移动\",\n                \"Move right\": \"向右移动\",\n                    \"This is the right-most column\": \"这是最右边的栏目\",\n\n                \"Sub-issues progress field settings\": \"子议题进度字段设置\",\n                \"Show numerical value\": \"显示数值\",\n                \"Saved!\": \"保存成功！\",\n                \"Custom field options\": \"自定义字段选项\",\n                    \"Reorder fields\": \"重新排序字段\",\n                    \"Reorder custom fields\": \"重新排序自定义字段\",\n                    \"Change the order in which custom fields appear on project items and in field lists.\": \"更改自定义字段在项目项和字段列表中出现的顺序。\",\n                    \"Edit field\": \"编辑字段\",\n                    \"Move field...\": \"移动字段…\",\n            \"Reviewers\": \"审查者\",\n            \"Parent issue\": \"父议题\",\n            \"Sub-issues progress\": \"子议题进度\",\n            \"Create new issue\": \"创建新议题\",\n                \"Templates and forms\": \"模板和表单\",\n                \"Create a new issue from scratch\": \"从头开始创建新议题\",\n                \"Select repository\": \"选择仓库\",\n                \"Copy link\": \"复制链接\",\n                \"Blank issue\": \"空白议题\",\n            \"Add item from repository\": \"从仓库添加项目\",\n                \"No items to add\": \"无项目可添加\",\n                \"This repository is either empty or all items were already added to this project.\": \"此仓库要么为空，要么所有项目都已添加到此项目中。\",\n                \"Select an item\": \"选择一个项目\",\n                \"Search for issues and pull requests\": \"搜索议题和拉取请求\",\n                \"Add selected items\": \"添加选定项目\",\n                \"Select all items\": \"选择所有项目\",\n            \"Search by username\": \"按用户名搜索\",\n            \"Admin\": \"管理员\",\n            \"Can see, make changes to, and add new collaborators to this project.\": \"可以查看、更改和添加新的协作者到此项目。\",\n            \"Can see and make changes to this project.\": \"可以查看和更改此项目。\",\n            \"Read\": \"只读\",\n            \"Can see this project.\": \"可以查看此项目。\",\n            \"Invite\": \"邀请\",\n            \"Role:\": \"角色：\",\n            \"Find a collaborator\": \"查找协作者\",\n            \"Show\": \"显示\",\n            \"Hide\": \"隐藏\",\n            \"empty values\": \"空值\",\n            \"Assignees column options\": \"负责人栏目选项\",\n            \"Title column options\": \"标题栏目选项\",\n                \"Filter by type or state…\": \"按类型或状态筛选…\",\n                \"This is the left-most column\": \"这是最左边的栏目\",\n            \"Welcome to Roadmap!\": \"欢迎使用时间线！\",\n            \"Your project needs at least one date or iteration field to get started.\": \"您的项目需要至少一个日期或迭代字段才能开始。\",\n            \"Got it!\": \"明白了！\",\n            \"Start date\": \"开始日期\",\n            \"No start date\": \"无开始日期\",\n            \"Target date\": \"目标日期\",\n            \"No target date\": \"无目标日期\",\n            \"Items\": \"项目\",\n            \"Archive all\": \"存档所有\",\n            \"Delete all\": \"删除所有\",\n            \"Column\": \"栏目\",\n            \"Set limit\": \"设置限制\",\n            \"Edit details\": \"编辑详情\",\n            \"Hide from view\": \"从视图中隐藏\",\n            \"Position\": \"位置\",\n            \"You choose who can read, write, and admin this project.\": \"您选择谁可以读取、写入和管理此项目。\",\n            \"on the internet\": \"在互联网上\",\n            \"has read access to this project. You choose who has write and admin access.\": \"有读取访问权限到此项目。您选择谁有写入和管理访问权限。\",\n            \"Add Files\": \"添加文件\",\n            \"Save update\": \"保存更新\",\n            \"Select a status\": \"选择一个状态\",\n                \"Filter statuses\": \"筛选状态\",\n            \"Clear\": \"清除\",\n            \"Start typing to create a draft, or type # to select a repository\": \"开始输入以创建草案，或输入 # 选择一个仓库\",\n            \"Scroll to previous date range\": \"滚动到上一个日期范围\",\n            \"Scroll to next date range\": \"滚动到下一个日期范围\",\n            \"Filter by keyword or by field\": \"按关键字或字段筛选\",\n            \"Discard\": \"放弃\",\n            \"Save changes to new view\": \"保存更改到新视图\",\n            \"Visible fields\": \"可见字段\",\n            \"Hidden fields\": \"隐藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"栏目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存档项目\",\n            \"Make a copy\": \"复制\",\n            \"GitHub Projects\": \"GitHub 项目\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"项目设置\",\n            \"Project name\": \"项目名称\",\n            \"Short description\": \"简短描述\",\n            \"More options\": \"更多选项\",\n            \"Make a copy of this project.\": \"复制此项目\",\n            \"Danger zone\": \"危险区\",\n            \"This project is currently private.\": \"此项目当前为私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"关闭项目将禁用其工作流程，并将其从打开项目列表中删除.\",\n            \"Close this project\": \"关闭此项目\",\n            \"Manage access\": \"管理访问权限\",\n            \"Who has access\": \"谁有访问权限\",\n            \"Private project\": \"私有项目\",\n            \"Only those with access to this project can view it.\": \"只有有权访问此项目的人才能查看它.\",\n            \"Invite collaborators\": \"邀请协作者\",\n            \"Manage access\": \"管理访问权限\",\n            \"Custom fields\": \"自定义字段\",\n            \"Field name\": \"字段名称\",\n            \"Field type\": \"字段类型\",\n            \"Text\": \"文本\",\n            \"Number\": \"数字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"单选\",\n            \"Starts on\": \"开始于\",\n            \"Duration\": \"持续时间\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存并创建\",\n            \"You don't have any collaborators yet.\": \"您还没有任何协作者.\",\n            \"Add a collaborator to see them here.\": \"添加协作者以在此处查看他们.\",\n            \"Make template\": \"制作模板\",\n            \"Copy as template\": \"复制为模板\",\n            \"Visibility\": \"可见性\",\n            \"Close project\": \"关闭项目\",\n            \"Delete project\": \"删除项目\",\n            \"Delete this project\": \"删除此项目\",\n            \"Status chart\": \"状态图表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此图表显示了项目中所有项目的当前状态。\",\n            \"No data available\": \"无可用数据\",\n            \"No results were returned.\": \"未返回任何结果。\",\n            \"Default charts\": \"默认图表\",\n            \"Custom charts\": \"自定义图表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置图表\",\n            \"Group by (optional)\": \"分组 (可选)\",\n            \"X-axis\": \"X 轴\",\n            \"Y-axis\": \"Y 轴\",\n            \"Save to new chart\": \"保存到新图表\",\n            \"Add a project status update\": \"添加项目状态更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"状态更新是跟踪项目健康和进度的简要报告. 从添加更新开始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"让每个人都知道这个项目是关于什么的，如何使用它，并链接到重要资源.\",\n            \"A short description about this project.\": \"关于此项目的简短描述.\",\n            \"You can use\": \"您可以使用\",\n            \"to add an item\": \"来添加项目\",\n\n        // 自动化看板模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Automated kanban template.\": \"已从自动化看板模板创建项目。\",\n\n            \"Automated as\": \"自动化为\",\n            \"Manage\": \"管理\",\n\n            // 管理自动化 补充\n            \"The\": \" \",\n            \"column is already using this rule.\": \"栏目已在使用此规则。\",\n\n            // 复制项目面板 补充\n            \"Your copy of this project includes column names, positions, and automation settings. Cards will not be copied.\": \"此项目的副本包括栏目名称、位置和自动化设置。卡片不会被复制。\",\n            \"Automation settings\": \"自动化设置\",\n            \"Copy automation settings.\": \"复制自动化设置。\",\n            \"Includes automation settings for\": \"包括自动化设置，关于\",\n            \"To do, In progress, and Done\": \"待办、进行中和已完成\",\n\n\n            \"Pull Request closed without merge\": \"拉取请求关闭而不合并\",\n            \"Pull Request merged\": \"合并拉取请求\",\n            \"Issue closed\": \"议题已关闭\",\n            \"Pull Request reopened\": \"拉取请求已重新打开\",\n            \"Issue reopened\": \"议题已重新打开\",\n            \"Pull Request pending card added\": \"添加了拉取请求待办卡\",\n            \"Issue pending card added\": \"添加了议题待办卡\",\n\n            \"automation\": \"自动化\",\n            \"to the\": \"到\",\n            \"column.\": \"栏目。\",\n\n        // 自动看板与审查模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Automated kanban with reviews template.\": \"已从自动看板与审查模板创建项目。\",\n\n        // 错误分类模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Bug triage template.\": \"已从错误分类模板创建项目。\",\n\n            \"Needs triage\": \"需要分流\",\n            \"High priority\": \"高优先级\",\n            \"Low priority\": \"低优先级\",\n\n        // https://github.com/users/<user-name>/projects/<id>/settings\n            \"Collaboration settings\": \"协作设置\",\n                \"Options\": \"选项\",\n                    \"Visibility\": \"可见性\",\n                    \"Visibility settings only impact the project itself. Project content that belongs to a repository the user does not have access to will be redacted.\": \"可见性设置只影响项目本身。属于用户无权访问的仓库的项目内容将被编辑。\",\n                    \"Public\": \"公开\",\n                        \"Anyone on the internet can see this project. You choose who can make changes.\": \"互联网上的任何人都可以看到这个项目。您选择谁可以进行更改。\",\n                    \"Private\": \"私密\",\n                        \"You choose who can see and make changes to this project.\": \"您可以选择谁查看此项目并对其进行更改。\",\n            // 协作者\n                \"This project doesn’t have any collaborators yet. Use the form below to add a collaborator.\": \"该项目还没有任何协作者。使用下面的表格添加协作者。\",\n                \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n\n                \"You’ll only be able to find a GitHub user by their email address if they’ve chosen to list it publicly. Otherwise, use their username instead.\": \"只有当 GitHub 用户选择公开电子邮箱地址时，您才能通过他们的电子邮箱地址找到他们。否则，请使用他们的用户名代替。\",\n                \"Add collaborator\": \"Add collaborator\",\n                // [/isn’t a GitHub member/, \"不是 GitHub 成员\"],\n            \"Linked repositories\": \"关联的仓库\",\n                \"Link a repository\": \"关联仓库\",\n                \"Get more accurate suggestions and better search results by linking up to 25 repositories to this project.\": \"通过将多达 25 个仓库关联到这个项目，获得更准确的建议和更好的搜索结果。\",\n                // [/(\\d+) linked repositories/, \"$1 个关联仓库\"],\n                \"This project doesn’t have any linked repositories yet.\": \"该项目暂无任何关联的仓库。\",\n\n        // https://github.com/users/<user-name>/projects/<id>/edit\n            \"(optional)\": \"(可选)\",\n            \"Once you delete this project, there is no going back. Please be certain.\": \"一旦您删除了这个项目，就再也无法恢复。请确认。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/updated/, \"更新于\"],\n        [/View (\\d+)/, \"视图 $1\"],\n        [/Delete/, \"删除\"],\n        [/Edit/, \"编辑\"],\n        // 1 member\n        [/(\\d+) member/, \"$1 成员\"],\n        [/Manage automation for/, \"管理自动化\"],\n        [/Archive all cards in/, \"存档所有\"],\n        [/(\\d+) linked repositories/, \"$1 个关联仓库\"],\n        [/([\\d,]+) Open/, \"$1 打开\"], // 项目标签卡\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        // Showing 1 most recent item that has not been added to this project\n        [/Showing (\\d+) most recent item that has not been added to this project/, \"显示 $1 个最近的项目，尚未添加到此项目\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Projects/, \"项目\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"new/project\"] = I18N[\"zh-CN\"][\"projects\"];\nI18N[\"zh-CN\"][\"repository/projects/new\"] = I18N[\"zh-CN\"][\"projects\"];\nI18N[\"zh-CN\"][\"repository/projects\"] = I18N[\"zh-CN\"][\"projects\"];\n\nI18N[\"zh-CN\"][\"redeem\"] = { // 兑换页面\n    \"static\": { // 静态翻译\n        \"Enter coupon code\": \"输入优惠券代码\",\n        \"Redeem\": \"兑换\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/signup\"] = { // GitHub Copilot 个人版获取页面\n    \"static\": { // 静态翻译\n    ...I18N[\"zh-CN\"][\"settings/copilot\"][\"static\"],\n\n        // https://github.com/github-copilot/signup\n           \"GitHub Copilot Individual\": \"GitHub Copilot 个人版\",\n           //\"The world's most widely adopted AI developer tool.\": \"世界上采用最广泛的人工智能开发工具。\",\n           //\"GitHub Copilot is powered by generative AI to help you code faster and happier!\": \"GitHub Copilot 是由生成式 AI 驱动的，旨在帮助您更快乐、更高效地编码！\",\n           \"For developers who want unlimited access to GitHub Copilot.\": \"适用于希望无限制访问 GitHub Copilot 的开发人员。\",\n           \"Start your 30-day free trial\": \"开始 30 天免费试用\",\n               //\"GitHub Copilot uses the GPT-3.5 Turbo model to offer coding suggestions.\": \"GitHub Copilot 使用 GPT-3.5 Turbo 模型提供编码建议。\",\n               //\"Chat with Copilot for assistance on a wide variety of scenarios, such as project-specific code explanations or help with debugging\": \"与 Copilot 聊天以获取有关各种场景的帮助，例如特定于项目的代码解释或调试帮助\",\n               //\"Get code suggestions as you type in more than a dozen coding languages, including Python, JavaScript, TypeScript, Go, and Ruby\": \"支持超过十种编程语言的代码建议，包括 Python、JavaScript、TypeScript、Go 和 Ruby。\",\n               //\"Plugs into IDEs, including VS Code, Visual Studio, JetBrains IDEs, and Neovim\": \"可以与包括 VS Code、Visual Studio、Neovim 和 JetBrains 在内的集成开发环境（IDE）配合使用\",\n               //\"Sign up for an annual subscription and get two months free!\": \"注册年度订阅，可享受两个月免费福利。\",\n               \"Copilot Pro includes everything you get for free, plus:\": \"Copilot Pro 包括免费版所有内容，此外还有：\",\n                   \"Unlimited code completions and chat interactions\": \"无限代码完成和聊天互动\",\n                   \"Access to more models, like OpenAI o1 and Gemini 1.5 Pro\": \"访问更多模型，如 OpenAI o1 和 Gemini 1.5 Pro\",\n                   \"Works in GitHub Mobile, CLI, and Windows Terminal\": \"可在 GitHub 移动端、CLI 和 Windows 终端中使用\",\n                   \"Cancel anytime before the trial ends to avoid getting billed\": \"在试用期结束前随时取消，以避免收费。\",\n\n           \"Pay frequency after trial\": \"试用结束后付费频率\",\n               \"Monthly plan\": \"月度计划\",\n               \"/month\": \"/ 月\",\n               \"Yearly plan\": \"年度计划\",\n               \"Save $20!\": \"节省 $20 ！\",\n               \"/year\": \"/ 年\",\n\n            \"Or get GitHub Copilot from an organization\": \"您可以通过组织获取 GitHub Copilot\",\n                \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"组织可以为其成员（包括您）和团队提供访问 GitHub Copilot 的权限。\",\n                \"Access Copilot from an organization\": \"从组织中访问 GitHub Copilot。\",\n\n           \"Get access to GitHub Copilot\": \"获取 GitHub Copilot 使用权限\",\n\n           \"Next: Confirm your payment details\": \"下一步：确认您的付款详细信息\",\n\n           \"GitHub Copilot is free for maintainers of popular open source software on GitHub and verified students. Check out the\": \"GitHub Copilot 对于在 GitHub 上维护流行开源软件的人员和经过验证的学生是免费的。查看\",\n           \"free use FAQ\": \"免费使用常见问题解答（FAQ）\",\n           \"for more details.\": \"以获取更多详细信息。\",\n\n        // https://github.com/github-copilot/signup/success\n        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n        \"Select your preferences\": \"设置规则\",\n            \"You can change these at any time from your account settings.\": \"您稍后可以在账户设置内更改。\",\n\n            // 此处引用 I18N[\"zh-CN\"][\"settings/copilot\"]部分词条\n\n            \"Save and complete setup\": \"保存并继续\",\n\n        // https://github.com/github-copilot/signup/settings\n            \"GitHub Copilot is now ready\": \"GitHub Copilot 已就绪\",\n                \"Add it to your editor and start building.\": \"添加至您的编辑器并开始构建\",\n\n            \"Install the GitHub Copilot extension\": \"安装 GitHub Copilot 扩展\",\n                \"You can now use GitHub Copilot on the GitHub website. To use Copilot in your IDE, you first need to install the GitHub Copilot extension. To install for your preferred code editor, check out these Getting Started guides:\": \"您现在可以在 GitHub 网站上使用 GitHub Copilot。要在 IDE 中使用 Copilot，您需要安装 GitHub Copilot 扩展。请查看这些入门指南：\",\n\n            \"If you have the extension already installed for your code editor and have it open, please restart your editor in order to access GitHub Copilot.\": \"如果您的代码编辑器中已经安装了扩展并且是打开状态，请重启您的编辑器以使用 GitHub Copilot。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/free_signup\"] = { // GitHub Copilot 个人免费版获取页面\n    \"static\": { // 静态翻译\n\n        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n\n        // https://github.com/github-copilot/free_signup\n           \"Use GitHub Copilot for free\": \"免费使用 GitHub Copilot\",\n               \"🎉 Congratulations! You are eligible to use GitHub Copilot for free.\": \"🎉恭喜！您有资格免费使用 GitHub Copilot。\",\n               \"Get code suggestions in more than a dozen coding languages including Python, JavaScript, TypeScript, Go, and Ruby\": \"获取十多种编码语言的代码建议，包括 Python、JavaScript、TypeScript、Go 和 Ruby\",\n               \"Plugs into IDEs including VS Code, Visual Studio, Neovim, and JetBrains\": \"IDE 扩展，包括 VS Code、Visual Studio、Neovim 和 JetBrains\",\n           \"Eligibility requirements\": \"资格要求\",\n            \"GitHub Copilot is free to use for open source maintainers, teachers and students. We check eligibility monthly, per our policies.\": \"GitHub Copilot 对开源维护者、教师和学生免费开放。根据我们的政策，我们每月检查一次使用资格。\",\n           \"Get access to GitHub Copilot\": \"获取 GitHub Copilot 使用权限\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/pro\"] = { // GitHub Copilot 专业版适用页面\n    \"static\": {\n        // https://github.com/github-copilot/pro\n            \"Try Copilot Pro for 30 days free\": \"免费试用 Copilot Pro 30 天\",\n\n            \"Everything in Copilot Free and:\": \"Copilot 免费版的所有功能以及：\",\n                \"Unlimited agent mode and chat with GPT-4.1\": \"无限智能体 GPT-4.1 畅聊\",\n                \"Unlimited code completions\": \"无限代码补全\",\n                \"Access to Anthropic Claude Sonnet 4, GPT-5, Gemini 2.5 Pro, and more\": \"可访问 Anthropic Claude Sonnet 4、GPT-5、Gemini 2.5 Pro 等模型\",\n                \"300 premium requests to use the latest models and code review\": \"300 次高级请求，用于使用最新模型和代码审查\",\n\n            \"Try now\": \"立即试用\",\n                \"Part of an organization? Upgrade to\": \"属于某个组织吗？升级到\",\n                    \"Copilot Business\": \"Copilot 商业版\",\n                    \"to enable across teams.\": \"，以便在整个团队中启用。\",\n\n            \"Upgrade now\": \"现在升级\",\n\n        // https://github.com/github-copilot/pro/signup?\n            \"Copilot Pro checkout\": \"Copilot Pro 结账\",\n            \"Free for 30 days\": \"免费试用 30天\",\n            \"Subscribe to GitHub Copilot Pro\": \"订阅 GitHub Copilot Pro\",\n                \"Everything in Free, plus unlimited chats and code completions, premium model access (Claude 3.7/4 and more), and 6x more premium requests.\": \"免费提供所有服务，包括无限聊天和代码补全，高级模型访问权限（Claude 3.7/4 及更多），以及 6 倍以上的高级请求量。\",\n                \"Review\": \"审查\",\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Billing frequency\": \"支付频率\",\n                \"Pay monthly\": \"按月支付\",\n                    \"/ month\": \"/月\",\n                \"Pay yearly\": \"按年支付\",\n                    \"/ year\": \"/年\",\n                    \"Save $20.00\": \"节省 $20.00\",\n\n            \"- Free trial\": \"- 免费试用\",\n\n            \"You will be billed $100.00/year starting\": \"您将每年被收取 $100.00 自：\",\n            \"You will be billed $10.00/month starting\": \"您将每月被收取 $10.00 自：\",\n\n            \"To prevent abuse, we require billing information upfront. Your 30-day free trial will automatically convert to a paid plan after the trial ends. You can cancel anytime from settings before the trial expires to avoid being billed.\": \"为防止滥用，我们要求提前提供账单信息。您的 30 天免费试用将在试用结束后自动转换为付费计划。您可以在试用到期前从设置中随时取消，以避免被收费。\",\n\n            \"Yes please, I'd like GitHub and affiliates to use my information for personalized communications, targeted advertising and campaign effectiveness. The information used includes, but is not limited to, name、email address and country.\": \"好的。我希望 GitHub 及其附属机构能使用我的信息进行个性化沟通、精准广告和活动效果提升。所使用的信息包括但不限于姓名、电子邮件地址和国家。\",\n            \"See the\": \"请参阅\",\n            \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n            \"for more details.\": \"获取更多详情。\",\n\n            \"Participation requires transferring your personal data to other countries in which GitHub operates, including the United States. By submitting this form, you agree to the transfer of your data outside of China.\": \"参与需要将您的个人数据转移到 GitHub 运营的其他国家，包括美国。通过提交此表单，您同意将您的数据转移到中国以外的地方。\",\n            \"Activate now\": \"立即激活\",\n\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"orgs/enterprise_plan\"] = { // 企业版订阅页面\n    \"static\": {\n        // https://github.com/organizations/enterprise_plan\n            \"Pick your trial plan\": \"选择您的试用计划\",\n            \"Recommended\": \"推荐\",\n                \"Enterprise Cloud\": \"企业云\",\n                    \"Build and deploy to GitHub-hosted cloud environments, directly from your repositories.\": \"直接从您的仓库构建并部署到 GitHub 托管的云环境。\",\n                \"Enterprise Server\": \"企业服务器\",\n                    \"Manage and deploy GitHub Enterprise on your own servers, including AWS, Azure, or GC\": \"在您自己的服务器（包括 AWS、Azure 或 GC）上管理和部署 GitHub 企业版\",\n            \"Why teams\": \"为何团队\",\n            \"it: Get started in minutes, and leave the infrastructure to us.\": \"它：只需几分钟即可开始使用，基础设施则交给我们来处理。\",\n            \"it: Control where your code and data live in a private cloud.\": \"它：控制您的代码和数据在私有云中的存放位置。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"codespaces\"] = { // 代码空间页面\n    \"static\": {\n        // 顶部\n            \"Help us improve GitHub Codespaces\": \"帮助我们改进 GitHub 代码空间\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通过三个简单的问题告诉我们如何让 GitHub 代码空间更适合您。\",\n\n        // 维护提示\n            \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n            \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n            \"this announcement\": \"此公告\",\n\n        // https://github.com/codespaces\n            \"Your codespaces\": \"您的代码空间\",\n\n            \"All\": \"所有\",\n            \"Templates\": \"模版\",\n            \"By repository\": \"按仓库\",\n                \"Created from a template\": \"通过模板创建\",\n\n            \"Your instant dev environment\": \"您的即时开发环境\",\n            \"Go from code to commit faster on any project.\": \"在任何项目中，从代码到提交速度更快。\",\n            \"Go to docs\": \"转到文档\",\n            \"New codespace\": \"新建代码空间\",\n            \"Explore quick start templates\": \"浏览快速入门模板\",\n            \"See all\": \"查看所有\",\n            \"Use this template\": \"使用此模版\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 代码空间入门\",\n            \"Learn core concepts\": \"学习核心概念\",\n            \"Configure and manage\": \"配置和管理\",\n            \"Develop locally\": \"在本地开发\",\n            \"New to Codespaces?\": \"刚接触代码空间？\",\n            \"Start here\": \"从这里开始\",\n            \". Learn the core concepts and how to get started.\": \"。学习核心概念以及如何开始。\",\n            \"Learn more about features like\": \"了解更多关于功能的信息，例如\",\n            \"secret management\": \"机密管理\",\n            \"port forwarding\": \"端口转发\",\n            \"Access codespaces from within\": \"从内部访问代码空间，使用\",\n\n            \"Request Usage Report\": \"请求使用报告\",\n\n            \"Retrieving…\": \"正在检索…\",\n            \"Active\": \"活跃\",\n            \"Last used\": \"上次使用\",\n            \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名代码空间\",\n                    \"Name\": \"名称\",\n                \"Export changes to a branch\": \"将更改导出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"检查分支情况\",\n                    \"Create branch\": \"创建分支\",\n                \"Export changes to a fork\": \"将更改导出到复刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                    \"Create fork\": \"创建复刻\",\n                \"Publish to a new repository\": \"发布到新仓库\", // 从模板创建\n                    \"This will create a new repository and push up your work.\": \"这将创建一新仓库，并推送您的工作。\",\n                    // 公共\n                        \"Anyone on the internet can see this repository. You choose who can commit.\": \"互联网上的任何人都可以看到该仓库。您可以选择谁可以提交。\",\n                    // 私有\n                        \"You choose who can see and commit to this repository.\": \"您选择谁可以查看并提交到此仓库。\",\n                    \"Create repository\": \"创建仓库\",\n                \"Change machine type\": \"修改机器类型\",\n                    \"Change codespace machine type\": \"修改代码空间机器类型\",\n                        \"Machine type\": \"机器类型\",\n                            \"2-core\": \"双核\",\n                            \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n                        \"Update codespace\": \"更新代码空间\",\n                \"Stop codespace\": \"停止代码空间\",\n                \"Delete\": \"删除\",\n                    \"Are you sure?\": \"您确定吗？\",\n                \"Auto-delete codespace\": \"自动删除代码空间\",\n                \"Open in Browser\": \"在浏览器中打开\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                \"Start is temporarily disabled\": \"启动暂时被禁用\",\n\n                \"Expiring in\": \"最后使用\", // GitHub 的烂活，原为过期，但居然还能重新打开\n\n            \"Created from\": \"创建自\",\n            \"2-core • 8GB RAM • 32GB\": \"双核 • 8GB 内存 • 32GB 硬盘\",\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 内存 • 32GB 硬盘\",\n\n            // 警告\n                \"You're at 100% of your included usage for this billing period. For more information, view your\": \"您已使用了本计费周期的 100% 额度。有关更多信息，请查看您的\",\n                \"billing settings\": \"账单设置\",\n                \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n            // 状态\n                \"No changes\": \"没有更改\",\n                \"This codespace has uncommitted changes\": \"此代码空间有未提交的更改\",\n\n        // https://github.com/codespaces/templates\n            \"Choose a template\": \"选择模版\",\n            \"Start a codespace from a template and get to developing with the power of a virtual machine in the cloud.\": \"从模板开始创建代码空间，然后利用云中虚拟机的能力进行开发。\",\n            \"Use this template\": \"使用此模版\",\n\n        // https://github.com/codespaces/new\n            \"Create a new codespace\": \"新建代码空间\",\n            \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n            \"Repository\": \"仓库\",\n                \"To be cloned into your codespace\": \"要被克隆到您的代码空间\",\n                \"Select a repository\": \"选择仓库\",\n                \"Search for a repository\": \"查找仓库\",\n                \"Select repository\": \"选择仓库\",\n            \"Branch\": \"分支\",\n                \"This branch will be checked out on creation\": \"创建时将显示此分支\",\n                \"Default branch\": \"默认分支\",\n                \"Default Branch\": \"默认分支\",\n                \"Select branch\": \"选择分支\",\n                \"Find a branch\": \"查找分支\",\n                \"Switch branches\": \"切换分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"default\": \"默认\",\n                \"branches\": \"分支\",\n            \"Region\": \"区域\",\n                \"Your codespace will run in the selected region\": \"您的代码空间将在所选区域运行\",\n                \"US East\": \"美国东部\",\n                \"US West\": \"美国西部\",\n                \"Europe West\": \"欧洲西部\",\n                \"Southeast Asia\": \"东南亚\",\n                \"Australia\": \"澳大利亚\",\n            \"Machine type\": \"机器类型\",\n                \"Resources for your codespace\": \"代码空间的资源\",\n                \"None\": \"无\",\n                \"2-core\": \"双核\",\n                \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                \"4-core\": \"四核\",\n                \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n            \"Dev container configuration\": \"开发容器配置\",\n                \"Your codespace will use this configuration\": \"您的代码空间将使用此配置\",\n            \"Create codespace\": \"新建代码空间\",\n            \"Creating codespace\": \"新建代码空间中\",\n\n        // https://github.com/codespaces/new?hide_repo_select=true&ref=<branch-name>&repo=<repo-id>\n            \"Create codespace for\": \"创建代码空间\",\n\n        // 在拉取请求上创建代码空间 https://github.com/codespaces/new/<user-name>/<repo-name>/pull/<pull-id>?resume=1\n            \"Get started with development in the cloud from an existing repository or a template.\": \"从现有仓库或模板开始云开发。\",\n            \"Find out more about codespaces.\": \"了解更多关于代码空间的信息。\",\n\n            \"Start coding\": \"开始编程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件并在安全、可配置和专用的开发环境中开始编码。\",\n\n            // 警示\n                \"You cannot create a codespace on a closed pull request. Please reopen it if you wish to create a new codespace.\": \"您无法在已关闭的拉取请求上创建代码空间。如果您想创建新的代码空间，请重新打开它。\",\n\n            \"No codespace to resume\": \"没有可恢复的代码空间\",\n                \"You don't have a codespace matching these settings. You can continue to create a new one or customize your settings.\": \"您没有符合这些设置的代码空间。您可以继续创建一个新空间或自定义设置。\",\n\n            \"Change options\": \"更改选项\",\n            \"new codespace\": \"新代码空间\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=vscode\n            \"Launching Visual Studio Code\": \"正在启动 Visual Studio Code\",\n            \"You should have received a prompt to open Visual Studio Code. If not, ensure it is\": \"您应该已经收到打开 Visual Studio Code 的提示。如果没有，请确保它已\",\n            \"installed\": \"被安装\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=jetbrains\n            \"Launching JetBrains Gateway\": \"正在启动 JetBrains Gateway\",\n            \"You should have received a prompt to open the JetBrains Gateway. If not, ensure it is\": \"您应该已经收到打开 JetBrains Gateway 的提示。如果没有，请确保它已\",\n    },\n    \"regexp\": [\n        [/By ([^ ]+)/, \"$1 发布\"],\n        [/Owned by ([^ ]+)/, \"拥有者为 $1\"],\n        //[/Last used (\\d+) days ago/, \"上次使用 $1 天前\"],\n        //[/Last used 大约 (\\d+) 小时之前/, \"上次使用大约 $1 小时以前\"],\n        //[/Last used less than (\\d+) 分钟之前/, \"上次使用小于 $1 分钟以前\"],\n        //[/Last used (\\d+) 分钟之前/, \"上次使用 $1 分钟以前\"],\n        [/Codespace \"(.+)\" stopped./, \"代码空间 “$1” 停止。\"],\n        [/Codespace \"(.+)\" deleted./, \"代码空间 “$1” 删除。\"],\n        [/Your codespace \"(.+)\" has been updated./, \"您的代码空间 “$1” 已更新。\"],\n        [/Your codespace \"(.+)\" will no longer be auto-deleted./, \"您的代码空间 “$1” 将不再自动删除。\"],\n        [/Your codespace \"(.+)\" has been updated to use machine type: \"(\\d+) cores, (\\d+) GB RAM, (\\d+) GB storage\". Changes will take effect the next time your codespace restarts./, \"您的代码空间“$1”将更新机器类型为：“$2 核，$3 GB 内存，$4 GB 存储”。更改将在下次启动代码空间时生效。\"],\n        [/Are you sure you want to delete/, \"您确定要删除\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您确定要删除吗？\"],\n        [/Last used (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `最后使用${translatedDate}`;\n        }],\n        [/This codespace is (\\d+) commits? ahead of remote/, \"此代码空间 $1 条提交领先远端\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n            \"Codespace templates\": \"代码空间模版\",\n            \"Create new codespace\": \"创建代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"codespaces/allow_permissions\"] = { // 代码空间申请额外权限页面，似乎不可用\n    \"static\": {\n        \"This codespace is requesting\": \"该代码空间要求\",\n        \"additional permissions\": \"额外权限\",\n\n        \"Your codespace is requesting the following permissions for these repositories:\": \"您的代码空间正在为这些仓库申请以下权限：\",\n\n        \"The following permissions were also requested but are not available. You can continue but the codespace may not function as intended.\": \"以下权限已申请，但不可用。您可以继续，但代码空间可能无法正常运行。\",\n\n        \"Contents:\": \"内容：\",\n            \"write\": \"写入\",\n\n        \"Continue without authorizing\": \"不授权继续\",\n        \"Authorize and continue\": \"授权并继续\",\n    },\n    \"regexp\": [\n        [/(\\d+) permissions? requested/, \"要求 $1 项权限\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"developer/register\"] = { // 开发者注册\n    \"static\": {\n        // https://github.com/developer/register\n            // 标题\n                \"Register for the\": \"注册\",\n                \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"The best way to integrate with GitHub.\": \"与 GitHub 集成最佳方法。\",\n            // 注册表单\n                \"Select an account\": \"选择账户\",\n                    \"Select an account to register\": \"选择一个账户进行注册\",\n                    \"You don’t belong to any organizations.\": \"您不属于任何组织。\",\n                    \"Create Organization\": \"创建组织\",\n                    \"Support email address\": \"技术支持电子邮件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用户联系您寻求支持的电子邮件地址。\",\n                \"Product or company website\": \"产品或公司网站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"与 GitHub 集成的产品、公司或服务的网址。\",\n                    \"Website can't be blank\": \"网站不能为空\",\n            // 免责声明\n                \"By clicking “Register for the GitHub Developer Program” below, you agree to the\": \"点击 “注册 GitHub 开发者计划”，表示您已阅读并同意\",\n                \"developer terms of service\": \"开发者服务条款\",\n                \"and the\": \"和\",\n                \"privacy statement\": \"隐私声明\",\n                \". We’ll occasionally send you account related emails.\": \"。我们会偶尔向您发送与账户相关的电子邮件。\",\n\n            \"Register for the GitHub Developer Program\": \"注册 GitHub 开发者计划\",\n\n            \"Program Benefits\": \"开发者权益\",\n                \"Notification of API changes\": \"API 更改通知\",\n                \"Early access eligibility on select features\": \"获得部分功能的抢先体验资格\",\n                \"Eligibility for development licenses for GitHub products\": \"获得 GitHub 产品的开发许可资格\",\n                \"GitHub profile membership badge\": \"GitHub 个人资料成员徽章\",\n                \"Learn more about the program\": \"了解更多关于 GitHub 开发者计划的信息\",\n    },\n    \"regexp\": [ // 正则匹配\n    ],\n};\n\nI18N[\"zh-CN\"][\"features\"] = {\n    \"static\": {\n        \"The tools you need to build what you want.\": \"构建您想要的内容所需的工具。\",\n        // 看板\n        \"Experience AI\": \"体验 AI\",\n            \"with Copilot Chat\": \"通过 Copilot\",\n            \"The latest GitHub\": \"最新 GitHub\",\n            \"previews\": \"预览\",\n        // 流水图\n        \"Collaborative\": \"协作\",\n            \"Coding\": \"编程\",\n        \"Contribute to projects quickly with automatic environment setup.\": \"通过自动环境设置快速为项目做出贡献。\",\n        \"Make sure you see the changes you care about.\": \"确保您看到您关注的变化。\",\n        \"Build community around your code.\": \"围绕您的代码建立社区。\",\n        // 列表\n            // 代码空间\n                \"Spin up fully configured dev environments in the cloud with the full power of your favorite editor.\": \"在云端启动完全配置的开发环境，并利用您最喜爱的编辑器的全部功能。\",\n            // GitHub Copilot\n                \"With GitHub Copilot, get suggestions for whole lines or entire functions right inside your editor.\": \"使用GitHub Copilot，在您的编辑器内部即可获得整行代码或整个函数的建议。\",\n            // 拉取请求\n                \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允许贡献者轻松地通知您他们已经推送到仓库的变更——访问权限限制在您指定的贡献者。轻松合并您接受的更改。\",\n            // 讨论\n                \"Dedicated space for your community to come together, ask and answer questions, and have open-ended conversations.\": \"为您的社区提供一个专门的空间，以便聚集在一起，提问和回答问题，以及进行开放式的交流。\",\n            \"Code search & code view\": \"代码搜索 & 代码审查\",\n                \"Our powerful new code search and code view enable developers to rapidly search, navigate, and understand code right from GitHub.com.\": \"我们强大的新代码搜索和代码查看功能，使开发者能够从GitHub.com上快速搜索、导航并理解代码。\",\n            // 通知\n                \"Get updates on the GitHub activity you've subscribed to. Use the notifications inbox to customize, triage, and manage your updates.\": \"获取您订阅的 GitHub 活动更新。使用通知收件箱来自定义、分类和管理您的更新。\",\n            \"Code reviews\": \"代码审查\",\n                \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"审查新代码，查看视觉代码更改，并通过自动化状态检查自信地合并代码更改。\",\n            \"Code review assignments\": \"代码审查分配\",\n                \"Assign code reviews to make it clear which team members should submit their review for a pull request.\": \"分配代码审查，明确哪些团队成员应该为拉取请求提交他们的审查。\",\n            \"Code owners\": \"代码所有者\",\n                \"Automatically request reviews–or require approval—by selected contributors when changes are made to sections of code that they own.\": \"当对他们拥有的代码部分进行更改时，自动请求选定贡献者的审查，或者要求他们的批准。\",\n            \"Draft pull requests\": \"起草拉取请求\",\n                \"Use a pull request as a way to discuss and collaborate, without submitting to formal review or risking an unwanted merge.\": \"使用拉取请求作为一种讨论和协作的方式，无需提交正式审查或冒不必要合并的风险。\",\n            \"Protected branches\": \"保护分支\",\n                \"Enforce restrictions on how code branches are merged, including requiring reviews, or allowing only specific contributors to work on a particular branch.\": \"强制限制代码分支的合并方式，包括要求审查，或者只允许特定贡献者在某个特定分支上工作。\",\n            \"Team reviewers\": \"团队审查人员\",\n                \"Request a team on GitHub to review your pull request. Members of the team will get a notification indicating that you've asked for their review.\": \"在 GitHub 上请求一个团队审查您的拉取请求。团队成员将收到通知，表明您已经要求他们进行审查。\",\n            \"Multiple assignees\": \"多人分配\",\n                \"Assign up to 10 people to work on a given issue or pull request, letting you more easily track who's working on what.\": \"可指派多达 10 人处理特定问题或拉取请求，让您更容易追踪谁在处理什么。\",\n            \"Multiple reviewers\": \"多人审查\",\n                \"Request review from multiple contributors. Requested reviewers will be notified that you've asked for their review.\": \"请求多个贡献者进行审查。被请求的审核者将收到通知，告知您已请求他们进行审查。\",\n            \"Multi-line comments\": \"多行评论\",\n                \"Clarify code reviews by referencing or commenting on multiple lines at once in a pull request diff view.\": \"通过在拉取请求差异视图中一次引用或评论多行代码，来澄清代码审查。\",\n            \"Public repositories\": \"公共仓库\",\n                \"Work with any GitHub member on code in a public repository you control. Make changes, open a pull request, create an issue, and more.\": \"与任何 GitHub 成员合作在您控制的公共仓库中的代码。进行更改，打开一个拉取请求，创建一个问题等等。\",\n            \"Dark mode\": \"深色模式\",\n                \"Choose how you experience GitHub with theme settings. Swap to dark theme or default to your system preferences.\": \"通过主题设置来选择您使用 GitHub 的方式。切换到深色主题或默认使用您的系统偏好设置。\",\n    },\n    \"regexp\": [\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Features · GitHub\": \"GitHub 特点 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"status\"] = { // GitHub Status\n    \"static\": {\n        // https://www.githubstatus.com/\n            \"Help\": \"帮助\",\n            \"Community\": \"社区\",\n            \"Subscribe To Updates\": \"订阅更新\",\n                \"Subscribe to status updates\": \"订阅状态更新\",\n                    // 邮件\n                    \"Get email notifications whenever GitHub\": \"您会收到电子邮件通知每当 GitHub\",\n                        \"creates\": \"创建\",\n                        \"updates\": \"更新\",\n                        \"resolves\": \"解决\",\n                        \"an incident.\": \"某个事件时。\",\n                    \"Email address:\": \"邮件地址\",\n                        \"Subscribe via Email\": \"通过邮件订阅\",\n                        \"Subscribing...\": \"订阅中…\",\n                    \"By subscribing you agree to our\": \"订阅即表示您同意我们的\",\n                        \"Privacy Policy\": \"隐私政策\",\n                        \"This site is protected by reCAPTCHA and the Google\": \"本网站受 reCAPTCHA 保护，适用 Google\",\n                        \"Terms of Service\": \"服务条款\",\n                        \"apply.\": \"。\",\n                    // 电话\n                        \"Get text message notifications whenever GitHub\": \"您会收到短信通知每当 GitHub\",\n                        \"Country code:\": \"国家代码：\",\n                        \"Phone number:\": \"电话号码：\",\n                        \"Subscribe via Text Message\": \"通过短信订阅\",\n                        \"Message and data rates may apply. By subscribing you agree to our\": \"信息和数据费率可能适用。订阅即表示您同意我们的\",\n                            \"the\": \" \",\n                            \", and the\": \"和\",\n                            \". This site is protected by reCAPTCHA and the Google\": \"。本网站受 reCAPTCHA 保护，适用 Google\",\n                    // Slack\n                        \"Get incident updates and maintenance status messages in Slack.\": \"在 Slack 中获取事件更新和维护状态信息。\",\n                        \"Subscribe via Slack\": \"通过 Slack 订阅\",\n                        \"By subscribing you acknowledge our\": \"通过订阅，您承认我们的\",\n                        \". In addition, you agree to the Atlassian\": \"。此外，您同意 Atlassian\",\n                        \"Cloud Terms of Service\": \"云服务条款\",\n                        \"and acknowledge Atlassian's\": \"并承认 Atlassian 的\",\n                    // Web 钩子\n                        \"Get webhook notifications whenever GitHub\": \"您会收到 Web 钩子每当 GitHub\",\n                            \"an incident,\": \"一个事件，\",\n                            \"an incident or\": \"一个事件或\",\n                            \"changes\": \"更改\",\n                            \"a component status.\": \"组件状态时。\",\n                        \"Webhook URL:\": \"Web 钩子 URL\",\n                            \"The URL we should send the webhooks to\": \"我们应将 Web 钩子发送到的 URL\",\n                        \"We'll send you email if your endpoint fails\": \"如果您的终端出现故障，我们将向您发送电子邮件\",\n                        \"Subscribe\": \"订阅\",\n                    // X\n                        \"Follow @githubstatus\": \"关注 @githubstatus\",\n                        \"view our profile\": \"查看我们的简介\",\n                    // 支持网站\n                        \"Visit our\": \"访问\",\n                        \"support site\": \"支持站点\",\n                    // 播客\n                        \"Get the\": \"获取\",\n                        \"Atom Feed\": \"Atom 反馈\",\n                        \"RSS Feed\": \"RSS 反馈\",\n            \"Current Status: GitHub.com\": \"当前状态：GitHub.com\",\n            \"All Systems Operational\": \"所有系统运行正常\",\n            \"Normal\": \"正常\",\n                \"Operational\": \"运行\",\n            \"Incident\": \"故障\",\n                \"Major Outage\": \"重大故障\",\n            \"Degraded\": \"降级\",\n                \"Partial Outage\": \"部分中断\",\n            \"Maintenance\": \"维护\",\n                \"Under Maintenance\": \"维护中\",\n            \"Git Operations\": \"Git 操作\",\n                \"Performance of git clones, pulls, pushes, and associated operations\": \"git 克隆、拉取、推送和相关操作的性能\",\n            \"API Requests\": \"API 请求\",\n                \"Requests for GitHub APIs\": \"GitHub API 请求\",\n            \"Webhooks\": \"Web 钩子\",\n                \"Real time HTTP callbacks of user-generated and system events\": \"实时 HTTP 回调用户生成的事件和系统事件\",\n            // 议题\n                \"Requests for Issues on GitHub.com\": \"GitHub.com 上的议题请求\",\n            \"Pull Requests\": \"拉取请求\",\n                \"Requests for Pull Requests on GitHub.com\": \"GitHub.com 上的拉取请求\",\n            // 操作\n                \"Workflows, Compute and Orchestration for GitHub Actions\": \"GitHub 操作的工作流、计算和协调\",\n            // 软件包\n                \"API requests and webhook delivery for GitHub Packages\": \"GitHub 软件包的 API 请求和 Web 钩子发送\",\n            // Github Pages\n                \"Frontend application and API servers for Pages builds\": \"用于页面构建的前端应用程序和应用程序接口服务器\",\n            // 代码空间\n                \"Orchestration and Compute for GitHub Codespaces\": \"GitHub 代码空间的协调与计算\",\n            \"For the status of GitHub Enterprise Cloud - EU, please visit:\": \"有关欧盟版 GitHub 企业云的状态，请访问\",\n            \"For the status of GitHub Enterprise Cloud - Australia, please visit\":\"有关澳大利亚版 GitHub 企业云的状态，请访问\",\n            \"For the status of GitHub Enterprise Cloud - US, please visit\":\"有关美国版 GitHub 企业云的状态，请访问\",\n            \"Current Status\": \"当前状态\",\n            \"Incident History\": \"历史事故\",\n\n        \"Codespaces Scheduled Maintenance\": \"代码空间计划维护\",\n\n        \"Subscribe to our developer newsletter\": \"订阅我们的开发者新闻\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"获取提示、技术指南和最佳实践。每月两次。直接发送到您的收件箱。\",\n\n\n        // https://www.githubstatus.com/history\n            \"Incident with Packages\": \"软件包事故\",\n            \"Incident with Issues\": \"议题事故\",\n            \"Incident with Codespaces\": \"代码空间事故\",\n            \"Incident with Copilot\": \"Copilot 事故\",\n            \"Incident with Pull Requests\": \"拉取请求事故\",\n            \"Incident with Git Operations\": \"Git 操作事故\",\n            \"Incident with API Requests\": \"API 请求事故\",\n            \"Incident with Actions\": \"操作事故\",\n            \"Incident with Pages\": \"Pages 事故\",\n            \"Incident with Webhooks\": \"Web 钩子事故\",\n            \"We are investigating reports of degraded performance.\": \"我们正在调查性能下降的报告。\",\n            \"This incident has been resolved.\": \"此事故已解决。\",\n            \"Disruption with some GitHub services\": \"某些 GitHub 服务中断\",\n            \"+ Show All\": \"+ 展开全部\",\n            \"Incidents\": \"个事故\",\n            \"- Collapse Incidents\": \"- 收起事故\",\n            \"Current status\": \"当前状态\",\n            \"No incidents reported for this month.\": \"本月无事故报告。\",\n\n        // https://www.githubstatus.com/incidents/xxxxxxxxxxxx\n            \"Incident Report for GitHub\": \"GitHub 事故报告\",\n            \"Resolved\": \"解决\",\n            \"Investigating\": \"调查\",\n            \"Posted\": \"更新\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-CN\"][\"skills\"] = { // https://skills.github.com/\n    \"static\": { // 静态翻译\n        \"GitHub Skills\": \"Github 技能\",\n            \"Learn how to use GitHub with interactive courses designed for beginners and experts.\": \"通过专为初学者和专家设计的互动课程，学习如何使用 GitHub。\",\n            \"Start with\": \"开始于\",\n                \"Introduction to GitHub\": \"GitHub 介绍\",\n        \"Our courses\": \"我们的课程\",\n            \"First day on GitHub\": \"第一天\",\n                // Github介绍\n                    \"Get started using GitHub in less than an hour.\": \"在不到一个小时的时间内开始使用 GitHub。\",\n                \"Communicate using Markdown\": \"使用 Markdown 交流\",\n                    \"Organize ideas and collaborate using Markdown, a lightweight language for text formatting.\": \"使用 Markdown（一种用于文本格式的轻量级语言）组织想法和协作。\",\n                // Github Pages\n                    \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 从 GitHub 仓库创建站点或博客。\",\n            \"First week on GitHub\": \"第一周\",\n                \"Review pull requests\": \"审查拉取请求\",\n                    \"Collaborate and work together on GitHub.\": \"在 GitHub 上协作。\",\n                \"Resolve merge conflicts\": \"解决合并冲突\",\n                    \"Learn why conflicts happen and how to resolve them.\": \"了解冲突发生的原因以及如何解决冲突。\",\n                \"Release-based workflow\": \"基于发行版的工作流\",\n                    \"Practice a release-based workflow and explore branching strategies.\": \"练习基于发布的工作流程，探索分支策略。\",\n                \"Connect the dots\": \"连接信息\",\n                    \"Find relevant conversations, commits, and projects in a repository.\": \"查找仓库中的相关对话、提交和项目。\",\n                \"Code with Codespaces\": \"使用代码空间编程\",\n                    \"Develop code using GitHub Codespaces and Visual Studio Code.\": \"使用 GitHub 代码空间和 Visual Studio Code 开发代码。\",\n                \"Code with Copilot\": \"使用 Copilot 编程\",\n                    \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、代码空间和 VS Code，利用人工智能驱动的代码建议进行开发。\",\n            \"Automate workflows with GitHub Actions\": \"使用 GitHub 操作自动执行工作流程\",\n                \"Hello GitHub Actions\": \"您好 GitHub 操作\",\n                    \"Create a GitHub Action and use it in a workflow.\": \"创建 GitHub 操作并在工作流程中使用。\",\n                \"Test with Actions\": \"使用操作测试\",\n                    \"Create workflows that enable you to use Continuous Integration (CI) for your projects.\": \"创建工作流程，使您能够在项目中使用持续集成 (CI)。\",\n                \"Publish packages\": \"发布软件包\",\n                    \"Use GitHub Actions to publish your project to a Docker image.\": \"使用 GitHub 操作将项目发布为 Docker 镜像。\",\n                \"Deploy to Azure\": \"部署到 Azure\",\n                    \"Create a deployment workflow using GitHub Actions and Microsoft Azure.\": \"使用 GitHub 操作和 Microsoft Azure 创建部署工作流程。\",\n                \"Write JavaScript actions\": \"编写 JavaScript 操作\",\n                   \"Write your own GitHub JavaScript Action.\": \"编写自己的 GitHub JavaScript 操作。\",\n                \"Reusable workflows\": \"可重复使用的工作流程\",\n                    \"Make a workflow reusable in other workflows.\": \"让一个工作流程可在其他工作流程中重复使用。\",\n            \"Code security and analysis\": \"代码安全和分析\",\n                \"Secure your repository supply chain\": \"确保您的仓库供应链安全\",\n                    \"Secure your supply chain, patch dependency vulnerabilities.\": \"确保供应链安全，修补依赖性漏洞。\",\n                \"Secure code game\": \"安全代码游戏\",\n                    \"Learn about software security in a fun, educational environment.\": \"在寓教于乐的环境中学习软件安全知识。\",\n                \"Introduction to CodeQL\": \"CodeQL 简介\",\n                    \"Learn how to enable CodeQL to secure your code.\": \"了解如何启用 CodeQL 以确保代码安全。\",\n                \"Change commit history\": \"更改提交历史\",\n                    \"A skills course on changing the commit history with Git.\": \"使用 Git 更改提交历史的技能课程。\",\n                \"Introduction to secret scanning\": \"安全扫描介绍\",\n                    \"Enable secret scanning and take a feature tour.\": \"启用安全扫描并进行功能导览。\",\n            // 底部提示框\n            \"Have an idea for a course? Build your own with our quickstart guide.\": \"有课程想法？使用我们的快速入门指南，创建您自己的课程。\",\n                \"View quickstart guide\": \"查看快速入门指南\",\n\n            //底部栏\n            \"Expert Services\": \"专家服务\",\n\n        // 快速入门指南 https://skills.github.com/quickstart\n        \"GitHub Skills Quickstart Guide\": \"GitHub 技能快速入门指南\",\n            \"Build your own GitHub Actions-powered courses in a few simple steps.\": \"只需几个简单的步骤，就能构建自己的由 GitHub 操作驱动的课程。\",\n            \"This guide covers planning your course, building your course, and best practices for GitHub Actions-powered courses.\": \"本指南包括规划课程、构建课程以及由 GitHub 操作驱动的课程的最佳实践。\",\n            \"Take a look at our\": \"查看我们的\",\n            \"courses for examples and templates.\": \"课程，了解示例和模板。\",\n        \"Table of contents\": \"目录\",\n        \"Author prerequisites\": \"作者必备条件\",\n            \"Course authors should be familiar with\": \"课程作者在开始制作自己的课程之前，应熟悉\",\n            \"GitHub Actions\": \"GitHub 操作\",\n            \"before starting to make their own courses.\": \"。\",\n            \"Some courses will require knowledge of\": \"部分课程需要了解\",\n            \"command line\": \"命令行\",\n        \"Planning your course\": \"规划课程\",\n            \"Write down your learning goals\": \"写下学习目标\",\n                \"Does your course give the learner something practical to work on?\": \"您的课程是否为学员提供了实用的学习内容？\",\n                    \"Learners prefer working on real projects over examples.\": \"相比示例，学员更喜欢实际项目。\",\n                    \"How can the learner use this project after they finish the course?\": \"完成课程后，学员如何使用该项目？\",\n                \"What specific skill does the learner leave your course with?\": \"学员在结束课程后能掌握哪些具体技能？\",\n                    \"Focus on what the learner will be able to do after they complete the course.\": \"重点是学员在完成课程后能够做什么。\",\n                \"Is an Actions-based course right for your goal?\": \"基于操作的课程适合您的目标吗？\",\n                    \"Does the learning experience benefit from step-by-step, in-repository learning?\": \"学习体验是否得益于循序渐进的库内学习？\",\n            \"Outline your steps\": \"概述步骤\",\n                \"Does this workflow match what the learner will do in the “real world”?\": \"这一工作流程是否与学员在“真实世界”中要做的事情相匹配？\",\n                    \"If you were teaching your friend, how would you interact with them in the repository?\": \"如果您在教您的朋友，您会如何在仓库中与他们互动？\",\n                    \"Does each step build towards the skills you’ve identified?\": \"每一步是否都是为了培养您所确定的技能？\",\n                \"Can you teach the skill in three to five small steps?\": \"您能分三到五个小步骤教授技能吗？\",\n                    \"Most learners tend to drop off after 30-45 minutes.\": \"大多数学员往往在 30-45 分钟后就会放弃学习。\",\n                    \"We’ve found that it takes learners about four times the length of an expert to complete a course.\": \"我们发现，学员完成一门课程所需的时间大约是专家的四倍。\",\n                    \"If your course needs more steps, consider splitting your learning objective into multiple courses.\": \"如果您的课程需要更多的步骤，可以考虑将学习目标分成多个课程。\",\n                \"Does the order of the steps build the learner’s knowledge in each step?\": \"步骤的顺序是否有助于学员掌握每个步骤的知识？\",\n                    \"Each step should reference and build on the knowledge in the previous steps.\": \"每个步骤都应参考和借鉴前几个步骤的知识。\",\n                \"Does each step relate to the main learning goal?\": \"每个步骤都与主要学习目标相关吗？\",\n                    \"You can use GitHub Actions and GitHub CLI to automate any needed steps that don’t build towards the learning goal.\": \"您可以使用 GitHub 操作和 GitHub CLI 自动执行任何不需要的步骤，以实现学习目标。\",\n        \"Set up your repository\": \"设置仓库\",\n            \"Start by clicking “Use this template” on our\": \"点击 “使用此模板” 开始。\",\n                \"course template\": \"课程模板\",\n            \"Check the box for “Template repository” either when setting up your repository, or\": \"在创建仓库时或在\",\n                \"in the repository settings\": \"仓库设置\",\n                \"afterwards. Actions\": \"中勾选 “模板版本库” 复选框。复刻仓库中操作\",\n                \"are not enabled by default\": \"默认不启用\",\n                \"in forks.\": \"。\",\n            \"Add a 1280×640 social image. Learners will share your course on different websites that will pull in the social image.\": \"添加一张 1280×640 的社交图片。学员将在不同网站上分享您的课程，而这些网站将调入社交图片。\",\n            \"Enable the automatically delete head branches\": \"启用自动删除头部分支设置\",\n                \"setting.\": \"。\",\n            \"Add a LICENSE file to your repository\": \"在仓库中添加 LICENSE 文件。\",\n                \". GitHub uses Creative Commons Attribution 4.0 International.\": \"GitHub 采用知识共享署名 4.0 国际协议。\",\n            \"Add a\": \"添加一个\",\n                \"file\": \"文件。\",\n                \". You can see an\": \"您可以查看\",\n                \"example\": \"示例\",\n                \". We recommend at minimum ignoring operating system generated files.\": \" 文件。我们建议至少忽略操作系统生成的文件。\",\n            \"Include\": \"将\",\n                \"in the\": \"包含于\",\n                \"repository topics\": \"仓库主题内\",\n        \"Writing your README\": \"编写自述文件\",\n            \"Your README file will have a few sections: a header, a start step, three to five workflow steps, a finish step, and a footer.\": \"README 文件将包含几个部分：页眉、开始步骤、三到五个工作流程步骤、结束步骤和页脚。\",\n            \"The raw source of the README in\": \" \",\n                \"includes many comments you can use to guide the development of your course’s README file.\": \"中的 README 源码包含了许多注释，您可以用来指导课程 README 文件的开发。\",\n            \"Writing your README: Header\": \"编写自述文件：页眉\",\n                \"Start with a short paragraph describing what you’ll teach. Be sure to include information on how the course is relevant to the learner. This paragraph should answer the question, “Why should I take this course?”\": \"首先用一小段文字描述您的教学内容。请务必说明课程与学员的相关性。这一段应该回答“我为什么要学习这门课程？”\",\n                \"Include the course title in sentence case, and a concise description in emphasis.\": \"用句子大小写写上课程名称，并用着重号简明扼要地描述。\",\n            \"Writing your README: Start\": \"编写自述文件：开始\",\n                \"A brief paragraph should describe the goal of the course, what the learner will learn, and why they should take the course.\": \"请用简短的一段文字说明课程的目标、学员将学到什么以及为什么要学习该课程。\",\n                \"A brief list of the following items can help the learner decide if the course is right for them:\": \"以下项目的简要列表可以帮助学习者确定该课程是否适合他们：\",\n                    \"Who is this for\": \"这是给谁学的\",\n                    \"What you’ll learn\": \"学习内容\",\n                    \"What you’ll build\": \"构建内容\",\n                    \"Prerequisites\": \"先决条件\",\n                    \"How long the course is (time and steps)\": \"课程有多长（时间和步骤）\",\n                \"Include clear directions on how to start the course.\": \"包括有关如何开始课程的明确说明。\",\n            \"Writing your README: Steps\": \"编写自述文件：步骤\",\n                \"Each step should:\": \"每个步骤都应该\",\n                \"Acknowledge the learner completed the previous step, using emphasis (italics).\": \"使用强调（斜体）来确认学习者已完成上一步。\",\n                \"Concisely describe the concept behind the next step. Link to GitHub docs for more in-depth explanation.\": \"简明描述下一步背后的概念。链接到 GitHub 文档以获取更深入的解释。\",\n                \"Describe what the learner is about to do\": \"描述学习者将要做什么\",\n                \"Mark the activity with\": \"标记活动使用\",\n                \"Use an ordered list to briefly describe what the learner needs to do\": \"使用有序列表简要描述学习者需要做什么\",\n                \"Let the learner know it will need about 20 seconds and refresh to move on to the next step\": \"让学习者知道大约需要 20 秒，然后刷新即可进入下一步\",\n                \"Include warning and troubleshooting information if the learner gets stuck\": \"如果学习者遇到困难，请提供警告和故障排除信息\",\n                \"Try to keep your formatting consistent so the learner can more easily find what they are looking for.\": \"尽量保持格式一致，以便学员可以更轻松地找到他们要查找的内容。\",\n                \"The first step is the hardest, so pick something easy! On the first step, encourage users to open new tabs for steps.\": \"第一步是最难的，所以要选择简单的步骤！在第一步，鼓励用户打开新的标签页进行操作。\",\n            \"Writing your README: Finish\": \"编写自述文件：结束\",\n                \"In the finish section,\": \"在结束部分，\",\n                \"Celebrate that the learner finished the course\": \"庆祝学习者完成课程\",\n                \"Include an celebratory image\": \"附上一张庆祝图片\",\n                \"Review what the learner just did\": \"回顾学习者刚刚做的事情\",\n                \"Provide next steps for learners who want to know more\": \"为想要了解更多信息的学习者提供后续步骤\",\n                \"Invite feedback about the course\": \"邀请学习者对课程提出反馈\",\n            \"Writing your README: Footer\": \"编写自述文件：页脚\",\n                \"Include a link for how learners should get help if they get stuck or have further questions\": \"如果学习者遇到困难或有进一步的问题，可通过链接了解如何获得帮助\",\n                \"Include a link to the GitHub status page. If GitHub Actions is down, the course won’t work.\": \"包含指向 GitHub 状态页面的链接。如果 GitHub 操作崩溃，课程将无法运行。\",\n                \"Include copyright information and a link to the license\": \"包含版权信息和许可证链接\",\n                \"Include Code of Conduct and other contributing information\": \"包含行为准则和其他有效信息\",\n                \"The footer should not be included in the finish section. The footer should appear regardless of which step the learner is currently on.\": \"结束部分不应包含页脚。无论学员当前处于哪个步骤，都应显示页脚。\",\n        \"Writing your Actions workflow files\": \"编写操作工作流程文件\",\n            \"Writing your Actions workflow files: Connect your steps to GitHub Actions events\": \"编写操作工作流程文件：将步骤连接到 GitHub 操作事件\",\n               \"Every step will have an Actions workflow file that triggers on\": \"每个步骤都会有一个根据\",\n               \"GitHub Actions events\": \"GitHub 操作事件\",\n               \". Start by reviewing which event corresponds with each of your steps.\": \"触发的操作工作流文件。首先查看每个步骤对应的事件。\",\n            \"Writing your Actions workflow files: Identify what GitHub Actions will need to do in each step\": \"编写操作工作流程文件：确定 GitHub 操作在每个步骤中需要做的事情\",\n                \"You can use\": \"您可以在操作工作流中使用\",\n                \"in your Actions workflows to perform almost any GitHub interaction you can think of. Write down everything each step will need to do to complete the step. Store links for reference as your work on your course.\": \"来执行您能想到的几乎所有 GitHub 交互操作。写下完成每个步骤需要做的所有事情。存储链接，以便在学习课程时参考。\",\n            \"Writing your Actions workflow files: Sections of the workflow file\": \"编写操作工作流程文件： 工作流程文件的各部分\",\n                \"Take a look at\": \"查看\",\n                \"for example workflow files.\": \"中的工作流程示例文件。\",\n                \"Each workflow file has the name format:\": \"每个工作流程文件的名称格式为\",\n                \", where\": \"其中\",\n                \"is the step number and\": \"是步骤编号，\",\n                \"describes the step. We recommend this format to make it easy to see the order the steps will run in.\": \"描述步骤。我们推荐使用这种格式，以便于查看各步骤的运行顺序。\",\n                \"Each workflow file will have a few sections, the name, describing comments, event trigger, job header, and steps.\": \"每个工作流程文件都有几个部分：名称、描述注释、事件触发器、任务标题和步骤。\",\n                \"The first section is the\": \"第一部分为\",\n                \"name\": \"名称\",\n                \"Next, add\": \"接下来，添加\",\n                \"comments describing\": \"注释\",\n                \"what the Actions workflow will do:\": \"，说明操作工作流要做什么：\",\n                \"Followed by the\": \"随后是\",\n                \"event trigger\": \"事件触发器\",\n                \"Next is the\": \"接下来是\",\n                \"job header\": \"任务标题\",\n                \". You can add\": \"。您可以在这里添加\",\n                \"tags to limit the scope of the event trigger here. You’ll also need to specify\": \"标签来限制事件触发的范围。您还需要指定\",\n                \"to get your Actions workflow running.\": \"，以运行操作工作流。\",\n                \"Last, we are finally in the\": \"最后，我们终于进入了操作工作流的\",\n                \"steps\": \"步骤\",\n                \"of the Actions workflow. This is the heart of the file, where you can customize your course the most.\": \"。这是文件的核心部分，在这里您可以对课程进行最大程度的自定义。\",\n                \"You may include the\": \"您可以在课程中包含\",\n                \"update step action\": \"更新步骤操作\",\n                \"in your course, however it is not fully required. You may also customize this script to meet the needs of your course.\": \"，但并非完全必需。您也可以自定义此脚本，以满足课程的需要。\",\n                \"Include thorough comments in your workflow files to describe each section. Other authors and your future self will thank you later.\": \"在您的工作流程文件中包含详尽的注释，以描述每个部分。其他作者和未来的自己都会感谢您。\",\n        \"Testing and monitoring your course\": \"测试和监控课程\",\n            \"Click on “Use this template” and run through your course on a your personal account. Does everything work? Do any actions go red?\": \"点击 “使用此模板”，然后在个人账户上运行课程。一切正常吗？是否有任何操作变红？\",\n            \"Consider asking for both technical and content review.\": \"考虑要求进行技术和内容审查。\",\n            \"Test your course with a potential learner.\": \"与潜在学员一起测试课程。\",\n            \"Check in our your course regularly for any reported issues or out-of-date information.\": \"定期检查您的课程，查看是否有任何报告的问题或过时的信息。\",\n        \"Best practices for building courses\": \"构建课程的最佳做法\",\n            \"Not everyone reads docs! Many potential course authors will use your course as an example. Make sure to include lots of comments in your README and Actions workflow files.\": \"不是每个人都会阅读文档！许多潜在的课程作者会将您的课程作为范例。请确保在您的 README 和操作工作流程文件中包含大量注释。\",\n            \"Keep everything you need in the one course repository.\": \"将您需要的一切都保存在一个课程仓库内。\",\n            \"If you need your courses to have limited access, create an organization for your courses, make your courses private, and invite the specific users that need these courses to your organization.\": \"如果您需要限制课程的访问权限，请为您的课程创建一个组织，将您的课程设为私人课程，并邀请需要这些课程的特定用户加入您的组织。\",\n            \"Consider adding a Code of Conduct, contributing guide, and issue templates.\": \"考虑添加行为准则、贡献指南和议题模板。\",\n            \"Keep the number of files and folders in the root directory short. More items in the root level means the README is further down the page.\": \"尽量减少根目录中文件和文件夹的数量。根目录中的项目越多，README 就越靠近页面底部。\",\n            \"Content\": \"内容\",\n                \"The more content you have, the more content you will have to update later. Be concise. Link to the GitHub Docs whenever you can.\": \"内容越多，以后需要更新的内容就越多。简明扼要。尽可能链接到 GitHub 文档。\",\n                \"Where does the learner go to get help? Add links to your README to let the learner know where to ask for help.\": \"学习者从哪里获得帮助？在 README 中添加链接，让学习者知道到哪里寻求帮助。\",\n                \"Make it as easy as possible for the learner to get started. Learners will give up if they don’t make some progress within a few minutes.\": \"尽可能让学员容易上手。如果学习者不能在几分钟内取得一些进展，他们就会放弃。\",\n                \"Write in casual, polite, active, and inspiring language. We’ve found courses perform better when they are more friendly.\": \"用随意、礼貌、活跃和鼓舞人心的语言写作。我们发现，当课程更具亲和力时，效果会更好。\",\n                \"Use emoji to convey a positive tone. Emoji can add to content, but use words to convey meaning.\": \"使用表情符号传达积极的语气。表情符号可以为内容锦上添花，但要用文字表达意思。\",\n                \"Check spelling and grammar.\": \"检查拼写和语法。\",\n                \"Limit use of acronyms, write out the full text instead.\": \"限制使用缩略语，而应写出全文。\",\n                \"Images can be helpful, but only when they are up-to-date.\": \"图片可以起到辅助作用，但必须是最新的。\",\n                \"Provide examples and templates to reduce how much work the learner needs to do to complete the step.\": \"提供示例和模板，以减少学员完成该步骤所需的工作量。\",\n                \"Follow the\": \"遵循\",\n                \"GitHub docs content style guide\": \"GitHub 文档内容风格指南\",\n            \"Actions workflows\": \"操作工作流程\",\n                \"You can do anything in your course that GitHub Actions can do. Review the\": \"您可以在课程中做任何 GitHub 操作能做的事。查看\",\n                \"GitHub Actions docs\": \"GitHub 操作文档\",\n                \"and some\": \"和一些\",\n                \"examples of GitHub Actions\": \"GitHub 操作示例\",\n                \"to get a feel for what all actions can do.\": \"，了解所有操作的功能。\",\n                \"If you are building a course for your own organization, you can add your own analytics or learning management system integration as part of the Actions workflows.\": \"如果您正在为自己的组织构建课程，您可以添加自己的分析或学习管理系统集成，作为操作工作流的一部分。\",\n            \"Sharing your course\": \"分享您的课程\",\n                \"Your course only matters if potential learners know about it. Where can you link to your course? If public, is social media an option?\": \"只有当潜在学员知道您的课程时，您的课程才有意义。在哪里可以链接到您的课程？如果是公开的，是否可以选择社交媒体？\",\n                \"Make sure your course includes keywords and text that someone would search for in Google and other search engines.\": \"确保您的课程中包含有人会在 Google 和其他搜索引擎中搜索的关键字和文本。\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/sponsoring\"] = { // https://github.com/orgs/<org-name>/sponsoring 赞助页\n    \"static\": {\n        //\"hasn’t sponsored any users yet.\": \"尚未赞助任何人。\",\n        \"'s sponsorships\": \" 的赞助者\",\n\n        \"Current Sponsorships\": \"当前赞助者\",\n        \"Past Sponsorships\": \"曾经赞助者\",\n\n        \"has\": \"有\",\n        \"current\": \"当前\",\n        \"past\": \"曾经\",\n        \"and\": \"和\",\n        \"sponsorship\": \"赞助者\",\n        \"sponsorships\": \"赞助者\",\n        \"Search users\": \"搜索用户\",\n        \"Name\": \"名称\",\n        \"Start date\": \"开始日期\",\n        \"Sponsor\": \"赞助\",\n\n        \"No sponsorships\": \"无赞助\",\n        \"No sponsorships to display.\": \"暂无赞助内容可显示。\",\n        \"Explore your dependencies\": \"探索你的依赖项\",\n    },\n    \"regexp\": [\n        [/([^ ]+) hasn’t sponsored any users yet./, \"$1 尚未赞助任何人。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"赞助\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"organizations/plan\"] = {\n    \"static\": {\n        \"Pick a plan for your organization\": \"为您的组织选择计划\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"repo-actions-merics-public\"] = { // 仓库 - 洞察 - 操作看板公共部分\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Period\": \"周期\",\n            \"Current week (Mon-Sun)\": \"本周（周一 ~ 周日）\",\n            \"Current month\": \"本月\",\n            \"Last month\": \"上个月\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last 90 days\": \"最近 90 天\",\n            \"Last year\": \"最近一年\",\n            \"Custom\": \"自定义\",\n\n        // 自定义日期\n            \"Custom date range (UTC)\": \"自定义日期范围(UTC)\",\n            \"Choose dates\": \"选择日期\",\n            // 日历\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n        // 筛选相关\n            \"Filter\": \"筛选\",\n                \"Search or filter\": \"搜索或筛选\",\n                \"Exclude\": \"排除\",\n            \"Download report\": \"下载报告\",\n\n        // 高级筛选窗口\n            \"Advanced filters\": \"高级筛选\",\n                \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n\n                \"Qualifier\": \"限定\",\n                \"Operator\": \"操作\",\n                    \"is not one of\": \"不包含\",\n                    \"is one of\": \"包含\",\n                    \"is\": \"是\",\n                    \"greater than\": \"大于\",\n                    \"less than\": \"小于\",\n                    \"greater than or equal to\": \"大于或等于\",\n                    \"less than or equal to\": \"小于或等于\",\n                    \"equal to\": \"等于\",\n                    \"between\": \"之间\",\n                \"Value\": \"值\",\n                    \"Make a selection\": \"请选择\",\n                    \"Select items\": \"请选择项目\",\n                    \"Filter values\": \"筛选值\",\n                    \"Enter a number\": \"键入数字\",\n                    \"Enter search text\": \"键入任意文本\",\n                        \"Me\": \"我\",\n                        \"Signed-in user\": \"已登录用户\",\n                \"Add a filter\": \"添加\",\n                    \"Text\": \"文本\",\n                \"Apply\": \"应用\",\n\n        // 关闭弹窗\n            \"Discard changes?\": \"是否放弃更改？\",\n            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n            \"Keep editing\": \"继续编辑\",\n            \"Close and discard\": \"关闭并放弃\",\n\n        // 筛选器报错窗口\n            \"Empty value for\": \"空值：\",\n            \"Text will be ignored since log searching is not yet available:\": \"由于尚未提供日志搜索功能，文本将被忽略：\",\n\n        // 工作流相关\n            \"Workflows\": \"工作流\",\n            \"Jobs\": \"作业\",\n                \"Job\": \"作业\",\n                \"Job runs\": \"作业运行\",\n                \"Runtime OS\": \"操作系统\",\n                \"Runner type\": \"运行器类型\",\n                    \"hosted\": \"托管\",\n                    \"hosted-larger\": \"大型托管\",\n                    \"self-hosted\": \"自托管\",\n                \"Runner labels\": \"运行器标签\",\n\n        // 无数据\n            \"No table data available yet.\": \"还没有数据。\",\n                \"You don't have workflows on any of your organization repositories.\": \"您的任何组织仓库中都没有工作流程。\",\n            \"Get started with GitHub Actions\": \"快速开始\",\n\n        // 工作流条目\n            \"Workflow\": \"工作流\",\n            \"Workflow runs\": \"工作流运行\",\n\n        \"of\": \"/\",\n    },\n    \"regexp\": [\n        [/Showing data from (\\d+)\\/(\\d+)\\/(\\d+) to/, \"显示数据：从$1年$2月$3日至\"],\n        [/Total (minutes|job runs) across all workflows in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'minutes': '总分钟数', 'job runs': '总工作运行数'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本周（周一 ~ 周日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上个月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定义时间段\",\n            };\n            return periodKey[period] + '该组织所有工作流程的' + typeKey[type];\n        }],\n        [/Period: (Current week \\(Mon-Sun\\)|Current month|Last month|Last 30 days|Last 90 days|Last year|Custom)/, function(all, period){\n            var periodKey = {\n                \"Current week (Mon-Sun)\": \"本周（周一 ~ 周日）\",\n                \"Current month\": \"本月\",\n                \"Last month\": \"上个月\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 90 days\": \"最近 90 天\",\n                \"Last year\": \"最近一年\",\n                \"Custom\": \"自定义\",\n            };\n            return '范围：' + periodKey[period];\n        }],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/actions/metrics/usage\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Total minutes\": \"总分钟数\",\n        \"Total job runs\": \"总工作运行\",\n\n        \"Row Actions\": \"更多\", // 暂译\n        \"View performance\": \"查看数据看板\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions usage metrics\": \"操作使用情况\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/actions/metrics/performance\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Avg job run time\": \"平均作业运行时长\",\n        \"Avg job queue time\": \"平均作业等待时长\",\n        \"Job failure rate\": \"作业失败率\",\n        \"Failed job usage\": \"作业失败次数\",\n\n        \"<1s\": \"<1秒\",\n\n        \"Avg run time minutes\": \"平均运行时长\",\n        \"Avg queue time minutes\": \"平均等待时长\",\n        \"Failure rate\": \"失败率\",\n\n        \"Has job failures\": \"作业失败率\",\n        \"Avg run time\": \"平均运行时长\",\n        \"Avg queue time\": \"平均等待时长\",\n\n        \"Row Actions\": \"更多\", // 暂译\n        \"View usage\": \"查看使用情况\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"regexp\"],\n        [/(Average run time of|Average queue time of|Failure rate across|Total minutes used across failed) jobs in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'Average run time of': '平均运行时长', 'Average queue time of': '平均等待时长', 'Failure rate across': '作业失败率', 'Total minutes used across failed': '作业失败次数'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本周（周一 ~ 周日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上个月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定义时间段\",\n            };\n            return periodKey[period] + '该组织所有工作流程的' + typeKey[type];\n        }],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1时$2分$3秒\"],\n        [/(\\d+)m (\\d+)s/, \"$1分$2秒\"],\n        [/(\\d+)m/, \"$1分钟\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions performance metrics\": \"操作数据看板\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"copilot\"] = {\n    \"static\": {\n        // 错误\n            \"Conversation failed to load\": \"加载失败\",\n                \"Reload the page\": \"重载页面。\",\n                \"to try again.\": \" \",\n        // 高级请求数已用完\n            \"You have reached your monthly limit for premium requests. Enable additional requests or switch to the default model. Limit resets on.\": \"您已达到本月高级请求的额度上限。请启用额外请求或切换到默认模型。额度将重置。\",\n            \"You have used 80% of your premium responses this month. Enable additional requests to get more usage after the limit is reached.\": \"您本月已使用 80% 的高级请求。达到限制后启用额外请求以获得更多使用量。\",\n        // 左侧边栏\n            \"New conversation\": \"新聊天\",\n            \"Close conversations\": \"关闭侧边栏\",\n            \"Open conversations\": \"打开侧边栏\",\n            \"New chat\": \"新聊天\",\n            \"Collapse\": \"折叠\",\n            \"Expand sidebar\": \"展开侧边栏\",\n\n            \"Agent sessions\": \"智能体任务\",\n            \"Agent sessions and chats\": \"智能体任务及聊天\",\n                \"No agents running\": \"无智能体运行\",\n                    \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您现在可以让 Copilot 在后台为您处理任务，创建一个供您审核的拉取请求。\",\n\n            // 时间\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Last 7 days\": \"最近 7 天\",\n                \"Last 30 days\": \"最近 30 天\",\n\n            // 无对话\n            \"No conversations yet\": \"还没有对话\",\n            \"Ask Copilot anything on the right to start your first conversation.\": \"向 Copilot 提出任何问题，开始第一次对话。\",\n\n            // 某条对话\n                \"Manage chat\": \"管理\",\n                    \"Rename\": \"重命名\",\n                        \"Rename chat\": \"重命名\",\n                    \"Share\": \"分享\",\n                    // 删除\n                        \"Delete chat\": \"删除聊天\",\n                        \"Are you sure you want to delete this chat? This action cannot be undone.\": \"您确定要删除该聊天吗？此操作无法撤销。\",\n\n        // 中间\n            \"Ask\": \"询问\",\n            // 模型选择窗\n                \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、经济高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"执行复杂任务\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Get file\": \"获取文件\",\n\n            \"Recent agent sessions\": \"最近智能体任务\",\n            \"View all\": \"查看全部\",\n                \"No sessions found. Create one by sending a prompt above.\": \"未找到会话。请通过在上方发送提示来创建一个会话。\",\n\n            // 拉取请求列表\n            \"opened\": \"打开于\",\n            \"closed\": \"关闭于\",\n            \"ago\": \"之前\",\n\n            \"Copy code\": \"复制代码\",\n            \"Copied!\": \"复制成功！\",\n\n            \"Good response\": \"点赞\",\n            \"Bad response\": \"点踩\",\n            \"Retry with…\": \"重试…\",\n\n            \"Scroll to bottom\": \"滚动至底部\",\n\n        // 右侧\n            \"Share conversation\": \"分享对话\",\n                \"Anyone with the link can view this conversation\": \"持有链接者可见\",\n                \"When shared, this conversation and future messages will be visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"分享后，该对话及后续消息将对所有拥有链接的人可见。如果包含私有仓库内容，则需具有仓库访问权限才能查看。\",\n                \"This conversation may contain private content. Viewers must have access to all referenced content.\": \"这段对话可能包含私人内容。查看者必须拥有对所有引用内容的访问权限。\",\n                \"Create link\": \"创建链接\",\n                \"Copy link\": \"复制链接\",\n                \"Delete shared link\": \"删除分享链接\",\n                \"New messages after creating a link stay private.\": \"新消息在创建链接后仍保持私密。\",\n                \"Messages up to this point are included in shared link\": \"以上内容都包含在共享链接中\",\n                \"a previous version of this conversation has been shared\": \"此对话旧版本已被共享\",\n                \"create link to share the current version of this conversation.\": \"创建链接以分享此对话的当前版本。\",\n                \"this shared link is up to date\": \"分享链接是最新的\",\n\n                \"Manage link\": \"管理链接\",\n                    \"Update link\": \"更新\",\n                        \"Update shared conversation to include most recent messages\": \"更新分享链接以包含最新信息\",\n                        \"This shared link is up to date\": \"分享链接是最新的\",\n                    \"Delete link\": \"删除\",\n                        \"Delete shared link and remove access for all users\": \"删除分享链接并移除所有用户的访问权限\",\n                \"Copy link\": \"复制链接\",\n\n            // 分享\n            \"This conversation has not yet been shared\": \"还没有分享\",\n            \"This conversation is only visible to you\": \"此对话仅您可见\",\n            \"This conversation is visible to anyone with the link\": \"此对话对任何拥有链接的人可见\",\n            \"Shared\": \"已分享\",\n            \"Conversation shared\": \"对话已分享\",\n                \"This conversation and future messages are visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"此对话及未来的消息对任何拥有链接的人都是可见的。如果包含私有仓库内容，则需要仓库访问权限才能查看。\",\n                \"Only users with access to referenced private content can view this conversation.\": \"只有有权访问相关私人内容的用户才能查看此对话。\",\n                \"This conversation is private and only visible to you. Share it to make it accessible to others with the link.\": \"此对话为私密对话，仅您自己可见。通过分享链接，其他人才能访问此对话。\",\n                \"This conversation is now shared. Anyone with the link can view it. Keep in mind that it is live and publicly accessible.\": \"此对话已共享。任何拥有该链接的人均可查看此对话。请注意，该对话为实时且公开可访问的内容。\",\n                \"Conversation link will appear here after sharing\": \"对话链接将在分享后出现\",\n                \"Only visible to you\": \"私密\",\n                \"Visible to anyone with the link\": \"拥有链接者可见\",\n\n                \"Unshare\": \"取消\",\n\n            \"Manage shared conversations\": \"管理已分享对话\",\n                \"Last updated\": \"最后更新\",\n                    // 日期走正则\n\n                    \"Copy share link\": \"复制分享链接\",\n                    \"Unshare conversation\": \"取消分享\",\n                        \"You're about to unshare the link for the following conversation:\": \"您将取消分享此对话：\",\n                        \"Once unshared, the link will no longer be accessible.\": \"取消后，此链接将失效。\",\n\n                \"Unshare all\": \"全部取消分享\",\n\n            \"Open menu\": \"菜单\",\n                \"Conversation\": \"对话\",\n                \"Prompt\": \"提示词\",\n                    \"System prompt\": \"系统提示词\",\n                        // 完整句子：GitHub Copilot 的系统提示是一系列指令，用于指导大语言模型（LLM）根据用户输入提供增强的功能并优化输出质量。\n                        \"The system prompt for\": \" \",\n                        \"is a set of instructions that guides the LLM to provide enhanced functionality and output quality based on user input.\": \"的系统提示词是一系列指令，用于指导大语言模型（LLM）根据用户输入提供增强的功能并优化输出质量。\",\n            \"Feedback and settings\": \"反馈和设置\",\n                // 反馈\n                    \"Rate your experience\": \"反馈\",\n                        // 四个表情\n                            \"Love it\": \"优\",\n                            \"It’s ok\": \"良\",\n                            \"Not great\": \"中\",\n                            \"Hate it\": \"差\",\n\n                        \"Tell us what you liked or what could be better\": \"告诉我们您喜欢什么或可以改进的地方\",\n\n                        \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"请不要包含敏感、机密或个人数据。您的匿名反馈有助于我们改进服务，根据\",\n                        \"Privacy Policy\": \"隐私政策\",\n                        \"Send\": \"发送\",\n\n            \"Upgrade to Pro\": \"升级至专业版\",\n                \"to access higher limits and premium models.\": \"以获取更高额度和高级模型。\",\n\n            \"Open panel\": \"打开面板\",\n            \"Close panel\": \"关闭面板\",\n            \"Open workbench\": \"打开工作台\",\n            \"Close workbench\": \"关闭工作台\",\n            \"Close file browser\": \"关闭文件浏览器\",\n                \"View files directly within Copilot\": \"直接在 Copilot 中查看文件\",\n                    \"Ask to generate a file or app, or use the button below to try it yourself.\": \"询问生成文件或应用程序，或使用下面的按钮自行尝试。\",\n                \"I’m feeling lucky\": \"我手气不错\",\n\n                \"More options\": \"更多\",\n                    \"Download all files\": \"下载全部\",\n                    \"Close all tabs\": \"关闭所有标签\",\n\n                \"Diff\": \"差异\",\n\n                \"Download code\": \"下载代码\",\n\n                \"lines\": \"行\",\n                \"line\": \"行\",\n\n                // 代码窗 - 底部栏\n                  \"to toggle the\": \"切换\",\n                  \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                  \"then\": \"键，然后\",\n                  \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n        // 聊天窗口\n        \"Install Copilot in your favorite code editor\": \"安装 Copilot 到您的代码编辑器\",\n            \"Copilot is available for a multitude of editors to fit your needs\": \"Copilot 可用于多种编辑器，以满足您的需求\",\n            \"Dismiss banner\": \"关闭\",\n\n            \"Remove topic\": \"移除主题\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件选项\",\n                \"Remove attachments\": \"移除附件\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n            \"Add repositories, files and spaces\": \"添加仓库，文件和空间\",\n                // 文件（夹）和符号\n                \"Select folders and files in\": \"选择文件（夹）于\",\n            \"Add attachment\": \"添加附件\",\n                \"Files and symbols…\": \"文件和符号…\",\n                    \"First attach a repository\": \"请先附加仓库\",\n                    \"Attach files and symbols\": \"附加文件和符号\",\n                        \"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的文件和符号。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Search files and symbols\": \"搜索文件和符号\",\n                        \"Current attachments\": \"当前附件\",\n                        \"Symbols\": \"符号\",\n                \"Repository…\": \"仓库…\",\n                    \"Attach a repository\": \"附加仓库\",\n                        \"Search repositories\": \"搜索仓库\",\n                        \"Fetching repositories…\": \"正在获取仓库\",\n                \"Image…\": \"图片…\",\n                    \"Only images below 3.75MB are supported\": \"仅支持小于 3.75 MB 的图片\",\n                \"Extension…\": \"扩展…\",\n                \"Extension\": \"扩展\",\n                    \"Extensions\": \"扩展\",\n                        \"Chat with your favorite tools and services\": \"使用您最喜欢的工具和服务聊天\",\n                        \"Browse the marketplace to find extensions for the tools and services you rely on\": \"浏览市场以查找您所依赖的工具和服务的扩展\",\n                        \"Browse marketplace\": \"前往市场\",\n\n                        // 不支持\n                        \"aren't supported by this model\": \"不支持此模型\",\n                        \"Switch back to the\": \"切回\",\n                        \"model or start a new conversation\": \"模型或新建对话\",\n            \"Space\": \"空间\",\n                \"Select a space\": \"选择一个空间\",\n                \"Recent spaces\": \"最近的空间\",\n                \"Filter items\": \"过滤项目\",\n                \"No spaces found\": \"没有找到空间\",\n                \"You can create a new space to get started.\": \"您可以创建一个新空间来开始。\",\n                \"Create a new space\": \"创建一个新空间\",\n            \"Send now\": \"发送\",\n\n            // 预设栏\n                \"Create issue\": \"创建议题\",\n                // 空间\n                    \"Recent\": \"最近\",\n                    \"Create a space\": \"新建空间\",\n                // 文件\n                    \"Profile README\": \"个人资料\",\n                    \"Simple calculator\": \"简易计算器\",\n                    \"Pong game\": \"乒乓球游戏\",\n                    \"Mermaid architecture overview\": \"Mermaid 架构概览\",\n                \"Write code\": \"写代码\",\n                    \"Create a profile README\": \"个人资料\",\n                    \"Generate a simple calculator\": \"简易计算器\",\n                    \"Make a Pong game\": \"乒乓球游戏\",\n                    \"Design a Mermaid architecture overview\": \"Mermaid 架构概览\",\n                // 拉取请求\n                    \"My open pull requests\": \"我打开的\",\n                    \"Summarize my latest PR\": \"总结最近\",\n                // 议题\n                    \"Issues assigned to me\": \"分配给我\",\n                    \"Create a new issue\": \"新建议题\",\n                    \"Summarize my latest issue\": \"总结最近\",\n                // Git\n                    \"Basic Git commands\": \"基本 Git 命令\",\n                    \"Git branching\": \"Git 分支\",\n                    \"Advanced Git commands\": \"高级 Git 命令\",\n\n        // 漏洞相关\n            \"Path Injection\": \"路径注入\",\n                \"Unvalidated input in path value creation risks unintended file/directory access\": \"创建路径值时输入的无效信息可能会导致意外文件/目录访问\",\n\n        \"You’ve edited\": \"您已编辑\",\n            \"Undo\": \"撤销\",\n            \"Revert\": \"回退\",\n\n        // 了解世界领先的人工智能开发工具的所有优势。\n        \"Accelerate your development speed with Copilot\": \"使用 Copilot 加快开发速度\",\n        \"Discover all the\": \"了解世界领先的人工智能开发工具的所有\",\n            \"benefits\": \"优势\",\n            \"of the world’s leading AI developer tool.\": \"。\",\n\n        \"Spaces\": \"空间\",\n\n        \"Set context once. Chat again and again\": \"一次设置上下文，反复聊天。\",\n            \"Create and share a custom Copilot experience using a collection of GitHub repositories, files, and other content.\": \"使用一组 GitHub 仓库、文件和其他内容创建并分享定制的 Copilot 体验。\",\n            \"Spaces lets you create shared research environments where you and your team can collaborate, explore topics, and exchange insights—all powered by AI-driven search and summarization.\": \"空间让您创建共享的研究环境，您和您的团队可以在其中协作、探索主题和交流见解——所有这些都得益于 AI 驱动的搜索和摘要。\",\n\n        \"Yours\": \"我的\",\n            \"Spaces you create will appear here.\": \"您创建的空间将在此显示。\",\n\n            \"Manage space\": \"管理\",\n              // 删除按钮\n                  \"Delete space\": \"删除空间\",\n                  \"Are you sure you want to delete this space? This action cannot be undone.\": \"您确定要删除吗？此操作不可撤销！\",\n\n        \"New space\": \"新建\",\n        \"Edit space\": \"编辑\",\n            \"Name\": \"名称\",\n                \"Memorable name that helps you find your space.\": \"帮助您找到空间的易记名称。\",\n\n            \"Icon\": \"图标\",\n                \"Pick a color to make your space more recognizable.\": \"选择一种颜色，让您的空间更易于识别。\",\n\n            \"Color:\": \"颜色：\",\n                \"Select a color\": \"选择颜色\",\n                    \"Filter colors\": \"筛选\",\n                    \"auburn\": \"赤褐色\",\n                    \"blue\": \"蓝\",\n                    \"brown\": \"棕\",\n                    \"coral\": \"珊瑚红\",\n                    \"cyan\": \"青\",\n                    \"gray\": \"灰\",\n                    \"green\": \"绿\",\n                    \"indigo\": \"靛蓝\",\n                    \"lemon\": \"柠檬黄\",\n                    \"lime\": \"酸橙\",\n                    \"olive\": \"橄榄绿\",\n                    \"orange\": \"橙\",\n                    \"pine\": \"松绿\",\n                    \"pink\": \"粉\",\n                    \"plum\": \"梅子\",\n                    \"purple\": \"紫\",\n                    \"red\": \"红\",\n                    \"teal\": \"蓝绿\",\n                    \"yellow\": \"黄\",\n\n            \"Owner\": \"所有者\",\n                \"Where we will store your space. Once created the space is not transferable.\": \"我们将存储您空间的位置，创建后无法转移。\",\n\n            \"Description\": \"介绍\",\n                \"(optional)\": \"（可选）\",\n                \"Displays beneath the title on your spaces overview page without impacting responses.\": \"在您的空间概览页标题下方显示，不影响回复内容。\",\n\n            \"Instructions\": \"说明\",\n                \"Changes how Copilot responds on specific questions or tasks.\": \"更改 Copilot 对特定问题或任务的回应方式。\",\n\n            \"Attachments\": \"附件\",\n                \"Add text, code files, or GitHub data to set a permanent context\": \"添加文本、代码文件或 GitHub 数据，以设置永久上下文\",\n                \"You've exceeded the size limit for this space. Remove some references to continue.\": \"您已超出此空间的大小限制。请移除一些引用以继续操作。\",\n\n                // 添加菜单\n                    \"Add files, folders...\": \"文件（夹）…\",\n                        \"Select folders and files\": \"选择文件（夹）\",\n                        \"Search for files or folders\": \"搜索文件（夹）\",\n                        \"Fetching files...\": \"获取文件中…\",\n                        \"Up to\": \"一次最多添加\",\n                        \"files can be added at a time.\": \"个文件。\",\n                        \"One or more files can't be submitted:\": \"一个或多个文件不能提交：\",\n                        \". Only supported file types are allowed.\": \"。只允许支持的文件类型。\",\n                    \"Add a text file\": \"文本文件\",\n                        // 名称\n                            \"Give the file a title\": \"文件标题\",\n                        \"Content\": \"内容\",\n                            \"Enter content here\": \"在此键入内容\",\n\n                // 文件列表\n                \"Size\": \"大小\",\n                \"Resource actions\": \"操作\",\n\n        // 空间 - 聊天\n            \"Start a new conversation\": \"开始聊天\",\n\n            \"Ask anything\": \"询问任何事\",\n\n            \"Start your first conversation using the field above\": \"用上面的输入框开始您的第一次对话\",\n            \"Start your first conversation using the input above\": \"输入文本开始您的第一次对话\",\n\n            // 右侧\n                \"Owned by\": \"所有者\",\n\n                \"View all attachments\": \"查看所有附件\",\n\n        // 智能体 https://github.com/copilot/agents\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 编程智能体现在使用更少的高级请求！\",\n                \"From now on, each session uses just one premium request.\": \"从现在起，每个会话只会使用一次高级请求。\",\n\n            \"Agents\": \"智能体\",\n\n            \"Delegate tasks to GitHub Copilot coding agent\":\"将任务委派给 GitHub Copilot 编程智能体\",\n            \"Let Copilot work independently in the background to complete tasks, and then monitor Copilot's progress.\":\"让 Copilot 在后台独立工作，完成任务后，您可以监控 Copilot 的进展。\",\n            \"This feature is not available on your current plan.\":\"此功能当前不在您的计划中。\",\n\n            \"Let Copilot tackle your TODOs\": \"让 Copilot 处理您的待办\",\n                \"Delegate tasks to GitHub Copilot coding agent to work on in the background, and then monitor Copilot's progress.\": \"将任务委派给 GitHub Copilot 编程智能体在后台处理，然后监控 Copilot 的进展。\",\n                \"Learn more about Copilot coding agent\": \"了解更多关于 Copilot 编程智能体的信息\",\n\n            // 仓库选择\n                \"Select an item\": \"选择一项\",\n                    \"Repos\": \"仓库\",\n                \"Select a branch\": \"选择分支\",\n                    \"Find a branch...\": \"查找分支...\",\n                \"default\": \"默认\",\n\n            // 自定义智能体\n            \"This repository has no custom agents\": \"此仓库没有自定义智能体\",\n                \"Custom agents are reusable instructions and tools in your repository.\": \"自定义智能体是您仓库中的可复用指令和工具。\",\n                \"Create a custom agent\": \"创建\",\n\n            \"Auto\": \"自动\",\n\n            \"Start task\": \"开始任务\",\n\n            \"Started\": \"开始于\",\n            \"Completed\": \"完成于\",\n\n            \"Recent sessions\": \"最近任务\",\n\n            \"Open\": \"打开\",\n                \"No open tasks yet. Start a new task to see it here.\": \"还没有打开的任务。开始一个新任务后即可在这里查看。\",\n                \"Failed\": \"失败\",\n                \"Ready for review\": \"准备审查\",\n                \"· Initializing pull request…\": \"· 初始化拉取请求…\",\n            \"Closed\": \"关闭\",\n                \"· started\": \"· 开始于\",\n                \"ago ·\": \"之前\",\n                \"Merged\": \"已合并\",\n\n            //\"Add a light/dark mode switcher\": \"添加浅色/深色模式切换器\",\n\n            \"You\": \"您\",\n            \"started a task\": \"开始任务\",\n            \"started work\": \"Copilot 开工\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Stop\": \"停止\",\n\n            \"View pull request\": \"查看拉取请求\",\n\n            \"revision\": \"修订\",\n\n            \"In progress\": \"进行中\",\n\n            // 评论框\n                \"Steer active session while Copilot is working\": \"在 Copilot 工作时引导活动任务\",\n\n                \"Copilot stopped work due to an error\": \"Copilot 因错误停工\",\n                    \"View detailed logs\": \"查看详细日志\",\n                    \"Copilot encountered an unknown Git error. If the problem persists, please contact GitHub Support. To retry, leave a comment on this pull request asking Copilot to try again.\": \"Copilot 遇到未知的 Git 错误。如果问题仍然存在，请联系 GitHub 支持。要重试，请在此拉取请求上留言，要求 Copilot 再试一次。\",\n\n                \"Submitting will post a pull request comment\": \"提交后将发布一个拉取请求评论\",\n\n            // 文件框\n                \"Filter files…\": \"筛选文件…\",\n                    \"Filter options\": \"筛选选项\",\n                    \"File extensions\": \"文件扩展名\",\n                    \"No extension\": \"无扩展名\",\n                    \"Vendored files\": \"引入的文件\",\n                    \"Viewed files\": \"已查看文件\",\n\n                \"Files changed\": \"更改的文件\",\n                \"Copilot is still working. Changes will automatically appear once they have been committed to the branch.\": \"Copilot 仍在工作中。更改将在提交到分支后自动显示。\",\n\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Previous file (K)\": \"上一个文件（K）\",\n                \"Next file (J)\": \"下一个文件（J）\",\n                \"Open diff view settings\": \"打开差异视图设置\",\n                    \"Compact line height\": \"自定义行高\",\n\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n                \"viewed\": \"已查看\",\n                \"Viewed\": \"已查看\",\n                \"Comment on this file\": \"评论此文件\",\n                \"View file\": \"查看文件\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由于此拉取请求中更改的文件数量较多，因此仅显示一个文件。\",\n\n            // 智能体总结页\n                \"session\": \"任务\",\n                \"sessions\": \"任务\",\n\n                \"premium\": \"高级\",\n                \"request\": \"请求\",\n                \"requests\": \"请求\",\n                \"· Last updated\": \"· 最后更新于\",\n    },\n    \"regexp\":[\n        [/Using results for “([^ ]+)” in ([^ ]+)/, \"使用 $2 中“$1”的结果\"],\n        [/(\\d+) vulnerability detected/, \"检测到 $1 个漏洞\"],\n        [/Retry with (.+)/, \"使用 $1 重试\"],\n        // 启用模型\n        [/Enable access to the latest (.+) model from ([^ ]+)./, \"允许访问 $2 最新的 $1 模型。\"],\n        [/Enable (.+)/, \"启用 $1\"],\n        [/Learn more about how GitHub Copilot serves (.+)/, \"了解更多关于 GitHub Copilot 如何为 $1 提供服务\"],\n        // 管理分享\n        [/(.+) at (\\d{1,2}):(\\d{2}) (AM|PM)/, (match, p1, p2, min, p3) =>{\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n\n            // 运行规则：非12AM照搬，PM数字加12，12AM=0\n            let hour = parseInt(p2, 10);\n            if (p3 === \"PM\" && hour !== 12) {\n                hour += 12;\n            } else if (p3 === \"AM\" && hour === 12) {\n                hour = 0;\n            }\n\n            return `${translatedDate}${hour}:${min}`;\n        }],\n        // 空间\n        [/Total percent used: (\\d+\\%)/, \"总使用率：$1\"],\n        // 智能体\n        [/(\\d+) revisions?/, \"$1 次修订\"],\n        [/No extension \\((\\d+)\\)/, \"无扩展名($1)\"],\n        [/Expand all lines: (.+)/, \"展开所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"折叠未更改行：$1\"],\n\n    ],\n    \"title\": {\n        \"static\": {\n            \"Agents · GitHub Copilot\": \"智能体 · GitHub Copilot\",\n            \"New chat · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n            \"Spaces · GitHub Copilot\": \"空间 · GitHub Copilot\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"github-copilot/code-review-waitlist\"] = {\n    \"static\": {\n        \"Copilot-powered code reviews waitlist\": \"Copilot 驱动的代码审查候补名单\",\n\n        \"Join the waitlist for Copilot-powered code reviews\": \"加入 Copilot 驱动代码审查候补名单\",\n            \"Get fast AI-powered code feedback in pull requests on GitHub.com and in Visual Studio Code. Jump from your pull request to Copilot Workspace to refine, validate and land suggestions.\": \"在 GitHub.com 和 Visual Studio Code 的拉取请求中获取由 AI 驱动的快速代码反馈。您可以直接从拉取请求跳转至 Copilot 工作区，对建议进行优化、验证并最终落实。\",\n\n        \"Join the waitlist\": \"加入等候名单\",\n            \"By signing up for the waitlist you agree to\": \"注册加入候补名单即表示您同意\",\n            \"the pre-release terms\": \"预发行条款\",\n            \". Signing up does not guarantee access. You will receive an email once you are accepted into the preview.\": \"。注册并不保证您一定能获得访问权限。如果您被纳入预览计划，我们将通过电子邮件通知您。\",\n\n        \"Admission to the preview of Copilot-powered code reviews is limited. You will receive an email if you are granted access.\": \"预览使用Copilot驱动的代码审查的名额有限。如果您获得访问权限，您将收到一封电子邮件通知。\",\n    },\n    \"regexp\":[\n        [/Thank you! ([^ ]+) is now on the waitlist/, \"感谢！$1 已加入候补名单\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"spark\"] = {\n    \"static\": {\n        // spark https://github.com/spark\n            \"Dream it.\": \"梦想它。\",\n            \"See it.\": \"看到它。\",\n            \"Ship it.\": \"交付它。\",\n\n            \"Transform ideas into full-stack intelligent apps in a snap. Publish with a click.\": \"将想法转化为全栈智能应用，一键发布。\",\n            \"Spark is currently only available to Copilot Pro+ and Enterprise users.\": \"Spark 目前仅适用于 Copilot Pro+ 和企业版用户。\",\n                \"Upgrade now to access Spark\": \"立即升级以访问 Spark\",\n\n            \"Create web apps with React and TypeScript to prototype ideas, build tools, and more\": \"使用 React 和 TypeScript 创建 Web 应用，原型化想法，构建工具等\",\n                \"Submit prompt\": \"提交提示词\",\n                \"Attach image\": \"附上图片\",\n\n            \"Recent\": \"最近\",\n                \"Favorite this spark\": \"收藏此 spark\",\n                \"Unfavorite this spark\": \"取消收藏此 spark\",\n                \"More Options\": \"更多选项\",\n            \"Favorites\": \"收藏\",\n                \"Nothing to see here… yet.\": \"这里还没有什么可看的。\",\n            \"Last updated\": \"最后更新于\",\n\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Terms of service\": \"服务条款\",\n\n        // https://github.com/spark/<user-name>/<spark-name>\n            \"All sparks\": \"所有 spark\",\n\n            // 顶部提示条\n            \"Live preview is interrupted. Try refreshing the page to reconnect.\": \"实时预览已中断。请尝试刷新页面重新连接。\",\n            \"Refresh\": \"刷新\",\n\n            // 预览区\n                \"Hm, something went wrong\": \"嗯，出了点问题\",\n                    \"Runtime error\": \"运行时错误\",\n                        \"at\": \"位于\",\n                    \"Autofix error\": \"自动修复错误\",\n\n            // 代码区\n                \"Read-only\": \"只读\",\n                \"Cannot edit in read-only editor\": \"不能在只读编辑器中编辑\",\n                \"to escape the editor.\": \"退出编辑器\",\n                \"Dismiss hint\": \"关闭提示\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 进行样式设置\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Expand file tree\": \"展开文件树\",\n                \"Copy file contents\": \"复制文件内容\",\n                \"Display options\": \"显示选项\",\n                    \"Wrap lines\": \"自动换行\",\n                    \"Hide whitespace\": \"隐藏空白字符\",\n                    \"Hide problems\": \"隐藏问题标记\",\n                    \"Show minimap\": \"显示缩略图\",\n\n            // 顶栏\n                \"Action unavailable\": \"无法执行操作\",\n                \"Action unavailable in this mode\": \"在此模式下无法执行操作\",\n                \"Action loading\": \"操作加载中\",\n                \"Select element to edit\": \"选择要编辑的元素\",\n                \"Refresh preview\": \"刷新预览\",\n                \"Show mobile view\": \"显示移动端视图\",\n                \"Exit mobile view\": \"退出移动端视图\",\n                \"Publish\": \"发布\",\n                \"Preview mode\": \"预览模式\",\n                \"Code mode\": \"代码模式\",\n                \"Why not both?\": \"为什么不两者兼得呢？\",\n                // 更多操作\n                    \"Open codespace\": \"打开代码空间\",\n                    \"Create repository\": \"创建仓库\",\n                    // 设置\n                        \"Close settings\": \"关闭设置\",\n                        \"Name\": \"名称\",\n                        \"Your spark will be published as\": \"你的 Spark 将被发布为\",\n                        \"Description\": \"描述\",\n                        \"Generated by Spark\": \"由 Spark 生成\",\n                        \"Delete spark\": \"删除 Spark\",\n                        \"Once you delete a spark, there is no going back. Please be certain.\": \"一旦删除 Spark，就无法恢复。请确认是否确定。\",\n\n            // 左侧面板\n                \"Collapse side panel\": \"折叠侧面板\",\n                \"Expand side panel\": \"展开侧面板\",\n                \"Iterate\": \"迭代\",\n                    \"What do you want to change?\": \"你想改变什么？\",\n                    // 提示词操作\n                    \"Restore\": \"还原\",\n                    \"Expand prompt\": \"展开提示词\",\n                    \"Collapse prompt\": \"折叠提示词\",\n                    \"Copy prompt\": \"复制提示词\",\n                    \"Manual edit\": \"手动编辑\",\n                    // 错误\n                    \"Fix all\": \"修复全部\",\n                    \"At\": \"在\",\n                \"Theme\": \"主题\",\n                    \"Custom theme\": \"自定义主题\",\n                    \"Select a theme\": \"选择一个主题\",\n                        \"Filter themes\": \"筛选主题\",\n                        \"Aurora Borealis\": \"极光\",\n                        \"Neon Noir\": \"霓虹黑\",\n                        \"Minimalist\": \"极简\",\n                        \"Cosmic Latte\": \"宇宙拿铁\",\n                        \"Candy Shop\": \"糖果店\",\n                        \"Neutral\": \"中性\",\n                        \"Golden Hour\": \"黄金时段\",\n                        \"Hacker Terminal\": \"黑客终端\",\n                        \"Neobrutalism\": \"新粗野主义\",\n                        \"High Contrast\": \"高对比度\",\n                        \"No themes found\": \"未找到主题\",\n                        \"Try changing the filter or selecting a different theme.\": \"尝试更改筛选条件或选择其他主题。\",\n                    \"Typography\": \"排版\",\n                        \"Sans serif\": \"无衬线\",\n                        \"Serif\": \"衬线\",\n                        \"Monospace\": \"等宽\",\n                        \"Select an item\": \"选择一项\",\n                        \"Select a font\": \"选择字体\",\n                    \"Color\": \"颜色\",\n                        \"Accent\": \"强调色\",\n                        \"Primary\": \"主色\",\n                        \"Secondary\": \"次要色\",\n                        \"Base\": \"基础色\",\n                        \"Muted\": \"柔和色\",\n                        \"Destructive\": \"危险色\",\n                        \"Card\": \"卡片\",\n                        \"Popover\": \"气泡提示\",\n                        \"Input\": \"输入框\",\n                        \"Border\": \"边框\",\n                        \"Ring\": \"聚焦环\",\n                        \"Background\": \"背景\",\n                        \"Text\": \"文字\",\n                        \"Search colors...\": \"搜索颜色...\",\n                            \"slate\": \"石板\",\n                            \"gray\": \"灰色\",\n                            \"zinc\": \"锌色\",\n                            \"neutral\": \"中性\",\n                            \"stone\": \"岩石\",\n                            \"red\": \"红色\",\n                            \"orange\": \"橙色\",\n                            \"amber\": \"琥珀\",\n                            \"yellow\": \"黄色\",\n                            \"lime\": \"酸橙\",\n                            \"green\": \"绿色\",\n                            \"emerald\": \"翡翠\",\n                            \"teal\": \"蓝绿\",\n                            \"cyan\": \"青色\",\n                            \"sky\": \"天蓝\",\n                            \"blue\": \"蓝色\",\n                            \"indigo\": \"靛蓝\",\n                            \"violet\": \"紫罗兰\",\n                            \"purple\": \"紫色\",\n                            \"fuchsia\": \"品红/紫红\",\n                            \"pink\": \"粉色\",\n                            \"rose\": \"玫瑰\",\n                        \"Show all colors\": \"显示所有颜色\",\n                        \"Hide colors\": \"隐藏颜色\",\n                    // 外观\n                        \"Border radius\": \"圆角\",\n                            \"Border radius None\": \"无圆角\",\n                            \"Border radius Small\": \"小圆角\",\n                            \"Border radius Medium\": \"中等圆角\",\n                            \"Border radius Large\": \"大圆角\",\n                            \"Border radius Full\": \"完全圆角\",\n                        \"Spacing\": \"间距\",\n                            \"Spacing None\": \"无间距\",\n                            \"Spacing Small\": \"小间距\",\n                            \"Spacing Medium\": \"中等间距\",\n                \"Data\": \"数据\",\n                    \"Add data storage by asking in the Iterate panel. View and edit the associated tables and data here.\": \"在 迭代 面板中提出需求即可添加数据存储。你可以在这里查看和编辑相关的表格与数据。\",\n                    \"rows\": \"行\",\n                    \"Edit this row\": \"编辑此行\",\n                    \"Edit value\": \"编辑值\",\n                    \"Done\": \"完成\",\n                    \"Read only\": \"只读\",\n                \"Prompts\": \"提示词\",\n                    \"Add AI capabilities by asking in the Iterate panel. View and edit the prompts powering those features here.\": \"在 Iterate 面板中提出需求即可添加 AI 能力。你可以在这里查看和编辑驱动这些功能的提示词。\",\n\n                    \"We couldn't load your data\": \"无法加载你的数据\",\n                        \"Please try again. If the problem persists, try again later.\": \"请重试。如果问题仍然存在，请稍后再试。\",\n                \"Assets\": \"素材\",\n                    \"Upload files\": \"上传文件\",\n                    \"Upload assets here or in the Iterate panel. Assets support images, documents, audio, and video. Ask in the Iterate panel to add them to your app.\": \"在此处或 迭代 面板中上传素材。素材支持图片、文档、音频和视频。在 迭代 面板中提出需求即可将它们添加到你的应用中。\",\n    },\n    \"regexp\": [\n        [/(\\d+) Errors?/, \"$1 个错误\"],\n        [/Made (\\d+) changes?/, \"做了 $1 个更改\"],\n        [/(\\d+) rows? • (.+)/, \"$1 行 • $2\"],\n        [/Delete \\((\\d+)\\)/, \"删除（$1）\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"sitemap\"] = { // 网站地图页，仅匹配公共部分\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"homepage\"][\"static\"],\n    },\n    \"regexp\":[],\n};\n\nI18N[\"zh-CN\"][\"education\"] = { // 教育页面，申请学生包会用到\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"homepage\"][\"static\"],\n        // 顶栏\n            \"Students\": \"学生\",\n            \"Teachers\": \"教师\",\n            \"Schools\": \"学校\",\n\n        \"GitHub Education\": \"GitHub 教育\",\n        \"Empowering the next generation of developers\": \"增强新一代开发人员的能力\",\n            \"GitHub Education bridges the gap between coding education and a tech career, and is accessible to everyone globally at no cost.\": \"GitHub 教育在编程教育和技术职业之间架起了一座桥梁，全球每个人都可以免费使用。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n        // 教育包申请 https://education.github.com/pack\n            // 右上角菜单\n                \"Your benefits application\": \"我的福利\",\n                \"Your GitHub.com profile\": \"我的个人资料\",\n                \"Education Docs\": \"教育文档\",\n                \"Education Support\": \"教育支持\",\n                \"Sign out of GitHub Education\": \"退出 GitHub 教育\",\n            // 顶部提示\n                \"We're still processing your application. Once this is complete you will have access to the student developer pack offers.\": \"我们仍在处理您的申请。一旦处理完毕，您就可以获得学生开发包优惠。\",\n\n            \"GitHub Student Developer Pack\": \"GitHub 学生开发包\",\n                \"Learn to ship software like a pro.\": \"学习如何像专业人士一样开发软件。\",\n                \"There's no substitute for hands-on experience. But for most students, real world tools can be cost-prohibitive. That's why we created the GitHub Student Developer Pack with some of our partners and friends.\": \"没有替代品可以代替亲身实践的经验。但对于大多数学生来说，现实世界中的工具可能成本过高。这就是为什么我们与一些合作伙伴和朋友一起创建了GitHub 学生开发包。\",\n            \"Sign up for Student Developer Pack\": \"获取学生包\",\n            \"Love the pack? Spread the word\": \"喜欢吗？分享给朋友！\",\n            // 后续内容完全用不到直接不翻\n\n            // https://education.github.com/discount_requests/application\n                \"Benefits application\": \"优惠\",\n                \"Access free GitHub Education benefits\": \"获取免费 GitHub 教育福利\",\n                    \"Complete the fields below to unlock tools and resources for your educational journey\": \"填写以下字段，为您的教育之旅解锁工具和资源\",\n\n                \"Select your role in education\": \"选择身份\",\n                    \"Teacher\": \"教师\",\n                    \"Student\": \"学生\",\n                    \"School\": \"学校\",\n\n                    // 学生\n                    \"Enhance your tech skills with real-world tools\": \"利用现实世界中的工具提高您的技能\",\n                        \"STUDENT\": \"学生\",\n                            \"FREE GitHub Pro while you are a student\": \"学生期间免费使用 GitHub 专业版\",\n                            \"Valuable GitHub Student Developer Pack partner offers\": \"宝贵的 GitHub 学生开发包合作伙伴优惠\",\n                            \"GitHub Campus Expert training for qualified applicants\": \"为合格申请者提供 GitHub 校园专家培训\",\n                        \"To qualify for student benefits, you must:\": \"您必须具备以下条件：\",\n                            \"Have a GitHub account.\": \"持有 GitHub 账号。\",\n                            \"Be at least 13 years old.\": \"大于 13 岁。\",\n                            \"Be currently enrolled in a degree or diploma granting course of study from a recognized educational institution.\": \"目前就读于认可教育机构的学位或文凭课程。\",\n                            \"Be able to provide documentation from your school which demonstrates your current student status.\": \"能够提供学校出具的证明您当前学生身份的文件。\",\n                        \"Before you begin:\": \"在开始之前：\",\n                            \"Check that you are using a\": \"检查您使用的是\",\n                                \"supported browser\": \"受支持的浏览器\",\n                                \", and that location services are not blocked by your browser or platform.\": \"，且您的浏览器或平台未阻止定位服务。\",\n                            \"Complete your GitHub account\": \"在 GitHub 帐户\",\n                                \"billing information\": \"账单信息\",\n                                \"with your full legal name as it appears on your academic affiliation documentation. (You do not have to add a payment method.)\": \"中填写您的法定全名，与您的学历证明材料上的姓名一致。(无需添加支付方式）。\",\n                            \"Verify\": \"验证\",\n                                \"your academic email address on your GitHub account, if your school provides one.\": \"您的教育邮箱于 GitHub，如果您的学校提供。\",\n                            \"Secure your GitHub account with\": \"保护您的 GitHub 账户安全，使用\",\n                                \"two-factor authentication\": \"双重身份验证\",\n                                \". (We recommend using the\": \"。（我们推荐使用\",\n                                \"app.)\": \"。）\",\n                            \"Personalize\": \"个性化\",\n                                \"your public GitHub Profile with your photo, your name, your pronouns, and more.\": \"您的 GitHub 简介，使用照片、姓名、代词等。\",\n                            \"Generate a README for your public GitHub Profile,\": \"为您的公共 GitHub 简介生成 README，\",\n                                \"customize it with your interests\": \"根据您的兴趣进行定制\",\n                                \", and publish it for the world to see.\": \"，然后公开。\",\n                        \"Offer availability:\": \"可提供优惠：\",\n                            \"All partner offers are subject to the partner company's terms and conditions and may not be available in all regions.\": \"所有合作伙伴优惠均受合作伙伴公司的条款和条件限制，可能不适用于所有地区。\",\n\n                        \"Application\": \"申请\",\n                            \"Required fields are marked with an asterisk\": \"带星号的为必填项\",\n                        \"What is the name of your school?\": \"您的学校名称\",\n                            \"Note:\": \"注：\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page.\": \"如果您的学校不在列表中，请输入学校全名并继续。下一页将要求您提供有关贵校的更多信息。\",\n                            \"A minimum of two characters is required to find your school.\": \"查找学校至少需要两个字符。\",\n                            // 窗口\n                            \"We require applicants of\": \"我们要求\",\n                            \"to use one of these school-issued email addresses to apply:\": \"的申请人使用其中一个学校发布的电子邮件地址进行申请：\",\n                            \"add and verify your\": \"添加并验证\",\n                            \"school-issued email address\": \"学校提供的电子邮件地址\",\n                            \"in your account settings – or a contact email if you do not have one. Once your email is verified, refresh this page.\": \"到您的 GitHub 账户。一旦您的电子邮件通过验证，请刷新此页面。\",\n                            \"Add an email address\": \"添加电子邮件\",\n                            // 验证通过\n                            \"You have verified the email address\": \"您已在 GitHub 上验证邮件\",\n                            \"on your GitHub account. That academic domain is associated with the school\": \"。该域名属于：\",\n                            \"Select this school\": \"选择此学校\",\n                            \"We chose this school based on your email. If this isn't your school, please\": \"我们根据您的电子邮件选择了这所学校。如果这不是您的学校，请在账户设置中\",\n                            \"add and verify another\": \"添加并验证其他\",\n                            \"in your account settings - or select another school.\": \"- 或选择其他学校。\",\n                        \"When you click \\\"Continue\\\" you will be prompted to share your location with us. Providing your current location helps us verify your affiliation with your chosen school.\": \"点击 “继续 ”后，系统会提示您与我们共享您的位置。提供您的当前位置有助于我们核实您与所选学校的关联。\",\n                        \"Continue\": \"继续\",\n\n                        // 提交历史\n                            \"You've already submitted\": \"您已提交申请\",  // 后续正则\n\n                            \"approved\": \"批准\",\n                                \"Congrats! Your request for\": \"恭喜！您的申请\",\n                                \"was approved and your benefits will be available\": \"已获批准，福利将很快发放。\",\n                                \"soon\": \"常见问题\", // 该处链接指向 https://github.com/orgs/community/discussions/111352#user-content-how-long-after-ive-been-approved-will-i-receive-my-academic-benefits\n                                \"was approved and your benefits are now available.\": \"已获批准且福利已发放。\",\n\n                            \"rejected\": \"驳回\",\n                                \"Unfortunately, we weren't able to approve your educational discount request for\": \"很遗憾，我们无法批准您的教育折扣申请：\",\n                                \"What happened?\": \"发生了什么？\",\n                                    \"Suggested proof to expedite your approval:\": \"建议提供证明，以加快审批：\",\n                                \"Have questions?\": \"有疑问？\",\n                                    \"Please seek help via our\": \"请通过我们的\",\n                                    \"Student Developer Pack Application FAQ\": \"学生开发包申请常见问题\",\n                                    \"or visit the\": \"或访问\",\n                                    \"GitHub Education Community.\": \"GitHub 教育社区。\",\n\n                            \"pending\": \"排队\",\n\n                        \"Get help\": \"获取帮助\",\n                            \"Common questions about applying for your academic discount.\": \"关于申请学术折扣的常见问题。\",\n                        // 学生\n                            \"Learn about GitHub's programs\": \"了解 GitHub 计划\",\n                        // 教师\n                            \"Discover GitHub's resources\": \"探索 GitHub 资源\",\n\n            // https://education.github.com/discount_requests/数字/additional_information\n                \"Upload proof\": \"上传证明\",\n\n                \"Upload proof of your academic status\": \"上传学籍证明\",\n                \"We need a little more proof to verify your academic status.\": \"还需要一点证明验证学籍状态。\",\n                \"What we need to see:\": \"我们需要查看：\",\n                    \"Your student ID\": \"您的学生证\",\n                        \"Your ID should\": \"您的学生证需要\",\n                        \"include a date\": \"包含日期\",\n                        \"that verifies your current enrollment. Make sure the image is clear and easy to read; if it looks blurry, please take a new photo and upload it again.\": \"，以证明您当前的注册情况。请确保图像清晰易读；如果图像模糊，请重新拍摄照片并上传。\",\n                    \"Or another form of proof\": \"或其他证明\",\n                        \"If you don't have a student ID, or it doesn't include a date, you can upload a letter on school letterhead or any documentation\": \"如果您没有学生证，或者学生证上没有日期，您可以上传一封印有学校信笺抬头的信件或任何能证明您\",\n                        \"with a date\": \"当前注册日期\",\n                        \"that demonstrates your current enrollment.\": \"的文件。\",\n\n                    \"Please upload proof of your academic status.\": \"请上传您的学籍证明。\",\n                        \"Snap a picture of your qualifying proof of current academic status using your HD webcam or smartphone camera.\": \"使用高清摄像头或智能手机摄像头拍下您当前学历的合格证明照片。\",\n                        \"Take a picture\": \"拍照\",\n                            \"Take photo\": \"拍照\",\n                            \"Reset\": \"重置\",\n                            \"Error: Could not access your webcam\": \"错误：无法访问您的网络摄像头\",\n                            \"camera2 1, facing front\": \"镜头2 1，前摄\",\n                            \"camera2 0, facing back\": \"镜头2 0，后摄\",\n                            \"Uploading…\": \"上传中…\",\n                            \"Thanks for uploading your photo. Please complete the form and submit when you're ready.\": \"感谢您上传照片。请填写表格并提交。\",\n                            // 未拍照直接提交\n                                \"Please upload proof of your current school affiliation\": \"请上传您目前所在学校的证明\",\n                                \"Please upload proof of your current school affiliation that is less than 1MB in size\": \"请上传小于 1MB 的照片\",\n                                \"Binary data can't be blank\": \"二进制数据不能为空\",\n\n                    \"Please note, your request cannot be edited once it has been submitted, so please verify your details for accuracy before sending them to us. After clicking \\\"Process my application\\\", please wait as processing can take several seconds.\": \"请注意，您的申请一经提交便无法编辑，因此在发送给我们之前，请核实您的详细信息是否准确。点击 “处理我的申请 ”后，请稍候，因为处理过程可能需要几秒钟。\",\n                        \"Process my application\": \"处理申请\",\n                        \"Processing your application\": \"处理中\",\n                        \"Processing information...\": \"处理中…\",\n\n                    // 上传失败\n                        \"Your application cannot be reviewed until you fix the following:\": \"您的申请将不被审查直到解决以下问题：\",\n                            \"You must configure your browser and operating system to allow location access. You may not use a VPN. If you believe that our information about your school is incomplete or incorrect, then please select ‘My selected school has incorrect or incomplete information e.g. domains or campus location’ option when submitting a GitHub Education support ticket.\": \"您必须配置您的浏览器和操作系统以允许位置访问。您不得使用VPN。如果您认为我们关于您学校的资料不完整或不正确，请在提交GitHub 教育支持工单时选择“我选择的学校信息有误或不完整，例如域名或校园位置”选项。\",\n                            \"Please use your device camera to submit your academic affiliation documents. If you’re having trouble using your device camera, please allow camera access for the application website on your browser. The steps for this will vary depending on which browser you are using. Information on browsers supported by GitHub can be found\": \"请使用设备摄像头提交您的学术关系文件。如果您在使用设备摄像头时遇到困难，请在浏览器上允许摄像头访问申请网站。具体步骤视您使用的浏览器而定。有关 GitHub 支持的浏览器信息，请点击\",\n                                \"here\": \"此处\",\n                                \". You may also try applying from a different computer or mobile device.\": \"。您也可以尝试换一台电脑或移动设备申请。\",\n                            \"Please ensure that your academic affiliation document contains your last name exactly as it appears in your\": \"请确保您的学籍文件中的姓氏与\",\n                                \"GitHub billing information\": \"GitHub 账单信息\",\n                                \". If you have only a single legal name, enter it in both the first and last name fields of your GitHub billing information.\": \"中的姓氏完全一致。如果您只有一个合法姓名，请在 GitHub 账单信息的姓和名栏中同时输入。\",\n                            \"The image you selected does not appear to contain your school name. Your complete school name must appear in your document, not only the school logo. You may include multiple documents together. If your official document is not in English then you may photograph the original next to an English translation.\": \"您选择的图片似乎不包含您的学校名称。文件中必须包含完整的校名，而不仅仅是校徽。您可以将多份文件放在一起。如果您的官方文件不是英文的，您可以将原件与英文翻译件放在一起拍照。\",\n                            \"Please ensure that your academic affiliation document contains your first name exactly as it appears in your\": \"请确保您的学术关系文件中的姓名与\",\n                                //\"GitHub billing information\": \"\",\n                                \". Variations of your name and nicknames are unacceptable.\": \"中的姓名完全一致。请勿使用不同的姓名和昵称。\",\n                            \"You are unlikely to be verified until you have completed your\": \"在完成\",\n                                \"GitHub user profile\": \"GitHub 用户资料\",\n                                \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通过验证。请不要使用姓名的变体或昵称。更新个人档案信息后，请退出并重新登录 GitHub，然后再重新申请。\",\n                            \"The image you captured appears to be a screen display. Please take a clear, live photo of physical documentation confirming your academic enrollment.\": \"您提供的图片似乎是屏幕显示内容。请直接拍摄纸质材料以确认您的在学状态，例如学生证、录取通知书或官方在学证明等纸质文件的原件照片。\",\n            // https://education.github.com/discount_requests/数字/completed 成功\n                \"Get benefits\": \"获取福利\",\n\n                \"Thanks for submitting!\": \"感谢提交！\",\n                    \"Be sure to check your email. If you don't hear from us within the hour, you should receive an email from us in less than\": \"请务必查看您的电子邮件。如果您在一小时内没有收到我们的回复，您应该会在\",\n                    \"5 days\": \"5 天内\",\n                    \". Have an Octotastic day!\": \"收到我们的电子邮件。祝您度过愉快的一天！\",\n\n            // https://education.github.com/onboardings/new 申请批准后出现\n                \"Welcome to GitHub Education!\": \"欢迎来到 GitHub 教育！\",\n                    \"GitHub Education offers resources and programs to help students achieve their career goals.\": \"GitHub 教育提供各种资源和计划，帮助学生实现职业目标。\",\n                    \"To get started, please answer two questions so we can add a learning path to your Education dashboard to help you with your goals.\": \"要开始学习，请回答两个问题，以便我们在您的教育仪表板上添加学习路径，帮助您实现目标。\",\n\n                \"Question 1 of 2\": \"问题 1/2\",\n                    \"In the next 4-6 months, which of the following are you hoping to accomplish? Select two that apply best.\": \"在未来 4-6 个月内，您希望实现以下哪些目标？请选择最适合的两项。\",\n                        \"Understanding how to use GitHub\": \"了解如何使用 GitHub\",\n                        \"Refining my skills in a particular topic (coding, gaming, design, big data, artifical intelligence, etc.)\": \"提高我在某一特定领域（编码、游戏、设计、大数据、人工智能等）的技能\",\n                        \"Connecting with other students who have similar interests\": \"与其他兴趣相投的学生建立联系\",\n                        \"Developing career readiness skills\": \"培养职业准备技能\",\n                        \"Two selections are required to continue.\": \"必须选两项。\",\n                \"Question 2 of 2\": \"问题 2/2\",\n                    \"Which topics are of interest to you? Select all that apply.\": \"您对哪些主题感兴趣？请选择所有适用选项。\",\n                        \"GitHub features and products\": \"GitHub 功能和产品\",\n                        \"Building a professional identity on GitHub\": \"在 GitHub 上打造专业身份\",\n                        \"Understanding emerging technologies in a particular field of interest (web development, gaming, design, data, engineering, robotics, etc.)\": \"了解特定兴趣领域（网络开发、游戏、设计、数据、工程、机器人技术等）的新兴技术\",\n                        \"Finding people, projects, and communities to connect with\": \"寻找可以联系的人、项目和社区\",\n                        \"Speaking at a conference\": \"在会议上发言\",\n                        \"Gaining skills to start a great career\": \"掌握技能，开始美好的职业生涯\",\n                \"Skip this question\": \"跳过\",\n\n                \"Here's our recommendation!\": \"这是我们的推荐！\",\n                    \"Continue with our recommended learning path for you, or select another one. Based on your selection,\": \"继续我们为您推荐的学习路径，或选择其他路径。根据您的选择，\",\n                    \"we will display a learning path on your dashboard\": \"我们将在您的仪表板上显示学习路径，\",\n                    \"to help you get started.\": \"帮助您开始学习。\",\n\n                    \"Get Started with GitHub\": \"GitHub 入门\",\n                        \"With this learning path, you will learn how to make your first profile README and find other student repositories.\": \"通过本学习路径，您将学会如何制作第一个配置文件 README 和查找其他学生资源库。\",\n                    \"Recommended\": \"推荐\",\n                    \"GitHub Deep Dive\": \"深入了解 GitHub\",\n                        \"Go deeper on how to use codespaces and the GitHub flow to create a web application.\": \"深入了解如何使用代码空间和 GitHub 流程创建网络应用程序。\",\n                    \"Continue to Dashboard\": \"在仪表板继续\",\n\n            // https://education.github.com/learner/learn\n                // 顶部提示\n                \"Your onboarding preferences have been saved!\": \"您的入职首选项已保存！\",\n                // 左侧\n                    // 左侧栏\n                        \"Open Global Navigation Menu\": \"打开全局导航菜单\",\n                            \"Student Developer Pack\": \"学生开发包\",\n\n                            \"Explore More\": \"探索更多\",\n                                \"Education Community\": \"教育社区\",\n                                \"Campus Experts\": \"校园专家\",\n                                \"Education Blog\": \"教育博客\",\n\n                    \"Your request was approved.\": \"您的申请已批准。\",\n                        \"Your benefits will be available soon.\": \"您的福利即将发放。\",\n\n                    \"Learn new skills\": \"学习新技能\",\n                        \"Access learning resources from GitHub Education.\": \"从 GitHub 教育获取学习资源。\",\n                    \"Find opportunities\": \"寻找机遇\",\n                        \"Power up your skillset with real-world projects.\": \"通过实际项目增强您的技能。\",\n                    \"Get connected\": \"获得联系\",\n                        \"Discover other learners and build your network.\": \"发现其他学习者，建立自己的网络。\",\n                // 中间\n                    \"Learning path\": \"学习途径\",\n                        \"Intro to GitHub\": \"GitHub 介绍\",\n                            \"GitHub flow is a lightweight, branch-based workflow. In this Experience you'll learn the basics of the GitHub Flow including creating and making changes to branches within a repository, as well as creating and merging pull requests. The GitHub flow is useful for everyone, not just developers.\": \"GitHub 工作流是一种基于分支的轻量级工作流。在本体验中，您将学习 GitHub 工作流的基础知识，包括创建和修改版本库中的分支，以及创建和合并拉取请求。GitHub 工作流不仅对开发人员有用，对每个人都有用。\",\n                            \"Go to Intro to GitHub\": \"前往 GitHub 介绍\",\n                        \"Primer: Codespaces\": \"入门：代码空间\",\n                            \"Wondering how to get started with Codespaces? This Primer makes it easy by giving you the templates, videos and step-by-step resources you need to get you started running, testing, debugging and pushing code using this instant cloud developer environment.\": \"想知道如何开始使用代码空间吗？本入门指南为您提供模板、视频和分步资源，让您轻松开始运行、测试、调试和推送代码。\",\n                            \"Go to Primer: Codespaces\": \"前往入门：代码空间\",\n                    \"Not what you were looking for? Check out our\": \"还没有找到您想要的？请查看我们的\",\n                        \"other learning paths.\": \"其他学习路径。\",\n\n                    \"Student Developer Pack offers\": \"学生开发包提供\",\n                        \"Your Student Developer Pack will be ready soon!\": \"您的学生开发包即将就绪！\",\n                            \"We will notify you via email when your\": \"我们将通过电子邮件通知，当您可以使用\",\n                                \"Experiences\": \"体验\",\n                                \"offers\": \"优惠\",\n                                \"become\": \" \",\n                                \"available to you.\": \"时。\",\n                        \"Popular offers you have not explored:\": \"您尚未探索的热门优惠：\",\n                            \"Explore More Offers\": \"探索更多\",\n                            \"Curated Experiences with popular offers:\": \"精选体验与热门优惠：\",\n                // 右侧\n                    // 右上角图标菜单\n                    \"Update your location\": \"更新您的位置\",\n\n                    // 看板\n                    \"Enabling Copilot\": \"启用 Copilot\",\n                        \"To ensure your free Copilot benefit is enabled, redeem by going to this link.\": \"要确保您的免费 Copilot 优惠已启用，请访问此链接进行兑换。\",\n\n                    \"Updates in Learn New Skills\": \"学习新技能的更新内容\",\n                        \"No new updates\": \"无更新\",\n\n                    \"Claimed offers\": \"已申请优惠\",\n                        \"Your explored offers failed to load, please refresh the page to see this content.\": \"加载失败，请刷新页面以查看此内容。\",\n\n            // https://education.github.com/learner/opportunities\n                \"Community Exchange\": \"社区交流\",\n                    \"Community Exchange is a collection of student repositories for teaching, learning and collaborating.\": \"社区交流是一个用于教学、学习和合作的学生资源库。\",\n                    \"Go to Community Exchange\": \"前往社区交流\",\n                \"Updates in Find Opportunities\": \"寻找机遇的更新内容\",\n\n            // https://education.github.com/learner/connect\n                \"Events\": \"事件\",\n                    \"View more events\": \"查看更多\",\n                    \"See more\": \"详情\",\n                \"GitHub Education Live\": \"GitHub 教育直播\",\n                    \"Go to Twitch\": \"前往 Twitch\",\n\n                // 右侧\n                    \"Updates in Get Connected\": \"获得联系更新内容\",\n                    \"Campus Expert\": \"校园专家\",\n                        \"Campus Experts are student leaders that strive to build diverse and inclusive technical communities.\": \"校园专家是学生领袖，他们努力建设多元化和包容性的技术社区。\",\n\n                        \"Follow your Expert\": \"关注专家\",\n                        \"Follow student leaders trained by GitHub to get help with hackathons & events\": \"关注由 GitHub 培训的学生领袖，在黑客马拉松和活动中获得帮助\",\n\n                    \"Education blog\": \"教育博客\",\n                        \"View more\": \"查看更多\",\n        // 底部\n            \"Product\": \"产品\",\n    },\n    \"regexp\":[\n        [/(\\d+) requests?/, \"$1 次\"],\n        [/Hi, ([^ ]+)! You were last verified as a on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `您好，`+ user + `！您最近于${translatedDate}验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。`;\n            // return '您好，' + user + '！您最近于' + year + '年' + monthKey[month] + day + '日验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。';\n        }],\n        [/Hi, ([^ ]+)! You were last verified as a student on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1)=> {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `您好，`+ user + `！您最近于${translatedDate}学生验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。`;\n            //return '您好，' + user + '！您最近于' + year + '年' + monthKey[month] + day + '日学生验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。';\n        }],\n        [/(Submitted|Verified since) (.+)/, (match, opt, p1) => { // p1为(.+)\n            var optKey = {\"Submitted\": \"提交于\", \"Verified since\": \"验证自\",};\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return optKey[opt] + `${translatedDate}`;\n        }],\n        //[/Verified since (.+)/, \"验证自 $1\"],\n        [/(\\d+) views?/, \"$1 次观看\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Education\": \"GitHub 教育\",\n            \"GitHub Student Developer Pack - GitHub Education\": \"GitHub 学生开发者包 - GitHub 教育\",\n            \"Community Exchange - GitHub Education\": \"社区交流 - GitHub 教育\",\n            \"Events - GitHub Education\": \"事件 - GitHub 教育\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"mcp\"] = {\n    \"static\": {\n        \"Connect models to the real world\": \"连接模型至真实世界\",\n            \"Servers and tools from the community that connect models to files, APIs, databases, and more.\": \"来自社区的服务器和工具，可以将模型连接到文件、API、数据库等。\",\n\n        \"Search MCPs\": \"搜索 MCP\",\n\n        \"All MCP servers\": \"所有 MCP 服务器\",\n            \"Install\": \"安装\",\n                \"Install in VS Code\": \"安装到 VS Code\",\n                \"Install in VS Code Insiders\": \"安装到 VS Code 测试版\",\n\n            \"By\": \"作者\",\n\n        // 具体页面\n            \"Install MCP server\": \"安装 MCP 服务器\",\n            \"Contact support\": \"获取支持\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"MCP Registry\": \"MCP 互联\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/agents\"] = {\n    \"static\": {\n        // 介绍页面\n        \"Copilot Coding Agent handles routine tasks so you can focus on core work\": \"Copilot 编程智能体处理例行任务，让您专注于核心工作\",\n            \"Save time by offloading testing, dependency upgrades, migrations and maintenance to agents. Create pull requests from Copilot Chat, CLI, IDEs or assign an Issue to Copilot to get started.\": \"将测试、依赖项升级、迁移和维护等工作交给智能体处理，节省您的时间。您可以通过 Copilot Chat、命令行、IDE 创建拉取请求，或直接将议题分配给 Copilot 来开始使用。\",\n                \"View Copilot Coding Agent capabilities\": \"查看 Copilot 编程智能体功能\",\n\n        // 免费试用提示\n        \"Available on paid plans. Try it with Copilot Pro — free for 30 days.\": \"仅在付费计划中可用。立即试用 Copilot Pro，享受 30 天免费体验。\",\n            \"Start free trial\": \"开始免费试用\",\n\n        // 左侧Tab\n        \"Created by me\": \"由我创建的\",\n        \"All sessions\": \"所有任务\",\n\n        \"Customize environment\": \"自定义环境\",\n        \"Configure\": \"自定义配置\",\n    },\n};\n"
  },
  {
    "path": "locals.js",
    "content": "/*******************************************************************************\n\n    locals.js - 搭配用户脚本插件`GitHub 中文化插件`的页面匹配规则, 翻译忽略规则,\n                词条库文件\n    Copyright (C) 2016-2021 楼教主 (https://github.com/52cik)\n    Copyright (C) 2021-当前 沙漠之子 (https://github.com/maboloshi)\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\n    Home: https://github.com/maboloshi/github-chinese\n*/\nvar I18N = {};\n\nI18N.conf = {\n\n    /**\n     * 匹配 pathname 页面的正则\n     *\n     * 注册页面 /signup\n     * 登录二步验证 /login/oauth\n     * 登录页面 /login\n     * 密码重置 /password_reset\n     * 组织页面 /orgs\n     * 探索页面 /explore\n     * 订阅页面 /notifications/subscriptions\n     * 通知页面 /notifications\n     * 关注页面 /watching\n     * 星标页面 /stars\n     * 议题页面 /issues\n     * 拉取请求 /pulls\n     * 搜索页面 /search\n     * 趋势页面 /trending\n     * 展示页面 /showcases\n     * 导入仓库 /new/import\n     * ...\n     */\n    rePagePath: /^\\/($|home|dashboard|feed|copilot|spark|signup|account_verifications|login\\/oauth|login|logout|sessions?|password_reset|orgs|explore|topics|notifications\\/subscriptions|notifications|watching|stars|issues|pulls|repos|search|trending|showcases|new\\/(import|project)|new|import|settings\\/(profile|admin|appearance|accessibility|notifications|billing|emails|security_analysis|security-log|security|auth|sessions|keys|ssh|gpg|organizations|enterprises|blocked_users|interaction_limits|code_review_limits|repositories|codespaces|models|codespaces\\/allow_permissions|deleted_repositories|packages|copilot|pages|replies|installations|apps\\/authorizations|reminders|sponsors-log|apps|(?:personal-access-|)tokens|developers|applications\\/new|applications|connections\\/applications|education\\/benefits)|settings|installations\\/new|marketplace|apps|account\\/(organizations\\/new|choose|upgrade|billing\\/history)|projects|redeem|discussions|collections|sponsors|sponsoring|github-copilot\\/(signup|free_signup|code-review-waitlist|pro)|codespaces|developer\\/register|features|security|sitemap|education|mcp)|^\\/users\\/[^\\/]+\\/(projects|packages|succession\\/invitation)/,\n\n    // 仓库路径\n    rePagePathRepo: /^\\/[^\\/]+\\/[^\\/]+\\/(issues|pulls|pull|tree|watchers|stargazers|new|edit|delete|upload|find|models|wiki|branches|discussions|activity|rules|releases|packages|tags|labels|milestones?|compare|commit|blob|blame|actions(\\/metrics\\/(usage|performance))?|runs|deployments|security|pulse|community|forks|fork|import|graphs\\/(contributors|community|traffic|commit-activity|code-frequency)|network$|network\\/(dependencies|dependents|updates|members)|settings\\/(access|code_review_limits|interaction_limits|branches|branch_protection_rules|tag_protection|rules|actions|models\\/access-policy|hooks|copilot\\/(code_review|coding_agent)|environments|codespaces|pages|security_analysis|dependabot_rules|keys|secrets|variables|installations|notifications|key_links)|settings|transfer|projects\\/new|projects|pkgs|contribute|subscription|invitations|codespaces|attestations|custom-properties|reported_content|agents|tasks)/,\n\n    // 组织路径\n    rePagePathOrg: /^\\/[^\\/]+\\/[^\\/]+\\/(repositories\\/new|repositories|sponsoring|discussions|projects|packages|teams|new-team|people|outside-collaborators|pending_collaborators|dashboard|billing_managers\\/new|invitations?|settings\\/(profile|billing|roles|member_privileges|teams|import-export|blocked_users|interaction_limits|code_review_limits|moderators|repository-defaults|rules|codespaces|copilot|actions|hooks|discussions|packages|pages|projects|security_analysis|security|dependabot_rules|domains|secrets|variables|oauth_application_policy|installations|personal-access-token|reminders|sponsors-log|audit-log|deleted_repositories|applications\\/new|applications|apps\\/new|apps|publisher|policies\\/repositories)|topics|domain\\/new|audit-log\\/event_settings|billing\\/(history|plans)|policies\\/applications)|^\\/[^\\/]+\\/(enterprise_plan|sponsoring)/,\n\n    // 特定页面，启用`字符数据`监测\n    characterDataPage: ['repository/new', 'repository/edit', 'new', 'new/import', 'orgs/repositories/new', 'repository/blob', 'repository/pull', 'marketplace', 'homepage', 'repository/issues', 'repository/commit', 'copilot', 'spark', 'repository/settings/rules'],\n\n    // 特定页面，忽略突变元素规则\n    ignoreMutationSelectorPage: {\n        'repository/new': [\".cm-scroller\"], // 代码编辑器\n        'repository/edit': [\".cm-scroller\", \"table\"], // 代码编辑器\n        'repository/pull': [\n            \"td.blob-code\", // 代码差异 分屏/同屏\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/compare': [\n            \"tbody\", // 代码差异\n            \".js-preview-body\", // 新建拉取请求 - 正文编辑器预览\n        ],\n        'repository/commit': [\"td.blob-code\", \"div.diff-text-inner\"], // 代码差异 分屏/同屏\n        'repository/blob': [\n            \"#highlighted-line-menu-positioner\", // 代码视图 存在\n            \"#repos-sticky-header\", // 代码视图 置顶标题\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n        ],\n        'repository/blame': [\"#highlighted-line-menu-positioner\"], // 代码视图\n        'repository': [\n            \".AppHeader-context\",\n            \"table\",\n            \"article.markdown-body\",\n        ],\n        'repository/tree': [\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n        ],\n        'repository/releases': [\".Box-footer\"], // 附件清单\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建议题 - 正文编辑器预览\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', // 某个议题 - 正文以及正文编辑器、添加评论编辑器预览\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源码视图\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark':[\n            '.cm-line',\n        ],\n        '*': [\n            'div.QueryBuilder-StyledInputContainer', // 顶部搜索栏 关键词\n            '#qb-input-query span', // 搜索页面 搜索栏 关键词\n\t\t\t'div.styled-input-content', // 筛选条\n        ],\n    },\n\n    // 特定页面，忽略元素规则\n    ignoreSelectorPage: {\n        'page-profile': [\n            'span.p-nickname', // 用户昵称\n            'span.p-name', // 同上\n        ],\n        'page-profile/followers': [\n            'span.f4.Link--primary',\n            \"span.Link--secondary.pl-1\",\n        ],\n        'page-profile/repositories': [\n            'a[itemprop=\"name codeRepository\"]', // 仓库名称\n        ],\n        'page-profile/stars': [\n            '.mb-1.d-inline-block > h3', // 仓库名称\n        ],\n        'repository': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'strong[itemprop=\"name\"]', // 仓库名称\n            // 'ul.list-style-none', // 右侧 部署列表 无效\n            'div[data-testid=\"latest-commit\"]', // 最新的提交\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n            'p.f4.my-3', // 仓库简介正文\n            '#translate-me',\n            '.my-3.d-flex.flex-items-center', // 仓库简介中的链接\n            'article.markdown-body', // 自述文件正文\n            'li.mt-2',\n        ],\n        'repository/tree': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'div.react-tree-show-tree-items', // 左侧文件树项目\n            'span.PRIVATE_TreeView-item-content-text', // 左侧文件树项目 - 子文件夹\n            'article.markdown-body', // Markdown 正文\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夹和文件条目\n        ],\n        'repository/blob': [\n            '.AppHeader-context-full', // 顶部 <username>/<repo_name>\n            'article.markdown-body', // Markdown 正文\n            'div.react-tree-show-tree-items', // 左侧文件树项目\n            '[id^=\"offset\"]', // 符号-->引用\n            '#highlighted-line-menu-positioner', // 代码视图\n            '#filter-results', // 右侧 符号筛选\n            '.Text__StyledText-sc-17v1xeu-0', // 右侧 符号筛选\n            'nav[data-testid=\"breadcrumbs\"]', // 面包屑导航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 面包屑导航 文件名部分\n        ],\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建议题 - 正文编辑器预览\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', //  某个议题 - 正文以及正文编辑器、添加评论编辑器预览\n        ],\n        'repository/commit': [\n            'td.blob-code', // 代码差异 分屏/同屏\n            'span.ws-pre-wrap', // 提交说明\n            \"h4[class^='Title-module__heading']\", // 提交标题\n        ],\n        'repository/pull': [\n            'td.blob-code', // 代码差异 分屏/同屏\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/compare': [\n            'td.blob-code', // 代码差异 分屏/同屏\n        ],\n        'repository/edit': [\n            '.cm-scroller', // 代码编辑器\n            'table', // 代码差异预览\n        ],\n        'repository/new': [\n            '.cm-scroller', // 代码编辑器\n            'table', // 代码差异预览\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源码视图\n            '.js-full-logs-container', // 工作流运行日志\n        ],\n        'repository/releases': [\n            'div.Box-body>div.markdown-body', // 发布版正文\n        ],\n        'repository/wiki': [\n            '#wiki-body', // wiki 正文\n            'ul.list-style-none.mx-4.px-1', // 右侧目录\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'orgs': [\n            'a[itemprop=\"name codeRepository\"]', // 仓库名称\n        ],\n        'search': [\n            'span.search-match', // 搜索匹配信息\n            'div.code-list', // 代码片段预览\n            'optgroup > option', // 下拉菜单列表\n        ],\n        'dashboard': [\n            '.js-notice-dismiss', // 右侧栏 广告\n            '.TimelineItem', // 右侧栏 最新变化\n            'section.comment-body', // 发布版正文\n        ],\n        'gist': [\n            '.gist-content[itemprop=\"about\"]', // Gist 简介\n            'div.js-blob-code-container', // 代码框\n            'table.js-diff-table', // 代码差异\n        ],\n        'topics': [\n            'h3.f3.color-fg-muted.text-normal.lh-condensed', // 仓库名称\n        ],\n        'marketplace': [\n            '.markdown-body',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark': [\n            '.Table',\n            '.monaco-editor',\n        ],\n        '*': [\n            '.comment-body', '.js-preview-body',\n            '.markdown-title',\n            'span.ActionListItem-descriptionWrap',  // 顶部搜索栏 关键词\n            'CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD', 'SVG', 'MARK', // 特定元素标签\n\t\t\t'div.styled-input-content', // 筛选条\n        ],\n    },\n\n    // 以下兼容 1.9.2 版本，且冻结 等待 1.9.3 明显 Bug 修复\n    /**\n     * 要翻译的页面正则(不含仓库页)\n     *\n     * 2021-10-07 11:53:34\n     * GitHub 网站更新 调整 Class 过滤规则\n     * 且过滤 Class 并不是总是生效，增加 PathName 规则补充\n     */\n    rePageClass: /\\b(page-(profile|new-repo|create-org)|session-authentication)\\b/,\n\n    /**\n     * 忽略区域的 class 正则\n     *\n     * 代码编辑器 内容 代码高亮 CodeMirror\n     * 代码编辑器 最小单元 cm-line ͼ.*\n     * 代码高亮 blob-code\n     * 仓库名和用户名 repo-and-owner (已知出现在：应用安装授权页和设置页 选定仓库)\n     * 文件,目录位置栏 |js-path-segment|final-path\n     * 文件列表 files js-navigation-container js-active-navigation-container\n     * 评论内容等 js-comment-body\n     * 评论预览 js-preview-body\n     * 评论编辑区域 comment-form-textarea\n     * 文件搜索模式 js-tree-finder-virtual-filter\n     * 仓库文件列表 js-navigation-open Link--primary\n     * 快捷键 按键 js-modifier-key\n     * 洞察-->流量-->热门内容列表 capped-list-label\n     * realease 页面 描述主体 markdown-body my-3\n     * 仓库页 仓库描述 f4 my-3\n     * 提交的用户名 commit-author$\n     * 搜索页 搜索结果 search-match\n     * 追溯 视图 代码 react-code-text\n     * tree 视图 文件名 react-directory-filename-column 提交信息 react-directory-commit-message\n     * 代码差异页面 代码 pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en\n     */\n    reIgnoreClass: /(cm-line|ͼ.*|pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en|CodeMirror|blob-code|highlight-.*|repo-and-owner|js-path-segment|final-path|files js-navigation-container|js-comment-body|js-preview-body|comment-form-textarea|markdown-title|js-tree-finder-virtual-filter|js-navigation-open Link--primary|js-modifier-key|capped-list-label|blob-code blob-code-inner js-file-line|markdown-body my-3|f4 my-3|commit-author$|search-match|react-directory-filename-column|react-directory-commit-message|react-code-text|zausi)/,\n\n    /**\n     * 忽略区域的 itemprop 属性正则\n     * name 列表页 仓库名\n     * author 仓库页 作者名称\n     * additionalName 个人主页 附加名称\n     */\n    reIgnoreItemprop: /(name|author|additionalName)/,\n\n    /**\n     * 忽略区域的 特定元素id 正则\n     * /blob页面 offset  符号-->引用\n     * /blob页面 右侧 符号筛选 filter-results\n     * fix repo详情页文件路径breadcrumb\n     */\n    reIgnoreId: /(readme|^offset|breadcrumb|file-name-id|filter-results)/,\n\n    /**\n     * 忽略区域的 标签 正则\n     * /i 规则不区分大小写\n     */\n    reIgnoreTag: ['CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD'],\n    // marked-text --> 文件搜索模式/<user-name>/<repo-name>/find/<branch> 文件列表条目\n    // ^script$ --> 避免勿过滤 notifications-list-subscription-form\n    // ^pre$ --> 避免勿过滤\n};\n\nI18N[\"zh-CN\"] = {};\n\nI18N[\"zh-CN\"][\"title\"] = { // 标题翻译\n    \"static\": { // 静态翻译\n        \"Sign up to GitHub · GitHub\": \"注册 · GitHub\",\n        \"Sign in to GitHub · GitHub\": \"登录 GitHub · GitHub\",\n        \"Join GitHub · GitHub\": \"加入 GitHub · GitHub\",\n        \"Forgot your password? · GitHub\": \"忘记您的密码了吗？· GitHub\",\n        \"Forgot your password?\": \"忘记您的密码了吗？\",\n        \"GitHub · Where software is built\": \"GitHub · 软件构建的地方\",\n        \"Create a New Repository\": \"新建仓库\",\n        \"Import a Repository\": \"导入仓库\",\n        \"New Project\": \"创建项目\",\n        \"Your Repositories\": \"我的仓库\",\n        \"Your Projects\": \"我的项目\",\n        \"Your Packages\": \"我的软件包\",\n        \"Your Stars\": \"我的星标页面\",\n        \"Your profile\": \"个人资料\",\n        \"Your Achievements\": \"我的成就\",\n        \"Your Followers\": \"我的关注者\",\n        \"Who You’re Following\": \"我关注的人\",\n        \"Account settings\": \"账户设置\",\n        \"Appearance\": \"外观\",\n        \"Accessibility\": \"无障碍\",\n        \"Notification settings\": \"通知设置\",\n        \"Billing\": \"账单\",\n        \"Email settings\": \"邮箱设置\",\n        \"Account security\": \"账户安全\",\n        \"SSH and GPG keys\": \"SSH 与 GPG 公钥\",\n        \"Organizations\": \"组织\",\n        //\"Blocked users\": \"拉黑用户\",\n        \"Temporary interaction limits\": \"临时互动限制\",\n        \"Code review limits\": \"代码审查限制\",\n        \"Repositorys\": \"仓库\",\n        \"Deleted Packages\": \"删除的软件包\",\n        \"Pages\": \"GitHub 页面\",\n        \"Saved replies\": \"快捷回复\",\n        \"Security & analysis\": \"安全与分析\",\n        \"Installed GitHub Apps\": \"已安装的 GitHub 应用\",\n        \"Issue search results\": \"议题搜索结果\",\n        \"Scheduled reminders\": \"定时提醒\",\n        \"Security log\": \"安全日志\",\n        \"Sponsorship Log\": \"赞助日志\",\n        \"GitHub Apps\": \"GitHub 应用\",\n        \"Developer applications\": \"开发者应用\",\n        \"Personal Access Tokens\": \"个人访问令牌\",\n        \"Register new GitHub App\": \"注册新 GitHub 应用\",\n        \"New OAuth Application\": \"新 OAuth 应用\",\n        \"Create a new Gist\": \"创建新代码片段\",\n        \"Discover gists\": \"探索代码片段\",\n        \"Enable two-factor authentication\": \"启用双因素身份验证\",\n        \"Manage two-factor authentication\": \"管理双因素身份验证\",\n        \"Options\": \"仓库 · 选项\",\n        \"Confirm access\": \"授权访问\",\n        \"General\": \"通常\",\n        \"Manage access\": \"访问管理\",\n        \"Branches\": \"分支\",\n        \"Tags\": \"标签\",\n        \"Webhooks\": \"Web 钩子\",\n        \"Environments\": \"环境\",\n        \"Security & analysis\": \"安全性与分析\",\n        \"Deploy keys\": \"部署密钥\",\n        \"Add deploy key\": \"添加部署密钥\",\n        \"Actions secrets\": \"操作机密\",\n        \"Dependabot secrets\": \"Dependabot 机密\",\n        \"Configure email notifications\": \"配置邮件通知\",\n        \"Community Standards\": \"社区准则\",\n        \"General Organization Settings\": \"常规组织设置\",\n        \"Member privileges\": \"成员权限\",\n        \"Teams\": \"团队\",\n        \"Trending repositories on GitHub today\": \"今日热门仓库\",\n        \"Trending repositories on GitHub this week\": \"本周热门仓库\",\n        \"Trending repositories on GitHub this month\": \"本月热门仓库\",\n        \"Repository defaults\": \"仓库默认值\",\n        \"Repository search results\": \"仓库搜索结果\",\n        \"Runners\": \"运行器\",\n        \"Runner Groups\": \"运行器组\",\n        \"Packages\": \"软件包\",\n        \"Package\": \"软件包\",\n        \"Payment Information\": \"支付信息\",\n        \"Security\": \"安全\",\n        \"Verified & approved domains\": \"经验证和批准的域名\",\n        \"Add a Pages verified domain\": \"添加一个经验证的 GitHub Pages 域名\",\n        \"Third-party application access policy\": \"第三方应用访问策略\",\n        \"Audit log\": \"审计日志\",\n        \"Deleted Repositories\": \"已删除的仓库\",\n        \"GitHub Publisher Verification\": \"GitHub 发布者验证\",\n        \"Notifications\": \"通知\",\n        \"Confirm your account recovery settings\": \"确认您的账户恢复设置\",\n        \"Your stars\": \"我的星标\",\n        \"Your starred repositories\": \"我的星标仓库\",\n        \"Your starred topics\": \"我的星标主题\",\n        \"Register for the GitHub Developer Program\": \"注册 GitHub 开发者计划\",\n        \"Codespaces\": \"代码空间\",\n        \"Codespace Templates\": \"代码空间模版\",\n        \"Create new codespace\": \"创建代码空间\",\n        \"Error\": \"错误\",\n        \"Discover gists · GitHub\": \"探索代码片段 · GitHub\",\n        \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n        \"Actions Usage Metrics\": \"操作使用情况\",\n        \"Actions usage metrics\": \"操作使用情况\",\n        \"Fine-grained Personal Access Tokens\": \"精细化的个人访问令牌\",\n        \"Import repository\": \"导入仓库\",\n        \"Explore GitHub\": \"探索 GitHub\",\n        //\"Rate limit · GitHub\": \"速率限制 · GitHub\",\n        //\"GitHub: Let’s build from here · GitHub\": \"GitHub: 让我们从这里开始\",\n        \"GitHub · Build and ship software on a single, collaborative platform · GitHub\": \"GitHub · 在单一协作平台上构建和发布软件\",\n        \"GitHub · Build and ship software on a single, collaborative platform\": \"GitHub · 在单一协作平台上构建和发布软件\",\n        \"Topics on GitHub · GitHub\": \"GitHub 上的主题\",\n        \"Code security\": \"代码安全\",\n        \"Deploy keys\": \"部署密钥\",\n        \"Actions Performance Metrics\": \"操作数据看板\",\n        \"Actions performance metrics\": \"操作数据看板\",\n        \"GitHub Sitemap · GitHub\": \"GitHub 网站地图\",\n        \"Code search results\": \"代码搜索结果\",\n        \"Enterprises\": \"企业版\",\n        \"Blocked users\": \"黑名单\",\n        \"New conversation · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n        \"Models · GitHub Marketplace\": \"模型 · GitHub 市场\",\n        \"GitHub Education\": \"GitHub 教育\",\n        \"GitHub Student Developer Pack - GitHub Education\": \"学生开发包 - GitHub 教育\",\n        \"Get your GitHub benefits - GitHub Education\": \"获取福利 - GitHub 教育\",\n        \"Signup to GitHub Copilot\": \"注册 GitHub Copilot\",\n        \"Device Activation\": \"设备激活\",\n        \"Spending Limit\": \"支付限额\",\n        \"Autolink references\": \"自动链接引用\",\n        \"Add autolink reference\": \"添加自动链接引用\",\n        \"Billing Overview\": \"账单概览\",\n        \"Billing Usage\": \"计费用量\",\n        \"Budgets\": \"预算\",\n        \"Code Security\": \"代码安全性\",\n        \"New Fine-grained Personal Access Token\": \"新建精细化个人访问令牌\",\n        \"Coding agent\": \"编程智能体\",\n        \"Get Started With GitHub Discussions\": \"开始使用 GitHub 讨论\",\n        \"SSH and GPG keys\": \"SSH 和 GPG 密钥\",\n        \"MCP Registry\": \"MCP 互联\",\n        \"User repositories\": \"用户仓库\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Authorized OAuth Apps/, \"授权的 OAuth 应用\"],\n        [/Authorized GitHub Apps/, \"授权的 GitHub 应用\"],\n        [/Installed GitHub Apps/, \"已安装的 GitHub 应用\"],\n        [/Accessibility/, \"无障碍\"],\n        [/Environments/, \"环境\"],\n        [/New repository/, \"新仓库\"],\n        [/([^ ]+) \\((.+)\\) \\/ Repositories/, \"$1 / 仓库\"], // github 账户名/ 成就\n        [/([^ ]+) \\((.+)\\) \\/ Starred/, \"$1($2) / 星标\"], // github 账户名（昵称）/ 星标\n        [/Repositories/, \"仓库\"],\n        [/Starred/, \"星标页面\"],\n        [/starred repositories/, \"星标仓库\"],\n        [/starred topics/, \"星标主题\"],\n        [/starred/, \"星标\"],\n        [/Commits · ([^ ]+)/, \"提交 · $1\"],\n        [/New Issue/, \"新建议题\"],\n        [/Issues?/, \"议题\"],\n        [/Pull (R|r)equests?/, \"拉取请求\"],\n        [/Actions secrets · ([^ ]+)/, \"操作机密 · $1\"],\n        [/Actions settings · ([^ ]+)/, \"操作设置 · $1\"],\n        [/Actions/, \"操作\"],\n        [/Projects/, \"项目\"],\n        [/Packages?/, \"软件包\"],\n        [/Settings · Rulesets/, \"设置 · 规则集\"],\n        [/Security Overview/, \"安全概述\"],\n        [/Security Policy/, \"安全政策\"],\n        [/Security Advisories/, \"安全公告\"],\n        [/Dependabot alerts/, \"Dependabot 警报\"],\n        [/Pulse/, \"统计\"],\n        //[/Contributors to/, \"贡献者 ·\"],\n        [/Dashboard/, \"仪表板\"],\n        [/Deployments/, \"部署\"],\n        [/Community/, \"社区\"],\n        [/Traffic/, \"流量\"],\n        [/Commit Activity/, \"提交活动\"],\n        [/Code frequency/, \"代码频率\"],\n        [/Created/, \"已创建\"],\n        [/Dependencies/, \"依赖项\"],\n        [/Network Dependents/, \"网络依赖者\"],\n        [/Network Graph/, \"网络图\"],\n        [/Revisions/,\"修订\"],\n        [/GitHub Skills Quickstart Guide/, \"GitHub 技能快速入门指南\"],\n        [/Skills/, \"技能\"],\n        [/Sponsoring/, \"捐助\"],\n        [/Stargazers/, \"追星者\"],\n        [/Forks?/, \"复刻\"],\n        [/Settings · Tags · ([^ ]+)/, \"设置 · 标签 · $1\"],\n        [/Tags?/, \"标签\"],\n        [/Edit release/, \"编辑发行版\"],\n        [/Releases?/, \"发行版\"],\n        [/Draft Advisory/, \"安全公告草案\"],\n        [/Code scanning alerts/, \"代码扫描警报\"],\n        [/Repository topics/, \"仓库主题\"],\n        [/Scheduled reminders/, \"定时提醒\"],\n        [/Sponsorship Log/, \"赞助日志\"],\n        [/Sponsor @([^ ]+) on GitHub Sponsors/, \"在 GitHub 上赞助 $1\"],\n        [/OAuth applications/, \"OAuth 应用\"],\n        [/People · Pending Collaborators/, \"成员 · 待定协作者\"],\n        [/Members · People · ([^ ]+)/, \"成员 · $1\"],\n        [/People/, \"成员\"],\n        [/Outside collaborators/, \"外部协作者\"],\n        [/New Discussion/, \"新讨论\"],\n        [/Discussions/, \"讨论\"],\n        [/Workflow runs/, \"工作流运行\"],\n        [/Webhooks · Settings/, \"Web 钩子 · 设置\"],\n        [/Add a code of conduct to/, \"添加代码行为准则到\"],\n        [/Caches?/, \"缓存\"],\n        [/Runners?/, \"运行器\"],\n        [/Attestations?/, \"证书\"],\n        [/Activit(y|ies)/, \"活动\"],\n        [/Rate limit/, \"速率限制\"],\n        [/Comparing/, \"比较\"],\n        [/History for ([^ ]+)/, \"$1 的历史\"],\n        [/Compare plans for ([^ ]+)/, \"为 $1 比较计划\"],\n        [/([^ ]+)’s gists/, \"$1 的代码片段\"],\n        [/Secret scanning · ([^ ]+)/, \"机密扫描 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 机密 · $1\"],\n        [/Contributors to ([^ ]+)/, \"贡献者 · $1\"],\n        [/([^ ]+) repositories^/, \"$1 的仓库\"],\n        [/Create new page · ([^ ]+) Wiki/, \"新建页面 · $1 的 Wiki\"],\n        [/Settings · Branches · ([^ ]+)/, \"设置 · 分支 · $1\"],\n        [/Webhooks · Settings · ([^ ]+)/, \"Web 钩子  · 设置 · $1\"],\n        [/Environments · ([^ ]+)/, \"环境 · $1\"],\n        [/Branches · ([^ ]+)/, \"分支 · $1\"],\n        [/([^ ]+) · GitHub Topics/, \"$1 · GitHub 主题\"],\n        [/New release · ([^ ]+)/, \"新发行版 · $1\"],\n        [/Codespaces secrets · ([^ ]+)/, \"代码空间机密 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 机密 · $1\"],\n        [/Invitation to join ([^ ]+)/, \"加入 $1 邀请\"],\n        [/Security Managers for · ([^ ]+)/, \"安全管理员 · $1\"],\n        [/New File at \\/ · ([^ ]+)/, \"新建文件 · $1\"],\n        [/Blaming ([^ ]+) at ([^ ]+) · ([^ ]+)/, \"追溯 $1（$2） · $3\"],\n        [/Deleting ([^ ]+)\\/([^ ]+) at ([^ ]+) · ([^ ]+)/, \"删除 $3/$2 · $4\"], // 简化部分内容\n        [/([^ ]+)'s list \\/ (.+)/, \"$1 的列表 / $2\"],\n        [/([^ ]+) \\((.+)\\) \\/ Achievements/, \"$1($2) / 成就\"], // github 账户名（昵称）/ 成就\n        [/Teams · ([^ ]+)/, \"团队 · $1\"],\n        [/Create new team · ([^ ]+)/, \"新建团队 · $1\"],\n        [\"_regexp_end\", \"end\"]\n    ],\n};\n\nI18N[\"zh-CN\"][\"public\"] = { // 公共区域翻译\n    \"static\": { // 静态翻译\n        // 错误页面\n            \"Find code, projects, and people on GitHub:\": \"在 GitHub 上查找代码、项目和人员：\",\n            \"Access has been restricted\": \"访问被限制\",\n                \"You have triggered a rate limit.\": \"您已触发速率限制。\",\n                \"Please wait a few minutes before you try again;\": \"请稍等几分钟再重试；\",\n                \"in some cases this may take up to an hour.\": \"在某些情况下，这可能最多需要一个小时。\",\n            \"No server is currently available to service your request.\": \"当前服务器无法为您的请求提供服务。\",\n            \"This page is taking too long to load.\": \"此页面加载时间过长。\",\n            \"We had issues producing the response to your request.\": \"我们在响应您的请求时遇到了问题。\",\n            \"Sorry about that. Please try refreshing and contact us if the problem persists.\": \"对此我们很抱歉。请尝试刷新，如果问题仍然存在，请联系我们。\",\n            \"Error\": \"错误\",\n            \"Looks like network is down!\": \"看起来网络未连接！\",\n            \"Contact Support\": \"联系 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 状态\",\n\n        // 底部红条\n            \"You can’t perform that action at this time.\": \"此时无法执行该操作。\",\n\n        // 速率限制 - 短时间频繁访问网页，至少包括 https://github.com/issues\n            \"Whoa there!\": \"请停一下！\",\n            \"You have exceeded a secondary rate limit.\": \"您已经超出次要速率限制。\",\n            \"Please wait a few minutes before you try again;\": \"请稍等几分钟再重试；\",\n            \"in some cases this may take up to an hour.\": \"在某些情况下，这可能最多需要一个小时。\",\n\n        // 议题、拉取请求、讨论浮动信息卡（在任一引用这些链接的页面都会出现\n            \"You opened this issue\": \"您打开了这个议题\",\n            \"You opened this pull request\": \"您打开了这个拉取请求\",\n            \"You commented on this issue\": \"您对此议题发表了评论\",\n            \"You commented on and opened this issue\": \"您打开了这个议题并发表评论\",\n            \"You commented on this pull request\": \"您对此拉取请求发表了评论\",\n            \"You commented on and opened this pull request\": \"您打开了这个拉取请求并发表评论\",\n            \"You were mentioned on and commented on this issue\": \"您在此议题上被提及并发表评论\",\n            \"You were mentioned on and commented on this pull request\": \"您在此拉取请求上被提及并发表评论\",\n            \"You were mentioned on and opened this pull request\": \"您被提及并打开了此拉取请求\",\n            \"You are assigned to this pull request\": \"您被指派处理此拉取请求\",\n            \"You are assigned to and opened this pull request\": \"您打开并被指派处理此拉取请求\",\n            \"You left a review\": \"您已评论\",\n            \"Changes requested\": \"请求更改\", // 拉取请求\n            \"Review required\": \"请求审查\", // 拉取请求\n            \"Approved\": \"已批准\", // 拉取请求\n            \"replied\": \"已回复\", // 讨论\n\n        // 顶部栏 (未登录)\n            \"Platform\": \"平台\",\n                \"AI CODE CREATION\": \"AI 代码生成\",\n                    // Copilot\n                        \"Write better code with AI\": \"借助 AI 写出更好的代码\",\n                    // Spark\n                        \"Build and deploy intelligent apps\": \"构建和部署智能应用\",\n                    \"GitHub Models\": \"GitHub 模型\",\n                        \"Manage and compare prompts\": \"管理和比较提示词\",\n                    \"MCP Registry\": \"MCP 互联\",\n                        \"Integrate external tools\": \"集成外部工具\",\n                \"DEVELOPER WORKFLOWS\": \"开发者工作流\",\n                    // 操作\n                        \"Automate any workflow\": \"自动化任何工作流程\",\n                    // 代码空间\n                        \"Instant dev environments\": \"即时开发环境\",\n                    // 议题\n                        \"Plan and track work\": \"计划和追踪工作\",\n                    \"Code Review\": \"代码审查\",\n                        \"Manage code changes\": \"管理代码更改\",\n                \"APPLICATION SECURITY\": \"应用安全\",\n                    \"GitHub Advanced Security\": \"GitHub 高级安全\",\n                        \"Find and fix vulnerabilities\": \"查找并修复漏洞\",\n                    \"Code security\": \"代码安全\",\n                        \"Secure your code as you build\": \"边开发边保障代码安全\",\n                    \"Secret protection\": \"密钥保护\",\n                        \"Stop leaks before they start\": \"在泄露发生前就阻止它们\",\n\n                \"EXPLORE\": \"探索\",\n                    \"Why GitHub\": \"为什么选择 GitHub\",\n                    \"Changelog\": \"更新日志\",\n                    \"GitHub Marketplace\": \"GitHub 市场\",\n\n                \"View all features\": \"查看所有功能\",\n\n            \"Solutions\": \"解决方案\",\n                \"BY COMPANY SIZE\": \"企业规模\",\n                    \"Enterprises\": \"企业\",\n                    \"Small and medium teams\": \"中小团队\",\n                    \"Startups\": \"初创公司\",\n                    \"Nonprofits\": \"非盈利组织\",\n                \"BY USE CASE\": \"使用案例\",\n                    \"App Modernization\": \"应用现代化\",\n                    \"DevSecOps\": \"开发安全运维\",\n                    \"DevOps\": \"开发运维\",\n                    \"CI/CD\": \"持续集成/持续部署\",\n                    \"View all use cases\": \"查看所有使用案例\",\n                \"BY INDUSTRY\": \"工业\",\n                    \"Healthcare\": \"健康护理\",\n                    \"Financial services\": \"金融服务\",\n                    \"Manufacturing\": \"制造业\",\n                    \"Government\": \"政府\",\n                    \"View all industries\": \"查看所有工业\",\n                \"View all solutions\": \"查看所有解决方案\",\n\n            \"Resources\": \"资源\",\n                \"EXPLORE BY TOPIC\": \"按主题探索\",\n                    \"Software Development\": \"软件开发\",\n                    \"View all topics\": \"查看所有主题\",\n                \"EXPLORE BY TYPE\": \"按类型探索\",\n                    \"Customer Stories\": \"客户案例\",\n                    \"Customer stories\": \"客户案例\",\n                    \"Events & webinars\": \"活动与网络研讨会\",\n                    \"Ebooks & reports\": \"电子书与报告\",\n                    \"Business insights\": \"商业洞察\",\n                    \"GitHub Skills\": \"GitHub 技能课程\",\n                \"SUPPORT & SERVICES\": \"支持与服务\",\n                    \"Partners\": \"合作洽谈\",\n                    \"Customer support\": \"客户支持\",\n                    \"Community forum\": \"社区论坛\",\n                    \"Trust center\": \"信任中心\",\n\n            \"Open Source\": \"开源\",\n                \"COMMUNITY\": \"社区\",\n                    \"GitHub Sponsors\": \"GitHub 赞助者\",\n                        \"Fund open source developers\": \"资助开源开发人员\",\n                \"PROGRAMS\": \"项目\",\n                    \"Security Lab\": \"安全实验室\",\n                    \"Maintainer Community\": \"维护者社区\",\n                    \"Accelerator\": \"加速器计划\",\n                    \"Archive Program\": \"存档计划\",\n                \"REPOSITORIES\": \"仓库\",\n                    \"Topics\": \"主题\",\n                    \"Trending\": \"趋势\",\n                    \"Collections\": \"集合\",\n\n            \"Enterprise\": \"企业\",\n                \"ENTERPRISE SOLUTIONS\": \"企业级解决方案\",\n                    \"Enterprise platform\": \"企业平台\",\n                        \"AI-powered developer platform\": \"AI 驱动的开发者平台\",\n                \"AVAILABLE ADD-ONS\": \"可选附加组件\",\n                    // GitHub 高级安全\n                        \"Enterprise-grade security features\": \"企业级安全功能\",\n                    \"Copilot for Business\": \"Copilot 企业版\",\n                        \"Enterprise-grade AI features\": \"企业级 AI 功能\",\n                    \"Premium Support\": \"高级支持\",\n                        \"Enterprise-grade 24/7 support\": \"企业级 24 小时全天候支持\",\n            \"Pricing\": \"价格\",\n            \"Search\": \"搜索\",\n            \"Sign in\": \"登录\",\n            \"Sign up\": \"注册\",\n\n        // 搜索栏\n            \"Search or jump to...\": \"搜索或跳转到…\",\n            \"Type\": \"请键入\",\n            \"to search\": \"去搜索\",\n            \"Command palette\": \"命令面板\",\n            \"Saved queries\": \"已保存的搜索\",\n            \"All of GitHub\": \"整个 GitHub\",\n            \"Autocomplete\": \"自动完成\",\n            \"Search all of GitHub\": \"搜索整个 GitHub\",\n            \"Search in this directory\": \"在文件夹中搜索\",\n            \"Search in this repository\": \"在该仓库中搜索\",\n            \"Search in this owner\": \"在该所有者中搜索\",\n            \"Search in this organization\": \"在该组织中搜索\",\n            \"Owners\": \"所有者\",\n            \"Languages\": \"语言\",\n            \"Search syntax tips\": \"搜索语法提示\",\n            \"Jump to\": \"跳转到\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n            \"Start a new Copilot thread\": \"启动新的 Copilot 对话\",\n\n            // 未登录时\n                \"Enterprise\": \"企业\",\n                \"Security\": \"安全\",\n                \"Pricing\": \"价格\",\n\n        // 左上角下拉栏 (已登录)\n            \"Open menu\": \"打开菜单\",\n            \"Close menu\": \"关闭菜单\",\n            \"Homepage\": \"主页\",\n            \"Home\": \"主页\",\n            \"Feed\": \"动态\",\n            \"Issues\": \"议题\",\n            \"Pull requests\": \"拉取请求\",\n            \"Projects\": \"项目\",\n            \"Discussions\": \"讨论\",\n            \"Codespaces\": \"代码空间\",\n            \"Explore\": \"探索\",\n            \"Marketplace\": \"市场\",\n            \"MCP registry\": \"MCP 互联\",\n\n            \"Top repositories\": \"热门仓库\",\n                \"Search for repositories\": \"搜索仓库\",\n                \"Close search\": \"关闭搜索\",\n                // 团队\n                \"Search for teams\": \"搜索团队\",\n\n            \"Teams have moved to\": \"团队已迁移至\",\n\n        // 顶部提示横幅\n            \"Don't get locked out of your account.\": \"不要被锁定在您的账户之外。\",\n            \"Download your recovery codes\": \"下载您的恢复码\",\n            \"add a passkey\": \"添加通行密钥\",\n            \"so you don't lose access when you get a new device.\": \"这样您在登录新设备时就不会失去访问权限。\",\n            \"GitHub users are\": \"GitHub 用户\",  //下半句正则\n            \"now required\": \"现在被要求\",  //下半句正则\n            \"Enable 2FA\": \"启用 2FA\",\n\n            \"You only have a single verified email address. We recommend verifying at least one more email address to ensure you can recover your account if you lose access to your primary email.\": \"您只有一个经过验证的电子邮件地址。我们建议您至少再验证一个电子邮件地址，以确保在失去主邮箱访问权限时可以恢复账户。\",\n            \"Email settings\": \"电子邮件设置\",\n            \"Your recovery codes have not been saved in the past year. Make sure you still have them stored somewhere safe by viewing and downloading them again.\": \"如果您在过去一年中没有保存恢复密码。请确保将其保存在安全的地方，并再次查看和下载。\",\n                \"View recovery codes\": \"查看恢复码\",\n            \"You can also\": \"您也可以\",\n            \"view this object as it appeared at the time of the comment\": \"查看此对象在评论时的状态\",\n\n\n        \"Your issues\": \"您的议题\",\n        \"Your pull requests\": \"您的拉取请求\",\n\n        // 右上角通知按钮提示\n            \"You have no unread notifications\": \"您没有未读通知\",\n            \"You have unread notifications\": \"您有未读通知\",\n\n        // 右上角新建按钮下拉菜单\n            \"Create new...\": \"新建…\",\n            \"Create new…\": \"新建…\",\n                \"New repository\": \"新建仓库\",\n                \"Import repository\": \"导入仓库\",\n                \"New spark\": \"新建 spark\",\n                \"New agent task\": \"新建智能体任务\",\n                \"New codespace\": \"新建代码空间\",\n                \"New gist\": \"新建代码片段\",\n                \"New organization\": \"新建组织\",\n                \"New project\": \"新建项目\",\n                \"This organization\": \"本组织\", // 组织\n                \"New team\": \"新建团队\", // 组织\n                // 新建议题 对话框\n                    \"Create new issue\": \"新建议题\",\n                    \"Copy link\": \"复制链接\",\n                    \"Templates and forms\": \"模板和表单\",\n                    \"Blank issue\": \"空白议题\",\n                        \"Create a new issue from scratch\": \"从头开始创建新议题\",\n\n        // 右上角 Copilot 下拉菜单\n            \"Agents\":\"智能体\",\n            \"Chat with Copilot\": \"与 Copilot 聊天\",\n            \"Learn more about Copilot coding agent\": \"了解有关 Copilot 编程智能体的更多信息\",\n            \"Start a new task with Copilot\": \"使用 Copilot 启动新任务\",\n            \"Describe a coding task to work on\": \"描述要完成的编程任务\",\n            \"Open Copilot…\": \"打开 Copilot…\",\n                \"Start a pull request\": \"创建拉取请求\",\n                \"New conversation in\": \"新聊天\",\n                \"New conversation\": \"新聊天\",\n                    \"Assistive\": \"小窗\",\n                    \"Spaces\": \"空间\",\n                    \"Immersive\": \"全屏\",\n                \"Download for\": \"下载插件\",\n\n            \"Select a branch\": \"选择分支\",\n            \"Find a branch...\": \"查找分支…\",\n\n            \"Create a custom agent\": \"创建自定义智能体\",\n\n            \"Navigate to Copilot\": \"导航到 Copilot\",\n\n            \"Open agents panel\": \"打开智能体面板\",\n                \"Start a task with Copilot coding agent\": \"使用 Copilot 编程智能体开始任务\",\n                    \"Describe your task in natural language. Copilot will work in the background and open a pull request for your review.\": \"请用自然语言描述您的任务。Copilot 会在后台工作，并创建一个拉取请求供您审核。\",\n\n                \"Agent tasks\": \"智能体任务\",\n                    \"Switch branches\": \"切换分支\",\n                        \"Filter branches\": \"查找分支\",\n                        \"default\": \"默认\",\n\n                \"Recent tasks\": \"近期任务\",\n\n        // 右上角个人图标下拉菜单\n            \"Open user navigation menu\": \"打开用户导航菜单\",\n            \"Account switcher\": \"账户切换\",\n                \"Add account\": \"添加账户\",\n                \"Switch account\": \"切换账户\",\n                \"Sign out...\": \"登出…\",\n            \"Set status\": \"状态设置\",\n            \"Profile\": \"个人资料\",\n            \"Gists\": \"代码片段\",\n\n            \"Settings\": \"设置\",\n            \"Copilot settings\": \"Copilot 设置\",\n            \"Feature preview\": \"功能预览\",\n            \"Feature Preview\": \"功能预览\",\n                \"Get early access to new features and give feedback\": \"测试新功能并提交反馈\",\n                \"Help us improve this and make your experience even better.\": \"帮我们改进此功能，提升您的体验。\",\n                \"On\": \"开\",\n                \"Off\": \"关\",\n                // 对话框\n                \"Feature preview dialog\": \"功能预览对话框\",\n                \"Enable\": \"启用\",\n                \"Enabled\": \"启用\",\n                \"Disable\": \"禁用\",\n                \"Disabled\": \"禁用\",\n                \"Documentation\": \"文档\",\n\n                \"Colorblind themes\": \"色盲主题\",\n                    \"Varying by gender and geography, color blindness can affect on average 8% of men and up to 0.5% of women. Our previous colorblind theme has been split into two new themes:\": \"色盲会因性别和地域的不同而有所不同，平均而言，色盲会影响约 8% 的男性和约 0.5% 的女性。我们之前的色盲主题被分为两个新主题：\",\n                    \"Light/dark Protanopia & Deuteranopia for red/green color blindness.\": \"明/暗 - 红绿色盲主题适用于红绿色盲。\",\n                    \"Light/dark Tritanopia for blue/yellow color blindness.\": \"明/暗 - 蓝色盲主题适用于蓝黄色盲。\",\n                \"Command Palette\": \"命令面板\",\n                    \"Quickly navigate and jump between your organizations or repositories and search recent issues, pull requests, projects and more with the new command palette. You can also execute time saving commands all without lifting your fingers off the keyboard!\": \"使用新的命令面板，可以快速导航并跳转到您所在的组织或仓库，并搜索最近的议题、拉取请求、项目等等。您还可以执行节省时间的命令，而无需将手指从键盘上移开！\",\n                    \"To open the command palette:\": \"打开命令面板：\",\n                        \"other:\": \"其他：\",\n                \"Organization Custom Instructions\": \"组织自定义指令\",\n                    \"Organization administrators can apply custom instructions across all Copilot chats in github.com.\": \"组织管理员可以在 GitHub.com 的所有 Copilot 聊天中应用自定义指令。\",\n                \"New Dashboard Experience\": \"新仪表板体验\",\n                    \"The updated home dashboard introduces enhanced agent workflows, making it easier to create and manage agent sessions, issues, and pull requests directly from your personalized dashboard. Once enabled, please refresh to see the changes.\": \"更新后的主页仪表板引入了增强的智能体工作流，使您可以更轻松地直接从个性化仪表板创建和管理智能体会话、议题和拉取请求。启用后，请刷新以查看更改。\",\n                \"Rich Jupyter Notebook Diffs\": \"Jupyter Notebook 的丰富差异视图\",\n                    \"Enables rich diffs of Jupyter Notebooks in pull requests\": \"在拉取请求中启用 Jupyter Notebook 的丰富差异视图\",\n                    \"Note: commenting on rich diff views of notebooks is not yet supported\": \"注意：尚不支持对 Jupyter Notebook 的丰富差异视图进行评论\",\n                \"Semantic issue search\": \"语义议题搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的语义搜索查找问题。在存储库的问题页面上输入自然语言查询，以发现相关的语义索引结果。您还可以结合过滤器和关键字进行传统搜索。\",\n                \"New Files Changed Experience\": \"新版文件更改体验\",\n                    \"Feature enabling the new Files Changed Page\": \"启用新版更改的文件页\",\n                \"New Files Changed Perf Experiment\": \"新版更改的文件性能优化\",\n                    \"Performance improvement for reviewing large pull requests in the New Files Changed experience. When enabled, the new experience uses virtualization to reduces the number of DOM elements and event listeners the browser has to manage. This can significantly improve memory utilization and the responsiveness of the page.\": \"这项性能优化针对“新版文件更改体验”中审查大型拉取请求的场景。启用后，新体验将采用虚拟化技术，减少浏览器需要管理的 DOM 元素数量和事件监听器数量，从而显著改善内存占用并提升页面响应速度。\",\n                    \"Note: this features only works when the New Files Changed Experience feature preview is enabled.\": \"注意：此功能仅在启用“新版文件更改体验”功能预览时才生效。\",\n                \"Slash Commands\": \"斜杠命令\",\n                    \"Slash commands make it easier to type more complex Markdown, such as tables, tasklists, and code blocks.\": \"斜线命令可以让您更轻松地输入更复杂的 Markdown，如表格、任务列表和代码块。\",\n                    \"Simply type\": \"只需在议题、拉取请求和讨论中键入\",\n                    \"on Issues, PRs and Discussions to check out a list of available commands!\": \"，即可查看可用命令的列表！\",\n                \"Feature disabled.\": \"功能已禁用。\",\n                    \"Please\": \"请\",\n                    \"give feedback\": \"提交反馈\",\n                    \"so we can improve it!\": \"以便我们加以改进！\",\n                \"Semantic issue search\": \"语义议题搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的语义议题搜索功能查找议题。在仓库的议题页面输入自然语言查询，即可发现语义索引的相关结果。您还可以结合过滤器和关键词进行传统搜索。\",\n                // 出错提示\n                    \"Sorry, something went wrong and we were not able to fetch the feature previews\": \"对不起，出了点问题，我们无法获取功能预览\",\n                \"Changes saved! Please\": \"更改已保存！请\",\n                    \"reload\": \"刷新\",\n                    \"the page to view the changes.\": \"页面以查看更改。\",\n            \"Appearance\": \"外观\",\n            \"Accessibility\": \"无障碍\",\n            \"Upgrade\": \"升级\",\n            \"Try Enterprise\": \"试用企业版\",\n                \"Free\": \"免费\",\n            \"Sign out\": \"退出\",\n\n        // 状态设置对话框\n        // 出现位置: 个人资料页, Gist 个人主页, 仓库页右上角个人图标下拉菜单\n            \"Edit status\": \"编辑状态\",\n            \"What's happening?\": \"发生了什么？\",\n\n            \"Suggestions\": \"建议\",\n                \"On vacation\": \"在度假\",\n                \"Out sick\": \"生病\",\n                \"Working from home\": \"在家工作\",\n                \"Focusing\": \"专注中\",\n\n            \"Busy\": \"繁忙中\",\n                \"When others mention you, assign you, or request your review, GitHub will let them know that you have limited availability.\": \"当其他人提及您、指派您或请求您进行评论时，GitHub 会告知他们您很忙。\",\n                \"I may be slow to respond.\": \"我的回复可能比较慢。\",\n\n            \"Clear status\": \"清除状态\",\n                \"Never\": \"永不\",\n                \"in 30 minutes\": \"30 分钟\",\n                \"in 1 hour\": \"1 小时\",\n                \"in 4 hours\": \"4 小时\",\n                \"after today\": \"今日之后\",\n                \"after this week\": \"本周之后\",\n                \"after a month\": \"本月之后\",\n                \"How long until this status will automatically clear.\": \"多久后状态自动清除。\",\n            \"Visible to\": \"可见\",\n                \"Everyone\": \"任何人\",\n                    \"Scope status visibility to a single organization.\": \"将状态可视范围扩大到单个组织。\",\n            \"Filter emoji\": \"筛选表情符号\",\n                \"Search results\": \"筛选结果\",\n\n        // 底部条\n            \"Terms\": \"服务条款\",\n            \"Privacy\": \"隐私\",\n            \"Security\": \"安全\",\n            \"Status\": \"状态\",\n            \"Community\": \"社区\",\n            \"Docs\": \"文档\",\n            \"Contact\": \"联系我们\",\n            \"Manage cookies\": \"管理 Cookies\",\n            \"Do not share my personal information\": \"请勿分享我的个人信息\",\n\n        // 左侧栏底部条\n            \"About\": \"关于\",\n            \"Blog\": \"博客\",\n            \"Manage Cookies\": \"管理 Cookies\",\n\n        // 其他\n            \"Contact GitHub\": \"联系 GitHub\",\n            \"Training\": \"培训\",\n\n        // 描述、评论编辑器翻译\n            \"Add a comment\": \"添加评论\",\n            \"Add a body\": \"添加内容\",\n            \"Write\": \"撰写\",\n                \"Use Markdown to format your comment\": \"使用 Markdown 格式编写评论\",\n                \"Add your comment here...\": \"在此添加您的评论…\",\n                \"Add your answer here...\": \"在此添加您的答复…\", // 具体讨论页\n                \"Text field is empty\": \"文本框为空\",\n            \"Preview\": \"预览\",\n                \"Nothing to preview\": \"没有可预览的内容。\",\n                \"This file is empty.\": \"这是一个空文件。\",\n                \"Try again with a file that’s not empty.\": \"使用非空文件重试。\",\n            \"Leave a comment\": \"发表评论\",\n            \"Write a reply\": \"发表回复\", // 具体讨论页\n            \"Write a comment\": \"发表评论\", // 具体讨论页\n            \"Suggest an answer\": \"提出答复\", // 具体讨论页\n            \"Ask a question, start a conversation, or make an announcement\": \"提出问题、开始讨论或发布公告\", // 新建讨论\n            \"Nothing to preview\": \"没有什么可预览\",\n            \"This repository has been archived.\": \"此仓库已存档。\", // 已存档仓库 某个提交的评论框\n            \"Add review comment\": \"添加审查意见\", // 具体拉取请求 文件审查意见\n            \"Failed to save comment: Body can't be blank\": \"保存评论失败：正文内容不能为空\", // 具体拉取请求 文件审查意见\n            \"Start a review\": \"开始审查\", // 具体拉取请求 文件审查意见\n            // 取消按钮 提醒信息\n            \"Are you sure you want to discard your unsaved changes?\": \"您确定要放弃未保存的更改吗？\",\n\n            \"Apply Suggestion\": \"添加建议\",\n            \"Add a title\": \"添加标题\",\n                \"Title\": \"标题\",\n            \"Add a description\": \"添加描述\",\n                \"Add your description here...\": \"在此添加您的描述…\",\n                \"Add an optional description...\": \"添加可选描述…\",\n            \"There was an error trying to commit changes: Failed to submit suggested changes\": \"提交更改时出错：提交建议更改失败\",\n\n            // 网络错误\n                \"There was a problem saving your comment. Please try again.\": \"保存您的评论时出现问题。请再试一次。\",\n\n            // 拉取请求 代码审查 回复对话框\n                \"Add a suggestion, <Ctrl+g>\": \"添加建议, <Ctrl+g>\",\n                \"Heading\": \"标题\",\n                \"Bold\": \"粗体\",\n                \"Italic\": \"斜体\",\n                \"Quote\": \"摘引\",\n                \"Link\": \"链接\",\n                \"Menu\": \"菜单\", // Android UA 下出现\n                \"Numbered list\": \"有序列表\",\n                \"Unordered list\": \"无序列表\",\n                \"Task list\": \"任务列表\",\n                \"Attach files\": \"附件\",\n                \"Mention\": \"提及\",\n                \"Reference\": \"引用\",\n                \"Saved replies\": \"快速回复\",\n                    \"Select a reply\": \"选择回复\",\n                    \"Create a new saved reply\": \"创建新的快速回复\",\n                \"Slash commands\": \"斜杠命令\",\n                    \"Alerts\": \"警示\",\n                        \"Add a markdown alert to emphasize important information\": \"添加 MarkDown 警示标记，强调重要信息\",\n                    \"Code block\": \"代码块\",\n                        \"Insert a code block formatted for a chosen syntax\": \"插入针对所选语法格式化的代码块\",\n                    \"Details\": \"详细信息\",\n                        \"Add a details tag to hide content behind a visible heading\": \"添加详情标签，将内容隐藏在可见标题后面\",\n                    // \"快速回复\": \"\",\n                        \"Insert one of your saved replies\": \"插入您快速回复\",\n                    \"Table\": \"表格\",\n                        \"Add markdown table\": \"添加 Markdown 表格\",\n                    \"Templates\": \"模板\",\n                        \"Insert one of your issue templates\": \"插入您的议题模板\",\n\n                    \"Slash\": \"斜杠\",\n                    // 代码块\n                        \"No Syntax\": \"无语法\",\n                    // 快速回复\n                        \"No saved replies\": \"尚无快速回复\",\n                        \"You can create one in your\": \"您可以创建一个在您的\",\n                        \"settings\": \"设置\",\n                    // 表格\n                        \"Columns\": \"列\",\n                        \"1 column\": \"1 列\",\n                        \"2 columns\": \"2 列\",\n                        \"3 columns\": \"3 列\",\n                        \"4 columns\": \"4 列\",\n                        \"5 columns\": \"5 列\",\n\n                        \"Rows\": \"行\",\n                        \"1 row\": \"1 行\",\n                        \"2 rows\": \"2 行\",\n                        \"3 rows\": \"3 行\",\n                        \"4 rows\": \"4 行\",\n                        \"5 rows\": \"5 行\",\n\n                    // 模板\n                        \"No issue templates\": \"尚无议题模板\",\n                        \"Learn more about\": \"了解更多关于\",\n                        \"issue templates\": \"议题模板\",\n\n                // 小屏 插入链接 对话框\n                    \"Insert Link\": \"插入链接\",\n                    \"Link Text\": \"链接文本\",\n                    \"Add\": \"添加\",\n\n            \"Attach files by\": \"通过\",\n            \"dragging & dropping,\": \"拖放，\",\n            \"selecting or pasting them.\": \"选择或粘贴来附加文件。\",\n            \"Markdown is supported\": \"支持 Markdown 语法\",\n            \"Styling with Markdown is supported.\": \"支持 Markdown 语法。\",\n            \"Paste, drop, or click to add files\": \"粘贴、拖放或点击添加文件\",\n            \"Write with Copilot\": \"使用 Copilot 撰写\",\n            \"Type your description here…\": \"在此输入描述…\",\n            \"Assignee\": \"受理人\",\n            \"Label\": \"标签\",\n            \"Create more\": \"添加更多\",\n            \"Start typing to create an item, or type # to select a repository\": \"开始输入以创建项目，或输入 # 选择仓库\",\n            \"Uploading your files…\": \"正在上传您的文件…\",\n            // 文件过大\n                \"This video is too big.\": \"该影片过大。\",\n                \"Try again\": \"请上传\",\n                \"with a file size less than 10MB.\": \"体积小于10MB的文件\",\n\n            \"Close issue\": \"关闭议题\", // issue页 评论框\n                \"Close as completed\": \"完成后关闭\",\n                    \"Done, closed, fixed, resolved\": \"已完成、已关闭、已修复、已解决\",\n                \"Close as not planned\": \"非计划中关闭\",\n                    \"Won't fix, can't repro, duplicate, stale\": \"不会修复，无法重现，重复，陈旧\",\n                    \"Won't fix, can't repro, stale\": \"不会修复，无法重现，陈旧\", // 新版议题页\n                // 因重复而关闭（新版议题页）\n                    \"Duplicate of another issue\": \"重复议题\",\n            \"Close with comment\": \"评论并关闭\", // 议题/拉取请求 评论框\n            \"Close pull request\": \"关闭拉取请求\", // 拉取请求页 评论框\n            \"Reopen discussion\": \"重新打开讨论\", // discussion页 评论框\n            \"Close discussion\": \"关闭讨论\", // discussion页 评论框\n                \"Close as resolved\": \"因解决而关闭\",\n                    \"The discussion has been resolved\": \"讨论已解决\",\n                \"Close as outdated\": \"因过时而关闭\",\n                    \"The discussion is no longer relevant\": \"讨论不再相关\",\n                \"Close as duplicate\": \"因重复而关闭\",\n                    \"The discussion is a duplicate of another\": \"讨论与另一个讨论重复\",\n            \"Comment\": \"评论\",\n            \"comment\": \"评论\",\n            \"Submit new issue\": \"提交新议题\",\n            \"Comment on this commit\": \"评论\",\n            \"Close and comment\": \"提交并关闭\",\n            \"Reopen and comment\": \"提交并重新打开\",\n            \"Reopen issue\": \"重新打开议题\", // 具体议题\n            \"Reopen with comment\": \"重新打开评论\", // 具体议题\n            \"Reopen pull request\": \"重新打开拉取请求\", //具体拉取请求\n            \"Add single comment\": \"评论\", // 具体提交页 进行某条代码评论\n            \"Reply\": \"回复\", // 具体讨论页\n            \"Answer\": \"答复\", // 具体讨论页\n            \"Start discussion\": \"开始讨论\", // 新建讨论\n            \"discussion\": \"讨论\", // 新建讨论\n            \"discussions\": \"讨论\", // 新建讨论\n\n            \"Spammy\": \"仅自己可见\",\n                \"This user is marked as spammy. Their comments will onlyshow in staff mode.\": \"该用户已被封号，评论仅自己可见。\",\n\n        // 添加到清单\n            \"Add to list\": \"添加到清单\",\n                \"You don't have any lists yet.\": \"您尚无任何清单。\",\n                \"Lists\": \"清单\",\n                    \"Search lists\": \"搜索清单\",\n                    \"🔮 Future ideas\": \"🔮 超前想法\",\n                    \"🚀 My stack\": \"🚀 技术栈\",\n                    \"✨ Inspiration\": \"✨ 灵感\",\n                    \"No results found.\": \"未找到结果。\",\n                \"Create list\": \"创建清单\",\n                    \"Create a list to organize your starred repositories.\": \"创建一个清单来组织您的星标仓库。\",\n                    \"⭐️ Name this list\": \"⭐️ 清单名称\",\n                    \"Write a description\": \"简单描述\",\n                    // 小贴士\n                        \"type\": \"输入\",\n                        \"to add emoji to the name or description.\": \"在名称或描述中添加表情符号\",\n                    \"Lists are currently in beta.\": \"清单目前处于测试阶段。\",\n                    \"Share feedback and report bugs.\": \"分享反馈意见和报告错误。\",\n                    \"Creating...\": \"创建中…\",\n                    // 私有\n                        \"Enabling this makes the list visible only to you.\": \"启用此选项将使该列表仅对您可见。\",\n\n        // 全局快捷键对话框 - 快捷键 ? 打开\n            \"Keyboard shortcuts\": \"键盘快捷键\",\n            \"Site-wide shortcuts\": \"全站快捷键\",\n                \"Open command palette\": \"打开命令面板\",\n                \"Open command palette in command mode\": \"在命令模式下打开命令面板\",\n                \"Focus search bar\": \"聚焦搜索栏\", // gist\n                \"Open search bar\": \"打开搜索栏\",\n                \"Go to notifications\": \"跳转到通知\",\n                \"Go to dashboard\": \"跳转到仪表板\",\n                \"Go to your issues\": \"跳转到议题\",\n                \"Go to your pull requests\": \"跳转到拉取请求\",\n                \"Bring up this help dialog\": \"弹出这个帮助对话框\",\n                \"Move selection down\": \"向下移动选择\",\n                \"Move selection up\": \"向上移动选择\",\n                \"Toggle selection\": \"切换选择\",\n                \"Open selection\": \"打开选择\",\n                \"Expand and move focus into focused link's hovercard\": \"展开并将焦点移至聚焦链接的悬浮卡\",\n            \"View all keyboard shortcuts\": \"查看所有键盘快捷键\",\n\n        // 命令面板 - ctrl k 或 ctrl alt k 打开\n            \"Clear Command Palette\": \"清除命令面板\",\n            \"Tip:\": \"小贴士：\",\n                \"Go to your accessibility settings to change your keyboard shortcuts\": \"跳转到您的无障碍设置，以更改您的键盘快捷键\",\n                \"to search discussions\": \"搜索讨论\", // 键入 #\n                \"to search issues\": \"搜索议题\", // 键入 #\n                \"to search pull requests\": \"搜索拉取请求\", // 键入 #\n                \"to search projects\": \"搜索项目\", // 键入 !\n                \"to search people and organizations\": \"搜索成员和组织\", // 键入 @\n                \"to search teams\": \"搜索团队\", // 键入 @\n                \"to activate command mode\": \"激活命令模式\", // 键入 >\n                \"Type is:issue to filter to issues\": \"键入 is:issue 以筛选议题\",\n                \"Type is:pr to filter to pull requests\": \"键入 is:pr 以筛选拉取请求\",\n                \"Type is:open to filter to open content\": \"键入 is:open 以筛选打开的内容\",\n                \"Type author:@me to search your content\": \"键入 author:@me 以筛选您的内容\",\n                \"for help and tips\": \"寻求帮助和提示\", // 键入 ?\n\n            \"Pages\": \"GitHub Pages\",\n            \"Dashboard\": \"仪表板\",\n            \"Notifications\": \"通知\",\n            // \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Insights\": \"洞察\",\n            \"Organizations\": \"组织\",\n            \"Repositories\": \"仓库\",\n            \"Packages\": \"软件包\",\n            \"Users\": \"用户\",\n            \"to jump to\": \"去跳转\",\n\n            \"Top result\": \"最佳结果\",\n            \"No results matched your search\": \"没有与您的搜索相符的结果\",\n            // [/in ([\\w]+/[\\w]+)/, \"在 $1\"],\n\n            // # 模式\n                \"Search issues and pull requests\": \"搜索议题和拉取请求\",\n                \"Search issues, pull requests, discussions, and projects\": \"搜索议题、拉取请求、讨论和项目\",\n                \"Issues, pull requests, and discussions\": \"议题、拉取请求和讨论\",\n\n            // ! 模式\n                \"Search projects\": \"搜索项目\",\n\n            // @ 模式\n                \"Search or jump to a repository\": \"搜索或跳转到仓库\",\n                \"Search or jump to a user, organization, or repository\": \"搜索或跳转到用户、组织或仓库\",\n\n            // / 文件模式\n                \"Search files\": \"搜索文件\",\n                \"Files\": \"文件\",\n\n            // > 命令模式\n                \"Run a command\": \"运行命令\",\n                \"Run command\": \"运行命令\",\n                \"Commands\": \"命令\",\n                \"Global Commands\": \"全局命令\",\n                \"Type > to filter\": \"键入 > 去筛选\",\n                \"– New repository\": \"- 新建仓库\",\n                \"– Import repository\": \"- 导入仓库\",\n                \"– New project\": \"- 新建项目\",\n                \"– New discussion\": \"- 新建讨论\",\n                \"– New organization\": \"- 新建组织\",\n                \"– New gist\": \"- 新建代码片段\",\n                \"– New issue\": \"- 新建议题\",\n                \"– New file\": \"- 新建文件\",\n                \"– Change tab size rendering\": \"- 切换制表符尺寸\",\n                \"– Switch theme\": \"- 切换主题\",\n\n                \"New issue\": \"新建议题\",\n                \"New discussion\": \"新建讨论\",\n                \"New file\": \"新建文件\",\n                \"Change tab size rendering\": \"切换制表符尺寸\",\n                \"Change tab size r...\": \"切换制表符尺寸\",\n                    \"2 spaces\": \"2 个空格\",\n                    \"3 spaces\": \"3 个空格\",\n                    \"4 spaces\": \"4 个空格\",\n                    \"5 spaces\": \"5 个空格\",\n                    \"6 spaces\": \"6 个空格\",\n                    \"7 spaces\": \"7 个空格\",\n                    \"8 spaces\": \"8 个空格\",\n                    \"9 spaces\": \"9 个空格\",\n                    \"10 spaces\": \"10 个空格\",\n                    \"12 spaces\": \"12 个空格\",\n                \"Switch theme\": \"切换主题\",\n                    \"Default dark\": \"暗 - 默认\",\n                    \"Default light\": \"亮 - 默认\",\n                    \"Dark dimmed\": \"昏暗\",\n                    \"Switch theme to dark high contrast\": \"切换主题为 暗 - 高对比\",\n                    \"Sync with system settings\": \"与系统设置同步\",\n\n            // ? 模式\n                \"Modes\": \"模式\",\n                \"Search for\": \"搜索\",\n                \"across all of GitHub\": \"在整个 GitHub 中\",\n                \"issues, pull requests, discussions,\": \"议题、拉取请求、讨论\",\n                \"organizations, repositories,\": \"组织、仓库\",\n                \"projects\": \"项目\",\n                \"files\": \"文件\",\n                \"issues\": \"议题\",\n                \"pull requests\": \"拉取请求\",\n                \"organizations\": \"组织\",\n                \"repositories\": \"仓库\",\n                \"users\": \"用户\",\n                \"Activate\": \"激活\",\n                \"command mode\": \"命令模式\",\n\n                \"Use filters in issues, pull requests, discussions, and projects\": \"在议题、拉取请求、讨论和项目中使用过滤器\",\n                \"Search your issues, pull requests, and discussions\": \"搜索您的议题、拉取请求和讨论\",\n                \"Filter to pull requests\": \"筛选拉取请求\",\n                \"Filter to issues\": \"筛选议题\",\n                \"Filter to discussions\": \"筛选讨论\",\n                \"Filter to projects\": \"筛选项目\",\n                \"Filter to open issues, pull requests, and discussions\": \"筛选打开的议题、拉取请求和讨论\",\n\n            // 议题页面\n                \"Edit issue title\": \"编辑议题标题\",\n                \"Edit issue body\": \"编辑议题内容\",\n                \"Transfer issue…\": \"转移议题…\",\n                \"Delete issue…\": \"删除议题…\",\n\n        // 公共词 高频词\n            \"Follow\": \"关注\",\n            \"Unfollow\": \"取消关注\",\n            \"Star\": \"星标\",\n            \"Stars\": \"星标\",\n            \"Unstar\": \"已加星标\",\n            \"Starred\": \"已加星标\",\n            \"Fork\": \"复刻\",\n            \"Save\": \"保存\",\n            \"Saving…\": \"保存中…\",\n            \"Saving...\": \"保存中…\",\n            \"Save changes\": \"保存更改\",\n            \"Update\": \"更新\",\n            \"Updating\": \"更新中\",\n            \"Updating…\": \"更新中…\",\n            \"Updating...\": \"更新中…\",\n            \"Delete\": \"删除\",\n            \"Cancel\": \"取消\",\n            \"Edit\": \"编辑\",\n            \"Added on\": \"添加于\",\n            \"Loading\": \"加载中\",\n            \"Loading…\": \"载入中…\",\n            \"Loading...\": \"载入中…\",\n            \"Copy\": \"复制\",\n            \"Copied!\": \"✅ 复制成功!\",\n            \"Copy to clipboard\": \"复制到剪切板\",\n            \"Give feedback\": \"反馈\",\n            \"Give us your feedback\": \"向我们提供反馈意见\",\n            \"Download\": \"下载\",\n            \"View\": \"查看\",\n            \"Create\": \"创建\",\n\n            \"Close\": \"关闭\",\n            \"Closed\": \"已关闭\",\n            \"Open\": \"打开\",\n            \"Reopen\": \"重新打开\",\n\n            \"and\": \"和\",\n            \", and\": \"，和\",\n            \"or\": \"或\",\n            \", or\": \"，或\",\n            \"to\": \"到\",\n            \"by\": \"由\",\n            \"on\": \"于\",\n            \"Use\": \"使用\",\n            \"New\": \"新\",\n\n            \"Learn more\": \"了解更多\",\n            \"Learn More\": \"了解更多\",\n            \"Learn more.\": \"了解更多。\",\n            \",\": \"，\",\n            \".\": \"。\",\n\n            \"Prev\": \"上一页\",\n            \"Previous\": \"上一页\",\n            \"Next\": \"下一页\",\n\n            \"Less\": \"更少\",\n            \"More\": \"更多\",\n\n            \"Show more\": \"显示更多\",\n            \"Show less\": \"显示更少\",\n\n            \"Load more…\": \"载入更多…\",\n            \"Loading more…\": \"载入更多…\",\n            \"Loading more...\": \"载入更多…\",\n\n            // 名词\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Public archive\": \"公共存档\",\n                \"Private archive\": \"私有存档\",\n                \"Public template\": \"公共模板\",\n                \"Public mirror\": \"公共镜像\",\n                \"Code\": \"代码\",\n                \"Overview\": \"概况\",\n                \"Followers\": \"关注者\",\n                \"Collaborators\": \"协作者\",\n                \"collaborators\": \"协作者\",\n                \"Sponsors\": \"赞助者\",\n                \"Sponsoring\": \"赞助者\",\n                \"commit\": \"提交\",\n                \"commits\": \"提交\",\n                \"Organization\": \"组织\",\n                \"People\": \"成员\",\n                \"Teams\": \"团队\",\n\n            // 相对时间\n                \"just now\": \"刚刚\",\n                \"now\": \"当前\",\n                \"yesterday\": \"昨天\",\n                \"last month\": \"上个月\",\n\n        // 验证标记浮动信息\n            \"This commit was created on GitHub.com and signed with GitHub’s\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub's\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub’s verified signature\": \"此提交在 GitHub.com 上创建并签名，使用 GitHub 的\",\n            \"This commit was signed with the committer's\": \"此提交已签名，使用提交者的\",\n            \"This tag was signed with the committer's\": \"此标签已签署，使用提交者的\", // /<user-name>/<repo-name>/releases\n            \"This commit was signed with the committer’s\": \"此提交已签名，使用提交者的\",\n            \"This tag was signed with the committer’s\": \"此标签已签署，使用提交者的\", //\n            \"This commit is signed with the committer’s\": \"此提交已签名，使用提交者的\",\n            \"’s contribution has been verified via GPG key.\": \"的贡献已通过 GPG 密钥验证。\",\n            \"verified signature\": \"已验证签名\",\n            \"The key has expired\": \"密钥已过期\",\n            \"This commit is not signed, but one or more authors requires that any commit attributed to them is signed.\": \"此提交未签名，但一位或多位作者要求对归属于他们的任何提交进行签名。\",\n            \"We had a problem verifying this signature. Please try again later.\": \"我们在验证此签名时遇到问题。请稍后再试。\",\n            \"We were unable to verify this signature.\": \"我们无法验证此签名。\",\n            \"This user has not yet uploaded their public signing key.\": \"此用户尚未上传其公共签名密钥。\",\n\n            \"GPG key ID:\": \"GPG 密钥 ID：\",\n            \"GPG Key ID:\": \"GPG 密钥 ID：\",\n            \"SSH key Fingerprint:\": \"SSH 密钥指纹：\",\n            \"SSH Key Fingerprint:\": \"SSH 密钥指纹：\",\n            \"Learn about vigilant mode\": \"了解警戒模式\",\n            \"The email in this signature doesn’t match the committer email.\": \"此签名中的电子邮箱与提交者的电子邮箱不相符。\",\n            \"No user is associated with the committer email.\": \"提交者的电子邮箱未与用户相关联。\",\n\n            \"Verified\": \"已验证\",\n            \"Expired\": \"已过期\",\n            \"Partially verified\": \"部分验证\",\n                \"We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.\": \"我们无法验证来自共同作者的签名，并且此提交的某些共同作者要求对其提交进行签名。\",\n            \"Unverified\": \"未验证\",\n                \"Upload your public signing GPG key\": \"上传您的公共签名 GPG 密钥\",\n                \"to verify your signature.\": \"以验证您的签名。\",\n\n        // 邮箱验证提示\n            \"Please verify your email address to access all of GitHub's features.\": \"请验证您的电子邮箱地址以便开启所有 GitHub 功能。\",\n            \"Configure email settings\": \"修改电子邮箱设置\",\n            \"Your email was verified.\": \"您的电子邮箱地址验证成功！\",\n\n        // 标签提示\n            \"New feature or request\": \"新功能或要求\",\n\n        // 更换新手机, 要求重新下载恢复码的全局提醒\n            \"Don't get locked out - if you get a new phone this season, be sure to transfer your authenticator app data to the new phone. Enable cloud back up if your authenticator app supports it and consider\": \"不要被锁在门外——如果您在这个季节买了一部新手机，请务必将您的身份验证器应用数据传输到新手机。如果您的身份验证器应用支持云备份，请启用它并考虑\",\n            \"redownloading your recovery codes\": \"重新下载您的恢复码\",\n            \", just to be safe.\": \"，以确保安全。\",\n\n        // 刷新会话提示条\n            \"You signed in with another tab or window.\": \"您使用其他标签页或窗口登录。\",\n            \"Reload\": \"重新加载\",\n            \"to refresh your session.\": \"以刷新您的会话\",\n\n        // Cookie 设置\n            \"Manage cookie preferences\": \"管理 Cookie 偏好设置\",\n            \"Most GitHub websites use cookies. Cookies are small text files placed on your device to store data so web servers can use it later. GitHub and our third-party partners use cookies to remember your preferences and settings, help you sign in, show you personalized ads, and analyze how well our websites are working. For more info, see the Cookies and similar technologies section of the\": \"大多数 GitHub 网站都使用 Cookie。Cookie 是保存在您的设备上的小型文本文件，用于存储数据，以便 Web 服务器稍后使用。GitHub 和我们的第三方合作伙伴使用 Cookie 来记住您的偏好和设置、帮助您登录、向您显示个性化广告以及分析我们网站的运行情况。有关更多信息，请参阅隐私声明中的\",\n            \"Privacy Statement\": \"Cookie 和类似技术部分\",\n            \"Accept\": \"接受\",\n            \"Reject\": \"拒绝\",\n            \"Reset all\": \"重置全部\",\n            \"Required\": \"必要的\",\n            \"GitHub uses required cookies to perform essential website functions and to provide the services. For example, cookies are used to log you in, save your language preferences, provide a shopping cart experience, improve performance, route traffic between web servers, detect the size of your screen, determine page load times, improve user experience, and for audience measurement. These cookies are necessary for our websites to work.\": \"GitHub 使用必需的 Cookie 来执行基本网站功能并提供服务。例如，Cookie 用于登录、保存您的语言偏好、提供购物车体验、提高性能、在 Web 服务器之间路由流量、检测屏幕大小、确定页面加载时间、改善用户体验以及用于受众测量。这些 Cookie 是我们网站正常运行所必需的。\",\n            \"Analytics\": \"分析\",\n            \"We allow third parties to use analytics cookies to understand how you use our websites so we can make them better. For example, cookies are used to gather information about the pages you visit and how many clicks you need to accomplish a task. We also use some analytics cookies to provide personalized advertising.\": \"我们允许第三方使用分析性 Cookie 来了解您如何使用我们的网站，以便我们改进网站。例如，Cookie 用于收集有关您访问的页面以及完成任务所需的点击次数的信息。我们还使用一些分析性 Cookie 来提供个性化广告。\",\n            \"Social Media\": \"社交媒体\",\n            \"GitHub and third parties use social media cookies to show you ads and content based on your social media profiles and activity on GitHub's websites. This ensures that the ads and content you see on our websites and on social media will better reflect your interests. This also enables third parties to develop and improve their products, which they may use on websites that are not owned or operated by GitHub.\": \"GitHub 和第三方使用社交媒体 Cookie 根据您的社交媒体个人资料和 GitHub 网站上的活动向您显示广告和内容。这可以确保您在我们的网站和社交媒体上看到的广告和内容将更好地反映您的兴趣。还使第三方能够开发和改进它们的产品，它们可能会在不由 GitHub 拥有或运营的网站上使用这些产品。\",\n            \"Advertising\": \"广告\",\n            \"In addition, GitHub and third parties use advertising cookies to show you new ads based on ads you've already seen. Cookies also track which ads you click or purchases you make after clicking an ad. This is done to show you ads that are more relevant to you and for business purposes with our advertising partners. For example, cookies are used to detect when you click an ad and to show you ads based on your social media interests and website browsing history.\": \"此外，GitHub 和第三方使用广告 Cookie 根据您已经看过的广告向您显示新广告。Cookie 还会跟踪您点击的广告或点击广告后进行的购买。这样做是为了向您显示与您更相关的广告，并用于与我们的广告合作伙伴开展业务。例如，Cookie 用于检测您何时点击广告，并根据您的社交媒体兴趣和网站浏览历史记录向您显示广告。\",\n\n        // 日历\n            \"Jan\": \"1月\",\n            \"Feb\": \"2月\",\n            \"Mar\": \"3月\",\n            \"Apr\": \"4月\",\n            \"May\": \"5月\",\n            \"Jun\": \"6月\",\n            \"Jul\": \"7月\",\n            \"Aug\": \"8月\",\n            \"Sep\": \"9月\",\n            \"Oct\": \"10月\",\n            \"Nov\": \"11月\",\n            \"Dec\": \"12月\",\n\n            \"January\"   : \"1月\",\n            \"February\"  : \"2月\",\n            \"March\"     : \"3月\",\n            \"April\"     : \"4月\",\n            \"June\"      : \"6月\",\n            \"July\"      : \"7月\",\n            \"August\"    : \"8月\",\n            \"September\" : \"9月\",\n            \"October\"   : \"10月\",\n            \"November\"  : \"11月\",\n            \"December\"  : \"12月\",\n\n            \"Sun\"  : \"周日\",\n            \"Mon\"  : \"周一\",\n            \"Tue\"  : \"周二\",\n            \"Wed\"  : \"周三\",\n            \"Thu\"  : \"周四\",\n            \"Fri\"  : \"周五\",\n            \"Sat\"  : \"周六\",\n\n        // 语言名称（仅适配热门语言\n            \"Arabic\": \"阿拉伯文\",\n            \"Chinese\": \"中文\",\n            \"English\": \"英文\",\n            \"French\": \"法文\",\n            \"German\": \"德文\",\n            \"Greek, Modern\": \"希腊文\",\n            \"Italian\": \"意大利文\",\n            \"Japanese\": \"日文\",\n            \"Korean\": \"韩文\",\n            \"Latin\": \"拉丁文\",\n            \"Portuguese\": \"葡萄牙文\",\n            \"Russian\": \"俄文\",\n            \"Sichuan Yi, Nuosu\": \"彝文\", // 存疑\n            \"Spanish, Castilian\": \"西班牙文\",\n            \"Thai\": \"泰文\",\n            \"Tibetan\": \"藏文\",\n            \"Vietnamese\": \"越南文\",\n            \"Zhuang, Chuang\": \"壮文\", // 存疑\n\n        // Copilot 窗口\n            // 顶部\n            \"All repositories\": \"所有仓库\",\n            \"Back\": \"返回\",\n            \"Conversation options\": \"选项\",\n                \"Enable custom instructions\": \"启用个人指导\",\n                \"Disable custom instructions\": \"禁用个人指导\",\n                \"Personal instructions\": \"个人指导\",\n                    \"Set up Copilot to align with your workflows and preferences. These instructions will only impact your personal conversation.\": \"设置 Copilot 以符合您的工作流程和偏好。这些指导仅影响您的个人对话。\",\n                    \"Your instructions\": \"您的指导\",\n                        \"Role\": \"角色\",\n                        \"Communication\": \"通信\",\n                        \"Code preferences\": \"代码偏好\",\n                    \"characters\": \"字符\",\n                \"Delete conversation\": \"删除对话\",\n                \"View all conversations\": \"查看全部对话\",\n                    \"There are no conversations at the moment.\":\"目前没有对话。\",\n                    \"Start a new conversation\":\"开始新对话\",\n                    \"Active conversations\": \"最近对话\",\n                    \"All conversations\": \"所有对话\",\n                    // 删除\n                        \"Are you sure? This can’t be undone.\": \"您确定吗？此操作无法撤销。\",\n            \"Continue in immersive\": \"全屏对话\",\n            \"Close chat\": \"关闭\",\n\n            \"public\": \"公共\",\n            \"repository\": \"仓库\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n                \"Select a repository to get started. Ask questions about your codebase to get answers fast and learn your way around.\": \"选择一个仓库即可开始。询问有关代码库的问题，以快速获得答案并了解相关知识。\",\n                \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Search repositories to chat about\": \"搜索要讨论的仓库\",\n            \"Recent repositories\": \"最近访问\",\n            \"General purpose chat\": \"普通对话\",\n\n            \"Loading Conversation\": \"加载中\",\n            \"Chatting about code and programming\": \"讨论关于代码和编程\",\n            // 对话框\n            \"Ask about the repository:\": \"询问关于此仓库的信息：\",\n            \"Ask about the tree comparison:\": \"询问关于比较的信息：\",\n            \"How can I help you?\": \"有什么可以帮忙？\",\n            \"Attach\": \"附件\",\n            \"Attach files or symbols\": \"附加文件或符号\",\n                \"Fetching files, folders, and symbols…\": \"正在获取文件（夹）和符号…\",\n            \"Add an extension\": \"添加扩展\",\n                //\"Files and symbols…\": \"文件和符号…\",\n                \"Files, folders, and symbols\": \"文件（夹）和符号…\",\n                    \"First attach a repository\": \"请先附加仓库\",\n                    \"Select files, folders, and symbols\": \"选择文件（夹）和符号\",\n                    \"Choose a repository to browse for files, folders, and symbols.\": \"选择仓库以浏览文件（夹）和符号。\",\n                    //\"Attach files and symbols\": \"附加文件和符号\",\n                        //\"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的文件和符号。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Choose what you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的内容。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Search files and symbols\": \"搜索文件和符号\",\n                        \"Current attachments\": \"当前附件\",\n                        \"Symbols\": \"符号\",\n                \"Repository…\": \"仓库…\",\n                    \"Attach a repository\": \"附加仓库\",\n                        \"Search repositories\": \"搜索仓库\",\n                        \"Fetching repositories…\": \"正在获取仓库\",\n                \"Repository\": \"仓库\",\n                \"Repositories…\": \"仓库…\",\n                    \"Select a repository\": \"选择仓库\",\n                    \"Select repositories\": \"选择仓库\",\n                        \"Choose repositories to chat about.\": \"选择以聊天\",\n                        \"Choose a repository to chat about.\": \"选择以聊天\",\n                \"Remove topic\": \"移除主题\",\n                \"Add repositories, files, and spaces\": \"添加仓库、文件和空间\",\n                \"Upload from computer\": \"上传本机文件\",\n                \"Files and folders\": \"文件和文件夹\",\n                \"Spaces…\": \"空间…\",\n                \"Create your first space\": \"创建您的第一个空间\",\n                \"Extensions…\": \"扩展…\",\n                \"Extensions\": \"扩展\",\n                    \"Chat with your favorite tools and services\": \"使用您最喜欢的工具和服务聊天\",\n                    \"Browse the marketplace to find extensions for the tools and services you rely on\": \"浏览市场以查找您所依赖的工具和服务的扩展\",\n                    \"Browse marketplace\": \"前往市场\",\n            \"Add attachment\": \"添加附件\",\n            \"Remove topic\": \"移除主题\",\n            \"Convert to file\": \"转成文件\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件选项\",\n                \"Remove attachments\": \"移除附件\",\n            \"Send now\": \"发送\",\n            \"Stop response\": \"停止响应\",\n            // 反馈\n            \"Rate your experience\": \"反馈\",\n            // 四个表情\n                \"Love it\": \"优\",\n                \"It’s ok\": \"良\",\n                \"Not great\": \"中\",\n                \"Hate it\": \"差\",\n\n            \"Tell us what you liked or what could be better\": \"告诉我们您喜欢什么或可以改进的地方\",\n\n            // 响应状态\n                \"Copilot is responding…\": \"Copilot 响应中…\",\n                \"creating plan\": \"创建计划中\",\n                \"getting data\": \"获取数据中\",\n                \"Using the GitHub API to search pull requests\": \"正在使用 GitHub API 搜索拉取请求\",\n                \"Using the GitHub API to get latest release\": \"正在使用 GitHub API 获取最新发行版\",\n                    \"Copilot used the\": \"Copilot 已使用\",\n                    \"Issue API\": \"议题 API\",\n                    \"tool\": \"工具\",\n\n            // 聊天内容 - 创建拉取请求\n                \"Are you sure?\": \"您确定吗？\",\n                    \"Are you sure you wish to execute the \\\"Create pull request with Copilot coding agent\\\" tool?\": \"您确定要执行“使用 Copilot 编程智能体创建拉取请求”工具吗？\",\n                    \"Allow\": \"允许\",\n                    \"Dismiss\": \"拒绝\",\n\n                \"accepted\": \"允许\",\n                    \"the action\": \"此操作\",\n\n            // 引用\n                \"More reference options\": \"更多引用选项\",\n                    \"Attach to chat\": \"附加至聊天\",\n                    \"Raw\": \"源码\",\n                    \"Show content\": \"显示内容\",\n                        \"above\": \"上方\",\n                        \"below\": \"下方\",\n                    \"Reference details\": \"引用信息\",\n                        \"contributor\": \"贡献者\",\n                        \"contributors\": \"贡献者\",\n                        \"updated\": \"更新于\",\n\n            // 报错\n                \"Copilot was interrupted before it could finish this message.\": \"Copilot 在完成此消息之前被中断。\",\n\n            \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"请不要包含敏感、机密或个人数据。您的匿名反馈有助于我们改进服务，根据\",\n            \"Privacy Policy\": \"隐私政策\",\n            \"Send\": \"发送\",\n            \"Task\": \"任务\",\n            \"Create task\": \"创建任务\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n\n            \"Copy code\": \"复制代码\",\n            \"Copied!\": \"复制成功！\",\n\n            \"Good response\": \"点赞\",\n                \"positive feedback submitted\": \"已提交正面反馈\",\n            \"Bad response\": \"点踩\",\n            \"Retry\": \"重试\",\n\n            \"Give additional feedback\": \"提交额外反馈\",\n                \"Would you like to participate in our research?\": \"您愿意参与我们的研究吗？\",\n                \"You will be compensated for your time\": \"您的时间将得到补偿。\",\n                \"Book a session\": \"预约\",\n                \"No, thanks\": \"不，谢谢\",\n\n            \"Chats\": \"聊天\",\n            \"No chats yet\": \"还没有聊天\",\n            \"Ask Copilot anything on the right to start your first chat.\": \"在右侧询问 Copilot 任何问题，开始您的第一次聊天。\",\n\n            \"Agent sessions\": \"智能体任务\",\n                \"New agent session\": \"新智能体任务\",\n                \"No agents running\": \"没有智能体任务运行\",\n                \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您现在可以请求 Copilot 在后台处理任务，创建一个拉取请求供您审查。\",\n\n            \"Explore the latest Copilot launches from Universe ’25\": \"探索 Universe ’25 的最新 Copilot 启动\",\n            \"See what’s new\": \"查看最新内容\",\n            \"Explore GitHub’s latest tools shaping agentic software and developer choice.\": \"探索 GitHub 最新的工具，塑造智能化的软件和开发者选择。\",\n\n            \"Select a custom agent\": \"选择自定义智能体\",\n                \"Create an agent\": \"新建智能体\",\n\n            \"Start task\": \"开始任务\",\n\n            \"Recent agent sessions\": \"最近智能体任务\",\n            \"Recent sessions\": \"最近任务\",\n                \"No sessions found. Create one by sending a prompt above.\": \"没有找到任务。通过发送提示来创建一个。\",\n\n            // 空间\n            \"Duplicate\": \"复制\",\n            \"Duplicate Space\": \"复制空间\",\n            \"Spaces are now available through the GitHub MCP in VSCode.\": \"空间现在可以通过 VSCode 的 GitHub MCP 使用。\",\n            \"Install\": \"安装\",\n            \"Spaces organize your files, pull requests, issues, and standards so Copilot can give more relevant help for your work.\": \"空间组织您的文件、拉取请求、议题和标准，以便 Copilot 为您的工作提供更相关的帮助。\",\n            \"Create space\": \"创建空间\",\n            \"Search...\": \"搜索…\",\n            \"Shared with me\":\"与我共享的空间\",\n            \"Start your first space\": \"开始您的第一个空间\",\n            \"Need help? Read the docs\": \"需要帮助？阅读文档\",\n            \"Generate code\": \"生成代码\",\n            \"Produce code that follows your team's patterns.\": \"生成符合团队规范的代码。\",\n            \"Share knowledge\": \"分享知识\",\n            \"Centralize docs so your team can quickly find answers.\": \"集中管理文档，让团队快速找到答案。\",\n            \"Plan projects\": \"规划项目\",\n            \"Create requirements and issues your team can ship.\": \"创建团队可交付的需求与议题。\",\n            \"New Space\": \"新空间\",\n            \"Space name\": \"空间名称\",\n            \"Choose a name that describes your project or use case\": \"选择一个描述您的项目或用例的名称\",\n            \"Only you will be able to see this space.\": \"只有您可以看到此空间。\",\n            \"Create Space\": \"创建空间\",\n            \"Install MCP\": \"安装 MCP\",\n            \"Add a short description to explain this space's purpose (e.g., 'Frontend design system' or 'API docs hub').\": \"添加一个简短的描述，解释此空间的用途（例如，'前端设计系统'或'API 文档中心'）。\",\n            \"Add files\": \"添加文件\",\n            \"Define Copilot’s role, focus, and what to avoid in this space. Ex. “You are a [role]. Follow our [framework/patterns] to [type of task]. Avoid [practices or tools] unless specified”.\": \"定义 Copilot 的角色、焦点和在此空间中避免的内容。例如，“您是 [角色]。遵循我们的 [框架/规范] 来 [任务类型]。除非另有说明，否则避免 [实践或工具]。”\",\n            \"Sources\": \"来源\",\n            \"Conversations\": \"对话\",\n            \"Add sources\": \"添加来源\",\n                \"Add repository\": \"添加仓库\",\n                \"Add files from repository\": \"从仓库添加文件\",\n                \"Link files, pull requests, and issues\": \"链接文件、拉取请求和议题\",\n                \"Local\": \"本地\",\n                \"Upload a file\": \"上传文件\",\n                \"Add text content\": \"添加文本内容\",\n            \"Add sources to get started\": \"添加来源以开始\",\n            \"Provide files, docs, issues, or repositories so Copilot can give more relevant answers.\": \"提供文件、文档、议题或仓库，以便 Copilot 为您提供更相关的答案。\",\n            \"Start a new conversation in this space by typing in the input box at the top.\": \"通过在顶部输入框中输入，开始在此空间中的新对话。\",\n            \"Space not found\": \"空间未找到\",\n            \"This URL may be incorrect, you're signed out of your organization, or the Space may have been deleted.\": \"此 URL 可能不正确，您已退出组织，或空间可能已被删除。\",\n            \"Manage session\": \"管理会话\",\n            \"View pull request\": \"查看拉取请求\",\n            \"View verbose logs\": \"查看详细日志\",\n            \"More actions\": \"更多操作\",\n            \"Copilot started work\": \"Copilot 开始工作\",\n            \"Summary\": \"摘要\",\n            \"Copy head branch name to clipboard\": \"复制头分支名称到剪贴板\",\n            \"Edit title\": \"编辑标题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // Copilot 窗口\n        [/Chatting about ([^ ]+)/, \"关于 $1 的对话\"],\n        [/Chatting with (\\d+) attachments?/, \"附加 $1 个附件\"],\n        //[/Public code references from 4 repositories/, \"\"],\n        [/Public code references from (\\d+) repositor(y|ies)/, \"公共代码，引用自 $1 个仓库\"],\n        [/(\\d+) references?/, \"$1 条引用\"],\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 代码行（line of code）= 行数 - 空行数（lines - blank lines）\n        [/Using the GitHub API to search for issues assigned to user ([^ ]+)/, \"使用 GitHub API 搜索分配给用户 $1 的议题\"],\n        [/Chatting with (\\d+) attachments?/, \"附件 $1 个\"],\n        [/Choose items from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"从 $1 中选择项目来进行交流。使用较少的引用以获得更准确的回答。\"],\n        [/Choose files, folders, and symbols from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"选择 $1 中的文件（夹）和符号进行聊天。引用越少，回复越准确。\"],\n        [/Delete conversation: \\\"(.+)\\\"/, \"删除对话：“$1”\"],\n        // 智能体\n        [/Branch: (.+)/, \"分支：$1\"],\n        [/Agent: (.+)/, \"智能体：$1\"],\n        /**\n         * 匹配时间格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否稳定, 暂时先试用着. 2016-03-19 20:46:45\n         *\n         * 更新于 2021-10-04 15:19:18\n         * 增加 带介词 on 的格式，on 翻译不体现\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新于 2021-10-10 13:44:36\n         * on 星期(简写), 月 日 年  // 个人访问令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多规则\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全称), 月 日, 年 // 仓库-->洞察-->流量 图示标识\n         * Sunday, November 14, 2021\n         *\n         * 星期(全称), 日 月 年// 仓库-->洞察-->贡献者 和 仓库-->洞察-->代码频率\n         * Sunday, 4 Jul 2023\n         *\n         * 更新于 2023-07-04 13:19:21\n         * 新增前缀词, 减少二次组织翻译\n         *  Updated Jul 4            // 仪表板页面 仓库标签卡\n         *  Commits on Jul 4, 2023   // 提交页面、仓库拉取请求页->提交卡\n         *  Joined on Jul 4, 2023    // 追星者，关注者页面\n         *\n         * 更新于 2023-11-11 16:48:02\n         * 个人资料页->贡献卡\n         * 日期带后缀\n         * on March 19th.\n         * on August 22nd.\n         * on August 21st.\n         *\n         * Tip:\n         * 正则中的 ?? 前面的字符 重复0次或1次\n         * 正则中的 ?: 非捕获符号(即关闭圆括号的捕获能力) 使用方法 (?: 匹配规则) -->该匹配不会被捕获 为 $数字\n         */\n        [/(^Updated (?:on )?|^Commits on |^Joined on |on )?(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?)?,? )?(?:(\\d{1,2})(?:st.|nd.|rd.|th.)?)? ?(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?) ?(\\d{1,2})?,? (\\d{4})?/g, function (all, prefix, week, date1, month, date2, year) {\n            var prefixKey = {\n                \"Updated \"   : \"更新于 \",\n                \"Commits on \": \"提交于 \",\n                \"Joined on \" : \"加入于 \",\n                //\"Submitted \": \"提交于 \", // 教育\n            };\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            // 处理日期\n            var date = date1 ? date1 : date2;\n            var formattedDate = (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '');\n\n            // 处理星期\n            var formattedWeek = week ? '，' + weekKey[week.substring(0, 3)] : '';\n\n            // 返回翻译结果\n            return (prefixKey[prefix] ? prefixKey[prefix] : '') + formattedDate + formattedWeek;\n        }],\n        /**\n         * 相对时间格式处理\n         *\n         * 更新于 2021-11-21 16:47:14\n         * 1. 添加 前缀词\n         *    over xxx ago // 里程碑页面 最后更新时间\n         *    about xxx ago // 里程碑页面 最后更新时间\n         *    almost xxx ago // 里程碑页面 最后更新时间\n         *    less than xxx ago // 导出账户数据\n         * 2. xxx之内的相对时间格式\n         *  in 6 minutes // 拉取请求页面\n         *\n         * 更新于 2021-11-22 11:54:30\n         * 1. 修复 Bug: 意外的扩大了匹配范围(不带前缀与后缀的时间) 干扰了带有相对时间的其他规则\n         *  7 months\n         */\n         [/^just now|^now|^last month|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '现在';\n            }\n            if (all === 'just now') {\n                return '刚刚';\n            }\n            if (all === 'last month') {\n                return '上个月';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改为 1\n\n            var unitKey = {second: '秒', minute: '分钟', hour: '小时', day: '天', month: '个月', year: '年'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大约 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之内' : '之前');\n            }\n        }],\n        /**\n         * 匹配时间格式 2\n         *\n         * in 5m 20s\n         */\n        [/^(?:(in) |)(?:(\\d+)m |)(\\d+)s/,function (all, prefix, minute, second) {\n            all = minute ? minute + '分' + second + '秒' : second + '秒';\n            return (prefix ? all + '之内' : all);\n        }],\n\n        // 其他翻译\n        [/to enable two-factor authentication as an additional security measure. Your activity on GitHub includes you in this requirement. You will need to enable two-factor authentication on your account before ([^ ]+), or be restricted from account actions./, \"启用双因素身份验证（2FA）作为额外安全措施。您在 GitHub 上的活动让您接收到此要求。您将需要在 $1 前启用双因素身份验证，否则会被限制账户操作。\"],\n    ],\n    \"time-regexp\": [ // 时间正则翻译专项\n        /**\n         * 匹配时间格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否稳定, 暂时先试用着. 2016-03-19 20:46:45\n         *\n         * 更新于 2021-10-04 15:19:18\n         * 增加 带介词 on 的格式，on 翻译不体现\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新于 2021-10-10 13:44:36\n         * on 星期(简写), 月 日 年  // 个人访问令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多规则\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全称), 月 日, 年 // 仓库-->洞察-->流量 图示标识\n         * Sunday, November 14, 2021\n         *\n         * Tip:\n         * 正则中的 ?? 前面的字符 重复0次或1次\n         * 正则中的 ?: 非捕获符号(即关闭圆括号的捕获能力) 使用方法 (?: 匹配规则) -->该匹配不会被捕获 为 $数字\n         */\n        [/(?:on |)(?:(\\d{1,2}) |)(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?), |)(?:(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May(?:)??|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)(?:,? |$))(\\d{4}|)(\\d{1,2}|)(?:,? (\\d{4})|)/g, function (all, date1, week, month, year1, date2, year2) {\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\",\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n            var date = date1 ? date1 : date2;\n            var year = year1 ? year1 : year2;\n            return (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '') + (week ? ', ' + weekKey[week.substring(0, 3)] : '');\n        }],\n        /**\n         * 相对时间格式处理\n         *\n         * 更新于 2021-11-21 16:47:14\n         * 1. 添加 前缀词\n         *    over xxx ago // 里程碑页面 最后更新时间\n         *    about xxx ago // 里程碑页面 最后更新时间\n         *    almost xxx ago // 里程碑页面 最后更新时间\n         *    less than xxx ago // 导出账户数据\n         * 2. xxx之内的相对时间格式\n         *  in 6 minutes // 拉取请求页面\n         *\n         * 更新于 2021-11-22 11:54:30\n         * 1. 修复 Bug: 意外的扩大了匹配范围(不带前缀与后缀的时间) 干扰了带有相对时间的其他规则\n         *  7 months\n         */\n        [/^just now|^now|^last year|^last month|^last week|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year|week)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '现在';\n            }\n            if (all === 'just now') {\n                return '刚刚';\n            }\n            if (all === 'last year') {\n                return '最近 1 年';\n            }\n            if (all === 'last month') {\n                return '上个月';\n            }\n            if (all === 'last week') {\n                return '上周';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改为 1\n\n            var unitKey = {second: '秒', minute: '分钟', hour: '小时', day: '天', month: '个月', year: '年', week: '周'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大约 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之内' : '之前');\n            }\n        }],\n        [/(\\d+)(y|h|d|w|m)/, function (all, count, suffix) {\n            var suffixKey = {y: '年', h: '小时', d: '天', w: '周', m: '个月'};\n\n            return count + ' ' + suffixKey[suffix] + '之前';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Where software is built\": \"GitHub · 软件构建的地方\",\n            \"Page not found · GitHub\": \"找不到页面 · GitHub\",\n        },\n        \"regexp\": [],\n    },\n};\n\nI18N[\"zh-CN\"][\"orgs-public\"] = { // 组织公共部分\n    \"static\": { // 静态翻译\n    },\n    \"regexp\": [ // 正则翻译\n        [/Invite someone to/, \"邀请加入到组织\"],\n        [/New team in/, \"新建团队在组织\"],\n        [/New repository in/, \"新建仓库在组织\"],\n        [/This organization was marked as archived by an administrator on (.+). It is no longer maintained./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `该组织已由管理员于 ${translatedDate} 存档。不再维护。`;\n        }],\n        [/You are now a member of ([^ ]+)!/, \"您现在是 $1 的成员了！\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-dashboard\"] = { // 已登录的首页 - 仪表板（含组织）\n    \"static\": { // 静态翻译\n        // 顶部 GPT 聊天窗口\n        \"Ask anything\": \"询问任何事\",\n        \"Ask\": \"询问\",\n        \"Send\": \"发送\",\n        \"Feedback\": \"反馈\",\n            \"Message\": \"消息\",\n            \"Tell us your feedback on the new dashboard experience\":\"告诉我们您对新仪表板体验的反馈\",\n            \"Please don’t include sensitive, confidential, or personal data. Your feedback helps us improve our services in line with our\":\"请不要包含敏感、机密或个人信息。您的反馈有助于改进我们的服务\",\n\n        // 智能体任务\n            \"Start an agent session to create new work or iterate on an existing project.\": \"启动智能体会话以新建工作或迭代现有项目。\",\n            \"Start a session\": \"启动一个会话\",\n\n        // 新版首页功能区\n        \"Ask\": \"询问\",\n        \"Task\": \"任务\",\n        \"to access more models and higher limits.\": \"来获得更多模型和更高限制。\",\n        \"Create issue\": \"创建议题\",\n            \"First, create a new draft issue. Then ask for additional information to fill out the issue.\":\"首先，创建一个新的草稿议题。然后，要求提供更多信息来完善议题。\",\n            \"First, create an issue with sub issues. Then ask for additional information to fill out these issues.\":\"首先，创建一个包含子议题的议题。然后，要求提供更多信息来完善这些子议题。\",\n        \"Write code\": \"编写代码\",\n        \"Models\": \"模型\",\n            \"Create a profile README\":\"个人资料\",\n            \"Generate a simple calculator\":\"简易计算器\",\n            \"Make a Pong game\":\"乒乓球游戏\",\n            \"Design a Mermaid architecture overview\":\"Mermaid 架构预览\",\n        // Git\n            \"Basic Git commands\":\"基本 Git 命令\",\n            \"Git branching\":\"Git 分支\",\n            \"Advanced Git commands\":\"高级 Git 命令\",\n        // 拉取请求\n            \"My open pull requests\":\"我打开的\",\n            \"Summarize my latest PR\":\"总结最近\",\n\n        \"Fast and cost-efficient\": \"快速、经济高效\",\n        \"Versatile and highly intelligent\": \"多功能、高智能\",\n        \"Most powerful at complex tasks\": \"在复杂任务中最强大\",\n        \"Agent sessions\": \"智能体任务\",\n        \"No sessions found. Try a different filter, or\": \"没有找到会话。尝试不同的过滤器，或\",\n        \"start a session\": \"开始任务\",\n        \"Agent sessions options\": \"智能体任务选项\",\n        \"Agent sessions to include\": \"智能体任务包含\",\n        \"View all\": \"查看全部\",\n        \"Number of results\": \"结果数量\",\n        \"Pull request options\": \"拉取请求选项\",\n        \"Pull requests to include\": \"拉取请求包含\",\n            \"Authored\": \"由您创建\",\n            \"Mentioned\": \"被提及\",\n            \"Review requested\": \"请求审查\",\n            \"Reviewed\": \"已审查\",\n        \"Issue options\": \"议题选项\",\n        \"Issues to include\": \"议题包含\",\n            \"Assigned to me\": \"分配给我\",\n            \"Involves me\": \"涉及我\",\n        \"Open in Copilot chat\": \"在 Copilot Chat 中打开\",\n        \"Assign to Copilot\": \"分配给 Copilot\",\n        \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n\n            // 选项\n                \"Task\": \"任务\",\n                \"Create issue\": \"创建议题\",\n\n            \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、经济高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"执行复杂任务\",\n\n        \"Try the new experience\": \"尝试新版\",\n        \"Try the new dashboard experience\": \"试用新仪表板\",\n        \"Switch back\": \"切回旧版\",\n\n        // 新手帮助\n        \"Learn Git and GitHub without any code!\": \"了解 Git 和 GitHub 无需任何代码！\",\n        \"Using the Hello World guide, you’ll create a repository, start a branch,\": \"使用 Hello World 指南，您将创建一个仓库，开始一个分支，\",\n        \"write comments, and open a pull request.\": \"写评论，并创建一个拉取请求。(教程内容就不翻译了...)\",\n        \"Let's get started!\": \"让我们开始吧！\",\n        \"Hide this notice forever\": \"永久的隐藏该信息\",\n\n        \"Welcome to GitHub! What’s next?\": \"欢迎来到 GitHub！下一步干什么？\",\n        \"Create a repository\": \"创建一个仓库\",\n        \"Tell us about yourself\": \"介绍一下您自己\",\n        \"Browse interesting repositories\": \"浏览有趣的仓库\",\n        \"on Twitter\": \"在 Twitter 上\",\n\n        \"You don’t have any repositories yet!\": \"您目前还没有任何仓库！\",\n        \"Create your first repository\": \"创建您的第一个仓库\",\n        \"or\": \"或者\",\n        \"Learn more about Git and GitHub\": \"了解更多关于 Git 和 GitHub 的信息\",\n\n        // 教育版\n        \"Join GitHub Education!\": \"加入 GitHub 教育！\",\n            \"GitHub Education opens doors to new skills, tools, and a collaborative community eager to drive innovation. Join us and build a foundation for your future in technology.\": \"GitHub 教育为您打开通往新技能、新工具以及渴望推动创新的协作社区的大门。加入我们，为您的技术未来打下基础。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n\n        // 组织\n        // [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 组织的所有者！\"],\n        // [/Create a repository for ([^ ]+)/, \"为 $1 创建仓库\"],\n        \"Welcome to the\": \"欢迎来到\",\n        \"View your teams\": \"查看您的团队\",\n        \"View and create teams\": \"查看并创建团队\",\n        \"See all owners\": \"查看全部所有者\",\n        \"You've been added to the\": \"您已被添加至\",\n        \"organization.\": \"组织\",\n        // [/Edit ([^ ]+)’s settings/, \"编辑 $1 的设置\"],\n        \"Return to your personal dashboard\": \"返回到您的个人仪表板\",\n\n        // 已有仓库的项目\n        // 左侧栏\n        \"View organization\": \"查看组织\", // 组织\n        \"Browse organization's repositories\": \"浏览组织的仓库\", // 组织\n        \"Top repositories\": \"置顶仓库\",\n        \"Top Repositories\": \"置顶仓库\", // 安卓UA\n        \"New\": \"新建\",\n        \"Find a repository…\": \"搜索仓库…\",\n        \"Your teams\": \"您的团队\",\n            \"You don’t belong to any teams yet!\": \"您还不属于任何团队！\",\n        \"Find a team…\": \"搜索团队…\",\n        \"Recent activity\": \"近期活动\",\n            \"When you take actions across GitHub, we’ll provide links to that activity here.\": \"当您在 GitHub 上采取行动时，我们会在这里提供该活动的链接。\", // 组织\n\n        \"Create your first project\": \"创建您的第一个项目\",\n            \"Ready to start building? Create a repository for a new idea or bring over an existing repository to keep contributing to it.\": \"准备好开始构建了吗？为新想法创建一个仓库或使用现有仓库继续为其做出贡献。\",\n            \"Create repository\": \"创建仓库\",\n\n        \"Forked from\": \"复刻自\", // 复刻仓库\n\n        // 中间栏\n        \"Feed\": \"动态\",\n        \"The home for all developers — including you.\": \"所有开发者的家园——包括您。\",\n        \"Welcome to your personal dashboard, where you can find an introduction to how GitHub works, tools to help you build software, and help merging your first lines of code.\": \"欢迎来到您的个人仪表板，在这里您可以看到关于 GitHub 工作原理的介绍，帮助您构建软件的工具，以及帮助您合并您的第一行代码。\",\n        \"Learn with a tutorial project\": \"通过教程项目学习\",\n            \"Introduction to GitHub\": \"GitHub 简介\",\n            \"Get started using GitHub in less than an hour.\": \"一个小时内学会如何使用 GitHub。\",\n            \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 从您的 GitHub 仓库创建网站或博客。\",\n            \"Code with Copilot\": \"使用 Copilot 编程\",\n            \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、代码空间和 VS Code 通过 AI 驱动的代码建议进行开发。\",\n            \"Hello GitHub Actions\": \"您好 GitHub Actions\",\n            \"Create a GitHub Action and use it in a workflow.\": \"创建一个 GitHub Actions 并在工作流中使用它 \",\n            \"See more tutorial projects\": \"查看更多的教程项目\",\n        \"Start writing code\": \"开始编写代码\",\n            \"A repository contains all of your project's files, revision history, and collaborator discussion.\": \"仓库包含项目的所有文件、修订历史记录和协作者讨论。\",\n            \"Repository name\": \"仓库名称\",\n            \"name your new repository...\": \"命名您的新仓库……\",\n            \"Anyone on the internet can see this repository\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            \"You choose who can see and commit to this repository\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Create a new repository\": \"创建新的仓库\",\n            \"You're seeing this because you haven't created a repository in a while.\": \"您看到这个是因为您有一段时间没有创建仓库了。\",\n            \"You're seeing this because you haven't used repositories, issues, and pull requests recently.\": \"您看到这个是因为您最近没有使用仓库、议题和拉取请求。\",\n            \"Remove from dashboard\": \"从仪表板中删除\",\n            \"Repositories that need your help\": \"这些仓库需要您的帮助\",\n            \"See more repos with good first issues\": \"查看更多适合新手提交议题的仓库\",\n        \"Use tools of the trade\": \"使用贸易工具\",\n            \"You're seeing this because you haven't opened a pull request in a while.\": \"您看到这个是因为您有一段时间没有打开拉取请求了。\",\n                \"Simplify your development workflow with a GUI\": \"使用 GUI 简化开发工作流程\",\n                \"Install GitHub Desktop\": \"安装 GitHub Desktop\",\n                \"to visualize, commit, and push changes without ever touching the command line.\": \"来可视化、提交和推送更改，而无需使用命令行。\",\n            \"Get AI-based coding suggestions\": \"获取基于 AI 的编码建议\",\n                \"Try GitHub Copilot free for 30 days,\": \"免费试用 GitHub Copilot 30 天，\",\n                \"which suggests entire functions in real time, right from your editor.\": \"它可以直接从您的编辑器实时建议所有函数。\",\n            \"Write code in your web browser\": \"在您的网络浏览器中编写代码\",\n                \"Use\": \"使用\",\n                \"the github.dev web-based editor\": \"基于 github.dev 的网络编辑器\",\n                \"from your repository or pull request to create and commit changes.\": \"从您的仓库或拉取请求中创建和提交更改。\",\n        \"Install a powerful code editor\": \"安装一个强大的代码编辑器\",\n            \"is a multi-platform code editor optimized for building and debugging software.\": \"是针对构建和调试软件进行了优化的多平台代码编辑器。\",\n        \"Set up your local dev environment\": \"设置本地开发环境\",\n            \"set up Git\": \"设置 Git\",\n            \", simplify your dev workflow with\": \"，简化您的开发工作流程，使用\",\n            \", or\": \"，或\",\n            \"bring GitHub to the command line\": \"将 GitHub 引入命令行\",\n        \"Get started on GitHub\": \"开始使用 GitHub\",\n            \"You're seeing this because you haven't used GitHub's core features, yet.\": \"您看到这个是因为您有一段时间没有使用过 GitHub 的核心功能了。\",\n        \"Introduce yourself with a profile README\": \"使用 README 介绍自己\",\n            \"Share information about yourself by creating a profile README, which appears at the top of your profile page.\": \"通过创建个人资料自述文件（README）来分享有关您自己的信息，该信息将显示在您的个人资料页面顶部。\",\n        \"Follow this exercise to try the GitHub flow\": \"按照此练习尝试 GitHub 流程\",\n            \"GitHub's “Hello World” tutorial teaches you essentials, where you create your own repository and learn GitHub's pull request workflow for creating and reviewing code.\": \"GitHub 的 “Hello World” 教程会教您基本知识，您可以在其中创建自己的仓库并学习 GitHub 用于创建和审查代码的拉取请求工作流程。\",\n            \"Try the GitHub flow\": \"尝试 GitHub 流程\",\n        \"About version control and Git\": \"关于版本控制和 Git\",\n        \"Learn about the version control system, Git, and how it works with GitHub.\": \"了解版本控制系统、Git 以及它如何与 GitHub 一起工作。\",\n        \"The GitHub Flow\": \"GitHub 流程\",\n        \"Adopt GitHub's lightweight, branch-based workflow to collaborate on projects.\": \"采用 GitHub 的轻量级、基于分支的工作流程来协作处理项目。\",\n\n        \"One moment please...\": \"稍等一会儿…\",\n        \"Loading activity...\": \"载入活动…\",\n        \"All activity\": \"所有活动\",\n\n        \"Welcome to the new feed!\": \"欢迎来到新的动态提要!\",\n        \"We’re updating the cards and ranking all the time, so check back regularly. At first, you might need to follow some people or star some repositories to get started\": \"我们一直在更新卡片和排名，所以请定期查看。一开始，您可能需要关注一些人或标星一些仓库才能开始\",\n        \"Send feedback\": \"发送反馈\",\n\n        \"Updates to your homepage feed\": \"主页动态摘要的更新\",\n        \"We've combined the power of the Following feed with the For you feed so there’s one place to discover content on GitHub. There’s improved filtering so you can customize your feed exactly how you like it, and a shiny new visual design. ✨\": \"我们将 “关注动态提要” 与 “您的动态提要” 的强大功能结合在一起，让您在一个地方就能发现 GitHub 上的内容。此外，我们还改进了筛选功能，让您可以完全按照自己的喜好定制动态提要，并采用全新的视觉设计。 ✨\",\n        \"Learn more\": \"了解更多\",\n\n        \"Explore GitHub\": \"探索 GitHub\",\n            \"to receive personalized suggestions.\": \"以获取个性化建议。\",\n\n        // 提要筛选\n        \"Filter\": \"筛选器\",\n            \"Feed filters\": \"提要筛选器\",\n            \"Events\": \"事件\",\n                \"Activity you want to see on your feed\": \"您想在提要上看到的活动\",\n            \"Announcements\": \"公告\",\n                \"Special discussion posts from repositories\": \"来自仓库的特别讨论帖\",\n            \"Releases\": \"发行版\",\n                \"Update posts from repositories\": \"来自仓库的更新帖\",\n            // 赞助\n                \"Relevant projects or people that are being sponsored\": \"获得赞助的相关项目或人员\",\n            \"Stars\": \"星标\",\n                \"Repositories being starred by people\": \"被人们标星的仓库\",\n            \"Repositories\": \"仓库\",\n                \"Repositories that are created or forked by people\": \"由人们创建或复刻的仓库\",\n            \"Repository activity\": \"仓库活动\",\n                \"Issues and pull requests from repositories\": \"来自仓库的议题和拉取请求\",\n            \"Follows\": \"关注\",\n                \"Who people are following\": \"人们在关注谁\",\n            \"Recommendations\": \"推荐\",\n                \"Repositories and people you may like\": \"您可能喜欢的仓库和人\",\n\n            \"Include events from starred repositories\": \"包括来自星标仓库中的事件\",\n                \"By default, the feed shows events from repositories you sponsor or watch, and people you follow.\": \"默认情况下，动态提要显示的事件来自您赞助或关注的仓库，以及您关注的人。\",\n            \"Reset to default\": \"重置\",\n            \"Save\": \"保存\",\n\n        \"Show all\": \"显示所有\",\n\n        \"Uh oh!\": \"哎呀！\",\n        \"There was an error in loading the activity feed.\": \"载入动态提要时发生错误。\",\n        \"Reload this page\": \"重载此页面\",\n\n        // 动态 状态词\n        \"starred\": \"标星了\",\n        \"created\": \"创建了\",\n        \"forked from\": \"复刻自\",\n        \"generated from\": \"创建自\",\n        \"mirrored from\": \"镜像自\",\n        \"forked\": \"复刻了\",\n        \"from\": \"来自\",\n        \"for\": \"\",\n        \"pushed\": \"推送\",\n        \"pushed to\": \"推送到\",\n        \"released\": \"发布了\",\n        \"published\": \"发布了\",\n        \"started sponsoring\": \"赞助给\",\n        \"started following\": \"已关注\",\n        \"you\": \"您\",\n        \"Updated\": \"更新于\",\n        \"a repository\": \"1 个仓库\",\n        \"has a new repository\": \"创建了仓库\",\n        \"created a repository\": \"创建了仓库\",\n        \"a branch in\": \"一个分支在\",\n        \"created a branch in\": \"创建了一个分支在\",\n        \"in\": \"分支在\",\n        \"Forked to\": \"复刻为\",\n        \"of\": \"\",\n        \"made\": \"将\",\n        \"public\": \"设为公共\",\n        \"committed\": \"提交于\",\n        \"posted a discussion in\": \"发表讨论于\",\n        \"made this repository public\": \"将此仓库公开\",\n        \"labeled a pull request\": \"将标签添加到拉取请求中\",\n        \"launched their sponsorship page 💖\": \"推出了他们的赞助页面 💖\",\n        //[/and (\\d+) more/, \"和另外 $1 个\"],\n        \"All reactions\": \"所有看法\",\n        \"commented on an issue in\": \"于一个议题发表了评论在\",\n        \"commented on a pull request in\": \"于一个拉取请求发表了评论在\",\n        \"opened a pull request\": \"打开了一个拉取请求在\",\n        \"closed a pull request\": \"关闭了一个拉取请求在\",\n        \"opened\": \"打开\",\n        \"deleted\": \"删除\",\n        \"commented on\": \"发表了评论于\",\n\n        \"published a release\": \"发布发行版\",\n        \"forked a repository\": \"复刻仓库\",\n        \"starred a repository\": \"星标仓库\",\n        \"sponsored\": \"赞助了\",\n        \"followed\": \"关注了\",\n        \"added a repository to\": \"已将仓库添加到\",\n        \"contributed to\": \"贡献给\",\n            // 现在会显示拉取请求状态\n            \"Merged\": \"已合并\",\n\n        \"your repository\": \"您的仓库\",\n\n        \"Read more\": \"阅读更多内容\",\n        \"Load more...\": \"加载更多……\",\n\n        \"Subscribe to your news feed\": \"订阅您的新闻提要\",\n        \"Subscribe to the\": \"订阅\", // 组织\n        \"organization news feed\": \"组织的新闻提要\", // 组织\n\n        //主页上仓库3个点\n        \"Feed item options\": \"推送选项\",\n        \"You're seeing this because of your activity.\": \"您看到这个是因为您的活动。\",\n        \"Show less activity like this\": \"显示较少这类活动\",\n        // [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到这个是因为您与 $1 有过合作\"],\n        // [/You're seeing this because you starred ([^ ]+)/, \"您看到这个，是因为您标星了 $1\"],\n        \"Unstar this repository\": \"取消标星此仓库\",\n        // [/You're seeing this because you follow ([^ ]+)/, \"您看到这个，是因为您关注了 $1\"],\n        \"Unfollow this user\": \"取消关注此用户\",\n\n        \"Contributors\": \"贡献者\",\n        \"Report\": \"举报\",\n        \"Recommended for you\": \"为您推荐\",\n        \"Trending repositories\": \"热门仓库\",\n        \"Latest from our changelog\":\"来自我们的更新日志\",\n        \"Try the new experience\": \"尝试新体验\",\n        \"See more\": \"查看更多\",\n        \"Read more\": \"阅读更多\",\n        \"You're seeing this based on GitHub-wide trends.\": \"您看到的是基于 GitHub-wide 的趋势。\",\n        \"Recommended based on people you follow\": \"根据您关注的人推荐\",\n        \"has a new discussion in\": \"有一条新讨论，在\",\n        \"Join discussion\": \"参与讨论\",\n        \"Popular among\": \"很受欢迎\",\n        \"Popular projects among\": \"热门项目\",\n        \"people you follow\": \"在您关注的人中\",\n        \"Sponsor\": \"赞助\",\n        \"added\": \"添加\",\n\n        // 右侧栏\n        \"Latest changes\": \"最新变化\",\n        \"View changelog →\": \"查看更新日志 →\",\n        \"Explore repositories\": \"探索仓库\",\n        \"Explore more →\": \"探索更多 →\",\n\n        \"Member statuses\": \"成员状态\", // 组织\n\n        // 仪表板右上方看板\n        \"The world’s fair of software is here.\": \"世界软件博览会就在这里。\",\n        \"The GitHub Universe call for sessions is now open! Apply to share your expertise by submitting a session proposal today. Plus, get 35% off your tickets to GitHub Universe only for a limited time.\": \"GitHub Universe 的会议征集现已开启！立即提交您的会议提案，分享您的专业知识。此外，现在限时可享 35% 的 GitHub Universe 会议门票折扣。\",\n\n        // 教育看板（申请教育包才有）\n        \"Learn. Collaborate. Grow.\": \"学习，协作，成长。\",\n        \"GitHub Education gives you the tools and community support to take on tech challenges and turn them into opportunities. Your future in tech starts here!\": \"GitHub 教育提供工具和社区支持，帮助您应对技术挑战并将其转化为机遇。您科技领域的未来从这里开始！\",\n        \"Go to GitHub Education\": \"前往 GitHub 教育\",\n\n        // 用户 浮动信息卡\n        \"Member of\": \"隶属组织\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n\n        // 组织  浮动信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        // [/(\\d+) members?/, \"$1 个成员\"],\n\n        \"Go to organization dashboard\": \"前往组织仪表板\", // 组织\n        \"Switch dashboard context\": \"切换默认身份\", // 组织\n        \"Manage organizations\": \"管理组织\", // 组织\n        \"Create organization\": \"创建组织\", // 组织\n\n        // 首次加入组织通知\n        \"You’ve been added to the\": \"您已经被添加到\",\n        \"organization!\": \"组织！\",\n        \"Here are some quick tips for a first-time organization member.\": \"以下是首次加入组织的一些提示。\",\n        \"Use the switch context button in the upper left corner of this page to switch between your personal context (\": \"使用页面左上角的切换身份按钮，您可以在（\",\n        \") and organizations you are a member of.\": \"）和组织身份之间进行切换。\",\n        \"After you switch contexts you’ll see an organization-focused dashboard that lists out organization repositories and activities.\": \"当您切换身份，您会看到一个组织为中心的页面，其中列出了组织库和活动。\",\n\n        // 快捷键\n        \"Dashboards\": \"仪表板\",\n        \"Go to your issues\": \"跳转到您的议题\",\n        \"Go to your pull requests\": \"跳转到您的拉取请求\",\n\n        // 新版首页（已登录）2025-10-29\n            \"Your personal account\": \"我的个人账户\",\n\n            \"Started\": \"开始于\",\n            \"Completed\": \"完成于\",\n            \"In progress\": \"进行中\",\n\n            \"Unable to load agent tasks, try again later.\": \"无法加载智能体任务，请稍后重试。\",\n            \"Unable to load pull requests, try again later.\": \"无法加载拉取请求，请稍后重试。\",\n\n            \"Updated\": \"更新于\",\n            \"Ready for review\": \"准备审查\",\n            \"Assigned to Copilot\": \"分配给 Copilot\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) pull requests/, \"$1 个拉取请求\"],\n        [/added (\\d+) repositor(y|ies) to/, \"添加 $1 个仓库到\"],\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        [/(\\d+) of your repositor(y|ies)/, \"您的 $1 个仓库\"],\n        [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        [/is being deleted./, \"正在被删除。\"], // 仓库 组织被删除\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"], // 仓库删除\n        [/(\\d+) releases?/, \"$1 个发行版\"],\n        [/(\\d+k?) followers?/, \"$1 个关注者\"],\n        [/(\\d+) users?/, \"$1 个用户\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) commits? to/, \"$1 个提交到\"],\n        [/(\\d+) more commits? »/, \"$1 个更多提交到\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/Join discussion/, \"加入讨论\"],\n        // [/Updated/, \"更新于\"],\n        // 创建于\n        [/Created/, \"创建于\"],\n        [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 组织的所有者！\"], // 组织\n        [/Create a repository for ([^ ]+)/, \"为 $1 创建仓库\"], // 组织\n        [/Edit ([^ ]+)’s settings/, \"编辑 $1 的设置\"], // 组织\n        [/Check out ([^ ]+)’s public profile/, \"查看 $1 的公开资料\"], // 组织\n        [/and (\\d+) more/, \"和另外 $1 个\"],\n        [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到这个是因为您与 $1 有过合作\"],\n        [/You're seeing this because you starred ([^ ]+)/, \"您看到这个，是因为您标星了 $1\"],\n        [/You're seeing this because you follow ([^ ]+)/, \"您看到这个，是因为您关注了 $1\"],\n        [/You and/, \"您和另外\"],\n        [/You reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/,function (all, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return '您' + reactedKey[reacted];\n        }],\n        [/(\\d+) (?:people|person) reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/, function (all, number, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return number + ' 人' + reactedKey[reacted];\n        }],\n        [/Support ([^ ]+)'s open source work/, \"支持 $1 的开源工作\"],\n        [/Start a new repository for/, \"创建一个仓库为\"],\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您发表评论\"], // 拉取请求 浮动信息卡\n        // 顶部提醒\n        // 继任者相关\n        [/You are now the designated successor for ([^ ]+)'s account./, \"您现在是 $1 的指定继任者了。\"],\n        [/You have declined to become the designated successor for ([^ ]+)'s account./, \"您已经谢绝了成为 $1 账户指定继任者的邀请。\"],\n        // 拉取请求状态\n        [/merged (\\d+) commits?/, \"合并 $1 个提交\"],\n        // 新版首页\n        [/Good morning, ([^ ]+)!/, \"早上好，$1！\"],\n        [/Good afternoon, ([^ ]+)!/, \"下午好，$1！\"],\n        [/Good evening, ([^ ]+)!/, \"晚上好，$1！\"],\n        [/Switch dashboard: ([^ ]+)/, \"切换仪表板：$1\"],\n        [/(.+)\\#(\\d+) · Opened by ([^ ]+) ·/, \"$1#$2 · 打开者 $3\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Dashboard\": \"GitHub 仪表盘\",\n            \"Feed\": \"动态\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"dashboard\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\nI18N[\"zh-CN\"][\"feed\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\nI18N[\"zh-CN\"][\"orgs/dashboard\"] = I18N[\"zh-CN\"][\"page-dashboard\"];\n\nI18N[\"zh-CN\"][\"page-profile-public\"] = { // 个人首页（含组织）\n    \"static\": { // 静态翻译\n        // 左侧用户信息栏\n            \"Change your avatar\": \"修改头像\",\n            \"they/them\": \"他们\",\n            \"she/her\": \"她\",\n            \"he/him\": \"他\",\n            \"You have blocked this user\": \"您已拉黑此用户\",\n            \"Follow\": \"关注\",\n            \"Sponsor\": \"赞助\",\n            \"follower\": \"关注者\",\n            \"followers\": \"关注者\",\n            \"following\": \"关注\",\n            \"Followed by\": \"共同关注者：\",\n            \"Joined\": \"加入于\",\n            \"Achievements\": \"成就\",\n            \"Highlights\": \"高光时刻\",\n                \"Label: Pro\": \"标签：专业版\",\n            \"Developer Program Member\": \"开发者计划成员\",\n            \"security advisory credits\": \"个安全咨询分\",\n            \"security advisory credit\": \"个安全咨询分\",\n            \"Organizations\": \"组织\",\n            \"Block or Report\": \"拉黑或举报\",\n            \"Unblock or report user\": \"取消拉黑或举报\",\n            \"- same time\": \"- 时间相同\",\n\n            // 编辑个人资料\n                \"Edit profile\": \"编辑个人资料\",\n                \"Name\": \"名称\",\n                \"Display\": \"显示\",\n                    \"badge.\": \"徽章。\",\n                \"Bio\": \"个人简介\",\n                \"Add a bio\": \"添加个人简介\",\n                    \"You can\": \"您可\",\n                    \"@mention\": \"@用户名或组织名\",\n                    \"other users and organizations to link to them.\": \"链接到其他用户和组织。\",\n                \"Pronouns\": \"代词\",\n                    \"Don't specify\": \"不说明\",\n                    \"they/them\": \"他们\",\n                    \"she/her\": \"她\",\n                    \"he/him\": \"他\",\n                    \"Custom\": \"自定义\",\n                \"Company\": \"公司\",\n                \"Location\": \"位置\",\n                \"Display current local time\": \"显示当前当地时间\",\n                \"same time\": \"相同时间\",\n                \"Website\": \"网站\",\n                \"Social accounts\": \"社交账户\",\n                \"Link to social profile\": \"链接到社交账户\",\n                \"Link to social profile 1\": \"链接到社交账户\",\n                \"Link to social profile 2\": \"链接到社交账户\",\n                \"Link to social profile 3\": \"链接到社交账户\",\n                \"Link to social profile 4\": \"链接到社交账户\",\n\n            // 成就浮动界面\n                // 北极代码库贡献者\n                    \"Arctic Code Vault Contributor\": \"北极代码库贡献者\",\n                        \"History\": \"历史\",\n                        \"100% unlocked\": \"100% 解锁\",\n                        \"· Unlocked\": \"· 解锁于\",\n                        \"these repositories, and more, were archived\": \"这些仓库以及更多仓库已存档\",\n                // YOLO\n                    \"You want it? You merge it.\": \"您想要它？您合并它。\",\n                    \"inaccessible\": \"已删库\",\n                    \"Merged without a review\": \"未经审查就合并\",\n                // Pull Shark\n                    \"Pull Shark\": \"鲨鱼拉\",\n                    \"Bronze unlocked\": \"青铜已解锁\",\n                    \"Bronze and Silver unlocked\": \"青铜和白银已解锁\",\n                    \"· First unlocked\": \"· 首次解锁于\",\n                    \"2nd pull request merged\": \"2 个拉取请求被合并\",\n                    \"16th pull request merged\": \"16 个拉取请求被合并\",\n                    \"128th pull request merged\": \"128 个拉取请求被合并\",\n                    \"1024th pull request merged\": \"1024 个拉取请求被合并\",\n                // Starstruck\n                    \"Starstruck\": \"追星族\",\n                    \"⭐️ 16 stars\": \"⭐️ 16 个星标\",\n                    \"⭐️ 128 stars\": \"⭐️ 128 个星标\",\n                    \"⭐️ 512 stars\": \"⭐️ 512 个星标\",\n                    \"⭐️ 4096 stars\": \"⭐️ 4096 个星标\",\n                // Pair Extraordinaire\n                    \"Pair Extraordinaire\": \"非凡搭档\",\n                    \"Unlocked\": \"解锁于\",\n                    \"Coauthored with\": \"与下列用户共同合作\",\n                    \"Coauthored with an unknown user\": \"与未知用户共同合作\",\n                // Quickdraw\n                    \"Quickdraw\": \"快速关闭\",\n                    \"Gitty up!\": \"赶快开始！\",\n                    \"Closed within 5 minutes of opening\": \"在打开的 5 分钟内关闭\",\n                // Galaxy Brain\n                    \"Galaxy Brain\": \"银河大脑\",\n                    \"2nd accepted answer\": \"2 个答案被接受\",\n                    \"8th accepted answer\": \"8 个答案被接受\",\n                    \"16th accepted answer\": \"16 个答案被接受\",\n                    \"32nd accepted answer\": \"32 个答案被接受\",\n                // Public Sponsor\n                    \"Public Sponsor\": \"公共赞助者\",\n                    \"1st sponsorship\": \"1 次赞助\",\n                // Mars 2020 Contributor\n                    \"Mars 2020 Contributor\": \"火星 2020 贡献者\",\n                    \"Mars 2020 Helicopter Mission\": \"2020 火星无人直升机首飞计划\",\n                    \"this repository was included\": \"该仓库已收录\",\n\n                // ?tab=achievements\n                    \"Hide from profile\": \"从个人资料中隐藏\",\n                    \"Hidden from your profile.\": \"已从您的个人资料中隐藏\",\n                    \"Show on profile\": \"在个人资料中显示\",\n                    \"Copy share link\": \"复制共享链接\",\n                    \"Preview on Twitter\": \"在 Twitter 上预览\",\n\n                    // 顶部提醒\n                        // [/The (.+) achievement will now be hidden from your profile./, \"现在，将从您的个人资料中隐藏 “$1” 成就。\"],\n                        // [/The (.+) achievement will now be shown in your profile./, \"现在，将在您的个人资料中显示 “$1” 成就。\"],\n\n                \"Send feedback\": \"发送反馈\",\n\n            // 拉黑 & 举报用户对话框\n                // [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n                \"Block user\": \"拉黑用户\",\n                \"Prevent this user from interacting with your repositories and sending you notifications. Learn more about\": \"防止该用户与您的仓库互动并向您发送通知。了解更多关于\",\n                \"blocking users\": \"拉黑用户\",\n\n                \"Add an optional note:\": \"添加可选备注：\",\n                    \"Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.\": \"请勿包含任何个人信息，如法定姓名或电子邮件地址。最多 100 个字符，支持标记符。此备注只有您本人可见。\",\n\n                \"Unblock user\": \"取消拉黑\",\n                \"Allow this user to interact with your repositories and send you notifications. Learn more about\": \"允许该用户与您的仓库互动并向您发送通知。了解更多关于\",\n\n                \"Report abuse\": \"举报滥用\",\n                    \"Contact GitHub support about this user’s behavior. Learn more about\": \"就该用户的行为联系 GitHub 支持部门。了解更多关于\",\n                    \"reporting abuse\": \"举报滥用\",\n\n        // 仓库\n            \"Forked from\": \"复刻自\",\n            \"Updated\": \"更新于\",\n\n            // 许可证\n                \"GNU General Public License v3.0\": \"GNU 通用公共许可证 v3.0\",\n                \"GPL-3.0 License\": \"GPL-3.0 许可证\",\n                \"AGPL-3.0 License\": \"AGPL-3.0 许可证\",\n                \"LGPL-3.0 License\": \"LGPL-3.0 许可证\",\n                \"MIT License\": \"MIT 许可证\",\n                \"Apache License 2.0\": \"Apache-2.0 许可证\",\n                \"OFL-1.1 License\": \"OFL-1.1 许可证\",\n                \"0BSD License\": \"0BSD 许可证\",\n                \"BSD-3-Clause License\": \"BSD-3-Clause 许可证\",\n                \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 许可证\",\n                \"CC0-1.0 License\": \"CC0-1.0 许可证\",\n                \"WTFPL License\": \"WTFPL 许可证\",\n                \"Other\": \"其他\",\n                \"Unknown\": \"未知\",\n\n        // 标签栏\n            \"Sponsoring\": \"赞助\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) discussions? answered/, \"$1 个讨论已回答\"], // 高光时刻\n        [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n        [/contributed code to several repositories in the/, \"为多个仓库贡献了代码，在\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存档计划\"], // 成就浮动款\n        [/opened pull requests that have been merged./, \"打开的拉取请求已被合并。\"], // Pull Shark\n        [/created a repository that has many stars./, \"创建了一个拥有很多星标的仓库。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"与他人共同提交了合并的拉取请求。\"], // Pair Extraordinaire\n        [/answered discussions./, \"回答了讨论。\"], // Galaxy Brain\n        [/(\\@[^ ]+) (?:is sponsoring|has sponsored) (\\d+) organizations? or users?./, \"$1 赞助了 $2 个组织或用户。\"], // Public Sponsor\n        [/contributed code to (\\d+) repositor(y|ies) used in the/, \"贡献于 $1 个仓库收录于\"], // Mars 2020 Helicopter Mission.\n        [/The (.+) achievement will now be hidden from your profile./, \"现在，将从您的个人资料中隐藏 “$1” 成就。\"],\n        [/The (.+) achievement will now be shown in your profile./, \"现在，将在您的个人资料中显示 “$1” 成就。\"],\n        [/^(\\d+) repositor(y|ies)/, \"$1 仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Followers\": \"我的关注者\",\n            \"Who You’re Following\": \"我关注的人\",\n        },\n        \"regexp\": [\n            [/Achievements/, \"成就\"],\n            [/Followers/, \"关注者\"],\n            [/Following/, \"关注\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"page-profile/achievements\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=achievements\nI18N[\"zh-CN\"][\"page-profile/followers\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=followers\nI18N[\"zh-CN\"][\"page-profile/following\"] = I18N[\"zh-CN\"][\"page-profile-public\"]; // ?tab=following\n\nI18N[\"zh-CN\"][\"page-profile\"] = { // 个人首页\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 概述标签卡 即主页 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Customize your pins\": \"自定义置顶\",\n            // 设置置顶项目对话框\n            \"Edit pinned items\": \"设置置顶项目\",\n            \"Select up to six public repositories or gists you'd like to show to anyone.\": \"最多选择 6 个您想向任何人展示的公共仓库或代码片段。\",\n            \"Select up to six public repositories you'd like to show.\": \"最多选择 6 个要显示的公共仓库。\", // 组织页\n            \"Filter repositories and gists\": \"筛选仓库和代码片段\",\n            \"Repositories\": \"仓库\",\n            \"Gists\": \"代码片段\",\n            \"Filter repositories\": \"筛选仓库\", // 组织页\n            \"Show:\": \"显示：\",\n            \"Save pins\": \"保存置顶\",\n\n            \"Drag to reorder\": \"拖动重新排序\",\n\n            // 顶部提醒\n            \"You unlocked new Achievements with private contributions! Show them off by including private contributions in your Profile in\": \"您通过私人贡献解锁了新成就！通过在您的个人资料中包含私人贡献来展示它们。\",\n            \"You unlocked new Achievements! Show them off by including achievements and private contributions in your Profile in\": \"您通过私人贡献解锁了新成就！通过在您的个人资料中包含私人贡献来展示它们。\",\n            \"Your pins have been updated. Drag and drop to reorder them.\": \"您的置顶已更新。拖放来重新排列它们。\",\n            \"Your popular repositories will now be shown instead of your pins.\": \"现在将显示您的热门仓库，而不是您的置顶。\",\n\n            \"Only you can see your full profile.\": \"只有您可以查看完整的个人资料。\",\n                \"You have marked your profile as private, which limits what activity other people can see.\": \"您已将个人资料设为私密，这会限制其他人查看您的活动。\",\n                \"Update profile settings\": \"更新个人资料设置\",\n            \"View what others see\": \"以他人视角查看\",\n            \"View full profile\": \"查看完整个人资料\",\n\n            \"Your pins have been updated.\": \"您的置顶已更新。\",\n            // 拖拽排序提醒\n            \"Order updated.\": \"置顶已更新。\",\n\n            \"Pinned\": \"已置顶\",\n            \"Top repositories\": \"置顶的仓库\",\n            \"Popular repositories\": \"热门仓库\",\n            \"You don't have any public repositories yet.\": \"你还没有公共仓库。\",\n\n            \"Learn how we count contributions\": \"了解我们如何计算贡献\",\n            \"Contribution settings\": \"贡献设置\",\n\n            // 复刻仓库特有\n            \"Forked from\": \"复刻自\",\n            // 贡献设置下拉菜单\n            \"Private contributions\": \"私人贡献\",\n            \"Turning on private contributions will show anonymized private activity on your profile.\": \"开启私人贡献则将在您的个人资料上显示匿名的私人活动。\",\n            \"Visitors will now see your public and anonymized private contributions.\": \"访客现在将看到您的公开和匿名的私人贡献。\",\n            \"Turning off private contributions will show only public activity on your profile.\": \"关闭私人贡献则将仅在您的个人资料中显示公开活动。\",\n            \"Visitors will now see only your public contributions.\": \"访客现在将只能看到您的公开贡献。\",\n            \"Activity overview\": \"活动概况\",\n            \"Turning off the activity overview will hide the section on your profile.\": \"关闭活动概况则将隐藏您的个人资料中的部分内容。\",\n            \"The 'Activity overview' section will no longer appear on your profile.\": \"“活动概况” 部分将不再出现在您的个人资料中。\",\n            \"Turning on the activity overview will show an overview of your activity across organizations and repositories.\": \"开启活动概况将显示跨组织和仓库的活动概况。\",\n            \"Others will now see 'Activity overview' when they view your profile.\": \"其他人在查看您的资料时，现在会看到 “活动概况”。\",\n\n            \"Contribution activity\": \"贡献活动\",\n                \"Year:\": \"年份：\", // 小屏模式\n\n            \"Search by name\": \"搜索组织名\",\n            \"Contributed to\": \"贡献给了\",\n            \"Activity in\": \"活动在\",\n            \"No activity overview available.\": \"没有可用的活动概况。\",\n\n            \"open\": \"打开\",\n            \"closed\": \"已关闭\",\n            \"merged\": \"已合并\",\n            \"pull request\": \"拉取请求\",\n\n            \"commits\": \"次提交\",\n            \"comments\": \"次评论\",\n            \"Commits\": \"提交\",\n            \"Code review\": \"代码审查\",\n            \"Built by\": \"构建者\",\n\n            \"Created their first repository\": \"创建了他们的第一个仓库\",\n            \"Created an issue in\": \"创建一个议题在\",\n            \"a private repository\": \"私有仓库\",\n            \"Created a pull request in\": \"创建一个拉取请求在\",\n                \"lines changed\": \"行更改\",\n            \"First repository\": \"第一个仓库\",\n            \"First pull request\": \"第一次拉取请求\",\n            \"First issue\": \"第一次议题\",\n            \"Opened their first issue on GitHub in\": \"打开了他们第一个议题\",\n            \"Opened their first pull request on GitHub in\": \"打开了他们第一个拉取请求\",\n            \"Opened their first pull request on GitHub in a private repository\": \"在私有仓库中打开了他们第一个拉取请求\",\n            \"Joined GitHub\": \"刚加入 GitHub\",\n            \"Joined the\": \"加入\",\n            \"organization\": \"组织\",\n            \"Show more activity\": \"加载更多动态\",\n\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的东西？请看一下\",\n            \"GitHub profile guide\": \"GitHub 个人资料指南\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) discussions? answered/, \"$1 个讨论已回答\"], // 高光时刻\n        [/Block or report ([^ ]+)/, \"拉黑或举报 $1\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存档计划\"], // 成就浮动款\n        [/(\\d+) remaining/, \"$1 剩余\"], // 置顶项目 剩余\n        [/([^ ]+) doesn('|’)t have any public repositories yet./, \"$1 尚无任何公共仓库。\"],\n        [/([\\d,]+) contributions? in the last year in ([^ ]+)/, \"在过去的一年中向 $2 贡献 $1 次\"],\n        [/([\\d,]+) contributions? in the last year/, \"在过去的一年中贡献 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+) in ([^ ]+)/, \"在 $2 年中向 $3, 贡献 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+)/, \"在 $2 年中贡献 $1 次\"],\n        [/(\\d+) contributions? in private repositor(y|ies)/, \"私有仓库 $1 个贡献\"],\n        [/Only people who can see (.+) can see this contribution/, \"只有能看到 $1 的人才能看到此贡献\"],\n        [/(\\d+|No) contribution(?:s)? on (.+)(?:st|nd|rd|th)./, (match, number, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            //return optKey[opt] + `${translatedDate}`;\n            return number === 'No' ? `${translatedDate}，无贡献` : `${translatedDate}，` + number + ` 次贡献`;\n        }],// 贡献日历\n        //[/A graph representing ([^ ]+)'s contributions from ( .+) to ( .+)./, \"$1 从 $2 到 $3 的贡献图。\"],\n        [/and (\\d+) other repositor(y|ies)/, \"和 $1 个其他仓库\"], // 活动概览\n        // 贡献信息\n        [/Created ([\\d,]+) commits? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中创建了 $1 次提交\"],\n        [/Created (\\d+) (other)? repositor(y|ies)/, \"创建了 $1 个仓库\"],\n        [/Opened (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中打开了 $1 个拉取请求\"],\n        [/Opened (\\d+) other pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个其他仓库中打开了 $1 个拉取请求\"],\n        [/Opened (\\d+) issues? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中打开了 $1 个议题\"],\n        [/Opened (\\d+) other issues? in (\\d+) repositor(y|ies)/, \"在 $2 个其他仓库中打开了 $1 个其他议题\"],\n        [/Reviewed (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中审查了 $1 个拉取请求\"],\n        [/Answered (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中答复了 $1 个讨论\"],\n        [/Started (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 个仓库中发起了 $1 个讨论\"],\n        [/(\\d+) commits?/, \"$1 次提交\"],\n        [/(\\d+) pull requests?/, \"$1 次拉取请求\"],\n        [/that received (\\d+) comments?/  , \"收到 $1 条评论\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/([^ ]+) doesn't have any projects yet./, \"$1 目前还没有任何项目。\"],\n        [/([^ ]+) has no activity yet for this period./, \"$1 目前还没有活动。\"],\n        [/([^ ]+) had no activity during this period./, \"$1 在此期间没有活动。\"],\n        [/Contribution activity in ([^ ]+)/, \"在 $1 中的贡献活动\"],\n        [/([^ ]+) had no activity in ([^ ]+) during this period./, \"在此期间，$1 在 $2 中没有活动。\"],\n        [/([^ ]+) has no activity in ([^ ]+) yet for this period./, \"在此期间，$1 在 $2 中没有活动。\"],\n        [/@([^ ]+)'s activity is private/, \"$1 的活动不可见\"],\n        [/Created (\\d+\\+?) repositor(y|ies)/, \"创建了 $1 个仓库\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/(\\d+) tasks?/, \"$1 任务\"], // 带任务议题\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n        [/(?:on )?(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        //[/A graph representing ([^ ]+)'s contributions from (.+) to (.+). The contributions are (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review)./, function(all, user, date1, date2, cd1, c1, cd2, c2, cd3, c3, cd4, c4){\n        //    var c1Key, c2Key ,c3Key, c4Key = {\n        //        'commits': '提交',\n        //        'pull requests': '拉取请求',\n        //        'code review': '代码审查',\n        //        'issues': '议题',\n        //    };\n        //    return user + '从' + date1 + '到' + date2 + '的贡献图。其中' + cd1 + c1Key[c1] + '，' + cd2 + c2Key[c2] + '，' +cd3 + c3Key[c3] + '，' + cd4 + c4Key[c4]+ '。';\n        //}],\n        // 成就\n        [/answered discussions./, \"回答了讨论。\"], // Galaxy Brain\n        [/opened pull requests that have been merged./, \"打开的拉取请求已被合并。\"], // Pull Shark\n        [/created a repository that has many stars./, \"创建了一个拥有很多星标的仓库。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"与他人共同提交了合并的拉取请求。\"], // Pair Extraordinaire\n        [/(\\@[^ ]+) contributed code to several repositories in the/, \"$1 为多个仓库贡献了代码，在\"], // 北极代码库贡献者\n    ],\n};\nI18N[\"zh-CN\"][\"page-profile/overview\"] = I18N[\"zh-CN\"][\"page-profile\"];\n\nI18N[\"zh-CN\"][\"page-profile/repositories\"] = { // 个人首页 - 仓库标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 仓库标签卡 ?tab=repositories >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n            // 顶部提醒\n                // [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"],\n\n            // \"Search repositories…\": \"搜索这些查库…\",\n            // \"Search starred repositories…\": \"搜索星标仓库…\",\n\n            // 搜索, 筛选 & 排序工具栏\n            \"Find a repository…\": \"搜索仓库…\",\n            // \"Type\": \"类型\", // 与全局冲突 使用 Selector 规则翻译\n                // 下拉菜单\n                \"Select type\": \"选择类型\",\n                \"All\": \"全部\",\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源码\",\n                \"Forks\": \"复刻\",\n                \"Archived\": \"存档\",\n                \"Can be sponsored\": \"可赞助\",\n                \"Mirrors\": \"镜像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"语言\",\n                // 下拉菜单\n                \"Select language\": \"选择语言\",\n                \"All languages\": \"所有语言\",\n            \"Sort\": \"排序\",\n                // 下拉菜单\n                \"Select order\": \"选择排序\",\n                \"Last updated\": \"最近更新\",\n                // \"Name\": \"仓库名\",\n                // \"Recently starred\": \"最近星标\",\n                // \"Recently active\": \"最近活跃\",\n                // \"Most stars\": \"最多星标\",\n                // \"Unstar\": \"取消星标\",\n            \"New\": \"新建\",\n\n            // 筛选结果\n            \"result for\": \"个结果在\",\n            \"results for\": \"个结果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源码\",\n                \"forked\": \"复刻\",\n                \"archived\": \"存档\",\n                \"sponsorable\": \"可赞助\",\n                \"mirror\": \"镜像\",\n                \"template\": \"模板\",\n            \"repositories matching\": \"仓库中匹配了\",\n            \"result for repositories matching\": \"个结果在仓库中匹配了\",\n            \"results for repositories matching\": \"个结果在仓库中匹配了\",\n            \"repositories sorted by\": \"仓库，排序按\",\n            \"written in\": \"，使用语言\",\n            \"results for repositories written in\": \"个结果在仓库中使用语言\",\n            \"star matching\": \"个星标匹配\", //?tab=stars\n            \"stars matching\": \"个星标匹配\", //?tab=stars\n            \"star written in\": \"个星标使用语言\", //?tab=stars\n            \"stars written in\": \"个星标使用语言\", //?tab=stars\n            \"sorted by\": \"，排序按\",\n                \"last updated\": \"最近更新\",\n                \"name\": \"仓库名\",\n                \"stars\": \"星标\",\n\n            \"Clear filter\": \"清除筛选\",\n\n            // [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"],\n            \"This organization doesn’t have any repositories that match.\": \"该组织没有任何匹配的仓库。\", // 组织仓库\n\n            \"This organization has no public repositories.\": \"该组织没有公共仓库。\", //组织仓库\n\n            \"No repositories matched your search.\": \"没有与您的搜索匹配的仓库。\", // 无匹配仓库\n\n            // 项目 状态词\n            \"Updated\": \"更新于\",\n            \"Forked from\": \"复刻自\",\n\n            // 曲线图提示\n            \"Past year of activity\": \"过去一年的活动\",\n\n        // 新版 组织 - 仓库概述 https://github.com/orgs/<orgs-name>/repositories\n            \"Filter\": \"筛选\",\n                \"Advanced filters\": \"高级筛选器\",\n                    \"Build complex filter queries\": \"构建复杂的筛选查询\",\n                        \"To start building your query add your first filter using the button below.\": \"要开始创建查询，请使用下面的按钮添加第一个筛选器。\",\n                    \"Add a filter\": \"新增筛选器\",\n                    \"Apply\": \"应用\",\n                    \"Qualifier\": \"限定词\",\n                        \"Created\": \"已创建\",\n                        \"Total forks\": \"复刻总数\",\n                        \"Total good-first issues\": \"好的首发议题总数\",\n                        \"Has\": \"包含文件\",\n                        \"Total help-wanted issues\": \"求助议题总数\",\n                        \"License\": \"许可证\",\n                        \"Mirror\": \"镜像\",\n                        \"Size (Kb)\": \"大小 (Kb)\",\n                        \"Sponsorable\": \"可接受赞助\",\n                        \"Text\": \"文本\",\n                        \"Total topics\": \"主题总数\",\n                        \"Total stars\": \"星标总数\",\n                        \"Template\": \"模板\",\n                        \"Topic\": \"话题\",\n                        \"Visibility\": \"可见性\",\n                    \"Operator\": \"操作符\",\n                        \"is\": \"是\",\n                        \"is not\": \"不是\",\n                        \"before\": \"之前\",\n                        \"after\": \"之后\",\n                        \"between\": \"之间\",\n                            \"From\": \"起\",\n                            \"To\": \"至\",\n                        \"is one of\": \"包括\",\n                        \"is not one of\": \"不包含\",\n                        \"greater than\": \"大于\",\n                        \"less than\": \"小于\",\n                        \"greater than or equal to\": \"大于或等于\",\n                        \"less than or equal to\": \"小于或等于\",\n                        \"equal to\": \"等于\",\n                    \"Value\": \"值\",\n                        \"Enter a number\": \"输入数字\",\n                        \"Enter search text\": \"输入搜索文本\",\n                        \"Make a selection\": \"进行选择\",\n                            \"Select items\": \"选择项目\",\n                            \"Select an item\": \"选择项目\",\n                                \"Filter values\": \"筛选值\",\n                                    // 复刻\n                                        \"Only forks\": \"仅复刻\",\n                                        \"Exclude forks\": \"排除复刻\",\n                                    // 排序\n                                        \"Recently pushed\": \"最近推送\",\n                                        \"Topics\": \"话题\",\n                                        \"Size\": \"尺寸\",\n                                        \"Recently pushed (descending)\": \"最近推送（降序）\",\n                                        \"Name (descending)\": \"名称（降序）\",\n                                        \"Language (descending)\": \"语言（降序）\",\n                                        \"License (descending)\": \"许可证（降序）\",\n                                        \"Topics (ascending)\": \"主题（升序）\",\n                                        \"Size (ascending)\": \"大小（降序）\",\n                                        \"Total stars (ascending)\": \"星标总数（降序）\",\n                                        \"Total forks (ascending)\": \"复刻总数（降序）\",\n                                        \"Help-wanted issues (ascending)\": \"求助议题总数（升序）\",\n                                        \"Help-wanted issues (descending)\": \"求助议题总数（降序）\",\n                                    // 可见性\n                                        \"Internal\": \"内部\",\n                \"Discard changes?\": \"放弃更改？\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                    \"Keep editing\": \"继续编辑\",\n                    \"Close and discard\": \"关闭并放弃\",\n            \"Search repositories\": \"搜索仓库\",\n                \"No repositories matched your search\": \"没有与您的查询相匹配的仓库\",\n                    \"Try a different search query\": \"尝试不同的搜索查询\",\n\n            \"Last pushed\": \"最近提送\",\n                \"Ascending\": \"升序\",\n                \"Descending\": \"降序\",\n            \"repository\": \"仓库\",\n            \"No language\": \"无语言\",\n\n            \"Compact display density\": \"紧凑显示密度\",\n            \"Comfortable display density\": \"舒适显示密度\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+(k|M|B)?) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"], // 仓库标签卡\n        [/([^ ]+) doesn’t have any public repositories yet./, \"$1 没有任何公共仓库。\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的仓库 “$1” 已成功删除。\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#type-options > summary > span:nth-child(1)\", \"类型\"], // 个人主页 --> 仓库标签页-->类型筛选器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Repositories\": \"我的仓库\",\n        },\n        \"regexp\": [\n            [/(R|r)epositories/, \"仓库\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/projects\"] = { // 个人首页- 项目标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 项目标签卡 ?tab=projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"There aren't any projects yet\": \"尚无任何项目\",\n            \"Provide quick access to relevant projects.\": \"提供快速访问相关项目的途径。\",\n            \"Add projects to view them here.\": \"将项目添加到此处查看。\",\n\n            \"Welcome to projects\": \"欢迎访问项目页面\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"构建像电子表格一样的项目表，给您一个实时的画布来对议题和拉取请求进行筛选、排序和分组。通过自定义字段和保存的视图，使它们符合您的需要。\",\n\n            \"Learn more about projects\": \"了解更多关于项目的信息\", // ?tab=projects\n\n            \"Create your first GitHub project\": \"创建您的第一个 GitHub 项目\",\n            \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"项目是一个可定制的、灵活的工具，用于规划和跟踪您的工作。\",\n\n            \"Sort\": \"排序\",\n                // 排序下拉菜单\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n            // 清除筛选\n            \"Clear current search query and sorts\": \"清除当前的搜索查询和分类\",\n\n            \"No open projects\": \"无已打开的项目\",\n\n            \"Plan and track work across repositories with custom fields and multiple views\": \"通过自定义字段和多个视图来计划和跟踪整个仓库的工作\",\n            \"Kanban-style project board\": \"看板式项目面板\",\n\n            \"You don't have any projects yet.\": \"您还没有任何项目。\",\n            \"There are no projects matching your search.\": \"没有符合您搜索条件的项目。\",\n            \"Learn More\": \"了解更多\",\n\n            \"No description\": \"无描述\",\n\n            // 顶部提醒\n            \"Project closed.\": \"项目已关闭。\",\n            \"Project reopened.\": \"项目已重新打开。\",\n\n            // 组织\n            \"Created by me\": \"由我创建\",\n            \"Create your first GitHub project template\": \"创建您的第一个 GitHub 项目模板\",\n            \"Templates can be used to quickly get started with a new project.\": \"模板可以用于快速新建项目。\",\n            \"New template\": \"新建模版\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            \"New view\": \"新建视图\",\n            \"Layout\": \"布局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"时间线\",\n            \"Duplicate view\": \"复制视图\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分组\",\n            \"No grouping\": \"不进行分组\",\n            \"Markers\": \"标记\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不进行排序\",\n            \"Zoom level\": \"缩放级别\",\n            \"Field sum\": \"字段总和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不进行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成图表\",\n            \"Rename view\": \"重命名视图\",\n            \"Delete view\": \"删除视图\",\n            \"Export view data\": \"导出视图数据\",\n            \"Assignees\": \"负责人\",\n            \"Project templates\": \"项目模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用户设置\",\n            \"Truncate titles\": \"截断标题\",\n            \"Show date fields\": \"显示日期字段\",\n            \"Add status update\": \"添加状态更新\",\n            \"Project details\": \"项目详情\",\n            \"View more options\": \"查看更多选项\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加项目\",\n            \"Start typing to create a draft, or type # to select a repository\": \"开始输入以创建草案，或输入 # 选择一个仓库\",\n            \"Scroll to previous date range\": \"滚动到上一个日期范围\",\n            \"Scroll to next date range\": \"滚动到下一个日期范围\",\n            \"Filter by keyword or by field\": \"按关键字或字段筛选\",\n            \"Discard\": \"放弃\",\n            \"Save changes to new view\": \"保存更改到新视图\",\n            \"Visible fields\": \"可见字段\",\n            \"Hidden fields\": \"隐藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"栏目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存档项目\",\n            \"Make a copy\": \"复制\",\n            \"GitHub Projects\": \"GitHub 项目\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"项目设置\",\n            \"Project name\": \"项目名称\",\n            \"Short description\": \"简短描述\",\n            \"More options\": \"更多选项\",\n            \"Make a copy of this project.\": \"复制此项目\",\n            \"Danger zone\": \"危险区\",\n            \"This project is currently private.\": \"此项目当前为私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"关闭项目将禁用其工作流程，并将其从打开项目列表中删除.\",\n            \"Close this project\": \"关闭此项目\",\n            \"Manage access\": \"管理访问权限\",\n            \"Who has access\": \"谁有访问权限\",\n            \"Private project\": \"私有项目\",\n            \"Only those with access to this project can view it.\": \"只有有权访问此项目的人才能查看它.\",\n            \"Invite collaborators\": \"邀请协作者\",\n            \"Manage access\": \"管理访问权限\",\n            \"Custom fields\": \"自定义字段\",\n            \"Field name\": \"字段名称\",\n            \"Field type\": \"字段类型\",\n            \"Text\": \"文本\",\n            \"Number\": \"数字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"单选\",\n            \"Starts on\": \"开始于\",\n            \"Duration\": \"持续时间\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存并创建\",\n            \"You don't have any collaborators yet.\": \"您还没有任何协作者.\",\n            \"Add a collaborator to see them here.\": \"添加协作者以在此处查看他们.\",\n            \"Make template\": \"制作模板\",\n            \"Copy as template\": \"复制为模板\",\n            \"Visibility\": \"可见性\",\n            \"Close project\": \"关闭项目\",\n            \"Delete project\": \"删除项目\",\n            \"Delete this project\": \"删除此项目\",\n            \"Status chart\": \"状态图表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此图表显示了项目中所有项目的当前状态.\",\n            \"Default charts\": \"默认图表\",\n            \"Custom charts\": \"自定义图表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置图表\",\n            \"Group by (optional)\": \"分组 (可选)\",\n            \"X-axis\": \"X 轴\",\n            \"Y-axis\": \"Y 轴\",\n            \"Save to new chart\": \"保存到新图表\",\n            \"Add a project status update\": \"添加项目状态更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"状态更新是跟踪项目健康和进度的简要报告. 从添加更新开始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"让每个人都知道这个项目是关于什么的，如何使用它，并链接到重要资源.\",\n            \"A short description about this project.\": \"关于此项目的简短描述.\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/View (\\d+)/, \"视图 $1\"],\n        [/([\\d,]+) Open/, \"$1 打开\"], // 项目标签卡\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Projects\": \"我的项目\",\n        },\n        \"regexp\": [\n            [/Projects/, \"项目\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/sponsoring\"] = { // 个人首页- 赞助标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n            \"has sponsored\": \"曾赞助\",\n            \"organization or maintainer in the past\": \"个组织或维护者\",\n            \"organization or maintainer\": \"个组织或维护者\",\n            \"Bulk Sponsor\": \"批量赞助\",\n            \"Sponsor multiple maintainers in one easy transaction.\": \"一次交易即可赞助多个维护者。\",\n            \"Get started\": \"前去赞助\",\n            \"Past sponsorship\": \"曾经赞助\",\n            \"Sponsored\": \"赞助于\",\n            \"organizations and maintainers and has sponsored\": \"个组织和维护者，过去曾赞助过\",\n                \"in the past\": \"个\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/is sponsoring/, \"正在赞助\"],\n        [/Sponsoring since (.+)/, (match ,p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `赞助自 ${translatedDate}`;\n        }],\n        [/Sponsored/, \"赞助于\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"赞助\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/packages\"] = { // 个人首页 - 软件包标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 软件包标签卡 ?tab=packages >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Get started with GitHub Packages\": \"开始使用 GitHub 软件包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地发布包，将您的包与您的代码一起存储，并与您的团队私下共享您的包。\",\n            \"Choose a registry\": \"选择注册表\",\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用于构建基于容器的应用的软件平台——小型轻量级执行环境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用于 Java 编程语言和 Java 运行环境的一个默认包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一个自由和开源的开源包管理器，用于包括 .NET 在内的 Microsoft 开发平台。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分发用于 Ruby 编程语言的 Ruby 程序和库的标准格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一个 JavaScript 的包管理器，包含在 Node.js 中。它使开发人员能够轻松地分享和重用代码。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"为您的团队提供一个管理 Docker 镜像的单一场所，并决定谁可以看到和访问您的镜像。\",\n\n            \"Type:\": \"类型:\",\n                // 下拉菜单\n                \"Select type\": \"选择类型\",\n                \"All\": \"全部\",\n            \"Search packages…\": \"搜索软件包…\",\n            \"Visibility:\": \"可见性:\",\n                \"Select visibility\": \"选择可见性\",\n                \"Internal\": \"内部\",\n            \"Sort by:\": \"排序方式:\",\n                \"Select sort view\": \"选择排序视图\",\n                \"Most downloads\": \"最多下载\",\n                \"Least downloads\": \"最少下载\",\n\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n            // 筛选结果\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"Try\": \"尝试\",\n            \"browsing all packages\": \"浏览所有软件包\",\n            \"to find what you're looking for.\": \"，以找寻您想要的内容。\",\n\n            \"Published\": \"发布于\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) packages?/, \"$1 软件包\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Packages\": \"我的软件包\",\n        },\n        \"regexp\": [\n            [/Packages/, \"软件包\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"page-profile/sponsors\"] = { // 个人首页 - 赞助标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 赞助标签卡 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // [/is sponsoring/, \"正在赞助\"],\n            \"organization or developer:\": \"个组织或开发者：\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/is sponsoring/, \"正在赞助\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-profile/stars\"] = { // 个人首页 - 星标标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"page-profile-public\"][\"static\"],\n\n        // 星标标签卡 ?tab=stars >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Show all lists...\": \"显示所有列表…\",\n\n            \"Sort by\": \"排序方式\",\n            // 排序补充\n                \"Name ascending (A-Z)\": \"名称升序 (A-Z)\",\n                \"Name descending (Z-A)\": \"名称降序 (Z-A)\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Last updated\": \"最后更新\",\n\n            \"Create your first list\": \"创建您的第一个清单\",\n            \"Lists make it easier to organize and curate repositories that you have starred.\": \"列表可使您更容易组织和策划您的星标仓库。\",\n            \"Create your first list.\": \"创建您的第一个清单。\",\n\n            // 搜索, 筛选 & 排序工具栏\n            \"Search stars\": \"搜索星标\",\n            \"Type: All\"    : \"类型：全部\",\n            \"Type: Public\" : \"类型：公共\",\n            \"Type: Private\": \"类型：私有\",\n            \"Type: Sources\": \"类型：源码\",\n            \"Type: Forks\"  : \"类型：复刻\",\n            \"Type: Mirrors\": \"类型：镜像\",\n            \"Type: Templates\": \"类型：模板\",\n                \"All\"    : \"全部\",\n                \"Public\" : \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源码\",\n                \"Forks\"  : \"复刻\",\n                \"Can be sponsored\": \"可赞助\",\n                \"Mirrors\": \"镜像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"语言\",\n                // 下拉菜单\n                \"Select language\": \"选择语言\",\n                \"All languages\": \"所有语言\",\n            \"Sort\": \"排序\",\n                // 下拉菜单\n            \"Sort by: Recently starred\": \"排序：最近星标\",\n            \"Sort by: Recently active\": \"排序：最近活跃\",\n            \"Sort by: Most stars\": \"排序：最多星标\",\n                \"Recently starred\": \"最近星标\",\n                \"Recently active\": \"最近活跃\",\n                \"Most stars\": \"最多星标\",\n                \"Languages\": \"语言\",\n\n            // 筛选结果\n            \"result for\": \"个结果在\",\n            \"results for\": \"个结果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源码\",\n                \"forked\": \"复刻\",\n                \"sponsorable\": \"可赞助\",\n                \"archived\": \"存档\",\n                \"mirror\": \"镜像\",\n                \"template\": \"模板\",\n            \"star matching\": \"个星标匹配\", //?tab=stars\n            \"stars matching\": \"个星标匹配\", //?tab=stars\n            \"star written in\": \"个星标使用语言\", //?tab=stars\n            \"stars written in\": \"个星标使用语言\", //?tab=stars\n            \"starred repositories\": \"星标仓库\",\n            \"starred repositories written in\": \"星标仓库使用语言\",\n\n            \"Clear filter\": \"清除筛选\",\n\n            // 项目 状态词\n            \"Updated\": \"更新于\",\n            \"Forked from\": \"复刻自\",\n\n            \"That’s it. You’ve reached the end of your stars.\": \"而已。您已经到了星海的尽头。\",\n\n            \"Topics\": \"主题\",\n\n            \"Add to list\": \"添加到清单\",\n            \"Lists\": \"清单\",\n            \"You don't have any lists yet.\": \"您尚无任何清单。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n\n            // 他人库 星标页 补充\n            \"Search starred repositories\": \"搜索星标仓库\",\n            \"Starred repositories\": \"星标仓库\",\n            \"Starred topics\": \"星标主题\",\n            \"See all starred topics\": \"查看所有星标主题\",\n\n            // [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已经到了$1 星海的尽头。\"], // 他人星标页 搜索结果\n\n        // https://github.com/stars/<user-name>/lists/<清单>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Edit list\": \"编辑清单\",\n                \"Delete list\": \"删除清单\",\n                    \"Are you sure you want to delete this list?\": \"您确定要删除此清单吗？\",\n                        // 顶部提醒\n                        // [/Deleted \\\"(.*)\\\"./, \"已删除 “$1”。], // 删除星标清单\n                \"Save list\": \"保存清单\",\n            \"Add repositories to this list\": \"添加仓库到此清单\",\n            \"Star repositories on GitHub to keep track of your favorite projects and inspirational code.\": \"GitHub 上的星标仓库可以跟踪您最喜欢的项目和鼓舞人心的代码。\",\n            \"Explore repositories.\": \"探索仓库。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Deleted \\\"(.*)\\\"./, \"已删除 “$1”。\"], // 删除星标清单 顶部提醒\n        [/doesn’t have any starred repositories yet./, \"尚无任何星标仓库。\"],\n        [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已经到了$1 星海的尽头。\"], // 他人星标页 搜索结果\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members?/, \"$1 成员\"], // 组织 浮动信息卡\n        [/Language: /, \"语言：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Stars\": \"我的星标\",\n        },\n        \"regexp\": [\n            [/Your list/, \"我的清单\"],\n            [/Starred/, \"星标\"],\n            [/'s list/, \" 的清单\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"confirm-access\"] = { // “授权访问” 对话框\n    \"static\": { // 静态翻译\n        // 授权访问 sudo 模式身份验证\n            \"Confirm access\": \"授权访问\",\n            \"Signed in as\": \"登录身份为\",\n            \"Authentication code\": \"验证码\",\n                \"More information about sudo mode authentication\": \"更多关于 sudo 模式身份验证的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器 (TOTP) 应用或浏览器扩展以查看您的身份验证码。\",\n            \"Verify\": \"验证\",\n            \"Verify\": \"验证\",\n            \"Verifying…\": \"验证中…\",\n            \"Your authentication code has been sent.\": \"您的验证码已发送。\",\n\n            \"Having problems?\": \"有问题吗？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your passkey\": \"使用您的通行密钥\",\n            \"Use your authenticator app\": \"使用您的身份验证器应用\",\n            \"Send a code via email\": \"通过电子邮件发送验证码\",\n            \"Use your password\": \"使用您的密码\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"为您的 GitHub Mobile 应用创建验证请求。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我们向您的 GitHub Mobile 应用发送了一个验证请求。输入下面显示的数字以进入 sudo 模式。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"Password\": \"密码\",\n            \"Forgot password?\": \"忘记密码？\",\n            \"Confirm\": \"确认\",\n\n            \"Passkey\": \"通行密钥\",\n            \"When you are ready, authenticate using the button below.\": \"准备好后，请使用下面的按钮进行身份验证。\",\n            \"This browser or device does not fully support passkeys.\": \"此浏览器或设备不完全支持通行密钥。\",\n            \"Use passkey\": \"使用通行密钥\",\n\n            \"Authentication failed.\": \"认证失败。\",\n            \"Retry passkey\": \"重试通行密钥\",\n\n            \"Unable to verify with your passkey?\": \"无法验证您的通行密钥？\",\n    },\n};\n\nI18N[\"zh-CN\"][\"payment-module\"] = { // 通用账单及支付信息模块\n    \"static\": { // 静态翻译\n        \"Account\": \"账户\",\n            \"Personal account\": \"个人账户\",\n\n        \"Billing information\": \"账单信息\",\n            \"You have not added any billing information.\": \"您尚未添加账单信息。\",\n               \"Add your information to show on every invoice\": \"在每张发票上添加您的信息\",\n\n            // 添加/编辑账单信息\n                \"First name\": \"名字\",\n                    \"First name can't be blank.\": \"名字不能为空。\",\n                    \"First name can't be blank\": \"名字不能为空\",\n                \"Last name\": \"姓氏\",\n                    \"Last name can't be blank.\": \"姓氏不能为空。\",\n                    \"Last name can't be blank\": \"姓氏不能为空\",\n                \"Address\": \"地址\",\n                    \"(Street, P.O. box)\": \"（街道，邮政信箱）\",\n                    \"Address can't be blank.\": \"地址不能为空。\",\n                    \"Address can't be blank\": \"地址不能为空\",\n                \"Address line 2\": \"地址第 2 行\",\n                    \"(Apartment, suite, unit)\": \"（公寓、套房、单元）\",\n                \"City\": \"城市\",\n                    \"City can't be blank.\": \"城市不能为空。\",\n                    \"City can't be blank\": \"城市不能为空\",\n                \"Country/Region\": \"国家/地区\",\n                \"State/Province\": \"州/省\",\n                    \"Required for certain countries\": \"某些国家/地区需要\",\n                \"Postal/Zip code\": \"邮政编码\",\n                    \"(9-digit zip code for US)\": \"（美国为 9 位邮政编码）\",\n                \"VAT/GST ID\": \"增值税/消费税编号\",\n\n                \"Save billing information\": \"保存账单信息\",\n                \"Save and continue\": \"保存并继续\",\n\n            // 顶部提醒\n                \"You have not added any billing information.\": \"您尚未添加账单信息。\",\n                \"Successfully updated billing information.\": \"保存账单信息成功。\",\n                \"An error occurred while saving billing information.\": \"保存账单信息发生错误。\",\n\n            // 组织设置\n                \"This organization is linked with your billing information:\": \"该组织与您的账单信息相关联：\",\n\n                \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"组织所有者或账单管理者必须将其个人账单信息与该组织账户关联。您可以切换到企业账户，以使用企业的账单信息通过\",\n                \"signing\": \"签署\",\n                \"the\": \" \",\n                \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n\n                \"Allow my billing information to be linked with this organization\": \"允许我的账单信息与该组织关联\",\n\n                    \"Confirm your details shown below. To make changes,\": \"确认以下显示的详细信息。要做出更改，\",\n                    \"edit your billing information\": \"请编辑您的账单信息\",\n\n                \"Update your billing information\": \"更新您的账单信息\",\n                \"to be able to link it with this organization.\": \"以便与该组织关联。\",\n                    // 顶部提醒\n                        \"You have successfully linked your billing information with this organization.\": \"您已成功将您的账单信息与该组织关联。\",\n\n                // 移除对话框\n                    \"Remove\": \"移除\",\n                    \"Remove your billing information?\": \"确定移除您的账单信息？\",\n                        \"You are about to remove the billing information for this organization. Are you sure you want to do this?\": \"您即将移除此组织的账单信息。确定要继续此操作吗？\",\n                    \"Remove billing information\": \"移除账单信息\",\n                    // 顶部提醒\n                        \"Successfully removed billing information.\": \"已成功移除账单信息。\",\n\n            // 其他\n                // 来自 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n                    \"Please confirm your billing details to continue. You only need to do this once.\": \"请确认您的账单详情以继续。您只需确认一次。\",\n\n        \"payment method\": \"支付方式\",\n        \"Payment method\": \"支付方式\",\n        \"Payment Method\": \"支付方式\",\n            \"You have not added a payment method.\": \"您尚未添加支付方式。\",\n\n        \"Payment information\": \"支付信息\",\n            \"Pay with\": \"支付方式：\",\n                \"Loading payment information…\": \"正在加载支付信息…\",\n\n                \"Credit or debit card\": \"信用卡或借记卡\",\n                    \"Card Number *\": \"卡号\",\n                    \"Expiration Date (YYYY) *\": \"终止日期 (YYYY) *\",\n                        \"- Select One -\": \"- 选择一个 -\",\n                    \"Save payment information\": \"保存付款信息\",\n                    \"You are currently paying with your PayPal account\": \"您目前正在使用您的 PayPal 账户支付\",\n                    \", but you can switch to using a credit or debit card at any time.\": \"，但是您随时可以切换到使用信用卡或借记卡支付。\",\n\n                \"PayPal account\": \"PayPal 账户\",\n                \"Paypal account\": \"PayPal 账户\",\n                    \"Sign in to\": \"登录到\",\n                    \"Connecting to PayPal…\": \"正在连接到 PayPal…\",\n                    \"Sorry, we’re having trouble with PayPal right now, please try again a bit later.\": \"抱歉，我们目前与 PayPal 的连接遇到问题，请稍后再试。\",\n                    \"PayPal update\": \"\",\n                    \"Charge to\": \"收费至\",\n                    \"Sign in to PayPal to use a different account.\": \"登录 PayPal 以使用其他账户。\",\n                    \"You are currently paying with a credit card, but you can switch to using PayPal at any time.\": \"您目前使用信用卡付款，但您可以随时切换为使用 PayPal。\",\n\n                // 顶部提醒\n                    \"An error occurred while saving payment information.\": \"保存支付信息时发生错误。\",\n                    \"Your PayPal account has been successfully added.\": \"您的 PayPal 账户已成功添加。\",\n                    \"Your credit card has been successfully updated.\": \"您的信用卡已成功更新。\",\n\n                \"504 Gateway Time-out\": \"504 网关超时\",\n                \"We may place a temporary hold on your payment method to verify its validity. This is not a charge, and it will be released automatically after verification.\": \"我们可能会暂时冻结您的支付方式以验证其有效性。这不是收费，验证后将会自动解除。\",\n    },\n};\n\nI18N[\"zh-CN\"][\"settings-menu\"] = { // 设置 - 公共部分\n    \"static\": { // 静态翻译\n        \"Settings\": \"设置\", // 新版全局导航\n\n        \"Your personal account\": \"我的个人账户\",\n        \"Switch settings context\": \"切换设置上下文\", // 存在组织时\n        \"Go to your personal profile\": \"去我的个人资料\",\n        // 左侧菜单\n        \"Public profile\": \"基本资料\",\n        \"Account\": \"账户\",\n        \"Appearance\": \"外观\",\n        \"Accessibility\": \"无障碍\",\n        \"Notifications\": \"通知\",\n\n        \"Access\": \"访问\",\n            \"Billing and licensing\": \"账单和许可\",\n                \"Usage\": \"使用情况\",\n                \"Premium request analytics\": \"高级请求分析\",\n                \"Budgets and alerts\": \"预算和警报\",\n                \"Licensing\": \"许可\",\n                \"Payment information\": \"支付信息\",\n                \"Payment history\": \"支付历史\",\n                \"Additional billing details\": \"其他账单\",\n                \"Education benefits\": \"教育福利\",\n            \"Emails\": \"电子邮箱\",\n            \"Password and authentication\": \"密码和身份验证\",\n            \"Sessions\": \"会话\",\n            \"SSH and GPG keys\": \"SSH 与 GPG 公钥\",\n            \"Organizations\": \"组织\",\n            \"Enterprises\": \"企业版\",\n            \"Moderation\": \"节制\",\n                \"Blocked users\": \"黑名单\",\n                \"Interaction limits\": \"互动限制\",\n                \"Code review limits\": \"代码审查限制\",\n\n        \"Code, planning, and automation\": \"代码、规划和自动化\",\n            // \"Repository\": \"仓库\"\n            // 代码空间\n            \"Models\": \"模型\",\n            \"Packages\": \"软件包\",\n            \"Copilot\": \"GitHub Copilot\",\n                \"Features\": \"功能\",\n                \"Coding agent\": \"编程智能体\",\n            \"Pages\": \"GitHub Pages\",\n            \"Saved replies\": \"快捷回复\",\n\n        // \"Security\": \"安全\",\n            \"Code security\": \"代码安全性\",\n\n        \"Integrations\": \"集成\",\n            \"Applications\": \"应用\",\n            \"Scheduled reminders\": \"定时提醒\",\n\n        \"Archives\": \"存档\",\n            \"Security log\": \"安全日志\",\n            \"Sponsorship log\": \"赞助日志\",\n\n        \"Developer settings\": \"开发者设置\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs-settings-menu\"] = { // 组织设置 公共部分\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 公用部分\n            \"Organization\": \"组织\",\n            \"Switch settings context\": \"切换设置上下文\", // 存在组织时\n            \"Go to your organization profile\": \"去我的组织主页\",\n        // 左侧菜单\n            \"General\": \"常规\",\n            \"Policies\": \"策略\",\n            \"Access\": \"访问\",\n                \"Billing and licensing\": \"账单和许可\",\n                    \"Usage\": \"使用情况\",\n                    \"Budgets and alerts\": \"预算和警报\",\n                    \"Licensing\": \"许可\",\n                    \"Payment information\": \"支付信息\",\n                    \"Payment history\": \"支付历史\",\n                    \"Additional billing details\": \"其他账单\",\n                \"Organization roles\": \"组织角色\",\n                    \"Role management\": \"角色管理\",\n                    \"Role assignments\": \"角色分配\",\n                \"Repository roles\": \"仓库角色\",\n                \"Member privileges\": \"成员权限\",\n                // \"Team discussions\": \"团队讨论\",\n                \"Import/Export\": \"导入/导出\",\n                \"Moderation\": \"节制\",\n                    \"Blocked users\": \"黑名单\",\n                    \"Interaction limits\": \"互动限制\",\n                    \"Code review limits\": \"代码审查限制\",\n                    \"Moderators\": \"版主\",\n\n            \"Code, planning, and automation\": \"代码、规划和自动化\",\n                \"Repository\": \"仓库\",\n                    \"Topics\": \"主题\",\n                    \"Rulesets\": \"规则集\",\n                    \"Rule insights\": \"规则洞察\",\n                    \"Custom properties\": \"自定义属性\",\n                \"Codespaces\": \"代码空间\",\n                \"Planning\": \"计划\",\n                    \"Issue types\": \"议题类型\",\n                \"Copilot\": \"GitHub Copilot\",\n                    \"Access\": \"访问\",\n                    \"Coding agent\": \"编程智能体\",\n                \"Actions\": \"操作\",\n                    \"Runners\": \"运行器\",\n                    \"Runner groups\": \"运行器组\",\n                    \"Custom images\": \"自定义镜像\",\n                    \"Caches\": \"缓存\",\n                \"Models\": \"模型\",\n                    \"Development\": \"开发\",\n                    \"Custom models\": \"自定义模型\",\n                \"Webhooks\": \"Web 钩子\",\n                \"Packages\": \"软件包\",\n                \"Projects\": \"项目\",\n\n            \"Security\": \"安全\",\n                \"Authentication security\": \"身份验证安全\",\n                \"Advanced Security\": \"高级安全\",\n                    \"Configurations\": \"配置\",\n                    \"Global settings\": \"全局设置\",\n                \"Deploy keys\": \"部署密钥\",\n                \"Compliance\": \"承诺\",\n                \"Verified and approved domains\": \"经验证和批准的域名\",\n                \"Secrets and variables\": \"机密和变量\",\n                    \"Private registries\": \"私有注册表\",\n\n            \"Third-party Access\": \"第三方访问\",\n                \"GitHub Apps\": \"GitHub 应用\",\n                \"OAuth app policy\": \"OAuth 应用策略\",\n                \"Personal access tokens\": \"个人访问令牌\",\n                    \"Active tokens\": \"活跃的令牌\",\n                    \"Pending requests\": \"待处理的请求\",\n\n            \"Integrations\": \"集成\",\n                \"Scheduled reminders\": \"定时提醒\",\n\n            \"Archive\": \"存档\",\n                \"Logs\": \"日志\",\n                    \"Sponsorship log\": \"赞助日志\",\n                    \"Audit log\": \"审计日志\",\n                \"Deleted repositories\": \"删除的仓库\",\n\n            \"Developer settings\": \"开发者设置\",\n                \"OAuth Apps\": \"OAuth 应用\",\n                \"Publisher Verification\": \"发布者验证\",\n            \"Account settings\": \"账户设置\",\n\n            \"Developer Settings\": \"开发者设置\"\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/profile\"] = { // 设置 - 个人资料\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Profile 个人资料 https://github.com/settings/profile\n            \"Public profile\": \"基本资料\",\n            \"Profile picture\": \"我的头像\",\n                \"Edit\": \"编辑\",\n                \"Upload a photo…\": \"上传图片…\",\n                \"Remove photo\": \"删除图片\",\n                \"Are you sure you want to reset your current avatar?\": \"您确定要重置当前的头像吗？\",\n                \"Your profile picture has been reset. It may take a few minutes to update across the site.\": \"您的个人头像已重置，整个网站的更新可能需要几分钟的时间。\",\n                \"Your profile picture has been updated. It may take a few minutes to update across the site.\": \"您的个人头像已更新，整个网站的更新可能需要几分钟的时间。\",\n                // 裁剪个人头像对话框\n                \"Crop your new profile picture\": \"裁剪个人头像\",\n                \"Set new profile picture\": \"设置新的个人头像\",\n            //\"You can also drag and drop a picture from your computer.\": \"您也可以直接拖拽照片镜像上传.\",\n            \"Name\": \"昵称\",\n            \"Your name may appear around GitHub where you contribute or are mentioned. You can remove it at any time.\": \"您的昵称可能会出现在 GitHub 上，您的贡献或被提及的地方。您可以随时删除它。\",\n            \"Public email\": \"公开电子邮箱\",\n            \"Remove\": \"移除\",\n            \"Select a verified email to display\": \"选择显示一个已验证的电子邮箱\",\n            \"You have set your email address to private. To toggle email privacy, go to\": \"您已将电子邮箱地址设置为私密。需要切换电子邮箱地址的私密性，请转到\",\n            \"email settings\": \"邮箱设置\",\n            \"and uncheck \\\"Keep my email address private.\\\"\": \"并取消 “保持我的电子邮箱地址的私密性”。\",\n            \"You can manage verified email addresses in your\": \"您可以管理已验证的电子邮箱地址在您的\",\n            //\"Don’t show my email address\": \"不显示我的邮箱\",\n            //\"You can add or remove verified email addresses in your\": \"您可以添加或删除邮件地址在您的\",\n            //\"personal email settings\": \"邮箱设置\",\n            \"Bio\": \"个人简介\",\n            \"Tell us a little bit about yourself\": \"自我介绍一下您自己的相关信息\",\n            \"You can\": \"您可以\",\n            \"@mention\": \"@用户名或组织名\",\n            \"other users and organizations to link to them.\": \"链接到其他用户和组织。\",\n            \"URL\": \"网站\",\n            \"Social accounts\": \"社交账户\",\n                \"Link to social profile 1\": \"链接到社交账户\",\n                \"Link to social profile 2\": \"链接到社交账户\",\n                \"Link to social profile 3\": \"链接到社交账户\",\n                \"Link to social profile 4\": \"链接到社交账户\",\n            \"Company\": \"公司\",\n            \"your company’s GitHub organization to link it.\": \"链接到您所在公司的 GitHub 组织。\",\n             //\"your company's GitHub organization to link it.\": \"贵公司和GitHub的组织联系起来。\",\n            \"Pronouns\": \"代词\",\n                \"Don't specify\": \"不说明\",\n                \"they/them\": \"他们\",\n                \"she/her\": \"她\",\n                \"he/him\": \"他\",\n                \"Custom\": \"自定义\",\n            \"Location\": \"位置\",\n            \"Display current local time\": \"显示当前当地时间\",\n                \"Other users will see the time difference from their local time.\": \"其他用户将看到与本地时间的时差。\",\n                \"Time zone\": \"时区\",\n\n            \"All of the fields on this page are optional and can be deleted at any time, and by filling them out, you're giving us consent to share this data wherever your user profile appears. Please see our\": \"此页面上的所有字段都是可选的，可以随时删除，填写这些字段，即表示您同意我们在您的个人资料出现的任何地方共享此数据。请参阅我们的\",\n            \"privacy statement\": \"隐私声明\",\n            \"to learn more about how we use this information.\": \"以了解更多关于我们如何使用这些信息。\",\n            \"Update profile\": \"更新资料\",\n            // 顶部提醒\n                \"Profile updated successfully\": \"资料更新成功。\",\n                \"Profile updated successfully —\": \"资料更新成功 —\",\n                \"view your profile.\": \"查看您的个人资料。\",\n\n            \"Contributions & activity\": \"贡献与活动\",\n                \"Make profile private and hide activity\": \"将个人资料设置为私密，并隐藏活动\",\n                    \"Enabling this will hide your contributions and activity from your GitHub profile and from social features like followers, stars, feeds, leaderboards and releases.\": \"启用此功能后，您的贡献和活动将会从您的 GitHub 个人资料中隐藏起来，也不会被关注者、观星者、动态提要、排行榜和发布等社交功能所发现。\",\n                \"Include private contributions on my profile\": \"在我的个人资料显示私人贡献\",\n                    \"Your contribution graph, achievements, and activity overview will show your private contributions without revealing any repository or organization information.\": \"您的贡献图、成就和活动概览将显示您的私人贡献，而不会透露任何仓库或组织信息。\",\n                    \"Read more\": \"了解更多\",\n            \"Update preferences\": \"更新设置\",\n\n            \"Profile settings\": \"个人资料设置\",\n                \"Display PRO badge\": \"显示 PRO 徽章\",\n                    \"This will display the\": \"将会显示\",\n                    \"badge on your public profile page.\": \"徽章在您的个人资料中。\",\n                \"Show Achievements on my profile\": \"在我的个人资料上显示成就\",\n                    \"Your achievements will be shown on your profile.\": \"您的成就将显示在您的个人资料中。\",\n\n            \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"has guides, API and webhook references, information about creating GitHub Apps and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"包含指南、API 和 Web 钩子、有关创建 GitHub 应用的信息以及用于构建与 GitHub 集成的应用的其他资源。确保您的联系信息是最新的。感谢您的加入！\",\n\n                \"Support email address\": \"技术支持电子邮件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用户联系您寻求支持的电子邮件地址。\",\n                \"Product or company website\": \"产品或公司网站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"与 GitHub 集成的产品、公司或服务的网址。\",\n                \"Update contact information\": \"更新联系信息\",\n                \"Leave the program\": \"退出计划\",\n\n                \"Building an application, service, or tool that integrates with GitHub?\": \"构建与 GitHub 集成的应用、服务或工具？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 开发者计划\",\n                \", or read more about it at our\": \"，或了解更多信息在我们的\",\n                \"GitHub developer program\": \"GitHub 开发者计划\",\n                \"Developer site\": \"开发者站点\",\n\n            \"Jobs profile\": \"就业状态\",\n            \"Available for hire\": \"求 HR 带走\",\n            \"Save jobs profile\": \"保存状态\",\n                // 顶部提醒\n                \"Profile updated successfully —\": \"个人资料更新成功 —\",\n                \"view your profile.\": \"查看您的个人资料。\",\n                \"Visitors will now see your public and anonymized private contributions.\": \"现在访客可以看到您的公开和匿名私人贡献。\",\n                \"Visitors will now see only your public contributions.\": \"现在访客只能看到您的公开贡献\",\n\n            \"Trending settings\": \"趋势设置\",\n            \"Preferred spoken language\": \"首选语言\",\n            \"No Preference\": \"未设置\",\n            \"We'll use this language preference to filter the trending repository lists on\": \"我们将使用此语言偏好来过滤趋势仓库列表在\",\n            \"our\": \"我们的\",\n            \"Trending Repositories\": \"趋势仓库\",\n            \"page.\": \"页面。\",\n            \"Save Trending settings\": \"保存趋势设置\",\n\n            \"ORCID provides a persistent identifier - an ORCID iD - that distinguishes you from other researchers. Learn more at\": \"ORCID 提供持久标识符 - ORCID iD - 将您与其他开发人员区分，了解更多信息请访问\",\n            \"Connect your ORCID iD\": \"关联您的 ORCID iD\",\n            \"Successfully connected your GitHub account with ORCID.\": \"已成功将您的 GitHub 账户与 ORCID 关联。\",\n            \"You have a connected ORCID iD\": \"您的 ORCID iD\",\n            \"for the account\": \"已关联账户\",\n            \"Display your ORCID iD on your GitHub profile\": \"在您的 GitHub 个人资料上显示 ORCID iD\",\n            \"Disconnecting your ORCID iD may affect areas of your profile where your ORCID iD is displayed.\": \"解除关联 ORCID iD 可能会影响您个人资料中显示 ORCID iD 的区域。\",\n            \"Disconnect your ORCID iD\": \"解除关联您的 ORCID iD\",\n            \"Successfully disconnected ORCID from your GitHub Account.\": \"已成功解除 ORCID 与您的 GitHub 账户的连接。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your profile\": \"个人资料\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings\"] = I18N[\"zh-CN\"][\"settings/profile\"];\n\nI18N[\"zh-CN\"][\"settings/admin\"] = { // 设置 - 账户\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Account settings 账户设置 https://github.com/settings/admin\n            \"Change username\": \"更改用户名\",\n            \"Changing your username can have\": \"更改您的用户名可能会有\",\n            \"unintended side effects\": \"意想不到的副作用\",\n                \"Really change your username?\": \"确定要更改您的用户名？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                \"We\": \"我们\",\n                \"will not\": \"不会\",\n                \"will\": \"会\",\n                \"set up redirects for your old profile page.\": \"为您的旧资料页设置重定向\",\n                \"set up redirects for Pages sites.\": \"为 GitHub Pages 站点设置重定向。\",\n                \"create redirects for your repositories (web and git access).\": \"为您的仓库设置重定向（ web 和 git 访问）。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要几分钟的时间来完成。\",\n                \"I understand, let’s change my username\": \"我明白了，依然更改我的用户名\",\n\n                \"Enter a new username\": \"输入新用户名\",\n                \"Choose a new username\": \"选择新用户名\",\n                \"Change my username\": \"更改我的用户名\",\n                \"Trademark Policy\": \"商标政策\",\n                \"are available.\": \"都可以使用。\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用户名只能包含字母数字字符或单个连字符，不能以连字符开始或结束。\",\n            \"Looking to manage account security settings? You can find them in the\": \"想管理账户安全设置？您可以在\",\n            \"page.\": \"页面找到它们。\",\n\n            \"Link Patreon account\": \"关联 Patreon 账户\",\n                \"Connect a Patreon account for\": \"关联\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 账户，以便赞助维护者。当被赞助者也关联 Patreon 和 GitHub 账户时，在 Patreon 上获得的赞助也会显示在 GitHub 上，并显示 GitHub 赞助者的公开个人资料。\",\n                \"Connect with Patreon\": \"关联 Patreon 账户\",\n                \"Successfully connected your GitHub account with Patreon.\": \"已成功将您的 GitHub 账户与 Patreon 关联。\",\n\n            \"Unlink Patreon account\": \"取消关联 Patreon 账户\",\n                \"Disconnect the Patreon account\": \"取消 Patreon 账户\",\n                \"for\": \"和\",\n                \"to sponsor maintainers with. Any sponsorships made on Patreon will no longer receive recognition on GitHub.\": \"的关联，在 Patreon 上进行的任何赞助将不会在 GitHub 显示。\",\n                \"Successfully disconnected your GitHub account from Patreon.\": \"已成功解除您的 GitHub 账户与 Patreon 的关联。\",\n\n            \"Export account data\": \"导出账户数据\",\n            \"Export all repositories and profile metadata for\": \"导出所有仓库和配置元数据，自\",\n            \". Exports will be available for 7 days.\": \"。导出结果将有 7 天有效期。\",\n            \"Start export\": \"开始导出\",\n            \"Recent exports\": \"近期导出\",\n            \"New export\": \"新建导出\",\n            \"We're preparing your export! We'll send you an email when it's finished.\": \"我们正在为您准备导出！我们完成后会发一封电子邮件。\",\n            \"New exports cannot be requested while an export is currently in progress\": \"当前正在导出中，无法请求新的导出\",\n            \"Resend email with link\": \"重新发送带有链接的邮件\",\n            \"Download deleted\": \"导出内容已删除\",\n            \"Job queued to delete file.\": \"正在排队删除文件的作业。\",\n\n            \"Successor settings\": \"设置继任者\",\n            // 未指定\n            \"designated below\": \"（下面指定的）\",\n            \", in the event of my death. I understand that this appointment of a successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will.\": \"。我明白，这种指定继任者的做法并不凌驾于具有法律约束力的近亲规则或任何相关司法管辖区的遗产法，也不产生具有约束力的遗嘱。\",\n            \"Learn more about account successors.\": \"了解更多关于账户继任者的信息。\",\n            \"Add Successor\": \"添加继任者\",\n            \"Search by username, full name, or email address\": \"搜索用户名、全名、或电子邮箱\",\n            \"You have not designated a successor.\": \"您还没有指定继任者。\",\n            // 等待回应\n            \"Pending\": \"待处理\",\n            \"Copy invite link\": \"复制邀请链接\",\n            // 已指定\n            \"Learn more about account successors\": \"了解更多关于账户继任者的信息\",\n            \"Revoke\": \"撤销\",\n            // 被谢绝\n            \"Declined\": \"被谢绝\",\n\n            \"Delete account\": \"删除账户\",\n            \"Once you delete your account, there is no going back. Please be certain.\": \"您一旦删除了您的账户，将再也无法恢复。请确认！\",\n                \"Your account is currently an owner in these organizations:\": \"您的账户目前是以下组织的所有者：\", // 存在组织\n                \"You must\": \"您必须先\",\n                \"remove yourself\": \"删除您自己\",\n                \"transfer ownership\": \"转让所有权\",\n                \"delete these organizations\": \"删除这些组织\",\n                \"before you can delete your user.\": \"，您才可以删除您的用户。\",\n            \"Delete your account\": \"删除账户\",\n            \"Are you sure you don’t want to just\": \"您确定不希望仅仅是\",\n            \"downgrade your account\": \"降级您的账户\",\n            \"to a\": \"为\",\n            \"FREE\": \"免费\",\n            \"account? We won’t charge your credit card anymore.\": \"账户吗？我们不会再向您信用卡账户扣款。\",\n            \"account? We won’t charge your payment information anymore.\": \"账户吗？我们不会再向您支付账户扣款。\",\n            \"account? We won’t charge your PayPal account anymore.\": \"账户吗？我们将不再向您 PayPal 账户扣款。\",\n                \"Are you sure you want to do this?\": \"您确定要这么做吗？\",\n                \"This is extremely important.\": \"这是极其重要的。\",\n                \"We will\": \"我们将\",\n                \", along with all of your forks, wikis, issues, pull requests, and GitHub Pages sites.\": \"以及您所有的复刻、Wiki、议题、拉取请求和 GitHub Pages 站点。\",\n                \"You will no longer be billed, and after 90 days your username will be available to anyone on GitHub.\": \"您将不再被收取费用，并且 90 天后您的用户名将被 GitHub 上的任何人使用。\",\n                \"For more help, read our article \\\"\": \"如需更多帮助，请阅读我们的文章 “\",\n                \"Deleting your user account\": \"删除您的账户\",\n                \"\\\".\": \"”。\",\n                \"Your username or email:\": \"您的用户名或电子邮箱：\",\n                \"To verify, type\": \"为了验证，请输入\",\n                \"below:\": \"在下面：\",\n                \"Confirm your password:\": \"确认您的密码：\",\n                \"Cancel plan and delete this account\": \"取消计划并删除此账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/is available\\./, \"可用。\"],\n        [/Username ([^ ]+) is not available\\. Please choose another\\. To submit a trademark claim, please see our/, \"用户名 $1 不可用。请重新选择。要提交商标索赔，请看我们的\"],\n        [/immediately delete all of your repositor(y|ies) \\((\\d+)\\)/, \"立即删除您所有的仓库（$1个）\"],\n\n        // 设置继任者\n        [/By clicking \\\"Add Successor\\\" below, I acknowledge that I am the owner of the([^@]+@[^\\n]+) account, and am authorizing GitHub to transfer content within that account to my GitHub Successor,/, \"通过点击下面的 “添加继任者”，我确认我是 $1 账户的所有者，并授权 GitHub 在我死亡的情况下将此账户内的内容转让给我的 GitHub 继任者\"],\n        [/This link will only work for ([^ ]+)./, \"此链接仅对 $1 有效。\"],\n\n        // 顶部提醒\n        [/You have successfully sent the successor invitation to ([^ ]+)./, \"您已经成功向 $1 发送了继任者邀请。\"],\n        [/You have revoked the successor invitation to ([^ ]+)./, \"您已经撤销了对 $1 的继任者邀请。\"],\n        [/You have canceled the invitation to ([^ ]+) to be your designated successor./, \"您已经取消了让 $1 成为您的指定继任者的邀请。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account settings\": \"账户设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"succession/invitation\"] = { // 账户继任者邀请  users/<邀请者的 user-name>/succession/invitation\n    \"static\": { // 静态翻译\n        // 受邀者\n        \"invited you to be their account successor\": \"邀请您成为其账户继任者\",\n        \"Learn more about account successors\": \"了解更多关于账户继任者的信息\",\n        //[/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通过点击下面的 “接受邀请”，我确认我同意按照其继任者要求所授权的方式担任 $1 的继任者。我同意在使用和维护其帐户内容时遵守 GitHub 的\"],\n        \"Terms of Service\": \"服务条款\",\n        \"and the user's written requests, if any, in my use and maintaining of their account's content.\": \"和用户的书面请求（如果有）。\",\n        \"I understand that accepting this appointment as successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will, and I agree to comply or assist with a valid request by an individual with legal authority over the user's property (such as next-of-kin, an estate's executor, and/or a beneficiary of their will).\": \"我明白，接受此继任者任命的做法并不凌驾于具有法律约束力的近亲规则或任何相关司法管辖区的遗产法，也不产生具有约束力的遗嘱，并且我同意遵守或协助对用户财产拥有合法权力的个人（例如近亲、遗产执行人和/或其遗嘱受益人）的有效请求。\",\n        \"Accept invitation\": \"接受邀请\",\n        \"Decline\": \"谢绝\",\n        // 已接受\n        \"This invitation has already been accepted.\": \"此邀请已被接受。\",\n        // 已谢绝\n        \"This invitation has already been declined.\": \"此邀请已被谢绝。\",\n        // 不存在\n        \"Invitation not found\": \"此邀请已被谢绝。\",\n        \"Your invitation could not be found, or is not valid.\": \"找不到您的邀请，或是其已不再有效。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/As an account successor, you would be able to manage ([^ ]+)'s repositories if they're not able to./, \"作为账户继任者，在 $1 再也无法管理其仓库时，您将能够管理其仓库。\"],\n        [/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通过点击下面的 “接受邀请”，我确认我同意按照其继任者要求所授权的方式担任 $1 的继任者。我同意在使用和维护其帐户内容时遵守 GitHub 的\"],\n    ]\n};\n\nI18N[\"zh-CN\"][\"settings/appearance\"] = { // 设置 - 外观\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Appearance 外观 https://github.com/settings/appearance\n            \"Theme preferences\": \"主题首选项\",\n            \"Choose how GitHub looks to you. Select a single theme, or sync with your system and automatically switch between day and night themes. Selections are applied immediately and saved automatically.\": \"选择 GitHub 在您眼中的样子。选择单一主题，或与您的系统同步并自动在白天和夜晚的主题之间切换。选择将立即生效并自动保存。\",\n            \"Theme mode\": \"主题模式\",\n                \"Single theme\": \"单一主题\",\n                \"Sync with system\": \"与系统同步\",\n            \"GitHub will use your selected theme\": \"GitHub 将使用您选择的主题\",\n            \"GitHub theme will match your system active settings\": \"GitHub 主题将匹配您的系统设置\",\n            \"Light default\": \"浅色 - 默认\",\n            \"Light protanopia and deuteranopia\": \"浅色 - 色盲\",\n            \"Light colorblind\": \"浅色 - 色盲\",\n            \"Light tritanopia\": \"浅色 - 蓝色盲\",\n            \"Dark default\": \"深色 - 默认\",\n            \"Dark protanopia and deuteranopia\": \"深色 - 色盲\",\n            \"Dark colorblind\": \"深色 - 色盲\",\n            \"Dark tritanopia\": \"深色 - 蓝色盲\",\n            \"Soft dark\": \"深色 - 柔和\",\n            \"Light theme\": \"浅色主题\",\n            \"Dark theme\": \"深色主题\",\n            \"Active\": \"激活\",\n            \"This theme will be active when your system is set to “light mode”\": \"当您的系统设置为 “浅色模式” 时，该主题将被激活。\",\n            \"This theme will be active when your system is set to “dark mode”\": \"当您的系统设置为 “深色模式” 时，该主题将被激活。\",\n            \"Beta\":\"预览\",\n\n            \"Contrast\": \"对比度\",\n                \"Increase contrast\": \"增加对比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根据您的系统设置启用对浅色或深色模式（或两者）的高对比度\",\n                    \"Light mode\": \"浅色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"Off\": \"关闭\",\n                    \"On\": \"开启\",\n\n            \"Emoji skin tone preference\": \"表情符号肤色首选项\",\n            \"Preferred default emoji skin tone\": \"默认的表情符号肤色\",\n\n            \"Tab size preference\": \"制表符首选项\",\n            \"Choose the number of spaces a tab is equal to when rendering code\": \"在渲染代码时，选择一个制表符等于多少个空格\",\n            \"4 (Default)\": \"4 (默认)\",\n\n            \"Markdown editor font preference\": \"Markdown 编辑器字体首选项\",\n            \"Font preference for plain text editors that support Markdown styling (e.g. pull request and issue descriptions, comments.)\": \"支持 Markdown 样式的纯文本编辑器的字体首选项（例如拉取请求和议题描述、评论。）\",\n            \"Use a fixed-width (monospace) font when editing Markdown\": \"编辑 Markdown 时使用固定宽度（等宽）字体\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Appearance\": \"外观\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/accessibility\"] = { // 设置 - 无障碍\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Accessibility 无障碍 https://github.com/settings/accessibility\n            \"General\": \"通常\",\n            \"Character keys\": \"字符键\",\n                \"GitHub shortcuts\": \"GitHub 快捷键\",\n                \"that don't use modifier keys in their activation. For example, the\": \"，这些快捷键在激活时不使用修改键。例如，\",\n                \"shortcut to navigate notifications, or\": \"快捷键来导航到通知，或\",\n                \"to view context relevant shortcuts.\": \"查看与上下文相关的快捷键。\",\n                \"Learn more about character key shortcuts\": \"了解更多关于字符快捷键的信息\",\n                \"Save keyboard shortcut preferences\": \"保存键盘快捷键首选项\",\n\n            // 顶部提醒\n                \"Keyboard shortcut preference successfully saved.\": \"键盘快捷键首选项已成功保存。\",\n\n            \"Command palette\": \"命令面板\",\n                \"Modify the shortcuts to trigger the Command Palette for the default search mode and the command mode\": \"修改快捷键以触发默认搜索模式和命令模式的命令面板\",\n                \"Search mode\": \"搜索模式\",\n                    \"control + k or control + alt + k (default)\": \"control + k 或 control + alt + k (默认)\",\n                    \"Disabled\": \"禁用\",\n                \"Command mode\": \"命令模式\",\n                    \"control + shift + k (default)\": \"control + shift + k (默认)\",\n                \"Save command palette preferences\": \"保存命令面板首选项\",\n\n            \"Motion\": \"动态\",\n                \"Autoplay animated images\": \"自动播放动态图片\",\n                    \"Select whether animated images should play automatically.\": \"选择是否需要自动播放动态图片。\",\n                \"Sync with system\": \"与系统同步\",\n                    \"Adopts your system preference for reduced motion\": \"采用您的系统偏好以减少运动\",\n                \"Enabled\": \"启用\",\n                    \"Automatically plays animated images\": \"自动播放动态图片\",\n                // 禁用\n                    \"Prevents animated images from playing automatically\": \"防止自动播放动态图片\",\n                \"Save motion preferences\": \"保存动态首选项\",\n\n            // 顶部提醒\n                \"Motion preferences successfully saved.\": \"动态首选项已成功保存。\",\n\n            \"Content\": \"内容\",\n                \"Link underlines\": \"链接下划线\",\n                    \"Toggle the visibility of underlines on links that are adjacent to text.\": \"切换文本相邻链接上下划线的可见性。\",\n                \"Hide link underlines\": \"隐藏链接下划线\",\n                \"Show link underlines\": \"显示链接下划线\",\n                \"Save content preferences\": \"保存内容首选项\",\n\n            // 顶部提醒\n                \"Link underline preferences successfully saved.\": \"链接下划线首选项已成功保存。\",\n\n            \"Hovercards\": \"悬浮卡\",\n                \"preview information about other parts of GitHub.\": \"预览 GitHub 其他部分的信息。\",\n                \"Show hovercards\": \"显示悬浮卡\",\n                    \"Enable previewing link content via mouse hover or keyboard focus before navigation. Move focus to hovercard content using\": \"在导航之前，可通过鼠标悬停或键盘聚焦预览链接内容。使用以下方法将焦点移至悬停卡片内容\",\n                \"Save hovercard preferences\": \"保存悬浮卡偏好设置\",\n            // 顶部提醒\n                \"Hovercard preferences successfully saved.\": \"悬浮卡首选项已成功保存。\",\n\n            \"Editor settings\": \"编辑器设置\",\n                \"URL paste behavior\": \"URL 粘贴行为\",\n                \"Select if URLs should be formatted on paste. You can use\": \"选择是否应在粘贴时格式化 URL。您可以使用\",\n                \"to paste a link in the opposite way.\": \"以相反的方式粘贴链接。\",\n                \"Formatted link\": \"格式化链接\",\n                    \"Pasting a URL while having text selected will format to a Markdown link\": \"在选择了文本的情况下，粘贴 URL 将格式化为 Markdown 链接\",\n                \"Plain text\": \"纯文本\",\n                    \"Pasting a URL while having text selected will replace the text\": \"在选择了文本的情况下，粘贴 URL 将替换文本\",\n                \"Save editor settings\": \"保存编辑器设置\",\n            // 顶部提醒\n                    \"Paste behavior preferences successfully saved.\": \"粘贴行为首选项已成功保存。\",\n\n            \"Assistive technology hints\": \"辅助技术提示\",\n                \"Add or remove instructions for how to operate complex controls.\": \"添加或删除如何操作复杂控件的说明。\",\n                // 悬浮卡\n                    \"Enable screen reader hint\": \"启用屏幕阅读器提示\",\n                    \"Disable screen reader hint\": \"禁用屏幕阅读器提示\",\n                \"Save assistive technology hint preferences\": \"保存辅助技术提示首选项\",\n            // 顶部提醒\n                \"Hovercard assistive technology hint preferences successfully saved.\": \"悬浮卡辅助技术提示首选项已成功保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Accessibility\": \"无障碍\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/notifications\"] = { // 设置 - 通知\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Notification center 通知 https://github.com/settings/notifications\n            \"Default notifications email\": \"默认邮件通知设置\",\n                \"Choose where you'd like emails to be sent. You can add more email addresses. Use custom routes to specify different email addresses to be used for individual organizations.\": \"请选择希望接收通知邮件的邮箱。您可以添加多个邮箱地址。可借助自定义路由为不同的组织指定不同的邮箱地址。\",\n                \"Custom routing\": \"自定义路由\",\n\n            \"Automatically watch repositories\": \"自动关注仓库\",\n                \"When you're given push access to a repository, automatically receive notifications for it.\": \"当您给一个仓库推送权限时，自动接收相关通知。\",\n            \"Automatically watch teams\": \"自动关注团队\",\n                \"Anytime you join a new team, you will automatically be subscribed to updates and receive notification when that team is @mentioned.\": \"当您加入新团队时，您将自动订阅更新，并在该团队 @提及 时收到通知。\",\n\n                \"On\": \"开启\",\n                \"Off\": \"关闭\",\n\n            \"Subscriptions\": \"订阅\",\n                \"Watching\": \"关注仓库\",\n                    \"Notifications for all repositories, teams, or conversations you're watching.\": \"所有您正在关注的仓库、团队或对话所发出的通知。\",\n                    \"View watched repositories\": \"查看正在关注的仓库\",\n                    \"Notify me:\": \"提醒我：\",\n                    \"Select notification channels\": \"选择通知渠道\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、电子邮件、CLI 上\",\n                    \"on GitHub, CLI\": \"在 GitHub、CLI 上\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、电子邮件、CLI 上\",\n                    \"on GitHub, Email\": \"在 GitHub、电子邮件 上\",\n                    \"On GitHub\": \"在 GitHub 上\",\n                    \"on GitHub\": \"在 GitHub 上\",\n                \"Don't notify\": \"取消通知\",\n\n                \"Participating, @mentions and custom\": \"参与、@提及和自定义\",\n                    \"Notifications for the conversations you are participating in, or if someone cites you with an @mention. Also for all activity when subscribed to specific events.\": \"您参与的对话、或有人 @您、以及您订阅的特定事件所发出的通知。\",\n\n                \"Customize email updates\": \"自定义电子邮件更新\",\n                    \"Choose which additional events you'll receive emails for when participating or watching.\": \"选择参与或关注时，您将收到哪些额外活动的电子邮件。\",\n                    \"Select events\": \"选择事件\",\n                    \"Reviews\": \"审查\",\n                    \"Reviews, Pushes\": \"审查、推送\",\n                    \"Reviews, Pushes, Comments\": \"审查、推送、评论\",\n                    \"Reviews, Pushes, Comments, My own updates\": \"审查、推送、评论、自我更新\",\n                    \"Pull Request reviews\": \"拉取请求审核\",\n                    \"Pull Request pushes\": \"拉取请求推送\",\n                    \"Comments on Issues and Pull Requests\": \"关于议题和拉取请求的评论\",\n                    \"Includes your own updates\": \"包括您自己的更新\",\n                \"Ignored repositories\": \"忽略的仓库\",\n                \"You'll never be notified.\": \"您将永远不会收到通知。\",\n                \"View ignored repositories\": \"查看忽略的仓库\",\n\n            \"System\": \"系统\",\n                \"Actions\": \"操作\",\n                    \"Notifications for workflow runs on repositories set up with\": \"仓库的工作流程通知，设置在\",\n                    \". (\": \"。（\",\n                    \"Failed workflows only\": \"仅工作流程失败时\",\n                    \"Only notify for failed workflows\": \"只对失败的工作流程进行通知\",\n\n            \"Dependabot alerts: New vulnerabilities\": \"Dependabot 警报：新漏洞\",\n                \"When you're given access to\": \"当您获得\",\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                \"automatically receive notifications when a new vulnerability is found in one of your dependencies.\": \" 访问权限时，当您的某个依赖项中发现新的漏洞时，就会自动收到通知。\",\n\n            \"Dependabot alerts: Email digest\": \"Dependabot 警报：电子邮件摘要\",\n                \"Email a regular summary of Dependabot alerts for up to 10 of your repositories.\": \"通过电子邮件发送最多 10 个仓库库的 Dependabot 警报定期摘要。\",\n                \"Don't send\": \"不发送\",\n                \"Send weekly\": \"每周发送\",\n                \"Send daily\": \"每日发送\",\n\n            \"Security campaign emails\": \"安全活动电子邮件\",\n                \"Receive email notifications about security campaigns in repositories where you have access to security alerts.\": \"接收有关您有权访问安全警报的仓库中的安全活动的电子邮件通知。\",\n\n            \"\\'Deploy key\\' alert email\": \"“部署密钥” 警报电子邮件\",\n                \"When you are given admin permissions to an organization, automatically receive notifications when a new deploy key is added.\": \"当您获得组织的管理员权限时，会在添加新部署密钥时自动接收通知。\",\n\n            \"In-product messages\": \"产品消息\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"从 GitHub 获取有关我们认为您可能感兴趣的产品、服务和活动的提示、解决方案和独家优惠。\",\n\n        // 通知 自定义路由 https://github.com/settings/notifications/custom_routing\n                \"/ Custom Routing\": \"/ 自定义路由\",\n                    \"You can send notifications to different\": \"您可借助自定义路由为不同的组织指定不同的邮箱地址\",\n                    \"verified\": \"（经验证的邮箱）\",\n                    \"email addresses depending on the organization that owns the repository.\": \"。\",\n                    \"is your current default email for notifications.\": \"是您目前默认的通知邮箱。\",\n\n                    \"No custom routes yet.\": \"尚无自定义路由\",\n                    \"Add new route\": \"添加新路由\",\n                        \"Pick organization\": \"挑选组织\",\n                            \"Select an item\": \"选择一项\",\n                        \"Search organizations\": \"搜索组织\",\n                        \"Select Email\": \"选择邮箱\",\n                        \"Saved\": \"已保存\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notification settings\": \"通知设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/billing\"] = { // 设置 - 账单和计划\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        // 概况 https://github.com/settings/billing\n            // 顶部提示\n                \"Successfully updated billing information.\": \"成功更新支付信息。\",\n\n                \"For more information on using these billing pages\": \"有关使用这些账单页面的更多信息，\",\n                    \"please refer to the docs content here\": \"请参阅此处的文档内容\",\n\n            // 概况\n                \"Current metered usage\": \"当前计费用量\",\n                    \"Gross metered usage for\": \" \",\n                    \"Showing gross metered usage for your account.\": \"显示您账户的总计费用量。\",\n                    \"Showing gross metered usage for your organization.\": \"显示您组织的总计费用量。\", // 组织\n\n                \"Current included usage\": \"当前包含用量\",\n                    \"More details\": \"详情\",\n                    \"Included usage discounts for\": \" \",\n                    \"Showing currently applied discounts for your account.\": \"显示您账户当前应用的折扣。\",\n                    \"Showing currently applied discounts for your organization.\": \"显示您组织当前应用的折扣。\", // 组织\n                    \"* As per current pricing\": \"* 根据当前定价方案\",\n                    \"Download your Copilot premium request usage report\": \"下载您的 Copilot 高级请求使用报告：\",\n                        \"here\": \"下载\",\n\n                // 当前包含用量详情\n                    \"Included usage and credits\": \"包含用量和额度\",\n                        \"Showing currently applied usage and credits for your account.\": \"显示您账户当前的使用情况和额度。\", // 后续走正则\n\n                        \"Included usage*\": \"包含用量*\",\n                            \"Included premium requests\": \"包含高级请求\",\n                            \"Free usage**\": \"免费使用**\",\n                                \"100% off per month\": \"100%减免/每月\",\n\n                        \"* Included usage is an approximate amount based on current pricing.\": \"* 所包含的用量是基于当前定价的预估值。\",\n                        \"** GitHub Packages usage is free for public packages. For details on free Actions usage, see\": \"** GitHub 软件包对公共包的使用是免费的。有关 GitHub Actions 免费使用的详细信息，请参阅\",\n                        \"Free use of GitHub Actions\": \"Github Actions 的免费使用\",\n\n            \"Next payment due\": \"下一次应付款\",\n\n            \"Subscriptions\": \"订阅\",\n                \"Manage subscriptions\": \"管理订阅\",\n                \"per\": \"/\",\n                \"month\": \"月\",\n\n            \"Metered usage\": \"计费用量\",\n                \"Usage by products\": \"按产品分类\", // 省略重复内容\n                // 时间段，这部分走正则\n                    \"Today\": \"今天\",\n                    \"Current month\": \"这个月\",\n                    \"Last month\": \"上个月\",\n                    // 后 2 项正则\n\n                    \"Billable usage\": \"计费\",\n                        // 操作\n                        \"consumed usage\": \"使用\",\n                        \"discounts\": \"减免\",\n\n                        \"Billable spend for Actions and Actions Runners for the selected timeframe. Applicable discounts cover Actions usage in public repositories and included usage for Actions minutes and storage.\": \"在所选时间范围内，Actions 和 Actions 运行器的可计费支出。适用的折扣涵盖公共仓库中的 Actions 使用，以及包含的 Actions 分钟数和存储用量。\",\n                        \"Billable spend for Codespaces for the selected timeframe.\": \"所选时间范围内代码空间的可计费支出。\",\n                        \"Billable spend for Git LFS for the selected timeframe. Applicable discounts cover included usage for Git LFS bandwidth and storage.\": \"所选时间范围内 Git LFS 的可计费支出。适用的折扣涵盖 Git LFS 带宽和存储的包含用量。\",\n                        \"Billable spend for Packages for the selected timeframe. Applicable discounts cover Packages usage in public repositories and included usage for Packages data transfer and storage.\": \"所选时间范围内软件包的可计费支出。适用的折扣涵盖公共仓库中的软件包使用，以及包含的软件包数据传输和存储用量。\",\n                    \"Included usage\": \"包含\",\n                        \"Manage budgets\": \"管理预算\",\n                        \"Actions minutes\": \"操作分钟数\",\n                        \"Git LFS bandwidth\": \"Git LFS 带宽\",\n                        \"Git LFS storage\": \"Git LFS 存储\",\n                        \"Packages data transfer\": \"软件包数据传输\",\n                        \"Packages storage\": \"软件包存储\",\n                        \"Included usage limits reset in\": \"将重置于\",\n                        \"days\": \"天内\",\n                        \"day\": \"天内\",\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"DateTime\": \"日期时间\",\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n                \"All usage\": \"全部\",\n                    // 某单位\n                    \"Gross:\": \"总计：\",\n                    \"Billed:\": \"计费：\",\n                    \"Discount:\": \"优惠：\",\n                \"Usage by repository\": \"按仓库统计\",\n                    \"Top three repositories today\": \"今日排名前三的仓库\",\n                    \"Top two repositories this month\": \"本月排名前二的仓库\",\n                    \"Top three repositories this month\": \"本月排名前三的仓库\",\n                    \"Top four repositories last month\": \"上月排名前四的仓库\",\n                    \"Top four repositories this year\": \"今年排名前四的仓库\",\n                    \"Top four repositories this month\": \"上年排名前四的仓库\",\n\n                    \"View all\": \"查看所有\",\n                    \"usage\": \"用量\",\n                    \"Gross amount\": \"总计\",\n                    \"All other repositories\": \"其他\",\n\n                \"No usage found\": \"无数据\",\n\n                // 底下计算部分\n                    \"View details\": \"详情\",\n                    \"consumed usage -\": \"计费 -\",\n                    \"in discounts =\": \"折扣 =\",\n                    \"in billable usage\": \"计费\",\n                    \"Usage for Actions and Actions Runners.\": \"操作（运行器）用量。\", // 后半句走正则\n                    \"Copilot usage\": \"Copilot 用量\",\n                        \"Total spend on Copilot for the selected timeframe, excluding applicable discounts.\": \"所选时间段内 Copilot 的总支出，不含适用折扣。\",\n                    \"Billable licenses\": \"计费许可数\",\n                        \"Billable licenses info\": \"计费许可信息\",\n                            \"If a user stops consuming a license within the month, the adjustment will be reflected in your next month's bill.\": \"如果用户在当月停止使用许可，相关调整将体现在您下个月的账单中。\",\n                            \"Billable licenses are only available for the 'Current month' timeframe.\": \"计费许可仅适用于“当前月”时间段。\",\n                            \"Learn more about billable licenses\": \"了解更多关于可计费许可证的信息\",\n                        \"Showing total unique licenses billed for your enterprise. Actual billed amount for each license is prorated based on when it is added during the billing cycle.\": \"显示您企业所计费的唯一许可证总数。每个许可证的实际计费金额将根据其在计费周期内添加的时间按比例分摊。\",\n                    \"Copilot premium requests\": \"Copilot 高级请求\",\n                        \"About Copilot premium requests\": \"关于 Copilot 高级请求\",\n                        \"If enabled, additional premium requests beyond the included amount for each license will be billed.\": \"若启用此功能，每个许可证所包含额度之外的额外高级请求将另行计费。\",\n                        \"Manage Copilot policy\": \"管理 Copilot 策略\",\n                    // 模型\n                        \"About GitHub Models rate limits\": \"关于 GitHub 模型速率限制\",\n                            \"GitHub Models rate limits\": \"GitHub 模型速率限制\",\n                                \"The playground and free API usage are rate limited by requests per minute, requests per day, tokens per request, and concurrent requests.\": \"操场和免费 API 的使用受到以下限制：每分钟请求数、每天请求数、每次请求的令牌数以及并发请求数。\",\n                                \"Learn more about GitHub Models rate limits\": \"了解更多\", // 有上下文，故省略\n\n                    // Spark\n                        \"Spark premium requests\": \"Spark 高级请求\",\n\n            // 代码空间超限\n            \"You've used 90% of included services for GitHub Codespaces storage.\": \"您已使用 90% 代码空间存储。\",\n            \"You've used 100% of included services for GitHub Codespaces storage.\": \"您已使用 100% 代码空间存储。\",\n                \"When your allotment is exhausted, you won't be able to use Codespaces until you set up a spending limit or your free Codespaces allotment is reset next month. If you want to access your in progress work from a codespace, you can\": \"当您的额度耗尽后，您将无法使用代码空间，直到您设置支出上限或下月重置您的免费额度。如果您想访问代码空间中正在进行的工作，您可以\",\n                \"export your unpushed work to a branch.\": \"将未推送的工作导出到分支。\",\n                \"To see a full list of your usage, obtain a copy of your\": \"要查看所有使用情况，请获取您的\",\n                \"usage report\": \"使用报告\",\n                \"to see the codespaces and prebuilds created by your account. The usage report is the only place where prebuild usage is visible. If you see charges you'd like to stop going forward, you can delete a\": \"，以查看您的账户创建的代码空间和预构建。使用报告是唯一能显示预构建使用情况的地方。如果您看到希望以后停止的费用，您可以删除一个\",\n                \"codespace\": \"代码空间\",\n                \"delete prebuilds for a repository.\": \"删除某个仓库的预构建。\",\n            \"Update spending limit\": \"更新支出限额\",\n\n        // 使用情况 https://github.com/settings/billing/usage\n            \"Get usage report\": \"获取使用情况报告\",\n                \"Metered billing usage report\": \"计费用量\",\n                    \"Provides a breakdown of all metered usage\": \"提供所有计量使用情况的详细分解\",\n                    // 窗口\n                    \"Select report type:\": \"选择报告类型：\", // 下方小字走正则\n                        \"Summarized\": \"总结\",\n                            \"Metered usage by repository for up to 1 year\": \"每个仓库的计量使用情况，最长可追溯至一年\",\n                        \"Detailed\": \"详细\",\n                            \"Metered usage by username and workflow for up to 31 days\": \"每个用户和工作流的计量使用情况，最长可追溯至 31 天\",\n                        \"Legacy\": \"传统\",\n                            \"Metered usage before the billing transition, until April 04, 2025\": \"计费切换前的计量使用情况，截至2025年4月4日\",\n                    \"Select time frame\": \"选择时间段\",\n                        \"This year\": \"今年\",\n                        \"Custom range\": \"自定义\",\n                            \"Up to 1 year\": \"最长 1 年\",\n                            \"Up to 31 days\": \"最长 31 天\",\n                            \"Choose date...\": \"选择日期…\",\n                                \"Su\": \"日\",\n                                \"Mo\": \"一\",\n                                \"Tu\": \"二\",\n                                \"We\": \"三\",\n                                \"Th\": \"四\",\n                                \"Fr\": \"五\",\n                                \"Sa\": \"六\",\n                    \"Email me the report\": \"发送\",\n                \"Copilot premium requests usage report\": \"Copilot 高级请求\",\n                    \"Provides a per user breakdown of requests exhausted and their monthly quota for the current billing period.\": \"提供每个用户的请求耗尽情况及其当前计费周期的月度配额。\",\n            \"Search or filter usage\": \"搜索或筛选使用情况\",\n\n            //\"Group: None\": \"分组：无\",\n            //\"Group: Product\": \"分组：产品\",\n            //\"Group: SKU\": \"分组：库存单位\",\n            //\"Group: Repository\": \"分组：仓库\",\n                \"None\": \"无\",\n                // \"SKU\": \"库存单位\",\n            \"Metered usage grouped by Product\": \"分组：产品\",\n                \"actions\": \"操作\",\n                \"codespaces\": \"代码空间\",\n\n                \"Products\": \"产品\",\n            \"Metered usage grouped by SKU\": \"分组：库存单位\",\n                \"Actions storage\": \"操作存储\",\n                \"Codespaces storage\": \"代码空间存储\",\n                \"Actions Windows\": \"操作 Windows\",\n                \"Actions Linux\": \"操作 Linux\",\n                \"Actions macOS 3-core\": \"操作 macOS 三核\",\n                \"Codespaces compute 2-core\": \"代码空间 - 双核\",\n                \"Copilot Premium Request\": \"Copilot 高级请求\",\n            \"Metered usage grouped by Repository\": \"分组：仓库\",\n                \"All other\": \"其他\",\n\n            \"For license-based products, the price/unit is a prorated portion of the monthly price.\": \"对于基于许可证的产品，每单位价格为月度价格按比例分摊的部分。\",\n\n            // 有上下文，后面重复部分直接省略\n            \"Actions usage\": \"操作\",\n            \"Actions usage grouped by SKU\": \"操作 - 详细\",\n            \"Copilot usage\": \"Copilot\",\n            \"Copilot usage grouped by SKU\": \"Copilot - 详细\",\n            \"Codespaces usage\": \"代码空间\",\n            \"Codespaces usage grouped by SKU\": \"代码空间 - 详细\",\n            \"Git_lfs usage\": \"Git LFS\",\n            \"Git_lfs usage grouped by SKU\": \"Git LFS - 详细\",\n            \"Packages usage\": \"软件包\",\n            \"Packages usage grouped by SKU\": \"软件包 - 详细\",\n\n            \"Usage breakdown\": \"用量分析\",\n                \"Date\": \"日期\",\n                \"SKUs\": \"库存单位\",\n                \"Products\": \"产品\",\n                \"Repositories\": \"仓库\",\n                \"Units\": \"单位\",\n                \"Price/unit\": \"单价\",\n                \"Billed amount\": \"计费\",\n\n        // 高级请求分析 https://github.com/settings/billing/premium_requests_usage\n            \"Usage analytics for premium requests in your personal account.\": \"在您的个人账户中针对高级请求的使用分析。\",\n\n            \"Billed premium requests\": \"计费高级请求\",\n                \"Increase your budget\": \"提高您的预算\",\n                    \"to use premium requests beyond your included request limit.\": \"以便在超出包含请求额度后继续使用。\",\n\n            \"Included premium requests consumed\": \"包含高级请求\",\n                \"included\": \" \", // 多余原文，直接删除\n                \"Premium requests included in your\": \"高级请求包含在您的\",\n                    \"Copilot plan\": \"Copilot 计划中\",\n                    // 后续走正则\n\n            // 用量分析\n                \"Model\": \"模型\",\n                    \"Included requests\": \"包含请求\",\n                    \"Billed requests\": \"计费请求\",\n                    \"Code Review model\": \"代码审查模型\",\n                    \"Coding Agent model\": \"编程智能体模型\",\n\n            // 获取使用情况报告\n                \"Premium requests usage report\": \"高级请求使用报告\",\n                    \"Detailed per-user breakdown of premium requests consumed.\": \"详细列出每位用户消耗的高级请求数量。\",\n                \"Legacy usage report\": \"旧版使用报告\",\n\n        // 预算和警报 https://github.com/settings/billing/budgets\n           \"Account budgets\": \"账户预算\",\n                \"New budget\": \"新建\",\n                // \"On\": \"开\",\n                // \"Off\": \"关\",\n                \"Stop usage\": \"停止使用\",\n                \"Yes\": \"是\",\n                \"spent\": \"支出\",\n                \"budget\": \"预算\",\n            \"Budgets let you set monthly usage limits for specific GitHub products or SKUs. If no budget is set, usage for that product is unlimited.\":\"预算允许您为特定的 GitHub 产品或 SKU 设置每月使用限制。如果未设置预算，该产品的使用量将不受限制。\",\n            \"Product\":\"产品类型\",\n\n        // 新建/更新预算 https://github.com/settings/billing/budgets/new\n        // https://github.com/settings/billing/budgets/<id>/edit\n            // 提醒栏\n                \"Info\": \"信息\",\n                \"SKU level budgets are only available for products that have > 1 SKU.\": \"只有拥有大于 1个 SKU 的产品才有 SKU 级别的预算。\",\n\n            \"Budgets and Alerts\": \"预算和警报\",\n            \"New monthly budget\": \"新建月度预算\",\n            \"Edit monthly budget\": \"编辑每月预算\", // edit\n                \"Create a budget to track spending for a selected product and scope.\": \"创建预算以跟踪选定产品和范围的支出。\",\n            // 缺失支付方式\n                \"Payment method is missing\":\"支付方式缺失\",\n                \"Please set up a valid payment method before creating or adjusting your budget.\": \"请在创建或调整预算前设置有效的付款方式。\",\n                \"Add payment method\":\"添加支付方式\",\n\n            \"Budget type\": \"预算类型\",\n                \"Set budget for either a product or individual SKU within a product.\": \"为产品或产品中的单个 SKU 设置预算。\",\n                \"Product-level budget\": \"产品级预算\",\n                    \"Codespaces\": \"代码空间\",\n                    \"Actions\": \"操作\",\n                    \"Models\": \"模型\",\n                        \"Enable billing to set a budget. See\": \"启用计费以设置预算。查看\",\n                        \"Models policy configuration\": \"模型策略配置\",\n                    \"Packages\": \"软件包\",\n                    \"Select 1 product\": \"选择产品\",\n                \"SKU-level budget\": \"SKU 级预算\",\n                    \"Select\": \"选择\",\n                    \"Select an item\": \"选择项目\",\n\n            \"Next: Configure budget\": \"下一步：配置预算\",\n\n            \"All Premium Request SKUs\":\"所有高级请求 SKU\",\n            \"A budget for all SKUs that consume premium requests\":\"所有消耗高级请求的 SKU 的预算\",\n            \"Supported SKUs:\":\"支持的 SKUs：\",\n                \"Coding Agent premium requests\":\"Coding Agent 高级请求\",\n\n            \"Budget scope\": \"预算范围\",\n                \"Select the scope of spending for this budget.\": \"选择此预算的支出范围。\",\n                // 仓库\n                    \"Scoped budgets track spending for a single repository\": \"范围预算跟踪单个仓库的支出\",\n\n                        \"Select repository\": \"选择仓库\",\n                        \"Select the\": \"选择\",\n                        \"to include in this\": \"包含在此\",\n                        \". You can only add/remove the\": \"您只能添加/删除您可以访问的\",\n                        \"that you have access to.\": \"。\",\n                        \"Search repository\": \"搜索仓库\",\n                        \"Showing\": \"显示\",\n                        \"of\": \"/\",\n                        // [/(\\d+) selected/, \"$1 个选定\"],\n                // 账户\n                    \"Scoped budgets track spending for all repositories owned by your account\": \"范围预算跟踪您账户下所有仓库的支出\",\n                    \"Scoped budgets track all spending for your account\": \"范围预算跟踪您账户的所有支出\",\n\n            \"Budget\": \"预算\",\n                \"Set a budget amount to track your spending on a monthly basis.\": \"设置预算金额以按月跟踪您的支出。\",\n                \"Usage before budget creation isn't counted in the current billing cycle.\": \"预算创建前的使用情况不会计入当前计费周期。\",\n                \"Budget amount\": \"预算金额\",\n                    \"Stop usage when budget limit is reached\": \"达到预算上限时停止使用\",\n                        \"Spending won't exceed your set budget\": \"支出不会超出您设定的预算\",\n\n            // 警示\n                \"Get emails and GitHub notifications when your spending has reached 75%, 90%, and 100% of the budget threshold.\": \"当您的支出达到预算阈值的 75%、90% 和 100% 时，接收电子邮件和 GitHub 通知。\",\n                \"Receive emails when usage reaches 75%, 90%, and 100% of the budget amount.\":\"当您的支出达到预算阈值的 75%、90% 和 100% 时，接收电子邮件通知。\",\n\n                \"Receive budget threshold alerts\": \"接收预算阈值警报\",\n\n            \"Create budget\": \"创建预算\",\n            \"Update budget\": \"更新预算\", // edit\n\n            // 左下角提示\n                \"Please add a payment method to use budgets.\": \"请添加付款方式，以便使用预算。\",\n\n        // 许可 https://github.com/settings/billing/licensing\n            // Github Copllot\n                \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                    \"You are eligible to use GitHub Copilot for free.\": \"您有资格免费使用 GitHub Copilot。\",\n\n            \"Current plan\": \"当前计划\",\n                \"Compare all plans\": \"比较所有计划\",\n                    \"per month\": \"每月\",\n\n                \"GitHub Free\": \"GitHub 免费版\",\n                \"The basics for all developers\": \"基础计划（所有开发者）\",\n                //\"GitHub Pro\": \"GitHub 专业\",\n\n                \"The basics for organizations and developers\": \"组织和开发者的基本计划\", // 组织设置\n                \"Unlimited public/private repos\": \"无限的公共/私有仓库\",\n                \"Unlimited collaborators\": \"无限协作者\",\n                \"2,000 Actions minutes/month\": \"每月 2,000 分钟 GitHub Actions\",\n                \"500MB of Packages storage\": \"500MB 的 GitHub Packages 存储空间\",\n                \"120 core-hours of Codespaces compute per developer\": \"每位开发者拥有 120 个核心小时的代码空间计算能力\",\n                \"15GB of Codespaces storage per developer\": \"每位开发者拥有 15GB 的代码空间存储空间\",\n                \"Community support\": \"社区支持\",\n                // pro\n                    \"Downgrade to Free\": \"降级至免费版\",\n                \"3,000 Actions minutes/month\": \"每月 3,000 分钟 GitHub Actions\",\n                \"2GB of Packages storage\": \"2GB 的 GitHub Packages 存储空间\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小时的代码空间计算时长\",\n                \"20GB of Codespaces storage\": \"20GB 的代码空间存储空间\",\n                \"Code owners, required reviewers, GitHub Pages,\": \"代码所有者、所需审核者、GitHub Pages，\",\n                \"and more\": \"以及更多\",\n                \"advanced tools\": \"高级工具\",\n\n                \"Not included:\": \"不包含：\",\n                \"Free Codespaces usage per organization\": \"每个组织的免费代码空间使用量\",\n                \"Protected branches on all repos\": \"所有仓库上的受保护分支\",\n                \"Increase Codespaces\": \"提高代码空间\",\n                \"spend limits\": \"消费限额\",\n                \"Multiple reviewers in pull requests\": \"拉取请求中多个审查者\",\n                \"Required status checks\": \"状态检查\",\n                \"Code owners\": \"代码所有者\",\n                \"Required reviewers\": \"所需的审查者\",\n                \"Pages for static website hosting\": \"静态网站页面托管\",\n                \"Web-based support\": \"基于网络的支持\",\n                \"See all features and compare plans\": \"查看所有功能并比较计划\",\n\n            \"Active subscription\": \"当前订阅\",\n                \"Copilot Free\": \"Copilot 免费版\",\n                    \"Upgrade Copilot\": \"升级 Copilot\",\n                    \"You can upgrade to Copilot Pro at any time. Check out this\": \"您可以随时升级至 Copilot 专业版。详情查看\",\n                        \"documentation\": \"文档\",\n                        \"for more details.\": \"。\",\n\n            \"Current GitHub base plan\": \"当前 GitHub 基础计划\",\n                \"Compare base plans\": \"比较基础计划\",\n                \"Upgrade to GitHub Pro\": \"升级至 GitHub 专业版\",\n                // 有付费计划\n                    \"Switch to yearly billing\": \"切换至年度计费\",\n                    \"Switch to monthly billing\": \"切换至月度计费\",\n\n            \"Current Copilot plan\": \"当前 Copilot 计划\",\n                \"Monthly payment\": \"每月支付\",\n                \"Next payment\": \"下次支付\",\n                \"You can upgrade your subscription to yearly billing or cancel any time.\" : \"您可以随时将订阅升级为年度计费或取消订阅。\",\n                \"Read billing documentation\": \"阅读计费文档\",\n\n            \"Compare Copilot plans\": \"比较 Copilot 计划\",\n            \"Upgrade to Copilot Pro+\" : \"升级至 Copilot Pro+\",\n            \"Manage subscription\": \"管理订阅\",\n            \"Switch to annual billing\": \"切换至年度计费\",\n            \"Cancel subscription\": \"取消订阅\",\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Last payment\": \"最后一次支付\",\n                \"You have not made any payments.\": \"您尚未支付任何款项。\",\n\n            \"Coupon\": \"优惠劵\",\n                \"Redeem a coupon\": \"兑换优惠券\",\n                \"You don't have an active coupon.\": \"您没有有效的优惠券。\",\n                \"* Discount only applies for GitHub Pro\": \"* 优惠仅限 GitHub Pro。\",\n\n            \"Additional information\": \"附加信息\",\n                \"Add specific contact or tax information to your receipts, like your full business name, VAT/GST identification number, or address of record here. We’ll make sure it shows up on every receipt.\": \"在您的收据上添加具体的联系方式或税务信息，例如您的企业全称、VAT/GST 识别号码或记录地址。我们将确保它显示在每张收据上。\",\n                \"Add information\": \"添加信息\",\n                \"No additional information added to your receipts.\": \"您的收据上没有添加任何额外的信息。\",\n                \"Extra information\": \"附加信息\",\n\n                // “额外账单信息” 对话框\n                    \"Extra billing information\": \"额外的账单信息\",\n                    \"This information will appear on all your receipts.\": \"此信息将出现在您的所有收据上。\",\n                    \"For your security, do not include any confidential or financial information (like credit card numbers).\": \"为了您的安全，请勿包含任何机密或财务信息（如信用卡号）。\",\n                    \"To update the information that appears on\": \"要更新显示在\",\n                        \"invoices\": \"发票\",\n                        \"(if enabled), visit the\": \"上的信息（如果已启用），请访问\",\n                    \"Full business name or address of record\": \"企业全称或记录地址\",\n                    \"Save contact information\": \"保存联系信息\",\n                    \"Saving contact information…\": \"正在保存联系信息…\",\n                    // 顶部提醒\n                        \"Updated your optional contact information, it will show up on your next receipt.\": \"已更新您的可选联系信息，该信息将显示在您的下一张收据上。\",\n\n            // 组织\n            \"Invoice\": \"发票\",\n                \"Receive an invoice for your GitHub purchases\": \"接收 GitHub 购物发票\",\n\n                \"The data from Billing Information, such as your address and VAT/GST ID will appear on your invoices.\": \"账单信息中的数据，如您的地址和增值税/消费税 ID，将显示在您的发票上。\",\n                \"Update your information displayed on your invoices in the\": \"更新发票上显示信息中的\",\n                \"billing information section\": \"账单信息栏\",\n\n                \"Automatically receive an invoice alongside the payment receipt\": \"在收到付款收据的同时自动接收发票\",\n                    \"* Enables invoices for all NEW payments.\": \"* 为所有新付款启用发票。\",\n                \"Save invoice preference\": \"保存发票首选项\",\n\n            // 组织\n            \"Metered billing via Azure\": \"通过 Azure 计量计费\",\n                \"Add Azure Subscription\": \"添加 Azure 订阅\",\n                \"To manage metered billing for this account through Microsoft Azure an Azure Subscription ID must be added to your account.\": \"通过 Microsoft Azure 管理此账户的计量计费，必须将 Azure 订阅 ID 添加到您的账户中。\",\n\n        // 支付历史 https://github.com/account/billing/history\n            \"Amounts shown in USD\": \"以美元显示的金额\",\n\n        // 其他账单 https://github.com/settings/billing/subscriptions\n            // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除个人账户外，您还可以管理 $1 个组织。\"],\n            \"Manage your organizations\": \"管理您的组织\",\n                \"Create a new organization\": \"创建新组织\",\n\n            \"Start your first organization\": \"开始您的第一个组织\",\n                \"With CI/CD, Dependabot, and the world's largest developer community, GitHub gives your team everything they need to ship better software faster\": \"通过 CI/CD、Dependabot 以及全球最大的开发者社区，GitHub 为您的团队提供了交付更优质软件所需的一切，让开发更高效、更快捷。\",\n                \"Create an organization\": \"创建组织\",\n\n            \"Marketplace apps\": \"市场应用\",\n                \"Change plan\": \"更改计划\",\n                \"Cancel plan\": \"取消计划\",\n                    \"Are you sure you want to cancel this integration?\": \"您确定要取消此集成吗？\",\n                    // 顶部提醒\n                        // [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消对 $1 的订阅。此计划变更将于 $2 生效。\"],\n                        \"Dismiss\": \"忽略\",\n                \"Do you have any questions? Contact\": \"您有任何问题吗？请联系\",\n\n            // 组织设置\n            \"Billing Contacts\": \"账单联系人\",\n                \"Receipts are sent to billing managers and email recipients.\": \"收据会被发送给账单管理员和邮件接收者。\",\n\n                \"Billing managers\": \"账单管理员\",\n                    \"You have not invited any billing managers\": \"您尚未邀请任何账单管理员\",\n                    \"Invite\": \"邀请\",\n\n                \"Email recipients\": \"邮件接收者\",\n                    \"Add\": \"添加\",\n                    \"Primary\": \"主账户\",\n\n                    // 编辑账单电子邮箱对话框\n                        \"Edit billing email address\": \"编辑账单电子邮箱\",\n                        \"Billing primary email\": \"账单主账户邮箱\",\n                        \"(Private)\": \"（私密）\",\n\n                    // 添加账单接收者对话框\n                        \"Add billing recipient\": \"添加账单接收者\",\n                        \"Add billing recipient email\": \"添加账单接收者邮箱\",\n\n            \"Sponsorships\": \"赞助\",\n                \"GitHub Sponsors\": \"GitHub 赞助\",\n                    \"Connect with the community that builds the tools you use\": \"与构建您使用的工具的社区联系\",\n                    \"Start sponsoring\": \"开始赞助\",\n                    \"You're currently not sponsoring anyone.\": \"您目前没有赞助任何人。\",\n                    \"Learn more about GitHub Sponsors\": \"了解更多关于 GitHub 赞助的信息\",\n                    \"Switch to invoiced billing\": \"切换到发票账单\", // 组织\n\n        // 比较计划 https://github.com/account/billing/plans\n            \"Compare plans\": \"比较计划\",\n            \"Free\": \"免费版\",\n                \"All the basics\": \"所有基础\",\n            \"Pro\": \"专业版\",\n                \"Advanced tools for private repos\": \"用于私人仓库的高级工具\",\n            // 具体内容\n                \"Code management\": \"代码管理\",\n                    \"Public repositories\": \"公共仓库\",\n                        \"Host open source projects in public GitHub repositories, accessible via web or command line. Public repositories are accessible to anyone at GitHub.com.\": \"在 GitHub 公共仓库中托管开源项目，可通过网络或命令行访问。任何人都可以访问 GitHub.com 上的公共仓库。\",\n                    \"Private repositories\": \"私有仓库\",\n                        \"Host code in private GitHub repositories, accessible via appliance, web, and command line. Private repositories are only accessible to you and people you share them with.\": \"在私有 GitHub 仓库中托管代码，可通过设备、网络和命令行访问。只有您和与您共享的人才能访问私有仓库。\",\n\n                \"Code workflow\": \"代码工作流\",\n                    \"GitHub Codespaces\": \"GitHub 代码空间\",\n                        \"Spin up fully configured dev environments in the cloud with the power of your favorite editor. A \\\"core hour\\\" denotes compute usage. On a 2-core machine, you would get 60 hours free. On a 4-core machine, you would get 30 hours free, etc. Free hours are assigned to personal accounts, rather than free organizations.\": \"利用您喜爱的编辑器的强大功能，在云中快速配置完整的开发环境。“核心小时” 表示计算使用量。在双核机器上，您将获得 60 小时的免费时长。在 4 核机器上，您将获得 30 小时的免费时长，以此类推。免费时长数分配给个人账户，而不是免费组织。\",\n                    \"GitHub Actions\": \"Github 操作\",\n                        \"Use execution minutes with GitHub Actions to automate your software development workflows. Write tasks and combine them to build, test, and deploy any code project on GitHub. Minutes are free for public repositories.\": \"利用 GitHub Actions 的几分钟执行时间，实现软件开发工作流程自动化。编写任务并组合它们，即可在 GitHub 上构建、测试和部署任何代码项目。对于公共仓库，执行时间是免费的。\",\n                        \"Learn more about billing\": \"了解更多关于账单的信息\",\n                    \"GitHub Packages\": \"Github 软件包\",\n                        \"Host your own software packages or use them as dependencies in other projects. Both private and public hosting available. Packages are free for public repositories.\": \"托管您的软件包，或将其用作其他项目的依赖项。提供私有和公共托管。对于公共仓库，软件包是免费的。\",\n                    \"Code reviews\": \"代码审查\",\n                        \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"审查新代码，查看可视化的代码更改，并通过自动化状态检查自行地合并代码更改。\",\n                    // 拉取请求\n                        \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允许贡献者轻松通知您他们推送到仓库的更改，访问权限仅限于您指定的贡献者。轻松合并您接受的更改。\",\n                    \"Protected branches\": \"受保护的分支\",\n                    \"Repository rules\":\"仓库规则\",\n                        \"Enforce restrictions on how code branches are merged, including requiring reviews by selected collaborators, or allowing only specific contributors to work on a particular branch.\": \"对代码分支的合并方式实施限制，包括要求由选定的协作者进行审查，或仅允许特定的贡献者在特定分支上工作。\",\n                    // 代码所有者\n                        \"Automatically request reviews – or require approval – by selected contributors when changes are made to sections of code that they own.\": \"当选定的贡献者对其拥有的代码部分进行修改时，自动要求审查或要求批准。\",\n                    \"Draft pull requests\": \"拉取请求草案\",\n                        \"Easily discuss and collaborate on pull requests before submitting to formal review.\": \"在提交正式审查之前，轻松讨论和协作拉取请求。\",\n                    \"Multiple pull request assignees\": \"多个拉取请求受理人\",\n                        \"Assign more than one person to a pull request.\": \"为拉取请求指派多人受理。\",\n                    \"Repository insights\": \"仓库洞察\",\n                        \"See data about activity and contributions within your repositories, including trends. You can use this data to improve collaboration and make development faster and more effective.\": \"查看有关仓库中的活动和贡献数据，包括趋势。您可以利用这些数据来改善协作，使开发更加迅速和有效。\",\n                    // 定时提醒\n                        \"Send scheduled messages to you or your team listing open pull requests.\": \"按计划的向您或您的团队发送信息，列出打开的拉取请求。\",\n                    \"Automatic code review assignment\": \"自动代码审查分配\",\n                        \"Automatically assign code reviews to members of your team based on one of two algorithms.\": \"根据两种算法之一，自动为团队成员分配代码审查。\",\n                    \"Environment protection rules\": \"环境保护规则\",\n                        \"When a workflow job references an environment, the job won't start until all of the environment's protection rules pass.\": \"当工作流作业引用环境时，只有环境的所有保护规则都通过后，作业才会启动。\",\n                    \"Environment deployment branches and secrets\": \"环境部署分支和机密\",\n                        \"A job cannot access secrets that are defined in an environment unless it is running on the specified branch.\": \"除非作业在指定的分支上运行，否则无法访问环境中定义的机密。\",\n\n                \"Collaboration\": \"协作\",\n                    \"Collaborators for public repositories\": \"公共仓库协作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a public repository you control – including making changes and opening issues.\": \"邀请任何 GitHub 成员或所有 GitHub 成员，在您控制的公共仓库上与您共同处理代码，包括进行更改和提出议题。\",\n                    \"Collaborators for private repositories\": \"私有仓库协作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a private repository you control – including making changes and opening issues.\": \"邀请任何 GitHub 成员或所有 GitHub 成员，在您控制的私有仓库上与您共同处理代码，包括进行更改和提出议题。\",\n                    // 议题\n                        \"Track bugs, enhancements, and other requests, prioritize work, and communicate with stakeholders as changes are proposed and merged.\": \"跟踪漏洞、增强功能和其他请求，确定工作的优先级，并在提出和合并变更时与利益相关者沟通。\",\n                    // 项目\n                        \"Visualize and manage issues and pull requests across tables, boards, and roadmaps with custom fields and views that you can arrange to suit your workflow.\": \"通过自定义字段和视图，在表格、面板和路线图上可视化管理议题和拉取请求，以适应您的工作流程。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Track progress on groups of issues or pull requests in a repository, and map groups to overall project goals.\": \"跟踪仓库中议题或拉取请求组的进展，并将组映射到整体项目目标。\",\n                    // 团队讨论\n                    \"Team discussions\": \"团队讨论\",\n                        \"Discuss any topic, unattached to a specific project or issue. Control who has access, notify discussion participants with updates, and link from anywhere.\": \"讨论任何主题，不与特定项目或议题相关。控制访问权限，通知讨论参与者最新情况，并从任何地方进行链接。\",\n                    \"Organization and team management\": \"组织和团队管理\",\n                        \"Manage access to projects on a team-by-team, or individual user, basis.\": \"以团队或个人用户为基础管理对项目的访问。\",\n                    \"Pages and wikis\": \"GitHub Pages 和 Wiki\",\n                        \"Host documentation and simple websites for your project in a wiki format that contributors can easily edit either on the web or command line.\": \"以 Wiki 格式为您的项目托管文档和简单网站，贡献者可以轻松在网络或命令行上进行编辑。\",\n                    \"Multiple issue assignees\": \"多个议题受理人\",\n                        \"Assign more than one person to an issue.\": \"为议题指派多人受理\",\n                    \"GitHub organizations give you team-based access control and discussions.\": \"GitHub 组织为您提供基于团队的访问控制和讨论。\",\n                        \"Learn more about organizations\": \"了解更多关于组织的信息\",\n\n                \"Platform security and compliance\": \"平台安全性与合规性\",\n                    \"Repository rulesets\": \"仓库规则集\",\n                        \"Enforce consistent code standards, security, and compliance across branches and tags.\": \"跨仓库分支和标签，一致的代码标准、安全性和合规性。\",\n                    // SBOMs\n                        \"Export a software bill of materials (SBOM) for your repository.\": \"为仓库导出软件物料清单 (SBOM)。\",\n                    \"Artifact attestations\": \"附件证明\",\n                        \"Ensure unfalsifiable provenance and integrity for your software.\": \"确保软件的不可篡改性和完整性。\",\n                    \"GitHub Security Advisories\": \"GitHub 安全公告\",\n                    \"Role-based access control\": \"基于角色的访问控制\",\n                        \"Define users' level of access to your code, data and settings.\": \"定义用户访问代码、数据和设置的级别。\",\n                    \"Required 2FA\": \"双因素身份验证（2FA）\",\n                        \"Use an extra layer of security with two factor authentication (2FA) when logging into GitHub.\": \"登录 GitHub 时，使用双因素身份验证（2FA）作为额外的安全层。\",\n                    // 审计日志\n                        \"Quickly review the actions performed by members of your organization.\": \"快速审查组织成员执行的操作。\",\n                    \"Enterprises can connect to advanced systems like LDAP and SAML single sign-on (SSO).\": \"企业可以连接到如 LDAP 和 SAML 单一登录 (SSO) 等高级系统。\",\n                        \"Learn more about GitHub Enterprise\": \"了解更多关于 GitHub 企业版的信息。\",\n\n                \"Marketplace and integrations\": \"市场和集成\",\n                    // Github应用\n                        \"Install apps that integrate directly with GitHub's API to improve development workflows – or build your own for private use or publication in the GitHub Marketplace.\": \"安装直接与 GitHub API 集成的应用，改进开发工作流程，或创建自己的应用，供个人使用或在 GitHub 市场发布。\",\n                    \"Status checks\": \"状态检查\",\n                        \"Define tests that GitHub automatically runs against code being committed to your repository, and get details about failures and what is causing them.\": \"定义 GitHub 针对提交到仓库的代码自动运行的测试，并获取有关失败和失败原因的详细信息。\",\n                    \"Enterprise Server customers create pre-receive hooks to automatically accept or reject a push.\": \"企业服务器客户创建预接收挂钩，以自动接受或拒绝推送。\",\n                        \"Learn more about pre-receive hooks\": \"了解更多关于预接收挂钩的信息。\",\n\n                \"Support and deployment\": \"支持与部署\",\n                    \"Community Support\": \"社区支持\",\n                        \"Get help with most of your GitHub questions and issues in our Community Forum.\": \"在我们的社区论坛中，获取大多数有关 GitHub 问题和议题的帮助。\",\n                    \"Standard Support\": \"标准支持\",\n                        \"GitHub Support can help you troubleshoot issues you run into while using GitHub. Get support via the web.\": \"GitHub 支持可帮助您解决使用 GitHub 时遇到的问题。通过网络获取支持。\",\n                    \"Enterprises also get Premium Support, invoice billing, and self-hosted deployment.\": \"企业还可以获得高级支持、发票计费和自托管部署。\",\n                       // \"Learn more about GitHub Enterprise\": \"了解更多关于 GitHub 企业版的信息。\",\n\n                // 表格中内容\n                    \"per user/month\": \"每人/月\",\n                    \"Upgrade to Pro\": \"升级到专业版\",\n                    \"Unlimited\": \"无限\",\n                    \"$0 spend limit\": \"$0 支出限额\",\n                        \"With policies and controls\": \"带策略及限制\",\n                    \"180 core-hours compute/month and 20GB storage\": \"每月 180 个核心小时计算和 20GB 存储\",\n                    \"2,000 minutes/month\": \"2000 分钟/月\",\n                        \"Free for public repositories\": \"免费用于公共仓库\",\n                    \"3,000 minutes/month\": \"3,000 分钟/月\",\n                    \"Public repositories\": \"公共仓库\",\n\n        // 组织设置 邀请账单管理员 '/organizations/<org-login>/billing_managers/new'\n            \"Billing\": \"账单\",\n            \"/ Add a billing manager\": \"/ 添加账单管理员\",\n            \"A\": \" \",\n            \"billing manager\": \"账单管理员\",\n            \"is a user who manages the billing settings of your organization.\": \"是管理您组织的账单设置的用户。\",\n            \"will\": \"会\",\n            \"will not\": \"不会\",\n            \"have the ability to:\": \"具备以下能力：\",\n                \"Change the billing plan\": \"更改账单计划\",\n                \"Add, update, or remove payment methods\": \"添加、更新或删除支付方式\",\n                \"View payment history\": \"查看支付记录\",\n                \"Download, and receive receipts\": \"下载并接收收据\",\n                \"View a list of billing managers\": \"查看账单管理员列表\",\n                \"Invite additional billing managers\": \"邀请其他账单管理员\",\n                \"Remove other existing billing managers\": \"移除其他现有的账单管理员\",\n                \"Start, modify, or cancel sponsorships\": \"开始、修改或取消赞助\",\n            \"be able to:\": \"能够：\",\n                \"Create or access repositories in your organization\": \"在您的组织中创建或访问仓库\",\n                \"See private members of your organization\": \"查看您组织的私人成员\",\n                \"Be seen in the list of organization members\": \"在组织成员列表中可见\",\n                \"Use the organization’s payment method\": \"使用组织的支付方式\",\n                \"Enable or manage Copilot\": \"启用或管理 GitHub Copilot\",\n                \"Purchase, edit, or cancel Marketplace subscriptions\": \"购买、编辑或取消市场订阅\",\n\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n            \"Send invitation\": \"发送邀请\",\n\n            // 加载\n            \"Loading Actions data...\": \"加载操作数据…\",\n            \"Loading Packages data...\": \"加载软件包数据…\",\n            \"Loading Shared Storage data...\": \"加载共享存储数据…\",\n            \"Loading Codespaces data...\": \"加载代码空间数据…\",\n            \"Loading usage breakdown…\": \"正在加载使用明细…\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // 高级请求分析（词条打架调整位置） https://github.com/settings/billing/premium_requests_usage\n        [/. Monthly limit resets in (\\d+) days? on (.+)./, \"。将在 $1 天后（$2）重置。\"],\n        [/Usage for (.+) - (.+). Price per premium request is \\$0.04./, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}用量。高级请求价格为 $0.04 / 个。`;\n        }],\n        [/Per-user breakdown of premium requests in the last 45 days. Sunsetting(.*)\\./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `过去 45 天内每用户高级请求明细。${translatedDate} 日落`;\n        }],\n\n        // billing 概况页面\n        [/(?:Gross metered usage|Included usage discounts) for (.+) - (.+).$/, (match, p1, p2) => { // 概况下方小字，过于啰嗦直接省略\n            //const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n            //const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}`;\n        }],\n        //[/Included usage discounts for (.+) - (.+)./, (match, p1, p2) => {\n        //    const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n        //    const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n        //    return `${translatedP1}-${translatedP2}`;\n        //}],\n        [/([\\d,]+) min used \\/ ([\\d,]+) min included/, \"$1 / $2 分钟\"],\n        //(\\d+) min used \\/ ([\\d,+]) min included\n        [/(\\d+) GB used \\/ (\\d+) GB included/, \"$1/$2 GB\"],\n        // 当前包含用量 - 详情 对话框\n            [/Current usage for (.+) - (.+). Monthly quota resets in (\\d+) day\\(s\\)./, (match, p1, p2, p3) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n                return `统计时间段：${translatedP1}-${translatedP2}。本月配额将在${p3}天内重置。`;\n            }],\n            [/([\\d,+]) included Actions minutes \\(~(\\$\\d+\\.\\d+) off\\*\\)/, \"$1 操作分钟数（~$2 减免*）\"],\n            [/~(\\$\\d+\\.\\d+) off\\*/, \"~$1 减免*\"],\n            [/~(\\$\\d+(\\.\\d+)?) off/, \"~$1 减免\"],\n\n            [/([\\d,+]) included Actions minutes/, \"$1 操作分钟数\"],\n            [/(\\d+) GB included Actions storage/, \"$1 GB 操作存储\"],\n            [/(\\d+) GB included Git LFS bandwidth/, \"$1 GB Git LFS 带宽\"],\n            [/(\\d+) GB included Git LFS storage/, \"$1 GB Git LFS 存储\"],\n            [/(\\d+) GB included Packages data transfer/, \"$1 GB 软件包数据传输\"],\n            [/(\\d+) GB included Packages storage/, \"$1 GB 软件包存储\"],\n            [/Discount for usage in public repositories \\((\\d+%) off\\)/, \"公共仓库使用折扣（$1 减免）\"],\n            [/(\\d+) GB included Codespaces storage/, \"$1 GB 代码空间存储\"],\n            [/(\\d+) included Codespaces core hours/, \"$1 代码空间核心小时数\"],\n            [/(\\d+) requests/, \"$1 请求\"],\n            [/Cost calculated based on (\\d+) Spark premium requests? that exceed the premium request usage included with your Copilot licenses./, \"根据您的 Copilot 许可证中包含的高级请求使用量，计算出 $1 个超出部分的 Spark 高级请求费用。\"],\n\n        // 计费用量 - 右上角时间选项\n            [/^Timeframe: (Today|Current month|Last month|This year \\((\\d+)\\)|Last year \\((\\d+)\\))$/, (match, p1, p2, p3) => {\n                switch (p1) {\n                  case 'Today':\n                    return '时间段：今天';\n                  case 'Current month':\n                    return '时间段：本月';\n                  case 'Last month':\n                    return '时间段：上个月';\n                  case `This year (${p2})`:\n                    return `时间段：今年（${p2}）`;\n                  case `Last year (${p3})`:\n                    return `时间段：去年（${p3}）`;\n                  default:\n                    return match;\n                }\n            }],\n            //Timeframe: Current month\n            [/This year \\((\\d+)\\)/, \"今年（$1）\"],\n            [/Last year \\((\\d+)\\)/, \"去年（$1）\"],\n        // 计费用量 - 今天 日期标题\n            [/(.+) \\(All times in UTC\\)/, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}（UTC时间）`;\n            }],\n        // 计费用量图表 数据卡\n            [/(Usage|codespaces|actions|Codespaces storage|Codespaces compute 2-core|Actions Windows|Actions macOS 3-core|Actions Linux|Actions storage|All other) (?:[^ ]+), (.+)/, (match, s1, p1) => {\n                //const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p1] || p1;\n                //const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"][p2] || p2;\n                var s1Key = {'Usage': '用量','actions': '操作', 'codespaces': '代码空间', 'Codespaces storage': '代码空间存储', 'Codespaces compute 2-core': '代码空间 - 双核','Actions Windows': '操作 Windows', 'Actions Linux': '操作 Linux','Actions macOS 3-core': '操作 macOS 三核','Actions storage': \"操作存储\",'All other': '其他'};\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}` + s1Key[s1];// 星期几暂时省略\n            }],\n        // 计费用量 - 今天 X轴\n            [/(\\d+)(AM|PM)/, (match, p1, p2) => {\n                // 运行规则：非12AM照搬，PM数字加12，12AM=0\n                let hour = parseInt(p1, 10);\n                if (p2 === \"PM\" && hour !== 12) {\n                    hour += 12;\n                } else if (p2 === \"AM\" && hour === 12) {\n                    hour = 0;\n                }\n                return `${hour}:00`;\n            }],\n\n        // 计费用量 - 按仓库统计\n            [/Top (three|four|five) repositories (today|this month|last month|this year|)/, function(all , num, time) {\n                var numKey = {\"three\": \"三\", \"four\": \"四\", \"five\": \"五\"}\n                var timeKey = {\"today\": \"今天\",\"this month\": \"这个月\",\"last month\": \"上个月\",\"this year\": \"今年\",\"last year\": \"去年\"};\n                return timeKey[time] + \"排名前\" + numKey[num] + \"的仓库\";\n            }],\n\n        // 计费用量 - 底下计算部分\n            [/Cost calculated based on additional (\\d+) premium requests?/, \"费用计算基于额外的 $1 高级请求\"],\n            [/Cost calculated based on additional (\\d+) premium requests for Copilot and Spark./, \"费用计算基于 Copilot 和 Spark 的 $1 项额外高级请求。\"],\n            [/Cost calculated based on additional (\\d+) token units/, \"费用根据额外的 $1 项令牌单位计算\"],\n\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro yearly plan./, \"计划变更成功。@$1 已更新为专业版年度计费。\"],\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro monthly plan./, \"计划变更成功。@$1 已更新为专业版月度计费。\"],\n        // [/We're preparing your report! We’ll send an email to ([^@]+@[^\\n]+) when it’s ready./, \"我们正在准备您的报告！完成后，我们将发送电子邮件至 $1。\"], //顶部提醒\n        // [/Included minutes quota resets? in (\\d+) days?./, \"包含的分钟配额将在 $1 天之内重置\"],\n        // [/Data transfer quota resets? in (\\d+) days?./, \"数据传输配额将在 $1 天之内重置\"],\n        // //[/Included minutes quota resets/, \"\"],\n        // [/Included quotas resets? in (\\d+) days?./, \"包含的配额将在 $1 天之内重置\"],\n        // [/Bandwidth quota resets? in (\\d+) days?./, \"带宽使用配额将在 $1 天之内重置\"],\n        // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除了您的个人账户之外，您还管理 $1 个组织。\"],\n        // [/Leaving it at (\\$\\d+\\.\\d{2}) will avoid any extra expenses/, \"将其限制在 $1 美元将避免任何额外的费用。\"],\n        // [/isn’t a GitHub member/, \"不是 GitHub 成员\"], // 组织设置\n        // [/of ([\\d,]+\\.\\d{2}) min included/, \"/ $1 分钟\"],\n        // [/(?:GB )?of ([^ ]+) GB(?: included)?/, \"/ $1 GB\"],\n        // //[/of ([^ ]+) GB( included)?/, \"/ $1 GB\"],\n        // [/of (\\d+\\.\\d{2}) included core hours used/, \"/ $1 核心小时数\"],\n        // [/of (\\d+\\.\\d{2}) included GB-month used/, \"/ $1 GB/每月\"],\n        // [/Last (\\d+) days/, \"最近 $1 天\"],\n        // [/Included minutes quota only applies to Ubuntu 2-core, Windows 2-core and macOS 3-core runners\\. Windows 2-core and macOS 3-core runners consume included minutes at higher rates\\. Your (\\d+\\.\\d+) included minutes used consists of (.*)/, \"包含的分钟配额仅适用于双核 Ubuntu、双核 Windows 和三核 macOS 运行器。双核 Windows 和三核 macOS 运行器以更高的速度消耗包括的分钟数。您已使用的 $1 分钟包含分钟数由 $2 组成。\"],\n        // [/(\\$\\d+\\.\\d{2})\\/month/, \"$1/月\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ month/, \"-$1/月\"],\n        // [/(\\$\\d+\\.\\d{2})\\/year/, \"$1/年\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ year/, \"-$1/年\"],\n        // [/(Due by|On|Expires) (.+)/, (match, opt, p1) => {\n        //     var optKey = {\"Due by\": \"结算\", \"On\": \"开始\", \"Expires\": \"到期\"};\n        //     const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n        //     const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n        //     return `${translatedDate}` + optKey[opt];\n        // }],\n\n        // 计费用量 https://github.com/settings/billing/usage + 高级请求分析 https://github.com/settings/billing/premium_requests_usage\n            [/^Group(?: by)?: (None|Product|SKU|Repository|Models)$/, function(all, group) {\n                var groupKey = {'None': '无','Product': '产品','SKU': 'SKU','Repository': '仓库', 'Models': '模型'};\n                return '分组：' + groupKey[group];\n            }],\n            [/Usage for (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}`; // 有标题作为上下文，直接省略，只剩日期\n            }],\n            [/(\\d+) min$/, \"$1 分\"],\n            [/([\\d,+]\\.\\d+|[\\d,+]) GB-hr/, \"$1 GB/时\"],\n            [/(\\d+\\.\\d+) hr/, \"$1 小时\"],\n\n        // 使用情况\n            [/We're preparing your usage report. It may take ~30 minutes to see usage in your report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我们正在准备您的使用报告。可能需要大约 30 分钟。报告准备好后，我们会发送电子邮件到 $1。\"],\n            [/We're preparing your usage report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我们正在准备您的使用报告。报告准备好后，我们会发送电子邮件到 $1。\"],\n            [/Your usage report request is already in progress. Check ([^@]+@[^\\n]+) for the report when it's ready./, \"您的使用报告请求正在处理。报告准备好后，请到 $1 查收。\"],\n            // 获取使用报告窗口\n            [/The usage report will be emailed when it's ready to ([^@]+@[^\\n]+)./, \"使用报告准备好后，将通过电子邮件发送到 $1。\"],\n              // 传统选项\n              //[/Metered usage before the billing transition, until (.+)/, (match, p1) => {\n              //  const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n              //  const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n              //  return `计费切换前的计量使用情况，截至${translatedDate}`;\n              //}],\n\n        // 账户预算 https://github.com/settings/billing/budgets\n            [/(\\d+) budgets?/, \"$1 预算\"],\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            [/(\\$\\d+\\.\\d{2}) off per month for (\\d+) years/, \"每月优惠 $1，为期 $2 年\"],\n            [/until (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `直到 ${translatedDate}。`;\n            }],\n\n        // 其他账单 https://github.com/settings/billing/subscriptions\n            [/In addition to your personal account, you manage (\\d+) organizations?./, \"除个人账户外，您还可以管理 $1 个组织。\"],\n            [/([^ ]+) support/, \"$1 支持\"],\n            [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消对 $1 的订阅。此计划变更将于 $2 生效。\"],\n\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Billing Overview\": \"账单概览\",\n            \"Billing Usage\": \"计费用量\",\n            \"Premium request analytics\": \"高级请求分析\",\n            \"Budgets\": \"预算\",\n            \"Billing\": \"账单\",\n            \"Payment Information\": \"支付信息\",\n            \"Payment history\": \"支付历史\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"account/billing/history\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/settings/billing\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing_managers/new\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing/history\"] = I18N[\"zh-CN\"][\"settings/billing\"];\nI18N[\"zh-CN\"][\"orgs/billing/plans\"] = I18N[\"zh-CN\"][\"settings/billing\"];\n\nI18N[\"zh-CN\"][\"settings/education/benefits\"] = {  // 设置 - 账单和计划（新）- 教育福利\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        \"GitHub Education\": \"GitHub 教育\",\n\n        \"Free GitHub developer resources for students and teachers\": \"为学生和教师提供免费的 GitHub 开发者资源\",\n\n        \"Education Benefits\": \"教育福利\",\n            \"Complete a teacher or student application to unlock tools and resources for your educational journey.\": \"完成教师或学生申请，解锁教育旅程所需的工具和资源。\",\n            //\"You have a current student coupon applied.\": \"您当前已应用学生优惠券。\",\n            \"You have a current student coupon applied. Find more information on your benefits\": \"您当前已应用学生优惠券。详情查看\",\n                \"here\": \"这里\",\n            \"Start an application\": \"申请\",\n                \"You have not submitted an application for education benefits.\": \"没有申请\",\n\n                \"Education Benefits Application\": \"教育福利申请\",\n                    \"Select your role in education: *\": \"选择您的角色：*\",\n                        \"Teacher\": \"教师\",\n                        \"Student\": \"学生\",\n\n                        \"What is the name of your school? *\": \"学校名称 *\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page. A minimum of two characters is required to find your school.\": \"如果您的学校未在列表中，请输入完整的学校名称并继续。下一页将要求您提供有关学校的更多信息。查找学校至少需要输入两个字符。\",\n                            // 提醒设置学校邮箱\n                                \"We require applicants of\": \"我们要求申请者\",\n                                \"to use one of these school-issues email addresses to apply:\": \"使用以下学校发放的电子邮箱地址进行申请：\",\n                                \"add and verify your\": \"添加并验证您的\",\n                                \"school-issued email address\": \"学校发放的电子邮箱地址\",\n                                \"in your account settings -- or a contact email if you do not have one. Once your email is verified, you can try applying again.\": \"在您的账户设置中——若未设置邮箱，请填写联系邮箱。邮箱验证通过后，即可重新尝试申请。\",\n\n                        \"What is your school email address?\": \"教育邮箱地址\",\n                            \"Have a different email address you use with your school?\": \"您是否有其他在校使用的电子邮件地址？\",\n                            \"Add it here.\": \"添加\",\n\n                        \"You have verified the email address\": \"您已验证邮件\",\n                        \"on your GitHub account. This academic domain is associated with the school\": \"。该域名属于：\",\n                        \"Unselect this school\": \"取消选择此学校\",\n\n                        \"Share Location\": \"位置共享\",\n                        \"Location shared\": \"位置已共享\",\n                        \"Continue\": \"继续\",\n\n                        \"Please select the type of proof you would like to provide *\": \"请选择您希望提供的证明类型 *\",\n                        \"1. Dated school ID - Good\": \"1. 注明日期的学校证件 - 完整\",\n                        \"What is a valid proof of education?\": \"什么是有效的教育证明？\",\n                        \"Good\": \"完整\",\n                            \"proof requires infinite academic affiliation documentation most likely to help you be approved.\": \"的证明需要详尽的学术关系文件，以最大限度地帮助您通过审核。\",\n                        \"For\": \"部分\",\n                            \"proof types may lower your chances of being approved.\": \"证明类型可能会降低您的审核通过概率。\",\n                        \"Poor\": \"无效\",\n                            \"proof types are unlikely to be acceptable.\": \"的证明类型通常无法被接受。\",\n\n                        \"There was an error creating the discount request. Errors: Discount request could not be created. Discount request errors: School email must be verified on your GitHub account\": \"创建折扣请求时出错。错误信息：无法创建折扣请求。折扣请求错误：学校邮箱必须在您的 GitHub 账户中完成验证\",\n\n                \"Application Type:\": \"申请类型：\",\n\n            \"Approved\": \"批准\",\n                // 等待\n                    \"Coupon applied\": \"优惠券已应用\",\n                    \"Expires in almost 2 years\": \"有效期大约 2年\",\n                    \"Your academic status has been verified. Congratulations!\": \"您的学术状态已验证。恭喜！\",\n                    \"Your academic benefits, including Partner offers, will become available after 72 hours of your verification.\": \"您的学术福利，包括合作伙伴优惠，将在您资格审核通过后的 72 小时内生效。\",\n                    \"Once the benefits become available, you will be able to access the Students Developer Pack offers\": \"权益生效后，您将可以访问学生开发者礼包优惠在\",\n                    \"To redeem your Copilot Pro coupon, please sign up via this\": \"要兑换您的 Copilot Pro 优惠券，请访问此\",\n                    \"link\": \"链接\",\n                    \"We hope you enjoy your GitHub Education benefits.\": \"希望您享受 GitHub 教育权益。\",\n                // 结束\n                    \"Congratulations! Your application has been approved and the coupon code has been applied to your account.\": \"恭喜！您的申请已获批准，优惠码已成功应用到您的账户。\",\n                    \"Please visit the\": \"请访问\",\n                    \"Developer Pack\": \"开发者包\",\n                    \"page to view your benefits.\": \"页面查看您的权益。\",\n                \"Your benefits will expire on\": \"您的福利过期时间：\",\n            \"Loading details\": \"加载详情\",\n            \"Revoked\": \"撤销\",\n            \"Denied\": \"拒绝\",\n                \"Reason(s):\": \"拒绝原因：\",\n\n                    \"Please complete your\": \"请完善您的\",\n                    \"GitHub billing information\": \"GitHub 账单信息\",\n                    \"with your full name exactly as it appears in your academic affiliation document. You do not have to add a payment method. You may need to log out and log back in to GitHub before reapplying. If you have only a single legal name, enter it in both the first and last name fields.\": \"，并确保其中的姓名与您学籍证明文件中的姓名完全一致。您无需添加支付方式。您可能需要先登出 GitHub，然后重新登录后再申请。如果您只有一个法定姓名，请在名字和姓氏字段中填写相同的姓名。\",\n\n                    \"You are unlikely to be verified until you have completed your\": \"在您用学籍证明文件上的全名完善\",\n                    \"GitHub user profile\": \"GitHub 用户资料\",\n                    \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通过验证。请不要使用姓名的变体或昵称。更新资料信息后，请先登出 GitHub，然后重新登录后再申请。\",\n    },\n    \"regexp\": [\n        [/Submitted(?: about)? (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交于 ${translatedDate}`;\n        }],\n        [/Expires in almost (\\d+) years?/, \"有效期大约 $1 年\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/emails\"] = { // 设置 - 电子邮箱\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Emails 电子邮箱 https://github.com/settings/emails\n            // 黄框警告\n                \"You have a single verified email associated with your GitHub account. Add an additional verified email address in case you lose access to your primary email.\": \"您的 GitHub 账户只有一个经过验证的电子邮箱。添加另一个经过验证的电子邮箱地址吧，那样即使主电子邮箱无法使用也不要紧。\",\n            // 顶部提示信息\n                \"Emails you can use to sign in to your account. Verified emails can be used as the author or committer addresses for web-based Git operations, e.g. edits and merges.\":\"可用于登录账户的电子邮箱。经过验证的电子邮箱可以用作基于网页的 Git 操作（如编辑和合并）的作者或提交者地址。\",\n            // [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)/, \"可用于登录账户的电子邮箱。这些邮箱不会用作基于网页的 Git 操作（如编辑和合并）的 “发件人” 地址。所有基于网页的 Git 操作都将关联至 $1。\"],\n\n            \"Primary\": \"主账户\",\n                \"Backup\": \"备用\",\n                \"This email address is the default for GitHub notifications, such as replies to issues, pull requests, and similar activity.\": \"此电子邮箱地址是 GitHub 通知的默认地址，例如对议题、拉取请求和类似活动的回复。\",\n                // [/Manage email/, \"管理邮箱地址\"],\n                \"Manage email preferences\": \"管理电子邮件首选项\",\n                \"Resend verification email\": \"重新发送验证邮件\",\n                // 删除按钮 提醒信息\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account.\": \"您确定要从账户中移除此邮箱吗？移除后，该邮箱地址关联的提交记录将不再与您的账户关联。。\",\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account. One of your other emails will become your primary address.\": \"您确定要从账户中移除此邮箱吗？移除后，该邮箱地址关联的提交记录将不再与您的账户关联。您其他邮箱中的一个将自动成为主要地址。\",\n                    \"At least one email is required.\": \"至少需要一个电子邮箱。\",\n                    \"At least one verified email is required.\": \"至少需要一个已验证的电子邮箱。\",\n                    // 顶部提醒\n                        // [/Removed email ([^@]+@[^\\n]+) from your account./, \"已将邮箱 $1 从您的账户中移除。\"],\n\n            \"Add email address\": \"添加电子邮箱\",\n                \"Email address\": \"电子邮箱\",\n                    // 顶部提醒\n                        // [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我们已向 $1 发送了验证邮件，请登录邮箱已完成验证。\"],\n\n            \"Primary email address\": \"主电子邮箱\",\n                \"Select an email to be used for account-related notifications and can be used for password reset.\": \"选择用于帐户相关通知的电子邮件地址，并可用于密码重置。\",\n                // 顶部提醒\n                    \"Your primary email was changed to\": \"您的主电子邮箱已更改为\",\n                    \". Your default notification email address is still set to\": \"。您的默认通知电子邮箱仍然设置为\",\n                    \". Would you like to update that as well?\": \"。您也想更新它吗？\",\n                    \"Yes, update my notification email\": \"是的，更新我的通知电子邮箱\",\n\n            \"Backup email address\": \"备用电子邮箱\",\n                \"Your backup GitHub email address will be used as an additional destination for security-relevant account notifications and can also be used for password resets.\": \"您的备用 GitHub 电子邮箱将用作接收账户安全相关通知的额外方式，也可以用于密码重置。\",\n                    \"Allow all verified emails\": \"允许所有已验证的电子邮箱\",\n                        // 顶部提醒\n                            \"All verified emails can now be used for password resets.\": \"所有已验证的电子邮箱现在均可用于密码重置。\",\n                    \"Only allow primary email\": \"仅允许主电子邮箱\",\n                        // 顶部提醒\n                            \"Only your primary email address can now be used for password resets.\": \"现在只有您的主电子邮箱可用于密码重置。\",\n\n            \"Keep my email addresses private\": \"保持我的电子邮箱地址的私密性\",\n                \"We’ll remove your public profile email and use\": \"我们将删除您的公开个人资料中的电子邮箱，并使用\",\n                \"when performing web-based Git operations (e.g. edits and merges) and sending email on your behalf. If you want command line Git operations to use your private email you must\": \"执行基于 Web 的 Git 操作（例如：编辑和合并）并以您的名义发送电子邮件。如果您想在命令行 Git 操作中使用您的私人电子邮箱，您必须\",\n                \"set your email in Git\": \"在 Git 中设置您的电子邮箱\",\n                \"Previously authored commits associated with a public email will remain public.\": \"以前创建的与公共电子邮件相关的提交将保持公开状态。\",\n                \"Off\": \"禁用\",\n                \"On\": \"启用\",\n\n                // 顶部提醒\n                    \"Your primary email address is now public. To select which email to display on your profile, visit\": \"您的主电子邮箱地址现已公开。要选择在您的个人资料中显示哪个电子邮箱，请访问\",\n                    \"profile settings.\": \"个人资料设置。\",\n                    \"Your primary email address is now private. If you previously made your email public, we’ve removed it from your profile.\": \"您的主电子邮箱地址现已设为私密。如果您以前公开过您的电子邮箱，我们已经从您的个人资料中删除了它。\",\n\n            \"Block command line pushes that expose my email\": \"阻止在命令行推送中暴露我的电子邮箱\",\n                \"When you push to GitHub, we’ll check the most recent commit. If the author email on that commit is a private email on your GitHub account, we will block the push and warn you about exposing your private email.\": \"当您推送到 GitHub 时，我们会检查最近的提交。如果该提交的作者电子邮箱是您 GitHub 账户上的私人电子邮箱，我们会阻止推送并警告您不要暴露您的私人电子邮箱。\",\n                // 顶部提醒\n                    \"Commits pushed with a private email will no longer be blocked.\": \"使用私人电子邮箱推送的提交将不再被阻止。\",\n                    \"Commits pushed with a private email will now be blocked and you will see a warning.\": \"使用私人电子邮箱推送的提交将被阻止，您会看到一个警告。\",\n\n        // 订阅偏好 https://github.com/settings/emails/subscriptions\n            \"Subscription preferences for\": \"订阅首选项\",\n            \"⏳Please wait while we find your subscriptions...⌛\": \"⏳请稍候，我们正在查找您的订阅...⌛\",\n            \"No subscriptions found\": \"未找到订阅信息\",\n            \"Save subscription preferences\": \"保存订阅首选项\",\n            \"Back to email settings\": \"返回电子邮件设置\",\n            \"To stop receiving emails for the topics below, uncheck any topics you don't want to receive, then click Save subscription preferences\": \"要停止接收以下主题的电子邮件，请取消选中您不想接收的任何主题，然后单击保存订阅首选项\",\n            \"General info and offers from GitHub\": \"GitHub 上的一般信息和优惠\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"从 GitHub 获取有关我们认为您可能感兴趣的产品、服务和活动的提示、解决方案和独家优惠。\",\n            \"Unsubscribe from all topics\": \"取消订阅所有主题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)./, \"可用于登录账户的电子邮箱。该邮箱不会用作基于网页的 Git 操作（如编辑和合并）的 “发件人” 地址。所有基于网页的 Git 操作都将关联至 $1。\"],\n        [/Manage email/, \"管理邮箱地址\"],\n        [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我们已向 $1 发送了验证邮件，请登录邮箱已完成验证。\"],\n        [/Your primary email was changed to ([^@]+@[^\\n]+)\\./, \"您的主电子邮箱已更改为 $1\"],\n        [/Subscription preferences for ([^@]+@[^\\n]+)/, \"$1 的订阅偏好\"],\n        [/Removed email ([^@]+@[^\\n]+) from your account./, \"已将邮箱 $1 从您的账户中移除。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Email settings\": \"邮箱设置\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security\"] = { // 设置 - 密码和身份身份验证\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 密码和身份身份验证 - 账户安全 https://github.com/settings/security\n            \"Change password\": \"更改密码\",\n            \"Old password\": \"旧密码\",\n            \"New password\": \"新密码\",\n            \"Confirm new password\": \"确认新密码\",\n            \"Make sure it's\": \"请确保\",\n            \"at least 15 characters\": \"至少需要15个字符\",\n            \"OR\": \" 或者\",\n            \"at least 8 characters\": \"至少需要8个字符\",\n            \"including a number\": \"包括数字\",\n            \"and a lowercase letter\": \"和小写字母\",\n            \"Password is too short (minimum is 8 characters)\": \"密码太短（最少8个字符）\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, and is in a list of passwords commonly used on other websites\": \"密码太短（最少8个字符），至少需要1个小写字母，而且已在其他网站常用密码列表中\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密码太短（最少为8个字符），至少需要1个小写字母，而且不能包括您的登录名，以及在其他网站常用的密码列表中。\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 number, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密码太短（最少8个字符），需要至少1个数字，不能包含您的登录名，以及在其他网站常用的密码列表中\",\n            \"Password is too short (minimum is 8 characters) and is in a list of passwords commonly used on other websites\": \"密码太短（最少为8个字符），而且已在其他网站常用的密码列表中。\",\n            \"Password needs at least 1 lowercase letter and is in a list of passwords commonly used on other websites\": \"密码需要至少 1 个小写字母，而且已在其他网站常用的密码列表中\",\n            \"Password is in a list of passwords commonly used on other websites\": \"密码在其他网站常用的密码列表中\",\n            \"Update password\": \"更新密码\",\n            \"I forgot my password\": \"我忘记了我的密码\",\n\n            \"Strengthen your account by ensuring your password is strong.\": \"确保密码的安全性，以保护您的账户。\",\n            \"Learn more about creating a strong password\": \"了解更多关于创建强密码的信息\",\n\n            \"Passkeys\": \"通行密钥\",\n                \"Passwordless sign-in with passkeys\": \"使用通行密钥进行无密码登录\",\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method. Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。通行密钥可以作为一种简单且安全的替代方式用于登录，替代您的密码和双因素身份验证凭证。\",\n                \"This browser or device does not fully support passkeys - you may be able to use a passkey from another device.\": \"此浏览器或设备不完全支持通行密钥 - 您可以尝试使用来自其他设备的通行密钥。\",\n                \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此浏览器或设备不完全支持通行密钥 - 您可以尝试使用来自其他设备的通行密钥。\",\n                \"Add a passkey\": \"添加通行密钥\",\n\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。\",\n                \"Learn more about passkeys\": \"了解更多关于通行密钥的信息\",\n\n                \"Your passkeys\": \"您的通行密钥\",\n                \"Edit passkey nickname\": \"编辑通行密钥昵称\",\n                // [/Delete `([^ ]+)` passkey/, \"删除 “$1” 通行密钥\"],\n\n                // 删除密钥对话框\n                    \"Delete passkey?\": \"删除通行密钥？\",\n                    // [Are you sure you want to delete your `([^ ]+)` passkey?/, \"您确定要删除您的 “$1” 通行密钥吗？\"],\n                    \"You will no longer be able to use it to sign-in to your account.\": \"您将无法再使用它登录您的账户。\",\n                    \"Note: You may continue to see this passkey as an option during sign-in until you also delete it from your browser, device or associated account's password management settings.\": \"注意：您可能会在登录过程中继续看到此通行密钥作为一个选项，直到您将其从浏览器、设备或关联账户的密码管理设置中删除。\",\n                    \"Deleting…\": \"删除中…\",\n\n            // Google\n                \"1 account connected\": \"已连接 1 个帐户\",\n                \"Google sign in method dropdown\": \"Google 登录方法下拉菜单\",\n\n            // 双因素身份验证\n                // 顶部提醒\n                    \"You can now manage your two-factor authentication methods from this page.\": \"您现在可以从此页面管理您的双因素身份验证方法。\",\n                    \"Two-factor authentication successfully disabled.\": \"成功禁用双因素身份验证。\",\n                    \"SMS/Text message successfully configured.\": \"短信/文本信息配置成功。\",\n                    \"Authenticator app successfully reconfigured.\": \"验证器重配置成功。\",\n\n            \"Sign in methods\": \"登录方式\",\n                \"Email\": \"电子邮件\", // 下行内容走正则\n                    \"Manage\": \"管理\",\n                // 通行密钥\n                    \"Passwordless sign-in with biometrics or security keys\": \"使用生物识别或安全密钥进行无密码登录\",\n                    \"Add passkey\": \"添加通行密钥\",\n                    \"Seen from this browser\": \"在此浏览器中可见\",\n                    \"Synced\": \"已同步\",\n                // Google\n                    \"Sign in with your Google account\": \"使用 Google 账户登录\",\n                    \"Connect\": \"连接\",\n                // Apple\n                    \"Sign in with your Apple account\": \"使用 Apple 账户登录\",\n\n            \"Two-factor authentication\": \"双因素身份验证\",\n                \"Two-factor authentication is not enabled yet.\": \"尚未启用双因素身份验证。\",\n                \"Enable two-factor authentication\": \"启用双因素身份验证\",\n\n                \"Because of your contributions on GitHub, two-factor authentication is required for your account. Thank you for helping keep the ecosystem safe!\": \"基于您在 GitHub 上的贡献，您的账户需要双因素身份验证。感谢您帮助维护生态系统安全！\",\n                \"Because of your contributions on GitHub, two-factor authentication will be required for your account starting\": \"基于您在 GitHub 上的贡献，从\",\n                \". Thank you for helping keep the ecosystem safe!\": \" 开始，您的账户将需要双因素身份验证，感谢您帮助维护生态系统的安全！\",\n                \"Learn more about our two-factor authentication initiative\": \"了解更多关于我们的双因素身份验证的倡议\",\n\n                \"Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to sign in.\": \"双因素身份验证不仅仅要求密码登录，还为您的账户增加了一层额外的安全性。\",\n                \"Learn more about two-factor authentication\": \"了解更多关于双因素身份验证的信息\",\n\n\n                \"Enable\": \"启用\",\n                \"Enabled\": \"启用\",\n                    \"Two-factor authentication is required for at least one organization or enterprise account you're affiliated with.\": \"至少有一个您所属的组织或企业账户需要进行双因素身份验证。\",\n                \"Disable\": \"停用\",\n\n            \"Preferred 2FA method\": \"首选 2FA 方法\",\n                \"Set your preferred method to use for two-factor authentication when signing into GitHub.\": \"设置登录 GitHub 时用于双因素身份验证的首选方法。\",\n                \"Passkeys should be used primarily for standalone, password-less authentication.\":\"通行密钥应主要用于独立的无密码身份验证。\",\n\n            \"Two-factor methods\": \"双因素身份验证方式\",\n                \"Configured\": \"已配置\",\n\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出现提示时，使用身份验证器应用或浏览器扩展获取双因素身份验证码。\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份验证应用或浏览器扩展生成一次性代码。\",\n\n                    \"Manage Authenticator app\": \"管理身份验证器应用\",\n\n                    \"Authenticator apps and browser extensions like\": \"身份验证器应用和浏览器扩展，例如\",\n                    \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密码，在登录过程中出现提示时用作第二验证因素来验证您的身份。\",\n\n                    \"Scan the QR code\": \"扫描二维码\",\n                    \"Re-scan the QR code\": \"重新扫描二维码\",\n                    \"Use an authenticator app or browser extension to scan.\": \"请使用身份验证器应用或浏览器扩展进行扫描。\",\n                    \"Learn more about enabling 2FA\": \"了解更多关于启用 2FA 的信息\",\n\n                    \"Unable to scan? You can use the\": \"无法扫描？您可以使用\",\n                    \"setup key\": \"设置密钥\",\n                    \"to manually configure your authenticator app.\": \"手动配置您的身份验证器应用。\",\n                        \"Your two-factor secret\": \"您的双因素密钥\",\n\n                    \"Verify the code from the app\": \"验证来自身份验证器应用的验证码\",\n                    \"Two-factor code verification failed. Please try again.\": \"双因素身份验证码验证失败。请重试。\",\n\n                \"SMS/Text message\": \"短信/文字信息\",\n                    \"Manage SMS/Text message\": \"管理短信/文字信息\",\n                    \"Less secure\": \"不安全\",\n\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests. We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. It is recommended to use an Authenticator app instead of SMS.\": \"通过短信向您的手机送达一次性验证码，以完成身份验证请求。我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，且送达率可能不可靠。建议使用身份验证器应用代替短信。\",\n\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登录 GitHub 时通过手机短信获取验证码。确保\",\n                    \"your country or region is supported\": \"支持您的国家/地区\",\n                    \"for SMS delivery.\": \"用于短信发送。\",\n\n                    \"Verify account\": \"验证账户\",\n                    \"Before setting up SMS, please verify that you're a human.\": \"在设置短信之前，请验证您是人类。\",\n\n                    \"Country or region code\": \"国家/地区代码\",\n                    \"Your phone number\": \"您的手机号码\",\n                    \"Send authentication code\": \"发送验证码\",\n\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已发送。短信可能需要一分钟时间才能送达。\",\n                    \"Verify the code sent to your phone\": \"验证发送到您手机的验证码\",\n\n                    // [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，而且送达率可能不可靠。相反，我们建议配置一个身份验证器应用，并禁用短信作为双因素身份验证。您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n\n                    // 顶部提醒\n                        \"SMS/Text message successfully disabled.\": \"短信/文字消息已成功禁用。\",\n\n                \"Security keys\": \"安全密钥\",\n                    \"Security keys are webauthn credentials that can only be used as a second factor of authentication.\": \"安全密钥是 WebAuthn 凭证，只能用作第二验证因素。\",\n                    \"Hide\": \"隐藏\",\n                    \"No security keys\": \"没有安全密钥\",\n\n                    \"Register new security key\": \"注册新安全密钥\",\n                    \"Enter a nickname for this security key\": \"输入安全密钥的昵称\",\n                    \"Waiting for input from browser interaction...\": \"等待来自浏览器交互的输入…\",\n                    \"Security key registration failed.\": \"安全密钥注册失败。\",\n                    \"Try again\": \"请重试\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通过安装 GitHub Mobile 应用并登录账户，可以使用 GitHub Mobile 来进行双因素身份验证。\",\n                    \"Manage GitHub Mobile\": \"管理 GitHub Mobile\",\n\n                    // [/(\\d+) devices?/, \"$1 设备\"], // 设置--> 密码和身份验证页\n                    \"Show\": \"显示\",\n\n            \"Recovery options\": \"恢复选项\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by viewing and downloading or printing them again.\": \"您的双因素身份验证恢复码在过去一年中未被下载或打印。请通过查看并再次下载或打印恢复码，确保您的恢复码是最新的。\",\n\n                \"Recovery codes\": \"恢复码\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                    \"Viewed\": \"已查看\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) devices?/, \"$1 个设备\"], // 设置--> 密码和身份验证页\n        [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我们强烈建议不要使用短信，因为短信容易受到拦截，无法抵御钓鱼攻击，而且送达率可能不可靠。相反，我们建议配置一个身份验证器应用，并禁用短信作为双因素身份验证。您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n        [/Delete `([^ ]+)` passkey/, \"删除 “$1” 通行密钥\"],\n        [/Are you sure you want to delete your `([^ ]+)` passkey?/, \"您确定要删除您的 “$1” 通行密钥吗？\"],\n        [/(\\d+) verified emails? configured/, \"已配置 $1 个已验证的邮箱\"],\n        // 1 passkey configured\n        [/(\\d+) passkeys? configured/, \"已配置 $1 个通行密钥\"],\n        [/Added (.*) \\| Last used (.*)/, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const dateAdded = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const dateLastUsed = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `添加于 ${dateAdded} | 最后使用 ${dateLastUsed}`;\n        }]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account security\": \"账户安全\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/auth\"] = {\n    \"static\": { // 静态翻译\n\n        // 查看恢复码 https://github.com/settings/auth/recovery-codes\n            // 顶部提醒\n                \"New two-factor recovery codes successfully generated. Save them in a safe, durable location and discard your previous codes.\": \"已成功生成新的双因素身份验证恢复码。将它们保存在安全、耐用的位置，并丢弃以前的恢复码。\", // 生成新恢复码\n\n            \"Two-factor recovery codes\": \"双因素身份验证恢复码\",\n                \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by downloading or printing them again.\": \"您的双因素身份验证恢复码在过去一年中没有下载或打印过。请重新下载或打印恢复代码，确保您的恢复代码是最新的。\",\n\n            \"Recovery codes\": \"恢复码\",\n                \"Keep your recovery codes as safe as your password. We recommend saving them with a password manager such as\": \"保持您的恢复码与您的密码一样安全。我们建议使用密码管理器保存它们，例如\",\n                \"Keep your recovery codes in a safe spot.\": \"将您的恢复码保存在一个安全的地方。\",\n                \"These new codes have replaced your old codes. Save them in a safe spot.\": \"这些新恢复码已取代您的旧恢复。请将它们保存在安全的地方。\", // 生成新恢复码\n                \"These codes are the last resort for accessing your account in case you lose your password and second factors. If you cannot find these codes, you\": \"这些恢复码是在您丢失密码和第二验证因素的情况下访问您账户的最后手段。如果您找不到这些恢复码，您\",\n                \"will\": \"将\",\n                \"lose access to your account.\": \"无法访问您的账户。\",\n\n                \"Print\": \"打印\",\n\n            \"Generate new recovery codes\": \"生成新恢复码\",\n                \"When you generate new recovery codes, you must download or print the new codes.\": \"当您生成新恢复码时，您必须下载或打印新恢复码。\",\n                \"Your old codes won't work anymore.\": \"您的旧恢复码将失效。\",\n\n            \"Back to settings\": \"返回设置\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/sessions\"] = {\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 会话详情 https://github.com/settings/sessions\n            \"Web sessions\": \"网络会话\",\n            \"GitHub Mobile can be used to verify your identity when signing in from a new device and as a two-factor authentication method.\": \"GitHub Mobile 可用于从新设备登录时验证您的身份，并作为一种双因素身份验证方法。\",\n            \"Learn more about authentication with GitHub Mobile.\": \"了解更多关于 GitHub Mobile 身份验证的信息。\",\n            \"To get started, install GitHub Mobile for\": \"首先，安装 GitHub Mobile 适用于\",\n            \"and sign in to your account.\": \"并登录您的账户。\",\n\n            \"This is a list of devices that have logged into your account. Revoke any sessions that you do not recognize.\": \"这是已登录您账户的设备列表。 撤销任何您不认识的会话。\",\n            \"See more\": \"查看更多\",\n            \"Your current session\": \"您当前的会话\",\n            \"Last accessed on\": \"最后访问日期：\",\n            \"active\": \"激活\",\n            \"stale\": \"闲置\",\n\n            \"GitHub Mobile sessions\": \"GitHub Mobile 会话\",\n            \"This is a list of devices that have logged into your account via the GitHub Mobile app. Revoke any session that you do not recognize or you can\": \"这是已通过 GitHub Mobile 应用登录到您账户的设备列表。撤销任何您不认识的会话，或者您可以\",\n            \"revoke\": \"撤消\",\n            \"your GitHub Mobile app authorization to sign out of all your devices.\": \"您的 GitHub Mobile 应用授权，以登出您的所有设备。\",\n            \"Revoke\": \"撤消\",\n            \"Registered -\": \"注册于 -\",\n            \"Last accessed -\": \"最后访问 -\",\n            \"Last used for authentication -\": \"最后一次认证 -\",\n            \"Never used\": \"未使用\",\n\n        // 会话详情 https://github.com/settings/sessions/<id>\n            \"Session details\": \"会话详情\",\n            \"Revoke session\": \"撤销会话\",\n            \"Device:\": \"设备：\",\n            \"Last location:\": \"最后的位置：\",\n            \"Signed in:\": \"登录：\",\n            \"View all sessions\": \"查看所有会话\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Seen in/, \"登录于\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sessions\": \"会话\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/keys\"] = { // 设置 - SSH 与 GPG 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // SSH and GPG keys SSH 与 GPG 公钥 https://github.com/settings/keys\n            \"SSH keys\": \"SSH 密钥\",\n            \"New SSH key\": \"新建 SSH 密钥\",\n            \"Authentication keys\": \"认证密钥\",\n            \"Signing keys\": \"签名密钥\",\n            \"Signing\": \"签名\",\n            \"There are no SSH keys associated with your account.\": \"没有与您的账户关联的 SSH 密钥。\",\n            \"This is a list of SSH keys associated with your account. Remove any keys that you do not recognize.\": \"这是与您的账户相关的 SSH 密钥的列表。删除任何您无法识别的密钥。\",\n            \"Never used\": \"从未使用\",\n                \"— Read/write\": \"- 读写\",\n            \"Last used within the last week\": \"上周内最后一次使用\",\n            \"Check out our guide to\": \"请看我们的指南\",\n            \"connecting to GitHub using SSH keys\": \"使用 SSH 密钥连接到 GitHub\",\n            \"or troubleshoot\": \"或解决\",\n            \"common SSH problems\": \"常见的 SSH 问题\",\n\n            \"GPG keys\": \"GPG 密钥\",\n            \"New GPG key\": \"新建 GPG 密钥\",\n            \"There are no GPG keys associated with your account.\": \"没有与您的账户关联的 GPG 密钥。\",\n            \"This is a list of GPG keys associated with your account. Remove any keys that you do not recognize.\": \"这是与您的账户相关的 GPG 密钥的列表。删除任何您无法识别的密钥。\",\n\n            \"Email address:\": \"电子邮件地址：\",\n            \"Key ID:\": \"密钥 ID：\",\n            \"Subkeys:\": \"子密钥：\",\n            \"Added\": \"添加于\",\n\n            \"Learn how to\": \"了解如何\",\n            \"generate a GPG key and add it to your account\": \"生成 GPG 密钥并将其添加到您的账户\",\n\n            \"Vigilant mode\": \"警戒模式\",\n            \"Flag unsigned commits as unverified\": \"将未签名的提交标记为未验证\",\n            \"This will include any commit attributed to your account but not signed with your GPG or S/MIME key.\": \"这将包括任何归属于您的账户但没有用您的 GPG 或 S/MIME 密钥签名的提交。\",\n            \"Note that this will include your existing unsigned commits.\": \"请注意，这将包括您现有的未签名的提交。\",\n            \"Learn about vigilant mode\": \"了解警戒模式\",\n\n            // SSH 密钥删除 对话框\n            \"Are you sure you want to delete this SSH key?\": \"您确定要删除此 SSH 密钥吗？\",\n            \"This action\": \"该操作\",\n            \"CANNOT\": \"不能\",\n            \"be undone. This will permanently delete the SSH key and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 SSH 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"I understand, delete this SSH key\": \"我明白了，删除此 SSH 密钥\",\n\n            // GPG 密钥删除 对话框\n            \"Are you sure you want to delete this GPG key?\": \"您确定要删除此 GPG 密钥吗？\",\n            \"be undone. This will permanently delete the GPG key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 GPG 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"Any commits you signed with this key will become unverified after removing it.\": \"删除后，您使用此密钥签名的任何提交都将变成未验证。\",\n            \"Commits you signed with this key may become unverified after removing it.\": \"移除此密钥后，您使用它签署的提交可能会变为未验证状态。\",\n            \"Learn more about persistent commit signature verification.\": \"了解更多关于持久性提交签名验证的信息。\",\n            \"I understand, delete this GPG key\": \"我明白了，删除此 GPG 密钥\",\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功删除该密钥。\",\n            \"cannot\": \"不能\",\n\n            // 顶部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n            \"We got an error doing that.\": \"我们在这样做时出错了。\",\n            \"We got an error adding your GPG key. Please verify the input is a valid GPG key.\": \"添加您的 GPG 密钥时出错。请确认输入的是有效的 GPG 密钥。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You have successfully added the key \\'([^ ]+)\\'./, \"成功添加密钥 “$1”。\"],\n        [/Last used within the last (\\d+) weeks?/, \"$1 周内最后一次使用\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"SSH and GPG keys\": \"SSH 和 GPG 密钥\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/ssh\"] = { // 设置 - SSH 与 GPG 公钥 - 添加 SSH 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 添加 SSH 公钥 https://github.com/settings/ssh/new\n            \"Add new SSH Key\": \"添加新 SSH 密钥\",\n            \"Title\": \"标题\",\n            \"Key type\": \"密钥类型\",\n                \"Authentication Key\": \"认证密钥\",\n                \"Signing Key\": \"签名密钥\",\n            \"Key\": \"密钥\",\n            \"Add SSH key\": \"添加 SSH 密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/gpg\"] = { // 设置 - SSH 与 GPG 公钥 - 添加 GPG 公钥\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 添加 GPG 公钥 https://github.com/settings/gpg/new\n            \"Add new GPG key\": \"添加新 GPG 密钥\",\n            \"Title\": \"标题\",\n            \"Key\": \"密钥\",\n            \"Add GPG key\": \"添加 GPG 密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/organizations\"] = { // 设置 - 组织\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Organizations 组织 https://github.com/settings/organizations\n            \"You are not a member of any organizations.\": \"您暂无任何组织。\",\n\n            \"Owner\": \"所有者\",\n            \"Member\": \"成员\",\n            \"Compare plans\": \"比较计划\",\n            \"Leave\": \"离开\",\n            \"Leave organization\":\"离开组织\",\n\n            \"Transform account\": \"账户变更\",\n            \"You cannot transform this account into an organization until you leave all organizations that you’re a member of.\": \"在您离开您所属的所有组织之前，您无法将此账户转换为组织。\", // 存在所属组织时\n            \"You cannot transform this account into an organization because you have an active GitHub Sponsors account.\": \"由于您有一个活跃的 GitHub 赞助者账户，因此您无法将此账户转换为组织。\", // 存在赞助者账户时\n            \"Account Transformation Warning\": \"账户变更警告\",\n            \"What you are about to do is an irreversible and destructive process. Please be aware:\": \"这将是一个不可逆转的过程，请确认：\",\n            \"Any user-specific information (OAuth tokens, SSH keys, Job Profile, etc) will be erased\": \"任何用户特定的信息（OAuth 令牌, SSH 密钥, 职位简介, 等）将被删除。\",\n            \"You will no longer be able to create or modify gists owned by the converted personal account\": \"您将无法再创建或修改已转换的个人账户所拥有的代码片段\",\n            \"create a new personal account\": \"创建一个新的个人账户\",\n            \"The total amount of collaborators across private repositories will be the total amount of seats for the organization\": \"跨私人仓库的协作者总数将是该组织的席位总数\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Turn ([^ ]+) into an organization/, \"变更 $1 为组织\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您将无法再登录 $1（所有管理权限都将授予您选择的所有者）\"],\n        [/Any commits and comments credited to ([^ ]+) will no longer be linked to this GitHub account/, \"任何归功于 $1 的提交和评论将不再与此 GitHub 账户相关联\"],\n        [/Any GitHub Apps installed on ([^ ]+) will be uninstalled/, \"$1 上安装的任何 GitHub 应用程序都将被卸载\"],\n        [/If you are using ([^ ]+) as a personal account, you should/, \"如果您将 $1 用作个人账户，您应该在将 $1 转变为组织之前先\"],\n        [/before transforming ([^ ]+) into an organization./, \"。\"],\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的外部协作者\"], // 设置 - 组织\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的成员和协作者\"],\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories and teams./, \"您确定要离开 $1 吗？您将失去对所有仓库和团队的访问权。\"], // 设置 - 组织 离开按钮 提醒\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories./, \"您确定要离开 $1 吗？您将失去对所有仓库的访问权。\"], // 设置 - 组织 离开按钮 提醒\n        [/You left ([^ ]+)\\. It may take a few minutes to process\\./, \"您已离开 $1。可能需要几分钟处理。\"], //设置，离开组织后的提示\n    ],\n    \"title\": {\n        \"static\": {\n            \"Organizations\": \"组织\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/enterprises\"] = { // 设置 - 企业版\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 企业版 https://github.com/settings/enterprises\n        \"Enterprises\": \"企业版\",\n        \"You don't have any enterprises\": \"您还没有任何企业版\",\n        \"Designed for businesses or teams who collaborate on GitHub.com\": \"专为在 GitHub.com 上协作的企业或团队而设计\",\n\n        \"Start free for 30 days\": \"免费试用 30 天\",\n        \"Start a free trial\": \"开启免费体验\",\n        \"Learn more about enterprises\": \"了解更多关于企业版信息\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Enterprises\": \"企业版\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/blocked_users\"] = { // 设置 - 黑名单\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Blocked users 黑名单 https://github.com/settings/blocked_users\n            \"Block a user\": \"拉黑用户\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用户可以防止所有仓库中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打开或评论议题或拉取请求\",\n            \"starring, forking, or watching\": \"标星、复刻、关注\",\n            \"adding or editing wiki pages\": \"添加或编辑 Wiki 页面\",\n            \"Additionally, blocked users are not able to:\": \"此外，被拉黑用户无法：\",\n            \"invite you as a collaborator to their repositories\": \"邀请您作为其仓库的协作者\",\n            \"follow your account’s public activity\": \"关注您的账户的公共活动\",\n            \"send you notifications by @mentioning your username in public repositories\": \"在公共仓库中通过 @您 向您发送通知\",\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Learn more about blocking a user\": \"了解更多关于拉黑用户的信息\",\n            \"Block user\": \"拉黑用户\",\n            \"You have not blocked any users.\": \"您还没有拉黑任何用户。\",\n            \"Unblock\": \"取消拉黑\",\n            \"Warn me when a blocked user is a prior contributor to a repository\": \"请警告我，当被拉黑的用户是仓库的先前贡献者时\",\n            \"On repositories you haven’t contributed to yet, we’ll warn you when a user you’ve blocked has previously made contributions.\": \"在您还没有贡献的仓库里，当您拉黑的用户之前有贡献时，我们会警告您。\",\n            \"You can block a user to deny them access to repositories and more.\": \"您可以拉黑用户，以拒绝他们访问仓库和其他功能。\",\n            \"On repositories you haven't contributed to yet, we'll warn you when a user you've blocked has previously made contributions.\": \"在您还没有贡献的仓库里，当您拉黑的用户之前有贡献时，我们会警告您。\",\n            \"All blocked users\": \"所有被拉黑的用户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Blocked users\": \"黑名单\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/interaction_limits\"] = { // 设置 - 互动限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Interaction limits 互动限制 https://github.com/settings/interaction_limits\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n            \"Interaction limits may already exist in your account's\": \"互动限制可能已经存在于您的\",\n            \"public repositories\": \"公开仓库\",\n            \". Any changes here will override those limits.\": \" 的设置中。此处的全局设置将覆盖那些仓库的局部设置。\",\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with your repositories.\": \"最近创建账户的用户将无法与您的仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously committed to the default branch of one of your repositories will be unable to interact with that repository.\": \"以前从未提交到您某个仓库默认分支的用户将无法与该仓库互动。\",\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not collaborators of one of your repositories will not be able to interact with that repository.\": \"不是您某个仓库的协作者将无法与该仓库互动。\",\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n            // 顶部提醒\n            \"User interaction limit settings saved.\": \"用户交互限制设置已保存。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Enabled with (.+) remaining./, \"已启用，还剩 $1。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"临时互动限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/code_review_limits\"] = { // 设置 - 代码审查限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 顶部提示\n            \"Code review limit settings saved.\": \"代码审查限制设置已保存。\",\n\n        // Code review limits 代码审查限制 https://github.com/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in your public repositories.\": \"限制允许批准或请求更改公共仓库中拉取请求的用户。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"代码审查限制可能已经由各个仓库指定。此处的任何更改都将覆盖这些限制，直至取消设置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有仓库代码审查限制都是单独管理的。启用限制，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。删除限制，允许所有用户提交拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n            \"Code review limits are currently\": \"目前，所有仓库都\",\n            \"enabled\": \"启用\",\n            \"disabled\": \"禁用\",\n            \"for all repositories. Only users explicitly granted access to these repositories may submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews continue to be able to do so.\": \"代码审查限制。只有被明确授予访问这些仓库权限的用户才能提交 “批准” 或 “请求更改” 的拉取请求审查。所有能够提交评论拉取请求审查的用户仍可继续提交。\",\n            \"for all repositories. All users are able to submit pull request reviews, including those that \\\"approve\\\" or \\\"request changes\\\". Limit reviews to only permit users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\".\": \"代码审查限制。所有用户都可以提交拉取请求审查，包括那些 “批准” 或 “请求更改” 的审查。限制审查，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。\",\n            \"Unset\": \"撤销\",\n            \"Limit reviews on all repositories\": \"限制对所有仓库的审查\",\n            \"Remove review limits from all repositories\": \"取消对所有仓库的审查限制\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"代码审查限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/repositories\"] = { // 设置 - 仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Repository 仓库 https://github.com/settings/repositories\n            \"Repository default branch\": \"仓库默认分支\",\n            \"Choose the default branch for your new personal repositories. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"为您新的个人仓库选择默认的分支。由于工作流程的不同，或者由于您的集成仍然需要 “master” 作为默认分支名，您可能想改变默认名称。您可以随时改变个人仓库的默认分支名称。\",\n            \"Learn more about default branches.\": \"了解更多关于默认分支的信息。\",\n            \"Deleted repositories\": \"删除的仓库\",\n            \"Leave\": \"离开\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) collaborators?/, \"$1 位协作者\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repositorys\": \"仓库\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/deleted_repositories\"] = { // 设置 - 仓库 - 删除的仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 删除的仓库 https://github.com/settings/deleted_repositories\n            \"Deleted repositories\": \"删除的仓库\",\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"仓库可能需要一个小时的时间才能显示在这里。您只能恢复不是复刻或没有被复刻的仓库。\",\n            \"Learn more about restoring deleted repositories\": \"了解更多关于恢复已删除仓库的信息\",\n\n            \"These repositories were deleted, but can't be restored by you. Contact support if you want to restore them.\": \"这些仓库已被删除，但您无法恢复。如果您想恢复它们，请联系 GitHub 支持人员。\",\n\n            \"Deleted\": \"删除于\",\n            // [/by/, \"由\"], // 删除的仓库\n            \"Restore\": \"恢复\",\n            \"Queue…\": \"排队中…\",\n            \"Done!\": \"完成!\",\n\n            // 恢复仓库 对话框\n            // [/Are you sure you want to restore ([^ ]+)?/, \"您确定要恢复 $1 吗？\"],\n            \"This repository will be in a private state when it is restored. To change this state, go to settings once the repo is restored.\": \"此仓库在恢复时将处于私有状态。要更改此状态，请在仓库恢复后转到设置。\",\n            \"Any team or collaborator permissions that previously existed for this repository will not be restored. If you require specific team or collaborator permissions, you will need to configure them in settings.\": \"此仓库以前存在的任何团队或协作者的权限将不会被恢复。如果您需要特定的团队或协作者权限，则需要在设置中配置。\",\n            \"I understand, restore this repository\": \"我明白了，依然恢复该仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable repositories were found for ([^ ]+)\\./, \"没有找到 $1 的可恢复仓库。\"],\n        [/by/, \"由\"], // 删除的仓库\n        [/Are you sure you want to restore ([^ ]+)?/, \"您确定要恢复 $1 吗？\"], // 删除的仓库\n    ],\n};\n\nI18N[\"zh-CN\"][\"settings/codespaces\"] = { // 设置 - 代码空间\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 代码空间 https://github.com/settings/codespaces\n            \"Dotfiles\": \"点文件\",\n            \"Automatically install dotfiles\": \"自动安装点文件\",\n            \"Codespaces can automatically install your dotfiles into every codespace you create.\": \"代码空间可以自动将您点文件安装到您创建的每个代码空间。\",\n            \"Learn how to set up your dotfiles for Codespaces.\": \"了解如何为代码空间设置点文件。\",\n            \"Select repository\": \"选择仓库\",\n            \"Search for a repository\": \"搜索仓库\",\n            \"Changes saved\": \"更改已保存\",\n\n            \"Secrets\": \"机密\",\n            \"Codespace user secrets\": \"代码空间用户机密\",\n            \"New secret\": \"新建机密\",\n            \"Development environment secrets are environment variables that are encrypted. They are available to any codespace you create using repositories with access to that secret.\": \"开发环境机密是加密的环境变量。它们可用于您可访问该机密的仓库创建的任何代码空间。\",\n            \"There are no Codespace secrets.\": \"尚无代码空间机密\",\n            \"Secrets created at the user level can be shared with specified repositories.\": \"在用户级别创建的机密可以与指定的仓库共享。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n            \"Updated\": \"更新于\",\n            // [/Are you sure you want to delete ([^ ]+)\\?/, \"您确定要删除 $1 吗？\"],\n\n            \"GPG verification\": \"GPG 验证\",\n                \"Codespaces can have GPG commit signing capabilities so that GitHub can verify that commits made in the codespace come from a trusted source. When enabled, this setting will be applied to your list of trusted repositories.\": \"代码空间可以具有 GPG 提交签名功能，以便 GitHub 可以验证代码空间中的提交是来自受信任的来源。启用后，该设置将被应用到您的受信任仓库列表中。\",\n                // \"Enabled\": \"启用\",\n                    \"GPG signing will be available in Codespaces\": \"GPG 签名将在代码空间中可用\",\n\n            \"Settings Sync\": \"设置同步\",\n                \"By enabling, your codespaces will be able to pull from VS Code Settings Sync service and push only for the trusted repositories you specify. Only enable this for repositories that you trust.\": \"通过启用，您的代码空间将能够从 VS Code 设置同步服务中提取数据，并仅推送您指定的受信任仓库。请只对您信任的仓库启用此功能。\",\n                // \"Enabled\": \"启用\",\n                    \"VS Code Settings Sync will be available in Codespaces\": \"VS Code 设置同步将在代码空间中可用\",\n\n            // 通知\n            \"When enabled, you will receive emails when your codespaces are nearing deletion due to inactivity.\": \"启用后，当您的代码空间因长时间未使用而即将被删除时，您将收到电子邮件通知。\",\n            \"Warning notifications for codespace deletions will be enabled\": \"代码空间删除警告通知将启用\",\n\n            \"Trusted repositories\": \"受信任仓库\",\n                \"The following repositories will be referenced by GPG verification and Settings Sync.\": \"以下仓库将被 GPG 验证和设置同步所引用。\",\n\n                \"All repositories\": \"所有仓库\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces for all repositories\": \"GPG 签名和 VS Code 设置同步将适用于所有仓库的代码空间\",\n                \"Selected repositories\": \"选定的仓库\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces from the selected repositories\": \"GPG 签名和 VS Code 设置同步将适用于选定仓库的代码空间\",\n                    \"Select repositories\": \"选择仓库\",\n                    // [/Selected (\\d+) repositor(y|ies)./, \"选定 #1 个仓库\"],\n                    \"GPG and VS Code Settings Sync will be available for Codespaces from these repositories.\": \"GPG 和 VS Code 设置同步将可用于这些仓库的代码空间。\",\n\n                \"Submit\": \"确定\",\n\n            \"Access and security\": \"访问和安全\",\n            \"Deprecated\": \"弃用\",\n            \"Codespaces you create for your personal account can either be restricted to accessing the repository it was opened for, or granted read access to other repositories you own.\": \"您为您个人账户创建的代码空间可以限制访问已启用的仓库或您其他被赋予读取权限的仓库\",\n            \"Disabled\": \"禁用\",\n            \"Limit access of personal Codespaces to the repository they were opened for\": \"限制个人代码空间只能访问对其打开的仓库\",\n            \"All Codespaces can access other repositories I own\": \"所有代码空间都可以访问我拥有的其它仓库\",\n            \"Personal Codespaces created for specific repositories can access other repositories I own\": \"为特定仓库创建的个人代码空间可以访问我拥有的其它仓库\",\n\n            \"Editor preference\": \"编辑器偏好\",\n                // VS code\n                    \"Connect to the cloud from your local desktop client. Requires\": \"从本地桌面客户端连接到云。要求\",\n                    \"with the\": \"安装\",\n                    \"GitHub Codespaces\": \"GitHub 代码空间\",\n                    \"extension.\": \"插件。\",\n\n                \"Visual Studio Code for the Web\": \"网络版的 Visual Studio Code\",\n                    \"Edit and preview changes straight from the browser.\": \"直接从浏览器编辑和预览更改。\",\n\n                // \"JetBrains Gateway\": \"\",\n                    \"Connect to the cloud from your local desktop client. Requires the\": \"从本地桌面客户端连接到云。要求\",\n                    \"plugin, and a JetBrains license.\": \"插件和 JetBrains 许可证。\",\n\n                // JupyterLab\n                    \"Edit and run notebooks from the browser with JupyterLab.\": \"使用 JupyterLab 从浏览器编辑和运行笔记本。\",\n\n            \"Default idle timeout\": \"默认空闲超时\",\n                \"A codespace will suspend after a period of inactivity. You can specify a default idle timeout value, which will apply to all codespaces created after the default is changed. You will be charged for the entire time your codespace is running, even if it is idle. The maximum value is\": \"一段时间不活动后，代码空间将暂停。您可以指定一个默认的空闲超时值，该值将应用于更改默认值后创建的所有代码空间。您将在代码空间运行的整个过程中付费，即使它是空闲的。最大值是\",\n                \"minutes (4 hours).\": \"分钟（4小时）。\",\n                \"minutes\": \"分钟\",\n\n            \"Default retention period\": \"默认保留期\",\n                \"Inactive codespaces are automatically deleted 30 days after the last time they were stopped. A shorter retention period can be set, and will apply to all codespaces created going forward. The default and maximum value is\": \"不活跃的代码空间在上次停止后 30 天自动删除。可以设置更短的保留期，并将应用于以后创建的所有代码空间。默认值和最大值是\",\n                \"days.\": \"天。\",\n                \"Learn about retention setting\": \"了解关于保留时间的设置\",\n                \"days\": \"天\",\n\n            \"Host image version preference\": \"主机镜像版本偏好\",\n                \"The host image defines the operating system in which development containers run. These images receive periodic upgrades for security, functionality, and performance. GitHub Codespaces offers early access to beta images to ensure compatibility with existing development container configurations. Any codespace created or resumed after changing this setting will use the specified image configuration.\": \"主机镜像定义了开发容器运行的操作系统。这些镜像会定期进行安全、功能和性能升级。GitHub 代码空间提供对测试版镜像的早期访问，以确保与现有开发容器配置的兼容性。更改此设置后创建或恢复的代码空间都将使用指定的镜像配置。\",\n                \"Learn more about host images\": \"了解更多关于主机镜像的信息\",\n                \"Stable\": \"稳定版\",\n                    \"Always use the latest stable configuration.\": \"始终使用最新的稳定版。\",\n                \"Beta\": \"测试版\",\n                    \"Use a beta image configuration when available. Otherwise, use the latest stable configuration.\": \"如果可用，请使用测试版映像配置。否则，请使用最新的稳定配置。\",\n\n            \"Region\": \"地区\",\n                \"Your default region will be used to designate compute resources to your codespaces. GitHub can set your region automatically based on your location, or you can set it yourself. Codespaces are deployed to a subset of Azure regions.\": \"您的默认区域将被用来为您的代码空间指定计算资源。 GitHub 可以根据您的位置自动设置您的区域，您也可以自己设置。代码空间部署到 Azure 区域的子集。\",\n                \"Set automatically\": \"自动设置\",\n                \"We will determine the closest available region based on your location (IP address) at codespace creation time.\": \"我们将在创建代码空间时根据您的位置（IP地址）确定最近的可用区域。\",\n                \"Set manually\": \"手动设置\",\n                \"Choose your default region\": \"选择您的默认区域\",\n                    \"United States\": \"美国\",\n                        \"US West\": \"美国西部\",\n                        \"US East\": \"美国东部\",\n                    \"Europe\": \"欧洲\",\n                        \"Europe West\": \"欧洲西部\",\n                    \"Asia Pacific\": \"亚太地区\",\n                        \"Southeast Asia\": \"东南亚\",\n                    \"Australia\": \"澳大利亚\",\n\n            // 顶部提醒\n                \"Secret added.\": \"机密已添加。\",\n                \"Secret deleted.\": \"机密已删除。\",\n                \"Secret updated.\": \"机密已更新。\",\n\n        // 代码空间 机密新建 https://github.com/settings/codespaces/secrets/new\n            \"/ New secret\": \"/ 新建机密\",\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名称\",\n                \"YOUR_SECRET_NAME\": \"您的机密名称\",\n                \"Secret name is required and must not start with GITHUB\": \"机密名称是必需的，并且不能以 GITHUB 开头\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"仓库权限\",\n            \"Available to\": \"适用于\",\n            \"repository\": \"仓库\",\n            \"This secret will not be active until at least 1 repository is selected.\": \"至少选择 1 个仓库，否则此机密不会处于活动状态。\",\n\n        // 编辑机密 https://github.com/settings/codespaces/secrets/<机密名称>/edit\n            \"/ Update secret\": \"/ 更新机密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"机密值已加密，无法显示，但您可以\",\n            \"enter a new value.\": \"输入一个新值。\",\n            \"Update secret\": \"更新机密\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Selected (\\d+) repositor(y|ies)./, \"选定 $1 个仓库\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/Are you sure you want to delete ([^ ]+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/Remove ([^ ]+)/, \"移除 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/models\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        \"Billing\": \"账单\",\n\n        \"Models paid usage\": \"使用付费模型\",\n            \"If enabled, usage beyond the free tier will be billed per token based on model pricing from your Models budget.\": \"如果启用，超出免费额度的使用将根据您模型预算中的模型定价按令牌计费。\",\n            \"Models pricing\": \"模型价格\",\n\n            \"To enable Models paid usage, a payment method is needed.\": \"要启用付费模型，需要添加支付方式。\",\n                \"Add payment method\": \"添加支付方式\",\n\n            \"You currently have\": \"您当前有\",\n                \"free rate limits\": \"免费额度\",\n                \". Enable paid usage to avoid interruption and add tokens.\": \"。启用付费使用以避免中断并添加令牌。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Models\": \"模型\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/packages\"] = { // 设置 - 软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n\n        // Packages 软件包 https://github.com/settings/packages\n            \"Packages permissions\": \"软件包权限\",\n\n            // 组织设置\n                \"Package creation\": \"包的创建\",\n                \"Members will be able to publish only the selected visibility types for packages and containers. Outside collaborators can never publish packages or containers.\": \"成员只能发布选定可见性类型的软件包和容器。外部协作者永远不能发布软件包或容器。\",\n                \"Public\": \"公共\",\n                    \"Members will be able to create public packages, visible to anyone.\": \"成员将能够创建公共包，对任何人都可见。\",\n                \"Private\": \"私有\",\n                    \"Members will be able to create private packages, visible to organization members with permission.\": \"成员将能够创建私有包，对具有权限的组织成员可见。\",\n                \"Internal\": \"内部\",\n                    \"Members will be able to create internal packages, visible to all organization/enterprise members.\": \"成员将能够创建内部包，对所有组织/企业成员可见。\",\n\n            \"Default Package Setting\": \"默认软件包设置\",\n            \"Default package settings\": \"默认软件包设置\", // 组织\n            \"This setting will be applied to new Container, npm, rubygems and NuGet packages.\": \"此设置将应用于新的容器、npm、rubygems 和 NuGet 软件包。\",\n            \"Inherit access from source repository\": \"从源仓库继承访问权限\",\n            \"Save\": \"保存\",\n\n            \"Deleted Packages\": \"删除的软件包\",\n            \"Deleted packages\": \"删除的软件包\", // 组织\n            \"These are packages that have been previously deleted belonging to you. You can restore a package deleted within the last 30 days.\": \"这些是先前已删除的属于您的软件包。您可以恢复在过去 30 天内删除的包。\",\n            \"These are packages that have been previously deleted belonging to this organization. You can restore a package deleted within the last 30 days.\": \"这些是先前已删除的属于您组织的软件包。您可以恢复在过去 30 天内删除的包。\", // 组织设置\n            \"Search deleted packages\": \"搜索已删除的软件包\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable packages were found for ([^ ]+)./, \"没有找到 $1 的可恢复包。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Packages\": \"软件包\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/packages\"] = I18N[\"zh-CN\"][\"settings/packages\"];\n\nI18N[\"zh-CN\"][\"settings/copilot\"] = { // 设置 - GitHub Copilot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // GitHub Copilot https://github.com/settings/copilot/features\n            \"Trained on billions of lines of code,\": \"经过数十亿行代码的训练，\",\n            \"turns natural language prompts into coding suggestions across dozens of languages.\": \"将自然语言提示转换为多种语言的编码建议。\",\n            \"Start free trial\": \"开始免费试用\",\n            \"After that $10/month\": \"结束试用后 $10 / 月\",\n            \"Get Copilot from an organization\": \"从组织中获取 GitHub Copilot\",\n            \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"组织可以为其成员（包括您）及其团队提供使用 GitHub Copilot 的权限。\",\n            \"Organizations owned by enterprise accounts\": \"企业账户拥有的组织\",\n            \"are not currently listed.\": \"目前未包含在此计划中。\",\n            \"You do not belong to any organizations.\": \"您不属于任何组织。\",\n            \"Create an organization\": \"创建一个组织\",\n\n            \"Ask admin for access\": \"向管理员请求访问权限\",\n            \"Requesting...\": \"请求中…\",\n            \"Remove request\": \"撤销请求\",\n            \"Cancelling...\": \"撤销中…\",\n            \"Buy Copilot Business\": \"购买 GitHub Copilot 企业版\",\n            \"Owner\": \"所有者\",\n            \"Member\": \"成员\",\n\n            \"Getting started\": \"开始使用\",\n                \"complete\": \"完成\",\n                \"Remove section\":\"移除区域\",\n            \"Install Copilot in your editor\": \"在您的编辑器中安装 Copilot\",\n            \"Ask about coding problems and get code completions while you work.\": \"在工作时询问问题并获得代码补全。\",\n            \"Chat with Copilot anywhere\": \"随时随地与 Copilot 聊天\",\n            \"Open\": \"在 GitHub 的任何位置打开导航栏中的\",\n            \"Copilot chat in the navigation from anywhere on GitHub. Try asking\": \"按钮，即可与 Copilot 聊天。尝试询问\",\n            \"“what can I do with Copilot?”\": \"“我能用 Copilot 做什么？”\",\n            \"to get started.\": \"来开始聊天。\",\n            \"Go to Copilot\": \"前往 Copilot\",\n            \"Start building with Copilot\": \"使用 Copilot 开始构建项目\",\n            \"Learn how to build with Copilot in Visual Studio Code or Visual Studio.\": \"学习如何在 Visual Studio Code 或 Visual Studio 中使用 Copilot 来构建项目\",\n            \"Get started\": \"开始\",\n\n        // 免费版\n            \"You are using Copilot for free\": \"您正在使用 Copilot 免费版\",\n                \"Responses are limited to 2,000 code completions and 50 chat messages per month.\": \"回复上限为每月 2,000 次代码完成和 50 条聊天信息。\",\n                \"Upgrade for higher limits, premium models, AI reviews. Free responses reset in 20 days.\": \"升级以获得更高的限制、高级模型和 AI 评审。免费版的会话将在 20 天后重置。\",\n            \"Get unlimited usage with Copilot Pro\": \"通过 Copilot Pro 无限制使用\",\n                \"Unlimited messages and interactions\": \"信息和互动无限制\",\n                \"Access to the latest models\": \"访问最新模型\",\n                \"Customize conversations to your private codebase and extensions\": \"为您的私人代码库和扩展定制会话\",\n                \"Start a free trial\": \"免费试用\",\n                \"Code completions\":\"代码补全\",\n                \"Chat messages\":\"聊天信息\",\n\n            \"Copilot policies\": \"Copilot 规则\",\n                \"Copilot Chat in GitHub.com\": \"在 GitHub.com 中使用 Copilot Chat\",\n                    \"You can use Copilot Chat in GitHub.com. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。Copilot 代码审查和预览功能仅适用于付费版。\",\n                    \"You can use Copilot Chat in GitHub.com. Preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。预览功能仅适用于付费版。\",\n                    \"Learn more about Copilot in GitHub.com\": \"了解更多关于在 GitHub.com 中使用 Copilot 的信息\",\n                \"Editor preview features\": \"编辑器预览功能\",\n                    \"You can use preview features in your editor.\": \"您可以在编辑器中使用预览功能。\",\n                \"Suggestions matching public code\": \"公共代码匹配的建议\",\n                    \"Copilot can allow or block suggestions matching public code. Learn more about\": \"Copilot 可允许或阻止与公共代码匹配的建议。了解更多关于\",\n                    \"code suggestions\": \"代码建议\",\n                    \"Allowed\": \"允许\",\n                        \"GitHub Copilot will show suggestions matching public code.\": \"GitHub Copilot 将显示与公共代码匹配的建议。\",\n                    \"Blocked\": \"阻止\",\n                        \"GitHub Copilot won't show suggestions matching public code.\": \"GitHub Copilot 不会显示与公共代码匹配的建议。\",\n                \"Allow GitHub to use my data for product improvements\": \"允许 GitHub 将数据用于产品改进\",\n                //\"Allow GitHub to use my code snippets from the code editor for product improvements\": \"允许 GitHub 将代码编辑器中的代码片段用于产品改进\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for product improvements. More information in the\": \"允许GitHub、其关联公司和第三方使用我的数据，包括提示、建议和代码片段，以改进产品。更多信息请查看\",\n                    //\"Allow GitHub, its affiliates and third parties to use my code snippets to research and improve GitHub Copilot suggestions, related models and product features. More information in the\": \"允许 GitHub、其附属机构和第三方使用我的代码片段来研究和改进 GitHub Copilot 建议、相关模型和产品功能。更多\",\n                    \"About GitHub Copilot privacy.\": \"关于 GitHub Copilot 隐私的信息。\",\n                \"Allow GitHub to use my data for AI model training\": \"允许 GitHub 将数据用于训练 AI 模型\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for AI model training. More information in the\": \"允许GitHub、其关联公司和第三方使用我的数据，包括提示、建议和代码片段，以训练 AI 模型。更多信息请查看\",\n                \"Copilot can search the web\": \"网络搜索\",\n                    \"Copilot can answer questions about new trends and give improved answers, via Bing. See\": \"Copilot 可以回答有关新趋势的问题并给出改进的答案，通过必应。请参阅\",\n                    \"Microsoft Privacy Statement\": \"微软隐私声明\",\n\n                    \"GitHub Copilot will answer questions about new trends and give improved answers\": \"GitHub Copilot 将回答有关新趋势的问题并给出改进的答案\",\n                    \"GitHub Copilot won't answer questions about new trends and give improved answers\": \"GitHub Copilot 将不会回答有关新趋势的问题并给出改进的答案\",\n                    \"Select an option\": \"选择\",\n                        \"You will have access to the feature\": \"您将能够访问此功能\",\n                        \"You won’t have access to the feature\": \"您将不能访问此功能\",\n                \"Learn more about how GitHub Copilot serves OpenAI GPT-5-Codex and confirm compatibility with your IDE in our documentation.\": \"了解更多关于 GitHub Copilot 如何为 OpenAI GPT-5-Codex 提供服务，并确认与您的 IDE 的兼容性。\",\n                \"Dashboard entry point\": \"仪表板入口\",\n                    \"Allows instant chatting when landing on GitHub.com\": \"允许登录 GitHub.com 时即时聊天\",\n                \"Copilot code review\": \"Copilot 代码审查\",\n                    \"Use Copilot to\": \"使用 Copilot\",\n                    \"review your code\": \"审查代码\",\n                    \"and generate\": \"并生成\",\n                    \"pull request summaries\": \"拉取请求总结\",\n\n                    \"Automatically request Copilot code review\": \"自带请求 Copilot 代码审查\",\n                        \"Use Copilot to automatically review all the pull requests you've created.\": \"使用 Copilot 自动审查您创建的拉取请求。\",\n\n            \"For more information about the data your organization receives regarding your use of GitHub Copilot, please review\": \"如需了解贵机构在使用 GitHub Copilot 时会收到哪些数据，请查看\",\n                \"GitHub's Privacy Statement\": \"GitHub 的《隐私声明》\",\n            \"It can take up to 30 minutes for the changes to take effect. Restart your code editor for the changes to take effect immediately.\": \"更改可能需要 30 分钟才能生效。重新启动代码编辑器，更改会立即生效。\",\n\n            \"Visibility\": \"可见度\",\n                \"Show Copilot\": \"显示 Copilot\",\n                \"Enable Copilot for all GitHub features, including navigation bar, search, and dashboard.\": \"为所有 GitHub 功能启用 Copilot，包括导航栏、搜索和仪表板。\",\n                \"When disabled, Copilot will be hidden and unavailable. This setting does not apply to Copilot search on GitHub Docs.\": \"禁用后，Copilot 将隐藏且不可用。此设置不适用于 GitHub Docs 中的 Copilot 搜索。\",\n\n        // 专业版\n            // 顶部提醒\n                \"It appears you are not eligible to sign up to GitHub Copilot for free\": \"您似乎没有资格免费注册 GitHub Copilot\",\n            \"Your GitHub Copilot setup is incomplete. Select your preferences below to start using GitHub Copilot.\": \"您的 GitHub Copilot 设置不完整。请在下面选择您的偏好，开始使用 GitHub Copilot。\",\n\n            \"GitHub Copilot Pro is active for your account\": \"您的 GitHub Copilot Pro 帐户已激活\",\n                \"You currently have an active\": \"您当前拥有有效的\",\n                \"Copilot Pro subscription\": \"GitHub Copilot Pro 订阅\",\n                \"Get started by installing the extension in your preferred IDE.\": \"首先在您首选的 IDE 中安装扩展。\",\n                \"Get started by installing the extension in your preferred environment.\": \"首先在您首选环境中安装扩展。\",\n                \"Copilot in your IDE\": \"集成在 IDE\",\n                \"Copilot in the CLI\": \"在终端中使用\",\n                \"Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用\",\n                \"More features\": \"更多功能\",\n\n            \"Premium requests\": \"高级请求\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. You can enable additional premium requests in the\": \"请注意，显示的使用百分比可能会有延迟。您计划的高级请求权限将在下个月初重置。您可以在以下位置启用额外的高级请求：\",\n                \"Billing settings\": \"账单设置\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. To enable additional premium requests,\": \"请注意，显示的使用百分比可能会有延迟。您计划的高级请求权限将在下个月初重置。要启用额外的高级请求，请\",\n                \"update your Copilot premium request budget\": \"更新您的 Copilot 高级请求预算\",\n\n            \"Features\": \"功能\",\n                // \"Copilot in github.com\": \"在 github.com 中使用 Copilot\",\n                    //\"You can use Copilot Chat in Github.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 Github.com 中使用 Copilot Chat，也可以使用 Copilot 拉取请求和所有预览功能。\",\n                    \"You can use Copilot Chat in GitHub.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 GitHub.com 中使用 Copilot Chat，Copilot 拉取请求和所有预览功能。\",\n                    \"You can use Copilot Chat in GitHub.com and Copilot for pull requests. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 上使用 Copilot Chat，也可以在拉取请求中使用 Copilot。Copilot 的代码审查和预览功能仅对付费许可证用户开放。\",\n\n                // \"Copilot in the CLI\": \"在终端中使用\",\n                    \"You can use\": \"您可以\",\n                    \"GitHub Copilot for assistance in terminal\": \"GitHub Copilot 终端辅助工具\",\n                \"Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"GitHub Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"to explain a piece of code, propose bug fixes, or generate unit tests in a chat interface from your editor.\": \"在编辑器的聊天界面上解释代码、提出错误修复建议或生成单元测试。\",\n                \"Copilot Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用 Copilot Chat\",\n                    \"personalized to a codebase.\": \"，个性化代码。\",\n                \"Copilot in GitHub Desktop\": \"在 GitHub Desktop 中使用\",\n                    \"GitHub Copilot for assistance in GitHub Desktop\": \"在 GitHub Desktop 中获得 Copilot 的协助\",\n                \"Automatic Copilot code review\": \"自动 Copilot 代码审查\",\n                    \"Copilot will automatically review your pull requests.\": \"Copilot 将自动审查您的拉取请求。\",\n                    \"Learn more about configuring automatic code reviews.\": \"了解如何配置自动代码审查。\",\n                \"Copilot coding agent\": \"Copilot 编程智能体\",\n                    \"With Copilot coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用 Copilot 编程智能体，您可以将任务委托给 Copilot，从而让您专注于最具创造性的、复杂且影响深远的工作。只需将问题分配给 Copilot，等待智能体请求您审查，然后在拉取请求中留下反馈以进行迭代。\",\n                    \"Delegate tasks to Copilot coding agent in repositories where it is enabled\": \"将任务委托给已启用 Copilot 编程智能体的仓库\",\n                \"MCP servers in Copilot\": \"Copilot 中的 MCP 服务器\",\n                    \"Connect MCP servers to Copilot in all Copilot editors and Coding Agent.\": \"在所有 Copilot 编辑器和编程智能体中连接 MCP 服务器。\",\n                // Grok\n                    \"If enabled, you can access and send data to xAI Grok Code Fast 1.\": \"若启用，您可以访问 xAI Grok Code Fast 1 并发送数据。\",\n                \"Copilot-generated commit messages\" : \"Copilot 生成的提交消息\",\n                    \"Allow Copilot to suggest commit messages when you make changes on GitHub.com.\": \"允许 Copilot 在您于 GitHub.com 上进行更改时提供提交消息建议。\",\n                    \"Learn more about Copilot-generated commit messages.\": \"了解更多关于 Copilot 生成的提交消息。\",\n                \"Copilot Spaces\": \"Copilot 空间\",\n                    \"If enabled, you can view and create\": \"若启用，您可以查看和创建\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot view or create any Copilot Spaces.\": \"。当禁用时，您无法查看或创建任何 Copilot 空间。\",\n                \"Choose which repositories Copilot coding agent should be enabled in. Copilot coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"选择要在其中启用 Copilot 编程智能体的仓库。Copilot 编程智能体仅在为该仓库启用并符合 Copilot 许可证政策的情况下可用。\",\n                \"Copilot Spaces Individual Access\":\"Copilot Spaces 个人访问权限\",\n                    \"If enabled, you can create individually owned\":\"若启用，您可以创建个人拥有的\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot create individual spaces.\":\"。当禁用时，您无法创建个人空间。\",\n                \"Copilot Spaces Individual Sharing\":\"Copilot Spaces 个人分享\",\n                    \"If enabled, you can share individually owned\": \"若启用，您可以分享个人拥有的\",\n                    \"Copilot Spaces\": \"Copilot 空间\",\n                    \". When disabled, you cannot share individual spaces.\":\"。当禁用时，您无法分享个人空间。\",\n\n\n\n        // 编程智能体(预览 https://github.com/settings/copilot/coding_agent\n            // 顶部提示\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以为其他用户启用 Copilot 编程智能体，但由于您没有 Copilot Pro+ 或 Copilot 企业版许可证，因此无法向 Copilot 分配任务。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because the Copilot coding agent policy has been disabled by an administrator.\":  \"您可以为其他用户启用 Copilot 编程智能体，但由于管理员已禁用 Copilot 编程智能体策略，您将无法向 Copilot 分配任务。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro, Copilot Pro+, Copilot Business or Copilot Enterprise license.\": \"虽然您可以为其他用户启用 Copilot 编码代理，但由于您未持有 Copilot Pro、Copilot Pro+、Copilot Business、Copilot Enterprise 许可证，因此无法向 Copilot 分配任务。\",\n\n            \"With Coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用编程智能体，您可以将任务委派给 Copilot，从而让您专注于最具创造性的、复杂且影响深远的工作。只需将问题分配给 Copilot，等待智能体请求您审查，然后在拉取请求中留下反馈以进行迭代。\",\n                \"Learn more in the docs.\": \"详情\",\n\n            \"Repository access\": \"仓库访问\",\n                \"Choose which repositories Coding agent should be enabled in. Coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"选择要启用编程智能体的仓库。编程智能体仅在为该仓库启用并符合 Copilot 许可证政策的情况下可用。\",\n\n                \"No repositories\": \"无仓库\",\n                // 所有\n                    \"Include all current and future repositories\": \"包括所有当前和未来的仓库\",\n                \"Only selected repositories\": \"手动选择\",\n                    \"Applies only to specifically selected repositories\": \"仅适用于您选择的仓库\",\n\n                    \"Search or filter\": \"搜索或筛选\",\n                        \"Mirror\": \"镜像\",\n                        \"Custom properties\": \"自定义属性\",\n                        \"Language\": \"语言\",\n                        \"License\": \"许可证\",\n                        \"Exclude\": \"排除\",\n\n                    \"Select all\": \"全选\",\n\n                    \"of\": \"/\",\n                    \"items shown.\": \"仓库显示。\",\n                    \"Use the search to find specific items\": \"搜索查找特定仓库\",\n\n                    \"Select\": \"选择\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 编程智能体需遵守\",\n                \"pre-release terms\": \"预发行条款\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的外部协作者\"],\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 个仓库的成员和协作者\"],\n        [/Upgrade for higher limits, premium models, AI reviews. Free responses reset in (\\d+) days.?/, \"升级以获取更高的限制、高级模型和 AI 审核。免费额度将在 $1 天内重置。\"], // 免费版额度\n        [/You can use the latest (.+) model\\./, \"您可以使用最新的 $1 模型。\"],\n        [/Learn more about how GitHub Copilot serves (.+)\\./, \"了解更多关于 GitHub Copilot 如何为 $1 提供服务。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 编程智能体\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/pages\"] = { // 设置 - GitHub Pages\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置菜单\n\n        // GitHub Pages https://github.com/settings/pages\n            \"Verified domains\": \"经验证的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"There are no verified domains.\": \"暂无经验证的域名\",\n            \"There are no verified domains for this organization.\": \"此组织暂无经验证的域名\", // 组织设置\n            \"Verify domains to restrict who can publish GitHub Pages on them.\": \"验证域名以限制谁可以在上面发布 GitHub Pages。\",\n            \"One of your domains is unverified. Please verify it to prevent others from claiming it for their Pages sites.\": \"您添加的域名之一未经验证，请对其进行验证，以防止其他人在其主页网站上声明该信息。\",\n            \"Please verify your domain\": \"请验证您的域名\",\n            \"Continue verifying\": \"继续验证\",\n            \"Review verification steps\": \"查看验证步骤\",\n\n            // 域名删除对话框\n            \"Delete verified domain\": \"删除已验证的域名\",\n            \"This is a destructive action. Your GitHub Pages sites may lose their custom domains.\": \"这是一个破坏性的操作，您的 GitHub Pages 网站可能会失去自定义域名。\",\n            \"Your GitHub Pages sites may be unpublished from their custom domains if another organization claims ownership of this domain.\": \"如果其他组织声称拥有此域名的所有权，您的 GitHub Pages 网站可能会被从此自定义域名中取消发布。\",\n            \"Please type\": \"请输入\",\n            \"to confirm.\": \"进行确认\",\n            \"I understand, delete verified domain\": \"我明白了，依然删除已验证的域名\",\n\n        // GitHub Pages - 添加域名 https://github.com/settings/pages_verified_domains/new\n            \"Add a verified domain\": \"经验证的域名\",\n            \"What domain would you like to add?\": \"您想添加什么域名？\",\n            \"Add domain\": \"添加域名\",\n            \"Domain name has already been added\": \"域名已添加\",\n            \"Add a DNS TXT record\": \"添加 DNS TXT 记录\",\n            \"Before we can verify\": \"在我们验证\",\n            \", you'll need to complete these steps:\": \" 之前，您需要完成以下步骤：\",\n            \"Create a TXT record in your DNS configuration for the following hostname:\": \"在 DNS 配置中为以下主机创建 TXT 记录：\",\n            \"Use this code for the value of the TXT record:\": \"使用以下代码作为 TXT 记录的值：\",\n            \"Wait until your DNS configuration changes. This could take up to 24 hours to propagate.\": \"等待您的 DNS 变更解析生效，最长可能需要 24 小时。\",\n            \"Verify\": \"验证\",\n            \"Copy verification steps\": \"复制验证步骤\",\n            \"Your domain is verified. No further action is needed.\": \"您的域名已验证，无需其它操作。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Successfully verified/, \"已成功验证\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/pages\"] = I18N[\"zh-CN\"][\"settings/pages\"];\n\nI18N[\"zh-CN\"][\"settings/replies\"] = { // 设置 - 快捷回复\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Saved replies 快捷回复 https://github.com/settings/replies\n            \"Saved replies are re-usable text snippets that you can use throughout GitHub comment fields. Saved replies can save you time if you’re often typing similar responses.\": \"快捷回复是可重复使用的文本片段，您可以在整个 GitHub 评论区使用。如果您经常输入类似的回复，快捷回复可以节省您的时间。\",\n            \"Learn more about working with saved replies\": \"了解更多关于使用快捷回复的信息\",\n            \"No saved replies yet.\": \"暂时没有快捷回复。\",\n            \"Add a saved reply\": \"添加快捷回复\",\n            \"Saved reply title\": \"快捷回复的标题\",\n            \"Add a short title to your reply\": \"为您的快捷回复添加简短的标题\",\n            \"Add your saved reply\": \"添加您的快捷回复\",\n            \"Add saved reply\": \"添加快捷回复\",\n            \"Your saved reply was created successfully.\": \"您的快捷回复已成功创建。\",\n            \"Edit saved reply\": \"编辑快捷回复\",\n            \"Update saved reply\": \"更新快捷回复\",\n            \"Your saved reply was updated successfully.\": \"您的快捷回复已成功更新。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Saved replies\": \"快捷回复\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security_analysis\"] = { // 设置 - 代码安全性与分析\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 代码安全性与分析 https://github.com/settings/security_analysis\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repositories.\": \"安全和分析功能有助于确保您的仓库安全和更新。通过启用这些功能，您授予我们对您的仓库执行只读分析的权限。\",\n\n            \"User\": \"用户\",\n                \"Security and analysis features help keep you secure and updated, wherever you are.\": \"无论您身在何处，安全和分析功能都可以帮助您保持安全并及时更新。\",\n\n                \"Keep your public pushes safe with push protection\": \"通过推送保护确保您的公共推送安全\",\n                \"GitHub will enable push protection for all GitHub Free individuals in January 2024. Enable below to try it now in beta.\": \"GitHub 将于 2024 年 1 月为所有 GitHub 免费用户启用推送保护。在下面启用以立即在测试版中尝试。\",\n                    \"Dismiss\": \"忽略\",\n\n                \"Push protection for yourself\": \"启用推送保护\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的机密\",\n                    \"across all public repositories on GitHub.\": \"涵盖 GitHub 上的所有公共仓库。\",\n\n                    // 对话框\n                        \"Enable push protection for yourself\": \"为自己启用推送保护\",\n                            \"Pushes that contain secrets will be blocked on public repositories. You'll have the option to bypass the block.\": \"包含机密的推送将在公共仓库中被阻止。您可以选择绕过该阻止。\",\n                            \"Enable push protection\": \"启用推送保护\",\n\n                        \"Disable push protection for yourself\": \"为自己禁用推送保护\",\n                            \"Pushes that contain secrets will not be blocked.\": \"包含机密的推送将不会被阻止。\",\n                            \"Disable push protection\": \"禁用推送保护\",\n\n                        // 顶部提醒\n                            // [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了 $1 的仓库的安全设置。\"],\n\n            // 仓库\n                 \"Security and analysis features help keep your repositories secure and updated.\": \"安全和分析功能有助于确保您的代码仓库安全且保持更新。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"启用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n                \"Automatically enable for new public repositories\": \"为新公共仓库自动启用\",\n\n                // 对话框\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞报告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中禁用私下漏洞报告。\"],\n                        \"Enable by default for new public repositories\": \"默认启用新公共仓库\",\n\n                    \"Enable private vulnerability reporting\": \"启用私下漏洞报告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中启用私下漏洞报告。\"],\n\n            \"Dependency graph\": \"依赖项关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n                \"Automatically enable for new private repositories\": \"为新私有仓库自动启用\",\n\n                // 对话框\n                    \"Enable dependency graph\": \"启用依赖项关系图\",\n                        \"You're about to enable dependency graph on all your private repositories.\": \"您即将启用您所有私有仓库上的依赖项关系图。\",\n                        \"Enable by default for new private repositories\": \"默认为新私有仓库启用\",\n\n                    \"Disable dependency graph\": \"禁用依赖项关系图\",\n                        \"You're about to disable dependency graph on all your private repositories. This will also disable Dependabot alerts and Dependabot security updates on those repositories.\": \"您即将禁用您所有私有仓库上的依赖项关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖项的安全和最新\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖项的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                        \"Configure alert notifications\": \"配置警报通知\",\n                    \"Automatically enable for new repositories\": \"为新仓库自动启用\",\n\n                    // 对话框\n                        \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                            \"You're about to enable Dependabot alerts on all your repositories. Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled.\": \"您即将启用您所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖项关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\",\n                                \"Enable by default for new repositories\": \"默认为新仓库启用\",\n\n                        \"Disable Dependabot alerts\": \"禁用 Dependabot 警报\",\n                            \"You're about to disable Dependabot alerts on all your repositories. This will also disable Dependabot security updates on those repositories.\": \"您即将禁用您所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\",\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。\",\n                        \"Dependabot rules\": \"Dependabot 规则\",\n\n                    // 对话框\n                        \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                            \"You're about to enable Dependabot security updates on all your repositories. Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories.\": \"您即将启用您所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们也将为所有仓库启用他们。\",\n\n                        \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                            \"You're about to disable Dependabot security updates on all your repositories.\": \"您即将禁用您所有仓库上的 Dependabot 安全更新。\",\n\n                \"Grouped security updates\": \"分组安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。此选项可能会被 dependentabot.yml 中指定的分组规则覆盖 -\",\n                    \"Learn how to group updates.\": \"了解如何配置分组更新\",\n\n                    // 对话框\n                        \"Enable grouped security updates\": \"启用分组安全更新\",\n                            \"You're about to enable grouped security updates on all your repositories. Grouped security updates require the dependency graph, Dependabot alerts and Dependabot security updates, so we'll also turn that on for all repositories.\": \"您即将启用您所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot 警报和 Dependabot 安全更新，因此我们也将为所有仓库启用他们。\",\n\n                        \"Disable grouped security updates\": \"禁用分组安全更新\",\n                            \"You're about to disable grouped security updates on all your repositories.\": \"您即将禁用您所有仓库上的分组安全更新。\",\n\n                \"Dependabot on Actions runners\": \"Dependabot 应用于操作运行器\",\n                    \"Run Dependabot security and version updates on Actions runners.\": \"在操作运行器上运行 Dependabot 安全和版本更新。\",\n\n                    // 对话框\n                        \"Enable dependabot on actions\": \"在操作中启用 Dependabot\",\n                            \"You're about to enable dependabot on actions on all your repositories. Dependabot on actions requires Actions so we'll also turn that on for all repositories.\": \"您将要在所有仓库操作中启用 dependabot 。操作中的 Dependabot需要操作，因此我们还将为所有仓库启用它。\",\n\n                        \"Disable dependabot on actions\": \"在操作中禁用 Dependabot\",\n                            \"You're about to disable dependabot on actions on all your repositories.\": \"您将要在所有仓库操作中禁用 Dependabot。\",\n\n                \"Dependabot on self-hosted runners\": \"Dependabot 应用于自托管运行器\",\n                    \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自托管运行程序上运行 Dependabot 安全和版本更新。\",\n\n                    // 对话框\n                        \"Enable dependabot self-hosted\": \"在自托管运行器上启用 Dependabot\",\n                            \"You're about to enable dependabot self-hosted on all your repositories. Dependabot self-hosted depends on Dependabot on Actions so we'll also turn that on for all repositories.\": \"您将在所有仓库上启用 dependabot 自托管。Dependabot 自托管依赖于操作中的 Dependabot，因此我们还将为所有仓库启用它。\",\n\n                        \"Disable dependabot self-hosted\": \"在自托管运行器上禁用 Dependabot\",\n                            \"You're about to disable dependabot self-hosted on all your repositories.\": \"您将在所有仓库上禁用 dependabot 自托管。\",\n\n            \"Secret scanning\": \"机密扫描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有关检测到的机密、密钥或其他令牌的警报。\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 会随时向合作伙伴发送公共仓库中检测到的机密警报。\",\n                \"Learn more about partner patterns\": \"了解更多关于合作伙伴模式的信息\",\n\n                // 对话框\n                    \"Enable secret scanning for eligible repositories?\": \"启用符合条件的仓库的机密扫描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"这将为所有公共仓库启用机密扫描。\",\n                        \"Enable for eligible repositories\": \"启用符合条件的仓库\",\n\n                    \"Disable secret scanning?\": \"禁用机密扫描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"这将禁用所有仓库的机密扫描。\",\n                        \"Disable secret scanning\": \"禁用机密扫描\",\n\n                \"Push protection\": \"推送保护\",\n                    // \"Block commits that contain\": \"阻止提交，包含\",\n                    // \"supported secrets\": \"受支持的机密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自动启用对添加到机密扫描的仓库进行扫描\",\n\n                    // 对话框\n                        \"Enable push protection for eligible repositories?\": \"启用符合条件的仓库的推送保护？\",\n                            \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"这将为所有已启用秘密扫描的仓库启用推送保护。\",\n\n                        \"Disable push protection?\": \"禁用推送保护？\",\n                            \"This will disable push protection on all repositories where it is enabled.\": \"这将禁用所有仓库的推送保护。\",\n                            \"You can still enable push protection at the repository level.\": \"您仍然可以在仓库级别启用推送保护。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中禁用私下漏洞报告。\"],\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将在 $1 的所有公共仓库中启用私下漏洞报告。\"],\n        [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了$1 的仓库的安全设置。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security & analysis\": \"安全与分析\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/installations\"] = { // 设置 - 应用/安装的 GitHub 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n        \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n        \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n\n        // 安装的 GitHub 应用 https://github.com/settings/installations\n            // 顶部提醒\n                // [/You're all set! (.*) has been uninstalled./, \"一切就绪！$1 已被卸载。\"],\n                // [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就绪！卸载 “$1” 应用的任务已排队等候。\"],\n                // [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安装在 $2 账户上。\"],\n                // [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$1 账户的 $1 已更新。\"],\n\n            // \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n                \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 应用通过商业、开源和自主开发的工具来增强和扩展您在 GitHub 上的工作流程。\",\n                \"Permission updates requested.\": \"待处理的 GitHub 权限请求\",\n\n            \"Pending GitHub Apps installation requests\": \"待处理的 GitHub 应用安装请求\", // 组织设置\n                \"Members in your organization can request that GitHub Apps be installed. Pending requests are listed below.\": \"您组织中的成员可以请求安装 GitHub 应用。下面列出了待处理的请求。\",\n\n            \"No installed GitHub Apps\": \"没有已安装的 GitHub 应用\",\n            \"You have no GitHub Apps installed on this account.\": \"此账户上没有安装任何 GitHub 应用。\",\n            \"Configure\": \"配置\",\n            \"Suspended\": \"已暂停\",\n            \"Visit Marketplace\": \"访问市场\",\n            \"My GitHub Apps\": \"我的 GitHub 应用\",\n\n        // 安装的 GitHub 应用设置 https://github.com/settings/installations/<id>\n            // 顶部提醒\n                // [/Your installation was suspended by you on/, \"您的安装已暂停于\"],\n                \"Your app has been unsuspended\": \"您的应用已被取消暂停\",\n\n            \"Installed\": \"安装于\",\n            \"Developed by\": \"开发者\",\n            \"App settings\": \"应用设置\",\n            \"Permissions\": \"权限\",\n                // [/is requesting an update to its permissions./, \"正在请求更新其权限。\"],\n                \"Read\": \"读取\",\n                \"write\": \"写入\",\n                \"access to metadata\": \"元数据的权限\",\n                \"Review request\": \"审核请求\",\n                \"Access public information (read-only)\": \"访问公开信息（只读）\",\n                \"Access user email addresses (read-only)\": \"访问用户电子邮件地址（只读）\",\n                \"Read all user profile data\": \"读取所有用户个人资料数据\",\n                \"Create gists\": \"创建代码片段\",\n                \"Full control of private repositories\": \"完全控制私有仓库\",\n                \"Update github action workflows\": \"更新 GitHub Action 工作流\",\n                \"Update all user data\": \"更新所有用户数据\",\n                \"Full control of codespaces\": \"完全控制 Codespaces\",\n                \"Read all user profile data\": \"读取所有用户个人资料数据\",\n\n            \"Repository access\": \"仓库访问权限\",\n            \"All repositories\": \"所有仓库\",\n                \"This applies to all current and future repositories owned by the resource owner. Also includes public repositories (read-only).\": \"这适用于资源所有者拥有的所有当前和未来的仓库。还包括公共仓库（只读）。\",\n            \"Only select repositories\": \"仅选定的仓库\",\n                \"Select at least one repository. Also includes public repositories (read-only).\": \"至少选择一个仓库。还包括公共仓库（只读）。\",\n                // [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n            \"Select repositories\": \"选择仓库\",\n            \"Search for a repository\": \"搜索仓库\",\n\n            \"Danger zone\": \"危险区\",\n            \"Suspend your installation\": \"暂停使用\",\n            \"This will block the app access to your resources.\": \"这将阻止应用访问您的资源。\",\n            \"Suspend\": \"暂停\",\n                // 取消按钮 提醒信息\n                \"Are you sure you want to suspend this GitHub App?\": \"您确定要暂停此 GitHub 应用吗？\",\n            \"This will remove the app and revoke access to all resources.\": \"这将删除应用并撤销对所有资源的访问权限。\",\n            // [/Uninstall \"(.*)\"/, \"卸载 “$1”\"],\n            \"Uninstall\": \"卸载\",\n                // 取消按钮 提醒信息\n                // [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作无法撤消。您确定要从 1 个仓库中卸载此 GitHub 应用吗？\"],\n            \"Unsuspend your installation\": \"取消暂停\",\n                \"This grant the app access to your resources.\": \"这将授予应用访问您的资源。\",\n                \"Unsuspend\": \"取消暂停\",\n\n            \"Report abuse\": \"举报滥用\",\n            \"Revoke\": \"撤销\",\n            \"Read more about connecting with third-party applications at\": \"了解更多关于与第三方应用连接的信息，请访问\",\n            \"GitHub Help\": \"GitHub 帮助\",\n\n        // 安装的 GitHub 应用授权更新 https://github.com/settings/installations/<id>/permissions/update\n            // [/The (.*) app by/, \"$1 应用（由\"],\n            \"is requesting updated permissions\": \"创建）正在请求更新权限\",\n\n            \"Read and write\": \"读写权限\",\n            \"Read-only\": \"只读权限\",\n            \"Admin\": \"管理员权限\",\n            \"access to\": \"针对\",\n            \"New request\": \"新请求\",\n            \"Show unchanged permissions\": \"显示未更改的权限\",\n            \"Hide unchanged permissions\": \"隐藏未更改的权限\",\n            \"Accept new permissions\": \"接受新权限\",\n            // [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您选择不接受新权限，“$1” 应用将保留其当前权限。\"],\n\n        // 授权的 GitHub 应用 https://github.com/settings/apps/authorizations\n            // \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n            \"No authorized applications\": \"无授权申请\",\n            \"You have no applications authorized to access your account.\": \"您没有授权访问您的账户的应用。\",\n\n        // 授权的 OAuth 应用 https://github.com/settings/applications\n            // \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n            \"You have granted\": \"您已经授权\",\n            \"access to your account.\": \"访问您的账户。\",\n            \"Revoke all\": \"撤销全部\",\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Alphabetical\": \"按字母排列\",\n            \"Recently used\": \"最近使用的\",\n            \"Least recently used\": \"最近使用最少的\",\n\n            \"Never used · Owned by\": \"从未使用 · 作者\",\n            \"Last used within the last week · Owned by\": \"最后一次使用是最近 1 周之内 · 作者\",\n\n            \"Report abuse\": \"举报滥用\",\n            \"Revoke\": \"撤销\",\n\n            // 撤销对话框\n            \"Are you sure you want to revoke authorization?\": \"您确定要撤销授权吗？\",\n            \"I understand, revoke access\": \"我明白了，依然撤销访问\",\n\n            // 全部撤销对话框\n            \"Are you sure you want to revoke access for all applications?\": \"您确定要撤销对所有应用的访问权限吗？\",\n            \"This will revoke access for\": \"这将撤销访问\",\n            \"all third-party\": \"所有第三方\",\n            \"OAuth applications. This action cannot be undone.\": \"OAuth 应用。此操作无法撤消。\",\n            \"Any SSH keys created on your behalf by applications will also be deleted.\": \"任何由应用代表您创建的 SSH 密钥也将被删除。\",\n            \"Type your username to confirm.\": \"输入您的用户名进行确认。\",\n            \"I understand, revoke access for everything\": \"我明白了，依然撤销对一切的访问\",\n\n            // 举报滥用对话框\n            \"Report Abuse\": \"举报滥用\",\n            \"More options\": \"更多选项\",\n            \"Revoking will deny future access to your account\": \"撤销授权，将拒绝今后访问您的账户\",\n\n        // 授权的 GitHub 应用授权设置 https://github.com/settings/connections/applications/<client-id>\n        // 授权的 OAuth 应用授权设置 https://github.com/settings/connections/applications/<id>\n            \"Never used\": \"从未使用\",\n            \"Last used within the last week\": \"最后一次使用是最近一周之内\",\n\n            \"Developed by\": \"开发者:\",\n            \"Permissions\": \"权限\",\n            \"Revoke access\": \"撤销授权\",\n                \"Are you sure you want to revoke authorization?\": \"您确定要撤销授权吗？\",\n                    // [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 将无法再访问 GitHub API。您无法撤销此操作。\"],\n                \"I understand, revoke access\": \"我明白了，依然撤销授权\",\n                    \"Revoking…\": \"撤消中…\",\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications you authorize will always have access to public data in your organizations.\": \"应用根据您授予的权限代表您访问数据。组织可控制允许哪些应用访问其私人数据。您授权的应用始终可以访问您组织中的公共数据。\",\n            \"Read about third-party access.\": \"了解关于第三方访问的信息。\",\n\n            \"Organization access\": \"组织权限\",\n                \"Grant\": \"批准\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"该组织允许应用访问上述权限中所述的组织数据。\",\n                \"Request\": \"请求\",\n                    \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予访问权限之前，应用无法访问组织的私有数据或修改其公共数据。\",\n\n        // 组织 OAuth 应用策略设置 /orgs/<orgs-name>/policies/applications/<id>\n            \"approval requested by\": \"请求批准:\",\n            \"Currently:\": \"当前\",\n                \"No private access\": \"无法访问私有\",\n                \"Approved\": \"已批准\",\n            \"Review third-party application access request\": \"审查第三方应用访问请求\",\n                \"Grant access\": \"批准访问\",\n                \"Granting access will give this application the ability to request access to private data in the\": \"授权该应用访问私有数据在\",\n                \"organization.\": \"组织。\",\n\n                \"Deny access\": \"拒绝访问\",\n                \"Denying access will remove this application’s ability to request access to private data in the\": \"拒绝该应用访问数据在\",\n\n            // 顶部提醒\n                // [/(.*) is authorized to access this organization’s resources/, \"$1 已获授权访问该组织的资源\"],\n                // [/(.*) is denied access this organization’s resources/, \"$1 被拒绝访问该组织的资源\"],\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications authorized by members will always have access to public data in your organization.\": \"应用根据您授予的权限代表您访问数据。组织可控制允许哪些应用访问其私有数据。成员授权的应用始终可以访问组织中的公共数据。\",\n            \"Read about organization OAuth app access restrictions.\": \"了解有关组织 OAuth 应用访问限制的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Your installation was suspended by you on/, \"您的安装已暂停于\"],\n        [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作无法撤消。您确定要从 $1 个仓库中卸载此 GitHub 应用吗？\"],\n        [/Uninstall \"(.*)\"/, \"卸载 “$1”\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您将无法再登录 $1（所有管理权限都将授予您选择的所有者）\"],\n        [/(\\d+) applications?/, \"$1 个应用\"],\n        [/([^ ]+) will no longer be able to access your GitHub account. You cannot undo this action./, \"$1 将无法再访问您的 GitHub 账户。您无法撤消此操作。\"],\n        [/([^ ]+) has been revoked from your account./, \"$1 已经从您的账户中被撤销了。\"],\n        [/Last used within the last (\\d+) weeks? · Owned by/, \"最后一次使用是最近 $1 周之内 · 作者\"],\n        [/Last used within the last (\\d+) months? · Owned by/, \"最后一次使用是最近 $1 月之内 · 作者\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n        [/You're all set! (.*) has been uninstalled./, \"一切就绪！$1 已被卸载。\"],\n        [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就绪！卸载 “$1” 应用的任务已排队等候。\"],\n        [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安装在 $2 账户上。\"],\n        [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$2 账户的 $1 已更新。\"],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"],\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 月之内\"],\n        [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 将无法再访问 GitHub API。您无法撤销此操作。\"],\n        [/is requesting an update to its permissions./, \"正在请求更新其权限。\"],\n        [/The (.*) app by/, \"$1 应用（由\"],\n        [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您选择不接受新权限，“$1” 应用将保留其当前权限。\"],\n        [/(.*) is authorized to access this organization’s resources/, \"$1 已获授权访问该组织的资源\"],\n        [/(.*) is denied access this organization’s resources/, \"$1 被拒绝访问该组织的资源\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Installed GitHub Apps\": \"已安装的 GitHub 应用\",\n            \"Authorized GitHub Apps\": \"授权的 GitHub 应用\",\n            \"Authorized OAuth Apps\": \"授权的 OAuth 应用\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings/apps/authorizations\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"settings/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"settings/connections/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"orgs/settings/installations\"] = I18N[\"zh-CN\"][\"settings/installations\"];\nI18N[\"zh-CN\"][\"orgs/policies/applications\"] = I18N[\"zh-CN\"][\"settings/installations\"];\n\nI18N[\"zh-CN\"][\"settings/reminders\"] = { // 设置 - 定时提醒\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // 定时提醒 https://github.com/settings/reminders\n            \"Reminders allow you to push certain events to authorized instances of Microsoft Teams or Slack.\": \"提醒功能允许您将特定事件推送到 Microsoft Teams 或 Slack 的授权实例。\",\n            \"To use scheduled reminders, make sure that the Slack or Microsoft Teams integration is installed and up-to-date. If you need help with this, please contact your organization's owner.\": \"要使用定时提醒，请确保已安装 Slack 或 Microsoft Teams 集成并且是最新版本，如果您需要这方面的帮助，请联系您组织的所有者。\",\n            \"Available organizations\": \"可用的组织\",\n            \"Unavailable organizations\": \"不可用的组织\",\n            \"Configure Reminder\": \"配置提醒\",\n            \"No reminders\": \"没有提醒\",\n            \"Needs installing\": \"需要安装\",\n\n        // 新的预定提醒 https://github.com/settings/reminders/<orgs-name>\n            \"New scheduled reminder\": \"新建预定提醒\",\n            \"Slack workspace\": \"Slack 工作区\",\n            \"Authorize Slack workspace\": \"授权 Slack 工作区\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Monday\"    : \"周一\",\n                \"Tuesday\"   : \"周二\",\n                \"Wednesday\" : \"周三\",\n                \"Thursday\"  : \"周四\",\n                \"Friday\"    : \"周五\",\n                \"Saturday\"  : \"周六\",\n                \"Sunday\"    : \"周日\",\n            \"Times\": \"时间\",\n                \"Filter\": \"筛选\",\n            \"Review requests assigned to you\": \"审查分配给您的请求\",\n                \"Receive reminders for reviews waiting on you.\": \"接收等待您的审查提醒。\",\n            \"Review requests assigned to your team\": \"审查分配给您团队的请求\",\n                \"Receive reminders for reviews waiting on your team.\": \"接收等待您的团队的审查提醒。\",\n            \"Enable real-time alerts\": \"启用实时警报\",\n                \"Receive immediate Slack messages when certain events happen\": \"当某些事件发生时，会立即收到 Slack 消息\",\n\n            \"You will only receive notifications from public repositories in this organization because the current plan for\": \"您将只收到来自该组织中公共仓库的通知，因为目前\",\n            \"does not support reminders for private repositories.\": \"的计划不支持私人仓库的提醒。\",\n            \"Upgrade to Team\": \"升级为团队\",\n            \"Create reminder\": \"创建提醒者\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Scheduled reminders\": \"定时提醒\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/security-log\"] = { // 设置 - 安全日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Security log 安全日志 https://github.com/settings/security-log\n            \"Loading audit log entries…\": \"正在加载日志条目…\",\n            \"Filters\": \"筛选\",\n                \"Filter audit logs\": \"筛选审计日志\",\n                \"Yesterday's activity\": \"昨天的活动\",\n                \"Repository management\": \"仓库管理\",\n                \"Billing updates\": \"账单更新\",\n                \"Copilot activity\": \"Copilot 活动\",\n                \"Personal access token activity\": \"个人访问令牌活动\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n            \"Filter by Member\": \"按用户筛选\",\n            \"Filter by Action\": \"按事件筛选\",\n            \"Search audit logs\": \"搜索审计日志\",\n            \"Search your security log\": \"搜索您的安全日志\",\n            \"Clear current search query\": \"清除当前的搜索查询\",\n            \"Events matching search query\": \"搜索查询匹配结果\",\n            \"Export\": \"导出\",\n            \"Recent events\": \"最近的事件\",\n            \"Unknown IP address\": \"未知 IP 地址\",\n            \"Unknown location\": \"未知位置\",\n            // [/Found (\\d+) events?/, \"发现 $1 个活动\"],\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n            \"ProTip!\": \"专业提示！\",\n                \"View all events created yesterday\": \"查看昨天创建的所有事件\",\n                \"View all events where you created something\": \"查看所有您创建内容时产生的事件\",\n            \"Country changed from your previous session\": \"国家或地区与上一次会话有所不同\",\n            \"Logged in\": \"登录\",\n            \"User signed in from an unrecognized device.\": \"用户从无法识别的设备登录。\",\n            \"User signed in from an unrecognized device and location.\": \"用户从无法识别的设备与位置登录。\",\n            \"New Device Used\": \"使用新设备\",\n            \"Created the repository\": \"创建了仓库\",\n            \"Deleted the repository\": \"删除了仓库\",\n            \"Created GitHub Pages site in\": \"创建了 GitHub Pages 在\",\n            \"Modified GitHub Pages source in\": \"修改了 GitHub Pages 源代码在\",\n            \"Created environment\": \"创造环境\",\n            \"Added\": \"添加\",\n            \"to the\": \"至\",\n            \"repository\": \"仓库\",\n                \"organization with\": \"组织，使用\",\n                \"read\": \"读取\",\n                \"permission\": \"权限\",\n            \"Added the following repositories to the\": \"添加以下仓库到\",\n            \"Removed the following repositories from the\": \"删除以下仓库到\",\n            \"integration:\": \"集成：\",\n            \"Enabled GitHub Actions for\": \"启用仓库操作：\",\n            \"Created a secret for\": \"创建机密：\",\n            \"Created a token for\": \"创建令牌：\",\n            \"Regenerated a token for\": \"重新生成令牌：\",\n            \"Revoked a token for\": \"撤销令牌：\",\n                \"ending in\": \"结尾\",\n                \"for the\": \"用于\",\n                \"GitHub App\": \"GitHub 应用\",\n\n            \"We couldn’t find any events matching your search.\": \"无匹配结果。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Found (\\d+) events?/, \"发现 $1 个活动\"],\n        [/View ([^ ]+)'s profile/, \"查看 $1 的资料\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security log\": \"安全日志\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/sponsors-log\"] = { // 设置 - 赞助日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"settings-menu\"][\"static\"],\n\n        // Sponsorship log 赞助日志 https://github.com/settings/sponsors-log\n            \"Sponsors log\": \"赞助日志\",\n            \"New sponsorships, changes, and cancellations\": \"新的赞助、更改和取消\",\n            \"Period:\": \"周期：\",\n            \"Filter activity\": \"筛选活动\",\n            \"All-time\": \"所有时间\",\n            \"Past day\": \"过去一天\",\n            \"Past week\": \"过去一周\",\n            \"Past month\": \"过去一月\",\n            \"Past year\": \"过去一年\",\n            \"No sponsorship activity in this time period\": \"这段时间没有赞助活动\",\n            \"This is where you can review activity from your sponsorships.\": \"您可以在此处查看您的赞助活动。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sponsorship Log\": \"赞助日志\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/apps\"] = { // 设置 - 开发者设置/GitHub 应用\n    \"static\": { // 静态翻译\n        \"Developer Settings\": \"开发者设置\",\n        \"GitHub Apps\": \"GitHub 应用\",\n        \"OAuth Apps\": \"OAuth 应用\",\n        \"Personal access tokens\": \"个人访问令牌\",\n            \"Fine-grained tokens\": \"精细化的令牌\",\n            \"Tokens (classic)\": \"令牌（经典）\",\n\n        // GitHub 应用 https://github.com/settings/apps\n            // 顶部提醒\n                \"Job queued to revoke all user tokens\": \"撤销所有用户令牌的任务已排队等待\",\n\n            \"Register a new GitHub App\": \"注册新的 GitHub 应用\",\n            \"Want to build something that integrates with and extends GitHub?\": \"想要构建与 GitHub 集成和扩展的东西吗？\",\n            \"New GitHub App\": \"注册新 GitHub 应用\",\n            \"to get started developing on the GitHub API. You can also read more about building GitHub Apps in our\": \"，开始在 GitHub API 上进行开发。您还可以在我们的文档中阅读更多关于构建 GitHub 应用的信息\",\n            \"developer documentation\": \"开发者文档\",\n            \"A GitHub App can act on its own behalf, taking actions via the API directly instead of impersonating a user. Read more in our\": \"GitHub 应用可以代表自己执行操作，直接通过 API 执行操作，而不是冒充用户。阅读我们的更多内容\", // 存在 app时\n\n            // 无应用提示\n                \"No GitHub Apps\": \"无 GitHub 应用\",\n                    \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想创建与 GitHub 集成并扩展 GitHub 的应用程序吗？注册一个新的 GitHub 应用程序，开始使用 GitHub API 进行开发。\",\n\n                \"View documentation\": \"查看文档\",\n\n        // 注册 GitHub 应用 https://github.com/settings/apps/new\n            \"Register new GitHub App\": \"注册新 GitHub 应用\",\n            \"GitHub App name\": \"GitHub 应用名称\",\n            \"The name of your GitHub App.\": \"您的 GitHub 应用的名称。\",\n            \"Markdown supported\": \"支持 Markdown 语法\",\n            \"This is displayed to users of your GitHub App\": \"展示给 GitHub 应用的使用者\",\n            \"Homepage URL\": \"主页地址\",\n                \"The full URL to your GitHub App’s website.\": \"GitHub 应用网站的主页地址\",\n\n            \"Identifying and authorizing users\": \"识别并授权用户\",\n                \"The full URL to redirect to after a user authorizes an installation.\": \"用户授权安装后重定向到的完整地址。\",\n                \"Callback URL documentation\": \"回调地址文档\",\n                \"Add Callback URL\": \"添加回调地址\",\n\n                \"Callback URL\": \"回调地址\",\n                \"Expire user authorization tokens\": \"用户授权令牌\",\n                    \"This will provide a\": \"这将提供一个\",\n                    \"which can be used to request an updated access token when this access token expires.\": \"，用于在此访问令牌到期时，请求更新访问令牌。\",\n                \"Request user authorization (OAuth) during installation\": \"在安装期间请求用户授权 (OAuth)\",\n                    \"Requests that the installing user grants access to their identity during installation of your App\": \"请求用户在安装应用期间授予其身份访问权限。\",\n                    \"Identifying and authorizing users for GitHub Apps documentation\": \"关于 GitHub 应用识别并授权用户的文档\",\n                \"Enable Device Flow\": \"启用设备流\",\n                    \"Allow this GitHub App to authorize users via the Device Flow.\": \"允许此 GitHub 应用通过设备流程授权用户。\",\n                    \"Read the\": \"阅读\",\n                    \"Device Flow documentation\": \"设备流程文档\",\n\n            \"Post installation\": \"安装完成后\",\n                \"Setup URL (optional)\": \"设置网址 (可选)\",\n                    \"Users will be redirected to this URL after installing your GitHub App to complete additional setup.\": \"用户在安装完 GitHub 应用后，会被重定向到这个网址，以完成额外的设置。\",\n                    \"Unavailable when requesting OAuth during installation.\": \"安装过程中请求 OAuth 时不可用。\",\n                    \"Users will be redirected to the 'User authorization callback URL' to complete additional setup.\": \"用户将被重定向到 “用户授权回调网址” 以完成其他设置。\",\n                \"Redirect on update\": \"更新时重定向\",\n                    \"Redirect users to the 'Setup URL' after installations are updated (E.g. repositories added/removed).\": \"在安装后更新时将用户重定向到 “设置网址”（例如: 添加/删除仓库）。\",\n                    \"Redirect users to the 'User authorization callback URL' after installations are updated (E.g repositories added/removed).\": \"在安装后更新时将用户重定向到 “用户授权回调网址”（例如: 添加/删除仓库）。\",\n\n            \"Webhook\": \"Web 钩子\",\n                \"Active\": \"激活\",\n                    \"We will deliver event details when this hook is triggered.\": \"当钩子被触发时，我们将提供事件详细信息。\",\n                \"Webhook URL\": \"Web 钩子网址\",\n                    \"Events will POST to this URL. Read our\": \"事件将 POST 到此网址。阅读\",\n                    \"webhook documentation\": \"关于 Web 钩子\",\n                    \"for more information.\": \"以获取更多信息。\",\n                \"Secret\": \"机密\",\n                    \"Read our\": \"阅读我们\",\n                    \"webhook secret documentation\": \"Web 钩子机密文档\",\n\n            \"Permissions\": \"权限\",\n                \"User permissions are granted on an individual user basis as part of the\": \"用户权限的授予是以单个用户为基础的，是一个环节\",\n                \"User authorization flow\": \"用户授权流程\",\n                \"permissions documentation\": \"权限文档\",\n                \"for information about specific permissions.\": \"以了解关于特定权限的信息。\",\n\n                \"Access:\": \"访问权限：\",\n                \"Select an access level\": \"选择访问级别\",\n                \"No access\": \"禁止访问\",\n                \"Read-only\": \"只读\",\n                \"Read and write\": \"读写\",\n                \"Admin\": \"管理员\",\n\n                  \"Selected\": \"项被选中\",\n                  \"mandatory\": \"强制\",\n\n                \"Repository permissions\": \"仓库权限\",\n                    \"Repository permissions permit access to repositories and related resources.\": \"仓库权限允许访问仓库和相关资源。\",\n\n                    \"Actions\": \"操作\",\n                        \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的运行和工件。\",\n                    \"Administration\": \"管理\",\n                        \"Repository creation, deletion, settings, teams, and collaborators.\": \"仓库创建、删除、设置、团队和协作者。\",\n                    \"Attestations\": \"证书\",\n                        \"Create and retrieve attestations for a repository.\": \"创建和检索仓库的证书。\",\n                    \"Checks\": \"检查\",\n                        \"Checks on code.\": \"检查代码。\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                        \"View and manage code scanning alerts.\": \"查看和管理代码扫描警报。\",\n                    // \"\": \"代码空间\",\n                        \"Create, edit, delete and list Codespaces.\": \"创建、编辑、删除和列出代码空间。\",\n                    \"Codespaces lifecycle admin\": \"代码空间的生命周期管理\",\n                        \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理代码空间的生命周期，包括启动和停止。\",\n                    \"Codespaces metadata\": \"代码空间元数据\",\n                        \"Access Codespaces metadata including the devcontainers and machine type.\": \"访问代码空间元数据，包括开发容器和机器类型。\",\n                    \"Codespaces secrets\": \"代码空间机密\",\n                        \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制代码空间的用户机密对特定仓库的修改。\",\n                    \"Commit statuses\": \"提交状态\",\n                        \"Commit statuses.\": \"提交状态。\",\n                    \"Contents\": \"内容\",\n                        \"Repository contents, commits, branches, downloads, releases, and merges.\": \"仓库内容、提交、分支、下载、发布和合并。\",\n                    // 自定义属性\n                        \"View and set values for a repository's custom properties, when allowed by the property.\": \"在属性允许的情况下，查看和设置仓库自定义属性的值。\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                        \"Retrieve Dependabot alerts.\": \"检索 Dependabot 警报。\",\n                    \"Dependabot secrets\": \"Dependabot 机密\",\n                        \"Manage Dependabot repository secrets.\": \"管理 Dependabot 仓库的机密。\",\n                    \"Deployments\": \"部署\",\n                        \"Deployments and deployment statuses.\": \"部署和部署状态。\",\n                    \"Discussions\": \"讨论\",\n                        \"Discussions and related comments and labels.\": \"讨论及相关评论和标签。\",\n                    \"Environments\": \"环境\",\n                        \"Manage repository environments.\": \"管理仓库环境。\",\n                    \"Issues\": \"议题\",\n                        \"Issues and related comments, assignees, labels, and milestones.\": \"议题及相关评论、受理人、标签和里程碑。\",\n                    \"Merge queues\": \"合并列队\",\n                        \"Manage a repository's merge queues\": \"管理仓库的合并队列。\",\n                    \"Metadata\": \"元数据\",\n                        \"Search repositories, list collaborators, and access repository metadata.\": \"搜索仓库、列出协作者，访问仓库元数据。\",\n                    \"Packages\": \"软件包\",\n                        \"Packages published to the GitHub Package Platform.\": \"发布软件包到 GitHub Package 平台。\",\n                    \"Pages\": \"GitHub Pages\",\n                        \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"检索页面状态、配置和构建，以及创建新的构建。\",\n                    \"Projects\": \"项目\",\n                        \"Manage classic projects within a repository.\": \"管理仓库中的经典项目。\",\n                    \"Pull requests\": \"拉取请求\",\n                        \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取请求及相关评论、受让人、标签、里程碑和合并。\",\n                    \"Repository security advisories\": \"仓库安全公告\",\n                        \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                        \"View and manage secret scanning alerts.\": \"查看和管理机密扫描警报。\",\n                    \"Secrets\": \"机密\",\n                        \"Manage Actions repository secrets.\": \"管理操作仓库机密。\",\n                    \"Single file\": \"单个文件\",\n                        \"Manage just a single file.\": \"只管理单个文件。\",\n                        \"Path\": \"路径\",\n                        \"The content paths to single files your app can access.\": \"应用可以访问的单个文件的内容路径。\",\n                    \"Variables\": \"变量\",\n                        \"Manage Actions repository variables.\": \"管理操作仓库变量。\",\n                    \"Webhooks\": \"Web 钩子\",\n                        \"Manage the post-receive hooks for a repository.\": \"管理仓库的接收后钩子。\",\n                    \"Workflows\": \"工作流程\",\n                        \"Update GitHub Action workflow files.\": \"更新 GitHub Action 工作流程文件。\",\n\n                \"Organization permissions\": \"组织权限\",\n                    \"Organization permissions permit access to organization related resources.\": \"组织权限允许访问组织相关资源。\",\n\n                    \"API Insights\": \"API 洞察\",\n                        \"View statistics on how the API is being used for an organization.\": \"查看有关组织如何使用 API 的统计信息。\",\n                    // 管理\n                        \"Manage access to an organization.\": \"管理对组织的访问。\",\n                    \"Blocking users\": \"拉黑用户\",\n                        \"View and manage users blocked by the organization.\": \"查看和管理被组织拉黑的用户。\",\n                    \"Custom organization roles\": \"自定义组织角色\",\n                        \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"创建、编辑、删除和列出自定义组织角色。查看系统组织角色。\",\n                    \"Custom properties\": \"自定义属性\",\n                        \"View custom properties, write repository values, and administer definitions.\": \"查看自定义属性、写入仓库值并管理定义。\",\n                    \"Custom repository roles\": \"自定义仓库角色\",\n                        \"Create, edit, delete and list custom repository roles.\": \"创建、编辑、删除和列出自定义仓库角色。\",\n                    \"Events\": \"活动\",\n                        \"View events triggered by an activity in an organization.\": \"查看组织中某项活动所触发的事件。\",\n                    \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                        \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商业版席位和设置\",\n                    \"Knowledge bases\": \"知识库\",\n                        \"View and manage knowledge bases for an organization.\": \"查看和管理组织的知识库。\",\n                    \"Members\": \"成员\",\n                        \"Organization members and teams.\": \"组织成员和团队。\",\n                    \"Organization announcement banners\": \"组织公告横幅\",\n                        \"View and modify announcement banners for an organization.\": \"查看并修改组织的公告横幅。\",\n                    \"Organization codespaces\": \"组织代码空间\",\n                        \"Manage Codespaces for an organization.\": \"管理组织的代码空间。\",\n                    \"Organization codespaces secrets\": \"组织代码空间机密\",\n                        \"Manage Codespaces Secrets for an organization.\": \"管理组织的代码空间机密。\",\n                    \"Organization codespaces settings\": \"组织代码空间设置\",\n                        \"Manage Codespaces settings for an organization.\": \"管理组织的代码空间设置。\",\n                    \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                        \"Manage Dependabot organization secrets.\": \"管理 Dependabot 组织的机密。\",\n                    \"Organization private registries\": \"组织私有注册表\",\n                        \"Manage private registries for an organization.\": \"管理组织的私有注册表。\",\n                    \"Personal access token requests\": \"个人访问令牌请求\",\n                        \"Manage personal access token requests from organization members.\": \"管理来自组织成员的个人访问令牌请求。\",\n                    \"Personal access tokens\": \"个人访问令牌\",\n                        \"View and revoke personal access tokens that have been granted access to an organization.\": \"查看和撤销已被授予组织访问权限的个人访问令牌。\",\n                    \"Plan\": \"计划\",\n                        \"View an organization's plan.\": \"查看组织的计划。\",\n                    // 项目\n                        \"Manage projects for an organization.\": \"管理组织的项目。\",\n                    // 机密\n                        \"Manage Actions organization secrets.\": \"管理操作组织机密\",\n                    \"Self-hosted runners\": \"自托管运行器\",\n                        \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理组织可用的 “操作自托管运行器”。\",\n                    \"Team discussions\": \"团队讨论\",\n                        \"Manage team discussions and related comments.\": \"管理团队讨论及相关评论。\",\n                    // 变量\n                        \"Manage Actions organization variables.\": \"管理操作组织变量。\",\n                    // Web 钩子\n                        \"Manage the post-receive hooks for an organization.\": \"管理组织的接收后钩子。\",\n\n                \"Account permissions\": \"账户权限\",\n                    \"These permissions are granted on an individual user basis as part of the User authorization flow.\": \"这些权限是在单个用户的基础上授予的，作为用户授权流程的一部分\",\n\n                    \"Block another user\": \"拉黑其他用户\",\n                        \"View and manage users blocked by the user.\": \"查看和管理被用户拉黑的用户。\",\n                    \"Codespaces user secrets\": \"代码空间用户机密\",\n                        \"Manage Codespaces user secrets.\": \"管理代码空间用户机密。\",\n                    \"Copilot Chat \": \"\",\n                        \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"此应用将接收您的 GitHub ID、GitHub Copilot Chat 会话消息（不包括发送到其他应用的消息）以及所提供的 GitHub Copilot Chat 会话消息的时间戳。Copilot 扩展必须启用此权限。\",\n                    \"Copilot Editor Context\": \"Copilot 编辑器语境\",\n                        \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每当您通过 Copilot Chat 向应用发送消息时，该应用都会收到一些编辑器上下文（例如当前打开的文件）。\",\n                    \"Email addresses\": \"电子邮箱地址\",\n                        \"Manage a user's email addresses.\": \"管理用户的电子邮箱地址。\",\n                    // 活动\n                        \"View events triggered by a user's activity.\": \"查看用户活动触发的事件。\",\n                    // 关注者\n                        \"A user's followers\": \"用户的关注者\",\n                    \"GPG keys\": \"GPG 密钥\",\n                        \"View and manage a user's GPG keys.\": \"查看和管理用户的 GPG 密钥。\",\n                    // Gist\n                        \"Create and modify a user's gists and comments.\": \"创建和修改用户的代码片段和评论。\",\n                    \"Git SSH keys\": \"Git SSH 密钥\",\n                    \"Interaction limits\": \"交互限制\",\n                        \"Interaction limits on repositories\": \"仓库的交互限制\",\n                    // 计划\n                        \"View a user's plan.\": \"查看用户的计划。\",\n                    \"Profile\": \"个人信息\",\n                        \"Manage a user's profile settings.\": \"管理用户的个人信息设置。\",\n                    \"SSH signing keys\": \"SSH 签名密钥\",\n                        \"View and manage a user's SSH signing keys.\": \"查看和管理用户的 SSH 签名密钥。\",\n                    \"Starring\": \"星标\",\n                        \"List and manage repositories a user is starring.\": \"列出和管理用户标星的仓库。\",\n                    \"Watching\": \"关注\",\n                        \"List and change repositories a user is subscribed to.\": \"列出和更改用户订阅的仓库。\",\n\n            // 以下的事件 与 钩子页面 一致\n            // 添加钩子 页面 /<user-name>/<repo-name>/settings/hooks/new\n            \"Subscribe to events\": \"订阅事件\",\n                \"Based on the permissions you’ve selected, what events would you like to subscribe to?\": \"根据您选择的权限，您想订阅哪些事件？\",\n                \"Installation target\": \"安装目标\",\n                    \"A GitHub App installation target is renamed.\": \"GitHub 应用安装目标已重命名。\",\n                \"Meta\": \"元数据\",\n                    \"When this App is deleted and the associated hook is removed.\": \"当该应用被删除和相关的钩子被删除时。\",\n                \"Security advisory\": \"安全提示\",\n                    \"Security advisory published, updated, or withdrawn.\": \"安全提示的发布、更新或撤销。\",\n                \"Branch protection configuration\": \"分支保护配置\",\n                    \"All branch protections disabled or enabled for a repository.\": \"禁用或启用仓库的所有分支保护。\",\n                \"Branch protection rule\": \"分支保护规则\",\n                    \"Branch protection rule created, deleted or edited.\": \"分支保护规则的创建、删除或编辑。\",\n                \"Code scanning alert\": \"代码扫描警报\",\n                    \"Code Scanning alert created, fixed in branch, or closed\": \"代码扫描警报的创建、在分支中修复或关闭。\",\n                \"Check run\": \"检查运行\",\n                    \"Check run is created, requested, rerequested, or completed.\": \"检查运行的创建、请求、重新请求或完成。\",\n                \"Check suite\": \"检查套件\",\n                    \"Check suite is requested, rerequested, or completed.\": \"检查套件的请求、重新请求或完成。\",\n                \"Commit comment\": \"提交评论\",\n                    \"Commit or diff commented on.\": \"提交或差异评论。\",\n                //\"创建\": \"\",\n                    \"Branch or tag created.\": \"分支或标签的创建。\",\n                \"Custom property\": \"自定义属性\",\n                    \"Custom property is created, updated, or deleted.\": \"自定义属性的创建、更新或删除。\",\n                \"Custom property values\": \"自定义属性值\",\n                    \"Custom property values are changed for a repository\": \"仓库自定义属性值的更改。\",\n                \"Discussion\": \"讨论\",\n                    \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"讨论的创建、编辑、关闭、重新打开、置顶、取消置顶、锁定、解锁、转移、答复、取消答复、标记、取消标记、更改其类别或删除。\",\n                \"Discussion comment\": \"讨论评论\",\n                    \"Discussion comment created, edited, or deleted.\": \"讨论评论的创建、编辑或删除。\",\n                //\"删除\": \"\",\n                    \"Branch or tag deleted.\": \"分支或标签的删除。\",\n                \"Dependabot alert\": \"Dependabot 警报\",\n                    \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警报的自动解除、自动重新打开、创建、解除、重新打开、修复或重新引入。\",\n                \"Deploy key\": \"部署密钥\",\n                    \"A deploy key is created or deleted from a repository.\": \"在仓库中部署密钥的创建或删除。\",\n                \"Deployment\": \"部署\",\n                    \"Repository was deployed or a deployment was deleted.\": \"仓库的部署或删除部署。\",\n                \"Deployment protection rule\": \"部署保护规则\",\n                    \"Deployment protection rule requested for an environment.\": \"环境请求部署保护规则。\",\n                \"Deployment review\": \"部署审查\",\n                    \"Deployment review requested, approved or rejected\": \"部署审查的请求、批准或拒绝\",\n                \"Deployment status\": \"部署状态\",\n                    \"Deployment status updated from the API.\": \"通过 API 更新部署状态。\",\n                \"Exemption request push ruleset\": \"推送规则集豁免请求\",\n                    \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push rules is currently in beta and subject to change.\": \"推送规则集旁路请求已创建、取消、完成、收到响应或驳回响应。注：推送规则的委托旁路目前处于测试阶段，可能会有更改。\",\n                \"Exemption request secret scanning\": \"秘密扫描豁免请求\",\n                    \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"秘密扫描推送保护旁路请求已创建、取消、完成、收到响应或驳回响应。注：推送保护的授权旁路目前处于测试阶段，可能会有更改。\",\n                //\"复刻\": \"\",\n                    \"Repository forked.\": \"仓库复刻。\",\n                \"Gollum\": \"咕噜\",\n                    \"Wiki page updated.\": \"Wiki 页面的更新。\",\n                \"Issue comment\": \"议题评论\",\n                    \"Issue comment created, edited, or deleted.\": \"议题评论的创建、编辑或删除。\",\n                //\"议题\": \"\",\n                    \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, unlocked, typed, or untyped.\": \"议题的打开、编辑、删除、转移、置顶、取消置顶、关闭、重新打开、分配、取消分配、标记、取消标记、设置里程碑、取消里程碑、锁定、解锁。\",\n                \"Label\": \"标签\",\n                    \"Label created, edited or deleted.\": \"标签的创建、编辑或删除。\",\n                \"Milestone\": \"里程碑\",\n                    \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的创建、关闭、打开、编辑或删除。\",\n                \"Member\": \"成员\",\n                    \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"协作者添加到仓库、从仓库中删除或更改了仓库的权限。\",\n                \"Membership\": \"团队成员\",\n                    \"Team membership added or removed.\": \"团队成员的添加或删除。\",\n                \"Merge group\": \"合并组\",\n                    \"Merge Group requested checks, or was destroyed.\": \"合并组的请求检查或销毁。\",\n                \"Merge queue entry\": \"合并队列条目\",\n                    \"Merge Queue entry added\": \"合并队列条目的添加。\",\n                \"Organization\": \"组织\",\n                    \"Organization deleted, renamed, member invited, member added, or member removed.\": \"组织的删除、重命名以及成员的邀请、添加或删除。\",\n                \"Page build\": \"构建 GitHub Pages\",\n                    \"Pages site built.\": \"GitHub Pages 站点的建立。\",\n                \"Personal access token request\": \"个人访问令牌请求\",\n                    \"Personal access token request created, approved, denied, or cancelled.\": \"个人访问令牌请求的创建、批准、拒绝或取消。\",\n                \"Project\": \"项目\",\n                    \"Project created, updated, or deleted.\": \"项目的创建、更新或删除。\",\n                \"Project card\": \"项目面板卡\",\n                    \"Project card created, updated, or deleted.\": \"项目面板卡的创建、更新或删除\",\n                \"Project column\": \"项目栏目\",\n                    \"Project column created, updated, moved or deleted.\": \"项目栏目的创建、更新、移动或删除。\",\n                \"Projects v2 item\": \"项目 v2 条目\",\n                    \"Project item created, edited, deleted, archived, restored, converted, or reordered.\": \"项目条目的创建、编辑、删除、归档、恢复、转换或重新排序。\",\n                \"Projects v2\": \"项目 v2\",\n                    \"Project created, updated, deleted, closed, or reopened.\": \"项目的创建、更新、删除、关闭或重新打开。\",\n                \"Projects v2 status update\": \"项目 v2 状态更新\",\n                    \"Project status updates created, updated, or deleted.\": \"项目状态更新的创建、更新或删除。\",\n                // 公共\n                    \"Repository changes from private to public.\": \"仓库从私有更改为公共。\",\n                \"Pull request\": \"拉取请求\",\n                    \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取请求的分配、禁用自动合并、启用自动合并、关闭、转换为草案、取消里程碑、取消队列、编辑、队列、标记、锁定、设置里程碑、打开、准备审查、重新打开、取消审查请求、请求审查、同步、取消分配、取消标记或解锁。\",\n                \"Pull request review\": \"拉取请求审查\",\n                    \"Pull request review submitted, edited, or dismissed.\": \"拉取请求审查的提交、编辑或驳回。\",\n                \"Pull request review comment\": \"拉取请求审查意见\",\n                    \"Pull request diff comment created, edited, or deleted.\": \"拉取请求差异评论的创建、编辑或删除。\",\n                \"Pull request review thread\": \"拉取请求线程\",\n                    \"A pull request review thread was resolved or unresolved.\": \"拉取请求的审查线程解决或未解决。\",\n                \"Push\": \"推送\",\n                    \"Git push to a repository.\": \"Git 推送到仓库。\",\n                \"Registry package\": \"注册软件包\",\n                    \"Registry package published or updated in a repository.\": \"仓库中注册软件包的发布或更新。\",\n                \"Release\": \"发行版\",\n                    \"Release created, edited, published, unpublished, or deleted.\": \"发行版的创建、编辑、发布、取消发布或删除。\",\n                \"Repository\": \"仓库\",\n                    \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"仓库的创建、删除、归档、取消归档、公开、私有化、编辑、重命名或转让。\",\n                \"Repository dispatch\": \"仓库调度\",\n                    \"When a message is dispatched from a repository.\": \"当信息从仓库发出时。\",\n                \"Repository ruleset\": \"仓库规则集\",\n                    \"Repository ruleset created, deleted or edited.\": \"仓库规则集的创建、删除或编辑。\",\n                \"Security and analysis\": \"安全和分析\",\n                    \"Code security features enabled or disabled for a repository.\": \"启用或禁用仓库的代码安全功能。\",\n                \"Secret scanning alert\": \"机密扫描警报\",\n                    \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"机密扫描警报的创建、解决、重新打开、验证或公开泄露。\",\n                \"Secret scanning alert location\": \"机密扫描警报位置\",\n                    \"Secrets scanning alert location created.\": \"机密扫描警报位置的创建。\",\n                \"Secret scanning scan\": \"机密扫描\",\n                    \"Secrets scanning scan completed.\": \"机密扫描已完成\",\n                // 星标\n                    \"A star is created or deleted from a repository.\": \"标星或取消仓库星标。\",\n                //\"状态\": \"\",\n                    \"Commit status updated from the API.\": \"通过 API 更新提交状态。\",\n                //\"团队\": \"\",\n                    \"Team is created, deleted, edited, or added to/removed from a repository.\": \"团队的创建、删除、编辑以及向仓库添加团队、从仓库中移除团队。\",\n                \"Sub issues\": \"子议题\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子议题和父议题的添加或删除。\",\n                \"Team add\": \"团队添加\",\n                    \"Team added or modified on a repository.\": \"仓库团队的添加或修改。\",\n                \"Watch\": \"关注\",\n                    \"User stars a repository.\": \"用户标星仓库。\",\n                \"Workflow dispatch\": \"工作流程调度\",\n                    \"A manual workflow run is requested.\": \"请求手动运行工作流程。\",\n                \"Workflow job\": \"工作流程作业\",\n                    \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"仓库中工作流作业的队列、等待、正在进行或完成。\",\n                \"Workflow run\": \"工作流程运行\",\n                    \"Workflow run requested or completed on a repository.\": \"仓库中工作流程运行的请求或完成。\",\n                \"Org block\": \"组织黑名单\", // 组织设置\n                    \"A user has been blocked or unblocked.\": \"用户拉黑或解除拉黑。\",\n                \"Repository advisory\": \"仓库公告\",\n                    \"Repository advisory published or reported.\": \"仓库公告发布或报告。\",\n                \"Sub issues\": \"子提议\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子议题和父议题的添加或删除。\",\n\n            \"Where can this GitHub App be installed?\": \"这款 GitHub 应用可以安装在哪里？\",\n                \"Only on this account\": \"仅在当前账户\",\n                    // [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"仅允许在 $1 帐户上安装此 GitHub 应用。\"],\n                \"Any account\": \"任何账户\",\n                    \"Allow this GitHub App to be installed by any user or organization.\": \"允许任何用户或组织安装此 GitHub 应用。\",\n\n            \"Create GitHub App\": \"创建 GitHub 应用\",\n\n        // 某个 GitHub 应用 https://github.com/settings/apps/<app-name>\n            // 顶部提醒\n                // GitHub App 注册成功\n                \"Registration successful. You must\": \"注册成功。您必须\",\n                \"generate a private key\": \"生成私钥\",\n                \"in order to install your GitHub App.\": \"才能安装 GitHub 应用。\",\n                // GitHub App 已更新\n                \"Got it. Your GitHub App has been updated.\": \"GitHub 应用已更新。\",\n                \"The GitHub App is now public. Anyone is free to install it.\": \"GitHub 应用已公开化。任何人都可以自由安装。\",\n                \"The GitHub App is now private. It can only be installed on this account.\": \"GitHub 应用已私有化。只能安装在此账户上。\",\n\n            \"Developer settings\": \"开发者设置\",\n            // 左侧栏\n                \"General\": \"通常\",\n                \"Permissions & events\": \"权限与事件\",\n                \"Install App\": \"安装应用\",\n                \"Advanced\": \"高级\",\n                \"Optional features\": \"可选功能\",\n                \"Public page\": \"公共页面\",\n\n            // 关于\n                \"Owned by:\": \"拥有者：\",\n                \"Using your App ID to get installation tokens? You can now\": \"使用您的 App ID 获取安装令牌？您现在可以\",\n                \"use your Client ID instead\": \"使用您的 Client ID\",\n                \"Revoke all user tokens\": \"撤销所有用户令牌\",\n                \"GitHub Apps can use OAuth credentials to identify users. Learn more about identifying users by reading our\": \"GitHub 应用可以使用 OAuth 凭据来识别用户。了解更多关于识别用户的信息，请阅读我们的\",\n                \"integration developer documentation\": \"集成开发者文档\",\n\n                \"Public link\": \"公共链接\",\n\n                // 撤销所有用户令牌对话框\n                \"Revoke all user tokens?\": \"撤销所有用户令牌？\",\n                    \"Are you sure you want to revoke\": \"您确定要撤销此应用的\",\n                    \"all\": \"所有\",\n                    \"user tokens for this application?\": \"用户令牌吗？\",\n                    \"All users of this application will be forced back through the\": \"该应用的所有用户都将被迫返回\",\n                    \"authorization flow\": \"授权流程\",\n                    \"before they can use your application again.\": \"，然后才能再次使用您的应用。\",\n                    \"All SSH keys created by this application will also be deleted.\": \"此应用创建的所有 SSH 密钥也将被删除。\",\n                    \"This action is not reversible.\": \"此操作不可逆转。\",\n                    \"I understand, revoke all user tokens\": \"我明白了，依然撤销所有用户令牌\",\n\n            \"Client secrets\": \"客户端机密\",\n                \"Generate a new client secret\": \"生成客户端机密\",\n                \"You need a client secret to authenticate as the application to the API.\": \"您需要一个客户端机密，才能以应用的身份验证 API。\",\n\n            \"Basic information\": \"基本信息\",\n\n            \"Display information\": \"显示信息\",\n                \"Drag & drop\": \"拖放\",\n                \"Upload a logo...\": \"上传 Logo 图片…\",\n                    \"Uploading...\": \"上传中…\",\n                \"You can also drag and drop a picture from your computer.\": \"您也可以从电脑中拖放图片。\",\n                        \"Only images, please. Try again.\": \"仅限图片，请重试。\",\n                        \"1MB or less, please. Try again.\": \"请上传 1MB 以内的文件，请重试。\",\n                        \"Whoops! Try again.\": \"哎呀！请重试。\",\n                        \"File contents don’t match the file extension. Try again.\": \"文件内容与扩展名不符，请重试。\",\n\n                \"Delete this image\": \"删除图片\",\n                \"Badge background color\": \"徽章背景颜色\",\n                \"The hex value of the badge background color. Hex colors should only contain numbers and letters from a-f.\": \"徽章背景颜色的十六进制值。十六进制颜色只能包含 a-f 之间的数字和字母。\",\n                // 剪裁对话框\n                    \"Crop your new avatar\": \"裁剪您的新头像\",\n                    \"Set new avatar\": \"设置新头像\",\n                // 顶部提醒\n                    \"Your avatar has been updated. It may take a few minutes to update across the site.\": \"您的头像已更新。整个网站的更新可能需要几分钟的时间。\",\n                    \"This avatar has been deleted.\": \"该头像已被删除。\",\n\n            // 市场\n                \"List your GitHub App in the\": \"上架您的 GitHub 应用到\",\n                \"GitHub Marketplace\": \"GitHub 市场\",\n                \"so that other users can discover it.\": \"以便其他用户可以发现它。\",\n                \"List in Marketplace\": \"上架应用\",\n\n                \"Edit how your GitHub App is presented in the Marketplace directory, including screenshots and links.\": \"编辑 GitHub 应用在市场索引中的展示方式，包括截图和链接。\",\n                \"Edit Marketplace listing\": \"编辑市场上架信息\",\n\n            \"Private keys\": \"私钥\",\n                \"Generate a private key\": \"生成私钥\",\n                \"You need a private key to sign access token requests.\": \"您需要私钥来签署访问令牌请求。\",\n\n                \"Learn more about private keys\": \"了解更多关于私钥的信息\",\n                \"Private key\": \"私钥\",\n                \"Added\": \"已添加于\",\n\n            \"IP allow list\": \"IP 允许列表\",\n                \"Enter the IP addresses of your GitHub App to allow organizations with\": \"输入 GitHub 应用的 IP 地址，以便在安装时允许在\",\n                \"IP allow lists\": \"IP 允许列表\",\n                \"to selectively inherit the App's IP allow list when installed.\": \"的组织有选择地继承应用的 IP 允许列表。\",\n                \"Learn more about App IP allow lists\": \"了解更多关于应用 IP 允许列表的信息\",\n\n                \"There are no IP addresses on the allow list yet.\": \"允许列表中尚无 IP 地址。\",\n                \"IP address or range in CIDR notation\": \"以 CIDR 表示的 IP 地址或范围\",\n                \"Short description of IP address or range\": \"IP 地址或范围的简短描述\",\n\n                \"Check IP address\": \"检查 IP 地址\",\n                    \"Enter an IP address to check whether it is permitted by enabled entries on the IP allow list.\": \"输入 IP 地址，检查 IP 允许列表中的启用条目是否允许该地址。\",\n\n        // 某个 GitHub 应用 - 权限 https://github.com/settings/apps/<app-name>/permissions\n            \"Changes to permissions will be applied to all future installations. Current users will be prompted to accept any changes and enable the new permissions on their installation.\": \"对权限的更改将应用于今后的所有安装。系统将提示当前用户接受任何更改，并在其安装中启用新权限。\",\n\n            \"Add a note to users\": \"为用户添加注释\",\n                \"This note will be displayed on the permissions update approval page.\": \"该注释将显示在权限更新批准审查页面上。\",\n                    \"Add a note to your users explaining why you are requesting these changes.\": \"向您的用户添加注释，解释您请求这些更改的原因。\",\n\n                \"Are you sure you want to update permissions?\": \"您确定要更新权限吗？\",\n                    \"Current users will be prompted to accept these changes and enable the new permissions on their installation.\": \"系统将提示当前用户接受这些更改，并在其安装中启用新权限。\",\n\n        // 某个 GitHub 应用 - 智能体 https://github.com/settings/apps/<app-name>/agent\n            \"A Copilot configuration allows your GitHub App to integrate with Copilot. Learn more about building GitHub Copilot Extensions in the\": \"Copilot 配置允许您的 GitHub 应用与 Copilot 集成。了解更多关于构建 GitHub Copilot 扩展的信息，请访问\",\n            \"documentation\": \"文档\",\n\n            \"Accept the Marketplace Developer agreement to create your Copilot Extension\": \"接受市场开发者协议以创建您的 Copilot 扩展\",\n                \"By clicking \\\"Accept Terms\\\" below, you agree to the\": \"点击下面的 “接受条款”，即表示您同意以下条款\",\n                \"GitHub Copilot Extension Developer Policy\": \"GitHub Copilot 扩展开发者政策\",\n                \"Pre-release License terms\": \"预发布许可条款\",\n                \"on behalf of\": \"代表\",\n                \". Please check to make sure that you are agreeing to these terms on behalf of the correct account.\": \"。请检查以确保您代表正确的帐户同意这些条款。\",\n                \"Accept Terms\": \"接受条款\",\n\n            \"To enable Copilot functionality, you must first accept the Marketplace Developer agreement\": \"要启用 Copilot 功能，您必须首先接受市场开发者协议\",\n            \"To enable Copilot functionality, you must first grant your app permission to read Copilot Messages. To do so, navigate to Permissions & Events > Account Permissions > Read-only for Copilot Chat\": \"要启用 Copilot 功能，必须先授予应用读取 Copilot 消息的权限。为此，请导航至权限和事件 > 帐户权限 > Copilot 聊天 - 只读\",\n\n        // 某个 GitHub 应用 - 安装 https://github.com/settings/apps/<app-name>/installations\n            // [/Install (.*)/, \"安装 $1\"],\n            // [/Choose an account to install (.*) on:/, \"选择要安装 $1 的账户：\"],\n            \"Install\": \"安装\",\n            // [/Install (.*) on this account./, \"安装 $1 到此账户上。\"],\n            \"Installed\": \"已安装\",\n            // [/(.*) is installed on this account./, \"$1 已安装在此账户上。\"],\n\n        // 某个 GitHub 应用 - 高级 https://github.com/settings/apps/<app-name>/advanced\n            \"Danger zone\": \"危险区\",\n                \"Transfer ownership of this GitHub App\": \"转让此 GitHub 应用的所有权\",\n                    \"Transferring may be delayed until the new owner approves the transfer.\": \"转让可能会延迟，直至新所有者批准转让\",\n                    \"Transfer ownership\": \"转让所有权\",\n                        // [/Where should we transfer (.*)\\?/, \"将 $1 转让给谁？\"],\n                        \"Type the name of the GitHub App to confirm\": \"键入要确认的 GitHub 应用名称\",\n                        \"New owner’s GitHub username or organization name\": \"新所有者的 GitHub 用户名或组织名称\",\n                        \"Transfer this GitHub App\": \"转让所有权\",\n                \"Delete this GitHub App\": \"删除此 GitHub 应用\",\n                    \"This cannot be undone. Please be certain.\": \"此操作无法撤销。请确认。\",\n\n                    \"Delete GitHub App\": \"删除 GitHub 应用\",\n                        \"Delete GitHub App?\": \"删除 GitHub 应用？\",\n                            \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                            \"This action\": \"此操作\",\n                            \"CANNOT\": \"无法\",\n                            \"be undone. This will permanently delete the\": \"撤销。这将永久删除\",\n                            \"GitHub App.\": \"GitHub 应用。\",\n\n                            \"This will also uninstall the GitHub App from\": \"这还将卸载 GitHub 应用从\",\n                            // [/(\\d+) accounts?/, \"$1 个账户\"],\n\n                            \"Please type in the name of the GitHub App to confirm.\": \"请键入 GitHub 应用的名称进行确认。\",\n                            \"I understand the consequences, delete this GitHub App\": \"我明白后果，依然删除该 GitHub 应用\",\n                \"Make this GitHub App public\": \"公开 GitHub 应用\",\n                    \"Allow this GitHub App to be installed on other accounts.\": \"允许在其他账户中安装此 GitHub 应用。\",\n\n                    \"Make public\": \"转为公开\",\n                        // [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用户或组织都可以安装此 GitHub 应用。您确定要公开 $1 吗？\"],\n                \"Make this GitHub App private\": \"私有化 GitHub 应用\",\n                    \"Private GitHub Apps cannot be installed on other accounts.\": \"私有 GitHub 应用不能安装在其他账户上。\",\n                    \"Make private\": \"转为私有\",\n                        \"This integration cannot be made private since it is already installed on other accounts.\": \"此应用无法转为私有，因为它已安装在其他账户上。\",\n                \"Make this application private\": \"私有化应用\",\n                    \"Private applications cannot be installed on other accounts.\": \"私有应用不能安装在其他账户上。\",\n                        // [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 应用只能安装在 $1 账户上。您确定要将 $2 设为私有吗？\"],\n\n        // 某个 GitHub 应用 - 可选功能 https://github.com/settings/apps/<app-name>/beta\n            // [/Activate optional features for (.*)/, \"激活 $1 的可选功能\"],\n            // [/Choose a feature to activate for (.*):/, \"选择要为 $1 激活的功能：\"],\n\n            \"User-to-server token expiration\": \"用户到服务器访问令牌过期\",\n                \"User-to-server access tokens will expire after 8 hours. A Refresh Token will be provided which can be exchanged for a new access token.\": \"用户到服务器访问令牌将在 8 小时后过期。我们将提供一个刷新令牌，用户可以用它换取新的访问令牌。\",\n                \"Opt-out\": \"选择退出\",\n                \"Opt-in\": \"选择加入\",\n                    \"Disable user-to-server token expiration for this app.\": \"禁用此应用的用户到服务器访问令牌过期。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"仅允许在 $1 帐户上安装此 GitHub 应用。\"],\n        [/Choose an account to install (.*) on:/, \"选择要安装 $1 的账户：\"],\n        [/Install (.*) on this account./, \"安装 $1 到此账户上。\"],\n        [/Install (.*)/, \"安装 $1\"],\n        [/(.*) is installed on this account./, \"$1 已安装在此账户上。\"],\n        [/Where should we transfer (.*)\\?/, \"将 $1 转让给谁？\"],\n        [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用户或组织都可以安装此 GitHub 应用。您确定要公开 $1 吗？\"],\n        [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 应用只能安装在 $1 账户上。您确定要将 $2 设为私有吗？\"],\n        [/(\\d+) accounts?/, \"$1 个账户\"],\n        [/Activate optional features for (.*)/, \"激活 $1 的可选功能\"],\n        [/Choose a feature to activate for (.*):/, \"选择要为 $1 激活的功能：\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"New OAuth Application\": \"新 OAuth 应用\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/apps/new\"] = I18N[\"zh-CN\"][\"settings/apps\"];\n\nI18N[\"zh-CN\"][\"settings/developers\"] = { // 设置 - 开发者设置/OAuth 应用\n    \"static\": { // 静态翻译\n            \"Developer Settings\": \"开发者设置\",\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"OAuth Apps\": \"OAuth 应用\",\n            \"Personal access tokens\": \"个人访问令牌\",\n                \"Fine-grained tokens\": \"精细化的令牌\",\n                \"Tokens (classic)\": \"令牌（经典）\",\n\n        // OAuth 应用 https://github.com/settings/developers\n            \"No OAuth applications\": \"没有 OAuth 应用\",\n            \"OAuth applications are used to access the GitHub API.\": \"OAuth 应用用于访问 GitHub API。\",\n            \"Read the docs\": \"阅读文档\",\n            \"to find out more.\": \"以了解更多情况。\",\n            \"Register a new application\": \"注册新 OAuth 应用\",\n\n            \"No OAuth apps\": \"无 OAuth 应用\",\n            \"OAuth apps are used to access the GitHub API. Read the docs to find out more.\": \"OAuth 应用程序用于访问 GitHub API。阅读文档了解详情。\",\n            \"New OAuth app\": \"注册新 OAuth 应用\",\n\n            \"View documentation\": \"查看文档\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Developer applications\": \"开发者应用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"settings/applications/new\"] = { // 设置 - 开发者设置/OAuth 应用\n    \"static\": { // 静态翻译\n\n        // 注册 OAuth 应用 https://github.com/settings/applications/new\n            \"Developer Settings\": \"开发者设置\",\n\n            \"Register a new OAuth app\": \"注册 OAuth 应用\",\n            \"Application name\": \"应用名\",\n            \"Something users will recognize and trust.\": \"让用户识别和信任。\",\n            \"Homepage URL\": \"主页地址\",\n            \"The full URL to your application homepage.\": \"您的应用主页地址。\",\n            \"Application description\": \"应用描述\",\n            \"Application description is optional\": \"应用描述 (可选)\",\n            \"This is displayed to all users of your application.\": \"所有用户都能看到您的应用描述。\",\n            \"Authorization callback URL\": \"认证回调地址\",\n            \"Your application’s callback URL. Read our\": \"您的应用授权回调地址。阅读我们\",\n            \"OAuth documentation\": \"OAuth 文档\",\n            \"for more information.\": \"了解更多信息。\",\n            \"Enable Device Flow\": \"启用设备流程\",\n            \"Allow this OAuth App to authorize users via the Device Flow.\": \"允许此 OAuth 应用通过设备流程授权用户。\",\n            \"Read the\": \"阅读\",\n            \"Device Flow documentation\": \"设备流程文档\",\n            \"Register application\": \"注册应用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/applications/new\"] = I18N[\"zh-CN\"][\"settings/applications/new\"];\n\nI18N[\"zh-CN\"][\"settings/personal-access-tokens\"] = { // 设置 - 开发者设置/个人访问令牌\n    \"static\": { // 静态翻译\n            \"Developer Settings\": \"开发者设置\",\n            \"GitHub Apps\": \"GitHub 应用\",\n            \"OAuth Apps\": \"OAuth 应用\",\n            \"Personal access tokens\": \"个人访问令牌\",\n                \"Fine-grained tokens\": \"精细化的令牌\",\n                \"Tokens (classic)\": \"令牌（经典）\",\n\n        // 开发者设置 - 精细化的个人访问令牌 https://github.com/settings/personal-access-tokens\n            \"Fine-grained personal access tokens\": \"精细化的个人访问令牌\",\n            // 未创建时\n                \"No fine-grained tokens created\": \"没有创建精细化的个人访问令牌\",\n                \"Need an API token for scripts or testing? Generate a personal access token for quick access to the GitHub API.\": \"需要用于脚本或测试的 API 令牌？生成个人访问令牌，快速访问 GitHub API。\",\n\n            \"These are fine-grained, repository-scoped tokens suitable for personal\": \"这些都是精细化的、仓库域的令牌，适合个人\",\n            \"use and for using Git over HTTPS.\": \"使用和通过 HTTPS 使用 Git。\",\n\n            \"Never used •\": \"从未使用过 •\",\n            \"Last used within the last week\": \"最后一次使用是最近 1 周之内\",\n            // [/Last used within/, \"最后一次使用是\"],\n\n            \"Loading expiration ...\": \"载入有效期 …\",\n            \"This token has expired.\": \"此令牌已过期。\",\n                \"To set a new expiration date, you must regenerate the token.\": \"要设置新的有效期，您必须重新生成令牌。\",\n            \"Regenerate\": \"重新生成\",\n\n            // 生成令牌后提醒复制\n                \"Make sure to copy your personal access token now as you will not be able to see this again.\": \"请务必立即复制您的个人访问令牌，因为您将无法再次看到它。\",\n\n            // 删除令牌对话框\n                \"Are you sure you want to delete this token?\": \"您确定要删除此令牌吗？\",\n                \"Any applications or scripts using this token will no longer be able to access the GitHub API. You cannot undo this action.\": \"任何使用此令牌的应用或脚本将无法再访问 GitHub API。您无法撤消此操作。\",\n                \"I understand, delete this token\": \"我明白了，依然删除该令牌。\",\n\n            // 顶部提醒\n                \"Deleted personal access token\": \"已删除个人访问令牌\",\n\n        // 创建精细化个人访问令牌 https://github.com/settings/personal-access-tokens/new\n            \"New fine-grained personal access token\": \"新建精细化个人访问令牌\",\n            \"Create a fine-grained, repository-scoped token suitable for personal API use and for using Git over HTTPS.\": \"创建精细化的、仓库域的令牌，适合个人 API 使用和通过 HTTPS 使用 Git。\",\n\n            \"Token name\": \"令牌名称\",\n                \"A unique name for this token. May be visible to resource owners or users with possession of the token.\": \"此令牌的唯一名称。可能对资源所有者或持有该令牌的用户可见。\",\n                \"Name can't be blank\": \"名称不能为空\",\n                \"' is available.\": \"' 可用。\",\n                \"' is not available. The token name has already been taken.\": \"' 不可用。令牌名称已被占用。\",\n                \"Name has already been taken\": \"名称已被占用\",\n            \"Description\": \"描述\",\n            \"Resource owner\": \"资源所有者\",\n                \"The token will only be able to make changes to resources owned by the selected resource owner. Tokens can always read all public repositories.\": \"该令牌只能修改所选资源所有者拥有的资源。令牌始终可以读取所有公共仓库。\",\n\n                    \"Select resource owner\": \"选择资源所有者\",\n                        \"You may only select resource owners with fine-grained PATs enabled.\": \"您只能选择已启用精细化个人访问令牌（PAT）的资源所有者。\",\n            \"Authorizing...\": \"授权中…\",\n\n            \"Expiration\": \"有效期\",\n                \"7 days\": \"7 天\",\n                \"30 days\": \"30 天\",\n                \"60 days\": \"60 天\",\n                \"90 days\": \"90 天\",\n                \"Custom\": \"自定义\",\n                    \"Select date *\": \"选择日期 *\",\n                    \"Expiration date can't be blank\": \"过期时间不能为空\",\n                \"No expiration\": \"无有效期\",\n                // [/Limit set by ([^ ]+) organization/, \"由 $1 组织设定的限制\"],\n                \"between 1 and 366 days\": \"1~366 天\",\n\n                \"The token will expire on the selected date\": \"此令牌将在指定日期过期\",\n                \"GitHub strongly recommends that you set an expiration date for your token to help keep your information secure.\": \"GitHub 强烈建议您为令牌设置有效期，以帮助确保您的信息安全。\",\n\n            \"Repository access\": \"仓库访问\",\n                \"Select the repositories this token can access. Personal access tokens can always read from all public repositories on GitHub.com\": \"选择此令牌可以访问的仓库。个人访问令牌始终可以读取 GitHub.com 上所有公共仓库中的内容。\", // 更新模式下\n\n                \"Public repositories\": \"公共仓库\",\n                    \"Read-only access to public repositories.\": \"对公共仓库的只读访问权限。\",\n                \"All repositories\": \"所有仓库\",\n                    \"This applies to all current and future repositories you own. Also includes public repositories (read-only).\": \"规则适用于您所有现有及未来仓库。同时包括公共仓库（只读）。\",\n                    \"This applies to all current and future repositories that you can access in this organization. Also includes public repositories (read-only).\": \"此规则适用于您在此组织内可访问的所有现有及未来仓库，同时包括公共仓库（只读）。\",\n                \"Only select repositories\": \"仅选定的仓库\",\n                    \"Select at least one repository. Max 50 repositories. Also includes public repositories (read-only).\": \"至少选择一个仓库，最多可选择 50 个仓库。同时包括公共仓库（只读）。\",\n                    \"Select repositories\": \"选择仓库\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"选定 #1 个仓库\"],\n                        \"Select at least one repository.\": \"至少选择一个仓库。\",\n                            \"No repositories found.\": \"未找到仓库。\",\n\n            \"Permissions\": \"权限\",\n                \"Choose the minimal permissions necessary for your needs.\": \"选择满足您需求的最低权限。\",\n                \"Learn more about permissions.\": \"了解更多关于权限的信息。\",\n\n                \"Access:\": \"访问权限：\",\n                \"Read and write\": \"读写\",\n                \"Read-only\": \"只读\",\n                \"Access: Read-only\": \"访问权限: 只读\",\n                    \"Read access required to use other repository permissions.\": \"使用其他仓库权限需要读取权限。\",\n                    \"Read access required to use other repository permissions\": \"使用其他仓库权限需要读取权限。\",\n\n                \"Add permissions\": \"添加权限\",\n                    \"Select repository permissions\": \"选择仓库权限\",\n                        \"No items available\": \"尚无可用项目\",\n                    \"Select account permissions\": \"选择账户权限\",\n                    \"Select organization permissions\": \"选择组织权限\",\n\n            // 仓库权限\n                \"No repository permissions added yet\": \"尚未添加仓库权限\",\n                \"Repository permissions permit access to repositories and related resources.\": \"仓库权限允许访问仓库和相关资源。\",\n\n                \"Actions\": \"操作\",\n                    \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的运行和工件。\",\n                \"Administration\": \"管理\",\n                    \"Repository creation, deletion, settings, teams, and collaborators.\": \"仓库创建、删除、设置、团队和协作者。\",\n                \"Artifact metadata\": \"附件元数据\",\n                    \"Create and retrieve artifact metadata for a repository.\": \"创建和检索仓库附件的元数据。\",\n                \"Attestations\": \"证书\",\n                    \"Create and retrieve attestations for a repository.\": \"创建和检索仓库的证书。\",\n                // \"Checks\": \"检查\",\n                //     \"Checks on code.\": \"检查代码。\",\n                \"Code scanning alerts\": \"代码扫描警报\",\n                    \"View and manage code scanning alerts.\": \"查看和管理代码扫描警报。\",\n                // \"\": \"代码空间\",\n                    \"Create, edit, delete and list Codespaces.\": \"创建、编辑、删除和列出代码空间。\",\n                \"Codespaces lifecycle admin\": \"代码空间的生命周期管理\",\n                    \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理代码空间的生命周期，包括启动和停止。\",\n                \"Codespaces metadata\": \"代码空间元数据\",\n                    \"Access Codespaces metadata including the devcontainers and machine type.\": \"访问代码空间元数据，包括开发容器和机器类型。\",\n                \"Codespaces secrets\": \"代码空间机密\",\n                    \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制代码空间的用户机密对特定仓库的修改。\",\n                \"Commit statuses\": \"提交状态\",\n                    \"Commit statuses.\": \"提交状态。\",\n                \"Contents\": \"内容\",\n                    \"Repository contents, commits, branches, downloads, releases, and merges.\": \"仓库内容、提交、分支、下载、发布和合并。\",\n                // 自定义属性\n                    \"Read and write repository custom properties values at the repository level, when allowed by the property.\": \"在属性允许的情况下，在仓库级别读取和写入仓库自定义属性值。\",\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Retrieve Dependabot alerts.\": \"检索 Dependabot 警报。\",\n                \"Dependabot secrets\": \"Dependabot 机密\",\n                    \"Manage Dependabot repository secrets.\": \"管理 Dependabot 仓库的机密。\",\n                \"Deployments\": \"部署\",\n                    \"Deployments and deployment statuses.\": \"部署和部署状态。\",\n                \"Discussions\": \"讨论\",\n                    \"Discussions and related comments and labels.\": \"讨论及相关评论和标签。\",\n                \"Environments\": \"环境\",\n                    \"Manage repository environments.\": \"管理仓库环境。\",\n                \"Issues\": \"议题\",\n                    \"Issues and related comments, assignees, labels, and milestones.\": \"议题及相关评论、受理人、标签和里程碑。\",\n                \"Merge queues\": \"合并列队\",\n                    \"Manage a repository's merge queues\": \"管理仓库的合并队列。\",\n                \"Metadata\": \"元数据\",\n                    \"Search repositories, list collaborators, and access repository metadata.\": \"搜索仓库、列出协作者，访问仓库元数据。\",\n                // \"Packages\": \"软件包\",\n                //     \"Packages published to the GitHub Package Platform.\": \"发布软件包到 GitHub Package 平台。\",\n                \"Pages\": \"GitHub Pages\",\n                    \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"检索页面状态、配置和构建，以及创建新的构建。\",\n                // \"Projects\": \"项目\",\n                //     \"Manage classic projects within a repository.\": \"管理仓库中的经典项目。\",\n                \"Pull requests\": \"拉取请求\",\n                    \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取请求及相关评论、受让人、标签、里程碑和合并。\",\n                \"Repository security advisories\": \"仓库安全公告\",\n                    \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                \"Secret scanning alert dismissal requests\": \"机密扫描警报解除请求\",\n                    \"View and manage secret scanning alert dismissal requests\":\"查看和管理机密扫描警报解除请求\",\n                \"Secret scanning alerts\": \"机密扫描警报\",\n                    \"View and manage secret scanning alerts.\": \"查看和管理机密扫描警报。\",\n                \"Secret scanning push protection bypass requests\": \"机密扫描推送保护绕过请求\",\n                    \"Review and manage repository secret scanning push protection bypass requests.\": \"审查和管理仓库机密扫描推送保护绕过请求。\",\n                \"Secrets\": \"机密\",\n                    \"Manage Actions repository secrets.\": \"管理操作仓库机密。\",\n                \"Variables\": \"变量\",\n                    \"Manage Actions repository variables.\": \"管理操作仓库变量。\",\n                \"Webhooks\": \"Web 钩子\",\n                    \"Manage the post-receive hooks for a repository.\": \"管理仓库的接收后钩子。\",\n                \"Workflows\": \"工作流程\",\n                    \"Update GitHub Action workflow files.\": \"更新 GitHub Actions 工作流程文件。\",\n\n            // 账户权限\n                \"Account\": \"账户\",\n                \"No account permissions added yet\": \"尚未添加账户权限\",\n                \"User permissions permit access to resources under your personal GitHub account.\": \"用户权限允许访问您个人 GitHub 账户下的资源。\",\n\n                \"Block another user\": \"拉黑其他用户\",\n                    \"View and manage users blocked by the user.\": \"查看和管理被用户拉黑的用户。\",\n                \"Codespaces user secrets\": \"代码空间用户机密\",\n                    \"Manage Codespaces user secrets.\": \"管理代码空间用户机密。\",\n                \"Copilot Chat\": \"Copilot 聊天\",\n                    \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"该应用程序将获取您的 GitHub ID、您的 GitHub Copilot 聊天会话消息（不包括发送到其他应用程序的消息），以及提供的 GitHub Copilot 聊天会话消息的时间戳。必须启用此权限才能使用 Copilot 扩展功能。\",\n                \"Copilot Editor Context\": \"Copilot 编辑器上下文\",\n                    \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每当您通过 Copilot Chat 向该应用发送消息时，该应用将接收部分编辑器上下文（例如当前打开的文件）。\",\n                \"Copilot Requests\": \"Copilot 请求\",\n                    \"Send Copilot requests.\": \"发送 Copilot 请求\",\n                \"Email addresses\": \"电子邮箱地址\",\n                    \"Manage a user's email addresses.\": \"管理用户的电子邮箱地址。\",\n                // 活动\n                    \"View events triggered by a user's activity.\": \"查看由用户活动触发的事件。\",\n                // 关注者\n                    \"A user's followers\": \"用户的关注者\",\n                \"GPG keys\": \"GPG 密钥\",\n                    \"View and manage a user's GPG keys.\": \"查看和管理用户的 GPG 密钥。\",\n                // Gist\n                    \"Create and modify a user's gists and comments.\": \"创建和修改用户的代码片段和评论。\",\n                \"Git SSH keys\": \"Git SSH 密钥\",\n                \"Interaction limits\": \"交互限制\",\n                    \"Interaction limits on repositories\": \"仓库的交互限制\",\n                \"Knowledge bases\": \"知识库\",\n                    \"View knowledge bases for a user.\": \"为用户查看知识库。\",\n                \"Models\": \"模型\",\n                    \"Allows access to GitHub Models.\": \"允许访问 GitHub 模型。\",\n                \"Plan\": \"计划\",\n                    \"View a user's plan.\": \"查看用户的计划。\",\n                \"Private repository invitations\": \"私有仓库邀请\",\n                    \"View a user's invitations to private repositories\": \"查看用户对私有仓库的邀请\",\n                \"Profile\": \"个人信息\",\n                    \"Manage a user's profile settings.\": \"管理用户的个人信息设置。\",\n                \"SSH signing keys\": \"SSH 签名密钥\",\n                    \"View and manage a user's SSH signing keys.\": \"查看和管理用户的 SSH 签名密钥。\",\n                \"Starring\": \"星标\",\n                    \"List and manage repositories a user is starring.\": \"列出和管理用户标星的仓库。\",\n                \"Watching\": \"关注\",\n                    \"List and change repositories a user is subscribed to.\": \"列出和更改用户订阅的仓库。\",\n\n            // 组织权限\n                \"No organization permissions added yet\": \"尚未组织账户权限\",\n                \"Organization permissions permit access to organization related resources.\": \"组织权限允许访问组织相关资源。\",\n\n                \"API Insights\": \"API 洞察\",\n                    \"View statistics on how the API is being used for an organization.\": \"查看 API 在组织中的使用统计。\",\n                // 管理\n                    \"Manage access to an organization.\": \"管理对组织的访问。\",\n                \"Blocking users\": \"拉黑用户\",\n                    \"View and manage users blocked by the organization.\": \"查看和管理被组织拉黑的用户。\",\n                \"Campaigns\": \"活动\",\n                    \"Manage campaigns.\": \"管理活动。\",\n                \"Custom organization roles\": \"自定义组织角色\",\n                    \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"创建、编辑、删除和列出自定义组织角色。查看系统组织角色。\",\n                \"Custom properties\": \"自定义属性\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"读取和写入组织级别的仓库自定义属性值并管理定义。\",\n                \"Custom properties for organizations\": \"自定义组织属性\",\n                    \"Read and write organization custom properties values at the organization level, when allowed by the property.\": \"在属性允许的情况下，读取和写入组织级别的自定义属性值。\",\n                \"Custom repository roles\": \"自定义仓库角色\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"读取和写入组织级别的仓库自定义属性值并管理定义。\",\n                \"Events\": \"事件\",\n                    \"View events triggered by an activity in an organization.\": \"查看组织中某项活动所触发的事件。\",\n                \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                    \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商业版席位和设置\",\n                \"Hosted runner custom images\": \"托管的运行器自定义镜像\",\n                    \"View and manage hosted runner custom images available to an organization.\": \"查看和管理组织可用的托管运行器自定义镜像。\",\n                \"Issue Fields\": \"议题字段\",\n                    \"Manage issue fields for an organization.\": \"管理组织的议题字段。\",\n                \"Issue Types\": \"议题类型\",\n                    \"Manage issue types for an organization.\": \"管理组织的议题类型。\",\n                // 知识库\n                    \"View and manage knowledge bases for an organization.\": \"查看和管理组织的知识库。\",\n                \"Members\": \"成员\",\n                    \"Organization members and teams.\": \"组织成员和团队。\",\n                // 模型\n                    \"Manage model access for an organization.\": \"管理组织的模型访问。\",\n                \"Network configurations\": \"网络配置\",\n                    \"View and manage hosted compute network configurations available to an organization.\": \"查看和管理组织可用的托管计算网络配置。\",\n                \"Organization announcement banners\": \"组织公告横幅\",\n                    \"View and modify announcement banners for an organization.\": \"查看并修改组织的公告横幅。\",\n                \"Organization bypass requests for secret scanning\": \"组织绕过机密扫描请求\",\n                    \"Review and manage secret scanning push protection bypass requests.\": \"审查和管理机密扫描推送保护绕过请求。\",\n                \"Organization codespaces\": \"组织代码空间\",\n                    \"Manage Codespaces for an organization.\": \"管理组织的代码空间。\",\n                \"Organization codespaces secrets\": \"组织代码空间机密\",\n                    \"Manage Codespaces Secrets for an organization.\": \"管理组织的代码空间机密。\",\n                \"Organization codespaces settings\": \"组织代码空间设置\",\n                    \"Manage Codespaces settings for an organization.\": \"管理组织的代码空间设置。\",\n                \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                    \"Manage Dependabot organization secrets.\": \"管理 Dependabot 组织的机密。\",\n                \"Organization dismissal requests for code scanning\": \"组织代码扫描的解除请求\",\n                    \"Review and manage code scanning alert dismissal requests.\": \"审查和管理代码扫描警报解除请求。\",\n                \"Organization private registries\": \"组织私有注册表\",\n                    \"Manage private registries for an organization.\": \"管理组织的私有注册表。\",\n                \"Plan\": \"计划\",\n                    \"View an organization's plan.\": \"查看组织的计划。\",\n                // 项目\n                    \"Manage projects for an organization.\": \"管理组织的项目。\",\n                // 机密扫描警报解除请求\n                    \"Review and manage secret scanning alert dismissal requests\": \"审查和管理机密扫描警报解除请求\",\n                // 机密\n                    \"Manage Actions organization secrets.\": \"管理操作组织机密\",\n                \"Self-hosted runners\": \"自托管运行器\",\n                    \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理组织可用的 “操作自托管运行器”。\",\n                \"Team discussions\": \"团队讨论\",\n                    \"Manage team discussions and related comments.\": \"管理团队讨论及相关评论。\",\n                // 变量\n                    \"Manage Actions organization variables.\": \"管理操作组织变量。\",\n                // Web 钩子\n                    \"Manage the post-receive hooks for an organization.\": \"管理组织的接收后钩子。\",\n\n            \"This token will be ready for use immediately.\": \"该令牌将即可可用。\",\n\n            \"New personal access token\": \"新建个人访问令牌\",\n                \"Your new personal access token\": \"您的新个人访问令牌\",\n                \"will be ready for use immediately. It will expire on\": \"将立即准备就绪，可供使用。其有效期至\",\n                // [/(.+) grants you/, \"$1 授予您\"],\n                // [/(\\d+) account permissions?/, \"$1 项账户权限\"],\n                // [/(\\d+) permissions? for all repositories:/, \"所有仓库的 $1 项权限\"],\n                // [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 个仓库的 $2 项权限\"],\n                // [/(\\d+) organization permissions?/, \"$1 项组织权限\"],\n                \"Generating...\": \"生成中…\",\n\n        // 查看、更新精细化个人访问令牌 https://github.com/settings/personal-access-tokens/<id>\n            \"No description\": \"暂无描述\",\n            \"Created\": \"创建于\",\n                \"today\": \"今日\",\n\n            \"Access on\": \"访问:\",\n            \"Access on the\": \"访问:\",\n            \"organization\": \"组织\",\n\n            \"User permissions\": \"用户权限\",\n            \"Repository permissions\": \"仓库权限\",\n            \"Organization permissions\": \"组织权限\",\n\n\n            // 具体权限暂时翻译 太麻烦 主要他将读/写具体的权限合并描述\n\n            // 顶部提醒\n                \"Your personal access token has been updated\": \"您的个人访问令牌已更新\",\n\n        // 重新生成精细化个人访问令牌 https://github.com/settings/personal-access-tokens/<id>/regenerate\n            \"Regenerate fine-grained personal access token\": \"重新生成精细化个人访问令牌\",\n\n        // 开发者设置 - 个人访问令牌（经典） https://github.com/settings/tokens\n            \"Personal access tokens (classic)\": \"个人访问令牌（经典）\",\n            \"Generate new token\": \"生成新令牌\",\n                \"Fine-grained, repo-scoped\": \"精细化、 仓库域\",\n                \"Generate new token (classic)\": \"生成新令牌（经典）\",\n                    \"For general use\": \"一般用途\",\n\n            \"Tokens you have generated that can be used to access the\": \"生成令牌用于访问\",\n\n            \"Expires\": \"有效期至\",\n            \"This token has no expiration date\": \"此令牌未设置有效期\",\n            \"This token has expired\": \"此令牌已过期\",\n            \"Never used\": \"从未使用\",\n\n            // 生成令牌后提醒复制\n                \"Make sure to copy your personal access token now. You won’t be able to see it again!\": \"确保立即复制您的个人访问令牌。您将无法再看到它！\",\n\n            \"Personal access tokens (classic) function like ordinary OAuth access tokens. They can be used instead of a password for Git over HTTPS, or can be used to\": \"个人访问令牌（经典）的功能类似于普通的 OAuth 访问令牌。它们可以用来代替 HTTPS 上 Git 的密码，或者可以用来\",\n            \"authenticate to the API over Basic Authentication\": \"通过 ‘基本身份验证’ 对 API 进行身份验证\",\n\n        // 创建新个人访问令牌（经典） https://github.com/settings/tokens/new\n            \"New personal access token (classic)\": \"新建个人访问令牌（经典）\",\n            \"Note\": \"备注\",\n                \"Note can't be blank\": \"备注不能为空\",\n            \"What’s this token for?\": \"这个令牌有什么用？\",\n\n            \"Expiration\": \"有效期\",\n            // \"This token expires\": \"该令牌有效期至\",\n            \". To set a new expiration date, you must\": \"。要设置一个新的有效期，您必须\",\n\n\n            \"Select scopes\": \"选择作用域\",\n                \"Scopes define the access for personal tokens.\": \"作用域定义了个人令牌的访问范围。\",\n                \"Read more about OAuth scopes.\": \"了解更多关于 OAuth 作用域的信息。\",\n\n            // 权限\n                \"Full control of private repositories\": \"完全控制私有仓库\",\n                \"Access commit status\": \"访问提交状态\",\n                \"Access deployment status\": \"访问部署状态\",\n                \"Access public repositories\": \"访问公共仓库\",\n                \"Access repository invitations\": \"访问仓库邀请\",\n                \"Read and write security events\": \"读写安全事件\",\n                \"Update GitHub Action workflows\": \"更新 GitHub Actions 工作流程\",\n                \"Upload packages to GitHub Package Registry\": \"将包上传到 GitHub Packages 包注册\",\n                \"Download packages from GitHub Package Registry\": \"从 GitHub Packages 包注册表下载包\",\n                \"Delete packages from GitHub Package Registry\": \"从 GitHub Packages 包注册表中删除包\",\n                \"Full control of orgs and teams, read and write org projects\": \"完全控制组织和团队，读写组织项目\",\n                \"Read and write org and team membership, read and write org projects\": \"读写组织和团队成员，读写组织项目\",\n                \"Read org and team membership, read org projects\": \"读取组织和团队成员，读取组织项目\",\n                \"Manage org runners and runner groups\": \"管理组织运行器和运行器组\",\n                \"Full control of user public keys\": \"完全控制用户公钥\",\n                \"Write user public keys\": \"写入用户公钥\",\n                \"Read user public keys\": \"读取用户公钥\",\n                \"Full control of repository hooks\": \"完全控制仓库钩子\",\n                \"Write repository hooks\": \"写入仓库钩子\",\n                \"Read repository hooks\": \"读取仓库钩子\",\n                \"Full control of organization hooks\": \"完全控制组织钩子\",\n                \"Create gists\": \"创建代码片段\",\n                \"Access notifications\": \"访问通知\",\n                \"Update ALL user data\": \" 更新所有用户数据\",\n                \"Read ALL user profile data\": \"读取所有用户个人资料数据\",\n                \"Access user email addresses (read-only)\": \"访问用户电子邮箱地址（只读）\",\n                \"Follow and unfollow users\": \"关注和取消关注用户\",\n                \"Delete repositories\": \"删除仓库\",\n                \"Read and write team discussions\": \"读写团队讨论\",\n                \"Read team discussions\": \"读取团队讨论\",\n                \"Full control of enterprises\": \"完全控制企业\",\n                \"Manage enterprise runners and runner groups\": \"管理企业运行器和运行器组\",\n                \"Read and write enterprise billing data\": \"读写企业计费数据\",\n                \"Read enterprise profile data\": \"读取企业个人数据\",\n                \"Provisioning of users and groups via SCIM\": \"通过 SCIM 配置用户和组\",\n                \"Full control of audit log\": \"完全控制审核日志\",\n                \"Read access of audit log\": \"读取审核日志\",\n                \"Full control of codespaces\": \"完全控制代码空间\",\n                \"Ability to create, read, update, and delete codespace secrets\": \"创建、读取、更新和删除代码空间机密\",\n                \"Full control of GitHub Copilot settings and seat assignments\": \"完全控制 GitHub Copilot 设置和席位分配\",\n                \"View and edit Copilot Business seat assignments\": \"查看和编辑 GitHub Copilot 商业版席位分配\",\n                \"Write org hosted compute network configurations\": \"写入组织托管计算网络配置\",\n                \"Read org hosted compute network configurations\": \"读取组织托管计算网络配置\",\n                \"Full control of projects\": \"完全控制项目\",\n                \"Read access of projects\": \"读取项目\",\n                \"Full control of public user GPG keys\": \"完全控制公共用户 GPG 密钥\",\n                \"(Developer Preview)\": \"（开发者预览版）\",\n                \"Write public user GPG keys\": \"写入公共用户 GPG 密钥\",\n                \"Read public user GPG keys\": \"读取公共用户 GPG 密钥\",\n                \"Full control of public user SSH signing keys\": \"完全控制公共用户 SSH 签名密钥\",\n                \"Write public user SSH signing keys\": \"写入公共用户 SSH 签名密钥\",\n                \"Read public user SSH signing keys\": \"读取公共用户 SSH 签名密钥\",\n\n            \"Generate token\": \"生成令牌\",\n                // 顶部提醒\n                \"Some of the scopes you’ve selected are included in other scopes. Only the minimum set of necessary scopes has been saved.\": \"您选择的一些作用域包含在其他作用域中。只保存了必要作用域的最小集合。\",\n                \"Note has already been taken\": \"备注已存在\",\n\n        // 重新生成个人访问令牌（经典） https://github.com/settings/tokens/<id>/regenerate\n            \"Regenerate personal access token (classic)\": \"重新生成个人访问令牌（经典）\",\n                \"Submitting this form will generate a new token. Be aware that any scripts or applications using this token will need to be updated.\": \"提交此表单将产生一个新的令牌。请注意，任何使用该令牌的脚本或应用将需要更新。\",\n            \"Regenerate token\": \"重新生成令牌\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Expires on ([^ ]+), ([^ ]+) (\\d+) (\\d+)/, function(all, week, month, day, year){\n            var weekKey = {\n                \"Sun\"  : \"周日\",\n                \"Mon\"  : \"周一\",\n                \"Tue\"  : \"周二\",\n                \"Wed\"  : \"周三\",\n                \"Thu\"  : \"周四\",\n                \"Fri\"  : \"周五\",\n                \"Sat\"  : \"周六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '有效期至 ' + year + '年' + monthKey[month] + day + '日，' + weekKey[week];\n        }],\n        [/(\\d+) days? \\((.+)\\)/, (match, d , p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return d + `天（${translatedDate}）`;\n        }],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"],\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 月之内\"],\n        [/Last used within the last (\\d+) years?/, \"最后一次使用是最近 $1 年之内\"],\n        [/Limit set by ([^ ]+) organization/, \"由 $1 组织设定的限制\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选定 $1 个仓库\"],\n        // 新建个人访问令牌对话框\n            [/(.+) grants you/, \"$1 授予您\"],\n            [/(\\d+) account permissions?/, \"$1 项账户权限\"],\n            [/(\\d+) permissions? for all repositories:/, \"所有仓库的 $1 项权限\"],\n            [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 个仓库的 $2 项权限\"],\n            [/(\\d+) organization permissions?/, \"$1 项组织权限\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Fine-grained Personal Access Tokens\": \"精细化的个人访问令牌\",\n            \"New Fine-grained Personal Access Token\": \"新建精细化个人访问令牌\",\n            \"Personal Access Tokens (Classic)\": \"个人访问令牌（经典）\",\n            \"New Personal Access Token (Classic)\": \"新建个人访问令牌（经典）\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"settings/tokens\"] = I18N[\"zh-CN\"][\"settings/personal-access-tokens\"];\n\n// 仓库相关==\nI18N[\"zh-CN\"][\"repository-public\"] = { // 仓库 - 公共部分\n    \"static\": { // 静态翻译\n        // 仓库页面 /<user-name>/<repo-name>/\n            // 被 GitHub 官方禁用\n            \"This repository has been disabled.\": \"此仓库已被禁用。\",\n            \"Access to this repository has been disabled by GitHub Staff due to a violation of GitHub's terms of service. If you are the owner of the repository, you may reach out to GitHub Support for more information.\": \"由于违反了 GitHub 的服务条款，GitHub 已禁止访问此仓库。如果您是仓库的所有者，您可以联系 GitHub 支持以获取更多信息。\",\n\n            // 仓库地址-浮动信息窗口(仅 Android UA)\n            \"Navigate back to\": \"返回到\",\n\n            // 顶部提示\n            \"Sorry, that branch already exists.\": \"抱歉，该分支已存在。\",\n            \"has invited you to collaborate on this repository\": \"邀请您成为该仓库协作者\",\n                \"View invitation\": \"查看\",\n            \"Updated issue templates for this repository\": \"已为此仓库更新议题模板\",\n\n            // 存档\n            \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已被所有者存档。它现在是只读的。\",\n\n            \"Appearance settings\": \"外观设置\", // 未登录时出现\n                \"Increase contrast\": \"高对比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根据您的系统设置，为浅色或深色模式（或两者）启用高对比度\",\n                    \"Light mode\": \"浅色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"On\": \"开\",\n                    \"Off\": \"关\",\n\n            // 仓库违反 DMCA\n            \"Repository unavailable due to DMCA takedown.\": \"由于 DMCA 删除，仓库不可用。\",\n            \"This repository is currently disabled due to a DMCA takedown notice. We have disabled public access to the repository. The notice has been\": \"由于 DMCA 删除通知，此仓库当前已被禁用。我们已经禁止公众访问该仓库。该通知已\",\n            \"publicly posted\": \"公开发布\",\n            \"If you are the repository owner, and you believe that your repository was disabled as a result of mistake or misidentification, you have the right to file a counter notice and have the repository reinstated. Our help articles provide more details on our\": \"如果您是仓库所有者，并且您认为您的仓库由于错误或误认而被禁用，您有权提交反通知并恢复仓库。我们的帮助文章提供了关于我们的更多详细信息\",\n            \"DMCA takedown policy\": \"DMCA 删除政策\",\n            \"how to file a counter notice\": \"如何提交反通知\",\n            \". If you have any questions about the process or the risks in filing a counter notice, we suggest that you consult with a lawyer.\": \"。如果您对提交反通知的流程或风险有任何疑问，我们建议您咨询律师。\",\n\n            // 仓库包含危险内容\n            \"This repository contains malicious content that may cause technical harms. We have decided to preserve this content for security research purposes. Please exercise CAUTION when clicking links, downloading releases, or otherwise interacting with this repository.\": \"此仓库包含恶意内容，可能导致技术性损害。出于安全研究目的，我们决定保留此内容。在点击链接、下载发行版或与此仓库进行任何交互时，请务必谨慎。\",\n            \"Discover other projects on GitHub\": \"在 GitHub 上探索其他仓库\",\n            \"View repository\": \"查看仓库\",\n            \"Additional resources\": \"更多资源\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n\n             // 用户 浮动信息卡\n                \"- same time\": \"- 时间相同\",\n                \"Recently edited these files\": \"最近编辑过这些文件\",\n                \"Owns this repository\": \"拥有该仓库\",\n                \"Left a review\": \"留下了一个评论\",\n                \"Committed to this repository\": \"已提交过这个仓库\",\n                \"Committed to this repository in the past day\": \"最近一天里已提交过这个仓库\",\n                \"Committed to this repository in the past week\": \"最近一周里已提交过这个仓库\",\n                \"Committed to this repository in the past month\": \"最近一个月里已提交过这个仓库\",\n                \"Member of\": \"隶属组织\",\n                // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n                \"Opened this issue\": \"打开了该议题\",\n                \"Opened this pull request\": \"打开了该拉取请求\",\n                \"Opened this pull request (their first ever)\": \"打开了该拉取请求（他们有史以来的第一个请求）\",\n                \"Started this discussion\": \"开启了该讨论\",\n\n            // 组织  浮动信息卡\n                // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n                // [/(\\d+) members?/, \"$1 个成员\"],\n\n            \"Some checks haven't completed yet\": \"部分检查还未完成\",\n            \"Started\": \"开始于\",\n            \"— This check has started...\": \"— 检查已开始...\",\n\n            \"Jump to bottom\": \"跳到底部\", //小屏模式\n            \"Forked from\": \"复刻自\", // 同上（发行版未登录页面）\n\n            \"people\": \"人\", // 提交\n            \"committed\": \"提交于\", // 提交浮窗\n            \"authored\": \"撰写于\",\n            \"authored and\": \"撰写和\", // 1 编写，由 2 提交\n\n            // 标签栏\n            \"Code\": \"代码\",\n            \"Pull requests\": \"拉取请求\",\n            \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"项目\",\n            \"Models\": \"模型\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"设置\",\n\n            \"Additional navigation options\": \"更多导航选项\", // 小屏\n            \"View all files\": \"查看所有文件\", //Android UA 下出现\n\n            // \"Pulse\": \"统计\",\n            // \"Graphs\": \"图表\",\n\n            // 返回通知页状态条\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Subscribe\": \"订阅\",\n            \"Unsubscribe\": \"退订\",\n            \"Mark as read\": \"标记为已读\",\n            \"Mark as unread\": \"标记为未读\",\n            \"Move to inbox\": \"移动到收件箱\",\n            \"Save\": \"保存\",\n            \"Unsave\": \"未保存\",\n\n            // 评论框头部栏 (议题 & 拉取请求)\n                \"Contributor\": \"贡献者\",\n                \"Owner\": \"所有者\",\n                \"Author\": \"作者\",\n                    \"You are the author of this issue\": \"您是这个议题的作者。\",  // 议题\n                    \"You are the author of this pull request.\": \"您是这个拉取请求的作者。\", // 拉取请求\n                    \"This user is the author of this issue\": \"该用户是这个议题的作者。\",  // 议题\n                    \"This user is the author of this issue.\": \"该用户是这个议题的作者。\",// 拉取请求\n                    \"This user is the author of this pull request.\": \"该用户是这个拉取请求的作者。\",// 拉取请求\n                \"Member\": \"成员\",\n                    //[/This user is a member of the ([^ ]+)./, \"该用户是 $1 组织的成员。\"],\n                \"Collaborator\": \"协作者\",\n                    //[/This user has been invited to collaborate on the ([^ ]+) repository./, \"该用户已被邀请在 $1 仓库上进行协作。\"],\n                \"Pick your reaction\": \"选择您的表情\",\n                \"Copy link\": \"复制链接\",\n                \"Quote reply\": \"引用回复\",\n                \"Reference in new issue\": \"引用到新议题\",\n                    // 引用到新议题 对话框\n                    \"Body\": \"正文\",\n                    \"Issue title\": \"议题标题\",\n                    \"Issue body\": \"议题正文\",\n                    \"Select repository\": \"选择仓库\",\n                    \"Repository:\": \"仓库：\",\n                    \"No matching repositories.\": \"没有匹配的仓库。\",\n                \"Report content\": \"举报内容\",\n                \"Report\": \"举报\",\n                // 评论删除提醒\n                    \"Are you sure you want to delete this?\": \"您定要删除这个吗？\",\n\n                \"commented\": \"评论于\",\n                \"commented on behalf of\": \"评论，代表\",\n                \"— with\": \"— 通过\",\n                \"Update comment\": \"更新评论\",\n                \"Hide\": \"隐藏\",\n                    \"via email\": \"通过邮件\",\n\n                \"created\": \"创建\",\n                \"edited\": \"编辑\",\n                \"(most recent)\": \"(最近的)\",\n                \"(deleted)\": \"(已删除)\",\n                \"deleted this content\": \"删除了该内容\",\n                // 评论历史查看\n                \"Options\": \"选项\",\n                // 选项下拉菜单\n                \"More options\": \"更多选项\",\n                \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修订版不能被删除。需要删除敏感信息？请到信息的具体编辑处修改。\",\n                \"Delete revision from history\": \"从历史记录中删除修订\",\n                \"This edit’s content will no longer be visible.\": \"此修改的内容将不再可见。\",\n                    \"Delete revision\": \"删除修订\",\n                // 评论状态\n                \"This comment has been hidden.\": \"此评论被隐藏。\",\n                \"This comment was marked as abuse.\": \"此评论被标记为滥用。\",\n                \"This comment was marked as spam.\": \"此评论被标记为垃圾信息。\",\n                \"This comment was marked as off-topic.\": \"此评论被标记为偏离主题。\",\n                \"This comment was marked as outdated.\": \"此评论被标记为已过时。\",\n                \"This comment was marked as duplicate.\": \"此评论被标记为重复。\",\n                \"This comment was marked as resolved.\": \"此评论被标记为已解决。\",\n                \"Sign in to view\": \"登录后查看\", // 未登录\n\n            // 切换分支/标签 下拉菜单\n                \"Switch branches/tags\": \"切换分支/标签\",\n                \"Find or create a branch…\": \"查找或创建分支…\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Filter branches/tags\": \"搜索分支/标签\",\n                \"Branches\": \"分支\",\n                \"default\": \"默认\",\n                \"View all branches\": \"查看全部分支\",\n                \"Find a tag\": \"查找标签\",\n                \"Tags\": \"标签\",\n                \"Tag\": \"标签\",\n                \"Search for a tag\": \"搜索标签\",\n                \"Nothing to show\": \"暂无\",\n                \"View all tags\": \"查看全部标签\",\n\n                \"Find or create a branch...\": \"查找或创建分支…\",\n                \"Search or create a new tag\": \"搜索或创建新标签\",\n                \"View all\": \"查看全部\",\n                \"branches\": \"分支\",\n                \"Find a tag...\": \"查找标签…\",\n                \"Nothing to show\": \"暂无\",\n                \"tags\": \"标签\",\n\n                \"View all rules\": \"查看全部规则\",\n\n            // 键盘快捷键\n                \"Open in codespace\"  : \"在代码空间中打开\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Open cs.github.com in a new tab\": \"在新标签页中打开 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二级搜索栏\",\n                \"Go to Code\"                 : \"跳转到代码\",\n                \"Go to Issues\"               : \"跳转到议题\",\n                \"Go to Pull Requests\"        : \"跳转到拉取请求\",\n                \"Go to Actions\"              : \"跳转到操作\",\n                \"Go to Projects\"             : \"跳转到项目\",\n                \"Go to Wiki\"                 : \"跳转到 Wiki\",\n                \"Go to Discussions\"          : \"跳转到讨论\",\n\n                \"Copilot chat\": \"Copilot 聊天\",\n                \"Open Copilot chat\": \"打开 Copilot 聊天\",\n                \"Close Copilot chat\": \"关闭 Copilot 聊天\",\n                \"Expand/collapse Copilot chat\": \"展开/折叠 Copilot 聊天\",\n\n            // 议题\n                \"Submit comment\": \"提交评论\",\n                \"Submit comment and close issue\": \"提交评论并关闭议题\",\n                \"Preview comment\": \"预览评论\",\n                \"Create issue\": \"创建议题\",\n                // \"筛选用户\": \"\",\n                \"Filter by or edit assignees\"  : \"按受理人筛选或编辑受理人\",\n                \"Filter by or edit labels\"     : \"按标签筛选或编辑标签\",\n                \"Filter by or edit projects\"   : \"按项目筛选或编辑项目\",\n                \"Filter by or edit milestones\" : \"按里程碑筛选或编辑里程碑\",\n                \"Reply (quoting selected text)\": \"答复（引用所选文本）\",\n                \"Open saved replies\": \"打开快捷回复（引用所选文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回复（打开快捷回复）\",\n\n                \"Pull request list\": \"拉取请求列表\",\n                    \"Open pull request\"  : \"打开拉取请求\",\n                \"Pull request - Conversation tab\": \"拉取请求 - 对话标签卡\",\n                    \"Submit comment and close or open pull request\": \"提交评论和关闭或打开拉取请求\",\n                    \"Request reviewers\": \"请求审查者\",\n                    \"Link an issue or pull request from the same repository\": \"链接同一仓库的议题或拉取请求\",\n                    \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切换所有折叠审查意见的可见性，而不仅仅是当前的审查意见\",\n                \"Pull request - Files changed tab\": \"拉取请求 - 文件更改标签卡\",\n                    \"Open commits list\": \"打开提交列表\",\n                    \"Open files list\": \"打开文件列表\",\n                    \"Next commit\": \"下一个提交\",\n                    \"Previous commit\": \"上一个提交\",\n                    \"Show or hide annotations\": \"显示或隐藏批注\",\n                    \"Show or hide comments\": \"显示或隐藏评论\",\n                    \"Submit a review comment\": \"提交审查意见\",\n                    \"Collapse or expand all files instead of just the current one\": \"折叠或展开所有文件，而不仅仅是当前文件\",\n                    \"and click\": \"和点击\",\n\n            // 高频词\n                \"Merged\": \"已合并\",\n                \"Draft\": \"草案\",\n                \"Branch\": \"分支\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"标签\",\n\n            \"Compare & pull request\": \"比较 & 拉取请求\",\n\n        // 仓库 404 页面（非删库状态）\n            \"404 - page not found\": \"404 - 找不到页面\",\n            \"The\": \"该\",\n            \"branch of\": \"分支\",\n            \"does not contain the path\": \"仓库，不包含路径\",\n            \"Return to the repository overview\": \"返回仓库概述\",\n            \"Cannot find a valid ref in\": \"未找到有效的引用\",\n            \"Go to default branch\": \"跳转到默认分支\",\n\n        // 500 页面\n            \"Looks like something went wrong!\": \"好像出了什么问题！\",\n            \"We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.\": \"我们会自动跟踪这些错误，但如果问题仍然存在，请随时与我们联系。与此同时，尝试刷新。\",\n            \"Contact Support\": \"联系 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 状态\",\n\n        // 页面加载异常(仓库)\n            \"Error loading page\": \"加载页面出错\",\n            \"It looks like your internet connection is down. Please check it.\": \"您的网络连接似乎出现故障。请检查一下。\",\n\n        // 邀请继任者提醒\n            \"Ensure the future of your work!\": \"确保您工作的未来！\",\n            \"Consider inviting another GitHub user to be your successor.\": \"考虑邀请另一位 GitHub 用户作为您的继任者。\",\n            \"Inviting a successor helps ensure the continuity of your work in case you are unable to access your account.\": \"邀请继任者有助于在您无法访问账户时确保工作的连续性。\",\n            \"Invite a successor\": \"邀请继任者\",\n\n        // 仓库赞助\n            \"Couldn't load subscription status.\": \"无法加载赞助状态。\",\n            \"Retry\": \"重试\",\n\n        // 提交检查对话框\n            \"Some checks haven’t completed yet\": \"部分检查尚未完成\",\n            \"Some checks were not successful\": \"部分检查未成功\",\n            \"All checks have passed\": \"所有检查通过\",\n            \"All checks have failed\": \"所有检查失败\",\n            \"Waiting to run this check...\": \"正在等待运行此检查…\",\n            \"Queued\": \"队列中\",\n            \"Skipped\": \"已跳过\",\n            \"Deployed\": \"已部署\",\n            \"Pending\": \"待处理\",\n            \"Build Failed\": \"构建失败\",\n            \"Build Passed\": \"构建通过\",\n            \"Build Errored\": \"构建错误\",\n            \"Build Canceled\": \"构建取消\",\n            \"Waiting for build\": \"等待构建\",\n\n        // 未登录浮窗\n            \"You must be signed in to change notification settings\": \"您必须登录后才能更改通知设置\",\n            \"You must be signed in to star a repository\": \"您必须登录后才能标星仓库\",\n            \"You must be signed in to add this repository to a list\": \"您必须登录后才能将此仓库添加到列表中\",\n            \"You must be logged in to vote\": \"您必须登录后才能投票\",\n\n        \"Open commit details\": \"打开提交详情\",\n        \"failure\": \"失败\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Started (\\d+) discussions? in this repository in the past day/, \"过去一天内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository in the past week/, \"过去一周内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository in the past month/, \"过去一个月内在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Started (\\d+) discussions? in this repository/, \"在此仓库中开启了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Opened this pull request \\(their first in ([^ ]+)\\)/, \"打开了这个拉取请求（首次在 $1 发表）\"], // 用户 浮动信息卡\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您发表评论\"], // 拉取请求 浮动信息卡\n        [/(\\d+) successful checks?/, \"$1 个成功的检查\"],\n        [/(\\d+) successful/, \"$1 成功\"],\n        [/(@\\S+) generated this status\\./, \"$1 创建了这个状态\"],\n        [/Successful in (\\d+)s/, \"在 $1 秒内成功\"],\n        [/Successful in (\\d+)m/, \"在 $1 分内成功\"],\n        [/(\\d+) failing checks?/, \"$1 个失败的检查\"],\n        // 3 skipped\n        [/(\\d+) skipped/, \"$1 个跳过\"],\n        [/Failing after (\\d+)s/, \"在 $1 秒后失败\"],\n        [/(\\d+) in progress check/, \"$1 个正在运行的检查\"],\n        // [/ and /, \" 和 \"],\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/^(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        [/Answered (\\d+) discussions? in this repository in the past month/, \"过去一个月内在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Answered (\\d+) discussions? in this repository in the past week/, \"过去一周内在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/Answered (\\d+) discussions? in this repository/, \"在此仓库中回答了 $1 个讨论\"], // 用户 浮动信息卡\n        [/had recent pushes (\\d+) seconds? ago/, \"分支有了最新的推送，$1 秒之前\"],\n        [/had recent pushes (\\d+) minutes? ago/, \"分支有了最新的推送，$1 分钟之前\"],\n        [/had recent pushes less than (\\d+) minutes? ago/, \"分支有了最新的推送，不到 $1 分钟\"],\n        [/had recent pushes about/, \"分支有了最新的推送，大约\"],\n        [/This user is a member of the ([^ ]+) organization./, \"该用户是 $1 组织的成员。\"],\n        [/This user has been invited to collaborate on the ([^ ]+) repository./, \"该用户已被邀请在 $1 仓库上进行协作。\"],\n        [/You are the owner of the (.*) repository./, \"您是 $1 仓库的所有者。\"],\n        [/This user is the owner of the (.*) repository./, \"该用户是 $1 仓库的所有者。\"],\n        [/You have been invited to collaborate on the (.*) repository./, \"您已受邀参与 $1 仓库的协作。\"],\n        [/You have previously committed to the (.*) repository./, \"您之前有提交到 $1 仓库。\"],\n        [/This user has previously committed to the (.*) repository./, \"该用户之前有提交到 $1 仓库。\"],\n        [/This repository was archived by the owner on (.+). It is now read-only./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `此仓库已由所有者于${translatedDate}存档。它现在是只读的。`;\n        }],\n        [/, and ([^ ]+)/, \", 和 $1\"],\n        [/reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes) emoji/, function (all, reacted) {\n            var reactedKey = {'thumbs up': \"点赞\", 'thumbs down': \"点踩\", laugh: \"大笑\", hooray: \"欢呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"发送火箭\", eyes: \"表示关注\"};\n\n            return reactedKey[reacted];\n        }],\n        // 成为协作者提示\n        [/You now have push access to the ([^ ]+) repository./, \"您现在拥有推送至 $1 仓库的权限\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n        // 提交 - 作者窗\n        [/(\\d+) authors?/, \"$1 作者\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"page-new-repo\"] = {// 仓库 - 新建/导入/复刻仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 新建仓库 https://github.com/new\n            \"Create a new repository\": \"新建仓库\",\n                \"A repository contains all project files, including the revision history.\": \"仓库包含项目中的所有文件，包括修订历史记录。\",\n                \"Already have a project repository elsewhere?\": \"在其他地方已有仓库？\",\n                \"Import a repository\": \"导入仓库\",\n                \"Required fields are marked with an asterisk (*).\": \"带星号 (*) 的为必填项。\",\n\n            \"🎉 Try the new experience\": \"🎉 尝试新版页面\",\n\n            \"Repository template\": \"仓库模板\",\n                \"Fetching templates…\": \"正在获取模板…\",\n                \"No template\": \"不设置模板\",\n                \"No templates available.\": \"无可用模板。\",\n                \"Start your repository with a template repository's contents.\": \"使用模板仓库的内容新建仓库。\",\n\n            \"Owner\": \"所有者\",\n            \"Repository name\": \"仓库名称\",\n            \"Great repository names are short and memorable. Need inspiration? How about\": \"好的仓库名称应该简单且容易记忆。需要灵感吗？这个怎么样：\",\n                \"Checking availability…\": \"检查可用性…\",\n                \"is available.\": \"名称可用。\",\n                \"The repository\": \"仓库\",\n                \"already exists on this account\": \"已经存在于此账户\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                \"New repository name must not be blank\": \"新仓库名称不能为空\",\n\n                // 用户名同名仓库\n                \"You found a secret!\": \"您发现了一个秘密！\",\n                \"is a ✨\": \"是一个 ✨\",\n                \"special\": \"特别的\",\n                \"✨ repository that you can use to add a\": \"✨ 仓库，您可以用它来添加一个\",\n                \"to your GitHub profile. Make sure it’s public and initialize it with a\": \"到您的 GitHub 个人资料。确保它是公开的，并在初始化时加入一个\",\n                \"to get started.\": \"以便开始工作。\",\n                 // 组织 .github 仓库\n                \"to your organization's GitHub profile. Make sure it’s public and initialize it with a\": \"到您组织的 GitHub 个人资料。确保它是公开的，并在初始化时加入一个\",\n                \"in the\": \"在\",\n                \"directory to get started.\": \"目录下以便开始工作。\",\n\n                // 组织仓库\n                \"You may not create private repositories by organization policy.\": \"根据组织政策，您不能创建私有仓库。\",\n\n            \"Description\": \"描述\",\n                \"(optional)\": \"(可选)\",\n            \"Public\": \"公共\",\n                \"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            \"Private\": \"私有\",\n                \"You choose who can see and commit to this repository.\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Initialize this repository with:\": \"使用以下方式初始化此仓库：\",\n                // \"Skip this step if you’re importing an existing repository.\": \"如果您要导入现有仓库，请跳过此步骤。\",\n                \"Add a README file\": \"添加 README 文件\",\n                    \"This is where you can write a long description for your project.\": \"您可以在此处为您的项目编写详细描述。\",\n                    \"Learn more about READMEs.\": \"了解更多关于 README 的信息。\",\n            \"Add .gitignore\": \"添加 .gitignore 文件\",\n                \"Choose which files not to track from a list of templates.\": \"从模板列表中选择哪些文件不需要跟踪。\",\n                \"Learn more about ignoring files.\": \"了解更多关于忽略文件的信息。\",\n                \".gitignore template:\": \".gitignore 模板：\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"筛选…\",\n                    \"None\": \"无\",\n\n                    // 筛选 - 无模板\n                    \"You haven't created any items yet\": \"您尚未创建任何项目\",\n                        \"Please add or create new items to populate the list.\": \"请添加或创建新项目以填充列表。\",\n            \"Choose a license\": \"选择许可证\",\n                \"A license tells others what they can and can't do with your code.\": \"许可证告诉其他人，他们可以使用您的代码做什么和不能做什么。\",\n                \"Learn more about licenses.\": \"了解更多关于许可证的信息。\",\n\n                \"License:\": \"许可证：\",\n                    \"License\": \"许可证\",\n\n            // 市场应用列表\n            \"Grant your Marketplace apps access to this repository\": \"授予市场应用访问该仓库的权限\",\n            \"You are\": \"您\",\n            \"subscribed to\": \"订阅了\",\n            \"Marketplace app\": \"个市场应用\",\n            \"s\": \" \",\n\n            \"You are creating a public repository in your personal account.\": \"您正在个人账户中创建公共仓库\",\n            \"You are creating a private repository in your personal account.\": \"您正在个人账户中创建私有仓库\",\n\n            \"This will set\": \"这将设置\",\n            \"as the default branch.\": \"为默认分支。\",\n            \"Change the default name in\": \"变更默认名称在\",\n            \"your\": \"您的\",\n            \"settings\": \"设置\",\n\n            \"Create repository\": \"创建仓库\",\n            \"Creating repository...\": \"创建仓库中…\",\n\n        // 依据模板新建仓库 https://github.com/new?template_owner=<template-owner>&template_name=<template-name>\n            \"Include all branches\": \"包括所有分支\",\n                \"Copy all branches from\": \"复制所有\",\n                \"and not just the default branch.\": \"仓库分支，而不仅仅是默认分支。\",\n\n                \"If enabled, all branches from the template repository will be included.\": \"如果启用，将包含来自模板仓库的所有分支。\",\n\n        // 导入仓库 第一页 https://github.com/new/import\n            \"Import your project to GitHub\": \"将您的项目导入到 GitHub\",\n                \"Import all the files, including revision history, from another version control system.\": \"导入的所有文件，包括修订历史记录，来自其他版本控制系统。\",\n                \"Support for importing Mercurial, Subversion and Team Foundation Version Control (TFVC) repositories ended on April 12, 2024. For more details, see the\": \"对导入 Mercurial、Subversion 和 Team Foundation 版本控制 (TFVC) 仓库的支持已结束于 2024 年 4 月 12 日。有关详细信息，请参阅\",\n                \"changelog\": \"更新日志\",\n\n            \"Your source repository details\": \"您源仓库的详情\",\n            \"The URL for your source repository\": \"您源仓库的 URL\",\n                \"Learn more about the types of\": \"了解更多关于\",\n                \"importing git repositories\": \"导入 Git 仓库\",\n\n            \"Please enter your credentials if required for cloning your remote repository.\": \"如果需要克隆远程仓库，请输入您的凭据。\",\n            \"Your username for your source repository\": \"源仓库用户名\",\n            \"Your access token or password for your source repository\": \"源仓库的访问令牌或密码\",\n\n            \"Your new repository details\": \"新仓库详情\",\n            //\"Owner\": \"所有者\",\n            // \"Repository name\": \"仓库名称\",\n                // \"is available.\": \"名称可用。\",\n                //\"The repository\": \"仓库\",\n                //\"already exists on this account.\": \"已经存在于此账户。\",\n                //\"Your new repository will be created as\": \"您的新仓库将被创建为\",\n            //\"Public\": \"公共\",\n            //\"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到这个仓库，您可以选择谁能提交。\",\n            //\"Private\": \"私有\",\n            //\"You choose who can see and commit to this repository.\": \"您可以选择谁可以看和提交到该仓库。\",\n            \"Cancel\": \"取消\",\n            \"Begin import\": \"开始导入\",\n            \"Preparing import…\": \"准备导入…\",\n            \"Importing commits and revision history to GitHub...\": \"导入提交和修订历史到 GitHub…\",\n\n        // 导入仓库 第一页 /<user-name>/<repo-name>/import\n            \"Import all the files, including the revision history, from another version control system.\": \"导入的所有文件，包括修订历史记录，来自其他版本控制系统。\",\n            \"Your old repository’s clone URL\": \"您旧仓库的克隆地址\",\n            \"supported VCS.\": \"VCS 的支持。\",\n            \"Your existing repository\": \"您已存在的仓库\",\n            \"Change repository\": \"选择仓库\",\n\n        // 导入仓库 第二页 /<user-name>/<repo-name>/import\n            \"Your import will begin shortly...\": \"导入即将开始…\",\n            \"Preparing your new repository\": \"准备您的新仓库\",\n                \"There is no need to keep this window open, we’ll email you when the import is done.\": \"无需保持此窗口，导入完成后我们会通过电子邮件通知您。\",\n                \"There is no need to keep this window open. We'll email you when the import is done.\": \"无需保持此窗口，导入完成后我们会通过电子邮件通知您。\",\n            \"Detecting your project’s version control system…\": \"正在检测项目的版本控制系统…\",\n            \"Importing commits and revision history…\": \"导入提交和修订历史…\",\n            // [/Updating branches and (\\d) commit authors?…/, \"更新分支和 $1 个提交者…\"],\n            \"Optimizing repository and pushing commits to GitHub…\": \"优化仓库并将提交推送到 GitHub…\",\n            \"Importing complete! Your new repository\": \"导入完成！您的新仓库\",\n            \"is ready.\": \"已准备就绪。\",\n\n        // 复刻仓库 /<user-name>/<repo-name>/fork\n            \"Create a new fork\": \"创建新复刻\",\n                \"A\": \" \",\n                \"fork\": \"复刻\",\n                \"is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project.\": \"是一个仓库的副本。复刻仓库可以让您在不影响原项目的情况下自由地进行修改实验。\",\n                \"View existing forks.\": \"查看现有复刻。\",\n\n            \"No available destinations to fork this repository.\": \"没有复刻此仓库的可用目标。\",\n            \"Creating fork…\": \"正在创建复刻…\",\n\n            // \"Owners\": \"所有者\",\n                \"Search owners\": \"搜索\",\n                \"Choose an owner\": \"选择所有者\",\n                    \"(fork already exists)\": \"(复刻已存在)\",\n            // \"Repository name\": \"仓库名称\",\n\n                // \"The repository\": \"仓库\",\n                // \"already exists on this account.\": \"已经存在于此账户。\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                    \"The repository name can only contain ASCII letters, digits, and the characters\": \"仓库名称只能包含 ASCII 字母、数字和字符\",\n\n            \"By default, forks are named the same as their upstream repository. You can customize the name to distinguish it further.\": \"默认情况下，复刻的名称与他们的上游仓库相同。您可以自定义名称以进一步区分它。\",\n\n            \"Copy the\": \"仅复制\",\n            \"branch only\": \"分支\",\n\n            \"Contribute back to\": \"回馈给\",\n            \"by adding your own branch.\": \"通过添加您自己的分支。\",\n\n            \"You are creating a fork in your personal account.\": \"您正在向您的个人账户中创建一个复刻。\",\n            \"Create fork\": \"创建复刻\",\n\n        // 新版新建仓库页\n            \"Switch back to classic experience\": \"回到经典页面\",\n            \"Repositories contain a project's files and version history.\": \"仓库包含项目的文件和版本历史。\",\n            \"Have a project elsewhere?\": \"在其他地方已有仓库？\",\n\n            \"General\": \"通常\",\n                \"Great repository names are short and memorable. How about\": \"好的仓库名称应该简单且容易记忆。这个怎么样：\",\n\n            \"Configuration\": \"配置\",\n                \"Choose visibility\": \"选择可见性\",\n                    \"Choose who can see and commit to this repository\": \"选择谁可以查看并提交此仓库\",\n                \"Start with a template\": \"使用模板开始\",\n                    \"Templates pre-configure your repository with files.\": \"模板会用文件预先配置您的仓库。\",\n                \"Add README\": \"添加自述文件\",\n                    \"READMEs can be used as longer descriptions.\": \"自述文件可以用作更长的描述。\",\n                    \"About READMEs\": \"关于自述文件\",\n                // gitignore\n                    \".gitignore tells git which files not to track.\": \".gitignore 告诉 git 不追踪哪些文件。\",\n                    \"About ignoring files\": \"关于忽略文件\",\n\n                    \"Choose a .gitignore template\": \"选择 .gitignore 模板\",\n                        \"Search templates\": \"搜索模板\",\n                        \"No .gitignore\": \"无\",\n                \"Add license\": \"添加许可证\",\n                    \"Licenses explain how others can use your code.\": \"许可证解释其他人如何使用您的代码。\",\n                    \"About licenses\": \"关于许可证\",\n\n                    \"Search licenses\": \"选择许可证\",\n                    \"No license\": \"无\",\n                \"Connect GitHub Apps\": \"连接 GitHub 应用\",\n                    \"Connect this repository to apps\": \"将此仓库连接到\",\n                    \"is subscribed to\": \"订阅的应用\",\n\n                    \"Choose GitHub Apps\": \"选择 GitHub 应用\",\n                    \"Search apps\": \"搜索应用\",\n                    \"Cancel and close\": \"关闭\",\n\n            \"Jumpstart your project with Copilot (optional)\": \"用 Copilot 快速启动您的项目（可选）\",\n                \"Tell Copilot what you want to build in this repository. After creation, Copilot will open a pull request with generated files - such as a basic app, starter code, or other features you describe - then request your review when it's ready.\": \"告诉 Copilot 您想在此仓库中构建什么。在创建完成后，Copilot 会打开一个包含生成文件的拉取请求（例如基础应用、起始代码或您描述的其他功能），然后在准备好后请求您进行审核。\",\n                \"About Copilot coding agent\": \"关于 Copilot 编程智能体\",\n\n                \"Prompt\": \"提示词\",\n                    \"Describe what you want Copilot to build\": \"描述您想让 Copilot 做什么\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // [/([^ ]+) is available\\./,\"$1 名称可用。\"],\n        [/You are creating a public repository in the ([^ ]+) organization./,\"您正在 $1 组织中创建一个公共仓库。\"], // 创建组织的公共仓库\n        [/You are creating a private repository in the ([^ ]+) organization./,\"您正在 $1 组织中创建一个私有仓库。\"], // 创建组织的私有仓库\n        // [/\\(fork already exists\\)/, \"（复刻已存在）\"], // 复刻页面\n        // [/\\(repository already exists\\)/, \"（仓库已存在）\"], // 复刻页面\n        [/You are creating a fork in the ([^ ]+) organization./, \"您正在 $1 组织中创建一个复刻。\"], // 复刻页面\n        [/Updating branches and (\\d+) commit authors?…/, \"更新分支和 $1 个提交者…\"], // 仓库导入第二页\n        //[/Connect this repository to apps ([^ ]+) is subscribed to/, \"将此仓库连接到 $1 订阅的应用程序\"],\n        [/Auto-installed by ([^ ]+)/, \"由 $1 自动安装\"],\n        [/(\\d+) apps? selected/, \"已选择 $1 个应用\"],\n        [/The repository ([^ ]+) already exists on this account/, \"仓库 $1 已存在于此账户\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"], // 组织  浮动信息卡\n        // [/(\\d+) members?/, \"$1 个成员\"], // 组织  浮动信息卡\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New repository\": \"新建仓库\",\n            \"Import repository\": \"导入仓库\",\n        },\n        \"regexp\": [\n            [/Fork/, \"复刻\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"new\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"new/import\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"repository/import\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"repository/fork\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\nI18N[\"zh-CN\"][\"orgs/repositories/new\"] = I18N[\"zh-CN\"][\"page-new-repo\"];\n\nI18N[\"zh-CN\"][\"repository\"] = { // 仓库页面 /<user-name>/<repo-name>/\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 顶部\n            \"Help us improve GitHub Codespaces\": \"帮助我们改进 GitHub 代码空间\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通过三个简单的问题告诉我们如何让 GitHub 代码空间更适合您。\",\n\n            \"Sorry, couldn’t delete that branch.\": \"抱歉，无法删除此分支。\",\n            \"Copilot will begin working on your prompt in a draft pull request, and will request review from you when ready.\": \"Copilot 将起草一个拉取请求开始处理您的需求，并在准备好后请求您进行审核。\",\n\n        // 代码标签卡 & 仓库首页 /<user-name>/<repo-name>/ 和 /<user-name>/<repo-name>/tree/<branch>\n            // [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名为 $2。\"],\n\n            // 快捷键\n                \"Commands\": \"命令\",\n                \"Clone repository: Copy HTTPS\": \"克隆仓库：复制 HTTPS\",\n                \"Clone repository: Copy SSH\": \"克隆仓库：复制 SSH\",\n                \"Clone repository: Copy GitHub CLI\": \"克隆仓库：复制 GitHub CLI\",\n                \"Copy file permalink\": \"复制文件永久链接\",\n\n            // 操作条\n                \"forked from\": \"复刻自\",\n                \"Public repository · Forked from\": \"公共仓库 · 复刻自\", // Android UA 下出现\n                \"Public repository · Generated from\": \"公共仓库 · 创建自\", // 同上\n                \"Public archive repository\": \"公共存档仓库\",\n                \"Public archive repository · Forked from\": \"公共存档仓库 · 复刻自\",\n                \"generated from\": \"创建自\",\n                \"mirrored from\": \"镜像自\",\n\n                \"Pin\": \"置顶\",\n                    \"Pin this repository to your profile\": \"置顶此仓库到您的个人资料\",\n                    \"No pin slots remaining in your profile\": \"您的个人资料中没有剩余的置顶位\",\n                \"Edit Pins\": \"编辑置顶\",\n                    \"Pin to…\": \"置顶到…\",\n                    \"Profile\": \"个人资料页\",\n                        \"Pin this to your personal profile, visible to everyone\": \"将此置顶到您的个人资料，对所有人可见\",\n                        \"Limit reached\": \"已达上限\",\n                    // 组织仓库\n                    \"Public pins in this organization\": \"该组织的公共置顶\",\n                        \"Visible to anyone\": \"对任何人可见\",\n                    \"Private pins in this organization\": \"该组织的私有置顶\",\n                        \"Visible to members only\": \"仅对成员可见\",\n                \"Unpin\": \"取消置顶\",\n\n                \"Ignoring\": \"忽略\",\n                \"Stop ignoring\": \"取消忽略\",\n                \"Watch\": \"关注\",\n                \"Unwatch\": \"取消关注\",\n\n                \"Star\": \"星标\",\n                \"Unstar\": \"已加星标\",\n                \"Fork\": \"复刻\",\n                \"Unfork\": \"取消复刻\",\n\n                \"Sponsor\": \"赞助\",\n                // 赞助对话框\n                // [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n                \"External links\": \"外部链接\",\n                \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n                \"Report abuse\": \"举报滥用\",\n\n                // 提交栏 GitHub Action\n                \"All checks have passed\": \"已通过所有检查\",\n\n\n                // 关注 & 订阅通知设置 下拉菜单\n                \"Notification settings\": \"通知设置\", //小屏模式\n                \"Subscribe to events for\": \"订阅事件\",\n                \"Notifications\": \"通知类型\",\n                \"Participating and @mentions\": \"参与和 @您\",\n                    \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n                \"All Activity\": \"所有活动\",\n                    \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n                \"Ignore\": \"忽略\",\n                    \"Never be notified.\": \"永不接收通知。\",\n                \"Custom\": \"自定义\",\n                    \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n                \"Get push notifications on\": \"要获取推送通知，使用\",\n                \"Releases\": \"发行版\",\n                    //\"Issues are not enabled for this repository\": \"此仓库未启用议题功能\",\n                \"Discussions\": \"讨论\",\n                    //\"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n                    //\"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n                    \"are not enabled for this repository\": \"功能未启用\",\n                \"Security alerts\": \"安全警报\",\n                //\"Cancel\": \"取消\",\n                \"Apply\": \"应用\",\n\n                // 复刻下拉\n                \"Cannot fork because repository is empty.\": \"无法复刻，因为仓库是空的。\",\n                \"Cannot fork because you own this repository and are not a member of any organizations.\": \"不能复刻，因为您拥有该仓库，而且不是任何组织的成员。\",\n                \"Existing forks\": \"现有的复刻\",\n                \"You don't have any forks of this repository.\": \"您没有此仓库的任何复刻。\",\n                \"Create a new fork\": \"创建复刻\",\n\n                //\n                \"Star this repository\": \"标星仓库\", //小屏模式\n                \"Unstar this repository\": \"取消仓库星标\", //小屏模式\n\n            // 仓库主页 分支保护\n                // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"], // 仓库主页 分支保护\n                \"Your\": \"您的\",\n                \"branch isn't protected\": \"分支不受保护\", // 新版仓库概述\n                \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保护此分支免受强制推送或删除，或在合并前要求状态检查。\",\n                \"View documentation.\": \"查看文档\",\n                \"Protect this branch\": \"保护该分支\",\n                \"Dismiss\": \"忽略\",\n\n            // 仓库主页 Dependabot 警告框\n                \"We found potential security vulnerabilities in your dependencies.\": \"我们在您的依赖项中发现了潜在的安全漏洞。\",\n                \"Only the owner of this repository can see this message.\": \"仅此仓库的所有者可以看到此消息。\",\n                \"See Dependabot alerts\": \"查看 Dependabot 警报\",\n\n            // 空仓库\n                \"This repository is empty.\": \"此仓库是空的。\",\n                \"Care to check out the\": \"是否愿意查看\",\n                \"GitHub Channel on YouTube\": \"YouTube 上的 GitHub 频道\",\n                \"while you wait?\": \"在您等待的时候？\",\n\n            // 已上架的 GitHub Action 项目\n                \"Use this GitHub action with your project\": \"将此 GitHub Actions 用于您的项目\",\n                \"Add this Action to an existing workflow or create a new one\": \"将此操作添加到现有工作流程或创建新工作流程\",\n                \"View on Marketplace\": \"去市场查看\",\n\n            // 未上架的 GitHub Action 项目\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以将此 Action 发布到 GitHub 市场\",\n                \"Draft a release\": \"起草发布\",\n\n            // 访问已删除的分支\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"这个提交不属于本仓库的任何分支，可能属于仓库以外的分支。\",\n\n            // 最近有了新提交提醒\n            // [/had recent pushes less than/, \"有了最近的推送，不到\"], //最近有了新提交提醒\n            // [/had recent pushes/, \"有了最近的推送，\"], //最近有了新提交提醒\n\n            \"Navigate back to\": \"导航回\", // 小屏模式\n\n            // 左侧正文\n\n            // 文档栏目(仅 Andoid UA)\n            \"Menu\": \"菜单\",\n\n            // 自述文件(README.md)\n            \"Filter headings\": \"筛选标题\",\n            \"Edit file\": \"编辑文件\",\n\n            // 默认分支被重命名提醒框\n                \"The default branch has been renamed!\": \"默认分支已重命名!\",\n                \"is now named\": \"已重命名为\",\n                \"If you have a local clone, you can update it by running the following commands.\": \"如果您有一个本地克隆，您可以通过运行以下命令来更新它。\",\n                \"OK, got it\": \"好的，我知道了！\",\n\n                // 上游仓库分支重命名\n                    \"The default branch on the parent repository has been renamed!\": \"上游仓库默认分支已被重新命名!\",\n                    \"renamed its default branch\": \"默认分支重命名为\",\n                    \"You can rename this fork's default branch to match in\": \"您可以重命名此复刻默认分支以匹配，在\",\n                    \"branch settings\": \"分支设置\",\n\n            \"branch\": \"分支\",\n            \"branches\": \"分支\",\n            \"tag\": \"标签\",\n            \"tags\": \"标签\",\n\n            \"Go to file\": \"转到文件\",\n                \"No matches found\": \"未找到匹配项\",\n                \"Go to folder\": \"转到文件夹\",\n                \"See all results\": \"查看所有结果\",\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜单\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上传文件\",\n                \"Upload file\": \"上传文件\", // Android UA\n\n            // 代码 下拉菜单\n                \"Local\": \"本地\",\n                    \"Clone\": \"克隆\",\n                        // HTTPS\n                        \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n                        // SSH\n                        \"You don't have any public SSH keys in your GitHub account.\": \"您的 GitHub 账户中没有任何公共 SSH 密钥。\",\n                        \"You can\": \"您可以\",\n                        \"add a new public key\": \"添加新的公共密钥\",\n                        \", or try cloning this repository via HTTPS.\": \"，或尝试通过 HTTPS 克隆此仓库。\",\n\n                        \"Use a password-protected SSH key.\": \"使用受密码保护的 SSH 密钥。\",\n                        // GitHub CLI\n                        \"Work fast with our official CLI.\": \"使用我们的官方 CLI 快速工作。\",\n                        \"Learn more about the CLI\": \"了解更多关于 CLI 的信息\",\n\n                    \"Open with GitHub Desktop\": \"在 GitHub Desktop 中打开\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 启动中\",\n                            \"If nothing happens,\": \"如果没有响应\",\n                            \"download GitHub Desktop\": \"下载 GitHub Desktop\",\n                            \"and try again.\": \"并重试\",\n                    \"Open with Visual Studio\": \"在 Visual Studio 中打开\",\n                    \"Download ZIP\": \"下载 ZIP 压缩包\",\n\n                    \"Code 55% faster with AI pair programming.\": \"与 AI 一起编程，写代码速度提高55%。\",\n                        \"Start my free trial\": \"开始我的免费试用\",\n                        \"Don't show again\": \"不再显示\",\n\n                    \"Which remote URL should I use?\": \"我应该使用哪个远程 URL ?\",\n                    \"Copy url to clipboard\": \"复制链接到剪贴板\",\n                    // \"Copy to clipboard\": \"复制到剪切板\",\n                    // \"Copied!\": \"✅ 复制成功!\",\n\n                // 代码空间\n                    // 维护提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"this announcement\": \"此公告\",\n                    \"Your workspaces in the cloud\": \"您在云端的工作空间\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Codespace repository configuration\": \"代码空间仓库配置\",\n                        \"New with options...\": \"新建（选项）…\",\n                        \"Configure dev container\": \"配置开发容器\",\n                        \"Set up prebuilds\": \"设置预构建\",\n                        \"Manage codespaces\": \"管理代码空间\",\n                        \"Share a deep link\": \"分享深度链接\",\n                            \"Share codespace configuration\": \"共享代码空间配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"选择共享时要包含此配置中的哪些设置\",\n                            \"Quick start\": \"快速开始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自动创建或使用最新匹配的代码空间。\",\n                            \"Read more about creating a link.\": \"阅读有关创建链接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下代码片段在您自己的页面或 README 中嵌入此配置的 “在 Codespaces 中打开” 按钮。\",\n                        \"What are codespaces?\": \"什么是代码空间？\",\n                    \"No codespaces\": \"尚无代码空间\",\n                    \"You don't have any codespaces with this repository checked out\": \"您没有检出此仓库的任何代码空间\",\n                    \"Opening in codespace\": \"正在打开代码空间\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Learn more about codespaces...\": \"了解更多关于代码空间的信息…\",\n                    \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n\n                    \"On current branch\": \"在当前分支\",\n                        \"No codespaces on current branch\": \"当前分支上没有代码空间\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探险\",\n                    \"Open miniature adventure in web\": \"在网络中打开迷你探险\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打开…\",\n                            \"Open in browser\": \"在浏览器中打开\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"将代码空间显示名称更改为…\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Create branch\": \"创建分支\",\n                        \"Change machine type\": \"更改机器类型\",\n                            \"Change codespace machine type\": \"更改代码空间机器类型\",\n                            \"Machine type\": \"机器类型\",\n                                \"2-core\": \"双核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"联系我们团队\",\n                            \"to enable 32-core or GPU machines.\": \"启用 32 核或 GPU 机器。\",\n                            \"Update codespace\": \"升级代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                        \"Open in Browser\": \"在浏览器中打开\",\n                        \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                        \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                        \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Rename codespace\": \"重命名代码空间\",\n                            \"Name\": \"名称\",\n                        \"Auto-delete codespace\": \"自动删除代码空间\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Checking branch status\": \"检查分支情况\",\n                            \"Create branch\": \"创建分支\",\n                        \"Export changes to a fork\": \"将更改导出到复刻\",\n                            \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                            \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                            \"Create fork\": \"创建复刻\",\n                        \"Change machine type\": \"修改机器类型\",\n                            \"Change codespace machine type\": \"修改代码空间机器类型\",\n                            \"Update codespace\": \"更新代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"No changes\": \"未更改\",\n                    \"Uncommitted changes\": \"未提交更改\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n                    // 删除对话框\n                        \"Are you sure?\": \"您确定吗？\",\n\n                // Copilot\n                    \"Describe a task...\": \"描述任务…\",\n                    \"Start task\": \"开始任务\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n\n\n            \"Use this template\": \"使用此模板\",\n                \"Create a new repository\": \"新建仓库\",\n                \"Open in a codespace\": \"在代码空间中打开\",\n\n            // 个人仓库 当前分支状态\n            \"This branch is\": \"该分支\",\n            \"ahead of\": \"领先于\", // 新版仓库概述\n            \"behind\": \"落后\", // 新版仓库概述\n            \"This branch is up to date with\": \"该分支保持同步与\", // 新版仓库概述\n\n            \"Contribute\": \"贡献\",\n                // 贡献按钮下拉菜单\n                \"This branch is not ahead of the upstream\": \"这个分支不领先于上游\",\n                \"No new commits yet. Enjoy your day!\": \"尚无新提交。祝您愉快！\",\n                \"Open a pull request to contribute your changes upstream.\": \"打开拉取请求以向上游贡献您的更改。\",\n                \"This branch is not behind the upstream\": \"这个分支不落后于上游\",\n                \"Open pull request\": \"打开拉取请求\",\n\n            \"Sync fork\": \"同步复刻\",\n                // 同步复刻按钮下拉菜单\n                \"This branch is out-of-date\": \"此分支已过时\",\n                \"Update branch to merge the latest changes from the upstream repository into this branch.\": \"更新分支，将上游仓库的最新修改合并到本分支。\",\n                // [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通过从上游仓库同步 $1 个提交来更新分支，以使该分支保持最新。\"], // 同步复刻\n                \"Update branch to keep this branch up-to-date by syncing\": \"更新分支以保持该分支与最新状态同步，需要同步\",\n                \"from the upstream repository.\": \"来自上游仓库。\",\n                \"Learn more about syncing a fork\": \"了解更多关于复刻同步的信息\",\n                // [/This branch is not behind the upstream ([^ ]+)/, \"该分支不落后与上游 $1\"], // 同步复刻\n                \"No new commits to fetch. Enjoy your day!\": \"尚无新提交。祝您愉快！\", //相同\n                \"Compare\": \"对比\",\n                \"Update branch\": \"更新分支\",\n\n                \"This branch has conflicts that must be resolved\": \"该分支有必须解决的冲突\",\n                // [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+)commits? will be removed from this branch./, \"丢弃 $1 个提交，以使本分支与上游仓库一致。$2 个提交将从本分支中删除。\"],\n                \"Discard\": \"丢弃\", // 新版仓库概述\n                \"to make this branch match the upstream repository.\": \"，以使本分支与上游仓库一致。\", // 新版仓库概述\n                \"will be removed from this branch.\": \"将从本分支中删除。\", // 新版仓库概述\n                \"You can resolve merge conflicts using the command line and a text editor.\": \"您可以使用命令行和文本编辑器解决合并冲突。\",\n                // [/Discard (\\d+) commits?/, \"丢弃 $1 个提交\"],\n                \"Discarding changes...\": \"放弃更改…\",\n\n                // 顶部提醒\n                    // [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功从上游 $1 获取并合并。\"],\n\n            // \"Choose a head ref\": \"选择一个头引用\",\n\n            // \"There isn’t anything to compare.\": \"没有什么可比较的。\",\n            // \"and\": \"和\",\n            // \"are entirely different commit histories.\": \"是完全不同的提交历史。\",\n            // \"No commit comments for this range\": \"在此范围内没有提交评论\",\n            // \"No new commits yet. enjoy your day!\": \"尚无新提交。祝您愉快！\",\n            // \"Find a branch\": \"查找分支\",\n\n            // 正文\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"failure\": \"失败\",\n            \"success\": \"成功\",\n            \"Approved\": \"已批准\",\n            // [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版仓库概述\n            \"Open commit details\": \"打开提交详细信息\", // TODO: 修复该词条翻译不生效问题\n\n            \"Failed to load latest commit information.\": \"载入最新提交信息失败。\",\n\n            \"View code\": \"查看代码\", //小屏模式\n\n            // 仓库缺失 README 提醒\n            \"Help people interested in this repository understand your project by adding a README.\": \"通过添加 README，帮助对此仓库感兴趣的人了解您的项目。\",\n            \"Help people interested in this repository understand your project.\": \"帮助对此仓库感兴趣的人了解您的项目。\",\n            \"Add a README\": \"添加 README\",\n\n            // 右侧栏\n\n            // 与用户名同名仓库 编辑 README\n            \"is a special repository.\": \"是一个特殊的仓库。\",\n            \"Its\": \"它的\",\n            \"will appear on your public profile.\": \"将出现在您的公开个人资料中。\",\n            \"Edit README\": \"编辑 README\",\n            \"Visit profile\": \"查看资料\",\n\n            \"is special. If you\": \"是特殊的。如果您\",\n            \"make this a public repository\": \"将仓库设置为公开\",\n            \", its\": \"，它的\",\n            \"Go to Settings\": \"前往设置\",\n\n            // 组织下.github 仓库 README\n                \"is a special repository. Create a\": \"是一个特殊的仓库。创建\",\n                \"and it will appear on the organization's profile!\": \"并将出现在该组织资料中!\",\n                \"Add profile README\": \"添加 profile/README\",\n\n                \"is a special repository.\": \"是一个特殊的仓库。\",\n                \"will appear on the organization's profile.\": \"将出现在该组织资料中。\",\n\n            // 组织下.github-private 仓库 README\n                \"Add a README with an overview of your project.\": \"为您项目添加一个概述 README 文件。\",\n                \"The\": \" \",\n                // [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"将出现在 $1 的成员资料中，仅对组织成员可见。\"],\n\n            // \"About\": \"关于\"，\n            \"No description, website, or topics provided.\": \"未提供描述、网站或主题。\",\n            \"Readme\": \"自述文件\",\n            \"README\": \"自述文件\",\n            \"Contributing\": \"贡献指南\",\n            \"View license\": \"查看许可证\",\n                \"GPL-3.0 license\": \"GPL-3.0 许可证\",\n                \"AGPL-3.0 license\": \"AGPL-3.0 许可证\",\n                \"LGPL-3.0 license\": \"LGPL-3.0 许可证\",\n                \"MIT license\": \"MIT 许可证\",\n                \"Apache-2.0 license\": \"Apache-2.0 许可证\",\n                \"OFL-1.1 license\": \"OFL-1.1 许可证\",\n                \"0BSD license\": \"0BSD 许可证\",\n                \"BSD-3-Clause license\": \"BSD-3-Clause 许可证\",\n                \"CC0-1.0 license\": \"CC0-1.0 许可证\",\n                \"WTFPL license\": \"WTFPL 许可证\",\n                \"Unknown\": \"未知\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n            \"Cite this repository\": \"引用此仓库\",\n                \"If you use this software in your work, please cite it using the following metadata.\": \"如果您使用此软件，请使用以下元数据进行引用。\",\n                \"Learn more about CITATION files.\": \"了解更多关于引用文件的信息。\",\n                \"View citation file\": \"查看引用文件\",\n            \"Activity\": \"活动\",\n            \"Custom properties\": \"自定义属性\",\n            \"star\": \"星标\",\n            \"stars\": \"星标\",\n            \"watching\": \"关注\",\n            \"fork\": \"复刻\",\n            \"forks\": \"复刻\",\n            \"Report repository\": \"举报仓库\",\n            \"Public repository\": \"公共仓库\", //小屏模式\n            \"Private repository\": \"私有仓库\", //小屏模式\n\n\n            // 仓库描述编辑 对话框\n            \"Edit repository details\": \"编辑仓库简述\",\n            \"Description\": \"描述\",\n            \"Short description of this repository\": \"简短的描述下您的仓库\",\n            \"Website\": \"网址\",\n            \"Enter a valid URL\": \"请输入有效的 URL\",\n            \"Use your GitHub Pages website\": \"使用您的 GitHub Pages 站点\",\n            \"Topics\": \"主题\",\n            \"(separate with spaces)\": \"（空格分隔）\",\n            \"Suggested:\": \"建议：\",\n                \"Add this topic\": \"接受该建议\",\n                \"Decline this topic\": \"拒绝该建议\",\n                    \"This isn’t relevant\": \"这并不相关\",\n                    \"This is too specific\": \"这太具体了\",\n                    \"This is too general\": \"这太笼统了\",\n                    \"I just don’t like it\": \"我只是不喜欢它\",\n            \"Include in the home page\": \"包含在主页中\",\n\n                // 顶部提醒\n                \"Your repository details have been saved.\": \"您的仓库简述已保存。\",\n\n            \"Releases\": \"发行版\",\n                \"No releases published\": \"未发布任何版本\",\n                \"Latest\": \"最新\",\n                \"Create a new release\": \"创建发行版\",\n            // \"Packages\": \"软件包\",\n                \"No packages published\": \"未发布软件包\",\n                \"Publish your first package\": \"发布软件包\",\n            \"Sponsor this project\": \"赞助本项目\",\n                \"Learn more about GitHub Sponsors\": \"了解更多关于 GitHub 赞助者的信息\",\n            \"Used by\": \"使用者\",\n            \"Contributors\": \"贡献者\",\n                \"No contributors\": \"无贡献者\",\n            \"Environments\": \"环境\",\n            \"Deployments\": \"部署\",\n                \"+ more deployments\": \"+ 更多部署\",\n            \"Languages\": \"语言\",\n\n            // \"branch\": \"分支\",\n            // \"branches\": \"分支\",\n            // \"release\": \"次发布\",\n            // \"releases\": \"次发布\",\n            // \"contributor\": \"个贡献者\",\n            // \"contributors\": \"个贡献者\",\n\n        // 新版仓库概述\n            // /<user-name>/<repo-name>#coc\n                \"Add a code of conduct\": \"添加行为准则\",\n                \"Define community standards, signal a welcoming and inclusive project, and outline procedures for handling abuse by adding a code of conduct.\": \"通过添加行为准则，明确社区标准，体现项目的欢迎和包容性，并概述处理滥用行为的程序。\",\n\n            // /<user-name>/<repo-name>#license\n                \"License\": \"许可证\",\n                \"Add a license\": \"添加许可证\",\n                \"Add a license to your repository to make it clear how others can use, change, and contribute to your project.\": \"向仓库中添加许可证，以明确其他人可以如何使用、更改您的项目并为您的项目做出贡献。\",\n\n            // /<user-name>/<repo-name>#security\n                \"Add a security policy\": \"添加安全策略\",\n                \"Help your community understand how to securely report security vulnerabilities for your project.\": \"帮助您的社区了解如何安全地报告项目的安全漏洞。\",\n\n        // Action 仓库 右侧栏\n            \"Suggested workflows\": \"建议的工作流程\",\n            \"Based on your tech stack\": \"基于您的技术堆栈\",\n            \"Set up\": \"设立\",\n            \"Configure\": \"设置\",\n            \"More workflows\": \"更多工作流程\",\n            \"Dismiss suggestions\": \"隐藏建议\",\n\n        // 仓库复刻中...\n            // [/Forking ([^ ]+)/, \"复刻 $1 中\"], // 复刻中...\n            \"Generating your repository...\": \"正在创建您的仓库…\",\n            \"It should only take a few seconds.\": \"应该只需要几秒钟的时间。\",\n            \"Refresh\": \"刷新\",\n\n        // 初始化空仓库 /<user-name>/<repo-name>/\n            \"Start coding with Codespaces\": \"使用代码空间开始编程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件并在安全、可配置和专用的开发环境中开始编码。\",\n                \"Create a codespace\": \"创建代码空间\",\n            // 组织仓库\n            \"Set up GitHub Copilot\": \"设置 GitHub Copilot\",\n                \"Use GitHub's AI pair programmer to autocomplete suggestions as you code.\": \"使用 GitHub 的 AI 配对程序员在您编码时自动完成建议。\",\n                \"Get started with GitHub Copilot\": \"开始使用 GitHub Copilot\",\n            \"Add collaborators to this repository\": \"将协作者添加到此仓库\",\n                \"Search for people using their GitHub username or email address.\": \"使用 GitHub 用户名或电子邮件地址搜索人员。\",\n                \"Invite collaborators\": \"邀请协作者\",\n            \"Quick setup\": \"快速安装\",\n            \"— if you’ve done this kind of thing before\": \"- 如果您以前做过这样的事\",\n            \"Set up in Desktop\": \"安装到 GitHub Desktop\",\n            \"Get started by\": \"通过\",\n            \"creating a new file\": \"创建一个新文件\",\n            \"uploading an existing file\": \"上传一个现有的文件\",\n            \". We recommend every repository include a\": \"来开始。我们推荐每个仓库都包括\",\n            \", and\": \"，和\",\n            \"…or create a new repository on the command line\": \"…或在命令行上创建一个新的仓库\",\n            \"…or push an existing repository from the command line\": \"…或从命令行中推送现有的仓库\",\n            \"…or import code from another repository\": \"…或从另一个仓库导入代码\",\n            \"You can initialize this repository with code from a Subversion, Mercurial, or TFS project.\": \"您可以初始化此仓库从一个 Subversion，Mercurial 或 TFS 项目导入。\",\n            \"Import code\": \"导入代码\",\n            \"ProTip!\": \"专业提示！\",\n                \"Use the URL for this page when adding GitHub as a remote.\": \"将 GitHub 添加为远程时，请使用此页面上的 URL。\",\n\n        // 文件管理器 /<user-name>/<repo-name>/tree/<branch>/<文件夹路径>/\n          // /<user-name>/<repo-name>/?search=1\n          // /<user-name>/<repo-name>/tree/?search=1\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Search this repository\": \"搜索此仓库\",\n\n                // 搜索框\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜单\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上传文件\",\n\n            // 新三个点\n                \"Copy path\": \"复制路径\",\n                \"Copy permalink\": \"复制永久链接\",\n                \"Delete directory\": \"删除文件夹\",\n                \"View options\": \"查看选项\",\n                    \"Center content\": \"核心内容\",\n\n            \"Copied path!\": \"✅ 路径已复制！\",\n\n            \"History\": \"历史\",\n\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n            \"Name\": \"文件名\",\n            \"Last commit message\": \"最后提交消息\",\n            \"Last commit date\": \"最后提交时间\",\n\n            // 编辑按钮\n            \"Edit README\": \"编辑 README\", // md 文件\n\n            // 超过 1000 个文件截断提示\n            \"Sorry, we had to truncate this directory to\": \"抱歉，我们已将该目录截断至\",\n                \"files.\": \"文件。\",\n                \"entries were\": \"条目\",\n                \"omitted from the list. Latest commit info may be omitted.\": \"被省略。最新提交信息可能会省略。\",\n\n        // 文件管理器 - 议题模板 /<user-name>/<repo-name>/tree/<branch>/.github/ISSUE_TEMPLATE\n            \"Customize the issue creation experience with a\": \"自定义议题的创建模板使用一个\",\n            \"file.\": \"文件。\",\n            \"Learn more about configuring a template chooser.\": \"了解更多关于配置模板选择器的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // 个人仓库 贡献和同步复刻操作后 信息提示条\n        [/Successfully fetched and fast-forwarded from upstream ([^ ]+)\\./, \"成功从上游 $1 中获取并快速转发。\"],\n        [/Successfully discarded changes and synchronized branch to match upstream ([^ ]+)\\./, \"成功丢弃更改，并将分支与上游 $1 保持同步。\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/commits by (.+)/, \"由 $1 提交\"],\n        [/Signed-off-by: (.*)/, \"签字人：$1\"], // TODO: 修复该词条翻译不生效问题\n        [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名为 $2。\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"], // 仓库主页 分支保护\n        [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版仓库概述\n        [/Create a codespace on (.+)/, \"在 $1 上创建代码空间\"], // 仓库主页 创建代码空间\n        [/Create codespace on (.+)/, \"在 $1 上创建代码空间\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/\\+ ([\\d,]+) releases?/, \"+ $1 个发行版\"], // 仓库首页右侧栏 发行版\n        [/\\+ ([\\d,]+) packages?/, \"+ $1 个软件包\"], // 仓库首页右侧栏 软件包\n        [/\\+ ([\\d,]+) contributors?/, \"+ $1 位贡献者\"], // 仓库首页右侧栏 贡献者\n        [/\\+ ([\\d,]+) environments?/, \"+ $1 个环境\"], // 仓库首页右侧栏 环境\n        [/\\+ ([\\d,]+) deployments?/, \"+ $1 个部署\"], // 仓库首页右侧栏 部署\n        // 同步复刻\n        [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通过从上游仓库同步 $1 个提交来更新分支，以使该分支保持最新。\"],\n        [/This branch is not behind the upstream ([^ ]+)/, \"该分支不落后与上游 $1\"],\n        [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+) commits? will be removed from this branch./, \"丢弃 $1 个提交，以使本分支与上游仓库一致。$2 个提交将从本分支中删除。\"],\n        [/Discard (\\d+) commits?/, \"丢弃 $1 个提交\"],\n        [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功从上游 $1 获取并合并。\"],\n        // 贡献\n        [/This branch is not ahead of the upstream ([^ ]+)\\./, \"该分支并不领先上游 $1。\"],\n        [/This branch is (\\d+) commits? ahead of ([^ ]+)\\./, \"该分支领先上游 $2 $1个提交。\"],\n        // 个人仓库当前分支状态\n        [/This branch is up to date with ([^ ]+)\\./, \"该分支与上游 $1 保持同步。\"],\n        [/(\\d+) commits? ahead/, \"领先 $1 个提交\"],\n        [/(\\d+) commits? behind/, \"落后 $1 个提交\"],\n        [/(\\d+) commits?/, \"$1 个提交\"], // 新版仓库概述\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的电脑。\"],\n        [/Forking ([^ ]+)/, \"复刻 $1 中\"], // 复刻中...\n        [/Fork your own copy of ([^ ]+)/, \"复刻成您自己的 $1 副本\"], // 复刻按钮提示\n        [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"将出现在 $1 的成员资料中，仅对组织成员可见。\"],\n        [/and ([^ ]+) were installed on this repository/, \"和 $1 已安装到此仓库\"], // 顶部提示：市场应用（如果有）\n        [/([^ ]+) and (\\d+) other licenses found/, function(all, lic, num){\n            var licKey = {'Unknown': '未知'};\n            return licKey[lic] + '和另外' + num + '个许可证';\n        }],\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n        [/Copy \\\"(.+)\\\" to clipboard/, \"复制“$1”到剪切板\"],\n        // 代码 -> 代码空间\n        [/(\\d+) changes?/, \"$1 个更改\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您确定要删除吗？\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n            [/(.+) at (.+)/, \"$1 在分支 $2\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/tree\"] = I18N[\"zh-CN\"][\"repository\"];\n\nI18N[\"zh-CN\"][\"repository/milestones\"] = { // 仓库 - 里程碑页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 里程碑页面 /<user-name>/<repo-name>/milestones\n            \"Labels\": \"标签\",\n            \"Milestones\": \"里程碑\",\n\n            \"You haven’t created any Milestones.\": \"您尚未创建任何里程碑。\",\n            \"Use Milestones to create collections of Issues and Pull Requests for a particular release or project.\": \"使用里程碑为特定版本或项目创建议题和拉取请求的集合。\",\n\n            // 组织 仓库 里程碑\n            \"No Milestones found!\": \"没有发现里程碑!\",\n            \"If this project had milestones, we’d show you them here. Promise!\": \"如果该项目有里程碑，我们会在此处向您展示。\",\n\n            \"Create a Milestone\": \"创建里程碑\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序\",\n                \"Recently updated\": \"最近更新\",\n                \"Furthest due date\": \"最迟到期日\",\n                \"Closest due date\": \"最近到期日\",\n                \"Least complete\": \"最不完整\",\n                \"Most complete\": \"最完整\",\n                \"Alphabetical\": \"按字母顺序\",\n                \"Reverse alphabetical\": \"按字母倒序\",\n                \"Most issues\": \"最多的议题\",\n                \"Fewest issues\": \"最少的议题\",\n\n            \"No due date\": \"没有截止日期\",\n            \"issues closed\": \"议题关闭\",\n            // [/Due by (.*)/, \"截止日期 $1\"], // 里程碑截止日期\n            \"Last updated\": \"最后更新\",\n            \"(more)\": \"（更多）\",\n            // 完成进度条\n            \"complete\": \"已完成\",\n            \"open\": \"打开\",\n            \"closed\": \"关闭\",\n\n        // 新建里程碑页面 /<user-name>/<repo-name>/milestones/new\n            \"New milestone\": \"新建里程牌\",\n                \"Create a new milestone to help organize your issues and pull requests. Learn more about\": \"创建一个新的里程碑来帮助组织您的议题和拉取请求。了解更多关于\",\n                \"milestones and issues\": \"里程碑和议题\",\n            \"Title\": \"标题\",\n            \"Due date (optional)\": \"截止日期（可选）\",\n            \"Description\": \"描述\",\n            \"Create milestone\": \"创建里程碑\",\n\n        // 单个里程碑页 /<user-name>/<repo-name>/milestones\n            \"opened\": \"打开于\",\n            \"was closed\": \"关闭于\",\n\n            \"There are no open issues in this milestone\": \"此里程碑没有打开议题\",\n            \"Add issues to milestones to help organize your work for a particular release or project. Find and add\": \"将议题添加到里程碑，有助于为特定的版本或项目组织您的工作。在此仓库中查找并添加\",\n            \"issues with no milestones\": \"没有里程碑的议题。\",\n            \"in this repo.\": \" \",\n\n            \"There are no closed issues in this milestone\": \"此里程碑没有已关闭议题\",\n            \"Issues will automatically be moved here when they are closed.\": \"议题在关闭后会自动移到这里。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(\\d+\\%) completed/, \"$1 已完成\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/milestone\"] = I18N[\"zh-CN\"][\"repository/milestones\"]; // 仓库 - 某里程碑\n\nI18N[\"zh-CN\"][\"repository/pull_issue_public\"] = { // 仓库 - 议题和拉取请求页面公共部分\n    \"static\": { // 静态翻译\n        // pull 与 request 公共词条\n            \"Filters\": \"筛选\",\n                // 筛选下拉菜单\n                \"Filter Issues\": \"筛选议题\",\n                \"Open issues and pull requests\": \"打开的议题和拉取请求\",\n                \"Your issues\": \"您提出的议题\",\n                \"Your pull requests\": \"您的拉取请求\",\n                \"Everything assigned to you\": \"任何分配给您的\",\n                \"Everything mentioning you\": \"任何提及您的\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n\n            \"Search all issues\": \"搜索所有议题\",\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n\n            \"ProTip!\": \"专业提示！\",\n                \"Find everything you created by searching\": \"通过搜索查找您创建的所有内容：\",\n                \"Exclude your own issues with\": \"排除您自己创建的议题：\",\n                \"Mix and match filters to narrow down what you’re looking for.\": \"通过混合和匹配筛选器以缩小查找范围。\",\n                \"Exclude everything labeled\": \"排除所有标有\",\n                \"with\": \"标签的内容，使用：\",\n                \"Follow long discussions with\": \"要跟进长讨论，请使用：\",\n                \"on any issue or pull request to go back to the pull request listing page.\": \"在任何议题或拉取请求上使用以返回拉取请求列表页面。\",\n                \"Filter pull requests by the default branch with\": \"通过默认分支过滤拉取请求：\",\n                \"to see everything that’s not assigned.\": \"以查看所有未分配的内容。\",\n                \"Find all pull requests that aren't related to any open issues with\": \"查找所有未关联任何打开议题的拉取请求，使用：\",\n                \"Add comments to specific lines under\": \"在以下特定行添加注释：\",\n                \"will show everything without a milestone.\": \"将显示所有没有里程碑的内容。\",\n                \"Updated in the last three days:\": \"最近 3 天更新：\",\n                \"Notify someone on an issue with a mention, like:\": \"在议题中通过 @ 提及通知某人，例如：\",\n                \"Adding\": \"添加\",\n                \"will show everything without a label.\": \"将显示所有无标签的内容。\",\n                \"on any issue or pull request to go back to the issue listing page.\": \"在任何议题或拉取请求上使用以返回议题列表页面。\",\n                \"Click a checkbox on the left to edit multiple issues at once.\": \"单击左侧复选框即可同时编辑多个议题。\",\n                // [/Ears burning? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的内容，请使用\"]\n\n\n            \"Labels\": \"标签\",\n                \"No labels\": \"无标签\",\n            \"Milestones\": \"里程碑\",\n            \"New issue\": \"创建议题\",\n            \"New\": \"创建\", // 小屏\n\n            // 筛选工作条\n            // \"Author\": \"作者\",\n                \"Filter by author\": \"按用户筛选\",\n                \"Filter users\": \"筛选用户名\",\n\n            \"Label\": \"标签\",\n                \"Filter by label\": \"按标签筛选\",\n                \"Filter labels\": \"筛选标签\",\n                \"Unlabeled\": \"无标签\",\n                \"to exclude labels\": \"排除标签\",\n                \"for logical OR\": \"表示逻辑“或”\",\n\n            // \"Projects\": \"项目\",\n                \"Filter by project\": \"按项目筛选\",\n                \"Filter projects\": \"筛选项目\",\n                \"Repository\": \"仓库\",\n                \"Organization\": \"组织\",\n                \"No projects found. Sorry about that.\": \"很抱歉，未找到任何项目。\",\n\n            // \"Milestones\": \"里程碑\",\n                \"Filter by milestone\": \"按里程碑筛选\",\n                \"Filter milestones\": \"筛选里程碑\",\n                \"Issues with no milestone\": \"无里程碑的议题\",\n                \"Pull requests with no milestone\": \"无里程碑的拉取请求\", // pulls\n                \"Nothing to show\": \"暂无\",\n\n            \"Assignee\": \"受理人\",\n                \"Filter by who’s assigned\": \"按受理人筛选\",\n                \"Filter assignees\": \"筛选受理人\",\n                \"Assigned to nobody\": \"无受理人\",\n                // [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 审查请求\"],\n                \"Requested changes must be addressed to merge this pull request.\": \"要合并这个拉取请求，必须先解决所要求的更改。\",\n                \"No one -\": \"无人 -\",\n                    \"Assign yourself\": \"分配给自己\",\n\n            \"Relationships\": \"关系\",\n                \"Parent issue\": \"父议题\",\n\n            \"Sort\": \"排序\",\n                \"Sort by\": \"排序\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Most commented\": \"最多评论\",\n                \"Least commented\": \"最少评论\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\", //?\n                \"Most reactions\": \"多数反应\",\n                \"Best match\": \"最佳匹配\",\n\n            // 选中模式\n                \"selected\": \"选中\",\n                \"Mark as\": \"标记为\",\n                \"Apply labels\": \"应用标签\",\n                \"Assign\": \"分配\",\n                    \"Assign someone\": \"分配给某人\",\n                    \"Assign to nobody\": \"分配给任何人\",\n\n            // 筛选结果\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"You could search\": \"您可以搜索\",\n            \"all of GitHub\": \"所有 GitHub\",\n            \"or try an\": \"或者尝试\",\n            \"advanced search\": \"高级搜索\",\n\n            // 状态词\n            \"was merged\": \"合并于\",\n            \"was closed\": \"关闭于\",\n            \"closed this\": \"关闭了这个\",\n            \"reopened this\": \"重新打开了这个\",\n            \"Approved\": \"已批准\",\n            \"Review required\": \"需要审查\", // 拉取请求 页面状态词\n                \"Review required before merging\": \"合并前需要审查\",\n            \"outdated\": \"陈旧的\",\n            \"Pending\": \"待定\",\n            \"Draft\": \"草案\",\n            \"deployed\": \"部署\",\n                \"View deployment\": \"查看部署\",\n            \"This was referenced\": \"被引用于\",\n            \"locked as\": \"锁定为\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"并限制与协作者对话\",\n            \"assigned\": \"分配给\",\n            \"labels\": \"标签\",\n\n            // 图标浮窗\n            \"Open issue\": \"议题已打开\",\n            \"Closed issue\": \"议题已完成\",\n            \"Closed as not planned issue\": \"议题已关闭因未计划\",\n            \"Open Pull Request\": \"拉取请求已打开\",\n            \"Draft Pull Request\": \"拉取请求草案\",\n            \"Merged Pull Request\": \"拉取请求已合并\",\n            \"Closed Pull Request\": \"拉取请求已关闭\",\n\n            // [/(\\d+) linked pull requests?/, \"链接 $1 个拉取请求\"],\n\n        // 某个拉取请求和某个议题 公共词条\n            // 顶部提醒\n                \"You’ve been unsubscribed from this thread.\": \"您已退订该主题。\",\n\n            // 右侧栏\n                \"Reviewers\": \"审查者\",\n                    \"No reviews\": \"无人审查\",\n                    \"Loading suggestions…\": \"载入推荐…\",\n                    // [/([^ ]+) left review comments/, \"$1 发表了审查意见\"],\n                    // [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合并此拉取请求至少需要 $1 次批准审核。\"], // 具体的拉取请求 审查者\n                    \"No reviews—at least 1 approving review is required.\": \"未经审查—至少需要 1 次批准审查。\",\n                    \"Re-request review\": \"重新请求审核\",\n                    \"Still in progress?\": \"仍在进行中吗？\",\n                    // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的审查请求\"]\n                    \"Learn about draft PRs\": \"了解拉取请求草案\",\n                        \"Try draft pull requests\": \"尝试拉取请求草案\",\n                        \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打开正在进行的拉取请求，无需请求正式审核，也不必冒不必要的合并风险。当您准备好进行代码审核时，您可以将拉取请求草案标记为已准备好审核，这将请求任何代码所有者进行审核。\",\n                        \"Ask admin for access\": \"向管理员请求权限\",\n                    \"Convert to draft\": \"设置为草案\",\n                        // 设置草案对话框\n                            \"Convert this pull request to draft?\": \"将此拉取请求转换为草案？\", // 拉取请求\n                            \"People who are already subscribed will not be unsubscribed.\": \"已订阅的用户将不会被取消订阅。\",\n                    // 下拉\n                    \"Request up to 15 reviewers\": \"最多请求 15 个审查者\",\n                    // [/([^ ]+) approved these changes/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n                    \"Request\": \"请求\",\n                    // [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n                    \"This pull request is waiting on your review.\": \"此拉取请求正在等待您的审核。\",\n\n                \"Assignees\": \"受理人\",\n                    \"No one assigned\": \"无人受理\",\n                    \"No one—\": \"无人 - \",\n                    \"assign yourself\": \" 受理自己\",\n                    // 下拉框\n                    \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 议题\n                    \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取请求\n                    \"Clear assignees\": \"清除受理人\",\n                    \"Type or choose a user\": \"输入或选择用户\",\n                    \"Suggestions\": \"建议\",\n\n                // \"Labels\": \"标签\",\n                    \"None yet\": \"暂无\",\n                    // 下拉\n                    \"bug\": \"BUG\",\n                        \"Something isn't working\": \"有些东西不工作\",\n                    \"dependencies\": \"依赖性\",\n                        \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                    \"documentation\": \"文档\",\n                        \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                    \"duplicate\": \"重复\",\n                        \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                    \"enhancement\": \"增强\",\n                        \"New feature or request\": \"新功能或请求\",\n                    \"good first issue\": \"好的首发议题\",\n                        \"Good for newcomers\": \"适合新人\",\n                    \"help wanted\": \"需要帮助\",\n                        \"Extra attention is needed\": \"需要特别关注\",\n                    \"invalid\": \"无效\",\n                        \"This doesn't seem right\": \"这似乎不对\",\n                    \"question\": \"问题\",\n                        \"Further information is requested\": \"要求提供更多信息\",\n                    \"wontfix\": \"不会修复\",\n                        \"This will not be worked on\": \"这将不会被处理\",\n\n                    \"Apply labels to this issue\": \"应用标签\", // 议题\n                    \"Apply labels to this pull request\": \"应用标签\", // 拉取请求\n                    \"Edit labels\": \"编辑标签\",\n\n                    // 拉取请求\n                    \"dependencies\": \"依赖项\",\n                        \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n\n                // 项目\n                    \"Recent\": \"最近\",\n                    \"User\": \"用户\",\n                    \"No projects\": \"无项目\",\n\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"无里程碑\",\n                    //下拉\n                    \"Set milestone\": \"设置里程碑\",\n                        \"Nothing to show\": \"暂无\",\n\n                \"Development\": \"进展\",\n                    \"Successfully merging this pull request may close these issues.\": \"成功合并此拉取请求可能会关闭这些议题。\",\n                    \"Successfully merging a pull request may close this issue.\": \"成功合并一个拉取请求可能会关闭此议题。\",\n                    // 下拉\n                    \"Link an issue from this repository\": \"关联来自此仓库的议题\",\n                    \"Filter\": \"筛选\",\n                    \"No results\": \"无结果\",\n                    \"Open in Workspace\": \"在工作区打开\",\n\n                // \"Notifications\": \"通知类型\",\n                \"Customize\": \"自定义\",\n                \"Subscribe\": \"订阅\",\n                // \"Unsubscribe\": \"取消订阅\",\n                \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You're not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您正在关注此仓库。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您提出了该话题。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因为有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因为您发表了评论。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因为您正在关注此仓库上的拉取请求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因为您正在关注此仓库上的议题。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因为您修改了打开/关闭状态。\",\n                \"You’re receiving notifications because you were assigned.\": \"您收到通知是因为您受理了它。\",\n                \"You’re ignoring this repository.\": \"您忽略了这个仓库。\",\n\n                    // 通知设置对话框\n                    \"Notification settings\": \"通知设置\",\n                    \"Notifications settings\": \"通知设置\", // 新版议题页面\n                    \"Not subscribed\": \"未订阅\",\n                        \"Only receive notifications from this pull request when you have participated or have been @mentioned.\": \"只有在您参与或被 @您 时才会收到来自此拉取请求的通知。\",\n                        \"Only receive notifications from this issue when you have participated or have been @mentioned.\": \"只有在您参与或被 @您 时才会收到来自此议题的通知。\", // 议题页面\n                    \"Subscribed\": \"订阅\",\n                        \"Receive all notifications from this pull request.\": \"接收来自此拉取请求的所有通知。\",\n                        \"Receive all notifications from this issue.\": \"接收来自此议题的所有通知。\",  // 议题页面\n                    \"Custom\": \"自定义\",\n                        \"You will only be notified for events selected from the list below. If you participate or are @mentioned you will be subscribed.\": \"您只会收到从以下列表中选择的事件的通知。如果您参与或 @您 时，将自动订阅。\",\n                        \"You will only be notified for the events selected from the list below.\": \"您只会收到从以下列表中选择的事件的通知。\",\n                        \"If you participate or are @mentioned you will be subscribed.\": \"如果您参与或 @您 时，将自动订阅。\",\n                    // 议题\n                        \"Receive a notification when this issue has been closed.\": \"当议题被关闭时，收到通知。\",\n                        \"Reopened\": \"重新打开\",\n                            \"Receive a notification when this issue has been reopened.\": \"当议题被重新打开时，收到通知。\",\n                    // 拉取请求\n                        \"Receive a notification when this pull request has been merged.\": \"当拉取请求被合并时，收到通知。\",\n                        \"Receive a notification when this pull request has been closed.\": \"当拉取请求被关闭时，收到通知。\",\n                        \"Receive a notification when this pull request has been reopened.\": \"当拉取请求被重新打开时，收到通知。\",\n\n                \"Lock conversation\": \"锁定对话\",\n                    \"Lock conversation on this issue\": \"锁定此议题的对话\",\n                    \"Lock conversation on this pull request\": \"锁定此拉取请求的对话\",\n                    \"Other users\": \"其他用户\",\n                    \"can’t add new comments\": \"无法添加新评论\",\n                    \"to this issue.\": \"到该议题。\",\n                    \"to this pull request.\": \"到该拉取请求。\",\n                    \"You and other collaborators\": \"您和其他协作者\",\n                    \"with access\": \"有权限访问\",\n                    \"to this repository\": \"该仓库\",\n                    \"can still leave comments\": \"仍然可以发表评论\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                    \"You can always unlock this issue again in the future.\": \"您今后仍可以随时再次解锁此议题。\",\n                    \"You can always unlock this pull request again in the future.\": \"您今后仍可以随时再次解锁此拉取请求。\",\n                    \"Other users can't add new comments to this issue. You and other members of teams with\": \"其他用户无法在此议题下添加新评论。您及\",\n                    \"write access\": \"有权访问\",\n                    \"to this repository can still leave comments that others can see. You can always unlock this issue again in the future.\": \"该仓库的团队成员仍可发表其他用户可见的评论。您随时可以在未来重新解锁此议题。\",\n                    \"Reason for locking\": \"锁定原因\",\n                    \"Choose a reason\": \"选择原因\",\n                    \"Reason\": \"原因\",\n                        \"No reason\": \"无\",\n                        \"Off-topic\": \"偏离主题\",\n                        \"Too heated\": \"争论不休\",\n                        \"Resolved\": \"已解决\",\n                        \"Spam\": \"垃圾信息\",\n                    \"Optionally, choose a reason for locking that others can see. Learn more about when it’s appropriate to\": \"或者，选择其他人可以看到的锁定原因。详细了解何时适合\",\n                    \"lock conversations\": \"锁定对话\",\n                    // \"Lock conversation on this issue\": \"锁定对话\",\n                \"Unlock conversation\": \"解锁对话\",\n                    \"Unlock conversation on this issue\": \"解锁此议题的对话\",\n                    \"Unlock conversation on this pull request\": \"解锁此拉取请求的对话\",\n                    \"Everyone\": \"任何人\",\n                    \"will be able to comment on this issue once more.\": \"将能够再次对这个议题发表评论。\",\n                    \"will be able to comment on this pull request once more.\": \"将能够再次对这个拉取请求发表评论。\",\n                    \"You can always lock this pull request again in the future.\": \"您今后仍可以随时再次锁定此拉取请求。\",\n                    \"You can always lock this issue again in the future.\": \"您今后仍可以随时再次锁定此议题。\",\n                    \"Everyone will be able to comment on this issue once more. You can always lock this issue again in the future.\": \"任何人将能够再次对这个议题发表评论。您今后仍可以随时再次锁定此议题。\",\n\n                // 隐藏评论对话框\n                \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Learn more about hiding comments\": \"了解更多关于隐藏评论的信息\",\n                \"comment\": \"评论\",\n                \"Unhide\": \"取消隐藏\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n                \"This comment has been minimized.\": \"此评论已最小化。\",\n                    \"Show comment\": \"显示评论\",\n                    \"Hide comment\": \"隐藏评论\",\n\n            \"Remember, contributions to this repository should follow our\": \"请记住，对该仓库的贡献应遵循我们的\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n            \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循\",\n            \"contributing guidelines\": \"贡献指南\",\n            \"security policy\": \"安全政策\",\n            \"code of conduct\": \"行为准则\",\n            \"contributing guidelines\": \"贡献准则\",\n\n            // 被锁定\n                \"This conversation has been locked as\": \"此对话已锁定为\",\n                    \"and limited to collaborators.\": \"，并限制与协作者对话。\",\n                \"You can't perform this action at this time.\": \"您此时不能操作。\",\n\n            // 底部赞助\n                \"Show your support for\": \"通过赞助来表达您对\",\n                \"by sponsoring them.\": \"的支持。\",\n                \"Sponsor\": \"赞助\",\n\n            // 底部提示栏 (未登录)\n                \"Sign up for free\": \"免费注册\",\n                \"to subscribe to this conversation on GitHub\": \"在 GitHub 上订阅这个讨论\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n                \". Already have an account?\": \"。已经有账户？\",\n                \"Sign in to comment\": \"登录后发表评论\",\n    },\n    \"regexp\": [ // 正则翻译\n        // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n        [/(\\+\\d+) more reviewers?/, \"$1 个审查者\"],\n        [/(\\d+) linked issues?/, \"链接 $1 个议题\"],\n        [/Assigned to (.*)/, \"分配给 $1\"],\n        [/Edited (\\d+) times?/, \"编辑 $1 次\"],\n        [/Open issues created by ([^ ]+)/, \"$1 创建议题\"],\n        [/issues opened by ([^ ]+)/, \"$1 打开议题\"],\n        [/Open pull requests created by ([^ ]+)/, \"$1 创建拉取请求\"],\n        [/pull requests opened by ([^ ]+)/, \"$1 打开拉取请求\"],\n        [/(\\d+) hidden conversations/, \"$1 条隐藏对话\"],\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的内容，请使用\"]\n    ]\n};\n\nI18N[\"zh-CN\"][\"repository/issues\"] = { // 仓库 - 议题页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 仓库 --> 议题 标签卡/<user-name>/<repo-name>/issues\n        // /<user-name>/<repo-name>/labels/<label-name>\n            // 欢迎信息\n            \"Welcome to issues!\": \"欢迎关注议题！\",\n            \"Issues are used to track todos, bugs, feature requests, and more. As issues are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"议题用于跟踪待办事项、错误、功能请求等。创建议题后，它们将出现在可搜索和可筛选的列表中。要开始，您应该\",\n            \"create an issue\": \"创建议题\",\n                \"Open issue creation in fullscreen\": \"全屏\", // 有议题模板时\n\n            \"Label issues and pull requests for new contributors\": \"标记新贡献者的议题和拉取请求\",\n            \"Now, GitHub will help potential first-time contributors\": \"现在，GitHub 将帮助潜在的首次贡献者\",\n            \"discover issues\": \"探索议题\",\n            \"labeled with\": \"标记为\",\n                \"Completed\": \"已完成\",\n            \"Project\": \"项目\",\n\n            \"Clear filter\": \"清除筛选\",\n            \"Filter authors\": \"筛选作者\",\n            \"Filter by assignees\": \"筛选受理人\",\n                \"No assignees\": \"无人受理\",\n            // 新版内容\n                // 顶部\n                    \"👋 Want to contribute to\": \"👋 想做贡献给\",\n                // 排序\n                    \"Created on\": \"创建时间\",\n                    \"Comments\": \"评论\",\n                    \"Total comments\": \"评论数\",\n                    \"Reactions\": \"看法数\",\n                    \"Total reactions\": \"总看法数\",\n                    \"Thumbs up\": \"点赞\",\n                    \"Thumbs down\": \"点踩\",\n                    \"Rocket\": \"火箭\",\n                    \"Hooray\": \"欢呼\",\n                    \"Eyes\": \"关注\",\n                    \"Heart\": \"比心\",\n                    \"Laugh\": \"大笑\",\n                    \"Confused\": \"拒绝\",\n                    \"Ascending\": \"递增\",\n                    \"Descending\": \"递减\",\n\n                \"Types\": \"类型\",\n                \"Issue type\": \"议题类型\",\n                    \"Filter by issue type\": \"按议题类型筛选\",\n                    \"Select issue type\": \"选择议题类型\",\n                    \"Filter types\": \"筛选类型\",\n                        \"No type\": \"无类型\",\n                            \"Issues with no type\": \"无类型议题\",\n                            \"No issue type\": \"无议题类型\",\n                // 搜索\n                \"Try adjusting your search filters.\": \"尝试调整搜索筛选器。\",\n\n            // [/Want to contribute to ([^ ]+)/, \"想为 $1 做贡献吗？\"], /issues\n            \"If you have a bug or an idea, read the\": \"如果您发现一个错误或有任何想法，请阅读\",\n            \"before opening an issue.\": \"，在打开议题之前。\",\n            \"If you have a bug or an idea, browse the open issues before opening a new one. You can also take a look at the\": \"如果您发现一个错误或有任何想法，请在打开新议题之前浏览未解决的议题。您也可以看看\",\n            \"Open Source Guide\": \"开源指南\",\n                \"Learn about Open Source and how to contribute\": \"了解开源和如何贡献\",\n            \"If you're ready to tackle some open issues,\": \"如果您准备好解决一些未解决的议题，\",\n            \"we've collected some good first issues for you\": \"我们已为您收集了一些好的首发议题\",\n            \"we've collected some good first issues for you.\": \"我们已为您收集了一些好的首发议题。\", // 新版议题页\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"仅对该仓库不在提示\",\n                \"Dismiss for all repositories\": \"对所有仓库均不在提示\",\n\n\n            \"There aren’t any open issues.\": \"暂无开放的议题。\",\n\n            // 状态词\n            \"Merged\": \"已合并\",\n            // \"open\": \"打开\",\n            // \"Opened\": \"打开\",\n            \"opened\": \"打开于\",\n            // \"closed\": \"已关闭\",\n            // 新版\n                \"Closed as not planned\": \"关闭因未计划\",\n                \"Closed as duplicate\": \"关闭因重复\",\n                \"of\": \"于\",\n                \"Not planned\": \"未计划\",\n\n            // 父级议题\n            \"Parent:\": \"父级：\",\n            // 子级议题\n            \"Create sub-issue\": \"创建子议题\",\n                //\"Create sub-issue\": \"创建子议题\",\n                    // 窗口\n                        \"Create new issue\": \"新建议题\",\n                            \"Select an item\": \"选择一项\",\n                                \"Select repository\": \"选择仓库\",\n                            \"Templates and forms\": \"模板和表单\",\n                                // 空白议题\n                                    \"Create a new issue from scratch\": \"从头开始创建新议题\",\n                \"Add existing issue\": \"添加现有议题\",\n                    \"Search issues\": \"搜索议题\",\n                        \"Group selected\": \"分组选择\",\n\n\n                \"Blank issue\": \"空白议题\",\n                    \"in\": \"在\",\n                \"Type your description here…\": \"在此键入介绍…\",\n                \"Create more sub-issues\": \"创建更多子议题\",\n\n                // 警告\n                    \"Are you sure?\": \"您确定吗？\",\n                        \"Sub-issues are limited to one parent. Confirm you want to proceed with this change.\": \"子议题仅允许关联一个父议题。请确认是否要继续进行此更改？\",\n                        \"Change parent issue\": \"更改父议题\",\n\n            \"Sub-issues\": \"子议题\",\n                \"Collapse Sub-issues\": \"折叠子议题\",\n                \"Expand Sub-issues\": \"展开子议题\",\n\n                \"More list item action bar\": \"更多操作\",\n                    \"Remove sub-issue\": \"移除子议题\",\n\n            \"Invalid value\": \"无效值\",\n            \"for\": \"，\",\n            //\"parent-issue\": \"父议题\",\n\n            \"You commented on and opened this issue\": \"您打开了此议题并发表了评论\",\n            \"You were mentioned on and commented on this issue\": \"您被提及并对此议题发表了评论\",\n            \"You commented on this issue\": \"您对此议题发表了评论\",\n            \"You opened this issue\": \"您打开了此议题\",\n\n            // 置顶议题\n            \"Pinned issues\": \"置顶议题\",\n            \"Drag to reorder\": \"拖拽排序\",\n            \"Pinned issue options\": \"置顶选项\",\n\n            \"Unpin\": \"取消置顶\",\n            \"Advanced move...\": \"高级移动…\",\n                \"Move selected item\": \"移动选中项\",\n                    \"Item\": \"标题\",\n                    \"Action\": \"操作\",\n                    \"Move item before\": \"移动到…之前\",\n                    \"Move item after\": \"移动到…之后\",\n                    \"Move to position\": \"指定位置\",\n                    \"Move\": \"移动\",\n            \"Search Issues\": \"搜索议题\",\n                // 仓库\n                    \"No repository\": \"无仓库\",\n                    \"Has repository\": \"包含仓库\",\n                    \"Exclude repo\": \"排除仓库\",\n                // 组织\n                    \"Has organization\": \"包含组织\",\n                    \"Exclude org\": \"排除组织\",\n                \"Is\": \"类型为\",\n                    \"Exclude is\": \"排除类型为\",\n                    \"Issue\": \"议题\",\n                    \"Pull Request\": \"拉取请求\",\n                    \"Unmerged\": \"未合并\",\n                    \"Locked\": \"已锁定\",\n                    \"Unlocked\": \"未锁定\",\n                    \"Blocked\": \"已阻塞\",\n                \"State\": \"状态\",\n                    \"Exclude state\": \"排除状态\",\n                // 标签\n                    \"No label\": \"无标签\",\n                    \"Has label\": \"包含标签\",\n                    \"Exclude label\": \"排除标签\",\n                    \"aesthetics\": \"美化\",\n                    \"bug\": \"缺陷\",\n                    \"dependencies\": \"依赖项\",\n                    \"development\": \"开发中\",\n                    \"discuss\": \"讨论\",\n                    \"documentation\": \"文档\",\n                    \"duplicate\": \"重复\",\n                    \"enhancement\": \"功能增强\",\n                    \"forums\": \"论坛\",\n                    \"good first issue\": \"适合新手\",\n                    \"help wanted\": \"求助\",\n                    \"invalid\": \"无效\",\n                    \"question\": \"提问\",\n                    \"website\": \"网站\",\n                    \"wontfix\": \"不会修复\",\n                // 类型\n                    \"No type\": \"无类型\",\n                    \"Has type\": \"包含类型\",\n                \"Project\": \"项目\",\n                    \"No project\": \"无项目\",\n                    \"Has project\": \"包含项目\",\n                    \"Exclude project\": \"排除项目\",\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"无里程碑\",\n                    \"Has milestone\": \"包含里程碑\",\n                    \"Exclude milestone\": \"排除里程碑\",\n                // 受理人\n                    \"No assignee\": \"无受理人\",\n                    \"Has assignee\": \"包含受理人\",\n                    \"Me\": \"我\",\n                        \"Signed-in user\": \"已登录用户\",\n                    // Copilot\n                        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                        \"Assign to Copilot\": \"受理给 Copilot\",\n                        // 窗口\n                            \"Assign Copilot to issue\": \"分配议题给 Copilot\",\n                            \"Feedback\": \"反馈\",\n                                \"Copilot will open a pull request using the issue's description, comments, and the additional prompt if you provide one. Choose a custom agent to tailor Copilot for specific tasks.\": \"Copilot 将根据议题的描述、评论以及您提供的额外提示词（若有）来开启拉取请求。您可以选择自定义智能体，以便针对特定任务定制 Copilot。\",\n                                \"Optional prompt\": \"提示词（可选）\",\n                                    \"Provide additional instructions for Copilot\": \"提供可选提示给 Copilot\",\n                                \"Auto\": \"自动\",\n                    \"Exclude assignee\": \"排除受理人\",\n                \"Author\": \"作者\",\n                    \"Has author\": \"包含作者\",\n                    \"Exclude author\": \"排除作者\",\n                \"Involves\": \"涉及\",\n                    \"Has involves\": \"包含涉及\",\n                    \"Exclude involves\": \"排除涉及\",\n                \"Mentions\": \"提及\",\n                    \"Has mentions\": \"包含提及\",\n                    \"Exclude mentions\": \"排除提及\",\n                \"Parent issue\": \"父议题\",\n                    \"No parent issue\": \"无父议题\",\n                    \"Has parent issue\": \"包含父议题\",\n                    \"Exclude parent-issue\": \"排除父议题\",\n                \"Blocking\": \"阻塞\",\n                    \"No blocking\": \"无阻塞\",\n                    \"Has blocking\": \"包含阻塞\",\n                    \"Exclude blocking\": \"排除阻塞\",\n                \"Blocked by\": \"被…阻塞\",\n                    \"No blocked by\": \"无被阻塞\",\n                    \"Has blocked by\": \"包含被阻塞\",\n                    \"Exclude blocked-by\": \"排除被阻塞\",\n                \"Sub-issue\": \"子议题\",\n                    \"No sub-issue\": \"无子议题\",\n                    \"Has sub-issue\": \"包含子议题\",\n                    \"Exclude sub-issue\": \"排除子议题\",\n                \"Update date\": \"更新日期\",\n                    \"Exclude updated\": \"排除更新日期\",\n                    \"Today\": \"今天\",\n                    \"Yesterday\": \"昨天\",\n                    \"Past 7 days\": \"过去 7 天\",\n                    \"Past 30 days\": \"过去 30 天\",\n                    \"Past year\": \"过去 1 年\",\n                \"Creation date\": \"创建日期\",\n                    \"Has creation date\": \"包含创建日期\",\n                    \"Exclude created\": \"排除创建日期\",\n                \"Closed date\": \"关闭日期\",\n                    \"Has closed date\": \"包含关闭日期\",\n                    \"Exclude closed\": \"排除关闭日期\",\n                \"Merge date\": \"合并日期\",\n                    \"Has merge date\": \"包含合并日期\",\n                    \"Exclude merged\": \"排除合并日期\",\n                \"Review requested\": \"已请求评审\",\n                    \"Has review requested\": \"包含已请求评审\",\n                    \"Exclude review-requested\": \"排除已请求评审\",\n                \"In\": \"在\",\n                    \"Has in\": \"包含在\",\n                    \"Exclude in\": \"排除在\",\n                    \"Body\": \"正文\",\n                    \"Comments\": \"评论\",\n                \"Commenter\": \"评论者\",\n                    \"Has commenter\": \"包含评论者\",\n                    \"Exclude commenter\": \"排除评论者\",\n                \"User\": \"用户\",\n                    \"Has user\": \"包含用户\",\n                    \"Exclude user\": \"排除用户\",\n                \"User review requested\": \"已请求用户评审\",\n                    \"Has user review requested\": \"包含已请求用户评审\",\n                    \"Exclude user-review-requested\": \"排除已请求用户评审\",\n                \"Reviewed by\": \"评审者\",\n                    \"Has reviewed by\": \"包含评审者\",\n                    \"Exclude reviewed-by\": \"排除评审者\",\n                \"Comment count\": \"评论数\",\n                    \"Has comment count\": \"有评论数\",\n                    \"Less than 10\": \"少于 10\",\n                    \"More than 10\": \"多于 10\",\n                    \"Between 10 and 100\": \"10 到 100\",\n                \"Interactions count\": \"互动数\",\n                    \"Has interactions count\": \"有互动数\",\n                \"Closed reason\": \"关闭原因\",\n                    \"Exclude reason\": \"排除原因\",\n                    \"Completed\": \"已完成\",\n                    \"Not planned\": \"未计划\",\n                    \"Duplicate\": \"重复\",\n                \"Linked\": \"已链接\",\n                    \"Has linked\": \"包含已链接\",\n                    \"Exclude linked\": \"排除已链接\",\n                \"Archived\": \"已归档\",\n                    \"Has archived\": \"包含已归档\",\n                    \"Exclude archived\": \"排除已归档\",\n                    \"True\": \"是\",\n                    \"False\": \"否\",\n                \"Reaction count\": \"表情回应数\",\n                    \"Has reaction count\": \"有表情回应数\",\n                // 草案\n                    \"Has draft\": \"包含草案\",\n                    \"Exclude draft\": \"排除草案\",\n                \"Review state\": \"评审状态\",\n                    \"Has review state\": \"包含评审状态\",\n                    \"Exclude review\": \"排除评审状态\",\n                    \"No reviews\": \"无评审\",\n                \"Code language\": \"代码语言\",\n                    \"Has code language\": \"包含代码语言\",\n                    \"Exclude language\": \"排除代码语言\",\n                \"Commit SHA\": \"提交 SHA\",\n                    \"Has commit sha\": \"包含提交 SHA\",\n                    \"Exclude sha\": \"排除提交 SHA\",\n                \"Base\": \"基础分支\",\n                    \"Has base\": \"包含基础分支\",\n                    \"Exclude base\": \"排除基础分支\",\n                \"Head\": \"对比分支\",\n                    \"Has head\": \"包含对比分支\",\n                    \"Exclude head\": \"排除对比分支\",\n                // 状态 (Status)\n                    \"Has status\": \"包含状态检查\",\n                    \"Exclude status\": \"排除状态检查\",\n                    \"Pending\": \"待处理\",\n                    \"Success\": \"成功\",\n                    \"Failure\": \"失败\",\n                    \"Queued\": \"排队中\",\n                    \"Waiting\": \"等待中\",\n                    \"Cancelled\": \"已取消\",\n                    \"Skipped\": \"已跳过\",\n                \"Team\": \"团队\",\n                    \"Has team\": \"包含团队\",\n                    \"Exclude team\": \"排除团队\",\n                \"Team review requested\": \"已请求团队评审\",\n                    \"Has team review requested\": \"包含已请求团队评审\",\n                    \"Exclude team-review-requested\": \"排除已请求团队评审\",\n                // 排序\n                    \"Has sort\": \"包含排序\",\n                    \"Exclude sort\": \"排除排序\",\n                    \"Least reactions\": \"最少回应\",\n                    \"Most thumbs up (👍) reactions\": \"👍 回应最多\",\n                    \"Least thumbs up (👍) reactions\": \"👍 回应最少\",\n                    \"Most thumbs down (👎) reactions\": \"👎 回应最多\",\n                    \"Least thumbs down (👎) reactions\": \"👎 回应最少\",\n                    \"Most laugh (😄) reactions\": \"😄 回应最多\",\n                    \"Least laugh (😄) reactions\": \"😄 回应最少\",\n                    \"Most confused (😕) reactions\": \"😕 回应最多\",\n                    \"Least confused (😕) reactions\": \"😕 回应最少\",\n                    \"Most tada (🎉) reactions\": \"🎉 回应最多\",\n                    \"Least tada (🎉) reactions\": \"🎉 回应最少\",\n                    \"Most heart (❤️) reactions\": \"❤️ 回应最多\",\n                    \"Least heart (❤️) reactions\": \"❤️ 回应最少\",\n                    \"Most eyes (👀) reactions\": \"👀 回应最多\",\n                    \"Least eyes (👀) reactions\": \"👀 回应最少\",\n                \"AND\": \"且\",\n                \"OR\": \"或\",\n                \"Exclude\": \"排除\",\n            // 过滤器问题\n                \"Empty value for\": \"空值\",\n                \"Invalid value\": \"无效值\",\n                \"for\": \"对于\",\n                \"Unbalanced quotation marks\": \"引号不匹配\",\n\n            \"Order\": \"顺序\",\n\n        // 新建议题 选择议题模板  /<user-name>/<repo-name>/issues/new/choose\n            \"Get started\": \"开始\",\n            \"Don’t see your issue here?\": \"在这里没有看到您的议题？\",\n            \"Open a blank issue.\": \"打开一个空白议题。\",\n            \"Edit templates\": \"编辑模板\",\n            \"Report abuse\": \"举报滥用\",\n\n            \"View organization templates\": \"查看组织模板\", // 组织仓库\n\n            // 警告\n                \"Discard changes?\": \"丢弃更改？\",\n                \"Close and discard\": \"丢弃并关闭\",\n\n        // 新建空白议题  /<user-name>/<repo-name>/issues/new\n            \"Title\": \"标题\",\n            \"Helpful resources\": \"帮助性资源\",\n            \"Create more\": \"创建多个\",\n            \"Write with Copilot\": \"请 Copilot 编写\",\n                \"Navigate to Copilot Chat\": \"导航到 Copilot 聊天\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                    \"Keep editing\": \"否\", // 实际作用：返回编写页面\n                    \"Go to Copilot\": \"是\", // 实际作用：前往 Copilot 页面\n\n            \"Choose a different template\": \"切换模板\",\n\n        // 从讨论创建议题  /<user-name>/<repo-name>/issues/new?created_from_discussion_number=<id>\n            \"Documentation has changed since you last contributed\": \"自您上次贡献以来，文档已更改\",\n            \". Take a look before submitting an issue:\": \"。在提交议题之前先看一下：\",\n            \"Contributing guidelines\": \"贡献指南\",\n            \"Last updated\": \"最后更新\",\n\n        // 某条具体的议题 /<user-name>/<repo-name>/issues/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 快捷键\n                \"Convert issue to discussion…\": \"将议题转化为讨论…\",\n\n            \"This issue was moved to a discussion.\": \"这个议题被转移到讨论中。\",\n            \"You can continue the conversation there.\": \"您可以在那里继续讨论。\",\n            \"Go to discussion →\": \"转到讨论→\",\n\n            \"Edit\": \"编辑\",\n            \"Issue body actions\": \"菜单\", // 原文过于啰嗦，直接省略\n\n            // 状态词 同 /<user-name>/<repo-name>/pull/<id>\n            \"changed the title\": \"修改了标题\",\n            \"opened this issue\": \"打开了该议题\",\n            \"· Fixed by\": \"· 修复了\",\n            \"mentioned this issue\": \"提及了该议题\",\n            \"mentioned this\": \"提及此\",\n            \"opened this\": \"打开了这个\",\n            \"linked a pull request\": \"关联了一个拉取请求\",\n            \"linked a pull request that will close this issue\": \"关联了一个关闭此议题的拉取请求\",\n            //\"that will\": \"这将会\",\n            //\"close\": \"关闭\",\n            //\"this issue\": \"这个议题\",\n            // \"that will close this issue\": \"这将会关闭这个议题\",\n            // \"Issue\": \"议题\",\n            \"added a commit that closed this issue\": \"在提交时关闭了这个议题\",\n            \"closed this in\": \"关闭于\",\n            \"added the\": \"添加了\",\n            \"added\": \"添加了\",\n            \"and removed\": \"并移除了\",\n            \"removed the\": \"移除了\",\n            \"removed\": \"移除了\",\n            \"label\": \"标签\",\n            \"labels\": \"标签\",\n            \"self-assigned this\": \"自己受理了该议题\",\n            // \"edited\": \"编辑的\",\n            \"added this to the\": \"添加到\",\n            \"added this to\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"moved this to\": \"移动到\",\n            \"closed this\": \"关闭了\",\n            \"as\": \"因\",\n            \"as a\": \"因\",\n            \"closed this as\": \"已关闭因\",\n                \"not planned\": \"非计划中\",\n                \"completed\": \"已完成\",\n            \"reopened this\": \"重新打开了这个\",\n            \"This was referenced\": \"这是引用\",\n            \"deleted a comment from\": \"删除了评论，来自\",\n            \"· May be fixed by\": \" · 可通过该方案修复\",\n            \"pinned this issue\": \"置顶议题\",\n            \"unpinned this issue\": \"取消置顶\",\n            \"Repository owner\": \"仓库所有者\",\n            \"Repository owner locked and limited conversation to collaborators\": \"仓库所有者锁定并限制与协作者对话\",\n            \"Repository owner locked as\": \"仓库所有者锁定为\",\n            \"Repository owner deleted a comment\": \"仓库所有者删除了评论\",\n            \"Repository owner deleted a comment from\": \"仓库所有者删除了评论来自\",\n            \"locked\": \"锁定\",\n            \"locked as\": \"锁定为\",\n                \"off-topic\": \"偏离主题\",\n                \"too heated\": \"争论不休\",\n                \"resolved\": \"已解决\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"并限制与协作者对话\",\n            \"unlocked this conversation\": \"解锁了对话\",\n            \"merged commit\": \"已合并提交\",\n            // \"into\": \"到\",\n            \"deleted the\": \"删除了\",\n            \"locked and limited conversation to collaborators\": \"锁定并限制与协作者对话\",\n            \"converted this issue into discussion\": \"此议题已转化为讨论\",\n            \"converted this issue into a discussion\": \"此议题已转化为讨论\",\n            \"removed their assignment\": \"取消了他们的任务\",\n            \"assigned\": \"分配给了\",\n            \"unassigned\": \"取消分配给\",\n            \"and unassigned\": \"和取消了分配给\",\n            \"marked this pull request as draft\": \"将此拉取请求标记为草案\",\n            \"marked this pull request as ready for review\": \"将此拉取请求标记为可供审查\",\n            \"dismissed a stale review via\": \"驳回了一个陈旧的审查，通过\",\n            \"requested changes\": \"请求了更改\",\n            \"added a commit that referenced this issue\": \"添加了一个引用此问题的提交\",\n            \"referenced this issue\": \"提及这个议题\",\n            \"closed this as completed\": \"已完成，关闭\",\n            \"added a parent issue\": \"添加了一个父议题\",\n            \"added a commit that references this issue\": \"添加了一个引用此议题的提交\",\n            \"transferred this issue from\": \"将此议题转移，从\",\n            \"as off topic\": \"为偏离主题\",\n            \"as too heated\": \"为争论不休\",\n            \"as spam\": \"为垃圾信息\",\n            \"as resolved\": \"为已解决\",\n            \"added a sub-issue\": \"添加子议题\",\n            \"added sub-issues\": \"添加子议题\",\n            \"removed a parent issue\": \"移除父议题\",\n            \"removed a sub-issue\": \"移除子议题\",\n            \"marked\": \"标记\",\n                \"as a duplicate of this issue\": \"议题同此重复\", // 示例 https://github.com/maboloshi/github-chinese/issues/405\n\n            // 右侧栏 补充\n            \"Metadata\": \"元数据\", // 小屏模式\n                // \"Development\": \"进展\",\n                    \"Code with agent mode\": \"智能体模式编程\",\n                        \"Select code repository\": \"选择仓库\",\n                        \"Start a codespace with Copilot agent mode for this issue in another repository.\": \"为另一个仓库中的此议题启动使用 Copilot 智能体模式的代码空间。\",\n                    \"No branches or pull requests\": \"没有分支或拉取请求\",\n                    \"Shows branches and pull requests linked to this issue.\": \"显示与该议题相关的分支和拉取请求。\",\n                    \"Create a branch\": \"创建分支\",\n                    \"for this issue or link a pull request.\": \"为这个议题或关联一个拉取请求\",\n                    \"When branches are created from issues, their pull requests are automatically linked.\": \"当从议题中创建分支时，它们的拉取请求会自动关联。\",\n\n                    // 关系\n                        \"Add parent\": \"添加父议题\",\n                        \"Select a repository\": \"选择一个仓库\",\n                        \"Change or remove parent\": \"更改或移除父议题\",\n                            \"Selected\": \"当前\",\n\n                    // 参与者数大于2\n                        \"and others\": \"等\",\n\n                    // 下拉\n                    \"Link a pull request from this repository\": \"关联来自此仓库的拉取请求\",\n\n                    // \"linked a pull request that will\": \"关联一个拉取请求, 将会\",\n                    // \"close\": \"关闭\",\n                    // \"this issue\": \"这个议题\",\n\n                    // 第一次打开议题\n                    \"It looks like this is your first time opening an issue in this project!\": \"看起来这是您第一次在此项目中打开议题！\",\n                    \"Be sure to review the\": \"请务必查阅\",\n\n                    // 议题表单\n                    \"You're using an\": \"您正在使用\",\n                    \"issue form\": \"议题表单\",\n                    \", a new type of issue template.\": \"，一种新型议题模板。\",\n\n                    // 创建分支 对话框\n                        \"Create a branch for this issue\": \"为该议题创建一个分支\",\n                        \"Branch name\": \"分支名称\",\n                        \"Repository destination\": \"仓库目的地\",\n                            \"Search for a repository\": \"搜索仓库\",\n                        \"Change branch source\": \"更改分支源\",\n                        \"What's next?\": \"下一步是什么？\",\n                            \"Checkout locally\": \"检出本地\",\n                            \"Open branch with GitHub Desktop\": \"使用 GitHub Desktop 打开分支\",\n                        \"Create branch\": \"创建分支\",\n\n                    // 在本地仓库检出对话框\n                        \"Checkout in your local repository\": \"在本地仓库检出\",\n                        \"Run the following commands in your local clone.\": \"在您的本地克隆中运行以下指令。\",\n\n                    // 项目\n                        \"Select projects\": \"选择项目\",\n\n                    // 进展\n                        \"Link a branch or pull request\": \"关联分支或拉取请求\",\n                        \"Select a repository to search for branches and pull requests or\": \"选择一个仓库来搜索分支和拉取请求或\",\n                        \"create a branch\": \"创建一分支\",\n                        \"Search pull requests\": \"搜索拉取请求\",\n                        \"Search for repositories\": \"搜索仓库\",\n                        \"Link a branch, pull request, or\": \"关联分支、拉取请求或\",\n                        \"Search for branches or pull requests\": \"搜索分支或拉取请求\",\n                        \"no pull request\": \"无拉取请求\",\n\n                \"Duplicate issue\": \"复制议题\",\n                    // [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中复制当前议题\"],\n                    \"Changing the repository may remove Milestone, Labels, Type, and Assignees from the duplicate issue.\": \"更改仓库可能会从重复议题中移除里程碑、标签、类型和分配人员。\",\n                    \"This issue is being duplicated across repositories. The following metadata might not be copied: Milestone, Labels.\": \"该议题正跨仓库中被复制创建。以下元数据可能不会被复制：里程碑、标签。\",\n                \"Pin issue\": \"置顶议题\",\n                    \"Up to 3 issues can be pinned and they will appear publicly at the top of the issues page\": \"最多可以置顶 3 个议题，它们将公开显示在议题页面的顶部\",\n                    \"Up to 3 issues can be pinned to the top of the issues page\": \"最多可以在议题页面置顶 3 个议题\",\n                    \"This will unpin this issue from the top of the issues page\": \"将从议题页面取消置顶该议题\",\n                    // 顶部提醒\n                    \"The issue has been pinned.\": \"该议题已置顶。\",\n                \"Unpin issue\": \"取消置顶\",\n                    \"Up to 3 issues can be pinned and they will appear at the top of the issues page\": \"最多可以置顶 3 个议题，它们将显示在议题页面的顶部\",\n                    \"3/3 issues already pinned. Unpin an issue to pin this one.\": \"已有3/3个议题被置顶。请先取消置顶其中一个议题，才能置顶当前议题。\",\n                    // 顶部提醒\n                    \"The issue has been unpinned.\": \"该议题已取消置顶。\",\n                \"Transfer issue\": \"转移议题\",\n                    // 转移议题 对话框\n                        \"Transfer this issue\": \"转移议题\",\n                            \"This does not scrub any issue content. Content such as text references to other issues, pull requests, projects and teams will still appear in the description or comments. Labels will be transferred.\": \"该操作不会清除任何议题内容。对其它议题、拉取请求、项目和团队的文本引用仍会保留在描述或评论中。标签将会被转移。\",\n                            \"Repository projects assigned to this issue will not transfer to the new location\": \"分配给此议题的仓库项目不会转移到新位置\",\n                        \"Choose a repository\": \"选择仓库\",\n                        \"Find a repository\": \"搜索仓库\",\n                        \"Warning!\": \"警告！\",\n                            \"Transferring an issue does not scrub any issue content. Content such as text references to other issues, pull requests, projects, teams will remain in this issue's descriptions and comments.\": \"转移议题不会清除任何议题内容。诸如对其他议题、拉取请求、项目、团队的文本引用等内容将保留在此议题的描述和评论中。\",\n                            \"Assignees, labels and milestones will be transferred if they are present in the target repository.\": \"如果目标仓库中存在受让人、标签和里程碑，它们将被转移。\",\n                \"Convert to discussion\": \"转为讨论\",\n                    // 转换议题为讨论 对话框\n                    \"Convert issue to a discussion\": \"转换议题为讨论\",\n                        \"Are you sure you want to convert this issue to a discussion?\": \"您确定要将议题转换为讨论吗？\",\n                        \"What happens when an issue is converted into a discussion:\": \"将议题转化为讨论时，会发生什么：\",\n                        \"Issue will be closed and locked\": \"议题将被关闭并锁定\",\n                        \"Title, description, and author will be the same as the issue\": \"标题、描述和作者将与议题相同\",\n                        \"All comments and reactions will be the same as the issue\": \"所有评论和反应将与议题相同\",\n                        \"Category for new discussion\": \"新讨论的类别\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"问与答\",\n                            \"Show and tell\": \"展示与讲述\",\n                        \"I understand, convert this issue\": \"我明白了，依然转化该议题\",\n                \"Delete issue\": \"删除议题\",\n                    \"Delete issue?\": \"删除议题？\",\n                    \"Are you sure you want to delete this issue?\": \"您确定要删除此议题吗？\",\n                    \"This cannot be undone\": \"这不能被撤消\",\n                    \"Only adminstrators can delete issues\": \"只有管理员可以删除议题\",\n                    \"Deletion will remove the issue from search and previous references will point to a placeholder\": \"删除将会从搜索中删除议题，以前的引用将指向一个占位符\",\n                    \"Delete this issue\": \"删除议题\",\n                    \"Deleting issue…\": \"议题删除中…\",\n                    // 顶部提醒\n                    \"The issue was successfully deleted.\": \"该议题已成功删除。\",\n\n                \"Participants\": \"参与者\",\n                    \"No participants\": \"尚无参与者\",\n\n            // 新版议题页面\n            \"remaining\": \"剩余\",\n            \"items\": \"项\",\n            \"Load more\": \"载入更多\",\n\n            \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定并限制与协作者对话。\",\n            \"This issue has been deleted.\": \"该议题已被删除。\",\n            \"deleted this from\": \"删除了这个，从\",\n\n            \"Reference in a new issue\": \"在新议题中提及\",\n\n            // 评论框\n            \"edited by\": \"编辑者\",\n            \"Hidden as\": \"隐藏因\",\n                \"abuse\": \"滥用\",\n                \"show comment\": \"显示评论\",\n                \"hide comment\": \"隐藏评论\",\n            \"Edits\": \"编辑\",\n                \"Most recent\": \"最近\",\n                \"Viewing edit\": \"查看编辑\",\n                \"Delete revision\": \"删除修订\",\n            \"Reopen Issue\": \"重新打开议题\",\n                \"You do not have permissions to reopen this issue\": \"您没有权限重新打开此议题\",\n            // 评论删除对话框\n                \"Delete comment\": \"删除评论\",\n                \"Are you sure you'd like to delete this comment?\": \"您确定要删除这条评论吗？\",\n            // 关闭议题\n                \"You do not have permissions to close this issue\": \"您没有权限关闭此议题\",\n            \"Comment can not be empty\": \"评论不能为空\",\n            \"Add files\": \"添加文件\", // 小屏模式\n\n        // 议题标签管理 /<user-name>/<repo-name>/issues/labels\n        // 仓库 --> 标签页面 /<user-name>/<repo-name>/labels\n            \"Labels\": \"标签\",\n            \"Milestones\": \"里程碑\",\n            \"Search all labels\": \"搜索所有标签\",\n\n            \"labels\": \"标签\",\n\n            \"New label\": \"新建标签\",\n                \"Label preview\": \"标签预览\",\n                \"Label name\": \"标签名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可选）\",\n                \"Color\": \"颜色\",\n                    \"Get a new color\": \"获得新颜色\",\n                    \"Choose from default colors:\": \"从默认颜色中选择：\",\n                \"Create label\": \"创建标签\",\n\n            \"Sort\": \"排序\",\n                \"Alphabetically\": \"按字母顺序\",\n                \"Reverse alphabetically\": \"按字母倒序\",\n                \"Most issues\": \"最多的议题\",\n                \"Fewest issues\": \"最少的议题\",\n\n            // 标签\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n            // [/open issues? and pull requests?/, \"个打开的议题和拉取请求\"], // 标签页面\n            // [/open issues? or pull requests?/, \"个打开的议题或拉取请求\"], // 标签页面\n\n            \"Convert to discussions\": \"转为讨论\",\n                // 转换议题为讨论 对话框\n                \"Convert issue to discussion\": \"转换议题为讨论\",\n                \"Convert issues to discussions\": \"转换议题为讨论\",\n                    // [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您确定要将带有以下标签的 $1 条议题转换为讨论吗？\"],\n                    // \"What happens when an issue is converted into a discussion:\": \"将议题转化为讨论时，会发生什么：\",\n                    \"Issue will be locked\": \"议题将被锁定\",\n                    // \"Title, description, and author will be the same as the issue\": \"标题、描述和作者将与议题相同\",\n                    \"Existing links will redirect to the new discussion\": \"现有链接将重定向至新讨论\",\n                    // \"All comments and reactions will be the same as the issue\": \"所有评论和反应将与议题相同\",\n                    \"Discussions do not have tasklists\": \"讨论没有任务列表\",\n                    \"Discussions do not have assignees\": \"讨论没有受理人\",\n                    \"Discussions cannot be added to projects\": \"讨论无法添加到项目\",\n                    \"Discussions do not have milestones\": \"讨论没有里程碑\",\n                    \"You must choose a category for the discussion to belong to. You will be able to change this after the conversion is complete.\": \"您必须为讨论选择一个所属类别。转换完成后，您可以更改类别。\",\n                    \"Choose a category\": \"选择类别\",\n                        \"Announcements\": \"公告\",\n                        \"General\": \"通常\",\n                        \"Ideas\": \"想法\",\n                        \"Polls\": \"投票\",\n                        \"Q&A\": \"问与答\",\n                        \"Show and tell\": \"展示与讲述\",\n                    \"I understand, convert issue to discussion\": \"我明白了，依然将议题转换为讨论\",\n                    \"I understand, convert issues to discussions\": \"我明白了，依然将议题转换为讨论\",\n                    \"Future issues with this label will not be automatically converted into discussions.\": \"今后带有此标签的议题不会自动转换为讨论。\",\n\n        // 添加/编辑议题模板 /<user-name>/<repo-name>/issues/templates/edit\n            \"Propose changes\": \"提出更改\",\n            \"Add template:\": \"添加模板：\",\n            \"select\": \"选择\",\n            \"Bug report\": \"错误报告\",\n                \"Standard bug report template\": \"标准错误报告模板\",\n                \"Create a report to help us improve\": \"创建报告以帮助我们改进\",\n            \"Feature request\": \"功能要求\",\n                \"Standard feature request template\": \"标准功能请求模板\",\n                \"Suggest an idea for this project\": \"为这个项目提出想法\",\n            \"Custom template\": \"自定义模板\",\n                \"Blank template for other issue types\": \"其他议题类型的空白模板\",\n                \"Custom issue template\": \"自定义议题模板\",\n                \"Describe this issue template's purpose here.\": \"在此处描述此议题模板的用途。\",\n\n            \"Preview and edit\": \"预览和编辑\",\n            \"Close preview\": \"关闭预览\",\n\n            \"Template name\": \"模板名称\",\n            \"This file lives in\": \"该文件位于\",\n            \"Template content\": \"模板内容\",\n                \"Styling with Markdown is supported\": \"支持 Markdown 格式\",\n            \"Optional additional items\": \"可选附加项目\",\n            \"Issue default title\": \"议题默认标题\",\n            \"This will be suggested as the issue title\": \"建议作为议题标题\",\n                \"Add a placeholder for issue title, ex. [BUG]\": \"设置默认议题标题，例如：[BUG]\",\n\n            \"Commit changes\": \"提交更改\",\n                \"Commit message\": \"提交信息\",\n                \"Extended commit message\": \"扩展描述\",\n                    \"Add an optional extended description\": \"添加描述... (可选)\",\n                \"Commit directly to the\": \"提交到\",\n                \"branch.\": \"分支。\",\n\n                \"Some rules will be bypassed by committing directly\": \"直接提交可以绕过一些规则\",\n                \"Bypass rules and commit changes\": \"绕过规则并提交更改\",\n\n                \"Create a\": \"创建\",\n                \"new branch\": \"新分支\",\n                \"for this commit and start a pull request.\": \"为这个提交，并且发起一个拉取请求。\",\n\n        // Copilot 浮窗 独有词条\n            \"Ask about the issue:\": \"讨论此议题：\",\n\n        // 底部提示栏（未登录\n        \"to join this conversation on GitHub.\": \"加入 GitHub 上的这个讨论。\",\n            \"Already have an account?\": \"已经有账户？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Want to contribute to ([^ ]+)\\?/, \"想为 $1 做贡献？\"],\n        [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 审查请求\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/(#\\d+) by/, \"$1 打开者\"],\n        [/(\\d+) linked pull requests?/, \"链接 $1 个拉取请求\"],\n        [/([\\d,]+) linked issues?/, \"$1 个关联议题\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次为 $1 做贡献？\"],\n\n        // 具体某条议题 /<user-name>/<repo-name>/issues/<id>\n        [/· ([\\d,]+) comments?/, \"• $1 条评论\"],\n        [/([\\d,]+) participants?/, \"$1 位参与者\"],\n        [/(\\d+) similar comments?/, \"$1 条类似评论\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/added a commit to ([^ ]+) that referenced this issue/, \"为 $1 添加了引用这个议题的提交\"],\n        [/Only people who can see ([^ ]+) will see this reference./, \"只有能看到 $1 的人才能看到这个参考。\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/Edited (\\d+) times?/, \"已编辑 $1 次\"],\n        [/edited by ([^ ]+)/, \"由 $1 编辑\"],\n        [/This issue will close when (#?\\d+) is merged/, \"此议题将在 $1 合并时关闭\"],\n        [/Opened this issue \\(their first in ([^ ]+)\\)/, \"打开了这个议题（首次在 $1 发表）\"],\n        [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中复制当前议题\"],\n        [/added (\\d+) commits? that reference this issue/, \"添加 $1 个引用此议题的提交\"],\n        [/This issue will close once commit ([a-f0-9]{7}) is merged into the \\'([^ ]+)\\' branch./, \"此议题将在提交 $1 合并到 '$2' 分支后关闭。\"],\n\n        // 标签页面\n        [/open issues? and pull requests?/, \"个打开的议题和拉取请求\"],\n        [/open issues? or pull requests?/, \"个打开的议题或拉取请求\"],\n        [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您确定要将带有以下标签的 $1 条议题转换为讨论吗？\"],\n        [/(\\d+) labels/, \"$1 个标签\"],\n\n        // 子议题\n        [/Create new sub-issue in ([^ ]+)/, \"在 $1 中新建子议题\"],\n        [/(\\d+) of (\\d+)/, \"$1 / $2\"],\n        [/Filter contains (\\d+) issues?\\:/, \"筛选包含 $1 个议题：\"],\n\n        // 新版议题\n        [/(.+) will be between (.+) and (.+)./, \"“$1” 将在 “$2” 和 “$3” 之间。\"],\n        [/(.+) will not be moved./, \"“$1” 将不会被移动。\"],\n        [/(.+) will be first item in the list./, \"“$1” 将移至最前。\"],\n        [/(.+) will be last item in the list./, \"“$1” 将移至最后。\"],\n        [/of (\\d+) selected/, \"/ $1 选中\"],\n        [/(\\d+\\%) completed/, \"$1 完成\"],\n        [/Issue (#\\d+) created/, \"议题 $1 已创建\"],\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n        [/mentioned this in (\\d+) issues?/, \"在 $1 个议题中提及\"],\n        [/Create new issue in (.+)/, \"在 $1 新建议题\"],\n        [/Close as duplicate of (\\#\\d+)/, \"因同 $1 重复关闭\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New Issue\": \"创建议题\",\n        },\n        \"regexp\": [\n            [/Issues?/, \"议题\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/labels\"] = I18N[\"zh-CN\"][\"repository/issues\"];\n\nI18N[\"zh-CN\"][\"repository/pulls\"] = { // 仓库 - 拉取请求页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 仓库 --> 拉取请求 标签卡 /<user-name>/<repo-name>/pulls\n            // 欢迎信息\n            \"Welcome to pull requests!\": \"欢迎使用拉取请求！\",\n            \"Pull requests help you collaborate on code with other people. As pull requests are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"拉取请求可帮助您与其他人协作处理代码。创建拉取请求后，它们将出现在可搜索和可筛选的列表中。要开始，您应该\",\n            \"create a pull request\": \"创建拉取请求\",\n\n            // [/First time contributing to ([^ ]+)?/, \"首次为 $1 做贡献？\"], // /pulls\n            \"If you know how to fix an\": \"如果您知道如何修复一个\",\n            \"issue\": \"议题\",\n            \", consider opening a pull request for it.\": \"，可考虑为它打开一个拉取请求。\",\n            \"You can read this repository’s\": \"您可以阅读该仓库的\",\n            \"to learn how to open a good pull request.\": \"，去学习如何打开一个好的拉取请求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request.\": \"如果您想向这个仓库提交代码，请考虑打开一个拉取请求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request. You can read this repository’s\": \"如果您想向这个仓库提交代码，请考虑打开一个拉取请求。您可以阅读该仓库的\",\n\n            \"Label issues and pull requests for new contributors\": \"标记新贡献者的议题和拉取请求\",\n            \"Now, GitHub will help potential first-time contributors\": \"现在，GitHub 将帮助潜在的首次贡献者\",\n            \"discover issues\": \"探索议题\",\n            \"labeled with\": \"标记为\",\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"仅对该仓库不在提示\",\n                \"Dismiss for all repositories\": \"对所有仓库均不在提示\",\n\n            \"New pull request\": \"发起拉取请求\",\n\n            \"Reviews\": \"审查\",\n                // 筛选工作条\n                \"Filter by reviews\": \"按审查筛选\",\n                \"No reviews\": \"未经审查\",\n                // \"Review required\": \"需要审查\",\n                \"Approved review\": \"已批准的审查\",\n                \"Changes requested\": \"已请求更改\",\n                \"Reviewed by you\": \"由您审查\",\n                \"Not reviewed by you\": \"您未审查\",\n                \"Awaiting review from you\": \"等待您审查\",\n                \"Awaiting review from you or your team\": \"等待您或您的团队的审查\",\n                \"Awaiting review from you specifically\": \"特别等待您审查\",\n\n                // 筛选结果\n                \"There aren’t any open pull requests.\": \"暂无拉取请求。\",\n\n                \"You commented on and opened this pull request\": \"您打开了此拉取请求并发表了评论\",\n                \"You were mentioned on and commented on this pull request\": \"您被提及并对此拉取请求发表了评论\",\n                \"You commented on this pull request\": \"您对此拉取请求发表了评论\",\n                \"You opened this pull request\": \"您打开了此拉取请求\",\n\n                \"Suggested change\": \"建议更改\",\n\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n\n        [/(\\d+) reviews? requesting changes?/, \"$1 个请求审查更改\"],\n        [/(\\d+) linked issues?/, \"链接 $1 个议题\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/(#\\d+) by/, \"$1 打开者\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/(\\d+) Total/, \"$1 总计\"],\n        [/(\\d+) review requesting changes/, \"$1 个要求修改的审查\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次为 $1 做贡献？\"],\n        [/Suggested change/, \"建议更改\"],\n        [/Ears burning\\? Get\\@([^ ]+) mentions with/, \"耳朵痒吗？使用 @$1 查看提及：\"], // 专业提示\n        [/Notify someone on an issue with a mention, like: \\@([^ ]+)/, \"在议题中通过 @ 提及通知某人，例如：@$1\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pull requests/, \"拉取请求\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/pull\"] = { // 仓库 - 某个拉取请求页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 某条具体的拉取请求 /<user-name>/<repo-name>/pull/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 顶部提醒\n                \"The head ref may contain hidden characters:\": \"头部引用可能包含隐藏字符：\",\n                \"Your review was submitted on a merged pull request.\": \"您的审查已提交，一个合并的拉取请求。\",\n                \"Marked pull request as ready for review.\": \"标记拉取请求为可审核。\",\n                \"Your review was submitted successfully.\": \"您的审查已成功提交。\",\n                \"requested your review on this pull request.\": \"请求审核此拉取请求。\",\n                // Dependabot 打开的拉取请求\n                    \"Merging this pull request will resolve\": \"合并此拉取请求将解决\", // 后面警报数走正则\n                    //\"on rollup including a\": \"，包括 1 个\",\n                    \"severity alert.\": \"风险警报。\",\n\n            // 快捷键\n                \"Edit pull request title\": \"编辑拉取请求标题\",\n                \"Edit pull request body\": \"编辑拉取请求主体\",\n\n            // 编辑 -> 选择基础库\n            \"Choose a base branch\": \"选择基础分支\",\n            \"base:\": \"基础：\",\n                // 更改基础分支对话框\n                \"Find a branch\": \"搜索分支\",\n                \"Are you sure you want to change the base?\": \"您确定要更改基础分支吗？\",\n                \"Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.\": \"旧的基础分支的一些提交可能会从时间线上删除，而旧的审查意见可能会变得过时。\",\n                \"Change base\": \"更改基础分支\",\n\n            \"View status\": \"查看状态\",\n            \"Able to merge\": \"可以合并\",\n            \"Ready to merge\": \"准备合并\",\n                \"Merge status\": \"合并状态\",\n                \"What's new\": \"新内容\",\n                \"Close merge status\": \"关闭\",\n\n            // 代码 下拉菜单\n                \"Code 55% faster with AI pair programming.\": \"与 AI 一起编程，写代码速度提高55%。\",\n                    \"Start my free trial\": \"开始我的免费试用\",\n                    \"Don't show again\": \"不再显示\",\n\n                \"Local\": \"本地\",\n                    \"Checkout with GitHub CLI\": \"使用 GitHub CLI 检出\",\n                    \"Work fast with our official CLI.\": \"使用我们的官方 CLI 快速工作。\",\n                    \"Checkout with GitHub Desktop\": \"使用 GitHub Desktop 检出\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 启动中\",\n                        \"If nothing happens,\": \"如果没有响应\",\n                            \"download GitHub Desktop\": \"下载 GitHub Desktop\",\n                            \"and try again.\": \"并重试\",\n\n                // 代码空间\n                    // 维护提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n                        \"this announcement\": \"此公告\",\n                    \"This pull request must be reopened to create new codespaces on it.\": \"必须重新打开此拉取请求才能在其上创建新的代码空间。\",\n                    \"Your workspaces in the cloud\": \"您在云端的工作空间\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Codespace repository configuration\": \"代码空间仓库配置\",\n                        \"New with options...\": \"新建（选项）…\",\n                        \"Configure dev container\": \"配置开发容器\",\n                        \"Set up prebuilds\": \"设置预构建\",\n                        \"Manage codespaces\": \"管理代码空间\",\n                        \"Share a deep link\": \"分享深度链接\",\n                            \"Share codespace configuration\": \"共享代码空间配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"选择共享时要包含此配置中的哪些设置\",\n                            \"Quick start\": \"快速开始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自动创建或使用最新匹配的代码空间。\",\n                            \"Read more about creating a link.\": \"阅读有关创建链接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下代码片段在您自己的页面或 README 中嵌入此配置的 “在 Codespaces 中打开” 按钮。\",\n                        \"What are codespaces?\": \"什么是代码空间？\",\n                    \"No codespaces\": \"尚无代码空间\",\n                    \"You don't have any codespaces with this repository checked out\": \"您没有检出此仓库的任何代码空间\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"Learn more about codespaces...\": \"了解更多关于代码空间的信息…\",\n\n                    \"On current branch\": \"在当前分支\",\n                        \"No codespaces on current branch\": \"当前分支上没有代码空间\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探险\",\n                    \"Open miniature adventure in web\": \"在网络中打开迷你探险\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打开…\",\n                            \"Open in browser\": \"在浏览器中打开\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"将代码空间显示名称更改为…\",\n                        \"Export changes to a branch\": \"将更改导出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                            \"Create branch\": \"创建分支\",\n                        \"Change machine type\": \"更改机器类型\",\n                            \"Change codespace machine type\": \"更改代码空间机器类型\",\n                            \"Machine type\": \"机器类型\",\n                                \"2-core\": \"双核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"联系我们团队\",\n                            \"to enable 32-core or GPU machines.\": \"启用 32 核或 GPU 机器。\",\n                            \"Update codespace\": \"升级代码空间\",\n                        \"Stop codespace\": \"停止代码空间\",\n                    \"Codespace configuration\": \"代码空间设置\",\n                    \"No changes\": \"未更改\",\n\n                    \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n                    // 被拉黑\n                        \"Repository access limited\": \"仓库访问受限\",\n                            \"You do not have access to push to this repository and its owner has disabled forking.\": \"您无权推送到此仓库，其所有者已禁用了复刻。\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n\n                // Copilot\n                    \"Describe a change you'd like to make to this pull request, such as adding tests or documentation...\": \"描述您想对此拉取请求进行的更改，例如添加测试或文档…\",\n                    \"Start task\": \"开始任务\",\n                    \"You can ask Copilot to make changes to this pull request by mentioning @copilot in a comment.\": \"您可以在评论中提及 @copilot，让 Copilot 对此拉取请求进行更改。\",\n                    \"Copilot generated this review using guidance from\": \"Copilot 生成此次审查，使用\",\n                        \"repository custom instructions\": \"仓库自定义指令\",\n\n            // 自动修复漏洞 提示\n                \"This automated pull request fixes a\": \"这个自动拉取请求将修复了一个\",\n                \"security vulnerability\": \"安全漏洞\",\n                \"Only users with access to Dependabot alerts can see this message.\": \"只有有权访问 Dependabot 警报的用户才能看到此消息。\",\n                \"Learn more about Dependabot security updates\": \"了解更多关于 Dependabot 安全更新的信息\",\n                \"opt out\": \"选择退出\",\n            // 顶部提醒\n                \"Opted out of Dependabot security updates.\": \"选择退出 Dependabot 安全更新。\",\n\n            // Dependabot 警报 拉取请求 提示\n                \"Merging this pull request will resolve a\": \"合并此拉取请求将解决\",\n                \"high\": \"高\",\n                \"severity\": \"严重性\",\n                    \"Filter alerts by 'high' severity.\": \"按“高”严重性过滤警报。\", // BUG: 不生效\n                \"Dependabot alert\": \"Dependabot 警报\",\n                \"on\": \"：\",\n                // 首次弹窗\n                    \"Your first automated security update\": \"您的第一个自动安全更新\",\n                        \"Dependabot security updates keep your projects secure and up-to-date.\": \"Dependabot 安全更新使您的项目安全且最新。\",\n                        \"You can opt out at any time in\": \"您可以在任何时候选择退出在\",\n                        \"this repository’s settings\": \"仓库设置\",\n                        \"Got it!\": \"我知道了\",\n\n                // 合并后顶部提醒\n                    // [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"该请求解决了 $1 的 Dependabot 警报问题。\"],\n\n            // 状态词\n            // [/merged (\\d+) commits? into/, \"将 4 个提交合并到\"],\n            \"into\": \"到\",\n            // \"merged\": \"已合并\",\n            \"wants to merge\": \"希望合并\",\n            \"commit into\": \"个提交到\",\n            \"commits into\": \"个提交到\",\n            \"from\": \"来自\",\n            \"closed this\": \"关闭了这个\",\n            \"reopened this\": \"重新打开了这个\",\n            \"added a commit that referenced this pull request\": \"添加了引用此拉取请求的提交\",\n            \"removed the request for review from\": \"取消请求审查\",\n            \"pushed a commit that referenced this pull request\": \"推送了一个引用此拉取请求的提交\",\n            \"suggested changes\": \"建议更改\",\n            \"deleted the branch\": \"删除了分支\",\n            \"deleted a comment from\": \"删除了评论从\",\n            // Copilot 专属状态词\n            \"started work\": \"开工\",\n            \"on behalf of\": \"代表\",\n                \"View session\": \"查看\",\n            \"finished work\": \"完工\",\n            \"finished work on behalf of\": \"完工，代表\",\n            \"stopped work on behalf of\": \"停工，代表\",\n                \"due to an error\": \"因为错误\",\n\n            // 标签栏\n            \"Conversation\": \"讨论\",\n            // 提交\n                \"No new commits\": \"无新提交\", // 下方句子走正则\n                \"was force-pushed and no longer has any new commits. Pushing new commits will allow the pull request to be re-opened.\": \"分支已强制推送，并且不再包含任何新的提交。推送新的提交将允许重新打开拉取请求。\",\n            \"Checks\": \"检查\",\n                \"Search logs\": \"搜索日志\",\n                \"Pushing new commits will allow the pull request to be re-opened.\": \"推送新的提交将允许重新打开拉取请求。\", // 上面的句子走正则\n            \"Files changed\": \"更改的文件\",\n                \"No changes to show.\": \"无更改显示。\", // 删除复刻仓库的提交时出现\n                \"This commit has no content.\": \"该提交无内容。\", // 同上\n              \"authored\": \"撰写于\",\n\n            // 右侧栏 补充\n                // 审查者\n                \"Reviewers whose approvals may not affect merge requirements\": \"审查者的批准可能不影响合并要求。\",\n\n                \"Allow edits by maintainers\": \"允许维护者进行编辑\",\n                    \"Allowing edits by maintainers\": \"允许维护者进行编辑\",\n                    \"If checked, users with write access to\": \"若勾选此项，拥有对\",\n                    \"can add new commits to\": \"具有写入权限的用户可以在您的\",\n                    \"branch.\": \"分支上添加新的提交。\",\n                    \"You can always change this setting later.\": \"您可以随时修改此设置。\",\n                    \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通过授予写入权限，维护者可能会编辑您仓库的工作流程以揭示机密值，并获取对其他分支的访问权限。\",\n                    \"Got it\": \"知道了\",\n                    \"If checked,\": \"如果选中，\",\n                    // [/users with write access to ([^ ]+) can add new commits/, \"对 $1 具有写权限的用户可以添加新的提交\"], // 具体拉取请求\n                    \"to your\": \"到您的\",\n                    \"branch. You can always change this setting later.\": \"分支。您以后可以随时更改此设置。\",\n                \"Allow edits and access to secrets by maintainers\": \"允许维护者编辑和访问机密\",\n                    \"Maintainers could potentially edit this repository's workflows to reveal values of secrets and gain access to other branches.\": \"维护者有可能编辑这个仓库的工作流程来获取机密值，并获得对其他分支的访问。\",\n\n                \"Maintainers are allowed to edit this pull request.\": \"允许维护者编辑此拉取请求。\",\n\n                // 进展\n                    \"In progress\": \"进行中\",\n                    \"started\": \"开始于\",\n                    \"Copilot is done\": \"Copilot 已完成\",\n                    \"Copilot has failed\": \"Copilot 已失败\",\n                    \"completed after\": \"总耗时\", // 示例：总耗时 11分45秒\n                    \"failed after\": \"失败于\",\n\n            // 讨论标签卡 主页\n            \"Refresh\": \"刷新\",\n\n            \"marked this pull request as draft\": \"将此拉取请求标记为草案\",\n            \"First-time contributor\": \"首次贡献者\",\n            // [/This user is a first-time contributor to the ([^ ]+) repository./, \"该用户是第一次为 $1 仓库做贡献。\"]\n            \"View changes\": \"查看更改\",\n            \"Outdated\": \"陈旧的\",\n            \"Resolve conversation\": \"转为已解决对话\",\n                \"Resolving conversation…\": \"正在转为已解决对话……\",\n            \"Unresolve conversation\": \"转为未解决对话\",\n                \"Unresolving conversation…\": \"正在转为未解决对话……\",\n                \"marked this conversation as resolved.\": \"已将此对话标记为已解决。\",\n            \"Changes requested\": \"更改请求\",\n            \"Change requested\": \"更改请求\",\n            \"Show resolved\": \"显示已解决\",\n            \"Hide resolved\": \"隐藏已解决\",\n            \"Reviews\": \"审查\",\n            \"Show all reviewers\": \"显示所有审查者\",\n            \"Hide all reviewers\": \"隐藏所有审查者\",\n            \"New changes since you last viewed\": \"自您上次查看以来的新变化\",\n            \"mentioned this pull request\": \"提及这个拉取请求\",\n            \"linked an issue\": \"链接议题\",\n            \"that may be\": \"将在该拉取请求合并时\",\n            \"closed\": \"关闭\",  // 浮动小字走正则\n            \"by this pull request\": \" \",\n            \"dismissed\": \"驳回\",\n            \"\\’s\": \" 的\",\n            \"stale review\": \"陈旧审查\",\n            \"via\": \"通过\",\n            \"force-pushed\": \"强制推送\",\n            \"enabled auto-merge (squash)\": \"启用自动合并（压缩）\",\n            \"the\": \" \",\n            \"branch from\": \"分支从\",\n            \"and others\": \"和其他成员\",\n            \"previously\": \"预先\",\n            \"approved these changes\": \"批准这些更改\",\n            \"previously approved these changes\": \"预先批准这些更改\",\n                \"See review\": \"查看审查\",\n                \"Dismiss review\": \"驳回审查\",\n            \"started a review\": \"开始审查\",\n                \"View reviewed changes\": \"查看已审核的更改\",\n            \"self-requested a review\": \"自我要求审查\",\n            \"self-assigned this\": \"已自我审查\",\n            \"unassign me\": \"取消自我分配\",\n            \"marked this pull request as ready for review\": \"已将此拉取请求标记为可审核\",\n            \"merged commit\": \"合并提交\",\n            \"left a comment\": \"发表评论\",\n            \"Add more commits by pushing to the\": \"添加更多提交，通过推送到\",\n            \"branch on\": \"分支在\",\n            \"requested review from\": \"请求审查\",\n                \"a team\": \"团队\",\n                \"as a\": \"作为\",\n                \"code owner\": \"代码所有者\",\n            \"started reviewing\": \"开始审查\",\n            \"finished reviewing on behalf of\": \"完成审查，代表\",\n            \"This pull request was\": \"此拉取请求已\",\n            \"Compare\": \"比较\",\n            \"deleted the\": \"删除\",\n            \"branch\": \"分支\",\n            \"added\": \"添加\",\n            \"requested changes\": \"要求更改\",\n            \"changed the title\": \"修改了标题\",\n            \"changed the base branch from\": \"更改基础分支从\",\n            \"added the\": \"添加\",\n            \"label\": \"标签\",\n            \"closed this\": \"已关闭\",\n            \"reopened this\": \"已重新打开\",\n            \"closed this by deleting the head repository\": \"已关闭因仓库已删除\",\n            \"Requested changes\": \"请求更改\",\n            \"restored the\": \"恢复\",\n            \"unlocked this conversation\": \"解锁此对话\",\n            \"added this to the\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"review requested due to automatic review settings\": \"因设置自动审查\",\n\n            //\n            \"This branch has not been deployed\": \"该分支尚未部署\",\n            \"No deployments\": \"未部署\",\n\n            // 拉取请求状态\n            \"Review requested\": \"请求审查\",\n            \"New changes require approval from someone other than the last pusher.\": \"新更改需要最后推送者以外的其他人批准。\",\n            \"Review has been requested on this pull request. It is not required to merge.\": \"此拉取请求已请求进行审查。这不是合并的必要条件。\",\n            \"Learn more about requesting a pull request review.\": \"了解更多关于申请拉取请求审核的信息。\",\n            // [/(\\d+) pending reviewers?/, \"$1 名待审者\"],\n            \"was requested for review\": \"被请求审查\",\n\n            \"Changes reviewed\": \"更改已审查\",\n                \"No applicable reviews submitted by reviewers with write access.\": \"没有具有写入权限的审查者提交适用的审查意见。\",\n\n            // 已请求更改\n                // [/(\\d+) reviews? requesting changes by reviewers with write access./, \"$1 条评论请求更改由具有写入权限的审查者进行更改。\"], // 拉取请求\n\n            \"All conversations are resolved\": \"所有对话均已解决\",\n                // [/(\\d+) resolved conversations?/, \"2 条对话已解决\"], // 拉取请求\n\n            \"No unresolved conversations\": \"没有未解决的对话\",\n                \"There aren't yet any conversations on this pull request.\": \"此拉取请求尚无任何对话。\",\n\n            \"This pull request is still a work in progress\": \"此拉取请求仍在进行中\",\n                \"Ready for review\": \"准备审核\",\n                \"Draft pull requests cannot be merged.\": \"拉取请求草案不能合并。\",\n            \"This pull request can be automatically merged by project collaborators\": \"此拉取请求可以由项目协作者自动合并\",\n                \"Only those with\": \"只有对此仓库具有\",\n                \"write access\": \"写入访问权限\",\n                \"to this repository can merge pull requests.\": \"的才可合并拉取请求。\",\n                \"to this repository can mark a draft pull request as ready for review.\": \"的才可将拉取请求草案标记为可供审查。\",\n\n            // \"Review required\": \"需要审查\", // 拉取请求 页面状态词\n                \"Add your review\": \"添加您的评论\",\n                // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n            \"Code owner review required\": \"需要代码所有者审核\",\n                \"was requested for review as a code owner\": \"要求以代码所有者身份进行审查\",\n            \"Conversation resolution required\": \"需要解决对话\",\n                \"A conversation must be resolved before this pull request can be merged.\": \"在合并此拉取请求前，必须先解决对话。\",\n            \"Learn more about pull request reviews.\": \"了解更多关于拉取请求审核的信息。\",\n            \"Changes approved\": \"变更已获批准\",\n            \"Approval not required\": \"不需要批准\",\n            \"This pull request may be merged without approvals.\": \"可以在没有批准的情况下合并此拉取请求。\",\n            // [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 个批准的审查由具有写入权限的审查者进行审查。\"],\n            // [/(\\d+) approvals?/, \"$1 项批准\"],\n            \"Some checks haven’t completed yet\": \"有些检查还没有完成\",\n            // [/1 in progress check/, \"$1个正在进行的检查\"],\n            \"Some checks were not successful\": \"有些检查不成功\",\n            // [/1 skipped, 4 successful, and 2 failing checks/, \"$1 个跳过, $2 个成功, $3 失败\"],\n            // [/1 skipped, 4 successful, and 2 expected checks/, \"$1 个跳过, $2 个成功, $3 个预先检查\"],\n            \"All checks have passed\": \"所有检查均已通过\",\n            \"All checks have failed\": \"所有检查均失败\",\n            // [/5 successful checks/, \"\"],\n            // [/6 checks passed/, \"\"],\n                \"Show all checks\": \"显示所有检查\",\n                \"Hide all checks\": \"隐藏所有检查\",\n                \"Details\": \"细节\",\n                \"Required\": \"必须\",\n                \"Checks settings\": \"检查设置\",\n                    \"Group by status\": \"按状态分组\",\n                    \"No grouping\": \"不分组\",\n            \"Unresolved conversations\": \"未解决的讨论\",\n                // [/(\\d+) conversations? must be resolved before merging./, \"合并之前必须解决 $1 个对话。\"],\n            \"No conflicts with base branch\": \"与基础分支没有冲突\",\n                \"Changes can be cleanly merged.\": \"更改可以被干净地合并。\",\n\n                \"Update branch options\": \"更新分支选项\",\n            \"Merging is blocked\": \"合并被阻止\",\n                \"Commits must have verified signatures.\": \"提交必须验证签名。\",\n                \"The base branch requires all conversations on code to be resolved.\": \"基础分支要求解决所有关于代码的对话。\",\n                \"The base branch requires all commits to be signed.\": \"基础分支要求所有提交都经过签名。\",\n                \"Learn more about signing commits.\": \"了解更多关于签名提交的信息。\",\n                \"View rules\": \"查看规则\",\n                // 无权提交\n                \"You're not authorized to push to this branch. Visit\": \"您没有权限推送到此分支。请访问\",\n                    \"for more information.\": \"获取更多信息。\",\n                // 新版合并界面\n                \"Merge is not an allowed merge method in this repository.\": \"合并不是此仓库允许的合并方法。\",\n                \"Pull request cannot be merged because it has a merge conflict.\": \"由于存在合并冲突，无法合并拉取请求。\",\n                \"User does not have push access to the repository.\": \"用户无权推送到此仓库。\",\n                \"You're not authorized to push to this branch. Visit https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches for more information.\": \"您无权推送到该分支。请访问 https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches 了解更多信息。\",\n\n                // 绕过规则合并\n                \"Merge without waiting for requirements to be met (bypass rules)\": \"无需等待满足要求即可合并（绕过规则）\",\n                \"Bypass rules and merge\": \"绕过规则合并\",\n                    \"Confirm bypass rules and merge\": \"确认绕过规则合并\",\n                \"Bypass rules and merge (squash)\": \"绕过规则合并（压缩）\",\n                    \"Confirm bypass rules and merge (squash)\": \"确认绕过规则合并（压缩）\",\n                \"Bypass rules and merge (rebase)\": \"绕过规则合并（变基）\",\n                    \"This will rebase your changes and merge them into\": \"将更改变基合并到\",\n                    \"Confirm bypass rules and merge (rebase)\": \"确认绕过规则合并（变基）\",\n\n            \"Merging can be performed automatically once the requested changes are addressed.\": \"一旦请求的更改得到解决，合并就可以自动执行。\",\n            \"This branch is out-of-date with the base branch\": \"此分支相比基础分支已过时\",\n                \"Merge the latest changes from\": \"将\",\n                \"into this branch.\": \"的最新更改合并到此分支中。\",\n                    \"Update branch\": \"更新分支\",\n                        \"Update with merge commit\": \"使用合并提交更新\",\n                            \"The latest changes will be merged into this branch with a merge commit.\": \"最新的更改将通过合并提交合并到此分支中。\",\n                            \"The merge commit will be associated with your account.\": \"合并提交将与您的账户相关联。\",\n                        \"Update with rebase\": \"使用变基更新\",\n                            \"This branch cannot be rebased due to conflicts.\": \"由于冲突，此分支不能变基。\",\n                            \"This pull request will be rebased on top of the latest changes and then force pushed.\": \"此拉取请求将会在最新的更改之上进行变基，并且会使用强制推送的方式提交。\",\n                            \"This branch cannot be rebased due to conflicts\": \"由于冲突，无法对此分支执行变基操作。\",\n                // [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"将最新更改从 $1 分支合并到当前分支。该合并提交将与用户 $2 相关联。\"],\n\n            \"The base branch restricts merging to authorized users.\": \"基础分支合并仅限于授权用户。\",\n            \"Learn more about protected branches.\": \"了解更多关于受保护分支的信息。\",\n            // [/Merging can be performed automatically with (\\d+) approving review./, \"合并可以通过 $1 次批准审查自动执行。\"],\n            \"Merge without waiting for requirements to be met (bypass branch protections)\": \"合并而无需等待需求满足（绕过分支保护）。\",\n                \"Extended description\": \"扩展描述\",\n                \"Add an optional extended description…\": \"添加可选的扩展描述…\",\n                // [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"],\n            \"Checks awaiting conflict resolution\": \"等待冲突解决\",\n\n            // 合并失败提示\n                \"Merge attempt failed\": \"合并尝试失败\",\n                \"We couldn’t merge this pull request. Reload the page before trying again.\": \"我们无法合并此请求。重新加载页面后再试。\",\n\n            // [/(\\d+) workflow awaiting approval/, \"$1 个工作流等待批准\"],\n            \"First-time contributors need a maintainer to approve running workflows.\": \"首次贡献者需要维护者来批准正在运行的工作流。\",\n            \"The base branch does not accept merge commits. Alternate merge methods are preferred.\": \"基础分支不接受合并提交。其他合并方法是首选。\",\n            // [/The ([^ ]+) branch requires linear history/, \"$1 分支为要求线性历史记录\"],\n            \"Learn more about required linear history.\": \"了解更多关于要求线性历史记录的信息。\",\n\n            \"Checking for the ability to merge automatically...\": \"检测自动合并的能力…\",\n            \"Hang in there while we check the branch's status.\": \"请等待，我们正在检查该分支的状态\",\n\n            \"Required statuses must pass before merging\": \"合并前必须通过所需的状态\",\n            \"All required\": \"所有必需\",\n            \"statuses\": \"状态\",\n            \"and check runs on this pull request must run successfully to enable automatic merging.\": \"和检查运行在该拉取请求上必须成功运行，才能启用自动合并。\",\n\n            \"Continuous integration has not been set up\": \"尚未设置持续集成\",\n            \"several other apps\": \"其他一些应用\",\n            \"can be used to automatically catch bugs and enforce style.\": \"可用于自动捕获错误和强制执行样式。\",\n\n            \"This branch has no conflicts with the base branch\": \"该分支与基础分支没有冲突\",\n            \"No conflicts with base branch\": \"与基本分支无冲突\",\n                \"Merging can be performed automatically.\": \"可以自动地执行合并。\",\n                \"Changes can be cleanly merged.\": \"可以干净地合并更改。\",\n\n            \"This branch has no conflicts with the base branch when rebasing\": \"该分支基变时与基础分支没有冲突。\",\n                \"Rebase and merge can be performed automatically.\": \"可以自动执行变基和合并。\",\n\n                \"You’re not\": \"您无\",\n                \"authorized\": \"权限\",\n                \"to merge this pull request.\": \"合并此拉取请求。\",\n\n            \"Merge pull request\": \"合并拉取请求\",\n                \"Merging is blocked due to failing merge requirements\": \"由于未满足合并要求，合并已被阻止。\",\n            // 合并拉取请求 按钮下拉\n            \"Select merge method\": \"选择合并方式\",\n                \"Create a merge commit\": \"创建合并提交\",\n                    \"All commits from this branch will be added to the base branch via a merge commit.\": \"该分支的所有提交都将通过合并提交加入到基础分支中。\",\n                    \"Not enabled for this repository\": \"未为此仓库启用\",\n                \"Squash and merge\": \"压缩合并\",\n                    // [/The (\\d+) commits? from this branch will be added to the base branch./, \"该分支的 $1 个提交将合并到基本分支中。\"],\n                \"Rebase and merge\": \"变基合并\",\n                    // [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 个提交将变基合并到基础分支中。\"],\n                    \"Failed to load repo merge settings\": \"无法加载仓库合并设置\",\n\n            //确认合并 对话框\n                // 新版合并界面\n                \"Commit header\": \"提交标题\",\n                \"Commit message\": \"提交信息\",\n                \"This commit will be authored by\": \"此提交的作者是\",\n            \"Confirm merge\": \"确认合并\",\n            \"Confirm squash and merge\": \"确认压缩合并\",\n            \"Confirm rebase and merge\": \"确认变基合并\",\n            \"Merging…\": \"合并中…\",\n\n            \"You can also\": \"您也可以\",\n            \"open this in GitHub Desktop\": \"在 GitHub Desktop 中打开\",\n            \"or view\": \"，或查看\",\n            \"You can also merge this with the command line, view\": \"您也可以使用命令行合并，查看\",\n            \"command line instructions\": \"命令行指令\",\n            \"You can also merge this with the command line.\": \"您也可以使用命令行合并。\",\n            \"View command line instructions.\": \"查看命令行指令。\",\n\n            // \"Merged\": \"已合并\",\n            \"More actions\": \"更多操作\",\n            \"View details\": \"查看详情\",\n            \"Hide details\": \"隐藏详情\",\n            \"Revert\": \"还原\",\n                \"Create a new pull request to revert these changes\": \"创建一个新的拉取请求以恢复这些更改\",\n            \"Closed with unmerged commits\": \"已关闭的未合并的提交\",\n                \"This pull request is closed.\": \"此拉取请求已关闭。\",\n\n            \"Pull request successfully merged and closed\": \"拉取请求已成功合并并关闭\",\n                \"You're all set — the\": \"一切就绪\",\n                \"branch has been merged and deleted.\": \"分支已合并并删除。\",\n                \"You're all set — the branch has been merged.\": \"一切就绪 - 该分支已合并。\",\n            \"Delete branch\": \"删除分支\",\n            \"Restore branch\": \"恢复分支\",\n\n            \"Pull request closed\": \"拉取请求已关闭\",\n            \"This pull request is closed, but the\": \"此拉取请求已关闭，但是\",\n            \"branch has unmerged commits.\": \"分支具有未合并的提交。\",\n            \"branch has unmerged commits. You can delete this branch if you wish.\": \"分支具有未合并的提交。您可以根据需要删除此分支。\",\n            \"If you wish, you can also delete this fork of\": \"如果需要，还可以删除此复刻\",\n            \"If you wish, you can delete this fork of\": \"如果需要，可以删除此复刻\",\n            \"in the\": \"在\",\n            \"settings\": \"设置\",\n\n            // \"Only those with\": \"只有对此仓库具有\",\n            // \"write access\": \"写入访问权限\",\n            // \"to this repository can merge pull requests.\": \"的才可合并拉取请求。\",\n            \"You’re all set — the\": \"一切就绪 —\",\n            \"You’re all set—the\": \"一切就绪 —\",\n            \"branch can be safely deleted.\": \"分支可以被安全删除。\",\n            \"This branch has conflicts that must be resolved\": \"该分支存在冲突，必须解决\",\n                \"Resolve conflicts then push again. These conflicts are too complex to resolve in the web editor. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"解决冲突后再次推送。这些冲突过于复杂，无法在 Web 编辑器中解决。当该拉取请求存在合并冲突时，操作工作流将不会触发该拉取请求的活动。\",\n                \"These conflicts are too complex to resolve in the web editor.\": \"这些冲突过于复杂，无法在网页编辑器中解决。\",\n                \"You do not have permission to push to the head branch.\": \"您没有权限向主分支推送。\",\n                \"Use the command line\": \"使用命令行\",\n                \"to resolve conflicts before continuing.\": \"解决冲突后再继续。\",\n                \"or the command line to resolve conflicts before continuing. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"或通过命令行解决冲突。在此拉取请求仍存在合并冲突的情况下，操作工作流不会因该拉取请求的活动而触发。\",\n                \"or the command line to resolve conflicts before continuing.\": \"或通过命令行解决冲突后再继续。\",\n                \"Use the command line to resolve conflicts before continuing.\": \"使用命令行解决冲突后再继续。\",\n\n                \"Checkout via command line\": \"通过命令行检出\",\n                \"Checkout via the command line\": \"通过命令行检出\", // 新版合并界面\n                \"If the conflicts on this branch are too complex to resolve in the web editor, you can check it out via command line to resolve the conflicts.\": \"如果该分支上的冲突过于复杂，无法在 Web 编辑器中解决，您可以通过命令行检出来解决冲突。\",\n                \"If you do not want to use the merge button or an automatic merge cannot be performed, you can perform a manual merge on the command line. However, the following steps are not applicable if the base branch is protected.\": \"如果不想使用合并按钮或无法执行自动合并，可以在命令行上执行手动合并。但若基本分支受到保护，则不适用以下步骤。\", //新版合并界面\n                \"Step\": \"步骤\", // 新版合并界面\n                \"Step 1:\": \"第 1 步：\",\n                    \"From your project repository, check out a new branch and test the changes.\": \"从项目仓库中，检出新分支并测试更改。\",\n                    \"Clone the repository or update your local repository with the latest changes.\": \"克隆仓库或使用最新更改更新本地仓库。\",\n                \"Step 2:\": \"第 2 步：\",\n                    \"Merge the changes and update on GitHub.\": \"合并更改并在 GitHub 上更新。\",\n                    \"Switch to the head branch of the pull request.\": \"切换到拉取请求的头部分支。\",\n                \"Step 3:\": \"第 3 步：\",\n                    \"Merge the base branch into the head branch.\": \"将基础分支合并至头部分支。\",\n                \"Step 4:\": \"第 4 步：\",\n                    \"Fix the conflicts and commit the result.\": \"修复冲突并提交。\",\n                    \"See\": \"查阅\",\n                        \"Resolving a merge conflict using the command line\": \"使用命令行解决合并冲突\",\n                        \"for step-by-step instructions on resolving merge conflicts.\": \"的分步说明。\",\n                \"Step 5:\": \"第 5 步：\",\n                    \"Push the changes.\": \"推送更改。\",\n                // 新版合并界面 复制按钮\n                    \"Copy clone URL\": \"复制克隆链接\",\n                    \"Copy clone command\": \"复制克隆命令\",\n                    \"Copy checkout command\": \"复制切换命令\",\n                    \"Copy merge command\": \"复制合并命令\",\n                    \"Copy push command\": \"复制推送命令\",\n\n            \"Resolve conflicts\": \"解决冲突\",\n                \"Use the\": \"使用\",\n                \"web editor\": \"Web 编辑器\",\n                \"or the\": \"或\",\n                \"command line\": \"命令行\",\n                \"to resolve conflicts.\": \"来解决冲突。\",\n                \"These conflicts are too complex to resolve in the web editor\": \"这些冲突过于复杂，无法在网页编辑器中解决\",\n            \"Conflicting files\": \"冲突的文件:\",\n\n            \"Require approval from specific reviewers before merging\": \"合并前需要特定审查者的批准\",\n                \"Branch protection rules\": \"分支保护规则\",\n                \"Rulesets\": \"规则集\",\n                \"ensure specific people approve pull requests before they're merged.\": \"确保特定人员在合并之前批准拉取请求。\",\n            \"Add rule\": \"添加规则\",\n            // [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"确保特定的人或团队在拉取请求被合并到您的 $1 分支之前批准它们。\"], // 合并拉取请求\n\n            // [/(\\d+) workflows? awaiting approval/, \"$1 个工作流程等待批准\"],\n            \"This workflow requires approval from a maintainer.\": \"此工作流程需要维护者批准。\",\n            \"Learn more about approving workflows.\": \"了解更多关于批准工作流程的信息。\",\n            \"Approve and run\": \"批准并运行\",\n            \"Approve and run workflows\": \"批准并运行工作流程\",\n            \"Approve workflows to run\": \"批准运行工作流程\",\n\n            // 状态词\n            \"reviewed\": \"审查\",\n            \"requested a review from\": \"请求审查\",\n            \"Reply...\": \"回复…\",\n\n            // 代码审查回复\n            \"Suggestions cannot be applied on outdated comments.\": \"建议不要应用于过时的评论。\",\n            \"Suggested change\": \"更改建议\",\n            \"This code change can be committed by users with write permissions.\": \"具有写入权限的用户可以提交此代码更改。\",\n\n            \"This branch was successfully deployed\": \"该分支已成功部署\",\n            \"Show environments\": \"显示环境\",\n            // [/(\\d+) active deployments?/, \"$1 个活动的部署\"],\n\n            // 评论输入框选项，仅PR界面有\n                \"Copilot actions\": \"Copilot 操作\",\n                   \"Generate\": \"生成\",\n                   \"Summary\": \"总结\",\n                   \"Generate a summary of the changes in this pull request.\": \"生成此拉取请求的更改摘要。\",\n                \"Summarizing changes… this might take a minute\": \"总结更改…这可能需要 1 分钟\",\n\n        // 拉取请求 --> 提交 标签卡 /<user-name>/<repo-name>/pull/<id>/commits\n            // 顶部提示\n                \"This pull request is big! We're only showing the most recent 250 commits\": \"该拉取请求过大！仅显示最近 250 次提交\",\n            \"Commits\": \"提交\",\n            // [/Commits (.+)/, \"提交于 $1\"]\n            \"committed\": \"提交于\",\n\n            \"Copy the full SHA\": \"复制完整的 SHA\",\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n        // 拉取请求--> 提交 --> 某提交详情/<user-name>/<repo-name>/pull/<id>/commits/<full SHA>\n            \"commit\": \"提交\",\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand All\": \"展开全部\",\n            \"Collapse expanded lines\": \"折叠展开行\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n\n            // 修改的 yaml 文件，预览窗口\n            \"Loading Dependency Review...\": \"正在加载依赖审查…\",\n            \"No dependencies changed.\": \"未更改依赖。\",\n                \"The changes to this file likely do not affect the dependencies\": \"对此文件的更改可能不会影响依赖\",\n\n            \"Give feedback on\": \"提交反馈，在\",\n                \"dependency review\": \"依赖项审查\",\n\n            // 修改的文件 右侧下拉\n            \"Show comments\": \"显示评论\",\n            \"Show annotations\": \"显示注释\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"编辑文件\",\n            \"Delete file\": \"删除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打开\",\n            \"Copilot is not available for this file type\": \"Copilot 不支持此文件类型\",\n\n            // 上一页\n            \"You are viewing the earliest commit\": \"您正在查看最早的提交\",\n            // 下一页\n            \"You are viewing the latest commit\": \"您正在查看最新的提交\",\n\n            \"This merge commit was added into this branch cleanly.\": \"该合并提交被干净利落地添加到该分支中。\",\n                \"There are no new changes to show, but you can still\": \"没有新的更改可显示，但您仍然可以\",\n                \"view the diff.\": \"查看差异。\",\n\n            // 中间\n            \"Loading branch information\": \"正在加载分支信息\",\n\n            \"Some comments aren't visible on the classic Files Changed page.\": \"某些评论在传统更改的文件页不可见。\",\n\n        // 拉取请求 --> 更改的文件 标签卡 /<user-name>/<repo-name>/pull/<id>/files\n            // 网络错误\n            \"There was an issue loading this file\": \"加载此文件时出错\",\n                \"Try refreshing the page or if the problem persists\": \"请尝试刷新页面，如果问题仍然存在，请\",\n                    \"contact support\": \"联系支持人员\",\n\n            \"Try the new experience\": \"尝试新体验\",\n            // 工具条\n            \"Browse files\": \"浏览文件\", // 两个提交的比较页面\n\n            \"Show file tree\": \"显示文件树\",\n            \"Hide file tree\": \"隐藏文件树\",\n            \"Changes from\": \"更改自\",\n                \"all commits\": \"所有提交\",\n                // 下拉\n                \"Show all changes\": \"显示所有更改\",\n                // [/(\\d+) commits?/, \"$1 条提交\"],\n                \"Show changes since your last review\": \"显示自您上次评论以来的更改\",\n                // \"You haven‘t reviewed this pull requeste\": \"您尚未审查过此请求请求\",\n                \"You haven’t reviewed this pull request yet\": \"您尚未审查此请求请求\",\n                \"Select commit\": \"选择提交\",\n                \"Hold shift + click to select a range\": \"按住 shift + 单击以选择一个范围\",\n            \"File filter\": \"文件筛选\",\n                \"Filter by extension\": \"按文件后缀名筛选\",\n                    \"No extension\": \"无后缀名\",\n                    // [/All (\\d+) file types? selected/, \"所有 $1 种文件类型被选中\"],\n                    // [/Select all 1 file types?/, \"选择所有 $1 种文件类型\"],\n                    \"Only manifest files\": \"仅清单文件\",\n                \"There are no files selected for viewing\": \"没有选择要查看的文件\",\n                \"Viewed files\": \"查看过的文件\",\n                // \"filter file types\": \"筛选文件类型\",\n                // \"filter viewed files\": \"筛选已查看文件\",\n                // \"hide viewed files\": \"隐藏已查看文件\",\n                // \"filter by context\": \"按内容筛选\",\n            \"Clear filters\": \"清除筛选\",\n            \"Conversations\": \"讨论\",\n            \"Jump to conversation\": \"跳转到讨论\",\n                \"Give feedback\": \"反馈\",\n                // [/Unresolved conversations/, \"未解决的讨论\"],\n                \"Nice work!\": \"干得好！\",\n                \"All of your conversations have been resolved.\": \"您的所有讨论都已解决。\",\n                // [/Resolved conversations/, \"已解决的讨论\"],\n                \"No conversations yet\": \"尚无讨论\",\n                \"Review conversations will show up here.\": \"审查讨论将显示在这里。\",\n            // \"Jump to\": \"跳转到\",\n                \"Jump to file\": \"跳转到文件\",\n                \"Filter changed files\": \"筛选已更改文件\",\n                    \"No files found.\": \"未找到文件。\",\n            // 差异视图\n                \"Diff view\": \"差异视图\",\n                // \"Always\": \"总是\",\n                \"Unified\": \"同屏\",\n                \"Split\": \"分屏\",\n                // \"Just for now\": \"仅当前\",\n                // \"Hide whitespace changes\": \"隐藏空白更改\",\n                \"Hide whitespace\": \"隐藏空白\",\n                \"Apply and reload\": \"应用并重新加载\",\n            \"Show whitespace\": \"显示空白\",\n            \"Expand file\": \"展开文件\",\n            \"Collapse file\": \"折叠文件\",\n            // \"Refresh\": \"刷新\",\n            // 复制文件按钮\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n\n            \"Open overview side panel\": \"打开概览侧边栏\",\n                \"Close overview panel\": \"关闭\", // 过于啰嗦省略\n            // 评论\n                \"No replies\": \"无回复\",\n\n            \"files viewed\": \"查看过的文件\",\n                \"Marking files as viewed can help keep track of your progress, but will not affect your submitted review\": \"将文件标记为已查看可以帮助您跟踪进度，但不会纠正您提交的审查\",\n            // 咨询 Copilot\n                \"Loading Copilot features…\": \"加载 Copilot 功能…\",\n                \"Copilot is not available for this pull request\": \"Copilot 不可用于此拉取请求\",\n            \"Review in codespace\": \"在代码空间中审查\",\n            // \"Review changes\": \"审查更改\", // 使用 Selector 规则翻译\n                // 下拉\n                \"Finish your review\": \"完成审查\",\n                    \"Submit general feedback without explicit approval.\": \"未批准，并提出一般性反馈意见。\",\n                \"Approve\": \"批准\",\n                    \"Submit feedback approving these changes.\": \"批准，并提出反馈意见。\",\n                    \"Submit feedback and approve merging these changes.\": \"提交反馈意见并批准合并这些更改。\",\n                    \"Pull request authors can’t approve their own pull request.\": \"拉取请求作者无法批准自己的拉取请求。\",\n                    \"Only users with explicit access to this repository may approve pull requests\": \"只有对这个仓库有明确访问权限的用户才能批准拉取请求\",\n                \"Request changes\": \"请求更改\",\n                    \"Submit feedback suggesting changes.\": \"请求更改，并提出更改反馈意见。\",\n                    \"Submit feedback that must be addressed before merging.\": \"提交合并前必须解决的反馈意见\",\n                    \"Pull request authors can’t request changes on their own pull request.\": \"拉取请求作者不能在自己的拉取请求上请求更改。\",\n                    \"Only users with explicit access to this repository may request changes to pull requests\": \"只有对这个仓库有明确访问权限的用户才能请求更改拉取请求\",\n                \"Abandon review\": \"放弃审核\",\n                \"Submit review\": \"提交审查\",\n                    // 顶部提醒\n                        \"You need to leave a comment indicating the requested changes.\": \"您需要留下评论，说明所要求的更改。\",\n                \"Cancel review\": \"取消审核\",\n                \"pending\": \"条待处理\",\n                \"comment\": \"评论\",\n                \"comments\": \"评论\",\n\n            \"Review changes\": \"审查更改\",\n                // 被锁定\n                \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定，并限制与协作者对话。\",\n\n            \"Viewed\": \"已查看\",\n            \"Comment on this file\": \"评论此文件\",\n            \"Comment on file\": \"评论此文件\",\n\n            \"No changes to show\": \"没有更改\",\n                \"This commit does not include any file changes\": \"此提交未包含文件更改\",\n\n            \"Load diff\": \"载入差异\", // old 待清理\n            \"Load Diff\": \"载入差异\", // new\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不呈现。了解更多信息关于\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的显示方式\", // old 待清理\n            \"customizing how changed files appear on GitHub.\": \"自定义更改文件在 GitHub 中的显示方式。\", // new\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n                \"Added\": \"增加\",\n                \"Deleted\": \"删除\",\n                \"2-up\": \"并排\",\n                \"Swipe\": \"拖拽\",\n                \"Onion Skin\": \"渐变\",\n\n            // 大型拉取请求提示\n            \"This page has been optimized for large pull requests. Some browser features (like Find on Page or Select All) may not work as expected.\": \"此页面已针对大型拉取请求进行了优化。某些浏览器功能（如页面查找或全选）可能无法正常工作。\",\n                \"Switch to single file mode\": \"切换至单文件模式\",\n\n            \"These merge commits were added into this branch cleanly.\": \"这些合并提交已被干净利落地添加到该分支中。\",\n                \"There are no new changes to show.\": \"没有任何新的变化。\",\n\n            // 未更改文件检查注释(GA 检查)\n                \"Unchanged files with check annotations\": \"带检查注释的未更改文件\",\n                    \"View workflow job for this annotation\": \"查看此注释的工作流程作业\",\n\n            // 代码评论\n                \"Comment on lines\": \"评论行\",\n                \"Commenting on lines\": \"评论行\",\n\n            // Copilot 菜单\n                \"Ask Copilot about this diff\": \"与 Copilot 讨论此差异\",\n                    \"Copilot is not available for this file type\": \"Copilot 不支持此文件类型\",\n                \"Ask Copilot about this file-diff\": \"与 Copilot 讨论此文件差异\",\n                \"Copilot menu\": \"Copilot 菜单\",\n                    \"Explain\": \"解释\",\n                    \"Attach to current thread\": \"附加到当前主题\",\n                    \"Reference added to thread\": \"已附加至主题\", // 左下角浮窗\n                    \"Ask about this diff\": \"询问此差异\",\n\n                \"Select files to discuss\": \"选择文件讨论\",\n                    \"Copilot is not available for this file\": \"Copilot 不支持此文件\",\n                    \"Start chat\": \"开始聊天\",\n\n            // 建议更改\n                \"Suggested change\": \"建议更改\",\n                \"Sign off and commit suggestion\": \"签署并提交建议\",\n                    \"Suggestions cannot be applied from pending reviews.\": \"无法应用待审核中的更改\",\n                    \"This suggestion has been applied or marked resolved.\": \"该建议已被应用或标记为已解决。\",\n                    \"Outdated suggestions cannot be applied.\": \"过时建议不能应用。\",\n                \"Add suggestion to batch\": \"批量添加建议\",\n                    \"Add this suggestion to a batch that can be applied as a single commit.\": \"将此建议添加到可批量处理的单个提交中。\",\n                    \"Batching suggestions must be done from the files tab.\": \"批处理建议必须在 “文件” 选项卡中进行。\",\n                \"Commit suggestion\": \"提交建议\",\n\n                \"Pending in batch\": \"待批量处理\",\n                \"Remove from batch\": \"从批量处理中移除\",\n                    \"Remove this suggestion from those to be applied in batch\": \"从批量应用的建议中删除此建议\",\n                \"Sign off and commit suggestions\": \"签署并提交建议\",\n                    \"Apply all batched suggestions as a single commit\": \"将所有批量建议作为单个提交应用\",\n                \"Sign off and commit changes\": \"签署并提交更改\",\n                    \"Applying commit...\": \"正在应用提交…\",\n\n                \"This diff has recently been updated.\": \"该差异最近已更新。\",\n                \"Refresh and try again.\": \"刷新并重试。\",\n\n                \"Multiple suggested changes can be batched together in a single commit. Each suggestion author will be attributed in the commit as a co-author.\": \"多个建议更改可以在一次提交中批量处理。每个建议作者都将在提交中被归为共同作者。\",\n\n            // 新版\n                \"Switch back\": \"返回旧版\",\n                \"Feedback\": \"反馈\",\n\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Expand file tree\": \"展开文件树\",\n\n                \"All changes\": \"所有更改\",\n                \"All commits\": \"所有提交\",\n                \"Changes since your last review\": \"自您上次审核以来的更改\",\n                \"Specific commit…\": \"特定提交…\",\n                    \"Pick one or more commits\": \"选择多个提交\",\n                    \"Clear selection\": \"清除选择\",\n                        \"Picking a range will select commits in between.\": \"选择一个范围将会选中其间的提交。\",\n\n                \"viewed\": \"已审查\",\n\n                \"Comments\": \"评论\",\n                \"Submit\": \"提交\",\n                    \"review\": \"审查\",\n\n                \"Filter files…\": \"筛选文件…\",\n                \"Filter options\": \"选项\",\n                    \"File extensions\": \"文件扩展名\",\n\n                \"Layout\": \"结构\",\n                \"Minimize comments\": \"最小化评论\",\n                \"Compact line height\": \"紧凑行高\",\n\n                \"Select all\": \"全选\",\n                \"Expand above\": \"向上展开\",\n                \"Expand below\": \"向下展开\",\n                \"Go to next hunk\": \"下一块\",\n\n        // 拉取请求 --> 更改的文件 标签卡 /<user-name>/<repo-name>/pull/<id>/files/<full SHA>\n            \"You are viewing a condensed version of this merge commit. You can view the\": \"您正在查看该合并提交的浓缩版本。您可以查看\",\n            \"full changes here\": \"完整的更改\",\n\n            \"We went looking everywhere, but couldn’t find those commits.\": \"我们尝试寻找，就是找不到那些提交者。\",\n            \"Sometimes commits can disappear after a force-push. Head back to the\": \"有时提交会在强推后消失。头部回到\",\n            \"latest changes here\": \"最新的更改\",\n\n            \"Previous file (K)\": \"上个文件 (K)\",\n            \"Next file (J)\": \"下个文件 (J)\",\n\n            \"Comment on line\": \"评论行\",\n            \"Expand comment\": \"展开评论\",\n            \"Collapse comment\": \"折叠评论\",\n            \"Unresolve comment\": \"取消解决评论\",\n                \"marked this comment as resolved\": \"标记为已解决\",\n            \"Resolve comment\": \"解决评论\",\n                \"Apply suggestion\": \"应用建议\",\n                    \"More suggestion batching options\": \"更多选项\",\n                        \"This feature is not supported yet.\": \"此功能尚未支持。\",\n            \"Return to code\": \"返回代码\",\n            \"Reference in a new issue\": \"在新议题中引用\",\n\n            // 图片压缩\n            \"You're in single-file mode\": \"当前为单文件模式\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由于此拉取请求中的更改数量较多，因此一次只显示一个文件。\",\n\n                \"buttons to move between files.\": \"按钮在文件之间移动。\",\n\n                \"OK, got it\": \"知道了\",\n\n            // 评论\n                \"Filter comments\": \"筛选评论\",\n                    \"Show resolved comments\": \"显示已解决评论\",\n                    \"Show outdated comments\": \"显示陈旧的评论\",\n\n                \"No comments on changes yet\": \"还没有评论\",\n                    \"Comments will show up here as soon as there are some.\": \"评论将在此显示。\",\n\n                // Copilot\n                    \"Implement suggestion\": \"采纳建议\",\n                    \"Mention Copilot\": \"提及 Copilot\",\n                        \"Copilot isn't available for cross-repository pull requests\": \"Copilot 在跨仓库的拉取请求中不可用\",\n\n        // 拉取请求 --> 解决冲突 /<user-name>/<repo-name>/pull/<id>/conflicts\n            \"Resolving conflicts\": \"解决冲突\",\n            \"between\": \" \",\n            \"and committing changes\": \"并提交更改\",\n            // [/(\\d+) conflicting files?/, \"$1 个冲突文件\"],\n            // [/(\\d+) conflicts?/, \"$1 处冲突\"],\n\n            \"Keyboard hints\": \"快捷键\",\n                \"How to interact with code conflict editor via keyboard\": \"如何通过键盘与代码冲突编辑器交互\",\n                    \"Toggle between edit mode and tab focus mode\": \"切换编辑模式和标签焦点模式\",\n                    \"Navigation between elements with tab focus mode on\": \"在 Tab 焦点模式下在元素之间导航\",\n                    \"Move to next conflict control after accepting suggestion\": \"接受建议后移动到下一个冲突控件\",\n                    \"Exit editor\": \"退出编辑器\",\n                        \"then\": \"以及\",\n\n            \"Mark as resolved\": \"标记为已解决\",\n                \"Remove all conflict markers to resolve this file\": \"删除所有冲突标记以解决此文件冲突\",\n            \"Indent mode\": \"缩进模式\",\n                \"Spaces\": \"空格\",\n                \"Tabs\": \"制表符\",\n            \"Indent size\": \"缩进尺寸\",\n            \"Line wrap mode\": \"换行模式\",\n                \"No wrap\": \"不换行\",\n                \"Soft wrap\": \"软换行\",\n\n            \"Commit merge\": \"提交合并\",\n            \"Sign off and commit merge\": \"签署并提交合并\",\n                \"Heads up, this will commit to\": \"请注意，这将提交到\",\n                \"Commit updates to the\": \"提交更改到\",\n                \"branch.\": \"分支。\",\n                \"Create a\": \"创建\",\n                \"new branch\": \"新分支\",\n                \"and commit updates. Your pull request will be updated automatically.\": \"并提交更改。您的拉取请求将自动更新。\",\n                // [/I understand, sign off and update/, \"我明白了，依然签署并更新\"],\n                \"You are\": \"您将\",\n                \"signing off\": \"签署\",\n                // [/on this commit as ([^@]+@[^\\n]+)/, \"该提交以 $1 身份\"],\n                \"Committing merge…\": \"正在提交合并…\",\n\n                \"conflict\": \"冲突\",\n                \"conflicts\": \"冲突\",\n\n            \"Accept current change\": \"接受当前更改\",\n            \"Accept incoming change\": \"接受传入更改\",\n            \"Accept both changes\": \"接受全部更改\",\n\n        // 拉取请求 - 由 Copilot 编写 https://github.com/用户名/仓库名/pull/编号/agent-sessions\n            \"Back to pull request #\": \"返回到拉取请求 #\",\n\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 编程智能体现在使用更少的高级请求！\",\n                \"From now on, each session uses just one premium request.\": \"从现在起，每个会话只会使用一次高级请求。\",\n\n            // 状态\n                \"Failed\": \"失败\",\n            \"Sessions\": \"进度\",\n            \"Duration\": \"总时长\",\n            \"Premium requests\": \"高级请求\",\n                \"Learn more about premium requests\": \"关于高级请求\",\n\n            \"premium\": \"高级\",\n            \"request\": \"请求\",\n            \"requests\": \"请求\",\n            \"used in\": \"被用于\",\n            \"session\": \"任务\",\n            \"sessions\": \"任务\",\n\n            \"Stop session\": \"停止任务\",\n            \"Open menu\": \"操作\",\n                \"View verbose logs\": \"查看日志\",\n\n            \"Spinning up dev environment…\": \"正在启动开发环境…\",\n            \"Starting MCP servers…\": \"正在启动 MCP 服务器…\",\n            \"Making sure Copilot feels comfortable in the cockpit…\": \"确保 Copilot 在驾驶舱中感到舒适…\",\n            \"Fueling the runtime engines…\": \"为运行时引擎加油…\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Copilot stopped work due to an error\": \"Copilot 因错误停工\",\n                \"Copilot has encountered an error. See logs for additional details.\": \"Copilot 遇到错误。请查看日志以获取更多详细信息。\",\n                // 内部错误，走正则\n                \"View detailed logs\": \"查看详细日志\",\n\n            // 进度\n            \"View repository\": \"查看仓库\",\n\n        // 新版拉取请求提交页面\n            \"authored and\": \"撰写和\",\n            \"Browse repository at this point\": \"查看此时间点的仓库\",\n\n        \"ProTip!\": \"专业提示！\",\n            \"to the end of URLs for Git’s plaintext views.\": \"到 Git 纯文本视图的 URL 结尾。\",\n            \"Add comments to specific lines under\": \"为以下特定行添加注释于\",\n        \"Switch back to the classic merge experience\": \"切换回经典的合并界面\",\n        \"Try the new merge experience\": \"尝试新的合并界面\",\n\n        \"Repository owner locked as\": \"仓库所有者锁定为\",\n            \"resolved\": \"已解决\",\n            \"too heated\": \"争论不休\",\n            \"off-topic\": \"偏离主题\",\n\n        \"Merge status cannot be loaded\": \"合并状态加载出错\",\n            \"Try reloading the page, or if the problem persists\": \"尝试重新加载页面，或者如果问题仍然存在\",\n                \"contact support\": \"请联系支持人员\",\n            \"GitHub status\": \"GitHub 状态\",\n\n        \"Mention \\@copilot in a comment to make changes to this pull request.\": \"在评论中提及 @copilot 以对该拉取请求进行更改。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 次提交将变基并添加到基本分支。\"],\n        [/([^ ]+):([^ ]+)% was force-pushed and no longer has any new commits./, \"$1:$2 分支被强制推送，现在没有新的提交。\"], // 放这里是因为跟现有词条冲突\n        // 建议更改（词条打架移动至此）\n        [/on this commit as ([^@]+@[^\\n]+)/, \"该提交以 $1 身份\"],\n        // Dependabot 打开的拉取请求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"此拉取请求解决了 1 个 Dependabot 警报，在 $1 上。\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n        [/^on ([^ ]+) including a/, \"在 $1 上，包括 1 个\"],\n        [/^on ([^ ]+)./, \"在 $1 上。\"],\n\n        // 提交时展开收缩的描述\n        [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n\n        // 新版 PR 提交页\n        [/wants to merge (\\d+) commits? into/, \"希望合并 $1 条提交到\"],\n        [/Commits on (.+)/,  (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交于${translatedDate}`;\n        }],\n        [/Add(?: a)? comment on line ((L|R)(\\d+))/, \"在 $1 行评论\"],\n        [/Suggest change on line ((L|R)(\\d+))/, \"建议更改 $1 行\"],\n        [/Expand all lines: (.+)/, \"展开所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"折叠未更改行：$1\"],\n        // CODEOWNERS 文件指定所有者\n        [/Owned by (\\@.+) \\(from CODEOWNERS line (\\d+)\\)/, \"由 $1 拥有（来自 CODEOWNERS 第 $2 行）\"],\n\n        // 具体某条拉取请求\n        [/edited by ([^ ]+)/, \"由 $1 编辑\"],\n        [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合并此拉取请求至少需要 $1 次批准审核。\"],\n        [/Commits?/, \"提交\"],\n        [/Files? changed/, \"文件更改\"],\n        [/merged (\\d+) commits? into/, \"将 $1 个提交合并到\"],\n        [/Copy full SHA for ([^ ]+)/, \"复制 $1 完整的 SHA\"], // Android UA ? 提交卡\n        [/View checks?/, \"查看检查\"], // Android UA ?\n        [/([^ ]+) left review comments?/, \"$1 发表了审查意见\"],\n        [/([^ ]+) approved these changes?/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n        [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n        [/users with write access to ([^ ]+) can add new commits/, \"对 $1 具有写权限的用户可以添加新的提交\"], // 具体拉取请求\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"], // 具体的拉取请求 审查者\n        [/This user is a first-time contributor to the ([^ ]+) repository./, \"该用户是第一次为 $1 仓库做贡献。\"],\n        [/(\\d+) pending reviewers?/, \"$1 名待审者\"],\n        [/([\\d,]+) participants?/, \"$1 位参与者\"],\n        [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有写入权限的审查者至少需要 $1 次批准审查。\"],\n        [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 个批准的审查由具有写入权限的审查者进行审查。\"],\n        [/(\\d+) review requesting changes by reviewers? with write access./, \"$1 个请求审查更改由具有写入权限的审查者进行审查。\"],\n        [/(\\d+) approvals?/, \"$1 项批准\"],\n        [/(\\d+) reviews? requesting changes by reviewers with write access/, \"$1 项审查，要求有写入权限的审查者进行更改\"], // 拉取请求\n        [/(\\d+) changes? requested by reviewers with write access/, \"具有写入权限的审查者提出 $1 项更改请求\"],\n        [/(\\d+) changes? requested/, \"$1 项更改请求\"],\n        [/This pull request closes issue (#\\d+)./, \"该拉取请求将关闭议题 $1。\"], // 死活不翻译\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/(\\d+) requested change/, \"$1 项请求更改\"],\n\n        // 状态\n        [/branch (\\d+) times, most recently from/, \"分支 $1 次，最近一次从\"],\n        [/pushed a commit to ([^ ]+) that referenced this pull request/, \" 向 $1 推送一次提交，其中引用了此拉取请求\"],\n        [/added a commit to ([^ ]+) that referenced this pull request/, \"向 $1 添加一个提交，其中引用了此拉取请求\"],\n        [/Missing successful active ([^ ]+) deployment./, \"未成功激活 $1 部署。\"], // 新本合并页面\n\n        [/(\\d+) in progress checks?/, \"$1 个正在进行的检查\"],\n        [/(\\d+) in progress(es)?/, \"$1 个正在进行的检查\"],\n        [/(\\d+) skipped and (\\d+) successful checks?/, \"$1 个跳过, $2 个成功检查\"],\n        [/(\\d+) successful and (\\d+) failing checks?/, \"$1 个成功, $2 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) failing checks?/, \"$1 个跳过, $2 个成功, $3 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) cancelled, and (\\d+) failing checks?/, \"$1 个跳过, $2 个成功, $3 个取消, $4 个失败检查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个预先检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) queue, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个排队, $4 个预先检查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) in progress, and (\\d+) expected checks?/, \"$1 个跳过, $2 个成功, $3 个正在进行, $4 个预先检查\"],\n        [/(\\d+) neutral checks?/, \"$1 次中立检查\"],\n        [/(\\d+) successful checks?/, \"$1 次成功检查\"],\n        [/(\\d+) of (\\d+) checks? passed/, \"$1/$2 次检查通过\"],\n        [/(\\d+) checks? passed/, \"$1 次检查通过\"],\n\n        [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"将最新更改从 $1 分支合并到当前分支。该合并提交将与用户 $2 相关联。\"],\n        [/Merging can be performed automatically with (\\d+) approving review./, \"合并可以通过 $1 次批准审查自动执行。\"],\n        [/(\\d+) workflow awaiting approval/, \"$1 个工作流等待批准\"],\n        [/The ([^ ]+) branch requires linear history/, \"$1 分支为要求线性历史记录\"],\n        [/The (\\d+) commits? from this branch will be added to the base branch./, \"该分支的 $1 个提交将合并到基本分支中。\"], // 合并拉取请求 按钮下拉\n        [/The (\\d+) commits? from this branch will be combined into one commit in the base branch./, \"该分支的 $1 个提交将合并到基础分支中。\"], // 合并拉取请求 按钮下拉\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"该分支的 $1 个提交将变基合并到基础分支中。\"], // 合并拉取请求 按钮下拉\n        [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"确保特定的人或团队在拉取请求被合并到您的 $1 分支之前批准它们。\"], // 合并拉取请求\n        [/(\\d+) commits?/, \"$1 条提交\"],\n        [/All (\\d+) file types? selected/, \"所有 $1 种文件类型被选中\"], // 文件筛选\n        [/Select all (\\d+) file types?/, \"选择所有 $1 种文件类型\"],\n        [/Unresolved conversations/, \"未解决的讨论\"],\n        [/Resolved conversations/, \"已解决的讨论\"],\n        // [/Commits (.+)/, \"提交于 $1\"], // 提交标签卡\n        [/(#\\d+) will be closed when this pull request is merged/, \"$1 将在该拉取请求合并时关闭\"],\n        // 代码空间\n        [/Create a codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"代码空间 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"代码空间 “$1” 已删除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您确定要删除 $1 吗？\"],\n        [/(\\d+) conflicting files?/, \"$1 个冲突文件\"], //conflicts\n        [/(\\d+) conflicts?/, \"$1 处冲突\"],  //conflicts\n        [/Awaiting requested review from ([^ ]+)/, \"等待 $1 审查请求\"], // 具体的拉取请求\n        [/([^ ]+) is a code owner/, \"$1 是代码所有者\"], // 具体的拉取请求\n        [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"], // 具体的拉取请求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"该请求解决了 $1 的 Dependabot 警报问题。\"],\n        [/(\\d+) workflows? awaiting approval/, \"$1 个工作流程等待批准\"],\n        [/(\\d+) resolved conversations?/, \"$1 条对话已解决\"], // 拉取请求\n        [/I understand, continue updating ([^ ]+)/, \"我明白了，继续更新 $1\"],\n        [/I understand, sign off and update/, \"我明白了，依然签署并更新\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/(\\d+) conversations? must be resolved before merging./, \"合并之前必须解决 $1 个对话。\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/([^ ]+) requested changes/, \"$1 要求更改\"],\n        [/(\\d+) active deployments?/, \"$1 个活动的部署\"],\n        [/Check failure on line (\\d+)/, \"第 $1 行检查失败：\"],\n\n        // 命令行解决冲突页面\n        [/Copy (.+?) to clipboard/, \"复制 $1 到剪切板\"],\n\n        // 文件差异过大 参考 https://github.com/maboloshi/github-chinese/pull/306/files\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"差异过大，不会显示 $1 行添加以及 $2 行删除。请使用本地 Git 客户端查看更改。\"],\n\n        // 任务\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n\n        // 评论\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n\n        // 建议更改\n        //[/on this commit as ([^@]+@[^\\n]+)/, \"提交，身份为 $1\"],\n\n        // Copilot\n        [/Copilot has encountered an internal error. If the problem persists, please contact GitHub Support, including the request ID `([^ ]+)`. To retry, leave a comment on this pull request asking Copilot to try again./, \"Copilot 遇到了内部错误。如果问题仍然存在，请联系 GitHub 支持，并附上请求 ID `$1`。要重试，请在此拉取请求中发表评论，要求 Copilot 再试一次。\"],\n\n        // 解决冲突编辑器（似乎又是 F12 才会翻译）\n        [/Search:/, \"搜索：\"],\n        [/\\(Use \\/re\\/ syntax for regexp search\\)/, \"(使用 /re/ 进行正则搜索)\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-CN\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"span[data-message='Review changes']\", \"审查更改\"], // 拉取请求 --> 更改的文件\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) by (.+) · Pull Request #(\\d+) · (.+)/, \"$1 作者：$2 · 拉取请求 #$3 · $4\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/compare\"] = { // 仓库 - 比较并创建拉取请求\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 变更比较 页面 /<user-name>/<repo-name>/compare@\n            \"Compare changes\": \"比较变更\",\n            \"Compare changes across branches, commits, tags, and more below. If you need to, you can also\": \"比较跨分支，提交，标签，和更多的变更。如果您需要，也可以\",\n            \"compare across forks\": \"比较复刻库和源仓库\",\n            \"Learn more about diff comparisons here\": \"点击此处了解更多关于差异比较的信息\",\n            \"This is a direct comparison between two commits made in this repository or its related repositories.\": \"这是本仓库或其相关仓库中两次提交的直接比较。\",\n            \"View the default comparison\": \"查看此范围的默认比较\",\n            \"for this range or\": \"或\",\n\n            // 分支选择栏\n            \"base repository:\": \"基础仓库：\",\n                \"Choose a Base Repository\": \"选择基础仓库\",\n                \"Filter repos\": \"筛选仓库\",\n            \"head repository:\": \"头部仓库：\",\n                \"Choose a Head Repository\": \"选择头部仓库\",\n\n            \"base:\": \"基础分支：\",\n                \"Choose a base ref\": \"选择基础引用\",\n                \"Find a branch\": \"搜索分支\",\n                \"Find a tag\": \"搜索标签\",\n            \"compare:\": \"比较分支：\",\n                \"Choose a head ref\": \"选择头部引用\",\n\n            \"Choose different branches or forks above to discuss and review changes.\": \"选择不同的分支或复刻来讨论和查看变化。\",\n            \"Learn about pull requests\": \"了解拉取请求\",\n\n            \"Create pull request\": \"创建拉取请求\",\n\n            \"Compare and review just about anything\": \"比较和审查任何文件\",\n            \"Branches, tags, commit ranges, and time ranges. In the same repository and across forks.\": \"分支，标签，提交范围和时间范围。在同一仓库和复刻的仓库。\",\n            \"Example comparisons\": \"比较例子\",\n\n            \"Commit\": \"提交\",\n            \"Commits\": \"提交\",\n            \"File changed\": \"更改的文件\",\n            \"Files changed\": \"更改的文件\",\n\n        // 提出合并分支 /<user-name>/<repo-name>/compare/<branch>...<user-name-1>:<branch-1>\n        // /<user-name>/<repo-name>/compare/<branch>...<branch-1>\n        // <user-name>/<repo-name>/compare/<branch>...<user-name-1>:<repo-name-1>:<branch-1>\n            \"Comparing changes\": \"比较变更\",\n            \"Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also\": \"选择两个分支，看看发生了什么改变，或发起一个新的拉请求。如果您需要，您也可以\",\n            \"learn more about diff comparisons\": \"了解更多关于差异比较的信息\",\n            // \"base fork:\": \"基复刻：\",\n            \"Documentation has changed since you last contributed\": \"文件已发生变化，自您上次提交文件于\",\n            \". Take a look before submitting a pull request:\": \"。在提交拉取请求前，请先看一下：\",\n            \"Contributing guidelines\": \"贡献指南\",\n            \"Last updated\": \"最近更新于\",\n\n            \"There isn’t anything to compare.\": \"没有任何东西可比较。\",\n                \"We couldn’t figure out how to compare these references, do they point to valid commits?\": \"我们不知道如何比较这些引用，它们是否指向有效的提交？\",\n\n                \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用两个不同的分支名称来进行有效的比较。\",\n                \"Check out some of these sample comparisons.\": \"看看这些比较的例子吧。\",\n\n                \"is up to date with all commits from\": \"已是最新，提交于\",\n                \". Try\": \"。尝试\",\n                \"switching the base\": \"切换基础库\",\n                \"for your comparison.\": \"来进行比较。\",\n\n                \"are entirely different commit histories.\": \"是完全不同的提交历史。\",\n\n            \"Discuss and review the changes in this comparison with others.\": \"与他人讨论并回顾此次对比中的变化。\",\n\n            \"This comparison is big! We’re only showing the most recent 250 commits\": \"这个比较是很大的! 我们只显示最近的 250 个提交。\",\n\n            \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用两个不同的分支名称来进行有效的比较。\",\n\n            \"are identical.\": \"是相同的。\",\n\n            \"Create another pull request to discuss and review the changes again.\": \"创建另一个拉取请求，再次讨论和审查这些更改。\",\n\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand All\": \"展开全部\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n\n            \"Load diff\": \"载入差异\",\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不会呈现。详细了解\",\n                \"how customized files appear on GitHub\": \"自定义文件在 GitHub 上的显示方式\",\n            \"Empty file.\": \"空文件。\",\n\n            // 提交相关\n            \"Copy the full SHA\": \"复制完整 SHA\",\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n        // 直接提交拉取请求 /<user-name>/<repo-name>/compare/<branch>...<branch-1>?quick_pull=1\n            \"Open a pull request\": \"新建一个拉取请求\",\n            \"The change you just made was written to a new branch named\": \"您刚刚所做的更改已写入新分支\",\n            \". Create a pull request below to propose these changes.\": \". 请在下方创建拉取请求，提出这些更改。\",\n            \"Create a new pull request by comparing changes across two branches. If you need to, you can also\": \"通过比较两个分支的更改来创建一个新的拉请求。如果需要，还可以\",\n\n            // 提示框（第一次提交拉取请求时）\n            \"It looks like this is your first time opening a pull request in this project!\": \"看起来这是您在这个项目中首次发起的拉取请求呢！\",\n            \"Be sure to review the\": \"请务必查阅\",\n            \"contributing guidelines\": \"贡献指南\",\n            \"Reporting a security vulnerability?\": \"报告安全漏洞？\",\n            \"Check out the project's\": \"查看本项目的\",\n            \"Looking for help?\": \"需要帮助？\",\n                \"Check out the project’s\": \"查看本项目的\",\n                \"instructions for getting support\": \"支持说明\",\n\n            \"Checking mergeability…\": \"检查可合并性…\",\n            \"Don’t worry, you can still create the pull request.\": \"别担心，您仍然可以创建拉取请求。\",\n            \"Able to merge.\": \"可被合并。\",\n            \"Can’t automatically merge.\": \"无法自动合并。\",\n            \"These branches can be automatically merged.\": \"该分支可被自动合并。\",\n\n            \"View pull request\": \"查看拉取请求\", //存在拉取请求时\n                \"No description available\": \"无说明\", // 拉取请求无评论时\n\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"file changed\": \"个文件变更\",\n            \"files changed\": \"个文件变更\",\n            \"contributor\": \"位贡献者\",\n            \"contributors\": \"位贡献者\",\n            // \"No commit comments for this range\": \"该范围变更没有提交注释\",\n\n            \"Reviewers\": \"审查者\",\n                \"No reviews\": \"未经审查\",\n                \"Loading suggestions…\": \"载入推荐…\",\n                // [/([^ ]+) left review comments/, \"$1 发表了审查意见\"],\n                // [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"],\n                \"No reviews—at least 0 approving review is required.\": \"未经审查 — 至少需要 0 次批准审查。\",\n                \"Re-request review\": \"重新请求审核\",\n                \"Still in progress?\": \"仍在进行中吗？\",\n                // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的审查请求\"]\n                \"Learn about draft PRs\": \"了解拉取请求草案\",\n                    \"Try draft pull requests\": \"尝试拉取请求草案\",\n                    \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打开正在进行的拉取请求，无需请求正式审核，也不必冒不必要的合并风险。当您准备好进行代码审核时，您可以将拉取请求草案标记为已准备好审核，这将请求任何代码所有者进行审核。\",\n                    \"Ask admin for access\": \"向管理员请求权限\",\n                \"Convert to draft\": \"设置为草案\",\n                \"Request up to 15 reviewers\": \"最多请求 15 个审查者\",\n                // [/([^ ]+) approved these changes/, \"$1 批准这些更改\"], // 具体的拉取请求 审查者\n                \"Request\": \"请求\",\n                // [/Request review from ([^ ]+)/, \"请求 $1 审查\"], // 具体的拉取请求 审查者\n                \"This pull request is waiting on your review.\": \"此拉取请求正在等待您的审核。\",\n                // Copilot\n                    \"Copilot can review pull requests\": \"Copilot 可以审查拉取请求\",\n                    \"Request a review from Copilot to get fast, actionable feedback on your code, so you can start iterating before you receive a human review.\": \"向 Copilot 请求代码审查，即可获得快速且可操作的反馈，让您能在收到人工审查前就开始迭代优化。\",\n                    \"OK, dismiss\": \"关闭\",\n\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"无人受理\",\n                \"No one—\": \"无人 - \",\n                \"assign yourself\": \" 受理自己\",\n                \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 议题\n                \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取请求\n                \"Clear assignees\": \"清除受理人\",\n                \"Type or choose a user\": \"输入或选择用户\",\n                \"Suggestions\": \"建议\",\n\n            \"Labels\": \"标签\",\n                \"None yet\": \"暂无\",\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"confirmed\": \"已确认\",\n                    \"Issue confirmed to exist and the reason is known\": \"问题已确认存在，原因已知\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"Not going to fix it\": \"不打算修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n                \"Apply labels to this issue\": \"应用标签\", // 议题\n                \"Apply labels to this pull request\": \"应用标签\", // 拉取请求\n                \"Edit labels\": \"编辑标签\",\n\n                \"dependencies\": \"依赖项\",\n                    \"Pull requests that update a dependency file\": \"更新依赖文件的拉取请求\",\n                \"Recent\": \"最近\",\n                \"User\": \"用户\",\n                \"No projects\": \"无项目\",\n\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"无里程碑\",\n                \"Set milestone\": \"设置里程碑\",\n                    \"Nothing to show\": \"暂无\",\n\n        \"Allow edits and access to secrets by maintainers\": \"允许维护人员编辑和访问机密\",\n            \"If checked,\": \"如果勾选，\",\n            \"users with write access to\": \"则拥有\",\n            \"can add new commits\": \"写访问权限的用户可以向您的\",\n            \"to your\": \"向您的\",\n            \"branch.\": \"分支添加新提交。\",\n            \"You can always change this setting later.\": \"您可以随时更改这一设置。\",\n            \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通过授予写入权限，维护者可能会编辑您仓库的工作流程以揭示机密值，并获取对其他分支的访问权限。\",\n            \"Got it\": \"知道了\",\n        // 创建拉取请求 按钮下拉\n            \"Open a pull request that is ready for review\": \"打开一个准备好进行审核的拉取请求\",\n            \"Automatically requests reviews from code owners\": \"自动请求代码所有者进行审查\",\n            \"Create draft pull request\": \"创建拉取请求草案\",\n            \"Cannot be merged until marked ready for review\": \"在标记为准备好进行审核之前无法合并\",\n            \"Doesn't request code owners review and cannot be merged\": \"不请求代码所有者审核并且无法合并\",\n            \"Draft pull request\": \"拉取请求草案\",\n        \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循其\",\n        \"security policy\": \"安全政策\",\n        \"code of conduct\": \"行为准则\",\n        \"Remember, contributions to this repository should follow our\": \"请记住，对此仓库的贡献应遵循我们的\",\n        \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n        \"Support\": \"支持\",\n\n        // 右侧栏补充\n        \"Development\": \"进展\",\n            \"Use\": \"使用\",\n            \"Closing keywords\": \"关闭关键词\",\n            \"in the description to automatically close issues\": \"在描述中，以自动关闭议题\",\n            \"Use Closing keywords to add a closing reference\": \"使用关闭关键词添加一个关闭引用\",\n\n        \"Helpful resources\": \"帮助性资源\",\n            // \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n            \"Contributing\": \"贡献准则\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n\n        // 标签对应版本比较 /<user-name>/<repo-name>/compare/<tag-id1>...<tag-id2>\n            // 仅限 MD文件\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n\n            \"Load more commits\": \"载入更多的提交\",\n\n        // /<user-name>/<repo-name>/compare/<tag>...<branch>\n            \"Commit comments\": \"提交评论\",\n\n        \"Showing\": \"显示\",\n        \"with\": \"包含\",\n\n        // 编辑器右上角三点，“显示评论”走正则\n        \"View file\": \"查看文件\",\n        \"Edit file\": \"编辑文件\",\n        \"Delete file\": \"删除文件\",\n\n        // 加载差异失败\n        \"This comparison is taking too long to generate.\": \"生成比较结果的时间过长。\",\n        \"Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.\": \"不幸的是，我们现在无法为您提供这种比较。它可能太大了，或者您的仓库有什么奇怪的地方。\",\n        \"You can try running this command locally to see the comparison on your machine:\": \"您可以尝试在本地运行此命令以查看比较结果：\",\n\n        // 评论输入框选项\n        \"Copilot actions\": \"Copilot 操作\",\n            \"Generate\": \"生成\",\n                \"Summary\": \"总结\",\n                    \"Generate a summary of the changes in this pull request.\": \"生成此拉取请求的更改摘要。\",\n        \"Summarizing changes… this might take a minute\": \"总结更改…这可能需要 1 分钟\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Show comments?/, \"显示评论\"], // 编辑器右上角三点\n        [/committed/, \"提交于\"],\n        [/(\\d+) contributors?/, \"$1 贡献者\"],\n        [/Allow(ing)? edits by maintainers/, \"允许维护人员编辑\"],\n        [/users with write access to ([^ ]+) can add new commits/, \"则拥有 $1 写访问权限的用户可以向您的\"],\n        [/(\\d+) changed files?/, \"更改的文件\"],\n        [/(\\d+) additions?/, \"$1 处增加\"],\n        [/(\\d+) deletions?/, \"$1 处删除\"],\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准审查才能合并此拉取请求。\"], // 创建拉取请求\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Compare/, \"比较\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/commit\"] = { // 仓库 - 提交页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 具体某个提交页面 /<user-name>/<repo-name>/commit/<full SHA>\n            \"Commit\": \"提交\",\n\n            // 快捷键\n            \"Browsing commits\": \"浏览提交\",\n            // \"\": \"提交评论\",\n            \"Close form\": \"关闭评论\",\n            \"Parent commit\": \"父提交\",\n            \"Other parent commit\": \"其他父提交\",\n\n            // 访问已删除的提交\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"这个提交不属于本仓库的任何分支，可能属于仓库以外的分支。\",\n\n            \"Browse files\": \"浏览文件\",\n            \"Loading branch information\": \"载入分支信息\",\n\n            // [/This commit closes issue (#\\d+)./, \"此提交关闭了提议 $1。\"], //具体提交页面\n            \"committed\": \"提交于\",\n            \"commit\": \"提交\",\n\n            \"Showing\": \"显示\",\n            \"with\": \"包含\",\n            \"always\": \"总是\",\n            \"Whitespace\": \"显示空白字符差异\",\n            \"Ignore whitespace\": \"忽略空白字符差异\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            \"Minimize comments\": \"最小化评论\",\n\n            \"Display the source diff\": \"显示源差异\",\n            \"Display the rich diff\": \"显示富差异\",\n            \"Comment on this file\": \"评论此文件\", // new code view\n\n            \"Filter changed files\": \"筛选已更改的文件\", // new code view 侧栏\n            \"Show file tree\": \"显示文件树\", // new code view 侧栏\n            \"Hide file tree\": \"隐藏文件树\", // new code view 侧栏\n\n            \"Submodule\": \"子模块\",\n            \"updated\": \"已更新\",\n            // [/from ([^ ]+) to ([^ ]+)/, \"从 $1 到 $2。\"], //具体提交页面\n\n            \"Binary file not shown.\": \"不显示二进制文件\",\n            \"Empty file.\": \"空文件。\",\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"Whitespace-only changes.\": \"仅空白字符更改。\",\n\n            \"Some content is hidden\": \"某些内容被隐藏\",\n                \"Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.\": \"大型提交默认隐藏部分内容。使用下面的搜索框查找可能隐藏的内容。\",\n            \"Dismiss banner\": \"关闭\",\n\n            \"Load diff\": \"载入差异\",\n            \"Load Diff\": \"载入差异\",\n            \"This file was deleted.\": \"该文件已被删除\",\n            \"Large diffs are not rendered by default.\": \"默认情况下，大的差异不会被呈现。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默认不呈现。了解更多信息关于\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的显示方式\",\n            \"customizing how changed files appear on GitHub.\": \"自定义更改文件在 GitHub 上显示方式。\",\n            \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n            \"File renamed without changes\": \"文件仅重命名，内容没有更改\",\n            \"Binary file not shown.\": \"不显示二进制文件。\",\n            \"Diff is too big to render. To view,\": \"差异过大，\",\n            \"check out this pull request locally.\": \"请在本地查看拉取请求。\",\n\n            // 修改的文件 左侧 展开按钮\n            \"Expand all\": \"展开全部\",\n            \"Expand Up\": \"向上展开\",\n            \"Expand Down\": \"向下展开\",\n            \"Collapse expanded lines\": \"折叠展开的线\",\n\n            // 修改的 yaml 文件，预览窗口\n            \"Loading Dependency Review...\": \"正在加载依赖审查…\",\n            \"No dependencies changed.\": \"未更改依赖。\",\n                \"The changes to this file likely do not affect the dependencies\": \"对此文件的更改可能不会影响依赖\",\n\n            \"Give feedback on\": \"提交反馈，在\",\n                \"dependency review\": \"依赖项审查\",\n\n            // 修改的文件 右侧下拉\n            \"Show comments\": \"显示评论\",\n            \"Show annotations\": \"显示注释\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"编辑文件\",\n            \"Delete file\": \"删除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打开\",\n            \"Copilot is loading...\": \"Copilot 加载中…\",\n            \"Ask about this diff\": \"询问此差异\",\n                \"Explain\": \"解释\",\n                \"Attach to current thread\": \"附加至当前话题\",\n\n            //底部评论框上部\n            \"Lock conversation\": \"锁定对话\",\n                \"Lock conversation on this commit\": \"锁定关于此提交的对话\",\n                \"Locking the conversation means:\": \"锁定对话意味着：\",\n                    \"Other users\": \"其他用户\",\n                    \"can’t add new comments\": \"无法添加新评论\",\n                    \"to this commit.\": \"到这个提交。\",\n                    \"You and other collaborators\": \"您和其他协作者\",\n                    \"with access\": \"有权限访问\",\n                    \"to this repository\": \"该仓库\",\n                    \"can still leave comments\": \"仍然可以发表评论\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                \"You can always unlock this commit again in the future.\": \"您可以随时再次解锁此提交。\",\n            \"Unlock conversation\": \"解锁对话\",\n                \"Unlock conversation on this commit\": \"解锁关于此提交的对话\",\n                \"Unlocking the conversation means:\": \"解锁对话意味着：\",\n                \"will be able to comment on this commit once more.\": \"将能够再次对此提交发表评论。\",\n                \"You can always lock this commit again in the future.\": \"您可以随时再次锁定此提交。\",\n\n                \"Reply…\": \"回复…\",\n\n            \"commented on\": \"评论于\",\n            \"Comment on line\": \"评论行\",\n\n            \"Paste, drop, or click to add files\": \"粘贴、拖放或点击添加文件\",\n\n            // 隐藏评论\n            \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n            \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Unhide\": \"取消隐藏\",\n                \"comment\": \"评论\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n            \"Subscribe\": \"订阅\",\n            \"Unsubscribe\": \"取消订阅\",\n            \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n            \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您编写了提交。\",\n            \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n            \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您关注了该仓库。\",\n\n        // 提交 commits 页面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            \"Commits\": \"提交\",\n            \"commit\": \"提交\",\n            // 快捷键\n                \"Copy file permalink\": \"复制文件永久链接\",\n\n            \"Copy full SHA for\": \"复制该提交的完整 SHA\", // Android UA\n            \"View commit details\": \"查看提交详情\",\n            \"Browse the repository at this point in the history\": \"浏览该阶段的历史仓库内容\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n            // 拉取请求悬浮卡\n                \"You were mentioned on and commented on this pull request\": \"您在该请求中被提及并发表了评论\",\n                \"You left a review\": \"您发表了评论\",\n\n            // 议题悬浮卡\n                \"You commented on this issue\": \"您对此议题发表了评论\",\n                \"You commented on and opened this issue\": \"您评论并打开了此议题\",\n\n        // /commits?since=<start-date XXXX-XX-XX>&until=<end-date XXXX-XX-XX>&author=<author-name>\n            \"No commits history\": \"尚无提交历史记录\",\n            \"There isn't any commit history to show here\": \"此处没有可显示\",\n            \"for the selected date range\": \"所选日期范围内的任何提交历史记录\",\n            \"There isn't any commit history to show here for the selected date range\": \"这里没有显示所选日期范围内的任何提交历史记录\",\n\n        // 新版提交 commits 页面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            // 用户筛选\n                \"All users\": \"所有用户\",\n                \"Find a user...\": \"寻找一个用户……\",\n                \"Filter on author\": \"筛选作者：\",\n                \"View commits for all users\": \"查看所有用户的提交\",\n            // 时间筛选\n                \"All time\": \"所有时间\",\n                \"Today\": \"今天\",\n            \"Clear\": \"清除\",\n            \"Browse repository at this point\": \"查看此时间点的仓库\",\n            \"View code at this point\": \"查看此时间点的代码\",\n\n            // 日历\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n            // [/Copy full SHA for ([a-f0-9]{7})/, \"复制提交 $1 的完整 SHA\"],\n            // [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n            // [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n\n        // 提交中文件历史 /<user-name>/<repo-name>/commits/<branch>/<file> 或 /<user-name>/<repo-name>/commits/<full SHA>/<file>\n            \"History for\": \"历史：\",\n            \"View at this point in the history\": \"在这一历史节点上查看\",\n\n            // [/Renamed from/, \"重命名自\"], // 提交中文件历史\n            \"(Browse History)\": \"（浏览历史）\",\n\n        // 提交中文件夹历史 /<user-name>/<repo-name>/commits/<branch>/<folder> 或 /<user-name>/<repo-name>/commits/<full SHA>/<folder>\n            \"End of commit history for this file\": \"此文件的提交历史结束\",\n\n        // 2/commits?author=maboloshi&since=2021-09-30&until=2021-10-13\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的东西？请看一下\",\n            \"GitHub commits guide\": \"GitHub 提交指南\",\n\n        // 新版提交页\n            \"More actions\": \"更多操作\",\n            // 具体某条提交\n            \"authored and\": \"撰写和\",\n            \"authored\": \"撰写于\",\n\n            // 左侧文件管理器\n            \"Filter options\": \"筛选…\",\n            \"Filter files…\": \"筛选文件…\",\n                \"File extensions\": \"文件扩展名\",\n                \"No extension\": \"无扩展名\",\n\n            // 中间\n            \"file\": \"个文件\",\n                \"s\": \" \",\n                \"changed\": \"更改\",\n\n            // 展开/收起文件树按钮\n                \"Collapse file tree\": \"收起文件树\",\n                \"Expand file tree\": \"展开文件树\",\n\n            // 展开/收起文件按钮\n                \"Collapse file\": \"收起文件\",\n                \"Expand file\": \"展开文件\",\n            // 复制文件按钮\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n\n            \"There are no files selected for viewing\": \"没有更改\",\n\n            // 右侧\n            \"Search within code\": \"在代码中搜索\",\n            \"Top\": \"顶部\",\n            \"Open diff view settings\": \"打开差异视图设置\",\n                \"Layout\": \"布局\",\n                    \"Hide whitespace\": \"隐藏空白\",\n                    \"Compact line height\": \"自定义行高\",\n\n                \"View comments\": \"查看评论\",\n                    \"Loading comments\": \"加载评论中\",\n                    \"Comment on lines\": \"评论于行\",\n\n                \"Select all\": \"全选\",\n                \"Expand above\": \"向上展开\",\n                \"Expand below\": \"向下展开\",\n                \"Go to previous hunk\": \"上一块\",\n                \"Go to next hunk\": \"下一块\",\n\n            \"Customizable line height\": \"自定义行高\",\n                \"The default line height has been increased for improved accessibility. You can choose to enable a more compact line height from the view settings menu.\": \"默认行高已增加，以提高可访问性。您可以从视图设置菜单中选择启用更紧凑的行高。\",\n                \"Enable compact line height\": \"启用自定义行高\",\n                \"Dismiss\": \"禁用\",\n\n            // 底部评论\n            \"Comments\": \"评论\",\n            \"edited by\": \"编辑者\",\n            \"Edits\": \"编辑\",\n                \"Most recent\": \"最近\",\n                \"Deleted\": \"已删除\",\n            \"Lock\": \"锁定\",\n                \"conversation\": \"对话\",\n                \"Off-topic\": \"偏离主题\",\n            \"Load more comments\": \"加载更多评论\",\n            \"Reference in a new issue\": \"在新议题中提及\",\n            \"Add Files\": \"添加文件\",\n            \"You're not receiving notifications from this thread.\": \"您没有收到来自此主题的通知。\",\n            \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因为您订阅了此主题。\",\n            \"Return to code\": \"返回代码\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) parents?/, \"$1 个父\"],\n        [/lines? changed/, \"行更改\"],//新版提交页面\n        [/(\\d+) changed files?/, \"$1 个更改的文件\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?$/, \"$1 处更改：$2 处增加和 $3 处删除\"],\n        [/(\\d+) additions?$/, \"$1 处增加\"],\n        [/(\\d+) deletions?$/, \"$1 处删除\"],\n        [/This commit closes issue (#\\d+)./, \"此提交关闭了议题 $1。\"], //具体提交页面\n        [/from ([^ ]+) to ([^ ]+)/, \"从 $1 到 $2。\"], //具体提交页面\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/(\\d+) comments? on commit/, \"该提交有 $1 条评论\"],\n        [/Edited (\\d+) times?/, \"编辑 $1 次\"],\n        // [/Commits (.+)/, \"提交于 $1\"], // 提交页面 /<user-name>/<repo-name>/commits/<branch\n        [/Renamed from/, \"重命名自\"], // 提交中文件历史\n        [/Copy full SHA for ([a-f0-9]{7})/, \"复制提交 $1 的完整 SHA\"],\n        [/Show description for ([a-f0-9]{7})/, \"显示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隐藏提交 $1 的描述\"],\n        [/View (\\d+) commit comments?/, \"查看 $1 条提交评论\"], // 新版提交 commits 页面 /<user-name>/<repo-name>/commits/<branch>\n        [/View checks?/, \"查看检查\"], // Android UA\n        [/Add a comment on line (L|R)(\\d+)/, \"在 $1$2 行添加评论\"], // 新版提交详情页\n        [/Add a comment on lines (L|R)(\\d+) to (L|R)(\\d+)/, \"在 $1$2 行到 $3$4 行上添加评论\"],\n        [/Start conversation on line (L|R)(\\d+)/, \"在 $1$2 行开始讨论\"], // 新版提交详情页\n        [/Expand all lines: ([^ ]+)/, \"展开全部：$1\"],\n        [/Collapse file: ([^ ]+)/, \"折叠文件：$1\"],\n        [/Collapse non-diff lines: ([^ ]+)/, \"折叠无差异行：$1\"],\n        [/(\\d+) tags?/, \"$1 标签\"], // 出现位置：某提交所跨标签数\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/blob\"] = { // 仓库 - 浏览代码\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 公共部分\n            // 许可证文件 中间栏 顶部 权限信息\n                \"the\": \"为：\", // 上半句走正则\n\n                // 许可证类型\n                    \"GNU General Public License v3.0\": \"GNU 通用公共许可证 v3.0\",\n                    \"GPL-3.0 License\": \"GPL-3.0 许可证\",\n                    \"AGPL-3.0 License\": \"AGPL-3.0 许可证\",\n                    \"LGPL-3.0 License\": \"LGPL-3.0 许可证\",\n                    \"MIT License\": \"MIT 许可证\",\n                    \"Apache License 2.0\": \"Apache-2.0 许可证\",\n                    \"OFL-1.1 License\": \"OFL-1.1 许可证\",\n                    \"0BSD License\": \"0BSD 许可证\",\n                    \"BSD-3-Clause License\": \"BSD-3-Clause 许可证\",\n                    \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 许可证\",\n                    \"CC0-1.0 License\": \"CC0-1.0 许可证\",\n                    \"WTFPL License\": \"WTFPL 许可证\",\n                    \"Unknown\": \"未知\",\n\n                // 许可证概述 懒得翻译 O(∩_∩)O哈哈~\n\n                // 许可证范围, 限制, 条件\n                    \"Permissions\": \"许可事项\",\n                    \"Limitations\": \"限制条件\",\n                        \"Commercial use\": \"商业用途\",\n                        \"Modification\": \"修改\",\n                        \"Distribution\": \"分布\",\n                        \"Patent use\": \"专利使用\",\n                        \"Private use\": \"私人使用\",\n                        \"Trademark use\": \"商标使用\",\n                        \"Liability\": \"责任\",\n                        \"Warranty\": \"担保\",\n                        \"Disclose source\": \"开源\",\n                        \"Same license\": \"相同的许可证\",\n                    \"Conditions\": \"条件\",\n                        \"License and copyright notice\": \"许可和版权声明\",\n                        \"State changes\": \"状态变化\",\n                        \"License and copyright notice for source\": \"来源许可和版权声明\",\n                        \"Network use is distribution\": \"网络使用即分发\",\n                        \"Same license (library)\": \"相同的许可证（库）\",\n                        \"Same license (file)\": \"相同的许可证（文件）\",\n\n                \"This is not legal advice.\": \"这并不是法律建议。\",\n                \"Learn more about repository licenses\": \"了解更多关于仓库许可证的信息\",\n\n\n        // 文件代码页面 /<user-name>/<repo-name>/blob/<brach>/<file>\n            // 顶部提醒\n                \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"此提交不属于该仓库上的任何分支，并且可能属于仓库的外部分支。\",\n\n            // 快捷键\n                \"Source code browsing\": \"源代码浏览\",\n                    \"Jump to line\": \"跳转到行\",\n                    \"Switch branch/tag\": \"切换分支/标签\",\n                    \"Expand URL to its canonical form\": \"将 URL 扩展为其规范形式\",\n                    \"Show/hide all inline notes\": \"显示/隐藏所有内嵌注释\",\n                    \"Open blame\": \"打开追溯视图\",\n                    \"Copy file path\": \"复制文件路径\",\n                    \"Toggle symbols panel\": \"切换符号面板\",\n                    \"Toggle file tree\": \"切换文件树\",\n                    \"Open code view\": \"打开代码视图\",\n                    \"Open preview\": \"打开预览\",\n                    \"Open raw file\": \"打开源文件\",\n                \"File tree\": \"文件树\",\n                    \"Move focus to row starting with string\": \"将焦点移至字符串\",\n                    \"Focus previous row\": \"聚焦上一行\",\n                    \"Focus next row\": \"聚焦下一行\",\n                    \"Collapse row, or focus parent row\": \"折叠行或聚焦父行\",\n                    \"Expand row, or focus child row\": \"展开行或聚焦子行\",\n\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                // 搜索框\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            // Git LFS 托管的文件\n                \"Stored with Git LFS\": \"Git LFS 托管\",\n\n            // Action的 action.yml 文件\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以将此 Action 发布到 GitHub 市场\",\n                \"Draft a release\": \"起草发布\",\n            // 工作流程文件 /blob/<brach>/.github/workflows/xxxx.yml\n                \"View Runs\": \"查看运行情况\",\n            // 议题模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.yml\n                \"This file is used as an Issue Form template.\": \"该文件用作议题表单模板。\",\n                \"Give Feedback.\": \"提交反馈。\",\n            // 议题模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.md\n                \"info\": \"信息\",\n                \"This file is used as a markdown issue template.\": \"该文件用作 Markdown 议题模板。\",\n            // 添加文件按钮, 文件夹模式下\n                \"Add file\": \"添加文件\",\n            // 三个点\n                \"Raw file content\": \"原始文件内容\",\n                    // \"Jump to line\": \"跳转到行\",\n                    \"Find in file\": \"在文件中查找\", // 激活 “换行” 时显示\n                    \"Copy path\": \"复制路径\",\n                    \"Copy permalink\": \"复制永久链接\",\n                    \"View options\": \"查看选项\",\n                        \"Show code folding buttons\": \"显示代码折叠按钮\",\n                        \"Wrap lines\": \"换行\",\n                        \"Center content\": \"核心内容\",\n                        \"Open symbols on click\": \"单击打开符号\",\n                    \"Ask about this file\": \"讨论此文件\",\n                    \"Delete file\": \"删除文件\",\n\n            \"Copied path!\": \"✅ 路径已复制！\",\n\n            \"History\": \"历史\",\n\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n            // 正文 - 错误信息，例如某些二进制文件\n                \"Error rendering embedded code\": \"嵌入代码渲染错误\",\n                    \"Invalid PDF\": \"无效 PDF\",\n\n            // 代码操作栏\n                \"Blame\": \"追溯\",\n                \"Your blame took too long to compute.\": \"追溯花了太长时间来计算。\",\n                // [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行 ($1 个位置) ·\"],\n                // Copilot 广告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 编码速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的时间创建模板和重复的代码模式，花更多的时间构建优秀的软件。在 GitHub 代码空间或您最喜欢的文件编辑器中尝试一下哈。\",\n                        \"Get GitHub Copilot\": \"获取 GitHub Copilot\",\n                        \"Don't show again\": \"不再显示\",\n\n                \"Executable File\": \"可执行文件\",\n                \"executable file\": \"可执行文件\",\n\n                // Copilot\n                \"Ask Copilot about this file\": \"与 Copilot 讨论此文件\",\n\n                \"Raw\": \"源码\",\n                // 文件复制图标\n                    \"Copy raw file\": \"复制原始文件\",\n                    \"Copy raw content\": \"复制原始文件\",\n                // 文件下载图标\n                    \"Download raw file\": \"下载原始文件\",\n                // 文件编辑图标\n                    \"More file actions\": \"更多文件操作\",\n                    \"Edit this file\": \"编辑本文件\",\n                        \"More edit options\": \"更多编辑选项\",\n                            \"Edit file...\": \"编辑文件…\",\n                            \"In place\": \"就地编辑\",\n                    \"Edit the file in your fork of this project\": \"在您的复刻中编辑文件\",\n                        \"Edit file\": \"编辑文件\",\n                            \"Edit in place\": \"就地编辑\",\n                        \"Open with...\": \"打开…\",\n                            \"You must be on a branch to make or propose changes to this file\": \"您必须在分支上才能对该文件进行修改或提出修改建议\",\n\n                    // 按钮提示\n                    \"Fork this repository and edit the file\": \"复刻此仓库并编辑文件\",\n                // 符号面板图标\n                    \"Open symbols panel\": \"打开符号面板\",\n                    \"Close symbols panel\": \"关闭符号面板\",\n\n            // 代码视图 行号栏 菜单\n                \"Copy line\": \"复制行\",\n                \"Copy lines\": \"复制行\",\n                \"Copy permalink\": \"复制永久链接\",\n                \"View git blame\": \"浏览 Git 追溯\",\n                \"Reference in new issue\": \"引用到新议题\",\n                \"Reference in new discussion\": \"引用到新讨论\",\n                \"View file in GitHub.dev\": \"在 GitHub.dev 中查看文件\",\n                \"View file in different branch/tag\": \"查看不同分支/标签中的文件\",\n\n            // 提醒\n                \"This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.\": \"此文件包含双向 Unicode 文本，其解释或编译方式可能与下面的显示不同。要查看，请在一个能显示隐藏的 Unicode 字符的编辑器中打开文件。\",\n                \"Learn more about bidirectional Unicode characters\": \"了解更多关于双向 Unicode 字符的信息\",\n                \"Show hidden characters\": \"显示隐藏字符\",\n                \"Code view is read-only.\": \"代码视图只读。\",\n                    \"Switch to the editor.\": \"切换到编辑器。\",\n\n            // 代码视图底部\n                \"View remainder of file in raw view\": \"以原码视图查看文件剩余部分\",\n\n            // 正文部分\n                // 只读模式\n                    \"Code view is read-only. \": \"代码视图是只读的。\",\n                    \"Switch to the editor.\": \"请切换至编辑器。\",\n                // csv 文件\n                    \"Search this file\": \"搜索这个文件\", // csv 文件\n                    // 提醒\n                        \"We can make this file\": \"如果纠正此错误，我们可以使该文件\",\n                        \"beautiful and searchable\": \"美观且可搜索\",\n                        \"if this error is corrected: No commas found in this CSV file in line 0.\": \"：在此 CSV 文件中的第 0 行中找不到逗号。\",\n\n                // 大文件\n                    \"View raw\": \"查看原始数据\",\n                    \"(Sorry about that, but we can’t show files that are this big right now.)\": \"（很抱歉，但我们现在无法显示这么大的文件。）\",\n                // 无法渲染\n                    \"Sorry, something went wrong.\": \"抱歉，出了一些问题。\",\n                    \"Reload?\": \"重新加载？\",\n                    \"Unable to render code block\": \"无法渲染代码块\",\n\n            \"More Pages\": \"更多页面\",\n\n            // Markdown 文件右侧大纲面板\n                \"Outline\": \"大纲\",\n                    \"Close outline\": \"关闭大纲\",\n                    \"Filter headings\": \"筛选标题\",\n\n            // 右侧符号面板\n                \"Symbols\": \"符号\",\n                    \"Close symbols\": \"关闭符号面板\",\n                    \"Symbol outline not available for this file\": \"大纲不适用于此文件\",\n                    \"To inspect a symbol, try clicking on the symbol directly in the code view.\": \"要检查一个符号，可以尝试在代码视图中直接点击该符号。\",\n                    \"Code navigation supports a limited number of languages.\": \"代码导航支持有限数量的语言。\",\n                    \"See which languages are supported.\": \"查看支持哪些语言。\",\n\n                    \"Find definitions and references for functions and other symbols in this file by clicking a symbol below or in the code.\": \"通过点击下方或代码中的符号，查找此文件中函数和其他符号的定义和引用。\",\n                    \"Filter symbols\": \"筛选符号\",\n\n                \"All Symbols\": \"所有符号\",\n                    \"Search for this symbol in this repository\": \"在此仓库中搜索此符号\",\n                    \"all repositories.\": \"所有仓库。\",\n                    \"In this file\": \"在这个文件中\",\n                    \"Definition\": \"定义\",\n                    \"search-based\": \"基于搜索\",\n                    \"References\": \"引用\",\n                    \"Reference\": \"引用\",\n                    \"No definitions or references found\": \"未找到定义或引用\",\n                    \"Search for this symbol\": \"搜索此符号\",\n\n        // 代码追溯页面 /<user-name>/<repo-name>/blame/<branch>/<file>\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n            \"Contributor\": \"贡献者\",\n            \"Contributors\": \"贡献者\",\n\n            // 浮动搜索框\n                \"Find\": \"查找\",\n                \"Press\": \"按\",\n                \"again to open the browser's find menu\": \"打开浏览器的查找菜单\",\n                \"Search this file\": \"搜索此文件\",\n\n            \"Ask Copilot about this snippet\": \"向 Copilot 询问此片段\",\n                \"Explain\": \"解释\",\n                \"Suggest improvements\": \"提出优化建议\",\n                \"Attach to current thread\": \"附加至当前话题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 代码行（line of code）= 行数 - 空行数（lines - blank lines）\n        [/(\\d+) References?/, \"$1 次引用\"],\n        [/Blame prior to change ([a-f0-9]{7}), made on ([^ ]+)/, \"追溯提交 $1，创建于 $2\"],\n\n        // 代码追溯页面\n        [/(\\d+) contributors?/, \"$1 位贡献者\"],\n        [/(\\d+) commits?/, \"$1 个提交\"],\n\n        // 许可证\n        [/([^ ]+) is licensed under/, \"$1 的许可证\"],\n\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n\n        [/Line (\\d+) options/, \"行 $1 选项\"], // TODO: 修复翻译未生效问题\n\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/blame\"] = I18N[\"zh-CN\"][\"repository/blob\"];\n\nI18N[\"zh-CN\"][\"repository/discussions\"] = { // 讨论页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 没有任何讨论时\n            \"Get started with GitHub Discussions\": \"开始使用 GitHub 讨论\",\n                \"Discussions is a central gathering space for your community to ask questions, share ideas, and build connections with each other—all right next to your code.\": \"讨论是一个社区成员集中交流的空间，大家可以在这里提问、分享想法，并彼此建立联系——而且这一切都在您的代码旁边完成。\",\n\n                \"Get Started\": \"开始使用\",\n                \"Not now\": \"暂不\",\n\n                \"Only maintainers can see this page and enable Discussions\": \"只有维护者能看到此页面并启用讨论\",\n\n            // 用法介绍\n                // 自定义分类\n                    \"Create custom categories and discussion types to suit your community's unique needs.\": \"创建自定义类别和讨论类型，以满足您社区的独特需求。\",\n                \"Mark the most helpful answer\": \"标记答案\",\n                    \"Highlight quality responses and make the best answer super discoverable.\": \"突出优质回答，让最佳答案易于被发现。\",\n                \"Pin big announcements\": \"置顶功能\",\n                    \"Direct the community’s attention to important announcements or popular discussions.\": \"将社区的关注引导至重要公告或热门讨论。\",\n                \"Label your discussions\": \"标签功能\",\n                    \"Organize and triage discussions to keep your space tidy and help contributors filter to areas of interest.\": \"组织和筛选讨论内容，以保持社区空间整洁，并帮助参与者过滤到感兴趣的领域。\",\n                \"Respond on-the-go with mobile\": \"通过移动端随时响应\",\n                    \"Check in and respond to discussions whenever and wherever is convenient for you.\": \"随时随地在方便的时候查看并回复讨论。\",\n                \"Connect to your apps\": \"链接应用\",\n                    \"Integrate with your existing workflows and GitHub Actions via the GraphQL API and webhooks.\": \"通过 GraphQL API 和 Web 钩子与现有工作流程及 GitHub Actions 集成。\",\n                \"Thread your conversations\": \"串联对话\",\n                    \"Keep conversations on track and encourage collaboration with threaded comments.\": \"通过串联评论让对话保持正轨并促进协作。\",\n                \"Monitor community insights\": \"社区数据看板\",\n                    \"Track the health and growth of your community with a dashboard full of actionable data.\": \"通过充满可操作数据的仪表盘，追踪社区的健康状况与发展情况。\",\n                \"Ask your community with polls\": \"社区投票\",\n                    \"Gauge interest in a feature, vote on a meetup time, or learn more about your community with polls.\": \"通过投票来衡量对某项功能的兴趣、对聚会时间进行表决，或进一步了解您的社区情况。\",\n\n            \"Communities using Discussions\": \"使用讨论交流\",\n\n            \"Ready to try Discussions?\": \"准备尝试讨论？\",\n                \"Click “get started” to enable it for your community and start your first discussion. Now is not the right time? Click “not now” to dismiss this tab. You can always turn Discussions on in your repository settings later.\": \"点击 “开始使用” 即可为您的社区启用该功能，并发起您的首次讨论。现在不方便操作？点击 “暂不” 可关闭此标签页。您也可以稍后在仓库设置中随时开启讨论功能。\",\n\n            \"Read about best practices for setting up Discussions for your community.\": \"了解为社区设置讨论功能的最佳实践。\",\n                \"Visit the docs\": \"查看\",\n\n        // 讨论页面 /<user-name>/<repo-name>/discussions\n        // 组织讨论页 /orgs/<orgs-name>/discussions\n            // 顶部提示\n                \"You can't perform that action at this time.\": \"您现在不能执行该操作。\",\n\n            \"Start a new discussion\": \"开始新的讨论\",\n            \"Get started by creating the first\": \"开始吧，为您的社区创建\",\n            \"discussion for your community.\": \"第一个讨论。\",\n            \"Got it\": \"知道了\",\n\n            \"About pinned discussions\": \"关于置顶讨论\",\n            \"When you start a discussion,\": \"当您开始讨论时，\",\n            \"you can choose to feature it\": \"您可以选择将\",\n            \"here by pinning it.\": \"其置顶在此处。\",\n\n            \"Personalize your categories\": \"自定义您的分类\",\n            \"Choose categories that fit your community. These could be announcements, Q&A with marked answers, open-ended conversations, or polls for community voting.\": \"选择适合您社区的类别。这些可以是公告、带有标记答案的问答、开放式对话或用于调查的社区投票。\",\n\n            \"Welcome to discussions!\": \"欢迎参与讨论！\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more.\": \"讨论是为了分享公告，在您的社区创造对话，回答问题，以及更多。\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more. To get started, you can create a\": \"讨论是为了分享公告，在您的社区创造对话，回答问题，以及更多。首先，您可以创建一个\",\n\n            // 组织讨论\n            \"Welcome to Organization Discussions!\": \"欢迎参与组织讨论！\",\n            \"There are no discussions here yet\": \"这里还没有讨论\",\n            \"Organization discussions are to broadcast news, create conversation in your community, answer questions, and share ideas. To get started, you can\": \"组织讨论是为了广播新闻，在您的社区创造对话，回答问题，并分享想法。要开始，您可以\",\n            \"create a new discussion.\": \"创建新的讨论。\",\n\n            // 左侧栏\n            \"Submit search\": \"提交搜索\",\n            \"Search all discussions\": \"搜索所有讨论\",\n            \"Suggested filters\": \"推荐的筛选器\",\n            \"filter by discussion author\": \"按讨论作者筛选\",\n            \"filter by discussion category\": \"按讨论分类筛选\",\n            \"filter by answered or unanswered\": \"按已答复或未答复筛选\",\n\n            \"Categories\": \"分类\",\n            \"View all discussions\": \"查看全部讨论\", // 组织讨论\n            \"View all\": \"查看全部\", // 仓库讨论\n\n            \"Most helpful\": \"最有帮助\",\n                \"Be sure to mark someone’s comment as an answer if it helps you resolve your question — they deserve the credit!\": \"如果某人的评论有助于您解决问题，请务必将其标记为答案——他们值得称赞！\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Community guidelines\": \"社区指南\",\n            \"Community insights\": \"社区见解\",\n\n            //\n            \"Sort by:\": \"排序方式：\",\n                \"Latest activity\": \"最新活动\",\n                \"Date created\": \"创建日期\",\n                \"Top: Past week\": \"置顶：过去一周\",\n                \"Top: Past month\": \"置顶：过去一月\",\n                \"Top: Past day\": \"置顶：过去一天\",\n                \"Top: Past year\": \"置顶：过去一年\",\n                \"Top: All\": \"置顶：所有\",\n            \"Label\": \"标签\",\n                \"Filter by label\": \"按标签筛选\",\n                \"Filter labels\": \"筛选标签\",\n                \"Unlabeled\": \"无标签\",\n\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些东西不工作\",\n                \"dependencies\": \"依赖性\",\n                    \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n                \"documentation\": \"文档\",\n                    \"Improvements or additions to documentation\": \"文档的改进或补充\",\n                \"duplicate\": \"重复\",\n                    \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n                \"enhancement\": \"增强\",\n                    \"New feature or request\": \"新功能或请求\",\n                \"good first issue\": \"好的首发议题\",\n                    \"Good for newcomers\": \"适合新人\",\n                \"help wanted\": \"需要帮助\",\n                    \"Extra attention is needed\": \"需要特别关注\",\n                \"invalid\": \"无效\",\n                    \"This doesn't seem right\": \"这似乎不对\",\n                \"question\": \"问题\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不会修复\",\n                    \"This will not be worked on\": \"这将不会被处理\",\n\n                \"Edit labels\": \"编辑标签\",\n            \"Filter\": \"筛选\",\n            \"Filter:\": \"筛选:\",\n                \"Closed\": \"已关闭\",\n                \"Answered\": \"已答复\",\n                \"Unanswered\": \"未答复\",\n                \"Locked\": \"锁定\",\n                \"Unlocked\": \"未锁定\",\n                \"All\": \"所有\",\n\n            \"New discussion\": \"新建讨论\",\n\n            \"There aren't any discussions.\": \"暂无任何讨论。\",\n            \"There are no matching discussions.\": \"没有匹配的讨论。\",\n            \"There are no matching answered discussions.\": \"没有匹配的已答复讨论。\",\n            \"There are no matching unanswered discussions.\": \"没有匹配的未答复讨论。\",\n            \"You can open a\": \"您可以打开一个\",\n            \"new discussion\": \"新讨论\",\n            \"to ask questions about this repository or get help.\": \"，询问关于这个仓库的问题或获得帮助。\",\n\n            \"asked\": \"回复\",\n            \"started\": \"开始于\",\n            \"· Unanswered\": \" · 未答复\",\n            \"· Answered\": \" · 已答复\",\n\n            // 下拉补充\n            \"Use\": \"使用\",\n            \"click/return\": \"点击/回车\",\n            \"to exclude labels.\": \"去排除标签。\",\n\n            // 状态词\n            \"asked a question in\": \"提出了一个问题在\",\n            \"Unanswered Question\": \"未解答的问题\",\n            \"announced\": \"公布于\",\n            \"in\": \"在\",\n\n        // 讨论分类 /<user-name>/<repo-name>/discussions/categories\n            \"Manage discussion categories\": \"管理讨论分类\",\n                \"Sections are a dropdown of categories. Categories have types of discussions, and discussions within them.\": \"本栏目是类别的下拉菜单。类别中包含讨论类型和讨论内容。\",\n            // [/(\\d+) categories?/, \"$1 个分类\"],\n            \"Categories without section\": \"无栏目分类\",\n            \"Announcements\": \"公告\",\n                \"Updates from maintainers\": \"维护者的更新信息\",\n            \"General\": \"通常\",\n                \"Chat about anything and everything here\": \"在这里谈论任何事情\",\n            \"Ideas\": \"想法\",\n                \"Share ideas for new features\": \"分享对新功能的想法\",\n            \"Polls\": \"投票\",\n                \"Take a vote from the community\": \"社区中进行投票\",\n            \"Q&A\": \"问答\",\n                \"Ask the community for help\": \"向社会寻求帮助\",\n                \"Answers enabled\": \"已启用答案\",\n            \"Show and tell\": \"展示与讲述\",\n                \"Show off something you've made\": \"炫耀您所做的事情\",\n\n            \"New section\": \"新建栏目\",\n            \"New category\": \"新建分类\",\n\n            \"Edit Announcements category\": \"编辑 “公告” 分类\",\n            \"Edit General category\": \"编辑 “通常” 分类\",\n            \"Edit Ideas category\": \"编辑 “想法” 分类\",\n            \"Edit Polls category\": \"编辑 “投票” 分类\",\n            \"Edit Q&A category\": \"编辑 “问与答” 分类\",\n            \"Edit Show and tell category\": \"编辑 “展示与讲述” 分类\",\n\n            \"Delete Announcements category\": \"删除 “公告” 分类\",\n            \"Delete General category\": \"删除 “通常” 分类\",\n            \"Delete Ideas category\": \"删除 “想法” 分类\",\n            \"Delete Polls category\": \"删除 “投票” 分类\",\n            \"Delete Q&A category\": \"删除 “问与答” 分类\",\n            \"Delete Show and tell category\": \"删除 “展示与讲述” 分类\",\n\n            // 删除分类\n                \"If this category has discussions associated, where would you like to reassign them?\": \"如果此类别有相关的讨论，您希望将它们重新分配到何处？\",\n                \"Delete and move\": \"删除并移动\",\n\n            // 删除栏目\n                // [/Delete (.*) section/, \"删除 “$1” 栏目\"],\n                \"Are you sure you want to delete this section? All categories in this section will no longer belong to a section.\": \"您确定要删除此栏目吗？此栏目中的所有分类将不再属于一个栏目。\",\n\n        // 新建 & 编辑 分类 /<user-name>/<repo-name>/discussions/categories/new\n        // /<user-name>/<repo-name>/discussions/categories/<id>/edit\n            \"Create category\": \"创建分类\",\n            \"Edit category\": \"编辑分类\",\n            \"Category name\": \"分类名称\",\n            \"Description\": \"描述\",\n            \"Add a description (optional)\": \"添加描述（可选）\",\n            \"Discussion Format\": \"讨论形式\",\n                \"Open-ended discussion\": \"开放式讨论\",\n                    \"Enable your community to have conversations that don't require a definitive answer to a question. Great for sharing tips and tricks or just chatting.\": \"使您的社区能够进行对话，不需要对问题作出明确的回答。很适合分享技巧和窍门，或者只是聊天。\",\n                \"Question / Answer\": \"问 / 答\",\n                    \"Enable your community to ask questions, suggest answers, and vote on the best suggested answer.\": \"使您的社区能够提出问题、建议答案并投票选出最佳建议答案。\",\n                \"Announcement\": \"公告\",\n                    \"Share updates and news with your community. Only maintainers and admins can post new discussions in these categories, but anyone can comment and reply.\": \"与您的社区分享更新和新闻。只有维护者和管理员可以在这些类别中发布新讨论，但任何人都可以发表评论和回复。\",\n                \"Poll\": \"投票\",\n                    \"Gauge interest, vote, and interact with other community members using polls.\": \"调查兴趣，投票，并使用投票与其他社区成员互动。\",\n                    \"Cannot be changed to polls. Please create a new category for polls.\": \"不能更改为投票。请为投票创建一个新类别。\",\n            \"Add this category to a section (optional)\": \"将此分类添加到一个栏目（可选）\",\n                \"No section\": \"无栏目\",\n\n            \"Submitting\": \"提交中\",\n\n            // 顶部提醒\n                \"Category Announcements has been created.\": \"分类 “公告” 已创建\",\n                \"Category General has been created.\": \"分类 “通常” 已创建\",\n                \"Category Ideas has been created.\": \"分类 “想法” 已创建\",\n                \"Category Polls has been created.\": \"分类 “投票” 已创建\",\n                \"Category Q&A has been created.\": \"分类 “问与答” 已创建\",\n                \"Category Show and tell has been created.\": \"分类 “展示与讲述” 已创建\",\n\n                \"Category Announcements has been updated.\": \"分类 “公告” 已更新\",\n                \"Category General has been updated.\": \"分类 “通常” 已更新\",\n                \"Category Ideas has been updated.\": \"分类 “想法” 已更新\",\n                \"Category Polls has been updated.\": \"分类 “投票” 已更新\",\n                \"Category Q&A has been updated.\": \"分类 “问与答” 已更新\",\n                \"Category Show and tell has been updated.\": \"分类 “展示与讲述” 已更新\",\n\n                \"Category Announcements has been deleted.\": \"分类 “公告” 已删除\",\n                \"Category General has been deleted.\": \"分类 “通常” 已删除\",\n                \"Category Ideas has been deleted.\": \"分类 “想法” 已删除\",\n                \"Category Polls has been deleted.\": \"分类 “投票” 已删除\",\n                \"Category Q&A has been deleted.\": \"分类 “问与答” 已删除\",\n                \"Category Show and tell has been deleted.\": \"分类 “展示与讲述” 已删除\",\n\n                // [/Category \\\"(.*)\\\" has been created./, \"分类 “$1” 已创建。\"],\n                // [/Category \\\"(.*)\\\" has been updated./, \"分类 “$1” 已更新。\"],\n                // [/Category \\\"(.*)\\\" has been deleted./, \"分类 “$1” 已删除。\"],\n\n        // 新建 & 编辑栏目 /<user-name>/<repo-name>/discussions/sections/new\n            \"Create section\": \"创建栏目\",\n            \"Section name\": \"栏目名称\",\n            \"Add categories to this section\": \"向栏目添加分类\",\n            \"A category can only belong to one section at a time.\": \"一个分类一次只能属于一个栏目。\",\n\n            // 顶部提醒\n                // [/Section \\\"(.*)\\\" has been created./, \"栏目 “$1” 已创建。\"],\n                // [/Section \\\"(.*)\\\" has been updated./, \"栏目 “$1” 已更新。\"],\n                // [/Section \\\"(.*)\\\" has been deleted./, \"栏目 “$1” 已删除。\"],\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new\n            \"Start a new discussion\": \"开始新的讨论\",\n            \"Select a discussion category\": \"选择讨论分类\",\n            \"Get started\": \"开始\",\n            \"Category:\": \"分类：\",\n            \"Contributing\": \"贡献\",\n            \"It looks like this is your first time starting a discussion in this repository!\": \"看起来这是您第一次在此仓库中开始讨论！\",\n            \"This is a community we build together. Please be welcoming and open minded.\": \"这是我们共同建立的社区。请保持热情和开放的态度。\",\n\n            // 投票类\n            \"Poll question\": \"投票问题\",\n            \"Ask your question here (required)\": \"在此提出您的问题（必填）。\",\n            \"Poll options\": \"投票选项\",\n            \"Option 1 (required)\": \"选项 1（必填）\",\n            \"Option 2 (required)\": \"选项 2（必填）\",\n            \"Option\": \"选项\",\n            \"+ Add an option\": \"+ 增加选项\",\n\n            // 右侧栏\n            \"Labels\": \"标签\",\n                \"None yet\": \"暂无\",\n            \"Helpful resources\": \"帮助性资源\",\n            \"Code of conduct\": \"行为准则\",\n            \"Security policy\": \"安全政策\",\n            \"Support\": \"支持\",\n            \"GitHub Community Guidelines\": \"GitHub 社区准则\",\n\n            \"Ask a question, start a conversation, or make an announcement\": \"提出问题、开始对话或发布公告\",\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new?category=general\n            \"If this doesn’t look right you can\": \"如果这个看起来不对，您可以\",\n            \"choose a different category.\": \"选择不同的类别。\",\n            \"Fields marked with an asterisk (*) are required.\": \"标有星号（*）的字段是必填字段。\",\n            \"Discussion title\": \"讨论标题\",\n\n        // 新建讨论页面 /<user-name>/<repo-name>/discussions/new?category=announcements&welcome_text=true\n            \"Since you're new here, we're helping you to get started by generating your first post to the community. Don't worry, you can edit this discussion after you post!\": \"由于您是新来的，我们正在帮助您开始向社区发布您的第一个帖子。不用担心，您可以在发布后编辑此讨论！\",\n\n        // 某个讨论页面 /<user-name>/<repo-name>/discussions/<id>\n            // [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已经在 $1 中创建了第一个讨论!\"],\n\n            // 顶部提醒\n                \"Discussion has successfully been pinned.\": \"讨论已成功置顶。\",\n                \"Discussion has been unpinned.\": \"讨论已取消置顶。\",\n                \"Discussion pinned to Announcements\": \"在 “公告” 上置顶讨论\",\n                \"Discussion pinned to General\": \"在 “通常” 上置顶讨论\",\n                \"Discussion pinned to Ideas\": \"在 “想法” 上置顶讨论\",\n                \"Discussion pinned to Polls\": \"在 “投票” 上置顶讨论\",\n                \"Discussion pinned to Q&A\": \"在 “问与答” 上置顶讨论\",\n                \"Discussion pinned to Show and tell\": \"在 “展示与讲述” 上置顶讨论\",\n                \"Discussion unpinned from Announcements\": \"取消在 “公告” 上置顶讨论\",\n                \"Discussion unpinned from General\": \"取消在 “通常” 上置顶讨论\",\n                \"Discussion unpinned from Ideas\": \"取消在 “想法” 上置顶讨论\",\n                \"Discussion unpinned from Polls\": \"取消在 “投票” 上置顶讨论\",\n                \"Discussion unpinned from Q&A\": \"取消在 “问与答” 上置顶讨论\",\n                \"Discussion unpinned from Show and tell\": \"取消在 “展示与讲述” 上置顶讨论\",\n\n            \"Pinned\": \"已置顶\",\n\n            \"announced in\": \"宣布于\",\n            \"started this conversation in\": \"开始了这次讨论，在\",\n            \"asked this question in\": \"提出了这个问题，在\",\n            \"Maintainer\": \"维护者\",\n            \"Sponsor\": \"赞助者\",\n            \"Discussion options\": \"讨论选项\",\n            \"Category\": \"分类\",\n\n            \"You are a maintainer on this repository.\": \"您是这个仓库的维护者。\",\n            \"You are the author of this discussion.\": \"您是这个讨论的作者。\",\n\n            // [/(\\d+) answers?/, \"$1 位答复者\"],\n            \"Return to top\": \"返回顶部\",\n            // [/(\\d+) comments?/, \"$1 条评论\"],\n            // [/(\\d+) replies?/, \"$1 条答复\"],\n            // [/(\\d+) suggested answer/, \"$1 个建议答案\"],\n\n            \"Answered by\": \"答复者：\",\n            \"View full answer\": \"查看完整答案\",\n            \"Oldest\": \"最早\",\n            \"Newest\": \"最新\",\n            \"Top\": \"置顶\",\n            \"Comment options\": \"评论选项\",\n\n\n            \"Events\": \"活动\",\n            \"Marked\": \"标记为\",\n            \"an\": \"一个\",\n            \"Marked then unmarked an answer\": \"标记后，又取消标记\",\n            \"Marked as answer\": \"标记为答案\",\n            \"Mark as answer\": \"标记为答案\",\n            \"Answer selected by\": \"被标记答案由\",\n            \"Unmark as answer\": \"取消标记为答案\",\n            \"Answer\": \"答案\",\n\n            \"This comment has been minimized.\": \"此评论被最小化。\",\n            \"This comment was marked as off-topic.\": \"此评论被标记为偏离主题。\",\n            \"Show comment\": \"显示评论\",\n            \"Hide comment\": \"隐藏评论\",\n\n            // 隐藏评论对话框\n                \"The reason will be displayed to describe this comment to others.\": \"将显示原因，以便向其他人描述此评论。\",\n                \"Learn more about hiding a comment\": \"了解更多关于隐藏评论的信息\",\n                \"Choose a reason for hiding this comment\": \"选择隐藏此评论原因\",\n                \"Unhide\": \"取消隐藏\",\n                \"Choose a reason\": \"选择原因\",\n                    \"Abuse\": \"滥用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏离主题\",\n                    \"Outdated\": \"过时\",\n                    \"Duplicate\": \"重复\",\n                    \"Resolved\": \"已解决\",\n\n            // 取消隐藏评论\n                \"Unhide\": \"取消隐藏\",\n                \"Unhide comment\": \"取消隐藏评论\",\n                \"Are you sure you want to unhide this comment?\": \"您确定要取消隐藏此评论吗？\",\n\n            // [/Show (\\d+) previous repl(y|ies)/, \"显示 $1 条之前的答复\"],\n            // [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n\n            \"Loading more replies...\": \"载入更多回复中…\",\n\n            \"Remember, contributions to this repository should follow its\": \"请记住，对该仓库的贡献应遵循\",\n            \"Remember, contributions to this repository should follow our\": \"请记住，对该仓库的贡献应遵循我们的\",\n            \"code of conduct\": \"行为准则\",\n            \"contributing guidelines\": \"贡献准则\",\n\n            // [/(\\d+) new suggested answers?/, \"$1 个新的建议答案\"],\n            \"Answer selected\": \"已选择答案\",\n\n            // 右侧栏\n            // /([\\d,]+) participants?/, \"$1 位参与者\"\n            \"and others\": \"和其它\",\n            \"Reopened\": \"重新打开\",\n            \"Closed as resolved\": \"关闭为已解决\",\n\n            \"Change category\": \"更改类别\",\n            \"Converted from issue\": \"由议题转化而来\",\n                // [/This discussion was converted from issue/, \"本讨论由以下议题转换而来\"],\n\n            \"Notifications\": \"通知类型\",\n                \"Subscribe\": \"订阅\",\n                \"Unsubscribe\": \"退订\",\n                \"You’re not receiving notifications from this thread.\": \"您没有收到来自该话题的通知。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因为您正在关注此仓库。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因为您提出了该话题。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因为您订阅了该话题。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因为有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因为您发表了评论。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因为您正在关注此仓库上的拉取请求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因为您正在关注此仓库上的议题。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因为您修改了打开/关闭状态。\",\n                \"You’re ignoring this repository.\": \"您忽略了这个仓库。\",\n\n            // 锁定对话\n            \"Lock conversation\": \"锁定对话\",\n                \"Are you sure you want to lock conversation on this discussion?\": \"您确定要锁定此讨论的对话吗？\",\n                \"Other users\": \"其他用户\",\n                \"can’t add new comments\": \"无法添加新评论\",\n                \"to this discussion.\": \"到该讨论。\",\n                \"You and other collaborators\": \"您和其他协作者\",\n                \"with access\": \"具有访问权限\",\n                \"to this repository\": \"该仓库\",\n                \"can still leave comments\": \"仍然可以留下评论\",\n                \"that others can see.\": \"，其他人可以看到。\",\n                \"You can always unlock this discussion again in the future.\": \"您今后仍可以随时再次解锁此讨论。\",\n                \"This conversation has been locked and limited to collaborators.\": \"此对话已锁定，仅协作者可评论。\",\n            \"Unlock conversation\": \"解锁对话\",\n                \"Are you sure you want to unlock conversation on this discussion?\": \"您确定要解锁此讨论的对话吗？\",\n                \"Everyone\": \"任何人\",\n                \"will be able to comment on this discussion once more.\": \"将能够再次对这个讨论发表评论。\",\n                \"You can always lock this discussion again in the future.\": \"您今后仍可以随时再次锁定此讨论。\",\n            \"Transfer this discussion\": \"转移讨论\",\n                // 转移议题 对话框\n                \"Results are limited to top repositories, search to find more.\": \"结果仅限于置顶仓库，请搜索以查找更多信息。\",\n                \"Move this discussion to another repository owned by\": \"将此讨论移至另一个拥有的仓库由\",\n                \"Move this discussion to another repository you own.\": \"将此讨论移至您拥有的另一个仓库。\",\n                \"Search repositories\": \"搜索仓库\",\n                \"There aren't any eligible repositories that match your query.\": \"没有任何符合条件的仓库与您的查询匹配。\",\n                \"There aren't any eligible repositories to transfer this discussion to.\": \"没有任何符合条件的仓库可以将此讨论转移到其他仓库。\",\n                \"Transfer discussion\": \"转移讨论\",\n            \"Pin discussion\": \"置顶讨论\",\n                \"You can pin up to 4 discussions. They will appear publicly at the top of the discussions page.\": \"您最多可以置顶 4 个讨论。它们将公开显示在讨论页面的顶部。\",\n                \"Configure pinned discussion\": \"设置置顶讨论\",\n                    \"Background\": \"背景色\",\n                    \"Pattern\": \"图案\",\n                \"Pinning discussion…\": \"置顶讨论…\",\n            \"Edit pinned discussion\": \"编辑置顶讨论\",\n            \"Unpin discussion\": \"取消置顶讨论\",\n                \"Are you sure you want to unpin this discussion?\": \"您确定要取消置顶讨论吗？\",\n                \"The discussion itself won't be deleted, it just won't be shown prominently above the list of discussions.\": \"讨论本身不会被删除，只是不会突出显示在讨论列表上方。\",\n                // 顶部提醒\n                // [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"讨论 “$1” 已取消置顶。\"],\n            \"Pin discussion to Announcements\": \"将讨论置顶到 “公告”\",\n                \"Pin this discussion to this category\": \"将此讨论置顶到此类别\",\n                    \"This will pin this discussion to the top of the Announcements category.\": \"这将此讨论置顶到 “公告” 类别顶部。\",\n                    \"Pin to Announcements\": \"置顶到 “公告”\",\n            \"Pin discussion to General\": \"将讨论置顶到 “通常”\",\n                    \"This will pin this discussion to the top of the General category.\": \"这将此讨论置顶到 “通常” 类别顶部。\",\n                    \"Pin to General\": \"置顶到 “通常”\",\n            \"Pin discussion to Ideas\": \"将讨论置顶到 “想法”\",\n                    \"This will pin this discussion to the top of the Ideas category.\": \"这将此讨论置顶到 “想法” 类别顶部。\",\n                    \"Pin to Ideas\": \"置顶到 “想法”\",\n            \"Pin discussion to Polls\": \"将讨论置顶到 “投票”\",\n                    \"This will pin this discussion to the top of the Polls category.\": \"这将此讨论置顶到 “投票” 类别顶部。\",\n                    \"Pin to Polls\": \"置顶到 “投票”\",\n            \"Pin discussion to Q&A\": \"将讨论置顶到 “问与答”\",\n                    \"This will pin this discussion to the top of the Q&A category.\": \"这将此讨论置顶到 “问与答” 类别顶部。\",\n                    \"Pin to Q&A\": \"置顶到 “问与答”\",\n            \"Pin discussion to Show and tell\": \"将讨论置顶到 “展示与讲述”\",\n                    \"This will pin this discussion to the top of the Show and tell category.\": \"这将此讨论置顶到 “展示与讲述” 类别顶部。\",\n                    \"Pin to Show and tell\": \"置顶到 “展示与讲述”\",\n            \"Unpin discussion from this category\": \"从此类别取消置顶\",\n                \"Are you sure you want to unpin this discussion from Announcements?\": \"您确定要从 “公告” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from General?\": \"您确定要从 “通常” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Ideas?\": \"您确定要从 “想法” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Polls?\": \"您确定要从 “投票” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Q&A?\": \"您确定要从 “问与答” 中取消置顶此讨论吗？\",\n                \"Are you sure you want to unpin this discussion from Show and tell?\": \"您确定要从 “展示与讲述” 中取消置顶此讨论吗？\",\n                \"The discussion itself won't be deleted, it just won't be shown at the top of this category.\": \"讨论本身不会被删除，只是不会显示在该类别的顶部。\",\n            \"Create issue from discussion\": \"从讨论中创建议题\",\n            \"Delete discussion\": \"删除讨论\",\n                \"Delete discussion?\": \"删除讨论？\",\n                \"The discussion will be deleted permanently. You will not be able to restore the discussion or its comments.\": \"该讨论将被永久删除。您将无法恢复该讨论或其评论。\",\n                \"Deleting discussion…\": \"正在删除讨论…\",\n                // 顶部提醒\n                \"The discussion was successfully deleted.\": \"该讨论已成功删除。\",\n\n            \"The original post will be copied into a new issue, and the discussion will remain active.\": \"原帖将被复制到一个新的议题中，讨论将保持活跃。\",\n            \"OK, got it!\": \"好的，我知道了！\",\n\n            // 评论删除对话框\n                \"Delete comment\": \"删除评论\",\n                \"Are you sure you want to delete this comment?\": \"您确定要删除这条评论吗？\",\n\n            // 底部提示栏 (未登录)\n                \"Sign up for free\": \"免费注册\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n                \". Already have an account?\": \"。已经有账户？\",\n                \"Sign in to comment\": \"登录后发表评论\",\n\n        // 转移议题到讨论 /<user-name>/<repo-name>discussions/<id>?converting=<讨论id>\n            \"This discussion is being migrated\": \"此讨论正在迁移\",\n                \"The issue and any comments are still being copied to this discussion thread, please check back later.\": \"该议题和所有评论仍在复制到此讨论话题中，请稍后查看\",\n                \"Refresh\": \"刷新\",\n\n        // /<user-name>/community/discussions\n            // [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"这是一个 ✨ 特别的 ✨ 仓库，包含 $1 的组织层面的讨论。这里发布的所有内容在组织层面上也是可见的。\"],\n            \"View organization discussions\": \"查看组织讨论\",\n\n        // 标签浮动文本\n            \"This user is a collaborator on this repository.\": \"该用户是此仓库的协作者。\",\n            \"This user is a maintainer on this repository.\": \"该用户是此仓库的维护者。\",\n            \"This user is the author of this discussion.\": \"该用户是此讨论的作者。\",\n\n        // 开始讨论按钮上方小字\n            \"I have done a\": \"我已\", // 与下条二选一展示\n            \"Reminder to\": \"记得\", // 同上\n            \"search for similar discussions\": \"搜索相似话题先\",\n\n        // 评论框编辑\n            \"Edited\": \"编辑于\",\n            \"'s edit\": \" 编辑\",\n        // 反应相关\n            \"You can't vote on a locked discussion\": \"您不能在锁定讨论投票\",\n            \"Uh oh! You can't vote right now.\": \"哎呀！您现在不能投票。\",\n\n        // 投票\n            \"Show Results\": \"显示结果\",\n            \"Hide Results\": \"隐藏结果\",\n            \"Vote\": \"投票\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) categories?/, \"$1 个分类\"],\n        [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已经在 $1 中创建了第一个讨论!\"],\n        [/(\\d+) answers?/, \"$1 位答复者\"],\n        [/(\\d+) comments?/, \"$1 条评论\"],\n        [/(\\d+) repl(y|ies)/, \"$1 条答复\"],\n        [/(\\d+) suggested answers?/, \"$1 个建议答案\"],\n        [/(\\d+) participants?/, \"$1 位参与者\"],\n        [/Show (\\d+) previous repl(y|ies)/, \"显示 $1 条之前的答复\"],\n        [/(\\d+) hidden items?/, \"$1 条隐藏项目\"],\n        [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"讨论 “$1” 已取消置顶。\"],\n        [/Edited (\\d+) times?/,\"编辑 $1 次\"], //评论框编辑次数\n        [/edited by ([^ ]+)/,\"被 $1 编辑\"], //评论框 被他人编辑\n        [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"这是一个 ✨ 特别的 ✨ 仓库，包含 $1 的组织层面的讨论。这里发布的所有内容在组织层面上也是可见的。\"],\n        [/Category \\\"(.*)\\\" has been created./, \"分类 “$1” 已创建。\"],\n        [/Category \\\"(.*)\\\" has been updated./, \"分类 “$1” 已更新。\"],\n        [/Category \\\"(.*)\\\" has been deleted./, \"分类 “$1” 已删除。\"],\n        [/Section \\\"(.*)\\\" has been created./, \"栏目 “$1” 已创建。\"],\n        [/Section \\\"(.*)\\\" has been updated./, \"栏目 “$1” 已更新。\"],\n        [/Section \\\"(.*)\\\" has been deleted./, \"栏目 “$1” 已删除。\"],\n        [/Edit (.*) category/, \"编辑 “$1” 分类\"],\n        [/Delete (.*) category/, \"删除分类 “$1”\"],\n        [/Edit section (.*)/, \"编辑栏目 “$1”\"],\n        [/Delete section (.*)/, \"删除栏目 “$1”\"],\n        [/Delete (.*) section/, \"删除 “$1” 栏目\"],\n        [/(\\d+) new suggested answers?/, \"$1 个新的建议答案\"],\n        [/This discussion was converted from issue (#\\d+) on (.+)/, \"本讨论由以下议题转换而来：$1 ，$2\"],\n        [/(\\d+) new comments?/, \"$1 条新评论\"],\n        [/Show (\\d+) more repl(y|ies)/, \"显示剩余 $1 条答复\"],\n        [/(\\d+) new/, \"$1 新\"],\n        [/Filter:\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered)(?:,\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered))*\\s*/, function (all, stat) {\n            var statKey = {Open: '打开', Closed: '关闭', Locked: '锁定', Unlocked: '未锁定', Answered: '已答复', Unanswered: '未答复', \" ,\": \"，\"};\n\n            return '筛选：' + statKey[stat];\n        }],\n        [/This user is sponsoring ([^ ]+)./, \"该用户正在赞助 $1。\"],\n        [/(\\d+) votes?/, \"$1 投票\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Discussions/, \"讨论\"],\n            [/New Discussion · (.+) · Category selection/, \"新讨论 · $1 · 分类选择\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/orgs/discussions\"] = I18N[\"zh-CN\"][\"repository/discussions\"] ;\n\nI18N[\"zh-CN\"][\"repository/actions\"] = { // 仓库 - 操作页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 顶部提示\n            \"Actions Enabled.\": \"操作已启用。\",\n\n        // 复刻仓库操作页面提示\n            \"Workflows aren’t being run on this forked repository\": \"这个分支仓库并未运行任何工作流程。\",\n            \"Workflows aren't being run on this forked repository\": \"这个分支仓库并未运行任何工作流程。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository.\": \"因为这个仓库在被分支时含有工作流文件，我们已禁止在此分支上运行它们。在开启此仓库的操作之前，请务必理解配置的工作流程及其预期的使用方式。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository. Some GitHub features that depend on Actions may still be able to run.\": \"因为这个仓库在被分支时含有工作流文件，我们已禁止在此分支上运行它们。在开启此仓库的操作之前，请务必理解配置的工作流程及其预期的使用方式。一些依赖于 Actions 的 GitHub 功能可能可以运行。\",\n            \"I understand my workflows, go ahead and enable them\": \"我已理解我的工作流程，可以放心启用它们。\",\n            \"View the workflows directory\": \"查看工作流程目录\",\n\n        //无工作流程\n            \"There are no workflow runs yet.\": \"无工作流程运行。\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new\n            \"Get started with GitHub Actions\": \"开始使用 GitHub Actions\",\n            \"Choose a workflow\": \"选择工作流程\",\n            \"Build, test, and deploy your code. Make code reviews, branch management, and issue triaging work the way you want. Select a workflow to get started.\": \"构建、测试和部署您的代码。以您想要的方式进行代码审查、分支管理和议题分类。选择一个工作流以开始使用。\",\n            \"Skip this and\": \"跳过并\",\n            \"set up a workflow yourself\": \"建立工作流程\",\n            \"Search workflows\": \"搜索工作流\",\n\n            \"Suggested for this repository\": \"建议该仓库采用\",\n            \"Categories\": \"类别\",\n            \"Configure\": \"设置\",\n            \"Deployment\": \"部署\",\n            \"Continuous integration\": \"持续集成\",\n            \"Automation\": \"自动化\",\n            \"Browse all categories\": \"浏览所有类别\",\n                \"Code scanning\": \"代码扫描\",\n            \"View all\": \"查看全部\",\n\n            \"Learn more about GitHub Actions\": \"了解更多关于 GitHub Actions 的信息\",\n            \"Getting started and core concepts\": \"入门和核心概念\",\n            \"New to Actions? Start here. Learn the core concepts and how to get started.\": \"初次接触 Actions？从这里开始。了解核心概念和如何开始。\",\n            \"Configuring and managing workflows\": \"配置和管理工作流程\",\n            \"Create custom workflows to control your project's life cycle processes.\": \"创建自定义工作流程以控制项目的生命周期过程。\",\n            \"Language and framework guides\": \"语言与框架指南\",\n            \"Guides for projects written in many programming languages.\": \"项目指南由多种编程语言编写。\",\n\n            \"Didn't find what you're looking for?\": \"没有找到您需要的？\",\n            \"Fill out a 2-minute survey to request a new workflow template for GitHub Actions.\" :\"填写一份 2 分钟的调查，为 GitHub Actions 申请一个新的工作流模板。\",\n            \"Request\": \"申请\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new?category=xxxx\n            // [/Found (\\d+) workflows?/, \"发现 $1 个工作流程\"],\n\n        // 操作 /<user-name>/<repo-name>/actions\n            // 快捷键\n                \"Go to usage\": \"跳转到运用\",\n                \"Go to workflow file\": \"跳转到工作流程文件\", // /actions/runs/<id>\n                \"Toggle timestamps in logs\": \"切换日志中的时间戳\",\n                \"Toggle fullscreen logs\": \"切换全屏日志\",\n                \"Exit fullscreen logs\": \"退出全屏日志\",\n                \"Actions main view search bar\": \"操作主视图搜索栏\",\n\n            \"Automate your workflow from idea to production\": \"从创意到产品，使您的工作流程自动化\",\n            \"GitHub Actions makes it easy to automate all your software workflows, now with world-class CI/CD. Build, test, and deploy your code right from GitHub.\": \"GitHub Actions 现在可以使用世界一流的 CI/CD 轻松自动化所有软件工作流程。直接从 GitHub 构建、测试和部署您的代码。\",\n            \"Learn more about getting started with Actions.\": \"了解更多关于开始使用 GitHub Actions 的信息。\",\n            \"Linux, macOS, Windows, ARM, and containers\": \"Linux、macOS、Windows、ARM 和容器\",\n            \"Hosted runners for every major OS make it easy to build and test all your projects. Run directly on a VM or inside a container. Use your own VMs, in the cloud or on-prem, with self-hosted runners.\": \"为每一个主要的操作系统提供的托管运行程序，使您能够轻松地构建和测试您的所有项目。直接在虚拟机上或容器内运行。在云端或本地使用您自己的虚拟机，以及自托管的运行器。\",\n\n            \"Matrix builds\": \"矩阵式构建\",\n            \"Save time with matrix workflows that simultaneously test across multiple operating systems and versions of your runtime.\": \"使用矩阵工作流程可同时跨多个操作系统和版本运行，节省时间\",\n\n            \"Any language\": \"任何语言\",\n            \"GitHub Actions supports Node.js, Python, Java, Ruby, PHP, Go, Rust, .NET, and more. Build, test, and deploy applications in your language of choice.\": \"GitHub Actions 支持 Node.js、Python、Java、Ruby、PHP、Go、Rust、.NET 等。以您选择的语言构建、测试和部署应用。\",\n\n            \"Live logs\": \"实时日志\",\n            \"See your workflow run in realtime with color and emoji. It’s one click to copy a link that highlights a specific line number to share a CI/CD failure.\": \"使用颜色和表情符号实时查看您的工作流程。只需单击即可复制突出显示特定行号的链接以共享 CI/CD 故障。\",\n\n            \"Built-in secret store\": \"内置的机密存储\",\n            \"Automate your software development practices with workflow files embracing the Git flow by codifying it in your repository.\": \"通过将工作流程文件编码到您的仓库，您的软件开发实践，包括 Git 流程自动化。\",\n\n            \"Multi-container testing\": \"多容器测试\",\n            \"Test your web service and its DB in your workflow by simply adding some\": \"在您的工作流程中测试您的网络服务和它的数据库，只需添加一些\",\n            \"docker-compose\": \"docker-组合\",\n            \"to your workflow file.\": \"到您的工作流程文件。\",\n\n            // 左侧栏\n                \"New workflow\": \"新建工作流程\",\n                \"Management\": \"管理\",\n                    \"Caches\": \"缓存\",\n                    \"Deployments\": \"部署\",\n                    \"Attestations\": \"证书\",\n                    \"Runners\": \"运行器\",\n                    \"Usage metrics\": \"使用情况\",\n                    \"Performance metrics\": \"数据看板\",\n                \"Disabled\": \"已禁用\",\n\n                // 顶部提醒\n                    // [/Workflow (.*) pinned./, \"工作流程 $1 已置顶\"],\n                    // [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置顶\"],\n\n                // 取消置顶对话框\n                    \"Unpin this workflow?\": \"取消工作流程置顶？\",\n                        \"This action will unpin the workflow for all viewers of this repository.\": \"此操作将为该仓库的所有查看者取消置顶工作流程。\",\n                    \"Yes, unpin\": \"是的，取消固定\",\n\n            // 工作流文件不存在\n            \"Not found\": \"未找到\",\n                \"This workflow does not exist.\": \"此工作流不存在。\",\n\n            \"All workflows\": \"全部工作流程\",\n                \"Show more workflows...\": \"显示更多工作流程…\",\n                \"Showing runs from all workflows\": \"显示所有工作流程的运行情况\",\n\n            \"Codespaces Prebuilds\": \"代码空间预构建\",\n                \"Showing all prebuild configuration runs for Codespaces. Learn about\": \"显示代码空间所有预构建设置的运行情况。了解\",\n                \"prebuilding your codespaces.\": \"代码空间预构建。\",\n\n            // 筛选条\n                \"Filter workflow runs\": \"筛选工作流程\",\n                    \"Narrow your search\": \"缩小搜索范围\",\n\n            //访问上限\n            //示例：https://github.com/wilsonzlin/fastrender/actions/workflows/ci.yml?page=1174\n                \"You have hit the limit of pages.\": \"您已到达页面访问上限。\",\n                \"You could filter by\":\"您可以按以下筛选\",\n                \"to continue reviewing older workflow runs.\":\"继续查看旧的工作流程运行。\",\n\n\n            // 反馈提醒\n                \"Help us improve GitHub Actions\": \"帮助我们改进 GitHub Actions\",\n                    \"Tell us how to make GitHub Actions work better for you with three quick questions.\": \"通过三个快速问题告诉我们如何让 GitHub Actions 更好地为您服务。\",\n\n\n            // [/(\\d+) workflow runs?$/, \"$1 个工作流程运行\"],\n            // [/(\\d+) workflow runs results/, \"$1 个工作流程运行结果\"],\n\n            \"Event\": \"事件\",\n                \"Filter by Event\": \"按事件筛选\",\n                \"No matching events.\": \"无匹配事件。\",\n                //\"Filter by event\": \"按事件筛选\",\n                \"Find an event\": \"查找事件\",\n                    \"issue_comment\": \"议题评论\",\n                    \"pull_request\": \"拉取请求\",\n                    \"pull_request_target\": \"拉取请求目标\",\n                    \"push\": \"推送\",\n                    \"schedule\": \"日程\",\n                    \"watch\": \"关注\",\n                    \"workflow_dispatch\": \"工作流程调度\",\n                    \"repository_dispatch\": \"仓库调度\",\n                    \"dynamic\": \"动态\",\n            // 状态\n                \"Filter by Status\": \"按状态筛选\",\n                \"Find a status\": \"查找状态\",\n                    \"queued\": \"排队\",\n                    \"in progress\": \"正在进行中\",\n                    \"waiting\": \"等待中\",\n                    \"completed\": \"已完成\",\n                    \"neutral\": \"中立\",\n                    \"success\": \"成功\",\n                    \"failure\": \"失败\",\n                    \"failed\": \"失败\",\n                    \"cancelled\": \"已取消\",\n                    \"action required\": \"需要采取行动\",\n                    \"timed out\": \"已超时\",\n                    \"skipped\": \"跳过\",\n                    \"stale\": \"陈旧\",\n                    \"required action\": \"需要操作\",\n            \"Branch\": \"分支\",\n                \"Filter by Branch\": \"按分支筛选\",\n                \"Find a branch\": \"查找分支\",\n                \"Default\": \"默认\",\n            \"Actor\": \"角色\",\n                \"Filter by Actor\": \"按角色筛选\",\n                \"Find a user\": \"查找用户\",\n\n            // 日志 右侧按钮\n                // 时间补丁 25年9月24日更新\n                \"Today at\": \"今天\",\n            \"Cancel run\": \"取消运行\",\n            \"View workflow file\": \"查看工作流程文件\",\n            \"Delete workflow run\": \"删除工作流程运行\",\n                // 删除工作流程运行 对话框\n                    \"Are you sure you want to permanently delete this workflow run?\": \"您确定要永久删除此工作流程运行吗？\",\n                    \"This action cannot be undone.\": \"此操作无法撤消。\",\n                    \"Yes, delete this workflow run\": \"是的，删除此工作流程\",\n                // 顶部提醒\n                    \"Workflow run deleted successfully.\": \"工作流程运行删除成功。\",\n\n            // 筛选结果\n                \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n                \"You could search\": \"您可以搜索\",\n                \"all workflow runs\": \"所有工作流程运行\",\n                \"or try different filters.\": \"或尝试不同的筛选器。\",\n\n            // 列表区域\n                // 工作流程运行状态\n                \"In progress\": \"进行中\",\n                \"Queued\": \"排队中\",\n                \"Pending\": \"待定中\",\n\n            // 顶部提醒\n                \"You have successfully requested the workflow to be canceled.\": \"您已成功请求取消工作流。\",\n\n        // /<user-name>/<repo-name>/actions/workflows/<file>.yml\n            //右侧三个点\n                \"Show workflow options\": \"显示工作流程选项\",\n                    \"Create status badge\": \"创建状态徽章\",\n                        // 对话框\n                            \"Default branch\": \"默认分支\",\n                                \"Filter branches\": \"筛选分支\",\n                            \"Copy status badge Markdown\": \"复制状态徽章 Markdown 代码\",\n                    \"Pin workflow\": \"固定工作流程\",\n                    \"Disable workflow\": \"禁用工作流程\",\n                        // 顶部提醒\n                        \"Workflow disabled successfully.\": \"工作流程已成功禁用。\",\n\n            \"This workflow has a\": \"这个工作流程有一个\",\n            \"event trigger.\": \"事件触发器。\",\n\n            \"Run workflow\": \"运行工作流程\",\n                \"Use workflow from\": \"使用工作流程来自：\",\n                \"Branch:\": \"分支：\",\n                \"Select branch\": \"选择分支\",\n                \"Select ref\": \"选择引用\",\n                \"Select a tag\": \"选择标签\",\n                    \"Nothing to show\": \"暂无\",\n\n                    \"Workflow does not exist or does not have a\": \"工作流程不存在或没有\",\n                    \"trigger in this branch.\": \"触发在此分支。\",\n                    \"Learn more about manual workflows\": \"了解更多关于手工工作流程的信息\",\n                \"Running workflow...\": \"正在运行工作流程…\",\n                // 顶部提醒\n                    \"Workflow run was successfully requested.\": \"工作流程已成功请求运行。\",\n\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days.\": \"此计划工作流程已禁用，因为此仓库至少 60 天没有活动。\",\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days. Enable this workflow to resume scheduled runs.\": \"此计划的工作流程已禁用，因为此仓库至少有 60 天没有活动。启用此工作流程可恢复计划运行。\",\n            \"This scheduled workflow is disabled because scheduled workflows are disabled by default in forks.\": \"此计划工作流程已被禁用，因为计划工作流程在复刻仓库中默认被禁用。\",\n            \"This workflow was disabled manually.\": \"工作流程已被手动禁用。\",\n            \"This workflow is\": \"此工作流程正在等待维护者\",\n                \"awaiting approval\": \"批准\",\n                \"from a maintainer in\": \"在\",\n            \"Enable workflow\": \"启用工作流程\",\n                // 顶部提醒\n                    \"Workflow enabled successfully.\": \"工作流程已成功启用。\",\n            \"Re-run jobs\": \"重新运行作业\",\n                \"Re-running...\": \"重新运行中…\",\n\n            // 重新运行对话框\n            \"Re-run single job\": \"重新运行单个作业\",\n                \"A new attempt of this workflow will be started, including\": \"将开始此工作流程的新尝试，包括\",\n                \"all the jobs\": \"所有作业\",\n                \"all failed jobs\": \"所有失败作业\",\n                \"and dependents:\": \"和依赖：\",\n                \"debug logging\": \"调试日志\",\n\n            \"This workflow has no runs yet.\": \"此工作流程尚未运行。\",\n\n        // 缓存 /<user-name>/<repo-name>/actions/caches\n            \"Showing caches from all workflows.\": \"显示所有工作流程的缓存。\",\n            \"Learn more about managing caches.\": \"了解更多关于管理缓存的信息。\",\n            \"Filter caches\": \"筛选缓存\",\n            \"Filter by branch\": \"按分支筛选\",\n            \"Approaching total cache storage limit\": \"接近总缓存存储限制\",\n            \"Least recently used caches will be automatically evicted to limit the total cache storage to 10 GB.\": \"最近最少使用的缓存将被自动驱逐，以限制总缓存存储为 10 GB。\",\n            \"Learn more about cache usage.\": \"了解更多关于缓存使用的信息。\",\n\n            // [/(\\d+) caches?/, \"$1 个缓存\"],\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜单\n                \"Recently used\": \"最近使用\",\n                \"Least recently used\": \"最近最少使用\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n            \"No caches\": \"尚无缓存\",\n            \"Nothing has been cached by workflows running in this repository.\": \"在此仓库中运行的工作流程尚未缓存任何内容。\",\n            \"Learn more about caching\": \"了解更多关于缓存的信息\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依赖项和构建输出以缩短工作流执行时间。\",\n            \"Last used\": \"最近使用\",\n\n            // [/(\\d+) cache results?/, \"$1 个缓存结果\"],\n            \"No caches matched your search\": \"没有与您的搜索相匹配的缓存\",\n            // [/No caches matched your search branch:([^ ]+)/, \"没有与您搜索的分支: $1 相匹配的缓存\"],\n            \"Remove the filters\": \"删除筛选器\",\n            \"or try a different search query.\": \"或尝试不同的搜索查询。\",\n\n            \"Delete cache\": \"删除缓存\",\n                \"Remove cache\": \"删除缓存\",\n                \"Are you sure you want to delete this cache?\": \"您确定要删除此缓存吗？\",\n                \"This action cannot be undone\": \"此操作无法撤消\",\n                \"Yes, permanently delete this cache\": \"是的，永久删除此缓存\",\n\n                \"Deleting Cache...\": \"删除缓存中…\",\n                // 顶部提醒\n                \"Cache deleted successfully.\": \"缓存已成功删除。\",\n\n        // 运行器 /<user-name>/<repo-name>/actions/runners\n            \"Runners available to this repository\": \"此仓库可用的运行器\",\n            \"New runner\": \"新建运行器\",\n            \"GitHub-hosted runners\": \"GitHub 托管的运行器\",\n                // [/(\\d+) available runners?/, \"$1 个可用运行器\"],\n                \"Larger GitHub-hosted runners\": \"大型 GitHub 托管运行程序\",\n                \"Unprovisioned\": \"未配置\",\n                \"Team & Enterprise\": \"团队与企业\",\n                \"Sizes up to:\": \"尺寸可达：\",\n                \"Standard GitHub-hosted runners\": \"标准 GitHub 托管的运行器\",\n                \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型运行器。\",\n                \"Learn more about GitHub-hosted runners.\": \"了解更多关于 GitHub 托管运行器的信息。\",\n                \"Copy ubuntu-latest\": \"复制 ubuntu-latest\",\n                \"Copy windows-latest\": \"复制 windows-latest\",\n                \"Copy macos-latest\": \"复制 macos-latest\",\n\n                \"View larger runner docs\": \"查看大型运行器文档\",\n                \"See pricing\": \"查看定价\",\n            \"Self-hosted runners\": \"自托管运行器\",\n                \"You don't have any\": \"此仓库尚无任何\",\n                \"self-hosted\": \"自托管\",\n                \"runners for this repository\": \"运行器\",\n                    \"Self-hosted runners are virtual machines for GitHub Actions workflows that you manage and maintain outside of GitHub.\": \"自托管运行器是您在 GitHub 外部管理和维护的 GitHub Actions 工作流程的虚拟机。\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>\n            // 顶部提醒\n                \"Logs deleted successfully.\": \"日志已成功删除。\",\n\n            // 标题\n            \"Re-run all jobs\": \"重新运行所有作业\",\n            \"Re-run failed jobs\": \"重新运行失败作业\",\n            \"Cancel workflow\": \"取消工作流程\",\n\n            //\"Latest attempt\": \"最后运行\",\n            //\"Attempt\": \"运行\",\n            \"Explain error\": \"解释错误\",\n            //右侧按钮\n            \"View workflow runs\": \"查看工作流程运行\",\n            \"Workflow run options\": \"工作流程运行选项\",\n            \"Delete all logs\": \"删除所有日志\",\n            \"Sign in to view logs\": \"登录后查看日志\",\n\n            // 左侧栏\n            \"Summary\": \"摘要\",\n            \"All jobs\": \"所有作业\",\n                \"Filter by job status\": \"由作业状态筛选\",\n                    \"Filter by status\": \"状态筛选\",\n            \"Jobs\": \"作业\",\n            \"Run details\": \"运行详情\",\n            \"Usage\": \"运用\",\n\n            //状态条\n            \"Triggered via pull request\": \"通过拉取请求触发\",\n            \"Triggered via issues\": \"通过议题触发\",\n            \"Triggered via push\": \"通过推送触发\",\n            \"Triggered via schedule\": \"通过计划表触发\",\n            \"Triggered via dynamic\": \"通过动态触发\",\n            \"Triggered via GitHub Pages\": \"通过 GitHub 页面触发\",\n            \"Triggered via repository dispatch\": \"通过仓库调度触发\",\n            \"Triggered via release\": \"通过发行版触发\",\n            \"Triggered via issue\": \"通过议题触发\",\n            \"Triggered via discussion\": \"通过讨论触发\",\n            \"Triggered via discussion comment\": \"通过讨论评论触发\",\n            \"Triggered via workflow run\": \"通过工作流运行触发\",\n            \"Re-run triggered\": \"重新触发\",\n            \"Manually triggered\": \"手动触发\",\n\n            \"pushed\": \"推送\",\n            \"opened\": \"打开\",\n            \"reopened\": \"重新打开\",\n            \"commented on\": \"评论于\",\n            \"opened by\": \"打开者\",\n\n            // 状态\n                \"Success\": \"成功\",\n                \"Failure\": \"失败\",\n                \"Startup failure\": \"失败\",\n                \"Cancelled\": \"取消\",\n                \"Action required\": \"请求操作\",\n                \"Waiting\": \"等待\",\n            \"Total duration\": \"总时长\",\n            \"Billable time\": \"计费时间\",\n\n            \"This workflow is waiting for\": \"该工作流程正在等待\",\n                \"to complete before running.\": \"完成后再运行。\",\n                \"Learn more about concurrency\": \"了解有关并发执行的更多信息\",\n\n            \"Job summary generated at run-time\": \"运行时生成的工作摘要\",\n\n            // 右侧中间栏\n                \"This workflow graph cannot be shown\": \"无法显示此工作流图表\",\n                \"A graph will be generated the next time this workflow is run.\": \"下次运行此工作流时将生成一个图表。\",\n\n                \"This run and associated checks have been archived and are scheduled for deletion.\": \"此运行和相关检查已存档并计划删除。\",\n                \"Learn more about checks retention\": \"了解更多关于检查保留的信息\",\n\n            \"Artifacts\": \"附件\",\n                \"Produced during runtime\": \"在运行期间生成\",\n                \"Name\": \"名称\",\n                \"Size\": \"大小\",\n                \"Digest\": \"校验值\",\n                // [/Delete artifact ([^ ]+)/, \"删除附件 $1\"],\n                \"Expired\": \"已过期\",\n                    \"This artifact has expired and you can no longer download it\": \"此附件已过期，您无法再下载\",\n            \"Annotations\": \"说明\",\n                \"The self-hosted runner lost communication with the server. Verify the machine is running and has a healthy network connection. Anything in your workflow that terminates the runner process, starves it for CPU/Memory, or blocks its network access can cause this error.\": \"自行托管的运行器与服务器通信中断。请确认机器正在运行且网络连接正常。工作流中任何终止运行器进程、耗尽 CPU/内存或阻塞其网络访问的操作都可能导致此错误。\",\n                \"The job has exceeded the maximum execution time of 6h0m0s\": \"该作业已超过最大执行时间 6 小时\",\n                // [/1 error/, \"$1 个错误\"],\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/job/<job-id>\n            \"The logs for this run have expired and are no longer available.\": \"此运行日志已过期，不再可用。\",\n            \"This job was cancelled\": \"作业已取消\",\n            \"This step has been truncated due to its large size. View the raw logs from the\": \"此步骤因内容过大，已将其截断。工作流运行完成后，从\",\n            \"menu once the workflow run has completed.\": \"菜单中查看原始日志。\",\n\n            \"Started\": \"开始于\",\n            \"succeeded\": \"成功于\",\n            \"ago\": \"之前\",\n\n            \"Search logs\": \"搜索日志\",\n            \"Re-run this job\": \"重新运行此作业\",\n            // 设置按钮\n                \"Show timestamps\": \"显示时间戳\",\n                \"Show full screen (Shift+F)\": \"全屏显示（Shift+F）\",\n                \"Download log archive\": \"下载日志存档\",\n                \"View raw logs\": \"查看原始日志\",\n                \"View job summary\": \"查看作业摘要\",\n\n            \"Try broadening your search filters.\": \"尝试扩大您的搜索筛选器。\",\n\n            \"Re-run all checks\": \"重新运行所有检查\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/usage\n            \"Run and billable time\": \"运行和计费时间\",\n            \"Learn about OS pricing on GitHub Actions\": \"了解 GitHub Actions 上的操作系统定价\",\n            \"Job\": \"工作\",\n            \"Run time\": \"运行时间\",\n            \"Billable\": \"计费\",\n            \"time\": \"时间\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/workflow\n            \"Workflow file\": \"工作流程文件\",\n            \"Workflow file for this run\": \"本次运行的工作流程文件\",\n\n        // 操作面板\n            \"Show all jobs\": \"显示所有工作\",\n            \"Scheduled\": \"计划运行\",\n            \"Commit\": \"提交\",\n                \"pushed by\": \"推送者\",\n            \"Manually run by\": \"手动运行由\",\n            \"The run was canceled by\": \"取消由\", // 原文过于啰嗦\n            \"Pull request\": \"拉取请求\",\n                \"synchronize by\": \"同步者\",\n                \"synchronize\": \"同步自\",\n                \"reopened by\": \"重新打开者\",\n            \"The operation was canceled.\": \"已取消。\",\n            \"Release\": \"发行版\",\n                \"published by\": \"发布者\",\n            \"created by\": \"创建者\",\n            \"completed by\": \"完成者\",\n            //\"Process completed with exit code 1.\": \"进程完成，退出代码为 1。\",\n            \"Cache not found\": \"找不到缓存\",\n            \"Starting job\": \"作业启动中\",\n            \"This job failed\": \"此作业失败\",\n            \"This job was skipped\": \"此作业被跳过\",\n            \"Waiting for pending jobs\": \"等待中\",\n            \"Input required and not supplied: token\": \"需要输入但未提供：令牌\",\n            \"The deployment was rejected or didn't satisfy other protection rules.\": \"部署被拒绝或不符合其他保护规则。\",\n            \"Fit to window\": \"适合\",\n            \"Zoom out\": \"缩小\",\n            \"Zoom in\": \"放大\",\n\n        // 摘要窗口\n            \"Unable to load summary\": \"无法加载摘要\",\n            \"This job summary has expired and is no longer available\": \"此作业摘要已过期，不再可用\",\n                // 右侧三个点\n                \"View job logs\": \"查看日志\",\n                \"View raw markdown\": \"查看原始 Markdown\",\n                \"Copy permalink\": \"复制永久链接\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Back to pull request (#\\d+)/, \"返回拉取请求 $1\"],\n        [/Workflow (.*) pinned./, \"工作流程 $1 已置顶\"],\n        [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置顶\"],\n        [/Found (\\d+) workflows?/, \"发现 $1 个工作流程\"],\n        [/(\\d+) workflow runs?$/, \"$1 个工作流程运行\"],\n        [/(\\d+) workflow runs? results?/, \"$1 个工作流程运行结果\"],\n        [/Download ([^ ]+) \\(opens in a new tab\\)/, \"下载 $1（在新标签中打开）\"],\n        [/Download ([^ ]+)/, \"下载 $1\"],\n        [/Delete ([^ ]+)/, \"删除 $1\"],\n        [/(\\d+) errors?/, \"$1 个错误\"],\n        [/(\\d+) cache results?/, \"$1 个缓存结果\"],\n        [/(\\d+) caches?/, \"$1 个缓存\"],\n        [/No caches matched your search branch:([^ ]+)/, \"没有与您搜索的分支: $1 相匹配的缓存\"],\n        [/(\\d+) available runners?/, \"$1 个可用运行器\"],\n        [/(\\d+)\\/(\\d+) jobs? completed/, \"$1/$2 个工作完成\"],\n        [/(\\d+) jobs? completed/, \"$1 个工作完成\"],\n        [/(\\d+) warnings?/, \"$1 个警告\"],\n        [/Latest attempt (#\\d+)/, \"最后运行 $1\"],\n        [/Latest (#\\d+)/, \"最新 $1\"],\n        [/Attempt (#\\d+)/, \"运行 $1\"],\n        [/cached/, \"被缓存\"],\n        [/(\\d+)-cores · (\\d+) GB RAM · (\\d+) GB SSD Storage/, \"$1 核心 · $2 GB内存 · $3 GB SSD 存储\"],\n        [/Process completed with exit code (\\d+)/, \"进程已结束，退出代码为 $1\"],\n        [/([^ ]+) value is not set/, \"$1 值未设置\"],\n        [/([^ ]+) summary/, \"$1 摘要\"],\n        [/By ([^ ]+)/, \"创建：$1\"],\n        [/Branch \"([^ ]+)\" is not allowed to deploy to ([^ ]+) due to environment protection rules./, \"由于环境保护规则，“$1”分支不允许部署到 $2 上。\"],\n        // 时间\n        [/(\\d+)d (\\d+)h (\\d+)m (\\d+)s/, \"$1天$2时$3分$4秒\"],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1时$2分$3秒\"],\n        [/(\\d+)h (\\d+)m/, \"$1时$2分\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Workflow runs/, \"工作流程运行\"],\n            [/Caches/, \"缓存\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/runs\"] = I18N[\"zh-CN\"][\"repository/actions\"];\n\nI18N[\"zh-CN\"][\"repository/deployments\"] = { // 仓库 - 部署页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/deployments\n            // 左侧栏\n                \"Deployed\": \"部署\",\n                    \"All deployments\": \"所有部署\",\n                    \"Environments\": \"环境\",\n                    \"Manage environments\": \"管理环境\",\n\n            // 面板\n                // 所有部署\n                    \"Latest deployments from pinned environments\": \"来自固定环境的最新部署\",\n                //具体某一项\n                    \"Latest deployments\": \"最新部署\",\n                    \"Last\": \"最后\",\n                    \"deployed\": \"部署于\",\n                // 中间面板\n                    \"Your search did not match any deployments\": \"您的搜索未匹配任何部署\",\n                    \"Try a different search query\": \"尝试不同的搜索查询\",\n\n                // 筛选条\n                    \"Filter\": \"筛选\",\n                        \"Filter deployments\": \"筛选部署\",\n                        // 搜索框菜单\n                            \"State\": \"状态\",\n                                \"success\": \"成功\",\n                                \"failure\": \"失败\",\n                                \"error\": \"错误\",\n                                \"inactive\": \"不活跃\",\n                                \"pending\": \"待定\",\n                                \"queued\": \"排队\",\n                                \"in progress\": \"进行中\",\n                                \"waiting\": \"等待中\",\n                            \"Creator\": \"创建者\",\n                            \"Environment\": \"环境\",\n                            \"Ref\": \"引用\",\n                            \"Text\": \"文本\",\n\n                    // 筛选器窗口\n                        \"Advanced filters\": \"高级筛选\",\n                        \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                        \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n\n                        \"Qualifier\": \"限定\",\n                        \"Operator\": \"操作\",\n                            \"is one of\": \"之中的\",\n                            \"is\": \"是\",\n                        \"Value\": \"值\",\n                            \"Make a selection\": \"请选择\",\n                            \"Select items\": \"请选择项目\",\n                            \"Filter values\": \"筛选值\",\n                            \"Enter search text\": \"键入任意文本\",\n                                \"Me\": \"我\",\n                                \"Signed-in user\": \"已登录用户\",\n                        \"Add a filter\": \"添加筛选器\",\n                        \"Apply\": \"应用\",\n\n                    // 关闭弹窗\n                        \"Discard changes?\": \"是否放弃更改？\",\n                            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n                            \"Keep editing\": \"继续编辑\",\n                            \"Close and discard\": \"关闭并放弃\",\n\n                    //筛选器报错窗口\n                        \"Empty value for\": \"空值：\",\n                        \"Text will be ignored since log searching is not yet available:\": \"由于尚未提供日志搜索功能，文本将被忽略：\",\n\n                // 列表\n                    \"Active\": \"活跃\",\n                    \"Inactive\": \"不活跃\",\n                    \"Abandoned\": \"废弃\",\n                    \"Deployed to\": \"部署到\",\n                    \"Failed to deploy to\": \"无法部署到\",\n\n                    \"View logs\": \"查看日志\",\n                    \"View workflow run\": \"查看工作流程运行\",\n\n        // /<user-name>/<repo-name>/deployments/activity_log?environment=github-pages\n            \"Deployments\": \"部署\",\n            \"/ History\": \"/ 历史\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/deployments?/, \"部署\"],\n        [/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"], // 过滤器报错窗口\n        [/via/, \"通过\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Deployments/, \"部署\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/attestations\"] = { // 仓库 - 证书页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // <user-name>/repo-name>/attestations 证书\n            \"Attestations\": \"证书\",\n\n            \"No attestations\": \"尚无证书\",\n                \"Create attestations using the\": \"创建证书，请使用\",\n                \"action\": \"操作工作流\",\n\n            \"Filter\": \"筛选\",\n                \"Sort by:\": \"排序方式：\",\n                    \"Newest\": \"最新\",\n                    \"Oldest\": \"最早\",\n                \"Search or filter\": \"搜索或筛选\",\n                \"Advanced filters\": \"高级筛选\",\n                \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n                \"Add a filter\": \"添加筛选器\",\n                \"Apply\": \"应用\",\n                \"Created\": \"创建于\",\n                    \"before\": \"之前\",\n                    \"after\": \"之后\",\n                    \"before and including\": \"之前包括\",\n                    \"after and including\": \"之后包括\",\n                    \"between\": \"之间\",\n                    \"is one of\": \"之中的\",\n                    \"is not one of\": \"不包含\",\n                    \"is\": \"是\",\n                \"Has\": \"包含\",\n                \"Predicate type\": \"谓词类型\",\n                \"Exclude\": \"排除\",\n                \"Text\": \"文本\",\n                    \"Enter search text\": \"键入任意文本\",\n\n\n            \"Qualifier\": \"条件\",\n            \"Operator\": \"操作\",\n            \"Value\": \"值\",\n                \"Make a selection\": \"请选择\",\n                \"Select items\": \"请选择项目\",\n                \"Select an item\": \"请选择一个项目\",\n                \"Filter values\": \"筛选值\",\n    },\n    \"title\": {\n        \"regexp\": [\n            [/Attestations/, \"证书\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/watchers\"] = { // 仓库 - 关注者页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 关注者页面  /<user-name>/<repo-name>/watchers\n            \"Watchers\": \"关注者\",\n            \"No one’s watching this repository yet. You could be the first.\": \"暂无关注者。您可以成为第一个\",\n            \"Learn more about how watching repositories works on GitHub\": \"了解更多关于如何在 GitHub 上关注仓库的工作方式\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入于\"], // 追星者，关注者页面\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/stargazers\"] = { // 仓库 - 追星者页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 追星者页面  /<user-name>/<repo-name>/stargazers\n            \"Stargazers\": \"追星者\",\n            \"All\": \"全部\",\n            \"You know\": \"您关注的\",\n            \"Be the first to star this repository\": \"成为第一个为这个仓库标星的人\",\n            \"about how starring works on GitHub.\": \"关于如何在 GitHub 上标星。\",\n            \"Be the first of your friends to star this repository.\": \"成为第一个为这个仓库标星的朋友。\",\n\n        // /<user-name>/<repo-name>/stargazers/you_know\n            \"No one you follow has starred this repository yet.\": \"您关注的任何人都未标星此仓库。\",\n            \"Learn more about how starring works on GitHub.\": \"了解更多关于在 GitHub 上标星的工作原理。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入于\"], // 追星者，关注者页面\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/new\"] = { // 仓库 - 新建/编辑/上传/删除文件页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 新建文件页面 /<user-name>/<repo-name>/new/<branch>\n            // 文件树侧边栏\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Add file\": \"添加文件\",\n                // 搜索框\n                    \"Search this repository\": \"搜索此仓库\",\n                    \"Go to file\": \"转到文件\",\n                        \"No matches found\": \"未找到匹配项\",\n                        \"Go to folder\": \"转到文件夹\",\n                        \"See all results\": \"查看所有结果\",\n\n            \"Name your file...\": \"文件名…\",\n            \"in\": \"在\",\n\n            \"Cancel changes\": \"取消更改\",\n                \"You have unsaved changes. Do you want to discard them?\": \"您有未保存的更改。您想丢弃它们吗？\",\n            \"Commit changes...\": \"提交更改…\",\n\n            \"Preview\": \"预览\",\n                \"Loading preview…\": \"载入预览…\",\n                    \"There is no content to preview.\": \"没有可预览的内容。\",\n                    \"There has been an error generating the preview.\": \"生成预览时发生错误。\",\n                    \"Unable to load this preview, sorry.\": \"抱歉，无法加载此预览。\",\n                    \"There are no changes to show.\": \"没有要显示的更改。\",\n                    \"But you can preview the whole file.\": \"但您可以预览整个文件。\", // new code view\n\n            // 代码编辑框\n                // Copilot 广告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 编码速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的时间创建模板和重复的代码模式，花更多的时间构建优秀的软件。在 GitHub 代码空间或您最喜欢的文件编辑器中尝试一下哈。\",\n                        \"Get GitHub Copilot\": \"获取 GitHub Copilot\",\n                        \"Don't show again\": \"不再显示\",\n\n                \"Indent mode\": \"缩进模式\",\n                    \"Spaces\": \"空格\",\n                    \"Tabs\": \"Tab\",\n                \"Indent size\": \"缩进大小\",\n                \"Line wrap mode\": \"换行模式\",\n                    \"No wrap\": \"不换行\",\n                    \"Soft wrap\": \"软换行\",\n\n            \"Show Diff\": \"显示差异\",\n\n            // 提交对话框\n                \"Commit changes\": \"提交更改\",\n                    \"There was an error committing your changes:\": \"在提交您的更改时出现错误：\",\n                    \"A file with the same name already exists. Please choose a different name and try again.\": \"已存在同名文件。请选择其他名称并重试。\",\n                    \"File could not be edited\": \"文件不能编辑\",\n                    \"See what changed\": \"查看更改\",\n                \"Sign off and commit changes\": \"提交更改并签署\",\n                \"Propose changes\": \"提出更改建议\", // 向他人仓库提交\n                \"Sign off and propose changes\": \"提出更改建议并签署\", // 向他人仓库提交\n                    \"Commit message\": \"提交信息\",\n                    \"Extended description\": \"扩展描述\",\n                        \"Add an optional extended description...\": \"添加描述... (可选)\",\n\n                    \"Message and description suggested by Copilot.\": \"Copilot建议的消息和描述。\",\n                        \"Send feedback\": \"提交反馈\",\n\n                    \"You are\": \"您将\",\n                    \"signing off\": \"签署\",\n                    // [/on this commit as/,\"该提交以\"],\n\n                    \"You can’t commit to\": \"您不能提交到\",\n                    \"because its is a\": \"，因为它是一个\",\n                    \"protected branch\": \"受保护分支\",\n\n                    \"Commit directly to the\": \"提交到\",\n                    \"branch\": \"分支\",\n\n                    \"Some rules will be bypassed by committing directly\": \"直接提交可以绕过一些规则\",\n                    \"Bypass rules and commit changes\": \"绕过规则并提交更改\",\n\n                    \"Create a\": \"创建\",\n                    \"new branch\": \"新分支\",\n                    \"for this commit and start a pull request\": \"为这个提交，并且发起一个拉取请求\",\n                    \"Learn more about pull requests\": \"了解更多关于拉取请求的信息\",\n\n                \"Something went wrong. Please fork the project, then try from your fork.\": \"出错了。请复刻该项目，然后从您的复刻处尝试。\",\n\n            // 底部栏\n                \"Use\": \"使用\",\n                \"to toggle the\": \"切换\",\n                \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                \"then\": \"键，然后\",\n                \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n\n            // 顶部提醒\n            // [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的许可证已准备就绪。请在下面审查它并将其提交到 $1 分支或新分支。\"],\n\n        // 编辑文件页面 /<user-name>/<repo-name>/edit/<branch>/<file>\n            // 非本人仓库\n                \"You need to fork this repository to propose changes.\": \"您需要复刻此仓库以提出更改。\",\n                    \"Sorry, you’re not able to edit this repository directly—you need to fork it and propose your changes from there instead.\": \"抱歉，您无法直接编辑此仓库——您需要将其复刻并从那里提出您的更改。\",\n                \"Fork this repository\": \"复刻此仓库\",\n                    \"Learn more about forks\": \"了解更多关于复刻的信息\",\n\n                \"You have unsaved changes on this file that can be restored.\": \"您可以恢复该文件上未保存的更改。\",\n                    \"Discard\": \"丢弃\",\n                    \"Restore\": \"恢复\",\n\n                \"You’re making changes in a project you don’t have write access to. Submitting a change will write it to a new branch in your fork\": \"您正在对没有写入权限的项目进行更改。提交更改会将其写入您的复刻\",\n                \", so you can send a pull request.\": \" 中的新分支，这样您就可以发送拉取请求。\",\n\n            // 复刻仓库过旧\n                \"Sorry, it looks like your fork is outdated!\": \"抱歉，您的复刻好像过时了！\",\n                \"You’ll have to bring it up to date before you can propose changes.\": \"在提出修改意见之前，您必须对其进行更新。\",\n                \"Update your fork\": \"更新您的复刻\",\n\n            // 组织仓库 编辑文件页面\n                \"You’re making changes in a project you don’t have write access to. We’ve\": \"您正在对没有写入权限的项目进行更改。我们已经\",\n                \"created a fork of this project\": \"为该项目创建复刻\",\n                \"for you to commit your proposed changes to. Submitting a change will write it to a new branch in your fork, so you can send a pull request.\": \"供您提交建议的更改。提交更改会将其写入复刻中的新分支，这样您就可以发送拉取请求。\",\n\n            // 混合换行符\n                \"We’ve detected the file has mixed line endings. When you commit changes we will normalize them to\": \"我们检测到该文件具有混合行结尾。当您提交更改时，我们会将它们标准化为\",\n                \"Windows-style\": \"Windows 样式\",\n\n            // 与用户名同名仓库 编辑 README.md 文件\n                \"is a special repository: its\": \"是一个特殊的仓库：它的\",\n                \"will appear on your profile!\": \"将出现在您的个人资料中！\",\n\n                \"is now a special repository: its\": \"现在是一个特殊的仓库：它的\",\n\n            // 组织下.github 仓库 编辑 /profile/README.md 文件\n                \"is a special repository: this\": \"是一个特殊的仓库：这个\",\n                \"will appear on your organization's profile!\": \"将出现在您的组织资料中!\",\n\n            // 编辑 .gitignore 文件\n                \"Choose .gitignore template\": \"选择 .gitignore 模板\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"筛选…\",\n                    \"None\": \"无\",\n\n            // 编辑 工作流程文件 .github/workflows/xxxx.yml\n                \"Collapse help panel\": \"折叠帮助面板\",\n\n                // 帮助面板侧边栏\n                    \"Search Marketplace for Actions\": \"搜索 Actions 市场\",\n                    \"Featured Actions\": \"特色 Actions\",\n                    \"Featured categories\": \"特色分类\",\n                        \"Code quality\": \"代码质量\",\n                        \"Monitoring\": \"监控\",\n                        \"Continuous integration\": \"持续集成\",\n                        \"Project management\": \"项目管理\",\n                        \"Deployment\": \"部署\",\n                        \"Project management\": \"项目管理\",\n                        \"Testing\": \"测试\",\n                    \"\\/ Search results\": \"\\/搜索结果\",\n                    \"Browse all actions on the GitHub Marketplace\": \"浏览 GitHub 市场 上的所有 Actions\",\n\n                    // 具体某个操作\n                        \"View full Marketplace listing\": \"去市场查看详细信息\", // 跳转去市场对应页面\n                        \"Installation\": \"安装\",\n                        \"Copy and paste the following snippet into your\": \"将以下代码段复制并粘贴到您的\",\n                            \"file.\": \"文件。\",\n                        \"Version:\": \"版本：\",\n\n                // 底部栏补充\n                    \"Space\": \"空格\",\n                    \"to trigger autocomplete in most situations.\": \"在大多数情况下将触发自动完成。\",\n                    \"Documentation\": \"文档\",\n\n            // 编辑 LICENSE 许可证文件\n                \"Choose a license template\": \"选择许可证模板\",\n\n            // 编辑 议题表单模板文件 .github/ISSUE_TEMPLATE/xxxx.yml\n                // 顶部提示\n                \"Looks like this file is an issue template. Need help?\": \"此文件是一个议题模板。需要帮助？\",\n                \"Learn more about issue templates.\": \"了解更多关于议题模板的信息。\",\n                \"Give feedback.\": \"提交反馈。\",\n                // 右侧帮助说明\n                \"Top-level configuration options\": \"顶层配置选项\",\n                    \"Required Fields\": \"必填项\",\n                        \"(String): The template's name. Must be unique across all templates, including Markdown templates.\": \"（字符串）模板名。不能与其他模板名重复，包括 Markdown 模板\",\n                        \"(String): A description of this template's intended use. This will be shown in the issue template chooser interface.\": \"(字符串）：该模板预期用途的说明。这将显示在议题模板选择界面中。\",\n                    \"Optional Fields\": \"可选项\",\n                        \"(Array or String): This issue will be automatically assigned to these users. Can be array of usernames or comma-delimited string, e.g. \\\"monalisa,nat\\\"\": \"(数组或字符串）：此议题将自动分配给这些用户。可以是用户名数组或以逗号分隔的字符串，例如 “monalisa,nat”。\",\n                        \"(Array or String): This issue will automatically receive these labels upon creation. Can be array of labels or comma-delimited string, e.g. \\\"bug,needs-triage\\\"\": \"(数组或字符串）：该议题在创建时将自动接收这些标签。可以是标签数组或以逗号分隔的字符串，例如 “bug,needs-triage”（错误，需要分流）。\",\n                        \"(Array or String): This issue will be automatically added to these projects. Can be array of projects or comma-delimited string, e.g. \\\"github\\/1,github\\/2\\\"\": \"(数组或字符串）：该议题将自动添加到这些项目中。可以是项目数组或以逗号分隔的字符串，如 “github\\/1,github\\/2”。\",\n                        \"(String): Default title that will be pre-populated in the issue submission form.\": \"(字符串）：将在议题表单中预填的默认标题。\",\n                        \"(Array): Definition of user inputs.\": \"(数组）：用户输入的定义。\",\n                \"Input type configuration options\": \"输入类型配置项\",\n                    // Markdown\n                        \"Markdown blocks contain arbitrary text that a maintainer can add to a template, to provide extra context or guidance to a contributor. Supports Markdown formatting. This text will\": \"Markdown 块包含任意文本，维护者可将其添加到模板中，为贡献者提供额外的上下文或指导。支持 Markdown 格式。这些文本\",\n                        \"not be rendered in the submitted issue body\": \"不会在提交的议题正文中呈现。\",\n                        // 必填项\n                            \"(String): The text that will be rendered. Markdown formatting is supported.\": \"(字符串）：将渲染的文本。支持 Markdown 格式。\",\n                        \"Tip #1: YAML processing will cause the hash symbol to be treated as a comment. To insert Markdown headers, wrap your text in quotes.\": \"提示 1：YAML 处理会将 # 号视为注释。要插入 Markdown 标题，请用引号将文本包起来。\",\n                        \"Tip #2: For multi-line text, you can use the pipe operator.\": \"提示 2：对于多行文本，可以使用管道运算符。\",\n                        \"Example\": \"示例\",\n                    \"Input\": \"输入\",\n                        \"Inputs are single-line form input fields. Contributors may use markdown formatting in their responses.\": \"输入为单行表单输入字段。贡献者可在回复中使用标记符格式。\",\n                        \"Required Attributes\": \"必要属性\",\n                            \"(String): A brief description of the expected user input.\": \"(字符串）： 预期用户输入的简要说明。\",\n                        \"Optional Attributes\": \"可选属性\",\n                            \"(String): Extra context or guidance about filling out this form input. Supports Markdown.\": \"(字符串）：有关填写此表单输入的额外上下文或指导。支持 Markdown。\",\n                            \"(String): Renders as semi-transparent \\\"placeholder\\\" element in the input field when it's empty.\": \"(字符串）：当输入框为空时，渲染为半透明的 “placeholder”元素。\",\n                            \"(String): Default text that is pre-populated in the input field.\": \"(字符串）：输入字段中预填的默认文本。\",\n                        // ID\n                            \"(String): Optional unique identifier. Can only contain alphanumeric characters,\": \"(字符串）：可选的唯一标识符。只能包含字母数字字符、\",\n                        \"Validations\": \"验证\",\n                            \"(Boolean): If\": \"(布尔值）：若\",\n                            \", the form will not be submittable until this is filled out. Only for public repositories.\": \"，则填写此信息后才能提交表格。仅适用于公共仓库。\",\n                    \"Textarea\": \"文本区域\",\n                        \"Very similar to inputs, textareas are multiple-line form input fields. Typically used if you'd like a contributor to provide an answer longer than a few words. Contributors may use markdown formatting in their responses.\": \"文本区域与输入非常相似，都是多行表单输入字段。如果希望贡献者提供长于几个单词的答案，通常会使用文本区域。贡献者可以在回复中使用标记符格式。\",\n                        // 可选属性\n                            \"(String): If a value is provided, user-submitted text will be formatted into a codeblock automatically.\": \"(字符串）：如果提供该值，用户提交的文本将自动格式化为代码块。\",\n                    \"Dropdown\": \"下拉菜单\",\n                        \"Users can select their answer from options defined by the maintainer.\": \"用户可以从维护者定义的选项中选择答案。\",\n                            \"(String Array): Set of values that user can select from to answer. Cannot be empty, and all choices must be distinct.\": \"(字符串数组）：用户可从中选择回答的一组值。不能为空，且所有选择必须是不同的。\",\n                        // 可选属性\n                            \", users can submit multiple selections.\": \"则用户可提交多选项。\",\n                        // 验证\n                            \", the form will not be submittable until at least one choice is selected. Only for public repositories.\": \"则至少选择一个选项后才能提交表单。仅适用于公共仓库。\",\n                    \"Checkboxes\": \"勾选框\",\n                    \"A group of one or more checkboxes. This will be saved as a Markdown checkbox, and will continue to support interactive updating.\": \"由一个或多个复选框组成的组。这将被保存为 Markdown 复选框，并将继续支持交互式更新。\",\n                        \"(Array): Set of values that user can select from to answer. Cannot be empty. Each item must have a\": \"(数组）：用户可从中选择回答的数值集合。不能为空。每个项目必须有一个\",\n                        \", described below.\": \"，如下所述。\",\n                    \"Within each item in\": \"对于任何带\",\n                        \", the following fields are supported:\": \"元素则支持以下字段：\",\n                        \"(String): The text that will appear beside the checkbox. Markdown is supported for bold or italic text formatting, and hyperlinks.\": \"(字符串）：复选框旁边显示的文本。Markdown 支持粗体或斜体文本格式以及超链接。\",\n                    \"Optional\": \"可选\",\n                        \"(Boolean): If required, the form will not be submittable unless checked. Only for public repositories.\": \"(布尔值）：如果需要，除非选中，否则表单将无法提交。仅适用于公共仓库。\",\n\n            // 查找工具栏\n                \"Find\": \"查找\",\n                \"next\": \"下一处\",\n                \"previous\": \"上一处\",\n                \"all\": \"全部\",\n                \"match case\": \"区分大小写\",\n                \"regexp\": \"正则\",\n                \"by word\": \"全字匹配\",\n                \"Replace\": \"替换\",\n                \"replace\": \"替换\",\n                \"replace all\": \"全部替换\",\n\n        // 删除文件页面 /<user-name>/<repo-name>/delete/<branch>/<file>\n            // 顶部提醒\n            \"File successfully deleted.\": \"文件已成功删除。\",\n\n            \"Copy path to clipboard\": \"复制路径到剪切板\",\n\n            \"Load diff\": \"加载差异\",\n            \"This file was deleted.\": \"此文件已删除。\",\n\n        // 上传文件页面 /<user-name>/<repo-name>/upload/<branch>\n            // 自有仓库\n                \"Drag files here to add them to your repository\": \"拖拽文件添加到当前仓库\",\n                \"Drag additional files here to add them to your repository\": \"拖拽其他文件添加到当前仓库\",\n                \"Or\": \"或\",\n                \"choose your files\": \"选择文件\",\n                \"Drop to upload your files\": \"拖拽上传您的文件\",\n                // 处理反馈\n                \"Yowza, that’s a big file. Try again with a file smaller than 25MB.\": \"我勒个擦，这么大的文件，单文件不得超过25MB\",\n                \"Yowza, that’s a lot of files. Try again with fewer than 100 files.\": \"我勒个擦，这么多文件，一次不能超过100个\",\n                \"This file is\": \"这个文件是\",\n                \"empty\": \"空的\",\n                \"Something went really wrong, and we can’t process that file.\": \"遇到错误，我们无法处理这个文件。\",\n\n                // 文件上传进度条\n                \"Uploading\": \"文件上传中\",\n                \"of\": \"/\",\n\n                // 提交框 补充\n                    \"Add files via upload\": \"通过上传添加文件\",\n                    \"Add an optional extended description…\": \"添加可选的扩展描述…\",\n\n                    \"branch.\": \"分支。\", // 上传页面\n                    \"for this commit and start a pull request.\": \"为这个提交，并且发起一个拉取请求。\", // 上传页面\n                    \"Learn more about pull requests.\": \"了解更多关于拉取请求的信息。\", // 上传页面\n\n                // 提交后处理页面\n                    \"Processing your files…\": \"正在处理您的文件…\",\n\n            // 他人仓库\n                \"Uploads are disabled.\": \"上传功能已禁用。\",\n                \"File uploads require push access to this repository.\": \"文件上传需要推送访问此仓库。\",\n\n        // new code view\n            \"Top\": \"顶部\",\n            \"Jump to file\": \"跳转到文件\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/on this commit as/,\"该提交以\"],\n        [/Commit changes?/, \"提交更改\"], // 提交对话框\n        [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的许可证已准备就绪。请在下面审查它并将其提交到 $1 分支或新分支。\"],\n        [/Your search has returned (\\d+) results?./, \"您的搜索返回了 $1 条结果。\"],\n        [/First (\\d+) files? shown./, \"显示前 $1 个文件。\"],\n        [/([^ ]+) has committed since you started editing./, \"$1 自您开始编辑以来已提交。\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/New File at/, \"新建文件在\"],\n            [/Editing (.+) at (.+) · (.+)/, \"编辑文件 $1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/edit\"] = I18N[\"zh-CN\"][\"repository/new\"];\nI18N[\"zh-CN\"][\"repository/delete\"] = I18N[\"zh-CN\"][\"repository/new\"];\nI18N[\"zh-CN\"][\"repository/upload\"] = I18N[\"zh-CN\"][\"repository/new\"];\n\nI18N[\"zh-CN\"][\"repository/find\"] = { //  仓库 - 查找文件页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // Find file 页面 /<user-name>/<repo-name>/find/<branch>\n            \"You’ve activated the\": \"您已激活\",\n            \"file finder\": \"文件搜索模式\",\n            \". Start typing to filter the file list. Use\": \"。输入关键词查找您的文件。使用\",\n            \"and\": \"和\",\n            \"to navigate,\": \"选择文件\",\n            \"to view files,\": \"查看文件\",\n            \"to exit.\": \"返回。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/models\"] = { // 仓库 - 模型\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        \"Public Preview\": \"公共预览\",\n        \"Expand menu\": \"展开目录\",\n        \"Collapse menu\": \"折叠目录\",\n        \"Catalog\": \"目录\",\n        \"Share feedback\": \"反馈\",\n        \"Filter items\": \"筛选项目\",\n\n        // 概况\n            \"Build your AI products—right inside GitHub. Create prompts, test models, and ship AI-powered features with built-in tools for model access, prompt collaboration, and lightweight evaluation.\": \"在 GitHub 内部构建您的 AI 产品。利用内置的模型接入、提示协作和轻量级评估工具，创建提示词、测试模型，并发布 AI 驱动的功能。\",\n                \"Read the docs\": \"阅读文档\",\n                \"to learn more.\": \"了解详情。\",\n\n            \"You do not have access to GitHub Models on this repository\": \"您无权访问此仓库上的 GitHub 模型\",\n                \"You need write permissions or higher for this repository to use GitHub Models.\": \"您需要拥有此仓库写入权限或更高权限，才能使用 GitHub 模型。\",\n                \"Learn more about GitHub Models.\": \"了解更多。\",\n\n            \"Get started\": \"开始使用\",\n                \"Watch the models demo\": \"观看模型演示\",\n                \"Watch this 3-minute demo reel to learn everything you can do with GitHub Models\": \"观看这个 3 分钟的演示视频，了解您可以使用 GitHub 模型完成的所有操作\",\n\n            \"Prompts\": \"提示词\",\n                \"Create, evaluate, and iterate on prompts right inside your repo.\": \"在您的仓库内直接创建、评估和迭代提示词。\",\n                \"Get write permissions or higher for this repository to create and manage prompts.\": \"获得对此仓库的写入权限或更高权限，才能创建和管理提示词。\",\n                \"Create a prompt\": \"创建提示词\",\n                \"Build with natural language or using\": \"使用自然语言或使用\",\n                \"prompt.yml files\": \"prompt.yml 文件\",\n                \"Test sample prompt\": \"测试示例提示词\",\n                \"Manage prompts stored in your repo using\": \"管理您仓库中的提示词，使用\",\n                \"Get started with Models in your codebase\": \"开始使用模型您的代码库\", // 还有一些部分未翻译\n\n            \"Add AI to your project now\": \"立即添加 AI 到您的项目\",\n                \"Drop this snippet into your code to start using AI instantly.\": \"将此代码片段插入您的代码中，即可立即开始使用 AI。\",\n                \"Get API Key\": \"获取 API 密钥\",\n\n            \"Explore 40+ models in the catalog\": \"在目录中探索 40+ 模型\",\n                \"Compare models in the playground—test parameters, token usage, and latency to find the right fit for your use case.\": \"在游乐场中对比模型——测试参数、令牌使用量和延迟，以找到最适合您用例的模型。\",\n            \"Power your prompt with the right model\": \"为您的提示词选择合适的模型\",\n                \"Test and compare models against your prompt to find the best fit, then commit it directly to your project when you're ready.\": \"针对您的提示词测试和对比不同模型，以找到最合适的模型，然后在准备好后将其直接提交到您的项目中。\",\n            \"Instrument your Actions workflow with models\": \"使用模型为您的 Actions 工作流提供支持\",\n                \"Set up a new GitHub Actions workflow using models.\": \"使用模型新建 Actions 工作流。\",\n\n        // 提示词\n            \"Manage\": \"管理\",\n                \"prompts stored in your repo using\": \"您仓库中的提示词，使用\",\n                \".prompt.yml file\": \".prompt.yml 文件\",\n                \"format.\": \"格式。\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) prompts? found/, \"$1 条提示词\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Models/, \"模型\"],\n            [/Prompts/, \"提示词\"],\n        ],\n    },\n}\n\nI18N[\"zh-CN\"][\"repository/wiki\"] = { // 仓库 - wiki 页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // wiki 页面  /<user-name>/<repo-name>/wiki\n            // [/Welcome to the ([^ ]+) wiki!/, \"欢迎访问 $1 的 Wiki\"], // wiki页面\n            \"You do not have permission to update this wiki.\": \"您无权更新此 wiki。\",\n            \"Wikis provide a place in your repository to lay out the roadmap of your project, show the current status, and document software better, together.\": \"Wiki 为您的仓库提供了一个更好的文档资料。\",\n            \"Create the first page\": \"创建第一个页面\",\n\n            // [/edited this page/, \"编辑此页\"], // wiki\n            // [/(\\d+) revisions?/, \"$1 次修订\"], // wiki\n            \"New page\": \"新建页面\",\n            \"Add a custom footer\": \"添加自定义页脚\",\n\n            // 右侧栏\n            \"Pages\": \"页面\",\n                \"Toggle table of contents\": \"折叠/展开目录\",\n                \"Find a page…\": \"搜索页面…\",\n            \"Add a custom sidebar\": \"添加自定义侧边栏\",\n            \"Clone this wiki locally\": \"在本地克隆这个 Wiki\",\n\n            \"Last updated\": \"最后更新\",\n\n        // 新建 wiki 页面 /<user-name>/<repo-name>/wiki/_new\n            \"Create new page\": \"创建新页面\",\n            \"Title\": \"标题\",\n            \"Write\": \"编辑\",\n            \"Preview\": \"预览\",\n            \"Edit mode:\": \"标记语言：\",\n            \"Edit message\": \"提交信息\",\n\n            \"Write a small message here explaining this change. (Optional)\": \"请简要描述所作修改(可选)\",\n            \"Save page\": \"保存页面\",\n            // 顶部提醒\n                \"Your Wiki was created.\": \"您的 Wiki 已创建。\",\n\n        // 编辑 wiki 页面 /<user-name>/<repo-name>/wiki/<page name>/_edit\n            // [/Editing/, \"编辑\"], //编辑 wiki\n            \"Page history\": \"页面历史\",\n            \"Delete page\": \"删除页面\",\n                \"Are you sure you want to delete this page?\": \"您确定要删除此页面吗？\",\n\n            \"Someone has edited the wiki since you started. Please reload this page and re-apply your changes.\": \"此页面已被其他用户修改。请重新加载此页面并重新应用您的更改。\",\n\n            // 顶部提醒\n                \"The wiki page was successfully deleted.\": \"Wiki 页面已成功删除。\",\n\n        // wiki页面历史 /<user-name>/<repo-name>/wiki/<page name>/_history\n            \"History\": \"历史\",\n            \"Edit page\": \"编辑页面\",\n            \"Revisions\": \"修订\",\n            \"Compare revisions\": \"对比修订\",\n                \"Invalid or empty diff.\": \"无效或无差异。\",\n\n        // wiki修订间差异 /<user-name>/<repo-name>/wiki/<page name>/_compare\n            \"Revert changes\": \"撤销更改\",\n            \"Back to top\": \"回到顶部\",\n            \"Showing\": \"显示\",\n            \"with\": \"包含\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            // 差异按钮\n                \"Display the source diff\": \"显示源差异\",\n                \"Display the rich diff\": \"显示富差异\",\n            // 修改的文件 右侧下拉\n                \"Show comments\": \"显示评论\",\n                \"Show annotations\": \"显示注释\",\n                \"View file\": \"查看文件\",\n                \"Edit file\": \"编辑文件\",\n                \"Delete file\": \"删除文件\",\n\n        // wiki 编辑器（补全未翻译部分\n            // 工具栏\n                \"Header 1\": \"1 级标题\",\n                \"Header 2\": \"2 级标题\",\n                \"Header 3\": \"3 级标题\",\n\n                \"Image\": \"图片\",\n                    \"Insert Image\": \"插入图片\",\n                        \"Image URL\": \"图片 URL\",\n                        \"Alt Text\": \"文本\",\n\n                \"Unordered List\": \"无序列表\",\n                \"Ordered List\": \"有序列表\",\n                \"Blockquote\": \"整段引用\",\n                \"Horizontal Rule\": \"水平规则\",\n\n                \"Help\": \"帮助\",\n                    \"Block Elements\": \"段落元素\",\n                        \"Paragraphs & Breaks\": \"图表 & 段落\",\n                            \"To create a paragraph, simply create a block of text that is not separated by one or more blank lines. Blocks of text separated by one or more blank lines will be parsed as paragraphs.\": \"要创建一个段落，只需创建一个没有一个或多个空行分隔的文本块即可。被一个或多个空行分隔的文本块将被解析为段落。\",\n                            \"If you want to create a line break, end a line with two or more spaces, then hit Return/Enter.\": \"如果要创建换行符，请在行尾空两格或更多格，然后按 Return/Enter 键。\",\n                        \"Headers\": \"标题\",\n                            // Markdown 支持两种标题格式。维基编辑器使用“atx”样式的标题。只需在标题文本前加上 # 字符数即可指定标题深度。例如：# 1 级标题，## 2 级标题 和 ### 3 级标题 的标题将逐渐变小。您可以用任意数量的#号结束标题。\n                            \"Markdown supports two header formats. The wiki editor uses the “atx”-style headers. Simply prefix your header text with the number of\": \"Markdown 支持两种标题格式。维基编辑器使用“atx”样式的标题。只需在标题文本前加上\",\n                            \"characters to specify heading depth. For example:\": \"字符数即可指定标题深度。例如：\",\n                            \"will be progressively smaller headers. You may end your headers with any number of hashes.\": \"的标题将逐渐变小。您可以用任意数量的#号结束标题。\",\n                        \"Blockquotes\": \"整段引用\",\n                            // Markdown 通过在每行前加上 > 来创建电子邮件风格的 “楷体引号”。如果您决定硬包文本并在每行前加上 > 字符，这种方法看起来效果最好，但 Markdown 也支持在段落前加上 >。\n                                \"Markdown creates blockquotes email-style by prefixing each line with the\": \"Markdown 通过在每行前加上\",\n                                \". This looks best if you decide to hard-wrap text and prefix each line with a\": \"来创建电子邮件风格的 “楷体引号”。如果您决定硬包文本并在每行前加上\",\n                                \"character, but Markdown supports just putting\": \"字符，这种方法看起来效果最好，但 Markdown 也支持在段落前加上\",\n                                \"before your paragraph.\": \"。\",\n                        // 清单\n                            // Markdown 支持有序和无序列表。要创建有序列表，只需在每行前加上一个数字（任何数字都可以，这就是编辑器只使用一个数字的原因）。要创建无序列表，可以在每行前加上 *、+ 或 -。\n                                \"Markdown supports both ordered and unordered lists. To create an ordered list, simply prefix each line with a number (any number will do — this is why the editor only uses one number.) To create an unordered list, you can prefix each line with\": \"Markdown 支持有序和无序列表。要创建有序列表，只需在每行前加上一个数字（任何数字都可以，这就是编辑器只使用一个数字的原因）。要创建无序列表，可以在每行前加上\",\n                                \"or\": \"或\",\n                            // 列表项可以包含多个段落，但每个段落必须缩进至少 4 个空格或一个制表符。\n                                \"List items can contain multiple paragraphs, however each paragraph must be indented by at least 4 spaces or a tab.\": \"列表项可以包含多个段落，但每个段落必须缩进至少 4 个空格或一个制表符。\",\n                        \"Code Blocks\": \"代码块\",\n                            \"Markdown wraps code blocks in pre-formatted tags to preserve indentation in your code blocks. To create a code block, indent the entire block by at least 4 spaces or one tab. Markdown will strip the extra indentation you’ve added to the code block.\": \"Markdown 将代码块封装在预设格式的标签中，以保留代码块的缩进。要创建代码块，请将整个代码块缩进至少 4 个空格或一个制表符。Markdown 会去掉您添加到代码块中的额外缩进。\",\n                        \"Horizontal Rules\": \"水平规则\",\n                            \"Horizontal rules are created by placing three or more hyphens, asterisks or underscores on a line by themselves. Spaces are allowed between the hyphens, asterisks or underscores.\": \"横线规则是将三个或三个以上的连字符、星号或下划线单独放在一行中。连字符、星号或下划线之间允许有空格。\",\n                    \"Span Elements\": \"引用元素\",\n                        \"Links\": \"链接\",\n                            // Markdown 有两种链接类型：内联和引用。对于这两种类型的链接，您希望向用户显示的文本都放在方括号中。例如，如果您想让链接显示文本 “GitHub”，您可以写成 [GitHub]。\n                                \"Markdown has two types of links:\": \"Markdown 有两种链接类型：\",\n                                \"inline\": \"内联\",\n                                \"reference\": \"引用\",\n                                \". For both types of links, the text you want to display to the user is placed in square brackets. For example, if you want your link to display the text “GitHub”, you write\": \"。对于这两种类型的链接，您希望向用户显示的文本都放在方括号中。例如，如果您想让链接显示文本 “GitHub”，您可以写成\",\n                            // 要创建内嵌链接，请在括号后创建一组括号，并在括号内写入 URL。(例如，[GitHub](https://github.com/)）。内联链接允许使用相对路径。\n                                \"To create an inline link, create a set of parentheses immediately after the brackets and write your URL within the parentheses. (e.g.,\": \"要创建内嵌链接，请在括号后创建一组括号，并在括号内写入 URL。(例如，\",\n                                \"). Relative paths are allowed in inline links.\": \"）。内联链接允许使用相对路径。\",\n                            // 要创建引用链接，请使用两组方括号。[[我的内部链接|内部引用]]将链接到内部引用。\n                                \"To create a reference link, use two sets of square brackets.\": \"要创建引用链接，请使用两组方括号。\",\n                                \"will link to the internal reference\": \"将链接到\",\n                        \"Emphasis\": \"强调\",\n                            // 星号（*）和下划线（_）被视为强调，并用 `<em>` 标签包裹，这在大多数浏览器中通常显示为斜体。双星号（**）或双下划线（__）被视为使用 `<strong>` 标签的粗体。要创建斜体或粗体文本，只需用单个/双个星号/下划线包裹您的单词。例如，**我的双重强调文本** 变成我的双重强调文本，*我的单一强调文本* 变成我的单一强调文本。\n                                \"Asterisks (\": \"星号（\",\n                                \") and underscores (\": \"）和下划线（\",\n                                \") are treated as emphasis and are wrapped with an\": \"）被视为强调，并用\",\n                                \"tag, which usually displays as italics in most browsers. Double asterisks (\": \"标签包裹，这在大多数浏览器中通常显示为斜体。双星号（\",\n                                \") or double underscores (\": \"）或双下划线（\",\n                                \") are treated as bold using the\": \"）被视为使用\",\n                                \"tag. To create italic or bold text, simply wrap your words in single/double asterisks/underscores. For example,\": \"标签的粗体。要创建斜体或粗体文本，只需用单个/双个星号/下划线包裹您的单词。例如，\",\n                                \"becomes\": \"变成\",\n                                \", and\": \"，\",\n                        // 代码\n                            // 要创建内联代码，只需用反标 (`) 将代码包起来即可。Markdown 会将 `myFunction` 变成 myFunction。\n                                \"To create inline spans of code, simply wrap the code in backticks (\": \"要创建内联代码，只需用反标\",\n                                \"). Markdown will turn\": \") 将代码包起来即可。Markdown 会将\",\n                                \"into\": \"变成\",\n                        \"Images\": \"图片\",\n                            // Markdown 的图像语法与链接语法很相似；基本上是相同的语法，前面加上一个感叹号（!）。例如，如果您想链接到 https://github.com/unicorn.png 网站上的图片，并使用另一文本 “我的独角兽”，您可以写成 ![My Unicorn](https://github.com/unicorn.png)。\n                            \"Markdown image syntax looks a lot like the syntax for links; it is essentially the same syntax preceded by an exclamation point (\": \"Markdown 的图像语法与链接语法很相似；基本上是相同的语法，前面加上一个感叹号（\",\n                            \"). For example, if you want to link to an image at\": \"）。例如，如果您想链接到\",\n                            \"with the alternate text\": \"网站上的图片，并使用另一文本\",\n                            \", you would write\": \"，您可以写成\",\n                    \"Miscellaneous\": \"杂项\",\n                        \"Automatic Links\": \"自动链接\",\n                            // 如果您想创建一个能显示实际 URL 的链接，markdown 允许您用 < 和 > 来快速封装 URL。例如，只要写入 <https://github.com/>，就能轻松创建 https://github.com/ 链接。\n                            \"If you want to create a link that displays the actual URL, markdown allows you to quickly wrap the URL in\": \"如果您想创建一个能显示实际 URL 的链接，markdown 允许您用\",\n                            \"to do so. For example, the link\": \"来快速封装 URL。例如，创建链接\",\n                            \"is easily produced by writing\": \"只需写入\",\n                        \"Escaping\": \"忽略\",\n                            \"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\": \"如果您想在文档中使用特殊的 Markdown 字符（例如显示星号），可以用反斜杠 (\",\n                            \"). Markdown will ignore the character directly after a backslash.\": \") 来转义该字符。Markdown 将忽略反斜线后的字符。\",\n                            //\"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\\). Markdown will ignore the character directly after a backslash.\": \"如果您想在文档中使用特殊的 Markdown 字符（例如显示星号），可以用反斜杠 (\\) 来转义该字符。Markdown 将忽略反斜线后的字符。\",\n\n            // 底部\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通过拖放、选择或粘贴来添加文件。\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 创建样式\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Welcome to the ([^ ]+) wiki!/, \"欢迎访问 $1 的 Wiki\"], // wiki页面\n        [/edited this page/, \"编辑此页\"], // wiki\n        [/(\\d+) revisions?/, \"$1 次修订\"], // wiki\n        [/Editing/, \"编辑\"], //编辑 wiki\n        [/Could not find version \"([^ ]+)\"/, \"找不到版本 “$1”\"],\n        [/Compare:/, \"对比：\"],\n        [/(\\d+) additions?/, \"$1 处增加\"],\n        [/(\\d+) deletions?/, \"$1 处删除\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/branches\"] = { // 仓库 - 分支页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 分支页面 branches  /<user-name>/<repo-name>/branches\n            // 标签卡栏\n            \"Overview\": \"概况\",\n            \"Yours\": \"您的\",\n            \"Active\": \"活跃的\",\n            \"Stale\": \"陈旧的\",\n            \"All branches\": \"所有分支\",\n            \"All\": \"所有\",\n            \"branches\": \"分支\",\n            \"New branch\": \"新建分支\",\n                // 创建分支对话框\n                \"Branch source\": \"源分支\",\n                    \"Choose from this fork or its upstream repository.\": \"从此复刻或其上游仓库中进行选择。\",\n                    \"Choose a source branch\": \"选择源分支\",\n                \"Share feedback\": \"分享反馈\",\n            \"Search branches…\": \"搜索分支…\",\n            \"Copy branch name to clipboard\": \"复制分支名到剪切板\",\n\n            \"Default branch\": \"默认分支\",\n            \"Switch default branch\": \"切换默认分支\",\n            \"View branch activity\": \"查看分支活动\",\n            \"Default\": \"默认\",\n\n            // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"],\n            \"Your\": \"您的\",\n            \"branch isn't protected\": \"分支不受保护\",\n            \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保护此分支不被强制推送或删除，或在合并之前要求状态检查。\",\n            \"Dismiss\": \"驳回\",\n            \"Protect this branch\": \"保护该分支\",\n\n            \"Updated\": \"更新于\",\n            \"New pull request\": \"发起拉取请求\",\n\n                // 重命名分支对话框\n                \"Rename default branch\": \"重命名默认分支\", // 重命名默认分支 标题\n                \"Rename this branch\": \"重命名分支\", // 重命名其他分支 标题\n                \"Rename\": \"重命名\",\n                \"to:\": \"为：\",\n                \"Most projects name the default branch\": \"大多数项目将默认分支名为\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 该分支存在来自其他分支的拉取请求时\n                        \"Will update\": \"将更新\",\n                        \"pull request targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"pull\": \"条拉取请求\",\n                        \"request\": \" \",\n                        \"targeting this\": \"针对\",\n                        \"branch.\": \"该分支。\",\n                        \"branch protection rule that explicitly targets\": \"条分支保护规则明确针对\",\n\n                    // 该分支存在用于其他分支的拉取请求时\n                        \"Will close\": \"将关闭\",\n                        \"open pull request for this branch.\": \"个该分支的拉取请求。\",\n                        \"open pull\": \"个打开的拉取请求\",\n                        \"for this branch.\": \"针对该分支。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"将取消当前发布的 GitHub Pages 站点。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您当前的 GitHub Pages 站点将被取消发布。重命名分支上的新提交将再次发布 GitHub Pages 站点。\",\n\n                    \"Will not update your members' local environments.\": \"不会更新您成员的本地环境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不会更新您成员的本地环境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成员将不得不手动更新他们的本地环境。我们会在他们访问仓库时通知他们，或者您可以共享以下命令。\",\n\n                \"Rename branch\": \"重命名分支\",\n                \"Saving…\": \"保存中…\",\n\n                \"Deleted\": \"已删除\",\n                // 删除分支后\n                \"Restore\": \"还原\",\n                \"Deleted just now by\": \"刚刚被删除\",\n\n                // 删除对话框 仅当该分支存在拉取请求\n                \"The branch\": \"分支\",\n                // [/is associated with (\\d+) open pull requests?:/, \"与 $1 个拉取请求相关联：\"], // 分支页面\n                \"is associated with an open pull request:\": \"与 1 个拉取请求相关联：\", // 分支页面\n                \"If you delete this branch, the pull request will be closed.\": \"如果您删除此分支，则拉取请求将被关闭。\",\n                \"Are you sure you want to delete this branch?\": \"您确定要删除此分支吗？\",\n\n                // 顶部提醒\n                // [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 将很快重命名为 $2。\"], //分支重命名成功\n\n            \"Your branches\": \"您的分支\",\n            \"You haven’t pushed any branches to this repository.\": \"您没有推送任何分支到该仓库。\",\n            \"Active branches\": \"活跃的分支\",\n            \"There aren’t any active branches.\": \"没有任何活跃的分支。\",\n            \"Stale branches\": \"陈旧的分支\",\n            \"There aren’t any stale branches.\": \"没有任何陈旧的分支。\",\n            \"View more active branches\": \"查看更多活跃的分支\",\n            \"View more stale branches\": \"查看更多陈旧的分支\",\n\n            // [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"领先 $1 个提交，落后 $2 个提交于 $3\"],\n\n            // 新版分支视图\n                // 创建分支对话框\n                \"Create a branch\": \"创建分支\",\n                    \"New branch name\": \"新分支名称\",\n                    \"Source\": \"源分支\",\n                        \"Switch branches\": \"切换分支\",\n                        \"Find a branch...\": \"查找分支…\",\n                        \"default\": \"默认\",\n                    \"Create new branch\": \"创建新分支\",\n\n                \"Search branches...\": \"搜索分支…\",\n\n                // 无匹配结果\n                    \"No branches\": \"没有分支\",\n                    \"No branches match the search\": \"没有符合搜索条件的分支\",\n\n                \"Check status\": \"检查状态\",\n                \"Behind\": \"落后\",\n                \"Ahead\": \"领先\",\n                \"Pull request\": \"拉取请求\",\n\n                \"Copy branch name to clipboard\": \"将分支名称复制到剪贴板\",\n                \"This branch is protected by branch protections\": \"该分支受分支保护的保护\",\n\n                \"Branch menu\": \"分支菜单\",\n                    \"Activity\": \"活动\",\n                    \"View rules\": \"查看规则\",\n                        \"There are no rulesets associated with this branch.\": \"该分支没有相关的规则集。\",\n\n                \"View more branches\": \"查看更多分支\",\n\n                // 底部提醒\n                    \"You can't delete this protected branch.\": \"您无法删除此受保护分支。\",\n                    \"You can't delete the default branch.\": \"您不能删除默认分支。\",\n                    \"Branch could not be deleted.\": \"不能删除分支。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保护\"],\n        [/Rename default branch/, \"重命名默认分支\"],\n        [/Rename branch/, \"重命名分支\"],\n        [/Your branch name will be ([^ ]+)/, \"分支将重命名为 $1\"],\n        [/Delete branch/, \"删除分支\"],\n        // [/is associated with (\\d+) open pull requests?:/, \"与 $1 个拉取请求相关联：\"],\n        [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 将很快重命名为 $2。\"], //分支重命名成功\n        [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"领先 $1 个提交，落后 $2 个提交于 $3\"],\n        [/(\\d+) commits? behind ([^ ]+)/, \"落后 $1 个提交于 $2\"],\n        [/(\\d+) commits? ahead ([^ ]+)/, \"领先 $1 个提交于 $2\"],\n        [/Ahead behind count: (\\d+)/, \"领先落后数：$1\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"a[data-target='branch-filter.allFilter']\", \"所有分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Branches/, \"分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/activity\"] = { // 仓库 - 活动页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 活动页面 /<user-name>/<repo-name>/activity\n            \"Activity\": \"活动\",\n\n            \"All branches\": \"所有分支\",\n                \"Switch branches\": \"切换分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Branches\": \"分支\",\n                \"default\": \"默认\",\n                \"View activity for all branches\": \"查看所有分支的活动\",\n\n            \"All activity\": \"所有活动\",\n                \"Direct pushes\": \"直接推送\",\n                \"Pull request merges\": \"拉取请求合并\",\n                \"Merge queue merges\": \"合并队列合并\",\n                \"Force pushes\": \"强制推送\",\n                \"Branch creations\": \"创建分支\",\n                \"Branch deletions\": \"删除分支\",\n\n            \"All users\": \"所有用户\",\n                \"Find a user...\": \"查找用户…\",\n                \"View activity for all users\": \"查看所有用户的活动\",\n\n            \"All time\": \"所有时间\",\n                \"Last 24 hours\": \"过去 24 小时\",\n                \"Last week\": \"上星期\",\n                \"Last month\": \"上个月\",\n                \"Last quarter\": \"上季度\",\n                \"Last year\": \"去年\",\n\n\n            \"Showing oldest first\": \"显示最早的\",\n            \"Showing most recent first\": \"显示最近的\",\n\n            \"Compare changes\": \"比较变更\",\n            \"Restore Branch\": \"恢复分支\",\n\n            \"Previous\": \"上一页\",\n            \"Next\": \"下一页\",\n\n            \"Direct push\": \"直接推送\",\n            \"Pull request merge\": \"拉取请求合并\",\n            \"Force push\": \"强制推送\",\n            \"Branch creation\": \"创建分支\",\n            \"Branch deletion\": \"删除分支\",\n\n            \"force pushed to\": \"强制推送到\",\n            \"deleted\": \"删除\",\n\n            \"Share feedback about this page\": \"分享关于此页面的反馈\",\n\n        // 活动页面 - 指定分支 /<user-name>/<repo-name>/activity?ref=<branch-name>\n            \"created this branch\": \"创建此分支\",\n            \"deleted this branch\": \"删除此分支\",\n            \"force pushed\": \"强制推送\",\n\n            \"No activity matched your search.\": \"没有与您搜索相匹配的活动。\",\n            \"Try expanding your search by selecting a different branch, activity type, user, or timeframe.\": \"尝试通过选择不同的分支、活动类型、用户或时间范围来扩大搜索范围。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/pushed (\\d+) commits? to/, \"推送 $1 个提交到\"],\n        [/pushed (\\d+) commits?/, \"推送 $1 个提交\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/releases\"] = { // 仓库 - 发行版页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 发行版 页面 /<user-name>/<repo-name>/releases\n            \"Releases\": \"发行版\",\n            // 无发行版时\n            \"There aren’t any releases here\": \"没有任何发行版\",\n            \"You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in\": \"您可以创建一个发行版来打包软件，以及发行说明和二进制文件链接，供其他人使用。了解更多关于发行版的信息，查看\",\n            \"our docs\": \"文档\",\n            \"Releases are powered by\": \"发行版是指通过对仓库中\",\n            \"tagging specific points of history\": \"特定历史点\",\n            \"in a repository. They’re great for marking release points like\": \"进行标记来发布。用于发布的版本号类似\",\n            \"Create a new release\": \"创建发行版\",\n\n            // 有发行版时\n            \"Draft a new release\": \"起草发行版\",\n            \"Find a release\": \"搜索发行版\",\n\n                // 搜索未找到\n                \"No releases found\": \"无匹配结果\",\n            // 左侧栏\n            \"Pre-release\": \"预发行版\",\n            \"Latest\": \"最新发行版\",\n            \"Draft\": \"草案\",\n\n            \"Compare\": \"对比\",\n                \"Choose a tag to compare\": \"选择标签进行比较\",\n                \"Find a tag\": \"搜索标签\",\n                \"View all tags\": \"查看全部标签\",\n\n            \"Read more\": \"阅读更多内容\",\n            \"Contributors\": \"贡献者\",\n            \"Assets\": \"资源\",\n            // [/Show all (\\d+) assets?/, \"显示所有 $1 个资产？\"],\n\n            \"Join discussion\": \"加入讨论\",\n\n            // [/Edit: (.*)/, \"编辑：$1\"],\n            // [/Delete: (.*)/, \"删除：$1\"],\n\n        // 发行版 标签卡 /<user-name>/<repo-name>/tags\n            \"Create release\": \"创建发行版\",\n            \"Edit release\": \"编辑发行版\",\n\n            \"Toggle commit message\": \"显示/隐藏提交消息\",\n\n            \"Notes\": \"说明\",\n            \"Downloads\": \"下载\",\n\n            \"Delete tag\": \"删除标签\",\n                // 删除标签 对话框\n                    \"Delete this tag?\": \"删除此标签？\",\n                    \"This will delete the information for the tag\": \"这将删除标签信息\",\n                    \"and cannot be undone.\": \"而且无法撤销。\",\n                    \"Delete this tag\": \"删除此标签\",\n\n        // 某个发行版标签 /<user-name>/<repo-name>/releases/tag/<tag>\n            // 不存在发行版时\n            // \"Create release\": \"创建发行版\",\n            \"from tag\": \"来自该标签\",\n            // \"Edit\": \"编辑\",\n            \"release\": \"发行版\",\n\n            // \"Read release notes\": \"阅读发布说明\",\n            // 状态词\n            \"released this\": \"发布于\",\n            \"tagged this\": \"标记了\",\n            \"drafted this\": \"起草了\",\n\n            // 删除标签对话框\n            \"Delete tag?\": \"删除标签？\",\n            \"This will delete the information for this tag and cannot be undone.\": \"将删除该标签的所有信息，并且无法撤消。\",\n            \"I understand, delete this tag\": \"我明白了，依然删除该标签\",\n\n            // 存在发行版时\n            // 15 commits to master since this release\n\n            \"Delete release\": \"删除发行版\",\n            // 删除发行版对话框\n            \"Delete this release?\": \"删除该发行版？\",\n            // \"This will delete the information for this release.\": \"这将会删除该发行版的信息。\",\n                \"This will delete the information for the release\": \"这将删除该发行版信息：\",\n            \"Delete this release\": \"删除发行版\",\n\n            // 顶部提醒框\n            \"Your tag was removed\": \"您的标签已删除\",\n            \"Your release was removed\": \"您的发行版已删除\",\n\n        // 创建发行版 /releases/new 和 编辑发行版 /releases/edit/<tag>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 提醒条\n            \"This is a draft and won’t be seen by the public unless it’s published.\": \"这是一个草案，除非发布，否则不会被公众看到。\",\n            \"This is a draft and won’t be seen by the public unless it is published\": \"这是一个草案，除非发布，否则不会被公众看到。\",\n            \"Discard draft\": \"丢弃草案\",\n\n            \"New Release\": \"新建发行版\", // 上方\n            \"New release\": \"新建发行版\", // 下方\n\n            \"Release notes\": \"发行版说明\",\n                \"Select a previous tag to create generated release notes\": \"选择一个先前的标签以生成发行说明\",\n\n            \"Choose a tag\": \"选择标签\",\n                \"Find or create a new tag\": \"查找或创建新标签\",\n                \"Search or create a new tag\": \"查找或新建标签\",\n            \"Tag:\": \"标签：\",\n                \"Select tag\": \"选择标签\",\n                \"Create new tag\": \"新建标签\",\n            \"Target:\": \"目标：\",\n                \"Pick a branch or recent commit\": \"选择分支或最近的提交\",\n                \"Filter branches…\": \"筛选分支…\",\n                \"Filter recent commits…\": \"筛选最近提交…\",\n                \"Recent Commits\": \"最近提交…\",\n            \"Choose an existing tag, or create a new tag on publish\": \"选择现有的标签，或在发布时创建新标签\",\n            \"Choose an existing tag, or create a new tag when you publish this release.\": \"选择现有的标签，或在您发布这个版本时，创建新标签。\",\n\n            \"Loading tag information…\": \"载入标签信息…\",\n            // 在筛选标签框输入 标签时\n            \"Create new tag:\": \"创建新标签：\",\n            \"on publish\": \"发布时\",\n            // 输入结果\n            \"Duplicate tag name\": \"重复的标签名\",\n                \"This tag already has release notes. Would you like to\": \"这个标签已经有发行说明。您是否愿意\",\n                \"edit them?\": \"编辑它们？\",\n                \"edit the existing notes\": \"编辑现有注释\",\n                \"Existing tag\": \"已存在的标签\",\n            \"Invalid tag name\": \"无效的标签名\",\n                \"We weren’t able to create the release for you. Make sure you have a valid tag.\": \"我们无法为您创建发行版。请确保您有一个有效的标签。\",\n                \"There was an error creating your Release: tag name can't be blank, tag name is not well-formed, published releases must have a valid tag.\": \"创建发行版时出错：标签名称不能为空，标签名称格式不正确，已发布的发行版必须有一个有效的标签。\",\n                \"We can’t create a tag with this name. Take a look at the suggestions in the sidebar for example tag names.\": \"我们不能用这个名字创建标签。看看侧边栏的建议，看看标签名称的例子。\",\n            \"Excellent! This tag will be created from the target when you publish this release.\": \"优秀! 当您发布这个版本时，这个标签将从目标创建。\",\n\n            \"Release title\": \"发行版标题\",\n\n            \"Previous tag:\": \"上一个标签：\",\n            \"Previous tag\": \"上一个标签\",\n                \"Auto\": \"自动\",\n                \"auto\": \"自动\",\n                \"Select previous tag to compare\": \"选择上一个标签进行比较\",\n                    \"Find previous tag\": \"筛选上一个标签\",\n            \"Generate release notes\": \"生成发行版说明\",\n                \"Select a valid tag to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"选择一个有效的标签，以自动为该差异中的所有合并拉取请求和该版本的贡献者添加至 Markdown 说明\",\n                \"Automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"自动为来自此差异和此发行版贡献者的所有已合并拉取请求，添加 Markdown 说明。\",\n                \"Clear existing notes to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"清除现有的注释，以自动添加来自此差异和此版本贡献者的所有合并的拉取请求的标记。\",\n\n                \"There were no pull requests associated with the commits included in this release.\": \"此版本中没有与提交相关的拉取请求。\",\n\n            \"Describe this release\": \"描述此发行版\",\n\n            // 编辑器按钮(老版)\n                \"Add heading text\": \"添加标题文本\",\n                \"Add bold text, <Ctrl+b>\": \"添加粗体文本 <Ctrl+b>\",\n                \"Add italic text, <Ctrl+i>\": \"添加斜体文本 <Ctrl+i>\",\n                \"Add a quote, <Ctrl+Shift+.>\": \"添加引用 <Ctrl+Shift+.>\",\n                \"Add code, <Ctrl+e>\": \"添加代码 <Ctrl+e>\",\n                \"Add a link, <Ctrl+k>\": \"添加链接 <Ctrl+k>\",\n                \"Add a bulleted list, <Ctrl+Shift+8>\": \"添加无序列表 <Ctrl+Shift+8>\",\n                \"Add a numbered list, <Ctrl+Shift+7>\": \"添加有序列表 <Ctrl+Shift+7>\",\n                \"Add a task list, <Ctrl+Shift+l>\": \"添加任务列表 <Ctrl+Shift+l>\",\n                \"Directly mention a user or team\": \"直接提及用户或团队\",\n                \"Reference an issue, pull request or discussion\": \"引用议题，拉取请求或讨论\",\n                \"Add saved reply\": \"添加快捷回复\",\n                    \"Select a reply\": \"选择回复\",\n                        \"Filter saved replies\": \"筛选快捷回复\",\n                        \"Create a new saved reply\": \"创建新快捷回复\",\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通过拖拽、选择或粘贴来附加文件。\",\n\n            // 附加文件\n            \"Attach binaries by dropping them here or selecting them.\": \"拖拽文件到这来或选择它们来附加文件。\",\n            \"Uploading your release now…\": \"正在上传到您的发行版…\",\n            \"Uploading your file now…\": \"正在上传您的文件…\",\n            \"An attachment with that filename already exists.\": \"同名附件已经存在。\",\n            \"Try a different file.\": \"请尝试不同的文件。\",\n            \"We don’t support that file type.  try zipping it.\": \"我们不支持该文件类型，请尝试压缩它。\",\n            \"Try another file.\": \"请尝试另一个文件。\",\n            \"Yowza, that’s a big file.\": \"哟，这可是个大文件。\",\n            \"Try again\": \"请尝试\",\n            \"With a file smaller than 2GB.\": \"一个小于 2GB 的文件。\",\n            \"This file is empty.\": \"这是一个空文件。\",\n            \"with a file that’s not empty.\": \"一个非空的文件。\",\n            \"Something went really wrong, and we can’t process that file.\": \"确实出了点问题，我们无法处理该文件。\",\n            \"Try again.\": \"请重试。\",\n\n            // \"Delete and try uploading this file again.\": \"删除并重新上传。\",\n            \"Upload failed. Delete and try uploading this file again.\": \"上传失败。请删除并重新上传。\",\n            \"will be deleted\": \"将被删除\",\n            \"Remove\": \"删除\",\n            \"Undo\": \"撤销\",\n\n            \"Set as a pre-release\": \"设置为预发布版本\",\n                \"This release is labeled as non-production ready.\": \"此版本标记为非正式版本。\",\n                \"This release will be labeled as non-production ready\": \"此版本将被标记为非正式版本。\",\n            \"Create a discussion for this release\": \"为此版本创建讨论\",\n                \"People will be able to leave comments and reactions on this release using Discussions.\": \"人们将能够使用“讨论”对此版本发表评论和反应。\",\n                        \"Category:\": \"类别：\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"问与答\",\n                            \"Show and tell\": \"展示与讲述\",\n            \"Set as the latest release\": \"设置为最新版本\", //edit\n                \"This release is labeled as the latest for this repository.\": \"此版本将被标记为此仓库的最新版本。\",\n                \"This release will be labeled as the latest for this repository.\": \"此版本将被标记为此仓库的最新版本。\",\n\n            \"Publish release\": \"发布发行版\",\n                \"Publishing…\": \"发布中…\",\n            \"Update release\": \"更新发行版\",\n                \"Saving release…\": \"保存中…\",\n            \"Save draft\": \"保存草案\",\n            \"Saved!\": \"已保存\",\n            \"Saving draft failed. Try again?\": \"保存草案失败。请重试？\",\n\n            // 丢弃草案 对话框\n            \"Are you sure?\": \"您确定哇?\",\n            \"This will delete the information for this draft.\": \"这将会删除该草案的信息。\",\n            \"Delete this draft\": \"删除草案\",\n\n            // 右侧栏\n            \"Tagging suggestions\": \"标签建议\",\n            \"It’s common practice to prefix your version names with the letter\": \"通常的做法是在版本名称前加上字母\",\n            \". Some good tag names might be\": \"。一些好的标签名称可能是\",\n            \"If the tag isn’t meant for production use, add a pre-release version after the version name. Some good pre-release versions might be\": \"如果标签不是用于生产的，就在版本名后面加上预发布版本。一些好的预发布版本可能是\",\n\n            \"Semantic versioning\": \"语义版本管理\",\n            \"If you’re new to releasing software, we highly recommend to\": \"如果您是发布新手，我们强烈您\",\n            \"learn more about semantic versioning.\": \"了解更多关于语义版本管理的信息。\",\n\n            \"A newly published release will automatically be labeled as the latest release for this repository.\": \"新发布的版本将自动标记为该仓库的最新版本。\",\n            \"If \\'Set as the latest release\\' is unchecked, the latest release will be determined by higher semantic version and creation date.\": \"如果未选中 “设置为最新版本”，则最新版本将由更高语义版本和创建日期确定。\",\n            \"Learn more about release settings.\": \"了解更多关于发行版设置的信息。\",\n\n       // 创建 Action 发行版到市场 /releases/new?marketplace 和 编辑 /releases/edit/... >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Release Action\": \"发布 Action\",\n                \"Publish this release to the GitHub Marketplace\": \"将此版本发布到 GitHub 市场\",\n                \"You must\": \"您必须\",\n                \"accept the GitHub Marketplace Developer Agreement\": \"接受 GitHub 市场开发者协议\",\n                \"before publishing an Action.\": \"在发布之前。\",\n\n                \"Publish this Action to the GitHub Marketplace\": \"将此 Action 发布到 GitHub  市场\",\n                \"Your Action will be discoverable in the Marketplace and available in GitHub search.\": \"您的 Action 将在市场中被发现，并可在 GitHub 搜索中找到。\",\n\n                \"Your action.yml needs changes before it can be published.\": \"您的 action.yml 需要更改才能发布。\",\n                \"Everything looks good! You have all the required information.\": \"一切看起来都不错！您拥有所有必需的信息。\",\n\n                \"Name\": \"名称\",\n                    \"- Name must be unique. Cannot match an existing action, user or organization name.\": \"- 名称必须唯一。不能与现有的操作、用户或组织名称相匹配。\",\n                \"Description\": \"描述\",\n                \"Icon\": \"图标\",\n                \"Color\": \"颜色\",\n\n                \"A README exists.\": \"已经存在 README 文件。\",\n\n                \"Primary Category\": \"主要类别\",\n                    \"Choose an option\": \"请选择\",\n                \"Another Category\": \"其他分类\",\n                    \"— optional\": \"— 可选\",\n\n        // 发行版评论\n            \"No significant changes\": \"无重大变化\", // GitHub Action 生成的发行版\n\n        // 反应相关\n            \"You reacted\": \"您表达看法\",\n            \"All reactions\": \"所有看法\", // Android UA\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Show all (\\d+) assets?/, \"显示所有 $1 个资产\"],\n        [/(\\d+) commits?/, \"$1 个提交\"],\n        [/to ([^ ]+) since this release/, \"在此发行版之后进入 $1 分支\"],  // $1 分支在此发行版之后有 xxx 个提交\n        [/This will delete the information for the release ([^ ]+)./, \"这将删除发行版 $1 的信息。\"],\n        [/Toggle (.*)'s commit message/, \"切换 $1 的提交消息\"],\n        [/Edit: (.*)/, \"编辑：$1\"],\n        [/Delete: (.*)/, \"删除：$1\"],\n        [/Remove attached binary ([^ ]+)/, \"删除 $1\"],\n        [/and (\\d+) other contributors/, \"和另外 $1 个贡献者\"],\n        [/You and (\\d+) others? reacted/, \"您和另外 $1 人表达看法\"],\n        [/^([^ ]+) and ([^ ]+)/, \"$1 和 $2\"], // 发行版 - 贡献者（2位\n        [/(\\d+) (people|person) reacted/, \"$1 人表达看法\"],\n        [/There are no releases containing \\\"([^ ]+)\\\"./, \"没有发行版包含“$1”。\"],\n        [/Edit (.+)/, \"编辑 $1\"],\n        [/^([^ ]+) will be created on publish/, \"$1 将在发布时创建\"],\n        [/^([^ ]+) is used by another release/, \"$1 已存在\"], // 省略部分内容\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Releases?/, \"发行版\"],\n            [/Tags/, \"标签\"],\n            [/New release/, \"新建发行版\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/tags\"] = I18N[\"zh-CN\"][\"repository/releases\"];\n\nI18N[\"zh-CN\"][\"repository/packages\"] = { // 仓库 - 软件包页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/packages\n            \"Get started with GitHub Packages\": \"开始使用 GitHub 软件包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地发布包，将您的包与您的代码一起存储，并与您的团队私下共享您的包。\",\n             \"Choose a registry\": \"选择注册表\",\n\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用于构建基于容器的应用的软件平台——小型轻量级执行环境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用于 Java 编程语言和 Java 运行环境的一个默认包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一个自由和开源的开源包管理器，用于包括 .NET 在内的 Microsoft 开发平台。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分发用于 Ruby 编程语言的 Ruby 程序和库的标准格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一个 JavaScript 的包管理器，包含在 Node.js 中。它使开发人员能够轻松地分享和重用代码。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"为您的团队提供一个管理 Docker 镜像的单一场所，并决定谁可以看到和访问您的镜像。\",\n\n            \"Package settings\": \"软件包设置\",\n            \"Repository source\": \"仓库来源\",\n            \"This is the repository where the package's source code is stored. This is defined in the repository's package.json file using the\": \"这是软件包源代码的仓库。这是在仓库中的 package.json 文件使用字段\",\n            \"field.\": \"定义的。\",\n            \"A GitHub repository has been identified as the source for this package. This package will be displayed in this repositories package list.\": \"GitHub 仓库已被确定为该软件包的来源，该软件包将显示在此仓库的软件包列表中。\",\n            \"You have referenced a non-GitHub source for this package that cannot be verified.\": \"您引用了一个无法验证的非 GitHub 来源的软件包。\",\n            \"Manage Actions access\": \"操作访问权限管理\",\n            \"Add Repository\": \"添加仓库\",\n            \"Pick the repositories that can access this package using\": \"选择可以访问此软件包的仓库，用于\",\n            \"Role:\": \"角色:\",\n            \"Choose role\": \"选择角色\",\n            \"Change role\": \"更改角色\",\n            \"Read\": \"只读\",\n            \"Write\": \"编辑\",\n            \"Admin\": \"管理\",\n            \"Remove\": \"删除\",\n            \"Actions repository access\": \"操作仓库访问\",\n            \"Pick the repositories that can access this package using GitHub Actions.\": \"选择可以使用 GitHub Actions 访问此软件包的仓库。\",\n            \"Permissions added for selected repositories.\": \"为选定的仓库添加了权限。\",\n            \"Permissions updated for selected repositories.\": \"更新了选定仓库的权限。\",\n            \"Can upload and download this package. Can read and write package metadata.\": \"可以上传和下载此软件包，并且可以读取和写入元数据。\",\n            \"Can download this package and read package metadata.\": \"可以下载此软件包并读取元数据。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can delete and restore packages.\": \"可以上传、下载和管理此软件包，可以读取和写入元数据，可以删除和恢复此软件包。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can grant package permissions.\": \"可以上传、下载和管理此软件包，可以读取和写入元数据，可以授予软件包权限。\",\n            \"Manage Codespaces access\": \"代码空间访问管理\",\n            \"Codespaces repository access\": \"代码空间仓库访问\",\n            \"Pick the repositories that can read this package using GitHub Codespaces.\": \"选择可以使用 GitHub 代码空间 读取此软件包的仓库。\",\n            \"Pick the repositories that can read this package using\": \"选择可以读取此软件包的仓库，用于\",\n            \"Inherited access\": \"继承访问\",\n            \"Inherit access from source repository (recommended)\": \"从源仓库继承访问权限 (推荐)\",\n            \"Go to\": \"转到\",\n            \"to change access, or remove inherited access to manage it separately. Inherited access is recommended.\": \"的访问设置以更改访问权限，或删除继承的访问权限以单独管理它，建议使用继承访问权限。\",\n            \"Danger Zone\": \"危险操作\",\n            \"Change package visibility\": \"更改软件包可见性\",\n            \"This package is currently public.\": \"该软件包当前是公开的\",\n            \"This package is currently private.\": \"该软件包当前是私有的\",\n            \"Change visibility\": \"更改可见性\",\n            \"Delete this package\": \"删除软件包\",\n            \"Once you delete a package, there is no going back. Please be certain.\": \"您一旦删除了软件包，将再也无法恢复，请确认！\",\n            \"Manage access\": \"访问管理\",\n            \"Invite teams or people\": \"邀请团队或人员\",\n\n        // 仓库链接对话框\n            \"Confirm you want to unlink this repository\": \"确认您要取消与此仓库的链接\",\n            \"Yes, unlink this repository\": \"是的，取消链接此仓库\",\n\n        // 添加仓库对话框\n            \"Select repository that can access this package using GitHub actions\": \"选择可以使用 GitHub 操作访问此软件包的仓库\",\n            \"Add repositories\": \"添加仓库\",\n\n        // 删除仓库对话框\n            \"Confirm you want to remove this repository\": \"确认要删除此仓库\",\n            \"Once removed,\": \"删除后，\",\n            \"will no longer have access to the\": \"将无法再访问\",\n            \"package.\": \"软件包。\",\n\n        // 代码空间添加仓库对话框\n            \"Select repository that can access this package using GitHub codespaces\": \"选择可以使用 GitHub 代码空间访问此软件包的仓库\",\n\n        // 更改软件包可见性对话框\n            \"Make this package visible to anyone.\": \"使这个软件包对所有人都可见。\",\n            \"Make this package visible privately, to organization members that have access.\": \"仅这个软件包有权访问的组织成员可见。\",\n            \"Please type\": \"请输入\",\n            \"to confirm:\": \"进行确认：\",\n            \"I understand the consequences, change package visibility.\": \"我明白后果，依然更改软件包可见性\",\n\n        // 删除软件包对话框\n            \"Are you absolutely sure?\": \"您真的确定吗？\",\n            \"Once this package is deleted, it will no longer be accessible.\": \"一旦删除了这个软件包，您将无法再访问它。\",\n            \"This action will delete package\": \"此操作将删除软件包\",\n            \". Versions of this package will no longer be accessible, and it will not appear in searches or package listings.\": \"。此软件包的版本将不再可访问，并且不会出现在搜索结果或软件包列表中。\",\n            \"I understand the consequences, delete this package\": \"我明白后果，依然删除这个软件包\",\n\n        // 更改仓库角色对话框\n            \"Select a new role\": \"选择新角色\",\n            \"Recommended for non-code contributors who want to view or discuss your package.\": \"推荐给想要查看或讨论您的软件包的非代码贡献者。\",\n            \"Recommended for contributors who actively push to your package.\": \"推荐给积极推送代码到您的软件包的贡献者。\",\n\n        // 更改成员角色对话框\n            \"Recommended for people who need full access to the package, including sensitive and destructive actions like managing security and package visibility.\": \"建议需要完全访问软件包的人员使用，包括管理安全性和软件包可见性等敏感和破坏性操作。\",\n\n        // 访问管理删除对话框\n            \"Confirm you want to remove this user\": \"确认删除该用户\",\n\n        // 邀请团队或人员对话框\n            \"Invite teams or people to\": \"邀请团队或人员参与\",\n            \"Search by username, full name, or email\": \"搜索用户名、全名或电子邮件\"\n    },\n    \"regexp\": [\n        [/Are you sure you want to unlink (.*) from (.*)\\?/, \"您确定要取消 $1 与 $2 的链接吗？\"],\n        [/(\\d+) repositor(y|ies) selected…/, \"选中 $1 个仓库\"],\n        [/Change the role of (\\d+) repositor(y|ies)\\?/, \"更改 $1 个仓库的角色？\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members? selected…/, \"选中 $1 个成员\"],\n        [/Change the role of (\\d+) members?\\?/, \"更改 $1 个成员的角色？\"],\n        [/(\\d+) members?/, \"$1 个成员\"],\n        [/(.*)'s access settings/, \"$1 访问设置\"],\n        [/Removed access from repository (.*)\\./, \"删除了仓库 $1 的访问权限。\"],\n        [/Removed (.*) as a package collaborator\\./, \"删除了 $1 作为软件包的协作者。\"],\n\n        // 删除仓库对话框\n        [/Remove (.*) from (.*)/, \"从 $2 中删除 $1\"],\n\n        // 更改仓库角色对话框\n        [/Change (\\d+) Roles?/, \"更改 $1 个角色\"],\n    ],\n}\n\nI18N[\"zh-CN\"][\"repository/pkgs\"] = { // 仓库 - 软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository/packages\"][\"static\"],\n\n        // /<user-name>/<repo-name>/pkgs/container/<pag name>\n            \"Installation\": \"安装\",\n                \"OS / Arch\": \"系统 / 架构\",\n                    \"unknown/unknown\": \"未知/未知\",\n            \"Learn more about packages\": \"了解更多关于软件包的信息\",\n            \"Learn more about npm packages\": \"了解更多关于 npm 软件包的信息\",\n            \"Install from the command line\": \"从命令行安装\",\n            \"Install from the command line:\": \"从命令行安装：\",\n            \"Install via package.json:\": \"通过 package.json 安装：\",\n            \"Use as base image in Dockerfile:\": \"在 Dockerfile 中用作基础镜像：\",\n            \"Recent tagged image versions\": \"最近被标记的映像版本\",\n            \"latest\": \"最新\",\n            \"Latest\": \"最新\",\n            // [/Published (.*) · Digest/, \"发布于 $1 · 摘要\"],\n            \"View all tagged versions\": \"查看所有被标记的版本\",\n\n            \"Details\": \"详细信息\",\n                \"stars\": \"星标\",\n            \"Readme\": \"自述文件\",\n            \"Last published\": \"最新发布\",\n            \"Total downloads\": \"总下载量\",\n            \"Start a discussion\": \"开始讨论\",\n            \"Contributors\": \"贡献者\",\n            \"Open an issue\": \"打开一个议题\",\n            \"Package settings\": \"软件包设置\",\n\n            \"Recent Versions\": \"最近版本\",\n            \"View and manage all versions\": \"查看和管理所有版本\",\n\n            \"Add a Readme to the linked repository\": \"添加一个 README 自述文件到链接的仓库\",\n            \"The linked repository's Readme will be shown here.\": \"链接仓库中的 README 自述文件将在此处显示。\",\n\n        // 全部版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/versions\n            \"All versions\": \"所有版本\",\n            // [/Published (*)/, \"发布于 $1\"],\n            // [/(\\d+) tagged/, \"$1 个标记\"],\n            // [/(\\d+) untagged/, \"$1 个未标记\"],\n\n        // 某个版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/<version id>\n            \"About this version\": \"关于这个版本\",\n            \"Manifest\": \"清单\",\n            \"No description provided\": \"未提供说明\",\n            \"This package version was published\": \"此版本软件包发布于\",\n\n            \"To provide a description, add the following line to your Dockerfile:\": \"要提供描述，请将以下行添加到您的 Dockerfile 中：\",\n            \"For multi-arch images, set a value for the\": \"对于多架构镜像，请设置\",\n            \"key in the\": \"值在\",\n            \"field of the manifest:\": \"字段：\",\n            \"Learn more about labelling container images\": \"了解更多关于标记容器镜像的信息\",\n\n            \"Download activity\": \"下载活动\",\n                \"Download activity of this version\": \"此版本的下载活动\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last week\": \"最近一周\",\n            \"Today\": \"今天\",\n\n            \"Other tags on this version\": \"此版本的其他标签\",\n            \"View all versions\": \"查看全部版本\",\n\n        // 版本删除对话框\n            \"Are you absolutely sure?\": \"您真的确定吗？\",\n            \"This cannot be undone. This will permanently delete the version\": \"这个操作不能撤销，这将永久删除版本\",\n            \"so users and processes won’t be able to download this version.\": \"，用户和程序将无法再下载该版本。\",\n            \"Please type\": \"请输入\",\n            \"to confirm:\": \"进行确认：\",\n            \"I understand the consequences, delete this version\": \"我明白后果，依然删除此版本\"\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/packages\"][\"regexp\"],\n\n        //[/Published (.*) · Digest/, \"发布于 $1 · 摘要\"],\n        [/Published (.*) · Digest/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `发布于 ${translatedDate} · 摘要`;\n        }],\n        [/Published (.*)/, \"发布于 $1\"],\n        [/(\\d+) tagged/, \"$1 个标记\"],\n        [/(\\d+) untagged/, \"$1 个未标记\"],\n        [/(\\d+) dependencies/, \"$1 个依赖包\"],\n        [/(\\d+) active/, \"$1 个可用\"],\n        [/(\\d+) deleted/, \"$1 个已删除\"],\n        [/(\\d+) contributors?/, \"$1 位贡献者\"],\n    ],\n};\nI18N[\"zh-CN\"][\"packages\"] = { // 软件包 - 未链接仓库的软件包\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository/pkgs\"][\"static\"],\n\n        \"Link this package to a repository\": \"将此软件包链接到仓库\",\n        \"By linking to a repository, you can automatically add a Readme, link discussions, and show contributors on this page.\": \"通过链接到仓库，您可以自动添加 README 自述文件、链接讨论、在此页面上显示贡献者。\",\n        \"Connect Repository\": \"关联仓库\",\n\n        // 关联仓库对话框\n        \"Select a repository to link to this package.\": \"选择一个仓库以链接到此软件包。\"\n    },\n    \"regexp\": [  // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/pkgs\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/security\"] = { // 仓库 - 安全页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 安全标签卡 & 安全概述 /<user-name>/<repo-name>/security\n\n            // 公共部分\n            \"Reporting\": \"报告\",\n                \"Policy\": \"政策\",\n                \"Advisories\": \"咨询\",\n            \"Vulnerability alerts\": \"漏洞警报\",\n                \"Code scanning\": \"代码扫描\",\n                \"Secret scanning\": \"机密扫描\",\n\n            \"Disabled\": \"禁用\",\n            \"Enabled\": \"启用\",\n            \"Needs setup\": \"需要设置\",\n\n            \"Security overview\": \"安全概述\",\n            \"Report a vulnerability\": \"报告漏洞\",\n            \"Fork this repository and edit the file\": \"复刻此仓库并编辑文件\",\n            \"Security policy •\": \"安全政策 •\",\n                \"Define how users should report security vulnerabilities for this repository\": \"定义用户应如何报告此仓库的安全漏洞\",\n\n                \"Suggest how users should report security vulnerabilities for this repository\": \"建议用户应如何报告此仓库的安全漏洞\",\n                \"Suggest a security policy\": \"安全政策建议\",\n\n                \"View how to securely report security vulnerabilities for this repository\": \"查看如何安全地报告此仓库的安全漏洞\",\n                \"View security policy\": \"查看安全策略\",\n\n            \"Security advisories •\": \"安全公告 •\",\n                \"View or disclose security advisories for this repository\": \"查看或公开此仓库的安全公告\",\n                \"View security advisories\": \"查看安全公告\",\n                \"View security advisories for this repository\": \"查看此仓库的安全公告\",\n\n            \"Private vulnerability reporting •\": \"私下漏洞报告 •\",\n                \"Allow users to privately report potential security vulnerabilities\": \"允许用户私下报告潜在的安全漏洞\",\n                \"Enable vulnerability reporting\": \"启用漏洞报告\",\n                \"See reported vulnerabilities\": \"查看报告的漏洞\",\n\n            \"Dependabot alerts •\": \"Dependabot 警报 •\",\n                \"— Active\": \"— 激活\",\n                \"Get notified when one of your dependencies has a vulnerability\": \"当您的一个依赖项存在漏洞时得到通知\",\n                \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                \"View Dependabot alerts\": \"查看 Dependabot 警报\",\n                \"You don't have permissito enable this feature\":\"您没有启用此功能的权限。\",\n\n            \"Code scanning alerts •\": \"代码扫描警报 •\",\n                \"Automatically detect common vulnerability and coding errors\": \"自动检测常见漏洞和编码错误\",\n                \"Set up code scanning\": \"设置代码扫描\",\n                \"View alerts\": \"查看警报\",\n                // 私有库\n                \"Advanced Security is only available for Organizations\": \"高级安全只适用于组织\",\n                \"Find out more\": \"了解更多\",\n                \"Code scanning for private repositories is part of GitHub Advanced Security\": \"私有仓库的代码扫描是 GitHub 高级安全的一部分\", //组织仓库\n                \"Contact sales\": \"联系销售\", //组织仓库\n\n            \"Secret scanning alerts •\": \"机密扫描警报 •\",\n                \"Get notified when a secret is pushed to this repository\": \"当机密被推送到仓库时得到通知\",\n                \"Enable in settings\": \"在设置中启用\",\n                \"View detected secrets\": \"查看检测到的机密\",\n\n            // \"Vulnerability details\": \"漏洞详情\",\n            \"High severity\": \"高风险\",\n            \"Moderate severity\": \"中风险\",\n            \"Low severity\": \"低风险\",\n            // \"Create dependabot security update\": \"创建可靠的安全更新\",\n\n            \"Suggest a policy\": \"建议政策\",\n\n            \"Code scanning configuratierror\": \"代码扫描配置错误\",\n                \"CodeQL is reporting errors. Check the\": \"CodeQL 出错。检查\",\n                \"status page\": \"状态页\",\n                \"for help.\": \"以寻求帮助\",\n\n            \"Checking code scanning status...\": \"正在检查代码扫描状态\",\n\n        // 安全政策 /<user-name>/<repo-name>/security/policy\n            \"Set up a security policy\": \"制定安全政策\",\n            \"Help your community understand how to securely report security vulnerabilities for your project.\": \"帮助您的社区了解如何安全地报告项目的安全漏洞。\",\n            \"Start setup\": \"开始设置\",\n\n            \"No security policy detected\": \"未检测到安全策略\",\n            \"This project has not set up a\": \"该项目尚未设置\",\n            \"file yet.\": \"文件。\",\n\n        // 安全公告 /<user-name>/<repo-name>/security/advisories\n            \"Security Advisories\": \"安全公告\",\n            \"Privately discuss, fix, and publish information about security vulnerabilities in your repository's code.\": \"私人讨论，修复和发布仓库代码中的安全漏洞的信息。\",\n            \"New draft security advisory\": \"新的安全建议草案\",\n\n            // [/(\\d+) Draft/, \"$1 项草案\"],\n            // [/(\\d+) Published/, \"$1 项已发布\"],\n            // [/(\\d+) Closed/, \"$1 项已关闭\"],\n\n            \"There aren’t any triage security advisories\": \"没有任何安全建议通知\",\n            \"There aren’t any draft security advisories\": \"没有任何安全建议草案\",\n            \"There aren’t any published security advisories\": \"没有任何已发布的安全公告\",\n            \"There aren’t any closed security advisories\": \"没有任何已关闭的安全公告\",\n\n            // 他人库\n            \"View information about security vulnerabilities from this repository's maintainers.\": \"查看仓库维护者提供的安全漏洞信息。\",\n\n        // Dependabot 警报 /<user-name>/<repo-name>/security/dependabot\n            \"Dependabot alerts\": \"Dependabot 警报\",\n            \"Dependency files checked\": \"检查依赖文件\",\n\n            \"Ignore the false alarms\": \"忽略误报\",\n            \"To help you focus on the alerts that matter, Dependabot now proactively dismisses low impact alerts. These alerts may only have limited effects (e.g. long-running builds or tests) or are unlikely to be exploitable.\": \"为了帮助您专注于重要的警报，Dependabot 现在会主动消除低影响警报。这些警报可能只会产生有限的影响（例如长时间运行的构建或测试）或不太可能被利用。\",\n            \"Opt out\": \"设置\",\n            \"learn more about auto-dismissing alerts.\": \"了解更多关于自动撤消警报的信息。\",\n\n            \"Auto-triage your alerts\": \"自动分类您的警报\",\n                \"Control how Dependabot opens pull requests, ignores false positives and snoozes alerts. Rules can be enforced at the organization level. Free for open source and available for private repos through\": \"控制 Dependabot 如何打开拉取请求、忽略误报和推迟警报。规则可以在组织层面强制执行。免费供开源项目使用，私有仓库需要通过\",\n                \"GitHub Advanced Security.\": \"GitHub 高级安全性。\",\n                \"Learn more about auto-triage\": \"了解更多关于自动分类的信息\",\n\n            \"opened\": \"打开于\",\n\n            \"Dependabot alerts are disabled.\": \"Dependabot 警报已禁用。\",\n            \"To receive Dependabot alerts, you must first enable Dependabot alerts in\": \"要接收 Dependabot 警报，必须首先启用 Dependabot 警报\",\n            \"this repository’s settings\": \"在仓库的设置中\",\n\n            \"Welcome to Dependabot alerts!\": \"欢迎使用 Dependabot 警报！\",\n            \"Dependabot alerts track security vulnerabilities that apply to your repository's dependencies. As alerts are created, they’ll appear here.\": \"Dependabot 警报跟踪适用于仓库依赖项的安全漏洞。一旦创建警报后，它们将显示在此处。\",\n\n            \"Configure\": \"设置\",\n                \"Manage repository vulnerability settings\": \"管理仓库漏洞设置\",\n                \"Manage Dependabot rules\": \"管理 Dependabot 规则\",\n                \"Manage account notification settings\": \"管理账户通知设置\",\n                \"Refresh Dependabot alerts\": \"刷新 Dependabot 警报\",\n                    \"Reprocess your project's current dependency files.\": \"重新处理项目当前的依赖项文件。\",\n                    // 顶部提醒\n                        \"Refresh queued, it may take several minutes to see changes reflected in your alerts.\": \"刷新队列后，可能需要几分钟才能看到警报中反映的更改。\",\n                        \"Refreshed recently, available again in about 1 hour.\": \"最近刷新，约 1 小时后可再次使用。\",\n\n            \"Search all Dependabot alerts\": \"搜索所有 Dependabot 警报\",\n                \"- submit\": \"- 提交\",\n                \"Narrow your search\": \"缩小搜索范围\",\n                    \"fix-started, no-bandwidth, tolerable-risk, inaccurate, not-used, fixed, auto-dismissed\": \"修复启动、无带宽、可容忍风险、不准确、未使用、已修复、自动忽略\",\n                    \"critical, high, moderate, low\": \"严重、高、中、低\",\n                    \"package-name\": \"软件包名称\",\n                    \"ecosystem-name\": \"生态系统名称\",\n                    \"most-important, newest, oldest, severity, manifest-path, package-name, epss-percentage\": \"最重要、最新、最旧、严重性、清单路径、软件包名称、EPSS-百分比\",\n                    \"open, closed\": \"打开、关闭\",\n                    \"patch\": \"补丁\",\n                    \"runtime, development\": \"运行时、开发\",\n                    \"direct\": \"直接\",\n                    \"team-name\": \"团队名称\",\n                    \"topic-name\": \"主题名称\",\n                    \"CVE exploitation likelihood. `n`, `>n`, `<n`, `>=n`, `<=n`, or range `n..n`, where `n` is a number from 0.0 to 1.0\": \"CVE 被利用的可能性。`n`, `>n`, `<n`, `>=n`, `<=n` 或范围 `n...n`，其中 `n` 为 0.0 至 1.0 之间的数字\",\n                    \"manifest-name\": \"清单名称\",\n\n            // 筛选条\n                \"Closed as\": \"关闭\",\n                    \"Filter by resolution\": \"按决议筛选\",\n                    \"Clear resolution\": \"清除决议筛选\",\n                        \"A fix has already been started\": \"修复已经开始\",\n                        \"No bandwidth to fix this\": \"没有带宽来修复\",\n                        \"Risk is tolerable to this project\": \"风险可承受\",\n                        \"This alert is inaccurate or incorrect\": \"此警报不准确或不正确\",\n                        \"Vulnerable code is not actually used\": \"漏洞代码实际未使用\",\n                        \"Dismissal comment\": \"忽略评论\",\n                        \"Dismiss Alerts\": \"忽略警报\",\n                        \"Fixed\": \"已修复\",\n                        \"fixed\": \"已修复\",\n                        \"Auto-dismissed\": \"自动忽略\",\n            \"Package\": \"软件包\",\n                \"Filter by packages\": \"按软件包筛选\",\n                \"Clear package filter\": \"清除软件包筛选器\",\n                \"No results found\": \"未找到结果\",\n            \"Ecosystem\": \"生态系统\",\n                \"Filter by ecosystem\": \"按生态系统筛选\",\n                \"Clear ecosystem filter\": \"清除生态系统筛选器\",\n            \"Manifest\": \"清单\",\n                \"Filter by manifest\": \"按清单筛选\",\n                \"Clear manifest filter\": \"清除清单筛选器\",\n            \"Severity\": \"严重等级\",\n                \"Filter by severity\": \"按严重性筛选\",\n            \"Sort\": \"排序\",\n                \"Most important\": \"最重要的\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Manifest path\": \"表现路径\",\n                \"Package name\": \"包名称\",\n\n            \"selected\": \"条被选中\",\n            \"Dismiss alerts\": \"忽略警报\",\n                \"Select a reason to dismiss\": \"选择忽略理由\",\n\n            \"opened\": \"打开于\",\n\n            \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n            \"Clear current search filters.\": \"清除当前搜索筛选器。\",\n\n            \"ProTip!\": \"专业提示！\",\n                \"See auto-dismissed alerts with\": \"要查看自动解除的警报，请使用\",\n                \"to see alerts without an available fix.\": \"来查看没有可用修复程序的警报。\",\n                \"Find alerts on your dev dependencies using\": \"使用以下命令查找开发依赖项的警报：\",\n                \"to see alerts with calls to vulnerable functions.\": \"查看调用易受攻击函数的警报。\",\n\n         // 具体某条 Dependabot 警报 /security/dependabot/<id>\n            \"Dismiss alert\": \"忽略警报\",\n\n            \"Opened\": \"打开\",\n            // [/Upgrade ([^ ]+) to fix/, \"升级 $1 去修复\"], // 某个 Dependabot 警报\n            // [/Upgrade ([^ ]+) to version/, \"升级 $1 到版本\"], // 某个 Dependabot 警报\n            \"Create Dependabot security update\": \"创建 Dependabot 安全更新\",\n\n            // [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 无法将 $1 更新为无漏洞的版本\"],\n            \"The latest possible version that can be installed is\": \"最新可以安装版本是\",\n            \"because of the following conflicting dependency:\": \"，但是存在以下冲突的依赖项：\",\n            \"because of the following conflicting dependencies:\": \"，但是存在以下冲突的依赖项：\",\n            \"The earliest fixed version is\": \"最早修复版本为\",\n            \"Try again\": \"再试一次\",\n            \"View logs\": \"查看日志\",\n            \"about troubleshooting Dependabot errors\": \"关于排除 Dependabot 错误的信息\",\n\n            \"Transitive dependency\": \"通过\",\n            \"is introduced via\": \"传递依赖性\",\n\n            \"Patched version\": \"补丁版本\",\n\n            \"Impact\": \"影响\",\n            \"Patches\": \"补丁\",\n            \"Workarounds\": \"解决方法\",\n            \"Workarounds / Mitigations\": \"解决方法/缓解措施\",\n            \"References\": \"参考信息\",\n            \"For more information\": \"更多信息\",\n\n            // [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"将 $1 从 $2 升级到 $3\"],\n            \"Merging this pull request would fix\": \"合并此拉取请求将修复\",\n            \"Review security update\": \"审查安全更新\",\n\n            \"opened this\": \"打开了这个\",\n\n            // 右侧栏\n                \"This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).\": \"该分数以通用漏洞评分系统 (CVSS) 为基础，从 0 到 10 计算总体漏洞严重性。\",\n                \"CVSS v4 base metrics\": \"CVSS v4 基本指标\",\n                    \"Exploitability Metrics\": \"可利用性指标\",\n                        \"Attack Vector\": \"攻击载体\",\n                            \"Network\": \"网络\",\n                            \"Local\": \"本地\",\n                        \"Attack Complexity\": \"攻击复杂性\",\n                        \"Attack Requirements\": \"攻击要求\",\n                        \"Privileges Required\": \"所需权限\",\n                            \"None\": \"无\",\n                        \"User interaction\": \"用户交互\",\n                            \"Required\": \"必须\",\n                    \"Vulnerable System Impact Metrics\": \"脆弱系统影响指标\",\n                        \"Confidentiality\": \"保密性\",\n                        \"Integrity\": \"完整性\",\n                        \"Availability\": \"可利用性\",\n                    \"Subsequent System Impact Metrics\": \"后续系统影响指标\",\n                    \"Learn more about base metrics\": \"了解更多关于基础指标的信息\",\n\n                    // CVSS v4 基本指标 对话框 // BUG: 详细解释文本翻译不生效\n                    // 可利用性指标\n                        \"Attack Vector:\": \"攻击载体：\",\n                            \"This metric reflects the context by which vulnerability exploitation is possible. This metric value (and consequently the resulting severity) will be larger the more remote (logically, and physically) an attacker can be in order to exploit the vulnerable system. The assumption is that the number of potential attackers for a vulnerability that could be exploited from across a network is larger than the number of potential attackers that could exploit a vulnerability requiring physical access to a device, and therefore warrants a greater severity.\": \"该指标反映漏洞被利用的可能性的上下文。攻击者距离越远（逻辑上和物理上），该指标值（以及由此得出的严重性）就越高。假设可以从网络上利用的漏洞比需要物理访问设备的漏洞拥有更多的潜在攻击者，因此严重性更高。\",\n                        \"Attack Complexity:\": \"攻击复杂性：\",\n                            \"This metric captures measurable actions that must be taken by the attacker to actively evade or circumvent existing built-in security-enhancing conditions in order to obtain a working exploit. These are conditions whose primary purpose is to increase security and/or increase exploit engineering complexity. A vulnerability exploitable without a target-specific variable has a lower complexity than a vulnerability that would require non-trivial customization. This metric is meant to capture security mechanisms utilized by the vulnerable system.\": \"该指标衡量攻击者为绕过或规避现有内置安全机制而必须采取的可量化操作。这些机制的主要目的是提升安全性或增加利用难度。不需要目标特定变量的漏洞比需要非平凡定制的漏洞复杂性更低。\",\n                        \"Attack Requirements:\": \"攻击要求：\",\n                            \"This metric captures the prerequisite deployment and executiconditions or variables of the vulnerable system that enable the attack. These differ from security-enhancing techniques/technologies (ref Attack Complexity) as the primary purpose of these conditions is not to explicitly mitigate attacks, but rather, emerge naturally as a consequence of the deployment and execution of the vulnerable system.\": \"该指标衡量使攻击成为可能的先决部署和执行条件或变量。这些条件与安全增强技术不同（参见攻击复杂性），它们并非专门用于缓解攻击，而是脆弱系统部署和运行的自然结果。\",\n                        \"Privileges Required:\": \"所需权限：\",\n                            \"This metric describes the level of privileges an attacker must possess prior to successfully exploiting the vulnerability. The method by which the attacker obtains privileged credentials prior to the attack (e.g., free trial accounts), is outside the scope of this metric. Generally, self-service provisioned accounts do not constitute a privilege requirement if the attacker can grant themselves privileges as part of the attack.\": \"该指标描述攻击者在成功利用漏洞前必须拥有的权限级别。攻击者在攻击前获取特权凭据的方式（如免费试用账户）不在本指标范围内。\",\n                        \"User interaction:\": \"用户交互：\",\n                            \"This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable system. This metric determines whether the vulnerability can be exploited solely at the will of the attacker, or whether a separate user (or user-initiated process) must participate in some manner.\": \"该指标衡量除攻击者外是否需要其他人类用户参与才能成功攻破脆弱系统。\",\n                    // 脆弱系统影响指标\n                        \"Confidentiality:\": \"机密性：\",\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the VULNERABLE SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"该指标衡量成功利用漏洞后对脆弱系统所管理信息的机密性影响。\",\n                        \"Integrity:\": \"完整性：\",\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the VULNERABLE SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"该指标衡量成功利用漏洞后对信息的可信度和准确性的影响。\",\n                        \"Availability:\": \"可用性：\",\n                            \"This metric measures the impact to the availability of the VULNERABLE SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"该指标衡量成功利用漏洞后对脆弱系统本身可用性的影响（如网络服务被打挂）。\",\n                    // 后续系统影响指标\n                        // 机密性\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the SUBSEQUENT SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"该指标衡量成功利用漏洞后对后续系统所管理信息的机密性影响。\",\n                        // 完整性\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the SUBSEQUENT SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"该指标衡量成功利用漏洞后对后续系统数据完整性的影响。\",\n                        // 可用性\n                            \"This metric measures the impact to the availability of the SUBSEQUENT SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"该指标衡量成功利用漏洞后对后续系统本身可用性的影响。\",\n\n                \"EPSS score\": \"EPSS 得分\",\n                \"Weaknesses\": \"缺陷\",\n                \"Related alerts\": \"相关警报\",\n                \"See advisory in GitHub Advisory Database\": \"请参阅 GitHub 咨询数据库中的咨询\",\n                \"See all of your affected repositories\": \"查看您所有受影响的仓库\",\n                \"See something to contribute?\": \"看到有什么可贡献的吗？\",\n                \"Suggest improvements for this advisory on the GitHub Advisory Database.\": \"在 GitHub 咨询数据库上建议改进此咨询。\",\n\n            // 生成安全更新\n                // 顶部提醒\n                    // [/Started generating a security update for ([^ ]+)./, \"开始为 $1 生成安全更新。\"],\n                // [/Creating a security update for ([^ ]+)/, \"为 $1 创建安全更新\"],\n                \"Dependabot is creating a security update to fix\": \"Dependabot 正在创建一个安全更新来修复\",\n                // [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n                // [/on ([^ ]+) in/, \"关于 $1 在\"],\n                // [/Or, manually upgrade ([^ ]+) to version/, \"或者，手动将 $1 升级到版本\"],\n                \"or later. For example:\": \"或更高。例如：\",\n\n         // 具体某条Dependabot 警报 日志 /security/dependabot/<id>/update-logs/<id2>\n            \"Update logs\": \"更新日志\",\n\n        // 代码扫描器 /<user-name>/<repo-name>/security/code-scanning\n            \"Automatically detect vulnerabilities in your code.\": \"自动检测您代码中的漏洞。\",\n            \"Configure tools that integrate with Code Scanning to keep the quality of your code under control. Learn more about\": \"配置与代码扫描集成的工具，以控制代码质量。了解更多关于\",\n            \"Code Scanning\": \"代码扫描\",\n\n            \"Configure scanning tool\": \"配置扫描工具\",\n\n            \"All tools are working as expected\": \"所有工具均按预期运行\",\n            \"Tools\": \"工具\",\n            \"Add tool\": \"添加工具\",\n\n            // 搜索条\n                \"Available filters\": \"可用筛选器\",\n                    \"filter by open/closed state\": \"按打开/关闭状态筛选\",\n                    \"filter by tool\": \"按工具筛选\",\n                    \"filter by branch name\": \"按分支名称筛选\",\n                    \"filter by pr number\": \"按 PR 号筛选\",\n                    \"filter by ref (e.g. branches/tags)\": \"按引用筛选（例如 分支/标签）\",\n                    \"filter by rule\": \"按规则筛选\",\n                    \"filter by rule tag\": \"按规则标签筛选\",\n                    \"filter by severity\": \"按严重程度筛选\",\n                    \"sort by\": \"排序方式\",\n                    \"only show alerts in application code\": \"仅在应用程序代码中显示警报\",\n                    \"filter by closure reason\": \"按关闭原因筛选\",\n                    \"filter by file path (e.g. lib/crypto or *_test.js)\": \"按文件路径筛选（例如 lib/crypto or *_test.js）\",\n                    \"filter by language\": \"按语言筛选\",\n                    \"filter by assignee\": \"按受理人过滤\",\n                    \"filter by presence of a property\": \"按属性的存在进行过滤\",\n                    \"filter by absence of a property\": \"按不存在属性进行过滤\",\n                \"Filter alerts\": \"筛选警报\",\n\n            \"Language\": \"语言\",\n                \"Filter by language\": \"筛选语言\",\n            \"Tool\": \"工具\",\n                \"Filter by tool\": \"筛选工具\",\n            // 分支\n                \"Filter by branch\": \"筛选分支\",\n            \"Rule\": \"规则\",\n                \"Filter by rule\": \"筛选规则\",\n                \"Filter rules\": \"筛选规则\",\n            // 严重等级\n                \"Medium\": \"中风险\",\n                \"Error\": \"错误\",\n                \"Warning\": \"警告\",\n                \"Note\": \"注意\",\n\n            \"Looking good!\": \"看起来不错！\",\n                \"No new code scanning alerts.\": \"没有新的代码扫描警报。\",\n            \"No code scanning alerts here!\": \"尚无代码扫描警报！\",\n                \"Keep up the good work!\": \"继续努力！\",\n            \"No code scanning alerts found.\": \"尚无代码扫描警报。\",\n                \"We'll keep watching out for new ones.\": \"我们会继续关注新的消息。\",\n\n            \"Detected by\": \"检测者\",\n            \"in\": \"在\",\n\n            \"CodeQL is reporting errors.\": \"CodeQL 出错。\",\n            \"Check the\": \"检查\",\n\n            // 专业提示\n                \"You can run CodeQL locally from the command line.\": \"您可以从命令行在本地运行 CodeQL。\",\n                \"You can run CodeQL locally using Visual Studio Code.\": \"您可以使用 Visual Studio Code 在本地运行 CodeQL。\",\n                \"CodeQL queries are developed by an open-source coaliticalled the\": \"CodeQL 查询由一个开源联盟开发：\", // BUG: 翻译不生效\n                    \"GitHub Security Lab\": \"GitHub 安全实验室\",\n                \"The libraries and queries that power CodeQL are open-source.\": \"支持 CodeQL 的库和查询是开源的。\",\n                \"You can upload code scanning analyses from other third-party tools using GitHub Actions.\": \"您可以使用 GitHub Actions 从其他第三方工具上传代码扫描分析。\",\n                \"You can configure CodeQL to run with additional queries.\": \"您可以配置 CodeQL 以运行其他查询。\",\n\n        // 具体某条 代码扫描 警报/<user-name>/<repo-name>/security/security/code-scanning/<id>\n            \"Code scanning alerts\": \"代码扫描警报\",\n            // 状态词\n                \"Dismissed\": \"关闭\",\n            \"← Code scanning alerts\": \"← 代码扫描警报\",\n            \"Speed up the remediatiof this alert with\": \"加快修复此警报的速度，使用\", // BUG: 翻译不生效\n                \"Copilot Autofix for CodeQL\": \"CodeQL 的 Copilot 自动修复\",\n            \"Generate fix\": \"创建修复\",\n            \"Affected branches\": \"受影响分支\",\n            \"Rule ID\": \"规则 ID\",\n            \"Query\": \"查询\",\n            \"View source\": \"查看源代码\",\n            \"First detected in commit\": \"首次在提交中检测到\",\n            \"Assignees\": \"受理人\",\n                \"No one -\": \"无人 -\",\n                \"Assign yourself\": \"分配给自己\",\n                \"Assign up to 10 people to this alert\": \"最多为 10 人分配此警报\",\n                \"Filter assignees\": \"筛选受理人\",\n                // Copilot\n                    \"bot\": \"机器人\",\n                    \"Ensure a fix has been generated.\": \"确保已生成修复程序。\",\n            \"Development\": \"开发\",\n                \"Link a branch, pull request, or\": \"链接分支、拉取请求或\",\n                    \"create a new branch\": \"创建新分支\",\n                    \"to start working this alert.\": \"以开始处理此警报。\", // BUG: 翻译不生效\n                \"Link a branch or pull request\": \"链接分支或拉取请求\",\n                \"Search pull requests\": \"搜索拉取请求\",\n                \"Group selected\": \"已选择组\",\n            // 受影响的分支\n                \"Configurations analyzing\": \"配置分析\",\n                    \"The following configurations have reported this alert.\": \"以下配置已报告此警报。\",\n                    \"Last updated\": \"最后更新\",\n            \"Appeared in branch\": \"出现在分支\",\n            \"Show paths\": \"显示路径\",\n                \"Source\": \"源头\",\n                \"Sink\": \"汇点\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status\n            \"Scanned files\": \"扫描文件\",\n                \"Download language CSV report\": \"下载语言 CSV 报告\",\n            \"Setup types\": \"设置类型\",\n            \"Default setup\": \"默认设置\",\n            \"· Last scan\": \"· 最近一次扫描\",\n            \"Menu\": \"菜单\",\n            \"View setup type\": \"查看设置类型\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status/configurations/automatic\n            // 设置类型\n                \"This setup is working as expected.\": \"此设置正在按预期工作。\",\n                // 详细信息\n                    \"Setup type\": \"设置类型\",\n                    \"First scan\": \"首次扫描\",\n                    \"Last scan\": \"最后扫描\",\n                \"Scan events\": \"扫描事件\",\n                    \"Push to\": \"推送到\",\n                    \"Pull request to\": \"拉取请求到\",\n            \"Configurations\": \"配置\",\n                \"last scan\": \"最后扫描\", // BUG: 不生效\n                \"This configuratiis working as expected.\": \"此配置正在按预期工作\", // BUG: 不生效\n                \"Configuratimenu\": \"配置菜单\", // BUG: 不生效\n                    \"Delete configuration\": \"删除配置\",\n                    \"Download list of rules used\": \"下载所用规则列表\",\n                // 详细信息\n                    \"Configuration\": \"配置\",\n                    \"Tool version\": \"工具版本\",\n\n        // 机密扫描警报 /<user-name>/<repo-name>/security/secret-scanning\n            // 顶端窗口\n            \"Can you give us some feedback?\": \"您能给我们一些反馈意见吗？\",\n            \"We want to better understand our users' needs and experiences.\": \"我们希望更好地了解用户的需求和体验。\",\n            \"Book some time with us\": \"与我们预约时间，\",\n            \"to discuss the GitHub secret scanning experience.\": \"讨论 GitHub 机密扫描体验。\",\n\n            \"Secret scanning alerts\": \"机密扫描警报\",\n            \"Secret scanning disabled\": \"机密扫描已停用\",\n                \"To scan for secrets, you must first enable secret scanning in\": \"要扫描机密，您必须首先启用机密扫描在\",\n                \"this repository's settings\": \"此仓库设置\",\n\n            // 关闭\n                \"Revoked\": \"已撤销\",\n                \"False positive\": \"假阳性\",\n                \"Used in tests\": \"仅测试\",\n                \"Won't fix\": \"不会修复\",\n                \"Ignored by configuration\": \"配置忽略\",\n                \"Clear closure reasons\": \"全部\",\n\n            \"Bypassed\": \"绕行\",\n                \"True\": \"是\",\n            \"Validity\": \"有效性\",\n                \"Active\": \"活跃\",\n                \"Inactive\": \"不活跃\",\n                \"Unknown\": \"未知\",\n            \"Secret type\": \"机密类型\",\n                \"Service Providers\": \"服务提供商\",\n                \"Custom Patterns\": \"自定义模式\",\n                \"Filter by secret type\": \"按机密类型筛选\",\n                \"Filter secret type\": \"筛选机密类型\",\n                \"Nothing to show\": \"暂无\",\n\n            \"Provider\": \"提供者\",\n                \"Filter by provider\": \"按提供者筛选\",\n                \"Filter provider\": \"筛选提供者\",\n\n            // 排序\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Clear current search query, filters, and sorts\": \"清除当前搜索查询、过滤器和排序\",\n\n            \"No secrets found.\": \"没有发现任何机密\",\n            \"Try\": \"尝试\",\n            \"clearing filters\": \"清除过滤器\",\n            \"to view all of this repository's secret alerts.\": \"以查看此仓库的所有机密警报。\",\n            \"Your repository doesn't have any unresolved secrets.\": \"您的仓库没有任何未解决的机密。\",\n\n            // 具体某条信息 https://github.com/<user-name>/<repo-name>/security/secret-scanning/<id>\n                \"detected a\": \"检测到\",\n                    \"secret\": \"机密\",\n                \"Give us feedback\": \"提交反馈\",\n\n                \"Close as\": \"关闭为\",\n                    \"Select a close reason\": \"选择关闭原因\",\n                    \"This secret has been revoked\": \"机密被撤销\",\n                    \"This secret is not in production code\": \"机密不在生产代码中\",\n                    \"This alert is not valid\": \"警报无效\",\n                    \"This alert is not relevant\": \"警报无关\",\n\n                \"Reopen alert\": \"重新打开\",\n\n                    \"Close alert\": \"关闭警报\",\n\n                \"Secret detected\": \"检测到\",\n                \"Possibly active secret\": \"可能活跃\",\n                    \"Copy token\": \"复制令牌\",\n\n                \"Remediation steps\": \"补救措施\",\n                    \"Follow the steps below before you close this alert.\": \"关闭此警报前，请按照以下步骤操作。\",\n                    \"Rotate the secret if it's in use to prevent breaking workflows.\": \"如果正在使用，请轮换机密以防中断工作流程。\",\n                    \"Revoke this\": \"撤销\",\n                    \"through\": \"通过\",\n                    \"to prevent unauthorized access.\": \"，以防止未经授权的访问。\",\n                    //\"Revoke this Google API Key through Google to prevent unauthorized access.\": \"通过 Google 撤销此 Google API 密钥，以防止未经授权的访问。\",\n                    \"Check security logs for potential breaches.\": \"检查安全日志，查找潜在漏洞。\",\n                    \"Close the alert as revoked.\": \"关闭已撤销的警报。\",\n\n                // 检测到位置\n                    \"Preview unavailable\": \"预览不可用\",\n                    \"This file is too large to show a preview\": \"文件过大，无法显示预览\",\n\n                    // 复制\n                        \"to clipboard\": \"到剪切板\",\n\n                    \"View file\": \"浏览文件\",\n                    \"View git blame\": \"浏览 Git 追溯\",\n\n                // 状态词\n                    \"opened this alert\": \"打开此警报\",\n                    \"reopened this\": \"重新打开\",\n                    \"closed this as\": \"将其关闭为\",\n                    \"closed as\": \"关闭为\",\n                        \"used in tests\": \"仅测试\",\n                        \"won't fix\": \"不会修复\",\n                        \"revoked\": \"忽略\",\n                        \"false positive\": \"假阳性\",\n                    \"closed this as completed in\": \"将其关闭为已完成\",\n\n                \"hidden item\": \"条隐藏项目\",\n                \"s\": \" \",\n                \"Load all...\": \"加载全部…\",\n\n        // 新建安全公告草案 /<user-name>/<repo-name>/security/advisories/new\n            \"Open a draft security advisory\": \"打开一个安全公告草案\",\n            \"After the draft security advisory is open, you can privately discuss it with collaborators and create a temporary private fork where you can collaborate on a fix. If you've already fixed the vulnerability, just fill out the draft security advisory and then publish it.\": \"在安全公告草案打开后，您可以与协作者私下讨论，并创建一个临时的私有复刻，在那里您们可以协作进行修复。如果您已经修复了该漏洞，只需填写安全公告草案，然后发布即可。\",\n\n            \"Advisory Details\": \"公告详情\",\n            \"Title *\": \"标题 *\",\n            \"CVE identifier\": \"CVE 标识符\",\n                \"Request CVE ID later\": \"稍后请求 CVE ID\",\n                \"I have an existing CVE ID\": \"我有一个现有的 CVE ID\",\n            \"Description *\": \"描述 *\",\n\n            \"Affected products\": \"受影响的产品\",\n            \"Ecosystem *\": \"生态系统 *\",\n                \"Don't see the ecosystem you're looking for? It may not be supported yet.\": \"没有看到您正在寻找的生态系统？可能还不支持。\",\n                \"Select an ecosystem\": \"选择一个生态系统\",\n                \"Go\": \"\",\n                \"Other\": \"其他\",\n            \"Affected versions\": \"受影响的版本\",\n            \"Patched versions\": \"补丁版本\",\n            \"Add another affected product\": \"添加另一个受影响的产品\",\n\n            // 严重等级\n            \"Pending selection\": \"待选择\",\n\n            \"Select severity\": \"选择严重程度\",\n                \"Low\": \"低风险\",\n                \"Moderate\": \"中风险\",\n                \"High\": \"高风险\",\n                \"Critical\": \"关键风险\",\n                \"Assess severity using CVSS\": \"使用 CVSS 评估严重程度\",\n\n            \"Vector string\": \"矢量字符串\",\n\n            \"Calculator\": \"计算器\",\n                \"Learn more about CVSS scoring\": \"了解更多关于 CVSS 计分的信息\",\n\n                \"Adjacent\": \"邻近\",\n                \"Physical\": \"物理\",\n\n            \"Common weakness enumerator (CWE)\": \"常见弱点枚举器 (CWE)\",\n                \"Search by CWE\": \"按 CWE 搜索\",\n\n            \"Credits\": \"用户\",\n                \"Add a user by username, full name, or email\": \"通过用户名、全名或电子邮件添加用户\",\n\n            \"Create draft security advisory\": \"创建安全公告草案\",\n\n            // 右侧栏\n            \"Access and visibility\": \"访问和可见性\",\n                \"Until it is published, this draft security advisory will only be visible to the maintainers of\": \"在发布之前，此安全公告草案仅对以下的所有者可见\",\n                \". Other users and teams may be added once the advisory is created.\": \"。 其他用户和团队可以在咨询创建后加入。\",\n            \"Once published, security advisories on public repositories are visible to everyone.\": \"一旦发布，公共仓库上的安全公告对所有人都是可见的。\",\n            \"Once reviewed by GitHub, security advisories may be broadcast on the\": \"一旦通过 GitHub 的审查，安全公告就可以出现在\",\n            \"GitHub Advisory Database\": \"GitHub 咨询数据库\",\n            \". They may also trigger Dependabot alerts to users that depend on this repository.\": \"。它们还可能向依赖此仓库的用户触发 Dependabot 警报。\",\n\n            \"Security policy\": \"安全政策\",\n            \"Glossary and documentation\": \"词汇表和文档\",\n            \"Dependabot language support\": \"Dependabot 语言支持\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Triages?/, \"$1 分类\"],\n        [/([\\d,]+) Draft/, \"$1 草案\"],\n        [/([\\d,]+) Published/, \"$1 发布\"],\n        [/([\\d,]+) Open/, \"$1 打开\"],\n        [/(#\\d+) opened/, \"$1 打开于\"],\n        [/([\\d,]+) Closed/, \"$1 关闭\"],\n        [/(#\\d+) closed as/, \"$1 关闭为\"],\n        [/(\\d+) selected/, \"$1 条被选中\"],\n        [/Detected in (\\d+) locations?/, \"在 $1 个位置检测到\"],\n        [/Detected in ([^ ]+)/, \"在 $1 中检测到\"],\n        [/Upgrade ([^ ]+) to fix/, \"升级 $1 去修复\"], // 某个 Dependabot 警报\n        [/Upgrade ([^ ]+) to version/, \"升级 $1 到版本\"], // 某个 Dependabot 警报\n        [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 无法将 $1 更新为无漏洞的版本\"],\n        [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"将 $1 从 $2 升级到 $3\"],\n        [/Started generating a security update for ([^ ]+)./, \"开始为 $1 生成安全更新。\"],\n        [/Creating a security update for ([^ ]+)/, \"为 $1 创建安全更新\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 个 Dependabot 警报\"],\n        [/on ([^ ]+) in/, \"关于 $1 在\"],\n        [/Or, manually upgrade ([^ ]+) to version/, \"或者，手动将 $1 升级到版本\"],\n        [/on (.+)/, \"$1\"],\n        [/(\\d+)\\/(\\d+) files? scanned/, \"$1/$2 文件已扫描\"],\n        //[/Copy ([^/]\\/(?:[^/]+\\/)*[^/]+$) to clipboard/, \"复制 $1 到剪切板\"],\n        [/Prototype Pollution in ([^ ]+)/, \"$1 上游污染\"],\n        [/First detected (.+)/, (match, p1) => { // 受影响的分支 // BUG: 翻译不生效\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `初次检测 ${translatedDate}`;\n        }],\n        [/(\\d+) steps? in (.+)/, \"$1 个步骤在 $2\"],\n        [/Step (\\d+)/, \"步骤 $1\"]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Security Overview/, \"安全概述\"],\n            [/Security Policy/, \"安全政策\"],\n            [/Security Advisories/, \"安全咨询\"],\n            [/Dependabot alerts?/, \"Dependabot 警报\"],\n            [/Code scanning alerts?/, \"代码扫描警报\"],\n            [/Secret scanning/, \"机密扫描\"],\n            [/Code scanning tool status/, \"代码扫描工具状态\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/contribute\"] = { // 仓库 - 贡献页面\n    \"static\": { // 静态翻译\n\n        // 贡献页面 /<user-name>/<repo-name>/contribute\n            \"Contribute to\": \"贡献于\",\n            \"Make your first contribution to this repository by tackling one of the issues listed below.\": \"通过解决下面列出的一个议题，为这个仓库做出您的第一个贡献。\",\n            \"Each issue displayed here is a \\\"good first issue,\\\" selected for its relative approachability for first-time contributors.\": \"此处显示的每个议题都是 “好的首发议题”，因其对首次贡献者来说相对容易。\",\n\n            \"Read the contributing guidelines\": \"阅读贡献指南\",\n\n            \"Good first issues\": \"好的首发议题\",\n            \"See all issues\": \"查看所有议题\",\n\n            \"This repo doesn't have any good first issues, yet\": \"该仓库暂无任何好的首发议题\",\n            \"Once its maintainers label issues and pull requests for new contributors, they will begin to appear here.\": \"一旦它的维护者为新的贡献者标记了议题和拉取请求，它们就会开始出现在这里。\",\n            \"All issues in this repository\": \"此仓库中的所有议题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/subscription\"] = { // 仓库 - 通知状态页面\n    \"static\": { // 静态翻译\n\n        // 仓库通知状态管理 /<user-name>/<repo-name>/subscription\n            \"Your\": \"您的\",\n            \"notifications status\": \"通知状态\",\n            \"A notification is created every time someone discusses something inside of the repository — Pull Requests, Issues, Comments, and Commit discussions. Whether you are watching the repository, not watching it, or ignoring it determines which notifications you receive.\": \"每当有人在仓库内讨论什么，比如拉取请求、议题、评论和提交讨论，都会产生一个通知。无论您是关注仓库、不关注还是忽略它，都决定了您会收到哪些通知。\",\n            \"Not watching\": \"不关注\",\n                \"You will only receive notifications when you participate or are @mentioned.\": \"只有当您参与或被 @您 时，您才会收到通知。\",\n            \"Releases only\": \"仅发行版\",\n                \"You will only receive notifications for new releases, or when you participate or are @mentioned.\": \"您只会收到新版本的通知，或者当您参与或被 @您 时。\",\n            \"Watching\": \"关注\",\n                \"You will receive all notifications for this repository.\": \"您将收到此仓库的所有通知。\",\n            \"Ignored\": \"忽略\",\n                \"You will not receive any notifications for this repository.\": \"您将不会收到有关此仓库的任何通知。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/invitations\"] = { // 仓库 - 接受邀请页面\n    \"static\": { // 静态翻译\n\n        // 接受邀请 /<user-name>/<repo-name>/invitations\n            \"invited you to collaborate\": \"邀请您进行协作\",\n            \"invited you to collaborate on\": \"邀请您进行协作\",\n            \"Accept invitation\": \"接受邀请\",\n            \"Decline\": \"拒绝\",\n            \"Decline invitation\": \"拒绝\",\n            \"Owners\": \"所有者\",\n            \"Your public profile information\": \"您的公开个人资料信息\",\n            \"Certain activity\": \"某些活动\",\n            \"within this repository\": \"在这个仓库中\",\n            \"Country of request origin\": \"请求来源国家/地区\",\n            \"Your access level for this repository\": \"您对该仓库的访问等级\",\n            \"Your IP address\": \"您的 IP 地址\",\n            \"Is this user sending spam or malicious content?\": \"此用户是否发送垃圾邮件或恶意内容？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/of ([^ ]+) will be able to see:/, \"$1 将能够看到：\"], // 邀请页\n        [/Block ([^ ]+)/, \"拉黑 $1\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/tasks\"] = {\n    \"static\": {\n        \"You\": \"您\",\n        \"created the session\": \"创建此任务\",\n\n        \"session\": \"任务\",\n        \"premium request\": \"高级请求\",\n\n        \"started a task\": \"开始任务\",\n\n        \"Stop\": \"停止\",\n        \"Setting up environment\": \"设置环境\",\n        \"View repository\": \"查看仓库\",\n\n        \"Archive session\": \"存档任务\",\n            \"Are you sure you want to archive this session?\": \"您确定要存档此任务吗？\",\n            \"Yes, archive\": \"确定\",\n        \n        \"This pull request was merged. To continue iterating,\": \"此拉取请求已合并。若要继续迭代，\",\n            \"start a new session\": \"请开始一个新会话\",\n    },\n    \"regexp\": [\n        [/View (\\d+) files?/, \"查看 $1 个文件\"],\n        [/Edit (\\d+) files?/, \"编辑 $1 个文件\"],\n    ],\n};\n\n\n// 洞察 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\nI18N[\"zh-CN\"][\"repository-insights-menu\"] = { // 仓库 -> 洞察 - 公共部分\n    \"static\": { // 静态翻译\n        // 公共部分\n            // 左侧菜单\n            \"Pulse\": \"统计\",\n            \"Contributors\": \"贡献者\",\n            \"Community\": \"社区\",\n            \"Community Standards\": \"社区准则\",\n            \"Community standards\": \"社区准则\",\n            \"Traffic\": \"流量\",\n            \"Commits\": \"提交\",\n            \"Code frequency\": \"代码频率\",\n            \"Dependency graph\": \"依赖项关系图\",\n            // \"Punch card\": \"时刻\",\n            \"Network\": \"网络\",\n            // \"Members\": \"成员\",\n            \"Forks\": \"复刻\",\n            \"Actions Usage Metrics\": \"操作使用情况\",\n            \"Actions Performance Metrics\": \"操作数据看板\",\n            \"Actions usage metrics\": \"操作使用情况\",\n            \"Actions performance metrics\": \"操作数据看板\",\n\n            \"People\": \"成员\", //组织仓库\n\n            // 私有库禁用部分功能的提醒\n            \"Upgrade to GitHub Pro or make this repository public to enable this feature.\": \"升级到 GitHub Pro 或将此仓库设为公开以启用此功能。\",\n            // 他人私有库\n            \"Contact an administrator to upgrade to GitHub Team or make this repository public to enable this feature.\": \"请联系管理员升级到 GitHub 团队或将此设为仓库公开以启用此功能。\",\n\n            \"We want to know how these insights are helping you and where they could be improved.\": \"我们想知道这些洞察如何帮助您，以及在哪些方面可以改进。\",\n            \"Give us your feedback\": \"向我们提供反馈意见\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/pulse\"] = { // 仓库 -> 洞察 - 统计\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 统计 /<user-name>/<repo-name>/pulse\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"24 hours\": \"24 小时\",\n                \"3 days\": \"3 天\",\n                \"1 week\": \"1 周\",\n                \"1 month\": \"1 个月\",\n            \"Active pull request\": \"活跃的拉取请求\",\n            \"Active pull requests\": \"活跃的拉取请求\",\n            \"Active issue\": \"活跃的议题\",\n            \"Active issues\": \"活跃的议题\",\n            \"Merged pull request\": \"合并的拉取请求\",\n            \"Merged pull requests\": \"合并的拉取请求\",\n            \"Open pull request\": \"打开的拉取请求\",\n            \"Open pull requests\": \"打开的拉取请求\",\n            \"Closed issue\": \"关闭的议题\",\n            \"Closed issues\": \"关闭的议题\",\n            \"New issue\": \"新议题\",\n            \"New issues\": \"新议题\",\n\n            \"Excluding merges,\": \"不包括合并，\",\n            // [/(\\d+) authors?/, \"$1 位作者\"],\n            \"have pushed\": \"推送了\",\n            \"has pushed\": \"推送了\",\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            // [/to ([^ ]+), and/, \"到 $1 分支和\"],\n            // [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n            // [/(\\d+) files?/, \"$1 个文件\"],\n            \"have changed and there have been\": \"已经发生了变化，并且有\",\n            \"has changed and there have been\": \"已经发生了变化，并且有\",\n            \"additions\": \"处增加\",\n            \"deletions\": \"处删除\",\n\n            \"commit authored by\": \"次提交，作者：\",\n            \"commits authored by\": \"次提交，作者：\",\n\n            \"Want to help out?\": \"想帮忙吗？\",\n            \"Fork this repository\": \"复刻仓库\",\n            \"Release published by\": \"个发行版已发布由\",\n            \"Releases published by\": \"个发行版已发布由\",\n            \"published\": \"发布\",\n            \"Pull request merged by\": \"个拉取请求已合并由\",\n            \"Pull requests merged by\": \"个拉取请求已合并由\",\n            \"Pull request opened by\": \"个拉取请求打开由\",\n            \"Pull requests opened by\": \"个拉取请求打开由\",\n            \"Issue closed by\": \"个议题已关闭由\",\n            \"Issues closed by\": \"个议题已关闭由\",\n            \"Issue opened by\": \"个议题打开由\",\n            \"Issues opened by\": \"个议题打开由\",\n            \"person\": \"人\",\n            \"people\": \"人\",\n            \"Sometimes conversations happen on old items that aren’t yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有时会针对尚未关闭的旧项目进行讨论。以下是所有未解决的讨论的议题和拉取请求的列表。\",\n            // [/• (\\d+) new comments/, \"• $1 个新评论\"],\n            \"Unresolved conversation\": \"个未解决的讨论\",\n            \"Unresolved conversations\": \"个未解决的讨论\",\n\n            \"merged\": \"已合并\",\n            \"opened\": \"打开\",\n            \"closed\": \"已关闭\",\n\n            // 新版（2025/9）\n            \"There hasn't been any commit activity on\": \"没有任何提交活动于\",\n            \"over the last\": \"在最近\",\n\n            \"Summary\": \"总结\",\n                \"author\": \"位作者\",\n                \"authors\": \"位作者\",\n                \"have\": \" \",\n                \"has\": \" \",\n                \"pushed\": \"推送\",\n                \"to all branches.\": \"到所有分支。\",\n\n                \"On\": \"在\",\n                \"file\": \"文件\",\n                \"changed and there have been\": \"已经发生了变化，并且有\",\n\n            \"Top Committers\": \"提交排行\",\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"Category\": \"作者\", // 此处原文错误\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n\n                \"Customization settings\": \"自定义设置\",\n                    \"Column & bar chart settings\": \"柱状图设置\",\n                        \"Increase Contrast\": \"增加对比度\",\n                            \"Adds gradients and outlines to increase contrast in charts.\": \"为图表添加渐变效果和轮廓，以增强对比度\",\n                        \"Show data labels\": \"显示数据标签\",\n                            \"Show labels for each data point in column and bar charts.\": \"在柱状图中显示每个数据点的标签\",\n\n            \"Sometimes conversations happen on old items that aren't yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有时对尚未关闭的旧项目会有新的讨论。以下是所有有未解决讨论的议题和拉取请求列表。\",\n                \"commented on\": \"评论于\",\n                \"new comments\": \"新评论\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) authors?/, \"$1 位作者\"],\n        [/to ([^ ]+) and/, \"到 $1 分支和\"],\n        [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n        [/(\\d+) files?/, \"$1 个文件\"],\n        [/(\\d+) commented on/, \"$1 评论于\",],\n        [/• (\\d+) new comments?/, \"• $1 个新评论\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 24 hours./, \"在过去的 24 小时里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 3 days./, \"在过去的 3 天里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last week./, \"在过去的 1 周里，$1 没有任何提交活动。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last month./, \"在过去的 1 月里，$1 没有任何提交活动。\"],\n        [/releases? published/, \"发行版已发布\"],\n        [/pull requests? opened/, \"拉取请求打开\"],\n        [/pull requests? merged/, \"拉取请求合并\"],\n        [/issues? opened/, \"议题打开\"],\n        [/issues? closed/, \"议题关闭\"],\n        [/(\\d+) commits? authored by ([^ ]+)/, \"$2 提交 $1 次\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pulse/, \"洞察\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/contributors\"] = { // 仓库 -> 洞察 - 贡献者\n    \"static\": { // 静态翻译\n\n        // 贡献者 /<user-name>/<repo-name>/graphs/contributors\n            \"Loading contributions…\": \"载入贡献者…\",\n            // [/Contributions to (.*), excluding merge commits/, \"贡献到 $1 分支，不包括合并提交\"],\n            \"Contributions:\": \"贡献者：\",\n                // 下拉菜单\n                \"Filter contributions\": \"筛选贡献者\",\n                \"Additions\": \"添加数量\",\n                \"Deletions\": \"删除数量\",\n                // [/Contributions to (.*), excluding merge commits and bot accounts/, \"贡献到 $1 分支，不包括合并提交和机器人账户\"],\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            // 标题\n                \"Contributions per week to\": \"每周贡献到\",\n                \", excluding merge commits\": \" 分支，不包括合并提交\",\n                \", line counts have been omitted because commit count exceeds 10,000.\": \" 分支，由于提交次数超过 10,000 次，因此省略行数。\",\n            // 筛选栏\n                \"Period\": \"时间\",\n                    \"All\": \"全部\",\n                    \"Last month\": \"上月\",\n            // 日期\n                \"Weekly from\": \" 每周从\",\n                \"From\": \"从\",\n            // 提交图表\n                \"over time\": \"总览\",\n                \"commit\": \"次提交\",\n                    \"s\": \" \",\n                \"Contributions\": \"贡献\", // 图表旁竖写\n                \"Chart options\": \"图表选项\",\n                    \"View as table\": \"以表格形式查看\",\n                    \"Download CSV\": \"下载 CSV\",\n                    \"Download PNG\": \"下载 PNG\",\n                    // 表格窗口\n                        \"Commits over time\": \"提交总览\",\n                        \"DateTime\": \"日期时间\",\n                        \"Week of\": \"周\",\n\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n    },\n    \"regexp\": [ // 正则翻译\n        [/Contributions to (.*), excluding merge commits/, \"贡献到 $1 分支，不包括合并提交\"],\n        [/Contributions to (.*), excluding merge commits and bot accounts/, \"贡献到 $1 分支，不包括合并提交和机器人账户\"],\n        [/Contributions to (.*), line counts have been omitted because commit count exceeds 10,000./, \"贡献到 $1 分支，由于提交次数超过 10,000 次，因此省略行数。\"],\n        //[/Contributions per week to (.*), excluding merge commits/, \"每周贡献到 $1 分支，不包括合并提交\"],\n        [/([\\d,]+) commits?/, \"$1 次提交\"],\n        // 新版\n        [/Last (\\d+) months?/, \"最后 $1 个月\"],\n        [/([^ ]+)'s (Commits|Additions|Deletions)/, function(all, user, cont){\n\n            var contKey = {Commits: '提交', Additions: '添加数量', Deletions: '删除数量'};\n\n            return user + ' 的' + contKey[cont];\n        }],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周`; // 无论如何都是星期一\n        }],\n        [/([^ ]+)-([^ ]+) (\\d+)/, (match, p1, p2 ,p3) => { // 出现位置：具体某贡献者 - 贡献数柱形图日期，原文格式为 月-月 年\n            const translatedP1 = I18N[\"zh-CN\"][\"public\"][\"static\"][p1] || p1;\n            const translatedP2 = I18N[\"zh-CN\"][\"public\"][\"static\"][p2] || p2;\n            return `${p3}年 ${translatedP1}-${translatedP2}`; // 此处修改格式为 年 月-月\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Contributors to (.+)/, \"$1 的贡献者\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/community\"] = { // 仓库 -> 洞察 - 社区\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社区 /<user-name>/<repo-name>/graphs/community\n            \"Enable Discussions to unlock Community Insights!\": \"启用讨论，以解锁社区见解！\",\n            \"Discussions is the central space for your community to share announcements, ask questions, and host conversations.\": \"讨论是您的社区共享公告、提出问题和主持对话的中心空间。\",\n            \"Set up discussions\": \"建立讨论\",\n\n            \"Community insights\": \"社区见解\",\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 3 months\": \"最近 3 个月\",\n                \"Last year\": \"最近 1 年\",\n\n            \"Contribution activity\": \"贡献活动\",\n                \"Count of total contribution activity to Discussions, Issues, and PRs\": \"对讨论、议题和拉取请求的总贡献活动计数\",\n                \"discussions\": \"讨论\",\n                \"Quantity\": \"数量\",\n                \"Timeline\": \"时间轴\",\n                // [/(\\d+) pull requests created/, \"$1 个拉取请求创建\"],\n            \"We tried our best, but the graph wouldn’t load. Try reloading the page.\": \"我们尽了最大努力，但图表无法加载。尝试重新加载页面。\",\n            \"Discussions page views\": \"讨论页面浏览量\",\n                \"Total page views to Discussions segmented by logged in vs anonymous users.\": \"按登录用户与匿名用户划分的讨论的总页面浏览量。\",\n                \"logged in\": \"登录\",\n                \"anonymous\": \"匿名\",\n\n                \"Not enough data yet.\": \"还没有足够的数据。\",\n                \"It usually takes about a week to populate this chart.\": \"填充此图表通常需要大约一周的时间。\",\n                \"Read more about insights\": \"阅读更多关于见解的信息\",\n\n            \"Discussions daily contributors\": \"每日讨论的贡献者\",\n                \"Count of unique users who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所选时间段内，作出反应、投票、标记答案、评论或发帖的唯一用户的数量。\",\n            \"Discussions new contributors\": \"讨论的新贡献者\",\n                \"Count of unique new users to Discussions who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所选时间段内，对讨论作出反应、投票、标记答案、评论或发帖的唯一新用户的数量。\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) pull requests? created/, \"$1 个拉取请求创建\"],\n        [/(\\d+) issues? created/, \"$1 个议题创建\"],\n        [/(\\d+) discussions? created/, \"$1 个讨论创建\"],\n        [/(\\d+) contributors?/, \"$1 贡献者\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/community\"] = { // 仓库 -> 洞察 - 社区准则\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社区准则 /<user-name>/<repo-name>/community\n            \"Here’s how this project compares to\": \"以下是该项目内容，不同于\",\n            \"recommended community standards\": \"推荐的社区标准\",\n            \"Checklist\": \"检查清单\",\n            \"Add\": \"添加\",\n            \"Propose\": \"提议\",\n\n            \"Description\": \"描述\",\n                \"Add a description to your repository so people understand the goals of your project.\": \"向您的仓库添加描述，以便人们了解您项目的目标。\",\n            \"README\": \"自述文件（README）\",\n                \"Writing a README\": \"编写自述文件（README）\",\n            \"Code of conduct\": \"行为准则\",\n                \"What is a code of conduct?\": \"什么是行为准则？\",\n            \"Contributing\": \"贡献\",\n                \"Writing contributing guidelines\": \"编写贡献指南\",\n            \"License\": \"许可证\",\n                \"Choosing a license\": \"选择许可证\",\n            \"Security policy\": \"安全政策\",\n                \"Set up a security policy\": \"设置安全策略\",\n            \"Issue templates\": \"议题模板\",\n            \"Pull request template\": \"拉取请求模板\",\n            \"Repository admins accept content reports\": \"仓库管理员接受内容报告\", // 组织仓库?\n            \"What is\": \"什么是\",\n            \"the community profile\": \"社区简介\",\n\n        // 添加许可证 /<user-name>/<repo-name>/community/license/new?branch=main\n            \"Add a license to your project\": \"为您的项目添加许可证\",\n            \"Choose a license to add to your project\": \"选择要添加到项目的许可证\",\n            \"Select a template on the left to get started.\": \"在左侧选择一个模板开始。\",\n            \"Learn more about\": \"了解更多关于\",\n            \"which license best fits your project\": \"哪种许可证最适合您的项目\",\n\n        // 添加许可证 /<user-name>/<repo-name>/community/license/new?branch=<branch name>&template=<template name>\n            // 右侧栏\n                \"You’ll have a chance to review before committing a\": \"您将有机会在提交之前进行审查\",\n                \"file to a new branch or the root of your project.\": \"文件到新分支或项目的根目录。\",\n\n                \"To adopt\": \"采用\",\n                \", enter your details. You’ll have a chance to review before committing a\": \"，输入您的详细信息。您将有机会在提交之前进行审查\",\n                \"Year\": \"年份\",\n                    \"The current year\": \"当前年份\",\n                \"Full name\": \"全名\",\n                    \"The full name or username of the repository owner\": \"仓库所有者的全名或用户名\",\n                \"Review and submit\": \"审查并提交\",\n\n            // 中间栏 顶部 权限信息\n                \"Permissions\": \"许可事项\",\n                \"Limitations\": \"限制条件\",\n                    \"Commercial use\": \"商业用途\",\n                    \"Modification\": \"修改\",\n                    \"Distribution\": \"分布\",\n                    \"Patent use\": \"专利使用\",\n                    \"Private use\": \"私人使用\",\n                    \"Trademark use\": \"商标使用\",\n                    \"Liability\": \"责任\",\n                    \"Warranty\": \"担保\",\n                    \"Disclose source\": \"开源\",\n                    \"Same license\": \"相同的许可证\",\n                \"Conditions\": \"条件\",\n                    \"License and copyright notice\": \"许可和版权声明\",\n                    \"State changes\": \"状态变化\",\n                    \"License and copyright notice for source\": \"来源许可和版权声明\",\n                    \"Network use is distribution\": \"网络使用即分发\",\n                    \"Same license (library)\": \"相同的许可证（库）\",\n                    \"Same license (file)\": \"相同的许可证（文件）\",\n\n                \"This is not legal advice.\": \"这并不是法律建议。\",\n                \"Learn more about repository licenses\": \"了解更多关于仓库许可证的信息\",\n\n        // 添加行为准则 /<user-name>/<repo-name>/community/code-of-conduct/new\n            \"Add a code of conduct to your project\": \"为您的项目添加行为准则\",\n            \"Choose a code of conduct to add to your project\": \"选择要添加到项目中的行为准则\",\n            \"what a code of conduct is\": \"什么是行为准则\",\n            \"and how to enforce it.\": \"以及如何执行。\",\n            \"Contributor Covenant\": \"贡献者协议\",\n                \"Recommended for projects of all sizes\": \"建议用于各种规模的项目\",\n                \"Contact method\": \"联系方式\",\n            \"Citizen Code Of Conduct\": \"公民行为准则\",\n                \"Suitable for large communities and events\": \"适合大型社区和活动\",\n                \"Link to reporting guidelines\": \"报告指南链接\",\n                \"Link to policy\": \"政策链接\",\n                \"Note\": \"注释\",\n                \"Contact info\": \"联系信息\",\n                \"Community name\": \"团队名称\",\n                \"Governing body\": \"管理机构\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Community Standards\": \"社区准则\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/traffic\"] = { // 仓库 -> 洞察 - 流量\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 流量 /<user-name>/<repo-name>/graphs/traffic\n            \"Git clones\": \"Git 克隆\",\n            \"Clones\": \"克隆\",\n            \"Unique cloners\": \"唯一克隆者\",\n            \"clones\": \"次克隆\",\n            \"clone\": \"次克隆\",\n            \"unique cloners\": \"个唯一克隆者\",\n            \"unique cloner\": \"个唯一克隆者\",\n            \"Visitors\": \"访客\",\n\n            \"Referring sites\": \"引荐网站\",\n            \"Site\": \"站点\",\n            \"Domains\": \"域名\",\n            \"Views\": \"浏览\",\n            \"Unique visitors\": \"唯一访客\",\n            \"Unique Visits\": \"唯一访问\",\n            \"views\": \"次浏览\",\n            \"view\": \"次浏览\",\n            \"Visits\": \"访问\",\n            \"unique visitors\": \"个唯一访客\",\n            \"unique visitor\": \"个唯一访客\",\n            \"Popular content\": \"热门内容\",\n            \"Content\": \"内容\",\n            \"Path\": \"路径\",\n\n            \"We don’t have enough data to show anything useful.\": \"我们没有足够的数据来显示任何有用的东西。\",\n            \"It usually takes about a week to populate this graph.\": \"通常需要一周左右的时间来填充此图表。\",\n            \"It looks like traffic to your repository is a little light. Go spread the word and check back later!\": \"看起来您的仓库的流量有点少呀。去宣传一下吧，稍后再回来查看！\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            \"Referring sites and popular content are temporarily unavailable or may not display accurately. We're actively working to resolve the issue.\": \"引用网站和热门内容暂时无法使用或可能无法准确显示。我们正在积极解决该问题。\",\n\n            \"Clones in last 14 days\": \"最近 14 天克隆数\",\n            \"Unique cloners in last 14 days\": \"最近 14 天唯一克隆者\",\n                \"Cloners\": \"克隆者\",\n            \"Total views in last 14 days\": \"最近 14 天访问数\",\n                \"Total views\": \"总访问数\",\n            \"Unique visitors in last 14 days\": \"最近 14 天唯一访客\",\n\n            \"Chart options\": \"图表选项\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下载 CSV\",\n                \"Download PNG\": \"下载 PNG\",\n\n            \"Customization settings\": \"自定义设置\",\n                \"Line chart settings\": \"折线图设置\",\n                    \"Differentiate by line style\": \"折线样式区分\",\n                        \"Use unique line styles (dashed, dotted, etc.) to differentiate lines in charts.\": \"使用独特的线条样式（如虚线、点线等）在图表中区分不同的线条。\",\n                    \"Show data labels\": \"显示数据标签\",\n                        \"Show labels for each data point in line chart.\": \"在折线图每个数据点显示标签。\",\n\n            // 表格\n            \"Category\": \"日期\", // 实际上为日期\n            \"Total\": \"总计\",\n            \"Unique\": \"唯一\",\n\n            \"We don't have enough data to show anything useful.\": \"我们没有足够的数据来显示任何有用的东西。\",\n            \"It usually takes about a week to populate this table.\": \"通常需要一周左右的时间来填充此图表。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Clones?/, \"$1 次克隆\"],\n        [/(\\d+) Unique cloners?/, \"$1 位唯一克隆者\"],\n        [/(\\d+) Views?/, \"$1 次访问\"],\n        [/(\\d+) Unique visitors?/, \"$1 位唯一访客\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/commit-activity\"] = { // 仓库 -> 洞察 - 提交\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 提交 /<user-name>/<repo-name>/graphs/commit-activity\n            \"Sunday\"    : \"周日\",\n            \"Monday\"    : \"周一\",\n            \"Tuesday\"   : \"周二\",\n            \"Wednesday\" : \"周三\",\n            \"Thursday\"  : \"周四\",\n            \"Friday\"    : \"周五\",\n            \"Saturday\"  : \"周六\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n        // 新版\n            \"Commits over the last year of\": \"最近一年内提交到\",\n\n            \"Number of commits per week\": \"每周提交数\",\n            \"Customization settings\": \"自定义设置\",\n                \"Column & bar chart settings\": \"柱状图设置\",\n                    \"Increase Contrast\": \"增加对比度\",\n                    \"Adds gradients and outlines to increase contrast in charts.\": \"为图表添加渐变效果和轮廓，以增强对比度\",\n                    \"Show data labels\": \"显示数据标签\",\n                    \"Show labels for each data point in column and bar charts.\": \"在柱状图中显示每个数据点的标签\",\n\n            \"Chart options\": \"图表选项\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下载 CSV\",\n                \"Download PNG\": \"下载 PNG\",\n\n                \"DateTime\": \"日期\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/commits? the week of (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, month, day){\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '次提交本周，' + monthKey[month] + day + '日';\n        }],\n        [/Week of (.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周` ; // 这里写翻译结果\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/graphs/code-frequency\"] = { // 仓库 -> 洞察 - 代码频率\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 代码频率 /<user-name>/<repo-name>/graphs/code-frequency\n            \"Code frequency over the history of\": \"历史上的代码频率\",\n            \"Additions\": \"添加数量\",\n            \"Deletions\": \"删除数量\",\n            \"per week\": \"每周\",\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在为您准备最新数据，请稍后…\",\n\n            // 过多\n            \"There are too many commits to generate this graph.\": \"提交次数过多，无法生成图表。\",\n            \"More information about this data can be found in the\": \"有关这些数据的更多信息，请参阅\",\n            \"activity documentation\": \"活动文档\",\n\n        // 新版\n        \"Additions and deletions per week\": \"添加数量和删除数量/每周\",\n        \"Chart options\": \"图表选项\",\n            \"View as table\": \"以表格形式查看\",\n            \"Download CSV\": \"下载 CSV\",\n            \"Download PNG\": \"下载 PNG\",\n            // 图表本体\n                \"DateTime\": \"日期时间\",\n                \"Frequency\": \"频率\",\n                \"Values\": \"值\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1为(.+)\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}当周`; // 无论如何都是星期一\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Code frequency/, \"代码频率\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/dependencies\"] = { // 仓库 -> 洞察 - 依赖项关系图 - 依赖项\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n        // 依赖项关系图 - 依赖项 /network/dependencies\n            \"Tell us how to make the Dependency Graph work better for you with a few quick questions.\": \"请通过几个简单的问题告诉我们，如何使 “依赖项关系图” 更好地为您工作。\",\n\n            \"Dependency graph is disabled\": \"依赖项关系图未启用\",\n            \"The owner of this repository has not yet enabled the dependency graph. Once enabled, you can\": \"此仓库的所有者尚未启用依赖项关系图。一旦启用，您可以\", //个人仓库\n            \"Dependency graph has not been enabled by an organization owner or a user with admin permissions for this repository. Once enabled, you can\": \"依赖项关系图还没有被组织所有者或具有该仓库管理权限的用户启用。一旦启用，您可以\", // 组织仓库\n            \"track this repository’s dependencies\": \"追踪此仓库的依赖项\",\n            \"Learn more about how we use your data.\":\"深入了解我们对您数据的使用方式。\",\n\n            \"Enable the dependency graph\": \"启用依赖项关系图\",\n            \"Track this repository’s\": \"追踪该仓库的\",\n            \"dependencies and sub-dependencies\": \"依赖项和子依赖项\",\n            \"The\": \" \",\n            \"is not enabled for this repository. Click on \\\"Enable the dependency graph\\\" below to enable it.\": \"暂未启用。单击下面的 “启用依赖项关系图” 以启用它。\",\n            \"If you’d like to enable the\": \"如果您想启用\",\n            \"dependency graph\": \"依赖项关系图\",\n            \"vulnerability alerting\": \"漏洞警报\",\n            \"click on \\\"Allow access\\\" below to enable it.\": \"点击下面的 “允许访问” 来启用它。\",\n            \"Learn more about how we use your data\": \"了解更多关于我们如何使用您的数据的信息\",\n            \"Allow access\": \"允许访问\",\n\n            \"No dependencies found.\": \"未找到依赖项\",\n            \"To view your dependency graph, your repository must define dependencies in\": \"要查看依赖项关系图，您的仓库必须定义依赖项存在\",\n            \"one of the supported manifest file types\": \"一个支持的清单文件\",\n            \", like\": \"，例如\",\n            \", and\": \"，和\",\n\n            \"Export SBOM\": \"导出 SBOM\",\n\n            \"Detect additional dependencies with GitHub Actions\": \"使用 GitHub Actions 检测额外的依赖项\",\n                // 并非所有依赖项都会自动检测到，例如 Gradle 这样的生态系统。GitHub Actions 会通过依赖项提交 API 添加您的依赖项，这样您就可以收到有关已知漏洞的 Dependabot 警报。\n                \"Not all dependencies are automatically detected for ecosystems like Gradle. GitHub Actions adds your dependencies using the\": \"并非所有依赖项都会自动检测到，例如 Gradle 这样的生态系统。GitHub Actions 会通过\",\n                \"dependency submission API\": \"依赖项提交 API\",\n                \"so you can receive Dependabot alerts for known vulnerabilities.\": \"添加您的依赖项，这样您就可以收到有关已知漏洞的 Dependabot 警报。\",\n            \"View in Marketplace\": \"去市场查看\",\n\n            // \"Dependencies\": \"依赖项\",\n            \"Search all dependencies\": \"搜索所有依赖项\",\n                \"Suggested filters\": \"建议筛选\",\n\n            \"These dependencies are defined in\": \"这些依赖项被定义在\",\n            \"’s manifest files, such as\": \"的清单文件，例如\",\n            \"Dependencies defined in\": \"依赖项被定义在\",\n\n            // 发现已知漏洞\n            \"Dependencies defined in these manifest files have known security vulnerabilities and should be updated:\": \"这些清单文件中定义的依赖项具有已知的安全漏洞，应更新：\",\n            // [/(\\d+) vulnerabilities? found/, \"发现 $1 个漏洞\"],\n            \"Known security vulnerability in\": \"已知的安全漏洞，在\",\n                \"Known vulnerability found\": \"发现已知漏洞\",\n                \"update suggested:\": \"更新建议：\",\n                \"Always verify the validity and compatibility of suggestions with your codebase.\": \"始终验证建议与代码库的有效性和兼容性。\",\n\n            // [/(\\d+) more dependencies/, \"更多 $1 个依赖项\"],\n            // [/Load (\\d+) more…/, \"加载更多 $1个…\"],\n            \"Ecosystem\": \"生态系统\",\n                \"Filter by ecosystem\": \"按生态系统筛选\",\n\n            \"ProTip!\": \"专业提示！\",\n            \"What’s not been updated\": \"未更新内容\",\n                \"Supported ecosystems will have transitivity labels on their packages.\": \"受支持的生态系统将在其包上有传递性标签。\",\n\n            \"View transitive paths\": \"查看传递路径\",\n            \"You can view transitive paths for packages within supported ecosystems.\": \"您可以在受支持的生态系统中查看包的传递路径。\",\n            \"OK, got it\": \"好的，明白了\",\n            \"Show dependency options\": \"显示依赖选项\",\n                \"Show paths\": \"显示路径\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/View Dependabot alerts?/, \"查看 Dependabot 警报\"],\n        //[/Detected automatically on (.+)/, \"自动检测于$1\"],\n        [/· Detected automatically on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `· 自动检测于 ${translatedDate}`;\n        }],\n        [/(\\d+) Total/, \"$1 总计\"],\n        [/(\\d+) vulnerabilities? found/, \"发现 $1 个漏洞\"],\n        [/(\\d+) more dependencies/, \"更多 $1 个依赖项\"],\n        [/(\\d+) moderate · (\\d+) total/, \"$1 中风险 · $2 总计\"],\n        [/(\\d+) high · (\\d+) total/, \"$1 高风险 · $2 总计\"],\n        [/(\\d+) high/, \"$1 高风险\"],\n        [/(\\d+) moderate/, \"$1 中风险\"],\n        [/Load (\\d+) more…/, \"加载更多 $1个…\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Dependencies/, \"依赖项\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/dependents\"] = { // 仓库 -> 洞察 - 依赖项关系图 - 依赖者\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n        // 依赖项关系图 - 依赖者 /network/dependents\n            \"GitHub does not currently determine the dependents of private repositories\": \"GitHub 目前无法确定私有仓库的依赖者\",\n\n            \"Export SBOM\": \"导出 SBOM\",\n            // \"Dependents\": \"依赖者\",\n            \"We haven’t found any dependents for this repository yet.\": \"我们尚未找到此仓库的任何依赖者。\",\n            \"We’ll keep looking!\": \"我们会继续寻找！\",\n\n            \"Repositories that depend on\": \"依赖的仓库包括\",\n            \"Package:\": \"软件包：\",\n\n            \"These counts are approximate and may not exactly match the dependents shown below.\": \"这些计数是近似值，可能与下方显示的依赖项不完全匹配。\",\n\n            // [/(\\d+) Repositor(y|ies)/, \"$1 仓库\"],\n            // [/(\\d+) Packages?/, \"$1 软件包\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Repositor(y|ies)/, \"$1 仓库\"],\n        [/(\\d+) Packages?/, \"$1 软件包\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Dependents/, \"网络依赖者\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/updates\"] = { // 仓库 -> 洞察 - 依赖项关系图 - Dependabot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依赖项\",\n        \"Dependents\": \"依赖者\",\n\n        \"Export SBOM\": \"导出 SBOM\",\n        // 依赖项关系图 - Dependabot /network/updates\n            \"Enable Dependabot\": \"启用 Dependabot\",\n            \"Dependabot isn't enabled\": \"未启用 Dependabot\",\n            \"Dependabot isn't enabled on forks by default\": \"默认情况下，Dependabot 不会在复刻上启用。\",\n\n            \"Dependabot version updates aren't configured yet\": \"尚未配置 Dependabot 版本更新\",\n            \"Dependabot creates pull requests to keep your dependencies up-to-date.\": \"Dependabot 创建拉取请求以保持您的依赖项是最新的。\",\n            \"Create config file\": \"创建配置文件\",\n\n            \"Recent update jobs\": \"最近更新的工作\",\n\n            \"Dependabot version updates\": \"Dependabot 版本更新\",\n            \"automatically keep your application up-to-date by periodically updating dependencies to their latest versions.\": \"通过定期将依赖项更新到最新版本，自动保持应用的最新状态。\",\n            \"Dependabot security updates\": \"Dependabot 版本更新\",\n            \"can also help keep dependencies updated.\": \"还可以帮助保持依赖项更新。\",\n\n            \"Monitored dependency files\": \"受监控的依赖文件\",\n            \"Check for updates\": \"检查更新\",\n            \"Recent jobs\": \"近期工作\",\n            \"view logs\": \"查看日志\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/network\"] = { // 仓库 -> 洞察 - 网络图\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 网络图 /<user-name>/<repo-name>/network\n            // 键盘快捷键\n                \"Scroll left\": \"向左滑动\",\n                \"Scroll right\": \"向右滑动\",\n                \"Scroll up\": \"向上滑动\",\n                \"Scroll down\": \"向下滑动\",\n                \"Toggle visibility of the head labels\": \"切换头部标签的可见性\",\n                \"Scroll all the way left\": \"一直向左滑动\",\n                \"Scroll all the way right\": \"一直向右滑动\",\n                \"Scroll all the way up\": \"一直向上滑动\",\n                \"Scroll all the way down\": \"一直向下滑动\",\n\n            \"Network graph\": \"网络图\",\n            \"Timeline of the most recent commits to this repository and its network ordered by most recently pushed to.\": \"最近提交到此仓库的时间轴及其网络图按最近推送的顺序排序。\",\n\n            \"The repository network shows the 100 most recently pushed forks.\": \"仓库网络图显示最近推送的 100 个复刻。\",\n\n            \"Loading graph data\": \"加载网络图数据\",\n            \"Keyboard shortcuts available\": \"可用的键盘快捷键\",\n\n            \"Sorry, your browser doesn’t support the <canvas> element.\": \"抱歉，您的浏览器不支持 <canvas> 元素。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Graph/, \"网络图\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/network/members\"] = { // 仓库 -> 洞察 - 复刻\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 复刻 - 树形视图 /<user-name>/<repo-name>/network/members\n            \"switch to list view\": \"切换到列表视图\",\n\n            \"No one has forked this repository yet.\": \"目前，暂无人复刻该仓库。\",\n            \"Forks are a great way to contribute to a repository. After\": \"复刻是给该仓库做贡献的好方法。首先\",\n            \"forking a repository\": \"复刻仓库\",\n            \", you can send the original author a\": \"，然后您可向原作者发送\",\n            \"pull request\": \"拉取请求\",\n\n            \"Woah, this network is huge! We’re showing only some of this network’s repositories.\": \"哇，这个网络太庞大了! 我们只展示了这个网络中的一部分仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/forks\"] = { // 仓库 -> 洞察 - 复刻\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        // 复刻 - 列表视图 /<user-name>/<repo-name>/forks\n            \"Switch to tree view\": \"切换到树形视图\",\n\n            \"No one has forked this repository yet\": \"目前，暂无人复刻该仓库\",\n            \"Forks are a great way to contribute to a repository. After\": \"复刻是给该仓库做贡献的好方法。首先\",\n            \"forking a repository\": \"复刻仓库\",\n            \", you can send the original author a\": \"，然后您可向原作者发送\",\n            \"pull request\": \"拉取请求\",\n\n            \"No forked repositories found\": \"尚无复刻仓库\",\n            \"Try changing your filters, or search for\": \"尝试更改筛选器，或搜索\",\n            \"active forked repositories\": \"活跃的复刻仓库\",\n\n            \"Period:\": \"周期:\",\n                \"Filter by period\": \"筛选周期\",\n                \"1 month\": \"1 个月\",\n                \"6 months\": \"6 个月\",\n                \"1 year\": \"1 年\",\n                \"2 years\": \"2 年\",\n                \"5 years\": \"5 年\",\n                \"All time\": \"所有时间\",\n\n                \"Any repository that has not been created or updated during this period will be excluded.\": \"在此期间未被创建或更新的任何仓库将被排除在外。\",\n            \"Repository type:\": \"仓库类型:\",\n                \"Filter by repository type\": \"筛选仓库类型\",\n                \"None\": \"无\",\n                \"Active\": \"活跃\",\n                    \"Repositories with push activity\": \"有推送活动的仓库\",\n                \"Inactive\": \"不活跃\",\n                    \"Repositories with no push activity\": \"无推送活动的仓库\",\n                \"Network\": \"网络\",\n                    \"Forks of other forks\": \"其他复刻的复刻\",\n                \"Archived\": \"存档\",\n                    \"Archived repositories\": \"已存档的仓库\",\n                \"Starred\": \"星标\",\n                    \"Repositories with at least 1 star\": \"至少有 1 个星标的仓库\",\n            \"Sort:\": \"排序:\",\n                \"Sort by\": \"排序方式\",\n                    \"Most starred\": \"最多星标\",\n                    \"Recently updated\": \"最近更新\",\n                    \"Open issues\": \"打开的议题\",\n                    \"Open pull requests\": \"打开的拉取请求\",\n                \"Defaults Saved\": \"默认值已保存\",\n                \"Save Defaults\": \"保存默认值\",\n\n            \"Never updated\": \"从未更新\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Created/, \"创建于\"],\n        [/Updated/, \"更新于\"],\n        [/(Active|Inactive|Network|Archived|Starred) (\\+\\d+)/, function(all, type, num){\n            var typeKey = {\"Active\": \"活跃\",\"Inactive\": \"不活跃\",\"Network\": \"网络\",\"Archived\": \"存档\",\"Starred\": \"星标\"};\n            return typeKey[type] + ' ' + num;\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Forks/, \"复刻\"],\n        ],\n    },\n};\n\n// 洞察 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\nI18N[\"zh-CN\"][\"repository-settings-menu\"] = { // 仓库设置公共部分\n    \"static\": { // 静态翻译\n        // >>>>>>>>>>>>>>>>>>   仓库设置 公共部分  <<<<<<<<<<<<<<<<<<<\n            // 顶部提醒栏\n            \"Most repository settings are hidden for archived repositories. This repository must be unarchived to change them.\": \"对于存档的仓库，大多数仓库设置都是隐藏的。 必须解除仓库存档才能更改它们。\",\n            \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已由所有者存档。它现在是只读的。\",\n            \"Repository settings saved.\": \"仓库设置已保存。\",\n\n\n            // 左侧菜单\n            \"General\": \"通常\",\n\n            \"Access\": \"访问\",\n                // \"Collaborators\": \"协作者\",\n                \"Collaborators and teams\": \"协作者和团队\", // 组织仓库\n                \"Team and member roles\": \"团队和成员职责\",  // 组织仓库\n                \"Moderation options\": \"节制选项\",\n                    \"Interaction limits\": \"互动限制\",\n                    \"Code review limits\": \"代码审查限制\",\n\n            \"Code and automation\": \"代码与自动化\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"标签\",\n                \"Rules\": \"规则\",\n                    \"Rulesets\": \"规则集\",\n                // \"Actions\": \"操作\",\n                    // \"General\": \"通常\",\n                    \"Runners\": \"运行器\",\n                \"Models\": \"模型\",\n                \"Webhooks\": \"Web 钩子\",\n                // Copilot\n                    \"Code review\": \"代码审查\",\n                    \"Coding agent\": \"编程智能体\",\n                \"Environments\": \"环境\",\n                \"Pages\": \"GitHub Pages\",\n                \"Custom properties\": \"自定义属性\",  // 组织仓库\n\n            // \"Security\": \"安全\",\n                \"Advanced Security\": \"高级安全\",\n                \"Deploy keys\": \"部署密钥\",\n                \"Secrets and variables\": \"机密和变量\",\n\n            \"Integrations\": \"集成\",\n                \"GitHub Apps\": \"GitHub 应用\",\n                \"Email notifications\": \"邮件通知\",\n                \"Autolink references\": \"自动链接引用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/settings\"] = { // 仓库设置 - 通常 /<user-name>/<repo-name>/settings\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 通常 - 设置页面 /<user-name>/<repo-name>/settings ====================================\n            \"You don't have access to repository options\": \"你没有对仓库设置的访问权限\",\n                \"Check the sidebar for available repository settings.\": \"在侧边栏中查看可用的仓库设置。\",\n            \"Repository name\": \"仓库名称\",\n            \"Rename\": \"重命名\",\n                // [/is available./, \"名称可用。\"],\n                \"The repository\": \"仓库\",\n                \"already exists on this account.\": \"已经存在于此账户。\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                // 顶部提醒\n                \"Repository name was not changed\": \"仓库名称未更改\",\n\n                \"Renaming...\": \"重命名中…\",\n\n            \"Template repository\": \"模板库\",\n                \"Template repositories let users generate new repositories with the same directory structure and files.\": \"模板仓库允许用户生成具有相同目录结构和文件的新仓库。\",\n                \"A repository with LFS content cannot be used as a template.\": \"带有 LFS 内容的仓库不能作为模板使用。\",\n                \"Learn more about template repositories\": \"了解更多关于模板库的信息\",\n\n                \"Require contributors to sign off on web-based commits\": \"要求贡献者在基于 Web 的提交上签署\",\n                \"Enabling this setting will require contributors to sign off on commits made through GitHub’s web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"启用此设置将要求贡献者签署通过 GitHub 的 Web 界面所做的提交。签署是贡献者确认他们的提交符合仓库条款的一种方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"开发者来源证书（DCO）\",\n                \"Learn more about signing off on commits\": \"了解更多关于签署提交的信息\",\n\n            \"This setting is enabled on the upstream repository. Disabling this setting may block commits from being merged upstream.\": \"此设置在上游仓库中启用。禁用此设置可能会阻止提交向上游合并。\",\n\n            \"Default branch\": \"默认分支\",\n            \"The default branch is considered the “base” branch in your repository, against which all pull requests and code commits are automatically made, unless you specify a different branch.\": \"默认分支被认为是仓库中的 “基础” 分支，所有的拉取请求和代码提交都是针对该分支进行的，除非您指定一个不同的分支。\",\n            \"Rename branch\": \"重命名分支\",\n                // 重命名分支对话框\n                \"Rename this branch\": \"重命名分支\",\n                \"Rename\": \"重命名\",\n                \"to:\": \"为：\",\n                // [/is already the branch name./, \"已经是分支的名称了。\"],\n                // [/Your branch name will be/, \"您的分支的名称将重命名为\"],\n                \"Most projects name the default branch\": \"大多数项目将默认分支名为\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 该分支存在来自其他分支的拉取请求时\n                        \"Will update\": \"将更新\",\n                        \"pull request targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"pull requests targeting this branch.\": \"条针对该分支的拉取请求。\",\n                        \"branch protection rule that explicitly targets\": \"条分支保护规则明确针对\",\n\n                    // 该分支存在用于其他分支的拉取请求时\n                        \"Will close\": \"将关闭\",\n                        \"open pull request for this branch.\": \"个该分支的拉取请求。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"将取消当前发布的 GitHub Pages 站点。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您当前的 GitHub Pages 站点将被取消发布。重命名分支上的新提交将再次发布 GitHub Pages 站点。\",\n\n                    \"Will not update your members' local environments.\": \"不会更新您成员的本地环境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不会更新您成员的本地环境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成员将不得不手动更新他们的本地环境。我们会在他们访问仓库时通知他们，或者您可以共享以下命令。\",\n                \"Saving…\": \"保存中…\",\n\n            \"Switch to another branch\": \"切换到另一分支\",\n                // 分支切换对话框\n                \"Switch default branch to another branch\": \"将默认分支切换到另一分支\",\n                // [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"选择另一分支作为 $1 的默认分支而不是\"], // 分支切换 对话框\n                \"Switch default branch\": \"切换默认分支\",\n                \"Filter branches\": \"筛选分支\",\n                \"default\": \"默认\",\n                // 更新默认分支对话框\n                \"Update default branch\": \"更新默认分支\",\n                \"Changing your default branch\": \"更改您的默认分支\",\n                \"can have unintended consequences that can affect new pull requests and clones.\": \"可能会产生意想不到的后果，影响新的拉取请求和克隆。\",\n                \"I understand, update the default branch.\": \"我明白了，依然更新默认分支\",\n                // 顶部提醒\n                    // [/Default branch changed to ([^ ])/, \"默认分支更改为 $1\"]\n\n            // 发行版\n                \"Enable release immutability\": \"启用发行版不可修改\",\n                    \"Disallow assets and tags from being modified once a release is published.\": \"禁止在发布发行版后修改资产和标签。\",\n\n            \"Social preview\": \"社交预览\",\n            // 关于私有库提醒\n            \"You can upload a social image, but it will not be visible publicly while\": \"您可以上传社交图片，但当\",\n            \"is private.\": \"是私密时，它不会公开显示。\",\n            \"Upload an image to customize your repository’s social media preview.\": \"上传图像以自定义仓库的社交媒体预览。\",\n            \"Images should be at least 640×320px (1280×640px for best display).\": \"图片至少应为 640×320 像素（1280×640 像素以获得最佳显示效果）。\",\n            \"Download template\": \"下载模板\",\n            \"Edit\": \"编辑\",\n                \"Upload an image…\": \"上传图片…\",\n                \"Remove image\": \"删除图片\",\n\n            \"Features\": \"功能\",\n            // \"Wikis\": \"\",\n                \"Wikis host documentation for your repository.\": \"Wikis 为您的仓库托管文档。\",\n                \"Restrict editing to collaborators only\": \"仅限协作者进行编辑\",\n                \"Restrict editing to users in teams with push access only\": \"仅限具有推送访问权限的团队中的成员进行编辑\", //组织仓库\n                    \"Public wikis will still be readable by everyone.\": \"公共 Wikis 仍然可供所有人阅读。\",\n\n            // 私人库 启用 Wiki 提醒\n                \"Upgrade or make this repository public to enable Wikis\": \"升级或公开此仓库，以启用 Wiki\",\n                \"GitHub Wikis is a simple way to let others contribute content. Any GitHub user can create and edit pages to use for documentation, examples, support, or anything you wish.\": \"GitHub Wikis 是一种让他人贡献内容的简单方法。任何 GitHub 用户都可以创建和编辑页面，用于文档、示例、支持或任何您想要的东西。\",\n                // \"Upgrade\": \"升级\",\n                    \"Learn more about wikis\": \"了解更多关于 Wiki 的信息\",\n\n            // 议题\n            \"Issues integrate lightweight task tracking into your repository. Keep projects on track with issue labels and milestones, and reference them in commit messages.\": \"议题将轻量级任务跟踪集成到您的仓库中。使用议题标签和里程碑保持项目正常运行，并在提交消息中引用它们。\",\n            \"Get organized with issue templates\": \"使用议题模板进行组织\",\n            \"Give contributors issue templates that help you cut through the noise and help them push your project forward.\": \"为贡献者提供议题模板，帮助您消除干扰并帮助他们推进您的项目。\",\n            \"Set up templates\": \"设置模板\",\n\n            \"Allow forking\": \"允许复刻\", // 组织仓库\n            \"If disabled, existing forks will be unaffected.\": \"如果禁用，现有复刻将不受影响。\", // 组织仓库\n\n            // 赞助\n            \"Sponsorships\": \"赞助\",\n            \"Sponsorships help your community know how to financially support this repository.\": \"赞助可帮助您的社区了解如何在资金上支持此仓库。\",\n            \"Display a \\\"Sponsor\\\" button\": \"显示 “赞助” 按钮\",\n            \"Add links to GitHub Sponsors or third-party methods your repository accepts for financial contributions to your project.\": \"添加指向 GitHub 赞助者或您的仓库接受的第三方收款链接，以便为您的项目提供资金捐助。\",\n            \"Set up sponsor button\": \"设置赞助按钮\",\n            \"Edit funding links\": \"编辑赞助链接\",\n\n            // 项目\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的项目可以帮助您组织工作并确定其优先次序。您可以为特定的功能工作、全面的路线图、甚至是发布清单创建项目\",\n\n            \"Preserve this repository\": \"保留这个仓库\",\n            \"Include this code in the\": \"将此代码包含在\",\n            \"GitHub Archive Program\": \"GitHub 存档计划中\",\n\n            \"Table of contents\": \"目录\",\n            \"Autogenerate table of contents for markdown files in this repository. the table of contents will be displayed near the top of the file.\": \"自动生成此仓库中 Markdown 文件的目录。目录将显示在文件顶部附近。\",\n\n            // \"Discussions\": \"讨论\",\n            \"Discussions is the space for your community to have conversations, ask questions and post answers without opening issues.\": \"讨论是您的社区进行对话、提问和发布答案的地方，而无需打开议题。\",\n            \"Get started with Discussions\": \"开始讨论\",\n            \"Engage your community by having discussions right in your repository, where your community already lives\": \"通过在您的社区已经存在的仓库中进行讨论来吸引您的社区\",\n            \"Set up discussions\": \"建立讨论\",\n\n            // 项目\n            \"Projects on GitHub are created at the repository owner's level (organization or user) and can be linked to a repository's Projects tab. Projects are suitable for cross-repository development efforts such as feature work, complex product roadmaps or even Issue triage.\": \"GitHub 上的项目是在仓库所有者级别（组织或用户）创建的，并且可以链接到仓库的项目选项卡。项目适用于跨仓库的开发工作，例如功能工作、复杂的产品路线图，甚至问题分流。\",\n\n            // 拉取请求\n            \"Pull requests allow others to suggest changes to your repository.\": \"拉取请求允许其他人向您的代码仓库提出更改建议。\",\n            \"Pull request permissions\": \"拉取请求权限\",\n                \"Creation allowed by:\": \"允许创建：\",\n                    \"All users\": \"所有用户\",\n                    \"Anyone can create a pull request\": \"任何人都可以创建拉取请求\",\n                    \"Collaborators only\": \"仅限协作者\",\n                    \"Only collaborators can create PRs\": \"仅协作者可以创建拉取请求\",\n                \"If restricted, pull requests will still be readable by everyone who can see this repository.\": \"即使设置了限制，所有能够查看此存储库的人仍然可以阅读拉取请求。\",\n\n            // \"Pull Requests\": \"拉取请求\",\n                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled. If you have linear history requirement enabled on any protected branch, you must enable squashing or rebasing.\": \"当合并拉取请求时，您可以允许合并提交、压缩或变基的任意组合。必须至少启用一个选项。如果您在任何受保护分支上启用了线性历史要求，则必须启用压缩或变基。\",\n\n                \"You must select at least one option\": \"您必须至少选择一个选项\",\n                \"Allow merge commits\": \"允许合并提交\",\n                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"使用合并提交将所有从头部分支的提交添加到基础分支。\",\n                        \"Default commit message\": \"默认提交信息\",\n                            \"Presented when merging a pull request with merge.\": \"当合并拉取请求时时出现。\",\n                        \"Default message\": \"默认信息\",\n                        \"Pull request title\": \"拉取请求标题\",\n                        \"Pull request title and commit details\": \"拉取请求标题和提交详情\",\n                        \"Pull request title and description\": \"拉取请求标题和描述\",\n\n                \"Allow squash merging\": \"允许压缩合并\",\n                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"将来自头部分支的所有提交合并到基础分支中的单个提交中。\",\n                        // \"Default commit message\": \"默认提交信息\",\n                            \"Presented when merging a pull request with squash.\": \"当使用压缩合并拉取请求时显示。\",\n                        \"Default to pull request title and commit details\": \"默认为拉取请求标题和提交详细信息\",\n\n                    \"Default to PR title for squash merge commits\": \"默认将拉取请求的标题作为压缩合并提交的信息\",\n                    \"This will pre-populate the commit message with the PR title when performing a squash merge.\": \"在执行压缩合并时，将在提交信息中添加拉取请求的标题。\",\n\n                \"Allow rebase merging\": \"允许变基合并\",\n                    \"Add all commits from the head branch onto the base branch individually.\": \"将来自头部分支的所有提交单独添加到基础分支。\",\n\n                \"Control how and when users are prompted to update their branches if there are new changes available in the base branch.\": \"如果基础分支中有可用的新更改，则控制提示用户更新其分支的方式和时间。\",\n                \"Always suggest updating pull request branches\": \"始终建议更新拉取请求分支\",\n                    \"Whenever there are new changes available in the base branch, present an “update branch” option in the pull request.\": \"每当基础分支中有可用的新更改时，就在拉取请求中显示 “更新分支” 选项。\",\n\n                \"You can allow setting pull requests to merge automatically once all required reviews and status checks have passed.\": \"一旦所有必需的审查和状态检查都通过，您可以允许设置拉取请求自动合并。\",\n\n                \"Allow auto-merge\": \"允许自动合并\",\n                    \"Waits for merge requirements to be met and then merges automatically.\": \"等待满足合并要求，然后自动合并。\",\n                    \"Why is this option disabled?\": \"为什么该选项被禁用？\",\n\n                \"After pull requests are merged, you can have head branches deleted automatically.\": \"合并拉取请求后，您可以自动删除头部分支。\",\n\n                    \"Automatically delete head branches\": \"自动删除头部分支\",\n                        \"Deleted branches will still be able to be restored.\": \"删除的分支仍然可以恢复。\",\n\n            \"Archives\": \"档案\",\n            \"When creating source code archives, you can choose to include files stored using Git LFS in the archive.\": \"创建源代码存档时，您可以选择在存档中包含使用 Git LFS 存储的文件。\",\n\n            \"Include Git LFS objects in archives\": \"在档案中包含 Git LFS 对象\",\n            \"Git LFS usage in archives is billed at the same rate as usage with the client.\": \"归档中的 Git LFS 使用率与客户端的使用率相同。\",\n\n            \"Pushes\": \"推送\",\n            \"Limit how many branches and tags can be updated in a single push\": \"限制一次推送中可以更新多少个分支和标签\",\n                \"Pushes will be rejected if they attempt to update more than this.\": \"如果推送尝试更新超过该值，则推送将被拒绝。\",\n                \"Learn more about this setting\": \"了解更多关于此设置的信息\",\n                \", and send us your\": \"，并向我们发送您的\",\n                \"feedback\": \"反馈\",\n\n                \"Up to\": \"在一次推送中最多可以更新\",\n                \"branches and tags can be updated in a push\": \"个分支和标签\",\n\n                // 提醒\n                \"Must be a whole number between 2 and 1000\": \"必须是 2 到 1000 之间的整数\",\n\n            // 议题\n                \"After merging a pull request, linked issues can be closed automatically.\": \"合并拉取请求后，可以自动关闭关联议题。\",\n                    \"Auto-close issues with merged linked pull requests\": \"使用已合并的关联拉取请求自动关闭议题\",\n                        \"Whenever linked pull requests have merged, auto-close the issue.\": \"当关联的拉取请求被合并时，自动关闭该议题。\",\n\n            \"Danger Zone\": \"危险区\",\n            \"Change repository visibility\": \"更改仓库可见性\",\n            \"You cannot change the visibility of a fork. please\": \"您无法更改复刻仓库的可见性。请\",\n            \"Duplicate the repository\": \"复制仓库\",\n            \"For security reasons, you cannot change the visibility of a fork.\": \"出于安全原因，您无法更改复刻仓库的可见性。\",\n\n            // 更改仓库可见性对话框\n            \"Change visibility\": \"更改可见性\",\n                \"Change to private\": \"更改为私有\",\n                \"Change to public\": \"更改为公开\",\n            \"This repository is currently public.\": \"该仓库当前是公开的。\",\n            \"This repository is currently private.\": \"该仓库当前是私有的。\",\n            \"I want to make this repository public\": \"我想将此仓库设为公开\",\n                \"The code will be visible to everyone who can visit https://github.com\": \"所有可以访问 https://github.com 的人都可以看到代码\",\n                \"Attachments uploaded to this repository's issues and pull requests will not be accessible unless it is made private again.\": \"上传到此仓库的议题和拉取请求的附件将无法访问，除非再次设为私有。\",\n                \"Anyone can fork your repository.\": \"任何人都可以复刻您的仓库。\",\n                \"All push rulesets will be disabled.\": \"所有推送规则集都将被禁用。\",\n                \"Your changes will be published as activity.\": \"您的更改将作为活动发布。\",\n                \"Actions history and logs will be visible to everyone.\": \"操作历史和日志将对所有人可见。\",\n                \"Make this repository public\": \"我想将此仓库设为公开\",\n            \"I want to make this repository private\": \"我想将此仓库设为私有\",\n                \"Making this repository private could permanently erase these counts by removing stars and watchers associated to users that will no longer have access to this repository:\": \"该仓库私有化，将会通过解除星标者和关注者，删除这些计数。他们将无法访问该仓库：\",\n                    \"star\": \"星标者\",\n                    \"stars\": \"星标者\",\n                    \"watcher\": \"关注者\",\n                    \"watchers\": \"关注者\",\n                \"If you decide to make this repository public in the future, it will not be possible to restore these stars and watchers and this will affect its repository rankings.\": \"即使您决定将来公开此仓库，也无法恢复这些星标者和关注者，这将影响其仓库排名。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository.\": \"依赖项关系图和 Dependabot 警报将保持启用，并有权限对该仓库进行只读分析。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository. Any custom Dependabot alert rules will be disabled unless GitHub Advanced Security is enabled for this repository.\": \"依赖项关系图和 Dependabot 警报将继续启用，并允许对该仓库执行只读分析。除非为该仓库启用了 GitHub 高级安全功能，否则任何自定义的 Dependabot 警报规则都将被禁用。\",\n                \"Code scanning will become unavailable.\": \"代码扫描将变得不可用。\",\n                \"Current forks will remain public and will be detached from this repository.\": \"当前的复刻将保持公开，并将从该仓库中分离出来。\",\n                \"Make this repository private\": \"将此仓库设为私有\",\n                \"I have read and understand these effects\": \"我已阅读并理解这些影响\",\n\n                \"Warning: this is a destructive action\": \"警告：这是一个破坏性的行为\",\n                \"To confirm, type the number of stars on this repository in the box below\": \"要确认，请在下面的框中输入此仓库的星标数\",\n\n            \"Disable branch protection rules\": \"禁用分支保护规则\",\n                \"Disable branch protection rules enforcement and APIs\": \"禁用分支保护规则执行和 API\",\n\n                // 顶部提醒\n                    \"Branch protection settings saved.\": \"分支保护设置已保存。\",\n\n            // 禁用分支保护对话框\n                \"This will hide the branch protection settings and disable branch protection rules for this repository.\": \"这将隐藏分支保护设置，并禁用该仓库的分支保护规则。\",\n                \"Disabling branch protection rules allows you to enforce branch and tag protections exclusively with Repository Rules.\": \"禁用分支保护规则后，允许您仅使用仓库规则来执行分支和标签保护。\",\n\n                \"This action will disable:\": \"此操作将禁用：\",\n                    \"Branch protection rule enforcement\": \"分支保护执行\",\n                    \"Branch protection rule APIs\": \"分支保护 API\",\n                // [/(\\d+) branch protection rules?/, \"$1 项分支保护规则\"],\n                \"will be disabled as part of this action\": \"作为此操作的一部分将被禁用\",\n\n            \"Re-enable branch protection rules\": \"重新启用分支保护规则\",\n                \"Re-enable branch protection rules enforcement and APIs\": \"重新启用分支保护规则执行和 API\",\n\n            // 重新启用分支保护对话框\n                \"Re-enable branch protection\": \"重新启用分支保护\",\n                \"will be re-enabled as part of this action\": \"作为此操作的一部分将被重新启用\",\n\n            \"Transfer ownership\": \"转让所有权\",\n            \"Transfer\": \"转让\",\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"将此仓库转让给另一位用户或您可以创建仓库的组织。\",\n            \"Organization members cannot transfer repositories\": \"组织成员没有转让所有权的权限\",\n\n            \"Leave fork network\": \"离开复刻网络\",\n            \"Can't leave the fork network because this fork has child forks.\": \"无法离开复刻网络，因为此复刻有子复刻。\",\n            \"Can't detach forks larger than 1 GB.\": \"无法解除大于 1 GB 的复刻关联。\",\n            \"Unlink this repository from the fork network and make it standalone.\": \"将该仓库从复刻网络中解除关联，使其成为独立仓库。\",\n            \"Detach is in progress.\": \"分离中。\",\n            // 顶部提醒\n                \"Detaching this repository.\": \"分离此仓库…\",\n\n            \"Archive this repository\": \"存档仓库\",\n            \"Mark this repository as archived and read-only.\": \"将此仓库标记为已存档和只读。\",\n\n            // 存档仓库对话框\n            \"Archive repository\": \"存档仓库\",\n            \"This repository will become read-only.\": \"该仓库将设置为只读。\",\n            \"You will still be able to fork the repository and unarchive it at any time.\": \"您仍然可以随时访问复刻仓库并取消存档。\",\n            \"Unexpected bad things will happen if you don’t read this!\": \"如果您不阅读此说明，将会发生意想不到的事情！\",\n            \"All scheduled workflows will stop running.\": \"所有预定的工作流程将停止运行。\",\n            \"Security features will be unavailable:\": \"安全功能将无法使用：\",\n            \"Code scanning\": \"代码扫描\",\n            \"Before you archive, please consider:\": \"在您存档之前，请考虑：\",\n            \"Updating any repository settings\": \"更新仓库设置\",\n            \"Closing all open issues and pull requests\": \"关闭所有打开的议题和拉取请求\",\n            \"Making a note in your README\": \"在您的 README 中做个说明\",\n            \"Please type\": \"请键入\",\n            \"to confirm.\": \"进行确定。\",\n            \"I understand the consequences, archive this repository\": \"我明白后果，依然存档该仓库\",\n            // \"This repository has been archived by the owner. It is now read-only.\": \"此仓库已由所有者存档。它现在是只读的。\",\n\n            // 顶部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的仓库 “$1” 已成功存档。\"], //仓库存档\n\n            \"Unarchive this repository\": \"解除仓库存档\",\n            \"Mark this repository as unarchived and read-write.\": \"将此仓库标记为未存档和可读写。\",\n\n            // 解除仓库存档对话框\n            \"Unarchive repository\": \"解除仓库存档\",\n            \"This will make\": \"这将使\",\n            \"read-write.\": \"可读写。\",\n            \"Once unarchived, the following can be modified and commented on:\": \"一旦解除存档，就可以对以下内容进行修改和评论：\",\n            \"Pull Requests\": \"拉取请求\",\n            \"Labels\": \"标签\",\n            \"Releases\": \"发行版\",\n            \"Milestones\": \"里程碑\",\n            \"Past due by\": \"已经过期于\",\n            \"Security features will become available:\": \"安全功能将不可用：\",\n            \"I understand the consequences, unarchive this repository\": \"我明白后果，依然解除该仓库存档\",\n\n            \"Delete this repository\": \"删除仓库\",\n            \"Once you delete a repository, there is no going back. Please be certain.\": \"您一旦删除仓库，将再也无法恢复。请确认。\",\n            \"Organization members cannot delete repositories.\": \"组织成员没有删除仓库的权限\",\n\n            // 离开复刻网络对话框\n                \"This will permanently remove the fork relationship to the upstream repository\": \"这将永久移除与上游仓库的复刻关系：\",\n                \"will become a standalone repository and will no longer be able to fetch upstream updates or propose changes to the upstream repository\": \"将成为独立仓库，无法再获取上游更新，也无法向原仓库提交更改：\",\n                \"cannot rejoin the fork network.\": \"不能重新加入复刻网络。\",\n\n            // 顶部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的仓库 “$1” 已成功解除存档。\"], //仓库解除存档\n\n            // 删除仓库对话框\n                // [/Delete/, \"删除\"],\n                \"I want to delete this repository\": \"我想删除这个仓库\",\n\n                \"This will permanently delete the\": \"这将永久删除\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations will be permanently deleted.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有协作者关联。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有协作者关联。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all team associations.\": \"仓库、Wiki、议题、评论、软件包、机密、工作流程，并删除所有团队关联。\", // 组织仓库\n                \"This will not change your billing plan. If you want to downgrade, you can do so in your Billing Settings.\": \"这并不会更改您的结算方案。 如果您想降级，可以在结算设置中进行降级。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/is available./, \"名称可用。\"],\n        [/Make ([^ ]+) private/, \"将 $1 设为私有\"],\n        [/Make ([^ ]+) public/, \"将 $1 设为公开\"],\n        [/(\\d+) stars?/, \"$1 位星标者\"],\n        [/(\\d+) watchers?/, \"$1 位关注者\"],\n        [/To confirm, type \\\"([^ ]+)\\\" in the box below/, \"要确认，请在下面的方框中输入 \\\"$1\\\"\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的仓库 “$1” 已成功存档。\"], //仓库存档\n        [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的仓库 “$1” 已成功解除存档。\"], //仓库解除存档\n        [/is already the branch name./, \"已经是分支的名称了。\"],\n        [/Your branch name will be/, \"您的分支的名称将重命名为\"],\n        [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"选择另一分支作为 $1 的默认分支而不是\"], // 分支切换 对话框\n        [/(\\d+) branch protection rules?/, \"$1 项分支保护规则\"], // 禁用/重启启用分支保护\n        [/Delete/, \"删除\"],\n        [/Default branch changed to ([^ ])/, \"默认分支更改为 $1\"],\n        // 离开复刻网络\n        [/Forked from ([^ ])/, \"复刻自 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"General\": \"通常\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/access\"] = { // 仓库设置 - 协作者/(组织仓库 协作者和团队) /<user-name>/<repo-name>/settings/access\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 协作者 / 协作者和团队 - 访问管理页面 /<user-name>/<repo-name>/settings/access ====================================\n            // 顶部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"仓库邀请 URL 仅适用于受邀请的用户。您只能与受邀请的用户共享此 URL。\",\n\n                // [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"删除 $1 为 $2 的协作者\"],\n\n            \"Who has access\": \"谁有权访问\",\n            \"public repository\": \"公共仓库\",\n            \"Public repository\": \"公共仓库\",\n            \"This repository is public and visible to anyone\": \"该仓库是公开的，对任何人都可见\",\n            \"This repository is public and visible to anyone.\": \"该仓库是公开的，对任何人都可见。\",\n            \"private repository\": \"私有仓库\",\n            \"Only those with access to this repository can view it.\": \"只有拥有该仓库访问权的用户才能查看。\",\n            \"Manage\": \"管理\",\n            \"Manage visibility\": \"管理\", // 内容重复，直接省略\n\n            \"Direct access\": \"直接访问\",\n            \"collaborators have access to this repository. Only you can contribute to this repository.\": \"个协作者有权访问此仓库。 只有您可以对此仓库做出贡献。\",\n            \"has access to this repository.\": \"位有权访问此仓库。\",\n            \"have access to this repository.\": \"有权访问此仓库。\",\n            // 组织仓库\n            \"teams or members have access to this repository. Only\": \"团队或成员有权访问此仓库。只有\",\n            \"Owners\": \"所有者\",\n            \"can contribute to this repository.\": \"可以为此仓库做出贡献。\",\n\n            // 组织仓库\n            \"Base role\": \"基本角色\",\n            \"All\": \"所有\",\n            // [/(\\d+) members?/, \"$1 位成员\"],\n            \"can access this repository.\": \"可以访问此仓库。\",\n\n            \"Manage access\": \"访问管理\",\n            \"You haven't invited any collaborators yet\": \"您尚未邀请任何协作者\",\n            // \"invite a collaborator\": \"邀请协作者\",\n            \"Add people\": \"添加他人\",\n                // 邀请对话框\n                    \"Add people to\": \"添加成员到\",\n                    \"Search by username, full name, or email\": \"搜索用户名、全名、或电子邮箱\",\n                    \"Find people\": \"查找\",\n                    \"Invite collaborator\": \"邀请协作者\",\n                    \"Add to repository\": \"添加到仓库\",\n                    // 顶部提醒\n                        // [/([^ ]+) has been added as a collaborator on the repository./, \"$1 已被添加为仓库的协作者。\"],\n\n\n            \"Select all\": \"全选\",\n                // [/(\\d+) members? selected…/, \"已选择 $1 名成员...\"],\n                \"Change role\": \"切换角色\",\n                \"Remove Access\": \"删除访问权限\",\n            \"Type\": \"类型\",\n                \"Filter by member type\": \"按成员类型筛选\",\n                    \"Organization Members\": \"组织成员\",\n                    \"Outside Collaborators\": \"外部协作者\",\n                    \"Pending Invitations\": \"待处理邀请\",\n            \"Find a collaborator…\": \"寻找协作者……\",\n            \"Find people or a team…\": \"寻找用户或一个团队……\",\n            \"No Results\": \"无结果\",\n\n            \"Pending Invite\": \"待处理邀请\",\n            \"Invite expired\": \"已过期\",\n            // [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回复\"],\n            \"Remove\": \"移除\",\n\n            // 移除邀请对话框\n                \"Confirm you want to remove this invitation\": \"确认移除邀请\",\n                \"Once canceled,\": \"取消后，\",\n                \"will no longer be invited to access the\": \"将不再被邀请访问\",\n                \"repository.\": \"仓库。\",\n                // [/Cancel ([^ ]+)'s invitation/, \"取消邀请 $1\"],\n                // 顶部提醒\n                    // [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀访问该仓库。\"],\n\n            // 删除协助者对话框\n                \"Confirm you want to remove this member\": \"确认要删除此成员？\",\n                \"Once removed,\": \"一旦删除，\",\n                \"will no longer have direct access to this repository. However, they may still have access to this repository if they are a member of a team that is granted access.\": \"将不再能直接访问此仓库。但是，如果他们是获准访问该仓库的团队成员，则仍可访问该仓库。\",\n                // 顶部提醒\n                    // [/Remove ([^ ]+) from this repository/, \"从该仓库移除 $1\"],\n\n            // 组织仓库\n            \"Create team\": \"创建组织\",\n            \"You haven't added any teams or people yet\": \"您尚未添加团队或成员\",\n            \"Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access.\": \"组织所有者可以管理成员和团队对组织仓库的访问。团队维护者也可以管理一个团队的仓库访问。\",\n            \"Learn more about organization access\": \"了解更多关于组织访问权限的信息\",\n            \"Add teams\": \"添加团队\",\n\n            // \"Add people to\": \"添加成员到\",\n            \"Select a member above\": \"在上面选择一名成员\",\n            \"Add teams to\": \"添加团队\",\n            \"Search by team name\": \"按团队名称搜索\",\n            \"Select a team above\": \"在上面选择一个团队\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) members? selected…/, \"已选择 $1 名成员...\"],\n        [/(\\d+) members?/, \"$1 位成员\"],\n        [/(\\d+) collaborators?/, \"$1 位协作者\"],\n        [/(\\d+) invitations?/, \"$1 个邀请\"],\n        [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回复\"],\n        [/([^ ]+) • Collaborator/, \"$1 • 协作者\"],\n        [/([^ ]+) • Invite collaborator/, \"$1 • 邀请协作者\"],\n        [/(\\d+) users?/, \"$1 个用户\"],\n        [/(\\d+) teams?/, \"$1 个团队\"],\n        [/Add people to ([^ ]+)/, \"添加人员到 $1\"],\n        [/([^ ]+) has been added as a collaborator on the repository./, \"已将 $1 添加为仓库协作者。\"],\n        [/Cancel ([^ ]+)'s invitation/, \"取消邀请 $1\"],\n        [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀访问该仓库。\"],\n        [/Remove ([^ ]+) from this repository/, \"从该仓库移除 $1\"],\n        [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"删除 $1 为 $2 的协作者\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Manage access\": \"访问管理\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/interaction_limits\"] = { // 仓库设置 - 互动限制 /<user-name>/<repo-name>/settings/interaction_limits\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 审查设置 (仓库)互动限制 /<user-name>/<repo-name>/settings/interaction_limits\n        // 同全局 同组织仓库\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repository (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n\n            \"You can restrict repository interactions across your account in your\": \"您可以限制仓库交互，在您的账户设置中的\",\n            \"account settings\": \"互动限制\",\n\n            // [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 组织中限制仓库交互\"],\n\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with the repository.\": \"最近创建账户的用户将无法与该仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously\": \"以前从未\",\n                \"committed\": \"提交\",\n                // [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到该仓库的 $1 分支的用户将无法与该仓库互动。\"],\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not\": \"不是\",\n                // \"collaborators\": \"\",\n                // \"of one of your repositories will not be able to interact with that repository.\": \"\",\n                \"will not be able to interact with the repository.\": \"将无法与该仓库互动。\",\n\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            \"Organization members\": \"组织成员\", //组织仓库\n\n            \"Enable\": \"启用\",\n            \"Disable\": \"禁用\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n\n            // 顶部提醒\n            \"Repository interaction limit settings saved.\": \"仓库交互限制设置已保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n            [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 组织中限制仓库交互\"],\n            [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到该仓库的 $1 分支的用户将无法与该仓库互动。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"临时互动限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/code_review_limits\"] = { // 仓库设置 - 代码审查限制 /<user-name>/<repo-name>/settings/code_review_limits\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // Code review limits 代码审查限制 /<user-name>/<repo-name>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in this repository.\": \"限制允许批准或请求更改该仓库中拉取请求的用户。\",\n            \"Limit to users explicitly granted\": \"限于明确授予\",\n            \"read\": \"读取\",\n            \"or higher access\": \"或 更高权限的用户\",\n                \"When enabled, only users explicitly granted access to this repository will be able to submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews will continue to be able to do so.\": \"启用后，只有被明确授予该仓库访问权的用户才能提交 “批准” 或 “请求更改” 的拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n\n            // 顶部提醒\n                \"Code review limit settings saved.\": \"代码审查限制设置已保存。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"代码审查限制\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/branches\"] = { // 仓库设置 - 分支 /<user-name>/<repo-name>/settings/branches\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 分支管理页面 /<user-name>/<repo-name>/settings/branches====================================\n            \"Branch protection rules\": \"分支保护规则\",\n            \"Add rule\": \"添加规则\",\n\n            \"Define branch protection rules to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging. New to branch protection rules?\": \"定义分支保护规则，以禁止强制推送，防止分支被删除，并可选择要求在合并前进行状态检查。初次接触分支保护规则？\",\n\n            \"No branch protection rules defined yet.\": \"尚未定义分支保护规则。\",\n\n            \"You haven't protected any of your branches\": \"您没有保护任何分支\",\n            \"Classic branch protections have not been configured\": \"未配置经典分支保护\",\n            \"Define branch rules to disable force pushing, prevent branches from being deleted, or require pull requests before merging. Learn more about\": \"定义分支规则，以禁止强制推送、防止分支被删除或在合并前要求提交拉取请求。了解更多：\",\n            //\"Define a protected branch rule to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging.\": \"定义分支保护规则，以禁用强制推送，防止分支被删除，并可选择在合并前进行状态检查。\",\n            \"repository rules\": \"仓库规则\",\n            \"protected branches\": \"受保护分支\",\n            \"Add branch ruleset\": \"添加分支规则集\",\n            \"Add classic branch protection rule\": \"添加经典分支保护规则\",\n            //\"Learn more about protected branches\": \"了解更多关于受保护分支的信息\",\n            //\"Add branch protection rule\": \"添加分支保护规则\",\n\n            // 私有库 分支保护 未执行 提醒\n            \"Your protected branch rules won't be enforced on this private repository until you move to a GitHub Team or Enterprise organization account.\": \"您的受保护分支规则不会在这个私有仓库上执行，直到您迁移至 GitHub 团队或企业组织账户。\",\n            \"Move to an organization\": \"转移到组织\",\n\n            \"Not enforced\": \"未执行\",\n                \"Rules on your private repos can't be enforced until you upgrade to GitHub Team or Enterprise.\": \"在您升级到 GitHub 团队或企业版之前，您的私有仓库的规则不能被执行。\",\n\n            // [/Currently applies to (\\d+) branchs?/, \"目前适用于 $1 个分支\"], // 仓库设置-->分支-->分支保护规则\n\n            // 删除分支保护规则\n            \"Delete this branch protection rule?\": \"删除此分支保护规则？\",\n            \"This action cannot be undone.\": \"此操作无法撤消。\",\n            \"I understand, delete this rule.\": \"我明白了，依然删除此规则。\",\n\n            // 顶部提醒\n            \"Branch protection rule settings saved.\": \"分支保护规则设置已保存。\",\n            \"Branch protection rule created.\": \"分支保护规则已创建。\",\n            \"Branch protection rule was successfully deleted.\": \"分支保护规则已成功删除。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"], // 仓库设置-->分支-->分支保护规则\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches/, \"设置 · 分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/branch_protection_rules\"] = { // 仓库设置 - 分支/分支保护 /<user-name>/<repo-name>/settings/branch_protection_rules\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 新建分支保护规则 页面 /<user-name>/<repo-name>/settings/branch_protection_rules/new====================================\n            \"Branch protection rule\": \"分支保护规则\",\n\n            \"Protect your most important branches\": \"保护您最重要的分支\",\n                \"Branch protection rules\": \"分支保护规则\",\n                \"define whether collaborators can delete or force push to the branch and set requirements for any pushes to the branch, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送到分支，并对任何推送到分支的内容设置要求，如通过状态检查或线性提交历史。\",\n\n                \"Your GitHub Free plan\": \"您的 GitHub 免费计划\",\n                \"Your organization's GitHub Free plan\": \"您组织的 GitHub 免费计划\", // 组织仓库\n                \"can only enforce rules on its public repositories, like this one.\": \"只能对其公共仓库执行规则，例如这个。\",\n\n                \"Your rules won't be enforced on this private repository until you\": \"您的规则将不会在此私有仓库上强制执行，直到您\",\n                \"move to a GitHub Team or Enterprise organization account\": \"迁移至 GitHub 团队或企业组织账户\",\n                \"upgrade this organization to GitHub Team or Enterprise\": \"升级组织至 GitHub 团队或企业版\", // 组织仓库\n\n            \"Branch name pattern\": \"分支名称模式\",\n            \"Protect matching branches\": \"保护匹配的分支\",\n                \"Require a pull request before merging\": \"要求在合并前提交拉取请求\",\n                    \"When enabled, all commits must be made to a non-protected branch and submitted via a pull request before they can be merged into a branch that matches this rule.\": \"启用后，所有提交都必须提交到不受保护的分支，并通过拉取请求提交，然后才能将它们合并到与此规则匹配的分支中。\",\n                    \"Require approvals\": \"要求批准审查\",\n                        \"When enabled, pull requests targeting a matching branch require a number of approvals and no changes requested before they can be merged.\": \"启用后，针对匹配分支的拉取请求需要若干次批准审查，并且在合并之前无需请求更改。\",\n                        \"Required number of approvals before merging:\": \"合并前所需的批准审查数量：\",\n                    \"Dismiss stale pull request approvals when new commits are pushed\": \"当新的提交被推送时，撤销陈旧的拉取请求批准审查\",\n                        \"New reviewable commits pushed to a matching branch will dismiss pull request review approvals.\": \"推送到匹配分支的新的可审查提交将撤销之前的拉取请求的批准审查。\",\n                    \"Require review from Code Owners\": \"要求代码所有者进行审查\",\n                        \"Require an approved review in pull requests including files with a designated code owner.\": \"要求在拉取请求中进行批准审查，包括有指定代码所有者的文件。\",\n                    \"Restrict who can dismiss pull request reviews\": \"限制谁可以驳回拉取请求审查\", // 组织仓库\n                        \"Specify people, teams, or apps allowed to dismiss pull request reviews.\": \"指定允许驳回拉取请求审查的人员、团队或应用。\",\n                        \"People, teams, or apps that can dismiss reviews.\": \"允许驳回审查的人员、团队或应用。\",\n                            \"Organization and repository administrators\": \"组织和仓库管理员\",\n                                \"These members can always dismiss.\": \"这些成员总是允许驳回。\",\n                                \"These members cannot dismiss.\": \"这些成员不允许驳回。\",\n                    \"Allow specified actors to bypass required pull requests\": \"允许指定的参与者绕过所需的拉取请求\", //组织仓库\n                        \"Specify people, teams, or apps who are allowed to bypass required pull requests.\": \"指定允许绕过所需拉取请求的人员、团队或应用。\",\n                        \"People, teams, or apps who can bypass required pull requests\": \"允许绕过所需拉取请求的人员、团队或应用\",\n                            // \"Organization and repository administrators\": \"组织和仓库管理员\",\n                                \"These members can always bypass required pull requests.\": \"这些成员始终允许绕过所需的拉取请求。\",\n                                \"These members cannot bypass.\": \"这些成员不允许绕过。\",\n                    \"Require approval of the most recent reviewable push\": \"要求批准最新的可审查推送\",\n                        \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可审核推送是否必须得到推送者以外的其他人批准。\",\n                \"Require status checks to pass before merging\": \"要求在合并前通过状态检查\",\n                    \"Choose which\": \"选择那些\",\n                    \"status checks\": \"状态检查\",\n                    \"must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed.\": \"必须通过，才能将分支合并到符合此规则的分支。启用后，提交的内容必须先推送到另一个分支，然后在状态检查通过后再合并或直接推送到符合此规则的分支。\",\n\n                    \"Require branches to be up to date before merging\": \"要求分支在合并前必须是最新的\",\n                        \"This ensures pull requests targeting a matching branch have been tested with the latest code. This setting will not take effect unless at least one status check is enabled (see below).\": \"这可确保针对匹配分支的拉取请求已使用最新的代码进行了测试。除非启用了至少一个状态检查，否则这个设置不会生效（见下文）。\",\n\n                    \"Do not require status checks on creation\": \"不要求在创建时进行状态检查\",\n                        \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允许创建仓库和分支，否则检查将禁止创建。\",\n\n                    \"Search for status checks in the last week for this repository\": \"搜索此仓库最近一周的状态检查\",\n                    \"Status checks that are required.\": \"需要进行的状态检查。\",\n\n                    \"No status checks found\": \"尚无状态检查\",\n                        \"Sorry, we couldn’t find any status checks in the last week for this repository.\": \"抱歉，我们最近一周未找此仓库的任何状态检查。\",\n                    \"Learn more about status checks\": \"了解更多关于状态检查的信息\",\n                \"Require conversation resolution before merging\": \"要求在合并前解决对话\",\n                    \"When enabled, all conversations on code must be resolved before a pull request can be merged into a branch that matches this rule.\": \"启用后，必须先解决所有有关代码的对话，然后才能将拉取请求合并到与此规则匹配的分支中。\",\n                    \"Learn more about requiring conversation completion before merging\": \"了解更多关于合并前要求完成对话的信息\",\n                \"Require signed commits\": \"要求带签名的提交\",\n                    \"Commits pushed to matching branches must have verified signatures.\": \"推送到匹配分支的提交必须带有经过验证的签名。\",\n                \"Require linear history\": \"要求线性历史记录\",\n                    \"Prevent merge commits from being pushed to matching branches.\": \"防止合并后的提交被推送到匹配的分支。\",\n                \"Require merge queue\": \"要求合并队列\", // 组织仓库\n                    \"Merges to matching branches must be performed via a merge queue.\": \"对匹配分支的合并必须通过合并队列执行。\",\n                    \"Make sure to configure your CI to build branches created by the queue.\": \"确保您配置 CI 以构建由队列创建的分支\",\n                    \"Merge method\": \"合并模式\",\n                        \"Method to use when merging changes from queued pull requests.\": \"合并来自列队拉取请求的更改时使用的模式。\",\n                        \"Method:\": \"模式：\",\n                            \"Merge commit\": \"合并提交\",\n                            \"Squash and merge\": \"压缩合并\",\n                            \"Rebase and merge\": \"变基合并\",\n                    \"Build concurrency\": \"构建并发\",\n                        \"Limit the number of queued pull requests building at the same time.\": \"限制同时构建的列队拉取请求的数量。\",\n                        \"Maximum pull requests to build:\": \"构建的最大拉取请求：\",\n                    \"Merge limits\": \"合并限制\",\n                        \"Limit the number of pull requests merged into the protected branch in a single merge operation.\": \"限制在单个合并操作中合并到受保护分支的拉取请求的数量。\",\n                        \"Minimum pull requests to merge:\": \"合并的最小拉取请求：\",\n                            \"or after\": \"或\",\n                            \"minutes\": \"分钟之后\",\n                        \"Maximum pull requests to merge:\": \"合并的最大拉取请求：\",\n                        \"Only merge non-failing pull requests\": \"仅合并未失败的拉取请求\",\n                    \"Status check timeout\": \"状态检查超时\",\n                        \"Time (in minutes) a required status check must report a conclusion within to not be considered failed.\": \"所需的状态检查必须在规定的时间（以分钟为单位）内报告结论才不会被视为失败。\",\n                        \"Consider check failed after:\": \"考虑检查失败：\",\n                \"Require deployments to succeed before merging\": \"要求部署成功后再合并\",\n                    \"Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule.\": \"选择必须成功部署到哪些环境才能将分支合并到与此规则匹配的分支中。\",\n                            \"No deployment environments found\": \"尚无部署环境\",\n                            \"Sorry, we couldn’t find any deployments for this repository.\": \"抱歉，我们未找到此仓库的任何部署。\",\n                            \"Deployment environments found in this repository\": \"在此仓库中找到的部署环境\",\n                                \"Required\": \"必须\",\n                \"Lock branch\": \"锁定分支\",\n                    \"Branch is read-only. Users cannot push to the branch.\": \"分支为只读。用户无法推送到该分支。\",\n                \"Do not allow bypassing the above settings\": \"不允许绕过上述设置\",\n                    \"The above settings will apply to administrators and custom roles with the \\\"bypass branch protections\\\" permission.\": \"上述设置将应用于具有 “绕过分支保护” 权限的管理员和自定义角色。\",\n                \"Restrict who can push to matching branches\": \"限制谁可以推送到匹配的分支\", // 组织仓库\n                    \"Specify people, teams, or apps allowed to push to matching branches. Required status checks will still prevent these people, teams, and apps from merging if the checks fail.\": \"指定允许推送到匹配分支的人员、团队或应用。如果检查失败，所需的状态检查仍然会阻止这些人、团队和应用的合并。\",\n\n                    \"Restrict pushes that create matching branches\": \"限制创建匹配分支的推送\",\n                        \"Only people, teams, or apps allowed to push will be able to create new branches matching this rule.\": \"只有允许推送的人员、团队或应用才能创建符合此规则的新分支。\",\n                        \"People, teams, or apps with push access\": \"允许推送的人员、团队或应用\",\n                            \"Organization administrators, repository administrators, and users with the Maintain role.\": \"组织管理员、仓管理员和具有维护角色的用户。\",\n                            \"Organization administrators, repository administrators, the merge queue, and users with the Maintain role.\": \"组织管理员、仓管理员、合并队列和具有维护角色的用户。\", // 开启需要合并队列\n                                \"Admins can always push. Users with the Maintain role can push when required status checks pass.\": \"管理员始终允许推送。具有维护角色的用户允许在所需状态检查通过时推送。\",\n                                \"These members can push when required status checks pass.\": \"这些成员允许在所需状态检查通过时推送。\",\n\n            \"Rules applied to everyone including administrators\": \"规则适用于每个人，包括管理员\",\n                \"Allow force pushes\": \"允许强制推送\",\n                    \"Everyone\": \"所有人\",\n                        \"Permit force pushes for all users with push access.\": \"允许所有有推送权限的用户强制推送。\",\n                    \"Specify who can force push\": \"指定谁允许强制推送\",\n                        \"Only these people, teams, or apps are allowed to force push.\": \"仅允许这些人、团队或应用强制推送。\",\n                        \"Search for people, teams, or apps\": \"搜索人员、团队或应用\",\n                        \"People, teams, or apps who can force push\": \"允许强制推送的人员、团队或应用\",\n                            \"Organization and repository administrators (automatic)\": \"组织和仓库管理员（自动）\",\n                \"Allow deletions\": \"允许删除\",\n                    \"Allow users with push access to delete matching branches.\": \"允许具有推送权限的用户删除匹配的分支。\",\n\n            // 顶部提醒\n            \"Branch protection rule created.\": \"分支保护规则已创建。\",\n\n        // 编辑分支保护规则 页面 /<user-name>/<repo-name>/settings/branch_protection_rules/<id>===================================\n            // [/Applies to (\\d+) branchs?/, \"应用于 $1 个分支\"], //仓库设置-->分支-->分支保护规则-->编辑\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Applies to (\\d+) branch(?:es|)/, \"应用于 $1 个分支\"], //仓库设置-->分支-->分支保护规则-->编辑\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches · New branch protection rule/, \"设置 · 分支 · 新建分支保护规则\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/tag_protection\"] = { // 仓库设置 - 标签 /<user-name>/<repo-name>/settings/tag_protection\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 标签 页面 /<user-name>/<repo-name>/settings/tag_protection===============================\n            // 顶部提醒\n                \"Tag protection rule created.\": \"标签保护规则已创建。\",\n                \"Tag protection rule deleted.\": \"标签保护规则已删除。\",\n\n            // 顶部窗口\n            \"Level up your tag protections with Repository Rules\": \"利用仓库规则提升标签保护级别\",\n            \"Protected tags are being deprecated. To continue protecting tags, please migrate to a tag ruleset by August 30th. You can learn more about the sunset in our\": \"受保护的标签将被废弃。要继续保护标签，请在 8 月 30 日前迁移到标签规则集。您可以在我们的\",\n            \"changelog\": \"更改日志\",\n            \"and can get started now by migrating to rulesets.\": \"中了解更多信息，并且可以立即开始迁移到规则集。\",\n\n            \"Protected tags\": \"受保护的标签\",\n            \"Protected tags are available to Pro, Team, and Enterprise users\": \"专业版、团队版和企业版用户均可使用受保护的标签\", //私有库\n            \"Protected tags can only be created or deleted by users with enhanced permissions defined by your organization owners.\": \"受保护的标签只能由具有由组织所有者定义的增强权限的用户创建或删除。\",\n            \"Learn more about protected tags\": \"了解更多关于受保护标签的信息\",\n            \"No protected tag rules exist yet\": \"尚无受保护的标签规则存在\",\n            \"Protected tags have been deprecated\": \"受保护的标签已弃用\",\n            \"Go to rulesets to create new tag rules\": \"转到规则集创建新标签规则\",\n            \"New rule\": \"新建规则\",\n            \"Import to rulesets\": \"导入规则集\",\n                \"Import your tag protection rules into repository rules\": \"将您的标签保护规则导入仓库规则集\",\n                    \"Migrate your protected tags to one or more repository rulesets. This will implement the same tag protections you currently have today. Once created, the tag rulesets can take advantage of new ruleset features:\": \"将受保护的标签迁移到一个或多个仓库规则集。这将实现与当前相同的标签保护。创建后，标签规则集可利用规则集的新功能：\",\n                        \"Requiring status checks to pass\": \"要求通过状态检查\",\n                        \"Signed commits\": \"要求签名提交\",\n                        \"Requiring linear history\": \"需要线性历史\",\n                        \"and more\": \"和更多\",\n                    \"Create separate rulesets for creating and deleting protected tags\": \"为创建和删除受保护的标签创建单独的规则集\",\n                        \"Users and Teams with at least Maintainer role will be able to create new protected tags. Administrators will be able to delete protected tags. This is the same behavior as existing tag protections.\": \"至少具有维护者角色的用户和团队可以创建新的受保护标签。管理员可以删除受保护标签。这与现有标签保护的行为相同。\",\n                    \"Create one ruleset for all protected tag operations\": \"为所有受保护的标签操作创建规则集\",\n                        \"Administrators will be able to create and delete protected tags.\": \"管理员可以创建和删除受保护的标签。\",\n\n                    \"Learn more about tag rulesets\": \"了解更多关于标签规则集的信息\",\n                    \"Import\": \"导入\",\n\n            \"Delete tag protection rule\": \"删除标签保护规则\",\n                \"Delete tag protection rule?\": \"删除标签保护规则？\",\n                    \"Are you sure you want to delete this tag protection rule? Anyone who can write to this repository will be able to create tags with this pattern.\": \"您确定要删除此标签保护规则吗？任何可以写入此仓库的人都能够使用此模式创建标签。\",\n                    \"Yes, remove this tag protection rule\": \"是的，删除此标签保护规则\",\n\n            // [/(\\d+) rules?/, \"$1 条规则\"],\n\n        // 新建标签规则 页面 /<user-name>/<repo-name>/settings/tag_protection/new===============================\n            \"/ New rule\": \"/ 新建规则\",\n            \"Tag name pattern\": \"标签名称模式\",\n            \"Example: You can use\": \"示例：您可以使用\",\n            \"to target tags named\": \"来锁定名为\",\n            \", and so on.\": \"等的标签。\",\n\n            \"Add rule\": \"添加规则\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) rules?/, \"$1 条规则\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Tags/, \"设置 · 标签\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/rules\"] = { // 仓库设置 - 规则 - 规则集 /<user-name>/<repo-name>/settings/rules\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"], // 组织设置\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 仓库规则集页面 /<user-name>/<repo-name>/rules\n        // 规则集 页面 /<user-name>/<repo-name>/settings/rules\n            \"Your rulesets won't be enforced on this private repository until you upgrade this organization account to GitHub Team.\": \"在您将此组织账户升级到 GitHub Team 之前，您的规则集不会在此私有仓库上强制执行。\", // 组织 私有仓库\n\n            \"Organization rulesets won't be enforced\": \"在您将该组织账户升级到 GitHub 企业版之前，\", // 组织设置\n            \"until you upgrade this organization account to GitHub Enterprise.\": \"组织规则集将不会强制执行。\", // 组织设置\n\n            \"You haven't created any rulesets\": \"您尚未创建任何规则集\",\n                \"Define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送，并为任何推送设置要求，如通过状态检查或线性提交历史。\",\n                \"Learn more about rulesets.\": \"了解更多关于规则集的信息。\",\n\n            \"Rulesets\": \"规则集\",\n            \"New ruleset\": \"新建规则集\",\n                \"New branch ruleset\": \"新建分支规则集\",\n                    \"New tag ruleset\": \"新建标签规则集\",\n                    \"Import a ruleset\": \"导入规则集\",\n                        \"Choose a JSON file to upload\": \"选择 JSON 文件上传\",\n\n            \"Ruleset\": \"规则集\",\n\n            \"No rulesets have been added yet\": \"尚未添加任何规则集\",\n\n            \"All\": \"全部\",\n            \"• targeting\": \"• 针对\",\n            \", targeting\": \", 针对\",\n\n            \"Ruleset menu\": \"菜单\",\n                \"Export ruleset\": \"导出规则集\",\n                \"Delete ruleset\": \"删除规则\",\n\n            // 删除规则对话框\n                \"Delete ruleset?\": \"删除规则？\",\n                \"Are you sure you want to delete this ruleset? This action cannot be undone.\": \"您确定要删除此规则集吗？此操作无法撤消。\",\n\n        // 新建分支规则 /<user-name>/<repo-name>/settings/rules/new?target=branch&enforcement=disabled\n        // 新建标签规则 /<user-name>/<repo-name>/settings/rules/new?target=tag&enforcement=disabled\n        // 编辑规则 /<user-name>/<repo-name>/settings/rules/<id>\n\n            \"Protect your most important branches\": \"保护您最重要的分支\",\n                \"define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定义协作者是否可以删除或强制推送，并为任何推送设置要求，如通过状态检查或线性提交历史。\",\n\n            \"Tag\": \"标签\",\n            \"tags\": \"标签\",\n\n            \"Open additional options\": \"打开其他选项\",\n            \"Export\": \"导出\",\n            \"ruleset\": \"规则\",\n\n            \"Name\": \"名称\",\n                \"Ruleset name cannot be empty\": \"规则集名称不能为空\",\n            \"Enforcement status\": \"执行状态\",\n                \"Active\": \"激活\",\n                    \"This ruleset will be enforced\": \"规则将被执行\",\n                    \"Rules will be enforced\": \"规则将被执行\",\n                    \"Enable Organization Ruleset\": \"启用组织规则集\", // 组织设置\n                        \"I want rules enforced on targeted repositories in this ruleset.\": \"我希望此规则集中强制执行针对目标仓库的规则。\",\n                \"Evaluate\": \"评估\", // 组织设置\n                    \"Evaluate Rulesets to trial rules and view insights\": \"评估规则集，以试用规则并查看洞察\",\n                    \"Evaluate mode is only available to Enterprise organizations.\": \"评估模式仅适用于企业组织。\",\n                        \"Upgrade to Enterprise to use this mode.\": \"升级到企业版即可使用此模式。\",\n                \"Disabled\": \"禁用\",\n                    \"Do not evaluate or enforce rules\": \"不评估或执行规则\",\n                    \"This ruleset will not be enforced\": \"规则将不被执行\",\n\n            \"Bypass list\": \"旁路列表\",\n                \"Exempt roles, teams, and apps from this ruleset by adding them to the bypass list.\": \"通过将角色、团队和应用程序添加到旁路列表，使其免受此规则集的约束。\",\n                \"Exempt roles, teams, or apps from this ruleset by adding them to the bypass list.\": \"通过将角色、团队或应用程序添加到旁路列表，使其免受此规则集的约束。\",\n                \"Exempt roles or teams from this ruleset by adding them to the bypass list\": \"通过将角色或团队添加到旁路列表，使其免受此规则集的约束\", // 组织设置\n                \"Add bypass\": \"添加旁路\",\n\n                 // 添加旁路对话框\n                    \"Choose which roles, teams, and apps can bypass this ruleset\": \"选择哪些角色、团队和应用可绕过此规则集\",\n\n                    \"Filter items\": \"筛选\",\n                    \"Filter bypass actors\": \"筛选旁路参与者\",\n\n                    \"No suggestions\": \"暂无建议\",\n\n                    \"Suggestions\": \"建议\",\n                        \"Role\": \"角色\",\n                        \"App\": \"应用\",\n                        \"Organization admin\": \"组织管理员\",\n                        \"Repository admin\": \"仓库管理员\",\n                        \"Maintain\": \"维护\",\n                        \"triage\": \"分类\",\n                        \"maintain\": \"维持\",\n                        \"read\": \"读取\",\n                        \"write\": \"写入\",\n                        \"vulnerability_reporter\": \"漏洞报告员\",\n                        \"Add selected\": \"添加所选\",\n\n                \"Always allow\": \"总是允许\",\n                \"Allow for pull requests only\": \"仅允许拉取请求\",\n                    \"Allow\": \"允许\",\n                        \"Always\": \"总是\",\n                        \"For pull requests only\": \"仅适用于拉取请求\",\n                    \"Delete bypass\": \"删除旁路\",\n\n                \"Bypass list is empty\": \"旁路列表为空\",\n\n            \"Target branches\": \"目标分支\",\n                \"Which branches should be matched?\": \"哪些分支应匹配？\",\n                \"Which branches do you want to make a ruleset for?\": \"您想为哪些分支制定规则集？\",\n                \"Which tags do you want to make a ruleset for?\": \"您想为哪些标签制定规则集？\", // 标签\n                \"Which repositories and branches do you want to make a ruleset for?\": \"您想为哪些仓库和分支创建规则集？\", // 组织设置\n\n                // 组织设置\n                    \"Target repositories\": \"目标仓库\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset. Use inclusion patterns to expand the list of repositories under this ruleset. Use exclusion patterns to exclude repositories.\": \"仓库目标确定哪些仓库将受此规则集保护。使用包含模式来扩展此规则集下的仓库列表。使用排除模式来排除仓库。\",\n                    \"Target:\": \"目标：\",\n                        \"All repositories\": \"所有仓库\",\n                            \"Target all repositories within the organization\": \"组织内的所有仓库\",\n                        \"Dynamic list by name\": \"按名称动态列表\",\n                            \"Target repositories based on name\": \"基于名称的目标仓库\",\n                        \"Dynamic list by property\": \"按属性动态列表\",\n                            \"Target repositories based on properties\": \"基于属性的目标仓库\",\n                        \"Select repositories\": \"选择仓库\",\n                            \"Target a specific list of selected repositories\": \"以选定仓库列表为目标\",\n\n                    \"Targeting criteria\": \"目标规则\",\n                        \"No repository targets have been added yet\": \"尚未添加仓库目标\",\n\n                        \"Prevent renaming of target repositories\": \"防止重命名目标仓库\",\n                            \"When checked, target repositories can only be renamed by those with bypass permission.\": \"选中后，目标仓库只能由具有绕过权限的成员重命名。\",\n\n                            \"Repositories that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的仓库将成为该规则集的目标。\",\n                            \"Repositories that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的仓库将成为该规则集的目标。\",\n\n                    \"Target by repository properties\": \"目标仓库属性\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset.\": \"仓库目标确定哪些仓库将受此规则集保护\",\n\n                        \"Add a target\": \"添加目标\",\n                            \"Include by property\": \"包含属性\",\n                            \"Exclude by property\": \"排除属性\",\n\n                        \"Include repositories by custom property\": \"按自定义属性包含仓库\",\n                            \"Custom properties allow you to create your own metadata for repositories\": \"自定义属性允许您为仓库创建自己的元数据，\",\n                            \"include\": \"包括\",\n                            \"exclude\": \"排除\",\n                            \"Property\": \"属性\",\n                                \"Select property\": \"选择属性\",\n                                    \"Select an item\": \"选择项目\",\n                                        \"Search for properties\": \"搜索属性\",\n\n                    // 仓库\n                        \"Select items\": \"选择项目\",\n                            \"Repos\": \"仓库\",\n\n                \"Target\": \"目标\",\n                    \"Branch targeting determines which branches will be protected by this ruleset. Use inclusion patterns to expand the list of branches under this ruleset. Use exclusion patterns to exclude branches.\": \"分支目标确定哪些分支将受此规则集保护。使用包含模式来扩展该规则集下的分支列表。使用排除模式来排除分支。\",\n                    \"Tag targeting determines which tags will be protected by this ruleset. Use inclusion patterns to expand the list of tags under this ruleset. Use exclusion patterns to exclude tags.\": \"标签目标确定哪些标签将受此规则集保护。使用包含模式来扩展该规则集下的标签列表。使用排除模式来排除标签。\", // 标签\n\n                    \"Branch targeting criteria\": \"目标分支规则\",\n                    \"Tag targeting criteria\": \"目标标签规则\", // 标签\n                        \"Add target\": \"添加目标\",\n                            \"Include default branch\": \"包含默认分支\",\n                            \"Include all branches\": \"包含所有分支\",\n                            \"Include all tags\": \"包含所有标签\", // 标签\n                            \"Target by inclusion or exclusion pattern\": \"通过包含或排除规则确定目标\",\n                            \"Include by pattern\": \"包含规则\",\n                            \"Exclude by pattern\": \"排除规则\",\n\n                        \"Branch targeting has not been configured\": \"尚未配置分支目标\",\n                        \"Tag targeting has not been configured\": \"尚未配置标签目标\", // 标签\n\n                        \"Default\": \"默认\",\n                        \"All branches\": \"所有分支\",\n                        \"All tags\": \"所有标签\", // 标签\n\n                        \"Applies to\": \"适用于\",\n                        \"target:\": \"个目标：\",\n                        \"targets:\": \"个目标：\",\n                        \"Targets have changed and branch match list will update on save.\": \"目标已更改，分支匹配列表将在保存时更新。\",\n                            \"Targets have changed and\": \"目标已更改，\",\n                            \"branch\": \"分支\",\n                            \"branches\": \"分支\",\n                            \"match list will update on save.\": \"匹配列表将在保存时更新。\",\n                        \"targets including\": \"个目标，包括\",\n                        \"Targets have changed and repository match list will update on save.\": \"目标已更改，仓库匹配列表将在保存时更新。\", // 组织设置\n\n                        // 包含规则 对话框\n                            \"Branches that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的分支将成为该规则集的目标。\",\n                            \"Tags that match the matching pattern will be targeted by this ruleset.\": \"与匹配规则相匹配的标签将成为该规则集的目标。\", // 标签\n                            \"naming pattern\": \"命名规则\",\n                                \"Pattern cannot be empty\": \"规则不能为空\",\n                            \"Example patterns: \\\"\": \"示例：\\\"\",\n                            \"Learn more about fnmatch\": \"了解更多关于 fnmatch 的信息\",\n                            \"Add Inclusion pattern\": \"添加包含规则\",\n\n                        // 排除规则 对话框\n                            \"Branches that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的分支将成为该规则集的目标。\",\n                            \"Tags that do not match the matching pattern will be targeted by this ruleset.\": \"与匹配规则不匹配的标签将成为该规则集的目标。\", // 标签\n                            \"Add Exclusion pattern\": \"添加排除规则\",\n\n            // 规则\n            \"Branch rules\": \"分支规则\",\n            \"rules\": \"规则\",\n                \"Which rules should be applied to the targets that you have selected?\": \"哪些规则应适用于您选择的目标？\",\n                \"Which rules should be applied?\": \"应适用哪些规则？\",\n\n                \"protections\": \"保护\",\n                    \"Restrict creations\": \"限制创建\",\n                        \"Only allow users with bypass permission to create matching refs.\": \"只允许具有绕过权限的用户创建匹配的引用。\",\n                    \"Restrict updates\": \"限制更新\",\n                        \"Only allow users with bypass permission to update matching refs.\": \"只允许具有绕过权限的用户更新匹配的引用。\",\n                            \"Allow fork syncing\": \"允许复刻仓库同步\",\n                                 \"Branch can pull changes from its upstream repository\": \"分支可从上游仓库中拉取更改\",\n                    \"Restrict deletions\": \"限制删除\",\n                        \"Only allow users with bypass permissions to delete matching refs.\": \"只允许具有绕过权限的用户删除匹配的引用。\",\n                    \"Require linear history\": \"需要线性历史\",\n                        \"Prevent merge commits from being pushed to matching refs.\": \"防止合并后的提交被推送到匹配的引用。\",\n                    \"Require merge queue\": \"要求合并队列\", // 组织仓库\n                        \"Merges must be performed via a merge queue.\": \"合并必须通过合并队列进行。\",\n                        \"Merge method\": \"合并模式\",\n                            \"Method to use when merging changes from queued pull requests.\": \"合并来自列队拉取请求的更改时使用的模式。\",\n\n                                \"Merge commit\": \"合并提交\",\n                                \"Squash and merge\": \"压缩合并\",\n                                \"Rebase and merge\": \"变基合并\",\n                        \"Build concurrency\": \"构建并发\",\n                            \"Limit the number of queued pull requests requesting checks and workflow runs at the same time.\": \"限制同时请求检查和工作流运行的队列拉取请求数量。\",\n                        \"Minimum group size\": \"最小分组数\",\n                            \"The minimum number of PRs that will be merged together in a group.\": \"将合并为一组的拉取请求的最小数量。\",\n                        \"Maximum group size\": \"最大分组数\",\n                            \"The maximum number of PRs that will be merged together in a group.\": \"将合并为一组的拉取请求的最大数量。\",\n                        \"Wait time to meet minimum group size (minutes)\": \"达到最小分组数的等待时间（分钟）\",\n                            \"The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.\": \"第一个拉取请求添加到队列后，合并队列为达到最小分组规模所需的等待时间。超过这一时间后，将忽略最小分组大小，合并一个较小的分组\",\n                        \"Require all queue entries to pass required checks\": \"要求所有队列条目通过必要的检查\",\n                            \"When this setting is disabled, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.\": \"禁用此设置后，只有位于合并组头部的提交（即包含组内所有拉取请求变更的提交）必须通过合并所需的检查。\",\n                        \"Status check timeout (minutes)\": \"状态检查超时（分钟）\",\n                            \"Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed\": \"报告结论所需的状态检查的最长时间。超过此时间后，未报告结论的检查将被视为失败\",\n                    \"Require deployments to succeed\": \"要求部署成功\",\n                        \"Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.\": \"选择必须成功部署到哪些环境，之后才能将引用推送到与此规则匹配的引用中。\",\n                        \"Hide additional settings\": \"隐藏附加设置\",\n                        \"Show additional settings\": \"显示附加设置\",\n                            \"Search for deployment environments\": \"搜索部署环境\",\n                            \"No deployment environments have been added\": \"未添加部署环境\",\n                            \"Learn more about deployment environments\": \"了解更多关于部署环境的信息\",\n                    \"Require signed commits\": \"要求带签名的提交\",\n                        \"Commits pushed to matching refs must have verified signatures.\": \"推送到匹配引用的提交必须带有经过验证的签名。\",\n                    \"Require a pull request before merging\": \"要求在合并前提交拉取请求\",\n                        \"Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.\": \"要求所有的提交都必须在非目标分支上进行，并在合并前通过拉取请求提交。\",\n                            \"Required approvals\": \"要求批准审查\",\n                                \"The number of approving reviews that are required before a pull request can be merged.\": \"拉取请求合并前所需的批准审查次数。\",\n                            \"Dismiss stale pull request approvals when new commits are pushed\": \"当新的提交被推送时，撤销陈旧的拉取请求批准审查\",\n                                \"New, reviewable commits pushed will dismiss previous pull request review approvals.\": \"推送新的可审查提交将撤销之前的拉取请求的批准审查。\",\n                            \"Require review from Code Owners\": \"要求代码所有者进行审查\",\n                                \"Require an approving review in pull requests that modify files that have a designated code owner.\": \"要求对具有指定代码所有者的文件修改的拉取请求中进行批准审查。\",\n                            \"Require approval of the most recent reviewable push\": \"要求批准最新的可审查推送\",\n                                \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可审核推送是否必须得到推送者以外的其他人批准。\",\n                            \"Require conversation resolution before merging\": \"要求在合并前解决对话\",\n                                \"All conversations on code must be resolved before a pull request can be merged.\": \"在合并拉取请求之前，必须解决有关代码的所有对话。\",\n                            \"Request pull request review from Copilot\": \"请求 Copilot 进行拉取请求审查\",\n                                \"Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review.\": \"如果作者有权访问 Copilot 代码审查，则自动请求 Copilot 对新拉取请求进行审查。\",\n\n                            \"Allowed merge methods\": \"允许合并方法\",\n                                \"Merge, Squash\": \"合并，压缩\",\n                                \"Merge, Squash, Rebase\": \"合并，压缩，变基\",\n                                \"Merge, Rebase, Squash\": \"合并，变基，压缩\",\n                                \"Merge, Rebase, Squash\": \"合并，变基，压缩\",\n                                \"Merge, Rebase\": \"合并，变基\",\n                                \"Squash, Rebase\": \"压缩，变基\",\n                                \"Squash, Rebase, Merge\": \"压缩，变基，合并\",\n                                \"Squash, Merge\": \"压缩，合并\",\n                                \"Squash, Merge, Rebase\": \"压缩，合并，变基\",\n                                \"Rebase, Merge\": \"变基，合并\",\n                                \"Rebase, Squash\": \"变基，压缩\",\n                                \"Rebase, Squash, Merge\": \"变基，压缩，合并\",\n                                \"Rebase, Merge, Squash\": \"变基，合并，压缩\",\n                                \"Merge\": \"合并\",\n                                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"将所有来自头部分支的提交通过一次合并提交添加到基础分支。\",\n                                \"Squash\": \"压缩\",\n                                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"将头部分支上的所有提交合并为一个提交，然后将其集成到基础分支。\",\n                                \"Rebase\": \"变基\",\n                                    \"Add all commits from the head branch onto the base branch individually.\": \"将头部分支中的所有提交逐个添加到基础分支上。\",\n                                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled.\": \"在合并拉取请求时，您可以允许合并提交、压缩或变基这三种方式中的任意组合。至少启用其中一种选项。\",\n                    \"Require status checks to pass\": \"要求通过状态检查\",\n                        \"Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.\": \"更新引用之前必须选择通过哪些状态检查。启用后，提交必须首先推送到检查通过的另一个引用。\",\n                            \"Require branches to be up to date before merging\": \"要求分支在合并前必须是最新的\",\n                                \"Whether pull requests targeting a matching branch must be tested with the latest code. This setting will not take effect unless at least one status check is enabled.\": \"针对匹配分支的拉取请求，使用最新代码进行测试。至少启用一项状态检查，否则此设置不会生效。\",\n                                \"Do not require status checks on creation\": \"不要求在创建时进行状态检查\",\n                                    \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允许创建仓库和分支，否则检查将禁止创建。\",\n                                // \"Enter the name of a status check\": \"输入状态检查的名称\",\n                                    // [/Add '(.*)'/, \"添加 $1\"],\n                                \"No required checks\": \"无需进行必要的检查\",\n                                    \"Add checks\": \"添加检查\",\n                                        \"Add Checks\": \"添加检查\",\n                                            \"Search for checks\": \"搜索检查\",\n                                            \"No results\": \"无结果\",\n                                \"No checks have been added\": \"未添加任何检查\",\n                                \"Learn more about status checks\": \"了解更多关于状态检查的信息\",\n                    \"Block force pushes\": \"阻止强制推送\",\n                        \"Prevent users with push access from force pushing to refs.\": \"防止具有推送权限的用户强制推送到引用。\",\n                    \"Require code scanning results\": \"需要代码扫描结果\",\n                        \"Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning must be enabled and have results for both the commit and the reference being updated.\": \"选择哪些工具必须在更新引用之前提供代码扫描结果。配置后，代码扫描必须启用，并为提交和正在更新的引用提供结果。\",\n                        \"Required tools and alert thresholds\": \"所需工具和警报阈值\",\n                            \"Add tool\": \"添加工具\",\n                                \"Tool name\": \"工具名称\",\n                                \"Enter the name of a code scanning tool\": \"输入代码扫描工具名称\",\n                        \"Security alerts\": \"安全警报\",\n                            \"None\": \"无\",\n                            \"Critical\": \"关键\",\n                            \"High or higher\": \"高风险及以上\",\n                            \"Medium or higher\": \"中风险及以上\",\n                        \"Alerts\": \"警报\",\n                            \"Errors\": \"仅错误\",\n                            \"Errors and Warnings\": \"错误和警告\",\n                        \"Delete Tool\": \"删除工具\",\n                        \"Tools that must provide code scanning results for this rule to pass.\": \"必须提供代码扫描结果才能通过此规则的工具。\",\n                        \"Learn more about enabling code scanning.\": \"了解更多关于启用代码扫描的信息。\",\n\n                    \"Require code quality results\": \"要求代码质量结果\",\n                        \"Choose which severity levels of code quality results should block pull request merges. When configured, a code quality analysis must be done on the pull request before the changes can be merged.\": \"选择哪些代码质量结果严重级别应阻止拉取请求合并。配置后，必须在拉取请求上进行代码质量分析，才能合并更改。\",\n                        \"Severity\": \"严重级别\",\n                            \"Error\": \"错误\",\n                            \"Warning\": \"警告\",\n                            \"Warnings and higher\": \"警告及以上\",\n                            \"Notes and higher\": \"备注及以上\",\n                        \"The lowest severity level at which code quality reviews need to be resolved before commits can be merged.\": \"在合并提交之前，需要解决的最低严重级别代码质量审查。\",\n\n                    \"Automatically request Copilot code review\": \"自动请求 Copilot 代码审查\",\n                        \"Request Copilot code review for new pull requests automatically if the author has access to Copilot code review and their premium requests quota has not reached the limit.\": \"如果作者有权访问 Copilot 代码审查并且其高级请求配额尚未达到限制，则自动请求 Copilot 对新拉取请求进行代码审查。\",\n                        \"Review new pushes\": \"审查新的推送\",\n                        \"Copilot automatically reviews each new push to the pull request.\": \"Copilot 自动审查每个新的推送请求。\",\n                        \"Review draft pull requests\": \"审查草稿拉取请求\",\n                        \"Copilot automatically reviews draft pull requests before they are marked as ready for review.\": \"Copilot 自动审查草稿拉取请求，在标记为准备好审查之前。\",\n\n                    \"Manage static analysis tools in Copilot code review\": \"在 Copilot 代码审查中管理静态分析工具\",\n                        \"Copilot code review will include findings from the selected static analysis tools in its review comments.\": \"Copilot 代码审查将在其审查意见中包括所选静态分析工具的结果。\",\n\n                    // 组织设置\n                    \"Require workflows to pass before merging\": \"要求合并前，工作流通过状态检查\",\n                        \"Require all changes made to a targeted branch to pass the specified workflows before they can be merged.\": \"要求目标分支上的所有更改在合并前通过指定的工作流\",\n                        \"Workflow configurations\": \"工作流程配置\",\n                            \"No workflow configurations found\": \"尚无工作流配置\",\n\n                        \"Add workflow\": \"添加工作流\",\n                            \"Add required workflow\": \"添加所需的工作流\",\n                                // 仓库\n                                    \"Select a repository\": \"选择仓库\",\n                                \"Select branch or tag\": \"选择分支或标签\",\n                                    \"Branch or tag\": \"分支或标签\",\n                                    \"Pin to commit\": \"固定到提交\",\n                                        \"Always reference the current commit\": \"始终引用当前提交\",\n                                \"Enter a SHA\": \"输入 SHA\",\n                                    \"Enter a valid SHA\": \"输入有效的 SHA\",\n                                    \"Enter the SHA for the commit you want to reference\": \"输入要引用的提交的 SHA\",\n                                    \"Invalid SHA\": \"无效的 SHA\",\n                                \"Pick a workflow file\": \"选择工作流文件\",\n                                    \"Please select a workflow path\": \"请选择工作流路径\",\n\n            \"Restrictions\": \"限制\", // 组织设置\n                \"Restrict commit metadata\": \"限制提交元数据\",\n                    \"Restrict commit author email addresses, committer email addresses, commit message content, and other metadata\": \"限制提交作者电子邮箱地址、提交者电子邮箱地址、提交消息内容和其他元数据\",\n\n                    \"Metadata restrictions\": \"元数据限制\",\n                        \"No metadata restrictions have been added\": \"尚无元素限制\",\n                        \"Learn more about\": \"了解更多关于\",\n                        \"metadata\": \"元素\",\n                        \"restrictions\": \"限制\",\n\n                        \"Add restriction\": \"添加限制\",\n                            // 添加元数据限制 对话框\n                                \"Add a metadata restriction\": \"添加元数据限制\",\n                                    \"Applies To\": \"适用于\",\n                                        \"Commit message\": \"提交信息\",\n                                        \"Author email\": \"作者电子邮箱地址\",\n                                        \"Committer email\": \"提交者电子邮箱地址\",\n                                        \"Branch name\": \"分支名称\",\n                                    \"Requirement\": \"要求\",\n                                        \"Must\": \"必须\",\n                                        \"start with a matching pattern\": \"以匹配规则开头\",\n                                        \"end with a matching pattern\": \"以匹配规则结束\",\n                                        \"contain a matching pattern\": \"包含匹配规则\",\n                                        \"match a given regex pattern\": \"匹配给定的正则表达式规则\",\n                                        \"Must not\": \"不得\",\n                                    \"Matching pattern\": \"匹配规则\",\n                                    \"Description\": \"描述\",\n                                        // [/Commit message must start with a matching pattern/, \"提交信息必须以匹配规则开头\"],\n                                        // [/Commit message must end with a matching pattern/, \"提交信息必须以匹配规则结束\"],\n                                        // [/Commit message must contain with a matching pattern/, \"提交信息必须包含匹配规则\"],\n                                        // [/Commit message must match a given regex pattern/, \"提交信息必须匹配给定的正则表达式规则\"],\n                                        // [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配规则开头\"],\n                                        // [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配规则结束\"],\n                                        // [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配规则\"],\n                                        // [/Commit message must not match a given regex pattern/, \"提交信息不得匹配给定的正则表达式规则\"],\n\n                                        // [/Author email must start with a matching pattern/, \"作者电子邮箱地址必须以匹配规则开头\"],\n                                        // [/Author email must end with a matching pattern/, \"作者电子邮箱地址必须以匹配规则结束\"],\n                                        // [/Author email must contain a matching pattern/, \"作者电子邮箱地址必须包含匹配规则\"],\n                                        // [/Author email must match a given regex pattern/, \"作者电子邮箱地址必须匹配给定的正则表达式规则\"],\n                                        // [/Author email must not start with a matching pattern/, \"作者电子邮箱地址不得以匹配规则开头\"],\n                                        // [/Author email must not end with a matching pattern/, \"作者电子邮箱地址不得以匹配规则结束\"],\n                                        // [/Author email must not contain a matching pattern/, \"作者电子邮箱地址不得包含匹配规则\"],\n                                        // [/Author email must not match a given regex pattern/, \"作者电子邮箱地址不得匹配给定的正则表达式规则\"],\n\n                                        // [/Committer email must start with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则开头\"],\n                                        // [/Committer email must end with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则结束\"],\n                                        // [/Committer email must contain a matching pattern/, \"提交者电子邮箱地址必须包含匹配规则\"],\n                                        // [/Committer email must match a given regex pattern/, \"提交者电子邮箱地址必须匹配给定的正则表达式规则\"],\n                                        // [/Committer email must not start with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则开头\"],\n                                        // [/Committer email must not end with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则结束\"],\n                                        // [/Committer email must not contain a matching pattern/, \"提交者电子邮箱地址不得包含匹配规则\"],\n                                        // [/Committer email must not match a given regex pattern/, \"提交者电子邮箱地址不得匹配给定的正则表达式规则\"],\n\n                                        // [/Branch name must start with a matching pattern/, \"分支名称必须以匹配规则开头\"],\n                                        // [/Branch name must end with a matching pattern/, \"分支名称必须以匹配规则结束\"],\n                                        // [/Branch name must contain a matching pattern/, \"分支名称必须包含匹配规则\"],\n                                        // [/Branch name must match a given regex pattern/, \"分支名称必须匹配给定的正则表达式规则\"],\n                                        // [/Branch name must not start with a matching pattern/, \"分支名称不得以匹配规则开头\"],\n                                        // [/Branch name must not end with a matching pattern/, \"分支名称不得以匹配规则结束\"],\n                                        // [/Branch name must not contain a matching pattern/, \"分支名称不得包含匹配规则\"],\n                                        // [/Branch name must not match a given regex pattern/, \"分支名称不得匹配给定的正则表达式规则\"],\n\n                                    \"How this rule will appear to your\": \"这个规则将如何在您的\",\n                                    \"organization\": \"组织\",\n                                    \"'s users throughout\": \"内的用户中显示\",\n                \"Restrict branch names\": \"限制分支名\",\n\n            \"Revert\": \"撤销\",\n            \"Reverting...\": \"撤销…\",\n            \"changes\": \"更改\",\n            \"change\": \"更改\",\n\n            // 右下角提示\n                \"Unauthorized\": \"未经授权\",\n                \"Ruleset created\": \"规则集已创建\",\n                \"Changes reverted\": \"更改已恢复\",\n                \"No changes have been made\": \"未作任何更改\",\n                \"Invalid rules: 'Required status checks'\": \"无效规则：“必需的状态检查”\",\n                \"This\": \"此\",\n                    \"does not target any resources and will not be applied.\": \"未针对任何资源，将不会生效。\",\n                \"Ruleset updated\": \"规则已更新\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Applies to (\\d+) target/, \"适用于 $1 个目标\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) branch rules? • targeting (\\d+) branch(es)?/, \"$1 条分支规则 • 针对 $1 个分支\"],\n        [/(\\d+) branch rules?/, \"$1 条分支规则\"],\n        [/(\\d+) rules?/, \"$1 条规则\"],\n        [/(\\d+) branch(?:es|)?/, \"$1 个分支\"],\n        [/(\\d+) tags?/, \" $1 个标签\"],\n        [/Add '(.*)'/, \"添加 $1\"],\n        [/Commit message must start with a matching pattern/, \"提交信息必须以匹配规则开头\"],\n        [/Commit message must end with a matching pattern/, \"提交信息必须以匹配规则结束\"],\n        [/Commit message must contain with a matching pattern/, \"提交信息必须包含匹配规则\"],\n        [/Commit message must match a given regex pattern/, \"提交信息必须匹配给定的正则表达式规则\"],\n        [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配规则开头\"],\n        [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配规则结束\"],\n        [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配规则\"],\n        [/Commit message must not match a given regex pattern/, \"提交信息不得匹配给定的正则表达式规则\"],\n        [/Author email must start with a matching pattern/, \"作者电子邮箱地址必须以匹配规则开头\"],\n        [/Author email must end with a matching pattern/, \"作者电子邮箱地址必须以匹配规则结束\"],\n        [/Author email must contain a matching pattern/, \"作者电子邮箱地址必须包含匹配规则\"],\n        [/Author email must match a given regex pattern/, \"作者电子邮箱地址必须匹配给定的正则表达式规则\"],\n        [/Author email must not start with a matching pattern/, \"作者电子邮箱地址不得以匹配规则开头\"],\n        [/Author email must not end with a matching pattern/, \"作者电子邮箱地址不得以匹配规则结束\"],\n        [/Author email must not contain a matching pattern/, \"作者电子邮箱地址不得包含匹配规则\"],\n        [/Author email must not match a given regex pattern/, \"作者电子邮箱地址不得匹配给定的正则表达式规则\"],\n        [/Committer email must start with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则开头\"],\n        [/Committer email must end with a matching pattern/, \"提交者电子邮箱地址必须以匹配规则结束\"],\n        [/Committer email must contain a matching pattern/, \"提交者电子邮箱地址必须包含匹配规则\"],\n        [/Committer email must match a given regex pattern/, \"提交者电子邮箱地址必须匹配给定的正则表达式规则\"],\n        [/Committer email must not start with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则开头\"],\n        [/Committer email must not end with a matching pattern/, \"提交者电子邮箱地址不得以匹配规则结束\"],\n        [/Committer email must not contain a matching pattern/, \"提交者电子邮箱地址不得包含匹配规则\"],\n        [/Committer email must not match a given regex pattern/, \"提交者电子邮箱地址不得匹配给定的正则表达式规则\"],\n        [/Branch name must start with a matching pattern/, \"分支名称必须以匹配规则开头\"],\n        [/Branch name must end with a matching pattern/, \"分支名称必须以匹配规则结束\"],\n        [/Branch name must contain a matching pattern/, \"分支名称必须包含匹配规则\"],\n        [/Branch name must match a given regex pattern/, \"分支名称必须匹配给定的正则表达式规则\"],\n        [/Branch name must not start with a matching pattern/, \"分支名称不得以匹配规则开头\"],\n        [/Branch name must not end with a matching pattern/, \"分支名称不得以匹配规则结束\"],\n        [/Branch name must not contain a matching pattern/, \"分支名称不得包含匹配规则\"],\n        [/Branch name must not match a given regex pattern/, \"分支名称不得匹配给定的正则表达式规则\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Rulesets?/, \"设置 · 规则集\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/rules\"] = I18N[\"zh-CN\"][\"repository/settings/rules\"];\nI18N[\"zh-CN\"][\"repository/rules\"] = I18N[\"zh-CN\"][\"repository/settings/rules\"];\n\nI18N[\"zh-CN\"][\"repository/settings/actions\"] = { // 仓库设置 - 操作 /<user-name>/<repo-name>/settings/actions\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作页面 /<user-name>/<repo-name>/settings/actions\n            \"Actions permissions\": \"操作权限\",\n                \"This setting has been disabled by organization administrators.\": \"此设置已被组织管理员禁用。\", // 组织仓库\n                \"Allow all actions and reusable workflows\": \"允许所有操作和可复用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可复用的工作流程，而不管它是谁创作的或在哪里定义的。\",\n            \"Disable actions\": \"禁用操作\",\n                \"The Actions tab is hidden and no workflows can run.\": \"“操作” 选项卡将被隐藏，无法运行任何工作流程。\",\n            // [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n                // [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n            // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n                // [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定条件的操作或工作流程，以及在 $1 的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n                \"Learn more about allowing specific actions and reusable workflows to run.\": \"了解更多关于允许运行特定操作和可复用的工作流程的信息。\",\n                \"Allow actions created by GitHub\": \"允许由 GitHub 创建的操作\",\n                \"Allow actions by Marketplace\": \"允许来自市场的操作，\",\n                \"verified creators\": \"由经验证的创建者创建\",\n                \"Allow specified actions and reusable workflows\": \"允许指定的操作和可复用的工作流程\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"输入以逗号分隔的操作和可复用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允许使用通配符、标签和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可复用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整个组织或仓库的示例：\",\n                // \"Save\": \"保存\",\n                // 顶部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n            \"Require actions to be pinned to a full-length commit SHA\": \"要求将操作固定到完整的提交 SHA\",\n\n            \"Artifact and log retention\": \"工件和日志保留\",\n                \"Choose the repository settings for artifacts and logs.\": \"选择工件和日志的仓库设置。\",\n                \"There is a maximum limit of\": \"最大限制为\",\n                \"days.\": \"天。\",\n                \"Your organization has set a maximum limit of\": \"您的组织已将上限设置为\", //组织仓库\n                \"Learn more about the artifact and log retention policy.\": \"了解更多关于工件和日志保留政策的信息。\",\n\n                // 输入框提示\n                \"Duration must be 1 or more.\": \"不能小于 1\",\n                \"Duration must be 90 or less\": \"不能大于 90\",\n                \"There is a maximum limit of\": \"最多\",\n\n                \"days\": \"天\",\n\n            \"Cache\": \"缓存\",\n                \"Choose the repository settings for cache.\": \"选择此存储库的缓存设置。\",\n                \"Cache retention\": \"缓存保留\",\n                    \"Retention can be set up to\": \"保留可以设置为\",\n                \"Cache size eviction limit\": \"缓存大小逐出限制\",\n                    \"Use this limit to control when cache evictions occur. Exceeding this limit will trigger evictions of the least recently used cache. Note this limit should not be used for controlling costs.\": \"使用此限制来控制何时发生缓存逐出。超过此限制将触发最近最少使用的缓存的逐出。请注意，此限制不应用于控制成本。\",\n                    \"Total cache size can be set up to\": \"总缓存大小可设置为\",\n\n            \"Fork pull request workflows\": \"复刻拉取请求工作流程\",\n                \"Run workflows from fork pull requests\": \"从复刻拉取请求运行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"这告诉 Actions 运行工作流程，来自仓库复刻的拉取请求。请注意，这样做将使这些复刻的维护者有能力在源码库上使用具有读取权限的令牌。\",\n                \"Send write tokens to workflows from fork pull requests.\": \"从复刻拉取请求，发送可写令牌到工作流程\",\n                    \"This tells Actions to send tokens with\": \"这告诉 Actions 发送令牌\",\n                    \"write\": \"写入\",\n                    \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"权限到工作流程，来自仓库复刻的拉取请求。请注意，这样做将授予这些复刻的维护者\",\n                    \"permissions against the source repository.\": \"权限，针对源仓库。\",\n                \"Send secrets to workflows from fork pull requests.\": \"从复刻拉取请求，发送机密到工作流程\",\n                    \"This tells Actions to send repository secrets to workflows from pull requests originating from repository forks.\": \"这告诉 Actions 发送仓库机密到工作流程，来自仓库复刻的拉取请求。\",\n\n            \"Approval for running fork pull request workflows from contributors\": \"允许贡献者运行复刻拉取请求工作流\",\n                \"Choose which subset of users will require approval before running workflows on their pull requests. Both the pull request author and the actor of the pull request event triggering the workflow will be checked to determine if approval is required. If approval is required, a user with write access to the repository must\": \"选择在拉取请求上运行工作流之前需要批准的用户子集。将检查拉取请求作者和触发工作流的拉取请求事件的行为者，以确定是否需要批准。如果需要批准，则必须由具有写权限的用户\",\n                \"approve the pull request workflow to be run.\": \"批准才能运行拉取请求工作流。\",\n            \"Fork pull request workflows from outside collaborators\": \"从外部协作者，复刻拉取请求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"选择哪些外部协作者的子集需要批准才能对他们的拉取请求运行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"了解更多关于批准来自公共复刻的工作流运行的信息。\",\n            \"Require approval for first-time contributors who are new to GitHub\": \"要求对首次加入 GitHub 的贡献者进行批准审查\",\n                \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近创建 GitHub 账户的首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Only users who are both new on GitHub and who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有新加入 GitHub 和从未有提交或拉取请求合并到该仓库的用户才需要批准运行工作流。\",\n            \"Require approval for first-time contributors\": \"要求对首次贡献者进行批准审查\",\n                \"Only first-time contributors will require approval to run workflows.\": \"只有首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Only users who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有从未有提交或拉动请求合并到该仓库的用户才需要批准运行工作流。\",\n            \"Require approval for all outside collaborators\": \"要求对所有外部协作者进行批准审查\",\n                \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部协作者将始终需要批准才能在他们的拉取请求上运行工作流程。\",\n            \"Require approval for all external contributors\": \"要求对所有外部贡献者进行批准审查\",\n                \"All users that are not a member or owner of this repository will require approval to run workflows.\": \"所有不是该仓库成员或所有者的用户，均需获得批准才能运行工作流。\",\n                // [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是该仓库成员或所有者，且未加入 $1 组织的用户，均需获得批准才能运行工作流。\"], // 组织\n\n            \"Workflow permissions\": \"工作流程权限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this repository. You can specify more granular permissions in the workflow using YAML.\": \"在仓库中运行工作流程时，选择授予 GITHUB_TOKEN 的默认权限。您可以使用 YAML 在工作流程中指定更细化的权限。\",\n                \"Learn more about managing permissions.\": \"了解更多关于管理权限的信息。\",\n                \"Read and write permissions\": \"读取和写入权限\",\n                    \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在仓库中对所有作用域具有读和写的权限。\",\n                \"Read repository contents and packages permissions\": \"读取仓库的内容和软件包的权限\",\n                    \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在仓库中仅对内容和软件包作用域具有只读的权限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"选择 GitHub Actions 是否可以创建拉取请求或提交批准拉取请求审查。\",\n                        \"Allow GitHub Actions to create and approve pull requests\": \"允许 GitHub Actions 创建和批准拉取请求\",\n\n                // 顶部提醒\n                    \"Default workflow permissions settings saved.\": \"已保存默认工作流程权限设置。\",\n\n        // 运行器页面 /<user-name>/<repo-name>/settings/actions/runners\n            \"New self-hosted runner\": \"新建自托管运行器\",\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows.\": \"托管您自己的运行器，并定制用于在您的 GitHub Actions 工作流程中运行作业的环境。\",\n            \"Learn more about self-hosted runners\": \"了解更多关于自托管运行器的信息\",\n            \"There are no runners configured\": \"暂无设置运行器\",\n            \"Learn more about using runners\": \"了解更多关于使用运行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服务器上运行操作的信息。\",\n            \"Idle\": \"空闲\",\n            \"Active\": \"活跃\",\n            \"Offline\": \"离线\",\n\n        // 运行器详情页面 /<user-name>/<repo-name>/settings/actions/runners/<id>\n            \"Configuration\": \"配置\",\n            \"Labels\": \"标签\",\n            \"Labels are values used with the\": \"标签是在工作流的 YAML 文件中与\",\n            \"key in your workflow's YAML to send jobs to specific runners. To copy a label, click on it.\": \"键配合使用的值，用于将任务分配到特定的运行器。要复制标签，请单击它。\",\n            \"Learn more about labels.\": \"了解有关标签的更多信息。\",\n            \"Active Job\": \"活跃中的作业\",\n            \"There are currently no running jobs\": \"当前没有正在运行的作业\",\n            \"Add `\": \"在工作流的 YAML 文件中添加 `\",\n            \"` to your workflow's YAML to send jobs to this runner.\": \"`，即可将任务发送至此运行器。\",\n            \"In progress\": \"进行中\",\n            \"Cancel run\": \"取消运行\",\n            \"View workflow file\": \"查看工作流文件\",\n\n        // 创建运行器页面 /<user-name>/<repo-name>/settings/actions/runners/new\n            // [/\\/ Add new self-hosted runner ·/, \"/ 创建自托管运行器 ·\"],\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。下载并配置 GitHub Actions 运行器 后，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服务条款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企业服务条款\",\n                \", as applicable.\": \"，如适用。\",\n            \"Runner image\": \"运行器镜像\",\n            \"Architecture\": \"架构\",\n            \"Download\": \"下载\",\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我们建议在 “\\\\actions-runner” 下配置运行器。这将有助于避免与 Windows 上的服务标识文件夹权限和长路径限制相关的议题。\",\n            \"Configure\": \"设置\",\n            \"Using your self-hosted runner\": \"使用您的自托管运行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"关于配置、运行或关闭运行器的其他细节，请查看我们的\",\n            \"product docs\": \"产品文档\",\n            \"Add new self-hosted runner\": \"添加新的自托管运行器\",\n            \"Using self-hosted runners in public repositories is not recommended.\": \"在公共仓库中使用自托管运行器不推荐。\",\n            \"Forks of your public repository can potentially run dangerous code on your self-hosted runner by creating a pull request.\": \"公共仓库的复刻可以潜在地在您的自托管运行器上运行危险代码，通过创建拉取请求。\",\n            \"Learn more about security hardening for self-hosted runners\": \"了解更多关于自托管运行器的安全强化\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. If you do not already have an existing volume licensing agreement for your GitHub purchases, by downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。如果您还没有现有的 GitHub 购买量许可证协议，通过下载并配置 GitHub 操作运行器，您同意\",\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/\\/ Add new self-hosted runner ·/, \"/ 创建自托管运行器 ·\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定条件的操作或工作流程，以及在 $1 的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n        [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是该仓库成员或所有者，且未加入 $1 组织的用户，均需获得批准才能运行工作流。\"], // 组织\n        [/Add new self-hosted runner · (.+)/, \"添加自托管运行器 · $1\"],\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions settings/, \"操作设置\"],\n            [/Runners/, \"运行器\"],\n            [/Add new self-hosted runner/, \"添加自托管运行器\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/models/access-policy\"] = { // 仓库设置 - 模型 /<user-name>/<repo-name>/settings/models/access-policy\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        //\"Models\": \"模型\",\n\n        \"Models in this repository\": \"此仓库模型\",\n            \"If disabled, the Models tab will be hidden, and the prompt editor and comparison tooling evaluations will be unavailable.\": \"如果禁用，模型选项卡将被隐藏，提示编辑器和对比工具评估也将不可用。\",\n            \"Learn more about Models.\": \"了解更多。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"regexp\": [\n            [/settings · GitHub Models access policy/, \"设置 · GitHub 模型访问政策\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/hooks\"] = { // 仓库设置 - Web 钩子 /<user-name>/<repo-name>/settings/hooks\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Web 钩子 页面 /<user-name>/<repo-name>/settings/hooks====================================\n            \"Add webhook\": \"添加 Web 钩子\",\n            \"Webhooks allow external services to be notified when certain events happen. When the specified events happen, we'll send a POST request to each of the URLs you provide. Learn more in our\": \"Web 钩子允许在发生某些事件时通知外部服务。当指定的事件发生时，我们将向您提供的每个 URL 发送 POST 请求。了解更多信息，在我们的\",\n            \"Webhooks Guide\": \"Web 钩子指南\",\n\n            \"We will also send events from this repository to your\": \"我们还将把这个仓库的事件发送到您的\", // 组织仓库\n            \"organization webhooks\": \"组织 Web 钩子\", // 组织仓库\n\n            \"This hook has never been triggered.\": \"此钩子从未被触发过。\",\n            \"Last delivery was successful.\": \"上次触发成功。\",\n\n            // 删除对话框\n                \"Delete webhook?\": \"删除 Web 钩子？\",\n                \"This action cannot be undone. Future events will no longer be delivered to this webhook\": \"此操作无法撤消。未来的事件将不再传递到此 Web 钩子\",\n                \"Yes, delete webhook\": \"是的，删除 Web 钩子\",\n\n        // 添加钩子 页面 /<user-name>/<repo-name>/settings/hooks/new ====================================\n            \"Webhooks /\": \"Web 钩子 /\",\n            \"Add webhook\": \"添加 Web 钩子\",\n            \"We'll send a\": \"我们将\",\n            \"request to the URL below with details of any subscribed events. You can also specify which data format you'd like to receive (JSON,\": \"请求到以下 URL，其中包含任何订阅事件的详细信息。您还可以指定要接收的数据格式（JSON、\",\n            \"etc\": \"等\",\n            \"). More information can be found in\": \"）。更多信息可以在\",\n            \"our developer documentation\": \"开发人员文档\",\n\n            \"Payload URL\": \"有效负载 URL\",\n            \"Content type\": \"内容类型\",\n            \"Secret\": \"机密\",\n                \"Leave blank to remove secret\": \"留空以删除机密\",\n            \"There is currently a secret configured for this webhook. If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated.\": \"目前 Web 钩子已配置了一个机密。如果您丢失或忘记了这个机密，可以更改它，但请注意，任何使用此机密的集成将需要更新\",\n            \"Change secret\": \"修改机密\",\n\n            \"SSL verification\": \"SSL 验证\",\n            \"By default, we verify SSL certificates when delivering payloads.\": \"默认情况下，我们在交付有效负载时验证 SSL 证书。\",\n            \"Enable SSL verification\": \"启用 SSL 验证\",\n            \"Disable\": \"禁用\",\n            \"(not recommended)\": \"（不推荐）\",\n                \"Are you sure?\": \"您确定吗？\",\n                \"Warning\": \"警告\",\n                \": Disabling SSL verification has serious implications.\": \"：禁用 SSL 验证具有严重的影响。\",\n                \"SSL verification helps ensure that hook payloads are delivered to your URL endpoint securely, keeping your data away from prying eyes. Disabling this option is\": \"SSL 验证有助于确保钩子有效负载安全地传送到您的 URL 端点，使您的数据远离窥探。禁用此选项是\",\n                \"not recommended\": \"不推荐的\",\n                \"Disable, I understand my webhooks may not be secure\": \"禁用，我明白我的 web 钩子可能不安全\",\n\n            \"Which events would you like to trigger this webhook?\": \"您希望哪些事件触发此 Web 钩子？\",\n                \"Just the\": \"仅\",\n                \"push\": \"推送\",\n                \"event.\": \"事件。\",\n                \"Send me\": \"发送给我\",\n                \"everything\": \"所有\",\n                \"Let me select individual events.\": \"让我选择单个事件。\",\n                    \"Branch or tag creation\": \"分支或标签创建\",\n                        \"Branch or tag created.\": \"分支或标签的创建。\",\n                    \"Branch or tag deletion\": \"分支或标签删除\",\n                        \"Branch or tag deleted.\": \"分支或标签的删除。\",\n                    \"Branch protection configurations\": \"分支保护配置\",\n                        \"All branch protections disabled or enabled for a repository.\": \"禁用或启用仓库的所有分支保护。\",\n                    \"Branch protection rules\": \"分支保护规则\",\n                        \"Branch protection rule created, deleted or edited.\": \"分支保护规则的创建、删除或编辑。\",\n                    \"Bypass requests for push rulesets\": \"绕过推送规则集的请求\",\n                        \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed.\": \"推送规则集旁路请求已创建、取消、完成、收到回复或回复被驳回。\",\n                    \"Bypass requests for secret scanning push protections\": \"绕过机密扫描推送保护请求\",\n                        \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"机密扫描推送保护旁路请求的创建、取消、完成、收到回复或回复被驳回。注意：推送保护的委托旁路目前处于测试阶段，可能会有更改。\",\n                    \"Check runs\": \"检查运行\",\n                        \"Check run is created, requested, rerequested, or completed.\": \"检查运行的创建、请求、重新请求或完成。\",\n                    \"Check suites\": \"检查套件\",\n                        \"Check suite is requested, rerequested, or completed.\": \"检查套件的请求、重新请求或完成。\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                        \"Code Scanning alert created, fixed in branch, or closed\": \"代码扫描警报的创建、在分支中的修复或关闭。\",\n                    \"Collaborator add, remove, or changed\": \"协作者的添加、删除或更改\",\n                        \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"协作者添加到仓库、从仓库中删除或更改了仓库的权限。\",\n                    \"Commit comments\": \"提交评论\",\n                        \"Commit or diff commented on.\": \"提交或差异评论。\",\n                    \"Custom property\": \"自定义属性\",\n                        \"Custom property is created, updated, or deleted.\": \"自定义属性的创建、更新或删除。\",\n                    \"Custom property values\": \"自定义属性值\",\n                        \"Custom property values are changed for a repository\": \"仓库自定义属性值的更改。\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                        \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警报自动解除、自动重新打开、创建、解除、重新打开、修复或重新引入。\",\n                    \"Deploy keys\": \"部署密钥\",\n                        \"A deploy key is created or deleted from a repository.\": \"在仓库中部署密钥的创建或删除。\",\n                    \"Deployment statuses\": \"部署状态\",\n                        \"Deployment status updated from the API.\": \"通过 API 更新部署状态。\",\n                    \"Deployments\": \"部署\",\n                        \"Repository was deployed or a deployment was deleted.\": \"仓库的部署或删除部署。\",\n                    \"Discussion comments\": \"讨论评论\",\n                        \"Discussion comment created, edited, or deleted.\": \"讨论评论的创建、编辑或删除。\",\n                    // \"Discussion\": \"讨论\",\n                        \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"讨论的创建、编辑、关闭、重新打开、置顶、取消置顶、锁定、解锁、转移、答复、取消答复、标记、取消标记、更改其类别或删除。\",\n                    \"Forks\": \"复刻\",\n                        \"Repository forked.\": \"仓库复刻。\",\n                    \"Issue comments\": \"议题评论\",\n                        \"Issue comment created, edited, or deleted.\": \"议题评论的创建、编辑或删除。\",\n                    // \"Issue\": \"议题\",\n                        \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, or unlocked.\": \"议题的打开、编辑、删除、转移、置顶、取消置顶、关闭、重新打开、分配、取消分配、标记、取消标记、设置里程碑、取消里程碑、锁定或解锁。\",\n                    \"Labels\": \"标签\",\n                        \"Label created, edited or deleted.\": \"标签的创建、编辑或删除。\",\n                    \"Memberships\": \"团队成员\", // 组织设置\n                        \"Team membership added or removed.\": \"团队成员的添加或删除。\",\n                    \"Merge groups\": \"合并组\",\n                        \"Merge Group requested checks, or was destroyed.\": \"合并组的请求检查或销毁。\",\n                    \"Meta\": \"元数据\",\n                        \"This particular hook is deleted.\": \"这个特定的钩子被删除。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的创建、关闭、打开、编辑或删除。\",\n                    \"Org blocks\": \"组织黑名单\", // 组织设置\n                        \"A user has been blocked or unblocked.\": \"用户拉黑或解除拉黑。\",\n                    \"Organizations\": \"组织\", // 组织设置\n                        \"Organization deleted, renamed, member invited, member added, or member removed.\": \"组织的删除、重命名以及成员的邀请、添加或删除。\",\n                    // \"Packages\": \"软件包\",\n                        \"GitHub Packages published or updated in a repository.\": \"仓库中 GitHub 软件包的发布或更新 。\",\n                    \"Page builds\": \"构建 GitHub Pages\",\n                        \"Pages site built.\": \"GitHub Pages 站点的建立。\",\n                    \"Project cards\": \"项目面板卡\",\n                        \"Project card created, updated, or deleted.\": \"项目面板卡的创建、更新或删除。\",\n                    \"Project columns\": \"项目栏目\",\n                        \"Project column created, updated, moved or deleted.\": \"项目列目的创建、更新、移动或删除。\",\n                    \"Project v2 items\": \"项目项 v2\", // 组织设置\n                        \"Project item created, edited, deleted, archived, restored, converted, or reordered. Feedback is welcome in\": \"项目条目的创建、编辑、删除、归档、恢复、转换或重新排序。欢迎提供反馈意见在\",\n                        \"this discussion\": \"这个讨论\",\n                    // \"\": \"项目\",\n                        \"Project created, updated, or deleted.\": \"项目的创建、更新或删除。\",\n                    \"Projects v2\": \"项目 v2\", // 组织设置\n                        \"Project created, updated, deleted, closed, or reopened. Feedback is welcome in\": \"项目的创建、更新、删除、关闭或重新打开。欢迎提供反馈意见在\",\n                    \"Pull request review comments\": \"拉取请求审查意见\",\n                        \"Pull request diff comment created, edited, or deleted.\": \"拉取请求差异评论的创建、编辑或删除。\",\n                    \"Pull request review threads\": \"拉取请求的审查线程\",\n                        \"A pull request review thread was resolved or unresolved.\": \"拉取请求的审查线程的解决或未解决。\",\n                    \"Pull request reviews\": \"拉取请求审查\",\n                        \"Pull request review submitted, edited, or dismissed.\": \"拉取请求审查的提交、编辑或驳回。\",\n                    // \"\": \"拉取请求\",\n                        \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取请求的分配、禁用自动合并、启用自动合并、关闭、转换为草案、取消里程碑、取消队列、编辑、队列、标记、锁定、设置里程碑、打开、准备审查、重新打开、取消审查请求、请求审查、同步、取消分配、取消标记或解锁。\",\n                    \"Pushes\": \"推送\",\n                        \"Git push to a repository.\": \"Git 推送到仓库。\",\n                    \"Registry packages\": \"注册软件包\",\n                        \"Registry package published or updated in a repository.\": \"仓库中注册软件包的发布或更新。\",\n                    \"Releases\": \"发行版\",\n                        \"Release created, edited, published, unpublished, or deleted.\": \"发行版的创建、编辑、发布、取消发布或删除。\",\n                    // \"\": \"仓库\",\n                        \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"仓库的创建、删除、归档、取消归档、公开、私有化、编辑、重命名或转让。\",\n                    \"Repository advisories\": \"仓库公告\",\n                        \"Repository advisory published or reported.\": \"仓库公告发布或报告。\",\n                    \"Repository imports\": \"仓库导入\",\n                        \"Repository import succeeded, failed, or cancelled.\": \"仓库导入的成功、失败或取消。\",\n                    \"Repository rulesets\": \"仓库规则集\",\n                        \"Repository ruleset created, deleted or edited.\": \"仓库规则集的创建、删除或编辑。\",\n                    \"Repository vulnerability alerts\": \"仓库漏洞警报\",\n                        \"Dependabot alert (aka dependency vulnerability alert) created, resolved, or dismissed on a repository.\": \"Dependabot 警报（又名依赖漏洞警报）在仓库上的创建、解决或解除。\",\n                    \"Secret scanning alert locations\": \"机密扫描警报位置\",\n                        \"Secrets scanning alert location created.\": \"机密扫描警报位置的创建。\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                        \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"机密扫描警报的创建、解决、重新打开、验证或公开泄露。\",\n                    \"Security and analyses\": \"安全和分析\",\n                        \"Code security features enabled or disabled for a repository.\": \"启用或禁用仓库的代码安全功能。\",\n                    \"Secret scanning scans\": \"机密扫描\",\n                        \"Secrets scanning scan completed.\": \"机密扫描已完成\",\n                    // \"\": \"星标\",\n                        \"A star is created or deleted from a repository.\": \"标星或取消仓库星标。\",\n                    \"Statuses\": \"状态\",\n                        \"Commit status updated from the API.\": \"通过 API 更新提交状态。\",\n                    \"Team adds\": \"团队添加\",\n                        \"Team added or modified on a repository.\": \"在仓库上添加或修改的团队。\",\n                    \"Teams\": \"团队\",  // 组织设置\n                        \"Team is created, deleted, edited, or added to/removed from a repository.\": \"团队的创建、删除、编辑以及向仓库添加团队、从仓库中移除团队。\",\n                    \"Visibility changes\": \"可见性变化\",\n                        \"Repository changes from private to public.\": \"仓库从私有更改为公共。\",\n                    \"Watches\": \"关注\",\n                        \"User stars a repository.\": \"用户标星仓库。\",\n                    \"Wiki\": \"\",\n                        \"Wiki page updated.\": \"Wiki 页面的更新。\",\n                    \"Workflow jobs\": \"工作流程作业\",\n                        \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"仓库中工作流作业的队列、等待、正在进行或完成。\",\n                    \"Workflow runs\": \"工作流程运行\",\n                        \"Workflow run requested or completed on a repository.\": \"仓库中工作流程运行的请求或完成。\",\n                \"Active\": \"激活\",\n                \"We will deliver event details when this hook is triggered.\": \"当钩子被触发时，我们将提供事件详细信息。\",\n\n            // 顶部提醒\n            \"Okay, that hook was successfully created. We sent a ping payload to test it out! Read more about it at https://docs.github.com/webhooks/#ping-event.\": \"好的，这个钩子已经成功创建。我们发送了一个 ping 负载来测试它! 阅读更多关于它的信息，请访问 https://docs.github.com/webhooks/#ping-event。\",\n\n        // 管理 钩子 /<user-name>/<repo-name>/settings/hooks/<id>\n            \"Manage webhook\": \"管理 Web 钩子\",\n            \"If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated. —\": \"如果您丢失或忘记了此机密，则可以更改它，但请注意，使用此机密的任何集成都需要更新。 —\",\n            \"Change Secret\": \"更改机密\",\n            \"Update webhook\": \"更新 Web 钩子\",\n            // 顶部提醒\n                \"Okay, the hook was successfully updated.\": \"好的，Web 钩子已经成功更新。\",\n            \"Delete webhook\": \"删除 Web 钩子\",\n\n        // 最近交付标签 /<user-name>/<repo-name>/settings/hooks/<id>?tab=deliveries\n            \"Recent Deliveries\": \"最近交付\",\n                \"redelivery\": \"再交付\",\n            \"Loading deliveries…\": \"载入交付…\",\n            \"Detailed delivery information will be shown here once the hook has been triggered.\": \"一旦触发钩子，详细的交付信息将在此处显示。\",\n\n            \"Request\": \"请求\",\n            \"Response\": \"应答\",\n            \"Redeliver\": \"重新交付\",\n                \"Redeliver payload?\": \"重新交付有效负载？\",\n                \"The payload will be delivered to\": \"该有效负载将被发送到\",\n                \"using the current webhook configuration.\": \"使用当前的 Web 钩子 配置。\",\n                \"Yes, redeliver this payload\": \"是的，重新发送此有效负载\",\n                    \"Delivering payload…\": \"交付有效载荷…\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Completed in (\\d+(\\.\\d+)) seconds?./, \"在 $1 秒内完成。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Add webhook\": \"添加 Web 钩子\",\n        },\n        \"regexp\": [\n            [/Webhooks · Settings/, \"Web 钩子 · 设置\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/settings/hooks\"] = I18N[\"zh-CN\"][\"repository/settings/hooks\"];\n\nI18N[\"zh-CN\"][\"repository/settings/copilot/code_review\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码审查\n            \"Enable automatic code review\": \"启用自动代码审查\",\n                \"You can enable Copilot to automatically review pull requests by enabling it inside Repository rules.\": \"您可以在仓库规则中启用 Copilot，从而让 Copilot 自动审查拉取请求。\",\n                \"Learn more about automatic code reviews.\": \"了解更多关于自动代码生成的信息。\",\n                \"Go to repository rules\": \"前往仓库规则\",\n\n        \"General settings\": \"常规设置\",\n            \"Use custom instructions when reviewing pull requests\": \"在审查拉取请求时使用自定义指令\",\n                \"Copilot references\": \"Copilot 在审查拉取请求时会参考\",\n                \"repository custom instructions\": \"仓库自定义指令\",\n                \"when reviewing pull requests.\": \"。\",\n\n        \"With Copilot code review, you can add Copilot as a reviewer to your pull requests, including drafts. You can also select lines in Visual Studio Code and ask Copilot to review and comment on specific sections.\": \"使用 Copilot 代码审查，您可以将 Copilot 添加为拉取请求的审查者，包括草稿。您还可以在 Visual Studio Code 中选择行，并请求 Copilot 审查和评论特定部分。\",\n        \"Learn more about Copilot code reviews.\": \"了解更多关于 Copilot 代码审查的信息。\",\n\n        \"Automated code reviews using rulesets\": \"使用规则集自动代码审查\",\n            \"Use rulesets to configure Copilot to review pull requests automatically.\": \"使用规则集配置 Copilot 自动审查拉取请求。\",\n            \"Learn how to set up rulesets.\": \"了解如何设置规则集。\",\n\n        \"Go to rulesets\": \"前往规则集\",\n        \"No rulesets set up for automated reviews\": \"尚无设置自动代码审查的规则集\",\n        \"Create a ruleset to automate code reviews for pull requests targeting your default branch\": \"创建一个规则集，自动代码审查针对您的默认分支的拉取请求\",\n        \"Create ruleset for default branch\": \"创建针对默认分支的规则集\",\n    },\n    \"regexp\": [\n        // 1 repository ruleset\n        [/(\\d+) repository rulesets?/, \"$1 仓库规则集\"],\n        // 3 branch rules • targeting 1 branch\n        [/(\\d+) branch rules? • targeting (\\d+) branch(?:es)?/, \"$1 分支规则 • 针对 $2 分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Code review/, \"设置 · 代码审查\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/copilot/coding_agent\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Copilot coding agent\": \"Copilot 编程智能体\",\n\n        \"You can configure Copilot coding agent for other users with access to this repository, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以为其他具有此仓库访问权限的用户配置 Copilot 编程智能体，但由于您没有 Copilot Pro+ 或 Copilot 企业版许可证，因此无法向 Copilot 分配任务。\",\n\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate. To learn more, see the\": \"使用 Copilot 编程智能体，开发者可以将任务委托给 Copilot，从而专注于更具创造性、复杂性和高影响力的重要工作。只需将议题分配给 Copilot，等待助手发起评审请求，然后在拉取请求上留下反馈进行迭代。更多信息请参阅\",\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate.\": \"借助 Copilot 编程智能体，开发者可以将任务委托给 Copilot，从而有更多时间专注于最重要的创造性、复杂和高影响力的工作。只需将议题分配给 Copilot，等待请求代码审查，然后在拉取请求上留下反馈，进行迭代即可。\",\n        \"Learn more about Copilot coding agent\": \"了解更多\",\n\n        \"Internet access\": \"访问互联网\",\n            \"Ensure that the agent only accesses approved network resources during code generation and execution.\": \"确保智能体在代码生成和执行过程中只访问已批准的网络资源。\",\n                \"Learn more about customizing network access\": \"了解更多\",\n\n            \"Enable firewall\": \"启用防火墙\",\n                \"Recommended\": \"推荐\",\n                \"Limit Copilot coding agent’s Internet access to only allow access to allowlisted locations\": \"将 Copilot 编程智能体的互联网访问权限限制为仅允许访问白名单中的位置。\",\n            \"Recommended allowlist\": \"推荐白名单\",\n                \"Allow access to locations frequently used to install tools, packages, and dependencies\": \"允许访问常用于安装工具、软件包和依赖项的位置\",\n            \"Custom allowlist\": \"自定义白名单\",\n                \"Allow access to specific domains, IP addresses, or URLs.\": \"允许访问特定域名、IP 地址或 URL。\",\n\n            // settings/copilot/coding_agent/allowlist 自定义白名单\n                \"Add items to the allowlist to enable Copilot coding agent to access specific domains, IP addresses, or URLs.\": \"将项目添加到允许列表，以便 Copilot 智能体能够访问特定的域名、IP 地址或 URL。\",\n                    \"See the GitHub Docs for syntax and examples.\": \"请参阅 GitHub 文档以获取语法和示例。\",\n\n                \"e.g. https://example.com/a/path or example.com\": \"例：https://example.com/a/path 或 example.com\",\n                \"Add rule\": \"添加规则\",\n                \"Rule must be a valid domain, IP address, or URL\": \"规则必须是有效域名、IP 地址或 URL\",\n\n                \"No rules yet\": \"无规则\",\n                    \"Tip: Paste a list of rules into the input to add them all at once.\": \"提示：将规则列表粘贴到输入框中，可以一次性添加所有规则。\",\n                \"Delete rule\": \"删除规则\",\n\n                // 保存\n                    \"Allowlist settings saved successfully!\": \"白名单设置保存成功！\",\n\n        \"Model Context Protocol (MCP)\": \"模型上下文协议（MCP）\",\n            \"The MCP is an open standard that defines how applications share context with large language models (LLMs). MCP provides a standardized way to connect AI models to different data sources and tools, enabling them to work together more effectively.\": \"MCP 是一个开放标准，定义了应用程序如何与大型语言模型（LLM）共享上下文。MCP 提供了一种标准化的方法，将 AI 模型与不同的数据源和工具连接起来，使它们能够更高效地协同工作。\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services. For information on how to write your JSON MCP configuration, see the\": \"您可以使用 MCP 通过将其连接到其他工具和服务，来扩展 Copilot 编程智能体的功能。有关如何编写您的 JSON MCP 配置的详细信息，请参见\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services.\": \"您可以使用 MCP 通过将其连接到其他工具和服务，来扩展 Copilot 编程智能体的功能。\",\n                \"Learn how to write your JSON MCP configuration\": \"了解如何编写您的 JSON MCP 配置\",\n\n            \"MCP configuration\": \"MCP 配置\",\n                // 代码窗 - 底部栏\n                  \"to toggle the\": \"切换\",\n                  \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                  \"then\": \"键，然后\",\n                  \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n\n            \"Your configuration will be validated on save.\": \"您的配置将在保存时进行验证。\",\n\n            \"Save MCP configuration\": \"保存\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 编程智能体需遵守\",\n                \"pre-release terms\": \"预发行条款\",\n    },\n    \"regexp\": [\n        [/(\\d+) rules?/, \"$1 规则\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 编程智能体\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/environments\"] = { // 仓库设置 - 环境 /<user-name>/<repo-name>/settings/environment\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 仓库 环境 /<user-name>/<repo-name>/settings/environments\n            \"New environment\": \"新建环境\",\n            \"You can configure environments with protection rules, variables, and secrets.\": \"您可以使用保护规则，变量和机密配置环境。\",\n            \"Learn more about configuring environments.\": \"了解更多关于配置环境的信息。\",\n\n            \"There are no environments for this repository\": \"此仓库尚无环境\",\n            \"Environments are used by your workflows for deployments.\": \"您的工作流程使用环境进行部署。\",\n            \"You can configure environments with protection rules and secrets.\": \"您可以使用保护规则和机密配置环境。\",\n\n            \"Delete environment\": \"删除环境\",\n            // 删除环境对话框\n            \"Are you sure you want to delete this environment?\": \"您确定要删除此环境吗？\",\n                \"Deleting an environment will delete all associated secrets, variables, and protection rules.\": \"删除环境将删除所有关联的机密、变量和保护规则。\",\n                \"I understand, delete this environment\": \"我明白了，依然删除这个环境\",\n            // 顶部提醒\n                \"Environment deleted.\": \"环境已删除。\",\n                \"There was an error saving your new environment.\": \"保存新环境时出错。\",\n\n        // 仓库 新建环境 /<user-name>/<repo-name>/settings/environments/new\n            \"/ Add\": \"/ 添加\",\n            \"Name\": \"名称\",\n            \"Configure environment\": \"设置环境\",\n            \"Name can't be blank\": \"名称不能为空\",\n\n        // 编辑环境 /<user-name>/<repo-name>/settings/environments/<id>/edit\n            // 顶部提醒\n                // [/Environment \\\"([^ ]+)\\\" created./, \"环境 “$1” 已创建。\"],\n                // [/Environment \\\"([^ ]+)\\\" updated./, \"环境 “$1” 已更新。\"],\n\n            \"/ Configure\": \"/ 设置\",\n\n            \"Deployment protection rules\": \"部署保护规则\",\n                \"Configure reviewers, timers, and custom rules that must pass before deployments to this environment can proceed.\": \"配置审查者、计时器和自定义规则，在继续部署到此环境之前必须通过这些规则。\",\n\n                \"Required reviewers\": \"所需的审查者\",\n                    \"Specify people or teams that may approve workflow runs when they access this environment.\": \"指定访问此环境时可以批准工作流运行的人员或团队。\",\n                        \"Add up to\": \"最多添加\",\n                        \"more\": \" \",\n                        \"reviewers\": \"位审查者\",\n                        \"Search for people or teams...\": \"搜索人员或团队…\",\n\n                    \"Prevent self-review\": \"防止自我审查\",\n                        \"Require a different approver than the user who triggered the workflow run.\": \"要求与触发工作流程运行的用户不同的批准审查者。\",\n                \"Wait timer\": \"等待计时器\",\n                    \"Set an amount of time to wait before allowing deployments to proceed.\": \"设置允许部署继续之前等待的时间。\",\n                    \"minutes\": \"分钟\",\n                \"Enable custom rules with GitHub Apps\": \"使用 GitHub Apps 启用自定义规则\",\n                    \"Learn about existing apps\": \"了解现有应用\",\n                    \"create your own protection rules\": \"创建您自己的保护规则\",\n                    \"so you can deploy with confidence.\": \"以便您可以放心地进行部署。\",\n                \"Allow administrators to bypass configured protection rules\": \"允许管理员绕过配置的保护规则\",\n                \"Save protection rules\": \"保存保护规则\",\n\n            \"Deployment branches and tags\": \"部署分支和标签\",\n                \"Limit which branches and tags can deploy to this environment based on rules or naming patterns.\": \"根据规则或命名模式限制哪些分支和标签可以部署到此环境。\",\n                \"No restriction\": \"没有限制\",\n                    \"No restriction to which branch or tag from this repository can deploy.\": \"不限制仓库中的分支或标签进行部署。\",\n                \"Protected branches only\": \"仅受保护的分支\",\n                    \"Deployment limited to branches with protection rules.\": \"部署仅限于具有保护规则的分支。\",\n                \"Selected branches and tags\": \"选中的分支和标签\",\n                    \"Specify a list of branches and tags using naming patterns.\": \"使用命名模式指定分支和标签的列表。\",\n\n                \"Applies to\": \"适用于\",\n                // [/(\\d+) branch(?:es|)/, \"$1 个分支\"],\n                \". Based on the existing\": \"。基于已有的\",\n                \"repository branch protection rules\": \"仓库分支保护规则\",\n                // [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"],\n\n                \"No branch or tag rules applied yet:\": \"尚未应用分支或标签规则：\",\n                \"all branches and tags are still allowed to deploy.\": \"仍允许所有分支和标签进行部署。\",\n\n                // [/(\\d+) branch(?:es|) allowed/, \"允许 $1 个分支\"],\n                // [/(\\d+) branch(?:es|) and (\\d+)  tags? allowed/, \"允许 $1 个分支和 $2 个标签\"],\n                \"Add deployment branch or tag rule\": \"添加部署分支或标签规则\",\n                    // 添加部署分支规则 对话框\n                    \"Ref type:\": \"引用类型：\",\n                        \"Tag\": \"标签\",\n                    \"Name pattern:\": \"名称的模式：\",\n                    \"Add rule\": \"添加规则\",\n                \"Update deployment branch rule\": \"更新部署分支规则\",\n                    \"Update rule\": \"更新规则\",\n                \"Remove\": \"删除\",\n\n                // 顶部提醒\n                    \"Environment changes successfully saved: all branches can deploy.\": \"环境更改已成功保存：所有分支都可以部署。\",\n                    \"Environment changes successfully saved: only protected branches can deploy.\": \"环境更改已成功保存：只有受保护的分支才能部署。\",\n                    \"Environment changes successfully saved: only selected branches and tags can deploy.\": \"环境更改已成功保存：只有选定的分支和标签才能部署。\",\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支规则 “$1” 已成功保存。\"],\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支规则 “$1” 已删除。\",]\n\n            \"Environment secrets\": \"环境机密\",\n                \"Secrets are encrypted environment variables. They are accessible only by GitHub Actions in the context of this environment by using the\": \"机密是加密的环境变量。它们只能由 GitHub Actions 在这个环境中访问\",\n                    \"secret context\": \"机密上下文\",\n\n                \"Name\": \"名称\",\n                \"Value\": \"值\",\n                \"Last updated\": \"最后更新\",\n\n                \"This environment has no secrets.\": \"该环境尚无机密。\",\n                \"Add environment secret\": \"添加环境机密\",\n                    // 添加机密对话框\n                    \"Add secret\": \"添加机密\",\n                    \"Secret value\": \"机密值\",\n                    // 提醒\n                        \"Failed to add secret: Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败：机密名称只能包含字母、数字字符 ([a-z], [A-Z], [0-9]) 或下划线 (_)。不允许使用空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n                        \"Name and value are required\": \"名称和值是必填项。\",\n\n                \"Update secret\": \"更新机密\",\n                // 删除机密 对话框\n                    \"Delete secret\": \"删除机密\",\n                        \"Are you sure you want to delete\": \"您确定要删除\",\n                        \"Yes, delete this\": \"是的，删除该\",\n                        \"secret\": \"机密\",\n\n            \"Environment variables\": \"环境变量\",\n                \"Variables are used for non-sensitive configuration data. They are accessible only by GitHub Actions in the context of this environment by using the\": \"变量用于非敏感配置数据。它们只能由 GitHub Actions 在此环境中访问\",\n                    \"variable context\": \"变量上下文\",\n\n                \"This environment has no variables.\": \"该环境尚无变量。\",\n                \"Add environment variable\": \"添加环境变量\",\n                    // 添加变量对话框\n                    \"Add variable\": \"添加变量\",\n                    \"Variable value\": \"变量值\",\n                    // 提醒\n                        \"Failed to add variable: Variable names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加变量失败： 变量名只能包含字母、数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许使用空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n\n                \"Update variable\": \"更新变量\",\n                // 删除变量 对话框\n                    \"Delete variable\": \"删除变量\",\n                    \"variable\": \"变量\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) protection rules?/, \"$1 个保护规则\"], // /environments\n        [/(\\d+) secrets?/, \"$1 个机密\"], // /environments\n        [/(\\d+) variables?/, \"$1 个变量\"], // /environments\n        [/Environment \\\"([^ ]+)\\\" created./, \"环境 “$1” 已创建。\"],\n        [/Environment \\\"([^ ]+)\\\" updated./, \"环境 “$1” 已更新。\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前适用于 $1 个分支\"],\n        [/(\\d+) branch(?:es|) and (\\d+) tags? allowed/, \"允许 $1 个分支和 $2 个标签\"],\n        [/(\\d+) branch(?:es|) allowed/, \"允许 $1 个分支\"],\n        [/(\\d+) branch(?:es|)/, \"$1 个分支\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支规则 “$1” 已成功保存。\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支规则 “$1” 已删除。\",]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Environments/, \"环境\"],\n            [/Create environment/, \"创建环境\"],\n            [/Configure environment/, \"配置环境\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/codespaces\"] = { // 仓库设置 - 代码空间 /<user-name>/<repo-name>/settings/codespaces\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 代码空间 /<user-name>/<repo-name>/settings/codespaces\n            // 顶部提醒\n                \"Prebuild configuration created\": \"预构建设置已创建\",\n                \"Prebuild configuration deleted\": \"预构建设置已删除\",\n            \"Prebuild configuration\": \"预构建设置\",\n\n            \"Set up prebuild\": \"设置预构建\",\n            \"There are no prebuilds configured for this repository\": \"尚无预构建设置\",\n            \"Prebuild configurations speed up Codespace creations significantly by pre-executing all the tasks required to build your development environment.\": \"预构建设置通过预先执行构建开发环境所需的所有任务，大大加快了代码空间的创建。\",\n            \"Learn more about setting up prebuilds\": \"了解更多关于预构建设置的信息\",\n\n            // 状态\n                \"Currently Running\": \"正在运行中\",\n                \"Disabled\": \"禁用\",\n            \"See output\": \"查看输出结果\",\n\n            \"Configuration menu\": \"设置菜单\",\n                \"Manually trigger\": \"手动触发\",\n                \"View runs\": \"查看运行日志\",\n                \"Disable runs\":\"暂停运行\",\n                \"Enable runs\":\"恢复运行\",\n\n            // 删除对话框\n                \"Are you sure?\": \"您确定吗？\",\n                \"Are you sure you want to delete this prebuild configuration? Running workflow may fail and templates associated with this configuration will be deleted.\": \"您确定要删除这个预构建设置吗？运行中的工作流可能会失败，与此设置相关的模板将被删除。\",\n\n        // 代码空间-新建预构建设置 /<user-name>/<repo-name>/settings/codespaces/prebuild_configurations/new\n            \"/ New prebuild configuration\": \"/ 新建预构建设置\",\n            // 黄色警告\n                \"Prebuilds consume storage space that will incur a billable charge. Learn more about\": \"预构建会占用存储空间，可能会产生费用。了解更多关于\",\n                \"prebuild configurations\": \"预构建设置\",\n\n            \"Configuration\": \"设置\",\n            \"Your prebuild will be built from the branch and configuration file selected below. Learn more about\": \"您的预构建将从下面选择的分支和配置文件中构建。了解更多关于\",\n            \"prebuild configuration.\": \"预构建的设置。\",\n            \"Select branch\": \"选择分支\",\n            \"Find a branch\": \"查找分支\",\n            \"Configuration File:\": \"设置文件：\",\n            \"Default Codespaces Configuration\": \"默认代码空间设置\",\n\n            \"Access and cost control\": \"访问和成本控制\",\n            \"Prebuild triggers\": \"预构建触发器\",\n            \"You can specify how often to prebuild your codespace based on changes to your repository or a schedule to manage Actions usage.\": \"您可以根据对仓库的更改或管理操作使用的计划来指定预构建代码空间的频率。\",\n            \"Learn about prebuild triggers\": \"了解预构建触发器\",\n            \"Every push\": \"每次推送\",\n                \"Default\": \"默认\",\n                \"Your codespace will prebuild on every push to this branch\": \"您的代码空间将在每次推送到该分支时预构建\",\n            \"Configuration change\": \"配置改变时\",\n                \"Your codespace will prebuild when a change is detected on the devcontainer.json and associated configuration files\": \"当检测到 devcontainer.json 和相关的配置文件有变化时，您的代码空间将预构建。\",\n            \"Scheduled\": \"计划\",\n                \"Your codespace will prebuild on a schedule\": \"您的代码空间将按计划进行预构建\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Every day\": \"每日\",\n                \"Sunday\"    : \"周日\",\n                \"Monday\"    : \"周一\",\n                \"Tuesday\"   : \"周二\",\n                \"Wednesday\" : \"周三\",\n                \"Thursday\"  : \"周四\",\n                \"Friday\"    : \"周五\",\n                \"Saturday\"  : \"周六\",\n            \"Times\": \"时间\",\n                \"Filter\": \"筛选\",\n\n            \"Region availability\": \"区域可用性\",\n            \"Reduce prebuild availability to only specific regions\": \"仅在特定区域提供预构建\",\n                \"By default, your prebuilt image will be available to all regions where codespaces are available and storage costs will apply for each region. You can adjust this to manage your storage usage.\": \"默认情况下，您的预构建镜像将在所有提供代码空间的区域可用，并且每个区域都会产生存储费用。您可以对此进行调整，以管理存储空间的使用。\",\n                \"Learn about region availability\": \"了解区域可用性\",\n                    \"US East\": \"美国东部\",\n                    \"US West\": \"美国西部\",\n                    \"Europe West\": \"欧洲西部\",\n                    \"Southeast Asia\": \"东南亚\",\n                    \"Australia\": \"澳大利亚\",\n            \"Template history\": \"模板历史\",\n                \"You can specify the number of prebuild template versions retained to speed up codespaces from an older commit to manage storage costs. The maximum value is 5 versions.\": \"您可以指定保留的预构建模板版本的数量，以加快旧提交的代码空间，以管理存储成本。最大值为 5 个版本。\",\n                \"Learn about template history\": \"了解模板历史\",\n            \"versions\": \"个版本\",\n\n            \"Failure notifications\": \"失败通知\",\n            \"You can specify users or teams to be notified via e-mail when prebuilds for this particular configuration fail.\": \"您可以指定用户或团队，当这个特定配置的预构建失败时，通过电子邮件通知他们。\",\n            \"Add by username, full name, or team name\": \"按用户名、全名或团队名称添加\",\n            \"You haven't added anyone yet\": \"尚未添加任何人\",\n            \"Add members to receive email notifications when prebuilds fail for this configuration\": \"添加成员，以便在此配置的预构建失败时接收电子邮件通知\",\n            \"Show advanced options\": \"显示高级选项\",\n\n            \"Advanced options\": \"高级选项\",\n            \"You can disable prebuild optimization if you're having issues where codespaces are several commits behind on a specific branch.\": \"如果您遇到代码空间在特定分支上落后多个提交的问题，您可以禁用预构建优化。\",\n            \"Learn about prebuild optimization\": \"了解预构建优化\",\n            \"Disable prebuild optimization\": \"禁用预构建优化\",\n                \"This prevents codespaces from attempting to use an older image to speed up boot time. This could adversely affect performance.\": \"这可以防止代码空间尝试使用旧的映像来加快启动时间。这可能会对性能产生不利影响。\",\n            \"Hide advanced options\": \"隐藏高级选项\",\n\n        // 代码空间-编辑预构建设置 /<user-name>/<repo-name>/settings/settings/codespaces/prebuild_configurations/<id>/edit\n            \"/ Edit configuration\": \"编辑预构建设置\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/pages\"] = { // 仓库设置页面(含组织仓库) /<user-name>/<repo-name>/settings\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // GitHub Pages 页面 /<user-name>/<repo-name>/settings/pages====================================\n            \"is designed to host your personal, organization, or project pages from a GitHub repository.\": \"旨在从 GitHub 仓库托管您的个人、组织或项目页面。\",\n            // 私有库 提醒\n            \"Upgrade or make this repository public to enable Pages\": \"升级或公开该仓库，以启用 GitHub Pages\",\n            \"GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository.\": \"GitHub Pages 旨在从 GitHub 仓库中托管您的个人、组织或项目页面。\",\n            \"Learn more about GitHub Pages\": \"了解更多关于 GitHub Pages 的信息\",\n            // 存档时 提醒\n            \"This repository has been archived. The associated GitHub Pages site remains published but settings are read-only.\": \"该仓库已存档。相关的 GitHub Pages 网站仍然发布，但设置是只读的。\",\n\n            // 已发布时\n            \"Your site is live at\": \"您的站点在\",\n                \"Last\": \"最近\",\n                \"deployed\": \"部署\",\n            \"Visit site\": \"访问网站\",\n            \"Additional site options\": \"站点附加选项\",\n            \"Unpublish site\": \"取消站点发布\",\n                // 顶部提醒\n                    \"GitHub Pages unpublished.\": \"GitHub  Pages 未发布。\",\n\n            \"Build and deployment\": \"构建和部署\",\n                // 顶部提醒\n                    \"GitHub Pages source saved.\": \"GitHub Pages 源已保存。\",\n            \"Source\": \"来源\",\n                // \"GitHub Actions\": \"\",\n                    \"Best for using frameworks and customizing your build process\": \"最适合使用框架和自定义构建过程\",\n                \"Deploy from a branch\": \"从分支部署\",\n                    \"Classic Pages experience\": \"经典页面体验\",\n\n            // GitHub Actions 部署模式\n                \"Send feedback\": \"发送反馈\",\n                \"Use a suggested workflow,\": \"使用建议的工作流程，\",\n                \"browse all workflows\": \"浏览所有工作流程\",\n                \", or\": \"，或\",\n                \"create your own\": \"自建\",\n\n                \"Configure\": \"设置\",\n\n                \"Workflow details will appear here once your site has been deployed.\": \"部署站点后，工作流程详细信息将显示在此处。\",\n                \"View workflow runs.\": \"查看工作流程运行情况。\",\n\n                \"Your site was last deployed to the\": \"您的站点上次部署到\",\n                \"environment by the\": \"环境，由\",\n                \"pages build and deployment\": \"页面构建和部署\",\n                \"workflow.\": \"工作流程。\",\n                \"Learn more about deploying to GitHub Pages using custom workflows\": \"了解更多关于使用自定义工作流程部署到 GitHub Pages 的信息\",\n\n            // 从分支部署模式\n            \"Branch\": \"分支\",\n                // 禁用时\n                \"GitHub Pages is currently disabled. Select a source below to enable GitHub Pages for this repository.\": \"GitHub Pages 目前已被禁用。在下面选择一个源，为该仓库启用 GitHub Pages。\",\n                \"GitHub Pages is currently disabled. You must first add content to your repository before you can publish a GitHub Pages site.\": \"GitHub Pages 目前已被禁用。您必须先将内容添加到您的仓库，然后才能发布 GitHub Pages 站点。\",\n                // 启用时\n                \"Your GitHub Pages site is currently being built from the\": \"您的 GitHub Pages 站点，目前正建立于\",\n                \"folder in the\": \"目录在\",\n                \"branch.\": \"分支。\",\n                \"Learn more about configuring the publishing source for your site\": \"了解更多关于配置网站发布源的信息\",\n\n                \"Select branch\": \"选择分支\",\n                    \"None\": \"无\",\n                \"Select folder\": \"选择文件夹\",\n                    \"/ (root)\": \"/ (根目录)\",\n\n                \"No results found\": \"无结果\",\n\n                \"Learn how to\": \"了解如何\",\n                \"add a Jekyll theme\": \"添加 Jekyll 主题\",\n                \"to your site.\": \"到您的站点。\",\n\n            \"Custom domain\": \"自定义域\",\n                \"Custom domains allow you to serve your site from a domain other than\": \"自定义域允许您从其他域为您的站点提供服务，而不是\",\n                \"Learn more about configuring custom domains\": \"了解更多关于配置自定义域的信息\",\n                    \"Remove\": \"移除\",\n                    \"Check again\": \"再检查一次\",\n                    \"DNS Check in Progress\": \"DNS 检查中\",\n                    \"DNS check successful\": \"DNS 检查成功\",\n                    \"DNS check unsuccessful\": \"DNS 检查失败\",\n                    \"Please wait for the DNS check to complete.\": \"请等待 DNS 检查结束。\",\n                    // [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正确\"],\n                    // [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您网站的 DNS 设置使用的是自定义子域 $1，该子域未设置正确的 CNAME 记录。我们建议您将此 CNAME 记录设置为指向 [YOUR USERNAME].github.io。有关详细信息，请参阅\"],\n\n                    \"DNS records should point to the\": \"DNS记录应该指向\",\n                    \"internationalized domain name\": \"国际化域名\",\n\n                    \"Domain does not resolve to the GitHub Pages server. For more information, see\": \"域名未解析至 GitHub Pages 服务器。更多信息，请参阅\",\n                    \"documentation\": \"文档\",\n                    \"(NotServedByPagesError).\": \"（Pages 服务错误）。\",\n\n                    \"Domain's DNS record could not be retrieved. For more information, see\": \"无法检索域的 DNS 记录。更多信息，请参阅\",\n                    \"(InvalidDNSError).\": \"（DNS 错误）。\",\n\n                    // 顶部提醒\n                    \"No changes to custom domain.\": \"没有对自定义域进行修改。\",\n                    \"Custom domain removed. Please remember to remove any GitHub Pages DNS records for this domain if you do not plan to continue using it with GitHub Pages.\": \"自定义域已删除。如果您不打算继续使用 GitHub Pages，请记得删除此域的任何 GitHub Pages 的 DNS 记录。\",\n\n                \"Enforce HTTPS\": \"强制 HTTPS\",\n                    \"— Unavailable for your site because your domain is not properly configured to support HTTPS (\": \"— 您的网站不可用，因为您的域未正确配置为支持 HTTPS (\",\n                    \"— Unavailable for your site because a certificate has not yet been issued for your domain (\": \"— 您的网站不可用，因为您的域尚未颁发证书 (\",\n                    \"Troubleshooting custom domains\": \"自定义域故障排除\",\n                    \"— Required for your site because you are using the default domain (\": \"— 必须先设置自定义域，目前您正在使用默认域 (\",\n\n                    \"HTTPS provides a layer of encryption that prevents others from snooping on or tampering with traffic to your site.\": \"HTTPS 提供了一层加密，防止他人窥探或篡改您站点的流量。\",\n                    \"When HTTPS is enforced, your site will only be served over HTTPS.\": \"当开启强制 HTTPS 时，您的站点将只通过 HTTPS 提供服务。\",\n                    \"Learn more about securing your GitHub Pages site with HTTPS\": \"了解更多关于使用 HTTPS 保护 GitHub Pages 站点安全的信息\",\n\n            \"Visibility\": \"可见性\",\n                \"GitHub Enterprise\": \"GitHub 企业版\",\n                \"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise. You can try GitHub Enterprise risk-free for 30 days.\": \"使用 GitHub 企业版账户，您可以通过私下发布来限制对 GitHub Pages 站点的访问。您可以使用私下发布的站点与企业成员共享您的内部文档或知识库。 您可以免费试用 GitHub 企业版 30 天。\",\n                //\"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise.\": \"使用 GitHub 企业版账户，您可以通过私下发布来限制对 GitHub Pages 站点的访问。您可以使用私下发布的站点与企业成员共享您的内部文档或知识库。\",\n                \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n                \"Try GitHub Enterprise risk-free for 30 days\": \"免费无风险试用 GitHub 企业版 30 天\",\n                \"Start free for 30 days\": \"免费试用 30 天\",\n                \"Learn more about the visibility of your GitHub Pages site.\": \"了解更多关于 GitHub Pages 站点可见性的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Custom domain \\\"([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?)\\\" saved./, \"自定义域“$1”已保存。\"],\n        [/Both ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) and its alternate name are improperly configured/, \"$1 及其备用名称均配置不正确\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) DNS check is in progress./, \"$1 的 DNS 检查正在进行。\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正确\"],\n        [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您网站的 DNS 设置使用的是自定义子域 $1，该子域未设置正确的 CNAME 记录。我们建议您将此 CNAME 记录设置为指向 [YOUR USERNAME].github.io。有关详细信息，请参阅\"],\n        [/Something went wrong issuing a certificate for ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?). Please contact the Pages team./, \"为 $1 颁发证书时出现问题。请联系 Pages 团队。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/settings/security_analysis\"] = { // 仓库设置 - 高级安全 /<user-name>/<repo-name>/settings/security_analysis\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 高级安全 /<user-name>/<repo-name>/settings/security_analysis\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository. Unarchive your repository to access additional features.\": \"高级安全功能有助于保护您的仓库安全并及时更新。启用这些功能，即表示您授权我们对您的代码库执行只读分析。请解除仓库的归档状态以使用更多功能。\", // 存档仓库\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository.\": \"高级安全功能有助于保护您的仓库安全并保持更新。启用这些功能，即表示您授权我们对您的仓库执行只读分析。\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n\n            \"Dependency graph\": \"依赖项关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n\n                // 禁用对话框\n                    \"Disable dependency graph\": \"禁用依赖项关系图\",\n                        \"Disabling the dependency graph will also disable Dependabot alerts and Dependabot security updates.\": \"禁用依赖项关系图也将同时禁用 Dependabot 警报和 Dependabot 安全更新。\", // Dependabot 警报和 Dependabot 安全更新启用时\n                        \"Disabling the dependency graph will also disable Dependabot alerts.\": \"禁用依赖项关系图也将同时禁用 Dependabot 警报。\", // Dependabot 警报启用, Dependabot 安全更新未启用时\n\n                // 启用时\n                \"Automatic dependency submission\": \"自动提交依赖项\",\n                    \"Automatically detect and report build-time dependencies for select ecosystems.\": \"自动检测并报告选定生态系统的构建时依赖项。\",\n                    // 启用\n                        \"Use standard GitHub runners\": \"使用标准 GitHub 运行器\",\n                    \"Enabled for labeled runners\": \"为有标签的运行器启用\",\n                        \"Use runners labeled with 'dependency-submission'\": \"使用带 “dependency-submission” 标签的运行器\",\n                        \"No runners with this label assigned to repository\": \"没有为仓库分配带有此标签的运行器\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖项的安全和最新。\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖项的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                    \"Configure alert notifications\": \"配置警报通知\",\n\n                    // 启用时\n                    \"Dependabot rules\": \"Dependabot 规则\",\n                        \"Create your own custom rules and manage alert presets.\": \"创建您自己的自定义规则并管理警报预设。\",\n                        \"Review and manage alert presets.\": \"查看和管理警报预设。\", //私有库\n                        // [/(\\d+) rules? enabled/, \"已启用 $1 条规则\"],\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。如果您想要更具体的配置选项，请将其禁用并使用\",\n                        // \"Dependabot rules\": \"Dependabot 规则\",\n\n                    // 启用对话框\n                        \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                            \"Dependabot security updates needs the dependency graph and Dependabot alerts to be enabled, so we'll turn them on too.\": \"Dependabot 安全更新需要启用依赖关系图和 Dependabot 警报，因此我们也将启用他们。\",\n                            \"Dependabot security updates needs Dependabot alerts to be enabled, so we'll turn that on too.\": \"Dependabot 安全更新需要启用 Dependabot 警报，因此我们也将启用它。\",\n\n                \"Grouped security updates\": \"分组安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。该选项可被 dependabot.yml 中指定的组规则覆盖 -\",\n                    \"learn more here\": \"在此了解更多\",\n\n                    // 启用对话框\n                        \"Grouped security updates needs the dependency graph, Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too\": \"分组安全更新需要启用依赖项关系图、Dependabot 警报和 Dependabot 安全更新，因此我们也将启用他们。\",\n                        \"Grouped security updates needs Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too.\": \"分组安全更新需要启用 Dependabot 警报和 Dependabot 安全更新，因此我们也将启用他们。\",\n                        \"Grouped security updates needs Dependabot security updates to be enabled, so we'll turn that on too.\": \"分组安全更新需要启用 Dependabot 安全更新，因此我们也将启用它。\",\n\n                \"Dependabot version updates\": \"Dependabot 版本更新\",\n                    \"Allow Dependabot to open pull requests automatically to keep your dependencies up-to-date when new versions are available.\": \"允许 Dependabot 自动打开拉取请求，以便在有新版本时保持您的依赖项是最新的。\",\n                    \"Learn more about configuring a dependabot.yml file\": \"了解更多关于配置 dependabot.yml 文件的信息\",\n                    \"Configure\": \"配置\",\n\n                // \"Dependabot on Actions runners\": \"Dependabot 应用于操作运行器\",\n                //     \"Run Dependabot security and version updates on Actions runners.\": \"在操作运行器上运行 Dependabot 安全和版本更新。\",\n\n                // \"Dependabot on self-hosted runners\": \"Dependabot 应用于自托管运行器\",\n                //     \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自托管运行程序上运行 Dependabot 安全和版本更新。\",\n\n            \"Code scanning\": \"代码扫描\",\n                \"Automatically detect common vulnerabilities and coding errors.\": \"自动检测常见漏洞和编码错误。\",\n\n                // 组织仓库\n                    // 提示区\n                        \"Code scanning with GitHub Actions is not available for this repository.\": \"使用 GitHub Actions 进行代码扫描不适用于该仓库。\",\n\n                        \"GitHub Actions is disabled on this repository because it is a fork. To use code scanning please\": \"GitHub 操作已在此仓库禁用，因为它是一个复刻。要使用代码扫描，请\",\n                        \"enable it\": \"启用它\",\n\n                        \"GitHub Actions is disabled on this repository by an enterprise or organization policy. To use code scanning, please ask your organization administrator to enable Actions, or\": \"由于企业或组织策略，此仓库中禁用了 GitHub Actions。要使用代码扫描，请请求您的组织管理员启用 GitHub Actions，或者\",\n                        \"submit code scanning results externally using the API\": \"使用 API 在代码扫描外部结果\",\n\n                    \"Prevent direct alert dismissals\": \"防止直接解除警报\",\n                        \"Actors must submit requests to dismiss an alert. This can impact pull requests requiring code scanning dismissal to merge.\": \"参与者必须提交解除警报的请求。这可能会影响需要解除代码扫描警报才能合并的拉取请求。\",\n\n                \"Tools\": \"工具\",\n                    \"CodeQL analysis\": \"CodeQL 分析\",\n                        \"Identify vulnerabilities and errors with\": \"识别代码中的漏洞和错误，通过\",\n                        \"for\": \"为\",\n                        \"eligible\": \"符合条件的\",\n                        \"repositories.\": \"仓库。\",\n\n                        \"Default setup\": \"默认设置\",\n                        \"Last scan\": \"最后一次扫描\",\n\n                        //未启用时\n                        \"Set up\": \"设置\",\n                            \"Default\": \"默认\",\n                                \"CodeQL will automatically find the best configuration for your repository.\": \"CodeQL 将自动给您的仓库找到最佳配置。\",\n                                // \"Languages detected in this repository are not compatible with this setup type at this time. Use the advanced setup instead.\": \"目前，该仓库中检测到的语言与该设置类型不兼容。请使用高级设置。\",\n                            \"Advanced\": \"高级\",\n                                \"Customize your CodeQL configuration via a YAML file checked into the repository.\": \"通过仓库中的 YAML 文件定制您的 CodeQL 配置。\",\n                            // \"Not supported\": \"不支持\",\n                            // \"Languages on this repository are not compatible with this feature. Learn more about\": \"该仓库上的语言与此功能不兼容。了解更多关于\",\n                            // \"supported languages and frameworks\": \"所支持的语言和框架\",\n\n                            // CodeQL 默认设置对话框\n                                \"CodeQL default configuration\": \"CodeQL 默认设置\",\n                                \"These languages were detected on the default branch of this repository.\": \"这些语言是在该仓库的默认分支上检测到的。\",\n                                //1 of 1 languages selected\n                                \"Query suites\": \"查询套件\",\n                                    \"Group of queries\": \"查询套件\",\n                                    \"to run against your code.\": \"针对您的代码运行。\",\n\n                                    // \"默认\n                                        \"Recommended\": \"推荐\",\n                                        \"CodeQL high-precision queries.\": \"CodeQL 高精度查询。\",\n                                \"Runner type\": \"运行器类型\",\n                                    \"This is the runner default setup will use to run\": \"这是运行器默认设置将用于运行\",\n                                    \"Standard GitHub runner\": \"标准 GitHub 运行器\",\n                                \"Scan events\": \"扫描事件\",\n                                    \"These events will trigger a new scan.\": \"这些事件将触发新的扫描。\",\n                                    \"On push and pull requests to\": \"推送和拉取请求到\",\n                                        \"protected branches\": \"受保护的分支\",\n                                    \"On a weekly schedule\": \"每周计划\",\n                                        \"Next scan of\": \"下次扫描\",\n                                \"Enable CodeQL\": \"启用 CodeQL\",\n\n                                \"Setting up\": \"设置中\",\n                                \"View setup log\": \"查看设置日志\",\n\n                                // 顶部提醒\n                                    \"Repository settings saved. This initial setup might take a while because CodeQL will perform a full scan of the repository.\": \"仓库设置已保存。此初始设置可能需要一段时间，因为 CodeQL 将对仓库执行完整扫描。\",\n\n                        // 启用后, 三个点菜单\n                            \"View last scan log\": \"查看最近一次扫描日志\",\n                            \"View Code Scanning alerts\": \"查看代码扫描警报\",\n                            \"View CodeQL configuration\": \"查看 CodeQL 设置\",\n                            \"Switch to advanced\": \"切换到高级\",\n                            // 切换到 CodeQL 工作流程对话框\n                                \"Switch to a CodeQL workflow?\": \"切换到 CodeQL 工作流程？\",\n                                    \"To switch to a workflow-based configuration, we must disable CodeQL first. CodeQL will stop analyzing code and resume once a valid workflow file is committed to the repository.\": \"要切换到基于工作流的配置，我们必须先禁用 CodeQL。CodeQL 将停止分析代码，并在有效的工作流文件提交到仓库后恢复分析。\",\n                            \"Disable CodeQL\": \"禁用 CodeQL\",\n                                // 禁用对话框\n                                    \"Disable CodeQL?\": \"禁用 CodeQL？\",\n                                    \"CodeQL will stop analyzing code from this repository. Existing alerts will remain open; you can dismiss them but not close them as fixed, as CodeQL needs to be enabled for that to happen. Existing CodeQL Actions workflows on this repository must be\": \"CodeQL 将停止分析该仓库中的代码。现有的警报将保持打开；您可以忽略它们，但不能关闭它们，因为 CodeQL 需要启用才能关闭。要\",\n                                    \"manually re-enabled to resume previous analyses\": \"恢复先前的分析，必须手动重新启用\",\n\n                    \"Other tools\": \"其他工具\",\n                        \"Add any third-party code scanning tool.\": \"添加任意第三方代码扫描工具。\",\n                        \"Explore workflows\": \"探索工作流程\",\n\n                    \"Copilot Autofix\": \"Copilot 自动修复\",\n                        \"Suggest fixes for CodeQL alerts using AI. CodeQL default or advanced setup must be enabled for this feature to work. Learn more about the\": \"使用 AI 为 CodeQL 警报提出修复建议。必须启用 CodeQL 默认设置或高级设置才能使用此功能。了解更多关于\",\n                        \"limitations of autofix code suggestions\": \"自动修复代码建议的限制\",\n                        \"On\": \"开\",\n                        \"Off\": \"关\",\n\n                    // 组织设置\n                    // \"Copilot Autofix for third-party tools\": \"适用于第三方工具的 Copilot 自动修复\",\n                    //     \"Suggest fixes for third-party alerts using AI. Ensure that these tools are properly configured or that an analysis is uploaded for this feature to work. Learn more about the\": \"使用人工智能对第三方警报提出修复建议。确保这些工具已正确配置或已上传分析，以便此功能正常工作。了解更多关于\",\n                    //     \"limitations of autofix code suggestions for third party tools\": \"第三方工具自动修复代码建议的限制\",\n\n                \"Protection rules\": \"保护规则\",\n                    \"Check runs failure threshold\": \"检查运行失败阀值\",\n                        \"Select the alert severity level for code scanning check runs to fail.\": \"选择代码扫描检查运行失败的警报严重性级别。\",\n                        \"Create a branch ruleset\": \"创建分支规则集\",\n                        \"to prevent a branch from merging when these checks fail.\": \"以防止分支在这些检查失败时被合并。\",\n\n                        \"Security alert severity level:\": \"安全警报级别：\",\n                            \"None\": \"无\",\n                            \"Only critical\": \"仅关键风险\",\n                            \"High or higher\": \"高风险及以上\",\n                            \"Medium or higher\": \"中风险及以上\",\n                            \"Any\": \"任何\",\n                        \"Standard alert severity level:\": \"标准警报级别：\",\n                            \"Only errors\": \"仅错误\",\n                            \"Errors and warnings\": \"错误和警告\",\n\n                // 顶部提醒\n                \"Code Scanning alert severity settings saved.\": \"代码扫描警报严重性设置已保存。\",\n\n            \"Secret Protection\": \"机密保护\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 会始终向合作伙伴发送检测到公共仓库中机密的警报。\",\n                \"Learn more about partner patterns\": \"了解更多关于合作伙伴模式的信息\",\n\n                // 开启对话框\n                    \"Enable Secret Protection\": \"启用机密保护\",\n                        \"This will enable Secret Protection for your repository.\": \"这将为您的仓库启用机密保护。\",\n                        \"Enable secret scanning alerts\": \"启用机密扫描警报\",\n                        \"No additional licenses will be consumed.\": \"不会消耗额外的许可。\",\n\n                //开启后\n                    \"Push protection\": \"推送保护\",\n                    \"Block commits that contain\": \"阻止推送包含\",\n                    \"supported secrets\": \"支持的机密\",\n\n            // 组织仓库\n                \"Access to alerts\": \"访问警报\",\n                \"Admins, users, and teams in the list below have permission to view and manage code scanning, Dependabot, or secret scanning alerts. These users may be notified when a new vulnerability is found in one of this repository's dependencies and when a secret or key is checked in. They will also see additional details when viewing Dependabot security updates. Individuals can manage how they receive these alerts in their\": \"以下列表中的管理员、用户和团队有权限查看和管理代码扫描、Dependabot 或机密扫描警报。当在此仓库的依赖项之一中发现新的漏洞，以及当机密或令牌被嵌入时，可能会通知这些用户。在查看 Dependabot 安全更新时，他们还会看到其他详细信息。用户可以管理他们如何接收这些警报，在他们的\",\n                \"notification settings\": \"通知设置\",\n\n                \"Choose the people or teams you would like to grant access\": \"选择您希望授予访问权限的人员或团队\",\n                    \"Search for people or teams\": \"搜索人员或团队\",\n                        \"You have reached the maximum number of people and teams you can add.\": \"您已达到可添加的人员和团队数量上限。\",\n                        \"Remove one or more to continue adding others.\": \"请移除一个或多个以继续添加其他成员。\",\n                \"People and teams with access\": \"拥有访问权限的人员和团队\",\n                \"Organization administrators, repository administrators, and teams with the security manager role\": \"具有安全管理员角色的组织管理员、仓库管理员和团队\",\n                \"These members always see code scanning, Dependabot, and secret scanning alerts.\": \"这些成员始终能够查看代码扫描、Dependabot 和机密扫描警报。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) rules? enabled/, \"已启用 $1 条规则\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Advanced Security/, \"设置 · 高级安全\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/keys\"] = { // 仓库设置 - 部署密钥 /<user-name>/<repo-name>/settings/keys\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 部署密钥 页面 /<user-name>/<repo-name>/settings/keys====================================\n            \"We recommend using\": \"我们建议使用\",\n            \"instead for fine grained control over repositories and\": \"来对仓库进行细粒度控制并\",\n            \"enhanced security\": \"增强安全性\",\n            \"use an SSH key to grant readonly or write access to a single repository. They are not protected by a passphrase and can be a security risk if your server is compromised. If you have a complex project or want more fine-grain control over permissions, consider using\": \"使用 SSH 密钥授予对单个仓库的只读或写入访问权限。它们不受密码保护，如果您的服务器受到威胁，则可能存在安全风险。如果您的项目很复杂或想要更精细地控制权限，请考虑使用\",\n            \"instead.\": \"。\",\n            \"Add deploy key\": \"添加部署密钥\",\n            \"There are no deploy keys for this repository\": \"此仓库暂无部署密钥\",\n            \"Check out our\": \"查看我们的\",\n            \"guide on deploy keys\": \"部署密钥指南\",\n            \"to learn more.\": \"了解更多。\",\n            \"Last used within the last week\": \"最后一次使用是最近 1 周之内\",\n            \"— Read/write\": \"— 读取和写入权限\",\n            \"— Read\": \"— 读取权限\",\n\n            // 密钥删除对话框\n            \"Are you sure you want to delete this SSH key?\": \"您确定要删除此 SSH 密钥吗？\",\n            \"This action\": \"该操作\",\n            \"cannot\": \"不能\",\n            \"be undone. This will permanently delete the SSH key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤销。这将永久地删除 SSH 密钥，如果您想在未来使用它，您将需要再次上传它。\",\n            \"I understand, delete this SSH key\": \"我明白了，依然删除该 SSH 密钥\",\n\n            // 顶部提醒\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功删除该密钥。\",\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n\n        // 部署密钥新建 页面 /<user-name>/<repo-name>/settings/keys/new====================================\n            \"/ Add new\": \"/ 新添\",\n            \"Title\": \"标题\",\n            \"Key\": \"密钥\",\n            \"Allow write access\": \"允许写访问\",\n            \"Can this key be used to\": \"该密钥允许\",\n            \"push\": \"推送\",\n            \"Begins with\": \"以\",\n            \"to this repository? Deploy keys always have pull access.\": \"到这个仓库？部署密钥始终具有拉取访问权限。\",\n            \"Add key\": \"添加密钥\",\n            // 顶部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密钥无效。您必须提供 OpenSSH 公钥格式的密钥\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Last used within the last (\\d+) weeks?/, \"最后一次使用是最近 $1 周之内\"], // /keys\n        [/Last used within the last (\\d+) months?/, \"最后一次使用是最近 $1 个月之内\"], // /keys\n    ],\n    \"title\": {\n        \"static\": {\n            \"Deploy keys\": \"部署密钥\",\n            \"Add deploy key\": \"添加部署密钥\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/secrets\"] = { // 仓库设置 - 机密 /<user-name>/<repo-name>/settings/secrets\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作机密 /<user-name>/<repo-name>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作机密和变量\",\n            \"New repository secret\": \"新建仓库机密\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"机密和变量允许您管理可重复使用的配置数据。机密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"并用于敏感数据。\",\n            \"Learn more about encrypted secrets\": \"了解更多关于加密机密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。变量显示为纯文本，用于\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"数据。\",\n            \"Learn more about variables\": \"了解更多关于变量的信息\",\n\n            \"Anyone with collaborator access to this repository can use these secrets and variables for actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何有协作者权限的人都可以使用这些机密和变量进行操作。它们不会被传递到由复刻的拉取请求触发的工作流中。\",\n\n            \"Secrets\": \"机密\",\n            \"Variables\": \"变量\",\n\n            \"Updated\": \"更新于\",\n            \"Remove\": \"移除\",\n\n            // 顶部提醒\n            \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败。机密名称只能包含字母数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许有空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n            \"Secret names must not start with GITHUB_.\": \"机密名称不能以“GITHUB_”开头。\",\n\n            \"Environment secrets\": \"环境机密\",\n                \"This environment has no secrets.\": \"此环境尚无机密。\",\n                \"Manage environment secrets\": \"管理环境机密\",\n\n            \"Repository secrets\": \"仓库机密\",\n                \"This repository has no secrets.\": \"此仓库尚无机密。\",\n                \"Last updated\": \"最近更新时间\",\n\n            //组织仓库\n            \"Secrets can also be created at the organization level and authorized for use in this repository.\": \"机密也可以在组织层面上创建，并授权在这个仓库中使用。\",\n            \"Organization secrets\": \"组织机密\",\n            \"Manage organization secrets\": \"管理组织机密\",\n            \"Organization secrets can only be used by public repositories on your plan.\": \"组织机密只能由您计划中的公共仓库使用。\",\n            \"If you would like to use organization secrets in a private repository, you will need to upgrade your plan.\": \"如果您想在私有仓库中使用组织机密，则需要升级您的计划。\",\n\n            // 删除机密对话框\n            \"Delete secret\": \"删除机密\",\n                \"Are you sure you want to delete\": \"您确定要删除\",\n                \"Yes, delete this secret\": \"是的，删除该机密\",\n                \"Yes, delete this\": \"是的，删除该\",\n                \"secret\": \"机密\",\n\n            // 顶部提醒\n                \"Repository secret added.\": \"添加了仓库机密。\",\n                \"Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"机密名称只能包含字母数字字符([a-z]、[A-Z]、[0-9])或下划线 (_)。不允许使用空格。必须以字母（[a-z]、[A-Z]）或下划线 (_) 开头。\",\n\n        // 操作变量 /<user-name>/<repo-name>/settings/variables/actions\n            \"Environment variables\": \"环境变量\",\n                \"This environment has no variables.\": \"此环境尚无变量。\",\n                \"Manage environment variables\": \"管理环境变量\",\n\n                \"Environment\": \"环境\",\n\n            \"Repository variables\": \"仓库变量\",\n                \"New repository variable\": \"新建仓库变量\",\n                \"This repository has no variables.\": \"此仓库尚无变量。\",\n\n            // 删除变量对话框\n            \"Delete variable\": \"删除变量\",\n                \"Yes, delete this variable\": \"是的，删除该变量\",\n                \"variable\": \"变量\",\n\n        // 新建仓库机密 /<user-name>/<repo-name>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作机密\",\n            \"/ New secret\": \"/ 新建机密\",\n\n            \"Name\": \"名称\",\n            \"Secret\": \"机密\",\n\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n        // 新建仓库变量 /<user-name>/<repo-name>/settings/variables/actions/new\n            \"Actions variables\": \"操作变量\",\n            \"/ New variable\": \"/ 新建变量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：变量值是以纯文本形式暴露的。如果您需要对敏感信息进行加密和屏蔽，请使用\",\n            \"create a secret\": \"创建机密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"变量名称只能包含字母数字字符（[A-Z]，[A-Z]，[0-9]）或仅下划线（_）。\",\n            \"Variable names cannot start with a number.\": \"变量名称不能以数字开头。\",\n            \"Variable names cannot start with\": \"变量名称不能以\",\n            \"prefix.\": \"前缀开头。\",\n\n            \"Add variable\": \"添加变量\",\n                \"Adding…\": \"添加中…\",\n\n        // 更新操作机密 /<user-name>/<repo-name>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新机密\",\n\n            \"Value\": \"值\",\n\n            \"Update secret\": \"更新机密\",\n\n        // 代码空间机密 /<user-name>/<repo-name>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"代码空间机密\",\n            \"Development environment secrets are environment variables that are\": \"开发环境机密是环境变量\",\n            \". Secrets are not passed to forks.\": \"。机密不会传递给复刻。\",\n\n            \"Repository development environment secrets\": \"仓库开发环境机密\", // 组织仓库\n            \"Organization development environment secrets\": \"组织开发环境机密\", // 组织仓库\n\n        // Dependabot 机密 /<user-name>/<repo-name>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 机密\",\n            \"Secrets are credentials that are\": \"机密是凭证\",\n            \". Anyone with\": \"。任何对此仓库具有\",\n            \"collaborator\": \"协作者\",\n            \"access to this repository can use these secrets for Dependabot.\": \"访问权限的人可以将这些机密用于 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"机密不会传递给复刻。\",\n            \"Encrypted secrets allow you to store private access tokens so that Dependabot can update dependencies from private registries.\": \"加密的机密允许您存储私有访问令牌，以便 Dependabot 可以从私有注册表更新依赖项。\",\n\n            // 组织仓库\n            \"No organization secrets have been authorized for this repository.\": \"该仓库暂无授权任何组织机密。\",\n            // [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的组织机密可以管理，在\"],\n            \"organization settings\": \"组织设置\",\n\n            // 顶部提醒\n            \"Secret updated.\": \"机密已更新\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n        [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的组织机密可以管理，在\"], // /secrets/dependabot\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions secrets/, \"操作机密\"],\n            [/Add Actions secret/, \"新建操作机密\"],\n            [/Actions variables/, \"操作变量\"],\n            [/Add Actions variable/, \"新建操作变量\"],\n            [/Codespaces secrets/, \"代码空间机密\"],\n            [/Add Codespaces secret/, \"新建代码空间机密\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"repository/settings/variables\"] = I18N[\"zh-CN\"][\"repository/settings/secrets\"];\n\nI18N[\"zh-CN\"][\"repository/settings/installations\"] = { // 仓库设置 - GitHub 应用 /<user-name>/<repo-name>/settings/installations\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 集成应用 页面 /<user-name>/<repo-name>/settings/installations====================================\n        // 全局设置在 Applications 应用 /settings/installations\n            \"Installed GitHub Apps\": \"安装的 GitHub 应用\",\n            \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 应用通过商业、开源和自主开发的工具来增强和扩展您在 GitHub 上的工作流程。\",\n            \"Configure\": \"配置\",\n\n            \"There aren't any GitHub Apps installed on this repository.\": \"此仓库上未安装任何 GitHub 应用。\",\n            \"Suspended\": \"已暂停\",\n            \"Developed by\": \"开发者:\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 应用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/notifications\"] = { // 仓库设置 - 邮件通知 /<user-name>/<repo-name>/settings/notifications/edit\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        // 邮件通知管理 页面 /<user-name>/<repo-name>/settings/notifications/edit ====================================\n            \"Setup email addresses to receive notifications when push events are triggered.\": \"设置电子邮箱地址，以便在推送事件被触发时收到通知。\",\n            \"Asterisk (*) denotes a required field\": \"星号 (*) 表示必填字段\",\n            \"Address\": \"电子邮箱地址\",\n            \"Whitespace separated email addresses (at most two).\": \"用空格分隔的电子邮箱地址（最多两个）。\",\n            \"Approved header\": \"批准的标题\",\n            \"Sets the\": \"设置\",\n            \"Active\": \"激活\",\n            \"header to automatically approve the message in a read-only or moderated mailing list.\": \"标头以自动批准只读或审核邮件列表中的邮件。\",\n            \"We will send notification emails to the listed addresses when a\": \"我们将向所列地址发送通知邮件，当\",\n            \"event is triggered.\": \"事件被触发。\",\n            \"Setup notifications\": \"设置通知\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Configure email notifications\": \"配置电子邮件通知\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/settings/key_links\"] = { // 仓库设置 - 自动链接引用（注：只有专业版有） /<user-name>/<repo-name>/settings/key_links\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n\n        \"Add autolink reference\": \"添加自动链接引用\",\n\n        \"References to GitHub issues, pull requests, and commits are automatically converted into links. Configure your own autolink references for non-GitHub URLs.\": \"GitHub 问题、拉取请求和提交的引用会自动转换为链接。为非 GitHub URL 配置您自己的自动链接引用。\",\n            \"Learn more about automatic autolinks.\": \"了解更多有关自动链接的信息。\",\n        \"Autolinks can be either alphanumeric or numeric.\": \"自动链接可以是字母或数字。\",\n            \"Read more about the differences between the two.\": \"了解两者之间的区别。\",\n\n        \"No custom autolink references have been created yet.\": \"尚未创建自定义自动链接引用。\",\n\n        // 新建 <user-name>/<repo-name>/settings/key_links/new\n            \"/ Add new\": \"/ 添加\",\n                \"Alphanumeric\": \"字母数字\",\n                    \"Alphanumeric autolinks match\": \"匹配\",\n                    \". They are not case sensitive.\": \"。不区分大小写。\",\n                \"Numeric\": \"纯数字\",\n                    \"Numeric autolinks only match\": \"只匹配\",\n\n                \"Reference prefix\": \"引用前缀\",\n                    \"This prefix appended by a string will generate a link any time it is found in an issue, pull request, or commit.\": \"这段前缀加上一个字符串后，在议题、拉取请求或提交中找到时将生成一个链接。\",\n                \"Target URL\": \"目标链接\",\n                    \"The URL must contain\": \"该链接必须包含\",\n                    \"for the reference number.\": \"作为引用编号。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Autolink references\": \"自动链接引用\",\n            \"Add autolink reference\": \"添加自动链接引用\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/transfer\"] = { // 转让仓库\n    \"static\": { // 静态翻译\n\n        // 转让仓库 /<user-name>/<repo-name>/transfer\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"将该仓库转让给另一位用户或一个您可以创建仓库的组织。\",\n            \"Required fields are marked with an asterisk (*).\": \"带星号 (*) 的为必填项。\",\n            \"To understand admin access, teams, issue assignments, and redirects after a repository is transferred, see\": \"要了解仓库转移后的管理员访问权限、团队、议题分配和重定向，请参阅\",\n            \"Transferring a repository\": \"转让仓库\",\n            \"in GitHub Help.\": \"在 GitHub 帮助中。\",\n            \"Transferring may be delayed until the new owner approves the transfer.\": \"转让可能会延迟，直到新所有者批准转让。\",\n            \"There\": \"有\",\n            \"are\": \" \",\n            \"is\": \" \",\n            \"that may be affected by this transfer.\": \"可能受到这次转让的影响。\",\n            \"New owner\": \"新所有者\",\n            \"Select one of my organizations\": \"选择一个我的组织\",\n            \"Choose an owner\": \"选择所有者\",\n            \"Filter…\": \"筛选…\",\n            \"Specify an organization or username\": \"指定组织或用户名\",\n            \"Repository name\": \"仓库名\",\n                \"Checking availability…\": \"检查可用性…\",\n                \"The repository\": \"仓库\",\n                \"already exists on this account\": \"已经存在于此账户\",\n                \"Your new repository will be created as\": \"您的新仓库将被创建为\",\n                \"New repository name must not be blank\": \"新仓库名称不能为空\",\n\n            // 私有仓库转让\n                \"If\": \"如果\",\n                \"username\": \"用户名\",\n                \"is using\": \"使用\",\n                \"and accepts the transfer, they will lose access to private repository features:\": \"并接受转移，他们将失去对私有仓库功能的访问：\",\n                \"Code owners\": \"代码所有者\",\n                \"Any existing\": \"任何已存在的\",\n                \"wikis\": \"WiKi\",\n                \"Pulse, Contributors, Community, Traffic, Commits, Code Frequency, Network,\": \"统计，贡献者，社区，流量，提交，代码频率，网络，\",\n                \"Forks\": \"复刻\",\n                \"on the\": \"在\",\n                \"Insights\": \"洞察\",\n                \"tab\": \"标签页\",\n                \"Draft\": \"草案\",\n                \"PRs\": \"拉取请求\",\n                \"Multiple assignees\": \"多个受让人\",\n                \"for issues and PRs\": \"的议题和拉取请求\",\n                \"Multiple reviewers\": \"多个审查者\",\n                \"for PRs\": \"的拉去请求\",\n                \"Branch and tag protection rules\": \"分支和标签保护规则\",\n\n                \"can\": \"可\",\n                \"upgrade\": \"升级\",\n                \"their plan before accepting the transfer to avoid losing access.\": \"他们的计划在接受转让之前，以避免失去访问权。\",\n\n            \"Individual users, teams, and apps will be removed from the following options:\": \"个人用户、团队和应用将从以下选项中删除：\",\n                \"Repository ruleset bypassers\": \"仓库规则旁路设置\",\n                \"Protected branch pull request bypassers\": \"受保护分支拉取请求旁路设置\",\n                \"Protected branch authorized pull request review dismissers\": \"受保护分支授权拉取请求审核驳回者\",\n                \"Protected branch authorized pushers\": \"受保护分支授权的推送者\",\n                \"Protected branch allowed force pushers\": \"受保护分支允许强制推送者\",\n\n            \"Warning: This is a potentially destructive action.\": \"警告：这是一个潜在的破坏性行为。\",\n\n            \"to confirm.\": \"进行确认。\",\n            \"I understand, transfer this repository.\": \"我明白了，依然转让该仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Transfer repository:/, \"转让仓库:\"],\n        [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n        [/is available./, \"名称可用。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/codespaces\"] = { // 仓库 - 代码空间界面 /<user-name>/<repo-name>/codespaces\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        // 仓库 - 代码空间界面 /<user-name>/<repo-name>/codespaces\n            \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 代码空间入门\",\n                \"Learn core concepts\": \"学习核心概念\",\n                    \"New to Codespaces?\": \"刚接触代码空间？\",\n                    \"Start here\": \"从这里开始\",\n                    \". Learn the core concepts and how to get started.\": \"。学习核心概念以及如何开始。\",\n                \"Configure and manage\": \"配置和管理\",\n                    \"Learn more about features like\": \"了解更多关于功能的信息，例如\",\n                    \"secret management\": \"机密管理\",\n                    \"port forwarding\": \"端口转发\",\n                \"Develop locally\": \"在本地开发\",\n                    \"Access codespaces from within\": \"从内部访问代码空间，使用\",\n\n            \"Go to docs\": \"转到文档\",\n            // [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n                    \"2-core • 8GB RAM • 32GB\": \"双核 • 8GB 内存 • 32GB 硬盘\",\n                \"Configure and create codespace\": \"配置并创建代码空间\",\n                    \"Show advanced options before launching codespace\": \"启动代码空间前显示高级选项\",\n            \"Opening in codespace\": \"在代码空间中打开\",\n\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 内存 • 32GB 硬盘\",\n\n            // [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n            \"Retrieving…\": \"正在检索…\",\n            \"Active\": \"活跃\",\n            \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名代码空间\",\n                    \"Name\": \"名称\",\n                \"Export changes to a branch\": \"将更改导出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"检查分支情况\",\n                    \"Create branch\": \"创建分支\",\n                \"Export changes to a fork\": \"将更改导出到复刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                    \"Create fork\": \"创建复刻\",\n                \"Change machine type\": \"修改机器类型\",\n                    \"Change codespace machine type\": \"修改代码空间机器类型\",\n                        \"Machine type\": \"机器类型\",\n                            \"2-core\": \"双核\",\n                            \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n                        \"Update codespace\": \"更新代码空间\",\n                \"Stop codespace\": \"停止代码空间\",\n                \"Auto-delete codespace\": \"自动删除代码空间\",\n                \"Open in Browser\": \"在浏览器中打开\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Create codespace on ([^ ]+)/, \"在 $1 上创建代码空间\"],\n        [/(\\d+) codespaces?/, \"$1 个代码空间\"],\n        [/Last used ([^ ]+)/, \"上次使用 $1\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/custom-properties\"] = { // 仓库 - 自定义属性 https://github.com/<uesr-name>/<repo-name>/custom-properties\n    \"static\": {\n        \"Custom properties\": \"自定义属性\",\n        \"Custom properties allow you to decorate your repository with information such as compliance frameworks, data sensitivity, or project details.\": \"自定义属性允许您为仓库添加信息，例如合规框架、数据敏感性或项目详情。\",\n\n        // 面板\n        \"No custom properties set for this repository.\": \"该仓库尚未设置自定义属性。\",\n        \"Learn more about custom properties\": \"了解更多关于自定义属性的信息\",\n        \"and how to set them at the organization level.\": \"以及如何在组织级别进行设置。\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"repository/codespaces\"] = { // 仓库 - 内容举报 /<user-name>/<repo-name>/reported_content\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n\n        \"Reported content\": \"内容举报\",\n        \"Users can report abusive or distruptive content for review and moderation.\": \"用户可以举报辱骂性或破坏性内容，以供审查和审核。\",\n        \"Learn more about reported content\": \"了解更多关于举报内容的信息。\",\n        \"Report content setting\": \"举报内容设置\",\n        \"All users\": \"所有用户\",\n        \"Any user on GitHub is able to report content\": \"GitHub 上的任何用户都可以举报内容\",\n        \"Prior contributors and collaborators\": \"先前的贡献者和协作者\",\n        \"Only users who have previously contributed to the repository and collaborators will be able to report content\": \"只有之前曾为仓库做出贡献的用户和协作者才能够举报内容\",\n        \"Disable content reporting\": \"禁用内容举报\",\n        \"Disable content reporting for all users\": \"为所有用户禁用内容举报\",\n        \"Abuse reports\": \"滥用报告\",\n        \"The following content has been reported by users:\": \"以下内容已被用户举报：\",\n        \"Reported Content\": \"未解决\",\n        \"Resolved\": \"已解决\",\n        \"There aren't any unresolved content reports for this repository.\": \"此仓库没有任何未解决的内容举报。\",\n        \"There aren't any resolved content reports for this repository.\": \"此仓库没有任何已解决的内容举报。\",\n    },\n    \"regexp\": [ // 正则翻译\n\n    ],\n};\n\n// 仓库相关==\n\nI18N[\"zh-CN\"][\"homepage\"] = { // 未登录的首页\n    \"static\": { // 静态翻译\n        //\"GitHub Copilot is now available for free.\": \"免费使用 GitHub Copilot。\",\n        //\"Let’s build from here\": \"让我们从这里开始\",\n        //\"The world’s leading AI-powered developer platform.\": \"全球领先的人工智能开发者平台。\",\n        //\"Build and ship software on a single, collaborative platform\": \"在单一协作平台上构建和发布软件\",\n        //\"Join the world’s most widely adopted AI-powered developer platform.\": \"加入全球最广泛采用的人工智能开发者平台\",\n        //\"Join the world’s most widely adopted AI-powered developer platform where millions of developers, businesses, and the largest open source community build software that advances humanity.\": \"加入全球最广泛采用的人工智能开发者平台，在这里，数百万的开发人员、企业和最大的开源社区构建推动人类进步的软件。\",\n        \"Explore the latest tools from Universe '25\": \"探索 Universe '25 的最新工具\",\n        \"The future of building happens together\": \"构建未来的方式是共同创造\",\n        \"Tools and trends evolve, but collaboration endures. With GitHub, developers, agents, and code come together on one platform.\": \"工具与趋势不断演变，但协作永恒。有 GitHub在，开发者、智能体与代码在同一个平台汇聚。\",\n\n        //\"Email address\": \"电子邮箱地址\",\n        \"Enter your email\": \"键入邮箱地址\",\n        \"Sign up for GitHub\": \"注册 GitHub\",\n        //\"Start a free enterprise trial\": \"开始免费试用企业版\",\n        \"Try GitHub Copilot free\": \"免费试用 GitHub Copilot\",\n\n        \"Try Copilot Free\": \"试用 GitHub Copilot\",\n            \"30 days free\": \"30天免费\",\n        \"Free Enterprise trial\": \"免费试用企业版\", // 已登录\n        \"Explore upcoming releases\": \"探索即将发布的产品\", // 已登录\n\n        // 代码\n            \"Write, test, and fix code quickly with GitHub Copilot, from simple boilerplate to complex features.\": \"使用 GitHub Copilot 快速编写、测试和修复代码，从简单的样板代码到复杂功能都能胜任。\",\n        \"Plan\": \"计划\",\n            \"Align your team from idea to launch with tools that track work, visualize roadmaps, and gather insights.\": \"借助跟踪工作、可视化路线图、收集洞察的工具，让团队从创意到上线全程对齐。\",\n        \"Collaborate\": \"协作\",\n            \"Enable your team to collaborate with agents to plan, code, and test the next big thing.\": \"让团队与智能体协作，一起规划、编写和测试下一个大项目。\",\n        \"Automate\": \"自动化\",\n            \"Improve your software development process by automating builds, tests, and deployments with CI/CD.\": \"通过 CI/CD 自动化构建、测试和部署，提升整个软件开发流程。\",\n        \"Secure\": \"安全\",\n            \"Leverage tooling to detect, review, and fix vulnerabilities before they reach production.\": \"利用工具在漏洞进入生产之前检测、审查并修复漏洞。\",\n\n        \"Accelerate your entire workflow\": \"加速你的全部工作流\",\n            \"From your first line of code to final deployment, GitHub provides AI and automation tools to help you build and ship better software faster.\": \"从第一行代码到最终部署，GitHub 提供 AI 和自动化工具，帮助你更快地构建并发布更优质的软件。\",\n\n            \"Your AI partner everywhere.\": \"你的 AI 伙伴，无处不在。\",\n                \"Copilot is ready to work with you at each step of the software development lifecycle.\": \"Copilot 已准备好在软件开发生命周期的每一个阶段与你并肩工作。\",\n\n            \"Work 55% faster.\": \"工作快 55%。\",\n                \"Increase productivity with AI-powered coding assistance, including code completion, chat, and more.\": \"通过人工智能编码辅助（包括代码完成、聊天等）提高生产力。\",\n                \"Survey: The AI wave continues to grow on software development teams, 2024.\": \"调查：2024 年，人工智能浪潮将在软件开发团队中持续高涨。\",\n                \"Explore GitHub Copilot\": \"探索 GitHub Copilot\",\n\n            \"Duolingo boosts developer speed by 25% with GitHub Copilot\": \"多邻国利用 GitHub Copilot 将开发速度提高了 25%\",\n              \"Read customer story\": \"阅读客户故事\",\n\n            \"2025 Gartner® Magic Quadrant™ for AI Code Assistants\": \"2025 Gartner® AI 代码助手魔力象限™\",\n              \"Read industry report\": \"阅读行业报告\",\n\n        \"Automate your path to production\": \"自动化通往生产的路径\",\n            \"Ship faster with secure, reliable CI/CD.\": \"使用安全可靠的 CI/CD，更快交付。\",\n            \"Explore GitHub Actions\": \"探索 GitHub Actions\",\n\n            \"Code instantly from anywhere\": \"随时随地立即开始编码\",\n            \"Launch a full, cloud-based development environment in seconds.\": \"几秒内启动完整的云端开发环境。\",\n            \"Explore GitHub Codespaces\": \"探索 GitHub 代码空间\",\n\n            \"Keep momentum on the go\": \"随时随地保持开发节奏\",\n            \"Manage projects and assign tasks to Copilot, all from your mobile device.\": \"在手机上就能管理项目、给 Copilot 派任务。\",\n            \"Explore GitHub Mobile\": \"探索 GitHub 移动端\",\n\n            \"Shape your toolchain\": \"塑造你的工具链\",\n            \"Extend your stack with apps, actions, and AI models.\": \"通过应用、Actions 和 AI 模型扩展你的技术栈。\",\n            \"Explore GitHub Marketplace\": \"探索 GitHub 市场\",\n\n        \"Built-in application security where found means fixed\": \"内置应用安全，发现即修复\",\n            \"Use AI to find and fix vulnerabilities so your team can ship more secure software faster.\": \"利用 AI 发现并修复漏洞，让团队更快交付更安全的软件。\",\n\n            \"Apply fixes in seconds.\": \"在几秒钟内完成修复。\",\n                \"Spend less time debugging and more time building features with Copilot Autofix.\": \"使用 Copilot 自动修复，花更少时间调试，把更多时间用来开发新功能。\",\n                \"Explore GitHub Advanced Security\": \"探索 GitHub 高级安全\",\n\n                \"Security debt, solved.\": \"安全债务，一键解决。\",\n                    \"Leverage security campaigns and Copilot Autofix to reduce application vulnerabilities.\": \"利用安全整治活动和 Copilot 自动修复，大幅减少应用漏洞。\",\n                    \"Learn about GitHub Code Security\": \"了解 GitHub 代码安全功能\",\n\n                \"Dependencies you can depend on.\": \"您可以依赖的依赖项。\",\n                    \"Update vulnerable dependencies with supported fixes for breaking changes.\": \"使用支持的修复程序更新易受攻击的依赖项\\n以解决重大更改。\",\n                    \"Learn about Dependabot\": \"了解 Dependabot\",\n\n                \"Your secrets, your business.\": \"你的密钥，你说了算。\",\n                    \"Detect, prevent, and remediate leaked secrets across your organization.\": \"检测、预防并补救整个组织内泄露的机密。\",\n                    \"Learn about GitHub Secret Protection\": \"了解 GitHub 密钥保护功能\",\n\n                \"70% MTTR reduction\": \"平均修复时间 (MTTR) 降低 70%\",\n                    \"with Copilot Autofix\": \"得益于 Copilot 自动修复\",\n\n                \"8.3M secret leaks stopped\": \"阻止了 830 万次密钥泄露\",\n                    \"in the past 12 months with push protection\": \"过去 12 个月内通过推送保护实现\",\n\n        \"Work together, achieve more\": \"共同协作，取得更大成就\",\n            \"From planning and discussion to code review, GitHub keeps your team’s conversation and context next to your code.\": \"从规划、讨论到代码审查，GitHub 始终将团队的对话和上下文紧贴在代码旁边。\",\n\n            \"Plan with clarity.\": \"清晰规划。\",\n                \"Organize everything from high-level roadmaps to everyday tasks.\": \"从高层路线图到日常任务，一切井井有条。\",\n                \"Explore GitHub Projects\": \"探索 GitHub 项目\",\n            \"It helps us onboard new software engineers and get them productive right away. We have all our source code, issues, and pull requests in one place... GitHub is a complete platform that frees us from menial tasks and enables us to do our best work.\": \"它可以帮助我们吸收新的软件工程师，让他们立即投入工作。我们的所有源代码、问题和拉取请求都在一个地方... GitHub 是一个完整的平台，它将我们从琐碎的工作中解脱出来，让我们能够全力以赴。\",\n                \"Application manager at Mercedes-Benz\": \"Mercedes-Benz 应用管理员\",\n            \"Keep track of your tasks\": \"跟踪任务\",\n                \"Create issues and manage projects with tools that adapt to your code.\": \"创建议题和管理项目的工具能适应您的代码。\",\n                \"Explore GitHub Issues\": \"探索 GitHub 议题\",\n            \"Share ideas and ask questions\": \"交流想法和提出问题\",\n                \"Create space for open-ended conversations alongside your project.\": \"在开展项目的同时，为开放式对话创造空间。\",\n                \"Explore GitHub Discussions\": \"探索 GitHub 讨论\",\n            \"Review code changes together\": \"共同审查代码\",\n                \"Assign initial reviews to Copilot for greater speed and quality.\": \"将初步审查交给 Copilot，获得更快的速度和更高的质量。\",\n                \"Explore code review\": \"探索代码审查\",\n            \"Fund open source projects\": \"资助开源项目\",\n                \"Become an open source partner and support the tools and libraries that power your work.\": \"成为开源合作伙伴，支持为您的工作提供动力的工具和库。\",\n                \"Explore GitHub Sponsors\": \"探索 GitHub 赞助\",\n\n        \"From startups to enterprises,\": \"从初创公司到大型企业，\",\n            \"GitHub scales with teams of any size in any industry.\": \"GitHub 能适配任何规模、任何行业的团队。\",\n\n            // 工业\n                \"Technology\": \"技术\",\n                \"Figma streamlines development and strengthens security\": \"Figma 简化开发并增强安全性\",\n                \"Automotive\": \"汽车\",\n                \"Mercedes-Benz standardizes source code and automates onboarding\": \"奔驰标准化源代码并自动化入职\",\n                \"Mercado Libre cuts coding time by 50%\": \"Mercado Libre 将编码时间缩短了 50%\",\n            \"By size\": \"规模\",\n                \"Buffer enhances collaboration and control with GitHub Team\": \"Buffer 通过 GitHub 团队 提升协作与控制力\",\n                \"Accenture customizes GitHub Copilot for its 12,000 developers\": \"埃森哲为其 12,000 名开发者定制 GitHub Copilot\",\n                \"Philips reduces infrastructure costs by 80%\": \"飞利浦将基础设施成本降低 80%\",\n            // 使用案例\n                \"TELUS saves $16.9M with GitHub\": \"TELUS 使用 GitHub 节省 1690 万美元\",\n                \"Automation\": \"自动化\",\n                \"Fullstory automates DevSecOps at scale with GitHub\": \"Fullstory 使用 GitHub 大规模自动化 DevSecOps\",\n                \"EY leverages GitHub and Microsoft Azure DevOps to outpace the competition\": \"安永（EY）借助 GitHub 和 Microsoft Azure DevOps 领先竞争对手\",\n\n            \"Explore customer stories\": \"探索客户故事\",\n\n        \"Millions of developers and businesses call GitHub home\": \"数百万开发者和企业将 GitHub 视为自己的家\",\n            \"Whether you’re scaling your development process or just learning how to code, GitHub is where you belong. Join the world’s most widely adopted developer platform to build the technologies that shape what’s next.\": \"无论你是正在扩展开发流程，还是刚刚开始学习编程，GitHub 都是你的归属之地。加入全球采用最广泛的开发者平台，一起构建塑造未来的技术。\",\n\n        \"GitHub internal customer data, 2025.\": \"GitHub 内部客户数据，2025年。\",\n\n        // 底部栏\n        \"Subscribe to our developer newsletter\": \"订阅我们的开发者新闻\",\n        \"Get tips, technical guides, and best practices. Twice a month.\": \"获取提示、技术指南和最佳实践。每月两次。\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"获取提示、技术指南和最佳实践。每月两次。直接发送到您的收件箱。\",\n        \"Subscribe\": \"订阅\",\n\n        \"Features\": \"功能\",\n        \"Roadmap\": \"路线图\",\n        \"Compare GitHub\": \"比较 GitHub\",\n\n        \"Ecosystem\": \"生态\",\n        \"Platform\": \"平台\",\n        \"Developer API\": \"开发者 API\",\n        \"Education\": \"教育\",\n        \"GitHub Desktop\": \"GitHub 桌面端\",\n        \"GitHub Mobile\": \"GitHub 移动端\",\n\n        \"Support\": \"支持\",\n        \"Community Forum\": \"社区论坛\",\n        \"Professional Services\": \"专业服务\",\n        \"Premium Support\": \"高级支持\",\n        \"Skills\": \"技能\",\n\n        \"Company\": \"公司\",\n        \"Customer stories\": \"客户案例\",\n        \"The ReadME Project\": \"ReadME 项目\",\n        \"Careers\": \"招贤纳士\",\n        \"Press\": \"新闻\",\n        \"Inclusion\": \"包容性\",\n        \"Newsroom\": \"媒体\",\n        \"Social Impact\": \"社会责任\",\n        \"Shop\": \"商店\",\n\n        \"Sitemap\": \"网站地图\",\n        \"What is Git?\": \"什么是 Git？\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Change is constant. GitHub keeps you ahead. · GitHub\": \"GitHub · 变化是常态，GitHub 让你始终领先 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"home\"] = I18N[\"zh-CN\"][\"homepage\"];\n\nI18N[\"zh-CN\"][\"session-authentication\"] = { // 登录页 包含(/login, /session, /sessions/two-factor, sessions/recovery, /sessions/recovery/token, /password_reset等)\n    \"static\": { // 静态翻译\n\n        // 登录页 https://github.com/login\n            \"Your account was created successfully. Please sign in to continue\": \"您的账户创建成功，请继续登录\",\n\n            \"Sign in to GitHub\": \"登录 GitHub\",\n            \"Sign in to\": \"登录\",\n            \"Signed in as\": \"登录身份为\",\n            \"to continue to\": \"继续登录\",\n            \"Username or email address\": \"用户名或电子邮箱\",\n            \"Password\": \"密码\",\n            \"Forgot password?\": \"忘记密码？\",\n            \"Sign in\": \"登录\",\n            \"Sign in with a passkey\": \"使用通行密钥登录\",\n            \"Signing in…\": \"登录中…\",\n\n            \"Add an account\": \"添加账号\", // 添加新账号\n            \"Want to create an account?\": \"想要新建一个账户吗？\", // 添加新账号\n\n            \"Or\": \"或\",\n            \"Continue with Google\": \"使用 Google 继续\",\n                \"Continuing with Google...\": \"使用 Google 继续…\",\n            \"Continue with Apple\": \"使用 Apple 继续\",\n                \"Continuing with Apple...\": \"使用 Apple 继续…\",\n            // \"This browser or device does not fully support passkeys.\": \"此浏览器或设备不完全支持通行密钥。\",\n            \"This browser or device is reporting partial passkey support.\": \"此浏览器或设备报告部分支持通行密钥。\",\n            \"Sign-in with a passkey\": \"使用通行密钥登录\",\n\n            \"New to GitHub?\": \"初次接触 GitHub？\",\n            \"Create an account\": \"那就注册个账户吧\",\n\n            \"Contact GitHub Support\": \"联系 GitHub 支持\",\n\n            // 验证状态提醒\n            \"Incorrect username or password.\": \"用户名或密码不正确。\",\n            \"Recovery code authentication failed.\": \"恢复码身份验证失败。\",\n\n        // 设备授权激活 https://github.com/login/device\n            \"Device Activation\": \"设备激活\",\n            \"Enter the code displayed on your device\": \"输入您的设备上显示的代码\",\n            \"Continue\": \"继续\",\n            \"GitHub staff will never ask you to enter your code on this page.\": \"GitHub 工作人员绝不会要求您在此页面上输入您的代码。\",\n\n        // 设备授权第2页面 https://github.com/login/device/confirmation\n            // [/Authorize/, \"授权\"],\n            \"This authorization was requested from\": \"此授权请求来自\",\n            \"Make sure you trust this device as it will get access to your account.\": \"请确保您信任该设备，因为它可以访问您的账户。\",\n            \"wants to access your\": \"希望访问您的\",\n            \"account\": \"账户\",\n            \"Organization access\": \"组织访问\",\n            \"Requested from\": \"请求自\",\n\n            \"Owned & operated by GitHub\": \"由 GitHub 拥有和运营\",\n            \"Created\": \"创建于\",\n            \"More than 1K\": \"超过1K\",\n            \"GitHub users\": \"GitHub 用户\",\n            \"Learn more about OAuth\": \"了解更多关于 OAuth 的信息\",\n\n        // 设备授权成功 https://github.com/login/device/success\n            \"Congratulations, you're all set!\": \"恭喜，一切就绪！\",\n            \"Your device is now connected.\": \"您的设备现已连接。\",\n\n        // 设备授权失败 https://github.com/login/device/failure?reason=not_found\n            \"Uh oh, we couldn't find anything\": \"呃，我们找不到任何东西\",\n            \"Please make sure you entered the user code correctly.\": \"请确保您输入正确的用户代码。\",\n\n        // 设备验证 https://github.com/sessions/verified-device\n            \"Device verification\": \"设备验证\",\n            \"Email\": \"电子邮件\",\n            \"Device Verification Code\": \"设备验证码\",\n            \"Having trouble verifying via email?\": \"通过电子邮件验证时遇到问题？\",\n                \"Re-send the authentication code\": \"重新发送验证码\",\n                \"Try GitHub Mobile for simplified device verification\": \"尝试 GitHub Mobile 的简化设备验证\",\n            \"If you'd like to require verification on every sign in, consider enabling\": \"如果您想在每次登录时都要求进行验证，请考虑在您的账户上启用\",\n                \"two-factor authentication\": \"双因素身份验证\",\n                \"on your account.\": \"。\",\n            // 黄色横幅\n            \"Incorrect verification code provided.\": \"提供的验证码错误。\",\n\n        // 双因素身份验证登录 https://github.com/sessions/two-factor/app\n            // \"Learn more\": \"了解更多\",\n            // \"Learn more.\": \"了解更多。\",\n            \"Confirm password to continue\": \"确认密码以继续\",\n            \"Confirm password\": \"确认密码\",\n            \"Tip:\": \"提示：\",\n\n            \"Two-factor authentication\": \"双因素身份验证\",\n            \"Authentication code\": \"验证码\",\n                \"More information about Authentication Codes\": \"更多关于验证码的信息\",\n            //\"Signing in…\": \"登录中…\",\n            \"6-digit code\": \"6位验证码\",\n            \"Verify\": \"验证\",\n                \"Verifying\": \"验证中\",\n                \"Verifying…\": \"验证中…\",\n            \"Open the two-factor authenticator (TOTP) app on your mobile device to view your authentication code.\": \"打开您的移动设备上的 “双因素身份验证器” 应用（TOTP），以查看您的身份验证码。\",\n\n            \"Use this method for future logins\": \"今后的登录中使用此方法\",\n                \"Future logins on this device will prompt you to use\": \"今后在该设备上的登录将提示您使用\",\n                \"an authentication code\": \"一个验证码\",\n                \"by default.\": \"作为默认方式。\",\n\n            \"Having problems?\": \"有问题吗？\",\n                \"Use your passkey\": \"使用您的通行密钥\",\n                \"Authenticate with GitHub Mobile\": \"使用 GitHub Mobile 进行身份验证\",\n                \"Use a recovery code or begin 2FA account recovery\": \"使用恢复码或开始 2FA 账户恢复\",\n\n        // https://github.com/sessions/two-factor/mobile\n            \"We sent you a sign-in request on your GitHub Mobile app. Approve the request to verify your identity.\": \"我们向您的 GitHub Mobile 应用发送了一个登录请求。批准验证您的身份的请求。\",\n            \"We sent you a sign-in request on your GitHub Mobile app. Enter the digits shown below to verify your identity.\": \"我们向您的 GitHub Mobile 应用发送了一个登录请求。输入下面显示的数字以验证您的身份。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"Unable to verify with GitHub Mobile?\": \"无法使用 GitHub Mobile 进行验证？\",\n                \"Enter two-factor authentication code\": \"输入双因素身份验证码\",\n\n            // 验证状态提醒\n            \"Sign-in request timed out.\": \"登录请求超时。\",\n\n        // https://github.com/sessions/two-factor/webauthn\n            \"Passkey\": \"通行密钥\",\n            \"When you are ready, authenticate using the button below.\": \"准备好后，请使用下面的按钮进行身份验证。\",\n            \"Use passkey\": \"使用通行密钥\",\n\n            \"Authentication failed.\": \"认证失败。\",\n            \"Retry passkey\": \"重试通行密钥\",\n\n            \"Unable to verify with your passkey?\": \"无法验证您的通行密钥？\",\n\n        // 双因素身份验证恢复 https://github.com/sessions/two-factor/recovery\n            \"Two-factor recovery\": \"双因素身份验证恢复\",\n            \"Recovery code\": \"恢复码\",\n\n            \"If you are unable to access your mobile device, enter one of your recovery codes to verify your identity.\": \"如果您无法访问您的移动设备，请输入您的一个恢复码以验证您的身份。\",\n\n            \"Don't have a recovery code?\": \"没有恢复码？\",\n            \"Where to find recovery codes\": \"哪里可以找到恢复码\",\n\n            \"Locked out?\": \"被锁在外面了吗？\",\n            \"Try recovering your account, or unlink your account email address(es)\": \"请尝试恢复您的账户，或取消关联您的账户电子邮件地址。\",\n\n            // 恢复账户对话框\n            \"Recovering your account\": \"恢复您的账户\",\n            \"If you can’t access a verified device or recovery codes you can request a reset of your authentication settings. For security reasons\": \"如果您无法访问已验证的设备或恢复码，您可以请求重置您的验证设置。出于安全考虑\",\n            \"this can take 1-3 days\": \"这可能需要 1-3 天\",\n            \"Step 1\": \"第一步\",\n            \"Verify an email associated with this account.\": \"验证与该账户相关的电子邮箱。\",\n            \"Step 2\": \"第二步\",\n            \"Verify a device, SSH key or personal access token.\": \"验证一个设备、SSH 密钥或个人访问令牌。\",\n            \"Step 3\": \"第三步\",\n            \"GitHub support will review your request\": \"GitHub 支持将审查您的请求\",\n            \"within 1-3 days\": \"在 1-3 天内\",\n            \"I understand, get started\": \"我知道了，开始吧\",\n\n            \"Two-factor authentication failed.\": \"双因素身份验证失败。\",\n\n        // 账户恢复 https://github.com/sessions/recovery\n            \"Account recovery\": \"账户恢复\",\n            \"The account recovery process can take 1-3 business days. We recommend one of the following if possible.\": \"账户恢复过程可能需要 1-3 个工作日。如果可能，我们推荐以下其中一项。\",\n            \"Enter a recovery code\": \"输入恢复码\",\n                \"The file containing your recovery codes may exist on your computer - check for a file named\": \"包含恢复码的文件可能存在于您的计算机上——请检查一个名为\",\n            //使用 GitHub Mobile 应用进行身份验证\n            \"It looks like you have a GitHub Mobile session that could be used for two-factor authentication. If you have access to your mobile device, you may be able to use it to login.\": \"看起来您有一个 GitHub Mobile 会话，可以用来进行双因素身份验证。如果您能访问您的移动设备，您也许能用它来登录。\",\n\n            \"First we need to verify an email address\": \"首先，我们需要验证一个电子邮箱地址\",\n            \"by sending a one-time password to all addresses associated with this account.\": \"用于通过向该账户关联的所有地址发送一次性密码。\",\n            \"Send one-time password\": \"发送一次性密码\",\n\n            // 验证提醒\n            \"Recovery email sent\": \"已发送恢复电子邮件\",\n\n            \"One-time password\": \"一次性密码\",\n            \"Verify email address\": \"验证电子邮箱地址\",\n            \"We sent an email to all addresses associated with this account containing a one-time password.\": \"我们向与该账户相关的所有邮箱地址发送了一封电子邮件，其中包含一个一次性的密码。\",\n            \"Resend email\": \"重新发送邮件\",\n\n            \"Next we need to verify an alternative factor.\": \"接下来，我们需要验证另一个因素。\",\n            \"This can be a verified device, an SSH key or a personal access token associated with this account.\": \"这可以是一个经过验证的设备，一个SSH 密钥或一个与此账户相关的个人访问令牌。\",\n            \"Cannot verify this device\": \"无法验证该设备\",\n            \"or verify a\": \"或者验证\",\n            \"SSH key\": \"SSH 密钥\",\n            \"Personal access token\": \"个人访问令牌\",\n\n            \"Unable to verify an alternative factor?\": \"无法验证另一个因素？\",\n            \"Contact support\": \"联系支持部门\",\n\n            // \"Sign in to\": \"登录\",\n            // \"To continue to\": \"继续登录\",\n\n            // 定时确认您的账户恢复设置\n            \"Confirm your account recovery settings\": \"确认您的账户恢复设置\",\n            \"Are your account recovery settings up to date? If not, you risk getting locked out of your account.\": \"您的账户恢复设置是否最新？如果没有，您就有被锁定账户的风险。\",\n            \"Emails\": \"电子邮箱\",\n                \"View and update your email addresses\": \"查看和更新您的电子邮箱地址\",\n\n                \"Verified emails\": \"经过验证的电子邮箱\",\n                    // [/(\\d+) verified emails?/, \"$1 个经过验证的邮箱\"],\n                \"Verified emails give you access to more features on GitHub.\": \"经过验证的电子邮箱让您可以使用 GitHub 上的更多功能。\",\n                \"Unverified emails\": \"未经验证的电子邮箱\",\n                \"Unverified emails cannot receive notifications or be used to reset your password.\": \"未经验证的电子邮箱无法接收通知或用于重置密码。\",\n            \"Password Alternatives\": \"密码替代方案\",\n                \"Passkeys\": \"通行密钥\",\n                // [/(\\d+) keys?/, \"$1 个通行密钥\"],\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密钥是一种 WebAuthn 凭证，可以使用触摸、面部识别、设备密码或 PIN 码验证您的身份。它们可以作为密码替代品或作为双因素身份验证（2FA）方法使用。\",\n                    \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此浏览器或设备报告支持部分通行密钥，但您也许可以尝试使用附近设备的通行密钥。\",\n            \"Two-factor methods\": \"双因素身份验证方式\",\n                \"Your preferred 2FA method is\": \"您首选的 2FA 方式是\",\n                \"Configured\": \"已配置\",\n                \"Not configured\": \"未配置\",\n\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出现提示时，使用身份验证应用或浏览器扩展获取双因素身份验证码。\",\n                \"SMS/Text message\": \"短信/文字信息\",\n                    // [/You will receive one-time codes at this phone number:/, \"您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n                \"Security keys\": \"安全密钥\",\n                    \"Security keys are hardware devices that can be used as your second factor of authentication.\": \"安全密钥是一种硬件设备，可以作为您的第二验证因素。\",\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通过安装 GitHub Mobile 应用并登录账户，可以使用 GitHub Mobile 来进行双因素身份验证。\",\n                    \"No devices\": \"没有设备\",\n                \"SMS number\": \"手机号码\",\n            \"Recovery options\": \"恢复选项\",\n                \"Recovery codes\": \"恢复码\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢复码可用于在您无法访问设备且无法接收双因素身份验证码的情况下访问您的账户。\",\n                    \"Viewed\": \"已查看\",\n\n            \"Make changes\": \"进行更改\",\n            \"Confirm\": \"确认\",\n            \"Remind me later\": \"稍后提醒我\",\n\n        // 验证个人访问令牌 https://github.com/sessions/recovery/token\n            \"Verify a personal access token\": \"验证个人访问令牌\",\n            \"you've used in the past to verify your account. The token must have\": \"您过去曾用于验证您的账户。令牌必须具有\",\n            \"scope.\": \"范围。\",\n            \"Verify and submit for review\": \"验证并提交审核\",\n\n            // 验证提醒\n            \"Unable to verify personal access token\": \"无法验证个人访问令牌\",\n\n        // 配置无密码身份验证 https://github.com/sessions/trusted-device?return_to=%2Fsettings%2Fsecurity\n            \"Configure passwordless authentication\": \"配置无密码身份验证\",\n            \"Add a passkey\": \"添加通行密钥\",\n            \"Your device supports passkeys, a password replacement that validates your identity using touch, facial recognition, a device password, or a PIN.\": \"您的设备支持密码替代方案，通过触摸、面部识别、设备密码或者 PIN 码来验证您的身份。\",\n\n            \"Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密钥可以作为一种简单且安全的替代方式，用于登录而不需要密码和双因素身份验证。\",\n            \"Add passkey\": \"添加通行密钥\",\n            \"Passkey registration failed.\": \"密钥注册失败。\",\n            \"Ask me later\": \"稍后再问\",\n            \"Not interested?\": \"没兴趣？\",\n            \"Don't ask again for this browser\": \"不要再询问此浏览器\",\n\n            \"Successfully added a passkey\": \"已成功添加通行密钥\",\n            \"From now on, you can use this passkey to sign-in to GitHub.\": \"从现在起，您可以使用此通行密钥登录 GitHub。\",\n            \"Passkey nickname\": \"通行密钥昵称\",\n            \"Continue...\": \"继续中…\",\n\n        // 重置密码 https://github.com/password_reset\n            \"Reset your password\": \"重置您的密码\",\n            \"Enter your user account's verified email address and we will send you a password reset link.\": \"输入您的用户账户经过验证的电子邮箱，我们将向您发送一份带密码重置链接的邮件。\",\n            \"Enter your email address\": \"输入您的邮箱地址\",\n            \"Verify your account\": \"验证您的账户\",\n            \"Send password reset email\": \"发送密码重置邮件\",\n            \"Check your email for a link to reset your password. If it doesn’t appear within a few minutes, check your spam folder.\": \"检查您的电子邮件以获取重置密码的链接。如果它在几分钟内没有出现，请检查您的垃圾邮件文件夹。\",\n            \"Return to Sign in\": \"返回登录\",\n\n        // ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"], // [留待后期合并] 授权访问 sudo 模式身份验证\n            \"Confirm access\": \"授权访问\",\n            \"Signed in as\": \"登录身份为\",\n            \"Authentication code\": \"验证码\",\n                \"More information about sudo mode authentication\": \"更多关于 sudo 模式身份验证的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器 (TOTP) 应用或浏览器扩展以查看您的身份验证码。\",\n            \"Verify\": \"验证\",\n            \"Verify\": \"验证\",\n            \"Verifying…\": \"验证中…\",\n            \"Your authentication code has been sent.\": \"您的验证码已发送。\",\n\n            \"Having problems?\": \"有问题吗？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your authenticator app\": \"使用您的身份验证器应用\",\n            \"Send a code via email\": \"通过电子邮件发送验证码\",\n            \"Send a code via SMS\": \"通过短信发送验证码\",\n            \"Resend SMS\": \"重新发送短信\",\n            \"Use your password\": \"使用您的密码\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"为您的 GitHub Mobile 应用创建验证请求。\",\n            \"When your phone is ready, click the button below.\": \"当您的手机准备就绪时，请点击下面的按钮。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我们向您的 GitHub Mobile 应用发送了一个验证请求。输入下面显示的数字以进入 sudo 模式。\",\n            \"We could not verify your identity\": \"我们无法核实您的身份\",\n            \"Retry\": \"请重试\",\n\n            \"We just sent you a message via SMS with your authentication code. Enter the code in the form above to verify your identity.\": \"我们刚刚通过短信向您发送了一条消息，其中包含您的验证码。在上面的表格中输入验证码以验证您的身份。\",\n\n            // \"Password\": \"密码\",\n            // \"Forgot password?\": \"忘记密码？\",\n            \"Confirm\": \"确认\",\n\n            \"You are entering\": \"您正在进入\",\n            \"sudo mode\": \"Sudo 模式\",\n            \". After you've performed a sudo-protected action, you'll only be asked to re-authenticate again after a few hours of inactivity.\": \"。在您执行了受 sudo 保护的操作后，在几个小时不活动后才会要求您重新进行身份验证。\",\n\n        // 首次设置双因素身份验证 https://github.com/settings/two_factor_authentication/setup/intro\n\n            \"Enable two-factor authentication (2FA)\": \"启用双因素身份验证 (2FA)\",\n            \"Loading…\": \"载入中…\",\n\n            // 第1步\n                \"Setup authenticator app\": \"设置身份验证器应用\",\n                \"Authenticator apps and browser extensions like\": \"身份验证器应用和浏览器扩展，例如\",\n                \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密码，在登录过程中出现提示时用作第二验证因素来验证您的身份。\",\n\n                \"Scan the QR code\": \"扫描二维码\",\n                \"Re-scan the QR code\": \"重新扫描二维码\",\n                \"Use an authenticator app or browser extension to scan.\": \"请使用身份验证器应用或浏览器扩展进行扫描。\",\n                \"Learn more about enabling 2FA\": \"了解更多关于启用 2FA 的信息\",\n\n                \"Unable to scan? You can use the\": \"无法扫描？您可以使用\",\n                \"setup key\": \"设置密钥\",\n                \"to manually configure your authenticator app.\": \"手动配置您的身份验证器应用。\",\n                    \"Your two-factor secret\": \"您的双因素密钥\",\n\n                \"Verify the code from the app\": \"验证来自身份验证器应用的验证码\",\n                \"Two-factor code verification failed. Please try again.\": \"双因素身份验证码验证失败。请重试。\",\n\n                \"Setup SMS authentication\": \"设置短信验证\",\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登录 GitHub 时通过手机短信获取验证码。确保\",\n                    \"your country is supported\": \"支持您的国家/地区\",\n                    \"for SMS delivery.\": \"用于短信发送。\",\n                    \"Country code\": \"国家代码\",\n                    \"Your phone number\": \"您的手机号码\",\n                    \"Send authentication code\": \"发送验证码\",\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已发送。短信可能需要一分钟时间才能送达。\",\n                    \"Verify the code sent to your phone\": \"验证发送到您手机的验证码\",\n\n                \"Continue\": \"继续\",\n\n                \"Alternative 2FA option:\": \"备选 2FA 选项:\",\n                \"SMS authentication\": \"短信验证\",\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests.\": \"通过短信向您的手机发送一次性代码，以完成认证请求。\",\n                \"Authenticator app\": \"身份验证器应用\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份验证应用或浏览器扩展生成一次性代码。\",\n                \"Select\": \"选择\",\n\n            // 第2步\n                \"Download your recovery codes\": \"下载您的恢复码\",\n                \"You can use recovery codes as a second factor to authenticate in case you lose access to your device. We recommend saving them with a secure password manager such as\": \"您可以使用恢复码作为第二验证因素来进行身份验证，以防您无法访问您的设备。我们建议使用安全的密码管理器保存它们，例如\",\n                \"Keep your recovery codes in a safe spot\": \"将您的恢复码保存在安全的地方\",\n                \"If you lose your device and don't have the recovery codes, you will lose access to your account.\": \"如果您丢失了您的设备，并且没有恢复码，您将无法访问您的账户。\",\n\n                \"Download\": \"下载\",\n                \"I have saved my recovery codes\": \"我已经保存了我的恢复码\",\n\n            // 第3步\n                \"Two-factor authentication (2FA) is now enabled for your GitHub account\": \"现已为您的 GitHub 账户启用双因素身份验证 (2FA)\",\n                \"You have enabled two-factor authentication using SMS.\": \"您已使用 SMS 启用双因素身份验证\",\n                \"You have enabled two-factor authentication using your authenticator app.\": \"您已使用身份验证应用启用双因素身份验证\",\n\n                \"Don't get locked out, configure additional authentication methods\": \"别被锁在外面，配置额外的身份验证方法\",\n                \"Configuring additional authentication methods will help you gain access to your account in case you lose your device and don't have your recovery codes.\": \"配置额外的认证方法将帮助您在丢失设备和没有恢复码的情况下获得对账户的访问。\",\n\n                \"Security key\": \"安全密钥\",\n                    \"Use your device with Touch ID, Windows Hello, etc. or a physical security key (e.g. YubiKey)\": \"使用您的设备配合 Touch ID、Windows Hello 等功能或物理安全密钥（例如YubiKey）。\",\n                    \"Manage\": \"管理\",\n                    \"Register new security key\": \"注册新安全密钥\",\n                    \"Enter a nickname for this security key\": \"输入安全密钥的昵称\",\n                    \"Waiting for input from browser interaction...\": \"等待来自浏览器交互的输入…\",\n                    \"Security key registration failed.\": \"安全密钥注册失败。\",\n                    \"Try again\": \"请重试\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"Install\": \"安装\",\n                    \"The GitHub Mobile app on your phone can be used as a 2FA method. Enable it by installing the GitHub Mobile app for\": \"您手机上的 GitHub Mobile 应用可用作双因素身份验证方法。通过安装 GitHub Mobile 应用（\",\n                    \"and signing in to your account.\": \"）并登录您的账户来启用它。\",\n                \"Done\": \"完成\",\n\n        // 定期验证双因素身份验证（2FA）设置\n            \"Verify your two-factor authentication (2FA) settings\": \"验证您的双因素身份验证（2FA）设置\",\n            \"This is a one-time verification of your recent configured 2FA credentials.\": \"这是对您最近配置的双因素身份验证凭据进行一次性验证。\",\n            \"Make sure that 2FA is correctly configured, and avoid a potential account lockout disaster. If you're having trouble verifying, you'll be able to reconfigure 2FA for your account.\": \"确保正确配置双因素身份验证，避免可能的账户锁定灾难。如果您在验证时遇到问题，可以重新为您的账户配置双因素身份验证。\",\n            \"Verify 2FA now\": \"现在验证双因素身份验证\",\n            \"You can choose to\": \"您可以选择\",\n            \"skip 2FA verification\": \"跳过双因素身份验证\",\n            \"at this moment, we'll remind you again tomorrow.\": \"此刻，我们会在明天再次提醒您。\",\n\n        // https://github.com/settings/two_factor_checkup?\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打开您的双因素身份验证器（TOTP）应用或浏览器扩展，以查看您的身份验证码。\",\n            \"Verify your 2FA setup tomorrow\": \"明天验证您的双因素身份验证设置\",\n            \"Reconfigure 2FA on this account\": \"重新配置双因素身份验证\",\n\n        // https://github.com/settings/two_factor_checkup\n            \"2FA verification successful!\": \"双因素身份验证成功！\",\n            \"Keep your recovery codes safe and easy to access\": \"请将您的恢复码保管好以便于访问。\",\n            \"As a reminder, recovery codes can be used as a second factor to authenticate in case you lose your device. If you don't have your recovery codes, you may lose access to your account.\": \"作为提醒，恢复码可用作第二验证因素，以防您丢失设备。如果您没有恢复码，则可能无法访问您的账户。\",\n            \"Not sure where you saved them?\": \"您不确定把它们保存在哪里了吗？\",\n\n        // https://github.com/settings/security\n            \"Two-factor authentication (2FA)\": \"双因素身份验证 (2FA)\",\n            \"is required for your GitHub account\": \"您的 GitHub 账户需要\",\n\n            \"This will only take a minute.\": \"只需一分钟时间。\",\n            \"Enable 2FA now. You'll be able to continue on with your work right after.\": \"立即启用双因素身份验证。之后您将能够继续您的工作。\",\n\n            \"Two-factor authentication adds an\": \"双因素身份验证增加了一个\",\n            \"additional layer of account security\": \"额外的账户安全保护\",\n            \". It is a proven method of keeping you safe from hackers and account takeover, even if your password is stolen or compromised.\": \"。这是一种行之有效的方法，即使您的密码被盗或泄露，也能保证您不被黑客和账户接管。\",\n            \"Enable 2FA now\": \"立即启用双因素身份验证\",\n\n            \"You have\": \"您还有\",\n            \"left to enable 2FA. Take action now to avoid additional interruptions.\": \"时间启用双因素身份验证。请立即采取行动以避免额外的干扰。\",\n            \"Remind me tomorrow\": \"明天提醒我\",\n\n        // 登出页面 https://github.com/logout\n            \"Are you sure you want to sign out?\": \"您确定要登出？\",\n            \"Sign out\": \"登出\",\n\n            \"Select account to sign out\": \"选择要登出的账户\",\n            \"Sign out from all accounts\": \"登出所有账户\",\n\n        // 接受邀请 /<user-name>/<repo-name>/invitations\n        // 跳转至 协作者 / 协作者和团队 - 访问管理页面 /<user-name>/<repo-name>/settings/access 验证\n            // 顶部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"仓库邀请 URL 仅适用于受邀请的用户。您只能与受邀请的用户共享此 URL。\",\n\n        // 切换账户 https://github.com/switch_account\n            \"Signed out\": \"已注销\",\n            \"Add a different account\": \"添加其他账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) verified emails?/, \"$1 个经过验证的邮箱\"],\n        [/(\\d+) unverified emails?/, \"$1 个未经验证的邮箱\"],\n        [/(\\d+) keys?/, \"$1 个通行密钥\"],\n        [/(\\d+) devices?/, \"$1 设备\"],\n        [/You will receive one-time codes at this phone number:/, \"您将通过以下电话号码收到一次性验证码：\"], // 已设置短信/文字信息\n        [/Continue as (.*)/, \"以 $1 身份继续使用\"],\n        [/Authorize/, \"授权\"],\n\n        // 设备验证 https://github.com/sessions/verified-device\n        [/We just sent your authentication code via email to (.*)\\. The code will expire at (.*)\\./, \"我们刚刚通过电子邮件将您的验证码发送给 $1。验证码将于 $2 过期。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Confirm access\": \"授权访问\",\n            \"Forgot your password?\": \"忘记您的密码了吗？\",\n            \"Sign in to GitHub · GitHub\": \"登录 GitHub · GitHub\",\n        },\n    },\n};\nI18N[\"zh-CN\"].login = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].logout = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].session = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].sessions = I18N[\"zh-CN\"][\"session-authentication\"];\nI18N[\"zh-CN\"].password_reset = I18N[\"zh-CN\"][\"session-authentication\"];\n\nI18N[\"zh-CN\"][\"signup\"] = { // 注册页\n    \"static\": { // 静态翻译\n        \"Create your free account\": \"创建免费账户\",\n            \"Explore GitHub's core features for individuals and organizations.\": \"探索 GitHub 为个人及组织提供的核心功能。\",\n            \"See what's included\": \"包含内容\",\n                \"Access to GitHub Copilot\": \"访问 GitHub Copilot\",\n                    \"Increase your productivity and accelerate software development.\": \"提升生产力，加快软件开发进程。\",\n                \"Unlimited repositories\": \"无限仓库\",\n                    \"Collaborate securely on public and private projects.\": \"在公开和私有项目上安全协作。\",\n                \"Integrated code reviews\": \"集成代码审查\",\n                    \"Boost code quality with built-in review tools.\": \"通过内置审查工具提升代码质量。\",\n                \"Automated workflows\": \"自动化工作流\",\n                    \"Save time with CI/CD integrations and GitHub Actions.\": \"使用 CI/CD 集成和 GitHub Actions 节省时间。\",\n                \"Community support\": \"社区支持\",\n                    \"Connect with developers worldwide for instant feedback and insights.\": \"与全球开发者即时交流，获取反馈和见解。\",\n\n        \"Already have an account?\": \"已经有账户吗？\",\n        \"Sign in →\": \"登录 →\",\n\n        \"Sign up for GitHub\": \"注册 GitHub\",\n            \"Continue with Google\": \"使用 Google 继续\",\n                \"Continuing with Google...\": \"使用 Google 继续…\",\n            \"Continue with Apple\": \"使用 Apple 继续\",\n                \"Continuing with Apple...\": \"使用 Apple 继续…\",\n\n            \"Email\": \"电子邮件\",\n                \"Email is invalid or already taken\": \"电子邮箱地址无效或已被占用\",\n                \"Email cannot be blank\": \"电子邮件不能为空\",\n                \"The email you have provided is already associated with an account.\": \"该邮件已被注册。\",\n                \"reset your password\": \"重置密码\",\n            \"Password\": \"密码\",\n                \"Password is too short\": \"密码太短\",\n                \"Password needs a number and lowercase letter\": \"密码需要有数字和小写字母\",\n                \"Password is strong\": \"密码很强\",\n                \"Password may be compromised\": \"密码可能被泄露\",\n                \"Password is in a list of passwords commonly used on other websites\": \"密码在其他网站常用的密码列表中\",\n                \"Password cannot be blank\": \"密码不能为空\",\n                \"Password should be at least 15 characters OR at least 8 characters including a number and a lowercase letter.\": \"密码应至少包含15个字符，或者至少包含8个字符且其中包括一个数字和一个小写字母。\",\n            \"Username\": \"用户名\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用户名只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\",\n                \"Username cannot be blank\": \"用户名不能为空\",\n                \"are available.\": \"可用。\",\n            \"Your Country/Region\": \"您的国家/地区\",\n                \"Select Country/Region\": \"选择国家/地区\",\n                \"For compliance reasons, we're required to collect country information to send you occasional updates and announcements.\": \"根据合规要求，我们需要收集您所在的国家/地区信息，以便向您发送最新的更新和公告。\",\n\n            \"Email preferences\": \"电子邮件偏好设置\",\n                \"Receive occasional product updates and announcements\": \"偶尔接收产品更新和公告\",\n\n            \"Create account\": \"创建账户\",\n                \"By creating an account, you agree to the\": \"创建账户即表示您同意\",\n                \"Terms of Service\": \"服务条款\",\n                \". For more information about GitHub's privacy practices, see the\": \"。更多关于 GitHub 隐私条款的信息，请参见\",\n                \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n                \". We'll occasionally send you account-related emails.\": \"。我们偶尔会向您发送与账户相关的电子邮件。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Username ([^ ]+) is not available./, \"用户名 $1 不可用。\"],\n        [/([^ ]+) is available./, \"用户名 $1 可用。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sign up for GitHub · GitHub\": \"注册 GitHub · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"account_verifications\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"signup\"][\"static\"],\n\n        \"Confirm your email address\": \"验证您的邮箱\",\n            \"We have sent a code to\": \"已发送验证码至\",\n        \"Enter code\": \"键入验证码\",\n        \"Didn't get your email?\": \"未收到邮件？\",\n            \"Resend the code\": \"重发验证码\",\n            \"update your email address\": \"修改邮箱\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"notifications\"] = { // 通知页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"All\": \"所有\",\n        \"Unread\": \"未读\",\n\n        \"Switch inbox\": \"切换收件箱\", // Android UA 下出现\n        \"Inbox\": \"收件箱\",\n        \"Saved\": \"已保存\",\n        \"Save\": \"保存\",\n        \"Done\": \"已完成\",\n        \"Filters\": \"筛选\",\n        \"Dismiss\": \"忽略\",\n        \"get started\": \"开始\",\n        \"Subscribe\": \"订阅\",\n        \"Unsubscribe\": \"退订\",\n\n        \"Search notifications\": \"搜索通知\",\n        \"Filter notifications\": \"筛选通知\",\n            \"Suggested filters\": \"建议筛选\",\n            \"Sorry, we don't support the\": \"抱歉，我们不支持\",\n            \"filter yet.\": \"筛选器。\",\n            \"Learn more about filters.\": \"了解更多关于筛选器的信息。\",\n\n            \"- submit\": \"- 提交\",\n            \"Submit search\": \"提交搜索\",\n\n            \"Available filters\": \"可用筛选器\",\n            \"filter by repository\": \"按仓库筛选\",\n            \"filter by status or discussion type\": \"按状态或评论类型筛选\",\n            \"filter by notification reason\": \"按通知原因筛选\",\n            \"filter by notification author\": \"按通知作者筛选\",\n            \"filter by organization\": \"按组织筛选\",\n        \"Group by:\": \"分组：\",\n        \"Group by: Date\": \"分组：日期\",\n        \"Group by: Repository\": \"分组：仓库\",\n        \"Date\": \"日期\",\n        \"Repository\": \"仓库\",\n        // [/(\\d+) new notifications?/, \"$1 条新通知\"], // 通知管理页\n\n        // 筛选结果\n        \"No results\": \"无结果\",\n        \"No notifications matched your query.\": \"没有与您的查询相匹配的通知。\",\n\n        \"Select all\": \"全选\",\n        \"selected\": \"条被选中\",\n        \"Mark as read\": \"标记为已读\",\n        \"Mark as unread\": \"标记为未读\",\n        \"Mark as done\": \"标记为已完成\",\n        \"Move to inbox\": \"移动到收件箱\",\n\n         \"Clear selection\": \"清除选中\",\n\n        //\"Mark all as read\": \"全部标为已读\",\n        //\"Are you sure?\": \"您确定吗？\",\n        //\"Are you sure you want to mark all unread notifications as read?\": \"您确定要将所有的未读通知标记为已读？\",\n        //\"Mark all notifications as read\": \"全部标为已读\",\n\n        \"Clear out the clutter.\": \"清除混乱。\",\n        \"Get the most out of your new inbox by quickly and easily marking all of your previously read notifications as done.\": \"快速轻松地将所有已阅读的通知标记为已完成，以充分利用新的收件箱。\",\n        \"Overwhelmed by notifications? We've found some repositories that may be causing notifications you don't need.\": \"通知不知所措？我们发现了一些仓库，这些仓库可能会导致您不需要的通知。\",\n        \"Update watching settings\": \"更新关注设置\",\n        \"Get started\": \"开始\",\n            \"Clean up your inbox\": \"清理收件箱\",\n            \"Marking your notifications as \\\"done\\\" helps to create a more focused inbox. Don't worry - if there is new activity, you'll still be notified.\": \"将您的通知标记为 “已完成” 有助于创建一个更加集中的收件箱。不用担心 - 如果有新的活动，您仍然会收到通知。\",\n            \"Mark all read notifications as done\": \"将所有已读通知标记为已完成\",\n            \"This process could take a few moments depending on the quantity.\": \"这个过程可能会根据数量的多少而耗费一些时间。\",\n            \"Bulk actions currently being processed.\": \"批量操作正在处理中。\",\n            \"Bulk action processing complete.\": \"批量操作处理完成。\",\n\n        \"Manage notifications\": \"管理通知\",\n        \"Notification settings\": \"通知设置\",\n        \"Watched repositories\": \"关注的仓库\",\n        \"Subscriptions\": \"订阅\",\n        \"Watching\": \"关注\",\n\n        \"assigned\": \"分配\",\n        \"subscribed\": \"订阅\",\n        \"mention\": \"提及\",\n        \"commented\": \"评论\",\n        \"author\": \"作者\",\n        \"manual\": \"手动\",\n        \"state change\": \"状态更改\",\n        \"review requested\": \"请求审查\",\n        \"ci activity\": \"CI 活动\",\n        \"security alert\": \"安全警报\",\n\n        \"View all gist notifications\": \"查看全部 Gist 通知\", // 仓库分组模式\n\n        \"Prev\": \"上一页\",\n        \"Previous\": \"上一页\",\n        \"Next\": \"下一页\",\n\n        \"change notification settings\": \"更改通知设置\",\n        \"you can change how you receive notifications from your account settings.\": \"您可以从账户设置更改接收通知的方式。\",\n        \"unwatch suggestions\": \"取消关注建议\",\n        \"these repositories may be causing unnecessary notifications.\": \"这些仓库可能导致不必要的通知。\",\n        \"unwatch all\": \"取消所有关注\",\n        \"customize\": \"自定义\",\n\n        \"🎯 Assigned\": \"🎯 已分配\",\n        \"💬 Participating\": \"💬 参与\",\n        \"✋ Mentioned\": \"✋ 提及\",\n        \"🙌 Team mentioned\": \"🙌 提到的团队\",\n        \"👀 Review requested\": \"👀 审查请求\",\n        \"Add new filter\": \"添加新筛选器\",\n        \"Name\": \"名称\",\n        \"Filter by…\": \"筛选…\", // Android UA 下才有\n        \"New filter\": \"新建\", // Android UA 下才有\n        \"Filter inbox by…\": \"筛选收件箱…\",\n        \"Create new filter\": \"创建新规则\",\n        \"Query\": \"规则\",\n\n        \"All caught up!\": \"处理完了！\",\n        \"Take a break, write some code, do what you do best.\": \"休息一下，写一些代码，做您最擅长的事。\",\n        \"Save something important\": \"保存重要的东西\",\n        \"Notifications you save will appear here to read later.\": \"您保存的通知会出现在这里，以便以后阅读。\",\n        \"Mark notifications as done so you can move on with your work.\": \"将通知标记为已完成，以便您可以继续工作。\",\n        \"New activity appears in your inbox.\": \"新活动出现在您的收件箱中。\",\n        \"All done here!\":\"这里都完成了！\",\n        \"You're caught up on this filter.\":\"您已处理完当前筛选下的所有任务。\",\n\n        // /notifications?query=repo 某个仓库\n        \"We've noticed that you rarely interact with this repository, are you sure you need notifications?\": \"我们注意到您很少与此仓库交互，您确定需要通知吗？\",\n        \"Unwatch\": \"取消关注\",\n        // \"Notifications\": \"通知类型\",\n            \"Participating and @mentions\": \"参与和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n            \"All Activity\": \"所有活动\",\n            \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定义\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n            \"Releases\": \"发行版\",\n            \"Discussions\": \"讨论\",\n                \"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n            \"Security alerts\": \"安全警报\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"应用\",\n\n        \"ProTip!\": \"专业提示！\",\n            \"Triage notifications on the go with GitHub Mobile for\": \"使用 GitHub Mobile 随时随地查看分类通知\",\n            \"When viewing a notification, press\": \"在查看一条通知时，按下\",\n            \"to mark it as Done.\": \"将其标记为 “已完成”。\",\n            \"to mark it as Unread.\": \"将其标记为 “未读”。\",\n            \"Create custom filters to quickly access your most important notifications.\": \"创建自定义筛选器以快速访问最重要的通知。\",\n            \"Filter by\": \"使用\",\n            \"to see what's new.\": \"查看新通知。\",\n            \"then bulk select and mark all as\": \"然后批量选择并将所有内容标记为\",\n            \"to clean up your inbox.\": \"以清理收件箱。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected/, \"$1 条被选中\"],\n        [/Select all (\\d+) notifications?/, \"选中全部 $1 条通知\"],\n        [/View all (\\d+) notifications?/, \"查看全部 $1 条通知\"], // 仓库分组模式\n        [/(\\d+) new notifications?/, \"$1 条新通知\"],\n        [/of (\\d+)/, \" 共 $1 条\"],\n        [/workflow run failed for ([^ ]+) branch/, \"工作流程运行失败，$1 分支\"], // F12 才翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notifications\": \"通知\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"watching\"] = { // 关注的仓库页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"Watching\": \"关注\",\n        \"Subscriptions\": \"订阅\",\n        \"Custom\": \"自定义\",\n        // \"Ignoring\": \"忽略\",\n\n        \"Unwatch suggestions\": \"取消关注建议\",\n        \"These repositories may be causing unnecessary notifications.\": \"这些仓库可能导致不必要的通知。\",\n\n        //\n        \"Are you sure?\": \"您确定吗?\",\n        // [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消对这 $1 个仓库的关注，您将只在参与或 @您 时收到通知。\"], //取消所以关注\n\n        \"Ignoring\": \"忽略\",\n        \"Stop ignoring\": \"取消忽略\",\n        \"Watch\": \"关注\",\n        \"Unwatch\": \"取消关注\",\n\n        //\"Watched repositories\": \"关注的仓库\",\n\n        // \"Stop ignoring\": \"取消忽略\",\n        //\"Sorted by most recently watched.\": \"按最近关注排序\",\n        \"Unwatch all\": \"取消所有关注\",\n            \"Unwatch repositories by owner\": \"按所有者取消关注仓库\",\n            \"Find a repository owner\": \"查找仓库所有者\",\n            \"All repositories\": \"所有仓库\",\n             // [/([^ ]+)'s repositories/, \"$1 的仓库\"],\n        \"Stop watching all repositories\": \"取消关注所有的仓库\",\n\n        // 取消所有者关注仓库对话框\n        // [/Confirm unwatching ([^ ]+)'s repositories/, \"确认不关注 $1 的仓库\"],\n        // [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您将停止接收您所关注的 $1 拥有的所有仓库的通知。\"],\n\n        // 关注 & 订阅通知设置 下拉菜单\n        // \"Notifications\": \"通知类型\",\n        \"Participating and @mentions\": \"参与和 @您\",\n        \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您 时接收来自此仓库的通知。\",\n        \"All Activity\": \"所有活动\",\n        \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n        \"Ignore\": \"忽略\",\n        \"Never be notified.\": \"永不接收通知。\",\n        // \"Custom\": \"自定义\",\n        \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您 之外还要接收通知的事件。\",\n        \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n        \"Releases\": \"发行版\",\n        \"Discussions\": \"讨论\",\n            \"Discussions are not enabled for this repository\": \"该仓库未启用讨论功能\",\n        \"Security alerts\": \"安全警报\",\n        //\"Cancel\": \"取消\",\n        \"Apply\": \"应用\",\n\n        \"Notification settings\": \"通知设置\",\n        \"You can change how you receive notifications from your account settings.\": \"您可以从账户设置更改接收通知的方式。\",\n        \"Change notification settings\": \"更改通知设置\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消对这 $1 个仓库的关注，您将只在参与或 @您 时收到通知。\"],\n        [/Unwatch (\\d+) repositor(y|ies)/, \"取消对 $1 个仓库关注\"],\n        [/You will stop receiving notifications for the (\\d+) repositor(y|ies) you are watching./, \"您将停止接收您正在关注的 $1 个仓库的通知。\"],\n        [/Confirm unwatching ([^ ]+)'s repositories/, \"确定不关注 $1 的仓库\"],\n        [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您将停止接收您所关注的 $1 拥有的所有仓库的通知。\"],\n        [/([^ ]+)'s repositories/, \"$1 的仓库\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"notifications/subscriptions\"] = { //订阅的仓库页面\n    \"static\": { // 静态翻译\n        \"Notifications\": \"通知\",\n        \"Watching\": \"关注\",\n        \"Subscriptions\": \"订阅\",\n\n        \"Reason\": \"原因\",\n            \"Filter by reason\": \"按原因筛选\",\n            \"Any reason\": \"任何原因\",\n            \"Show all subscriptions\": \"显示所有订阅\",\n            \"Assign\": \"分配\",\n            \"You were assigned to the Issue/PR.\": \"您被分配到议题/拉取请求。\",\n            \"Author\": \"作者\",\n            \"You created the thread.\": \"您创造了这个话题。\",\n            \"Comment\": \"评论\",\n            \"You commented on the thread.\": \"您评论了这个话题。\",\n            \"Manual\": \"手动\",\n            \"You subscribed to the thread (via an Issue or Pull Request).\": \"您订阅了该主题（通过议题或拉取请求）。\",\n            \"Mention\": \"提及\",\n            \"You were specifically @mentioned in the content.\": \"在内容中特别 @您。\",\n            \"Review Requested\": \"请求审查\",\n            \"You were requested for review.\": \"您被要求进行审查。\",\n            \"State Change\": \"状态变化\",\n            \"You changed the thread state (for example, closing an Issue or merging a Pull Request).\": \"您更改了话题状态（例如，关闭议题或合并拉取请求）。\",\n            \"Team Mention\": \"提及团队\",\n            \"You were on a team that was mentioned.\": \"您在团队中被提及。\",\n        \"Repository\": \"仓库\",\n            \"Filter by repository\": \"按仓库筛选\",\n            \"Filter repository\": \"筛选仓库\",\n            \"All repositories\": \"所有仓库\",\n            \"Loading repositories…\": \"载入仓库中…\",\n        \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Most recently subscribed\": \"最近订阅最多的\",\n            \"Least recently subscribed\": \"最近订阅最少的\",\n\n        \"Reason:\": \"原因：\",\n        \"Repository:\": \"仓库：\",\n        \"Clear current filters\": \"清除当前筛选器\",\n        \"No results matched your search.\": \"没有符合您的搜索结果。\",\n\n        \"selected\": \"个被选中\",\n        \"Unsubscribe\": \"取消订阅\",\n\n        \"opened\": \"打开\",\n        \"• subscribed\": \"• 订阅于\",\n        \"• updated\": \"• 更新于\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"stars\"] = { // 星标 https://github.com/stars/<user-name>\n    \"static\": { // 静态翻译\n        \"Your Stars\": \"我的星标\",\n        \"Browse your starred repositories and topics\": \"浏览我的星标仓库和主题\",\n        \"Your Starred Repositories\": \"我的星标仓库\",\n        \"Browse your starred repositories\": \"浏览我的星标仓库\",\n        \"Your Starred Topics\": \"我的星标主题\",\n        \"Browse your starred topics\": \"浏览我的星标主题\",\n\n        \"Browse starred repositories and topics\": \"浏览星标仓库和主题\",\n        \"Starred Repositories\": \"星标仓库\", // 他人\n        \"Browse starred repositories\": \"浏览星标仓库\", // 他人\n        \"Starred Topics\": \"星标主题\", // 他人\n        \"Browse starred topics\": \"浏览星标主题\", // 他人\n\n        \"Search stars…\": \"搜索星标主题…\",\n        \"Sort:\": \"排序：\",\n            // 筛选下拉\n            \"Sort options\": \"排序选项\",\n            \"Recently starred\": \"最近标星\",\n            \"Recently active\": \"最近活跃\",\n            \"Most stars\": \"最多星标\",\n\n        \"Sponsor\": \"赞助\",\n        \"Unstar\": \"已加星标于\",\n        \"See all starred repositories\": \"查看所有星标仓库\",\n        \"See all starred topics\": \"查看所有星标主题\",\n\n        \"You don’t have any starred topics, yet.\": \"您尚无任何的星标主题。\",\n        \"As you\": \"如果您\",\n        \"explore GitHub\": \"探索 GitHub\",\n        \"star topics to save them for later and they’ll show up here.\": \" 时，标星主题，它们会在这里显示出来。\",\n\n\n        // 右侧栏\n        \"All stars\": \"所有星标\",\n        \"All repositories\": \"所有仓库\",\n        \"Your repositories\": \"我的仓库\",\n        \"Others’ repositories\": \"其他仓库\",\n        \"Topics\": \"主题\",\n\n        \"Filter by languages\": \"按语言筛选\",\n        \"Jump to a friend\": \"去好基友那\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your starred topics\": \"我的星标主题\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"issues\"] = { // 议题页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository/issues\"][\"static\"],\n\n        \"Pull Requests\": \"拉取请求\", // pulls\n\n        \"Assigned to me\": \"分配给您\",\n        \"Created by me\": \"由您创建\",\n\n        \"Created\": \"已创建\",\n        \"Assigned\": \"已分配\",\n        \"Mentioned\": \"提到的\",\n            \"Issues mentioning you\": \"提及您的议题\",\n            \"Pull Requests mentioning you\": \"提及您的拉取请求\", // pulls\n        \"Review requests\": \"审查请求\", // pulls\n            \"Pull Requests requesting your review\": \"请求您审查的拉取请求\", // pulls\n        \"Recent activity\": \"最近活动\",\n        \"Views\": \"视图\",\n            \"Untitled view\": \"未命名的视图\",\n            \"All views\": \"所有视图\",\n            \"Create view\": \"创建视图\",\n                \"Build powerful views to keep track of work\": \"构建强大的视图来跟踪工作\",\n                \"Create your own views to quickly find and access your work.\": \"创建您自己的视图以快速查找和访问您的工作。\",\n                \"You have unsaved changes\": \"您有未保存的更改\",\n                    \"Are you sure you want to discard them?\": \"您确定要丢弃它们吗？\",\n                    \"OK\": \"确定\",\n            \"Saved views menu\": \"保存的视图菜单\",\n            \"Edit view\": \"编辑视图\",\n                \"Icon\": \"图标\",\n                \"Description\": \"描述\",\n                \"Query\": \"查询\",\n                \"Save view\": \"保存视图\",\n            \"Delete view\": \"删除视图\",\n\n        \"Visibility\": \"可见性\",\n        \"Repository visibility\": \"仓库可见性\",\n        \"Private repositories only\": \"只有私有仓库\",\n        \"Public repositories only\": \"只有公共仓库\",\n\n        \"Organization\": \"组织\",\n        \"Filter by organization or owner\": \"按组织或所有者筛选\",\n        \"Filter organizations\": \"筛选组织\",\n\n        \"Sort\": \"排序\",\n        \"Sort by\": \"排序方式\",\n        \"Order\": \"顺序\",\n        \"Newest\": \"最新的\",\n        \"Oldest\": \"最早的\",\n        \"Most commented\": \"最多评论\",\n        \"Least commented\": \"最少评论\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n        \"Best match\": \"最佳匹配\",\n        \"Most reactions\": \"最多回应\",\n        \"Least reactions\": \"最少回应\",\n\n        // 状态词\n        \"was merged\": \"已合并\",\n        \"was closed\": \"已关闭\",\n        \"Approved\": \"已批准\",\n        \"Review required\": \"请求审查\", // 拉取请求 页面状态词\n            \"Review required before merging\": \"合并前需要审查\",\n        \"Changes requested\": \"请求更改\",\n        \"outdated\": \"陈旧的\",\n        \"Draft\": \"草案\",\n        \"Merged\": \"已合并\",\n        \"opened\": \"打开于\",\n\n        \"This issue was\": \"此议题已\",\n            \"closed\": \"关闭\",\n\n        // \"No results matched your search.\": \"没有符合您的搜索结果。\",\n        \"Search all issues\": \"搜索所有议题\",\n        // 筛选结果\n        \"No results matched your search.\": \"没有与您的搜索匹配的结果。\",\n        \"You could search\": \"您可以搜索\",\n        \"all of GitHub\": \"所有 GitHub\",\n        \"or try an\": \"或者尝试\",\n        \"advanced search\": \"高级搜索\",\n        \"No results\":\"无结果\",\n        \"Try adjusting your search filters.\":\"尝试调整您的搜索筛选条件。\",\n        \"Failed to load issues.\": \"无法加载议题。\",\n        \"We encountered an error trying to load issues.\": \"我们在尝试加载议题时遇到了错误。\",\n\n        // \"Use the links above to find what you’re looking for, or try\": \"使用上面的链接找到您要找的内容，或尝试\",\n        // \"a new search query\": \"新的搜索查询\",\n        // \". The Filters menu is also super helpful for quickly finding issues most relevant to you.\": \"。筛选菜单也是快速找到议题最相关的您超级有帮助的。\",\n        // \"Updated in the last three days\": \"更新了最后三天：\",\n        \"ProTip!\": \"专业提示！\",\n            \"Exclude your own issues with\": \"排除自己的议题\",\n            \"Mix and match filters to narrow down what you’re looking for.\": \"通过混合和匹配筛选器以缩小您要查找的范围。\",\n            \"Exclude everything labeled\": \"如果要找到所有标有\",\n            \"with\": \"标签的，请使用\",\n            \"on any issue or pull request to go back to the issue listing page.\": \"在任何议题或拉取请求上以返回到问题列表页面。\",\n            \"on any issue or pull request to go back to the pull request listing page.\": \"在任何问题或拉取请求上以返回拉取请求列表页面。\",\n            \"Updated in the last three days:\": \"最近三天更新：\",\n            \"Find all pull requests that aren't related to any open issues with\": \"查找与任何未解决议题无关的所有拉取请求\",\n            \"Adding\": \"添加\",\n            \"will show everything without a label.\": \"将显示没有标签的所有内容。\",\n            \"Follow long discussions with\": \"要跟随长讨论，请使用\",\n            \"Find everything you created by searching\": \"找到您创建的所有内容，通过搜索\",\n            \"will show everything without a milestone.\": \"将显示没有里程碑的任何东西。\",\n            \"What’s not been updated in a month:\": \"1 个月之内没有更新的内容：\",\n            \"to see everything that’s not assigned.\": \"以查看所有未分配的内容。\",\n\n        // 键盘快捷键\n            \"Pull request list\"  : \"拉取请求列表\",\n                \"Open pull request\"  : \"打开拉取请求\",\n            \"Pull request - Conversation tab\": \"拉取请求 - 对话选项卡\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Submit comment\": \"提交评论\",\n                \"Submit comment and close or open pull request\": \"提交评论并关闭或打开拉取请求\",\n                \"Submit comment and close issue\": \"提交评论并关闭??议题\", // 议题\n                \"Preview comment\": \"预览评论\",\n                \"Create issue\": \"创建议题\", //议题\n                \"Request reviewers\": \"请求审查者\",\n                \"Filter by author\"             : \"按作者筛选\",\n                \"Filter by or edit assignees\"  : \"按受理人筛选或编辑受理人\",\n                \"Filter by or edit labels\"     : \"按标签筛选或编辑标签\",\n                \"Filter by or edit projects\"   : \"按项目筛选或编辑项目\",\n                \"Filter by or edit milestones\" : \"按里程碑筛选或编辑里程碑\",\n                \"Link an issue or pull request from the same repository\": \"链接同一仓库的议题或拉取请求\",\n                \"Reply (quoting selected text)\": \"答复（引用所选文本）\",\n                \"Open saved replies\": \"打开快捷回复（引用所选文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回复（打开快捷回复）\",\n                \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切换所有折叠审查意见的可见性，而不仅仅是当前的审查意见\",\n            \"Pull request - Files changed tab\": \"拉取请求 - 文件更改标签卡\",\n                \"Open commits list\": \"打开提交列表\",\n                \"Open files list\": \"打开文件列表\",\n                \"Next commit\": \"下一个提交\",\n                \"Previous commit\": \"上一个提交\",\n                \"Show or hide annotations\": \"显示或隐藏批注\",\n                \"Show or hide comments\": \"显示或隐藏评论\",\n                \"Submit a review comment\": \"提交审查意见\",\n                \"Collapse or expand all files instead of just the current one\": \"折叠或展开所有文件，而不仅仅是当前文件\",\n                    \"and click\": \"和点击\",\n\n        \"Search Issues\": \"搜索议题\",\n            // 仓库\n                \"No repository\": \"无仓库\",\n                \"Has repository\": \"包含仓库\",\n                \"Exclude repo\": \"排除仓库\",\n            // 组织\n                \"Has organization\": \"包含组织\",\n                \"Exclude org\": \"排除组织\",\n            \"Is\": \"类型为\",\n                \"Exclude is\": \"排除类型为\",\n                \"Issue\": \"议题\",\n                \"Pull Request\": \"拉取请求\",\n                \"Unmerged\": \"未合并\",\n                \"Locked\": \"已锁定\",\n                \"Unlocked\": \"未锁定\",\n                \"Blocked\": \"已阻塞\",\n            \"State\": \"状态\",\n                \"Exclude state\": \"排除状态\",\n            // 标签\n                \"No label\": \"无标签\",\n                \"Has label\": \"包含标签\",\n                \"Exclude label\": \"排除标签\",\n                \"aesthetics\": \"美化\",\n                \"bug\": \"缺陷\",\n                \"dependencies\": \"依赖项\",\n                \"development\": \"开发中\",\n                \"discuss\": \"讨论\",\n                \"documentation\": \"文档\",\n                \"duplicate\": \"重复\",\n                \"enhancement\": \"功能增强\",\n                \"forums\": \"论坛\",\n                \"good first issue\": \"适合新手\",\n                \"help wanted\": \"求助\",\n                \"invalid\": \"无效\",\n                \"question\": \"提问\",\n                \"website\": \"网站\",\n                \"wontfix\": \"不会修复\",\n            // 类型\n                \"No type\": \"无类型\",\n                \"Has type\": \"包含类型\",\n            \"Project\": \"项目\",\n                \"No project\": \"无项目\",\n                \"Has project\": \"包含项目\",\n                \"Exclude project\": \"排除项目\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"无里程碑\",\n                \"Has milestone\": \"包含里程碑\",\n                \"Exclude milestone\": \"排除里程碑\",\n            // 受理人\n                \"No assignee\": \"无受理人\",\n                \"Has assignee\": \"包含受理人\",\n                \"Me\": \"我\",\n                    \"Signed-in user\": \"已登录用户\",\n                // Copilot\n                    \"Your AI pair programmer\": \"您的 AI 编程助理\",\n                \"Exclude assignee\": \"排除受理人\",\n            \"Author\": \"作者\",\n                \"Has author\": \"包含作者\",\n                \"Exclude author\": \"排除作者\",\n            \"Involves\": \"涉及\",\n                \"Has involves\": \"包含涉及\",\n                \"Exclude involves\": \"排除涉及\",\n            \"Mentions\": \"提及\",\n                \"Has mentions\": \"包含提及\",\n                \"Exclude mentions\": \"排除提及\",\n            \"Parent issue\": \"父议题\",\n                \"No parent issue\": \"无父议题\",\n                \"Has parent issue\": \"包含父议题\",\n                \"Exclude parent-issue\": \"排除父议题\",\n            \"Blocking\": \"阻塞\",\n                \"No blocking\": \"无阻塞\",\n                \"Has blocking\": \"包含阻塞\",\n                \"Exclude blocking\": \"排除阻塞\",\n            \"Blocked by\": \"被…阻塞\",\n                \"No blocked by\": \"无被阻塞\",\n                \"Has blocked by\": \"包含被阻塞\",\n                \"Exclude blocked-by\": \"排除被阻塞\",\n            \"Sub-issue\": \"子议题\",\n                \"No sub-issue\": \"无子议题\",\n                \"Has sub-issue\": \"包含子议题\",\n                \"Exclude sub-issue\": \"排除子议题\",\n            \"Update date\": \"更新日期\",\n                \"Exclude updated\": \"排除更新日期\",\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Past 7 days\": \"过去 7 天\",\n                \"Past 30 days\": \"过去 30 天\",\n                \"Past year\": \"过去 1 年\",\n            \"Creation date\": \"创建日期\",\n                \"Has creation date\": \"包含创建日期\",\n                \"Exclude created\": \"排除创建日期\",\n            \"Closed date\": \"关闭日期\",\n                \"Has closed date\": \"包含关闭日期\",\n                \"Exclude closed\": \"排除关闭日期\",\n            \"Merge date\": \"合并日期\",\n                \"Has merge date\": \"包含合并日期\",\n                \"Exclude merged\": \"排除合并日期\",\n            \"Review requested\": \"已请求评审\",\n                \"Has review requested\": \"包含已请求评审\",\n                \"Exclude review-requested\": \"排除已请求评审\",\n            \"In\": \"在\",\n                \"Has in\": \"包含在\",\n                \"Exclude in\": \"排除在\",\n                \"Body\": \"正文\",\n                \"Comments\": \"评论\",\n            \"Commenter\": \"评论者\",\n                \"Has commenter\": \"包含评论者\",\n                \"Exclude commenter\": \"排除评论者\",\n            \"User\": \"用户\",\n                \"Has user\": \"包含用户\",\n                \"Exclude user\": \"排除用户\",\n            \"User review requested\": \"已请求用户评审\",\n                \"Has user review requested\": \"包含已请求用户评审\",\n                \"Exclude user-review-requested\": \"排除已请求用户评审\",\n            \"Reviewed by\": \"评审者\",\n                \"Has reviewed by\": \"包含评审者\",\n                \"Exclude reviewed-by\": \"排除评审者\",\n            \"Comment count\": \"评论数\",\n                \"Has comment count\": \"有评论数\",\n                \"Less than 10\": \"少于 10\",\n                \"More than 10\": \"多于 10\",\n                \"Between 10 and 100\": \"10 到 100\",\n            \"Interactions count\": \"互动数\",\n                \"Has interactions count\": \"有互动数\",\n            \"Closed reason\": \"关闭原因\",\n                \"Exclude reason\": \"排除原因\",\n                \"Completed\": \"已完成\",\n                \"Not planned\": \"未计划\",\n                \"Duplicate\": \"重复\",\n            \"Linked\": \"已链接\",\n                \"Has linked\": \"包含已链接\",\n                \"Exclude linked\": \"排除已链接\",\n            \"Archived\": \"已归档\",\n                \"Has archived\": \"包含已归档\",\n                \"Exclude archived\": \"排除已归档\",\n                \"True\": \"是\",\n                \"False\": \"否\",\n            \"Reaction count\": \"表情回应数\",\n                \"Has reaction count\": \"有表情回应数\",\n            // 草案\n                \"Has draft\": \"包含草案\",\n                \"Exclude draft\": \"排除草案\",\n            \"Review state\": \"评审状态\",\n                \"Has review state\": \"包含评审状态\",\n                \"Exclude review\": \"排除评审状态\",\n                \"No reviews\": \"无评审\",\n            \"Code language\": \"代码语言\",\n                \"Has code language\": \"包含代码语言\",\n                \"Exclude language\": \"排除代码语言\",\n            \"Commit SHA\": \"提交 SHA\",\n                \"Has commit sha\": \"包含提交 SHA\",\n                \"Exclude sha\": \"排除提交 SHA\",\n            \"Base\": \"基础分支\",\n                \"Has base\": \"包含基础分支\",\n                \"Exclude base\": \"排除基础分支\",\n            \"Head\": \"对比分支\",\n                \"Has head\": \"包含对比分支\",\n                \"Exclude head\": \"排除对比分支\",\n            // 状态 (Status)\n                \"Has status\": \"包含状态检查\",\n                \"Exclude status\": \"排除状态检查\",\n                \"Pending\": \"待处理\",\n                \"Success\": \"成功\",\n                \"Failure\": \"失败\",\n                \"Queued\": \"排队中\",\n                \"Waiting\": \"等待中\",\n                \"Cancelled\": \"已取消\",\n                \"Skipped\": \"已跳过\",\n            \"Team\": \"团队\",\n                \"Has team\": \"包含团队\",\n                \"Exclude team\": \"排除团队\",\n            \"Team review requested\": \"已请求团队评审\",\n                \"Has team review requested\": \"包含已请求团队评审\",\n                \"Exclude team-review-requested\": \"排除已请求团队评审\",\n            // 排序\n                \"Has sort\": \"包含排序\",\n                \"Exclude sort\": \"排除排序\",\n                \"Least reactions\": \"最少回应\",\n                \"Most thumbs up (👍) reactions\": \"👍 回应最多\",\n                \"Least thumbs up (👍) reactions\": \"👍 回应最少\",\n                \"Most thumbs down (👎) reactions\": \"👎 回应最多\",\n                \"Least thumbs down (👎) reactions\": \"👎 回应最少\",\n                \"Most laugh (😄) reactions\": \"😄 回应最多\",\n                \"Least laugh (😄) reactions\": \"😄 回应最少\",\n                \"Most confused (😕) reactions\": \"😕 回应最多\",\n                \"Least confused (😕) reactions\": \"😕 回应最少\",\n                \"Most tada (🎉) reactions\": \"🎉 回应最多\",\n                \"Least tada (🎉) reactions\": \"🎉 回应最少\",\n                \"Most heart (❤️) reactions\": \"❤️ 回应最多\",\n                \"Least heart (❤️) reactions\": \"❤️ 回应最少\",\n                \"Most eyes (👀) reactions\": \"👀 回应最多\",\n                \"Least eyes (👀) reactions\": \"👀 回应最少\",\n            \"AND\": \"且\",\n            \"OR\": \"或\",\n            \"Exclude\": \"排除\",\n        // 过滤器问题\n            \"Empty value for\": \"空值\",\n            \"Invalid value\": \"无效值\",\n            \"for\": \"对于\",\n        \"Clear filter\": \"清除筛选\",\n\n        \"View issue\": \"查看议题\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"repository/issues\"][\"regexp\"],\n\n        [/(\\d+) Open/, \"$1 打开\"],\n        [/(\\d+) Closed/, \"$1 已关闭\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 个任务\"],\n        [/(\\d+) results?/, \"$1 个结果\"],\n        [/(\\d+) tasks?/, \"$1 个任务\"],\n        [/(\\d+) review approvals?/, \"$1 次审查批准\"],// 拉取请求页 \"已批准' 浮动提示\n        [/(\\d+) review requesting changes?/, \"$1 条请求更改评论\"],\n        [/([\\d,]+) linked issues?/, \"$1 个关联议题\"],\n        [/([\\d,]+) linked pull requests?/, \"$1 个关联拉取请求\"],\n        [/(\\d+) \\/ (\\d+) checks? OK/, \"$1 / $2 检查 OK\"], // 对勾 的提醒 /pulls\n        [/Assigned to ([^ ]+)/, \"分配给 $1\"],\n        [/Created by ([^ ]+)/, \"由 $1 创建\"],\n        [/Updated/, \"更新于\"],\n        [/#([^ ]+) opened/, \"#$1 打开于\"],\n        [/#(\\d+) by/, \"#$1 打开者\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在议题中通过 @ 提及通知某人，例如：@$1。\"], // 专业提示\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵痒了？用它筛选 @$1 的提及：\"], // 专业提示\n        [/Are you sure you want to delete view (.*)\\?/, \"您确定要删除视图 $1 吗？\"],\n        [/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            // issues\n            \"Assigned to me\": \"分配给您\",\n            \"Created by me\": \"由您创建\",\n            \"Mentioned\": \"提到的\",\n            \"Recent Activity\": \"最近活动\",\n            \"View\": \"视图\",\n\n            // pulls\n            \"Pull requests - Created\": \"拉取请求 - 已创建\",\n            \"Pull requests - Assigned\": \"拉取请求 - 已分配\",\n            \"Pull requests - Mentioned\": \"拉取请求 - 提到的\",\n            \"Pull requests - Review requests\": \"拉取请求 - 审查请求\",\n        },\n    },\n};\nI18N[\"zh-CN\"].pulls = I18N[\"zh-CN\"].issues;\n\nI18N[\"zh-CN\"][\"repos\"] = {\n    \"static\": {\n        \"My contributions\": \"我的贡献\",\n        \"My repositories\": \"我的仓库\",\n        \"My forks\": \"我的复刻\",\n        \"Adminable by me\": \"我可管理\",\n\n        \"Views\": \"视图\",\n            \"Create view\": \"新建\",\n                \"Icon\": \"图标\",\n                \"Description\": \"描述\",\n                \"Query\": \"查询\",\n\n                \"Save view\": \"保存\",\n\n        // 搜索栏\n            \"Clear filter\": \"清除筛选\",\n            \"Comfortable display density\": \"舒适视图\",\n            \"Compact display density\": \"紧凑视图\",\n\n        // 筛选框\n            \"Relevance\": \"相关性\",\n            \"Last pushed\": \"最后推送\",\n            \"Name\": \"名称\",\n\n            \"Ascending\": \"递增\",\n            \"Descending\": \"递减\",\n\n        \"Updated\": \"更新于\",\n    },\n    \"regexp\": [\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/([^ ]+)’s past year of commit activity/, \"近几年 $1 的提交活动\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"search\"] = { // 搜索页面\n    \"static\": { // 静态翻译\n        \"More than\": \"多余\",\n        \"ms\": \"毫秒\", // 时间，前面\"结果\"走正则匹配\n        \"s\": \"秒\", // 同上\n        \"in\": \"在\",\n        \"View topic\": \"查看主题\", //搜索结果中的主题\n        // 搜索 https://github.com/search >>>>>>>>>>>>>>>>>>>>>>>>\n            \"Search GitHub\": \"在 GitHub 上搜索\",\n\n            // ProTip\n            \"ProTip!\": \"专业提示！\",\n            \"Press the\": \"再次按\",\n            \"key to activate the search input again and adjust your query.\": \"键激活搜索输入并调整您的搜索结果。\",\n            \"For an\": \"要进行\",\n            \"advanced search\": \"高级搜索\",\n            \", use our\": \"，使用我们的\",\n            \"prefixes\": \"前缀\",\n\n            // 搜索技巧 对话框 (忽略 不翻译)\n            \"Search cheat sheet\": \"搜索小技巧\",\n            \"GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.\": \"GitHub 的搜索支持各种不同的操作。下面是一些常见搜索的快速小抄。\",\n            \"For more information, visit our\": \"更多有关信息，请访问我们的\",\n            \"search help section\": \"搜索帮助章节\",\n            \"Basic search\": \"基本搜索\",\n            \"This search\": \"关键规则\",\n            \"Finds repositories with…\": \"查找仓库…\",\n            \"Repository search\": \"仓库搜索\",\n            \"Code search\": \"代码搜索\",\n            \"Issue search\": \"议题搜索\",\n            \"User search\": \"用户搜索\",\n\n        // 搜索结果页面 https://github.com/search?q=  >>>>>>>>>>>>>>>>>>>>>>>>\n            // 左侧菜单\n            \"Filter by\": \"筛选\",\n            \"Code\": \"代码\",\n            \"Repositories\": \"仓库\",\n            \"Commits\": \"提交\",\n            \"Discussions\": \"讨论\",\n            \"Topics\": \"主题\",\n            \"Users\": \"用户\",\n\n            \"States\": \"状态\",\n\n            \"Languages\": \"语言\",\n            \"More languages...\": \"更多语言…\",\n\n            // &type=code\n            \"Files with identical content are grouped together.\": \"内容相同的文件已归为一组。\",\n                \"Hide these extra files instead\": \"隐藏这些重复文件\",\n\n            \"More repositories...\": \"更多仓库…\",\n            \"Paths\": \"路径\",\n            \"More directories...\": \"更多路径…\",\n\n            // &type=registrypackages\n            \"Types\": \"类型\",\n\n            // &type=issues\n            \"State\": \"状态\",\n\n            \"Advanced\": \"高级搜索\",\n                \"Owner\": \"所有者\",\n                \"Size\": \"尺寸\",\n                \"Number of followers\": \"关注数\",\n                \"Number of forks\": \"复刻数\",\n                \"Number of stars\": \"星标数\",\n                \"Date created\": \"创建日期\",\n                \"Date pushed\": \"推送日期\",\n                \"Topic\": \"话题\",\n                \"License\": \"许可证\",\n                \"Archived\": \"存档\",\n\n                // &type=code\n                \"Symbol\": \"符号\",\n                \"Exclude archived\": \"排除存档\",\n\n                // &type=issues\n                \"Close reason\": \"关闭原因\",\n                \"Has linked pull request\": \"已关联的拉取请求\",\n                \"Author\": \"作者\",\n                \"Assignee\": \"受理人\",\n                \"Mentioned user\": \"提及的用户\",\n                \"Mentioned team\": \"提及的团队\",\n                \"Commenter\": \"评论者\",\n                \"Involved user\": \"相关用户\",\n                \"Label\": \"标签\",\n                \"Milestone\": \"里程碑\",\n                \"Number of comments\": \"评论数\",\n                \"Number of interactions\": \"互动数\",\n\n                // &type=pullrequests\n                \"CI status\": \"CI 状态\",\n                \"Review status\": \"审查状态\",\n                \"Merged\": \"已合并\",\n                \"Not merged\": \"未合并\",\n\n                // &type=discussions\n                \"Organization\": \"组织\",\n                \"Involves user\": \"相关用户\",\n\n                // &type=users\n                \"Full name\": \"全称\",\n                \"Location\": \"地区\",\n                \"Language\": \"语言\",\n                \"Sponsorable\": \"可赞助\",\n\n                // &type=commits\n                \"Committer\": \"提交至\",\n                \"Author email\": \"作者电子邮箱\",\n                \"Committer email\": \"提交者电子邮箱\",\n                \"Merge commits\": \"合并提交\",\n                \"Hash\": \"哈希值\",\n                \"Parent hash\": \"父哈希值\",\n                \"Tree hash\": \"树哈希值\",\n\n            \"Advanced search\": \"高级搜索\",\n                // &type=wikis\n                \"User\": \"用户\",\n                \"Repository\": \"仓库\",\n                \"Last updated date\": \"最后更新日期\",\n                // &type=topics\n                \"Curated topics\": \"策划主题\",\n                \"Featured topics\": \"精选主题\",\n                \"Number of repositories\": \"仓库数\",\n                \"Creation date\": \"创建日期\",\n\n            \"Cheat sheet\": \"搜索技巧\",\n\n            \"Sort by:\": \"排序方式：\",\n            \"Sort by\": \"排序方式\", // Android UA\n                // 筛选下拉\n                // &type=repositories\n                \"Sort options\": \"排序选项\",\n                \"Best match\": \"最佳匹配\",\n                \"Most stars\": \"最多星标\",\n                \"Fewest stars\": \"最少星标\",\n                \"Most forks\": \"最多复刻\",\n                \"Fewest forks\": \"最少复刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                // 提交\n                \"Recently committed\": \"最近提交\",\n                \"Least recently committed\": \"最早提交\",\n                \"Recently authored\": \"最近撰写\",\n                \"Least recently authored\": \"最早撰写\",\n                // 议题\n                \"Most commented\": \"最多评论\",\n                \"Least commented\": \"最少评论\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                // 讨论\n                \"Highest score\": \"得分最高\",\n                \"Lowest score\": \"得分最低\",\n                // 软件包\n                \"Most downloads\": \"最多下载\",\n                \"Fewest downloads\": \"最少下载\",\n                // 用户\n                \"Most followers\": \"最多关注者\",\n                \"Fewest followers\": \"最少关注者\",\n                \"Most recently joined\": \"最近加入\",\n                \"Fewest recently joined\": \"最早加入\",\n                \"Least recently joined\": \"最早加入\",\n                \"Most repositories\": \"最多仓库\",\n                \"Fewest repositories\": \"最少仓库\",\n\n            \"More options\": \"更多选项\",\n            \"your search\": \"您的搜索\", // Android UA\n            \"View search docs\": \"查看搜索文档\",\n\n            // 部分状态词\n            \"Updated\": \"更新于\", // &type=repositories\n            \"committ\": \"提交\",\n            \"committed\": \"提交于\", // &type=commits\n            \"Opened\": \"打开于\", // &type=issues\n            \"Last updated\": \"最近更新于\", // &type=wikis\n            \"posted\": \"发布于\", // &type=discussions\n\n            // 保存对话框\n            \"Create saved search\": \"创建保存的搜索\",\n                \"Use saved searches to filter your results more quickly\": \"使用保存的搜索更快地筛选结果\",\n                \"Name\": \"名称\",\n                \"Query\": \"询问\",\n                \"To see all available qualifiers, see our\": \"要查看所有可用的限定符，请参阅我们的\",\n                \"documentation\": \"文档\",\n\n                \"Name has already been taken\": \"名称被占用\",\n\n            // &type=repositories\n                \"Sponsor\": \"赞助\",\n                // [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n                // 赞助对话框\n                \"External links\": \"外部链接\",\n                \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n                \"Report abuse\": \"举报滥用\",\n\n                // 右侧栏\n                    \"Sponsor open source projects you depend on\": \"赞助您依赖的开源项目\",\n                    \"Contributors are working behind the scenes to make open source better for everyone—give them the help and recognition they deserve.\": \"贡献者们正在幕后努力，为每个人创造更好的开源环境——给予他们应有的帮助和认可\",\n                    \"Explore sponsorable projects\": \"探索可赞助项目\",\n\n                    \"How can we improve search?\": \"我们如何改进搜索？\",\n                    \"Give feedback\": \"提供反馈意见\",\n                        // 对话框\n                        \"Provide feedback\": \"提供反馈\",\n                            \"We read every piece of feedback, and take your input very seriously.\": \"我们认真阅读每一份反馈意见，并非常重视您的建议。\",\n                            \"Include my email address so I can be contacted\": \"附上我的电子邮件地址以便于联系\",\n                            \"Submit feedback\": \"提交\",\n\n            // &type=code\n                // [/Show ([\\d,]+) more matches?/, \"显示更多 $1 处匹配\"],\n                \"This file contains\": \"该文件还包含\",\n                \"more\": \"处\",\n                \"match\": \"匹配\",\n                \"matches\": \"匹配\",\n                \"not shown.\": \"未显示。\",\n                \"See all\": \"查看完整文件中的所有\",\n                \"matche in the full file\": \"处匹配\",\n                \"matches in the full file\": \"处匹配\",\n                // 未登录\n                \"Sign in to search code on GitHub\": \"登录以在 GitHub 上搜索代码\",\n                \"Before you can access our code search functionality please sign in or create a free account.\": \"在使用代码搜索功能之前，请先登录或创建一个免费帐户。\",\n\n            // &type=issues\n                \"Learn how you can use GitHub Issues to plan and track your work.\": \"了解如何使用 GitHub 议题计划和跟踪工作。\",\n                \"Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.\": \"保存冲刺、待办事项、团队或发布的视图。根据场合对议题进行排名、排序和筛选。可能性是无止境。\",\n                \"Learn more about GitHub Issues\": \"了解更多关于 GitHub 议题的信息\",\n\n            // &type=registrypackages\n                \"Learn GitHub Packages\": \"了解 GitHub 软件包\",\n                \"GitHub Packages is a platform for hosting and managing packages, including containers and other dependencies. Get started with publishing or installing packages yourself.\": \"GitHub 软件包是一个托管和管理包（包括容器和其他依赖项）的平台。开始自行发布或安装软件包吧\",\n                \"Learn more about GitHub Packages\": \"了解更多关于 GitHub 软件包的信息\",\n\n            // &type=topics\n                \"Related:\": \"相关的：\",\n\n            // &type=registrypackages\n                \"latest\": \"最新\",\n\n            \"Your search did not match any\": \"您的搜索没有匹配任何\",\n            \"code\": \"代码\",\n            \"issue\": \"议题\",\n            \"issues\": \"议题\",\n            \"pull request\": \"拉取请求\",\n            \"pull requests\": \"拉取请求\",\n            \"discussion\": \"讨论\",\n            \"discussions\": \"讨论\",\n            \"commit\": \"提交\",\n            \"commits\": \"提交\",\n            \"package\": \"软件包\",\n            \"packages\": \"软件包\",\n            \"wikis\": \"Wiki\",\n            \"Try one of the tips below to find more code\": \"请尝试使用以下提示查找更多代码\",\n            \"Try one of the tips below to find more repositories\": \"请尝试使用以下提示查找更多仓库\",\n            \"You could try one of the tips below.\": \"请尝试使用以下提示\",\n\n            \"However we found\": \"然而我们发现\",\n            \"code results\": \"代码结果\",\n            \"code result\": \"代码结果\",\n            \"and\": \"和\",\n            \"that matched your search query. Alternatively try one of the tips below.\": \"与您的搜索查询相匹配。或者尝试以下提示之一。\",\n\n            \"Search across repositories\": \"跨仓库搜索\",\n                \"Within a repository:\": \"在仓库内：\",\n                \"Across several:\": \"跨越几个：\",\n                \"Alternative way:\": \"替代方式：\",\n\n                \"Note that we don't currently support regular expressions in the repo or org qualifiers. For more information on search syntax, see our\": \"请注意，我们目前不支持 repo 或 org 限定符中的正则表达式。更多关于搜索语法的信息，请参阅我们的\",\n                \"syntax guide\": \"语法指南\",\n\n            \"Search across an organization\": \"跨组织搜索\",\n                \"Within an organization:\": \"在组织内：\",\n                \"User's code:\": \"用户代码：\",\n\n            \"Find a particular file extension\": \"查找特定的文件扩展名\",\n                \"With .txt extensions:\": \"带有 .txt 扩展名：\",\n                \"JavaScript and TypeScript files:\": \"JavaScript 和 TypeScript 文件：\",\n\n                \"The path qualifier can search the entire file path, not just the extension, and supports regular expressions. For more information, see our\": \"路径限定符可以搜索整个文件路径，而不仅仅是扩展名，并且支持正则表达式。更多信息，请参阅我们的\",\n\n            \"Why wasn't my code found?\": \"为什么找不到我的代码？\",\n                \"When you search within a repository for the first time, please note that the repository undergoes indexing.\": \"首次在仓库中搜索时，请注意仓库会进行索引。\",\n                \"This process may take a few minutes.\": \"这一过程可能需要几分钟。\",\n\n                \"The index currently includes more than 70 million popular public repositories, plus all private repositories that users search for.\": \"该索引目前包括超过 7000 万个热门公共仓库，以及用户搜索的所有私有仓库。\",\n                \"Beyond that, we also don't include all files in the search index:\": \"除此之外，我们也不会将所有文件都纳入搜索索引：\",\n                    \"Vendored and generated code is excluded\": \"排除供应和生成的代码\",\n                    \"Empty files and files over 350 kiB are excluded\": \"排除空文件和超过 350 kiB 的文件\",\n                    \"Only UTF-8 encoded files are indexed\": \"仅对 UTF-8 编码的文件进行索引\",\n                    \"Very large repositories may not be indexed\": \"非常大的仓库可能不会被索引\",\n\n                \"We intend to continue to increase the amount of code available in the index as much as possible. If we are missing files that are useful to you, feel free to\": \"我们打算继续尽可能增加索引中可用的代码量。如果我们缺少对您有用的文件，请随意在此处\",\n                \"provide feedback here\": \"提供反馈\",\n\n            \"Regular expressions\": \"正则表达式\",\n                \"Sparse followed by index:\": \"稀疏跟随索引：\",\n                \"Lines that end with return:\": \"以回车结束的行：\",\n                \"File paths matching:\": \"文件路径匹配：\",\n\n                \"Note that you'll have to escape any slashes in the regex. For more information, see our\": \"注意，您必须在 正则中转义任何斜线。更多信息，请参阅我们的\",\n\n            \"Saved searches\": \"保存搜索\",\n                \"Always searching within the same organization or set of repositories? Try constructing a query and click the save button in the top right corner.\": \"总是在同一个组织或一组仓库中搜索？请尝试创建一个查询，然后点击右上角的保存按钮。\",\n\n            \"You could try an\": \"您可以尝试\",\n\n        // 高级搜索 https://github.com/search/advanced >>>>>>>>>>>>>>>>>>>>>>>>\n            // 高级搜索\n            // \"Advanced search\": \"高级搜索\",\n            \"Search\": \"搜索\",\n            \"Advanced options\": \"高级选项\",\n            \"From these owners\": \"指定作者\",\n            \"In these repositories\": \"指定仓库\",\n            \"Created on the dates\": \"创建日期\",\n            \"Written in this language\": \"使用语言\",\n            \"Any language\": \"任何语言\",\n                \"Popular\": \"热门\",\n                \"Everything else\": \"其他语言\",\n\n            \"Repositories options\": \"仓库选项\",\n            \"With this many stars\": \"指定星标数\",\n            \"With this many forks\": \"指定复刻数\",\n            \"Of this size\": \"仓库大小\",\n            \"Pushed to\": \"推送于\",\n            \"With this license\": \"用何种许可证\",\n                \"Any license\": \"任意许可证\",\n                \"Licenses\": \"许可证\",\n                \"License families\": \"许可证系列\",\n            \"Return repositories\": \"搜索结果\",\n            \"not\": \"不\",\n            // \"and\": \"要\",\n            \"only\": \"仅\",\n            \"including forks.\": \"包含复刻仓库。\",\n\n            \"Code options\": \"代码选项\",\n            \"With this extension\": \"文件后缀\",\n            \"Of this file size\": \"文件大小\",\n            \"In this path\": \"文件路径\",\n            \"With this file name\": \"文件名称\",\n            \"Return code\": \"搜索结果\",\n            // \"Return code from forked repositories\": \"搜索结果包括被复刻的仓库。\",\n\n            \"Issues options\": \"议题选项\",\n            \"In the state\": \"议题状态\",\n                \"open/closed\": \"打开/关闭\",\n                \"open\": \"打开\",\n                \"closed\": \"已关闭\",\n            \"With the reason\": \"原因\",\n                \"any reason\": \"任何原因\",\n                \"completed\": \"已完成\",\n                \"not planned\": \"无计划\",\n                \"reopened\": \"重新打开\",\n            \"With this many comments\": \"评论数量\",\n            \"With the labels\": \"议题标签\",\n            \"Opened by the author\": \"提议人\",\n            \"Mentioning the users\": \"提及谁\",\n            \"Assigned to the users\": \"分配给谁\",\n            \"Updated before the date\": \"更新于\",\n\n            \"Users options\": \"用户选项\",\n            \"With this full name\": \"用户全称\",\n            \"From this location\": \"来自哪里\",\n            \"With this many followers\": \"有多少关注者\",\n            \"With this many public repositories\": \"有多少公共仓库\",\n            \"Working in this language\": \"擅长什么语言\",\n            \"Wiki options\": \"Wiki 选项\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Filters?/, \"过滤\"], // Android UA\n        [/(\\d+(k|M|B)?) results?/, \"$1 个结果\"], // 顶部，数字后可能带 K、M、B 三种字母其中一个\n        [/(\\d+(k|M|B)?) files?/, \"$1 个文件\"], // 同上 https://github.com/search?q=<keyword>&type=code\n        [/More than ([\\d,]+) results?/, \"大于 $1 个结果\"],\n        [/Show ([\\d,]+) more matches?/, \"显示更多 $1 处匹配\"],\n        [/(\\d+) issues? needs? help/, \"$1 个议题需要帮助\"],\n        [/Sponsor ([^ ]+)?/, \"赞助 $1\"], // 赞助按钮 对话框 标题\n        [/on (.+)/, \"$1\"], // 日期去除 on\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(2) > label > select > option:nth-child(2)\", \"要\"],\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(3) > label > select > option:nth-child(2)\", \"要\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repository search results\": \"仓库搜索结果\",\n            \"Code search results\": \"代码搜索结果\",\n            \"Issue search results\": \"议题搜索结果\",\n            \"Pull request search results\": \"拉取请求搜索结果\",\n            \"Discussion search results\": \"讨论搜索结果\",\n            \"User search results\": \"用户搜索结果\",\n            \"Commit search results\": \"提交搜索结果\",\n            \"Package search results\": \"软件包搜索结果\",\n            \"Wiki search results\": \"Wiki 搜索结果\",\n            \"Topic search results\": \"主题搜索结果\",\n            \"Marketplace search results\": \"市场搜索结果\",\n        },\n    },\n};\nI18N[\"zh-CN\"][\"repository/search\"] = I18N[\"zh-CN\"][\"search\"];\n\nI18N[\"zh-CN\"][\"discussions\"] = {\n    \"static\": { // 静态翻译\n        // https://github.com/discussions\n            \"Discussions\": \"讨论\",\n\n            \"Created\": \"已创建\",\n            \"Commented\": \"已评论\",\n\n            \"Search all discussions\": \"搜索所有讨论\",\n\n            \"No discussions match the selected filters.\": \"没有符合所筛选条件的讨论。\",\n            \"Discussions are used to ask questions and have open-ended conversations.\": \"讨论用于提出问题并进行开放式对话。\",\n\n        // https://github.com/discussions/commented\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Discussions\": \"讨论\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"gist\"] = { // 代码片段页面\n    \"static\": { // 静态翻译\n        // 快捷键\n        \"Site wide shortcuts\": \"全局快捷键\",\n        \"Gists\": \"代码片段\",\n        \"Go to Code\": \"跳转到代码\",\n        \"Go to Revisions\": \"跳转到修订\",\n\n        \"Instantly share code, notes, and snippets.\": \"即时分享您的代码，笔记，片段，以及灵感。\",\n        \"Search…\": \"搜索…\", // 未登录\n        \"Search...\": \"搜索…\", // 已登录\n        \"Search Gists\": \"搜索代码片段\",\n            \"No results.\": \"没有结果。\",\n            \"Yours\": \"您的\",\n        \"All gists\": \"所有片段\",\n        \"Back to GitHub\": \"返回到 GitHub\",\n        \"You don’t have any gists yet.\": \"您还没有任何代码片段。\",\n        \"Your public gists will show up here on your profile.\": \"您的公开代码片段将显示在这里。\",\n        \"Create a gist\": \"新建一个代码片段\",\n\n        \"Forked\": \"复刻\",\n        \"Starred\": \"星标\",\n\n        // 左侧用户信息栏\n        \"Change your avatar\": \"修改头像\",\n        \"follower\": \"关注者\",\n        \"followers\": \"关注者\",\n        \"following\": \"关注\",\n        \"Joined\": \"加入于\",\n        \"View GitHub Profile\": \"查看 GitHub 个人资料\",\n\n        \"Create new gist\": \"新建片段\",\n        // 右上角个人图标下拉菜单\n            \"Signed in as\": \"登录身份为\",\n            \"Your gists\": \"我的代码片段\",\n            \"Starred gists\": \"我的星标代码片段\",\n            \"Help\": \"帮助\",\n        \"Your GitHub profile\": \"我的 GitHub 个人资料\",\n\n        \"View profile and more\": \"查看更多信息\",\n        \"See all of your gists\": \"查看您的所有片段\",\n\n        // 返回通知页状态条\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Unsubscribe\": \"退订\",\n            \"Mark as unread\": \"标记为未读\",\n            \"Save\": \"保存\",\n\n        // 用户 浮动信息卡\n        \"Member of\": \"隶属组织\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 个组织\"],\n\n        // 新建片段页面\n        \"View your gists\": \"查看您的片段\",\n        \"Gist description…\": \"片段描述…\",\n        \"Filename including extension…\": \"文件名 (包括扩展名)…\",\n        \"Create secret gist\": \"创建私密片段\",\n        \"Secret gists are hidden by search engines but visible to anyone you give the URL to.\": \"私密片段对搜索引擎不可见，对直接访问您分享的链接可见。\",\n        \"Create public gist\": \"创建公开片段\",\n        \"Public gists are visible to everyone.\": \"公开片段对所有人可见。\",\n\n        // 代码编辑框\n        \"Indent mode\": \"缩进模式\",\n        \"Spaces\": \"空格\",\n        \"Tabs\": \"Tab\",\n        \"Indent size\": \"缩进大小\",\n        \"Line wrap mode\": \"换行模式\",\n        \"No wrap\": \"不换行\",\n        \"Soft wrap\": \"软换行\",\n        \"Add file\": \"添加文件\",\n        \"Remove file\": \"移除文件\",\n\n        // All gists 标签卡\n        // 筛选 & 排序工具栏\n        \"Sort:\": \"排序:\",\n        \"Sort options\": \"排序选项\",\n        \"Recently created\": \"最近创建\",\n        \"Least recently created\": \"最早创建\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n\n        \"Type:\": \"类型:\",\n        \"Filter options\": \"筛选选项\",\n        \"All\": \"所有\",\n        \"Public\": \"公共\",\n        \"Secret\": \"私密\",\n\n        \"Created\": \"创建于\",\n        \"Last active\": \"最后活动于\",\n        \"Forked from\": \"复刻自\",\n        \"— forked from\": \"— 复刻自\",\n\n        \"Newer\": \"新的\",\n        \"Older\": \"旧的\",\n\n        // View 代码 页面\n        // 头部通用信息\n        \"Only those with the link can see this gist.\": \"只有知道链接的人才能看到此 Gist。\",\n        \"Edit\": \"编辑\",\n        \"Delete\": \"删除\",\n            \"Are you positive you want to delete this Gist?\": \"您确定要删除此 Gist 吗？\",\n            // 顶部提醒\n                \"Gist deleted successfully.\": \"代码片段已成功删除。\",\n        \"Subscribe\": \"订阅\",\n        // \"Unsubscribe\": \"退订\",\n        \"Star\": \"标星\",\n            \"Star this gist\": \"标星该代码片段\",\n            \"You must be signed in to star a gist\": \"您必须登录才能标星代码片段\",\n        \"Unstar\": \"取消星标\",\n            \"Unstar this gist\": \"取消该代码片段星标\",\n        \"Forks\": \"复刻\",\n            \"Fork this gist\": \"复刻代码片段\",\n            \"You must be signed in to fork a gist\": \"您必须登录才能复刻代码片段\",\n        \"User actions\": \"用户操作\",\n        \"Report abuse\": \"举报滥用\",\n        \"Disable comments\": \"禁用评论\",\n            \"Comments have been disabled.\": \"评论已禁用。\", // 顶部提示\n            \"Comments are disabled for this gist.\": \"评论已被禁用。\", // 评论框底部提示\n        \"Enable comments\": \"启用评论\",\n            \"Comments have been enabled.\": \"评论已启用。\", // 顶部提示\n\n        \"Code\": \"代码\",\n        \"Revisions\": \"修订\",\n        \"Stars\": \"星标\",\n\n        \"Drop one or more files here to prefill your gist!\": \"在此处拖放一个或多个文件以填充您的 Gist！\",\n\n        // 分享工具条\n        \"What would you like to do?\": \"您想做什么？\",\n        \"Embed\": \"嵌入\",\n            \"Embed this gist in your website.\": \"嵌入到您的网页中。\",\n        \"Share\": \"分享\",\n            \"Copy sharable link for this gist.\": \"复制片段共享链接。\",\n        \"Clone via HTTPS\": \"通过 HTTPS 方式克隆\",\n            \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n        \"Clone via SSH\": \"通过 SSH 方式克隆\",\n            \"Clone with an SSH key and passphrase from your GitHub settings.\": \"通过 GitHub 设置中的 SSH 密钥和密码进行克隆。\",\n        \"Learn more about clone URLs\": \"了解更多关于克隆地址的信息\",\n\n        // 外部编辑器\n        \"Open repository with\": \"打开仓库于\",\n\n        \"Copy to clipboard\": \"复制到剪切板\",\n        \"Copied!\": \"✅ 复制成功!\",\n        \"Download ZIP\": \"下载 Zip 压缩包\",\n        \"Permalink\": \"永久链接\",\n\n        // 代码标签卡\n        \"Raw\": \"源码\",\n        \"Load earlier comments...\": \"载入早期的评论…\",\n\n        // 修订标签卡\n        \"Unified\": \"同屏\",\n        \"Split\": \"分屏\",\n        \"created\": \"创建\",\n        \"revised\": \"修订\",\n        \"renamed\": \"重命名\",\n        \"this gist\": \"该片段于\",\n        \"with\": \"包含\",\n        \"No changes.\": \"无变化\",\n\n        \"Show comments\": \"显示评论\",\n        \"View file\": \"查看文件\",\n\n        \"Display the source diff\": \"显示源差异\",\n        \"Display the rich diff\": \"显示富差异\",\n        \"Empty file.\": \"空文件。\",\n        \"File renamed without changes.\": \"文件仅重命名，内容没有更改。\",\n        // [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处添加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n\n        // 星标标签卡\n        \"Stargazers\": \"追星者\",\n        \"Be the first to star this gist.\": \"成为第一个为该代码片段标星的人。\",\n        \"Learn more about starring Gists\": \"了解更多关于标星代码片段的信息\",\n\n        // 复刻标签卡\n        \"Modified\": \"修改\",\n        \"View fork\": \"浏览复刻\",\n\n        // 编辑代码页面\n        \"Editing\": \"编辑\",\n        \"Edit file\": \"编辑文件\",\n        \"Edit new file\": \"编辑新文件\",\n        \"Preview changes\": \"预览更改\",\n        \"Loading preview…\": \"载入预览…\",\n        // 搜索框\n            \"Search:\": \"搜索：\",\n            \"(Use /re/ syntax for regexp search)\": \"（使用 /re/ 语法进行正则搜索）\",\n        \"Attach files by selecting or pasting them.\": \"通过选择或粘贴来附加文件。\",\n        // 底部栏\n            \"Use\": \"使用\",\n            \"to toggle the\": \"切换\",\n            \"key moving focus.\": \"键移动对焦。\",\n        \"Make secret\": \"转为私密\",\n        \"Make public\": \"转为公开\",\n        \"Cancel\": \"取消\",\n        \"Update public gist\": \"更新公开片段\",\n        \"Update secret gist\": \"更新私密片段\",\n\n        // 已加星标页面\n        \"You don’t have any starred gists yet.\": \"您还没有任何星标代码片段。\",\n\n        // 评论框\n        \"Owner\": \"所有者\",\n        \"Author\": \"作者\",\n        \"Copy link\": \"复制链接\",\n        \"Quote reply\": \"引用回复\",\n        \"Report content\": \"举报内容\",\n        \"Report\": \"举报\",\n        // 评论删除提醒\n            \"Are you sure you want to delete this?\": \"您定要删除这个吗？\",\n\n        \"You are the owner of the gist.\": \"您是代码片段的所有者。\",\n        \"You are the author of this gist.\": \"您是代码片段的作者。\",\n        \"You are the author of this .\": \"您是代码片段的作者。\",\n\n        \"commented\": \"评论于\",\n        \"via email\": \"通过邮件\",\n        \"Update comment\": \"更新评论\",\n        \"Hide\": \"隐藏\",\n\n        \"edited\": \"编辑\",\n        \"(most recent)\": \"(最近的)\",\n        \"(deleted)\": \"(已删除)\",\n        \"deleted this content\": \"删除了该内容\",\n        \"Options\": \"选项\",\n        \"More options\": \"更多选项\",\n        \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修订版不能被删除。需要删除敏感信息？请到信息的具体编辑处修改。\",\n        \"Delete revision from history\": \"从历史记录中删除修订\",\n        \"This edit’s content will no longer be visible\": \"此修改的内容将不再可见\",\n\n        // 探索页面\n        \"Discover gists\": \"探索代码片段\",\n\n        // 搜索页面\n        //\"Sort:\": \"排序:\",\n            \"Best match\": \"最佳匹配\",\n            \"Most stars\": \"最多星标\",\n            \"Fewest stars\": \"最少星标\",\n            \"Most forks\": \"最多复刻\",\n            \"Fewest forks\": \"最少复刻\",\n\n        // 底部提示栏 (未登录)\n        \"Sign up for free\": \"免费注册\",\n        \"to join this conversation on GitHub\": \"加入 GitHub 上的这个讨论\",\n        \". Already have an account?\": \"。已经有账户？\",\n        \"Sign in to comment\": \"登录后发表评论\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/View ([^ ]+) on GitHub/, \"查看 $1 的 GitHub\"],\n        [/(\\d+) files?/, \"$1 文件\"],\n        [/(\\d+) forks?/, \"$1 复刻\"],\n        [/(\\d+) comments?/, \"$1 评论\"],\n        [/(\\d+) stars?/, \"$1 星标\"],\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的电脑。\"],\n        //代码修订\n        [/(\\d+) changed files?/, \"$1 个更改的文件\"],\n        [/(\\d+) additions?$/, \"$1 处增加\"],\n        [/(\\d+) deletions?$/, \"$1 处删除\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?/, \" $1 处更改：$2 处增加 & $3 处删除\"],\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 处增加，$2 处删除未显示，因为差异太大。请使用本地 Git 客户端查看这些更改。\"],\n        [/Edited (\\d+) times?/,\"编辑 $1 次\"], //评论框编辑次数\n        [/edited by ([^ ]+)/,\"被 $1 编辑\"], //评论框 被他人编辑\n        // [/Joined/,\"加入于\"], //星标标签卡\n        [/, and (\\d+) more/, \"，以及其他 $1 个组织\"], // 用户 浮动信息卡\n        [/doesn’t have any public gists yet./, \"尚无任何公开的代码片段。\"],\n        [/([\\d,]+) gist results?/, \"$1 个片段结果\"],\n        [/Sort:/, \"排序：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Create a new Gist\": \"新建代码片段\",\n            \"Discover gists\": \"探索代码片段\",\n        },\n        \"regexp\": [\n            [/’s gists/, \" 的代码片段\"],\n            [/Search/, \"搜索\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"login/oauth\"] = { // 应用授权\n    \"static\": { // 静态翻译\n        // 第三页 安装中\n\n        // 第四页 安装后 授权\n        // GitHub 应用安装授权 /login/oauth/authorize?client_id=<client-id>&state=<state>\n        // 示例 /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n            \"Resources on your account\": \"您账户中的资源\",\n            \"Act on your behalf\": \"代表您行事\",\n            \"Email addresses\": \"电子邮箱地址\",\n            \"(read)\": \"(只读)\",\n            \"View your email addresses\": \"查看您的电子邮箱地址\",\n            \"Authorizing will redirect to\": \"授权将重定向到\",\n            \"Not\": \"不由\",\n            \"owned or operated by GitHub\": \"GitHub 拥有或运营\",\n            \"Created\": \"创建于\",\n            \"GitHub users\": \"GitHub 用户\",\n\n        // OAuth 应用安装授权 /login/oauth/authorize?client_id=<client-id>&redirect_uri=<redirect-uri>&scope=<scope>&state=<>\n        // 示例 /login/oauth/authorize?client_id=78a2ba87f071c28e65bb&redirect_uri=https%3A%2F%2Fcircleci.com%2Fauth%2Fgithub%3Freturn-to%3D%252Fdashboard%253Futm_medium%253Dpartner%2526utm_campaign%253Dghmarketplace%2526utm_source%253Dgithub&scope=repo%2Cuser%3Aemail&state=uZ9BTIkhQ3_98icRI09o1L1HJmfvIO8gK3FDGwytNAzbBRzXwTge440cKS7NaGtvS0tqCR_HzGMH2z3p\n            \"wants to access your\": \"想访问您的\",\n            \"account\": \"账户\",\n            \"Public and\": \"公共库和\",\n            \"private\": \"私有库\",\n            \"This application will be able to\": \"该应用将能够\",\n            \"read and write all public and private repository data\": \"读写所有公共和私有仓库数据\",\n            \". This includes the following:\": \"。这包括以下内容：\",\n            \"Wikis\": \"Wiki\",\n            \"Webhooks and services\": \"Web 钩子和服务\",\n            \"Deploy keys\": \"部署密钥\",\n            \"Collaboration invites\": \"合作的邀请\",\n\n            \"Personal user data\": \"个人用户资料\",\n            \"Email addresses (read-only)\": \"电子邮箱地址(只读)\",\n            \"This application will be able to read your private email addresses.\": \"此应用将能够读取您的私人电子邮箱地址。\",\n\n            \"Organization access\": \"组织访问\",\n                \"Request\": \"请求\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"该组织允许应用访问上述权限中所述的组织数据。\",\n                \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予访问权限之前，应用无法访问组织的私有数据或修改其公共数据。\",\n                \"The application cannot access this organization’s private data or modify its public data.\": \"应用无法访问该组织的私有数据或修改其公共数据。\",\n\n            // >>>>>具体的权限不打算汉化<<<<<<<\n\n            \"Owned & operated by GitHub\": \"由 GitHub 拥有和运营\",\n\n        // 第五页 即将跳转到 重定向页面\n            \"You are being redirected to the authorized application.\": \"您将被重定向到授权的应用。\",\n            \"If your browser does not redirect you back, please visit\": \"如果您的浏览器没有将您重定向回来，请\",\n            \"If your browser does not redirect you back, please\": \"如果您的浏览器没有将您重定向回来，请\",\n            \"click here\": \"点击这里\",\n            \"this setup page\": \"点击这里\",\n            \"to continue.\": \"继续。\",\n            \"would like permission to:\": \"希望获得以下许可：\",\n            \"Know which resources you can access\": \"了解您可以访问哪些资源\",\n\n        // 选择账户授权 https://github.com/login/oauth/select_account?*\n            //\"Select user to authorize\": \"选择用户进行授权\",\n            //\"Signed in as\": \"登录身份为\",\n            \"From the options below, choose which account you would like to use to authorize this app.\": \"从下面的选项中，选择您要使用哪个帐户来授权此应用程序。\",\n            \"Use a different account\": \"使用其他账户\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n        [/Verify your GitHub identity/, \"验证您的 GitHub 身份\"],\n        [/Select user to authorize ([^ ]+)/, \"选择用户进行授权 $1\"],\n        [/Signed in as/, \"登录身份为 \"],\n        [/has not been installed on any accounts you have access to./, \"尚未安装在您有权访问的任何账户上。\"],\n        [/Learn more about/, \"了解更多关于\"],\n        [/More than ([^ ]+)/, \"超过 $1\"],\n        // /apps/codacy-production/installations/new/permissions?target_id=7850715\n        // [/Install & Authorize on your personal account/, \"安装和授权到您的个人账户\"],\n        // [/Install & Authorize/, \"安装和授权\"],\n        [/Authorize ([^ ]+)/, \"授权 $1\"], // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login 调整位置避免覆盖\n        // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装和授权 $1 则会立即授予您账户的以下权限：\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"选择了 $1 个仓库。\"],\n    ],\n};\n// I18N[\"zh-CN\"][\"installations/new\"] = I18N[\"zh-CN\"][\"login/oauth\"];\n\nI18N[\"zh-CN\"][\"explore\"] = { // 探索页面\n    \"static\": { // 静态翻译\n\n        // github.com/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            // 右侧信息栏\n            \"Trending repositories\": \"热门仓库\",\n                \"today\": \"今日\",\n            \"See more trending repositories\": \"查看更多热门仓库\",\n            \"Trending developers\": \"热门开发者\",\n            \"See more trending developers\": \"查看更多热门开发者\",\n\n            // 中间信息栏\n            \"Here's what we found based on your interests...\": \"以下是我们根据您的兴趣发现的内容…\",\n            \"Here's what's popular on GitHub today...\": \"这是今天 GitHub 热门内容…\", // 未登录\n                \"This recommendation was generated by GitHub computers\": \"此推荐由 GitHub 计算机生成\",\n                \"Based on repositories you’ve starred\": \"基于您标星的仓库\",\n                \"Based on topics you've starred\": \"基于您标星的主题\",\n                \"Based on people you follow\": \"基于您关注的人\",\n                \"Based on repositories you’ve viewed\": \"基于您查看过的仓库\",\n                \"Based on your public repository contributions\": \"基于您对公共仓库的贡献\",\n                \"App recommended by GitHub\": \"GitHub 推荐的应用\",\n                \"Staff pick\": \"员工精选\",\n                \"This recommendation was created by GitHub staff\": \"此推荐由 GitHub 工作人员创建\",\n                \"Upcoming event recommended by GitHub\": \"GitHub 推荐的即将举行的活动\",\n                \"For the Love of Code submission\": \"代码之爱投稿\", // 机翻\n\n            \"Trending repository\": \"热门仓库\", // 未登录\n            \"Popular topic\": \"热门主题\", // 未登录\n\n            \"Star topics that interest you\": \"标星您感兴趣的主题\",\n            \"and we'll show you the latest from the octoverse.\": \"我们将向您展示来自八维空间的最新信息。\",\n            \"Explore more topics\": \"探索更多主题\",\n\n            \"Collection recommended by GitHub\": \"GitHub 推荐的合集\",\n\n            \"That's everything we found for you, for now.\": \"这就是我们目前为您找到的一切。\",\n                \"Come back soon to see what we find next,\": \"请尽快回来查看我们接下来会发现什么，\",\n                \"get email updates.\": \"获取电子邮件更新。\",\n                \"check how often you receive email updates.\": \"检查您收到电子邮件更新的频率。\", // 已设置邮件更新通知\n\n            \"Updated\": \"更新于\",\n            \"See more matching repositories\": \"查看更多匹配的仓库\",\n\n        // github.com/explore/email\n            \"Explore email newsletter\": \"探索电子邮件通讯\",\n                \"Get email updates about what GitHub finds for you based on your interests\": \"根据您的兴趣，通过电子邮件获取 GitHub 为您找到的最新信息\",\n\n            \"None\": \"无\",\n                \"Email isn’t for everyone. Or maybe you’ve just made github.com/explore your homepage. We won’t send you any emails.\": \"电子邮件并不适合所有人。或者，您刚刚把 github.com/explore 作为您的主页。我们不会给您发送任何电子邮件。\",\n            \"Daily\": \"每天\",\n                \"Start your day with a delicious cup of coffee (or perhaps an artisan matcha latte) and interesting repositories every day.\": \"每天以一杯美味的咖啡（或可能是手工抹茶拿铁）和有趣的仓库开始您的一天。\",\n            \"Weekly\": \"每周\",\n                \"The perfect way to keep on top of everything GitHub. Every Tuesday, we’ll send you an email with everything we found for you in the past week based on your interests.\": \"掌握 GitHub 一切信息的完美方式。每周二，我们会根据您的兴趣向您发送一封电子邮件，内容是我们在过去一周为您找到的所有内容。\",\n            \"Monthly\": \"每月\",\n                \"The best option for lurkers who want to keep up with major happenings in the open source world.\": \"对于想了解开源世界重大事件的潜伏者来说，这是最佳选择。\",\n            \"Unsubscribed!\": \"已取消订阅！\",\n            \"Subscribed!\": \"已订阅！\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([\\d,]+) more/, \"其他 $1 项\"],\n        [/([\\d,]+) starred topics?/, \"$1 个星标主题\"],\n        [/([\\d,]+) starred repositories?/, \"$1 个星标仓库\"],\n        [/There are ([\\d,]+) public repositories? matching this topic/, \"有 $1 个公共仓库与此主题相匹配\"],\n        [/See the ([\\d,]+) items? in this collection/, \"查看该系列中的 $1 个项目\"],\n        [/Topic: ([^ ]+)/, \"主题：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub\": \"探索 GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"topics\"] = { // 探索-->主题页面\n    \"static\": { // 静态翻译\n\n        // github.com/topics\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            \"Browse popular topics on GitHub.\": \"浏览 GitHub 上的热门主题。\",\n            \"All featured topics\": \"所有主题\",\n            \"Popular topics\": \"热门主题\",\n            \"Unstar\": \"已加星标\",\n\n        // github.com/topics/<某主题>\n            \"Created by\": \"创建者\",\n            \"Released\": \"发布于\",\n            \"Latest release\": \"最新发行\",\n\n            \"Related Topics\": \"相关主题\",\n            \"Updated\": \"更新于\",\n            \"Sponsor\": \"赞助\",\n\n            \"Language:\": \"语言:\",\n                \"Filter by language\": \"按语言筛选\",\n                \"All\": \"所有\",\n            \"Sort:\": \"排序:\",\n                \"Sort options\": \"排序选项\",\n                \"Most stars\": \"最多星标\",\n                \"Fewest stars\": \"最少星标\",\n                \"Most forks\": \"最多复刻\",\n                \"Fewest forks\": \"最少复刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Improve this page\": \"改善此页面\",\n                \"Add a description, image, and links to the\": \"为\",\n                \"topic page so that developers can more easily learn about it.\": \"主题页面添加描述、图片和链接，以便开发人员可以更轻松地了解它。\",\n                \"Curate this topic\": \"整理此主题\",\n            \"Add this topic to your repo\": \"将此主题添加到您的仓库\",\n                \"To associate your repository with the\": \"将您的仓库与\",\n                \"topic, visit your repo's landing page and select \\\"manage topics.\\\"\": \"主题关联，请访问仓库的登录页面，然后选择 “管理主题”。\",\n\n            // 没有任何仓库\n                // 原句：The <主题名> topic hasn't been used on any public repositories, yet.\n                \"The\": \" \",\n                    \"topic hasn't been used on any public repositories, yet.\": \"尚未被任何公共仓库使用。\",\n                \"Explore topics\": \"探索主题\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/followers?/, \"个关注者\"],\n        [/Here are ([\\d,]+) public repositories? matching this topic.../, \"有 $1 个公共仓库与此主题相匹配\"],\n        [/Topic: ([^ ]+)/, \"主题：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Topics on GitHub\": \"GitHub 上的主题\",\n        },\n        \"regexp\": [\n            [/GitHub Topics/, \"GitHub 主题\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"trending\"] = { // 热门页面\n    \"static\": { // 静态翻译\n        \"Explore\": \"探索\",\n        \"Topics\": \"主题\",\n        \"Trending\": \"热门\",\n        \"Collections\": \"集合\",\n        \"Events\": \"活动\",\n        \"GitHub Sponsors\": \"GitHub 赞助\",\n        \"Get email updates\": \"获取电子邮件更新\",\n        \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n        \"See what the GitHub community is most excited about today.\": \"看看 GitHub 社区今天最受关注的项目。\",\n        \"See what the GitHub community is most excited about this week.\": \"看看 GitHub 社区本周最受关注的项目。\",\n        \"See what the GitHub community is most excited about this month.\": \"看看 GitHub 社区本月最受关注的项目。\",\n\n        \"These are the developers building the hot tools today.\": \"这些是今天创建热门项目的开发人员。\",\n        \"These are the developers building the hot tools this week.\": \"这些是本周创建热门项目的开发人员。\",\n        \"These are the developers building the hot tools this month.\": \"这些是本月创建热门项目的开发人员。\",\n\n        \"Repositories\": \"仓库\",\n        \"Developers\": \"开发者\",\n\n        \"Sponsor\": \"赞助\",\n        \"Built by\": \"构建者\",\n\n        \"Spoken Language:\": \"母语：\",\n            \"Select a spoken language\": \"选择母语：\",\n            \"This setting can be saved in your\": \"此设置可以保存在您的\",\n            \"This setting can be updated in your\": \"此设置可以更新于您的\",\n            \"profile settings.\": \"个人资料。\",\n            \"Filter spoken languages\": \"筛选母语\",\n            \"Clear spoken language\": \"清除母语\",\n            \"Any\": \"任何\",\n            // 弹窗\n            \"Filter by spoken language\": \"使用母语筛选\",\n                \"Select your preferred spoken language in order to see matching trending results.\": \"选择您喜欢的母语以查看匹配的趋势结果。\",\n                \"Got it!\": \"确定\",\n        \"Language:\": \"语言：\",\n            \"Select a language\": \"选择语言：\",\n            \"Filter languages\": \"筛选语言\",\n            \"Unknown languages\": \"未知语言\",\n        \"Date range:\": \"日期范围：\",\n            \"Adjust time span\": \"调整的时间跨度\",\n                \"Today\": \"今天\",\n                \"This week\": \"本周\",\n                \"This month\": \"本月\",\n        \"Sponsorable:\": \"可赞助：\",\n            \"GitHub Sponsors participation\": \"参与 GitHub 赞助\",\n            \"Sponsorable developers\": \"可赞助的开发者\",\n            \"All developers\": \"所有开发者\",\n            \"All\": \"所有\",\n\n        // 开发者页\n        \"Popular repo\": \"热门仓库\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([\\d,]+) stars? today/, \"今日 $1 星标\"],\n        [/([\\d,]+) stars? this week/, \"本周 $1 星标\"],\n        [/([\\d,]+) stars? this month/, \"本月 $1 星标\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Trending repositories on GitHub today\": \"今日热门仓库\",\n            \"Trending repositories on GitHub this week\": \"本周热门仓库\",\n            \"Trending repositories on GitHub this month\": \"本月热门仓库\",\n            \"Trending developers on GitHub today\": \"今日热门开发者\",\n            \"Trending developers on GitHub this week\": \"本周热门开发者\",\n            \"Trending developers on GitHub this month\": \"本月热门开发者\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"collections\"] = { // 集合页面\n    \"static\": { // 静态翻译\n        \"Explore\": \"探索\",\n        \"Topics\": \"主题\",\n        \"Trending\": \"热门\",\n        \"Collections\": \"集合\",\n        \"Collection\": \"集合\",\n        \"Events\": \"活动\",\n        \"GitHub Sponsors\": \"GitHub 赞助\",\n        \"Get email updates\": \"获取电子邮件更新\",\n        \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n        \"Curated lists and insight into burgeoning industries, topics, and communities.\": \"精心策划的列表和对新兴行业、主题和社区的见解。\",\n        \"Create a collection\": \"创建一个集合\",\n        \"Suggest edits\": \"建议修改\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n    \"title\": {\n        \"static\": {\n            \"Collections\": \"集合\",\n        },\n        \"regexp\": [\n            [/Collection: /, \"集合：\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"sponsors\"] = { // 赞助界面\n    \"static\": {\n        // 赞助者首页 https://github.com/sponsors\n            \"Invest in the software that powers your world\": \"投资驱动您世界的项目\",\n            \"See your top dependencies\": \"查看您的首要依赖项\",\n            \"Get sponsored\": \"获得赞助\",\n            \"A new way to contribute\": \"为开源做出贡献的\",\n            \"to open source\": \"新方式\",\n            \"Invest in your supply chain\": \"投资您的供应链\",\n            \"You depend on open source every day\": \"您每天都依赖于开源项目\",\n            \"Make open source careers possible\": \"使开源生涯成为可能\",\n            \"Thanks to our partners\": \"感谢我们的合作伙伴\",\n            \"Available in 103 regions\": \"可用于 103 个地区\",\n            \"to receive updates when we expand.\": \"以便在我们扩展时接收更新。\",\n            \"View country and region list\": \"查看国家和地区支持列表\",\n            \"Anyone can sponsor, but you must reside in a supported region to receive funds.\": \"任何人都可以赞助，但您必须居住在受支持的地区才能获得资金。\",\n            \"Frequently asked questions\": \"常见问题\",\n            \"Invest in the projects you depend on\": \"投资您所依赖的项目\",\n\n        // 赞助者账户页面 https://github.com/sponsors/accounts\n            // 标题\n                \"GitHub Sponsors accounts\": \"GitHub 赞助者账户\",\n            // 管理\n                \"Manage who you sponsor\": \"管理您赞助的对象\",\n                    \"You haven't sponsored anyone yet.\": \"您还没有赞助任何人。\",\n                    \"Find someone to sponsor\": \"寻找赞助对象\",\n            // 名单\n                \"GitHub Sponsors eligible accounts\": \"符合 GitHub 赞助者资格的账户\",\n                    \"This account has not applied to join GitHub Sponsors.\": \"此账户尚未申请加入 GitHub 赞助者。\",\n                    \"Join the waitlist\": \"加入等候名单\",\n\n            \"GitHub Sponsors applications\": \"GitHub 赞助者申请\",\n                \"Pending\": \"排队\",\n                    \"This GitHub Sponsors profile is waiting to be reviewed by GitHub.\": \"此 GitHub 赞助者个人资料正在等待 GitHub 审核。\",\n                \"Manage\": \"管理\",\n\n        // GitHub 赞助者个人资料 https://github.com/sponsors/<user-name>\n        // GitHub 赞助者组织资料 https://github.com/sponsors/<org-name>\n        // ...?preview=true\n        \"You are previewing your GitHub Sponsors profile.\": \"您正在预览您的 GitHub 赞助者个人资料。\",\n        \"Edit your profile.\": \"编辑您的个人资料。\",\n        // 组织\n        // [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在预览 $1 组织的 GitHub 赞助者个人资料。\"],\n        // [/Edit ([^ ]+)’s profile./, \"编辑 $1 组织的个人资料。\"],\n            // 标题\n            \"Become a sponsor to\": \"成为赞助者\",\n\n            \"Current sponsors\": \"当前赞助者\",\n            \"Past sponsors\": \"过去赞助者\",\n\n            \"Private Sponsor\": \"私密赞助者\",\n\n            \"Meet the team\": \"查看团队\",\n            \"Featured work\": \"精选\",\n\n            \"Learn more about sponsoring developers and organizations\": \"了解更多关于赞助开发者和组织的信息\",\n            \"Report abuse\": \"举报滥用\",\n\n            // 右侧栏\n            \"towards\": \"达成\",\n            \"goal\": \"目标\",\n            \"Sponsor as\": \"赞助身份为\",\n\n            \"Hover over your avatar to review the badge you'll get that shows\": \"当鼠标悬停在您的头像时，将显示\",\n            \"you're a sponsor.\": \"的赞助者徽章。\",\n\n            \"Select a tier\": \"选择\",\n            \"Monthly\": \"每月\",\n                \"a month\": \"/月\",\n                \"Select\": \"选择\",\n                \"Choose a custom amount.\": \"填入自定义金额。\",\n            \"One-time\": \"一次性\",\n                \"one time\": \"/次\",\n                \"A Public Sponsor achievement will be added to your profile.\": \"一个 “公开赞助者” 成就将添加到您的个人资料中。\",\n\n        // 赞助者登录页 https://github.com/sponsors/<user-name>/signup\n            // 标题\n                \"GitHub Sponsors · Get sponsored\": \"GitHub 赞助者 · 获得赞助\",\n                \"Get Sponsored\": \"获得赞助\",\n                \"Launch a\": \"启动一个\",\n                \"GitHub Sponsors profile\": \"GitHub 赞助者资料\",\n                \"and start receiving funding.\": \"并开始获得资金。\",\n            // 联系电子邮箱\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly. You can manage verified email addresses in your\": \"选择一个经过验证的电子邮件地址，以便我们就您的 GitHub 赞助者资料与您联系。该地址不会公开共享。您可以在您的\",\n            // 收款方式\n                \"Bank account\": \"银行账户\",\n                    \"Use a bank account to receive your sponsorships. Note: If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"使用银行账户接收您的赞助。注意：如果您使用个人银行账户，您所在的国家/地区可能会将您的 GitHub 赞助者 付款作为个人收入征税。\",\n                    \"Country or region where your bank account is located\": \"请选择您的银行账户所在的国家或地区\",\n                \"Fiscal Host\": \"财政主办方\",\n                    \"Choose a fiscal host\": \"请选择一个财政主办方\",\n                    \"Members of supported fiscal hosts can use their fiscal host to join GitHub Sponsors instead of using a bank account.\": \"受支持财务主办方的成员可使用其财务主机加入 GitHub 赞助者，而无需使用银行账户。\",\n            \"Submit\": \"提交\",\n            \"Your information has been saved.\": \"您的信息已保存。\",\n\n        // 加入等候名单界面 https://github.com/sponsors/<user-name>/waitlist\n            \"GitHub Sponsors is now out of beta for 103 regions!\": \"GitHub 赞助者现已在 103 个地区推出测试版！\",\n                \"If you have a bank account in\": \"如果您的银行账户所在\",\n                \"a country or region where GitHub Sponsors is generally available\": \"国家或地区普遍支持 GitHub 赞助者\",\n                \", you will get an email from us when your application has been reviewed.\": \"，您将在申请通过审核后收到我们的电子邮件。\",\n                \"If you don't have an eligible bank account, don't worry! We're working hard to get more countries out of beta soon. Join the waitlist to be the first to know.\": \"如果您没有符合条件的银行账户，也不用担心！我们正在努力让更多的国家或地区通过测试。加入等候名单，第一时间获知消息。\",\n            \"Contact email\": \"联系电子邮箱\",\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly.\": \"请选择一个经过验证的电子邮箱地址，以便我们就您的 GitHub 赞助者个人资料与您联系。该邮箱地址不会公开。\",\n                \"You can manage verified email addresses in your\": \"您可以管理已验证的电子邮箱地址在您的\",\n                \"email settings\": \"电子邮箱设置\",\n            \"Country or region of residence\": \"居住的国家或地区\",\n                \"Select a country or region\": \"选择一个国家或地区\",\n                \"The country or region where you reside. This is required for tax purposes.\": \"您居住的国家或地区。这是出于税务目的所必需的。\",\n            \"Bank account country or region\": \"银行账户所在的国家或地区\",\n            \"How you receive payments\": \"收款方式\",\n                \"Use a bank account\": \"使用银行账户\",\n                    \"You can use your bank account to join GitHub Sponsors.\": \"您可以使用您的银行账户加入 GitHub 赞助者。\",\n                    \"Note that you are responsible for all applicable taxes on payouts you receive. If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"请注意，您需承担您收到的付款的所有适用税款。如果您使用个人银行账户，您所在国家或地区可能会将您的 GitHub 赞助者收款作为个人收入征税。\",\n                    \"Learn more about setting up a Stripe account\": \"了解更多关于设置 Stripe 账户的信息\",\n\n                    \"Country or region where your bank account is located:\": \"您的银行账户所在的国家或地区：\",\n                        \"Your region is\": \"您所在的地区\",\n                        \"not supported\": \"不受支持\",\n                        \"or may be in\": \"或者可能处于\",\n                        \"beta\": \"测试阶段\",\n                    \"Use another bank account where GitHub Sponsors is available or complete signup to receive a notification if your region becomes available.\": \"使用另一个 GitHub 赞助者可用的银行账户，或者在您所在的地区可用时完成注册以收到通知。\",\n                \"Use a fiscal host\": \"使用财务托管\",\n                    \"You can use a fiscal host to join GitHub Sponsors instead of using your own bank account.\": \"您可以使用财务托管机构代替自己的银行账户来加入 GitHub 赞助者。\",\n                    \"Choose a fiscal host:\": \"选择一个财务托管机构：\",\n                    \"Select a fiscal host\": \"选择一个财务托管机构\",\n\n                    \"Fiscal host project profile URL:\": \"财务托管机构项目资料链接：\",\n                        \"Please include a link to your profile on your fiscal host's site, if available.\": \"如果有的话，请提供您在的财务托管机构上的个人资料链接。\",\n                    \"e.g.,\": \"例如，\",\n            \"Join waitlist\": \"加入等候名单\",\n\n        // 探索 GitHub 赞助者界面 https://github.com/sponsors/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主题\",\n            \"Trending\": \"热门\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活动\",\n            \"GitHub Sponsors\": \"GitHub 赞助者\",\n            \"Get email updates\": \"获取电子邮件更新\",\n            \"Change email updates\": \"更改电子邮件更新\", // 已设置邮件更新通知\n\n            \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n                \"Fund the work of developers and projects you depend on.\": \"为您所依赖的开发者和项目提供资金。\",\n\n            // 左侧栏\n                \"Explore as\": \"使用以下身份进行探索\",\n                \"Ecosystems\": \"生态系统\",\n                    \"All ecosystems\": \"所有生态系统\",\n                \"Filters\": \"过滤器\",\n                    \"Direct dependencies only\": \"仅直接依赖项\",\n\n            \"None of your dependencies can be sponsored\": \"您的任何依赖项都尚未开放赞助\",\n                // [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依赖于任何可以赞助其维护人员的仓库。\"],\n            \"You don't directly depend on any repositories whose maintainers can be sponsored.\": \"您不直接依赖任何可赞助维护者的仓库。\",\n            \"developers who maintain your dependencies\": \"位开发人员维护您的依赖项\",\n            \"Download your\": \"下载\",\n            \"results as CSV\": \"结果（CSV格式）\",\n\n            \"Order by\": \"排序依据\",\n                \"Most used\": \"较常使用\",\n                \"Least used\": \"较少使用\",\n                \"Most sponsors\": \"较多赞助者\",\n                \"Fewest sponsors\": \"较少赞助者\",\n                \"Newest Sponsors profile\": \"最新赞助者资料\",\n                \"Oldest Sponsors profile\": \"最早赞助者资料\",\n\n            \"Apply\": \"应用\",\n\n            \"You depend on\": \"您依赖于\",\n            // [/(\\d+) repositor(y|ies) they own or maintain/, \"他们拥有或维护 $1 个仓库\"],\n            // [/others? sponsor, including (\\d+) organizations?/, \"位其他赞助者，包括 $1 个组织\"],\n            \"sponsors\": \"赞助者\",\n            \"others sponsor\": \"位其他赞助者\",\n            // [/(\\d+)% towards goal/, \"实现目标的 $1%\"],\n\n            \"Explore people and projects\": \"探索人员和项目\",\n            \"Bulk Sponsor\": \"批量赞助\",\n                \"Sponsor multiple maintainers in one easy transaction.\": \"在一笔简单的交易中赞助多位维护人员。\",\n                \"Get started\": \"开始\",\n            \"Don't see what you're looking for? Try\": \"没有看到您在找的东西？尝试\",\n            \"searching for people you can sponsor\": \"寻找可以接受您赞助的人\",\n            \"and filtering by language!\": \"并通过语言筛选！\",\n            \"Clear filter\": \"清除筛选器\",\n            \"Sponsor\": \"赞助\",\n\n            // 仓库列表\n            \"Repository list\": \"仓库列表\",\n                \"You\": \"您\",\n                \"owns or maintains.\": \"拥有或维护\",\n                \"We check their maintainer status by seeing if they're listed in a repository's\": \"我们会确认他们是否被列在一个仓库中来检查他们的维护者状态，查看：\",\n                \"funding file\": \"资助文件\",\n                \"Load more...\": \"加载更多…\",\n\n            // [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 赞助吗？\"],\n            \"Talk to your organization about GitHub Sponsors\": \"与您的组织讨论 GitHub 赞助者事宜\",\n            \"Share this discovery page with your team to start a conversation about investing in the people and projects you rely on.\": \"与您的团队分享本发现页面，并就投资于您所依赖的人员和项目展开讨论。\",\n            \"Invest in open source software and we'll track your progress here!\": \"投资开源软件，我们将在这里跟踪您的进度！\",\n\n        // 批量赞助页 https://github.com/sponsors/bulk-sponsorships/frequencies\n            \"Bulk sponsor\": \"批量赞助\",\n            \"Bulk sponsorship\": \"批量赞助\",\n\n            \"Choose a frequency\": \"选择一个频率\",\n                \"Choose\": \"选择\",\n                // 一次性\n                    \"Sponsored maintainers will receive a one-time payment. Your profile picture will appear in their sponsors for one month.\": \"赞助的维护者将收到一笔一次性付款。您的个人资料照片将在他们的赞助商中显示一个月。\",\n                // 每月\n                    \"Sponsored maintainers will receive a recurring sponsorship until you cancel. Your profile picture will appear in their sponsors for the duration of your sponsorship.\": \"赞助的维护者将获得定期赞助，直到您取消为止。在您的赞助期间，您的个人资料照片将显示在他们的赞助商中。\",\n        // 批量赞助页 https://github.com/sponsors/bulk-sponsorships/import/new\n            \"Import\": \"导入\",\n\n            \"One-time bulk sponsorship\": \"一次性批量赞助\",\n            \"Monthly bulk sponsorship\": \"每月批量赞助\",\n\n            \"Import a CSV\": \"从 CSV 导入\",\n                \"Choose file\": \"选择文件\",\n                \"Download example CSV\": \"下载示例 CSV\",\n\n                \"Or export a list of your dependencies on\": \"或者导出您的依赖项列表\",\n                    \"Explore Sponsors\": \"探索赞助者\",\n\n                \"A CSV is a type of file that contains the names of the people you want to sponsor and the sponsorship amount. We'll look for columns labeled Maintainer Username and Amount in USD. We'll safely ignore the rest of your columns. You can modify the file using a tool like Microsoft Excel, Google Sheets, or a text editor.\": \"CSV 是一种文件类型，其中包含您想要赞助的人员的姓名和赞助金额。我们将查找标有维护者用户名和美元金额的列。我们将安全地忽略您的其余专栏。您可以使用 Microsoft Excel、Google Sheets 或文本编辑器等工具修改该文件。\",\n    },\n    \"regexp\": [ // 正则匹配\n        [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在预览 $1 组织的 GitHub 赞助者个人资料。\"], // sponsors/<org-name>?preview=true\n        [/Edit ([^ ]+)’s profile./, \"编辑 $1 组织的个人资料。\"], // sponsors/<org-name>?preview=true\n        [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依赖于任何可以赞助其维护人员的仓库。\"],\n        [/(\\d+) repositor(y|ies) they own or maintain/, \"他们拥有或维护 $1 个仓库\"],\n        [/others? sponsor, including (\\d+) organizations?/, \"位其他赞助者，包括 $1 个组织\"],\n        [/(\\d+)% towards goal/, \"实现目标的 $1%\"],\n        [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 赞助吗？\"],\n        [/depend on (\\d+) repositor(y|ies)/, \"依赖于他的 $1 个仓库：\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 个仓库\"],\n        [/(\\d+) members/, \"$1 位成员\"],\n        [/(\\$\\d+) a month/, \"$1/月\"],\n        [/(\\$[\\d,]+) per month/, \"$1 每月\"],\n        [/Amount must be at least (\\$\\d+)/, \"至少填入 $1\"],\n        [/Amount exceeds maximum tier amount of (\\$[\\d,]+)/, \"至多填入 $1\"],\n        [/You'll receive any rewards listed in the (\\$\\d+) monthly tier. Additionally, a Public Sponsor achievement will be added to your profile./, \"您将获得 $1 月度奖励中列出的所有奖励。此外，您的个人档案中还将添加公共赞助商成就。\"],\n        [/and (\\d+) others sponsor this goal/, \"和另外 $1 人赞助此目标\"],\n        [/(\\d+) of your repositories depends? on this/, \"您有 $1 个仓库依赖此\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub Sponsors\": \"探索 GitHub 赞助者\",\n            \"GitHub Sponsors accounts\": \"GitHub 赞助者账户\",\n            \"GitHub Sponsors · Get sponsored\": \"GitHub 赞助者 · 获得赞助\",\n            \"Choose frequency to bulk sponsor\": \"选择批量赞助的频率\",\n            \"Create sponsorships in bulk via file import\": \"通过文件导入批量创建赞助\",\n        },\n        \"regexp\": [\n            [/Sponsor @(.+) on GitHub Sponsors/, \"GitHub 赞助上赞助者 @$1\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"showcases\"] = { // 展示页面\n    \"static\": { // 静态翻译\n        \"Open source showcases\": \"开源展示\",\n        \"Browse popular repositories based on the topic that interests you most.\": \"浏览热门仓库基于您最感兴趣的主题。\",\n        \"Search showcases\": \"搜索展示\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"account/organizations/new\"] = { // 创建组织\n    \"static\": { // 静态翻译\n        // 创建免费的组织 https://github.com/account/organizations/new?coupon=&plan=team_free\n        // https://github.com/account/organizations/new?coupon=&plan=free\n        // 第 1 页\n        \"Tell us about your organization\": \"告诉我们您的组织\",\n        \"Set up your organization\": \"设置您的组织\",\n        \"Verify your account\": \"验证您的账户\",\n        \"Organization name\": \"组织名称\",\n            // [/The name \\'(\\d+)\\' is already taken./, \"名称 '$1' 已被采用。\"],\n            // [/The name \\'(\\d+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名称 '$1' 只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\"],\n            // [/Organization name \\'([^ ]+)\\' is unavailable./, \"组织名称 '$1' 不可用。\"], //\n            \"This will be the name of your account on GitHub.\": \"这将是您在 GitHub 上的账户名称。\",\n            \"Your URL will be: https://github.com/\": \"您的网址将是：https://github.com/\",\n        \"Contact email\": \"联系电子邮箱\",\n            \"Email is invalid\": \"电子邮箱无效\",\n        \"This organization belongs to:\": \"该组织属于：\",\n            \"My personal account\": \"我的个人账户\",\n                // [/I.e.,/, \"即：\"],\n            \"A business or institution\": \"企业或机构\",\n                \"For example: GitHub, Inc., Example Institute, American Red Cross\": \"比如说：GitHub, Inc., Example Institute, American Red Cross\",\n                \"Name of business or institution this organization belongs to\": \"该组织所属的企业或机构的名称\",\n                \"This business or institution — not\": \"该企业或机构 — 不是\",\n                \"(your personal account) — will control this organization.\": \"（您的个人账户）— 将控制此组织。\",\n        \"Add-ons\": \"附加组件\",\n            \"Get GitHub Copilot Business in this organization\": \"在组织中获取 GitHub Copilot 商业版\",\n                \"Boost developer productivity for $19/user/month. Pay only for assigned seats after setup.\": \"以 $19 /用户/月的价格提高开发人员的工作效率。仅需在设置后为分配的席位付费。\",\n                \"See Copilot Business docs.\": \"请参阅 GitHub Copilot 商业版文档。\",\n        \"I hereby accept the\": \"我特此接受\",\n            // 个人账户\n            \"Terms of Service\": \"服务条款\",\n            \". For more information about GitHub's privacy practices, see the\": \"。关于 GitHub 隐私条款的更多信息，请参见\",\n            \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n            // 企业或机构\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n            \"on behalf of my organization and confirm that I have the authority to do so\": \"代表我的组织，并确认我有权力这样做\",\n\n        // \". We'll occasionally send you account-related emails.\": \"。我们偶尔会向您发送与账户相关的电子邮件。\",\n\n        // https://github.com/organizations/<org-name>/invite\n        // 第 2 页 邀请成员\n        \"Start collaborating\": \"开始合作\",\n        // [/Welcome to/, \"欢迎来到\"],\n        \"Add organization members\": \"添加组织成员\",\n        \"Organization members will be able to view repositories, organize into teams, review code, and tag other members using @mentions.\": \"组织成员将能够使用 @提及来查看仓库、组织成团队、审查代码以及标记其他成员。\",\n        \"Learn more about permissions for organizations →\": \"了解更多关于组织权限的信息 →\",\n        \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n        \"Complete setup\": \"完成设置\",\n        \"Skip this step\": \"跳过\",\n\n        // https://github.com/orgs/<org-name>/invitations/bulk_create_for_new_org\n        // https://github.com/orgs/<org-name>/welcome_survey/new\n    },\n    \"regexp\": [ // 正则翻译\n        [/The name \\'([^ ]+)\\' is already taken./, \"名称 '$1' 已被采用。\"],\n        [/The name \\'([^ ]+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名称 '$1' 只能包含字母数字字符或单个连字符，并且不能以连字符开头或结尾。\"],\n        [/Organization name \\'([^ ]+)\\' is unavailable./, \"组织名称 '$1' 不可用。\"],\n        [/I.e.,/, \"即：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Set up your organization\": \"设置您的组织\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"account/choose\"] = { // 账户升级选择\n    \"static\": { // 静态翻译\n        // https://github.com/account/choose?action=upgrade\n            \"Which do you want to upgrade?\": \"您想升级哪个？\",\n            \"Your personal account\": \"您的个人账户\",\n            \"Organization\": \"组织\",\n            \"Create a new organization\": \"创建新组织\",\n            \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"account/upgrade\"] = { // 账户\n    \"static\": {\n        // https://github.com/account/upgrade?plan=pro&source=account+compare+plans\n            \"Upgrade your account from GitHub Free to GitHub Pro\": \"从 GitHub 免费版升级到 GitHub 专业版\",\n            \"Back to billing settings\": \"返回账单设置\",\n\n            \"Plan details\": \"计划详情\",\n                \"Pro\": \"Pro 专业版\",\n                \"Includes everything in\": \"包含所有\",\n                \"GitHub Free\": \"GitHub 免费版\",\n                \"plus:\": \"以及：\",\n                \"Required reviewers in private repos\": \"私有仓库的必需审查者\",\n                \"Protected branches in private repos\": \"私有仓库的受保护分支\",\n                \"Repository insights in private repos\": \"私有仓库的仓库洞察\",\n                \"Wikis in private repos\": \"私有仓库的 Wiki\",\n                \"Pages in private repos\": \"私有仓库的 GitHub Pages\",\n                \"Code owners in private repos\": \"私有仓库的代码所有者\",\n                \"3,000 minutes for GitHub Actions\": \"3,000 分钟的 GitHub Actions 使用时长\",\n                \"2GB of GitHub Packages storage\": \"2GB 的 GitHub Packages 存储空间\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小时的代码空间计算时长\",\n                \"20GB of Codespaces storage\": \"20GB 的代码空间存储空间\",\n\n            \"Payment frequency\": \"支付频率\",\n                \"Pay yearly\": \"按年支付\",\n                \"Pay monthly\": \"按月支付\",\n\n                \"Note: Switching from monthly to yearly billing will also impact your other active subscriptions. Any necessary adjustments will be reflected on your invoice.\": \"注意：从月度计费转换为年度计费也会影响您的其他活跃订阅。任何必要的调整将反映在您的账单上。\",\n\n                \"/ year\": \"/年\",\n                \"/ month\": \"/月\",\n\n                \"Total amount\": \"总计\",\n                \"Due today\": \"今天到期\",\n                // [/Payment due/, \"付款截止日期为\"],\n                // 示例 Payment due Nov 19, 2025\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Upgrade to GitHub Pro\": \"更新到 GitHub Pro\",\n            \"By clicking “Upgrade to GitHub Pro”, you agree to our\": \"通过点击 “更新到 GitHub Pro”，您同意我们的\",\n            \"Terms of Service\": \"服务条款\",\n            \"Corporate Terms of Service\": \"企业服务条款\",\n            \". We’ll occasionally send you account-related emails.\": \"。我们会偶尔发送与账户相关的电子邮件。\",\n\n    },\n    \"regexp\": [\n        [/Payment due/, \"付款截止日期为\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"marketplace\"] = { // GitHub 市场\n    \"static\": { // 静态翻译\n\n        // GitHub 市场主页及相关type页 https://github.com/marketplace\n\t\t\t\"Enhance your workflow with extensions\": \"增强您的工作流程\",\n\t\t\t\t\"Tools from the community and partners to simplify tasks and automate processes\": \"社区和合作伙伴提供的简化任务和自动化流程的工具\",\n\t\t\t\t\"Search for apps, actions, and models\": \"搜索应用程序、操作和模型\",\n    \t\t\t\t\"Listing Type\": \"显示类型\",\n    \t\t\t\t\t\"Has listing type\": \"包含显示类型\",\n                    \"Input modality\": \"输入模态\",\n                        \"No input modality\": \"无输入模态\",\n                        \"Has input modality\": \"包含输入模态\",\n                        \"audio\": \"音频\",\n                        \"image\": \"图片\",\n                        \"text\": \"文本\",\n                    \"Supported language\": \"支持的语言\",\n                        \"No supported language\": \"无支持的语言\",\n                        \"Has supported language\": \"包含支持的语言\",\n                    \"Output modality\": \"输出模态\",\n                        \"No output modality\": \"无输出模态\",\n                        \"Has output modality\": \"包含输出模态\",\n                        \"embeddings\": \"嵌入\",\n                    \"Capability\": \"能力\",\n                        \"No capability\": \"无能力\",\n                        \"Has capability\": \"包含能力\",\n                    \"Publisher\": \"供应商\",\n                        \"No publisher\": \"无供应商\",\n                        \"Has publisher\": \"包含供应商\",\n                    // 类别\n                        \"No category\": \"无类别\",\n                        \"Has category\": \"包含类别\",\n                        \"agents\": \"智能体\",\n                        \"coding\": \"编码\",\n                        \"conversation\": \"对话\",\n                        \"instruction\": \"指令\",\n                        \"large context\": \"长上下文\",\n                        \"low latency\": \"低延时\",\n                        \"multilingual\": \"多语言\",\n                        \"multimodal\": \"多模态\",\n                        \"multipurpose\": \"多用途\",\n                        \"rag\": \"RAG\",\n                        \"reasoning\": \"推理\",\n                        \"summarization\": \"文本摘要\",\n                        \"understanding\": \"理解\",\n                        \"vision\": \"视觉\",\n\t\t\t\t    \"Exclude\": \"排除\",\n                    \"Has\": \"包含\",\n                \"Copilot extensions\": \"Copilot 扩展\",\n\t\t\t\t\"Clear filter\": \"清除筛选\",\n\t\t\t\t// 过滤器问题\n\t\t\t\t\t\"Empty value for\": \"空值\",\n\t\t\t\t\t\"Invalid value\": \"无效值\",\n\t\t\t\t\t\"for\": \"对于\",\n\t\t\t\t\"Menu\": \"菜单\", // Android UA 下出现\n\n            \"Featured\": \"精选\",\n                \"Models for your every use case\": \"适用于各种方案的模型\",\n                \"Try, test, and deploy from a wide range of model types, sizes, and specializations.\": \"尝试、测试和部署各种型号、尺寸和专业化产品。\",\n\n                // 未登录 或 https://github.com/marketplace?type=\n                \"Discover apps with Copilot extensions\": \"使用 Copilot 扩展程序探索应用\",\n                \"Your favorite tools now work with GitHub Copilot.\": \"您最喜欢的工具现在可与 GitHub Copilot 配合使用。\",\n\n                \"Recommended\": \"推荐\",\n                \"Recently added\": \"最近添加\",\n\t\t\t\t\"Most popular\": \"最热门\",\n\n            // Copilot\n                \"Copilot Extensions\": \"Copilot 扩展\",\n                \"Extend Copilot capabilities using third party tools, services, and data\": \"使用第三方工具、服务或数据扩展 Copilot 的功能\",\n\n                \"Filter:\": \"筛选：\",\n                    \"All\": \"全部\",\n                    \"Free trial\": \"免费试用\",\n                \"By:\": \"分类：\",\n                    \"All creators\": \"所有创作者\",\n                    \"Verified creators\": \"已验证创作者\",\n                \"Sort:\": \"排序：\",\n                    \"Popularity\": \"热门\",\n                    \"Best match\": \"最佳匹配\",\n\n            \"Models\": \"模型\",\n                \"Model\": \"模型\",\n                \"Catalog\": \"目录\",\n\n\t\t\t\t\t\"Create applications with GitHub powered by AI Models. Free to use, quick personal setup, and seamless model switching to help you build AI products using the latest models.\": \"使用由 AI 模型提供支持的 GitHub 创建应用程序。免费使用、快速个人设置和无缝模型切换，帮助您使用最新模型构建 AI 产品。\",\n\n\t\t\t\t\t\"Try models in playground\": \"在运行场上尝试模型\",\n\n\t\t\t\t\t// 分类\n                        \"All providers\": \"所有提供商\",\n                    \"Publisher:\": \"发布者：\",\n                    \"Capability:\": \"能力：\",\n                        \"Chat/completion\": \"聊天/完成\",\n                        \"Embeddings\": \"嵌入\",\n                    \"Tag:\": \"标签\",\n                    \"Category:\": \"类型：\",\n                        \"Agents\": \"智能体\",\n                        \"Conversation\": \"对话\",\n                        \"Large context\": \"大模型\",\n                        \"Low latency\": \"低延迟\",\n                        \"Multilingual\": \"多语言\",\n                        \"Multimodal\": \"多模态\",\n                        \"Multipurpose\": \"多功能\",\n                        \"Rag\": \"检索增强生成\",\n                        \"Reasoning\": \"推理\",\n                        \"Understanding\": \"理解\",\n\t\t\t\t\t\t\"Audio\": \"音频\",\n\t\t\t\t\t\t\"Coding\": \"编码\",\n\t\t\t\t\t\t\"Instruction\": \"指令\",\n\t\t\t\t\t\t\"RAG\": \"检索增强生成\",\n\t\t\t\t\t\t\"Vision\": \"视觉\",\n                    // 排序\n                        \"Alphabetical\": \"A-Z\",\n                        \"Output token limit\": \"输出令牌限制\",\n                        \"Input token limit\": \"输入令牌顺序\",\n\n            \"All apps\": \"所有应用\",\n                \"Apps\": \"应用\",\n                \"Build on your workflow with apps that integrate with GitHub\": \"使用与 GitHub 集成的应用构建您的工作流程。\",\n                \"App\": \"应用\",\n\n            \"AI Assisted\": \"AI 助理\",\n                \"AI Assisted apps\": \"AI 助理应用\",\n                \"AI Assisted actions\": \"AI 助理操作\",\n                \"Tools that are superpowered with AI (artificial intelligence) to help you be a better developer.\": \"使用人工智能（AI）强化的工具，助您成为更优秀的开发者。\",\n\n            \"API management\": \"API 管理\",\n                \"API management apps\": \"API 管理应用\",\n                \"API management actions\": \"API 管理操作\",\n                \"Structure your API infrastructure to enable various internet gateways to interact with your service.\": \"构建应用接口基础设施，使各种互联网网关能够与您的服务互动。\",\n\n            \"Backup Utilities\": \"备份工具\",\n                \"Backup Utilities apps\": \"备份工具应用\",\n                \"Backup Utilities actions\": \"备份工具操作\",\n                \"Utilities providing periodic backups of your GitHub data\": \"定期备份 GitHub 数据的实用工具\",\n\n            \"Chat\": \"聊天\",\n                \"Chat apps\": \"聊天应用\",\n                \"Chat actions\": \"聊天操作\",\n                \"Bring GitHub into your conversations.\": \"将 GitHub 纳入您的对话中。\",\n\n            \"Code quality\": \"代码质量\",\n                \"Code quality apps\": \"代码质量应用\",\n                \"Code quality actions\": \"代码质量操作\",\n                \"Automate your code review with style, quality, security, and test‑coverage checks when you need them.\": \"在需要时，通过样式、质量、安全性和测试覆盖检查自动进行代码审查。\",\n\n            \"Code review\": \"代码审查\",\n                \"Code review apps\": \"代码审查应用\",\n                \"Code review actions\": \"代码审查操作\",\n                \"Ensure your code meets quality standards and ship with confidence.\": \"确保您的代码符合质量标准，并能放心交付。\",\n\n            \"Code Scanning Ready\": \"代码扫描\",\n                \"Code Scanning Ready apps\": \"代码扫描应用\",\n                \"Code Scanning Ready actions\": \"代码扫描操作\",\n                \"Static analysis, dynamic analysis, container scanning, linting, and fuzzing tools that integrate with GitHub Code Scanning SARIF Upload\": \"与 GitHub 代码扫描 SARIF 上传集成的静态分析、动态分析、容器扫描、代码规范检查（linting）和模糊测试（fuzzing）工具。\",\n\n            \"Code search\": \"代码搜索\",\n                \"Code search apps\": \"代码搜索应用\",\n                \"Code search actions\": \"代码搜索操作\",\n                \"Query, index, or hash the semantics of your source code.\": \"查询、索引或哈希您的源代码语义。\",\n\n            \"Container CI\": \"容器持续集成\",\n                \"Container CI apps\": \"容器 CI 应用\",\n                \"Container CI actions\": \"容器 CI 操作\",\n                \"Continuous integration for container applications.\": \"容器应用的持续集成。\",\n\n            \"Continuous integration\": \"持续集成\",\n                \"Continuous integration apps\": \"持续集成应用\",\n                \"Continuous integration actions\": \"持续集成操作\",\n                \"Automatically build and test your code as you push it to GitHub, preventing bugs from being deployed to production.\": \"当您将代码推送到 GitHub 时，自动构建和测试您的代码，从而防止将错误部署到生产中。\",\n\n            \"Dependency management\": \"依赖管理\",\n                \"Dependency management apps\": \"依赖管理应用\",\n                \"Dependency management actions\": \"依赖管理操作\",\n                \"Secure and manage your third-party dependencies.\": \"保护和管理第三方依赖关系。\",\n\n            \"Deployment\": \"部署\",\n                \"Deployment apps\": \"部署应用\",\n                \"Deployment actions\": \"部署操作\",\n                \"Streamline your code deployment so you can focus on your product.\": \"简化代码部署，让您专注于产品。\",\n\n            \"Deployment Protection Rules\": \"部署保护规则\",\n                \"Deployment Protection Rules apps\": \"部署保护规则应用\",\n                \"Deployment Protection Rules actions\": \"部署保护规则操作\",\n                \"Enables custom protection rules to gate deployments with third-party services\": \"启用自定义保护规则，以使用第三方服务进行部署\",\n\n            \"Desktop tools\": \"桌面工具\",\n                \"Desktop tools apps\": \"桌面工具应用\",\n                \"Developer tools that are run natively on your local machine.\": \"在本地计算机上本机运行的开发者工具。\",\n\n            \"Game CI\": \"游戏 CI\",\n                \"Game CI apps\": \"游戏 CI 应用\",\n                \"Game CI actions\": \"游戏 CI 操作\",\n                \"Tools for building a CI pipeline for game development\": \"用于构建游戏开发 CI 管道的工具\",\n\n            \"GitHub Sponsors\": \"GitHub 赞助\",\n                \"GitHub Sponsors actions\": \"GitHub 赞助操作\",\n                \"Tools to manage your\": \"管理您的\",\n                    \"community\": \"社区\",\n\n                \"IDEs\": \"集成开发环境\",\n                \"IDEs apps\": \"IDE 应用\",\n                \"IDEs actions\": \"IDE 操作\",\n                \"Find the right interface to build, debug, and deploy your source code.\": \"找到合适的界面来构建、调试和部署源代码。\",\n\n            \"Learning\": \"学习\",\n                \"Learning apps\": \"学习应用\",\n                \"Learning actions\": \"学习操作\",\n                \"Get the skills you need to level up.\": \"获得升级所需的技能。\",\n\n            \"Localization\": \"本地化\",\n                \"Localization apps\": \"本地化应用\",\n                \"Localization actions\": \"本地化操作\",\n                \"Extend your software's reach. Localize and translate continuously from GitHub.\": \"扩展您的软件的覆盖范围。从 GitHub 持续本地化和翻译。\",\n\n            \"Mobile\": \"移动\",\n                \"Mobile apps\": \"移动应用\",\n                \"Mobile actions\": \"移动操作\",\n                \"Improve your workflow for the small screen.\": \"针对小屏幕改进工作流程。\",\n\n            \"Mobile CI\": \"移动 CI\",\n                \"Mobile CI apps\": \"移动 CI 应用\",\n                \"Mobile CI actions\": \"移动 CI 操作\",\n                \"Continuous integration for Mobile applications\": \"移动应用的持续集成\",\n\n            \"Monitoring\": \"监控\",\n                \"Monitoring apps\": \"监控应用\",\n                \"Monitoring actions\": \"监控操作\",\n                \"Monitor the impact of your code changes. Measure performance, track errors, and analyze your application.\": \"监控代码更改的影响。衡量性能、跟踪错误并分析您的应用。\",\n\n            \"Open Source management\": \"开源管理\",\n                \"Open Source management apps\": \"开源管理应用\",\n                \"Open Source management actions\": \"开源管理操作\",\n                \"Running open source projects can be hard. Here are some tools to make that process a little more fun and a ton more manageable.\": \"运营开源项目可能会很困难。以下是一些工具，可以让这个过程变得更有趣且更加易于管理。\",\n\n            \"Project management\": \"项目管理\",\n                \"Project management apps\": \"项目管理应用\",\n                \"Project management actions\": \"项目管理操作\",\n                \"Organize, manage, and track your project with tools that build on top of issues and pull requests.\": \"使用基于置顶议题和拉取请求的工具来组织、管理和跟踪您的项目。\",\n\n            \"Publishing\": \"发布\",\n                \"Publishing apps\": \"发布应用\",\n                \"Publishing actions\": \"发布操作\",\n                \"Get your site ready for production so you can get the word out.\": \"让您的网站做好生产准备，以便您可以宣传。\",\n\n            // \"Recently added\": \"最近添加\",\n                \"Recently added apps\": \"最近添加应用\",\n                \"Recently added actions\": \"最近添加操作\",\n                \"The latest tools that help you and your team build software better, together.\": \"最新的工具可帮助您和您的团队更好地共同构建软件。\",\n\n            \"Reporting\": \"报告\",\n                \"Reporting apps\": \"报告应用\",\n                \"Get insights into how your teams are developing software using GitHub.\": \"了解您的团队如何使用 GitHub 开发软件的深入见解。\",\n\n            // 安全\n                \"Security apps\": \"安全应用\",\n                \"Security actions\": \"安全操作\",\n                \"Find, fix, and prevent security vulnerabilities before they can be exploited.\": \"发现、修复和预防安全漏洞，防患于未然。\",\n\n            // 支持\n                \"Support apps\": \"支持应用\",\n                \"Support actions\": \"支持操作\",\n                \"Get your team and customers the help they need.\": \"为您的团队和客户提供所需的帮助。\",\n\n            \"Sustainability\": \"可持续\",\n                \"Sustainability actions\": \"可持续操作\",\n                \"Optimize your work to minimize impact on the environment.\": \"优化您的工作以尽量减少对环境的影响。\",\n\n            \"Testing\": \"测试\",\n                \"Testing apps\": \"测试应用\",\n                \"Testing actions\": \"测试操作\",\n                \"Eliminate bugs and ship with more confidence by adding these tools to your workflow.\": \"通过将这些工具添加到您的工作流程中，消除错误并更有信心地交付。\",\n\n            \"Time tracking\": \"时间跟踪\",\n                \"Time tracking apps\": \"时间追踪应用\",\n                \"Time tracking actions\": \"时间追踪操作\",\n                \"Track your progress, and predict how long a task will take based on your coding activity.\": \"跟踪您的进度，并根据您的编码活动预测完成任务所需的时间。\",\n\n            \"Utilities\": \"实用工具\",\n                \"Utilities apps\": \"实用工具应用\",\n                \"Utilities actions\": \"实用工具操作\",\n                \"Auxiliary tools to enhance your experience on GitHub\": \"辅助工具，提升您的 GitHub 使用体验\",\n\n            // 操作\n            \"All actions\": \"所有操作\",\n                \"Automate your workflow from idea to production\": \"实现从构思到生产的工作流程自动化\",\n                    \"Action\": \"操作\",\n\n            \"Create a new extension\": \"创建新扩展\",\n\n            // 搜索结果\n                \"No results\": \"无结果\",\n                \"Try searching by different keywords.\": \"尝试使用不同的关键字进行搜索。\",\n\n        // 待处理订单页面 https://github.com/marketplace/orders/pending\n            // 老页面 左侧栏 不在兼容\n\n            \"Pending orders\": \"待处理订单\",\n            \"Review and complete your orders\": \"查看并完成您的订单\",\n                \"We noticed you started setting up some new plans but didn’t finish. You can complete your pending orders below or review any active subscriptions on the\": \"我们注意到您开始制定一些新计划，但尚未完成。您可以完成下面的待处理订单或查看任何有效的订阅在\",\n                \"billing overview page\": \"账单概览页面\",\n\n            \"Next: Confirm your installation location.\": \"下一步：确认您的安装位置。\",\n            \"Next: Confirm your installation location and payment information.\": \"下一步：确认您的安装位置和支付信息。\",\n\n            \"Remove from pending orders\": \"从待处理订单中删除\",\n            \"This will not affect your existing subscriptions.\": \"这不会影响您现有的订阅。\",\n\n            // 顶部提醒\n                // [/plan has been deleted./, \"计划已被删除。\"],\n\n        // 待安装页面 https://github.com/marketplace/installations/pending\n            // 老页面 左侧栏 不在兼容\n\n            \"Pending installations\": \"待安装\",\n            \"We noticed you’ve purchased some apps but didn't finish installing them. You can review and install them below.\": \"我们注意到您购买了一些应用，但尚未完成安装。您可以在下面查看并安装它们。\",\n            \"View or cancel any active subscriptions on the\": \"查看或取消任何有效的订阅\",\n            \"Install\": \"安装\",\n            \"Grant this app access to your GitHub account to complete installation.\": \"授予此应用访问 GitHub 账户的权限，以完成安装。\",\n\n        // 应用介绍页面 https://github.com/marketplace/<app-name>\n        // 示例: https://github.com/marketplace/codacy 第一页\n            \"by\": \"创建者：\",\n            \"install\": \"安装\",\n            \"s\": \" \",\n\n            // 添加\n                \"Edit current plan\": \"编辑当前计划\",\n                \"Configure account access\": \"配置账户访问权限\",\n\n            // 左侧信息栏\n                // 关于\n                    \"GitHub has verified that the publisher controls the domain and meets other requirements.\": \"GitHub 已经验证了发布者对该域名的控制权和满足其他要求\",\n\n                \"Category\": \"类别\",\n                \"Supported languages\": \"支持的语言\",\n                \"Customers\": \"客户\",\n                \"From the developer\": \"来自开发者\",\n                \"Support\": \"支持\",\n                \"Documentation\": \"文档\",\n                \"Privacy Policy\": \"隐私条款\",\n                \"Terms of Service\": \"服务条款\",\n                \"Report abuse\": \"举报滥用\",\n\n            // 右侧正文\n\n            // 下半部分\n            \"Pricing and setup\": \"定价与设置\",\n\n            \"Open source\": \"开源\",\n            \"Free for open source projects\": \"对开源项目免费\",\n            \"Free for both open source and private projects\": \"对开源和私人项目免费\",\n            \"Unlimited private repositories\": \"无限制私有项目\",\n            \"Free Trial\": \"免费试用\",\n            \"Pay-as-you-go\": \"即用即付\",\n\n            \"User\": \"用户\",\n            \"in this plan\": \"在计划中\",\n            \"per\": \"每\",\n\n            // \"Search by name\": \"按名称搜索\",\n            \"Install it for free\": \"免费安装\",\n            \"Try free for 14 days\": \"免费试用 14 天\",\n\n            \"Buy with GitHub\": \"通过 GitHub 购买\",\n            // [/Set up with ([^ ]+)/, \"使用 $1 设置\"],\n            \"Next: Confirm your installation location\": \"下一步：确认您的安装位置\",\n            \"and payment information\": \"和支付信息\",\n\n            \"is provided by a third-party and is governed by\": \"是由第三方提供的，并受\",\n            \"separate\": \"单独的\",\n            \"terms of service\": \"服务条款\",\n            \"privacy policy\": \"隐私政策\",\n            \", and\": \"，和\",\n            \"support documentation\": \"支持文档\",\n            \"support contact\": \"支持联络\",\n\n            // [/By clicking Set up with (.*), you agree to (.*)’s/, \"单击 “使用 $1 设置”，即表示您同意 $1 的以下条款\"],\n            \"You previously agreed to the\": \"您之前已同意\",\n            \"Marketplace Terms of Service\": \"市场服务协议\",\n\n        // 应用的审查、编辑订单 第二页 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n        // 个人 应用示例: https://github.com/marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n            \"Edit your plan\": \"编辑您的计划\",\n            \"Account:\": \"账户：\",\n            \"Order summary\": \"订单摘要\",\n            \"Open Source\": \"开源\",\n            \"Free\": \"免费\",\n            \"(current plan)\": \"(当前计划)\",\n            \"Plans\": \"计划\",\n                \"/ month\": \"/ 月\",\n\n            \"To complete this installation, you must\": \"要完成此安装，您必须\",\n            \"grant this app access\": \"授予此应用的权限\",\n            \"to your GitHub account.\": \"访问您的 GitHub 账户。\",\n\n            \"Cancel this plan\": \"取消计划\",\n\n            // 右侧栏\n            \"Current plan\": \"当前计划\",\n            \"New plan\": \"新计划\",\n                \"Due today\": \"截止到今天\",\n                // [/Prorated for/, \"按比例计算\"],\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n        // 组织 应用示例: https://github.com/marketplace/gitlocalize/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW4zOTg=?account=maboloshi\n            \"Review your order\": \"审查您的订单\",\n            \"For individuals, teams, and communities, public and private projects\": \"对于个人、团队和社区，公共和私人项目\",\n            \"Total amount\": \"总金额\",\n\n            \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"组织所有者或账单管理者必须将其个人账单信息与该组织账户关联。您可以切换到企业账户，以使用企业的账单信息通过\",\n            // \"By clicking \\\"Complete order and begin installation\\\", you agree to the\": \"通过单击“完成订单并开始安装”，您同意\",\n            // \"Marketplace Terms of Service\": \"市场服务条款\",\n            \"signing\": \"签署\",\n            \"the\": \" \",\n            \"GitHub Customer Agreement\": \"GitHub 客户协议\",\n            // \"Complete order and begin installation\": \"完成订单并开始安装\",\n\n            \"Save and continue\": \"保存并继续\",\n\n        // 操作介绍页面 https://github.com/marketplace/actions/<action-name>\n        // 示例: https://github.com/marketplace/actions/merge-upstream\n            // 顶部提醒\n                \"Sorry, we couldn’t find that version of this Action. Here’s the latest version.\": \"对不起，我们找不到此 GitHub Action 的这个版本。 下面是最新的版本。\",\n                \"You're viewing an older version of this GitHub Action. Do you want to see the\": \"您正在查看此 GitHub Action 的旧版本。您想查看\",\n                \"latest version\": \"最新版本\",\n                \"instead?\": \"吗？\",\n\n            // 右侧栏\n                \"Latest version\": \"最新发行版\",\n                    \"Choose a version\": \"选择发行版\",\n                // [/Use (v\\d+)/, \"使用 $1\"], // 右上角绿色按钮\n\n                // 安装窗口\n                    \"Installation\": \"安装\",\n                    \"Copy and paste the following snippet into your\": \"将以下代码段复制并粘贴到您的\",\n                        \"file.\": \"文件。\",\n                    \"Learn more about this action in\": \"了解更多关于该操作的信息，请访问\",\n\n                // 关于\n                    \"Latest\": \"最新\",\n                    \"By\": \"创建者：\",\n\n                // 已验证\n                    \"GitHub has manually verified the creator of the action as an official partner organization. For more info see\": \"GitHub 已手动验证该操作的创建者为官方合作伙伴组织。欲了解更多信息，请参阅\",\n                        \"About badges in GitHub Marketplace\": \"关于 GitHub 市场中的徽章\",\n\n                \"Contributors\": \"贡献者\",\n                \"Start a discussion\": \"开始讨论\",\n                \"Open an issue\": \"打开议题\",\n                \"View source code\": \"查看源代码\",\n                \"Security policy\": \"安全政策\",\n\n                \"is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"未经 GitHub 认证。它由第三方提供，并受单独的服务条款、隐私政策和支持文档的约束。\",\n\n        // GitHub 模型集合页 https://github.com/marketplace/models\n            \"Select a Model\": \"选择模型\",\n\n            \"Welcome to GitHub Models\": \"欢迎访问 GiHub 模型\",\n                \"A catalog and playground of AI models to help you build AI features and products.\": \"一个AI模型目录和运行场，帮助您构建AI特性和产品。\",\n\n            \"Model switching:\": \"模型切换：\",\n                \"A single API key for all models & billing.\": \"一个 API 密钥适用于所有模型和计费。\",\n            \"Quick personal setup:\": \"快速个人设置：\",\n                \"GitHub PAT to install models in your projects.\": \"使用 GitHub 个人访问令牌（PAT）在您的项目中安装模型。\",\n            \"Free to start:\": \"免费开始：\",\n                \"No charges until you hit our rate limits.\": \"在达到速率制限之前不收费。\",\n\n            \"Select a model to get started, or\": \"选择一个模型开始，或\",\n                \"explore the full model catalog\": \"浏览完整模型目录\",\n\n        // GitHub 模型页面 https://github.com/marketplace/models/<user-name>/<model-name>\n            \"You're already on the waitlist! We'll send you an email once your access is granted.\": \"GitHub 模型限量公开测试将有名额限制。如果您获准访问，您将收到一封电子邮件。\",\n            \"You're already on the waitlist! We'll send you an email once your access is granted\": \"GitHub 模型限量公开测试将有名额限制。如果您获准访问，您将收到一封电子邮件\",\n\n            // 顶部\n            \"Playground\": \"运行\",\n            \"Use this model\": \"使用此模型\",\n            \"Get started\": \"开始\",\n                \"Language:\": \"语言：\",\n                \"Chapters\": \"步骤\",\n            \"Get API key\": \"获取 API 密钥\",\n\n            \"Enter a message...\": \"键入信息…\",\n                \"Submit message\": \"发送\",\n\n            // 中间横条\n            \"README\": \"自述文件\",\n            \"Evaluation\": \"评估\",\n            \"Transparency\": \"透明度\",\n            \"License\": \"许可证\",\n\n            // 右侧\n            \"Context\": \"文本\",\n                \"input\": \"输入\",\n                \"output\": \"输出\",\n            \"Training date\": \"训练日期\",\n            // 价格\n                \"View pricing\": \"查看价格\",\n            \"Free rate limit tier\": \"免费速率限制等级\",\n                \"Low\": \"低\",\n                \"High\": \"高\",\n                \"Custom\": \"自定义\",\n                \"Undisclosed\": \"未公布\",\n            \"Provider support\": \"供应商支持\",\n            \"Tags\": \"标签\",\n\n            // 获取 API 密钥窗口（从“使用此模型”进入\n\n                \"1. Create a personal access token\": \"1. 创建个人访问令牌（PAT）\",\n                \"2. Install dependencies\": \"2. 安装依赖\",\n                \"3. Run a basic code sample\": \"3. 运行基本代码示例\",\n                \"4. Explore more samples\": \"运行更多示例\",\n                \"5. Going beyond rate limits\": \"5. 超出速率限制\",\n                // REST\n                    \"2. Run a basic code sample\": \"3. 运行基本代码示例\",\n                    \"3. Explore more samples\": \"运行更多示例\",\n                    \"4. Going beyond rate limits\": \"5. 超出速率限制\",\n\n                \"Run with codespaces\": \"在代码空间运行\",\n                    \"Seriously, you'll be up and running in seconds. It will be great.\": \"请放心，您只需数秒即可完成配置并开始使用，效果超乎预期\",\n                    \"Run codespace\": \"运行代码空间\",\n\n        // GitHub 模型聊天页面 https://github.com/marketplace/models/<user-name>/<model-name>/playground\n            // 顶部栏\n            \"Model:\": \"模型：\",\n                \"Close\": \"关闭\",\n                \"Switch model\": \"切换模型\",\n                \"View all models\": \"查看所有模型\",\n            \"Prompt editor\": \"提示词编辑器\",\n            \"Preset:\": \"预设：\",\n                \"Default\": \"默认\",\n                \"Edit preset\": \"编辑预设\",\n                \"Delete preset\": \"删除预设\",\n                     // 弹窗\n                         \"Are you sure you want to delete this preset?\": \"您确定要删除吗？\",\n                \"Create new preset\": \"新建预设\",\n                    \"Presets save your current parameters, chat history, and state.\": \"预设可保存当前参数、聊天记录和状态。\",\n                    \"Name\": \"名称\",\n                        \"Name is required\": \"需要名称\",\n                    \"Description\": \"简述\",\n                    \"Save chat history\": \"保存聊天历史\",\n                        \"Chat history in this preset will be saved and visible to others when shared.\": \" 此预设中的聊天记录将被保存，并在共享时对其他人可见。\",\n                        \"Note: Image attachments are not saved with the preset.\": \"注意：预设不保存图像附件。\",\n                    \"Enable sharing\": \"启用分享\",\n                        \"Anyone with the URL will be able to view and use this preset, but not edit. Presets are private by default.\": \"任何拥有该 URL 的人都可以查看和使用该预设，但不能进行编辑。预设默认为私有。\",\n                    \"Create preset\": \"新建\",\n            \"Raw\": \"源码\",\n            \"Input:\": \"输入：\",\n            \"• Output:\": \"• 输出：\",\n            \"ms\": \"毫秒\",\n\n            \"Welcome to GitHub Models!\": \"欢迎使用 GitHub 模型！\",\n                \"We want to make Models Playground amazing for you. Got feedback? Book a call or\": \"我们致力于让模型游乐场为您带来卓越体验。如有反馈，请预约通话或\",\n            // 聊天窗口\n                // 顶部横条\n                    \"Restore last session\": \"恢复上次聊天\",\n                    \"Compare\": \"比较\",\n                        \"Select model\": \"选择模型\",\n                    \"Reset chat history\": \"删除聊天\",\n                // 中间\n                \"Responding...\": \"响应中…\",\n                \"An error occurred. Please try again.\": \"发生错误，请重试。\",\n\n                    \"Positive\": \"点赞\",\n                    \"Negative\": \"点踩\",\n                    \"Regenerate\": \"重新生成\",\n                    \"Edit prompt\": \"编辑提示词\",\n\n                \"Attach an image\": \"附加图像\",\n                    \"Remove\": \"移除\",\n                \"Type your prompt…\": \"键入提示词…\",\n                    \"Send now\": \"发送\",\n\n            // 参数设置\n                \"Parameters\": \"参数\",\n                \"Reset to default inputs\": \"重置\",\n                \"Hide parameters setting\": \"隐藏参数设置\",\n                \"Show parameters setting\": \"显示参数设置\",\n                \"System prompt\": \"系统提示词\",\n                    //\"Set the context for the model response.\": \"设置模型响应的环境。\",\n                    \"You are a helpful assistant...\": \"您是一个得力的助手…\", // 默认提示词\n                \"Improve prompt\": \"增强提示词\",\n                    \"Adjust your prompt with specific suggestions or simply click to enhance your prompt.\": \"根据具体建议调整，或者简单地点击以增强您的提示词。\",\n                    \"Current prompt\": \"原提示词\",\n                    \"What would you like to improve? (optional)\": \"您想增强什么内容？（可选）\",\n                        \"Eg: explain X for a beginner and write responses in nested bullets.\": \"例如：为初学者解释 X ，并用嵌套项目符号编写回应。\",\n                \"Response format\": \"响应格式\",\n                    \"Text\": \"文本\",\n                    \"Set the format for the model response.\": \"设置模型响应的格式。\",\n                \"Max Tokens\": \"最大令牌\",\n                \"Max Completion Tokens\": \"最大输出标记\",\n                    \"Limit the maximum output tokens for the model response.\": \"限制模型响应的最大输出标记。\",\n                \"Reasoning Effort\": \"推理强度调节\",\n                    \"Adjust the model's cognitive load with options for low, medium, and high reasoning levels.\": \"通过低、中、高三级可选项调整模型的计算资源分配，控制输出结果的逻辑复杂度和思考深度。\",\n                    \"high\": \"高\",\n                    \"medium\": \"中\",\n                    \"low\": \"低\",\n                \"Temperature\": \"随机度\",\n                    \"Controls randomness in the response, use lower to be more deterministic.\": \"控制响应的随机性，使用较低值则更具确定性。\",\n                \"Top P\": \"最大概率\",\n                    \"Controls text diversity by selecting the most probable words until a set probability is reached.\": \"通过选择最有可能出现的词语来控制文本多样性，直到达到设定的概率。\",\n                \"Presence Penalty\": \"重复惩罚\",\n                    \"Discourages the model from repeating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their presence in the text.\": \"通过根据文本中已存在的词语或短语施加惩罚（范围在-2.0到2.0之间），抑制模型过于频繁地重复使用相同词语或短语的倾向。\",\n                \"Frequency Penalty\": \"频率惩罚\",\n                    \"Discourages the model from generating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their existing frequency in the text.\": \"通过根据文本中已存在词语或短语的出现频率施加惩罚（范围在-2.0到2.0之间），抑制模型过于频繁地生成相同词语或短语的倾向。\",\n                \"Stop\": \"停止\",\n                    \"Force cutting the output when this string occurs.\": \" 当出现该字符串时，强制切断输出。\",\n            // 模型比较\n                \"Close model\": \"关闭\",\n                \"Show model info\": \"显示模型信息\",\n                // 参数设置窗口\n                \"Sync chat input and parameters\": \"同步聊天输入和参数\",\n            // 详细信息\n                \"Model details page\": \"详细信息\",\n\n                \"Got feedback?\": \"提交反馈？\",\n                    \"share feedback via discussion\": \"前往讨论\",\n\n            // 底部\n                \"Azure hosted. AI powered, can make mistakes.\": \" Azure 托管。人工智能驱动，可能犯错。\",\n                \"Share feedback\": \"分享反馈\",\n                \". Subject to\": \"。受\",\n                \"Product Terms\": \"产品条款\",\n                \". Not intended for production/sensitive data.\": \"约束。不适用于生产/敏感数据。\",\n\n        // 提示词编辑器 https://github.com/marketplace/models/<user-name>/<model-name>/prompt\n\n            // 左侧\n                \"Edit variables\": \"编辑变量\",\n                    \"System\": \"系统\",\n                        \"Define the model's behavior or role. Example: 'You are a spaceship captain telling intergalactic tales.'\": \"定义模型的行为模式或角色设定。例如：\\\"您是一位正在讲述星际传奇故事的宇宙飞船舰长\\\"\",\n                    // 用户\n                        \"Enter the task or question for the model. Example: 'Write me a song about GitHub.' Use {{variable}} for placeholders.\": \"输入模型需处理的任务或问题。示例：\\\"创作一首关于 GitHub 的歌曲\\\"。使用 {{variable}} 作为占位符\",\n\n            // 中间\n                \"Run\": \"运行\",\n\n                \"We want to make this new experience amazing for you! Got feedback? Book a call or\": \"我们致力于为您打造非凡的全新体验！有任何反馈？立即预约通话或\",\n                    \"share your thoughts\": \"分享您的想法\",\n                    \"Book a call\": \"预约通话\",\n\n                \"Iterate on your prompt\": \"持续优化提示词\",\n                    \"Use the prompt editor to run a single prompt repeatedly, refining it and adjusting\": \"通过提示词编辑器反复执行单个提示词，持续优化内容并动态调整\",\n                    \"to achieve the perfect response.\": \"，最终生成理想响应结果\",\n\n        // 加入模型内测页 https://github.com/marketplace/models/waitlist/join\n            \"GitHub Models waitlist\": \"GitHub 模型等待名单\",\n\n            // 左侧\n                \"Limited Public Beta\": \"有限公开测试\",\n                \"Join the GitHub Models waitlist\": \"加入 GitHub 模型等待名单\",\n                    \"Join the limited public beta for early access to GitHub Models.\": \"加入有限公开测试，提前访问 GitHub 模型。\",\n\n            // 问卷\n                \"What level of experience do you have in building GenAI solutions that use large language models (LLMs)?\": \"您在构建使用大型语言模型 (LLM) 的 GenAI 解决方案方面有哪些经验？\",\n                    \"Exploration/proof-of-concept\": \"探索/概念验证\",\n                    \"In development\": \"开发\",\n                    \"I have built 1 solution that is in production\": \"我已构建了 1 个解决方案，并已投入生产\",\n                    \"I have built 2 or more solutions that are in production\": \"我已构建了 2 个或更多解决方案，并已投入生产\",\n                \"What is your main business use case for GenAI applications? Please select all that apply.\": \"GenAI 应用程序的主要业务用例是什么？请选择所有适用情况。\",\n                    \"RAG-based chat applications (\\\"chat with my own data\\\")\": \"基于 RAG 的聊天应用程序（“与我自己的数据聊天”）\",\n                    \"Sentiment analysis\": \"情绪分析\",\n                    \"Summarization\": \"归纳总结\",\n                    \"Content generation\": \"内容生成\",\n                    \"Entity extraction\": \"实体提取\",\n                    \"Text classification\": \"文本分类\",\n                    \"Image classification\": \"图片分类\",\n                    \"Translation\": \"翻译\",\n                    \"Other (please specify):\": \"其他（请说明）：\",\n\n                \"Join GitHub Models waitlist\": \"加入 GitHub 模型等待名单\",\n\n                \"By signing up for the waitlist you agree to\": \"注册等待名单即代表您同意\",\n                \"GitHub's preview terms\": \"GitHub 预览条款\",\n                \". Signing up does not guarantee access.\": \"。注册并不保证可以访问。\",\n\n                // 成功，标题走正则\n                \"Admission to the limited public beta for GitHub Models will be limited. You will receive an email if you are granted access.\": \"GitHub 模型的限量公开测试有名额限制。如果您获准访问，您将收到一封电子邮件。\",\n                \"Return to continue exploring\": \"继续探索\",\n                \"GitHub Models\": \"GitHub 模型\",\n\t\t// 新上市市场页 https://github.com/marketplace/new\n\t\t\t\"List your tool\": \"上市你的工具\",\n\t\t\t\"List your tool on GitHub Marketplace\": \"在 GitHub 市场上市你的工具\",\n\n\t\t\t\"You have no tools to list on GitHub Marketplace\": \"您没有可在 GitHub 市场上市的工具\",\n\t\t\t\t\"Learn more about the requirements\": \"了解有关要求的更多信息\",\n\t\t\t\t\"to list a tool on GitHub Marketplace.\": \"在 GitHub 市场上市工具。\",\n\n            \"More about tools and GitHub Marketplace\": \"有关工具和 GitHub 市场的更多信息\",\n                \"About GitHub Marketplace\": \"关于 GitHub 市场\",\n                    \"How to create and list tools on the GitHub Marketplace, including guidelines for listing content, artwork, and screenshots.\": \"如何在 GitHub 市场上创建和上市工具，包括列出内容、插图和屏幕截图的指南。\",\n                \"Adding webhooks for a GitHub Marketplace listing\": \"为 GitHub 市场上市添加 Webhook\",\n                    \"Add webhooks for your app to notify you when specified events are triggered.\": \"为您的应用程序添加 Webhooks，以便在触发指定事件时通知您。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Search results for “(.+)”/, \"“$1”的搜索结果\"], // 市场搜索\n        [/(\\d+) results?/, \"$1 个结果\"], // 市场搜索\n        [/plan has been deleted./, \"计划已被删除。\"],\n\n        [/Use (v\\d+)/, \"使用 $1\"], // 操作介绍页面 右上角绿色按钮\n        [/Set up with (.*)/, \"使用 $1 设置\"], // 应用介绍页面\n        [/By clicking Set up with (.*), you agree to (.*)’s/, \"单击 “使用 $1 设置”，即表示您同意 $1 的以下条款\"], // 应用介绍页面\n        // /marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n        [/Prorated for/, \"按比例计算\"],\n\n        [/Thank you! ([^ ]+) is now on the waitlist for GitHub Models./, \"谢谢！$1 现已进入 GitHub 模型等待名单。\"],\n\n\t\t[/Filter contains (\\d+) issues?:/, \"过滤器包含 $1 个问题：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Marketplace\": \"市场\",\n            \"Marketplace · Tools to improve your workflow\": \"市场 · 改进工作流程的工具\",\n            \"GitHub Models\": \"GitHub 模型\",\n            \"Models · GitHub Marketplace\": \"模型 · GitHub 市场\",\n            \"New Marketplace Listing · GitHub Marketplace\": \"新建市场 · GitHub 市场\",\n        },\n        \"regexp\": [\n            [/Models/, \"模型\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"apps\"] = { // GitHub 应用\n    \"static\": { // 静态翻译\n\n        // GitHub 应用页面 https://github.com/apps/<app-name>\n        // 示例: https://github.com/apps/codacy-production\n            \"GitHub App\": \"GitHub 应用\",\n\n            \"No description\": \"尚无描述\",\n\n            \"Read more about this app on the Marketplace\": \"了解更多关于市场中此应用的信息\",\n\n            // 未安装\n                \"Install\": \"安装\",\n                \"Next: Confirm your installation location.\": \"下一步：确认您的安装位置。\",\n\n            // 已安装\n                \"Configure\": \"设置\",\n                \"Manage your installation settings.\": \"管理安装设置。\",\n\n            // 私有 App\n                \"Learn more about GitHub Apps\": \"了解更多关于 GitHub 应用的信息\",\n\n            \"Developer\": \"开发者\",\n                \"App settings\": \"应用设置\", // 已安装\n                \"Website\": \"网站\",\n\n            \"is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"是由第三方提供的，并受单独的服务条款、隐私政策和支持文档的约束。\",\n\n            \"Report abuse\": \"举报滥用\",\n\n        // GitHub 应用 安装、授权页面 https://github.com/apps/<app-name>/installations/new/permissions?target_id=<id>\n        // 示例 https://github.com/apps/codacy-production/installations/new/permissions?target_id=7850715\n            \"Install & Authorize\": \"安装与授权\",\n            \"Authorize & Request\": \"授权与请求\", // 他人的组织\n            \"Request\": \"请求\",\n            // [/Install & Authorize on your personal account (.*)/, \"在您的个人账户 $1 上安装与授权\"],\n            // [/Install on your personal account (.*)/, \"在您的个人账户 $1 上安装\"],\n            // [/Install & Authorize on your organization (.*)/, \"在您的组织 $1 上安装与授权\"], // 组织\n            // [/Install on your organization (.*)/, \"在您的组织 $1 上安装\"], // 组织\n            // [/Request on your organization (.*)/, \"对于您的组织 $1 的请求\"], // 组织\n            // [/Authorize & Request on your organization (.*)/, \"对于您的组织 $1 的授权与请求\"], // 组织\n\n            \"for these repositories:\": \"对于这些仓库：\",\n                \"All repositories\": \"所有仓库\",\n                    \"This applies to all current\": \"这适用于资源所有者拥有的所有当前\",\n                    \"and\": \"和\",\n                    \"future repositories owned by the resource owner.\": \"未来的仓库。\",\n                    \"Also includes public repositories (read-only).\": \"还包括公共仓库（只读）。\",\n                \"Only select repositories\": \"仅选定的仓库\",\n                    \"Select at least one repository.\": \"至少选择一个仓库。\",\n                    \"Select repositories\": \"选择仓库\",\n                        \"Search for a repository\": \"搜索仓库\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"已选择 $1 仓库。\"],\n                        \"request\": \"请求\",\n\n            \"with these permissions:\": \"授权以下权限：\",\n\n            // >>>>>具体的权限不打算汉化<<<<<<<\n            // >>>>>具体的权限不打算汉化<<<<<<<\n\n            \"User permissions\": \"用户权限\",\n            // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装 & 授权 $1 会立即在您的账户上授予以下权限：\"],\n            // [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"还可以请求用户对以下资源的许可。这些权限将在个人用户的基础上请求和授权。\"],\n            \"These permissions will also be requested and authorized as needed on an individual-user basis.\": \"这些权限也将根据个人用户的需要进行申请和授权。\", // 组织\n\n            \"Installing & Authorizing\": \"安装与授权中\",\n            \"Installing\": \"安装中\",\n            \"Requesting\": \"请求中\",\n\n            \"Next: you'll be redirected to\": \"下一步：您将被重定向到\",\n            \"Next: you’ll be directed to the GitHub App’s site to complete setup.\": \"下一步：您将被引导到GitHub 应用网站完成设置。\", // 组织\n\n        // 应用设置 - 选择目标 https://github.com/apps/<app-name>/installations/select_target\n            // [/Install (.*)/, \"安装 $1\"],\n            // [/Where do you want to install (.*)\\?/, \"您想把 $1 安装在哪里？\"],\n            // [/(.*) is installed. Click to configure./, \"$1 已安装。点击进行配置。\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Install & Authorize on your personal account (.*)/, \"在您的个人账户 $1 上安装与授权\"],\n        [/Install & Authorize on your organization (.*)/, \"在您的组织 $1 上安装与授权\"], // 组织\n        [/Install on your personal account (.*)/, \"在您的个人账户 $1 上安装\"],\n        [/Install on your organization (.*)/, \"在您的组织账户 $1 上安装\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"已选择 $1 仓库。\"],\n        [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安装与授权 $1 会立即在您的账户上授予以下权限：\"],\n        [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"还可以请求用户对以下资源的许可。这些权限将在个人用户的基础上请求和授权。\"],\n        [/Authorize & Request on your organization (.*)/, \"对于您的组织 $1 的授权与请求\"], // 组织\n        [/Request on your organization (.*)/, \"对于您的组织 $1 的请求\"], // 组织\n        [/Install (.*)/, \"安装 $1\"],\n        [/Where do you want to install (.*)\\?/, \"您想把 $1 安装在哪里？\"],\n        [/(.*) is installed. Click to configure./, \"$1 已安装。点击进行配置。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs\"] = { // 组织页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n        //>>>>>>>>>>>>>>>>>> 组织主页/概况页 <<<<<<<<<<<<<<<<<<<<<\n            // [/doesn't have any pinned public repositories yet./, \"还没有任何置顶的公共仓库。\"],\n\n            \"followers\": \"关注者\",\n            \"Sponsor\": \"赞助\",\n\n            \"Send feedback\": \"发送反馈\",\n\n            \"Pinned\": \"已置顶\",\n            \"Popular repositories\": \"流行的仓库\",\n\n            // 仓库\n                // 搜索, 筛选 & 排序工具栏\n                \"Find a repository…\": \"搜索仓库…\",\n                // \"Type\": \"类型\", // 与全局冲突 使用 Selector 规则翻译\n                    // 下拉菜单\n                    \"Select type\": \"选择类型\",\n                    \"All\": \"全部\",\n                    \"Public\": \"公共\",\n                    \"Private\": \"私有\",\n                    \"Sources\": \"源码\",\n                    \"Forks\": \"复刻\",\n                    \"Archived\": \"存档\",\n                    \"Can be sponsored\": \"可赞助\",\n                    \"Mirrors\": \"镜像\",\n                    \"Templates\": \"模板\",\n                \"Language\": \"语言\",\n                    // 下拉菜单\n                    \"Select language\": \"选择语言\",\n                    \"All languages\": \"所有语言\",\n                \"Sort\": \"排序\",\n                    // 下拉菜单\n                    \"Select order\": \"选择排序\",\n                    \"Last updated\": \"最近更新\",\n                    \"Name\": \"仓库名\",\n                    // \"Recently starred\": \"最近标星\",\n                    // \"Recently active\": \"最近活跃\",\n                    // \"Most stars\": \"最多星标\",\n                    // \"Unstar\": \"取消星标\",\n                \"New\": \"新建\",\n\n                // 筛选结果\n                \"result for\": \"个结果在\",\n                \"results for\": \"个结果在\",\n                    \"public\": \"公共\",\n                    \"private\": \"私有\",\n                    \"source\": \"源码\",\n                    \"forked\": \"复刻\",\n                    \"archived\": \"存档\",\n                    \"sponsorable\": \"可赞助\",\n                    \"mirror\": \"镜像\",\n                    \"template\": \"模板\",\n                \"repositories matching\": \"仓库中匹配了\",\n                // \"result for repositories matching\": \"个结果在仓库中匹配了\",\n                // \"results for repositories matching\": \"个结果在仓库中匹配了\",\n                // \"repositories sorted by\": \"仓库，排序按\",\n                \"written in\": \"，使用语言\",\n                // \"results for repositories written in\": \"个结果在仓库中使用语言\",\n                // \"star matching\": \"个星标匹配\", //?tab=stars\n                // \"stars matching\": \"个星标匹配\", //?tab=stars\n                // \"star written in\": \"个星标使用语言\", //?tab=stars\n                // \"stars written in\": \"个星标使用语言\", //?tab=stars\n                \"repositories sorted by\": \"仓库，排序按\",\n                \"sorted by\": \"，排序按\",\n                    \"last updated\": \"最近更新\",\n                    \"name\": \"仓库名\",\n                    \"stars\": \"星标\",\n                \"all\": \"所有\",\n                \"repositories written in\": \"仓库中使用语言\",\n\n                \"Clear filter\": \"清除筛选\",\n\n                // [/([^ ]+) doesn’t have any repositories that match./, \"$1 没有任何匹配的仓库\"],\n                \"No repositories matched your search.\": \"没有与您的搜索相匹配的仓库。\",\n\n                // 项目 状态词\n                \"Updated\": \"更新于\",\n                \"Forked from\": \"复刻自\",\n\n\n            // 右侧栏\n                \"View as:\": \"浏览：\",\n                    \"Switch profile context\": \"切换视角\",\n                    \"Member\": \"成员\",\n                        \"Member of\": \"隶属于\", // 成员 - 浮动信息卡\n                        \"- same time\": \"- 时间相同\", // 成员 - 浮动信息卡\n\n                // 公共视角\n                    \"You are viewing the README and pinned repositories as a public user.\": \"您正在以公共用户的身份查看自述文件和置顶仓库。\",\n\n                // 组织成员视角\n                    // [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 组织成员的身份查看自述文件和置顶仓库。\"],\n\n                \"You can\": \"您可以\",\n                \"pin repositories\": \"置顶仓库\",\n                \"visible to anyone.\": \"让任何人都能看到。\",\n                \"visible only to members of the organization.\": \"仅对组织成员可见。\",\n\n                \"Get started with tasks\": \"开始任务\",\n                \"that most successful organizations complete.\": \"大多数成功的组织都会完成。\",\n                \"hide the tasks we've suggested\": \"隐藏我们建议的任务\",\n                \"on this page and bring them back later.\": \"在此页面上，以后再把它们带回来。\",\n\n                \"Top discussions this past month\": \"上个月的热门讨论\",\n                    \"Nothing to see here yet!\": \"这里还没什么可看的!\",\n                    \"Discussions are for sharing announcements, creating conversation in your community, answering questions, and more.\": \"讨论是为了分享公告，在您的社区创建对话，回答问题，以及更多。\",\n                    \"Start a new discussion\": \"开始新的讨论\",\n                    \"View all discussions\": \"查看全部讨论\", // 组织讨论\n\n                // \"People\": \"成员\",\n                    \"This organization has no public members. You must be a member to see who’s a part of this organization.\": \"该组织没有公共成员。您必须是成员才能查看谁是该组织的成员。\",\n                    \"Invite someone\": \"邀请他人\",\n                        // 邀请对话框\n                        // [/Invite a member to/, \"邀请成员加入\"],\n                        \"Search by username, full name or email address\": \"搜索用户名，全名或邮箱地址：\",\n                        \"Invite\": \"邀请\",\n                        \"Invite a billing manager\": \"邀请一位账单管理员\",\n                        \"Authenticate your members with SAML single sign-on\": \"使用 SAML 单一登录对您的成员进行身份验证\",\n                        \"Try risk-free for 30 days\": \"无风险试用 30 天\",\n                        \"learn more about SAML\": \"了解更多关于 SAML 的信息\",\n                        \", or\": \"，或\",\n                        \"dismiss this message\": \"忽略此消息\",\n                    \"View all\": \"查看全部\",\n\n                \"Top languages\": \"热门语言\",\n                    \"Loading…\": \"载入中…\",\n                \"Most used topics\": \"最常用的话题\",\n                \"Developer Program Member\": \"开发者计划成员\",\n                \"Report abuse\": \"举报滥用\",\n\n            \"Create new repository\": \"新建仓库\",\n            \"Import\": \"导入\",\n\n            \"This organization has no repositories.\": \"该组织暂无仓库。\",\n            \"View all repositories\": \"查看所有仓库\",\n\n            // 设置置顶\n            \"Edit pinned repositories\": \"设置置顶项目\",\n            \"Select up to six public repositories you'd like to show to anyone.\": \"最多选择 6 个您想向任何人展示的公共仓库。\",\n            \"Select up to six public, internal, or private repositories you'd like to show only to members of the organization.\": \"最多选择 6 个您想仅向组织成员展示的公共、内部或私有仓库。\",\n            \"No repositories or gists found.\": \"没有发现仓库或 Gists。\",\n            // 顶部提醒\n            \"You’re not a member of any teams in this organization.\": \"您不是该组织中任何团队的成员。\",\n            \"invited you to join the\": \"邀请您加入\",\n            \"organization\": \"组织\",\n            \"View invitation\": \"查看邀请\",\n\n            // 新组织 入门任务\n            \"We think you’re gonna like it here.\": \"我们认为您会喜欢这里的。\",\n            \"We’ve suggested some tasks here in your organization's overview to help you get started.\": \"我们在这里就您的组织概况提出了一些任务，以帮助您开始工作。\",\n            \"Invite your people\": \"邀请同伴\",\n                \"Invite your first member\": \"邀请首位成员\",\n                    \"Find people by their GitHub username or email address.\": \"通过 GitHub 用户名或电子邮件地址找到他们。\",\n                \"Customize members' permissions\": \"自定义成员权限\",\n                    \"Set everyone’s base permissions for your code.\": \"为您的代码设置每个人的基本权限。\",\n            \"Collaborative coding\": \"协助编码\",\n                \"See more about collaborative coding\": \"查看更多关于协作式编码的信息\",\n                \"Create a pull request\": \"创建拉取请求\",\n                    \"Propose and collaborate on changes to a repository.\": \"就对仓库的更改提出建议并进行协作。\",\n                \"Create a branch protection rule\": \"创建分支保护规则\",\n                    \"Enforce certain workflows for one or more branches.\": \"为一个或多个分支强制执行某些工作流程。\",\n            \"Automation and CI/CD\": \"自动化和 CI/CD\",\n                \"See more about automation and CI/CD\": \"查看更多关于自动化和 CI/CD 的信息\",\n                \"Auto-assign new issues\": \"自动分配新议题\",\n                    \"Try automatically assigning work with GitHub Actions.\": \"尝试使用 GitHub Actions 自动分配工作。\",\n                \"Run a continuous integration test\": \"运行持续集成测试\",\n                    \"Validate your code using a CI workflow.\": \"使用 CI 工作流程验证您的代码。\",\n            \"Discover new GitHub features\": \"发现 GitHub 的新功能\",\n                \"See all features\": \"查看所有功能\",\n                \"Client apps\": \"客户端应用\",\n                \"Project management\": \"项目管理\",\n                \"Team administration\": \"团队管理\",\n                \"Community\": \"社区\",\n\n            // 组织关注 指引框\n                \"You can now follow organizations\": \"您现在可以关注组织\",\n                \"Organization activity like new discussions, sponsorships, and repositories will appear in\": \"组织活动，如新的讨论、赞助和仓库将出现在\",\n                \"your dashboard feed\": \"您的仪表板的信息上\",\n                \"OK, got it!\": \"好的，知道了！\",\n\n            \"This organization has no public repositories.\": \"该组织没有公共仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/doesn't have any pinned public repositories yet./, \"还没有任何置顶的公共仓库。\"],\n        [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 组织成员的身份查看自述文件和置顶仓库。\"],\n        [/Invite a member to/, \"邀请成员加入\"],\n        [/\\((\\d+) issues? needs? help\\)/, \"($1 个议题需要帮助)\"],\n        [/([^ ]+)’s past year of commit activity/, \"近几年 $1 的提交活动\"],\n        // 用户 - 浮动信息卡\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小时';\n        }],\n        [/, and (\\d+) more/, \" 等 $1 个组织\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素筛选器规则\n        [\"#type-options > summary > span:nth-child(1)\", \"类型\"], // 组织主页 --> 仓库标签页-->类型筛选器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Choose a plan\": \"选择一个计划\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"orgs/repositories\"] = I18N[\"zh-CN\"][\"page-profile/repositories\"];\n\nI18N[\"zh-CN\"][\"orgs/projects\"] = I18N[\"zh-CN\"][\"page-profile/projects\"];\n\nI18N[\"zh-CN\"][\"orgs/packages\"] = I18N[\"zh-CN\"][\"page-profile/packages\"];\n\nI18N[\"zh-CN\"][\"orgs/people\"] = { // 组织 - 成员标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 成员标签页 https://github.com/orgs/<orgs-name>/people\n            // 左侧栏\n            \"Organization permissions\": \"组织权限\",\n            \"Members\": \"成员\",\n            \"Outside collaborators\": \"外部协作者\",\n            \"Pending collaborators\": \"待定协作者\",\n            \"Invitations\": \"邀请\",\n            \"Failed invitations\": \"失败邀请\",\n            \"Security Managers\": \"安全管理员\",\n\n            \"Find a member…\": \"搜索成员…\",\n\n            \"Export\": \"导出\",\n            \"Invite member\": \"邀请成员\",\n\n            \"You are the only owner of this organization! We recommend a minimum of two people within each organization have the owner role.\": \"您是该组织的唯一所有者！我们建议每个组织内至少有两人担任所有者角色。\",\n            \"Dismiss\": \"忽略\",\n\n            \"Filter by two-factor authentication\": \"按双因素身份验证筛选\",\n            \"Everyone\": \"所有人\",\n            \"Enabled\": \"启用\",\n            \"Disabled\": \"禁用\",\n            \"Required\": \"必须\",\n\n            \"Membership\": \"成员\",\n            \"Filter by membership\": \"按成员筛选\",\n            \"Owners\": \"所有者\",\n            \"Member\": \"成员\",\n\n            \"Organization visibility\": \"组织可见性\",\n            \"Your membership is visible to everyone and is displayed on your public profile.\": \"您的成员资格对所有人都是可见的，并显示在您的个人资料上。\",\n            \"Your membership is only visible to other members of this organization.\": \"您的成员资格只对本组织的其他成员可见。\",\n\n            \"Owner\": \"所有者\",\n            \"Owners have full access to teams, settings, and repositories.\": \"所有者拥有对团队、设置和仓库的完全访问权限。\",\n            // [/(\\d+) teams?/, \"$1 团队\"],\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n            \"Member settings\": \"成员设置\",\n            \"Manage\": \"管理\",\n            \"Change role…\": \"切换角色…\",\n            \"Convert to outside collaborator…\": \"转为外部协作者…\",\n            \"Remove from organization…\": \"从组织移除…\",\n\n            \"This organization has no public members.\": \"该组织没有公开的成员。\",\n\n            // 邀请对话框\n                // [/Invite a member to/, \"邀请成员加入\"],\n                \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Invite\": \"邀请\",\n                \"Invite a billing manager\": \"邀请一位账单管理员\",\n                \"Authenticate members with\": \"对成员进行身份验证，使用\",\n                \"SAML single sign-on\": \"SAML 单点登录\",\n                \"Try it in a 30-day trial of GitHub Enterprise.\": \"尝试试用 30 天 GitHub 企业版\",\n                \"Start a free trial\": \"开始免费试用\",\n\n            // 转换为外部协作者 对话框\n                // [/Convert ([^ ]+) to outside collaborator?/, \"将 $1 转换为外部协作者？\"],\n                \"Converting members to outside collaborators will remove them from this organization and from all teams, and if they do not currently have access to any private repositories in the organization their seat will be reclaimed.\": \"将成员转换为外部协作者会将把他们从本组织和所有团队中移除，如果他们目前无法访问组织中的任何私有仓库，他们的席位将被收回。\",\n                \"Their repository access will be preserved by making them collaborators on all repositories that their teams gave them access to. They will retain access to repositories that they were previously collaborators on, but all other access to this organization’s repositories will be lost.\": \"通过使他们成为其团队授予他们访问权限的所有仓库的协作者，他们的仓库访问权限将得到保留。他们将保留对之前作为协作者的仓库的访问权限，但对该组织仓库的所有其他访问权限都将丢失。\",\n                \"Convert to outside collaborator\": \"转换为外部协作者\",\n\n                //顶部提示\n                    \"You can't remove yourself from the organization. Have another admin do this for you.\": \"您无法将自己从组织中删除。请让其他管理员代劳。\",\n            // 移除成员 对话框\n                // [/Removing (\\d+) members? from/, \"移除 $1 名成员，从\"],\n                \"The following members will be removed:\": \"以下成员将被移除：\",\n                \"Remove members\": \"移除成员\",\n\n                // 顶部提醒\n                    \"You can't remove the last owner of this organization.\": \"您无法移除该组织的最后一位所有者。\",\n            // 顶部提醒\n                \"You publicized 1 membership.\": \"您公开了 1 名成员资格\",\n                \"You concealed 1 membership.\": \"您隐藏了 1 名成员资格\",\n\n        // 成员管理 https://github.com/orgs/<orgs-name>/people/<user-name>\n\n        // 成员权限详情 /orgs/<orgs-name>/people/<user-name>/repositories/<orgs-name>/<repo-name>\n\n        // 外部协作者 https://github.com/orgs/<orgs-name>/outside-collaborators\n            \"Find a collaborator…\": \"寻找协作者…\",\n            \"Select all\": \"全选\",\n            \"No one outside of the organization has access to its repositories.\": \"组织外部的任何人都无法访问其仓库。\",\n\n        // 待定协作者 https://github.com/orgs/<orgs-name>/pending_collaborators\n            \"Find a pending collaborator…\": \"搜索待定协作者…\",\n            \"There aren't any pending collaborators.\": \"暂无任何待定的协作者\",\n\n        // 待定邀请 https://github.com/orgs/<orgs-name>/people/pending_invitations\n            // 顶部提醒\n                // [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀请 $1 加入到 $2 ！他们很快就会收到一封电子邮件。他们还可以访问 $3 接受邀请。\"],\n                // [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀请。\"],\n                // [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已经取消了来自 $2 的 $1 个邀请。可能需要几分钟处理。\"],\n\n            \"Find an invitation…\": \"搜索邀请…\",\n\n            \"Role\": \"角色\",\n\n            \"Source\": \"来源\",\n            \"Filter by invitation source\": \"按邀请来源筛选\",\n            \"All sources\": \"所有来源\",\n\n            // [/(\\d+) invitations?/, \"邀请\"],\n\n            \"Sort\": \"排序\",\n            \"Sort Order\": \"排序方式\",\n            \"Order\": \"方式\",\n            \"Newest\": \"最新的\",\n            \"Oldest\": \"最早的\",\n\n            \"No matching invitations.\": \"暂无匹配的邀请。\",\n\n            \"Edit invitation\": \"编辑邀请\",\n            \"Cancel invitation\": \"取消邀请\",\n                // [/Cancel invitation from ([^ ]+)/, \"取消来自 $1 的邀请\"],\n                \"The following invitations will be canceled:\": \"以下邀请将被取消：\",\n\n        // 失败邀请 https://github.com/orgs/<orgs-name>/people/failed_invitations\n            // [/(\\d+) Failed invitations?/, \"个失败邀请\"],\n            \"No failed invitations.\": \"暂无失败邀请。\",\n\n        // 安全管理 https://github.com/orgs/<orgs-name>/people/security_managers\n            \"Find a security manager…\": \"搜索安全管理员…\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) teams?/, \"$1 团队\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) Failed invitations?/, \"$1 失败邀请\"],\n        [/Invite a member to/, \"邀请成员加入\"],\n        [/Convert ([^ ]+) to outside collaborator?/, \"将 $1 转换为外部协作者？\"],\n        [/Removing (\\d+) members? from/, \"移除 $1 名成员，从\"],\n        [/(\\d+) pe(?:ople|rson) in the ([^ ]+) organization/, \"$2 组织中的 $1 位成员\"],\n        [/(\\d+) security managers? in the ([^ ]+) organization/, \"$2 组织中的 $1 位安全管理员\"],\n        [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀请 $1 加入到 $2 ！他们很快就会收到一封电子邮件。他们还可以访问 $3 接受邀请。\"],\n        [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀请。\"],\n        [/Cancel invitation from ([^ ]+)/, \"取消来自 $1 的邀请\"],\n        [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已经取消了来自 $2 的 $1 个邀请。可能需要几分钟处理。\"],\n        [/(\\d+) invitations?/, \"$1 邀请\"],\n        [/Invited on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `邀请于${translatedDate}`;\n        }],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n   ],\n    \"title\": {\n        \"regexp\": [\n            [/Members · People/, \"成员 · 人\"],\n        ],\n    },\n};\nI18N[\"zh-CN\"][\"orgs/outside-collaborators\"] = I18N[\"zh-CN\"][\"orgs/people\"];\nI18N[\"zh-CN\"][\"orgs/pending_collaborators\"] = I18N[\"zh-CN\"][\"orgs/people\"];\n\n\nI18N[\"zh-CN\"][\"orgs/teams\"] = { // 组织 - 团队标签卡\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n        \"Organization roles\": \"组织角色\",\n\n        // 团队标签卡 https://github.com/orgs/<orgs-name>/teams\n            \"Seamless communication with teams\": \"与团队的无缝沟通\",\n            \"Teams are a great way for groups of people to communicate and work on code together. Take a look at why they’re great.\": \"团队是一群人在一起交流和编写代码的好方法。看看为什么他们很棒。\",\n            \"Flexible repository access\": \"灵活的仓库访问\",\n                \"You can add repositories to your teams with more flexible levels of access (Admin, Write, Read).\": \"您可以将仓库添加到您的团队中，并有更灵活的访问级别（管理员、写入、读取）。\",\n            \"Request to join teams\": \"申请加入团队\",\n                \"Members can quickly request to join any team. An owner or team maintainer can approve the request.\": \"成员可以快速申请加入任何团队。一个所有者或团队维护者可以批准该请求。\",\n            \"Team mentions\": \"团队提及\",\n                \"Use team @mentions (ex.\": \"使用团队 @提及（例如\",\n                \"for the entire team) in any comment, issue, or pull request.\": \"对于整个团队）在任何评论、议题或拉取请求中。\",\n                \"New team\": \"新建团队\",\n\n            \"Find a team…\": \"搜索团队……\",\n\n            \"Select all\": \"全选\",\n            \"Visibility\": \"可见性\",\n                \"All\": \"所有\",\n            \"Members\": \"成员\",\n            \"Team members\": \"团队成员\",\n                \"My teams\": \"我的团队\",\n                \"No members\": \"没有成员\",\n\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n        // 子团队 https://github.com/orgs/<orgs-name>/teams/team\n            // 申请提示\n                \"Membership requested. We’ll let you know once an administrator has reviewed your request.\": \"成员资格已申请。一旦管理员审核了您的请求，我们将通知您。\",\n                \"Okay, we’ve cancelled your request to join this team.\": \"好的，已取消加入此团队申请。\",\n\n            \"Find a member…\": \"查找成员…\",\n            \"Add a member\": \"添加成员\",\n\n            \"Request to join\": \"请求加入\",\n                \"Requires approval from an owner or team maintainer\": \"需要所有者或团队维护者批准\",\n            \"Cancel pending request\": \"取消请求\",\n                \"Your request to join this team is pending review\": \"您的请求待审查\",\n\n            \"This team doesn’t have any child team members.\": \"此团队没有子团队成员。\",\n\n            \"Filter by role\": \"筛选角色\",\n                \"Maintainer\": \"维护者\",\n                \"Member\": \"成员\",\n\n        // 子团队成员 https://github.com/orgs/<orgs-name>/teams/team/members\n            \"Invite\": \"邀请\",\n                \"Search by username, full name, or email address\": \"搜索用户名，全名或邮件\",\n\n            \"Invitations\": \"邀请\",\n            \"Requests\": \"请求\",\n                \"Approve\": \"批准\",\n                \"Deny\": \"拒绝\",\n\n        // 创建团队 /orgs/<org-login>/new-team\n            \"Create new team\": \"新建团队\",\n            \"Team name\": \"团队名称\",\n            \"You’ll use this name to mention this team in conversations.\": \"您将使用此名称在对话中提及此团队。\",\n            \"Description\": \"描述\",\n            \"What is this team all about?\": \"这个团队是什么？\",\n            \"Parent team\": \"父团队\",\n                \"There are no teams that can be selected.\": \"没有可以选择的团队。\",\n                \"Select parent team\": \"选择父团队\",\n                \"Search teams\": \"搜索团队\",\n                \"Clear selected value\": \"清除\",\n            \"Team visibility\": \"团队可见性\",\n                \"Visible\": \"可见\",\n                    \"Recommended\": \"推荐\",\n                    \"A visible team can be seen and\": \"可见的团队可以被看到并\",\n                    \"@mentioned\": \"@提及\",\n                    \"by every member of this organization.\": \"本组织的每一位成员。\",\n                \"Secret\": \"私密\",\n                    \"A secret team can only be seen by its members and may not be nested.\": \"私密团队只能被其成员看到，而且不能被嵌套。\",\n                \"Team notifications\": \"团队通知\",\n                    \"Enabled\": \"启用\",\n                        \"Everyone will be notified when the team is @mentioned.\": \"当团队被 @提及 时，每个人都会收到通知。\",\n                    \"Disabled\": \"禁用\",\n                        \"No one will receive notifications.\": \"没有人会收到通知。\",\n            \"Create team\": \"创建团队\",\n\n        // 团队设置 - 通常 https://github.com/orgs/<orgs-name>/teams/team/edit\n            \"General\": \"通常\",\n            \"Code review\": \"代码审查\",\n            \"Scheduled reminders\": \"定时提醒\",\n\n            \"Team settings\": \"团队设置：\",\n            \"Changing the team name will break past @mentions.\": \"更改团队名称会破坏过去的 @提及。\",\n            \"Profile picture\": \"团队头像\",\n            \"Upload new picture\": \"上传新头像\",\n            \"You may also drag and drop an image from your computer. The image must be less than 1MB.\": \"您也可以从电脑中拖放图片。图片必须小于 1MB。\",\n\n            \"Danger zone\": \"危险区\",\n                \"Delete this team\": \"删除团队\",\n                \"Once deleted, it will be gone forever. Please be certain.\": \"一旦删除，将永远消失。请确定\",\n\n                // 删除对话框\n                    \"Are you sure you want to delete this team?\": \"您确定要删除该团队吗？\",\n                        \"Once deleted, it will be gone forever.\": \"一旦删除，它将永远消失。\",\n                        \"I understand, delete this team\": \"我明白了，依然删除该团队\",\n\n        // 团队设置 - 代码审查 https://github.com/orgs/<orgs-name>/teams/team/edit/review_assignment\n            \"Only notify requested team members\": \"仅通知被请求的团队成员\",\n                \"If both a team and one or more of its members are requested for review, don't notify the entire team.\": \"不通知整个团队，仅通知被请求的团队成员\",\n            \"Enable auto assignment\": \"启用自动分配\",\n                \"This will automatically route this team's code review requests to individual team members.\": \"自动将代码审查请求转发给单个团队成员。\",\n                \"Note: this won't assign members who have committed to the pull request or have set their status to Busy.\": \"注意：这不会将已提交的拉取请求或已将状态设置为 “忙碌 ”的成员分配给他们。\",\n                    \"How many team members should be assigned to review?\": \"应指派多少名团队成员进行审查？\",\n                    \"Routing algorithm\": \"旁路算法\",\n                        \"Round robin\": \"循环\",\n                        \"Alternate reviews between each team member\": \"每位团队成员交替审核\",\n                        \"Load balance\": \"负载平衡\",\n                        \"Balance review load across the entire team\": \"平衡整个团队的审核负载\",\n                        \"Never assign certain team members\": \"绝不指派某些团队成员\",\n                            \"Select team members\": \"选择团队成员\",\n                    \"Child team members\": \"子团队成员\",\n                        \"Include the members of any child teams when assigning requests.\": \"在分配申请时，包括任何子团队的成员。\",\n                    \"Count existing requests\": \"计算现有请求\",\n                        \"Count any members whose review has already been requested against the total number of members to assign.\": \"在要分配的成员总数中计算任何已提出审核请求的成员。\",\n                    \"Team review request\": \"团队审查请求\",\n                        \"When assigning team members, remove the review request for the team.\": \"分配团队成员时，删除团队的审核请求。\",\n\n        // 团队设置 - 定时提醒 https://github.com/orgs/<orgs-name>/teams/team/settings/reminders\n            \"No scheduled reminders created.\": \"未创建预定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"为了保持项目进展，您现在可以提醒您的团队关于他们需要审查的拉取请求。\",\n\n            \"Connect a Slack workspace to get started\": \"连接 Slack 工作区以开始使用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) members?/, \"$1 成员\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) teams? in the ([^ ]+) organization/, \"$2 组织中的 $1 个团队\"],\n        [/(\\d+) teams?/, \"$1 团队\"],\n        [/(\\d+) child team members?/, \"$1 子团队成员\"],\n        [/Add member to (.+)/, \"添加成员至 $1\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/new-team\"]= I18N[\"zh-CN\"][\"orgs/teams\"];\n\nI18N[\"zh-CN\"][\"orgs/invitations\"] = { // 组织 - 邀请页面\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"static\"],\n\n        // 邀请 https://github.com/orgs/<orgs-name>/invitations/<user-name>/edit\n            // [/Invite ([^ ]+) to ([^ ]+)/, \"邀请 $1 加入 $2 组织\"],\n            \"Give them an appropriate role in the organization and add them to some teams to give access to repositories.\": \"在组织中赋予他们适当的角色，并将他们添加到一些团队中，以便让他们访问仓库。\",\n            \"Role in the organization\": \"在组织中的角色\",\n                \"Member\": \"成员\",\n                    \"Members can see all other members, and can be granted access to repositories. They can also create new teams and repositories.\": \"成员可以看到所有其他成员，并可被授予访问仓库的权限。他们还可以创建新团队和仓库。\",\n                \"Owner\": \"所有者\",\n                    \"Owners have full administrative rights to the organization and have complete access to all repositories and teams.\": \"所有者拥有组织的全部管理权限，可以完全访问所有仓库和团队。\",\n            \"Send invitation\": \"发送邀请\",\n\n        // 编辑模式\n            // [/Edit ([^ ]+)’s invitation to ([^ ]+)/, \"编辑 $2 对 $1 的邀请\"],\n            \"Originally invited by\": \"最初由\",\n            // [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀请。作为所有者，您可以赋予 $1 不同的角色，并为他们挑选不同的团队。\"],\n            \"Cancel invitation\": \"取消邀请\",\n            \"Update invitation\": \"更新邀请\",\n\n        // 已通过邀请\n            // [/Invite a member to ([^ ]+)/, \"邀请会员加入 $1\"],\n            \"Sorry,\": \"抱歉!\",\n            // [/is already a member of ([^ ]+)./, \"已经是 $1 的成员。\"],\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Invite ([^ ]+) to ([^ ]+)/, \"邀请 $1 加入 $2\"],\n        [/invitation to ([^ ]+)/, \"关于组织 $1 的邀请\"],\n        [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀请。作为所有者，您可以赋予 $1 不同的角色，并为他们挑选不同的团队。\"],\n        [/Invite a member to ([^ ]+)/, \"邀请会员加入 $1\"],\n        [/is already a member of ([^ ]+)./, \"已经是 $1 的成员。\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/invitation\"] = { // 组织 - 接受邀请页面\n    \"static\": {\n\n        // 接受邀请 https://github.com/<orgs-name>/invitation\n            \"You’ve been invited to the\": \"您被邀请加入\",\n                \"organization!\": \"组织！\",\n\n            \"Invited by\": \"邀请者：\",\n\n            // [/Join ([^ ]+)/, \"加入 $1\"],\n            \"Decline\": \"拒绝\",\n\n            // [/of ([^ ]+) may be able to see:/, \"$1 将可以查看：\"],\n            // 组织权限\n                \"If you have\": \"您的\",\n                    \"two-factor authentication\": \"双重身份验证（2FA）\",\n                    \"enabled or not\": \"是否启用\",\n                \"Your public profile information\": \"您的公开信息\",\n                \"Certain activity\": \"某些活动\",\n                    \"within this organization\": \"在该组织内\",\n                \"Country of request origin\": \"请求来源国家/地区\",\n                \"Your access level to repositories within the organization\": \"您对组织内仓库的访问级别\",\n                \"Your IP address\": \"您的 IP 地址\",\n\n            \"Opt out\": \"拒绝\",\n                \"of future invitations from this organization.\": \"该组织未来的邀请。\",\n            \"of future invitations from this organization.\": \"该组织未来的邀请。\",\n\n    },\n    \"regexp\": [\n        [/Join ([^ ]+)/, \"加入 $1\"],\n        [/of ([^ ]+) may be able to see:/, \"$1 将可以查看：\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/domain/new\"] = { // 组织 - 添加域名\n    \"static\": { // 静态翻译\n        \"Verified & approved domains\": \"经验证和批准的域名\",\n        \"Add a domain\": \"添加域名\",\n        \"What domain would you like to add?\": \"您想添加什么域名？\",\n        \"Add domain\": \"添加域名\",\n        \"Domain name has already been added\": \"域名已添加\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/profile\"] = { // 组织设置 - 组织资料\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 顶部提示\n            \"Thanks for updating your Developer Program contact information!\": \"感谢您更新开发者联系信息！\",\n\n        // 组织资料 /organizations/<org-login>/settings/profile\n            \"Most organization settings are hidden for an archived organization. This organization must be unarchived to change them.\": \"对于已存档的组织，组织大多数设置都是隐藏的。必须取消对该组织的归档才能更改它们。\",\n\n            \"Organization profile\": \"基本资料\",\n                \"Profile picture\": \"我的头像\",\n                    \"Upload new picture\": \"上传新头像\",\n                    \"Note: To apply for a publisher verification your organization's profile picture should not be irrelevant, abusive or vulgar. It should not be a default image provided by GitHub.\": \"注意：需要申请发布者验证，您的组织的个人资料图片不应该是不相关的、辱骂性的或粗俗的。它不应该是由 GitHub 提供的默认图片。\",\n                \"Organization display name\": \"组织显示名称\",\n                \"Email (will be public)\": \"公开电子邮箱\",\n                \"Description\": \"描述\",\n                \"URL\": \"网站\",\n                \"Social accounts\": \"社交账户\",\n                \"Link to social profile\": \"链接到社交账户\",\n                \"Location\": \"位置\",\n                    \"Select a location\": \"选择位置\",\n                    \"Find a location...\": \"搜索位置…\",\n                    \"Clear Location\": \"清除位置\",\n                \"Billing email\": \"账单电子邮箱\",\n                \"(Private)\": \"（私人）\",\n                    \"Add more billing email recipients in the\": \"添加更多的账单邮件收件人在\",\n                    \"billing page\": \"账单页面\",\n                \"Gravatar email\": \"Gravatar 电子邮箱\",\n                \"Sponsors update email\": \"赞助者更新电子邮箱\",\n                    \"The developers and organizations that your organization sponsors can send you updates to this email.\": \"您的组织赞助的开发人员和组织可以向您发送此电子邮箱的更新。\",\n                \"Update profile\": \"更新资料\",\n                \"Profile updated successfully\": \"资料更新成功。\",\n\n            \"Link Patreon account\": \"关联 Patreon 账户\",\n                \"Connect a Patreon account for\": \"关联\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 账户，以便赞助维护者。当被赞助者也关联 Patreon 和 GitHub 账户时，在 Patreon 上获得的赞助也会显示在 GitHub 上，并显示 GitHub 赞助者的公开个人资料。\",\n                \"Connect with Patreon\": \"关联 Patreon 账户\",\n\n            \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"Building an application, service, or tool that integrates with GitHub?\": \"构建应用、服务或工具，集成到 GitHub 吗？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 开发者计划\",\n                \", or read more about it at our\": \"，或了解更多信息在我们的\",\n                \"GitHub developer program\": \"GitHub 开发者计划\",\n                \"Check out the Developer site\": \"查看开发者站点，\",\n                \"for guides, our API reference, and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"以获取指南、我们的 API 参考和其他用于构建与 GitHub 集成的应用的资源。请确保您的联系信息是最新的。感谢您成为我们的成员！\",\n\n            \"Terms of Service\": \"服务条款\",\n                \"Standard\": \"标准\",\n                    \"Best for individuals wanting the freedom to move data and remain independent of a corporation.\": \"最适合希望自由移动数据并保持独立于公司的个人。\",\n                    \"Read the Standard Terms of Service\": \"阅读 “标准服务条款”\",\n                \"Corporate\": \"企业\",\n                    \"Best for businesses that need to protect their intellectual property and secure visibility into their data.\": \"最适合需要保护知识产权并确保数据可见性的企业。\",\n                    \"Read the GitHub customer agreement\": \"请阅读 GitHub 用户协议\",\n                    \"Sign GitHub customer terms\": \"签署 GitHub 用户条款\",\n\n            \"Danger zone\": \"危险区\",\n                \"Rename organization\": \"重命名组织\",\n                    \"Renaming your organization can have\": \"重命名您的组织可能会有\",\n                    \"unintended side effects\": \"意想不到的副作用\",\n                    \"This organization cannot be renamed because it is archived.\": \"该组织无法重命名，因为它已存档。\",\n                \"Really rename your organization?\": \"确定要重命名您的组织？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"请仔细阅读以下提示信息！！！\",\n                \"We\": \"我们\",\n                \"will not\": \"不会\",\n                \"will\": \"会\",\n                \"create redirects for your repositories (web and git access).\": \"为您的仓库设置重定向（ web 和 git 访问）。\",\n                \"You will need to update your local repositories to point to the new location.\": \"您将需要更新您的本地仓库，以指向新的位置。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要几分钟的时间来完成。\",\n                \"I understand, let’s rename my organization\": \"我明白了，依然重命名我的组织\",\n\n                \"Rename your organization\": \"重命名组织\",\n                \"Change organization’s name\": \"更改组织名\",\n                // 顶部提醒\n                    \"Organization name may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen\": \"组织名称只能包含字母数字字符或单连字符，不能以连字符开始或结束。\",\n                    \"Organization name is not available\": \"组织名称不可用\",\n\n                \"Archive this organization\": \"存档组织\",\n                    \"Mark this organization and all its repositories as archived and read-only.\": \"将此组织及其所有仓库标记为已存档和只读。\",\n                    \"Please provide\": \"请提供\",\n                    \"feedback\": \"反馈\",\n                    \"on this feature.\": \"关于此功能。\",\n\n                    \"Archive organization\": \"存档组织\",\n                        \"This organization will be archived.\": \"该组织将被存档。\",\n                        \"Modifying settings will be limited and creating new repositories will be blocked.\": \"修改设置将受到限制，并且创建新仓库将被阻止。\",\n\n                        \"All repositories will be\": \"所有仓库都将被\",\n                        \"archived\": \"存档\",\n                        \"and be read-only.\": \"并设为只读。\",\n                        \"Before you archive, please consider:\": \"在存档之前，请考虑：\",\n                            \"Updating any organization settings\": \"更新任何组织设置\",\n                            \"Making a note in your\": \"请标记在您的\",\n                            \"organization README\": \"组织 README\",\n                        \"Please type\": \"请输入\",\n                        \"to confirm.\": \"进行确定。\",\n                        \"I understand the consequences, archive this organization\": \"我明白后果，依然存档该组织\",\n\n                        // 顶部提醒\n                        // [/Your organization ([^ ]+) is being archived./, \"您的组织 $1 已归档。\"],\n\n                \"Unarchive this organization\": \"解锁存档组织\",\n                    \"Mark this organization as unarchived and read-write.\": \"将此组织标记为未存档且可读写。\",\n\n                    \"Unarchive organization\": \"解除组织存档\",\n                    \"This organization will be unarchived.\": \"该组织将解除存档。\",\n                    \"Modifying settings will be possible and creating new repositories will be unblocked.\": \"可以修改设置，创建新仓库也将不再受限。\",\n\n                    \"Repositories will be remain\": \"仓库将保持\",\n                    \"and need to be unarchived separately.\": \"，并需要单独解除存档。\",\n                    \"I understand the consequences, unarchive this organization\": \"我明白后果，依然解除该组织存档\",\n\n                        // 顶部提醒\n                        // [/Your organization ([^ ]+) has been unarchived./, \"您的组织 $1 已解除归档。\"],\n\n                \"Delete this organization\": \"删除组织\",\n                    \"Once deleted, it will be gone forever. Please be certain.\": \"您一旦删除，将再也无法恢复。请确认！\",\n\n                   \"Are you sure you want to delete this?\": \"您确定要删除吗？\",\n                   \"Deleting the\": \"删除\",\n                   \"organization will delete all of its repositories. The\": \"组织，将会删除其所有仓库。\",\n                   \"username will be unavailable for 90 days.\": \"用户名将在 90 天内不可用。\",\n                   \"Before proceeding, please be sure to review the\": \"在继续之前，请务必查看\",\n                   \"regarding account deletion.\": \"关于账户删除。\",\n                   \"Enter this organization’s name to confirm\": \"请输入组织的名称，进行确认\",\n                   \"Cancel plan and delete the organization\": \"取消计划并删除此组织\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Your organization ([^ ]+) is being archived./, \"您的组织 $1 已归档。\"],\n        [/Your organization ([^ ]+) has been unarchived./, \"您的组织 $1 已解除归档。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/policies/repositories\"] = { // 组织设置 - 策略 - 仓库策略\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库策略 /organizations/<org-login>/policies/repositories\n            \"Repository policies\": \"仓库策略\",\n            \"You haven't created any policies\": \"您尚未创建任何策略\",\n            \"Define whether members can perform operations on repositories such as delete and transfer.\": \"定义成员是否可以对仓库执行删除和转移等操作。\",\n            \"Learn more about rulesets.\": \"了解更多关于规则集的信息\",\n            \"Organization rulesets won't be enforced\": \"组织规则集将不会被强制执行\",\n            \"until you upgrade this organization account to GitHub Team.\": \"直到您将此组织账户升级至 GitHub 团体版。\",\n            \"New policy\": \"新建策略\",\n    }\n}\n\nI18N[\"zh-CN\"][\"orgs/settings/roles\"] = { // 组织设置 - 仓库角色\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库角色 /organizations/<org-login>/settings/roles\n            // \"Roles are used to grant access and permissions for teams and members. In addition to the available pre-defined roles, you can create up to 0 custom roles to fit your needs.\": \"角色是用来为团队和成员授予访问和权限的。除了可用的预定义角色外，您可以创建多达 0 个自定义角色以满足您的需求。\",\n            //     \"Learn more about custom repository roles\": \"了解更多关于自定义仓库角色的信息\",\n            \"Roles are used to grant access and permissions for teams and members.\": \"角色是用来为团队和成员授予访问和权限的。\",\n            \"Pre-defined roles\": \"预定义角色\",\n                \"You can\": \"您可\",\n                \"set the base role\": \"设置基础角色\",\n                \"for this organization from one of these roles.\": \"从该组织的这些角色中设置\",\n                    \"Read\": \"只读\",\n                        \"Read and clone repositories. Open and comment on issues and pull requests.\": \"读取和克隆仓库。打开并评论问题和拉取请求。\",\n                    \"Triage\": \"分级\",\n                        \"Read permissions plus manage issues and pull requests.\": \"读取权限外加管理议题和拉取请求的权限。\",\n                    \"Write\": \"可写\",\n                        \"Triage permissions plus read, clone and push to repositories.\": \"分级权限外加读取、克隆和推送到仓库。\",\n                    \"Maintain\": \"维护\",\n                        \"Write permissions plus manage issues, pull requests and some repository settings.\": \"可写权限外加管理议题、拉取请求和一些仓库设置。\",\n                    \"Admin\": \"管理员\",\n                        \"Full access to repositories including sensitive and destructive actions.\": \"对仓库的完全访问权限，包括敏感和破坏性操作。\",\n                        \"Modify Admin Role\": \"修改管理角色\",\n\n            \"Custom roles\": \"自定义角色\",\n                \"Create a role\": \"创建角色\",\n                \"Create custom roles with GitHub Enterprise\": \"使用 GitHub 企业版创建自定义角色\",\n                    \"Enterprise accounts offer organizations more granular control over permissions by allowing you to configure up to five custom repository roles. This enables greater control over who and how your users access code and data in your organization.\": \"企业账户允许配置最多五个自定义仓库角色，从而为企业提供更细粒度的权限控制。这样就能更好地控制组织内用户访问代码和数据。\",\n                \"Try GitHub Enterprise\": \"试用 GitHub 企业版\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/member_privileges\"] = { // 组织设置 - 成员权限\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 成员权限 /organizations/<org-login>/settings/member_privileges\n            \"Member repository permissions\": \"成员仓库权限\",\n                \"Base permissions\": \"基本权限\",\n                    \"Base permissions to the organization’s repositories apply to all members and excludes outside collaborators. Since organization members can have permissions from multiple sources, members and collaborators who have been granted a higher level of access than the base permissions will retain their higher permission privileges.\": \"组织仓库的基本权限适用于所有成员，不包括外部协作者。由于组织成员可以拥有多个来源的权限，已经被授予比基本权限更高的访问级别的成员和协作者将保留他们更高的权限。\",\n\n                    \"Organization member permissions\": \"组织成员的权限\",\n                        \"No permission\": \"无权限\",\n                            \"Members will only be able to clone and pull public repositories. To give a member additional access, you’ll need to add them to teams or make them collaborators on individual repositories.\": \"成员只能克隆和拉取公共仓库。要为成员提供额外的访问权限，您需要将他们添加到团队中，或者让他们成为单个仓库的协作者。\",\n                            // 对话框\n                                \"Change base permission to \\\"No permission\\\"\": \"将基本权限更改为 “无权限”\",\n                                \"You are about to change the base repository permission for this organization.\": \"您即将更改此组织仓库的基本权限。\",\n                                // [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"这可能会更改组织的 $1 个成员对其 $2 个仓库的权限。\"],\n                        \"Read\": \"只读\",\n                            \"Members will be able to clone and pull all repositories.\": \"成员将能够克隆和拉取所有仓库。\",\n                            // 对话框\n                                \"Change base permission to \\\"Read\\\"\": \"将基本权限更改为 “只读”\",\n                        \"Write\": \"可写\",\n                            \"Members will be able to clone, pull, and push all repositories.\": \"成员将能够克隆、拉取和推送所有仓库。\",\n                            // 对话框\n                                \"Change base permission to \\\"Write\\\"\": \"将基本权限更改为 “可写”\",\n                        \"Admin\": \"管理员\",\n                            \"Members will be able to clone, pull, push, and add new collaborators to all repositories.\": \"成员将能够克隆、拉取、推送和向所有仓库添加新的协作者。\",\n                            // 对话框\n                                \"Change base permission to \\\"Admin\\\"\": \"将基本权限更改为 “管理员”\",\n                        // 顶部提醒\n                            \"Base repository permission removed.\": \"基本仓库权限已被删除。\",\n                            \"Base repository permission updated to \\\"Read\\\".\": \"基本仓库权限已更新为 “只读” 。\",\n                            \"Base repository permission updated to \\\"Write\\\".\": \"基本仓库权限已更新为 “可写” 。\",\n                            \"Base repository permission updated to \\\"Admin\\\".\": \"基本仓库权限已更新为 “管理员” 。\",\n                        \"Update in progress\": \"正在更新中\",\n                        \". Refresh to see if it’s done.\": \"。刷新看看是否完成。\",\n\n                \"Repository creation\": \"仓库创建\",\n                    \"Members will be able to create only selected repository types. Outside collaborators can never create repositories.\": \"成员将只能创建选定类型的仓库。外部协作者永远不能创建仓库。\",\n                    \"Public\": \"公共\",\n                        \"Members will be able to create public repositories, visible to anyone.\": \"成员将能够创建任何人都可见的公共仓库。\",\n                        \"Why is this option disabled?\": \"为什么该选项被禁用？\",\n                    \"Private\": \"私有\",\n                        \"Members will be able to create private repositories, visible to organization members with permission.\": \"成员将能够创建私有仓库，对有权限的组织成员可见。\",\n                    // 顶部提醒\n                        \"Members can no longer create public or private repositories.\": \"成员不能再创建公共或私有仓库。\",\n                        \"Members can now create public repositories.\": \"成员现在可以创建公共仓库。\",\n                        \"Members can now create public and private repositories.\": \"成员现在可以创建公共和私有仓库。\",\n\n                \"Repository forking\": \"仓库复刻\",\n                    \"Allow forking of private repositories\": \"允许复刻私有仓库\",\n                        \"If enabled, forking is allowed on private and public repositories. If disabled, forking is only allowed on public repositories. This setting is also configurable per-repository.\": \"如果启用，则私有和公共仓库都允许复刻。如果禁用，则只允许复刻公共仓库。此设置也可以在每个仓库中进行配置。\",\n                    // 顶部提醒\n                        \"Repository forking setting updated!\": \"仓库复刻设置已经更新！\",\n                        \"Repository forking setting not updated. Please try again.\": \"仓库复刻设置不能更新。请重试。\",\n\n                \"Repository discussions\": \"仓库讨论\",\n                    \"Allow users with read access to create discussions\": \"允许具有读取权限的用户创建讨论\",\n                        // [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果启用，所有具有读取权限的用户都可以在 $1 的仓库中创建和评论讨论。\"],\n                        \"If disabled, discussion creation is limited to users with at least triage permission. Users with read access can still comment on discussions.\": \"如果禁用，讨论的创建仅限于至少具有分级权限的用户。具有读取权限的用户仍然可以对讨论发表评论。\",\n                    // 顶部提醒\n                        \"Users with read access to repositories can create new discussions.\": \"对仓库具有读取权限的用户可以创建新的讨论。\",\n                        \"Only users with at least triage access to repositories can create new discussions.\": \"只有至少对仓库有分级权限的用户才能创建新的讨论。\",\n\n                \"Projects base permissions\": \"项目基本权限\",\n                    \"Projects created by members will default to the elected role below.\": \"成员创建的项目将默认为下面选定的角色。\",\n\n                    \"No access\": \"无法访问\",\n                        \"Members will only be able to see projects that are made public. To give an organization member additional access, they can be added as part of a team or as a collaborator.\": \"成员只能看到公开项目。要赋予组织成员更多访问权限，可以将其添加为团队成员或协作者。\",\n                        // 对话框\n                            \"Change base permissions to \\\"No access\\\"\": \"将基本权限改为 “无法访问”\",\n                                \"You are about to change the base projects permission for this organization.\": \"您将更改该组织的基本项目权限\",\n                                \"This won't affect any existing projects.\": \"这不会影响任何现有项目\",\n                    // 只读\n                        \"Members can see projects.\": \"成员可以查看项目\",\n                        // 对话框\n                            \"Change base permissions to \\\"Read\\\"\": \"将基本权限改为 “只读”\",\n                    // 可写\n                        \"Members can see and make changes to projects.\": \"成员可以查看和修改项目\",\n                        // 对话框\n                            \"Change base permissions to \\\"Write\\\"\": \"将基本权限改为 “可写”\",\n                    // 管理员\n                        \"Members can see, make changes to, and add new collaborators to projects.\": \"成员可以查看和修改项目，并可为项目添加新的协助者。\",\n                        // 对话框\n                            \"You are about to change the base projects permission for this organization.\": \"您将更改该组织的基本项目权限\",\n                    // 顶部提醒\n                        \"Base permission updated to \\\"None\\\" for projects.\": \"项目的基本权限已更新为 “无”。\",\n                        \"Base permission updated to \\\"Read\\\" for projects.\": \"项目的基本权限已更新为 “只读”。\",\n                        \"Base permission updated to \\\"Write\\\" for projects.\": \"项目的基本权限已更新为 “可写”。\",\n                        \"Base permission updated to \\\"Admin\\\" for projects.\": \"项目的基本权限已更新为 “管理员”。\",\n\n                \"Pages creation\": \"页面创建\",\n                    \"Members will be able to publish sites with only the selected access controls.\": \"成员将能够发布仅只有选定的访问控制的站点。\",\n                    // \"Public\": \"公共\",\n                        \"Members will be able to create public sites, visible to anyone.\": \"成员将能够创建任何人都可见的公共站点。\",\n                    // \"Private\": \"私有\",\n                        \"Members will be able to create private sites, visible to anyone with permission.\": \"成员将能够创建私有站点，对任何有权限的人可见。\",\n                    // 顶部提醒\n                        \"Projects settings updated for this organization.\": \"该组织的项目设置已经更新。\",\n\n                \"Integration access requests\": \"集成访问请求\",\n                    \"Allow integration requests from outside collaborators\": \"允许来自外部协作者的集成请求\",\n                        \"Outside collaborators will be able to request access for GitHub or OAuth apps to access this organization and its resources.\": \"外部协作者将能够为 GitHub 或 OAuth 应用申请访问该组织及其资源的权限。\",\n                        // 顶部提醒\n                            \"Outside collaborators can no longer request third party access.\": \"外部协作者无法再请求第三方访问。\",\n                            \"Outside collaborators can now request third party access.\": \"外部协作者现在可以请求第三方访问。\",\n\n                \"Admin repository permissions\": \"管理员仓库权限\",\n                    \"Repository visibility change\": \"仓库可见性更改\",\n                        \"Allow members to change repository visibilities for this organization\": \"允许成员更改此组织的仓库可见性\",\n                            \"If enabled, members with admin permissions for the repository will be able to change its visibility. If disabled, only organization owners can change repository visibilities.\": \"如果启用，对仓库有管理权限的成员将能够更改其可见性。如果禁用，只有组织所有者可以更改仓库的可见性。\",\n                        // 顶部提醒\n                            \"Members can now change repository visibility.\": \"成员现在可以更改仓库可见性。\",\n                            \"Members can no longer change repository visibility.\": \"成员不能再更改仓库可见性。\",\n\n                    \"Repository deletion and transfer\": \"仓库的删除和转让\",\n                        \"Allow members to delete or transfer repositories for this organization\": \"允许成员删除或转让此组织的仓库\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete or transfer\": \"如果启用，对仓库有管理权限的成员将能够删除或转让\",\n                            \"public\": \"公共\",\n                            \"private\": \"私有\",\n                            \"repositories. If disabled, only organization owners can delete or transfer repositories.\": \"仓库。如果禁用，只有组织所有者可以删除或转让仓库。\",\n                        // 顶部提醒\n                            \"Members can now delete or transfer repositories.\": \"成员现在可以删除或转让仓库。\",\n                            \"Members can no longer delete or transfer repositories.\": \"成员不能再删除或转让仓库。\",\n\n                    \"Issue deletion\": \"议题删除\",\n                        \"Allow repository administrators to delete issues for this organization\": \"允许仓库管理员删除此组织的议题\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete issues. If disabled, only organization owners can delete issues.\": \"如果启用，对仓库有管理权限的成员将能够删除议题。如果禁用，只有组织所有者可以删除议题。\",\n                            \"Learn more about allowing people to delete issues in your organization\": \"了解更多关于允许成员删除组织内议题的信息\",\n\n                        // 顶部提醒\n                            \"Members can now delete issues.\": \"成员现在可以删除议题。\",\n                            \"Members can no longer delete issues.\": \"成员不能再删除议题。\",\n\n                \"Member team permissions\": \"成员团队权限\",\n                    \"Team creation rules\": \"团队创建规则\",\n                        \"Allow members to create teams\": \"允许成员创建团队\",\n                            \"If enabled, any member of the organization will be able to create new teams. If disabled, only organization owners can create new teams.\": \"如果启用，组织的任何成员将能够创建新的团队。如果禁用，只有组织所有者可以创建新的团队。\",\n                    // 顶部提醒\n                        \"Members can now create teams.\": \"成员现在可以创建团队。\",\n                        \"Members can no longer create teams.\": \"成员不能再创建团队。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"这可能会更改组织的 $1 个成员对其 $2 个仓库的权限。\"], // 组织 基本权限更改\n        [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果启用，所有具有读取权限的用户都可以在 $1 的仓库中创建和评论讨论。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/teams\"] = { // 组织设置 - 团队讨论\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 团队讨论 /organizations/<org-login>/settings/teams\n            \"Team discussions provide a place for a team to have conversations that span across projects or repositories and that don’t belong in an issue or a pull request.\": \"团队讨论为团队提供了一个进行跨项目或仓库，且不属于议题或拉取请求的对话的场所。\",\n            \"Enable team discussions for this organization\": \"为此组织启用团队讨论\",\n                \"This allows members to start discussions in any team in the\": \"这允许成员在任何团队中开始讨论，在\",\n            \"organization.\": \"组织中。\",\n\n            \"Looking for\": \"寻找\",\n            \"Organization Discussions\": \"组织讨论\",\n            \"? Go to\": \"？转到\",\n            \"Organization Discussions settings.\": \"组织讨论设置。\",\n\n            // 顶部提醒\n                \"Team discussions enabled for this organization.\": \"该组织启用了团队讨论。\",\n                \"Team discussions disabled for this organization.\": \"该组织禁用了团队讨论。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/import-export\"] = { // 组织设置 - 导入/导出\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Import/Export 导入/导出 - 占位账户 /organizations/<org-login>/settings/import-export\n            \"Mannequins\": \"占位账户\",\n            \"Search mannequins by login or email...\": \"通过登录名或电子邮箱地址搜索占位账户…\",\n            \"There are no mannequins in this organization\": \"该组织尚无占位账户\",\n            \"Mannequins represent authors of imported contributions. They do not have profile pages and cannot sign in. Their contributions can be reattributed to other members of your organization.\": \"占位账户代表导入贡献的作者。他们没有个人资料页，也不能登录。他们的贡献可以重新归属于您组织的其他成员。\",\n\n        // Import/Export 导入/导出 - 归属邀请 /organizations/<org-login>/settings/import-export/attribution-invitations\n            \"Attribution Invitations\": \"归属邀请\",\n            \"Below are the mannequin reattribution invitations that have been sent within this organization. If the state is \\\"invited,\\\" then the user has not yet replied; if it is \\\"completed,\\\" then the user has accepted and their contributions have been reattributed, and if it is \\\"rejected,\\\" then the user opted not to be credited for that mannequin's contributions.\": \"以下是该组织内已发送的占位账户重新归属的邀请。如果状态是 “已邀请”，则用户尚未回复；如果是 “已完成”，那么用户已经接受并且他们的贡献已经被重新归属；如果是 “已拒绝”，那么用户选择不记入该占位账户的贡献。\",\n            \"No attribution invitations have been sent\": \"尚未发出归属邀请\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/blocked_users\"] = { // 组织设置 - 黑名单\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Blocked users 黑名单 /organizations/<org-login>/settings/blocked_users\n            \"Block a user\": \"拉黑用户\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用户可以防止所有仓库中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打开或评论议题或拉取请求\",\n            \"starring, forking, or watching\": \"标星、复刻、关注\",\n            \"adding or editing wiki pages\": \"添加或编辑 Wiki 页面\",\n\n            \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n                \"Learn more about blocking a user\": \"了解更多关于拉黑用户的信息\",\n            \"Block options\": \"拉黑选项\",\n                \"For 1 day\": \"1 天\",\n                \"For 3 days\": \"3 天\",\n                \"For 7 days\": \"7 天\",\n                \"For 30 days\": \"30 天\",\n                \"Until I unblock them\": \"直到取消拉黑\",\n            \"Block user\": \"拉黑用户\",\n            \"You have not blocked any users.\": \"您还没有拉黑任何用户。\",\n            \"Unblock\": \"取消拉黑\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/interaction_limits\"] = { // 组织设置 - 互动限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Interaction limits 互动限制 /organizations/<org-login>/settings/interaction_limits\n            \"Temporary interaction limits\": \"临时互动限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time. Users who are members of this organization will not be affected by these limits.\": \"在配置的时间段内，可临时限制哪些外部用户与您的仓库互动（评论、打开议题或创建拉取请求）。作为该组织成员的用户将不受这些限制的影响。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用于在激烈讨论期间，强制进入 “冷静” 期或防止不必要的互动。\",\n            \"Interaction limits may already exist in your organization's\": \"互动限制可能已经存在于您的组织\",\n            \"public repositories\": \"公开仓库\",\n            \". Any changes here will override those limits.\": \" 的设置中。此处的全局设置将覆盖那些仓库的局部设置。\",\n            \"Limit to existing users\": \"仅限现有用户\",\n                \"Users that have recently created their account will be unable to interact with this organization's repositories.\": \"最近创建账户的用户将无法与您组织的仓库互动。\",\n            \"Limit to prior contributors\": \"仅限于先前的贡献者\",\n                \"Users that have not previously committed to the default branch of a repository in this organization will be unable to interact with that repository.\": \"以前从未提交到您组织某个仓库默认分支的用户将无法与该仓库互动。\",\n            \"Limit to repository collaborators\": \"仅限仓库协作者\",\n                \"Users that are not collaborators of a repository in this organization will not be able to interact with that repository.\": \"不是您组织某个仓库的协作者将无法与该仓库互动。\",\n            \"New users\": \"新用户\",\n            \"Users\": \"用户\",\n            \"Contributors\": \"贡献者\",\n            \"Collaborators\": \"协作者\",\n            \"Organization members\": \"组织成员\",\n            // 交互限制时间 下拉菜单\n            \"Enable interaction limits for:\": \"启用交互限制：\",\n            \"24 hours\": \"24 小时\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 个月\",\n            \"6 months\": \"6 个月\",\n            // 顶部提醒\n            \"User interaction limit settings saved.\": \"用户交互限制设置已保存。\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/code_review_limits\"] = { // 组织设置 - 代码审查限制\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码审查限制 /organizations/<org-login>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in public repositories within this organization.\": \"限制该组织内允许批准或请求更改公共仓库中拉取请求的用户。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"代码审查限制可能已经由各个仓库指定。此处的任何更改都将覆盖这些限制，直至取消设置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有仓库代码审查限制都是单独管理的。启用限制，只允许明确授予每个仓库访问权的用户提交 “批准” 或 “请求更改” 的审查。删除限制，允许所有用户提交拉取请求审查。所有能够提交评论拉取请求审查的用户将继续能够这样做。\",\n            \"Limit reviews on all repositories\": \"限制对所有仓库的审查\",\n            \"Remove review limits from all repositories\": \"取消对所有仓库的审查限制\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/moderators\"] = { // 组织设置 - 版主\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Moderators 版主 /organizations/<org-login>/settings/moderators\n            \"You can add organization members or teams as moderators for your organization. Moderators can block and unblock users from the organization, minimize comments, and manage interaction limits for all public organization repositories.\": \"您可以将组织成员或团队添加为组织的主版主。版主可以阻止和解除对该组织用户的阻止、最小化评论、并管理所有公共组织仓库的交互限制。\",\n\n            \"You may add up to\": \"您最多可以添加\",\n            \"members or teams as moderators.\": \"成员或团队作为版主。\",\n            \"Add a member or team\": \"添加成员或团队\",\n            \"You don't have any moderators for this organization.\": \"该组织尚无任何版主\",\n\n            // [/Successfully added (@[^\\n]+) as a moderator/, \"已成功将 $1 添加为版主\"],\n            // [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功将 $1 的版主身份移除\"],\n            \"Remove moderator\": \"移除版主\",\n\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Successfully added (@[^\\n]+) as a moderator/, \"已成功将 $1 添加为版主\"],\n        [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功将 $1 的版主身份移除\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/repository-defaults\"] = { // 组织设置 - 仓库 / 默认值\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库默认分支 /organizations/<org-login>/settings/repository-defaults\n            \"Repository default branch\": \"仓库默认分支\",\n                \"Choose the default branch for new repositories in this organization. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"为该组织中的新仓库选择默认的分支。由于工作流程的不同，或者由于您的集成仍然需要 “master” 作为默认分支名，您可能想改变默认名称。您可以随时改变单个仓库的默认分支名称。\",\n                \"Learn more about default branches.\": \"了解更多关于默认分支的信息。\",\n\n            // 顶部提醒\n                // [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中创建的新仓库将使用 main 作为其默认分支。\"],\n\n            \"Commit signoff\": \"提交签署\",\n                \"Choose whether repositories will require contributors to sign off on commits they make through GitHub's web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"选择仓库是否要求贡献者签署通过 GitHub 的 Web 界面所做的提交。签署是贡献者确认他们的提交符合仓库条款的一种方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"开发者来源证书（DCO）\",\n                \"Learn more about signing off on commits\": \"了解更多关于签署提交的信息\",\n                \"All repositories\": \"所有仓库\",\n                    \"Require signoff on web-based commits for all repositories in this organization\": \"要求对该组织中所有仓库的基于 Web 的提交进行签署\",\n                \"No policy\": \"无政策\",\n                    \"Each repository chooses whether to require signoff on web-based commits\": \"每个仓库选择是否要求对基于 Web 的提交进行签署\",\n\n                // 顶部提醒\n                    \"Commit signoff settings were updated.\": \"提交签署设置已更新。\",\n\n            \"Repository labels\": \"仓库标签\",\n                \"Set the labels that will be included when a new repository is created in this organization.\": \"设置在此组织中创建新的仓库时将包含的标签。\",\n                \"Learn more about managing default labels for your organization.\": \"了解更多关于为您的组织管理默认标签的信息。\",\n            \"New label\": \"新建标签\",\n                \"Label preview\": \"标签预览\",\n                \"Label name\": \"标签名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可选）\",\n                \"Color\": \"颜色\",\n                    \"Get a new color\": \"获得新颜色\",\n                    \"Choose from default colors:\": \"从默认颜色中选择：\",\n                \"Create label\": \"创建标签\",\n            // 删除提醒\n            \"Are you sure? Deleting a label will remove as a default, and no future repositories will receive this label when created.\": \"您确定吗？删除标签将作为默认值删除，以后的仓库在创建时不会收到此标签。\",\n\n            \"label\": \"个标签\",\n            \"labels\": \"个标签\",\n            \"bug\": \"BUG\",\n                \"Something isn't working\": \"有些东西不工作\",\n            \"dependencies\": \"依赖性\",\n                \"Pull requests that update a dependency file\": \"更新一个依赖文件的拉取请求\",\n            \"documentation\": \"文档\",\n                \"Improvements or additions to documentation\": \"文档的改进或补充\",\n            \"duplicate\": \"重复\",\n                \"This issue or pull request already exists\": \"这个议题或拉取请求已经存在\",\n            \"enhancement\": \"增强\",\n                \"New feature or request\": \"新功能或请求\",\n            \"good first issue\": \"好的首发议题\",\n                \"Good for newcomers\": \"适合新人\",\n            \"help wanted\": \"需要帮助\",\n                \"Extra attention is needed\": \"需要特别关注\",\n            \"invalid\": \"无效\",\n                \"This doesn't seem right\": \"这似乎不对\",\n            \"question\": \"问题\",\n                \"Further information is requested\": \"要求提供更多信息\",\n            \"wontfix\": \"不会修复\",\n                \"This will not be worked on\": \"这将不会被处理\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中创建的新仓库将使用 main 作为其默认分支。\"],\n        [/Your default branch name will be ([^ ]+)/, \"您的默认分支名称将是 $1\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/topics\"] = { // 组织设置 - 仓库 /仓库主题\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 仓库主题 /orgs/<org-login>/topics\n            \"No repositories\": \"尚无仓库\",\n            \"A code repository designed to show the best GitHub has to offer.\": \"旨在展示 GitHub 必须提供的最佳代码仓库。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/([^ ]+) repositories you contribute to/, \"您贡献的 $1 仓库\"],\n        [/There are no repositories in ([^ ]+) that you’ve contributed to and that you can set topics on./, \"$1  中没有您贡献过的并且可以设置主题的仓库。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/codespaces\"] = { // 组织设置 - 仓库 /代码空间\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n        \"To manage Codespace ownership settings, please\": \"要管理代码空间所有权设置，请\",\n        \"upgrade your plan\": \"升级您的计划\",\n        \"to enable your organization.\": \"以启用您的组织。\",\n\n        \"Codespaces access\": \"代码空间访问\",\n            \"Manage access to GitHub Codespaces for your organization's members on private and internal repositories. Codespaces are always available on public repositories.\": \"管理组织成员对私有和内部仓库中 GitHub 代码空间的访问权限。代码空间始终在公共仓库中可用。\",\n\n            \"By enabling Codespaces, you agree to GitHub’s\": \"启用代码空间即表示您同意 GitHub 的\",\n            \"additional products and features terms\": \"附加产品和功能条款\",\n            \"and approve of these terms on behalf of your organization.\": \"并代表您的组织批准这些条款。\",\n\n            \"Disabled\": \"禁用\",\n                \"Disable GitHub Codespaces for all organization owned private and internal repositories\": \"禁用所有组织拥有的私有和内部仓库的 GitHub 代码空间\",\n\n            \"Enable for specific members or teams\": \"为特定成员或团队启用\",\n                \"Enable GitHub Codespaces for specific organization members or teams on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为特定组织成员或团队启用 GitHub 代码空间\",\n\n            \"Enable for all members\": \"为所有成员启用\",\n                \"Enable GitHub Codespaces for all organization members on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为所有组织成员启用 GitHub 代码空间\",\n\n            \"Enable for all members and outside collaborators\": \"为所有成员和外部协作者启用\",\n                \"Enable GitHub Codespaces for all organization members and outside collaborators on all organization owned private and internal repositories\": \"在所有组织拥有的私有和内部仓库上为所有组织成员和外部协作者启用 GitHub 代码空间\",\n\n        \"Codespace ownership\": \"代码空间所有权\",\n            \"Control who owns codespaces created by your organization’s members on organization owned repositories. Codespace ownership dictates who is billed for usage, whose policies apply, and where audit logs are sent.\": \"控制谁拥有组织成员在组织拥有的仓库上创建的代码空间。代码空间所有权决定了由谁来支付使用费、适用谁的策略以及审计日志发送到何处。\",\n\n            \"Organization ownership\": \"组织所有权\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the organization\": \"组织成员在组织仓库上创建的所有代码空间都归组织所有\",\n\n            \"User ownership\": \"用户所有权\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the creating member\": \"组织的成员在组织仓库上创建的所有代码空间都归创建成员所有\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/copilot\"] = {  // 组织设置 - GitHub Copilot\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 组织设置 - GitHub Copilot /orgs/<org-login>/settings/copilot\n            \"The AI powered pair programmer for your organization. Once you complete onboarding, you’ll have the ability to manage policies and control which users or teams will have access to\": \"为您的组织提供人工智能助理程序员。完成入职后，您将能够管理策略并控制哪些用户或团队有权访问组织内的\",\n            \"inside your organization.\": \"。\",\n\n            \"Enable GitHub Copilot\": \"启用 GitHub Copilot\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/actions\"] = { // 组织设置 - 操作\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 操作页面 /organizations/<org-login>/settings/actions\n            \"General actions permissions\": \"常规操作权限\",\n\n            \"Policies\": \"政策\",\n                \"Choose which repositories are permitted to use GitHub Actions.\": \"选择允许哪些仓库使用 GitHub Actions。\",\n                \"All repositories\": \"所有仓库\",\n                    \"Actions can be run by any repository in the organization\": \"操作可以由组织中的任何仓库运行\",\n                \"Selected repositories\": \"选定的仓库\",\n                    \"Actions can only be run by specifically selected repositories\": \"操作只能由特定选择的仓库运行\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                    \"selected repository\": \"个选定的仓库\",\n                    \"selected repositories\": \"个选定的仓库\",\n                    // 对话框\n                        \"Select the organization repositories that may use Actions.\": \"选择可以使用操作的组织仓库。\",\n                        \"Filter repositories\": \"筛选仓库\",\n                        \"No repositories found.\": \"未找到仓库。\",\n                        \"Select repositories\": \"选定仓库\",\n                \"Disabled\": \"禁用\",\n                    \"GitHub Actions is disabled for all repositories in the organization\": \"对组织中的所有仓库禁用 GitHub Actions\",\n\n                \"Allow all actions and reusable workflows\": \"允许所有操作和可复用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可复用的工作流程，而不管它是谁创作的或在哪里定义的。\",\n                // [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n                //     [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 组织内的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n                // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n                //     [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定条件的操作或可复用的工作流程，以及在 $1 组织内的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n                    \"Learn more about allowing specific actions and reusable workflows to run.\": \"了解更多关于允许运行特定操作和可复用的工作流程的信息。\",\n                    \"Allow actions created by GitHub\": \"允许由 GitHub 创建的操作\",\n                    \"Allow actions by Marketplace\": \"允许来自市场的操作，\",\n                    \"verified creators\": \"由经验证的创建者创建\",\n                    \"Allow specified actions and reusable workflows\": \"允许指定的操作和可复用的工作流程\",\n                    \"Applies to\": \"适用于\",\n                    \"repositories only\": \"仓库，仅仅\",\n                        // \"Workflows using these actions in private repositories will fail.\": \"在私有仓库中使用这些操作的工作流程将失败。\",\n                        // \"Using a list of specific actions is only supported for public repositories on your current GitHub plan. To have this list apply to private repositories,\": \"只有当前 GitHub 计划中的公共仓库才支持使用特定操作列表。要将此列表应用于私有仓库，\",\n                        // \"upgrade your plan\": \"升级您的计划\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"输入以逗号分隔的操作和可复用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允许使用通配符、标签和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可复用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整个组织或仓库的示例：\",\n\n                // 顶部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n\n            // 运行器\n                \"Choose which repositories are allowed to create repository-level self-hosted runners.\": \"选择哪些仓库允许创建仓库级自托管运行器。\",\n                // 私有仓库\n                    \"Repo-level self-hosted runners can be used by any repository in the organization\": \"组织内的任何仓库都可以使用仓库级自托管运行器\",\n                // 选定的仓库\n                    \"Repo-level self-hosted runners can be used by specifically selected repositories\": \"选定的仓库允许使用仓库级自托管运行器\",\n                    \"Select the organization repositories that may use repository-level self-hosted runners.\": \"选择组织中允许使用仓库级自托管运行器的仓库。\",\n                // 禁用\n                    \"Repo-level self-hosted runners are disabled for all repositories in the organization\": \"组织中的所有仓库都禁用仓库级别的自托管运行器\",\n\n                // 顶部提醒\n                    \"Repo-level self-hosted runners settings changed.\": \"仓库级别的自托管运行器设置已更改。\",\n\n            \"Artifact and log retention\": \"工件和日志保留\",\n                \"Choose the default repository settings for artifacts and logs.\": \"选择工件和日志的默认仓库设置。\",\n                \"days\": \"天\",\n                \"You can set a maximum limit of\": \"您最多可以设置为\",\n                \"days.\": \"天。\",\n                \"Learn more about the artifact and log retention policy.\": \"了解更多关于工件和日志保留政策的信息。\",\n                \"Duration must be 90 or less\": \"必须为 1-90\",\n                \"Duration must be 1 or more.\": \"必须为 1-90\",\n\n            \"Fork pull request workflows from outside collaborators\": \"从外部协作者，复刻拉取请求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"选择哪些外部协作者的子集需要批准才能对他们的拉取请求运行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"了解更多关于批准来自公共复刻的工作流运行的信息。\",\n                \"Require approval for first-time contributors who are new to GitHub\": \"要求对首次加入 GitHub 的贡献者进行批准审查\",\n                    \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近创建 GitHub 账户的首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Require approval for first-time contributors\": \"要求对首次贡献者进行批准审查\",\n                    \"Only first-time contributors will require approval to run workflows.\": \"只有首次贡献者才需要获得批准才能运行工作流程。\",\n                \"Require approval for all outside collaborators\": \"要求对所有外部协作者进行批准审查\",\n                    \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部协作者将始终需要批准才能在他们的拉取请求上运行工作流程。\",\n                // 顶部提醒\n                    \"Fork pull request outside collaborators settings saved.\": \"外部协作者复刻拉取请求设置已保存。\",\n\n            \"Fork pull request workflows in private repositories\": \"私有仓库的复刻拉取请求工作流程\",\n                \"These settings apply to private repositories. Repository administrators will only be able to change the settings that are enabled here.\": \"这些设置适用于私有仓库。仓库管理员只能改变这里启用的设置。\",\n                \"Run workflows from fork pull requests\": \"从复刻拉取请求运行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"这告诉 Actions 运行工作流程，来自仓库复刻的拉取请求。请注意，这样做将使这些复刻的维护者有能力在源码库上使用具有读取权限的令牌。\",\n                    \"Send write tokens to workflows from fork pull requests.\": \"从复刻拉取请求，发送可写令牌到工作流程\",\n                        \"This tells Actions to send tokens with\": \"这告诉 Actions 发送令牌\",\n                        \"write\": \"写入\",\n                        \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"权限到工作流程，来自仓库复刻的拉取请求。请注意，这样做将授予这些复刻的维护者\",\n                        \"permissions against the source repository.\": \"权限，针对源仓库。\",\n                    \"Send secrets and variables to workflows from fork pull requests.\": \"从复刻拉取请求，发送机密和变量到工作流程\",\n                        \"This tells Actions to send repository secrets and variables to workflows from pull requests originating from repository forks.\": \"这告诉 Actions 发送仓库机密和变量到工作流程，来自仓库复刻的拉取请求。\",\n                    \"Require approval for fork pull request workflows.\": \"要求批准复刻 拉取请求工作流程。\",\n                        \"Fork pull requests from users without write access will require approval to run workflows.\": \"来自没有写入权限的用户的复刻拉取请求需要获得批准才能运行工作流程。\",\n                // 顶部提醒\n                    \"Fork pull request workflow settings saved.\": \"复刻拉取请求工作流程设置已保存。\",\n\n            \"Workflow permissions\": \"工作流程权限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this organization. You can specify more granular permissions in the workflow using YAML.\": \"在组织中运行工作流程时，选择授予 GITHUB_TOKEN 的默认权限。您可以使用 YAML 在工作流程中指定更细化的权限。\",\n                \"Learn more about managing permissions.\": \"了解更多关于管理权限的信息。\",\n\n                \"Repository administrators will only be able to change the default permissions to a more restrictive setting.\": \"仓库管理员只能将默认权限改为更严格的设置。\",\n                    \"Read and write permissions\": \"读取和写入权限\",\n                        \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在仓库中对所有作用域具有读和写的权限。\",\n                    \"Read repository contents and packages permissions\": \"读取仓库的内容和软件包的权限\",\n                        \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在仓库中仅对内容和软件包作用域具有只读的权限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"选择 GitHub Actions 是否可以创建拉取请求或提交批准拉取请求审查。\",\n                    \"Allow GitHub Actions to create and approve pull requests\": \"允许 GitHub Actions 创建和批准拉取请求\",\n                        \"This controls whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"这控制 GitHub Actions 是否可以创建拉取请求或提交批准的拉取请求审查。\",\n                    // 顶部提醒\n                        \"Default workflow permissions settings saved.\": \"默认工作流程权限设置已保存。\",\n\n            \"Required workflows\": \"所需的工作流程\",\n                \"Add workflow\": \"添加工作流\",\n                \"Set required workflows to run in your organization’s repositories. These workflows will run alongside the repository workflows and branch merging will be blocked until the required checks succeed.\": \"设置所需的工作流程，在您的组织的仓库中运行。这些工作流程将与仓库的工作流程一起运行，分支合并将被阻止，直到所需的检查成功。\",\n                \"Learn more about required workflows.\": \"了解更多关于所需工作流程的信息。\",\n                \"There are no required workflows in this organization.\": \"此组织中尚无所需的工作流程。\",\n\n        // 运行器页面 /organizations/<org-login>/settings/actions/runners\n            \"Includes all runners across self-hosted and GitHub-hosted runners.\": \"包括所有自托管和 GitHub 托管的运行器。\",\n\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows. Runners added to this organization can be used to process jobs in multiple repositories in your organization.\": \"托管您自己的运行器，并定制用于在您的 GitHub Actions 工作流程中运行作业的环境。添加到该组织的运行器可以用来处理您的组织中的多个仓库的工作。\",\n            \"Learn more about self-hosted runners\": \"了解更多关于自托管运行器的信息\",\n\n            \"Search runners\": \"搜索运行器\",\n            \"New runner\": \"创建运行器\",\n                \"New self-hosted runner\": \"新建自托管运行器\",\n                    \"Bring your own infrastructure\": \"自备基础设施\",\n                \"New GitHub-hosted runner\": \"新建 GitHub 托管运行器\",\n                    \"Pay-as-you-go, customizable, secure, scaled &\": \"即用即付、可定制、安全、可扩展并\",\n                    \"managed by GitHub\": \"由 GitHub 管理\",\n                \"Only available on paid Team or Enterprise plans\": \"仅适用于付费团队或企业计划\",\n\n            \"There are no runners configured\": \"暂无设置运行器\",\n            \"Learn more about using runners\": \"了解更多关于使用运行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服务器上运行操作的信息。\",\n\n            \"Standard GitHub-hosted runners\": \"标准 GitHub 托管运行器\",\n            \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型运行器。\",\n            \"Idle\": \"空闲\",\n            \"Active\": \"活跃\",\n            \"Offline\": \"离线\",\n            // [/(\\d+) active jobs?/ ,\"$1 个活跃的工作\"]\n\n        // 由 GitHub 托管的运行器 /organizations/<org-login>/settings/actions/hosted-runners\n            \"/ GitHub-hosted runners\": \"/ GitHub 托管运行器\",\n            \"All jobs usage\": \"所有工作的使用情况\",\n            \"To increase your concurrency limit, upgrade your\": \"要增加您的并发限制，请升级您的\",\n            \"GitHub plan.\": \"GitHub 计划。\",\n\n            \"Labels\": \"标签\",\n\n            \"Active jobs\": \"活跃的工作\",\n            \"There are currently no running jobs\": \"目前没有正在运行的工作\",\n            \"Add `\": \"添加 `\",\n            \"` to your workflow's YAML to send jobs to GitHub-hosted runners.\": \"`到您的工作流程的YAML中，以发送作业到 GitHub 托管的运行器。\",\n\n        // 创建运行器页面 /organizations/<org-login>/settings/actions/runners/new\n            \"/ Create self-hosted runner\": \"/ 创建自托管运行器\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一个自托管运行器需要您下载、配置并执行 GitHub Actions 运行器。下载并配置 GitHub Actions 运行器 后，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服务条款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企业服务条款\",\n                \", as applicable.\": \"，如适用。\",\n            \"Runner image\": \"运行器镜像\",\n            \"Architecture\": \"架构\",\n            \"Download\": \"下载\",\n            // win 64\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我们建议在 “\\\\actions-runner” 下配置运行器。这将有助于避免与 Windows 上的服务标识文件夹权限和长路径限制相关的议题。\",\n            // macOS-arm64\n            \"macOS-arm64 runners are currently in pre-release status and subject to change.\": \"macOS-arm64 的运行器目前处于预发布状态，可能会有变化。\",\n            \"Configure\": \"设置\",\n            \"Using your self-hosted runner\": \"使用您的自托管运行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"关于配置、运行或关闭运行器的其他细节，请查看我们的\",\n            \"product docs\": \"产品文档\",\n\n        // 运行器组 /organizations/<org-login>/settings/actions/runner-groups\n            \"Control access to your runners by specifying the repositories that are able to use your shared organization runners. New runners will be automatically assigned to the default group if no other group is specified. Upgrade to an Enterprise plan to create groups.\": \"通过指定能够使用您的共享组织运行器的仓库来控制对运行器的访问。如果没有指定其他组，新运行器将自动分配到默认组。升级到企业计划以创建组。\",\n\n            \"Search runner groups\": \"搜索运行器组\",\n            \"New runner group\": \"创建运行器组\",\n\n            \"Group\": \"组\",\n            \"Default\": \"默认\",\n                \"This group cannot be deleted and new runners will be automatically assigned to this group if no other group is specified.\": \"该组不能被删除，如果没有指定其他组，新的运行器将被自动分配到该组。\",\n                \"All repositories, excluding public repositories\": \"所有仓库，不包括公共仓库\",\n\n        // 缓存 /organizations/<org-login>/settings/actions/caches\n            \"Caches\": \"缓存\",\n            \"You can use caches for dependencies and other commonly reused files to speed up your workflows. The data on this page have at least 5 minutes of latency.\": \"您可以对依赖项和其他经常重复使用的文件的缓存来加快您的工作流程。此页面上的数据至少有 5 分钟的延迟。\",\n            \"Learn more about caches\": \"了解更多关于缓存的信息\",\n\n            \"Search repositories\": \"搜索仓库\",\n\n            \"Sort:\": \"排序：\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n\n            \"No repository uses caches\": \"尚无仓库使用缓存\",\n            \"Nothing has been cached by workflows running in any repositories of this organization.\": \"该组织任何仓库中运行的工作流程都未缓存任何内容。\",\n            \"Learn more about caching\": \"了解更多关于缓存\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依赖关系和构建输出以改善工作流程执行时间的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允许 $1 的操作和可复用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 组织内的仓库中定义的任何操作或可复用的工作流程。\"], // 操作页面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允许 $1，并选择非 $2、操作和可复用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定条件的操作或可复用的工作流程，以及在 $1 组织内的仓库中定义的操作或可复用的工作流程。\"], // 操作页面\n        [/(\\d+) active jobs?/ ,\"$1 个活跃的工作\"], // settings/actions/runners\n        [/(\\d+) caches?/, \"$1 项缓存\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/discussions\"] = { // 组织设置 - 讨论\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 讨论 /organizations/<org-login>/settings/discussions\n            \"Discussions for your organization\": \"您组织的讨论\",\n            \"Setting up Discussions for your organization will allow you to broadcast updates, answer questions, and hold conversations for the entire organization.\": \"为您的组织设置 “讨论”，将您能够为整个组织广播更新、回答问题和举行对话。\",\n            \"Enable discussions for this organization\": \"启用组织的讨论功能\",\n\n            \"Choose a source repository that will host the discussions.\": \"选择承载讨论的源码库。\",\n                \"All discussions on the source repository will be surfaced to the organization Discussions tab.\": \"源码库上的所有讨论都将显示在组织讨论选项卡中。\",\n                \"Permissions from the repository will be applied to the organization Discussions. By default, all members of the organization will be able to create and comment on discussions.\": \"来自仓库的权限将应用于组织讨论。默认情况下，组织的所有成员都可以创建讨论并发表评论。\",\n                \"Members can now share updates or ask questions to the entire organization.\": \"成员现在可以向整个组织共享更新或提问。\",\n                \"For more information, see our documentation.\": \"有关更多信息，请参阅我们的文档。\",\n\n                \"Choose a repository\": \"选择仓库\",\n                \"Search for a repository\": \"搜索仓库\",\n\n            // 提醒\n                \"Organization discussions has been set up!\": \"组织讨论已经建立！\",\n                \"View organization discussions\": \"查看组织讨论\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/projects\"] = { // 组织设置 - 计划 - 项目\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 项目 /organizations/<org-login>/settings/projects\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的项目可以帮助您组织和安排工作的优先级。您可以为特定的功能工作、全面的路线图、甚至是发布清单创建项目。\",\n            \"Enable Projects for the organization\": \"启用项目，为组织\",\n                \"This allows members to create projects for the\": \"允许成员创建项目，为\",\n                \"organization. Members can create projects to organize and track issues from any\": \"组织。成员可以创建项目来组织和跟踪来自任何\",\n                \"-owned repository.\": \"组织拥有的仓库。\",\n            \"Allow members to change project visibilities for this organization\": \"允许成员更改此组织的项目可见性\",\n                \"If enabled, members with admin permissions on a project can make the project public or private. If disabled, only organization owners can make the project public or private. All projects are private by default.\": \"如果启用，在项目上有管理权限的成员可以将项目设为公开或私有。如果禁用，则只有组织所有者可以将项目设为公开或私有。默认情况下，所有项目都是私有的。\",\n\n            \"Welcome to projects\": \"欢迎来到项目！\",\n                \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"项目表格的构造类似电子表格，为您提供了一个实时画布，可用于筛选、排序和分组问题及拉取请求。您可以使用自定义字段和保存的视图，根据自身需求对其进行定制。\",\n\n            \"Recommended templates\": \"推荐模板\",\n                \"Customize a selection of recommended project templates for this organization. These templates will be surfaced first when a member of the organization creates a new project.\": \"为此组织定制一系列推荐的项目模板。当组织成员创建新项目时，这些模板将首先出现。\",\n\n                \"Create your first GitHub project template\": \"创建第一个 GitHub 项目模板\",\n                    \"Templates can be used to quickly get started with a new project.\": \"模板可用于快速开始新项目。\",\n                \"New template\": \"新建模板\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/security\"] = { // 组织设置 - 身份验证安全\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 身份验证安全  /organizations/<org-login>/settings/security\n            \"Two-factor authentication\": \"双因素身份验证\",\n            \"Requiring an additional authentication method adds another level of security for your organization.\": \"要求额外的身份验证方法为您的组织增加了另一个级别的安全性。\",\n            // [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求对 $1 组织中的每个成员进行双因素身份验证。\"],\n            \"Members, billing managers, and outside collaborators who do not have two-factor authentication enabled for their personal account will be removed from the organization and will receive an email notifying them about the change.\": \"未为其个人账户启用双因素身份验证的成员、账单管理员和外部协作者将从组织中删除，并会收到一封电子邮件，通知他们有关更改。\",\n\n            // 顶部提醒\n                \"Enabling two-factor authentication requirement.\": \"启用双因素身份验证。\",\n                \"Disabled two-factor authentication requirement.\": \"禁用双因素身份验证。\",\n\n            \"SSH Certificate Authorities\": \"SSH 证书颁发机构\",\n            \"Provide SSH certificates that members can use to access your resources with Git\": \"提供 SSH 证书，成员可以用 Git 来访问您的资源\",\n            \"Try risk-free for 30 days\": \"无风险试用 30 天\",\n            \"learn more\": \"了解更多\",\n            \", or\": \"，或\",\n            \"dismiss this message.\": \"忽略此消息。\",\n\n            \"IP allow list\": \"IP 允许列表\",\n            \"An IP allow list lets your organization limit access based on the IP address a person is accessing from.\": \"IP 允许列表可让您的组织根据成员访问的 IP 地址来限制访问。\",\n            \"Restrict access to your organization's assets by configuring a list of IP addresses that are allowed to connect\": \"通过配置 IP 允许列表来限制对组织资产的访问\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求对 $1 组织中的每个成员进行双因素身份验证。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/security_analysis\"] = { // 组织设置 - 代码安全性与分析\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 代码安全性与分析 /organizations/<org-login>/settings/security_analysis\n            \"Try our new settings\": \"尝试我们的新设置\",\n            // 顶部提醒\n                \"Something went wrong. Please try again.\": \"出了些问题。请再试一次。\",\n\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your organization's repositories.\": \"安全和分析功能有助于确保您的仓库安全和更新。通过启用这些功能，您授予我们对您组织的仓库执行只读分析的权限。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"启用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞报告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允许您的社区向维护者和仓库所有者私下报告潜在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"了解更多关于私下漏洞报告的信息\",\n                \"Automatically enable for new public repositories\": \"为新公共仓库自动启用\",\n\n                // 对话框\n                    \"Enable private vulnerability reporting\": \"启用私下漏洞报告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞报告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将禁用 $1 组织中所有私有仓库上的私下漏洞报告。\"],\n                        \"Enable by default for new public repositories\": \"默认启用新公共仓库\",\n\n            \"Dependency graph\": \"依赖关系图\",\n                \"Understand your dependencies.\": \"了解您的依赖项。\",\n                \"Automatically enable for new private repositories\": \"为新私有仓库自动启用\",\n\n                // 对话框\n                    \"Enable dependency graph\": \"启用依赖关系图\",\n                        // [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的依赖关系图。\"],\n\n                    \"Disable dependency graph\": \"禁用依赖关系图\",\n                        // [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有私有仓库上的依赖关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\"],\n                        \"Enable by default for new private repositories\": \"默认为新私有仓库启用\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依赖关系的安全和最新\",\n                \"Learn more about Dependabot\": \"了解更多关于 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影响您的依赖关系的漏洞警报，并手动生成 Dependabot 拉取请求以解决这些漏洞。\",\n                        \"Configure alert notifications\": \"配置警报通知\",\n                    \"Automatically enable for new repositories\": \"为新仓库自动启用\",\n\n                // 对话框\n                    \"Enable Dependabot alerts\": \"启用 Dependabot 警报\",\n                        // [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即将启用 $1 组织中所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\"],\n\n                    \"Disable Dependabot alerts\": \"禁用 Dependabot 警报\",\n                        // [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\"],\n                        \"Enable by default for new repositories\": \"默认为新仓库启用\",\n\n                \"Dependabot rules\": \"Dependabot 规则\",\n                    \"Create your own custom rules and manage alert presets.\": \"创建您自己的自定义规则并管理警报预设。\",\n                    // [/(\\d+) rules? enabled/, \"$1 条规则启用\"],\n\n            \"Dependabot security updates\": \"Dependabot 安全更新\",\n                \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"启用后，Dependabot 会自动尝试打开拉取请求，以使用可用补丁解决每个打开的 Dependabot 警报。如果您想要更具体的配置选项，请将其禁用并使用\",\n                    // \"Dependabot rules\": \"Dependabot 规则\",\n\n                // 对话框\n                    \"Enable Dependabot security updates\": \"启用 Dependabot 安全更新\",\n                        // [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们还将为所有仓库开启他们。\"],\n\n                    \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                        // [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的 Dependabot 安全更新。\"],\n\n            \"Grouped security updates\": \"分组安全更新\",\n                \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"将解决可靠警报的所有可用更新分组为一个拉取请求（每个包管理器和需求清单目录）。该选项可被 dependabot.yml 中指定的组规则覆盖 -\",\n                \"learn more here\": \"在此了解更多\",\n\n                // 对话框\n                    \"Enable grouped security updates\": \"启用分组安全更新\",\n                        // [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot警报、Dependabot安全更新和 Dependabot安全更新，因此我们还将为所有仓库开启他们。\"],\n\n                    \"Disable grouped security updates\": \"禁用分组安全更新\",\n                        // [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的分组安全更新。\"],\n\n            \"Code scanning\": \"代码扫描\",\n                \"Identify vulnerabilities and errors with\": \"识别代码中的漏洞和错误，通过\",\n                \". Default CodeQL analysis will be set up on\": \"。默认的 CodeQL 分析将被设置为\",\n                \"eligible\": \"符合条件的\",\n                \"public repositories.\": \"公共仓库。\",\n\n                \"Recommend the extended query suite for repositories enabling default setup\": \"建议为启用默认设置的仓库提供扩展查询套件\",\n                    \"The extended query includes the default suite, plus lower severity and precision queries.\": \"扩展查询包括默认套件，以及较低严重性和精度的查询。\",\n\n                // 对话框\n                    \"Enable code scanning default setup\": \"启用代码扫描默认设置\",\n                        \"This will turn on CodeQL default setup for all eligible public repositories and repositories with GitHub Advanced Security enabled.\": \"这将为所有符合条件的公共仓库和已启用 GitHub 高级安全功能的仓库开启 CodeQL 默认设置。\",\n                        \"What makes a repository eligible for default setup?\": \"怎样的仓库符合默认设置？\",\n                        \"Query suites\": \"查询套件\",\n                            \"Group of queries\": \"查询套件\",\n                            \"to run against your code.\": \"针对您的代码运行。\",\n\n                            \"Default\": \"默认\",\n                                \"Recommended\": \"推荐\",\n                                \"CodeQL high-precision queries.\": \"CodeQL 高精度查询。\",\n                            \"Extended\": \"扩展\",\n                                \"Queries from the default suite, plus lower severity and precision queries.\": \"来自默认套件的查询，以及较低严重性和精度查询。\",\n                                \"Recommended by your organization. Queries from the default suite, plus lower severity and precision queries.\": \"由您的组织推荐。来自默认套件的查询，以及较低严重性和精度的查询。\",\n                        \"Code scanning uses GitHub Actions. Also, repositories where code scanning is already enabled will not be re-enabled.\": \"代码扫描使用 GitHub Actions。此外，已启用代码扫描的仓库将不会重新启用。\",\n\n                    \"Disable code scanning default setup\": \"禁用代码扫描默认设置\",\n                        \"This will disable CodeQL default setup on all repositories where it is enabled.\": \"这将禁用所有仓库的 CodeQL 默认设置。\",\n\n            \"Secret scanning\": \"机密扫描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有关检测到的机密、密钥或其他令牌的警报。\",\n\n                \"Push protection\": \"推送保护\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的机密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自动启用对添加到机密扫描的仓库进行扫描\",\n                    \"Add a resource link in the CLI and web UI when a commit is blocked\": \"当提交被阻止时，在 CLI 和 Web UI 中添加资源链接。\",\n                        \"Link will show in addition to\": \"显示链接和\",\n                        \"the message GitHub displays\": \"GitHub 显示的消息\",\n                        \"Save link\": \"保存链接\",\n\n                // 对话框\n                    \"Enable secret scanning for eligible repositories?\": \"启用适用仓库的机密扫描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"这将为所有公共仓库启用机密扫描。\",\n                        \"Enable for eligible repositories\": \"启用符合条件的仓库\",\n\n                    \"Disable secret scanning?\": \"禁用机密扫描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"这将禁用所有仓库的机密扫描。\",\n                        \"Disable secret scanning\": \"禁用机密扫描\",\n\n                    \"Enable push protection for eligible repositories?\": \"为符合条件的仓库启用推送保护？\",\n                        \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"这将为所有已启用秘密扫描的仓库启用推送保护。\",\n                        \"Push protection coverage\": \"推送保护覆盖范围\",\n                        \"Already enabled\": \"已启用\",\n                        \"Will be enabled\": \"将启用\",\n                        \"Not eligible\": \"不符合条件\",\n\n                    \"Disable push protection?\": \"禁用推送保护？\",\n                        // [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"这将在已启用推送保护的 $1 个仓库中禁用推送保护。\"],\n                        \"You can still enable push protection at the repository level.\": \"您仍然可以在仓库级别启用推送保护。\",\n                        \"Disable push protection\": \"禁用推送保护\",\n\n            \"Grant Dependabot access to private repositories\": \"授予 Dependabot 访问私有库权限\",\n                \"In order to update dependencies in your organization, Dependabot accesses dependencies in all public repositories and the selected private repositories. The contents of these repositories will be accessible to all users in your organization through Dependabot updates. Be sure that you want to share these repositories with everyone in your organization or consider using private registries instead.\": \"为了更新组织中的依赖项，Dependabot 会访问所有公共仓库和选定的私有库中的依赖项。您组织中的所有用户都可以通过 Dependabot 更新访问这些仓库内容。请确保您想与组织中的每个人共享这些仓库，或考虑使用私有注册表。\",\n                \"Add private repositories\": \"添加私有库\",\n                    \"Add a private repository\": \"添加私有库\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n\n            \"Security managers\": \"安全管理员\",\n                \"Grant a team permission to manage security alerts and settings across your organization. This team will also be granted read access to all repositories.\": \"授予团队管理整个组织的安全警报和设置的权限。该团队还将被授予对所有仓库的读取权限。\",\n                \"Learn more about these security privileges\": \"了解更多关于这些安全特权的信息\",\n                \"Search for teams\": \"搜索团队\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有私有仓库上的私下漏洞报告。\"],\n        [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即将启用 $1 组织中的所有私有仓库上的依赖项关系图。\"],\n        [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有私有仓库上的依赖项关系图。这也将禁用这些仓库的 Dependabot 警报和 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即将启用 $1 组织中所有仓库上的 Dependabot 警报。Dependabot 警报需要依赖项关系图，因此我们还将为所有仓库开启它。启用 Dependabot 警报时不会发送任何通知。\"],\n        [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即将禁用 $1 组织中所有仓库上的 Dependabot 警报。这也将禁用这些仓库的 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的 Dependabot 安全更新。Dependabot 安全更新需要依赖项关系图和 Dependabot 警报，因此我们还将为所有仓库开启他们。\"],\n        [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的 Dependabot 安全更新。\"],\n        [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即将启用 $1 组织中的所有仓库上的分组安全更新。分组安全更新需要依赖项关系图、Dependabot警报、Dependabot安全更新和 Dependabot安全更新，因此我们还将为所有仓库开启他们。\"],\n        [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即将禁用 $1 组织中的所有仓库上的分组安全更新。\"],\n        [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"这将在已启用推送保护的 $1 个仓库中禁用推送保护。\"],\n        [/(\\d+) rules? enabled/, \"$1 条规则启用\"],\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/dependabot_rules\"] = { // 组织设置 - Dependabot 规则\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Dependabot 规则 /organizations/<org-login>/settings/dependabot_rules\n            // 顶部提醒\n                \"Rule created.\": \"规则已创建。\", // 仓库规则\n                \"Rule saved. It may take a moment for this rule to be applied to matching alerts\": \"规则已保存。此规则可能需要一段时间才能应用于匹配的警报\",\n                \"Rule saved.\": \"规则已保存。\",\n                \"Rule was successfully deleted.\": \"规则已成功删除。\",\n\n            \"/ Dependabot rules\": \"/ Dependabot 规则\",\n            \"New rule\": \"新建规则\",\n            \"GitHub presets\": \"GitHub 预设\",\n                \"Managed by GitHub\": \"由 GitHub 管理\",\n                \"Edit curated rule\": \"编辑策划规则\",\n                \"Edit rule\": \"编辑规则\",  // 仓库规则\n                \"Dismiss low-impact alerts for development-scoped dependencies\": \"解除开发范围下依赖项的低影响警报\",\n                    \"In a developer (non-production or runtime) environment, these alerts are unlikely to be exploitable or have limited effect like slow builds or long-running tests.\": \"在开发人员（非生产或运行时）环境中，这些警报不太可能被利用，或者影响有限，例如缓慢的构建或长时间运行的测试。\",\n                    \"Learn more about this methodology.\": \"了解更多关于此方式的信息。\",\n            \"Repository rules\": \"仓库规则\", // 仓库规则\n            \"Organization rules\": \"组织规则\",\n                // [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n                \"Edit custom rule\": \"编辑自定义规则\",\n\n        // 新建规则 /organizations/<org-login>/settings/dependabot_rules/new\n            // 顶部警告\n                \"The following inputs have errors:\": \"以下输入有错误：\",\n\n            \"Dependabot rules\": \"Dependabot 规则\",\n            \"/ New rule\": \"/ 新建规则\",\n            \"Rule name\": \"规则名称\",\n                \"Add a rule name\": \"添加规则名称\",\n            \"State\": \"状态\",\n                \"Rules will target all public repositories in this organization.\": \"规则将针对该组织中的所有公共仓库。\",\n                    \"Enabled\": \"启用\",\n                        \"Rule is enabled by default for all public repositories.\": \"默认情况下，规则对所有公共仓库启用。\",\n                    \"Enforced\": \"强制\",\n                        \"Rule is enabled for all public repositories and can never be disabled by individual repositories.\": \"规则对所有公共仓库启用，单个仓库永远无法禁用。\",\n                    \"Disabled\": \"禁用\",\n                        \"Rule can never be enabled on any repositories.\": \"规则永远不能在任何仓库中启用。\",\n            \"Target alerts\": \"目标警告\",\n                \"Add rule metadata\": \"添加规则元数据\",\n                    \"Suggested filters\": \"建议的过滤器\",\n                        \"severity:\": \"严重度：\",\n                            \"critical, high, moderate, low\": \"严重、高、中、低\",\n                                \"Severities\": \"严重度\",\n                                    \"critical\": \"严重\",\n                                    \"high\": \"高\",\n                                    \"moderate\": \"中\",\n                                    \"low\": \"低\",\n                        \"package:\": \"软件包：\",\n                            \"package-name\": \"软件包名称\",\n                        \"ecosystem:\": \"生态系统：\",\n                            \"ecosystem-name\": \"生态系统名称\",\n                        \"scope:\": \"范围：\",\n                            \"runtime, development\": \"运行时、开发\",\n                                \"Scopes\": \"范围\",\n                                    \"runtime\": \"运行时\",\n                                    \"development\": \"开发\",\n                        \"cwe:\": \"CWE：\",\n                            \"cwe-number\": \"CWE 号码\",\n                \"Rules will be applied for alerts matching all included metadata.\": \"规则将应用于与所有包含的元数据匹配的警报。\",\n            \"Rules\": \"规则\",\n                \"Select one or more rules to apply to matching alerts.\": \"选择一个或多个规则以应用于匹配的警报。\",\n                \"Dismiss alerts\": \"忽略警报\",\n                    \"Dependabot will automatically close or reopen alerts based on selected criteria.\": \"Dependabot 将根据选定的条件自动关闭或重新打开警报。\",\n                    \"Until patch is available\": \"直到补丁可用为止\",\n                    \"Indefinitely\": \"无限期\",\n                \"Open a pull request to resolve alerts\": \"打开拉取请求以解决警报\",\n                    \"Dependabot will attempt to open security updates based on selected criteria.\": \"Dependabot 将尝试根据选定的标准打开安全更新。\",\n            \"Create rule\": \"创建规则\",\n\n        // 编辑规则 /organizations/<org-login>/settings/dependabot_rules/edit/<id>\n            \"/ Edit rule\": \"/ 编辑规则\",\n            \"Save rule\": \"保存规则\",\n\n            \"Danger Zone\": \"危险区\",\n                \"Delete this rule\": \"删除规则\",\n                    \"Deleting this rule can potentially reopen associated alerts.\": \"删除此规则可能会重新打开相关警报。\",\n                    \"Delete rule\": \"删除规则\",\n\n                    \"Are you sure you want to delete this rule?\": \"您确定要删除此规则吗？\",\n                        // [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"这将永久删除规则 “$1” 并可能重新打开相关警报。\"],\n\n        // 编辑默认规则 /organizations/<org-login>/settings/dependabot_rules/edit_default/1\n            \"/ GitHub Preset rule\": \"/ GitHub 预设规则\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n        [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"这将永久删除规则 “$1” 并可能重新打开相关警报。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"repository/settings/dependabot_rules\"] = I18N[\"zh-CN\"][\"orgs/settings/dependabot_rules\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/domains\"] = { // 组织设置 - 经验证和批准的域名\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 经验证和批准的域名 /organizations/<org-login>/settings/domains\n            \"Verified & approved domains\": \"经验证和批准的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"You can verify the domains controlled by your organization to confirm your organization's identity on GitHub. A\": \"您可以验证组织控制的域，以确认组织在 GitHub 上的身份。一个\",\n            \"badge will be added to your organization's profile page if all of the domains displayed on your profile (e.g. public email or website URL) are verified. You may also approve a domain by first adding it to the list of eligible domains. Approved domains may be used for email notification routing to users with verified emails that do not belong to a domain that you can verify.\": \"的徽章，您的组织的资料页面上显示，则表明您的资料中显示的所有域名（例如公共电子邮箱地址或网站 URL）都经过验证。您也可以通过，首先将一个域名添加到合格的域名列表中来批准该域名。已批准的域名可用于通过电子邮件通知具有经过验证的邮箱地址的用户，这些电子邮箱地址不属于您可以验证的域名。\",\n            \"Learn more about verifying or approving a domain for your enterprise.\": \"了解更多关于验证或批准企业域名的信息。\",\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/secrets\"] = { // 组织设置 - 机密和变量\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"confirm-access\"][\"static\"],\n\n        // 操作机密 /organizations/<org-login>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作机密和变量\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"机密和变量允许您管理可重复使用的配置数据。机密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"，用于敏感数据。\",\n            \"Learn more about encrypted secrets\": \"了解更多关于加密机密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。变量是明文显示，用于\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"数据。\",\n            \"Learn more about variables\": \"了解更多关于变量的信息\",\n\n            \"Anyone with collaborator access to the repositories with access to a secret or variable can use it for Actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何具有协作者权限的人，只要能接触到机密或变量，都可以将其用于操作。它们不会被传递到由复刻的拉取请求触发的工作流中。\",\n\n            \"Organization secrets and variables cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织机密和变量。\",\n            \"Please consider\": \"请考虑\",\n            \"upgrading your plan\": \"升级您的计划\",\n            \"if you require this functionality.\": \"如果您需要此功能。\",\n\n            \"Secrets\": \"机密\",\n            \"Variables\": \"变量\",\n\n            \"Organization secrets\": \"组织机密\",\n                \"This organization has no secrets.\": \"该组织尚无机密。\",\n                \"New organization secret\": \"新建组织机密\",\n\n            \"Visibility\": \"可见性\",\n            \"Last updated\": \"最后更新\",\n\n            // 顶部提醒\n                \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加机密失败。机密名称只能包含字母数字字符（[a-z]、[A-Z]、[0-9]）或下划线 (_)。不允许有空格。必须以字母 ([a-z], [A-Z]) 或下划线 (_) 开头。\",\n                \"Secret added.\": \"机密已添加。\",\n                \"Secret updated.\": \"机密已更新。\",\n                \"Secret deleted.\": \"机密已删除。\",\n\n            // 删除机密对话框\n            \"Delete secret\": \"删除机密\",\n                \"Are you sure you want to delete\": \"您确定要删除\",\n                    \"Deleting\": \"删除\",\n                    \"Unable to delete\": \"无法删除\",\n                \"Yes, delete this\": \"是的，删除该\",\n                \"secret\": \"机密\",\n\n        // 新建组织机密 /organizations/<org-login>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作机密\",\n            \"/ New secret\": \"/ 新建机密\",\n            \"Add secret\": \"添加机密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名称\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"仓库权限\",\n            \"Public repositories\": \"公共仓库\",\n                \"This secret may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"该机密可由组织中的公共仓库使用。付费的 GitHub 计划包括私有仓库。\",\n            \"Private repositories\": \"私有仓库\",\n                \"Organization secrets cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织机密。\",\n            \"Selected repositories\": \"选定的仓库\",\n                \"This secret may only be used by specifically selected repositories.\": \"该机密只能由特定仓库使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                // 机密仓库访问 对话框\n                    \"Secret repository access\": \"机密仓库访问\",\n                    \"Select the organization repositories that may use this secret.\": \"选择可以使用该机密的组织仓库。\",\n                        \"Filter repositories\": \"筛选仓库\",\n                        \"selected repository\": \"个选定的仓库\",\n                        \"selected repositories\": \"个选定的仓库\",\n                    \"Update selection\": \"更新选择\",\n\n        // 更新操作机密 /organizations/<org-login>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新机密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"机密值已加密，无法显示，但您可以\",\n            \"enter a new value.\": \"输入一个新值。\",\n\n        // 操作变量 /organizations/<org-login>/settings/variables/actions\n            \"Create new organization variable\": \"新建组织变量\",\n\n            \"Organization variables\": \"组织变量\",\n            \"This organization has no variables.\": \"此组织尚无变量。\",\n\n            // 删除变量对话框\n            \"Delete variable\": \"删除变量\",\n                \"variable\": \"变量\",\n\n        // 新建组织变量 /organizations/<org-login>/settings/variables/actions/new\n            \"Actions variables\": \"操作变量\",\n            \"/ New variable\": \"/ 新建变量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：变量值是以纯文本形式暴露的。如果您需要对敏感信息进行加密和屏蔽，请使用\",\n            \"create a secret\": \"创建机密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"变量名称只能包含字母数字字符（[A-Z]，[A-Z]，[0-9]）或仅下划线（_）。\",\n            \"Variable names cannot start with a number.\": \"变量名称不能以数字开头。\",\n            \"Variable names cannot start with\": \"变量名称不能以\",\n            \"prefix.\": \"前缀开头。\",\n\n            // 变量名称警示\n                \"Variable name can only contain alphanumeric characters. Special characters and spaces are not allowed.\": \"变量名称只能包含字母数字字符。不允许特殊字符和空格。\",\n                \"Variable name can only start with a letter or underscore.\": \"变量名称只能以字母或下划线开头。\",\n                \"Variable name cannot start with \\\"GITHUB_\\\" prefix.\": \"变量名称不能以 “GITHUB_” 前缀开头。\",\n\n            // \"Public repositories\": \"公共仓库\",\n                \"This variable may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"改变量可由组织中的公共仓库使用。付费的 GitHub 计划包括私有仓库。\",\n            // \"Private repositories\": \"私有仓库\",\n                \"Organization variables cannot be used by private repositories with your plan.\": \"在您的计划中私有仓库不能使用组织变量。\",\n            // \"Selected repositories\": \"选定的仓库\",\n                \"This variable may only be used by specifically selected repositories.\": \"该变量只能由特定仓库使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n                // 变量仓库访问 对话框\n                    \"Variable repository access\": \"变量仓库访问\",\n                    \"Select the organization repositories that may use this variable.\": \"选择可以使用该变量的组织仓库。\",\n\n            \"Add variable\": \"添加变量\",\n\n        // 更新组织变量 /organizations/<org-login>/settings/variables/actions/<name>\n            \"/ Update variable\": \"/ 更新变量\",\n            \"Update variable\": \"更新变量\",\n                \"Saving…\": \"保存中…\",\n                \"Save variable\": \"保存变量\",\n\n        // 代码空间机密 /organizations/<org-login>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"代码空间机密\",\n            \"Development environment secrets are environment variables that are\": \"开发环境机密是环境变量\",\n            \"encrypted\": \"被加密\",\n            \". They are available to any codespace user with\": \"。任何代码空间用户具有\",\n            \"collaborator\": \"协作者\",\n            \"access to the repositories with access to that secret.\": \"权限访问该机密的仓库。\",\n\n            \"Development environment secrets\": \"开发环境机密\",\n                \"This organization has no development environment secrets.\": \"该组织尚无开发环境机密。\",\n                \"New codespace secret\": \"新建代码空间机密\",\n\n        // Dependabot 机密 /organizations/<org-login>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 机密\",\n            \"Secrets are credentials that are\": \"机密是凭证\",\n            \". Anyone with\": \"。任何对此仓库具有\",\n            \"access to the repositories with access to each secret can use it for Dependabot.\": \"访问权限的人都可以访问仓库的每个机密用于 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"机密不会传递给复刻。\",\n\n        // Dependabot 机密 /organizations/<org-login>/settings/secrets/dependabot/new\n            \"All repositories\": \"所有仓库\",\n            \"This secret may be used by any repository in the organization.\": \"组织中的任何仓库都可以使用此机密。\",\n            \"This secret may be used by any private repository in the organization.\": \"组织中的任何私有仓库都可以使用此机密。\",\n\n        // 私有登记表 /organizations/<org-login>/settings/secrets/private_registries\n            \"Private Registries\": \"私有注册表\",\n            \"Private registry configurations include passwords or tokens that are handled as encrypted secrets. Access to private registry configurations is limited to\": \"私有注册表配置包括加密处理的密码或令牌作为机密。对私有注册表配置的访问仅限于\",\n            \"CodeQL default setup\": \"CodeQL 默认设置\",\n            \"for analyzing code. The automatically-generated name for a private registry configuration is visible to users in log files for debugging. No other information is accessible to users.\": \"用于分析代码。用户可以在日志文件中看到自动生成的私有注册表配置名称，以便进行调试。用户无法访问其他信息。\",\n            \"Private registry secrets\": \"私人注册表机密\",\n\n            \"New private registry\": \"新建私有注册表\",\n\n        // 新建私有登记表 /organizations/<org-login>/settings/secrets/private_registries/new\n            \"Private registries\": \"私有注册表\",\n            \"New private registry\": \"新建私有注册表\",\n            \"Select registry type\": \"选择注册表类型\",\n                \"Maven Repository\": \"Maven 仓库\",\n                \"NuGet Feed\": \"NuGet 订阅\",\n                \"Token\": \"令牌\",\n                \"Username and password\": \"用户名和密码\",\n                \"Username\": \"用户名\",\n                \"Password\": \"密码\",\n                \"Add Registry\": \"添加注册表\",\n\n        // 编辑私有登记表 /organizations/<org-login>/settings/secrets/private_registries/<>\n            \"Edit private registry\": \"编辑私有注册表\",\n            \"Type\": \"类型\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        [/(\\d+) selected repositor(y|ies)/, \"$1 个选定的仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/settings/variables\"] = I18N[\"zh-CN\"][\"orgs/settings/secrets\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/oauth_application_policy\"] = { // 组织设置 - 第三方应用访问策略\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 第三方应用访问策略 /organizations/<org-login>/settings/oauth_application_policy\n            \"Third-party application access policy\": \"第三方应用访问策略\",\n            \"Policy:\": \"策略：\",\n                \"Access restricted\": \"访问受限\",\n                    \"Only approved applications can access data in this organization. Applications owned by\": \"只有获得批准的应用才能访问该组织中的数据。应用由\",\n                    \"always have access.\": \"拥有的始终可以访问。\",\n                    \"Remove restrictions\": \"解除限制\",\n                    // 解除限制对话框\n                    \"Are you sure?\": \"您确定吗？\",\n                    \"You’re about to remove all third-party application restrictions. Please read this carefully.\": \"您即将删除所有第三方应用限制。请仔细阅读。\",\n                    \"Removing third-party application restrictions will immediately give member authorized applications access to private data in the\": \"取消第三方应用限制，将立即允许成员授权的应用访问私人数据，在\",\n                    \"Please be sure you want to do this.\": \"请确定您想这么做。\",\n                    \"Yes, remove application restrictions\": \"是的，取消应用限制\",\n                \"No restrictions\": \"未受限\",\n                    \"All applications authorized by organization members have access to\": \"所有由组织成员授权的应用都可以访问\",\n                    \"’s data.\": \"的数据。\",\n                    \"Setup application access restrictions\": \"设置应用访问限制\",\n\n            \"Denied\": \"拒绝\",\n            \"Approved\": \"已批准\",\n\n            \"No pending requests\": \"没有待处理的请求\",\n            \"As members request access for specific applications, those requests will be listed here for your approval. You can start by browsing\": \"当成员请求访问特定应用时，这些请求将在此处列出以供您批准。您可以浏览\",\n            \"your own authorized applications\": \"您授权的应用\",\n\n            \"When authorized, applications can act on behalf of organization members. Your access policy determines which applications can access data in your organization.\": \"获得授权后，应用可以代表组织成员进行操作。您的访问策略决定了哪些应用可以访问您组织中的数据。\",\n            \"Read more about third-party access and organizations.\": \"阅读更多关于第三方访问和组织的信息。\",\n\n        // 设置第三方应用访问限制 /settings/oauth_application_policy/confirm\n            \"Third-party application restrictions\": \"第三方应用限制\",\n            \"create an extra layer of security that allows owners to better control how applications access data in their organization.\": \"创建一个额外的安全层，使所有者能够更好地控制应用如何访问其组织中的数据。\",\n\n            \"Organization owners maintain an allowlist of trusted applications.\": \"组织所有者维护受信任应用的允许列表。\",\n            \"Applications owned by\": \"应用拥有者\",\n                \"are always trusted.\": \"的应用始终受信任。\",\n            \"Members can request organization approval for an application.\": \"成员可请求组织批准应用。\",\n            \"Approval requests notify organization owners, allowing them to deny or approve application access.\": \"批准请求会通知组织所有者，允许他们拒绝或批准应用的访问。\",\n            \"Only trusted applications can:\": \"只有受信任的应用才能：\",\n                \"Access private organization data via the API or SSH.\": \"通过 API 或 SSH 访问私有组织数据。\",\n                \"Change public organization data.\": \"更改公共组织数据。\",\n                \"Receive webhooks for private events.\": \"接收私人事件的 Web 钩子。\",\n\n            \"Restrict third-party application access\": \"限制第三方应用访问\",\n            \"Restricting access will immediately block all unapproved applications and will disable SSH keys created before February 2014.\": \"限制访问将立即阻止所有未经批准的应用，并禁用 2014 年 2 月前创建的 SSH 密钥。\",\n            \"Read more at GitHub Help.\": \"请访问 GitHub 帮助了解更多信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/personal-access-token\"] = { // 组织设置 - 个人访问令牌\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 个人访问令牌 - 精细化令牌 /organizations/<org-login>/settings/personal-access-tokens\n            \"Fine-grained tokens\": \"精细化令牌\",\n            \"Fine-grained personal access tokens\": \"精细化的个人访问令牌\",\n                \"By default, fine-grained personal access tokens cannot access content owned by your organization via the Public API or Git. This includes both public and private resources such as repositories.\": \"默认情况下，精细化的个人访问令牌不能通过公共 API 或 Git 访问您组织拥有的内容。这包括公共和私人资源，如仓库。\",\n                \"Allow access via fine-grained personal access tokens\": \"允许通过细化的个人访问令牌进行访问\",\n                    \"API and Git access will be allowed using approved organization member's fine-grained personal access tokens\": \"API 和 Git 访问将被允许使用经批准的组织成员的精细化个人访问令牌\",\n                \"Restrict access via fine-grained personal access tokens\": \"通过精细化的个人访问令牌限制访问。\",\n                    \"Organization members will not be allowed to access your organization using a fine-grained personal access token\": \"不允许组织成员使用精细化的个人访问令牌访问您的组织\",\n\n            \"Require approval of fine-grained personal access tokens\": \"要求批准精细化的个人访问令牌\",\n                \"Access requests by organization members can be subject to review by administrator before approval.\": \"组织成员的访问请求在批准之前可能需要经过管理员审查。\",\n                \"Require administrator approval\": \"需要管理员批准\",\n                    \"All access requests by organization members to this organization must be approved before the token is usable.\": \"组织成员对该组织的所有访问请求都必须在令牌可用之前得到批准。\",\n                \"Do not require administrator approval\": \"不需要管理员批准\",\n                    \"Tokens requested for this organization will work immediately, and organization members are not required to provide a justification when creating the token.\": \"为该组织申请的令牌将立即生效，并且组织成员在创建令牌时无需提供理由。\",\n\n            \"Set maximum lifetimes for personal access tokens\": \"设置个人访问令牌的最长使用期限\",\n                \"Control the maximum lifetime for fine-grained personal access tokens in your organizations. If set, your organization members can only use fine-grained personal access tokens against your resources if the tokens are set to expire within the period you provide.\": \"控制组织中精细化个人访问令牌的最长使用期限。如果设置了，您的组织成员只能在您提供的期限内对您的资源使用精细化个人访问令牌。\",\n                \"Learn more about token expiration policies.\": \"了解更多关于令牌过期策略的信息。\",\n\n            \"Fine-grained personal access tokens must expire\": \"精细化个人访问令牌必须过期\",\n                \"Select a maximum lifetime for fine-grained personal access tokens to be allowed to access your organizations.\": \"选择允许访问组织的精细化个人访问令牌的最长有效期。\",\n                // 有效期 下拉菜单\n                    \"7 days\": \"7 天\",\n                    \"30 days\": \"30 天\",\n                    \"60 days\": \"60 天\",\n                    \"90 days\": \"90 天\",\n                    \"366 days\": \"366 天\",\n                    \"Custom...\": \"自定义…\",\n\n                    \"days\": \"天\",\n                    \"between 1 and 366 days\": \"1 至 366 天之间\",\n\n        // 个人访问令牌 - 令牌（经典）/organizations/<org-login>/settings/personal-access-tokens?tab=classic\n            \"Tokens (classic)\": \"令牌（经典）\",\n            \"Restrict personal access tokens (classic) from accessing your organizations\": \"限制个人访问令牌（经典）访问您的组织\",\n                \"By default, personal access tokens (classic) can access content owned by your organization via the GitHub API or Git over HTTPS. This includes both public and private resources such as repositories.\": \"默认情况下，个人访问令牌（经典）可以通过 GitHub API 或基于 HTTPS 的 Git 访问您组织拥有的内容。这包括公共和私有资源，例如仓库。\",\n                \"Allow access via personal access tokens (classic)\": \"允许通过个人访问令牌进行访问（经典）\",\n                    \"API and Git access will be allowed using an organization member's personal access token (classic)\": \"允许组织成员使用个人访问令牌（经典）访问 API 和 Git。\",\n                \"Restrict access via personal access tokens (classic)\": \"通过个人访问令牌限制访问（经典）\",\n                    \"Organization members will not be allowed to access your organization using a personal access token (classic)\": \"不允许组织成员使用个人访问令牌（经典）访问您的组织\",\n\n            // 设置个人访问令牌的最长使用期限\n                \"Control the maximum lifetime for personal access tokens (classic) in your organizations. If set, your organization members can only use personal access tokens (classic) against your resources if the tokens are set to expire within the period you provide.\": \"控制组织中个人访问令牌（经典）的最长使用期限。如果设置了，您的组织成员只能在您提供的期限内对您的资源使用个人访问令牌（经典）。\",\n                \"Personal access tokens (classic) must expire\": \"个人访问令牌（经典）必须过期\",\n                    \"Select a maximum lifetime for personal access tokens (classic) to be allowed to access your organizations.\": \"选择允许访问组织的个人访问令牌（经典）的最长使用期限。\",\n\n        // 活跃的令牌  /organizations/<org-login>/settings/personal-access-tokens/active\n            \"Filter active fine-grained tokens\": \"筛选活跃的精细化令牌\",\n            \"Tokens\": \"令牌\",\n            \"Owner\": \"所有者\",\n                \"Filter by owner\": \"按所有者筛选\",\n                \"Filter users\": \"筛选用户\",\n                \"Clear\": \"清除\",\n\n            // \"Repository\": \"仓库\",\n                \"Filter by repository\": \"按仓库筛选\",\n                \"Filter repositories\": \"筛选仓库\",\n\n            \"Permissions\": \"权限\",\n                \"Filter by permission\": \"按权限筛选\",\n                \"Filter permissions\": \"筛选权限\",\n                    \"read\": \"只读\",\n                    \"write\": \"可写\",\n                    \"Administration\": \"管理员\",\n                    \"Attestations\": \"证书\",\n                    \"Code scanning alerts\": \"代码扫描警报\",\n                    \"Codespaces lifecycle admin\": \"代码空间生命周期管理员\",\n                    \"Codespaces metadata\": \"代码空间元数据\",\n                    \"Codespaces secrets\": \"代码空间机密\",\n                    \"Commit statuses\": \"提交状态\",\n                    \"Contents\": \"内容\",\n                    \"Dependabot alerts\": \"Dependabot 警报\",\n                    \"Dependabot secrets\": \"Dependabot 机密\",\n                    \"Deployments\": \"部署\",\n                    \"Environments\": \"环境\",\n                    \"Merge queues\": \"合并列队\",\n                    \"Metadata\": \"元数据\",\n                    \"Repository announcement banners\": \"仓库公告横幅\",\n                    \"Repository security advisories\": \"仓库安全公告\",\n                    \"Secret scanning alerts\": \"机密扫描警报\",\n                    \"Secrets\": \"机密\",\n                    \"Variables\": \"变量\",\n                    \"Workflows\": \"工作流程\",\n                    \"Organization\": \"组织\",\n                        \"API Insights\": \"API 透视\",\n                        \"Blocking users\": \"拉黑用户\",\n                        \"Custom organization roles\": \"自定义组织角色\",\n                        \"Custom repository roles\": \"自定义仓库角色\",\n                        \"Events\": \"活动\",\n                        \"GitHub Copilot Business\": \"GitHub Copilot 商业版\",\n                        \"Knowledge bases\": \"知识库\",\n                        \"Members\": \"成员\",\n                        \"Organization announcement banners\": \"组织公告横幅\",\n                        \"Organization codespaces\": \"组织代码空间\",\n                        \"Organization codespaces secrets\": \"组织代码空间机密\",\n                        \"Organization codespaces settings\": \"组织代码空间设置\",\n                        \"Organization dependabot secrets\": \"组织 Dependabot 机密\",\n                        \"Organization private registries\": \"组织私有注册表\",\n                        \"Plan\": \"计划\",\n                        \"Self-hosted runners\": \"自托管运行器\",\n\n            \"There aren't any fine-grained tokens for this organization\": \"该组织尚无任何精细化令牌\",\n\n        // 精细化的个人访问令牌请求  /organizations/<org-login>/settings/personal-access-token-requests\n            \"Fine-grained personal access token requests\": \"精细化的个人访问令牌请求\",\n            \"Filter fine-grained personal access tokens requests\": \"筛选精细化的个人访问令牌请求\",\n\n            \"Requests\": \"请求\",\n\n            \"There aren't any personal access token requests for this organization\": \"该组织尚无任何个人访问令牌的请求\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/reminders\"] = { // 组织设置 - 定时提醒\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 定时提醒 /organizations/<org-login>/settings/reminders\n            \"No scheduled reminders created.\": \"未创建预定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"为了保持项目进展，您现在可以提醒您的团队关于他们需要审查的拉取请求。\",\n\n            \"Connect a Slack workspace to get started\": \"连接 Slack 工作区以开始使用\",\n            // 对话框\n            \"Add Slack workspace\": \"添加 Slack 工作区\",\n            \"We have rolled out a new version of the GitHub app in Slack. If you are currently on the old app, please consider switching over to the new app! More info about migration can be found\": \"我们已经在 Slack 中推出了新版本的 GitHub 应用。如果您目前使用的是旧版应用，请考虑切换到新版应用！更多关于迁移的信息可以点击\",\n            \"here.\": \"这里。\",\n            \"1. Clicking on 'Add' will configure your Slack workspace with the new GitHub app.\": \"1. 点击 “添加” 将用新的 GitHub 应用配置您的 Slack 工作区。\",\n            \"2. If you already have the old app in Slack, it will uninstall the legacy app and install the new one.\": \"2. 如果您在 Slack 中已有旧应用，它将卸载旧应用并安装新应用。\",\n            \"Add workspace\": \"添加工作区\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/sponsors-log\"] = { // 组织设置 - 赞助日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Sponsorship log 赞助日志 /organizations/<org-login>/settings/sponsors-log\n            \"Sponsors log\": \"赞助日志\",\n            \"New sponsorships, changes, and cancellations\": \"新的赞助、更改和取消\",\n            \"Period:\": \"周期：\",\n                \"Filter activity\": \"筛选活动\",\n                \"All-time\": \"所有时间\",\n                \"Past Day\": \"过去一天\",\n                \"Past Week\": \"过去一周\",\n                \"Past Month\": \"过去一月\",\n                \"Past Year\": \"过去一年\",\n            \"No sponsorship activity in this time period\": \"这段时间没有赞助活动\",\n            // \"This is where you can review activity from your sponsorships.\": \"您可以在此处查看您的赞助活动。\",\n            // [/This is where you can review activity from ([^ ]+)'s sponsorships./ \"在这里您可以查看 $1 赞助的活动。\"],\n    },\n    \"regexp\": [ // 正则翻译\n        [/This is where you can review activity from ([^ ]+)'s sponsorships./,  \"在这里您可以查看 $1 赞助的活动。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/audit-log\"] = { // 组织设置 - 审计日志\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Audit log 审计日志 /organizations/<org-login>/settings/audit-log\n            \"Events\": \"活动\",\n            \"Loading audit log entries…\": \"正在加载日志条目…\",\n            \"Filters\": \"筛选\",\n                \"Filter audit logs\": \"筛选审计日志\",\n                \"Yesterday's activity\": \"昨日的活动\",\n                \"Organization membership\": \"组织成员\",\n                \"Team management\": \"团队管理\",\n                \"Repository management\": \"仓库管理\",\n                \"Billing updates\": \"账单更新\",\n                \"Copilot activity\": \"Copilot 活动\",\n                \"Hook activity\": \"挂钩活动\",\n                \"Personal access token activity\": \"个人访问令牌活动\",\n                \"View advanced search syntax\": \"查看高级搜索语法\",\n            \"Search audit logs\": \"搜索审计日志\",\n            \"Export Git Events\": \"导出 Git 事件\",\n                \"Export Git events\": \"导出 Git 事件\",\n                \"Export file will be limited to 100 Mb.\": \"导出文件将限制为 100 Mb。\",\n                \"Select events from:\": \"选择事件，从：\",\n                \"To:\": \"到：\",\n                \"Download Results\": \"下载结果\",\n            \"Export\": \"导出\",\n                \"Exporting\": \"导出中\",\n            \"Recent events\": \"最近的事件\",\n\n            \"Clear current search query\": \"清除当前搜索查询\",\n            // [/Found (\\d+) events?/, \"找到 $1 个事件\"],\n            \"We couldn’t find any events matching your search.\": \"我们未找到与您的搜索相匹配的活动。\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"旧的\",\n\n        // 源IP泄露 /organizations/<org-login>/audit-log/event_settings\n            \"Disclose actor IP addresses in audit logs\": \"在审计日志中披露行为人 IP 地址\",\n            \"Enable source IP disclosure\": \"启用源 IP 泄露\",\n            \"Enabling will allow you to view IP addresses of current members for organization audit log events. As this feature makes your users' IP addresses automatically available, you should review this change with your legal team to determine whether any user notification is required. When enabled at the enterprise level it will be automatically enabled for all organizations owned by the enterprise, the reverse is not true.\": \"启用此功能将允许您查看组织审计日志事件中当前成员的 IP 地址。由于此功能会自动公开用户的 IP 地址，因此您应该与法律团队一起审核此更改，以确定是否需要任何用户通知。当在企业级别启用时，它将自动为企业拥有的所有组织启用，反之则不然。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/Found (\\d+) events?/, \"找到 $1 个事件\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-CN\"][\"orgs/audit-log/event_settings\"] = I18N[\"zh-CN\"][\"orgs/settings/audit-log\"];\n\nI18N[\"zh-CN\"][\"orgs/settings/deleted_repositories\"] = { // 组织设置 - 删除的仓库\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 删除的仓库 /organizations/<org-login>/settings/deleted_repositories\n            \"Deleted Repositories\": \"删除的仓库\",\n            // [/No recoverable repositories were found for ([^ ]+)./, \"没有发现 $1 中可恢复仓库\"],\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"仓库可能需要一个小时的时间才能显示在这里。您只能恢复没有复刻，或没有被复刻的仓库。\",\n            \"Learn more about restoring deleted repositories\": \"了解更多关于恢复已删除仓库的信息\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/No recoverable repositories were found for ([^ ]+)./, \"没有发现 $1 中可恢复仓库\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/applications\"] = { // 组织设置 - OAuth 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // OAuth 应用 /organizations/<org-login>/settings/applications\n            \"OAuth apps\": \"OAuth 应用\",\n            \"No Organization Owned Apps\": \"没有组织拥有的应用\",\n            \"Do you want to develop an App that uses the GitHub API? Register an App to generate OAuth tokens.\": \"您想开发一个使用 GitHub API 的应用吗？注册应用 生成 OAuth 令牌。\",\n            \"New OAuth app\": \"新建 OAuth 应用\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/apps\"] = { // 组织设置 - GitHub 应用\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // GitHub 应用 /organizations/<org-login>/settings/apps\n            \"No GitHub Apps\": \"尚无 GitHub 应用\",\n                \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想创建与 GitHub 集成并扩展 GitHub 的应用吗？注册一个新的 GitHub 应用，开始使用 GitHub API 进行开发。\",\n            \"New GitHub App\": \"新建 GitHub 应用\",\n            \"View documentation\": \"查看文档\",\n\n            \"Management\": \"管理人员\",\n            \"Choose members that are allowed to manage all GitHub Apps belonging to this organization.\": \"选择允许管理属于该组织的所有 GitHub 应用的成员。\",\n            \"Organization owner\": \"组织所有者\",\n            \"Search by username or full name\": \"按用户名或全名搜索\",\n            \"Grant\": \"授予\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/settings/publisher\"] = { // 组织设置 - GitHub 发布者验证\n    \"static\": { // 静态翻译\n        ...I18N[\"zh-CN\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 发布者验证 /organizations/<org-login>/settings/publisher\n            \"There must be 1 or more GitHub/OAuth App registered by the organization to request publisher verification\": \"组织必须有 1 个或多个 GitHub/OAuth 应用才能请求发布者验证\",\n            \"You can request publisher verification for your organization. A\": \"您可以为您的组织请求发布者验证。一个\",\n            \"badge will be added to your apps published in the marketplace, recognizing that apps and other published materials were created by you.\": \"徽章将添加到您在市场上发布的应用中，以识别应用和其他已发布材料是由您创建的。\",\n            \"Learn more about publisher verification.\": \"了解更多关于发布者验证的信息。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"projects\"] = { // 项目页面(含仓库项目)\n    \"static\": { // 静态翻译\n        // >>>>>>>>>>>>>>>>>>仓库 公共部分<<<<<<<<<<<<<<<<<<<<<<<<<<<\n            // 头部条\n            \"forked from\": \"复刻自\",\n            \"mirrored from\": \"镜像自\",\n\n            \"Unpin\": \"取消置顶\",\n            \"Ignoring\": \"忽略\",\n            \"Stop ignoring\": \"取消忽略\",\n            \"Watch\": \"关注\",\n            \"Unwatch\": \"取消关注\",\n\n            \"Star\": \"标星\",\n            \"Unstar\": \"已加星标\",\n            \"Fork\": \"复刻\",\n            \"Unfork\": \"取消复刻\",\n\n            // 赞助对话框\n            \"External links\": \"外部链接\",\n            \"Learn more about funding links in repositories\": \"了解更多关于仓库中的赞助链接的信息\",\n            \"Report abuse\": \"举报滥用\",\n\n            // 关注 & 订阅通知设置 下拉菜单\n            \"Notifications\": \"通知类型\",\n            \"Participating and @mentions\": \"参与和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"仅在参与或 @您时接收来自此仓库的通知。\",\n            \"All Activity\": \"所有活动\",\n            \"Notified of all notifications on this repository.\": \"接收来自此仓库所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定义\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"选择除参与和 @您之外还要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此仓库未启用讨论功能\",\n            // \"Releases\": \"发行版\",\n            // \"Discussions\": \"讨论\",\n            \"Security alerts\": \"安全警报\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"应用\",\n\n            // 复刻下拉\n            \"Existing forks\": \"现有的复刻\",\n            \"You don't have any forks of this repository.\": \"您没有此仓库的任何复刻。\",\n            \"Create a new fork\": \"创建复刻\",\n\n            // 标签栏\n            \"Code\": \"代码\",\n            \"Pull requests\": \"拉取请求\",\n            \"Discussions\": \"讨论\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"项目\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"设置\",\n\n            // 键盘快捷键\n                \"Open in codespace\"  : \"在代码空间中打开\",\n                \"Open in github.dev editor\"  : \"在 github.dev 编辑器中打开\",\n                \"Open github.dev editor in a new tab\"  : \"在新标签页中打开 github.dev 编辑器\",\n                \"Open cs.github.com in a new tab\": \"在新标签页中打开 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二级搜索栏\",\n                \"Go to Code\"                 : \"跳转到代码\",\n                \"Go to Issues\"               : \"跳转到议题\",\n                \"Go to Pull Requests\"        : \"跳转到拉取请求\",\n                \"Go to Actions\"              : \"跳转到操作\",\n                \"Go to Projects\"             : \"跳转到项目\",\n                \"Go to Wiki\"                 : \"跳转到 Wiki\",\n                \"Go to Discussions\"          : \"跳转到讨论\",\n\n        // https://github.com/projects\n            \"Recently viewed\": \"最近浏览\",\n                \"Remove from recently viewed\": \"从最近浏览中删除\",\n            \"Created by me\": \"由我创建\",\n                \"Create your first GitHub project\": \"创建您的第一个 GitHub 项目\",\n                \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"项目是用于规划和跟踪您工作的可定制、灵活的工具。\",\n\n        // 公共词 简版 议题&拉取请求信息\n            \"opened by\": \"打开者\",\n            \"Opened in\": \"打开在\",\n            \"commented\": \"评论于\",\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"无人受理\",\n            \"Labels\": \"标签\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"尚无里程碑\",\n            \"Linked pull requests\": \"关联的拉取请求\",\n                \"Successfully merging a pull request may close this issue.\": \"成功合并一个拉取请求可能会关闭此议题。\",\n            \"None yet\": \"暂无\",\n            \"Go to issue for full details\": \"跳转到议题以获取完整详细信息\",\n\n            \"Loading details…\": \"载入细节…\",\n\n        // 新建项目 https://github.com/new/project\n          //同 仓库 新建项目页面  /<user-name>/<repo-name>/projects/new\n            \"Create a new classic project\": \"创建经典项目\",\n            \"Coordinate, track, and update your work in one place, so projects stay transparent and on schedule.\": \"在这里协调、跟踪和更新您的工作，使项目保持透明，并按计划进行。\",\n            \"Project board name\": \"项目面板名称\",\n            \"Description\": \"描述\",\n            \"(optional)\": \"(可选)\",\n            \"Project template\": \"项目模板\",\n            \"Save yourself time with a pre-configured project board template.\": \"使用预先配置的项目面板模板可为您节省时间。\",\n            \"Template:\": \"模板：\",\n                \"Templates\": \"模板\",\n                \"None\": \"无\",\n                    \"Start from scratch with a completely blank project board. You can add columns and configure automation settings yourself.\": \"从一个完全空白的项目面板开始。您可以自己添加栏目并配置自动化设置。\",\n                \"Basic kanban\": \"基础看板\",\n                    \"Basic kanban-style board with columns for To do, In progress and Done.\": \"基础风格看板，带有待办、进行中和已完成等栏目。\",\n                \"Automated kanban\": \"自动化看板\",\n                    \"Kanban-style board with built-in triggers to automatically move issues and pull requests across To do, In progress and Done columns.\": \"带有内置触发器的风格看板，可以自动将议题和拉取请求移到待办、进行中和已完成栏目中。\",\n                \"Automated kanban with reviews\": \"带审查的自动看板\",\n                    \"Everything included in the Automated kanban template with additional triggers for pull request reviews.\": \"除了包含自动化看板模板中的所有内容，还有拉取请求审查的额外触发器。\",\n                \"Bug triage\": \"BUG 分类\",\n                    \"Triage and prioritize bugs with columns for To do, High priority, Low priority, and Closed.\": \"使用待办事项、高优先级、低优先级和已关闭的栏目对错误进行分类和优先级排序。\",\n            \"Visibility\": \"可见性\",\n                // \"Public\": \"公共\",\n                    \"Anyone on the internet can see this project. You choose who can make changes.\": \"互联网上的任何人都可以看到这个项目。您选择谁可以进行更改。\",\n                \"Private\": \"私有\",\n                    \"You choose who can see and make changes to this project.\": \"您可以选择谁可以查看此项目并对其进行更改。\",\n            \"Linked repositories\": \"关联的仓库\",\n                \"Search\": \"搜索\",\n                \"to link repositories to this project for more accurate suggestions and better search results.\": \"将仓库关联到此项目，以获得更准确的建议和更好的搜索结果。\",\n                \"Search by repository name\": \"搜索仓库名\",\n                \"You've reached the limit of 25 linked repositories.\": \"您已经达到了 25 个关联仓库的上限。\",\n                \"Linked repositories:\": \"关联的仓库\",\n                \"None yet!\": \"啥也木有！\",\n            \"Create project\": \"创建项目\",\n\n        // 仓库 项目页面  /<user-name>/<repo-name>/projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Welcome to projects\": \"欢迎访问项目\",\n            \"No open projects\": \"无已打开的项目\",\n            \"No open project templates\": \"无已打开的项目模板\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\":\"项目表格就像电子表格一样构建，为您提供实时画布，用于筛选、排序和分组问题及拉取请求。您可以根据需求自定义字段并保存视图。\",\n            \"This repository doesn't have any projects yet\": \"该仓库目前没有任何项目\",\n            \"Create a project\": \"创建一个项目\",\n            \"Provide quick access to relevant projects.\":\"为相关项目提供便捷访问\",\n            \"Add projects to view them here.\":\"添加项目以在此处查看。\",\n            \"Link a project\":\" 关联一个项目\",\n            \"Link projects\":\"关联项目\",\n            \"Link a project to this repository\":\"将项目与该仓库进行关联\",\n\n            \"Organize your issues with project boards\": \"使用项目面板组织您的议题\",\n            \"Did you know you can manage projects in the same place you keep your code? Set up a project board on GitHub to streamline and automate your workflow.\": \"您知道您可以在保存代码的同一个地方管理项目吗？在 GitHub 上设置项目面板以简化和自动化您的工作流程。\",\n\n            \"Sort tasks\": \"排序任务\",\n            \"Add issues and pull requests to your board and prioritize them alongside note cards containing ideas or task lists.\": \"将议题和拉取请求添加到您的看板中，并将它们与包含想法或任务清单的笔记卡一起进行优先排序。\",\n            \"Plan your project\": \"规划项目\",\n            \"Sort tasks into columns by status. You can label columns with status indicators like \\\"To Do\\\", \\\"In Progress\\\", and \\\"Done\\\".\": \"将任务按状态分类成列。您可以用 “待办”、“进行中” 和 “已完成” 等状态指标给各栏贴上标签。\",\n            \"Automate your workflow\": \"自动化工作流程\",\n            \"Set up triggering events to save time on project management—we’ll move tasks into the right columns for you.\": \"设置触发事件，以节省项目管理的时间——我们将为您把任务移到正确的栏目中。\",\n            \"Track progress\": \"追踪进度\",\n            \"Keep track of everything happening in your project and see exactly what’s changed since the last time you looked.\": \"追踪项目中发生的一切，并准确查看自上次查看以来发生的变化。\",\n            \"Share status\": \"共享状态\",\n            \"Each card has a unique URL, making it easy to share and discuss individual tasks with your team.\": \"每张卡片都有一个唯一的 URL，可以轻松地与您的团队共享和讨论个人任务。\",\n            \"Wrap up\": \"结束工作\",\n            \"After you wrap up your work, close your project board to remove it from your active projects list. On to the next project!\": \"结束工作后，关闭项目面板，并从活动项目列表中删除。进入下一个项目！\",\n\n            \"Try the\": \"尝试\",\n            \"new projects today.\": \"新版项目。\",\n            \"Repository access coming soon ✨\": \"仓库访问即将推出 ✨\",\n            \"Remove project\":\"移除项目\",\n            \"Open\":\"已打开\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜单\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                \"Name\": \"名称\",\n            // 清除筛选\n            \"Clear current search query, filters, and sorts\": \"清除当前的搜索查询、筛选器和排序方式\",\n\n            \"No description\": \"无描述\",\n\n            // 顶部提醒\n            \"Project closed.\": \"项目已关闭。\",\n            \"Project reopened.\": \"项目已重新打开。\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            // 键盘快捷键\n                \"Project card shortcuts\": \"项目卡快捷键\",\n                    \"Open the issue or pull request associated with the focused card in the sidebar\": \"聚焦卡片的侧边栏中打开相关联的议题或拉取请求\",\n                \"Moving a card\": \"移动卡片\",\n                    \"Start moving the focused card\": \"开始移动聚焦卡片\",\n                    \"Cancel the move in progress\": \"取消正在进行的移动\",\n                    \"Complete the move in progress\": \"完成正在进行的移动\",\n                    \"Move card down\": \"向下移动卡片\",\n                    \"Move card to the bottom of the column\": \"移动到项目栏底部\",\n                    \"Move card up\": \"向上移动卡片\",\n                    \"Move card to the top of the column\": \"移动到项目栏顶部\",\n                    \"Move card to the bottom of the column on the left\": \"移动到左侧项目栏底部\",\n                    \"Move card to the top of the column on the left\": \"移动到左侧项目栏顶部\",\n                    \"Move card to the bottom of the leftmost column\": \"移动到最左侧项目栏底部\",\n                    \"Move card to the top of the leftmost column\": \"移动到最左侧项目栏顶部\",\n                    \"Move card to the bottom of the column on the right\": \"移动到右侧项目栏底部\",\n                    \"Move card to the top of the column on the right\": \"移动到右侧项目栏顶部\",\n                    \"Move card to the bottom of the rightmost column\": \"移动到最右侧项目栏底部\",\n                    \"Move card to the top of the rightmost column\": \"移动到最右侧项目栏顶部\",\n                \"Moving a column\": \"移动栏目\",\n                    \"Start moving the focused column\": \"开始移动聚焦栏目\",\n                    \"Move column to the left\": \"将栏目移到左侧\",\n                    \"Move column to the leftmost position\": \"将栏目移到最左侧\",\n                    \"Move column to the right\": \"将栏目移到右侧\",\n                    \"Move column to the rightmost position\": \"将栏目移到最右侧\",\n            // 顶部提醒\n            \"Project created from Basic kanban template.\": \"已从基础看板模板创建项目。\",\n\n            \"Updated\": \"更新于\",\n            \"Filter cards\": \"筛选卡片\",\n                \"Narrow your search\": \"缩小搜索范围\",\n            // 工具栏\n            \"Add cards\": \"添加卡片\",\n                \"You can use the filters available in\": \"您可使用的筛选器在\",\n                \"issue search\": \"议题搜索\",\n                \"Loading search results…\": \"载入搜索结果…\",\n                \"Search results\": \"搜索结果\",\n            \"Fullscreen\": \"全屏\",\n            \"Exit fullscreen\": \"退出全屏\",\n            \"Menu\": \"菜单\",\n                \"This project doesn’t have a description.\": \"该项目没有描述。\",\n                \"Add description\": \"添加描述\",\n                \"Close project\": \"关闭项目\",\n                    \"Are you sure you want to close\": \"您确定要关闭\",\n                \"Activity\": \"活动\",\n                // ... 展开\n                \"Loading activity\": \"载入活动\",\n                \"View archive\": \"查看活动\",\n                \"Showing all activity\": \"显示所有活动\",\n            // 活动 状态词\n                \"added\": \"添加了\",\n                \"created the project\": \"创建了项目\",\n                \"updated the project\": \"更新了项目\",\n                \"created the column\": \"创建了栏目\",\n                \"To do.\": \"待办。\",\n                \"Done.\": \"已完成。\",\n                \"In progress.\": \"进行中。\",\n                \"archived\": \"存档了\",\n                \"restored\": \"恢复了\",\n                \"moved\": \"移动了\",\n                \"from\": \"来自\",\n                \"From\": \"来自\",\n\n            // 编辑对话框\n                \"Edit project\": \"编辑项目\",\n                \"Name\": \"名称\",\n                \"Description\": \"描述\",\n                \"Track project progress\": \"跟踪项目进度\",\n                    \"A progress bar will be displayed to help you visualize the overall progress of your project based on your automated To Do, In Progress, and Done columns.\": \"将显示一个进度条，以帮助您根据您的自动化的待办、进行中和已完成栏目，直观地了解项目的总体进展。\",\n                \"Save project\": \"保存项目\",\n                // [/Delete/, \"删除\"],\n                \"Once you delete a project, there is no going back. Please be certain.\": \"删除项目后，将无法撤回。请确认。\",\n                \"Delete project\": \"删除项目\",\n\n            // 复制项目\n                \"Copy project board\": \"复制项目面板\",\n                \"Your copy of this project includes column names and positions. Cards will not be copied.\": \"此项目的副本包括栏目名称和位置。卡片不会被复制。\",\n                \"Owner\": \"所有者\",\n                    \"Choose an owner\": \"选择所有者\",\n                    \"Search organizations and repositories\": \"搜索组织和仓库\",\n                    \"Suggested\": \"建议\",\n                    \"Everything else\": \"其他一切\",\n                \"Project board name\": \"项目面板名称\",\n                \"Copy project\": \"复制项目\",\n\n            // 存档的卡片\n                \"Archived cards\": \"存档的卡片\",\n                \"Loading archived cards…\": \"载入存档的卡片…\",\n                \"Show all archived cards\": \"显示所有存档卡片\",\n                \"Filter by note or issue title\": \"按注释或提议标题筛选\",\n                \"Column:\": \"栏目：\",\n                    \"All\": \"所有\",\n                \"Restore\": \"恢复\",\n                \"No archived cards\": \"无存档卡片\",\n                \"You haven't archived any cards yet.\": \"您尚未归档任何卡片。\",\n\n            \"This project doesn’t have any columns or cards.\": \"该项目没有任何栏目或卡片。\",\n\n            \"Add a column\": \"添加栏目\",\n            \"Add column\": \"添加栏目\",\n                \"Column name\": \"栏目名称\",\n                \"Enter a column name (To Do, In Progress, Done)\": \"输入栏目名称（待办、进行中、已完成）\",\n                \"Automation\": \"自动化\",\n                \"Choose a preset to enable progress tracking, automation, and better context sharing across your project.\": \"选择预设值，以便在您的项目中实现进度跟踪、自动化和更好的内容共享。\",\n                \"Loading…\": \"载入中…\",\n                \"Preset:\": \"预设：\",\n                    \"Select type\": \"选择类型\",\n                    \"None\": \"无\",\n                        \"This column will not be automated\": \"本栏目将不会自动化\",\n                    \"To do\": \"待办\",\n                        \"Planned but not started\": \"已计划但未开始\",\n                        \"Move issues here when…\": \"当…时，将议题移至此处\",\n                            \"Newly added\": \"新添加的\",\n                                \"Issues will automatically move here when added to this project.\": \"添加到此项目时，议题将自动移至此处。\",\n                            \"Reopened\": \"重新打开\",\n                                \"If a closed issue in this project reopens, it will automatically move here.\": \"如果此项目中已关闭的议题重新打开，它将自动移至此处。\",\n                        \"Move pull requests here when…\": \"当…时，将拉取请求移到此处\",\n                            \"Pull requests will automatically move here when added to this project.\": \"添加到此项目时，拉取请求将自动移至此处。\",\n                            \"If a closed pull request in this project reopens, it will automatically move here.\": \"如果此项目中已关闭的拉取请求重新打开，它将自动移至此处。\",\n                    \"In progress\": \"进行中\",\n                        \"Actively being worked on\": \"正在积极开展工作\",\n                        \"Approved by reviewer\": \"由审查者批准\",\n                        \"Pull requests in this project will automatically move here when they meet the minimum number of required approving reviews. Recommended when another column has the\": \"当该项目中的拉取请求达到所需的最低批准审查数时，将自动移至此处。当另一栏启用了 “\",\n                        \"automation enabled.\": \"” 的自动化功能时推荐使用。\",\n                        \"Pending approval by reviewer\": \"由审查者待批准\",\n                        \"Pull requests in this project will automatically move here when a reviewer requests changes, or it no longer meets the minimum number of required approving reviews. Recommended when another column has the\": \"当审查者请求更改或不再满足所需的最小批准审查数时，此项目中的拉取请求将自动移至此处。当另一栏目启用了 “\",\n                    \"Done\": \"已完成\",\n                        \"Items are complete\": \"项目已完成\",\n                        // 已关闭\n                            \"If an open issue in this project is closed, it will automatically move here.\": \"如果该项目中的一个打开的议题被关闭，它将自动转移到这里。\",\n                        \"Merged\": \"已合并\",\n                            \"If an open pull request in this project is merged, it will automatically move here.\": \"如果该项目中的一个打开的拉取请求被合并，它将自动转移到这里。\",\n                        \"Closed with unmerged commits\": \"已关闭的未合并的提交\",\n                            \"If an open pull request in this project is closed with unmerged commits, it will automatically move here.\": \"如果该项目中的一个打开的拉取请求因未合并提交而关闭，它将自动移到这里。\",\n                \"Create column\": \"创建栏目\",\n\n            \"Edit column\": \"编辑栏目\",\n            \"Manage automation\": \"管理自动化\",\n            \"Archive all cards\": \"存档所有卡片\",\n                \"Archiving cards...\": \"存档卡片…\",\n            \"Copy column link\": \"复制栏目链接\",\n            \"Delete column\": \"删除栏目\",\n\n            // \"Manage automation for To do\": \"管理待办的自动化\",\n            // \"Manage automation for In progress\": \"管理进行中的自动化\",\n            // \"Manage automation for Done\": \"管理已完成的自动化\",\n            \"Update automation\": \"更新自动化设置\",\n\n            \"Add a note to this column\": \"向此栏目添加注释\",\n            \"Enter a note\": \"输入注释\",\n            \"Add\": \"添加\",\n\n            // \"Edit To do\": \"编辑 “待办”\",\n            // \"Edit In progress\": \"编辑 “进行中”\",\n            // \"Edit Done\": \"编辑 “已完成”\",\n            \"Update column\": \"更新栏目\",\n\n            \"Cards\": \"卡片\",\n            \"Automation\": \"自动化\",\n\n            // \"Archive all cards in To do\": \"存档所有 “待办” 卡片\",\n            // \"Archive all cards in In progress\": \"存档所有 “进行中” 卡片\",\n            // \"Archive all cards in Done\": \"存档所有 “已完成” 卡片\",\n            \"Are you sure you want to archive all cards in the\": \"您确定要将存档所有卡片\",\n            \"column? You will not be able to undo this action.\": \"栏目？您将无法撤消此操作。\",\n\n            // \"Delete To do\": \"删除 “待办” \",\n            // \"Delete In progress\": \"删除 “进行中” \",\n            // \"Delete Done\": \"删除 “已完成” \",\n            \"This action will remove any cards and automation preset associated with the column.\": \"此操作将删除与该列关联的所有卡片和自动化预设。\",\n\n            \"Copy card link\": \"复制卡片链接\",\n            \"Convert to issue\": \"转换为议题\",\n                \"Convert note to issue\": \"转换注释为议题\",\n                \"Repository\": \"仓库\",\n                    \"Choose a repository for this issue\": \"为这个议题选择一个仓库\",\n                    \"Find a repository\": \"查找仓库\",\n                    \"Title\": \"标题\",\n                    \"Body\": \"内容\",\n            \"Edit note\": \"编辑注释\",\n                \"Note\": \"注释\",\n                \"Save note\": \"保存注释\",\n            \"Archive\": \"存档\",\n            \"Delete note\": \"删除注释\",\n                \"This will remove this note from the project\": \"这将从项目中删除该注释\",\n            \"New view\": \"新建视图\",\n            \"Layout\": \"布局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"时间线\",\n            \"Duplicate view\": \"复制视图\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分组\",\n            \"No grouping\": \"不进行分组\",\n            \"Markers\": \"标记\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不进行排序\",\n            \"Zoom level\": \"缩放级别\",\n            \"Field sum\": \"字段总和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不进行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成图表\",\n            \"Rename view\": \"重命名视图\",\n            \"Delete view\": \"删除视图\",\n            \"Export view data\": \"导出视图数据\",\n            \"Assignees\": \"负责人\",\n            \"Project templates\": \"项目模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用户设置\",\n            \"Truncate titles\": \"截断标题\",\n            \"Show date fields\": \"显示日期字段\",\n            \"Add status update\": \"添加状态更新\",\n            \"Project details\": \"项目详情\",\n            \"View more options\": \"查看更多选项\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加项目\",\n            \"Pin side panel\": \"固定侧边栏\",\n            \"Close panel\": \"关闭侧边栏\",\n            \"Add your first item\": \"添加您的第一个项目\",\n            \"Click \\\"Add Item\\\" to get started or use the shortcut\": \"点击 \\\"添加项目\\\" 以开始，或使用快捷键\",\n            \"OK, dismiss\": \"好的，忽略\",\n            \"Create new item or add existing item\": \"创建新项目或添加现有项目\",\n            \"Add field\": \"添加字段\",\n            \"Status column options\": \"状态栏目选项\",\n                \"Select column\": \"选择栏目\",\n                \"Sort ascending\": \"升序\",\n                \"Sort descending\": \"降序\",\n                \"Filter by values…\": \"按值筛选…\",\n                \"Group by values\": \"按值分组\",\n                \"Slice by values\": \"按值切片\",\n                \"Hide field\": \"隐藏字段\",\n                \"Field settings…\": \"字段设置…\",\n                    \"Status field settings\": \"状态字段设置\",\n                    \"fields are created by GitHub and cannot be renamed.\": \"字段是由 GitHub 创建的，无法重命名。\",\n                    \"Todo\": \"待办\",\n                    \"In Progress\": \"进行中\",\n                    \"Open field actions for Todo\": \"打开待办字段操作\",\n                    \"Open field actions for In Progress\": \"打开进行中字段操作\",\n                    \"Open field actions for Done\": \"打开已完成字段操作\",\n                    \"Edit option\": \"编辑选项\",\n                        \"Label text\": \"标签文本\",\n                        \"Color\": \"颜色\",\n                        \"Visible in group headers and value pickers\": \"在分组头和值选择器中可见\",\n                    \"Advanced Move...\": \"高级移动…\",\n                        \"Move selected item\": \"移动选定项目\",\n                        \"Item\": \"项目\",\n                        \"Action\": \"操作\",\n                            \"Move item before\": \"移动项目之前\",\n                            \"Move item after\": \"移动项目之后\",\n                            \"Move to position\": \"移动到位置\",\n                            \"Move\": \"移动\",\n                    \"Remove option\": \"删除选项\",\n                    \"Add option…\": \"添加选项…\",\n                \"Move left\": \"向左移动\",\n                \"Move right\": \"向右移动\",\n                    \"This is the right-most column\": \"这是最右边的栏目\",\n\n                \"Sub-issues progress field settings\": \"子议题进度字段设置\",\n                \"Show numerical value\": \"显示数值\",\n                \"Saved!\": \"保存成功！\",\n                \"Custom field options\": \"自定义字段选项\",\n                    \"Reorder fields\": \"重新排序字段\",\n                    \"Reorder custom fields\": \"重新排序自定义字段\",\n                    \"Change the order in which custom fields appear on project items and in field lists.\": \"更改自定义字段在项目项和字段列表中出现的顺序。\",\n                    \"Edit field\": \"编辑字段\",\n                    \"Move field...\": \"移动字段…\",\n            \"Reviewers\": \"审查者\",\n            \"Parent issue\": \"父议题\",\n            \"Sub-issues progress\": \"子议题进度\",\n            \"Create new issue\": \"创建新议题\",\n                \"Templates and forms\": \"模板和表单\",\n                \"Create a new issue from scratch\": \"从头开始创建新议题\",\n                \"Select repository\": \"选择仓库\",\n                \"Copy link\": \"复制链接\",\n                \"Blank issue\": \"空白议题\",\n            \"Add item from repository\": \"从仓库添加项目\",\n                \"No items to add\": \"无项目可添加\",\n                \"This repository is either empty or all items were already added to this project.\": \"此仓库要么为空，要么所有项目都已添加到此项目中。\",\n                \"Select an item\": \"选择一个项目\",\n                \"Search for issues and pull requests\": \"搜索议题和拉取请求\",\n                \"Add selected items\": \"添加选定项目\",\n                \"Select all items\": \"选择所有项目\",\n            \"Search by username\": \"按用户名搜索\",\n            \"Admin\": \"管理员\",\n            \"Can see, make changes to, and add new collaborators to this project.\": \"可以查看、更改和添加新的协作者到此项目。\",\n            \"Can see and make changes to this project.\": \"可以查看和更改此项目。\",\n            \"Read\": \"只读\",\n            \"Can see this project.\": \"可以查看此项目。\",\n            \"Invite\": \"邀请\",\n            \"Role:\": \"角色：\",\n            \"Find a collaborator\": \"查找协作者\",\n            \"Show\": \"显示\",\n            \"Hide\": \"隐藏\",\n            \"empty values\": \"空值\",\n            \"Assignees column options\": \"负责人栏目选项\",\n            \"Title column options\": \"标题栏目选项\",\n                \"Filter by type or state…\": \"按类型或状态筛选…\",\n                \"This is the left-most column\": \"这是最左边的栏目\",\n            \"Welcome to Roadmap!\": \"欢迎使用时间线！\",\n            \"Your project needs at least one date or iteration field to get started.\": \"您的项目需要至少一个日期或迭代字段才能开始。\",\n            \"Got it!\": \"明白了！\",\n            \"Start date\": \"开始日期\",\n            \"No start date\": \"无开始日期\",\n            \"Target date\": \"目标日期\",\n            \"No target date\": \"无目标日期\",\n            \"Items\": \"项目\",\n            \"Archive all\": \"存档所有\",\n            \"Delete all\": \"删除所有\",\n            \"Column\": \"栏目\",\n            \"Set limit\": \"设置限制\",\n            \"Edit details\": \"编辑详情\",\n            \"Hide from view\": \"从视图中隐藏\",\n            \"Position\": \"位置\",\n            \"You choose who can read, write, and admin this project.\": \"您选择谁可以读取、写入和管理此项目。\",\n            \"on the internet\": \"在互联网上\",\n            \"has read access to this project. You choose who has write and admin access.\": \"有读取访问权限到此项目。您选择谁有写入和管理访问权限。\",\n            \"Add Files\": \"添加文件\",\n            \"Save update\": \"保存更新\",\n            \"Select a status\": \"选择一个状态\",\n                \"Filter statuses\": \"筛选状态\",\n            \"Clear\": \"清除\",\n            \"Start typing to create a draft, or type # to select a repository\": \"开始输入以创建草案，或输入 # 选择一个仓库\",\n            \"Scroll to previous date range\": \"滚动到上一个日期范围\",\n            \"Scroll to next date range\": \"滚动到下一个日期范围\",\n            \"Filter by keyword or by field\": \"按关键字或字段筛选\",\n            \"Discard\": \"放弃\",\n            \"Save changes to new view\": \"保存更改到新视图\",\n            \"Visible fields\": \"可见字段\",\n            \"Hidden fields\": \"隐藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"栏目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存档项目\",\n            \"Make a copy\": \"复制\",\n            \"GitHub Projects\": \"GitHub 项目\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"项目设置\",\n            \"Project name\": \"项目名称\",\n            \"Short description\": \"简短描述\",\n            \"More options\": \"更多选项\",\n            \"Make a copy of this project.\": \"复制此项目\",\n            \"Danger zone\": \"危险区\",\n            \"This project is currently private.\": \"此项目当前为私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"关闭项目将禁用其工作流程，并将其从打开项目列表中删除.\",\n            \"Close this project\": \"关闭此项目\",\n            \"Manage access\": \"管理访问权限\",\n            \"Who has access\": \"谁有访问权限\",\n            \"Private project\": \"私有项目\",\n            \"Only those with access to this project can view it.\": \"只有有权访问此项目的人才能查看它.\",\n            \"Invite collaborators\": \"邀请协作者\",\n            \"Manage access\": \"管理访问权限\",\n            \"Custom fields\": \"自定义字段\",\n            \"Field name\": \"字段名称\",\n            \"Field type\": \"字段类型\",\n            \"Text\": \"文本\",\n            \"Number\": \"数字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"单选\",\n            \"Starts on\": \"开始于\",\n            \"Duration\": \"持续时间\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存并创建\",\n            \"You don't have any collaborators yet.\": \"您还没有任何协作者.\",\n            \"Add a collaborator to see them here.\": \"添加协作者以在此处查看他们.\",\n            \"Make template\": \"制作模板\",\n            \"Copy as template\": \"复制为模板\",\n            \"Visibility\": \"可见性\",\n            \"Close project\": \"关闭项目\",\n            \"Delete project\": \"删除项目\",\n            \"Delete this project\": \"删除此项目\",\n            \"Status chart\": \"状态图表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此图表显示了项目中所有项目的当前状态。\",\n            \"No data available\": \"无可用数据\",\n            \"No results were returned.\": \"未返回任何结果。\",\n            \"Default charts\": \"默认图表\",\n            \"Custom charts\": \"自定义图表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置图表\",\n            \"Group by (optional)\": \"分组 (可选)\",\n            \"X-axis\": \"X 轴\",\n            \"Y-axis\": \"Y 轴\",\n            \"Save to new chart\": \"保存到新图表\",\n            \"Add a project status update\": \"添加项目状态更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"状态更新是跟踪项目健康和进度的简要报告. 从添加更新开始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"让每个人都知道这个项目是关于什么的，如何使用它，并链接到重要资源.\",\n            \"A short description about this project.\": \"关于此项目的简短描述.\",\n            \"You can use\": \"您可以使用\",\n            \"to add an item\": \"来添加项目\",\n\n        // 自动化看板模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Automated kanban template.\": \"已从自动化看板模板创建项目。\",\n\n            \"Automated as\": \"自动化为\",\n            \"Manage\": \"管理\",\n\n            // 管理自动化 补充\n            \"The\": \" \",\n            \"column is already using this rule.\": \"栏目已在使用此规则。\",\n\n            // 复制项目面板 补充\n            \"Your copy of this project includes column names, positions, and automation settings. Cards will not be copied.\": \"此项目的副本包括栏目名称、位置和自动化设置。卡片不会被复制。\",\n            \"Automation settings\": \"自动化设置\",\n            \"Copy automation settings.\": \"复制自动化设置。\",\n            \"Includes automation settings for\": \"包括自动化设置，关于\",\n            \"To do, In progress, and Done\": \"待办、进行中和已完成\",\n\n\n            \"Pull Request closed without merge\": \"拉取请求关闭而不合并\",\n            \"Pull Request merged\": \"合并拉取请求\",\n            \"Issue closed\": \"议题已关闭\",\n            \"Pull Request reopened\": \"拉取请求已重新打开\",\n            \"Issue reopened\": \"议题已重新打开\",\n            \"Pull Request pending card added\": \"添加了拉取请求待办卡\",\n            \"Issue pending card added\": \"添加了议题待办卡\",\n\n            \"automation\": \"自动化\",\n            \"to the\": \"到\",\n            \"column.\": \"栏目。\",\n\n        // 自动看板与审查模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Automated kanban with reviews template.\": \"已从自动看板与审查模板创建项目。\",\n\n        // 错误分类模板项目 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 顶部提醒\n            \"Project created from Bug triage template.\": \"已从错误分类模板创建项目。\",\n\n            \"Needs triage\": \"需要分流\",\n            \"High priority\": \"高优先级\",\n            \"Low priority\": \"低优先级\",\n\n        // https://github.com/users/<user-name>/projects/<id>/settings\n            \"Collaboration settings\": \"协作设置\",\n                \"Options\": \"选项\",\n                    \"Visibility\": \"可见性\",\n                    \"Visibility settings only impact the project itself. Project content that belongs to a repository the user does not have access to will be redacted.\": \"可见性设置只影响项目本身。属于用户无权访问的仓库的项目内容将被编辑。\",\n                    \"Public\": \"公开\",\n                        \"Anyone on the internet can see this project. You choose who can make changes.\": \"互联网上的任何人都可以看到这个项目。您选择谁可以进行更改。\",\n                    \"Private\": \"私密\",\n                        \"You choose who can see and make changes to this project.\": \"您可以选择谁查看此项目并对其进行更改。\",\n            // 协作者\n                \"This project doesn’t have any collaborators yet. Use the form below to add a collaborator.\": \"该项目还没有任何协作者。使用下面的表格添加协作者。\",\n                \"Search by username, full name or email address\": \"搜索用户名、全名、或电子邮箱\",\n\n                \"You’ll only be able to find a GitHub user by their email address if they’ve chosen to list it publicly. Otherwise, use their username instead.\": \"只有当 GitHub 用户选择公开电子邮箱地址时，您才能通过他们的电子邮箱地址找到他们。否则，请使用他们的用户名代替。\",\n                \"Add collaborator\": \"Add collaborator\",\n                // [/isn’t a GitHub member/, \"不是 GitHub 成员\"],\n            \"Linked repositories\": \"关联的仓库\",\n                \"Link a repository\": \"关联仓库\",\n                \"Get more accurate suggestions and better search results by linking up to 25 repositories to this project.\": \"通过将多达 25 个仓库关联到这个项目，获得更准确的建议和更好的搜索结果。\",\n                // [/(\\d+) linked repositories/, \"$1 个关联仓库\"],\n                \"This project doesn’t have any linked repositories yet.\": \"该项目暂无任何关联的仓库。\",\n\n        // https://github.com/users/<user-name>/projects/<id>/edit\n            \"(optional)\": \"(可选)\",\n            \"Once you delete this project, there is no going back. Please be certain.\": \"一旦您删除了这个项目，就再也无法恢复。请确认。\",\n    },\n    \"regexp\": [ // 正则翻译\n        [/updated/, \"更新于\"],\n        [/View (\\d+)/, \"视图 $1\"],\n        [/Delete/, \"删除\"],\n        [/Edit/, \"编辑\"],\n        // 1 member\n        [/(\\d+) member/, \"$1 成员\"],\n        [/Manage automation for/, \"管理自动化\"],\n        [/Archive all cards in/, \"存档所有\"],\n        [/(\\d+) linked repositories/, \"$1 个关联仓库\"],\n        [/([\\d,]+) Open/, \"$1 打开\"], // 项目标签卡\n        [/([\\d,]+) Closed/, \"$1 已关闭\"],\n        [/(\\d+) tasks? done/, \"$1 个任务完成\"],\n        // Showing 1 most recent item that has not been added to this project\n        [/Showing (\\d+) most recent item that has not been added to this project/, \"显示 $1 个最近的项目，尚未添加到此项目\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Projects/, \"项目\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"new/project\"] = I18N[\"zh-CN\"][\"projects\"];\nI18N[\"zh-CN\"][\"repository/projects/new\"] = I18N[\"zh-CN\"][\"projects\"];\nI18N[\"zh-CN\"][\"repository/projects\"] = I18N[\"zh-CN\"][\"projects\"];\n\nI18N[\"zh-CN\"][\"redeem\"] = { // 兑换页面\n    \"static\": { // 静态翻译\n        \"Enter coupon code\": \"输入优惠券代码\",\n        \"Redeem\": \"兑换\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/signup\"] = { // GitHub Copilot 个人版获取页面\n    \"static\": { // 静态翻译\n    ...I18N[\"zh-CN\"][\"settings/copilot\"][\"static\"],\n\n        // https://github.com/github-copilot/signup\n           \"GitHub Copilot Individual\": \"GitHub Copilot 个人版\",\n           //\"The world's most widely adopted AI developer tool.\": \"世界上采用最广泛的人工智能开发工具。\",\n           //\"GitHub Copilot is powered by generative AI to help you code faster and happier!\": \"GitHub Copilot 是由生成式 AI 驱动的，旨在帮助您更快乐、更高效地编码！\",\n           \"For developers who want unlimited access to GitHub Copilot.\": \"适用于希望无限制访问 GitHub Copilot 的开发人员。\",\n           \"Start your 30-day free trial\": \"开始 30 天免费试用\",\n               //\"GitHub Copilot uses the GPT-3.5 Turbo model to offer coding suggestions.\": \"GitHub Copilot 使用 GPT-3.5 Turbo 模型提供编码建议。\",\n               //\"Chat with Copilot for assistance on a wide variety of scenarios, such as project-specific code explanations or help with debugging\": \"与 Copilot 聊天以获取有关各种场景的帮助，例如特定于项目的代码解释或调试帮助\",\n               //\"Get code suggestions as you type in more than a dozen coding languages, including Python, JavaScript, TypeScript, Go, and Ruby\": \"支持超过十种编程语言的代码建议，包括 Python、JavaScript、TypeScript、Go 和 Ruby。\",\n               //\"Plugs into IDEs, including VS Code, Visual Studio, JetBrains IDEs, and Neovim\": \"可以与包括 VS Code、Visual Studio、Neovim 和 JetBrains 在内的集成开发环境（IDE）配合使用\",\n               //\"Sign up for an annual subscription and get two months free!\": \"注册年度订阅，可享受两个月免费福利。\",\n               \"Copilot Pro includes everything you get for free, plus:\": \"Copilot Pro 包括免费版所有内容，此外还有：\",\n                   \"Unlimited code completions and chat interactions\": \"无限代码完成和聊天互动\",\n                   \"Access to more models, like OpenAI o1 and Gemini 1.5 Pro\": \"访问更多模型，如 OpenAI o1 和 Gemini 1.5 Pro\",\n                   \"Works in GitHub Mobile, CLI, and Windows Terminal\": \"可在 GitHub 移动端、CLI 和 Windows 终端中使用\",\n                   \"Cancel anytime before the trial ends to avoid getting billed\": \"在试用期结束前随时取消，以避免收费。\",\n\n           \"Pay frequency after trial\": \"试用结束后付费频率\",\n               \"Monthly plan\": \"月度计划\",\n               \"/month\": \"/ 月\",\n               \"Yearly plan\": \"年度计划\",\n               \"Save $20!\": \"节省 $20 ！\",\n               \"/year\": \"/ 年\",\n\n            \"Or get GitHub Copilot from an organization\": \"您可以通过组织获取 GitHub Copilot\",\n                \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"组织可以为其成员（包括您）和团队提供访问 GitHub Copilot 的权限。\",\n                \"Access Copilot from an organization\": \"从组织中访问 GitHub Copilot。\",\n\n           \"Get access to GitHub Copilot\": \"获取 GitHub Copilot 使用权限\",\n\n           \"Next: Confirm your payment details\": \"下一步：确认您的付款详细信息\",\n\n           \"GitHub Copilot is free for maintainers of popular open source software on GitHub and verified students. Check out the\": \"GitHub Copilot 对于在 GitHub 上维护流行开源软件的人员和经过验证的学生是免费的。查看\",\n           \"free use FAQ\": \"免费使用常见问题解答（FAQ）\",\n           \"for more details.\": \"以获取更多详细信息。\",\n\n        // https://github.com/github-copilot/signup/success\n        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n        \"Select your preferences\": \"设置规则\",\n            \"You can change these at any time from your account settings.\": \"您稍后可以在账户设置内更改。\",\n\n            // 此处引用 I18N[\"zh-CN\"][\"settings/copilot\"]部分词条\n\n            \"Save and complete setup\": \"保存并继续\",\n\n        // https://github.com/github-copilot/signup/settings\n            \"GitHub Copilot is now ready\": \"GitHub Copilot 已就绪\",\n                \"Add it to your editor and start building.\": \"添加至您的编辑器并开始构建\",\n\n            \"Install the GitHub Copilot extension\": \"安装 GitHub Copilot 扩展\",\n                \"You can now use GitHub Copilot on the GitHub website. To use Copilot in your IDE, you first need to install the GitHub Copilot extension. To install for your preferred code editor, check out these Getting Started guides:\": \"您现在可以在 GitHub 网站上使用 GitHub Copilot。要在 IDE 中使用 Copilot，您需要安装 GitHub Copilot 扩展。请查看这些入门指南：\",\n\n            \"If you have the extension already installed for your code editor and have it open, please restart your editor in order to access GitHub Copilot.\": \"如果您的代码编辑器中已经安装了扩展并且是打开状态，请重启您的编辑器以使用 GitHub Copilot。\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/free_signup\"] = { // GitHub Copilot 个人免费版获取页面\n    \"static\": { // 静态翻译\n\n        \"Your AI pair programmer\": \"您的 AI 编程助理\",\n\n        // https://github.com/github-copilot/free_signup\n           \"Use GitHub Copilot for free\": \"免费使用 GitHub Copilot\",\n               \"🎉 Congratulations! You are eligible to use GitHub Copilot for free.\": \"🎉恭喜！您有资格免费使用 GitHub Copilot。\",\n               \"Get code suggestions in more than a dozen coding languages including Python, JavaScript, TypeScript, Go, and Ruby\": \"获取十多种编码语言的代码建议，包括 Python、JavaScript、TypeScript、Go 和 Ruby\",\n               \"Plugs into IDEs including VS Code, Visual Studio, Neovim, and JetBrains\": \"IDE 扩展，包括 VS Code、Visual Studio、Neovim 和 JetBrains\",\n           \"Eligibility requirements\": \"资格要求\",\n            \"GitHub Copilot is free to use for open source maintainers, teachers and students. We check eligibility monthly, per our policies.\": \"GitHub Copilot 对开源维护者、教师和学生免费开放。根据我们的政策，我们每月检查一次使用资格。\",\n           \"Get access to GitHub Copilot\": \"获取 GitHub Copilot 使用权限\",\n\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"github-copilot/pro\"] = { // GitHub Copilot 专业版适用页面\n    \"static\": {\n        // https://github.com/github-copilot/pro\n            \"Try Copilot Pro for 30 days free\": \"免费试用 Copilot Pro 30 天\",\n\n            \"Everything in Copilot Free and:\": \"Copilot 免费版的所有功能以及：\",\n                \"Unlimited agent mode and chat with GPT-4.1\": \"无限智能体 GPT-4.1 畅聊\",\n                \"Unlimited code completions\": \"无限代码补全\",\n                \"Access to Anthropic Claude Sonnet 4, GPT-5, Gemini 2.5 Pro, and more\": \"可访问 Anthropic Claude Sonnet 4、GPT-5、Gemini 2.5 Pro 等模型\",\n                \"300 premium requests to use the latest models and code review\": \"300 次高级请求，用于使用最新模型和代码审查\",\n\n            \"Try now\": \"立即试用\",\n                \"Part of an organization? Upgrade to\": \"属于某个组织吗？升级到\",\n                    \"Copilot Business\": \"Copilot 商业版\",\n                    \"to enable across teams.\": \"，以便在整个团队中启用。\",\n\n            \"Upgrade now\": \"现在升级\",\n\n        // https://github.com/github-copilot/pro/signup?\n            \"Copilot Pro checkout\": \"Copilot Pro 结账\",\n            \"Free for 30 days\": \"免费试用 30天\",\n            \"Subscribe to GitHub Copilot Pro\": \"订阅 GitHub Copilot Pro\",\n                \"Everything in Free, plus unlimited chats and code completions, premium model access (Claude 3.7/4 and more), and 6x more premium requests.\": \"免费提供所有服务，包括无限聊天和代码补全，高级模型访问权限（Claude 3.7/4 及更多），以及 6 倍以上的高级请求量。\",\n                \"Review\": \"审查\",\n\n            ...I18N[\"zh-CN\"][\"payment-module\"][\"static\"], // 调用通用账单及支付信息模块\n\n            \"Billing frequency\": \"支付频率\",\n                \"Pay monthly\": \"按月支付\",\n                    \"/ month\": \"/月\",\n                \"Pay yearly\": \"按年支付\",\n                    \"/ year\": \"/年\",\n                    \"Save $20.00\": \"节省 $20.00\",\n\n            \"- Free trial\": \"- 免费试用\",\n\n            \"You will be billed $100.00/year starting\": \"您将每年被收取 $100.00 自：\",\n            \"You will be billed $10.00/month starting\": \"您将每月被收取 $10.00 自：\",\n\n            \"To prevent abuse, we require billing information upfront. Your 30-day free trial will automatically convert to a paid plan after the trial ends. You can cancel anytime from settings before the trial expires to avoid being billed.\": \"为防止滥用，我们要求提前提供账单信息。您的 30 天免费试用将在试用结束后自动转换为付费计划。您可以在试用到期前从设置中随时取消，以避免被收费。\",\n\n            \"Yes please, I'd like GitHub and affiliates to use my information for personalized communications, targeted advertising and campaign effectiveness. The information used includes, but is not limited to, name、email address and country.\": \"好的。我希望 GitHub 及其附属机构能使用我的信息进行个性化沟通、精准广告和活动效果提升。所使用的信息包括但不限于姓名、电子邮件地址和国家。\",\n            \"See the\": \"请参阅\",\n            \"GitHub Privacy Statement\": \"GitHub 隐私声明\",\n            \"for more details.\": \"获取更多详情。\",\n\n            \"Participation requires transferring your personal data to other countries in which GitHub operates, including the United States. By submitting this form, you agree to the transfer of your data outside of China.\": \"参与需要将您的个人数据转移到 GitHub 运营的其他国家，包括美国。通过提交此表单，您同意将您的数据转移到中国以外的地方。\",\n            \"Activate now\": \"立即激活\",\n\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"orgs/enterprise_plan\"] = { // 企业版订阅页面\n    \"static\": {\n        // https://github.com/organizations/enterprise_plan\n            \"Pick your trial plan\": \"选择您的试用计划\",\n            \"Recommended\": \"推荐\",\n                \"Enterprise Cloud\": \"企业云\",\n                    \"Build and deploy to GitHub-hosted cloud environments, directly from your repositories.\": \"直接从您的仓库构建并部署到 GitHub 托管的云环境。\",\n                \"Enterprise Server\": \"企业服务器\",\n                    \"Manage and deploy GitHub Enterprise on your own servers, including AWS, Azure, or GC\": \"在您自己的服务器（包括 AWS、Azure 或 GC）上管理和部署 GitHub 企业版\",\n            \"Why teams\": \"为何团队\",\n            \"it: Get started in minutes, and leave the infrastructure to us.\": \"它：只需几分钟即可开始使用，基础设施则交给我们来处理。\",\n            \"it: Control where your code and data live in a private cloud.\": \"它：控制您的代码和数据在私有云中的存放位置。\",\n    },\n    \"regexp\": [ // 正则翻译\n    ],\n};\n\nI18N[\"zh-CN\"][\"codespaces\"] = { // 代码空间页面\n    \"static\": {\n        // 顶部\n            \"Help us improve GitHub Codespaces\": \"帮助我们改进 GitHub 代码空间\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通过三个简单的问题告诉我们如何让 GitHub 代码空间更适合您。\",\n\n        // 维护提示\n            \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间正在维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n            \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"代码空间将进行维护。在此期间，用户可能会遇到连接问题。更多详情请访问\",\n            \"this announcement\": \"此公告\",\n\n        // https://github.com/codespaces\n            \"Your codespaces\": \"您的代码空间\",\n\n            \"All\": \"所有\",\n            \"Templates\": \"模版\",\n            \"By repository\": \"按仓库\",\n                \"Created from a template\": \"通过模板创建\",\n\n            \"Your instant dev environment\": \"您的即时开发环境\",\n            \"Go from code to commit faster on any project.\": \"在任何项目中，从代码到提交速度更快。\",\n            \"Go to docs\": \"转到文档\",\n            \"New codespace\": \"新建代码空间\",\n            \"Explore quick start templates\": \"浏览快速入门模板\",\n            \"See all\": \"查看所有\",\n            \"Use this template\": \"使用此模版\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 代码空间入门\",\n            \"Learn core concepts\": \"学习核心概念\",\n            \"Configure and manage\": \"配置和管理\",\n            \"Develop locally\": \"在本地开发\",\n            \"New to Codespaces?\": \"刚接触代码空间？\",\n            \"Start here\": \"从这里开始\",\n            \". Learn the core concepts and how to get started.\": \"。学习核心概念以及如何开始。\",\n            \"Learn more about features like\": \"了解更多关于功能的信息，例如\",\n            \"secret management\": \"机密管理\",\n            \"port forwarding\": \"端口转发\",\n            \"Access codespaces from within\": \"从内部访问代码空间，使用\",\n\n            \"Request Usage Report\": \"请求使用报告\",\n\n            \"Retrieving…\": \"正在检索…\",\n            \"Active\": \"活跃\",\n            \"Last used\": \"上次使用\",\n            \"Show more actions for codespace\": \"显示代码空间的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名代码空间\",\n                    \"Name\": \"名称\",\n                \"Export changes to a branch\": \"将更改导出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"这将创建一个包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"检查分支情况\",\n                    \"Create branch\": \"创建分支\",\n                \"Export changes to a fork\": \"将更改导出到复刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您没有对此代码空间的仓库的写访问权限。这将创建一个新的仓库分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，将代码空间重新分配给该复刻，并将更改导出到新分支。\",\n                    \"Create fork\": \"创建复刻\",\n                \"Publish to a new repository\": \"发布到新仓库\", // 从模板创建\n                    \"This will create a new repository and push up your work.\": \"这将创建一新仓库，并推送您的工作。\",\n                    // 公共\n                        \"Anyone on the internet can see this repository. You choose who can commit.\": \"互联网上的任何人都可以看到该仓库。您可以选择谁可以提交。\",\n                    // 私有\n                        \"You choose who can see and commit to this repository.\": \"您选择谁可以查看并提交到此仓库。\",\n                    \"Create repository\": \"创建仓库\",\n                \"Change machine type\": \"修改机器类型\",\n                    \"Change codespace machine type\": \"修改代码空间机器类型\",\n                        \"Machine type\": \"机器类型\",\n                            \"2-core\": \"双核\",\n                            \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n                        \"Update codespace\": \"更新代码空间\",\n                \"Stop codespace\": \"停止代码空间\",\n                \"Delete\": \"删除\",\n                    \"Are you sure?\": \"您确定吗？\",\n                \"Auto-delete codespace\": \"自动删除代码空间\",\n                \"Open in Browser\": \"在浏览器中打开\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打开\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打开\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打开\",\n                \"Start is temporarily disabled\": \"启动暂时被禁用\",\n\n                \"Expiring in\": \"最后使用\", // GitHub 的烂活，原为过期，但居然还能重新打开\n\n            \"Created from\": \"创建自\",\n            \"2-core • 8GB RAM • 32GB\": \"双核 • 8GB 内存 • 32GB 硬盘\",\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 内存 • 32GB 硬盘\",\n\n            // 警告\n                \"You're at 100% of your included usage for this billing period. For more information, view your\": \"您已使用了本计费周期的 100% 额度。有关更多信息，请查看您的\",\n                \"billing settings\": \"账单设置\",\n                \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了账单问题。请调整您的账单设置以继续使用代码空间。\",\n\n            // 状态\n                \"No changes\": \"没有更改\",\n                \"This codespace has uncommitted changes\": \"此代码空间有未提交的更改\",\n\n        // https://github.com/codespaces/templates\n            \"Choose a template\": \"选择模版\",\n            \"Start a codespace from a template and get to developing with the power of a virtual machine in the cloud.\": \"从模板开始创建代码空间，然后利用云中虚拟机的能力进行开发。\",\n            \"Use this template\": \"使用此模版\",\n\n        // https://github.com/codespaces/new\n            \"Create a new codespace\": \"新建代码空间\",\n            \"Codespace usage for this repository is paid for by\": \"该仓库的代码空间使用费由以下人员支付\",\n            \"Repository\": \"仓库\",\n                \"To be cloned into your codespace\": \"要被克隆到您的代码空间\",\n                \"Select a repository\": \"选择仓库\",\n                \"Search for a repository\": \"查找仓库\",\n                \"Select repository\": \"选择仓库\",\n            \"Branch\": \"分支\",\n                \"This branch will be checked out on creation\": \"创建时将显示此分支\",\n                \"Default branch\": \"默认分支\",\n                \"Default Branch\": \"默认分支\",\n                \"Select branch\": \"选择分支\",\n                \"Find a branch\": \"查找分支\",\n                \"Switch branches\": \"切换分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"default\": \"默认\",\n                \"branches\": \"分支\",\n            \"Region\": \"区域\",\n                \"Your codespace will run in the selected region\": \"您的代码空间将在所选区域运行\",\n                \"US East\": \"美国东部\",\n                \"US West\": \"美国西部\",\n                \"Europe West\": \"欧洲西部\",\n                \"Southeast Asia\": \"东南亚\",\n                \"Australia\": \"澳大利亚\",\n            \"Machine type\": \"机器类型\",\n                \"Resources for your codespace\": \"代码空间的资源\",\n                \"None\": \"无\",\n                \"2-core\": \"双核\",\n                \"8GB RAM • 32GB\": \"8GB 内存 • 32GB 硬盘\",\n                \"4-core\": \"四核\",\n                \"16GB RAM • 32GB\": \"16GB 内存 • 32GB 硬盘\",\n            \"Dev container configuration\": \"开发容器配置\",\n                \"Your codespace will use this configuration\": \"您的代码空间将使用此配置\",\n            \"Create codespace\": \"新建代码空间\",\n            \"Creating codespace\": \"新建代码空间中\",\n\n        // https://github.com/codespaces/new?hide_repo_select=true&ref=<branch-name>&repo=<repo-id>\n            \"Create codespace for\": \"创建代码空间\",\n\n        // 在拉取请求上创建代码空间 https://github.com/codespaces/new/<user-name>/<repo-name>/pull/<pull-id>?resume=1\n            \"Get started with development in the cloud from an existing repository or a template.\": \"从现有仓库或模板开始云开发。\",\n            \"Find out more about codespaces.\": \"了解更多关于代码空间的信息。\",\n\n            \"Start coding\": \"开始编程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件并在安全、可配置和专用的开发环境中开始编码。\",\n\n            // 警示\n                \"You cannot create a codespace on a closed pull request. Please reopen it if you wish to create a new codespace.\": \"您无法在已关闭的拉取请求上创建代码空间。如果您想创建新的代码空间，请重新打开它。\",\n\n            \"No codespace to resume\": \"没有可恢复的代码空间\",\n                \"You don't have a codespace matching these settings. You can continue to create a new one or customize your settings.\": \"您没有符合这些设置的代码空间。您可以继续创建一个新空间或自定义设置。\",\n\n            \"Change options\": \"更改选项\",\n            \"new codespace\": \"新代码空间\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=vscode\n            \"Launching Visual Studio Code\": \"正在启动 Visual Studio Code\",\n            \"You should have received a prompt to open Visual Studio Code. If not, ensure it is\": \"您应该已经收到打开 Visual Studio Code 的提示。如果没有，请确保它已\",\n            \"installed\": \"被安装\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=jetbrains\n            \"Launching JetBrains Gateway\": \"正在启动 JetBrains Gateway\",\n            \"You should have received a prompt to open the JetBrains Gateway. If not, ensure it is\": \"您应该已经收到打开 JetBrains Gateway 的提示。如果没有，请确保它已\",\n    },\n    \"regexp\": [\n        [/By ([^ ]+)/, \"$1 发布\"],\n        [/Owned by ([^ ]+)/, \"拥有者为 $1\"],\n        //[/Last used (\\d+) days ago/, \"上次使用 $1 天前\"],\n        //[/Last used 大约 (\\d+) 小时之前/, \"上次使用大约 $1 小时以前\"],\n        //[/Last used less than (\\d+) 分钟之前/, \"上次使用小于 $1 分钟以前\"],\n        //[/Last used (\\d+) 分钟之前/, \"上次使用 $1 分钟以前\"],\n        [/Codespace \"(.+)\" stopped./, \"代码空间 “$1” 停止。\"],\n        [/Codespace \"(.+)\" deleted./, \"代码空间 “$1” 删除。\"],\n        [/Your codespace \"(.+)\" has been updated./, \"您的代码空间 “$1” 已更新。\"],\n        [/Your codespace \"(.+)\" will no longer be auto-deleted./, \"您的代码空间 “$1” 将不再自动删除。\"],\n        [/Your codespace \"(.+)\" has been updated to use machine type: \"(\\d+) cores, (\\d+) GB RAM, (\\d+) GB storage\". Changes will take effect the next time your codespace restarts./, \"您的代码空间“$1”将更新机器类型为：“$2 核，$3 GB 内存，$4 GB 存储”。更改将在下次启动代码空间时生效。\"],\n        [/Are you sure you want to delete/, \"您确定要删除\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您确定要删除吗？\"],\n        [/Last used (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `最后使用${translatedDate}`;\n        }],\n        [/This codespace is (\\d+) commits? ahead of remote and has uncommitted changes/, \"此代码空间 $1 条提交领先远端且有未提交更改\"],\n        [/This codespace is (\\d+) commits? ahead of remote/, \"此代码空间 $1 条提交领先远端\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"代码空间\",\n            \"Codespace templates\": \"代码空间模版\",\n            \"Create new codespace\": \"创建代码空间\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"codespaces/allow_permissions\"] = { // 代码空间申请额外权限页面，似乎不可用\n    \"static\": {\n        \"This codespace is requesting\": \"该代码空间要求\",\n        \"additional permissions\": \"额外权限\",\n\n        \"Your codespace is requesting the following permissions for these repositories:\": \"您的代码空间正在为这些仓库申请以下权限：\",\n\n        \"The following permissions were also requested but are not available. You can continue but the codespace may not function as intended.\": \"以下权限已申请，但不可用。您可以继续，但代码空间可能无法正常运行。\",\n\n        \"Contents:\": \"内容：\",\n            \"write\": \"写入\",\n\n        \"Continue without authorizing\": \"不授权继续\",\n        \"Authorize and continue\": \"授权并继续\",\n    },\n    \"regexp\": [\n        [/(\\d+) permissions? requested/, \"要求 $1 项权限\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"developer/register\"] = { // 开发者注册\n    \"static\": {\n        // https://github.com/developer/register\n            // 标题\n                \"Register for the\": \"注册\",\n                \"GitHub Developer Program\": \"GitHub 开发者计划\",\n                \"The best way to integrate with GitHub.\": \"与 GitHub 集成最佳方法。\",\n            // 注册表单\n                \"Select an account\": \"选择账户\",\n                    \"Select an account to register\": \"选择一个账户进行注册\",\n                    \"You don’t belong to any organizations.\": \"您不属于任何组织。\",\n                    \"Create Organization\": \"创建组织\",\n                    \"Support email address\": \"技术支持电子邮件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用户联系您寻求支持的电子邮件地址。\",\n                \"Product or company website\": \"产品或公司网站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"与 GitHub 集成的产品、公司或服务的网址。\",\n                    \"Website can't be blank\": \"网站不能为空\",\n            // 免责声明\n                \"By clicking “Register for the GitHub Developer Program” below, you agree to the\": \"点击 “注册 GitHub 开发者计划”，表示您已阅读并同意\",\n                \"developer terms of service\": \"开发者服务条款\",\n                \"and the\": \"和\",\n                \"privacy statement\": \"隐私声明\",\n                \". We’ll occasionally send you account related emails.\": \"。我们会偶尔向您发送与账户相关的电子邮件。\",\n\n            \"Register for the GitHub Developer Program\": \"注册 GitHub 开发者计划\",\n\n            \"Program Benefits\": \"开发者权益\",\n                \"Notification of API changes\": \"API 更改通知\",\n                \"Early access eligibility on select features\": \"获得部分功能的抢先体验资格\",\n                \"Eligibility for development licenses for GitHub products\": \"获得 GitHub 产品的开发许可资格\",\n                \"GitHub profile membership badge\": \"GitHub 个人资料成员徽章\",\n                \"Learn more about the program\": \"了解更多关于 GitHub 开发者计划的信息\",\n    },\n    \"regexp\": [ // 正则匹配\n    ],\n};\n\nI18N[\"zh-CN\"][\"features\"] = {\n    \"static\": {\n        \"The tools you need to build what you want.\": \"构建您想要的内容所需的工具。\",\n        // 看板\n        \"Experience AI\": \"体验 AI\",\n            \"with Copilot Chat\": \"通过 Copilot\",\n            \"The latest GitHub\": \"最新 GitHub\",\n            \"previews\": \"预览\",\n        // 流水图\n        \"Collaborative\": \"协作\",\n            \"Coding\": \"编程\",\n        \"Contribute to projects quickly with automatic environment setup.\": \"通过自动环境设置快速为项目做出贡献。\",\n        \"Make sure you see the changes you care about.\": \"确保您看到您关注的变化。\",\n        \"Build community around your code.\": \"围绕您的代码建立社区。\",\n        // 列表\n            // 代码空间\n                \"Spin up fully configured dev environments in the cloud with the full power of your favorite editor.\": \"在云端启动完全配置的开发环境，并利用您最喜爱的编辑器的全部功能。\",\n            // GitHub Copilot\n                \"With GitHub Copilot, get suggestions for whole lines or entire functions right inside your editor.\": \"使用GitHub Copilot，在您的编辑器内部即可获得整行代码或整个函数的建议。\",\n            // 拉取请求\n                \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允许贡献者轻松地通知您他们已经推送到仓库的变更——访问权限限制在您指定的贡献者。轻松合并您接受的更改。\",\n            // 讨论\n                \"Dedicated space for your community to come together, ask and answer questions, and have open-ended conversations.\": \"为您的社区提供一个专门的空间，以便聚集在一起，提问和回答问题，以及进行开放式的交流。\",\n            \"Code search & code view\": \"代码搜索 & 代码审查\",\n                \"Our powerful new code search and code view enable developers to rapidly search, navigate, and understand code right from GitHub.com.\": \"我们强大的新代码搜索和代码查看功能，使开发者能够从GitHub.com上快速搜索、导航并理解代码。\",\n            // 通知\n                \"Get updates on the GitHub activity you've subscribed to. Use the notifications inbox to customize, triage, and manage your updates.\": \"获取您订阅的 GitHub 活动更新。使用通知收件箱来自定义、分类和管理您的更新。\",\n            \"Code reviews\": \"代码审查\",\n                \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"审查新代码，查看视觉代码更改，并通过自动化状态检查自信地合并代码更改。\",\n            \"Code review assignments\": \"代码审查分配\",\n                \"Assign code reviews to make it clear which team members should submit their review for a pull request.\": \"分配代码审查，明确哪些团队成员应该为拉取请求提交他们的审查。\",\n            \"Code owners\": \"代码所有者\",\n                \"Automatically request reviews–or require approval—by selected contributors when changes are made to sections of code that they own.\": \"当对他们拥有的代码部分进行更改时，自动请求选定贡献者的审查，或者要求他们的批准。\",\n            \"Draft pull requests\": \"起草拉取请求\",\n                \"Use a pull request as a way to discuss and collaborate, without submitting to formal review or risking an unwanted merge.\": \"使用拉取请求作为一种讨论和协作的方式，无需提交正式审查或冒不必要合并的风险。\",\n            \"Protected branches\": \"保护分支\",\n                \"Enforce restrictions on how code branches are merged, including requiring reviews, or allowing only specific contributors to work on a particular branch.\": \"强制限制代码分支的合并方式，包括要求审查，或者只允许特定贡献者在某个特定分支上工作。\",\n            \"Team reviewers\": \"团队审查人员\",\n                \"Request a team on GitHub to review your pull request. Members of the team will get a notification indicating that you've asked for their review.\": \"在 GitHub 上请求一个团队审查您的拉取请求。团队成员将收到通知，表明您已经要求他们进行审查。\",\n            \"Multiple assignees\": \"多人分配\",\n                \"Assign up to 10 people to work on a given issue or pull request, letting you more easily track who's working on what.\": \"可指派多达 10 人处理特定问题或拉取请求，让您更容易追踪谁在处理什么。\",\n            \"Multiple reviewers\": \"多人审查\",\n                \"Request review from multiple contributors. Requested reviewers will be notified that you've asked for their review.\": \"请求多个贡献者进行审查。被请求的审核者将收到通知，告知您已请求他们进行审查。\",\n            \"Multi-line comments\": \"多行评论\",\n                \"Clarify code reviews by referencing or commenting on multiple lines at once in a pull request diff view.\": \"通过在拉取请求差异视图中一次引用或评论多行代码，来澄清代码审查。\",\n            \"Public repositories\": \"公共仓库\",\n                \"Work with any GitHub member on code in a public repository you control. Make changes, open a pull request, create an issue, and more.\": \"与任何 GitHub 成员合作在您控制的公共仓库中的代码。进行更改，打开一个拉取请求，创建一个问题等等。\",\n            \"Dark mode\": \"深色模式\",\n                \"Choose how you experience GitHub with theme settings. Swap to dark theme or default to your system preferences.\": \"通过主题设置来选择您使用 GitHub 的方式。切换到深色主题或默认使用您的系统偏好设置。\",\n    },\n    \"regexp\": [\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Features · GitHub\": \"GitHub 特点 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"status\"] = { // GitHub Status\n    \"static\": {\n        // https://www.githubstatus.com/\n            \"Help\": \"帮助\",\n            \"Community\": \"社区\",\n            \"Subscribe To Updates\": \"订阅更新\",\n                \"Subscribe to status updates\": \"订阅状态更新\",\n                    // 邮件\n                    \"Get email notifications whenever GitHub\": \"您会收到电子邮件通知每当 GitHub\",\n                        \"creates\": \"创建\",\n                        \"updates\": \"更新\",\n                        \"resolves\": \"解决\",\n                        \"an incident.\": \"某个事件时。\",\n                    \"Email address:\": \"邮件地址\",\n                        \"Subscribe via Email\": \"通过邮件订阅\",\n                        \"Subscribing...\": \"订阅中…\",\n                    \"By subscribing you agree to our\": \"订阅即表示您同意我们的\",\n                        \"Privacy Policy\": \"隐私政策\",\n                        \"This site is protected by reCAPTCHA and the Google\": \"本网站受 reCAPTCHA 保护，适用 Google\",\n                        \"Terms of Service\": \"服务条款\",\n                        \"apply.\": \"。\",\n                    // 电话\n                        \"Get text message notifications whenever GitHub\": \"您会收到短信通知每当 GitHub\",\n                        \"Country code:\": \"国家代码：\",\n                        \"Phone number:\": \"电话号码：\",\n                        \"Subscribe via Text Message\": \"通过短信订阅\",\n                        \"Message and data rates may apply. By subscribing you agree to our\": \"信息和数据费率可能适用。订阅即表示您同意我们的\",\n                            \"the\": \" \",\n                            \", and the\": \"和\",\n                            \". This site is protected by reCAPTCHA and the Google\": \"。本网站受 reCAPTCHA 保护，适用 Google\",\n                    // Slack\n                        \"Get incident updates and maintenance status messages in Slack.\": \"在 Slack 中获取事件更新和维护状态信息。\",\n                        \"Subscribe via Slack\": \"通过 Slack 订阅\",\n                        \"By subscribing you acknowledge our\": \"通过订阅，您承认我们的\",\n                        \". In addition, you agree to the Atlassian\": \"。此外，您同意 Atlassian\",\n                        \"Cloud Terms of Service\": \"云服务条款\",\n                        \"and acknowledge Atlassian's\": \"并承认 Atlassian 的\",\n                    // Web 钩子\n                        \"Get webhook notifications whenever GitHub\": \"您会收到 Web 钩子每当 GitHub\",\n                            \"an incident,\": \"一个事件，\",\n                            \"an incident or\": \"一个事件或\",\n                            \"changes\": \"更改\",\n                            \"a component status.\": \"组件状态时。\",\n                        \"Webhook URL:\": \"Web 钩子 URL\",\n                            \"The URL we should send the webhooks to\": \"我们应将 Web 钩子发送到的 URL\",\n                        \"We'll send you email if your endpoint fails\": \"如果您的终端出现故障，我们将向您发送电子邮件\",\n                        \"Subscribe\": \"订阅\",\n                    // X\n                        \"Follow @githubstatus\": \"关注 @githubstatus\",\n                        \"view our profile\": \"查看我们的简介\",\n                    // 支持网站\n                        \"Visit our\": \"访问\",\n                        \"support site\": \"支持站点\",\n                    // 播客\n                        \"Get the\": \"获取\",\n                        \"Atom Feed\": \"Atom 反馈\",\n                        \"RSS Feed\": \"RSS 反馈\",\n            \"Current Status: GitHub.com\": \"当前状态：GitHub.com\",\n            \"All Systems Operational\": \"所有系统运行正常\",\n            \"Normal\": \"正常\",\n                \"Operational\": \"运行\",\n            \"Incident\": \"故障\",\n                \"Major Outage\": \"重大故障\",\n            \"Degraded\": \"降级\",\n                \"Partial Outage\": \"部分中断\",\n            \"Maintenance\": \"维护\",\n                \"Under Maintenance\": \"维护中\",\n            \"Git Operations\": \"Git 操作\",\n                \"Performance of git clones, pulls, pushes, and associated operations\": \"git 克隆、拉取、推送和相关操作的性能\",\n            \"API Requests\": \"API 请求\",\n                \"Requests for GitHub APIs\": \"GitHub API 请求\",\n            \"Webhooks\": \"Web 钩子\",\n                \"Real time HTTP callbacks of user-generated and system events\": \"实时 HTTP 回调用户生成的事件和系统事件\",\n            // 议题\n                \"Requests for Issues on GitHub.com\": \"GitHub.com 上的议题请求\",\n            \"Pull Requests\": \"拉取请求\",\n                \"Requests for Pull Requests on GitHub.com\": \"GitHub.com 上的拉取请求\",\n            // 操作\n                \"Workflows, Compute and Orchestration for GitHub Actions\": \"GitHub 操作的工作流、计算和协调\",\n            // 软件包\n                \"API requests and webhook delivery for GitHub Packages\": \"GitHub 软件包的 API 请求和 Web 钩子发送\",\n            // Github Pages\n                \"Frontend application and API servers for Pages builds\": \"用于页面构建的前端应用程序和应用程序接口服务器\",\n            // 代码空间\n                \"Orchestration and Compute for GitHub Codespaces\": \"GitHub 代码空间的协调与计算\",\n            \"For the status of GitHub Enterprise Cloud - EU, please visit:\": \"有关欧盟版 GitHub 企业云的状态，请访问\",\n            \"For the status of GitHub Enterprise Cloud - Australia, please visit\":\"有关澳大利亚版 GitHub 企业云的状态，请访问\",\n            \"For the status of GitHub Enterprise Cloud - US, please visit\":\"有关美国版 GitHub 企业云的状态，请访问\",\n            \"Current Status\": \"当前状态\",\n            \"Incident History\": \"历史事故\",\n\n        \"Codespaces Scheduled Maintenance\": \"代码空间计划维护\",\n\n        \"Subscribe to our developer newsletter\": \"订阅我们的开发者新闻\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"获取提示、技术指南和最佳实践。每月两次。直接发送到您的收件箱。\",\n\n\n        // https://www.githubstatus.com/history\n            \"Incident with Packages\": \"软件包事故\",\n            \"Incident with Issues\": \"议题事故\",\n            \"Incident with Codespaces\": \"代码空间事故\",\n            \"Incident with Copilot\": \"Copilot 事故\",\n            \"Incident with Pull Requests\": \"拉取请求事故\",\n            \"Incident with Git Operations\": \"Git 操作事故\",\n            \"Incident with API Requests\": \"API 请求事故\",\n            \"Incident with Actions\": \"操作事故\",\n            \"Incident with Pages\": \"Pages 事故\",\n            \"Incident with Webhooks\": \"Web 钩子事故\",\n            \"We are investigating reports of degraded performance.\": \"我们正在调查性能下降的报告。\",\n            \"This incident has been resolved.\": \"此事故已解决。\",\n            \"Disruption with some GitHub services\": \"某些 GitHub 服务中断\",\n            \"+ Show All\": \"+ 展开全部\",\n            \"Incidents\": \"个事故\",\n            \"- Collapse Incidents\": \"- 收起事故\",\n            \"Current status\": \"当前状态\",\n            \"No incidents reported for this month.\": \"本月无事故报告。\",\n\n        // https://www.githubstatus.com/incidents/xxxxxxxxxxxx\n            \"Incident Report for GitHub\": \"GitHub 事故报告\",\n            \"Resolved\": \"解决\",\n            \"Investigating\": \"调查\",\n            \"Posted\": \"更新\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-CN\"][\"skills\"] = { // https://skills.github.com/\n    \"static\": { // 静态翻译\n        \"GitHub Skills\": \"Github 技能\",\n            \"Learn how to use GitHub with interactive courses designed for beginners and experts.\": \"通过专为初学者和专家设计的互动课程，学习如何使用 GitHub。\",\n            \"Start with\": \"开始于\",\n                \"Introduction to GitHub\": \"GitHub 介绍\",\n        \"Our courses\": \"我们的课程\",\n            \"First day on GitHub\": \"第一天\",\n                // Github介绍\n                    \"Get started using GitHub in less than an hour.\": \"在不到一个小时的时间内开始使用 GitHub。\",\n                \"Communicate using Markdown\": \"使用 Markdown 交流\",\n                    \"Organize ideas and collaborate using Markdown, a lightweight language for text formatting.\": \"使用 Markdown（一种用于文本格式的轻量级语言）组织想法和协作。\",\n                // Github Pages\n                    \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 从 GitHub 仓库创建站点或博客。\",\n            \"First week on GitHub\": \"第一周\",\n                \"Review pull requests\": \"审查拉取请求\",\n                    \"Collaborate and work together on GitHub.\": \"在 GitHub 上协作。\",\n                \"Resolve merge conflicts\": \"解决合并冲突\",\n                    \"Learn why conflicts happen and how to resolve them.\": \"了解冲突发生的原因以及如何解决冲突。\",\n                \"Release-based workflow\": \"基于发行版的工作流\",\n                    \"Practice a release-based workflow and explore branching strategies.\": \"练习基于发布的工作流程，探索分支策略。\",\n                \"Connect the dots\": \"连接信息\",\n                    \"Find relevant conversations, commits, and projects in a repository.\": \"查找仓库中的相关对话、提交和项目。\",\n                \"Code with Codespaces\": \"使用代码空间编程\",\n                    \"Develop code using GitHub Codespaces and Visual Studio Code.\": \"使用 GitHub 代码空间和 Visual Studio Code 开发代码。\",\n                \"Code with Copilot\": \"使用 Copilot 编程\",\n                    \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、代码空间和 VS Code，利用人工智能驱动的代码建议进行开发。\",\n            \"Automate workflows with GitHub Actions\": \"使用 GitHub 操作自动执行工作流程\",\n                \"Hello GitHub Actions\": \"您好 GitHub 操作\",\n                    \"Create a GitHub Action and use it in a workflow.\": \"创建 GitHub 操作并在工作流程中使用。\",\n                \"Test with Actions\": \"使用操作测试\",\n                    \"Create workflows that enable you to use Continuous Integration (CI) for your projects.\": \"创建工作流程，使您能够在项目中使用持续集成 (CI)。\",\n                \"Publish packages\": \"发布软件包\",\n                    \"Use GitHub Actions to publish your project to a Docker image.\": \"使用 GitHub 操作将项目发布为 Docker 镜像。\",\n                \"Deploy to Azure\": \"部署到 Azure\",\n                    \"Create a deployment workflow using GitHub Actions and Microsoft Azure.\": \"使用 GitHub 操作和 Microsoft Azure 创建部署工作流程。\",\n                \"Write JavaScript actions\": \"编写 JavaScript 操作\",\n                   \"Write your own GitHub JavaScript Action.\": \"编写自己的 GitHub JavaScript 操作。\",\n                \"Reusable workflows\": \"可重复使用的工作流程\",\n                    \"Make a workflow reusable in other workflows.\": \"让一个工作流程可在其他工作流程中重复使用。\",\n            \"Code security and analysis\": \"代码安全和分析\",\n                \"Secure your repository supply chain\": \"确保您的仓库供应链安全\",\n                    \"Secure your supply chain, patch dependency vulnerabilities.\": \"确保供应链安全，修补依赖性漏洞。\",\n                \"Secure code game\": \"安全代码游戏\",\n                    \"Learn about software security in a fun, educational environment.\": \"在寓教于乐的环境中学习软件安全知识。\",\n                \"Introduction to CodeQL\": \"CodeQL 简介\",\n                    \"Learn how to enable CodeQL to secure your code.\": \"了解如何启用 CodeQL 以确保代码安全。\",\n                \"Change commit history\": \"更改提交历史\",\n                    \"A skills course on changing the commit history with Git.\": \"使用 Git 更改提交历史的技能课程。\",\n                \"Introduction to secret scanning\": \"安全扫描介绍\",\n                    \"Enable secret scanning and take a feature tour.\": \"启用安全扫描并进行功能导览。\",\n            // 底部提示框\n            \"Have an idea for a course? Build your own with our quickstart guide.\": \"有课程想法？使用我们的快速入门指南，创建您自己的课程。\",\n                \"View quickstart guide\": \"查看快速入门指南\",\n\n            //底部栏\n            \"Expert Services\": \"专家服务\",\n\n        // 快速入门指南 https://skills.github.com/quickstart\n        \"GitHub Skills Quickstart Guide\": \"GitHub 技能快速入门指南\",\n            \"Build your own GitHub Actions-powered courses in a few simple steps.\": \"只需几个简单的步骤，就能构建自己的由 GitHub 操作驱动的课程。\",\n            \"This guide covers planning your course, building your course, and best practices for GitHub Actions-powered courses.\": \"本指南包括规划课程、构建课程以及由 GitHub 操作驱动的课程的最佳实践。\",\n            \"Take a look at our\": \"查看我们的\",\n            \"courses for examples and templates.\": \"课程，了解示例和模板。\",\n        \"Table of contents\": \"目录\",\n        \"Author prerequisites\": \"作者必备条件\",\n            \"Course authors should be familiar with\": \"课程作者在开始制作自己的课程之前，应熟悉\",\n            \"GitHub Actions\": \"GitHub 操作\",\n            \"before starting to make their own courses.\": \"。\",\n            \"Some courses will require knowledge of\": \"部分课程需要了解\",\n            \"command line\": \"命令行\",\n        \"Planning your course\": \"规划课程\",\n            \"Write down your learning goals\": \"写下学习目标\",\n                \"Does your course give the learner something practical to work on?\": \"您的课程是否为学员提供了实用的学习内容？\",\n                    \"Learners prefer working on real projects over examples.\": \"相比示例，学员更喜欢实际项目。\",\n                    \"How can the learner use this project after they finish the course?\": \"完成课程后，学员如何使用该项目？\",\n                \"What specific skill does the learner leave your course with?\": \"学员在结束课程后能掌握哪些具体技能？\",\n                    \"Focus on what the learner will be able to do after they complete the course.\": \"重点是学员在完成课程后能够做什么。\",\n                \"Is an Actions-based course right for your goal?\": \"基于操作的课程适合您的目标吗？\",\n                    \"Does the learning experience benefit from step-by-step, in-repository learning?\": \"学习体验是否得益于循序渐进的库内学习？\",\n            \"Outline your steps\": \"概述步骤\",\n                \"Does this workflow match what the learner will do in the “real world”?\": \"这一工作流程是否与学员在“真实世界”中要做的事情相匹配？\",\n                    \"If you were teaching your friend, how would you interact with them in the repository?\": \"如果您在教您的朋友，您会如何在仓库中与他们互动？\",\n                    \"Does each step build towards the skills you’ve identified?\": \"每一步是否都是为了培养您所确定的技能？\",\n                \"Can you teach the skill in three to five small steps?\": \"您能分三到五个小步骤教授技能吗？\",\n                    \"Most learners tend to drop off after 30-45 minutes.\": \"大多数学员往往在 30-45 分钟后就会放弃学习。\",\n                    \"We’ve found that it takes learners about four times the length of an expert to complete a course.\": \"我们发现，学员完成一门课程所需的时间大约是专家的四倍。\",\n                    \"If your course needs more steps, consider splitting your learning objective into multiple courses.\": \"如果您的课程需要更多的步骤，可以考虑将学习目标分成多个课程。\",\n                \"Does the order of the steps build the learner’s knowledge in each step?\": \"步骤的顺序是否有助于学员掌握每个步骤的知识？\",\n                    \"Each step should reference and build on the knowledge in the previous steps.\": \"每个步骤都应参考和借鉴前几个步骤的知识。\",\n                \"Does each step relate to the main learning goal?\": \"每个步骤都与主要学习目标相关吗？\",\n                    \"You can use GitHub Actions and GitHub CLI to automate any needed steps that don’t build towards the learning goal.\": \"您可以使用 GitHub 操作和 GitHub CLI 自动执行任何不需要的步骤，以实现学习目标。\",\n        \"Set up your repository\": \"设置仓库\",\n            \"Start by clicking “Use this template” on our\": \"点击 “使用此模板” 开始。\",\n                \"course template\": \"课程模板\",\n            \"Check the box for “Template repository” either when setting up your repository, or\": \"在创建仓库时或在\",\n                \"in the repository settings\": \"仓库设置\",\n                \"afterwards. Actions\": \"中勾选 “模板版本库” 复选框。复刻仓库中操作\",\n                \"are not enabled by default\": \"默认不启用\",\n                \"in forks.\": \"。\",\n            \"Add a 1280×640 social image. Learners will share your course on different websites that will pull in the social image.\": \"添加一张 1280×640 的社交图片。学员将在不同网站上分享您的课程，而这些网站将调入社交图片。\",\n            \"Enable the automatically delete head branches\": \"启用自动删除头部分支设置\",\n                \"setting.\": \"。\",\n            \"Add a LICENSE file to your repository\": \"在仓库中添加 LICENSE 文件。\",\n                \". GitHub uses Creative Commons Attribution 4.0 International.\": \"GitHub 采用知识共享署名 4.0 国际协议。\",\n            \"Add a\": \"添加一个\",\n                \"file\": \"文件。\",\n                \". You can see an\": \"您可以查看\",\n                \"example\": \"示例\",\n                \". We recommend at minimum ignoring operating system generated files.\": \" 文件。我们建议至少忽略操作系统生成的文件。\",\n            \"Include\": \"将\",\n                \"in the\": \"包含于\",\n                \"repository topics\": \"仓库主题内\",\n        \"Writing your README\": \"编写自述文件\",\n            \"Your README file will have a few sections: a header, a start step, three to five workflow steps, a finish step, and a footer.\": \"README 文件将包含几个部分：页眉、开始步骤、三到五个工作流程步骤、结束步骤和页脚。\",\n            \"The raw source of the README in\": \" \",\n                \"includes many comments you can use to guide the development of your course’s README file.\": \"中的 README 源码包含了许多注释，您可以用来指导课程 README 文件的开发。\",\n            \"Writing your README: Header\": \"编写自述文件：页眉\",\n                \"Start with a short paragraph describing what you’ll teach. Be sure to include information on how the course is relevant to the learner. This paragraph should answer the question, “Why should I take this course?”\": \"首先用一小段文字描述您的教学内容。请务必说明课程与学员的相关性。这一段应该回答“我为什么要学习这门课程？”\",\n                \"Include the course title in sentence case, and a concise description in emphasis.\": \"用句子大小写写上课程名称，并用着重号简明扼要地描述。\",\n            \"Writing your README: Start\": \"编写自述文件：开始\",\n                \"A brief paragraph should describe the goal of the course, what the learner will learn, and why they should take the course.\": \"请用简短的一段文字说明课程的目标、学员将学到什么以及为什么要学习该课程。\",\n                \"A brief list of the following items can help the learner decide if the course is right for them:\": \"以下项目的简要列表可以帮助学习者确定该课程是否适合他们：\",\n                    \"Who is this for\": \"这是给谁学的\",\n                    \"What you’ll learn\": \"学习内容\",\n                    \"What you’ll build\": \"构建内容\",\n                    \"Prerequisites\": \"先决条件\",\n                    \"How long the course is (time and steps)\": \"课程有多长（时间和步骤）\",\n                \"Include clear directions on how to start the course.\": \"包括有关如何开始课程的明确说明。\",\n            \"Writing your README: Steps\": \"编写自述文件：步骤\",\n                \"Each step should:\": \"每个步骤都应该\",\n                \"Acknowledge the learner completed the previous step, using emphasis (italics).\": \"使用强调（斜体）来确认学习者已完成上一步。\",\n                \"Concisely describe the concept behind the next step. Link to GitHub docs for more in-depth explanation.\": \"简明描述下一步背后的概念。链接到 GitHub 文档以获取更深入的解释。\",\n                \"Describe what the learner is about to do\": \"描述学习者将要做什么\",\n                \"Mark the activity with\": \"标记活动使用\",\n                \"Use an ordered list to briefly describe what the learner needs to do\": \"使用有序列表简要描述学习者需要做什么\",\n                \"Let the learner know it will need about 20 seconds and refresh to move on to the next step\": \"让学习者知道大约需要 20 秒，然后刷新即可进入下一步\",\n                \"Include warning and troubleshooting information if the learner gets stuck\": \"如果学习者遇到困难，请提供警告和故障排除信息\",\n                \"Try to keep your formatting consistent so the learner can more easily find what they are looking for.\": \"尽量保持格式一致，以便学员可以更轻松地找到他们要查找的内容。\",\n                \"The first step is the hardest, so pick something easy! On the first step, encourage users to open new tabs for steps.\": \"第一步是最难的，所以要选择简单的步骤！在第一步，鼓励用户打开新的标签页进行操作。\",\n            \"Writing your README: Finish\": \"编写自述文件：结束\",\n                \"In the finish section,\": \"在结束部分，\",\n                \"Celebrate that the learner finished the course\": \"庆祝学习者完成课程\",\n                \"Include an celebratory image\": \"附上一张庆祝图片\",\n                \"Review what the learner just did\": \"回顾学习者刚刚做的事情\",\n                \"Provide next steps for learners who want to know more\": \"为想要了解更多信息的学习者提供后续步骤\",\n                \"Invite feedback about the course\": \"邀请学习者对课程提出反馈\",\n            \"Writing your README: Footer\": \"编写自述文件：页脚\",\n                \"Include a link for how learners should get help if they get stuck or have further questions\": \"如果学习者遇到困难或有进一步的问题，可通过链接了解如何获得帮助\",\n                \"Include a link to the GitHub status page. If GitHub Actions is down, the course won’t work.\": \"包含指向 GitHub 状态页面的链接。如果 GitHub 操作崩溃，课程将无法运行。\",\n                \"Include copyright information and a link to the license\": \"包含版权信息和许可证链接\",\n                \"Include Code of Conduct and other contributing information\": \"包含行为准则和其他有效信息\",\n                \"The footer should not be included in the finish section. The footer should appear regardless of which step the learner is currently on.\": \"结束部分不应包含页脚。无论学员当前处于哪个步骤，都应显示页脚。\",\n        \"Writing your Actions workflow files\": \"编写操作工作流程文件\",\n            \"Writing your Actions workflow files: Connect your steps to GitHub Actions events\": \"编写操作工作流程文件：将步骤连接到 GitHub 操作事件\",\n               \"Every step will have an Actions workflow file that triggers on\": \"每个步骤都会有一个根据\",\n               \"GitHub Actions events\": \"GitHub 操作事件\",\n               \". Start by reviewing which event corresponds with each of your steps.\": \"触发的操作工作流文件。首先查看每个步骤对应的事件。\",\n            \"Writing your Actions workflow files: Identify what GitHub Actions will need to do in each step\": \"编写操作工作流程文件：确定 GitHub 操作在每个步骤中需要做的事情\",\n                \"You can use\": \"您可以在操作工作流中使用\",\n                \"in your Actions workflows to perform almost any GitHub interaction you can think of. Write down everything each step will need to do to complete the step. Store links for reference as your work on your course.\": \"来执行您能想到的几乎所有 GitHub 交互操作。写下完成每个步骤需要做的所有事情。存储链接，以便在学习课程时参考。\",\n            \"Writing your Actions workflow files: Sections of the workflow file\": \"编写操作工作流程文件： 工作流程文件的各部分\",\n                \"Take a look at\": \"查看\",\n                \"for example workflow files.\": \"中的工作流程示例文件。\",\n                \"Each workflow file has the name format:\": \"每个工作流程文件的名称格式为\",\n                \", where\": \"其中\",\n                \"is the step number and\": \"是步骤编号，\",\n                \"describes the step. We recommend this format to make it easy to see the order the steps will run in.\": \"描述步骤。我们推荐使用这种格式，以便于查看各步骤的运行顺序。\",\n                \"Each workflow file will have a few sections, the name, describing comments, event trigger, job header, and steps.\": \"每个工作流程文件都有几个部分：名称、描述注释、事件触发器、任务标题和步骤。\",\n                \"The first section is the\": \"第一部分为\",\n                \"name\": \"名称\",\n                \"Next, add\": \"接下来，添加\",\n                \"comments describing\": \"注释\",\n                \"what the Actions workflow will do:\": \"，说明操作工作流要做什么：\",\n                \"Followed by the\": \"随后是\",\n                \"event trigger\": \"事件触发器\",\n                \"Next is the\": \"接下来是\",\n                \"job header\": \"任务标题\",\n                \". You can add\": \"。您可以在这里添加\",\n                \"tags to limit the scope of the event trigger here. You’ll also need to specify\": \"标签来限制事件触发的范围。您还需要指定\",\n                \"to get your Actions workflow running.\": \"，以运行操作工作流。\",\n                \"Last, we are finally in the\": \"最后，我们终于进入了操作工作流的\",\n                \"steps\": \"步骤\",\n                \"of the Actions workflow. This is the heart of the file, where you can customize your course the most.\": \"。这是文件的核心部分，在这里您可以对课程进行最大程度的自定义。\",\n                \"You may include the\": \"您可以在课程中包含\",\n                \"update step action\": \"更新步骤操作\",\n                \"in your course, however it is not fully required. You may also customize this script to meet the needs of your course.\": \"，但并非完全必需。您也可以自定义此脚本，以满足课程的需要。\",\n                \"Include thorough comments in your workflow files to describe each section. Other authors and your future self will thank you later.\": \"在您的工作流程文件中包含详尽的注释，以描述每个部分。其他作者和未来的自己都会感谢您。\",\n        \"Testing and monitoring your course\": \"测试和监控课程\",\n            \"Click on “Use this template” and run through your course on a your personal account. Does everything work? Do any actions go red?\": \"点击 “使用此模板”，然后在个人账户上运行课程。一切正常吗？是否有任何操作变红？\",\n            \"Consider asking for both technical and content review.\": \"考虑要求进行技术和内容审查。\",\n            \"Test your course with a potential learner.\": \"与潜在学员一起测试课程。\",\n            \"Check in our your course regularly for any reported issues or out-of-date information.\": \"定期检查您的课程，查看是否有任何报告的问题或过时的信息。\",\n        \"Best practices for building courses\": \"构建课程的最佳做法\",\n            \"Not everyone reads docs! Many potential course authors will use your course as an example. Make sure to include lots of comments in your README and Actions workflow files.\": \"不是每个人都会阅读文档！许多潜在的课程作者会将您的课程作为范例。请确保在您的 README 和操作工作流程文件中包含大量注释。\",\n            \"Keep everything you need in the one course repository.\": \"将您需要的一切都保存在一个课程仓库内。\",\n            \"If you need your courses to have limited access, create an organization for your courses, make your courses private, and invite the specific users that need these courses to your organization.\": \"如果您需要限制课程的访问权限，请为您的课程创建一个组织，将您的课程设为私人课程，并邀请需要这些课程的特定用户加入您的组织。\",\n            \"Consider adding a Code of Conduct, contributing guide, and issue templates.\": \"考虑添加行为准则、贡献指南和议题模板。\",\n            \"Keep the number of files and folders in the root directory short. More items in the root level means the README is further down the page.\": \"尽量减少根目录中文件和文件夹的数量。根目录中的项目越多，README 就越靠近页面底部。\",\n            \"Content\": \"内容\",\n                \"The more content you have, the more content you will have to update later. Be concise. Link to the GitHub Docs whenever you can.\": \"内容越多，以后需要更新的内容就越多。简明扼要。尽可能链接到 GitHub 文档。\",\n                \"Where does the learner go to get help? Add links to your README to let the learner know where to ask for help.\": \"学习者从哪里获得帮助？在 README 中添加链接，让学习者知道到哪里寻求帮助。\",\n                \"Make it as easy as possible for the learner to get started. Learners will give up if they don’t make some progress within a few minutes.\": \"尽可能让学员容易上手。如果学习者不能在几分钟内取得一些进展，他们就会放弃。\",\n                \"Write in casual, polite, active, and inspiring language. We’ve found courses perform better when they are more friendly.\": \"用随意、礼貌、活跃和鼓舞人心的语言写作。我们发现，当课程更具亲和力时，效果会更好。\",\n                \"Use emoji to convey a positive tone. Emoji can add to content, but use words to convey meaning.\": \"使用表情符号传达积极的语气。表情符号可以为内容锦上添花，但要用文字表达意思。\",\n                \"Check spelling and grammar.\": \"检查拼写和语法。\",\n                \"Limit use of acronyms, write out the full text instead.\": \"限制使用缩略语，而应写出全文。\",\n                \"Images can be helpful, but only when they are up-to-date.\": \"图片可以起到辅助作用，但必须是最新的。\",\n                \"Provide examples and templates to reduce how much work the learner needs to do to complete the step.\": \"提供示例和模板，以减少学员完成该步骤所需的工作量。\",\n                \"Follow the\": \"遵循\",\n                \"GitHub docs content style guide\": \"GitHub 文档内容风格指南\",\n            \"Actions workflows\": \"操作工作流程\",\n                \"You can do anything in your course that GitHub Actions can do. Review the\": \"您可以在课程中做任何 GitHub 操作能做的事。查看\",\n                \"GitHub Actions docs\": \"GitHub 操作文档\",\n                \"and some\": \"和一些\",\n                \"examples of GitHub Actions\": \"GitHub 操作示例\",\n                \"to get a feel for what all actions can do.\": \"，了解所有操作的功能。\",\n                \"If you are building a course for your own organization, you can add your own analytics or learning management system integration as part of the Actions workflows.\": \"如果您正在为自己的组织构建课程，您可以添加自己的分析或学习管理系统集成，作为操作工作流的一部分。\",\n            \"Sharing your course\": \"分享您的课程\",\n                \"Your course only matters if potential learners know about it. Where can you link to your course? If public, is social media an option?\": \"只有当潜在学员知道您的课程时，您的课程才有意义。在哪里可以链接到您的课程？如果是公开的，是否可以选择社交媒体？\",\n                \"Make sure your course includes keywords and text that someone would search for in Google and other search engines.\": \"确保您的课程中包含有人会在 Google 和其他搜索引擎中搜索的关键字和文本。\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-CN\"][\"orgs/sponsoring\"] = { // https://github.com/orgs/<org-name>/sponsoring 赞助页\n    \"static\": {\n        //\"hasn’t sponsored any users yet.\": \"尚未赞助任何人。\",\n        \"'s sponsorships\": \" 的赞助者\",\n\n        \"Current Sponsorships\": \"当前赞助者\",\n        \"Past Sponsorships\": \"曾经赞助者\",\n\n        \"has\": \"有\",\n        \"current\": \"当前\",\n        \"past\": \"曾经\",\n        \"and\": \"和\",\n        \"sponsorship\": \"赞助者\",\n        \"sponsorships\": \"赞助者\",\n        \"Search users\": \"搜索用户\",\n        \"Name\": \"名称\",\n        \"Start date\": \"开始日期\",\n        \"Sponsor\": \"赞助\",\n\n        \"No sponsorships\": \"无赞助\",\n        \"No sponsorships to display.\": \"暂无赞助内容可显示。\",\n        \"Explore your dependencies\": \"探索你的依赖项\",\n    },\n    \"regexp\": [\n        [/([^ ]+) hasn’t sponsored any users yet./, \"$1 尚未赞助任何人。\"],\n        ...I18N[\"zh-CN\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"赞助\"],\n        ],\n    },\n};\n\nI18N[\"zh-CN\"][\"organizations/plan\"] = {\n    \"static\": {\n        \"Pick a plan for your organization\": \"为您的组织选择计划\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-CN\"][\"repo-actions-merics-public\"] = { // 仓库 - 洞察 - 操作看板公共部分\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-CN\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Period\": \"周期\",\n            \"Current week (Mon-Sun)\": \"本周（周一 ~ 周日）\",\n            \"Current month\": \"本月\",\n            \"Last month\": \"上个月\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last 90 days\": \"最近 90 天\",\n            \"Last year\": \"最近一年\",\n            \"Custom\": \"自定义\",\n\n        // 自定义日期\n            \"Custom date range (UTC)\": \"自定义日期范围(UTC)\",\n            \"Choose dates\": \"选择日期\",\n            // 日历\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n        // 筛选相关\n            \"Filter\": \"筛选\",\n                \"Search or filter\": \"搜索或筛选\",\n                \"Exclude\": \"排除\",\n            \"Download report\": \"下载报告\",\n\n        // 高级筛选窗口\n            \"Advanced filters\": \"高级筛选\",\n                \"Build complex filter queries\": \"建立复杂的筛选器查询\",\n                \"To start building your query add your first filter using the button below.\": \"要开始建立查询，请使用下面的按钮添加第一个筛选器。\",\n\n                \"Qualifier\": \"限定\",\n                \"Operator\": \"操作\",\n                    \"is not one of\": \"不包含\",\n                    \"is one of\": \"包含\",\n                    \"is\": \"是\",\n                    \"greater than\": \"大于\",\n                    \"less than\": \"小于\",\n                    \"greater than or equal to\": \"大于或等于\",\n                    \"less than or equal to\": \"小于或等于\",\n                    \"equal to\": \"等于\",\n                    \"between\": \"之间\",\n                \"Value\": \"值\",\n                    \"Make a selection\": \"请选择\",\n                    \"Select items\": \"请选择项目\",\n                    \"Filter values\": \"筛选值\",\n                    \"Enter a number\": \"键入数字\",\n                    \"Enter search text\": \"键入任意文本\",\n                        \"Me\": \"我\",\n                        \"Signed-in user\": \"已登录用户\",\n                \"Add a filter\": \"添加\",\n                    \"Text\": \"文本\",\n                \"Apply\": \"应用\",\n\n        // 关闭弹窗\n            \"Discard changes?\": \"是否放弃更改？\",\n            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您确定要放弃它们吗？\",\n            \"Keep editing\": \"继续编辑\",\n            \"Close and discard\": \"关闭并放弃\",\n\n        // 筛选器报错窗口\n            \"Empty value for\": \"空值：\",\n            \"Text will be ignored since log searching is not yet available:\": \"由于尚未提供日志搜索功能，文本将被忽略：\",\n\n        // 工作流相关\n            \"Workflows\": \"工作流\",\n            \"Jobs\": \"作业\",\n                \"Job\": \"作业\",\n                \"Job runs\": \"作业运行\",\n                \"Runtime OS\": \"操作系统\",\n                \"Runner type\": \"运行器类型\",\n                    \"hosted\": \"托管\",\n                    \"hosted-larger\": \"大型托管\",\n                    \"self-hosted\": \"自托管\",\n                \"Runner labels\": \"运行器标签\",\n\n        // 无数据\n            \"No table data available yet.\": \"还没有数据。\",\n                \"You don't have workflows on any of your organization repositories.\": \"您的任何组织仓库中都没有工作流程。\",\n            \"Get started with GitHub Actions\": \"快速开始\",\n\n        // 工作流条目\n            \"Workflow\": \"工作流\",\n            \"Workflow runs\": \"工作流运行\",\n\n        \"of\": \"/\",\n    },\n    \"regexp\": [\n        [/Showing data from (\\d+)\\/(\\d+)\\/(\\d+) to/, \"显示数据：从$1年$2月$3日至\"],\n        [/Total (minutes|job runs) across all workflows in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'minutes': '总分钟数', 'job runs': '总工作运行数'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本周（周一 ~ 周日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上个月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定义时间段\",\n            };\n            return periodKey[period] + '该组织所有工作流程的' + typeKey[type];\n        }],\n        [/Period: (Current week \\(Mon-Sun\\)|Current month|Last month|Last 30 days|Last 90 days|Last year|Custom)/, function(all, period){\n            var periodKey = {\n                \"Current week (Mon-Sun)\": \"本周（周一 ~ 周日）\",\n                \"Current month\": \"本月\",\n                \"Last month\": \"上个月\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 90 days\": \"最近 90 天\",\n                \"Last year\": \"最近一年\",\n                \"Custom\": \"自定义\",\n            };\n            return '范围：' + periodKey[period];\n        }],\n    ],\n};\n\nI18N[\"zh-CN\"][\"repository/actions/metrics/usage\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Total minutes\": \"总分钟数\",\n        \"Total job runs\": \"总工作运行\",\n\n        \"Row Actions\": \"更多\", // 暂译\n        \"View performance\": \"查看数据看板\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions usage metrics\": \"操作使用情况\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/actions/metrics/performance\"] = {\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Avg job run time\": \"平均作业运行时长\",\n        \"Avg job queue time\": \"平均作业等待时长\",\n        \"Job failure rate\": \"作业失败率\",\n        \"Failed job usage\": \"作业失败次数\",\n\n        \"<1s\": \"<1秒\",\n\n        \"Avg run time minutes\": \"平均运行时长\",\n        \"Avg queue time minutes\": \"平均等待时长\",\n        \"Failure rate\": \"失败率\",\n\n        \"Has job failures\": \"作业失败率\",\n        \"Avg run time\": \"平均运行时长\",\n        \"Avg queue time\": \"平均等待时长\",\n\n        \"Row Actions\": \"更多\", // 暂译\n        \"View usage\": \"查看使用情况\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-CN\"][\"repo-actions-merics-public\"][\"regexp\"],\n        [/(Average run time of|Average queue time of|Failure rate across|Total minutes used across failed) jobs in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'Average run time of': '平均运行时长', 'Average queue time of': '平均等待时长', 'Failure rate across': '作业失败率', 'Total minutes used across failed': '作业失败次数'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本周（周一 ~ 周日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上个月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定义时间段\",\n            };\n            return periodKey[period] + '该组织所有工作流程的' + typeKey[type];\n        }],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1时$2分$3秒\"],\n        [/(\\d+)m (\\d+)s/, \"$1分$2秒\"],\n        [/(\\d+)m/, \"$1分钟\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions performance metrics\": \"操作数据看板\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"copilot\"] = {\n    \"static\": {\n        // 错误\n            \"Conversation failed to load\": \"加载失败\",\n                \"Reload the page\": \"重载页面。\",\n                \"to try again.\": \" \",\n        // 高级请求数已用完\n            \"You have reached your monthly limit for premium requests. Enable additional requests or switch to the default model. Limit resets on.\": \"您已达到本月高级请求的额度上限。请启用额外请求或切换到默认模型。额度将重置。\",\n            \"You have used 80% of your premium responses this month. Enable additional requests to get more usage after the limit is reached.\": \"您本月已使用 80% 的高级请求。达到限制后启用额外请求以获得更多使用量。\",\n        // 左侧边栏\n            \"New conversation\": \"新聊天\",\n            \"Close conversations\": \"关闭侧边栏\",\n            \"Open conversations\": \"打开侧边栏\",\n            \"New chat\": \"新聊天\",\n            \"Collapse\": \"折叠\",\n            \"Expand sidebar\": \"展开侧边栏\",\n\n            \"Agent sessions\": \"智能体任务\",\n            \"Agent sessions and chats\": \"智能体任务及聊天\",\n                \"No agents running\": \"无智能体运行\",\n                    \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您现在可以让 Copilot 在后台为您处理任务，创建一个供您审核的拉取请求。\",\n\n            // 时间\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Last 7 days\": \"最近 7 天\",\n                \"Last 30 days\": \"最近 30 天\",\n\n            // 无对话\n            \"No conversations yet\": \"还没有对话\",\n            \"Ask Copilot anything on the right to start your first conversation.\": \"向 Copilot 提出任何问题，开始第一次对话。\",\n\n            // 某条对话\n                \"Manage chat\": \"管理\",\n                    \"Rename\": \"重命名\",\n                        \"Rename chat\": \"重命名\",\n                    \"Share\": \"分享\",\n                    // 删除\n                        \"Delete chat\": \"删除聊天\",\n                        \"Are you sure you want to delete this chat? This action cannot be undone.\": \"您确定要删除该聊天吗？此操作无法撤销。\",\n\n        // 中间\n            \"Ask\": \"询问\",\n            // 模型选择窗\n                \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、经济高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"执行复杂任务\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Get file\": \"获取文件\",\n\n            \"Recent agent sessions\": \"最近智能体任务\",\n            \"View all\": \"查看全部\",\n                \"No sessions found. Create one by sending a prompt above.\": \"未找到会话。请通过在上方发送提示来创建一个会话。\",\n\n            // 拉取请求列表\n            \"opened\": \"打开于\",\n            \"closed\": \"关闭于\",\n            \"ago\": \"之前\",\n\n            \"Copy code\": \"复制代码\",\n            \"Copied!\": \"复制成功！\",\n\n            \"Good response\": \"点赞\",\n            \"Bad response\": \"点踩\",\n            \"Retry with…\": \"重试…\",\n\n            \"Scroll to bottom\": \"滚动至底部\",\n\n        // 右侧\n            \"Share conversation\": \"分享对话\",\n                \"Anyone with the link can view this conversation\": \"持有链接者可见\",\n                \"When shared, this conversation and future messages will be visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"分享后，该对话及后续消息将对所有拥有链接的人可见。如果包含私有仓库内容，则需具有仓库访问权限才能查看。\",\n                \"This conversation may contain private content. Viewers must have access to all referenced content.\": \"这段对话可能包含私人内容。查看者必须拥有对所有引用内容的访问权限。\",\n                \"Create link\": \"创建链接\",\n                \"Copy link\": \"复制链接\",\n                \"Delete shared link\": \"删除分享链接\",\n                \"New messages after creating a link stay private.\": \"新消息在创建链接后仍保持私密。\",\n                \"Messages up to this point are included in shared link\": \"以上内容都包含在共享链接中\",\n                \"a previous version of this conversation has been shared\": \"此对话旧版本已被共享\",\n                \"create link to share the current version of this conversation.\": \"创建链接以分享此对话的当前版本。\",\n                \"this shared link is up to date\": \"分享链接是最新的\",\n\n                \"Manage link\": \"管理链接\",\n                    \"Update link\": \"更新\",\n                        \"Update shared conversation to include most recent messages\": \"更新分享链接以包含最新信息\",\n                        \"This shared link is up to date\": \"分享链接是最新的\",\n                    \"Delete link\": \"删除\",\n                        \"Delete shared link and remove access for all users\": \"删除分享链接并移除所有用户的访问权限\",\n                \"Copy link\": \"复制链接\",\n\n            // 分享\n            \"This conversation has not yet been shared\": \"还没有分享\",\n            \"This conversation is only visible to you\": \"此对话仅您可见\",\n            \"This conversation is visible to anyone with the link\": \"此对话对任何拥有链接的人可见\",\n            \"Shared\": \"已分享\",\n            \"Conversation shared\": \"对话已分享\",\n                \"This conversation and future messages are visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"此对话及未来的消息对任何拥有链接的人都是可见的。如果包含私有仓库内容，则需要仓库访问权限才能查看。\",\n                \"Only users with access to referenced private content can view this conversation.\": \"只有有权访问相关私人内容的用户才能查看此对话。\",\n                \"This conversation is private and only visible to you. Share it to make it accessible to others with the link.\": \"此对话为私密对话，仅您自己可见。通过分享链接，其他人才能访问此对话。\",\n                \"This conversation is now shared. Anyone with the link can view it. Keep in mind that it is live and publicly accessible.\": \"此对话已共享。任何拥有该链接的人均可查看此对话。请注意，该对话为实时且公开可访问的内容。\",\n                \"Conversation link will appear here after sharing\": \"对话链接将在分享后出现\",\n                \"Only visible to you\": \"私密\",\n                \"Visible to anyone with the link\": \"拥有链接者可见\",\n\n                \"Unshare\": \"取消\",\n\n            \"Manage shared conversations\": \"管理已分享对话\",\n                \"Last updated\": \"最后更新\",\n                    // 日期走正则\n\n                    \"Copy share link\": \"复制分享链接\",\n                    \"Unshare conversation\": \"取消分享\",\n                        \"You're about to unshare the link for the following conversation:\": \"您将取消分享此对话：\",\n                        \"Once unshared, the link will no longer be accessible.\": \"取消后，此链接将失效。\",\n\n                \"Unshare all\": \"全部取消分享\",\n\n            \"Open menu\": \"菜单\",\n                \"Conversation\": \"对话\",\n                \"Prompt\": \"提示词\",\n                    \"System prompt\": \"系统提示词\",\n                        // 完整句子：GitHub Copilot 的系统提示是一系列指令，用于指导大语言模型（LLM）根据用户输入提供增强的功能并优化输出质量。\n                        \"The system prompt for\": \" \",\n                        \"is a set of instructions that guides the LLM to provide enhanced functionality and output quality based on user input.\": \"的系统提示词是一系列指令，用于指导大语言模型（LLM）根据用户输入提供增强的功能并优化输出质量。\",\n            \"Feedback and settings\": \"反馈和设置\",\n                // 反馈\n                    \"Rate your experience\": \"反馈\",\n                        // 四个表情\n                            \"Love it\": \"优\",\n                            \"It’s ok\": \"良\",\n                            \"Not great\": \"中\",\n                            \"Hate it\": \"差\",\n\n                        \"Tell us what you liked or what could be better\": \"告诉我们您喜欢什么或可以改进的地方\",\n\n                        \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"请不要包含敏感、机密或个人数据。您的匿名反馈有助于我们改进服务，根据\",\n                        \"Privacy Policy\": \"隐私政策\",\n                        \"Send\": \"发送\",\n\n            \"Upgrade to Pro\": \"升级至专业版\",\n                \"to access higher limits and premium models.\": \"以获取更高额度和高级模型。\",\n\n            \"Open panel\": \"打开面板\",\n            \"Close panel\": \"关闭面板\",\n            \"Open workbench\": \"打开工作台\",\n            \"Close workbench\": \"关闭工作台\",\n            \"Close file browser\": \"关闭文件浏览器\",\n                \"View files directly within Copilot\": \"直接在 Copilot 中查看文件\",\n                    \"Ask to generate a file or app, or use the button below to try it yourself.\": \"询问生成文件或应用程序，或使用下面的按钮自行尝试。\",\n                \"I’m feeling lucky\": \"我手气不错\",\n\n                \"More options\": \"更多\",\n                    \"Download all files\": \"下载全部\",\n                    \"Close all tabs\": \"关闭所有标签\",\n\n                \"Diff\": \"差异\",\n\n                \"Download code\": \"下载代码\",\n\n                \"lines\": \"行\",\n                \"line\": \"行\",\n\n                // 代码窗 - 底部栏\n                  \"to toggle the\": \"切换\",\n                  \"key moving focus. Alternatively, use\": \"键移动对焦。或者使用\",\n                  \"then\": \"键，然后\",\n                  \"to move to the next interactive element on the page.\": \"键移动到页面上的下一个交互元素。\",\n        // 聊天窗口\n        \"Install Copilot in your favorite code editor\": \"安装 Copilot 到您的代码编辑器\",\n            \"Copilot is available for a multitude of editors to fit your needs\": \"Copilot 可用于多种编辑器，以满足您的需求\",\n            \"Dismiss banner\": \"关闭\",\n\n            \"Remove topic\": \"移除主题\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件选项\",\n                \"Remove attachments\": \"移除附件\",\n\n            \"Ask Copilot\": \"询问 Copilot\",\n            \"Add repositories, files and spaces\": \"添加仓库，文件和空间\",\n                // 文件（夹）和符号\n                \"Select folders and files in\": \"选择文件（夹）于\",\n            \"Add attachment\": \"添加附件\",\n                \"Files and symbols…\": \"文件和符号…\",\n                    \"First attach a repository\": \"请先附加仓库\",\n                    \"Attach files and symbols\": \"附加文件和符号\",\n                        \"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"选择您想要讨论的文件和符号。使用较少的参考资料即可获得更准确的回复。\",\n                        \"Search files and symbols\": \"搜索文件和符号\",\n                        \"Current attachments\": \"当前附件\",\n                        \"Symbols\": \"符号\",\n                \"Repository…\": \"仓库…\",\n                    \"Attach a repository\": \"附加仓库\",\n                        \"Search repositories\": \"搜索仓库\",\n                        \"Fetching repositories…\": \"正在获取仓库\",\n                \"Image…\": \"图片…\",\n                    \"Only images below 3.75MB are supported\": \"仅支持小于 3.75 MB 的图片\",\n                \"Extension…\": \"扩展…\",\n                \"Extension\": \"扩展\",\n                    \"Extensions\": \"扩展\",\n                        \"Chat with your favorite tools and services\": \"使用您最喜欢的工具和服务聊天\",\n                        \"Browse the marketplace to find extensions for the tools and services you rely on\": \"浏览市场以查找您所依赖的工具和服务的扩展\",\n                        \"Browse marketplace\": \"前往市场\",\n\n                        // 不支持\n                        \"aren't supported by this model\": \"不支持此模型\",\n                        \"Switch back to the\": \"切回\",\n                        \"model or start a new conversation\": \"模型或新建对话\",\n            \"Space\": \"空间\",\n                \"Select a space\": \"选择一个空间\",\n                \"Recent spaces\": \"最近的空间\",\n                \"Filter items\": \"过滤项目\",\n                \"No spaces found\": \"没有找到空间\",\n                \"You can create a new space to get started.\": \"您可以创建一个新空间来开始。\",\n                \"Create a new space\": \"创建一个新空间\",\n            \"Send now\": \"发送\",\n\n            // 预设栏\n                \"Create issue\": \"创建议题\",\n                // 空间\n                    \"Recent\": \"最近\",\n                    \"Create a space\": \"新建空间\",\n                // 文件\n                    \"Profile README\": \"个人资料\",\n                    \"Simple calculator\": \"简易计算器\",\n                    \"Pong game\": \"乒乓球游戏\",\n                    \"Mermaid architecture overview\": \"Mermaid 架构概览\",\n                \"Write code\": \"写代码\",\n                    \"Create a profile README\": \"个人资料\",\n                    \"Generate a simple calculator\": \"简易计算器\",\n                    \"Make a Pong game\": \"乒乓球游戏\",\n                    \"Design a Mermaid architecture overview\": \"Mermaid 架构概览\",\n                // 拉取请求\n                    \"My open pull requests\": \"我打开的\",\n                    \"Summarize my latest PR\": \"总结最近\",\n                // 议题\n                    \"Issues assigned to me\": \"分配给我\",\n                    \"Create a new issue\": \"新建议题\",\n                    \"Summarize my latest issue\": \"总结最近\",\n                // Git\n                    \"Basic Git commands\": \"基本 Git 命令\",\n                    \"Git branching\": \"Git 分支\",\n                    \"Advanced Git commands\": \"高级 Git 命令\",\n\n        // 漏洞相关\n            \"Path Injection\": \"路径注入\",\n                \"Unvalidated input in path value creation risks unintended file/directory access\": \"创建路径值时输入的无效信息可能会导致意外文件/目录访问\",\n\n        \"You’ve edited\": \"您已编辑\",\n            \"Undo\": \"撤销\",\n            \"Revert\": \"回退\",\n\n        // 了解世界领先的人工智能开发工具的所有优势。\n        \"Accelerate your development speed with Copilot\": \"使用 Copilot 加快开发速度\",\n        \"Discover all the\": \"了解世界领先的人工智能开发工具的所有\",\n            \"benefits\": \"优势\",\n            \"of the world’s leading AI developer tool.\": \"。\",\n\n        \"Spaces\": \"空间\",\n\n        \"Set context once. Chat again and again\": \"一次设置上下文，反复聊天。\",\n            \"Create and share a custom Copilot experience using a collection of GitHub repositories, files, and other content.\": \"使用一组 GitHub 仓库、文件和其他内容创建并分享定制的 Copilot 体验。\",\n            \"Spaces lets you create shared research environments where you and your team can collaborate, explore topics, and exchange insights—all powered by AI-driven search and summarization.\": \"空间让您创建共享的研究环境，您和您的团队可以在其中协作、探索主题和交流见解——所有这些都得益于 AI 驱动的搜索和摘要。\",\n\n        \"Yours\": \"我的\",\n            \"Spaces you create will appear here.\": \"您创建的空间将在此显示。\",\n\n            \"Manage space\": \"管理\",\n              // 删除按钮\n                  \"Delete space\": \"删除空间\",\n                  \"Are you sure you want to delete this space? This action cannot be undone.\": \"您确定要删除吗？此操作不可撤销！\",\n\n        \"New space\": \"新建\",\n        \"Edit space\": \"编辑\",\n            \"Name\": \"名称\",\n                \"Memorable name that helps you find your space.\": \"帮助您找到空间的易记名称。\",\n\n            \"Icon\": \"图标\",\n                \"Pick a color to make your space more recognizable.\": \"选择一种颜色，让您的空间更易于识别。\",\n\n            \"Color:\": \"颜色：\",\n                \"Select a color\": \"选择颜色\",\n                    \"Filter colors\": \"筛选\",\n                    \"auburn\": \"赤褐色\",\n                    \"blue\": \"蓝\",\n                    \"brown\": \"棕\",\n                    \"coral\": \"珊瑚红\",\n                    \"cyan\": \"青\",\n                    \"gray\": \"灰\",\n                    \"green\": \"绿\",\n                    \"indigo\": \"靛蓝\",\n                    \"lemon\": \"柠檬黄\",\n                    \"lime\": \"酸橙\",\n                    \"olive\": \"橄榄绿\",\n                    \"orange\": \"橙\",\n                    \"pine\": \"松绿\",\n                    \"pink\": \"粉\",\n                    \"plum\": \"梅子\",\n                    \"purple\": \"紫\",\n                    \"red\": \"红\",\n                    \"teal\": \"蓝绿\",\n                    \"yellow\": \"黄\",\n\n            \"Owner\": \"所有者\",\n                \"Where we will store your space. Once created the space is not transferable.\": \"我们将存储您空间的位置，创建后无法转移。\",\n\n            \"Description\": \"介绍\",\n                \"(optional)\": \"（可选）\",\n                \"Displays beneath the title on your spaces overview page without impacting responses.\": \"在您的空间概览页标题下方显示，不影响回复内容。\",\n\n            \"Instructions\": \"说明\",\n                \"Changes how Copilot responds on specific questions or tasks.\": \"更改 Copilot 对特定问题或任务的回应方式。\",\n\n            \"Attachments\": \"附件\",\n                \"Add text, code files, or GitHub data to set a permanent context\": \"添加文本、代码文件或 GitHub 数据，以设置永久上下文\",\n                \"You've exceeded the size limit for this space. Remove some references to continue.\": \"您已超出此空间的大小限制。请移除一些引用以继续操作。\",\n\n                // 添加菜单\n                    \"Add files, folders...\": \"文件（夹）…\",\n                        \"Select folders and files\": \"选择文件（夹）\",\n                        \"Search for files or folders\": \"搜索文件（夹）\",\n                        \"Fetching files...\": \"获取文件中…\",\n                        \"Up to\": \"一次最多添加\",\n                        \"files can be added at a time.\": \"个文件。\",\n                        \"One or more files can't be submitted:\": \"一个或多个文件不能提交：\",\n                        \". Only supported file types are allowed.\": \"。只允许支持的文件类型。\",\n                    \"Add a text file\": \"文本文件\",\n                        // 名称\n                            \"Give the file a title\": \"文件标题\",\n                        \"Content\": \"内容\",\n                            \"Enter content here\": \"在此键入内容\",\n\n                // 文件列表\n                \"Size\": \"大小\",\n                \"Resource actions\": \"操作\",\n\n        // 空间 - 聊天\n            \"Start a new conversation\": \"开始聊天\",\n\n            \"Ask anything\": \"询问任何事\",\n\n            \"Start your first conversation using the field above\": \"用上面的输入框开始您的第一次对话\",\n            \"Start your first conversation using the input above\": \"输入文本开始您的第一次对话\",\n\n            // 右侧\n                \"Owned by\": \"所有者\",\n\n                \"View all attachments\": \"查看所有附件\",\n\n        // 智能体 https://github.com/copilot/agents\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 编程智能体现在使用更少的高级请求！\",\n                \"From now on, each session uses just one premium request.\": \"从现在起，每个会话只会使用一次高级请求。\",\n\n            \"Agents\": \"智能体\",\n\n            \"Delegate tasks to GitHub Copilot coding agent\":\"将任务委派给 GitHub Copilot 编程智能体\",\n            \"Let Copilot work independently in the background to complete tasks, and then monitor Copilot's progress.\":\"让 Copilot 在后台独立工作，完成任务后，您可以监控 Copilot 的进展。\",\n            \"This feature is not available on your current plan.\":\"此功能当前不在您的计划中。\",\n\n            \"Let Copilot tackle your TODOs\": \"让 Copilot 处理您的待办\",\n                \"Delegate tasks to GitHub Copilot coding agent to work on in the background, and then monitor Copilot's progress.\": \"将任务委派给 GitHub Copilot 编程智能体在后台处理，然后监控 Copilot 的进展。\",\n                \"Learn more about Copilot coding agent\": \"了解更多关于 Copilot 编程智能体的信息\",\n\n            // 仓库选择\n                \"Select an item\": \"选择一项\",\n                    \"Repos\": \"仓库\",\n                \"Select a branch\": \"选择分支\",\n                    \"Find a branch...\": \"查找分支...\",\n                \"default\": \"默认\",\n\n            // 自定义智能体\n            \"This repository has no custom agents\": \"此仓库没有自定义智能体\",\n                \"Custom agents are reusable instructions and tools in your repository.\": \"自定义智能体是您仓库中的可复用指令和工具。\",\n                \"Create a custom agent\": \"创建\",\n\n            \"Auto\": \"自动\",\n\n            \"Start task\": \"开始任务\",\n\n            \"Started\": \"开始于\",\n            \"Completed\": \"完成于\",\n\n            \"Recent sessions\": \"最近任务\",\n\n            \"Open\": \"打开\",\n                \"No open tasks yet. Start a new task to see it here.\": \"还没有打开的任务。开始一个新任务后即可在这里查看。\",\n                \"Failed\": \"失败\",\n                \"Ready for review\": \"准备审查\",\n                \"· Initializing pull request…\": \"· 初始化拉取请求…\",\n            \"Closed\": \"关闭\",\n                \"· started\": \"· 开始于\",\n                \"ago ·\": \"之前\",\n                \"Merged\": \"已合并\",\n\n            //\"Add a light/dark mode switcher\": \"添加浅色/深色模式切换器\",\n\n            \"You\": \"您\",\n            \"started a task\": \"开始任务\",\n            \"started work\": \"Copilot 开工\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Stop\": \"停止\",\n\n            \"View pull request\": \"查看拉取请求\",\n\n            \"revision\": \"修订\",\n\n            \"In progress\": \"进行中\",\n\n            // 评论框\n                \"Steer active session while Copilot is working\": \"在 Copilot 工作时引导活动任务\",\n\n                \"Copilot stopped work due to an error\": \"Copilot 因错误停工\",\n                    \"View detailed logs\": \"查看详细日志\",\n                    \"Copilot encountered an unknown Git error. If the problem persists, please contact GitHub Support. To retry, leave a comment on this pull request asking Copilot to try again.\": \"Copilot 遇到未知的 Git 错误。如果问题仍然存在，请联系 GitHub 支持。要重试，请在此拉取请求上留言，要求 Copilot 再试一次。\",\n\n                \"Submitting will post a pull request comment\": \"提交后将发布一个拉取请求评论\",\n\n            // 文件框\n                \"Filter files…\": \"筛选文件…\",\n                    \"Filter options\": \"筛选选项\",\n                    \"File extensions\": \"文件扩展名\",\n                    \"No extension\": \"无扩展名\",\n                    \"Vendored files\": \"引入的文件\",\n                    \"Viewed files\": \"已查看文件\",\n\n                \"Files changed\": \"更改的文件\",\n                \"Copilot is still working. Changes will automatically appear once they have been committed to the branch.\": \"Copilot 仍在工作中。更改将在提交到分支后自动显示。\",\n\n                \"Expand file tree\": \"展开文件树\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Previous file (K)\": \"上一个文件（K）\",\n                \"Next file (J)\": \"下一个文件（J）\",\n                \"Open diff view settings\": \"打开差异视图设置\",\n                    \"Compact line height\": \"自定义行高\",\n\n                \"Copy file name to clipboard\": \"复制文件名到剪切板\",\n                \"viewed\": \"已查看\",\n                \"Viewed\": \"已查看\",\n                \"Comment on this file\": \"评论此文件\",\n                \"View file\": \"查看文件\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由于此拉取请求中更改的文件数量较多，因此仅显示一个文件。\",\n\n            // 智能体总结页\n                \"session\": \"任务\",\n                \"sessions\": \"任务\",\n\n                \"premium\": \"高级\",\n                \"request\": \"请求\",\n                \"requests\": \"请求\",\n                \"· Last updated\": \"· 最后更新于\",\n    },\n    \"regexp\":[\n        [/Using results for “([^ ]+)” in ([^ ]+)/, \"使用 $2 中“$1”的结果\"],\n        [/(\\d+) vulnerability detected/, \"检测到 $1 个漏洞\"],\n        [/Retry with (.+)/, \"使用 $1 重试\"],\n        // 启用模型\n        [/Enable access to the latest (.+) model from ([^ ]+)./, \"允许访问 $2 最新的 $1 模型。\"],\n        [/Enable (.+)/, \"启用 $1\"],\n        [/Learn more about how GitHub Copilot serves (.+)/, \"了解更多关于 GitHub Copilot 如何为 $1 提供服务\"],\n        // 管理分享\n        [/(.+) at (\\d{1,2}):(\\d{2}) (AM|PM)/, (match, p1, p2, min, p3) =>{\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n\n            // 运行规则：非12AM照搬，PM数字加12，12AM=0\n            let hour = parseInt(p2, 10);\n            if (p3 === \"PM\" && hour !== 12) {\n                hour += 12;\n            } else if (p3 === \"AM\" && hour === 12) {\n                hour = 0;\n            }\n\n            return `${translatedDate}${hour}:${min}`;\n        }],\n        // 空间\n        [/Total percent used: (\\d+\\%)/, \"总使用率：$1\"],\n        // 智能体\n        [/(\\d+) revisions?/, \"$1 次修订\"],\n        [/No extension \\((\\d+)\\)/, \"无扩展名($1)\"],\n        [/Expand all lines: (.+)/, \"展开所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"折叠未更改行：$1\"],\n\n    ],\n    \"title\": {\n        \"static\": {\n            \"Agents · GitHub Copilot\": \"智能体 · GitHub Copilot\",\n            \"New chat · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n            \"Spaces · GitHub Copilot\": \"空间 · GitHub Copilot\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"github-copilot/code-review-waitlist\"] = {\n    \"static\": {\n        \"Copilot-powered code reviews waitlist\": \"Copilot 驱动的代码审查候补名单\",\n\n        \"Join the waitlist for Copilot-powered code reviews\": \"加入 Copilot 驱动代码审查候补名单\",\n            \"Get fast AI-powered code feedback in pull requests on GitHub.com and in Visual Studio Code. Jump from your pull request to Copilot Workspace to refine, validate and land suggestions.\": \"在 GitHub.com 和 Visual Studio Code 的拉取请求中获取由 AI 驱动的快速代码反馈。您可以直接从拉取请求跳转至 Copilot 工作区，对建议进行优化、验证并最终落实。\",\n\n        \"Join the waitlist\": \"加入等候名单\",\n            \"By signing up for the waitlist you agree to\": \"注册加入候补名单即表示您同意\",\n            \"the pre-release terms\": \"预发行条款\",\n            \". Signing up does not guarantee access. You will receive an email once you are accepted into the preview.\": \"。注册并不保证您一定能获得访问权限。如果您被纳入预览计划，我们将通过电子邮件通知您。\",\n\n        \"Admission to the preview of Copilot-powered code reviews is limited. You will receive an email if you are granted access.\": \"预览使用Copilot驱动的代码审查的名额有限。如果您获得访问权限，您将收到一封电子邮件通知。\",\n    },\n    \"regexp\":[\n        [/Thank you! ([^ ]+) is now on the waitlist/, \"感谢！$1 已加入候补名单\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"spark\"] = {\n    \"static\": {\n        // spark https://github.com/spark\n            \"Dream it.\": \"梦想它。\",\n            \"See it.\": \"看到它。\",\n            \"Ship it.\": \"交付它。\",\n\n            \"Transform ideas into full-stack intelligent apps in a snap. Publish with a click.\": \"将想法转化为全栈智能应用，一键发布。\",\n            \"Spark is currently only available to Copilot Pro+ and Enterprise users.\": \"Spark 目前仅适用于 Copilot Pro+ 和企业版用户。\",\n                \"Upgrade now to access Spark\": \"立即升级以访问 Spark\",\n\n            \"Create web apps with React and TypeScript to prototype ideas, build tools, and more\": \"使用 React 和 TypeScript 创建 Web 应用，原型化想法，构建工具等\",\n                \"Submit prompt\": \"提交提示词\",\n                \"Attach image\": \"附上图片\",\n\n            \"Recent\": \"最近\",\n                \"Favorite this spark\": \"收藏此 spark\",\n                \"Unfavorite this spark\": \"取消收藏此 spark\",\n                \"More Options\": \"更多选项\",\n            \"Favorites\": \"收藏\",\n                \"Nothing to see here… yet.\": \"这里还没有什么可看的。\",\n            \"Last updated\": \"最后更新于\",\n\n            \"uses AI. Check for mistakes.\": \"使用 AI。请检查错误。\",\n            \"Terms of service\": \"服务条款\",\n\n        // https://github.com/spark/<user-name>/<spark-name>\n            \"All sparks\": \"所有 spark\",\n\n            // 顶部提示条\n            \"Live preview is interrupted. Try refreshing the page to reconnect.\": \"实时预览已中断。请尝试刷新页面重新连接。\",\n            \"Refresh\": \"刷新\",\n\n            // 预览区\n                \"Hm, something went wrong\": \"嗯，出了点问题\",\n                    \"Runtime error\": \"运行时错误\",\n                        \"at\": \"位于\",\n                    \"Autofix error\": \"自动修复错误\",\n\n            // 代码区\n                \"Read-only\": \"只读\",\n                \"Cannot edit in read-only editor\": \"不能在只读编辑器中编辑\",\n                \"to escape the editor.\": \"退出编辑器\",\n                \"Dismiss hint\": \"关闭提示\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 进行样式设置\",\n                \"Collapse file tree\": \"折叠文件树\",\n                \"Expand file tree\": \"展开文件树\",\n                \"Copy file contents\": \"复制文件内容\",\n                \"Display options\": \"显示选项\",\n                    \"Wrap lines\": \"自动换行\",\n                    \"Hide whitespace\": \"隐藏空白字符\",\n                    \"Hide problems\": \"隐藏问题标记\",\n                    \"Show minimap\": \"显示缩略图\",\n\n            // 顶栏\n                \"Action unavailable\": \"无法执行操作\",\n                \"Action unavailable in this mode\": \"在此模式下无法执行操作\",\n                \"Action loading\": \"操作加载中\",\n                \"Select element to edit\": \"选择要编辑的元素\",\n                \"Refresh preview\": \"刷新预览\",\n                \"Show mobile view\": \"显示移动端视图\",\n                \"Exit mobile view\": \"退出移动端视图\",\n                \"Publish\": \"发布\",\n                \"Preview mode\": \"预览模式\",\n                \"Code mode\": \"代码模式\",\n                \"Why not both?\": \"为什么不两者兼得呢？\",\n                // 更多操作\n                    \"Open codespace\": \"打开代码空间\",\n                    \"Create repository\": \"创建仓库\",\n                    // 设置\n                        \"Close settings\": \"关闭设置\",\n                        \"Name\": \"名称\",\n                        \"Your spark will be published as\": \"你的 Spark 将被发布为\",\n                        \"Description\": \"描述\",\n                        \"Generated by Spark\": \"由 Spark 生成\",\n                        \"Delete spark\": \"删除 Spark\",\n                        \"Once you delete a spark, there is no going back. Please be certain.\": \"一旦删除 Spark，就无法恢复。请确认是否确定。\",\n\n            // 左侧面板\n                \"Collapse side panel\": \"折叠侧面板\",\n                \"Expand side panel\": \"展开侧面板\",\n                \"Iterate\": \"迭代\",\n                    \"What do you want to change?\": \"你想改变什么？\",\n                    // 提示词操作\n                    \"Restore\": \"还原\",\n                    \"Expand prompt\": \"展开提示词\",\n                    \"Collapse prompt\": \"折叠提示词\",\n                    \"Copy prompt\": \"复制提示词\",\n                    \"Manual edit\": \"手动编辑\",\n                    // 错误\n                    \"Fix all\": \"修复全部\",\n                    \"At\": \"在\",\n                \"Theme\": \"主题\",\n                    \"Custom theme\": \"自定义主题\",\n                    \"Select a theme\": \"选择一个主题\",\n                        \"Filter themes\": \"筛选主题\",\n                        \"Aurora Borealis\": \"极光\",\n                        \"Neon Noir\": \"霓虹黑\",\n                        \"Minimalist\": \"极简\",\n                        \"Cosmic Latte\": \"宇宙拿铁\",\n                        \"Candy Shop\": \"糖果店\",\n                        \"Neutral\": \"中性\",\n                        \"Golden Hour\": \"黄金时段\",\n                        \"Hacker Terminal\": \"黑客终端\",\n                        \"Neobrutalism\": \"新粗野主义\",\n                        \"High Contrast\": \"高对比度\",\n                        \"No themes found\": \"未找到主题\",\n                        \"Try changing the filter or selecting a different theme.\": \"尝试更改筛选条件或选择其他主题。\",\n                    \"Typography\": \"排版\",\n                        \"Sans serif\": \"无衬线\",\n                        \"Serif\": \"衬线\",\n                        \"Monospace\": \"等宽\",\n                        \"Select an item\": \"选择一项\",\n                        \"Select a font\": \"选择字体\",\n                    \"Color\": \"颜色\",\n                        \"Accent\": \"强调色\",\n                        \"Primary\": \"主色\",\n                        \"Secondary\": \"次要色\",\n                        \"Base\": \"基础色\",\n                        \"Muted\": \"柔和色\",\n                        \"Destructive\": \"危险色\",\n                        \"Card\": \"卡片\",\n                        \"Popover\": \"气泡提示\",\n                        \"Input\": \"输入框\",\n                        \"Border\": \"边框\",\n                        \"Ring\": \"聚焦环\",\n                        \"Background\": \"背景\",\n                        \"Text\": \"文字\",\n                        \"Search colors...\": \"搜索颜色...\",\n                            \"slate\": \"石板\",\n                            \"gray\": \"灰色\",\n                            \"zinc\": \"锌色\",\n                            \"neutral\": \"中性\",\n                            \"stone\": \"岩石\",\n                            \"red\": \"红色\",\n                            \"orange\": \"橙色\",\n                            \"amber\": \"琥珀\",\n                            \"yellow\": \"黄色\",\n                            \"lime\": \"酸橙\",\n                            \"green\": \"绿色\",\n                            \"emerald\": \"翡翠\",\n                            \"teal\": \"蓝绿\",\n                            \"cyan\": \"青色\",\n                            \"sky\": \"天蓝\",\n                            \"blue\": \"蓝色\",\n                            \"indigo\": \"靛蓝\",\n                            \"violet\": \"紫罗兰\",\n                            \"purple\": \"紫色\",\n                            \"fuchsia\": \"品红/紫红\",\n                            \"pink\": \"粉色\",\n                            \"rose\": \"玫瑰\",\n                        \"Show all colors\": \"显示所有颜色\",\n                        \"Hide colors\": \"隐藏颜色\",\n                    // 外观\n                        \"Border radius\": \"圆角\",\n                            \"Border radius None\": \"无圆角\",\n                            \"Border radius Small\": \"小圆角\",\n                            \"Border radius Medium\": \"中等圆角\",\n                            \"Border radius Large\": \"大圆角\",\n                            \"Border radius Full\": \"完全圆角\",\n                        \"Spacing\": \"间距\",\n                            \"Spacing None\": \"无间距\",\n                            \"Spacing Small\": \"小间距\",\n                            \"Spacing Medium\": \"中等间距\",\n                \"Data\": \"数据\",\n                    \"Add data storage by asking in the Iterate panel. View and edit the associated tables and data here.\": \"在 迭代 面板中提出需求即可添加数据存储。你可以在这里查看和编辑相关的表格与数据。\",\n                    \"rows\": \"行\",\n                    \"Edit this row\": \"编辑此行\",\n                    \"Edit value\": \"编辑值\",\n                    \"Done\": \"完成\",\n                    \"Read only\": \"只读\",\n                \"Prompts\": \"提示词\",\n                    \"Add AI capabilities by asking in the Iterate panel. View and edit the prompts powering those features here.\": \"在 Iterate 面板中提出需求即可添加 AI 能力。你可以在这里查看和编辑驱动这些功能的提示词。\",\n\n                    \"We couldn't load your data\": \"无法加载你的数据\",\n                        \"Please try again. If the problem persists, try again later.\": \"请重试。如果问题仍然存在，请稍后再试。\",\n                \"Assets\": \"素材\",\n                    \"Upload files\": \"上传文件\",\n                    \"Upload assets here or in the Iterate panel. Assets support images, documents, audio, and video. Ask in the Iterate panel to add them to your app.\": \"在此处或 迭代 面板中上传素材。素材支持图片、文档、音频和视频。在 迭代 面板中提出需求即可将它们添加到你的应用中。\",\n    },\n    \"regexp\": [\n        [/(\\d+) Errors?/, \"$1 个错误\"],\n        [/Made (\\d+) changes?/, \"做了 $1 个更改\"],\n        [/(\\d+) rows? • (.+)/, \"$1 行 • $2\"],\n        [/Delete \\((\\d+)\\)/, \"删除（$1）\"],\n    ],\n};\n\nI18N[\"zh-CN\"][\"sitemap\"] = { // 网站地图页，仅匹配公共部分\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"homepage\"][\"static\"],\n    },\n    \"regexp\":[],\n};\n\nI18N[\"zh-CN\"][\"education\"] = { // 教育页面，申请学生包会用到\n    \"static\": {\n        ...I18N[\"zh-CN\"][\"homepage\"][\"static\"],\n        // 顶栏\n            \"Students\": \"学生\",\n            \"Teachers\": \"教师\",\n            \"Schools\": \"学校\",\n\n        \"GitHub Education\": \"GitHub 教育\",\n        \"Empowering the next generation of developers\": \"增强新一代开发人员的能力\",\n            \"GitHub Education bridges the gap between coding education and a tech career, and is accessible to everyone globally at no cost.\": \"GitHub 教育在编程教育和技术职业之间架起了一座桥梁，全球每个人都可以免费使用。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n        // 教育包申请 https://education.github.com/pack\n            // 右上角菜单\n                \"Your benefits application\": \"我的福利\",\n                \"Your GitHub.com profile\": \"我的个人资料\",\n                \"Education Docs\": \"教育文档\",\n                \"Education Support\": \"教育支持\",\n                \"Sign out of GitHub Education\": \"退出 GitHub 教育\",\n            // 顶部提示\n                \"We're still processing your application. Once this is complete you will have access to the student developer pack offers.\": \"我们仍在处理您的申请。一旦处理完毕，您就可以获得学生开发包优惠。\",\n\n            \"GitHub Student Developer Pack\": \"GitHub 学生开发包\",\n                \"Learn to ship software like a pro.\": \"学习如何像专业人士一样开发软件。\",\n                \"There's no substitute for hands-on experience. But for most students, real world tools can be cost-prohibitive. That's why we created the GitHub Student Developer Pack with some of our partners and friends.\": \"没有替代品可以代替亲身实践的经验。但对于大多数学生来说，现实世界中的工具可能成本过高。这就是为什么我们与一些合作伙伴和朋友一起创建了GitHub 学生开发包。\",\n            \"Sign up for Student Developer Pack\": \"获取学生包\",\n            \"Love the pack? Spread the word\": \"喜欢吗？分享给朋友！\",\n            // 后续内容完全用不到直接不翻\n\n            // https://education.github.com/discount_requests/application\n                \"Benefits application\": \"优惠\",\n                \"Access free GitHub Education benefits\": \"获取免费 GitHub 教育福利\",\n                    \"Complete the fields below to unlock tools and resources for your educational journey\": \"填写以下字段，为您的教育之旅解锁工具和资源\",\n\n                \"Select your role in education\": \"选择身份\",\n                    \"Teacher\": \"教师\",\n                    \"Student\": \"学生\",\n                    \"School\": \"学校\",\n\n                    // 学生\n                    \"Enhance your tech skills with real-world tools\": \"利用现实世界中的工具提高您的技能\",\n                        \"STUDENT\": \"学生\",\n                            \"FREE GitHub Pro while you are a student\": \"学生期间免费使用 GitHub 专业版\",\n                            \"Valuable GitHub Student Developer Pack partner offers\": \"宝贵的 GitHub 学生开发包合作伙伴优惠\",\n                            \"GitHub Campus Expert training for qualified applicants\": \"为合格申请者提供 GitHub 校园专家培训\",\n                        \"To qualify for student benefits, you must:\": \"您必须具备以下条件：\",\n                            \"Have a GitHub account.\": \"持有 GitHub 账号。\",\n                            \"Be at least 13 years old.\": \"大于 13 岁。\",\n                            \"Be currently enrolled in a degree or diploma granting course of study from a recognized educational institution.\": \"目前就读于认可教育机构的学位或文凭课程。\",\n                            \"Be able to provide documentation from your school which demonstrates your current student status.\": \"能够提供学校出具的证明您当前学生身份的文件。\",\n                        \"Before you begin:\": \"在开始之前：\",\n                            \"Check that you are using a\": \"检查您使用的是\",\n                                \"supported browser\": \"受支持的浏览器\",\n                                \", and that location services are not blocked by your browser or platform.\": \"，且您的浏览器或平台未阻止定位服务。\",\n                            \"Complete your GitHub account\": \"在 GitHub 帐户\",\n                                \"billing information\": \"账单信息\",\n                                \"with your full legal name as it appears on your academic affiliation documentation. (You do not have to add a payment method.)\": \"中填写您的法定全名，与您的学历证明材料上的姓名一致。(无需添加支付方式）。\",\n                            \"Verify\": \"验证\",\n                                \"your academic email address on your GitHub account, if your school provides one.\": \"您的教育邮箱于 GitHub，如果您的学校提供。\",\n                            \"Secure your GitHub account with\": \"保护您的 GitHub 账户安全，使用\",\n                                \"two-factor authentication\": \"双重身份验证\",\n                                \". (We recommend using the\": \"。（我们推荐使用\",\n                                \"app.)\": \"。）\",\n                            \"Personalize\": \"个性化\",\n                                \"your public GitHub Profile with your photo, your name, your pronouns, and more.\": \"您的 GitHub 简介，使用照片、姓名、代词等。\",\n                            \"Generate a README for your public GitHub Profile,\": \"为您的公共 GitHub 简介生成 README，\",\n                                \"customize it with your interests\": \"根据您的兴趣进行定制\",\n                                \", and publish it for the world to see.\": \"，然后公开。\",\n                        \"Offer availability:\": \"可提供优惠：\",\n                            \"All partner offers are subject to the partner company's terms and conditions and may not be available in all regions.\": \"所有合作伙伴优惠均受合作伙伴公司的条款和条件限制，可能不适用于所有地区。\",\n\n                        \"Application\": \"申请\",\n                            \"Required fields are marked with an asterisk\": \"带星号的为必填项\",\n                        \"What is the name of your school?\": \"您的学校名称\",\n                            \"Note:\": \"注：\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page.\": \"如果您的学校不在列表中，请输入学校全名并继续。下一页将要求您提供有关贵校的更多信息。\",\n                            \"A minimum of two characters is required to find your school.\": \"查找学校至少需要两个字符。\",\n                            // 窗口\n                            \"We require applicants of\": \"我们要求\",\n                            \"to use one of these school-issued email addresses to apply:\": \"的申请人使用其中一个学校发布的电子邮件地址进行申请：\",\n                            \"add and verify your\": \"添加并验证\",\n                            \"school-issued email address\": \"学校提供的电子邮件地址\",\n                            \"in your account settings – or a contact email if you do not have one. Once your email is verified, refresh this page.\": \"到您的 GitHub 账户。一旦您的电子邮件通过验证，请刷新此页面。\",\n                            \"Add an email address\": \"添加电子邮件\",\n                            // 验证通过\n                            \"You have verified the email address\": \"您已在 GitHub 上验证邮件\",\n                            \"on your GitHub account. That academic domain is associated with the school\": \"。该域名属于：\",\n                            \"Select this school\": \"选择此学校\",\n                            \"We chose this school based on your email. If this isn't your school, please\": \"我们根据您的电子邮件选择了这所学校。如果这不是您的学校，请在账户设置中\",\n                            \"add and verify another\": \"添加并验证其他\",\n                            \"in your account settings - or select another school.\": \"- 或选择其他学校。\",\n                        \"When you click \\\"Continue\\\" you will be prompted to share your location with us. Providing your current location helps us verify your affiliation with your chosen school.\": \"点击 “继续 ”后，系统会提示您与我们共享您的位置。提供您的当前位置有助于我们核实您与所选学校的关联。\",\n                        \"Continue\": \"继续\",\n\n                        // 提交历史\n                            \"You've already submitted\": \"您已提交申请\",  // 后续正则\n\n                            \"approved\": \"批准\",\n                                \"Congrats! Your request for\": \"恭喜！您的申请\",\n                                \"was approved and your benefits will be available\": \"已获批准，福利将很快发放。\",\n                                \"soon\": \"常见问题\", // 该处链接指向 https://github.com/orgs/community/discussions/111352#user-content-how-long-after-ive-been-approved-will-i-receive-my-academic-benefits\n                                \"was approved and your benefits are now available.\": \"已获批准且福利已发放。\",\n\n                            \"rejected\": \"驳回\",\n                                \"Unfortunately, we weren't able to approve your educational discount request for\": \"很遗憾，我们无法批准您的教育折扣申请：\",\n                                \"What happened?\": \"发生了什么？\",\n                                    \"Suggested proof to expedite your approval:\": \"建议提供证明，以加快审批：\",\n                                \"Have questions?\": \"有疑问？\",\n                                    \"Please seek help via our\": \"请通过我们的\",\n                                    \"Student Developer Pack Application FAQ\": \"学生开发包申请常见问题\",\n                                    \"or visit the\": \"或访问\",\n                                    \"GitHub Education Community.\": \"GitHub 教育社区。\",\n\n                            \"pending\": \"排队\",\n\n                        \"Get help\": \"获取帮助\",\n                            \"Common questions about applying for your academic discount.\": \"关于申请学术折扣的常见问题。\",\n                        // 学生\n                            \"Learn about GitHub's programs\": \"了解 GitHub 计划\",\n                        // 教师\n                            \"Discover GitHub's resources\": \"探索 GitHub 资源\",\n\n            // https://education.github.com/discount_requests/数字/additional_information\n                \"Upload proof\": \"上传证明\",\n\n                \"Upload proof of your academic status\": \"上传学籍证明\",\n                \"We need a little more proof to verify your academic status.\": \"还需要一点证明验证学籍状态。\",\n                \"What we need to see:\": \"我们需要查看：\",\n                    \"Your student ID\": \"您的学生证\",\n                        \"Your ID should\": \"您的学生证需要\",\n                        \"include a date\": \"包含日期\",\n                        \"that verifies your current enrollment. Make sure the image is clear and easy to read; if it looks blurry, please take a new photo and upload it again.\": \"，以证明您当前的注册情况。请确保图像清晰易读；如果图像模糊，请重新拍摄照片并上传。\",\n                    \"Or another form of proof\": \"或其他证明\",\n                        \"If you don't have a student ID, or it doesn't include a date, you can upload a letter on school letterhead or any documentation\": \"如果您没有学生证，或者学生证上没有日期，您可以上传一封印有学校信笺抬头的信件或任何能证明您\",\n                        \"with a date\": \"当前注册日期\",\n                        \"that demonstrates your current enrollment.\": \"的文件。\",\n\n                    \"Please upload proof of your academic status.\": \"请上传您的学籍证明。\",\n                        \"Snap a picture of your qualifying proof of current academic status using your HD webcam or smartphone camera.\": \"使用高清摄像头或智能手机摄像头拍下您当前学历的合格证明照片。\",\n                        \"Take a picture\": \"拍照\",\n                            \"Take photo\": \"拍照\",\n                            \"Reset\": \"重置\",\n                            \"Error: Could not access your webcam\": \"错误：无法访问您的网络摄像头\",\n                            \"camera2 1, facing front\": \"镜头2 1，前摄\",\n                            \"camera2 0, facing back\": \"镜头2 0，后摄\",\n                            \"Uploading…\": \"上传中…\",\n                            \"Thanks for uploading your photo. Please complete the form and submit when you're ready.\": \"感谢您上传照片。请填写表格并提交。\",\n                            // 未拍照直接提交\n                                \"Please upload proof of your current school affiliation\": \"请上传您目前所在学校的证明\",\n                                \"Please upload proof of your current school affiliation that is less than 1MB in size\": \"请上传小于 1MB 的照片\",\n                                \"Binary data can't be blank\": \"二进制数据不能为空\",\n\n                    \"Please note, your request cannot be edited once it has been submitted, so please verify your details for accuracy before sending them to us. After clicking \\\"Process my application\\\", please wait as processing can take several seconds.\": \"请注意，您的申请一经提交便无法编辑，因此在发送给我们之前，请核实您的详细信息是否准确。点击 “处理我的申请 ”后，请稍候，因为处理过程可能需要几秒钟。\",\n                        \"Process my application\": \"处理申请\",\n                        \"Processing your application\": \"处理中\",\n                        \"Processing information...\": \"处理中…\",\n\n                    // 上传失败\n                        \"Your application cannot be reviewed until you fix the following:\": \"您的申请将不被审查直到解决以下问题：\",\n                            \"You must configure your browser and operating system to allow location access. You may not use a VPN. If you believe that our information about your school is incomplete or incorrect, then please select ‘My selected school has incorrect or incomplete information e.g. domains or campus location’ option when submitting a GitHub Education support ticket.\": \"您必须配置您的浏览器和操作系统以允许位置访问。您不得使用VPN。如果您认为我们关于您学校的资料不完整或不正确，请在提交GitHub 教育支持工单时选择“我选择的学校信息有误或不完整，例如域名或校园位置”选项。\",\n                            \"Please use your device camera to submit your academic affiliation documents. If you’re having trouble using your device camera, please allow camera access for the application website on your browser. The steps for this will vary depending on which browser you are using. Information on browsers supported by GitHub can be found\": \"请使用设备摄像头提交您的学术关系文件。如果您在使用设备摄像头时遇到困难，请在浏览器上允许摄像头访问申请网站。具体步骤视您使用的浏览器而定。有关 GitHub 支持的浏览器信息，请点击\",\n                                \"here\": \"此处\",\n                                \". You may also try applying from a different computer or mobile device.\": \"。您也可以尝试换一台电脑或移动设备申请。\",\n                            \"Please ensure that your academic affiliation document contains your last name exactly as it appears in your\": \"请确保您的学籍文件中的姓氏与\",\n                                \"GitHub billing information\": \"GitHub 账单信息\",\n                                \". If you have only a single legal name, enter it in both the first and last name fields of your GitHub billing information.\": \"中的姓氏完全一致。如果您只有一个合法姓名，请在 GitHub 账单信息的姓和名栏中同时输入。\",\n                            \"The image you selected does not appear to contain your school name. Your complete school name must appear in your document, not only the school logo. You may include multiple documents together. If your official document is not in English then you may photograph the original next to an English translation.\": \"您选择的图片似乎不包含您的学校名称。文件中必须包含完整的校名，而不仅仅是校徽。您可以将多份文件放在一起。如果您的官方文件不是英文的，您可以将原件与英文翻译件放在一起拍照。\",\n                            \"Please ensure that your academic affiliation document contains your first name exactly as it appears in your\": \"请确保您的学术关系文件中的姓名与\",\n                                //\"GitHub billing information\": \"\",\n                                \". Variations of your name and nicknames are unacceptable.\": \"中的姓名完全一致。请勿使用不同的姓名和昵称。\",\n                            \"You are unlikely to be verified until you have completed your\": \"在完成\",\n                                \"GitHub user profile\": \"GitHub 用户资料\",\n                                \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通过验证。请不要使用姓名的变体或昵称。更新个人档案信息后，请退出并重新登录 GitHub，然后再重新申请。\",\n                            \"The image you captured appears to be a screen display. Please take a clear, live photo of physical documentation confirming your academic enrollment.\": \"您提供的图片似乎是屏幕显示内容。请直接拍摄纸质材料以确认您的在学状态，例如学生证、录取通知书或官方在学证明等纸质文件的原件照片。\",\n            // https://education.github.com/discount_requests/数字/completed 成功\n                \"Get benefits\": \"获取福利\",\n\n                \"Thanks for submitting!\": \"感谢提交！\",\n                    \"Be sure to check your email. If you don't hear from us within the hour, you should receive an email from us in less than\": \"请务必查看您的电子邮件。如果您在一小时内没有收到我们的回复，您应该会在\",\n                    \"5 days\": \"5 天内\",\n                    \". Have an Octotastic day!\": \"收到我们的电子邮件。祝您度过愉快的一天！\",\n\n            // https://education.github.com/onboardings/new 申请批准后出现\n                \"Welcome to GitHub Education!\": \"欢迎来到 GitHub 教育！\",\n                    \"GitHub Education offers resources and programs to help students achieve their career goals.\": \"GitHub 教育提供各种资源和计划，帮助学生实现职业目标。\",\n                    \"To get started, please answer two questions so we can add a learning path to your Education dashboard to help you with your goals.\": \"要开始学习，请回答两个问题，以便我们在您的教育仪表板上添加学习路径，帮助您实现目标。\",\n\n                \"Question 1 of 2\": \"问题 1/2\",\n                    \"In the next 4-6 months, which of the following are you hoping to accomplish? Select two that apply best.\": \"在未来 4-6 个月内，您希望实现以下哪些目标？请选择最适合的两项。\",\n                        \"Understanding how to use GitHub\": \"了解如何使用 GitHub\",\n                        \"Refining my skills in a particular topic (coding, gaming, design, big data, artifical intelligence, etc.)\": \"提高我在某一特定领域（编码、游戏、设计、大数据、人工智能等）的技能\",\n                        \"Connecting with other students who have similar interests\": \"与其他兴趣相投的学生建立联系\",\n                        \"Developing career readiness skills\": \"培养职业准备技能\",\n                        \"Two selections are required to continue.\": \"必须选两项。\",\n                \"Question 2 of 2\": \"问题 2/2\",\n                    \"Which topics are of interest to you? Select all that apply.\": \"您对哪些主题感兴趣？请选择所有适用选项。\",\n                        \"GitHub features and products\": \"GitHub 功能和产品\",\n                        \"Building a professional identity on GitHub\": \"在 GitHub 上打造专业身份\",\n                        \"Understanding emerging technologies in a particular field of interest (web development, gaming, design, data, engineering, robotics, etc.)\": \"了解特定兴趣领域（网络开发、游戏、设计、数据、工程、机器人技术等）的新兴技术\",\n                        \"Finding people, projects, and communities to connect with\": \"寻找可以联系的人、项目和社区\",\n                        \"Speaking at a conference\": \"在会议上发言\",\n                        \"Gaining skills to start a great career\": \"掌握技能，开始美好的职业生涯\",\n                \"Skip this question\": \"跳过\",\n\n                \"Here's our recommendation!\": \"这是我们的推荐！\",\n                    \"Continue with our recommended learning path for you, or select another one. Based on your selection,\": \"继续我们为您推荐的学习路径，或选择其他路径。根据您的选择，\",\n                    \"we will display a learning path on your dashboard\": \"我们将在您的仪表板上显示学习路径，\",\n                    \"to help you get started.\": \"帮助您开始学习。\",\n\n                    \"Get Started with GitHub\": \"GitHub 入门\",\n                        \"With this learning path, you will learn how to make your first profile README and find other student repositories.\": \"通过本学习路径，您将学会如何制作第一个配置文件 README 和查找其他学生资源库。\",\n                    \"Recommended\": \"推荐\",\n                    \"GitHub Deep Dive\": \"深入了解 GitHub\",\n                        \"Go deeper on how to use codespaces and the GitHub flow to create a web application.\": \"深入了解如何使用代码空间和 GitHub 流程创建网络应用程序。\",\n                    \"Continue to Dashboard\": \"在仪表板继续\",\n\n            // https://education.github.com/learner/learn\n                // 顶部提示\n                \"Your onboarding preferences have been saved!\": \"您的入职首选项已保存！\",\n                // 左侧\n                    // 左侧栏\n                        \"Open Global Navigation Menu\": \"打开全局导航菜单\",\n                            \"Student Developer Pack\": \"学生开发包\",\n\n                            \"Explore More\": \"探索更多\",\n                                \"Education Community\": \"教育社区\",\n                                \"Campus Experts\": \"校园专家\",\n                                \"Education Blog\": \"教育博客\",\n\n                    \"Your request was approved.\": \"您的申请已批准。\",\n                        \"Your benefits will be available soon.\": \"您的福利即将发放。\",\n\n                    \"Learn new skills\": \"学习新技能\",\n                        \"Access learning resources from GitHub Education.\": \"从 GitHub 教育获取学习资源。\",\n                    \"Find opportunities\": \"寻找机遇\",\n                        \"Power up your skillset with real-world projects.\": \"通过实际项目增强您的技能。\",\n                    \"Get connected\": \"获得联系\",\n                        \"Discover other learners and build your network.\": \"发现其他学习者，建立自己的网络。\",\n                // 中间\n                    \"Learning path\": \"学习途径\",\n                        \"Intro to GitHub\": \"GitHub 介绍\",\n                            \"GitHub flow is a lightweight, branch-based workflow. In this Experience you'll learn the basics of the GitHub Flow including creating and making changes to branches within a repository, as well as creating and merging pull requests. The GitHub flow is useful for everyone, not just developers.\": \"GitHub 工作流是一种基于分支的轻量级工作流。在本体验中，您将学习 GitHub 工作流的基础知识，包括创建和修改版本库中的分支，以及创建和合并拉取请求。GitHub 工作流不仅对开发人员有用，对每个人都有用。\",\n                            \"Go to Intro to GitHub\": \"前往 GitHub 介绍\",\n                        \"Primer: Codespaces\": \"入门：代码空间\",\n                            \"Wondering how to get started with Codespaces? This Primer makes it easy by giving you the templates, videos and step-by-step resources you need to get you started running, testing, debugging and pushing code using this instant cloud developer environment.\": \"想知道如何开始使用代码空间吗？本入门指南为您提供模板、视频和分步资源，让您轻松开始运行、测试、调试和推送代码。\",\n                            \"Go to Primer: Codespaces\": \"前往入门：代码空间\",\n                    \"Not what you were looking for? Check out our\": \"还没有找到您想要的？请查看我们的\",\n                        \"other learning paths.\": \"其他学习路径。\",\n\n                    \"Student Developer Pack offers\": \"学生开发包提供\",\n                        \"Your Student Developer Pack will be ready soon!\": \"您的学生开发包即将就绪！\",\n                            \"We will notify you via email when your\": \"我们将通过电子邮件通知，当您可以使用\",\n                                \"Experiences\": \"体验\",\n                                \"offers\": \"优惠\",\n                                \"become\": \" \",\n                                \"available to you.\": \"时。\",\n                        \"Popular offers you have not explored:\": \"您尚未探索的热门优惠：\",\n                            \"Explore More Offers\": \"探索更多\",\n                            \"Curated Experiences with popular offers:\": \"精选体验与热门优惠：\",\n                // 右侧\n                    // 右上角图标菜单\n                    \"Update your location\": \"更新您的位置\",\n\n                    // 看板\n                    \"Enabling Copilot\": \"启用 Copilot\",\n                        \"To ensure your free Copilot benefit is enabled, redeem by going to this link.\": \"要确保您的免费 Copilot 优惠已启用，请访问此链接进行兑换。\",\n\n                    \"Updates in Learn New Skills\": \"学习新技能的更新内容\",\n                        \"No new updates\": \"无更新\",\n\n                    \"Claimed offers\": \"已申请优惠\",\n                        \"Your explored offers failed to load, please refresh the page to see this content.\": \"加载失败，请刷新页面以查看此内容。\",\n\n            // https://education.github.com/learner/opportunities\n                \"Community Exchange\": \"社区交流\",\n                    \"Community Exchange is a collection of student repositories for teaching, learning and collaborating.\": \"社区交流是一个用于教学、学习和合作的学生资源库。\",\n                    \"Go to Community Exchange\": \"前往社区交流\",\n                \"Updates in Find Opportunities\": \"寻找机遇的更新内容\",\n\n            // https://education.github.com/learner/connect\n                \"Events\": \"事件\",\n                    \"View more events\": \"查看更多\",\n                    \"See more\": \"详情\",\n                \"GitHub Education Live\": \"GitHub 教育直播\",\n                    \"Go to Twitch\": \"前往 Twitch\",\n\n                // 右侧\n                    \"Updates in Get Connected\": \"获得联系更新内容\",\n                    \"Campus Expert\": \"校园专家\",\n                        \"Campus Experts are student leaders that strive to build diverse and inclusive technical communities.\": \"校园专家是学生领袖，他们努力建设多元化和包容性的技术社区。\",\n\n                        \"Follow your Expert\": \"关注专家\",\n                        \"Follow student leaders trained by GitHub to get help with hackathons & events\": \"关注由 GitHub 培训的学生领袖，在黑客马拉松和活动中获得帮助\",\n\n                    \"Education blog\": \"教育博客\",\n                        \"View more\": \"查看更多\",\n        // 底部\n            \"Product\": \"产品\",\n    },\n    \"regexp\":[\n        [/(\\d+) requests?/, \"$1 次\"],\n        [/Hi, ([^ ]+)! You were last verified as a on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1) => {\n                const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `您好，`+ user + `！您最近于${translatedDate}验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。`;\n            // return '您好，' + user + '！您最近于' + year + '年' + monthKey[month] + day + '日验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。';\n        }],\n        [/Hi, ([^ ]+)! You were last verified as a student on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1)=> {\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `您好，`+ user + `！您最近于${translatedDate}学生验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。`;\n            //return '您好，' + user + '！您最近于' + year + '年' + monthKey[month] + day + '日学生验证。您现在无需重新验证。从验证到享受学业福利之间可能会有一段等待时间。';\n        }],\n        [/(Submitted|Verified since) (.+)/, (match, opt, p1) => { // p1为(.+)\n            var optKey = {\"Submitted\": \"提交于\", \"Verified since\": \"验证自\",};\n            const dateRegExp = I18N[\"zh-CN\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return optKey[opt] + `${translatedDate}`;\n        }],\n        //[/Verified since (.+)/, \"验证自 $1\"],\n        [/(\\d+) views?/, \"$1 次观看\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Education\": \"GitHub 教育\",\n            \"GitHub Student Developer Pack - GitHub Education\": \"GitHub 学生开发者包 - GitHub 教育\",\n            \"Community Exchange - GitHub Education\": \"社区交流 - GitHub 教育\",\n            \"Events - GitHub Education\": \"事件 - GitHub 教育\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"mcp\"] = {\n    \"static\": {\n        \"Connect models to the real world\": \"连接模型至真实世界\",\n            \"Servers and tools from the community that connect models to files, APIs, databases, and more.\": \"来自社区的服务器和工具，可以将模型连接到文件、API、数据库等。\",\n\n        \"Search MCPs\": \"搜索 MCP\",\n\n        \"All MCP servers\": \"所有 MCP 服务器\",\n            \"Install\": \"安装\",\n                \"Install in VS Code\": \"安装到 VS Code\",\n                \"Install in VS Code Insiders\": \"安装到 VS Code 测试版\",\n\n            \"By\": \"作者\",\n\n        // 具体页面\n            \"Install MCP server\": \"安装 MCP 服务器\",\n            \"Contact support\": \"获取支持\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"MCP Registry\": \"MCP 互联\",\n        },\n    },\n};\n\nI18N[\"zh-CN\"][\"repository/agents\"] = {\n    \"static\": {\n        // 介绍页面\n        \"Copilot Coding Agent handles routine tasks so you can focus on core work\": \"Copilot 编程智能体处理例行任务，让您专注于核心工作\",\n            \"Save time by offloading testing, dependency upgrades, migrations and maintenance to agents. Create pull requests from Copilot Chat, CLI, IDEs or assign an Issue to Copilot to get started.\": \"将测试、依赖项升级、迁移和维护等工作交给智能体处理，节省您的时间。您可以通过 Copilot Chat、命令行、IDE 创建拉取请求，或直接将议题分配给 Copilot 来开始使用。\",\n                \"View Copilot Coding Agent capabilities\": \"查看 Copilot 编程智能体功能\",\n\n        // 免费试用提示\n        \"Available on paid plans. Try it with Copilot Pro — free for 30 days.\": \"仅在付费计划中可用。立即试用 Copilot Pro，享受 30 天免费体验。\",\n            \"Start free trial\": \"开始免费试用\",\n\n        // 左侧Tab\n        \"Created by me\": \"由我创建的\",\n        \"All sessions\": \"所有任务\",\n\n        \"Customize environment\": \"自定义环境\",\n        \"Configure\": \"自定义配置\",\n    },\n};\n"
  },
  {
    "path": "locals_zh-TW.js",
    "content": "/*******************************************************************************\n\n    locals.js - 搭配用戶腳本插件`GitHub 中文化插件`的頁面匹配規則, 翻譯忽略規則,\n                詞條庫文件\n    Copyright (C) 2016-2021 樓教主 (https://github.com/52cik)\n    Copyright (C) 2021-當前 沙漠之子 (https://github.com/maboloshi)\n\n    This program is free software: you can redistribute it and/or modify\n    it under the terms of the GNU General Public License as published by\n    the Free Software Foundation, either version 3 of the License, or\n    (at your option) any later version.\n\n    This program is distributed in the hope that it will be useful,\n    but WITHOUT ANY WARRANTY; without even the implied warranty of\n    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n    GNU General Public License for more details.\n\n    You should have received a copy of the GNU General Public License\n    along with this program.  If not, see <https://www.gnu.org/licenses/>.\n\n    Home: https://github.com/maboloshi/github-chinese\n*/\nvar I18N = {};\n\nI18N.conf = {\n\n    /**\n     * 匹配 pathname 頁面的正則\n     *\n     * 註冊頁面 /signup\n     * 登錄二步驗證 /login/oauth\n     * 登錄頁面 /login\n     * 密碼重置 /password_reset\n     * 組織頁面 /orgs\n     * 探索頁面 /explore\n     * 訂閱頁面 /notifications/subscriptions\n     * 通知頁面 /notifications\n     * 關注頁面 /watching\n     * 星標頁面 /stars\n     * 議題頁面 /issues\n     * 拉取請求 /pulls\n     * 搜索頁面 /search\n     * 趨勢頁面 /trending\n     * 展示頁面 /showcases\n     * 導入倉庫 /new/import\n     * ...\n     */\n    rePagePath: /^\\/($|home|dashboard|feed|copilot|spark|signup|account_verifications|login\\/oauth|login|logout|sessions?|password_reset|orgs|explore|topics|notifications\\/subscriptions|notifications|watching|stars|issues|pulls|repos|search|trending|showcases|new\\/(import|project)|new|import|settings\\/(profile|admin|appearance|accessibility|notifications|billing|emails|security_analysis|security-log|security|auth|sessions|keys|ssh|gpg|organizations|enterprises|blocked_users|interaction_limits|code_review_limits|repositories|codespaces|models|codespaces\\/allow_permissions|deleted_repositories|packages|copilot|pages|replies|installations|apps\\/authorizations|reminders|sponsors-log|apps|(?:personal-access-|)tokens|developers|applications\\/new|applications|connections\\/applications|education\\/benefits)|settings|installations\\/new|marketplace|apps|account\\/(organizations\\/new|choose|upgrade|billing\\/history)|projects|redeem|discussions|collections|sponsors|sponsoring|github-copilot\\/(signup|free_signup|code-review-waitlist|pro)|codespaces|developer\\/register|features|security|sitemap|education|mcp)|^\\/users\\/[^\\/]+\\/(projects|packages|succession\\/invitation)/,\n\n    // 倉庫路徑\n    rePagePathRepo: /^\\/[^\\/]+\\/[^\\/]+\\/(issues|pulls|pull|tree|watchers|stargazers|new|edit|delete|upload|find|models|wiki|branches|discussions|activity|rules|releases|packages|tags|labels|milestones?|compare|commit|blob|blame|actions(\\/metrics\\/(usage|performance))?|runs|deployments|security|pulse|community|forks|fork|import|graphs\\/(contributors|community|traffic|commit-activity|code-frequency)|network$|network\\/(dependencies|dependents|updates|members)|settings\\/(access|code_review_limits|interaction_limits|branches|branch_protection_rules|tag_protection|rules|actions|models\\/access-policy|hooks|copilot\\/(code_review|coding_agent)|environments|codespaces|pages|security_analysis|dependabot_rules|keys|secrets|variables|installations|notifications|key_links)|settings|transfer|projects\\/new|projects|pkgs|contribute|subscription|invitations|codespaces|attestations|custom-properties|reported_content|agents|tasks)/,\n\n    // 組織路徑\n    rePagePathOrg: /^\\/[^\\/]+\\/[^\\/]+\\/(repositories\\/new|repositories|sponsoring|discussions|projects|packages|teams|new-team|people|outside-collaborators|pending_collaborators|dashboard|billing_managers\\/new|invitations?|settings\\/(profile|billing|roles|member_privileges|teams|import-export|blocked_users|interaction_limits|code_review_limits|moderators|repository-defaults|rules|codespaces|copilot|actions|hooks|discussions|packages|pages|projects|security_analysis|security|dependabot_rules|domains|secrets|variables|oauth_application_policy|installations|personal-access-token|reminders|sponsors-log|audit-log|deleted_repositories|applications\\/new|applications|apps\\/new|apps|publisher|policies\\/repositories)|topics|domain\\/new|audit-log\\/event_settings|billing\\/(history|plans)|policies\\/applications)|^\\/[^\\/]+\\/(enterprise_plan|sponsoring)/,\n\n    // 特定頁面，啟用`字符數據`監測\n    characterDataPage: ['repository/new', 'repository/edit', 'new', 'new/import', 'orgs/repositories/new', 'repository/blob', 'repository/pull', 'marketplace', 'homepage', 'repository/issues', 'repository/commit', 'copilot', 'spark', 'repository/settings/rules'],\n\n    // 特定頁面，忽略突變元素規則\n    ignoreMutationSelectorPage: {\n        'repository/new': [\".cm-scroller\"], // 程式碼編輯器\n        'repository/edit': [\".cm-scroller\", \"table\"], // 程式碼編輯器\n        'repository/pull': [\n            \"td.blob-code\", // 程式碼差異 分屏/同屏\n            '.js-full-logs-container', // 工作流運行日誌\n        ],\n        'repository/compare': [\n            \"tbody\", // 程式碼差異\n            \".js-preview-body\", // 新建拉取請求 - 正文編輯器預覽\n        ],\n        'repository/commit': [\"td.blob-code\", \"div.diff-text-inner\"], // 程式碼差異 分屏/同屏\n        'repository/blob': [\n            \"#highlighted-line-menu-positioner\", // 程式碼視圖 存在\n            \"#repos-sticky-header\", // 程式碼視圖 置頂標題\n            'nav[data-testid=\"breadcrumbs\"]', // 麵包屑導航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 麵包屑導航 文件名部分\n        ],\n        'repository/blame': [\"#highlighted-line-menu-positioner\"], // 程式碼視圖\n        'repository': [\n            \".AppHeader-context\",\n            \"table\",\n            \"article.markdown-body\",\n        ],\n        'repository/tree': [\n            'nav[data-testid=\"breadcrumbs\"]', // 麵包屑導航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 麵包屑導航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夾和文件條目\n        ],\n        'repository/releases': [\".Box-footer\"], // 附件清單\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建議題 - 正文編輯器預覽\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', // 某個議題 - 正文以及正文編輯器、添加評論編輯器預覽\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源碼視圖\n            '.js-full-logs-container', // 工作流運行日誌\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark':[\n            '.cm-line',\n        ],\n        '*': [\n            'div.QueryBuilder-StyledInputContainer', // 頂部搜索欄 關鍵詞\n            '#qb-input-query span', // 搜索頁面 搜索欄 關鍵詞\n\t\t\t'div.styled-input-content', // 篩選條\n        ],\n    },\n\n    // 特定頁面，忽略元素規則\n    ignoreSelectorPage: {\n        'page-profile': [\n            'span.p-nickname', // 用戶暱稱\n            'span.p-name', // 同上\n        ],\n        'page-profile/followers': [\n            'span.f4.Link--primary',\n            \"span.Link--secondary.pl-1\",\n        ],\n        'page-profile/repositories': [\n            'a[itemprop=\"name codeRepository\"]', // 倉庫名稱\n        ],\n        'page-profile/stars': [\n            '.mb-1.d-inline-block > h3', // 倉庫名稱\n        ],\n        'repository': [\n            '.AppHeader-context-full', // 頂部 <username>/<repo_name>\n            'strong[itemprop=\"name\"]', // 倉庫名稱\n            // 'ul.list-style-none', // 右側 部署列表 無效\n            'div[data-testid=\"latest-commit\"]', // 最新的提交\n            'tr.react-directory-row', // 文件列表中文件夾和文件條目\n            'p.f4.my-3', // 倉庫簡介正文\n            '#translate-me',\n            '.my-3.d-flex.flex-items-center', // 倉庫簡介中的鏈接\n            'article.markdown-body', // 自述文件正文\n            'li.mt-2',\n        ],\n        'repository/tree': [\n            '.AppHeader-context-full', // 頂部 <username>/<repo_name>\n            'div.react-tree-show-tree-items', // 左側文件樹專案\n            'span.PRIVATE_TreeView-item-content-text', // 左側文件樹專案 - 子文件夾\n            'article.markdown-body', // Markdown 正文\n            'nav[data-testid=\"breadcrumbs\"]', // 麵包屑導航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 麵包屑導航 文件名部分\n            'tr.react-directory-row', // 文件列表中文件夾和文件條目\n        ],\n        'repository/blob': [\n            '.AppHeader-context-full', // 頂部 <username>/<repo_name>\n            'article.markdown-body', // Markdown 正文\n            'div.react-tree-show-tree-items', // 左側文件樹專案\n            '[id^=\"offset\"]', // 符號-->引用\n            '#highlighted-line-menu-positioner', // 程式碼視圖\n            '#filter-results', // 右側 符號篩選\n            '.Text__StyledText-sc-17v1xeu-0', // 右側 符號篩選\n            'nav[data-testid=\"breadcrumbs\"]', // 麵包屑導航\n            'div[data-testid=\"breadcrumbs-filename\"]', // 麵包屑導航 文件名部分\n        ],\n        'repository/issues': [\n            'div[aria-live=\"polite\"]>div.markdown-body', // 新建議題 - 正文編輯器預覽\n            '.markdown-body[data-team-hovercards-enabled=\"true\"]', //  某個議題 - 正文以及正文編輯器、添加評論編輯器預覽\n        ],\n        'repository/commit': [\n            'td.blob-code', // 程式碼差異 分屏/同屏\n            'span.ws-pre-wrap', // 提交說明\n            \"h4[class^='Title-module__heading']\", // 提交標題\n        ],\n        'repository/pull': [\n            'td.blob-code', // 程式碼差異 分屏/同屏\n            '.js-full-logs-container', // 工作流運行日誌\n        ],\n        'repository/compare': [\n            'td.blob-code', // 程式碼差異 分屏/同屏\n        ],\n        'repository/edit': [\n            '.cm-scroller', // 程式碼編輯器\n            'table', // 程式碼差異預覽\n        ],\n        'repository/new': [\n            '.cm-scroller', // 程式碼編輯器\n            'table', // 程式碼差異預覽\n        ],\n        'repository/actions': [\n            'table.highlight', // 工作流程文件 源碼視圖\n            '.js-full-logs-container', // 工作流運行日誌\n        ],\n        'repository/releases': [\n            'div.Box-body>div.markdown-body', // 發佈版正文\n        ],\n        'repository/wiki': [\n            '#wiki-body', // wiki 正文\n            'ul.list-style-none.mx-4.px-1', // 右側目錄\n        ],\n        'repository/security': [\n            'td.blob-code',\n        ],\n        'orgs': [\n            'a[itemprop=\"name codeRepository\"]', // 倉庫名稱\n        ],\n        'search': [\n            'span.search-match', // 搜索匹配信息\n            'div.code-list', // 程式碼片段預覽\n            'optgroup > option', // 下拉菜單列表\n        ],\n        'dashboard': [\n            '.js-notice-dismiss', // 右側欄 廣告\n            '.TimelineItem', // 右側欄 最新變化\n            'section.comment-body', // 發佈版正文\n        ],\n        'gist': [\n            '.gist-content[itemprop=\"about\"]', // Gist 簡介\n            'div.js-blob-code-container', // 程式碼框\n            'table.js-diff-table', // 程式碼差異\n        ],\n        'topics': [\n            'h3.f3.color-fg-muted.text-normal.lh-condensed', // 倉庫名稱\n        ],\n        'marketplace': [\n            '.markdown-body',\n        ],\n        'copilot':[\n            '.cm-line',\n        ],\n        'spark': [\n            '.Table',\n            '.monaco-editor',\n        ],\n        '*': [\n            '.comment-body', '.js-preview-body',\n            '.markdown-title',\n            'span.ActionListItem-descriptionWrap',  // 頂部搜索欄 關鍵詞\n            'CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD', 'SVG', 'MARK', // 特定元素標籤\n\t\t\t'div.styled-input-content', // 篩選條\n        ],\n    },\n\n    // 以下兼容 1.9.2 版本，且凍結 等待 1.9.3 明顯 Bug 修復\n    /**\n     * 要翻譯的頁面正則(不含倉庫頁)\n     *\n     * 2021-10-07 11:53:34\n     * GitHub 網站更新 調整 Class 過濾規則\n     * 且過濾 Class 並不是總是生效，增加 PathName 規則補充\n     */\n    rePageClass: /\\b(page-(profile|new-repo|create-org)|session-authentication)\\b/,\n\n    /**\n     * 忽略區域的 class 正則\n     *\n     * 程式碼編輯器 內容 程式碼高亮 CodeMirror\n     * 程式碼編輯器 最小單元 cm-line ͼ.*\n     * 程式碼高亮 blob-code\n     * 倉庫名和用戶名 repo-and-owner (已知出現在：應用安裝授權頁和設置頁 選定倉庫)\n     * 文件,目錄位置欄 |js-path-segment|final-path\n     * 文件列表 files js-navigation-container js-active-navigation-container\n     * 評論內容等 js-comment-body\n     * 評論預覽 js-preview-body\n     * 評論編輯區域 comment-form-textarea\n     * 文件搜索模式 js-tree-finder-virtual-filter\n     * 倉庫文件列表 js-navigation-open Link--primary\n     * 快捷鍵 按鍵 js-modifier-key\n     * 洞察-->流量-->熱門內容列表 capped-list-label\n     * realease 頁面 描述主體 markdown-body my-3\n     * 倉庫頁 倉庫描述 f4 my-3\n     * 提交的用戶名 commit-author$\n     * 搜索頁 搜索結果 search-match\n     * 追溯 視圖 程式碼 react-code-text\n     * tree 視圖 文件名 react-directory-filename-column 提交信息 react-directory-commit-message\n     * 程式碼差異頁面 程式碼 pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en\n     */\n    reIgnoreClass: /(cm-line|ͼ.*|pl-s1|pl-smi|pl-token|pl-c1|pl-kos|pl-k|pl-c|pl-en|CodeMirror|blob-code|highlight-.*|repo-and-owner|js-path-segment|final-path|files js-navigation-container|js-comment-body|js-preview-body|comment-form-textarea|markdown-title|js-tree-finder-virtual-filter|js-navigation-open Link--primary|js-modifier-key|capped-list-label|blob-code blob-code-inner js-file-line|markdown-body my-3|f4 my-3|commit-author$|search-match|react-directory-filename-column|react-directory-commit-message|react-code-text|zausi)/,\n\n    /**\n     * 忽略區域的 itemprop 屬性正則\n     * name 列表頁 倉庫名\n     * author 倉庫頁 作者名稱\n     * additionalName 個人主頁 附加名稱\n     */\n    reIgnoreItemprop: /(name|author|additionalName)/,\n\n    /**\n     * 忽略區域的 特定元素id 正則\n     * /blob頁面 offset  符號-->引用\n     * /blob頁面 右側 符號篩選 filter-results\n     * fix repo詳情頁文件路徑breadcrumb\n     */\n    reIgnoreId: /(readme|^offset|breadcrumb|file-name-id|filter-results)/,\n\n    /**\n     * 忽略區域的 標籤 正則\n     * /i 規則不區分大小寫\n     */\n    reIgnoreTag: ['CODE', 'SCRIPT', 'STYLE', 'LINK', 'IMG', 'MARKED-TEXT', 'PRE', 'KBD'],\n    // marked-text --> 文件搜索模式/<user-name>/<repo-name>/find/<branch> 文件列表條目\n    // ^script$ --> 避免勿過濾 notifications-list-subscription-form\n    // ^pre$ --> 避免勿過濾\n};\n\nI18N[\"zh-TW\"] = {};\n\nI18N[\"zh-TW\"][\"title\"] = { // 標題翻譯\n    \"static\": { // 靜態翻譯\n        \"Sign up to GitHub · GitHub\": \"註冊 · GitHub\",\n        \"Sign in to GitHub · GitHub\": \"登錄 GitHub · GitHub\",\n        \"Join GitHub · GitHub\": \"加入 GitHub · GitHub\",\n        \"Forgot your password? · GitHub\": \"忘記您的密碼了嗎？· GitHub\",\n        \"Forgot your password?\": \"忘記您的密碼了嗎？\",\n        \"GitHub · Where software is built\": \"GitHub · 軟體構建的地方\",\n        \"Create a New Repository\": \"新建倉庫\",\n        \"Import a Repository\": \"導入倉庫\",\n        \"New Project\": \"創建專案\",\n        \"Your Repositories\": \"我的倉庫\",\n        \"Your Projects\": \"我的專案\",\n        \"Your Packages\": \"我的軟體包\",\n        \"Your Stars\": \"我的星標頁面\",\n        \"Your profile\": \"個人資料\",\n        \"Your Achievements\": \"我的成就\",\n        \"Your Followers\": \"我的關注者\",\n        \"Who You’re Following\": \"我關注的人\",\n        \"Account settings\": \"賬戶設置\",\n        \"Appearance\": \"外觀\",\n        \"Accessibility\": \"無障礙\",\n        \"Notification settings\": \"通知設置\",\n        \"Billing\": \"賬單\",\n        \"Email settings\": \"郵箱設置\",\n        \"Account security\": \"賬戶安全\",\n        \"SSH and GPG keys\": \"SSH 與 GPG 公鑰\",\n        \"Organizations\": \"組織\",\n        //\"Blocked users\": \"拉黑用戶\",\n        \"Temporary interaction limits\": \"臨時互動限制\",\n        \"Code review limits\": \"程式碼審查限制\",\n        \"Repositorys\": \"倉庫\",\n        \"Deleted Packages\": \"刪除的軟體包\",\n        \"Pages\": \"GitHub 頁面\",\n        \"Saved replies\": \"快捷回覆\",\n        \"Security & analysis\": \"安全與分析\",\n        \"Installed GitHub Apps\": \"已安裝的 GitHub 應用\",\n        \"Issue search results\": \"議題搜索結果\",\n        \"Scheduled reminders\": \"定時提醒\",\n        \"Security log\": \"安全日誌\",\n        \"Sponsorship Log\": \"贊助日誌\",\n        \"GitHub Apps\": \"GitHub 應用\",\n        \"Developer applications\": \"開發者應用\",\n        \"Personal Access Tokens\": \"個人訪問令牌\",\n        \"Register new GitHub App\": \"註冊新 GitHub 應用\",\n        \"New OAuth Application\": \"新 OAuth 應用\",\n        \"Create a new Gist\": \"創建新程式碼片段\",\n        \"Discover gists\": \"探索程式碼片段\",\n        \"Enable two-factor authentication\": \"啟用雙因素身份驗證\",\n        \"Manage two-factor authentication\": \"管理雙因素身份驗證\",\n        \"Options\": \"倉庫 · 選項\",\n        \"Confirm access\": \"授權訪問\",\n        \"General\": \"通常\",\n        \"Manage access\": \"訪問管理\",\n        \"Branches\": \"分支\",\n        \"Tags\": \"標籤\",\n        \"Webhooks\": \"Web 鉤子\",\n        \"Environments\": \"環境\",\n        \"Security & analysis\": \"安全性與分析\",\n        \"Deploy keys\": \"部署密鑰\",\n        \"Add deploy key\": \"添加部署密鑰\",\n        \"Actions secrets\": \"操作機密\",\n        \"Dependabot secrets\": \"Dependabot 機密\",\n        \"Configure email notifications\": \"配置郵件通知\",\n        \"Community Standards\": \"社區準則\",\n        \"General Organization Settings\": \"常規組織設置\",\n        \"Member privileges\": \"成員權限\",\n        \"Teams\": \"團隊\",\n        \"Trending repositories on GitHub today\": \"今日熱門倉庫\",\n        \"Trending repositories on GitHub this week\": \"本週熱門倉庫\",\n        \"Trending repositories on GitHub this month\": \"本月熱門倉庫\",\n        \"Repository defaults\": \"倉庫默認值\",\n        \"Repository search results\": \"倉庫搜索結果\",\n        \"Runners\": \"運行器\",\n        \"Runner Groups\": \"運行器組\",\n        \"Packages\": \"軟體包\",\n        \"Package\": \"軟體包\",\n        \"Payment Information\": \"支付信息\",\n        \"Security\": \"安全\",\n        \"Verified & approved domains\": \"經驗證和批准的域名\",\n        \"Add a Pages verified domain\": \"添加一個經驗證的 GitHub Pages 域名\",\n        \"Third-party application access policy\": \"第三方應用訪問策略\",\n        \"Audit log\": \"審計日誌\",\n        \"Deleted Repositories\": \"已刪除的倉庫\",\n        \"GitHub Publisher Verification\": \"GitHub 發佈者驗證\",\n        \"Notifications\": \"通知\",\n        \"Confirm your account recovery settings\": \"確認您的賬戶恢復設置\",\n        \"Your stars\": \"我的星標\",\n        \"Your starred repositories\": \"我的星標倉庫\",\n        \"Your starred topics\": \"我的星標主題\",\n        \"Register for the GitHub Developer Program\": \"註冊 GitHub 開發者計劃\",\n        \"Codespaces\": \"程式碼空間\",\n        \"Codespace Templates\": \"程式碼空間模版\",\n        \"Create new codespace\": \"創建程式碼空間\",\n        \"Error\": \"錯誤\",\n        \"Discover gists · GitHub\": \"探索程式碼片段 · GitHub\",\n        \"Explore GitHub Sponsors\": \"探索 GitHub 贊助者\",\n        \"Actions Usage Metrics\": \"操作使用情況\",\n        \"Actions usage metrics\": \"操作使用情況\",\n        \"Fine-grained Personal Access Tokens\": \"精細化的個人訪問令牌\",\n        \"Import repository\": \"導入倉庫\",\n        \"Explore GitHub\": \"探索 GitHub\",\n        //\"Rate limit · GitHub\": \"速率限制 · GitHub\",\n        //\"GitHub: Let’s build from here · GitHub\": \"GitHub: 讓我們從這裡開始\",\n        \"GitHub · Build and ship software on a single, collaborative platform · GitHub\": \"GitHub · 在單一協作平臺上構建和發佈軟體\",\n        \"GitHub · Build and ship software on a single, collaborative platform\": \"GitHub · 在單一協作平臺上構建和發佈軟體\",\n        \"Topics on GitHub · GitHub\": \"GitHub 上的主題\",\n        \"Code security\": \"程式碼安全\",\n        \"Deploy keys\": \"部署密鑰\",\n        \"Actions Performance Metrics\": \"操作數據看板\",\n        \"Actions performance metrics\": \"操作數據看板\",\n        \"GitHub Sitemap · GitHub\": \"GitHub 網站地圖\",\n        \"Code search results\": \"程式碼搜索結果\",\n        \"Enterprises\": \"企業版\",\n        \"Blocked users\": \"黑名單\",\n        \"New conversation · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n        \"Models · GitHub Marketplace\": \"模型 · GitHub 市場\",\n        \"GitHub Education\": \"GitHub 教育\",\n        \"GitHub Student Developer Pack - GitHub Education\": \"學生開發包 - GitHub 教育\",\n        \"Get your GitHub benefits - GitHub Education\": \"獲取福利 - GitHub 教育\",\n        \"Signup to GitHub Copilot\": \"註冊 GitHub Copilot\",\n        \"Device Activation\": \"設備激活\",\n        \"Spending Limit\": \"支付限額\",\n        \"Autolink references\": \"自動鏈接引用\",\n        \"Add autolink reference\": \"添加自動鏈接引用\",\n        \"Billing Overview\": \"賬單概覽\",\n        \"Billing Usage\": \"計費用量\",\n        \"Budgets\": \"預算\",\n        \"Code Security\": \"程式碼安全性\",\n        \"New Fine-grained Personal Access Token\": \"新建精細化個人訪問令牌\",\n        \"Coding agent\": \"編程智能體\",\n        \"Get Started With GitHub Discussions\": \"開始使用 GitHub 討論\",\n        \"SSH and GPG keys\": \"SSH 和 GPG 密鑰\",\n        \"MCP Registry\": \"MCP 互聯\",\n        \"User repositories\": \"用戶倉庫\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Authorized OAuth Apps/, \"授權的 OAuth 應用\"],\n        [/Authorized GitHub Apps/, \"授權的 GitHub 應用\"],\n        [/Installed GitHub Apps/, \"已安裝的 GitHub 應用\"],\n        [/Accessibility/, \"無障礙\"],\n        [/Environments/, \"環境\"],\n        [/New repository/, \"新倉庫\"],\n        [/([^ ]+) \\((.+)\\) \\/ Repositories/, \"$1 / 倉庫\"], // github 賬戶名/ 成就\n        [/([^ ]+) \\((.+)\\) \\/ Starred/, \"$1($2) / 星標\"], // github 賬戶名（暱稱）/ 星標\n        [/Repositories/, \"倉庫\"],\n        [/Starred/, \"星標頁面\"],\n        [/starred repositories/, \"星標倉庫\"],\n        [/starred topics/, \"星標主題\"],\n        [/starred/, \"星標\"],\n        [/Commits · ([^ ]+)/, \"提交 · $1\"],\n        [/New Issue/, \"新建議題\"],\n        [/Issues?/, \"議題\"],\n        [/Pull (R|r)equests?/, \"拉取請求\"],\n        [/Actions secrets · ([^ ]+)/, \"操作機密 · $1\"],\n        [/Actions settings · ([^ ]+)/, \"操作設置 · $1\"],\n        [/Actions/, \"操作\"],\n        [/Projects/, \"專案\"],\n        [/Packages?/, \"軟體包\"],\n        [/Settings · Rulesets/, \"設置 · 規則集\"],\n        [/Security Overview/, \"安全概述\"],\n        [/Security Policy/, \"安全政策\"],\n        [/Security Advisories/, \"安全公告\"],\n        [/Dependabot alerts/, \"Dependabot 警報\"],\n        [/Pulse/, \"統計\"],\n        //[/Contributors to/, \"貢獻者 ·\"],\n        [/Dashboard/, \"儀表板\"],\n        [/Deployments/, \"部署\"],\n        [/Community/, \"社區\"],\n        [/Traffic/, \"流量\"],\n        [/Commit Activity/, \"提交活動\"],\n        [/Code frequency/, \"程式碼頻率\"],\n        [/Created/, \"已創建\"],\n        [/Dependencies/, \"依賴項\"],\n        [/Network Dependents/, \"網絡依賴者\"],\n        [/Network Graph/, \"網絡圖\"],\n        [/Revisions/,\"修訂\"],\n        [/GitHub Skills Quickstart Guide/, \"GitHub 技能快速入門指南\"],\n        [/Skills/, \"技能\"],\n        [/Sponsoring/, \"捐助\"],\n        [/Stargazers/, \"追星者\"],\n        [/Forks?/, \"複刻\"],\n        [/Settings · Tags · ([^ ]+)/, \"設置 · 標籤 · $1\"],\n        [/Tags?/, \"標籤\"],\n        [/Edit release/, \"編輯發行版\"],\n        [/Releases?/, \"發行版\"],\n        [/Draft Advisory/, \"安全公告草案\"],\n        [/Code scanning alerts/, \"程式碼掃描警報\"],\n        [/Repository topics/, \"倉庫主題\"],\n        [/Scheduled reminders/, \"定時提醒\"],\n        [/Sponsorship Log/, \"贊助日誌\"],\n        [/Sponsor @([^ ]+) on GitHub Sponsors/, \"在 GitHub 上贊助 $1\"],\n        [/OAuth applications/, \"OAuth 應用\"],\n        [/People · Pending Collaborators/, \"成員 · 待定協作者\"],\n        [/Members · People · ([^ ]+)/, \"成員 · $1\"],\n        [/People/, \"成員\"],\n        [/Outside collaborators/, \"外部協作者\"],\n        [/New Discussion/, \"新討論\"],\n        [/Discussions/, \"討論\"],\n        [/Workflow runs/, \"工作流運行\"],\n        [/Webhooks · Settings/, \"Web 鉤子 · 設置\"],\n        [/Add a code of conduct to/, \"添加程式碼行為準則到\"],\n        [/Caches?/, \"緩存\"],\n        [/Runners?/, \"運行器\"],\n        [/Attestations?/, \"證書\"],\n        [/Activit(y|ies)/, \"活動\"],\n        [/Rate limit/, \"速率限制\"],\n        [/Comparing/, \"比較\"],\n        [/History for ([^ ]+)/, \"$1 的歷史\"],\n        [/Compare plans for ([^ ]+)/, \"為 $1 比較計劃\"],\n        [/([^ ]+)’s gists/, \"$1 的程式碼片段\"],\n        [/Secret scanning · ([^ ]+)/, \"機密掃描 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 機密 · $1\"],\n        [/Contributors to ([^ ]+)/, \"貢獻者 · $1\"],\n        [/([^ ]+) repositories^/, \"$1 的倉庫\"],\n        [/Create new page · ([^ ]+) Wiki/, \"新建頁面 · $1 的 Wiki\"],\n        [/Settings · Branches · ([^ ]+)/, \"設置 · 分支 · $1\"],\n        [/Webhooks · Settings · ([^ ]+)/, \"Web 鉤子  · 設置 · $1\"],\n        [/Environments · ([^ ]+)/, \"環境 · $1\"],\n        [/Branches · ([^ ]+)/, \"分支 · $1\"],\n        [/([^ ]+) · GitHub Topics/, \"$1 · GitHub 主題\"],\n        [/New release · ([^ ]+)/, \"新發行版 · $1\"],\n        [/Codespaces secrets · ([^ ]+)/, \"程式碼空間機密 · $1\"],\n        [/Dependabot secrets · ([^ ]+)/, \"Dependabot 機密 · $1\"],\n        [/Invitation to join ([^ ]+)/, \"加入 $1 邀請\"],\n        [/Security Managers for · ([^ ]+)/, \"安全管理員 · $1\"],\n        [/New File at \\/ · ([^ ]+)/, \"新建文件 · $1\"],\n        [/Blaming ([^ ]+) at ([^ ]+) · ([^ ]+)/, \"追溯 $1（$2） · $3\"],\n        [/Deleting ([^ ]+)\\/([^ ]+) at ([^ ]+) · ([^ ]+)/, \"刪除 $3/$2 · $4\"], // 簡化部分內容\n        [/([^ ]+)'s list \\/ (.+)/, \"$1 的列表 / $2\"],\n        [/([^ ]+) \\((.+)\\) \\/ Achievements/, \"$1($2) / 成就\"], // github 賬戶名（暱稱）/ 成就\n        [/Teams · ([^ ]+)/, \"團隊 · $1\"],\n        [/Create new team · ([^ ]+)/, \"新建團隊 · $1\"],\n        [\"_regexp_end\", \"end\"]\n    ],\n};\n\nI18N[\"zh-TW\"][\"public\"] = { // 公共區域翻譯\n    \"static\": { // 靜態翻譯\n        // 錯誤頁面\n            \"Find code, projects, and people on GitHub:\": \"在 GitHub 上查找程式碼、專案和人員：\",\n            \"Access has been restricted\": \"訪問被限制\",\n                \"You have triggered a rate limit.\": \"您已觸發速率限制。\",\n                \"Please wait a few minutes before you try again;\": \"請稍等幾分鐘再重試；\",\n                \"in some cases this may take up to an hour.\": \"在某些情況下，這可能最多需要一個小時。\",\n            \"No server is currently available to service your request.\": \"當前服務器無法為您的請求提供服務。\",\n            \"This page is taking too long to load.\": \"此頁面加載時間過長。\",\n            \"We had issues producing the response to your request.\": \"我們在響應您的請求時遇到了問題。\",\n            \"Sorry about that. Please try refreshing and contact us if the problem persists.\": \"對此我們很抱歉。請嘗試刷新，如果問題仍然存在，請聯繫我們。\",\n            \"Error\": \"錯誤\",\n            \"Looks like network is down!\": \"看起來網絡未連接！\",\n            \"Contact Support\": \"聯繫 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 狀態\",\n\n        // 底部紅條\n            \"You can’t perform that action at this time.\": \"此時無法執行該操作。\",\n\n        // 速率限制 - 短時間頻繁訪問網頁，至少包括 https://github.com/issues\n            \"Whoa there!\": \"請停一下！\",\n            \"You have exceeded a secondary rate limit.\": \"您已經超出次要速率限制。\",\n            \"Please wait a few minutes before you try again;\": \"請稍等幾分鐘再重試；\",\n            \"in some cases this may take up to an hour.\": \"在某些情況下，這可能最多需要一個小時。\",\n\n        // 議題、拉取請求、討論浮動信息卡（在任一引用這些鏈接的頁面都會出現\n            \"You opened this issue\": \"您打開了這個議題\",\n            \"You opened this pull request\": \"您打開了這個拉取請求\",\n            \"You commented on this issue\": \"您對此議題發表了評論\",\n            \"You commented on and opened this issue\": \"您打開了這個議題並發表評論\",\n            \"You commented on this pull request\": \"您對此拉取請求發表了評論\",\n            \"You commented on and opened this pull request\": \"您打開了這個拉取請求並發表評論\",\n            \"You were mentioned on and commented on this issue\": \"您在此議題上被提及並發表評論\",\n            \"You were mentioned on and commented on this pull request\": \"您在此拉取請求上被提及並發表評論\",\n            \"You were mentioned on and opened this pull request\": \"您被提及並打開了此拉取請求\",\n            \"You are assigned to this pull request\": \"您被指派處理此拉取請求\",\n            \"You are assigned to and opened this pull request\": \"您打開並被指派處理此拉取請求\",\n            \"You left a review\": \"您已評論\",\n            \"Changes requested\": \"請求更改\", // 拉取請求\n            \"Review required\": \"請求審查\", // 拉取請求\n            \"Approved\": \"已批准\", // 拉取請求\n            \"replied\": \"已回覆\", // 討論\n\n        // 頂部欄 (未登錄)\n            \"Platform\": \"平臺\",\n                \"AI CODE CREATION\": \"AI 程式碼生成\",\n                    // Copilot\n                        \"Write better code with AI\": \"藉助 AI 寫出更好的程式碼\",\n                    // Spark\n                        \"Build and deploy intelligent apps\": \"構建和部署智能應用\",\n                    \"GitHub Models\": \"GitHub 模型\",\n                        \"Manage and compare prompts\": \"管理和比較提示詞\",\n                    \"MCP Registry\": \"MCP 互聯\",\n                        \"Integrate external tools\": \"集成外部工具\",\n                \"DEVELOPER WORKFLOWS\": \"開發者工作流\",\n                    // 操作\n                        \"Automate any workflow\": \"自動化任何工作流程\",\n                    // 程式碼空間\n                        \"Instant dev environments\": \"即時開發環境\",\n                    // 議題\n                        \"Plan and track work\": \"計劃和追蹤工作\",\n                    \"Code Review\": \"程式碼審查\",\n                        \"Manage code changes\": \"管理程式碼更改\",\n                \"APPLICATION SECURITY\": \"應用安全\",\n                    \"GitHub Advanced Security\": \"GitHub 高級安全\",\n                        \"Find and fix vulnerabilities\": \"查找並修復漏洞\",\n                    \"Code security\": \"程式碼安全\",\n                        \"Secure your code as you build\": \"邊開發邊保障程式碼安全\",\n                    \"Secret protection\": \"密鑰保護\",\n                        \"Stop leaks before they start\": \"在洩露發生前就阻止它們\",\n\n                \"EXPLORE\": \"探索\",\n                    \"Why GitHub\": \"為什麼選擇 GitHub\",\n                    \"Changelog\": \"更新日誌\",\n                    \"GitHub Marketplace\": \"GitHub 市場\",\n\n                \"View all features\": \"查看所有功能\",\n\n            \"Solutions\": \"解決方案\",\n                \"BY COMPANY SIZE\": \"企業規模\",\n                    \"Enterprises\": \"企業\",\n                    \"Small and medium teams\": \"中小團隊\",\n                    \"Startups\": \"初創公司\",\n                    \"Nonprofits\": \"非盈利組織\",\n                \"BY USE CASE\": \"使用案例\",\n                    \"App Modernization\": \"應用現代化\",\n                    \"DevSecOps\": \"開發安全運維\",\n                    \"DevOps\": \"開發運維\",\n                    \"CI/CD\": \"持續集成/持續部署\",\n                    \"View all use cases\": \"查看所有使用案例\",\n                \"BY INDUSTRY\": \"工業\",\n                    \"Healthcare\": \"健康護理\",\n                    \"Financial services\": \"金融服務\",\n                    \"Manufacturing\": \"製造業\",\n                    \"Government\": \"政府\",\n                    \"View all industries\": \"查看所有工業\",\n                \"View all solutions\": \"查看所有解決方案\",\n\n            \"Resources\": \"資源\",\n                \"EXPLORE BY TOPIC\": \"按主題探索\",\n                    \"Software Development\": \"軟體開發\",\n                    \"View all topics\": \"查看所有主題\",\n                \"EXPLORE BY TYPE\": \"按類型探索\",\n                    \"Customer Stories\": \"客戶案例\",\n                    \"Customer stories\": \"客戶案例\",\n                    \"Events & webinars\": \"活動與網絡研討會\",\n                    \"Ebooks & reports\": \"電子書與報告\",\n                    \"Business insights\": \"商業洞察\",\n                    \"GitHub Skills\": \"GitHub 技能課程\",\n                \"SUPPORT & SERVICES\": \"支持與服務\",\n                    \"Partners\": \"合作洽談\",\n                    \"Customer support\": \"客戶支持\",\n                    \"Community forum\": \"社區論壇\",\n                    \"Trust center\": \"信任中心\",\n\n            \"Open Source\": \"開源\",\n                \"COMMUNITY\": \"社區\",\n                    \"GitHub Sponsors\": \"GitHub 贊助者\",\n                        \"Fund open source developers\": \"資助開源開發人員\",\n                \"PROGRAMS\": \"專案\",\n                    \"Security Lab\": \"安全實驗室\",\n                    \"Maintainer Community\": \"維護者社區\",\n                    \"Accelerator\": \"加速器計劃\",\n                    \"Archive Program\": \"存檔計劃\",\n                \"REPOSITORIES\": \"倉庫\",\n                    \"Topics\": \"主題\",\n                    \"Trending\": \"趨勢\",\n                    \"Collections\": \"集合\",\n\n            \"Enterprise\": \"企業\",\n                \"ENTERPRISE SOLUTIONS\": \"企業級解決方案\",\n                    \"Enterprise platform\": \"企業平臺\",\n                        \"AI-powered developer platform\": \"AI 驅動的開發者平臺\",\n                \"AVAILABLE ADD-ONS\": \"可選附加組件\",\n                    // GitHub 高級安全\n                        \"Enterprise-grade security features\": \"企業級安全功能\",\n                    \"Copilot for Business\": \"Copilot 企業版\",\n                        \"Enterprise-grade AI features\": \"企業級 AI 功能\",\n                    \"Premium Support\": \"高級支持\",\n                        \"Enterprise-grade 24/7 support\": \"企業級 24 小時全天候支持\",\n            \"Pricing\": \"價格\",\n            \"Search\": \"搜索\",\n            \"Sign in\": \"登錄\",\n            \"Sign up\": \"註冊\",\n\n        // 搜索欄\n            \"Search or jump to...\": \"搜索或跳轉到…\",\n            \"Type\": \"請鍵入\",\n            \"to search\": \"去搜索\",\n            \"Command palette\": \"命令面板\",\n            \"Saved queries\": \"已保存的搜索\",\n            \"All of GitHub\": \"整個 GitHub\",\n            \"Autocomplete\": \"自動完成\",\n            \"Search all of GitHub\": \"搜索整個 GitHub\",\n            \"Search in this directory\": \"在文件夾中搜索\",\n            \"Search in this repository\": \"在該倉庫中搜索\",\n            \"Search in this owner\": \"在該所有者中搜索\",\n            \"Search in this organization\": \"在該組織中搜索\",\n            \"Owners\": \"所有者\",\n            \"Languages\": \"語言\",\n            \"Search syntax tips\": \"搜索語法提示\",\n            \"Jump to\": \"跳轉到\",\n\n            \"Ask Copilot\": \"詢問 Copilot\",\n            \"Start a new Copilot thread\": \"啟動新的 Copilot 對話\",\n\n            // 未登錄時\n                \"Enterprise\": \"企業\",\n                \"Security\": \"安全\",\n                \"Pricing\": \"價格\",\n\n        // 左上角下拉欄 (已登錄)\n            \"Open menu\": \"打開菜單\",\n            \"Close menu\": \"關閉菜單\",\n            \"Homepage\": \"主頁\",\n            \"Home\": \"主頁\",\n            \"Feed\": \"動態\",\n            \"Issues\": \"議題\",\n            \"Pull requests\": \"拉取請求\",\n            \"Projects\": \"專案\",\n            \"Discussions\": \"討論\",\n            \"Codespaces\": \"程式碼空間\",\n            \"Explore\": \"探索\",\n            \"Marketplace\": \"市場\",\n            \"MCP registry\": \"MCP 互聯\",\n\n            \"Top repositories\": \"熱門倉庫\",\n                \"Search for repositories\": \"搜索倉庫\",\n                \"Close search\": \"關閉搜索\",\n                // 團隊\n                \"Search for teams\": \"搜索團隊\",\n\n            \"Teams have moved to\": \"團隊已遷移至\",\n\n        // 頂部提示橫幅\n            \"Don't get locked out of your account.\": \"不要被鎖定在您的賬戶之外。\",\n            \"Download your recovery codes\": \"下載您的恢復碼\",\n            \"add a passkey\": \"添加通行密鑰\",\n            \"so you don't lose access when you get a new device.\": \"這樣您在登錄新設備時就不會失去訪問權限。\",\n            \"GitHub users are\": \"GitHub 用戶\",  //下半句正則\n            \"now required\": \"現在被要求\",  //下半句正則\n            \"Enable 2FA\": \"啟用 2FA\",\n\n            \"You only have a single verified email address. We recommend verifying at least one more email address to ensure you can recover your account if you lose access to your primary email.\": \"您只有一個經過驗證的電子郵件地址。我們建議您至少再驗證一個電子郵件地址，以確保在失去主郵箱訪問權限時可以恢復賬戶。\",\n            \"Email settings\": \"電子郵件設置\",\n            \"Your recovery codes have not been saved in the past year. Make sure you still have them stored somewhere safe by viewing and downloading them again.\": \"如果您在過去一年中沒有保存恢復密碼。請確保將其保存在安全的地方，並再次查看和下載。\",\n                \"View recovery codes\": \"查看恢復碼\",\n            \"You can also\": \"您也可以\",\n            \"view this object as it appeared at the time of the comment\": \"查看此對象在評論時的狀態\",\n\n\n        \"Your issues\": \"您的議題\",\n        \"Your pull requests\": \"您的拉取請求\",\n\n        // 右上角通知按鈕提示\n            \"You have no unread notifications\": \"您沒有未讀通知\",\n            \"You have unread notifications\": \"您有未讀通知\",\n\n        // 右上角新建按鈕下拉菜單\n            \"Create new...\": \"新建…\",\n            \"Create new…\": \"新建…\",\n                \"New repository\": \"新建倉庫\",\n                \"Import repository\": \"導入倉庫\",\n                \"New spark\": \"新建 spark\",\n                \"New agent task\": \"新建智能體任務\",\n                \"New codespace\": \"新建程式碼空間\",\n                \"New gist\": \"新建程式碼片段\",\n                \"New organization\": \"新建組織\",\n                \"New project\": \"新建專案\",\n                \"This organization\": \"本組織\", // 組織\n                \"New team\": \"新建團隊\", // 組織\n                // 新建議題 對話框\n                    \"Create new issue\": \"新建議題\",\n                    \"Copy link\": \"複製鏈接\",\n                    \"Templates and forms\": \"模板和表單\",\n                    \"Blank issue\": \"空白議題\",\n                        \"Create a new issue from scratch\": \"從頭開始創建新議題\",\n\n        // 右上角 Copilot 下拉菜單\n            \"Agents\":\"智能體\",\n            \"Chat with Copilot\": \"與 Copilot 聊天\",\n            \"Learn more about Copilot coding agent\": \"瞭解有關 Copilot 編程智能體的更多信息\",\n            \"Start a new task with Copilot\": \"使用 Copilot 啟動新任務\",\n            \"Describe a coding task to work on\": \"描述要完成的編程任務\",\n            \"Open Copilot…\": \"打開 Copilot…\",\n                \"Start a pull request\": \"創建拉取請求\",\n                \"New conversation in\": \"新聊天\",\n                \"New conversation\": \"新聊天\",\n                    \"Assistive\": \"小窗\",\n                    \"Spaces\": \"空間\",\n                    \"Immersive\": \"全屏\",\n                \"Download for\": \"下載插件\",\n\n            \"Select a branch\": \"選擇分支\",\n            \"Find a branch...\": \"查找分支…\",\n\n            \"Create a custom agent\": \"創建自定義智能體\",\n\n            \"Navigate to Copilot\": \"導航到 Copilot\",\n\n            \"Open agents panel\": \"打開智能體面板\",\n                \"Start a task with Copilot coding agent\": \"使用 Copilot 編程智能體開始任務\",\n                    \"Describe your task in natural language. Copilot will work in the background and open a pull request for your review.\": \"請用自然語言描述您的任務。Copilot 會在後臺工作，並創建一個拉取請求供您審核。\",\n\n                \"Agent tasks\": \"智能體任務\",\n                    \"Switch branches\": \"切換分支\",\n                        \"Filter branches\": \"查找分支\",\n                        \"default\": \"默認\",\n\n                \"Recent tasks\": \"近期任務\",\n\n        // 右上角個人圖標下拉菜單\n            \"Open user navigation menu\": \"打開用戶導航菜單\",\n            \"Account switcher\": \"賬戶切換\",\n                \"Add account\": \"添加賬戶\",\n                \"Switch account\": \"切換賬戶\",\n                \"Sign out...\": \"登出…\",\n            \"Set status\": \"狀態設置\",\n            \"Profile\": \"個人資料\",\n            \"Gists\": \"程式碼片段\",\n\n            \"Settings\": \"設置\",\n            \"Copilot settings\": \"Copilot 設置\",\n            \"Feature preview\": \"功能預覽\",\n            \"Feature Preview\": \"功能預覽\",\n                \"Get early access to new features and give feedback\": \"測試新功能並提交反饋\",\n                \"Help us improve this and make your experience even better.\": \"幫我們改進此功能，提升您的體驗。\",\n                \"On\": \"開\",\n                \"Off\": \"關\",\n                // 對話框\n                \"Feature preview dialog\": \"功能預覽對話框\",\n                \"Enable\": \"啟用\",\n                \"Enabled\": \"啟用\",\n                \"Disable\": \"禁用\",\n                \"Disabled\": \"禁用\",\n                \"Documentation\": \"文檔\",\n\n                \"Colorblind themes\": \"色盲主題\",\n                    \"Varying by gender and geography, color blindness can affect on average 8% of men and up to 0.5% of women. Our previous colorblind theme has been split into two new themes:\": \"色盲會因性別和地域的不同而有所不同，平均而言，色盲會影響約 8% 的男性和約 0.5% 的女性。我們之前的色盲主題被分為兩個新主題：\",\n                    \"Light/dark Protanopia & Deuteranopia for red/green color blindness.\": \"明/暗 - 紅綠色盲主題適用於紅綠色盲。\",\n                    \"Light/dark Tritanopia for blue/yellow color blindness.\": \"明/暗 - 藍色盲主題適用於藍黃色盲。\",\n                \"Command Palette\": \"命令面板\",\n                    \"Quickly navigate and jump between your organizations or repositories and search recent issues, pull requests, projects and more with the new command palette. You can also execute time saving commands all without lifting your fingers off the keyboard!\": \"使用新的命令面板，可以快速導航並跳轉到您所在的組織或倉庫，並搜索最近的議題、拉取請求、專案等等。您還可以執行節省時間的命令，而無需將手指從鍵盤上移開！\",\n                    \"To open the command palette:\": \"打開命令面板：\",\n                        \"other:\": \"其他：\",\n                \"Organization Custom Instructions\": \"組織自定義指令\",\n                    \"Organization administrators can apply custom instructions across all Copilot chats in github.com.\": \"組織管理員可以在 GitHub.com 的所有 Copilot 聊天中應用自定義指令。\",\n                \"New Dashboard Experience\": \"新儀表板體驗\",\n                    \"The updated home dashboard introduces enhanced agent workflows, making it easier to create and manage agent sessions, issues, and pull requests directly from your personalized dashboard. Once enabled, please refresh to see the changes.\": \"更新後的主頁儀表板引入了增強的智能體工作流，使您可以更輕鬆地直接從個性化儀表板創建和管理智能體會話、議題和拉取請求。啟用後，請刷新以查看更改。\",\n                \"Rich Jupyter Notebook Diffs\": \"Jupyter Notebook 的豐富差異視圖\",\n                    \"Enables rich diffs of Jupyter Notebooks in pull requests\": \"在拉取請求中啟用 Jupyter Notebook 的豐富差異視圖\",\n                    \"Note: commenting on rich diff views of notebooks is not yet supported\": \"注意：尚不支持對 Jupyter Notebook 的豐富差異視圖進行評論\",\n                \"Semantic issue search\": \"語義議題搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的語義搜索查找問題。在存儲庫的問題頁面上輸入自然語言查詢，以發現相關的語義索引結果。您還可以結合過濾器和關鍵字進行傳統搜索。\",\n                \"New Files Changed Experience\": \"新版文件更改體驗\",\n                    \"Feature enabling the new Files Changed Page\": \"啟用新版更改的文件頁\",\n                \"New Files Changed Perf Experiment\": \"新版更改的文件性能優化\",\n                    \"Performance improvement for reviewing large pull requests in the New Files Changed experience. When enabled, the new experience uses virtualization to reduces the number of DOM elements and event listeners the browser has to manage. This can significantly improve memory utilization and the responsiveness of the page.\": \"這項性能優化針對“新版文件更改體驗”中審查大型拉取請求的場景。啟用後，新體驗將採用虛擬化技術，減少瀏覽器需要管理的 DOM 元素數量和事件監聽器數量，從而顯著改善內存佔用並提升頁面響應速度。\",\n                    \"Note: this features only works when the New Files Changed Experience feature preview is enabled.\": \"注意：此功能僅在啟用“新版文件更改體驗”功能預覽時才生效。\",\n                \"Slash Commands\": \"斜槓命令\",\n                    \"Slash commands make it easier to type more complex Markdown, such as tables, tasklists, and code blocks.\": \"斜線命令可以讓您更輕鬆地輸入更複雜的 Markdown，如表格、任務列表和程式碼塊。\",\n                    \"Simply type\": \"只需在議題、拉取請求和討論中鍵入\",\n                    \"on Issues, PRs and Discussions to check out a list of available commands!\": \"，即可查看可用命令的列表！\",\n                \"Feature disabled.\": \"功能已禁用。\",\n                    \"Please\": \"請\",\n                    \"give feedback\": \"提交反饋\",\n                    \"so we can improve it!\": \"以便我們加以改進！\",\n                \"Semantic issue search\": \"語義議題搜索\",\n                    \"Find issues using the new semantic search. Enter natural language queries on a repo’s Issues page to discover relevant, semantically-indexed results. You can also combine filters and keywords for traditional searches.\": \"使用新的語義議題搜索功能查找議題。在倉庫的議題頁面輸入自然語言查詢，即可發現語義索引的相關結果。您還可以結合過濾器和關鍵詞進行傳統搜索。\",\n                // 出錯提示\n                    \"Sorry, something went wrong and we were not able to fetch the feature previews\": \"對不起，出了點問題，我們無法獲取功能預覽\",\n                \"Changes saved! Please\": \"更改已保存！請\",\n                    \"reload\": \"刷新\",\n                    \"the page to view the changes.\": \"頁面以查看更改。\",\n            \"Appearance\": \"外觀\",\n            \"Accessibility\": \"無障礙\",\n            \"Upgrade\": \"升級\",\n            \"Try Enterprise\": \"試用企業版\",\n                \"Free\": \"免費\",\n            \"Sign out\": \"退出\",\n\n        // 狀態設置對話框\n        // 出現位置: 個人資料頁, Gist 個人主頁, 倉庫頁右上角個人圖標下拉菜單\n            \"Edit status\": \"編輯狀態\",\n            \"What's happening?\": \"發生了什麼？\",\n\n            \"Suggestions\": \"建議\",\n                \"On vacation\": \"在度假\",\n                \"Out sick\": \"生病\",\n                \"Working from home\": \"在家工作\",\n                \"Focusing\": \"專注中\",\n\n            \"Busy\": \"繁忙中\",\n                \"When others mention you, assign you, or request your review, GitHub will let them know that you have limited availability.\": \"當其他人提及您、指派您或請求您進行評論時，GitHub 會告知他們您很忙。\",\n                \"I may be slow to respond.\": \"我的回覆可能比較慢。\",\n\n            \"Clear status\": \"清除狀態\",\n                \"Never\": \"永不\",\n                \"in 30 minutes\": \"30 分鐘\",\n                \"in 1 hour\": \"1 小時\",\n                \"in 4 hours\": \"4 小時\",\n                \"after today\": \"今日之後\",\n                \"after this week\": \"本週之後\",\n                \"after a month\": \"本月之後\",\n                \"How long until this status will automatically clear.\": \"多久後狀態自動清除。\",\n            \"Visible to\": \"可見\",\n                \"Everyone\": \"任何人\",\n                    \"Scope status visibility to a single organization.\": \"將狀態可視範圍擴大到單個組織。\",\n            \"Filter emoji\": \"篩選表情符號\",\n                \"Search results\": \"篩選結果\",\n\n        // 底部條\n            \"Terms\": \"服務條款\",\n            \"Privacy\": \"隱私\",\n            \"Security\": \"安全\",\n            \"Status\": \"狀態\",\n            \"Community\": \"社區\",\n            \"Docs\": \"文檔\",\n            \"Contact\": \"聯繫我們\",\n            \"Manage cookies\": \"管理 Cookies\",\n            \"Do not share my personal information\": \"請勿分享我的個人信息\",\n\n        // 左側欄底部條\n            \"About\": \"關於\",\n            \"Blog\": \"博客\",\n            \"Manage Cookies\": \"管理 Cookies\",\n\n        // 其他\n            \"Contact GitHub\": \"聯繫 GitHub\",\n            \"Training\": \"培訓\",\n\n        // 描述、評論編輯器翻譯\n            \"Add a comment\": \"添加評論\",\n            \"Add a body\": \"添加內容\",\n            \"Write\": \"撰寫\",\n                \"Use Markdown to format your comment\": \"使用 Markdown 格式編寫評論\",\n                \"Add your comment here...\": \"在此添加您的評論…\",\n                \"Add your answer here...\": \"在此添加您的答覆…\", // 具體討論頁\n                \"Text field is empty\": \"文本框為空\",\n            \"Preview\": \"預覽\",\n                \"Nothing to preview\": \"沒有可預覽的內容。\",\n                \"This file is empty.\": \"這是一個空文件。\",\n                \"Try again with a file that’s not empty.\": \"使用非空文件重試。\",\n            \"Leave a comment\": \"發表評論\",\n            \"Write a reply\": \"發表回覆\", // 具體討論頁\n            \"Write a comment\": \"發表評論\", // 具體討論頁\n            \"Suggest an answer\": \"提出答覆\", // 具體討論頁\n            \"Ask a question, start a conversation, or make an announcement\": \"提出問題、開始討論或發佈公告\", // 新建討論\n            \"Nothing to preview\": \"沒有什麼可預覽\",\n            \"This repository has been archived.\": \"此倉庫已存檔。\", // 已存檔倉庫 某個提交的評論框\n            \"Add review comment\": \"添加審查意見\", // 具體拉取請求 文件審查意見\n            \"Failed to save comment: Body can't be blank\": \"保存評論失敗：正文內容不能為空\", // 具體拉取請求 文件審查意見\n            \"Start a review\": \"開始審查\", // 具體拉取請求 文件審查意見\n            // 取消按鈕 提醒信息\n            \"Are you sure you want to discard your unsaved changes?\": \"您確定要放棄未保存的更改嗎？\",\n\n            \"Apply Suggestion\": \"添加建議\",\n            \"Add a title\": \"添加標題\",\n                \"Title\": \"標題\",\n            \"Add a description\": \"添加描述\",\n                \"Add your description here...\": \"在此添加您的描述…\",\n                \"Add an optional description...\": \"添加可選描述…\",\n            \"There was an error trying to commit changes: Failed to submit suggested changes\": \"提交更改時出錯：提交建議更改失敗\",\n\n            // 網絡錯誤\n                \"There was a problem saving your comment. Please try again.\": \"保存您的評論時出現問題。請再試一次。\",\n\n            // 拉取請求 程式碼審查 回覆對話框\n                \"Add a suggestion, <Ctrl+g>\": \"添加建議, <Ctrl+g>\",\n                \"Heading\": \"標題\",\n                \"Bold\": \"粗體\",\n                \"Italic\": \"斜體\",\n                \"Quote\": \"摘引\",\n                \"Link\": \"鏈接\",\n                \"Menu\": \"菜單\", // Android UA 下出現\n                \"Numbered list\": \"有序列表\",\n                \"Unordered list\": \"無序列表\",\n                \"Task list\": \"任務列表\",\n                \"Attach files\": \"附件\",\n                \"Mention\": \"提及\",\n                \"Reference\": \"引用\",\n                \"Saved replies\": \"快速回復\",\n                    \"Select a reply\": \"選擇回覆\",\n                    \"Create a new saved reply\": \"創建新的快速回復\",\n                \"Slash commands\": \"斜槓命令\",\n                    \"Alerts\": \"警示\",\n                        \"Add a markdown alert to emphasize important information\": \"添加 MarkDown 警示標記，強調重要信息\",\n                    \"Code block\": \"程式碼塊\",\n                        \"Insert a code block formatted for a chosen syntax\": \"插入針對所選語法格式化的程式碼塊\",\n                    \"Details\": \"詳細信息\",\n                        \"Add a details tag to hide content behind a visible heading\": \"添加詳情標籤，將內容隱藏在可見標題後面\",\n                    // \"快速回復\": \"\",\n                        \"Insert one of your saved replies\": \"插入您快速回復\",\n                    \"Table\": \"表格\",\n                        \"Add markdown table\": \"添加 Markdown 表格\",\n                    \"Templates\": \"模板\",\n                        \"Insert one of your issue templates\": \"插入您的議題模板\",\n\n                    \"Slash\": \"斜槓\",\n                    // 程式碼塊\n                        \"No Syntax\": \"無語法\",\n                    // 快速回復\n                        \"No saved replies\": \"尚無快速回復\",\n                        \"You can create one in your\": \"您可以創建一個在您的\",\n                        \"settings\": \"設置\",\n                    // 表格\n                        \"Columns\": \"列\",\n                        \"1 column\": \"1 列\",\n                        \"2 columns\": \"2 列\",\n                        \"3 columns\": \"3 列\",\n                        \"4 columns\": \"4 列\",\n                        \"5 columns\": \"5 列\",\n\n                        \"Rows\": \"行\",\n                        \"1 row\": \"1 行\",\n                        \"2 rows\": \"2 行\",\n                        \"3 rows\": \"3 行\",\n                        \"4 rows\": \"4 行\",\n                        \"5 rows\": \"5 行\",\n\n                    // 模板\n                        \"No issue templates\": \"尚無議題模板\",\n                        \"Learn more about\": \"瞭解更多關於\",\n                        \"issue templates\": \"議題模板\",\n\n                // 小屏 插入鏈接 對話框\n                    \"Insert Link\": \"插入鏈接\",\n                    \"Link Text\": \"鏈接文本\",\n                    \"Add\": \"添加\",\n\n            \"Attach files by\": \"通過\",\n            \"dragging & dropping,\": \"拖放，\",\n            \"selecting or pasting them.\": \"選擇或粘貼來附加文件。\",\n            \"Markdown is supported\": \"支持 Markdown 語法\",\n            \"Styling with Markdown is supported.\": \"支持 Markdown 語法。\",\n            \"Paste, drop, or click to add files\": \"粘貼、拖放或點擊添加文件\",\n            \"Write with Copilot\": \"使用 Copilot 撰寫\",\n            \"Type your description here…\": \"在此輸入描述…\",\n            \"Assignee\": \"受理人\",\n            \"Label\": \"標籤\",\n            \"Create more\": \"添加更多\",\n            \"Start typing to create an item, or type # to select a repository\": \"開始輸入以創建專案，或輸入 # 選擇倉庫\",\n            \"Uploading your files…\": \"正在上傳您的文件…\",\n            // 文件過大\n                \"This video is too big.\": \"該影片過大。\",\n                \"Try again\": \"請上傳\",\n                \"with a file size less than 10MB.\": \"體積小於10MB的文件\",\n\n            \"Close issue\": \"關閉議題\", // issue頁 評論框\n                \"Close as completed\": \"完成後關閉\",\n                    \"Done, closed, fixed, resolved\": \"已完成、已關閉、已修復、已解決\",\n                \"Close as not planned\": \"非計劃中關閉\",\n                    \"Won't fix, can't repro, duplicate, stale\": \"不會修復，無法重現，重複，陳舊\",\n                    \"Won't fix, can't repro, stale\": \"不會修復，無法重現，陳舊\", // 新版議題頁\n                // 因重複而關閉（新版議題頁）\n                    \"Duplicate of another issue\": \"重複議題\",\n            \"Close with comment\": \"評論並關閉\", // 議題/拉取請求 評論框\n            \"Close pull request\": \"關閉拉取請求\", // 拉取請求頁 評論框\n            \"Reopen discussion\": \"重新打開討論\", // discussion頁 評論框\n            \"Close discussion\": \"關閉討論\", // discussion頁 評論框\n                \"Close as resolved\": \"因解決而關閉\",\n                    \"The discussion has been resolved\": \"討論已解決\",\n                \"Close as outdated\": \"因過時而關閉\",\n                    \"The discussion is no longer relevant\": \"討論不再相關\",\n                \"Close as duplicate\": \"因重複而關閉\",\n                    \"The discussion is a duplicate of another\": \"討論與另一個討論重複\",\n            \"Comment\": \"評論\",\n            \"comment\": \"評論\",\n            \"Submit new issue\": \"提交新議題\",\n            \"Comment on this commit\": \"評論\",\n            \"Close and comment\": \"提交並關閉\",\n            \"Reopen and comment\": \"提交並重新打開\",\n            \"Reopen issue\": \"重新打開議題\", // 具體議題\n            \"Reopen with comment\": \"重新打開評論\", // 具體議題\n            \"Reopen pull request\": \"重新打開拉取請求\", //具體拉取請求\n            \"Add single comment\": \"評論\", // 具體提交頁 進行某條程式碼評論\n            \"Reply\": \"回覆\", // 具體討論頁\n            \"Answer\": \"答覆\", // 具體討論頁\n            \"Start discussion\": \"開始討論\", // 新建討論\n            \"discussion\": \"討論\", // 新建討論\n            \"discussions\": \"討論\", // 新建討論\n\n            \"Spammy\": \"僅自己可見\",\n                \"This user is marked as spammy. Their comments will onlyshow in staff mode.\": \"該用戶已被封號，評論僅自己可見。\",\n\n        // 添加到清單\n            \"Add to list\": \"添加到清單\",\n                \"You don't have any lists yet.\": \"您尚無任何清單。\",\n                \"Lists\": \"清單\",\n                    \"Search lists\": \"搜索清單\",\n                    \"🔮 Future ideas\": \"🔮 超前想法\",\n                    \"🚀 My stack\": \"🚀 技術棧\",\n                    \"✨ Inspiration\": \"✨ 靈感\",\n                    \"No results found.\": \"未找到結果。\",\n                \"Create list\": \"創建清單\",\n                    \"Create a list to organize your starred repositories.\": \"創建一個清單來組織您的星標倉庫。\",\n                    \"⭐️ Name this list\": \"⭐️ 清單名稱\",\n                    \"Write a description\": \"簡單描述\",\n                    // 小貼士\n                        \"type\": \"輸入\",\n                        \"to add emoji to the name or description.\": \"在名稱或描述中添加表情符號\",\n                    \"Lists are currently in beta.\": \"清單目前處於測試階段。\",\n                    \"Share feedback and report bugs.\": \"分享反饋意見和報告錯誤。\",\n                    \"Creating...\": \"創建中…\",\n                    // 私有\n                        \"Enabling this makes the list visible only to you.\": \"啟用此選項將使該列表僅對您可見。\",\n\n        // 全局快捷鍵對話框 - 快捷鍵 ? 打開\n            \"Keyboard shortcuts\": \"鍵盤快捷鍵\",\n            \"Site-wide shortcuts\": \"全站快捷鍵\",\n                \"Open command palette\": \"打開命令面板\",\n                \"Open command palette in command mode\": \"在命令模式下打開命令面板\",\n                \"Focus search bar\": \"聚焦搜索欄\", // gist\n                \"Open search bar\": \"打開搜索欄\",\n                \"Go to notifications\": \"跳轉到通知\",\n                \"Go to dashboard\": \"跳轉到儀表板\",\n                \"Go to your issues\": \"跳轉到議題\",\n                \"Go to your pull requests\": \"跳轉到拉取請求\",\n                \"Bring up this help dialog\": \"彈出這個幫助對話框\",\n                \"Move selection down\": \"向下移動選擇\",\n                \"Move selection up\": \"向上移動選擇\",\n                \"Toggle selection\": \"切換選擇\",\n                \"Open selection\": \"打開選擇\",\n                \"Expand and move focus into focused link's hovercard\": \"展開並將焦點移至聚焦鏈接的懸浮卡\",\n            \"View all keyboard shortcuts\": \"查看所有鍵盤快捷鍵\",\n\n        // 命令面板 - ctrl k 或 ctrl alt k 打開\n            \"Clear Command Palette\": \"清除命令面板\",\n            \"Tip:\": \"小貼士：\",\n                \"Go to your accessibility settings to change your keyboard shortcuts\": \"跳轉到您的無障礙設置，以更改您的鍵盤快捷鍵\",\n                \"to search discussions\": \"搜索討論\", // 鍵入 #\n                \"to search issues\": \"搜索議題\", // 鍵入 #\n                \"to search pull requests\": \"搜索拉取請求\", // 鍵入 #\n                \"to search projects\": \"搜索專案\", // 鍵入 !\n                \"to search people and organizations\": \"搜索成員和組織\", // 鍵入 @\n                \"to search teams\": \"搜索團隊\", // 鍵入 @\n                \"to activate command mode\": \"激活命令模式\", // 鍵入 >\n                \"Type is:issue to filter to issues\": \"鍵入 is:issue 以篩選議題\",\n                \"Type is:pr to filter to pull requests\": \"鍵入 is:pr 以篩選拉取請求\",\n                \"Type is:open to filter to open content\": \"鍵入 is:open 以篩選打開的內容\",\n                \"Type author:@me to search your content\": \"鍵入 author:@me 以篩選您的內容\",\n                \"for help and tips\": \"尋求幫助和提示\", // 鍵入 ?\n\n            \"Pages\": \"GitHub Pages\",\n            \"Dashboard\": \"儀表板\",\n            \"Notifications\": \"通知\",\n            // \"Discussions\": \"討論\",\n            \"Actions\": \"操作\",\n            \"Insights\": \"洞察\",\n            \"Organizations\": \"組織\",\n            \"Repositories\": \"倉庫\",\n            \"Packages\": \"軟體包\",\n            \"Users\": \"用戶\",\n            \"to jump to\": \"去跳轉\",\n\n            \"Top result\": \"最佳結果\",\n            \"No results matched your search\": \"沒有與您的搜索相符的結果\",\n            // [/in ([\\w]+/[\\w]+)/, \"在 $1\"],\n\n            // # 模式\n                \"Search issues and pull requests\": \"搜索議題和拉取請求\",\n                \"Search issues, pull requests, discussions, and projects\": \"搜索議題、拉取請求、討論和專案\",\n                \"Issues, pull requests, and discussions\": \"議題、拉取請求和討論\",\n\n            // ! 模式\n                \"Search projects\": \"搜索專案\",\n\n            // @ 模式\n                \"Search or jump to a repository\": \"搜索或跳轉到倉庫\",\n                \"Search or jump to a user, organization, or repository\": \"搜索或跳轉到用戶、組織或倉庫\",\n\n            // / 文件模式\n                \"Search files\": \"搜索文件\",\n                \"Files\": \"文件\",\n\n            // > 命令模式\n                \"Run a command\": \"運行命令\",\n                \"Run command\": \"運行命令\",\n                \"Commands\": \"命令\",\n                \"Global Commands\": \"全局命令\",\n                \"Type > to filter\": \"鍵入 > 去篩選\",\n                \"– New repository\": \"- 新建倉庫\",\n                \"– Import repository\": \"- 導入倉庫\",\n                \"– New project\": \"- 新建專案\",\n                \"– New discussion\": \"- 新建討論\",\n                \"– New organization\": \"- 新建組織\",\n                \"– New gist\": \"- 新建程式碼片段\",\n                \"– New issue\": \"- 新建議題\",\n                \"– New file\": \"- 新建文件\",\n                \"– Change tab size rendering\": \"- 切換製表符尺寸\",\n                \"– Switch theme\": \"- 切換主題\",\n\n                \"New issue\": \"新建議題\",\n                \"New discussion\": \"新建討論\",\n                \"New file\": \"新建文件\",\n                \"Change tab size rendering\": \"切換製表符尺寸\",\n                \"Change tab size r...\": \"切換製表符尺寸\",\n                    \"2 spaces\": \"2 個空格\",\n                    \"3 spaces\": \"3 個空格\",\n                    \"4 spaces\": \"4 個空格\",\n                    \"5 spaces\": \"5 個空格\",\n                    \"6 spaces\": \"6 個空格\",\n                    \"7 spaces\": \"7 個空格\",\n                    \"8 spaces\": \"8 個空格\",\n                    \"9 spaces\": \"9 個空格\",\n                    \"10 spaces\": \"10 個空格\",\n                    \"12 spaces\": \"12 個空格\",\n                \"Switch theme\": \"切換主題\",\n                    \"Default dark\": \"暗 - 默認\",\n                    \"Default light\": \"亮 - 默認\",\n                    \"Dark dimmed\": \"昏暗\",\n                    \"Switch theme to dark high contrast\": \"切換主題為 暗 - 高對比\",\n                    \"Sync with system settings\": \"與系統設置同步\",\n\n            // ? 模式\n                \"Modes\": \"模式\",\n                \"Search for\": \"搜索\",\n                \"across all of GitHub\": \"在整個 GitHub 中\",\n                \"issues, pull requests, discussions,\": \"議題、拉取請求、討論\",\n                \"organizations, repositories,\": \"組織、倉庫\",\n                \"projects\": \"專案\",\n                \"files\": \"文件\",\n                \"issues\": \"議題\",\n                \"pull requests\": \"拉取請求\",\n                \"organizations\": \"組織\",\n                \"repositories\": \"倉庫\",\n                \"users\": \"用戶\",\n                \"Activate\": \"激活\",\n                \"command mode\": \"命令模式\",\n\n                \"Use filters in issues, pull requests, discussions, and projects\": \"在議題、拉取請求、討論和專案中使用過濾器\",\n                \"Search your issues, pull requests, and discussions\": \"搜索您的議題、拉取請求和討論\",\n                \"Filter to pull requests\": \"篩選拉取請求\",\n                \"Filter to issues\": \"篩選議題\",\n                \"Filter to discussions\": \"篩選討論\",\n                \"Filter to projects\": \"篩選專案\",\n                \"Filter to open issues, pull requests, and discussions\": \"篩選打開的議題、拉取請求和討論\",\n\n            // 議題頁面\n                \"Edit issue title\": \"編輯議題標題\",\n                \"Edit issue body\": \"編輯議題內容\",\n                \"Transfer issue…\": \"轉移議題…\",\n                \"Delete issue…\": \"刪除議題…\",\n\n        // 公共詞 高頻詞\n            \"Follow\": \"關注\",\n            \"Unfollow\": \"取消關注\",\n            \"Star\": \"星標\",\n            \"Stars\": \"星標\",\n            \"Unstar\": \"已加星標\",\n            \"Starred\": \"已加星標\",\n            \"Fork\": \"複刻\",\n            \"Save\": \"保存\",\n            \"Saving…\": \"保存中…\",\n            \"Saving...\": \"保存中…\",\n            \"Save changes\": \"保存更改\",\n            \"Update\": \"更新\",\n            \"Updating\": \"更新中\",\n            \"Updating…\": \"更新中…\",\n            \"Updating...\": \"更新中…\",\n            \"Delete\": \"刪除\",\n            \"Cancel\": \"取消\",\n            \"Edit\": \"編輯\",\n            \"Added on\": \"添加於\",\n            \"Loading\": \"加載中\",\n            \"Loading…\": \"載入中…\",\n            \"Loading...\": \"載入中…\",\n            \"Copy\": \"複製\",\n            \"Copied!\": \"✅ 複製成功!\",\n            \"Copy to clipboard\": \"複製到剪切板\",\n            \"Give feedback\": \"反饋\",\n            \"Give us your feedback\": \"向我們提供反饋意見\",\n            \"Download\": \"下載\",\n            \"View\": \"查看\",\n            \"Create\": \"創建\",\n\n            \"Close\": \"關閉\",\n            \"Closed\": \"已關閉\",\n            \"Open\": \"打開\",\n            \"Reopen\": \"重新打開\",\n\n            \"and\": \"和\",\n            \", and\": \"，和\",\n            \"or\": \"或\",\n            \", or\": \"，或\",\n            \"to\": \"到\",\n            \"by\": \"由\",\n            \"on\": \"於\",\n            \"Use\": \"使用\",\n            \"New\": \"新\",\n\n            \"Learn more\": \"瞭解更多\",\n            \"Learn More\": \"瞭解更多\",\n            \"Learn more.\": \"瞭解更多。\",\n            \",\": \"，\",\n            \".\": \"。\",\n\n            \"Prev\": \"上一頁\",\n            \"Previous\": \"上一頁\",\n            \"Next\": \"下一頁\",\n\n            \"Less\": \"更少\",\n            \"More\": \"更多\",\n\n            \"Show more\": \"顯示更多\",\n            \"Show less\": \"顯示更少\",\n\n            \"Load more…\": \"載入更多…\",\n            \"Loading more…\": \"載入更多…\",\n            \"Loading more...\": \"載入更多…\",\n\n            // 名詞\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Public archive\": \"公共存檔\",\n                \"Private archive\": \"私有存檔\",\n                \"Public template\": \"公共模板\",\n                \"Public mirror\": \"公共鏡像\",\n                \"Code\": \"程式碼\",\n                \"Overview\": \"概況\",\n                \"Followers\": \"關注者\",\n                \"Collaborators\": \"協作者\",\n                \"collaborators\": \"協作者\",\n                \"Sponsors\": \"贊助者\",\n                \"Sponsoring\": \"贊助者\",\n                \"commit\": \"提交\",\n                \"commits\": \"提交\",\n                \"Organization\": \"組織\",\n                \"People\": \"成員\",\n                \"Teams\": \"團隊\",\n\n            // 相對時間\n                \"just now\": \"剛剛\",\n                \"now\": \"當前\",\n                \"yesterday\": \"昨天\",\n                \"last month\": \"上個月\",\n\n        // 驗證標記浮動信息\n            \"This commit was created on GitHub.com and signed with GitHub’s\": \"此提交在 GitHub.com 上創建並簽名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub's\": \"此提交在 GitHub.com 上創建並簽名，使用 GitHub 的\",\n            \"This commit was created on GitHub.com and signed with GitHub’s verified signature\": \"此提交在 GitHub.com 上創建並簽名，使用 GitHub 的\",\n            \"This commit was signed with the committer's\": \"此提交已簽名，使用提交者的\",\n            \"This tag was signed with the committer's\": \"此標籤已簽署，使用提交者的\", // /<user-name>/<repo-name>/releases\n            \"This commit was signed with the committer’s\": \"此提交已簽名，使用提交者的\",\n            \"This tag was signed with the committer’s\": \"此標籤已簽署，使用提交者的\", //\n            \"This commit is signed with the committer’s\": \"此提交已簽名，使用提交者的\",\n            \"’s contribution has been verified via GPG key.\": \"的貢獻已通過 GPG 密鑰驗證。\",\n            \"verified signature\": \"已驗證簽名\",\n            \"The key has expired\": \"密鑰已過期\",\n            \"This commit is not signed, but one or more authors requires that any commit attributed to them is signed.\": \"此提交未簽名，但一位或多位作者要求對歸屬於他們的任何提交進行簽名。\",\n            \"We had a problem verifying this signature. Please try again later.\": \"我們在驗證此簽名時遇到問題。請稍後再試。\",\n            \"We were unable to verify this signature.\": \"我們無法驗證此簽名。\",\n            \"This user has not yet uploaded their public signing key.\": \"此用戶尚未上傳其公共簽名密鑰。\",\n\n            \"GPG key ID:\": \"GPG 密鑰 ID：\",\n            \"GPG Key ID:\": \"GPG 密鑰 ID：\",\n            \"SSH key Fingerprint:\": \"SSH 密鑰指紋：\",\n            \"SSH Key Fingerprint:\": \"SSH 密鑰指紋：\",\n            \"Learn about vigilant mode\": \"瞭解警戒模式\",\n            \"The email in this signature doesn’t match the committer email.\": \"此簽名中的電子郵箱與提交者的電子郵箱不相符。\",\n            \"No user is associated with the committer email.\": \"提交者的電子郵箱未與用戶相關聯。\",\n\n            \"Verified\": \"已驗證\",\n            \"Expired\": \"已過期\",\n            \"Partially verified\": \"部分驗證\",\n                \"We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.\": \"我們無法驗證來自共同作者的簽名，並且此提交的某些共同作者要求對其提交進行簽名。\",\n            \"Unverified\": \"未驗證\",\n                \"Upload your public signing GPG key\": \"上傳您的公共簽名 GPG 密鑰\",\n                \"to verify your signature.\": \"以驗證您的簽名。\",\n\n        // 郵箱驗證提示\n            \"Please verify your email address to access all of GitHub's features.\": \"請驗證您的電子郵箱地址以便開啟所有 GitHub 功能。\",\n            \"Configure email settings\": \"修改電子郵箱設置\",\n            \"Your email was verified.\": \"您的電子郵箱地址驗證成功！\",\n\n        // 標籤提示\n            \"New feature or request\": \"新功能或要求\",\n\n        // 更換新手機, 要求重新下載恢復碼的全局提醒\n            \"Don't get locked out - if you get a new phone this season, be sure to transfer your authenticator app data to the new phone. Enable cloud back up if your authenticator app supports it and consider\": \"不要被鎖在門外——如果您在這個季節買了一部新手機，請務必將您的身份驗證器應用數據傳輸到新手機。如果您的身份驗證器應用支持雲備份，請啟用它並考慮\",\n            \"redownloading your recovery codes\": \"重新下載您的恢復碼\",\n            \", just to be safe.\": \"，以確保安全。\",\n\n        // 刷新會話提示條\n            \"You signed in with another tab or window.\": \"您使用其他標籤頁或窗口登錄。\",\n            \"Reload\": \"重新加載\",\n            \"to refresh your session.\": \"以刷新您的會話\",\n\n        // Cookie 設置\n            \"Manage cookie preferences\": \"管理 Cookie 偏好設置\",\n            \"Most GitHub websites use cookies. Cookies are small text files placed on your device to store data so web servers can use it later. GitHub and our third-party partners use cookies to remember your preferences and settings, help you sign in, show you personalized ads, and analyze how well our websites are working. For more info, see the Cookies and similar technologies section of the\": \"大多數 GitHub 網站都使用 Cookie。Cookie 是保存在您的設備上的小型文本文件，用於存儲數據，以便 Web 服務器稍後使用。GitHub 和我們的第三方合作伙伴使用 Cookie 來記住您的偏好和設置、幫助您登錄、向您顯示個性化廣告以及分析我們網站的運行情況。有關更多信息，請參閱隱私聲明中的\",\n            \"Privacy Statement\": \"Cookie 和類似技術部分\",\n            \"Accept\": \"接受\",\n            \"Reject\": \"拒絕\",\n            \"Reset all\": \"重置全部\",\n            \"Required\": \"必要的\",\n            \"GitHub uses required cookies to perform essential website functions and to provide the services. For example, cookies are used to log you in, save your language preferences, provide a shopping cart experience, improve performance, route traffic between web servers, detect the size of your screen, determine page load times, improve user experience, and for audience measurement. These cookies are necessary for our websites to work.\": \"GitHub 使用必需的 Cookie 來執行基本網站功能並提供服務。例如，Cookie 用於登錄、保存您的語言偏好、提供購物車體驗、提高性能、在 Web 服務器之間路由流量、檢測屏幕大小、確定頁面加載時間、改善用戶體驗以及用於受眾測量。這些 Cookie 是我們網站正常運行所必需的。\",\n            \"Analytics\": \"分析\",\n            \"We allow third parties to use analytics cookies to understand how you use our websites so we can make them better. For example, cookies are used to gather information about the pages you visit and how many clicks you need to accomplish a task. We also use some analytics cookies to provide personalized advertising.\": \"我們允許第三方使用分析性 Cookie 來了解您如何使用我們的網站，以便我們改進網站。例如，Cookie 用於收集有關您訪問的頁面以及完成任務所需的點擊次數的信息。我們還使用一些分析性 Cookie 來提供個性化廣告。\",\n            \"Social Media\": \"社交媒體\",\n            \"GitHub and third parties use social media cookies to show you ads and content based on your social media profiles and activity on GitHub's websites. This ensures that the ads and content you see on our websites and on social media will better reflect your interests. This also enables third parties to develop and improve their products, which they may use on websites that are not owned or operated by GitHub.\": \"GitHub 和第三方使用社交媒體 Cookie 根據您的社交媒體個人資料和 GitHub 網站上的活動向您顯示廣告和內容。這可以確保您在我們的網站和社交媒體上看到的廣告和內容將更好地反映您的興趣。還使第三方能夠開發和改進它們的產品，它們可能會在不由 GitHub 擁有或運營的網站上使用這些產品。\",\n            \"Advertising\": \"廣告\",\n            \"In addition, GitHub and third parties use advertising cookies to show you new ads based on ads you've already seen. Cookies also track which ads you click or purchases you make after clicking an ad. This is done to show you ads that are more relevant to you and for business purposes with our advertising partners. For example, cookies are used to detect when you click an ad and to show you ads based on your social media interests and website browsing history.\": \"此外，GitHub 和第三方使用廣告 Cookie 根據您已經看過的廣告向您顯示新廣告。Cookie 還會跟蹤您點擊的廣告或點擊廣告後進行的購買。這樣做是為了向您顯示與您更相關的廣告，並用於與我們的廣告合作伙伴開展業務。例如，Cookie 用於檢測您何時點擊廣告，並根據您的社交媒體興趣和網站瀏覽歷史記錄向您顯示廣告。\",\n\n        // 日曆\n            \"Jan\": \"1月\",\n            \"Feb\": \"2月\",\n            \"Mar\": \"3月\",\n            \"Apr\": \"4月\",\n            \"May\": \"5月\",\n            \"Jun\": \"6月\",\n            \"Jul\": \"7月\",\n            \"Aug\": \"8月\",\n            \"Sep\": \"9月\",\n            \"Oct\": \"10月\",\n            \"Nov\": \"11月\",\n            \"Dec\": \"12月\",\n\n            \"January\"   : \"1月\",\n            \"February\"  : \"2月\",\n            \"March\"     : \"3月\",\n            \"April\"     : \"4月\",\n            \"June\"      : \"6月\",\n            \"July\"      : \"7月\",\n            \"August\"    : \"8月\",\n            \"September\" : \"9月\",\n            \"October\"   : \"10月\",\n            \"November\"  : \"11月\",\n            \"December\"  : \"12月\",\n\n            \"Sun\"  : \"週日\",\n            \"Mon\"  : \"週一\",\n            \"Tue\"  : \"週二\",\n            \"Wed\"  : \"週三\",\n            \"Thu\"  : \"週四\",\n            \"Fri\"  : \"週五\",\n            \"Sat\"  : \"週六\",\n\n        // 語言名稱（僅適配熱門語言\n            \"Arabic\": \"阿拉伯文\",\n            \"Chinese\": \"中文\",\n            \"English\": \"英文\",\n            \"French\": \"法文\",\n            \"German\": \"德文\",\n            \"Greek, Modern\": \"希臘文\",\n            \"Italian\": \"意大利文\",\n            \"Japanese\": \"日文\",\n            \"Korean\": \"韓文\",\n            \"Latin\": \"拉丁文\",\n            \"Portuguese\": \"葡萄牙文\",\n            \"Russian\": \"俄文\",\n            \"Sichuan Yi, Nuosu\": \"彝文\", // 存疑\n            \"Spanish, Castilian\": \"西班牙文\",\n            \"Thai\": \"泰文\",\n            \"Tibetan\": \"藏文\",\n            \"Vietnamese\": \"越南文\",\n            \"Zhuang, Chuang\": \"壯文\", // 存疑\n\n        // Copilot 窗口\n            // 頂部\n            \"All repositories\": \"所有倉庫\",\n            \"Back\": \"返回\",\n            \"Conversation options\": \"選項\",\n                \"Enable custom instructions\": \"啟用個人指導\",\n                \"Disable custom instructions\": \"禁用個人指導\",\n                \"Personal instructions\": \"個人指導\",\n                    \"Set up Copilot to align with your workflows and preferences. These instructions will only impact your personal conversation.\": \"設置 Copilot 以符合您的工作流程和偏好。這些指導僅影響您的個人對話。\",\n                    \"Your instructions\": \"您的指導\",\n                        \"Role\": \"角色\",\n                        \"Communication\": \"通信\",\n                        \"Code preferences\": \"程式碼偏好\",\n                    \"characters\": \"字符\",\n                \"Delete conversation\": \"刪除對話\",\n                \"View all conversations\": \"查看全部對話\",\n                    \"There are no conversations at the moment.\":\"目前沒有對話。\",\n                    \"Start a new conversation\":\"開始新對話\",\n                    \"Active conversations\": \"最近對話\",\n                    \"All conversations\": \"所有對話\",\n                    // 刪除\n                        \"Are you sure? This can’t be undone.\": \"您確定嗎？此操作無法撤銷。\",\n            \"Continue in immersive\": \"全屏對話\",\n            \"Close chat\": \"關閉\",\n\n            \"public\": \"公共\",\n            \"repository\": \"倉庫\",\n\n            \"Ask Copilot\": \"詢問 Copilot\",\n                \"Select a repository to get started. Ask questions about your codebase to get answers fast and learn your way around.\": \"選擇一個倉庫即可開始。詢問有關程式碼庫的問題，以快速獲得答案並瞭解相關知識。\",\n                \"uses AI. Check for mistakes.\": \"使用 AI。請檢查錯誤。\",\n            \"Search repositories to chat about\": \"搜索要討論的倉庫\",\n            \"Recent repositories\": \"最近訪問\",\n            \"General purpose chat\": \"普通對話\",\n\n            \"Loading Conversation\": \"加載中\",\n            \"Chatting about code and programming\": \"討論關於程式碼和編程\",\n            // 對話框\n            \"Ask about the repository:\": \"詢問關於此倉庫的信息：\",\n            \"Ask about the tree comparison:\": \"詢問關於比較的信息：\",\n            \"How can I help you?\": \"有什麼可以幫忙？\",\n            \"Attach\": \"附件\",\n            \"Attach files or symbols\": \"附加文件或符號\",\n                \"Fetching files, folders, and symbols…\": \"正在獲取文件（夾）和符號…\",\n            \"Add an extension\": \"添加擴展\",\n                //\"Files and symbols…\": \"文件和符號…\",\n                \"Files, folders, and symbols\": \"文件（夾）和符號…\",\n                    \"First attach a repository\": \"請先附加倉庫\",\n                    \"Select files, folders, and symbols\": \"選擇文件（夾）和符號\",\n                    \"Choose a repository to browse for files, folders, and symbols.\": \"選擇倉庫以瀏覽文件（夾）和符號。\",\n                    //\"Attach files and symbols\": \"附加文件和符號\",\n                        //\"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"選擇您想要討論的文件和符號。使用較少的參考資料即可獲得更準確的回覆。\",\n                        \"Choose what you want to chat about. Use fewer references for more accurate responses.\": \"選擇您想要討論的內容。使用較少的參考資料即可獲得更準確的回覆。\",\n                        \"Search files and symbols\": \"搜索文件和符號\",\n                        \"Current attachments\": \"當前附件\",\n                        \"Symbols\": \"符號\",\n                \"Repository…\": \"倉庫…\",\n                    \"Attach a repository\": \"附加倉庫\",\n                        \"Search repositories\": \"搜索倉庫\",\n                        \"Fetching repositories…\": \"正在獲取倉庫\",\n                \"Repository\": \"倉庫\",\n                \"Repositories…\": \"倉庫…\",\n                    \"Select a repository\": \"選擇倉庫\",\n                    \"Select repositories\": \"選擇倉庫\",\n                        \"Choose repositories to chat about.\": \"選擇以聊天\",\n                        \"Choose a repository to chat about.\": \"選擇以聊天\",\n                \"Remove topic\": \"移除主題\",\n                \"Add repositories, files, and spaces\": \"添加倉庫、文件和空間\",\n                \"Upload from computer\": \"上傳本機文件\",\n                \"Files and folders\": \"文件和文件夾\",\n                \"Spaces…\": \"空間…\",\n                \"Create your first space\": \"創建您的第一個空間\",\n                \"Extensions…\": \"擴展…\",\n                \"Extensions\": \"擴展\",\n                    \"Chat with your favorite tools and services\": \"使用您最喜歡的工具和服務聊天\",\n                    \"Browse the marketplace to find extensions for the tools and services you rely on\": \"瀏覽市場以查找您所依賴的工具和服務的擴展\",\n                    \"Browse marketplace\": \"前往市場\",\n            \"Add attachment\": \"添加附件\",\n            \"Remove topic\": \"移除主題\",\n            \"Convert to file\": \"轉成文件\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件選項\",\n                \"Remove attachments\": \"移除附件\",\n            \"Send now\": \"發送\",\n            \"Stop response\": \"停止響應\",\n            // 反饋\n            \"Rate your experience\": \"反饋\",\n            // 四個表情\n                \"Love it\": \"優\",\n                \"It’s ok\": \"良\",\n                \"Not great\": \"中\",\n                \"Hate it\": \"差\",\n\n            \"Tell us what you liked or what could be better\": \"告訴我們您喜歡什麼或可以改進的地方\",\n\n            // 響應狀態\n                \"Copilot is responding…\": \"Copilot 響應中…\",\n                \"creating plan\": \"創建計劃中\",\n                \"getting data\": \"獲取數據中\",\n                \"Using the GitHub API to search pull requests\": \"正在使用 GitHub API 搜索拉取請求\",\n                \"Using the GitHub API to get latest release\": \"正在使用 GitHub API 獲取最新發行版\",\n                    \"Copilot used the\": \"Copilot 已使用\",\n                    \"Issue API\": \"議題 API\",\n                    \"tool\": \"工具\",\n\n            // 聊天內容 - 創建拉取請求\n                \"Are you sure?\": \"您確定嗎？\",\n                    \"Are you sure you wish to execute the \\\"Create pull request with Copilot coding agent\\\" tool?\": \"您確定要執行“使用 Copilot 編程智能體創建拉取請求”工具嗎？\",\n                    \"Allow\": \"允許\",\n                    \"Dismiss\": \"拒絕\",\n\n                \"accepted\": \"允許\",\n                    \"the action\": \"此操作\",\n\n            // 引用\n                \"More reference options\": \"更多引用選項\",\n                    \"Attach to chat\": \"附加至聊天\",\n                    \"Raw\": \"源碼\",\n                    \"Show content\": \"顯示內容\",\n                        \"above\": \"上方\",\n                        \"below\": \"下方\",\n                    \"Reference details\": \"引用信息\",\n                        \"contributor\": \"貢獻者\",\n                        \"contributors\": \"貢獻者\",\n                        \"updated\": \"更新於\",\n\n            // 報錯\n                \"Copilot was interrupted before it could finish this message.\": \"Copilot 在完成此消息之前被中斷。\",\n\n            \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"請不要包含敏感、機密或個人數據。您的匿名反饋有助於我們改進服務，根據\",\n            \"Privacy Policy\": \"隱私政策\",\n            \"Send\": \"發送\",\n            \"Task\": \"任務\",\n            \"Create task\": \"創建任務\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。請檢查錯誤。\",\n\n            \"Copy code\": \"複製程式碼\",\n            \"Copied!\": \"複製成功！\",\n\n            \"Good response\": \"點贊\",\n                \"positive feedback submitted\": \"已提交正面反饋\",\n            \"Bad response\": \"點踩\",\n            \"Retry\": \"重試\",\n\n            \"Give additional feedback\": \"提交額外反饋\",\n                \"Would you like to participate in our research?\": \"您願意參與我們的研究嗎？\",\n                \"You will be compensated for your time\": \"您的時間將得到補償。\",\n                \"Book a session\": \"預約\",\n                \"No, thanks\": \"不，謝謝\",\n\n            \"Chats\": \"聊天\",\n            \"No chats yet\": \"還沒有聊天\",\n            \"Ask Copilot anything on the right to start your first chat.\": \"在右側詢問 Copilot 任何問題，開始您的第一次聊天。\",\n\n            \"Agent sessions\": \"智能體任務\",\n                \"New agent session\": \"新智能體任務\",\n                \"No agents running\": \"沒有智能體任務運行\",\n                \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您現在可以請求 Copilot 在後臺處理任務，創建一個拉取請求供您審查。\",\n\n            \"Explore the latest Copilot launches from Universe ’25\": \"探索 Universe ’25 的最新 Copilot 啟動\",\n            \"See what’s new\": \"查看最新內容\",\n            \"Explore GitHub’s latest tools shaping agentic software and developer choice.\": \"探索 GitHub 最新的工具，塑造智能化的軟體和開發者選擇。\",\n\n            \"Select a custom agent\": \"選擇自定義智能體\",\n                \"Create an agent\": \"新建智能體\",\n\n            \"Start task\": \"開始任務\",\n\n            \"Recent agent sessions\": \"最近智能體任務\",\n            \"Recent sessions\": \"最近任務\",\n                \"No sessions found. Create one by sending a prompt above.\": \"沒有找到任務。通過發送提示來創建一個。\",\n\n            // 空間\n            \"Duplicate\": \"複製\",\n            \"Duplicate Space\": \"複製空間\",\n            \"Spaces are now available through the GitHub MCP in VSCode.\": \"空間現在可以通過 VSCode 的 GitHub MCP 使用。\",\n            \"Install\": \"安裝\",\n            \"Spaces organize your files, pull requests, issues, and standards so Copilot can give more relevant help for your work.\": \"空間組織您的文件、拉取請求、議題和標準，以便 Copilot 為您的工作提供更相關的幫助。\",\n            \"Create space\": \"創建空間\",\n            \"Search...\": \"搜索…\",\n            \"Shared with me\":\"與我共享的空間\",\n            \"Start your first space\": \"開始您的第一個空間\",\n            \"Need help? Read the docs\": \"需要幫助？閱讀文檔\",\n            \"Generate code\": \"生成程式碼\",\n            \"Produce code that follows your team's patterns.\": \"生成符合團隊規範的程式碼。\",\n            \"Share knowledge\": \"分享知識\",\n            \"Centralize docs so your team can quickly find answers.\": \"集中管理文檔，讓團隊快速找到答案。\",\n            \"Plan projects\": \"規劃專案\",\n            \"Create requirements and issues your team can ship.\": \"創建團隊可交付的需求與議題。\",\n            \"New Space\": \"新空間\",\n            \"Space name\": \"空間名稱\",\n            \"Choose a name that describes your project or use case\": \"選擇一個描述您的專案或用例的名稱\",\n            \"Only you will be able to see this space.\": \"只有您可以看到此空間。\",\n            \"Create Space\": \"創建空間\",\n            \"Install MCP\": \"安裝 MCP\",\n            \"Add a short description to explain this space's purpose (e.g., 'Frontend design system' or 'API docs hub').\": \"添加一個簡短的描述，解釋此空間的用途（例如，'前端設計系統'或'API 文檔中心'）。\",\n            \"Add files\": \"添加文件\",\n            \"Define Copilot’s role, focus, and what to avoid in this space. Ex. “You are a [role]. Follow our [framework/patterns] to [type of task]. Avoid [practices or tools] unless specified”.\": \"定義 Copilot 的角色、焦點和在此空間中避免的內容。例如，“您是 [角色]。遵循我們的 [框架/規範] 來 [任務類型]。除非另有說明，否則避免 [實踐或工具]。”\",\n            \"Sources\": \"來源\",\n            \"Conversations\": \"對話\",\n            \"Add sources\": \"添加來源\",\n                \"Add repository\": \"添加倉庫\",\n                \"Add files from repository\": \"從倉庫添加文件\",\n                \"Link files, pull requests, and issues\": \"鏈接文件、拉取請求和議題\",\n                \"Local\": \"本地\",\n                \"Upload a file\": \"上傳文件\",\n                \"Add text content\": \"添加文本內容\",\n            \"Add sources to get started\": \"添加來源以開始\",\n            \"Provide files, docs, issues, or repositories so Copilot can give more relevant answers.\": \"提供文件、文檔、議題或倉庫，以便 Copilot 為您提供更相關的答案。\",\n            \"Start a new conversation in this space by typing in the input box at the top.\": \"通過在頂部輸入框中輸入，開始在此空間中的新對話。\",\n            \"Space not found\": \"空間未找到\",\n            \"This URL may be incorrect, you're signed out of your organization, or the Space may have been deleted.\": \"此 URL 可能不正確，您已退出組織，或空間可能已被刪除。\",\n            \"Manage session\": \"管理會話\",\n            \"View pull request\": \"查看拉取請求\",\n            \"View verbose logs\": \"查看詳細日誌\",\n            \"More actions\": \"更多操作\",\n            \"Copilot started work\": \"Copilot 開始工作\",\n            \"Summary\": \"摘要\",\n            \"Copy head branch name to clipboard\": \"複製頭分支名稱到剪貼板\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        // Copilot 窗口\n        [/Chatting about ([^ ]+)/, \"關於 $1 的對話\"],\n        [/Chatting with (\\d+) attachments?/, \"附加 $1 個附件\"],\n        //[/Public code references from 4 repositories/, \"\"],\n        [/Public code references from (\\d+) repositor(y|ies)/, \"公共程式碼，引用自 $1 個倉庫\"],\n        [/(\\d+) references?/, \"$1 條引用\"],\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 程式碼行（line of code）= 行數 - 空行數（lines - blank lines）\n        [/Using the GitHub API to search for issues assigned to user ([^ ]+)/, \"使用 GitHub API 搜索分配給用戶 $1 的議題\"],\n        [/Chatting with (\\d+) attachments?/, \"附件 $1 個\"],\n        [/Choose items from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"從 $1 中選擇專案來進行交流。使用較少的引用以獲得更準確的回答。\"],\n        [/Choose files, folders, and symbols from ([^ ]+) to chat about. Use fewer references for more accurate responses./, \"選擇 $1 中的文件（夾）和符號進行聊天。引用越少，回覆越準確。\"],\n        [/Delete conversation: \\\"(.+)\\\"/, \"刪除對話：“$1”\"],\n        // 智能體\n        [/Branch: (.+)/, \"分支：$1\"],\n        [/Agent: (.+)/, \"智能體：$1\"],\n        /**\n         * 匹配時間格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否穩定, 暫時先試用著. 2016-03-19 20:46:45\n         *\n         * 更新於 2021-10-04 15:19:18\n         * 增加 帶介詞 on 的格式，on 翻譯不體現\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新於 2021-10-10 13:44:36\n         * on 星期(簡寫), 月 日 年  // 個人訪問令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多規則\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全稱), 月 日, 年 // 倉庫-->洞察-->流量 圖示標識\n         * Sunday, November 14, 2021\n         *\n         * 星期(全稱), 日 月 年// 倉庫-->洞察-->貢獻者 和 倉庫-->洞察-->程式碼頻率\n         * Sunday, 4 Jul 2023\n         *\n         * 更新於 2023-07-04 13:19:21\n         * 新增前綴詞, 減少二次組織翻譯\n         *  Updated Jul 4            // 儀表板頁面 倉庫標籤卡\n         *  Commits on Jul 4, 2023   // 提交頁面、倉庫拉取請求頁->提交卡\n         *  Joined on Jul 4, 2023    // 追星者，關注者頁面\n         *\n         * 更新於 2023-11-11 16:48:02\n         * 個人資料頁->貢獻卡\n         * 日期帶後綴\n         * on March 19th.\n         * on August 22nd.\n         * on August 21st.\n         *\n         * Tip:\n         * 正則中的 ?? 前面的字符 重複0次或1次\n         * 正則中的 ?: 非捕獲符號(即關閉圓括號的捕獲能力) 使用方法 (?: 匹配規則) -->該匹配不會被捕獲 為 $數字\n         */\n        [/(^Updated (?:on )?|^Commits on |^Joined on |on )?(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?)?,? )?(?:(\\d{1,2})(?:st.|nd.|rd.|th.)?)? ?(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?) ?(\\d{1,2})?,? (\\d{4})?/g, function (all, prefix, week, date1, month, date2, year) {\n            var prefixKey = {\n                \"Updated \"   : \"更新於 \",\n                \"Commits on \": \"提交於 \",\n                \"Joined on \" : \"加入於 \",\n                //\"Submitted \": \"提交於 \", // 教育\n            };\n            var weekKey = {\n                \"Sun\"  : \"週日\",\n                \"Mon\"  : \"週一\",\n                \"Tue\"  : \"週二\",\n                \"Wed\"  : \"週三\",\n                \"Thu\"  : \"週四\",\n                \"Fri\"  : \"週五\",\n                \"Sat\"  : \"週六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            // 處理日期\n            var date = date1 ? date1 : date2;\n            var formattedDate = (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '');\n\n            // 處理星期\n            var formattedWeek = week ? '，' + weekKey[week.substring(0, 3)] : '';\n\n            // 返回翻譯結果\n            return (prefixKey[prefix] ? prefixKey[prefix] : '') + formattedDate + formattedWeek;\n        }],\n        /**\n         * 相對時間格式處理\n         *\n         * 更新於 2021-11-21 16:47:14\n         * 1. 添加 前綴詞\n         *    over xxx ago // 里程碑頁面 最後更新時間\n         *    about xxx ago // 里程碑頁面 最後更新時間\n         *    almost xxx ago // 里程碑頁面 最後更新時間\n         *    less than xxx ago // 導出賬戶數據\n         * 2. xxx之內的相對時間格式\n         *  in 6 minutes // 拉取請求頁面\n         *\n         * 更新於 2021-11-22 11:54:30\n         * 1. 修復 Bug: 意外的擴大了匹配範圍(不帶前綴與後綴的時間) 干擾了帶有相對時間的其他規則\n         *  7 months\n         */\n         [/^just now|^now|^last month|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '現在';\n            }\n            if (all === 'just now') {\n                return '剛剛';\n            }\n            if (all === 'last month') {\n                return '上個月';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改為 1\n\n            var unitKey = {second: '秒', minute: '分鐘', hour: '小時', day: '天', month: '個月', year: '年'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大約 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之內' : '之前');\n            }\n        }],\n        /**\n         * 匹配時間格式 2\n         *\n         * in 5m 20s\n         */\n        [/^(?:(in) |)(?:(\\d+)m |)(\\d+)s/,function (all, prefix, minute, second) {\n            all = minute ? minute + '分' + second + '秒' : second + '秒';\n            return (prefix ? all + '之內' : all);\n        }],\n\n        // 其他翻譯\n        [/to enable two-factor authentication as an additional security measure. Your activity on GitHub includes you in this requirement. You will need to enable two-factor authentication on your account before ([^ ]+), or be restricted from account actions./, \"啟用雙因素身份驗證（2FA）作為額外安全措施。您在 GitHub 上的活動讓您接收到此要求。您將需要在 $1 前啟用雙因素身份驗證，否則會被限制賬戶操作。\"],\n    ],\n    \"time-regexp\": [ // 時間正則翻譯專項\n        /**\n         * 匹配時間格式\n         *\n         * 月 日 或 月 日, 年\n         * Mar 19, 2015 – Mar 19, 2016\n         * January 26 – March 19\n         * March 26\n         *\n         * 不知道是否穩定, 暫時先試用著. 2016-03-19 20:46:45\n         *\n         * 更新於 2021-10-04 15:19:18\n         * 增加 帶介詞 on 的格式，on 翻譯不體現\n         * on Mar 19, 2015\n         * on March 26\n         *\n         * 更新於 2021-10-10 13:44:36\n         * on 星期(簡寫), 月 日 年  // 個人訪問令牌 有效期\n         * on Tue, Nov 9 2021\n         *\n         * 2021-10-19 12:04:19 融合更多規則\n         *\n         * 4 Sep\n         * 30 Dec 2020\n         *\n         * on 4 Sep\n         * on 30 Dec 2020\n         *\n         * 2021-11-22 12:51:57 新增 格式\n         *\n         * 星期(全稱), 月 日, 年 // 倉庫-->洞察-->流量 圖示標識\n         * Sunday, November 14, 2021\n         *\n         * Tip:\n         * 正則中的 ?? 前面的字符 重複0次或1次\n         * 正則中的 ?: 非捕獲符號(即關閉圓括號的捕獲能力) 使用方法 (?: 匹配規則) -->該匹配不會被捕獲 為 $數字\n         */\n        [/(?:on |)(?:(\\d{1,2}) |)(?:(Sun(?:day)?|Mon(?:day)?|Tue(?:sday)?|Wed(?:nesday)?|Thu(?:rsday)?|Fri(?:day)?|Sat(?:urday)?), |)(?:(Jan(?:uary)?|Feb(?:ruary)?|Mar(?:ch)?|Apr(?:il)?|May(?:)??|Jun(?:e)?|Jul(?:y)?|Aug(?:ust)?|Sep(?:tember)?|Oct(?:ober)?|Nov(?:ember)?|Dec(?:ember)?)(?:,? |$))(\\d{4}|)(\\d{1,2}|)(?:,? (\\d{4})|)/g, function (all, date1, week, month, year1, date2, year2) {\n            var weekKey = {\n                \"Sun\"  : \"週日\",\n                \"Mon\"  : \"週一\",\n                \"Tue\"  : \"週二\",\n                \"Wed\"  : \"週三\",\n                \"Thu\"  : \"週四\",\n                \"Fri\"  : \"週五\",\n                \"Sat\"  : \"週六\",\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n            var date = date1 ? date1 : date2;\n            var year = year1 ? year1 : year2;\n            return (year ? year + '年' : '') + monthKey[month.substring(0, 3)] + (date ? date + '日' : '') + (week ? ', ' + weekKey[week.substring(0, 3)] : '');\n        }],\n        /**\n         * 相對時間格式處理\n         *\n         * 更新於 2021-11-21 16:47:14\n         * 1. 添加 前綴詞\n         *    over xxx ago // 里程碑頁面 最後更新時間\n         *    about xxx ago // 里程碑頁面 最後更新時間\n         *    almost xxx ago // 里程碑頁面 最後更新時間\n         *    less than xxx ago // 導出賬戶數據\n         * 2. xxx之內的相對時間格式\n         *  in 6 minutes // 拉取請求頁面\n         *\n         * 更新於 2021-11-22 11:54:30\n         * 1. 修復 Bug: 意外的擴大了匹配範圍(不帶前綴與後綴的時間) 干擾了帶有相對時間的其他規則\n         *  7 months\n         */\n        [/^just now|^now|^last year|^last month|^last week|^yesterday|(?:(over|about|almost|in) |)(an?|\\d+)(?: |)(second|minute|hour|day|month|year|week)s?( ago|)/, function (all, prefix, count, unit, suffix) {\n            if (all === 'now') {\n                return '現在';\n            }\n            if (all === 'just now') {\n                return '剛剛';\n            }\n            if (all === 'last year') {\n                return '最近 1 年';\n            }\n            if (all === 'last month') {\n                return '上個月';\n            }\n            if (all === 'last week') {\n                return '上週';\n            }\n            if (all === 'yesterday') {\n                return '昨天';\n            }\n            if (count[0] === 'a') {\n                count = '1';\n            } // a, an 修改為 1\n\n            var unitKey = {second: '秒', minute: '分鐘', hour: '小時', day: '天', month: '個月', year: '年', week: '周'};\n\n            if (suffix) {\n                return (prefix === 'about' || prefix === 'almost' ? '大約 ' : prefix === 'less than' ? '不到 ' : '') + count + ' ' + unitKey[unit] + (prefix === 'over' ? '多之前' : '之前');\n            } else {\n                return count + ' ' + unitKey[unit] + (prefix === 'in' ? '之內' : '之前');\n            }\n        }],\n        [/(\\d+)(y|h|d|w|m)/, function (all, count, suffix) {\n            var suffixKey = {y: '年', h: '小時', d: '天', w: '周', m: '個月'};\n\n            return count + ' ' + suffixKey[suffix] + '之前';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Where software is built\": \"GitHub · 軟體構建的地方\",\n            \"Page not found · GitHub\": \"找不到頁面 · GitHub\",\n        },\n        \"regexp\": [],\n    },\n};\n\nI18N[\"zh-TW\"][\"orgs-public\"] = { // 組織公共部分\n    \"static\": { // 靜態翻譯\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Invite someone to/, \"邀請加入到組織\"],\n        [/New team in/, \"新建團隊在組織\"],\n        [/New repository in/, \"新建倉庫在組織\"],\n        [/This organization was marked as archived by an administrator on (.+). It is no longer maintained./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `該組織已由管理員於 ${translatedDate} 存檔。不再維護。`;\n        }],\n        [/You are now a member of ([^ ]+)!/, \"您現在是 $1 的成員了！\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"page-dashboard\"] = { // 已登錄的首頁 - 儀表板（含組織）\n    \"static\": { // 靜態翻譯\n        // 頂部 GPT 聊天窗口\n        \"Ask anything\": \"詢問任何事\",\n        \"Ask\": \"詢問\",\n        \"Send\": \"發送\",\n        \"Feedback\": \"反饋\",\n            \"Message\": \"消息\",\n            \"Tell us your feedback on the new dashboard experience\":\"告訴我們您對新儀表板體驗的反饋\",\n            \"Please don’t include sensitive, confidential, or personal data. Your feedback helps us improve our services in line with our\":\"請不要包含敏感、機密或個人信息。您的反饋有助於改進我們的服務\",\n\n        // 智能體任務\n            \"Start an agent session to create new work or iterate on an existing project.\": \"啟動智能體會話以新建工作或迭代現有專案。\",\n            \"Start a session\": \"啟動一個會話\",\n\n        // 新版首頁功能區\n        \"Ask\": \"詢問\",\n        \"Task\": \"任務\",\n        \"to access more models and higher limits.\": \"來獲得更多模型和更高限制。\",\n        \"Create issue\": \"創建議題\",\n            \"First, create a new draft issue. Then ask for additional information to fill out the issue.\":\"首先，創建一個新的草稿議題。然後，要求提供更多信息來完善議題。\",\n            \"First, create an issue with sub issues. Then ask for additional information to fill out these issues.\":\"首先，創建一個包含子議題的議題。然後，要求提供更多信息來完善這些子議題。\",\n        \"Write code\": \"編寫程式碼\",\n        \"Models\": \"模型\",\n            \"Create a profile README\":\"個人資料\",\n            \"Generate a simple calculator\":\"簡易計算器\",\n            \"Make a Pong game\":\"乒乓球遊戲\",\n            \"Design a Mermaid architecture overview\":\"Mermaid 架構預覽\",\n        // Git\n            \"Basic Git commands\":\"基本 Git 命令\",\n            \"Git branching\":\"Git 分支\",\n            \"Advanced Git commands\":\"高級 Git 命令\",\n        // 拉取請求\n            \"My open pull requests\":\"我打開的\",\n            \"Summarize my latest PR\":\"總結最近\",\n\n        \"Fast and cost-efficient\": \"快速、經濟高效\",\n        \"Versatile and highly intelligent\": \"多功能、高智能\",\n        \"Most powerful at complex tasks\": \"在複雜任務中最強大\",\n        \"Agent sessions\": \"智能體任務\",\n        \"No sessions found. Try a different filter, or\": \"沒有找到會話。嘗試不同的過濾器，或\",\n        \"start a session\": \"開始任務\",\n        \"Agent sessions options\": \"智能體任務選項\",\n        \"Agent sessions to include\": \"智能體任務包含\",\n        \"View all\": \"查看全部\",\n        \"Number of results\": \"結果數量\",\n        \"Pull request options\": \"拉取請求選項\",\n        \"Pull requests to include\": \"拉取請求包含\",\n            \"Authored\": \"由您創建\",\n            \"Mentioned\": \"被提及\",\n            \"Review requested\": \"請求審查\",\n            \"Reviewed\": \"已審查\",\n        \"Issue options\": \"議題選項\",\n        \"Issues to include\": \"議題包含\",\n            \"Assigned to me\": \"分配給我\",\n            \"Involves me\": \"涉及我\",\n        \"Open in Copilot chat\": \"在 Copilot Chat 中打開\",\n        \"Assign to Copilot\": \"分配給 Copilot\",\n        \"uses AI. Check for mistakes.\": \"使用 AI。請檢查錯誤。\",\n\n            // 選項\n                \"Task\": \"任務\",\n                \"Create issue\": \"創建議題\",\n\n            \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、經濟高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"執行複雜任務\",\n\n        \"Try the new experience\": \"嘗試新版\",\n        \"Try the new dashboard experience\": \"試用新儀表板\",\n        \"Switch back\": \"切回舊版\",\n\n        // 新手幫助\n        \"Learn Git and GitHub without any code!\": \"瞭解 Git 和 GitHub 無需任何程式碼！\",\n        \"Using the Hello World guide, you’ll create a repository, start a branch,\": \"使用 Hello World 指南，您將創建一個倉庫，開始一個分支，\",\n        \"write comments, and open a pull request.\": \"寫評論，並創建一個拉取請求。(教程內容就不翻譯了...)\",\n        \"Let's get started!\": \"讓我們開始吧！\",\n        \"Hide this notice forever\": \"永久的隱藏該信息\",\n\n        \"Welcome to GitHub! What’s next?\": \"歡迎來到 GitHub！下一步幹什麼？\",\n        \"Create a repository\": \"創建一個倉庫\",\n        \"Tell us about yourself\": \"介紹一下您自己\",\n        \"Browse interesting repositories\": \"瀏覽有趣的倉庫\",\n        \"on Twitter\": \"在 Twitter 上\",\n\n        \"You don’t have any repositories yet!\": \"您目前還沒有任何倉庫！\",\n        \"Create your first repository\": \"創建您的第一個倉庫\",\n        \"or\": \"或者\",\n        \"Learn more about Git and GitHub\": \"瞭解更多關於 Git 和 GitHub 的信息\",\n\n        // 教育版\n        \"Join GitHub Education!\": \"加入 GitHub 教育！\",\n            \"GitHub Education opens doors to new skills, tools, and a collaborative community eager to drive innovation. Join us and build a foundation for your future in technology.\": \"GitHub 教育為您打開通往新技能、新工具以及渴望推動創新的協作社區的大門。加入我們，為您的技術未來打下基礎。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n\n        // 組織\n        // [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 組織的所有者！\"],\n        // [/Create a repository for ([^ ]+)/, \"為 $1 創建倉庫\"],\n        \"Welcome to the\": \"歡迎來到\",\n        \"View your teams\": \"查看您的團隊\",\n        \"View and create teams\": \"查看並創建團隊\",\n        \"See all owners\": \"查看全部所有者\",\n        \"You've been added to the\": \"您已被添加至\",\n        \"organization.\": \"組織\",\n        // [/Edit ([^ ]+)’s settings/, \"編輯 $1 的設置\"],\n        \"Return to your personal dashboard\": \"返回到您的個人儀表板\",\n\n        // 已有倉庫的專案\n        // 左側欄\n        \"View organization\": \"查看組織\", // 組織\n        \"Browse organization's repositories\": \"瀏覽組織的倉庫\", // 組織\n        \"Top repositories\": \"置頂倉庫\",\n        \"Top Repositories\": \"置頂倉庫\", // 安卓UA\n        \"New\": \"新建\",\n        \"Find a repository…\": \"搜索倉庫…\",\n        \"Your teams\": \"您的團隊\",\n            \"You don’t belong to any teams yet!\": \"您還不屬於任何團隊！\",\n        \"Find a team…\": \"搜索團隊…\",\n        \"Recent activity\": \"近期活動\",\n            \"When you take actions across GitHub, we’ll provide links to that activity here.\": \"當您在 GitHub 上採取行動時，我們會在這裡提供該活動的鏈接。\", // 組織\n\n        \"Create your first project\": \"創建您的第一個專案\",\n            \"Ready to start building? Create a repository for a new idea or bring over an existing repository to keep contributing to it.\": \"準備好開始構建了嗎？為新想法創建一個倉庫或使用現有倉庫繼續為其做出貢獻。\",\n            \"Create repository\": \"創建倉庫\",\n\n        \"Forked from\": \"複刻自\", // 複刻倉庫\n\n        // 中間欄\n        \"Feed\": \"動態\",\n        \"The home for all developers — including you.\": \"所有開發者的家園——包括您。\",\n        \"Welcome to your personal dashboard, where you can find an introduction to how GitHub works, tools to help you build software, and help merging your first lines of code.\": \"歡迎來到您的個人儀表板，在這裡您可以看到關於 GitHub 工作原理的介紹，幫助您構建軟體的工具，以及幫助您合併您的第一行程式碼。\",\n        \"Learn with a tutorial project\": \"通過教程專案學習\",\n            \"Introduction to GitHub\": \"GitHub 簡介\",\n            \"Get started using GitHub in less than an hour.\": \"一個小時內學會如何使用 GitHub。\",\n            \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 從您的 GitHub 倉庫創建網站或博客。\",\n            \"Code with Copilot\": \"使用 Copilot 編程\",\n            \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、程式碼空間和 VS Code 通過 AI 驅動的程式碼建議進行開發。\",\n            \"Hello GitHub Actions\": \"您好 GitHub Actions\",\n            \"Create a GitHub Action and use it in a workflow.\": \"創建一個 GitHub Actions 並在工作流中使用它 \",\n            \"See more tutorial projects\": \"查看更多的教程專案\",\n        \"Start writing code\": \"開始編寫程式碼\",\n            \"A repository contains all of your project's files, revision history, and collaborator discussion.\": \"倉庫包含專案的所有文件、修訂歷史記錄和協作者討論。\",\n            \"Repository name\": \"倉庫名稱\",\n            \"name your new repository...\": \"命名您的新倉庫……\",\n            \"Anyone on the internet can see this repository\": \"任何人都可以看到這個倉庫，您可以選擇誰能提交。\",\n            \"You choose who can see and commit to this repository\": \"您可以選擇誰可以看和提交到該倉庫。\",\n            \"Create a new repository\": \"創建新的倉庫\",\n            \"You're seeing this because you haven't created a repository in a while.\": \"您看到這個是因為您有一段時間沒有創建倉庫了。\",\n            \"You're seeing this because you haven't used repositories, issues, and pull requests recently.\": \"您看到這個是因為您最近沒有使用倉庫、議題和拉取請求。\",\n            \"Remove from dashboard\": \"從儀表板中刪除\",\n            \"Repositories that need your help\": \"這些倉庫需要您的幫助\",\n            \"See more repos with good first issues\": \"查看更多適合新手提交議題的倉庫\",\n        \"Use tools of the trade\": \"使用貿易工具\",\n            \"You're seeing this because you haven't opened a pull request in a while.\": \"您看到這個是因為您有一段時間沒有打開拉取請求了。\",\n                \"Simplify your development workflow with a GUI\": \"使用 GUI 簡化開發工作流程\",\n                \"Install GitHub Desktop\": \"安裝 GitHub Desktop\",\n                \"to visualize, commit, and push changes without ever touching the command line.\": \"來可視化、提交和推送更改，而無需使用命令行。\",\n            \"Get AI-based coding suggestions\": \"獲取基於 AI 的編碼建議\",\n                \"Try GitHub Copilot free for 30 days,\": \"免費試用 GitHub Copilot 30 天，\",\n                \"which suggests entire functions in real time, right from your editor.\": \"它可以直接從您的編輯器實時建議所有函數。\",\n            \"Write code in your web browser\": \"在您的網絡瀏覽器中編寫程式碼\",\n                \"Use\": \"使用\",\n                \"the github.dev web-based editor\": \"基於 github.dev 的網絡編輯器\",\n                \"from your repository or pull request to create and commit changes.\": \"從您的倉庫或拉取請求中創建和提交更改。\",\n        \"Install a powerful code editor\": \"安裝一個強大的程式碼編輯器\",\n            \"is a multi-platform code editor optimized for building and debugging software.\": \"是針對構建和調試軟體進行了優化的多平臺程式碼編輯器。\",\n        \"Set up your local dev environment\": \"設置本地開發環境\",\n            \"set up Git\": \"設置 Git\",\n            \", simplify your dev workflow with\": \"，簡化您的開發工作流程，使用\",\n            \", or\": \"，或\",\n            \"bring GitHub to the command line\": \"將 GitHub 引入命令行\",\n        \"Get started on GitHub\": \"開始使用 GitHub\",\n            \"You're seeing this because you haven't used GitHub's core features, yet.\": \"您看到這個是因為您有一段時間沒有使用過 GitHub 的核心功能了。\",\n        \"Introduce yourself with a profile README\": \"使用 README 介紹自己\",\n            \"Share information about yourself by creating a profile README, which appears at the top of your profile page.\": \"通過創建個人資料自述文件（README）來分享有關您自己的信息，該信息將顯示在您的個人資料頁面頂部。\",\n        \"Follow this exercise to try the GitHub flow\": \"按照此練習嘗試 GitHub 流程\",\n            \"GitHub's “Hello World” tutorial teaches you essentials, where you create your own repository and learn GitHub's pull request workflow for creating and reviewing code.\": \"GitHub 的 “Hello World” 教程會教您基本知識，您可以在其中創建自己的倉庫並學習 GitHub 用於創建和審查程式碼的拉取請求工作流程。\",\n            \"Try the GitHub flow\": \"嘗試 GitHub 流程\",\n        \"About version control and Git\": \"關於版本控制和 Git\",\n        \"Learn about the version control system, Git, and how it works with GitHub.\": \"瞭解版本控制系統、Git 以及它如何與 GitHub 一起工作。\",\n        \"The GitHub Flow\": \"GitHub 流程\",\n        \"Adopt GitHub's lightweight, branch-based workflow to collaborate on projects.\": \"採用 GitHub 的輕量級、基於分支的工作流程來協作處理專案。\",\n\n        \"One moment please...\": \"稍等一會兒…\",\n        \"Loading activity...\": \"載入活動…\",\n        \"All activity\": \"所有活動\",\n\n        \"Welcome to the new feed!\": \"歡迎來到新的動態提要!\",\n        \"We’re updating the cards and ranking all the time, so check back regularly. At first, you might need to follow some people or star some repositories to get started\": \"我們一直在更新卡片和排名，所以請定期查看。一開始，您可能需要關注一些人或標星一些倉庫才能開始\",\n        \"Send feedback\": \"發送反饋\",\n\n        \"Updates to your homepage feed\": \"主頁動態摘要的更新\",\n        \"We've combined the power of the Following feed with the For you feed so there’s one place to discover content on GitHub. There’s improved filtering so you can customize your feed exactly how you like it, and a shiny new visual design. ✨\": \"我們將 “關注動態提要” 與 “您的動態提要” 的強大功能結合在一起，讓您在一個地方就能發現 GitHub 上的內容。此外，我們還改進了篩選功能，讓您可以完全按照自己的喜好定製動態提要，並採用全新的視覺設計。 ✨\",\n        \"Learn more\": \"瞭解更多\",\n\n        \"Explore GitHub\": \"探索 GitHub\",\n            \"to receive personalized suggestions.\": \"以獲取個性化建議。\",\n\n        // 提要篩選\n        \"Filter\": \"篩選器\",\n            \"Feed filters\": \"提要篩選器\",\n            \"Events\": \"事件\",\n                \"Activity you want to see on your feed\": \"您想在提要上看到的活動\",\n            \"Announcements\": \"公告\",\n                \"Special discussion posts from repositories\": \"來自倉庫的特別討論帖\",\n            \"Releases\": \"發行版\",\n                \"Update posts from repositories\": \"來自倉庫的更新帖\",\n            // 贊助\n                \"Relevant projects or people that are being sponsored\": \"獲得贊助的相關專案或人員\",\n            \"Stars\": \"星標\",\n                \"Repositories being starred by people\": \"被人們標星的倉庫\",\n            \"Repositories\": \"倉庫\",\n                \"Repositories that are created or forked by people\": \"由人們創建或複刻的倉庫\",\n            \"Repository activity\": \"倉庫活動\",\n                \"Issues and pull requests from repositories\": \"來自倉庫的議題和拉取請求\",\n            \"Follows\": \"關注\",\n                \"Who people are following\": \"人們在關注誰\",\n            \"Recommendations\": \"推薦\",\n                \"Repositories and people you may like\": \"您可能喜歡的倉庫和人\",\n\n            \"Include events from starred repositories\": \"包括來自星標倉庫中的事件\",\n                \"By default, the feed shows events from repositories you sponsor or watch, and people you follow.\": \"默認情況下，動態提要顯示的事件來自您贊助或關注的倉庫，以及您關注的人。\",\n            \"Reset to default\": \"重置\",\n            \"Save\": \"保存\",\n\n        \"Show all\": \"顯示所有\",\n\n        \"Uh oh!\": \"哎呀！\",\n        \"There was an error in loading the activity feed.\": \"載入動態提要時發生錯誤。\",\n        \"Reload this page\": \"重載此頁面\",\n\n        // 動態 狀態詞\n        \"starred\": \"標星了\",\n        \"created\": \"創建了\",\n        \"forked from\": \"複刻自\",\n        \"generated from\": \"創建自\",\n        \"mirrored from\": \"鏡像自\",\n        \"forked\": \"複刻了\",\n        \"from\": \"來自\",\n        \"for\": \"\",\n        \"pushed\": \"推送\",\n        \"pushed to\": \"推送到\",\n        \"released\": \"發佈了\",\n        \"published\": \"發佈了\",\n        \"started sponsoring\": \"贊助給\",\n        \"started following\": \"已關注\",\n        \"you\": \"您\",\n        \"Updated\": \"更新於\",\n        \"a repository\": \"1 個倉庫\",\n        \"has a new repository\": \"創建了倉庫\",\n        \"created a repository\": \"創建了倉庫\",\n        \"a branch in\": \"一個分支在\",\n        \"created a branch in\": \"創建了一個分支在\",\n        \"in\": \"分支在\",\n        \"Forked to\": \"複刻為\",\n        \"of\": \"\",\n        \"made\": \"將\",\n        \"public\": \"設為公共\",\n        \"committed\": \"提交於\",\n        \"posted a discussion in\": \"發表討論於\",\n        \"made this repository public\": \"將此倉庫公開\",\n        \"labeled a pull request\": \"將標籤添加到拉取請求中\",\n        \"launched their sponsorship page 💖\": \"推出了他們的贊助頁面 💖\",\n        //[/and (\\d+) more/, \"和另外 $1 個\"],\n        \"All reactions\": \"所有看法\",\n        \"commented on an issue in\": \"於一個議題發表了評論在\",\n        \"commented on a pull request in\": \"於一個拉取請求發表了評論在\",\n        \"opened a pull request\": \"打開了一個拉取請求在\",\n        \"closed a pull request\": \"關閉了一個拉取請求在\",\n        \"opened\": \"打開\",\n        \"deleted\": \"刪除\",\n        \"commented on\": \"發表了評論於\",\n\n        \"published a release\": \"發佈發行版\",\n        \"forked a repository\": \"複刻倉庫\",\n        \"starred a repository\": \"星標倉庫\",\n        \"sponsored\": \"贊助了\",\n        \"followed\": \"關注了\",\n        \"added a repository to\": \"已將倉庫添加到\",\n        \"contributed to\": \"貢獻給\",\n            // 現在會顯示拉取請求狀態\n            \"Merged\": \"已合併\",\n\n        \"your repository\": \"您的倉庫\",\n\n        \"Read more\": \"閱讀更多內容\",\n        \"Load more...\": \"加載更多……\",\n\n        \"Subscribe to your news feed\": \"訂閱您的新聞提要\",\n        \"Subscribe to the\": \"訂閱\", // 組織\n        \"organization news feed\": \"組織的新聞提要\", // 組織\n\n        //主頁上倉庫3個點\n        \"Feed item options\": \"推送選項\",\n        \"You're seeing this because of your activity.\": \"您看到這個是因為您的活動。\",\n        \"Show less activity like this\": \"顯示較少這類活動\",\n        // [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到這個是因為您與 $1 有過合作\"],\n        // [/You're seeing this because you starred ([^ ]+)/, \"您看到這個，是因為您標星了 $1\"],\n        \"Unstar this repository\": \"取消標星此倉庫\",\n        // [/You're seeing this because you follow ([^ ]+)/, \"您看到這個，是因為您關注了 $1\"],\n        \"Unfollow this user\": \"取消關注此用戶\",\n\n        \"Contributors\": \"貢獻者\",\n        \"Report\": \"舉報\",\n        \"Recommended for you\": \"為您推薦\",\n        \"Trending repositories\": \"熱門倉庫\",\n        \"Latest from our changelog\":\"來自我們的更新日誌\",\n        \"Try the new experience\": \"嘗試新體驗\",\n        \"See more\": \"查看更多\",\n        \"Read more\": \"閱讀更多\",\n        \"You're seeing this based on GitHub-wide trends.\": \"您看到的是基於 GitHub-wide 的趨勢。\",\n        \"Recommended based on people you follow\": \"根據您關注的人推薦\",\n        \"has a new discussion in\": \"有一條新討論，在\",\n        \"Join discussion\": \"參與討論\",\n        \"Popular among\": \"很受歡迎\",\n        \"Popular projects among\": \"熱門專案\",\n        \"people you follow\": \"在您關注的人中\",\n        \"Sponsor\": \"贊助\",\n        \"added\": \"添加\",\n\n        // 右側欄\n        \"Latest changes\": \"最新變化\",\n        \"View changelog →\": \"查看更新日誌 →\",\n        \"Explore repositories\": \"探索倉庫\",\n        \"Explore more →\": \"探索更多 →\",\n\n        \"Member statuses\": \"成員狀態\", // 組織\n\n        // 儀表板右上方看板\n        \"The world’s fair of software is here.\": \"世界軟體博覽會就在這裡。\",\n        \"The GitHub Universe call for sessions is now open! Apply to share your expertise by submitting a session proposal today. Plus, get 35% off your tickets to GitHub Universe only for a limited time.\": \"GitHub Universe 的會議徵集現已開啟！立即提交您的會議提案，分享您的專業知識。此外，現在限時可享 35% 的 GitHub Universe 會議門票折扣。\",\n\n        // 教育看板（申請教育包才有）\n        \"Learn. Collaborate. Grow.\": \"學習，協作，成長。\",\n        \"GitHub Education gives you the tools and community support to take on tech challenges and turn them into opportunities. Your future in tech starts here!\": \"GitHub 教育提供工具和社區支持，幫助您應對技術挑戰並將其轉化為機遇。您科技領域的未來從這裡開始！\",\n        \"Go to GitHub Education\": \"前往 GitHub 教育\",\n\n        // 用戶 浮動信息卡\n        \"Member of\": \"隸屬組織\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 個組織\"],\n\n        // 組織  浮動信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        // [/(\\d+) members?/, \"$1 個成員\"],\n\n        \"Go to organization dashboard\": \"前往組織儀表板\", // 組織\n        \"Switch dashboard context\": \"切換默認身份\", // 組織\n        \"Manage organizations\": \"管理組織\", // 組織\n        \"Create organization\": \"創建組織\", // 組織\n\n        // 首次加入組織通知\n        \"You’ve been added to the\": \"您已經被添加到\",\n        \"organization!\": \"組織！\",\n        \"Here are some quick tips for a first-time organization member.\": \"以下是首次加入組織的一些提示。\",\n        \"Use the switch context button in the upper left corner of this page to switch between your personal context (\": \"使用頁面左上角的切換身份按鈕，您可以在（\",\n        \") and organizations you are a member of.\": \"）和組織身份之間進行切換。\",\n        \"After you switch contexts you’ll see an organization-focused dashboard that lists out organization repositories and activities.\": \"當您切換身份，您會看到一個組織為中心的頁面，其中列出了組織庫和活動。\",\n\n        // 快捷鍵\n        \"Dashboards\": \"儀表板\",\n        \"Go to your issues\": \"跳轉到您的議題\",\n        \"Go to your pull requests\": \"跳轉到您的拉取請求\",\n\n        // 新版首頁（已登錄）2025-10-29\n            \"Your personal account\": \"我的個人賬戶\",\n\n            \"Started\": \"開始於\",\n            \"Completed\": \"完成於\",\n            \"In progress\": \"進行中\",\n\n            \"Unable to load agent tasks, try again later.\": \"無法加載智能體任務，請稍後重試。\",\n            \"Unable to load pull requests, try again later.\": \"無法加載拉取請求，請稍後重試。\",\n\n            \"Updated\": \"更新於\",\n            \"Ready for review\": \"準備審查\",\n            \"Assigned to Copilot\": \"分配給 Copilot\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) pull requests/, \"$1 個拉取請求\"],\n        [/added (\\d+) repositor(y|ies) to/, \"添加 $1 個倉庫到\"],\n        [/, and (\\d+) more/, \"，以及其他 $1 個組織\"], // 用戶 浮動信息卡\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"], // 組織  浮動信息卡\n        [/(\\d+) of your repositor(y|ies)/, \"您的 $1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 個成員\"], // 組織  浮動信息卡\n        [/is being deleted./, \"正在被刪除。\"], // 倉庫 組織被刪除\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的倉庫 “$1” 已成功刪除。\"], // 倉庫刪除\n        [/(\\d+) releases?/, \"$1 個發行版\"],\n        [/(\\d+k?) followers?/, \"$1 個關注者\"],\n        [/(\\d+) users?/, \"$1 個用戶\"],\n        [/(\\d+) comments?/, \"$1 條評論\"],\n        [/(\\d+) commits? to/, \"$1 個提交到\"],\n        [/(\\d+) more commits? »/, \"$1 個更多提交到\"],\n        [/(\\d+) issues? needs? help/, \"$1 個議題需要幫助\"],\n        [/Join discussion/, \"加入討論\"],\n        // [/Updated/, \"更新於\"],\n        // 創建於\n        [/Created/, \"創建於\"],\n        [/You’re an owner of the ([^ ]+) organization!/, \"您是 $1 組織的所有者！\"], // 組織\n        [/Create a repository for ([^ ]+)/, \"為 $1 創建倉庫\"], // 組織\n        [/Edit ([^ ]+)’s settings/, \"編輯 $1 的設置\"], // 組織\n        [/Check out ([^ ]+)’s public profile/, \"查看 $1 的公開資料\"], // 組織\n        [/and (\\d+) more/, \"和另外 $1 個\"],\n        [/You're seeing this because you collaborated with ([^ ]+)/, \"您看到這個是因為您與 $1 有過合作\"],\n        [/You're seeing this because you starred ([^ ]+)/, \"您看到這個，是因為您標星了 $1\"],\n        [/You're seeing this because you follow ([^ ]+)/, \"您看到這個，是因為您關注了 $1\"],\n        [/You and/, \"您和另外\"],\n        [/You reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/,function (all, reacted) {\n            var reactedKey = {'thumbs up': \"點贊\", 'thumbs down': \"點踩\", laugh: \"大笑\", hooray: \"歡呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"發送火箭\", eyes: \"表示關注\"};\n\n            return '您' + reactedKey[reacted];\n        }],\n        [/(\\d+) (?:people|person) reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes)/, function (all, number, reacted) {\n            var reactedKey = {'thumbs up': \"點贊\", 'thumbs down': \"點踩\", laugh: \"大笑\", hooray: \"歡呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"發送火箭\", eyes: \"表示關注\"};\n\n            return number + ' 人' + reactedKey[reacted];\n        }],\n        [/Support ([^ ]+)'s open source work/, \"支持 $1 的開源工作\"],\n        [/Start a new repository for/, \"創建一個倉庫為\"],\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您發表評論\"], // 拉取請求 浮動信息卡\n        // 頂部提醒\n        // 繼任者相關\n        [/You are now the designated successor for ([^ ]+)'s account./, \"您現在是 $1 的指定繼任者了。\"],\n        [/You have declined to become the designated successor for ([^ ]+)'s account./, \"您已經謝絕了成為 $1 賬戶指定繼任者的邀請。\"],\n        // 拉取請求狀態\n        [/merged (\\d+) commits?/, \"合併 $1 個提交\"],\n        // 新版首頁\n        [/Good morning, ([^ ]+)!/, \"早上好，$1！\"],\n        [/Good afternoon, ([^ ]+)!/, \"下午好，$1！\"],\n        [/Good evening, ([^ ]+)!/, \"晚上好，$1！\"],\n        [/Switch dashboard: ([^ ]+)/, \"切換儀表板：$1\"],\n        [/(.+)\\#(\\d+) · Opened by ([^ ]+) ·/, \"$1#$2 · 打開者 $3\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Dashboard\": \"GitHub 儀表盤\",\n            \"Feed\": \"動態\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"dashboard\"] = I18N[\"zh-TW\"][\"page-dashboard\"];\nI18N[\"zh-TW\"][\"feed\"] = I18N[\"zh-TW\"][\"page-dashboard\"];\nI18N[\"zh-TW\"][\"orgs/dashboard\"] = I18N[\"zh-TW\"][\"page-dashboard\"];\n\nI18N[\"zh-TW\"][\"page-profile-public\"] = { // 個人首頁（含組織）\n    \"static\": { // 靜態翻譯\n        // 左側用戶信息欄\n            \"Change your avatar\": \"修改頭像\",\n            \"they/them\": \"他們\",\n            \"she/her\": \"她\",\n            \"he/him\": \"他\",\n            \"You have blocked this user\": \"您已拉黑此用戶\",\n            \"Follow\": \"關注\",\n            \"Sponsor\": \"贊助\",\n            \"follower\": \"關注者\",\n            \"followers\": \"關注者\",\n            \"following\": \"關注\",\n            \"Followed by\": \"共同關注者：\",\n            \"Joined\": \"加入於\",\n            \"Achievements\": \"成就\",\n            \"Highlights\": \"高光時刻\",\n                \"Label: Pro\": \"標籤：專業版\",\n            \"Developer Program Member\": \"開發者計劃成員\",\n            \"security advisory credits\": \"個安全諮詢分\",\n            \"security advisory credit\": \"個安全諮詢分\",\n            \"Organizations\": \"組織\",\n            \"Block or Report\": \"拉黑或舉報\",\n            \"Unblock or report user\": \"取消拉黑或舉報\",\n            \"- same time\": \"- 時間相同\",\n\n            // 編輯個人資料\n                \"Edit profile\": \"編輯個人資料\",\n                \"Name\": \"名稱\",\n                \"Display\": \"顯示\",\n                    \"badge.\": \"徽章。\",\n                \"Bio\": \"個人簡介\",\n                \"Add a bio\": \"添加個人簡介\",\n                    \"You can\": \"您可\",\n                    \"@mention\": \"@用戶名或組織名\",\n                    \"other users and organizations to link to them.\": \"鏈接到其他用戶和組織。\",\n                \"Pronouns\": \"代詞\",\n                    \"Don't specify\": \"不說明\",\n                    \"they/them\": \"他們\",\n                    \"she/her\": \"她\",\n                    \"he/him\": \"他\",\n                    \"Custom\": \"自定義\",\n                \"Company\": \"公司\",\n                \"Location\": \"位置\",\n                \"Display current local time\": \"顯示當前當地時間\",\n                \"same time\": \"相同時間\",\n                \"Website\": \"網站\",\n                \"Social accounts\": \"社交賬戶\",\n                \"Link to social profile\": \"鏈接到社交賬戶\",\n                \"Link to social profile 1\": \"鏈接到社交賬戶\",\n                \"Link to social profile 2\": \"鏈接到社交賬戶\",\n                \"Link to social profile 3\": \"鏈接到社交賬戶\",\n                \"Link to social profile 4\": \"鏈接到社交賬戶\",\n\n            // 成就浮動界面\n                // 北極程式碼庫貢獻者\n                    \"Arctic Code Vault Contributor\": \"北極程式碼庫貢獻者\",\n                        \"History\": \"歷史\",\n                        \"100% unlocked\": \"100% 解鎖\",\n                        \"· Unlocked\": \"· 解鎖於\",\n                        \"these repositories, and more, were archived\": \"這些倉庫以及更多倉庫已存檔\",\n                // YOLO\n                    \"You want it? You merge it.\": \"您想要它？您合併它。\",\n                    \"inaccessible\": \"已刪庫\",\n                    \"Merged without a review\": \"未經審查就合併\",\n                // Pull Shark\n                    \"Pull Shark\": \"鯊魚拉\",\n                    \"Bronze unlocked\": \"青銅已解鎖\",\n                    \"Bronze and Silver unlocked\": \"青銅和白銀已解鎖\",\n                    \"· First unlocked\": \"· 首次解鎖於\",\n                    \"2nd pull request merged\": \"2 個拉取請求被合併\",\n                    \"16th pull request merged\": \"16 個拉取請求被合併\",\n                    \"128th pull request merged\": \"128 個拉取請求被合併\",\n                    \"1024th pull request merged\": \"1024 個拉取請求被合併\",\n                // Starstruck\n                    \"Starstruck\": \"追星族\",\n                    \"⭐️ 16 stars\": \"⭐️ 16 個星標\",\n                    \"⭐️ 128 stars\": \"⭐️ 128 個星標\",\n                    \"⭐️ 512 stars\": \"⭐️ 512 個星標\",\n                    \"⭐️ 4096 stars\": \"⭐️ 4096 個星標\",\n                // Pair Extraordinaire\n                    \"Pair Extraordinaire\": \"非凡搭檔\",\n                    \"Unlocked\": \"解鎖於\",\n                    \"Coauthored with\": \"與下列用戶共同合作\",\n                    \"Coauthored with an unknown user\": \"與未知用戶共同合作\",\n                // Quickdraw\n                    \"Quickdraw\": \"快速關閉\",\n                    \"Gitty up!\": \"趕快開始！\",\n                    \"Closed within 5 minutes of opening\": \"在打開的 5 分鐘內關閉\",\n                // Galaxy Brain\n                    \"Galaxy Brain\": \"銀河大腦\",\n                    \"2nd accepted answer\": \"2 個答案被接受\",\n                    \"8th accepted answer\": \"8 個答案被接受\",\n                    \"16th accepted answer\": \"16 個答案被接受\",\n                    \"32nd accepted answer\": \"32 個答案被接受\",\n                // Public Sponsor\n                    \"Public Sponsor\": \"公共贊助者\",\n                    \"1st sponsorship\": \"1 次贊助\",\n                // Mars 2020 Contributor\n                    \"Mars 2020 Contributor\": \"火星 2020 貢獻者\",\n                    \"Mars 2020 Helicopter Mission\": \"2020 火星無人直升機首飛計劃\",\n                    \"this repository was included\": \"該倉庫已收錄\",\n\n                // ?tab=achievements\n                    \"Hide from profile\": \"從個人資料中隱藏\",\n                    \"Hidden from your profile.\": \"已從您的個人資料中隱藏\",\n                    \"Show on profile\": \"在個人資料中顯示\",\n                    \"Copy share link\": \"複製共享鏈接\",\n                    \"Preview on Twitter\": \"在 Twitter 上預覽\",\n\n                    // 頂部提醒\n                        // [/The (.+) achievement will now be hidden from your profile./, \"現在，將從您的個人資料中隱藏 “$1” 成就。\"],\n                        // [/The (.+) achievement will now be shown in your profile./, \"現在，將在您的個人資料中顯示 “$1” 成就。\"],\n\n                \"Send feedback\": \"發送反饋\",\n\n            // 拉黑 & 舉報用戶對話框\n                // [/Block or report ([^ ]+)/, \"拉黑或舉報 $1\"],\n                \"Block user\": \"拉黑用戶\",\n                \"Prevent this user from interacting with your repositories and sending you notifications. Learn more about\": \"防止該用戶與您的倉庫互動並向您發送通知。瞭解更多關於\",\n                \"blocking users\": \"拉黑用戶\",\n\n                \"Add an optional note:\": \"添加可選備註：\",\n                    \"Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.\": \"請勿包含任何個人信息，如法定姓名或電子郵件地址。最多 100 個字符，支持標記符。此備註只有您本人可見。\",\n\n                \"Unblock user\": \"取消拉黑\",\n                \"Allow this user to interact with your repositories and send you notifications. Learn more about\": \"允許該用戶與您的倉庫互動並向您發送通知。瞭解更多關於\",\n\n                \"Report abuse\": \"舉報濫用\",\n                    \"Contact GitHub support about this user’s behavior. Learn more about\": \"就該用戶的行為聯繫 GitHub 支持部門。瞭解更多關於\",\n                    \"reporting abuse\": \"舉報濫用\",\n\n        // 倉庫\n            \"Forked from\": \"複刻自\",\n            \"Updated\": \"更新於\",\n\n            // 許可證\n                \"GNU General Public License v3.0\": \"GNU 通用公共許可證 v3.0\",\n                \"GPL-3.0 License\": \"GPL-3.0 許可證\",\n                \"AGPL-3.0 License\": \"AGPL-3.0 許可證\",\n                \"LGPL-3.0 License\": \"LGPL-3.0 許可證\",\n                \"MIT License\": \"MIT 許可證\",\n                \"Apache License 2.0\": \"Apache-2.0 許可證\",\n                \"OFL-1.1 License\": \"OFL-1.1 許可證\",\n                \"0BSD License\": \"0BSD 許可證\",\n                \"BSD-3-Clause License\": \"BSD-3-Clause 許可證\",\n                \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 許可證\",\n                \"CC0-1.0 License\": \"CC0-1.0 許可證\",\n                \"WTFPL License\": \"WTFPL 許可證\",\n                \"Other\": \"其他\",\n                \"Unknown\": \"未知\",\n\n        // 標籤欄\n            \"Sponsoring\": \"贊助\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) discussions? answered/, \"$1 個討論已回答\"], // 高光時刻\n        [/Block or report ([^ ]+)/, \"拉黑或舉報 $1\"],\n        [/contributed code to several repositories in the/, \"為多個倉庫貢獻了程式碼，在\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存檔計劃\"], // 成就浮動款\n        [/opened pull requests that have been merged./, \"打開的拉取請求已被合併。\"], // Pull Shark\n        [/created a repository that has many stars./, \"創建了一個擁有很多星標的倉庫。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"與他人共同提交了合併的拉取請求。\"], // Pair Extraordinaire\n        [/answered discussions./, \"回答了討論。\"], // Galaxy Brain\n        [/(\\@[^ ]+) (?:is sponsoring|has sponsored) (\\d+) organizations? or users?./, \"$1 贊助了 $2 個組織或用戶。\"], // Public Sponsor\n        [/contributed code to (\\d+) repositor(y|ies) used in the/, \"貢獻於 $1 個倉庫收錄於\"], // Mars 2020 Helicopter Mission.\n        [/The (.+) achievement will now be hidden from your profile./, \"現在，將從您的個人資料中隱藏 “$1” 成就。\"],\n        [/The (.+) achievement will now be shown in your profile./, \"現在，將在您的個人資料中顯示 “$1” 成就。\"],\n        [/^(\\d+) repositor(y|ies)/, \"$1 倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小時';\n        }],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Followers\": \"我的關注者\",\n            \"Who You’re Following\": \"我關注的人\",\n        },\n        \"regexp\": [\n            [/Achievements/, \"成就\"],\n            [/Followers/, \"關注者\"],\n            [/Following/, \"關注\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"page-profile/achievements\"] = I18N[\"zh-TW\"][\"page-profile-public\"]; // ?tab=achievements\nI18N[\"zh-TW\"][\"page-profile/followers\"] = I18N[\"zh-TW\"][\"page-profile-public\"]; // ?tab=followers\nI18N[\"zh-TW\"][\"page-profile/following\"] = I18N[\"zh-TW\"][\"page-profile-public\"]; // ?tab=following\n\nI18N[\"zh-TW\"][\"page-profile\"] = { // 個人首頁\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 概述標籤卡 即主頁 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Customize your pins\": \"自定義置頂\",\n            // 設置置頂專案對話框\n            \"Edit pinned items\": \"設置置頂專案\",\n            \"Select up to six public repositories or gists you'd like to show to anyone.\": \"最多選擇 6 個您想向任何人展示的公共倉庫或程式碼片段。\",\n            \"Select up to six public repositories you'd like to show.\": \"最多選擇 6 個要顯示的公共倉庫。\", // 組織頁\n            \"Filter repositories and gists\": \"篩選倉庫和程式碼片段\",\n            \"Repositories\": \"倉庫\",\n            \"Gists\": \"程式碼片段\",\n            \"Filter repositories\": \"篩選倉庫\", // 組織頁\n            \"Show:\": \"顯示：\",\n            \"Save pins\": \"保存置頂\",\n\n            \"Drag to reorder\": \"拖動重新排序\",\n\n            // 頂部提醒\n            \"You unlocked new Achievements with private contributions! Show them off by including private contributions in your Profile in\": \"您通過私人貢獻解鎖了新成就！通過在您的個人資料中包含私人貢獻來展示它們。\",\n            \"You unlocked new Achievements! Show them off by including achievements and private contributions in your Profile in\": \"您通過私人貢獻解鎖了新成就！通過在您的個人資料中包含私人貢獻來展示它們。\",\n            \"Your pins have been updated. Drag and drop to reorder them.\": \"您的置頂已更新。拖放來重新排列它們。\",\n            \"Your popular repositories will now be shown instead of your pins.\": \"現在將顯示您的熱門倉庫，而不是您的置頂。\",\n\n            \"Only you can see your full profile.\": \"只有您可以查看完整的個人資料。\",\n                \"You have marked your profile as private, which limits what activity other people can see.\": \"您已將個人資料設為私密，這會限制其他人查看您的活動。\",\n                \"Update profile settings\": \"更新個人資料設置\",\n            \"View what others see\": \"以他人視角查看\",\n            \"View full profile\": \"查看完整個人資料\",\n\n            \"Your pins have been updated.\": \"您的置頂已更新。\",\n            // 拖拽排序提醒\n            \"Order updated.\": \"置頂已更新。\",\n\n            \"Pinned\": \"已置頂\",\n            \"Top repositories\": \"置頂的倉庫\",\n            \"Popular repositories\": \"熱門倉庫\",\n\n            \"Learn how we count contributions\": \"瞭解我們如何計算貢獻\",\n            \"Contribution settings\": \"貢獻設置\",\n\n            // 複刻倉庫特有\n            \"Forked from\": \"複刻自\",\n            // 貢獻設置下拉菜單\n            \"Private contributions\": \"私人貢獻\",\n            \"Turning on private contributions will show anonymized private activity on your profile.\": \"開啟私人貢獻則將在您的個人資料上顯示匿名的私人活動。\",\n            \"Visitors will now see your public and anonymized private contributions.\": \"訪客現在將看到您的公開和匿名的私人貢獻。\",\n            \"Turning off private contributions will show only public activity on your profile.\": \"關閉私人貢獻則將僅在您的個人資料中顯示公開活動。\",\n            \"Visitors will now see only your public contributions.\": \"訪客現在將只能看到您的公開貢獻。\",\n            \"Activity overview\": \"活動概況\",\n            \"Turning off the activity overview will hide the section on your profile.\": \"關閉活動概況則將隱藏您的個人資料中的部分內容。\",\n            \"The 'Activity overview' section will no longer appear on your profile.\": \"“活動概況” 部分將不再出現在您的個人資料中。\",\n            \"Turning on the activity overview will show an overview of your activity across organizations and repositories.\": \"開啟活動概況將顯示跨組織和倉庫的活動概況。\",\n            \"Others will now see 'Activity overview' when they view your profile.\": \"其他人在查看您的資料時，現在會看到 “活動概況”。\",\n\n            \"Contribution activity\": \"貢獻活動\",\n                \"Year:\": \"年份：\", // 小屏模式\n\n            \"Search by name\": \"搜索組織名\",\n            \"Contributed to\": \"貢獻給了\",\n            \"Activity in\": \"活動在\",\n            \"No activity overview available.\": \"沒有可用的活動概況。\",\n\n            \"open\": \"打開\",\n            \"closed\": \"已關閉\",\n            \"merged\": \"已合併\",\n            \"pull request\": \"拉取請求\",\n\n            \"commits\": \"次提交\",\n            \"comments\": \"次評論\",\n            \"Commits\": \"提交\",\n            \"Code review\": \"程式碼審查\",\n            \"Built by\": \"構建者\",\n\n            \"Created their first repository\": \"創建了他們的第一個倉庫\",\n            \"Created an issue in\": \"創建一個議題在\",\n            \"a private repository\": \"私有倉庫\",\n            \"Created a pull request in\": \"創建一個拉取請求在\",\n                \"lines changed\": \"行更改\",\n            \"First repository\": \"第一個倉庫\",\n            \"First pull request\": \"第一次拉取請求\",\n            \"First issue\": \"第一次議題\",\n            \"Opened their first issue on GitHub in\": \"打開了他們第一個議題\",\n            \"Opened their first pull request on GitHub in\": \"打開了他們第一個拉取請求\",\n            \"Opened their first pull request on GitHub in a private repository\": \"在私有倉庫中打開了他們第一個拉取請求\",\n            \"Joined GitHub\": \"剛加入 GitHub\",\n            \"Joined the\": \"加入\",\n            \"organization\": \"組織\",\n            \"Show more activity\": \"加載更多動態\",\n\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的東西？請看一下\",\n            \"GitHub profile guide\": \"GitHub 個人資料指南\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) discussions? answered/, \"$1 個討論已回答\"], // 高光時刻\n        [/Block or report ([^ ]+)/, \"拉黑或舉報 $1\"],\n        [/(\\d+) GitHub Archive Program/, \"$1 GitHub 存檔計劃\"], // 成就浮動款\n        [/(\\d+) remaining/, \"$1 剩餘\"], // 置頂專案 剩餘\n        [/([^ ]+) doesn('|’)t have any public repositories yet./, \"$1 尚無任何公共倉庫。\"],\n        [/([\\d,]+) contributions? in the last year in ([^ ]+)/, \"在過去的一年中向 $2 貢獻 $1 次\"],\n        [/([\\d,]+) contributions? in the last year/, \"在過去的一年中貢獻 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+) in ([^ ]+)/, \"在 $2 年中向 $3, 貢獻 $1 次\"],\n        [/([\\d,]+) contributions? in (\\d+)/, \"在 $2 年中貢獻 $1 次\"],\n        [/(\\d+) contributions? in private repositor(y|ies)/, \"私有倉庫 $1 個貢獻\"],\n        [/Only people who can see (.+) can see this contribution/, \"只有能看到 $1 的人才能看到此貢獻\"],\n        [/(\\d+|No) contribution(?:s)? on (.+)(?:st|nd|rd|th)./, (match, number, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            //return optKey[opt] + `${translatedDate}`;\n            return number === 'No' ? `${translatedDate}，無貢獻` : `${translatedDate}，` + number + ` 次貢獻`;\n        }],// 貢獻日曆\n        //[/A graph representing ([^ ]+)'s contributions from ( .+) to ( .+)./, \"$1 從 $2 到 $3 的貢獻圖。\"],\n        [/and (\\d+) other repositor(y|ies)/, \"和 $1 個其他倉庫\"], // 活動概覽\n        // 貢獻信息\n        [/Created ([\\d,]+) commits? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中創建了 $1 次提交\"],\n        [/Created (\\d+) (other)? repositor(y|ies)/, \"創建了 $1 個倉庫\"],\n        [/Opened (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中打開了 $1 個拉取請求\"],\n        [/Opened (\\d+) other pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 個其他倉庫中打開了 $1 個拉取請求\"],\n        [/Opened (\\d+) issues? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中打開了 $1 個議題\"],\n        [/Opened (\\d+) other issues? in (\\d+) repositor(y|ies)/, \"在 $2 個其他倉庫中打開了 $1 個其他議題\"],\n        [/Reviewed (\\d+) pull requests? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中審查了 $1 個拉取請求\"],\n        [/Answered (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中答覆了 $1 個討論\"],\n        [/Started (\\d+) discussions? in (\\d+) repositor(y|ies)/, \"在 $2 個倉庫中發起了 $1 個討論\"],\n        [/(\\d+) commits?/, \"$1 次提交\"],\n        [/(\\d+) pull requests?/, \"$1 次拉取請求\"],\n        [/that received (\\d+) comments?/  , \"收到 $1 條評論\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 個任務\"],\n        [/(\\d+) comments?/, \"$1 條評論\"],\n        [/(\\d+) tasks? done/, \"$1 個任務完成\"],\n        [/([^ ]+) doesn't have any projects yet./, \"$1 目前還沒有任何專案。\"],\n        [/([^ ]+) has no activity yet for this period./, \"$1 目前還沒有活動。\"],\n        [/([^ ]+) had no activity during this period./, \"$1 在此期間沒有活動。\"],\n        [/Contribution activity in ([^ ]+)/, \"在 $1 中的貢獻活動\"],\n        [/([^ ]+) had no activity in ([^ ]+) during this period./, \"在此期間，$1 在 $2 中沒有活動。\"],\n        [/([^ ]+) has no activity in ([^ ]+) yet for this period./, \"在此期間，$1 在 $2 中沒有活動。\"],\n        [/@([^ ]+)'s activity is private/, \"$1 的活動不可見\"],\n        [/Created (\\d+\\+?) repositor(y|ies)/, \"創建了 $1 個倉庫\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n        [/(\\d+) tasks?/, \"$1 任務\"], // 帶任務議題\n        [/and (\\d+) more/, \"等 $1 人\"],\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小時';\n        }],\n        [/(?:on )?(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        //[/A graph representing ([^ ]+)'s contributions from (.+) to (.+). The contributions are (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review), (\\d+\\%) (commits|pull requests|issues|code review)./, function(all, user, date1, date2, cd1, c1, cd2, c2, cd3, c3, cd4, c4){\n        //    var c1Key, c2Key ,c3Key, c4Key = {\n        //        'commits': '提交',\n        //        'pull requests': '拉取請求',\n        //        'code review': '程式碼審查',\n        //        'issues': '議題',\n        //    };\n        //    return user + '從' + date1 + '到' + date2 + '的貢獻圖。其中' + cd1 + c1Key[c1] + '，' + cd2 + c2Key[c2] + '，' +cd3 + c3Key[c3] + '，' + cd4 + c4Key[c4]+ '。';\n        //}],\n        // 成就\n        [/answered discussions./, \"回答了討論。\"], // Galaxy Brain\n        [/opened pull requests that have been merged./, \"打開的拉取請求已被合併。\"], // Pull Shark\n        [/created a repository that has many stars./, \"創建了一個擁有很多星標的倉庫。\"], // Starstruck\n        [/coauthored commits on merged pull requests./, \"與他人共同提交了合併的拉取請求。\"], // Pair Extraordinaire\n        [/(\\@[^ ]+) contributed code to several repositories in the/, \"$1 為多個倉庫貢獻了程式碼，在\"], // 北極程式碼庫貢獻者\n    ],\n};\nI18N[\"zh-TW\"][\"page-profile/overview\"] = I18N[\"zh-TW\"][\"page-profile\"];\n\nI18N[\"zh-TW\"][\"page-profile/repositories\"] = { // 個人首頁 - 倉庫標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 倉庫標籤卡 ?tab=repositories >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\n            // 頂部提醒\n                // [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的倉庫 “$1” 已成功刪除。\"],\n\n            // \"Search repositories…\": \"搜索這些查庫…\",\n            // \"Search starred repositories…\": \"搜索星標倉庫…\",\n\n            // 搜索, 篩選 & 排序工具欄\n            \"Find a repository…\": \"搜索倉庫…\",\n            // \"Type\": \"類型\", // 與全局衝突 使用 Selector 規則翻譯\n                // 下拉菜單\n                \"Select type\": \"選擇類型\",\n                \"All\": \"全部\",\n                \"Public\": \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源碼\",\n                \"Forks\": \"複刻\",\n                \"Archived\": \"存檔\",\n                \"Can be sponsored\": \"可贊助\",\n                \"Mirrors\": \"鏡像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"語言\",\n                // 下拉菜單\n                \"Select language\": \"選擇語言\",\n                \"All languages\": \"所有語言\",\n            \"Sort\": \"排序\",\n                // 下拉菜單\n                \"Select order\": \"選擇排序\",\n                \"Last updated\": \"最近更新\",\n                // \"Name\": \"倉庫名\",\n                // \"Recently starred\": \"最近星標\",\n                // \"Recently active\": \"最近活躍\",\n                // \"Most stars\": \"最多星標\",\n                // \"Unstar\": \"取消星標\",\n            \"New\": \"新建\",\n\n            // 篩選結果\n            \"result for\": \"個結果在\",\n            \"results for\": \"個結果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源碼\",\n                \"forked\": \"複刻\",\n                \"archived\": \"存檔\",\n                \"sponsorable\": \"可贊助\",\n                \"mirror\": \"鏡像\",\n                \"template\": \"模板\",\n            \"repositories matching\": \"倉庫中匹配了\",\n            \"result for repositories matching\": \"個結果在倉庫中匹配了\",\n            \"results for repositories matching\": \"個結果在倉庫中匹配了\",\n            \"repositories sorted by\": \"倉庫，排序按\",\n            \"written in\": \"，使用語言\",\n            \"results for repositories written in\": \"個結果在倉庫中使用語言\",\n            \"star matching\": \"個星標匹配\", //?tab=stars\n            \"stars matching\": \"個星標匹配\", //?tab=stars\n            \"star written in\": \"個星標使用語言\", //?tab=stars\n            \"stars written in\": \"個星標使用語言\", //?tab=stars\n            \"sorted by\": \"，排序按\",\n                \"last updated\": \"最近更新\",\n                \"name\": \"倉庫名\",\n                \"stars\": \"星標\",\n\n            \"Clear filter\": \"清除篩選\",\n\n            // [/([^ ]+) doesn’t have any repositories that match./, \"$1 沒有任何匹配的倉庫\"],\n            \"This organization doesn’t have any repositories that match.\": \"該組織沒有任何匹配的倉庫。\", // 組織倉庫\n\n            \"This organization has no public repositories.\": \"該組織沒有公共倉庫。\", //組織倉庫\n\n            \"No repositories matched your search.\": \"沒有與您的搜索匹配的倉庫。\", // 無匹配倉庫\n\n            // 專案 狀態詞\n            \"Updated\": \"更新於\",\n            \"Forked from\": \"複刻自\",\n\n            // 曲線圖提示\n            \"Past year of activity\": \"過去一年的活動\",\n\n        // 新版 組織 - 倉庫概述 https://github.com/orgs/<orgs-name>/repositories\n            \"Filter\": \"篩選\",\n                \"Advanced filters\": \"高級篩選器\",\n                    \"Build complex filter queries\": \"構建複雜的篩選查詢\",\n                        \"To start building your query add your first filter using the button below.\": \"要開始創建查詢，請使用下面的按鈕添加第一個篩選器。\",\n                    \"Add a filter\": \"新增篩選器\",\n                    \"Apply\": \"應用\",\n                    \"Qualifier\": \"限定詞\",\n                        \"Created\": \"已創建\",\n                        \"Total forks\": \"複刻總數\",\n                        \"Total good-first issues\": \"好的首發議題總數\",\n                        \"Has\": \"包含文件\",\n                        \"Total help-wanted issues\": \"求助議題總數\",\n                        \"License\": \"許可證\",\n                        \"Mirror\": \"鏡像\",\n                        \"Size (Kb)\": \"大小 (Kb)\",\n                        \"Sponsorable\": \"可接受贊助\",\n                        \"Text\": \"文本\",\n                        \"Total topics\": \"主題總數\",\n                        \"Total stars\": \"星標總數\",\n                        \"Template\": \"模板\",\n                        \"Topic\": \"話題\",\n                        \"Visibility\": \"可見性\",\n                    \"Operator\": \"操作符\",\n                        \"is\": \"是\",\n                        \"is not\": \"不是\",\n                        \"before\": \"之前\",\n                        \"after\": \"之後\",\n                        \"between\": \"之間\",\n                            \"From\": \"起\",\n                            \"To\": \"至\",\n                        \"is one of\": \"包括\",\n                        \"is not one of\": \"不包含\",\n                        \"greater than\": \"大於\",\n                        \"less than\": \"小於\",\n                        \"greater than or equal to\": \"大於或等於\",\n                        \"less than or equal to\": \"小於或等於\",\n                        \"equal to\": \"等於\",\n                    \"Value\": \"值\",\n                        \"Enter a number\": \"輸入數字\",\n                        \"Enter search text\": \"輸入搜索文本\",\n                        \"Make a selection\": \"進行選擇\",\n                            \"Select items\": \"選擇專案\",\n                            \"Select an item\": \"選擇專案\",\n                                \"Filter values\": \"篩選值\",\n                                    // 複刻\n                                        \"Only forks\": \"僅複刻\",\n                                        \"Exclude forks\": \"排除複刻\",\n                                    // 排序\n                                        \"Recently pushed\": \"最近推送\",\n                                        \"Topics\": \"話題\",\n                                        \"Size\": \"尺寸\",\n                                        \"Recently pushed (descending)\": \"最近推送（降序）\",\n                                        \"Name (descending)\": \"名稱（降序）\",\n                                        \"Language (descending)\": \"語言（降序）\",\n                                        \"License (descending)\": \"許可證（降序）\",\n                                        \"Topics (ascending)\": \"主題（升序）\",\n                                        \"Size (ascending)\": \"大小（降序）\",\n                                        \"Total stars (ascending)\": \"星標總數（降序）\",\n                                        \"Total forks (ascending)\": \"複刻總數（降序）\",\n                                        \"Help-wanted issues (ascending)\": \"求助議題總數（升序）\",\n                                        \"Help-wanted issues (descending)\": \"求助議題總數（降序）\",\n                                    // 可見性\n                                        \"Internal\": \"內部\",\n                \"Discard changes?\": \"放棄更改？\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您確定要放棄它們嗎？\",\n                    \"Keep editing\": \"繼續編輯\",\n                    \"Close and discard\": \"關閉並放棄\",\n            \"Search repositories\": \"搜索倉庫\",\n                \"No repositories matched your search\": \"沒有與您的查詢相匹配的倉庫\",\n                    \"Try a different search query\": \"嘗試不同的搜索查詢\",\n\n            \"Last pushed\": \"最近提送\",\n                \"Ascending\": \"升序\",\n                \"Descending\": \"降序\",\n            \"repository\": \"倉庫\",\n            \"No language\": \"無語言\",\n\n            \"Compact display density\": \"緊湊顯示密度\",\n            \"Comfortable display density\": \"舒適顯示密度\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+(k|M|B)?) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n        [/([^ ]+) doesn’t have any repositories that match./, \"$1 沒有任何匹配的倉庫\"], // 倉庫標籤卡\n        [/([^ ]+) doesn’t have any public repositories yet./, \"$1 沒有任何公共倉庫。\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully deleted./, \"您的倉庫 “$1” 已成功刪除。\"],\n        [/(\\d+) issues? needs? help/, \"$1 個議題需要幫助\"],\n        [/and (\\d+) more/, \"等 $1 人\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素篩選器規則\n        [\"#type-options > summary > span:nth-child(1)\", \"類型\"], // 個人主頁 --> 倉庫標籤頁-->類型篩選器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Repositories\": \"我的倉庫\",\n        },\n        \"regexp\": [\n            [/(R|r)epositories/, \"倉庫\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"page-profile/projects\"] = { // 個人首頁- 專案標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 專案標籤卡 ?tab=projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"There aren't any projects yet\": \"尚無任何專案\",\n            \"Provide quick access to relevant projects.\": \"提供快速訪問相關專案的途徑。\",\n            \"Add projects to view them here.\": \"將專案添加到此處查看。\",\n\n            \"Welcome to projects\": \"歡迎訪問專案頁面\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"構建像電子表格一樣的專案表，給您一個實時的畫布來對議題和拉取請求進行篩選、排序和分組。通過自定義字段和保存的視圖，使它們符合您的需要。\",\n\n            \"Learn more about projects\": \"瞭解更多關於專案的信息\", // ?tab=projects\n\n            \"Create your first GitHub project\": \"創建您的第一個 GitHub 專案\",\n            \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"專案是一個可定製的、靈活的工具，用於規劃和跟蹤您的工作。\",\n\n            \"Sort\": \"排序\",\n                // 排序下拉菜單\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n            // 清除篩選\n            \"Clear current search query and sorts\": \"清除當前的搜索查詢和分類\",\n\n            \"No open projects\": \"無已打開的專案\",\n\n            \"Plan and track work across repositories with custom fields and multiple views\": \"通過自定義字段和多個視圖來計劃和跟蹤整個倉庫的工作\",\n            \"Kanban-style project board\": \"看板式專案面板\",\n\n            \"You don't have any projects yet.\": \"您還沒有任何專案。\",\n            \"There are no projects matching your search.\": \"沒有符合您搜索條件的專案。\",\n            \"Learn More\": \"瞭解更多\",\n\n            \"No description\": \"無描述\",\n\n            // 頂部提醒\n            \"Project closed.\": \"專案已關閉。\",\n            \"Project reopened.\": \"專案已重新打開。\",\n\n            // 組織\n            \"Created by me\": \"由我創建\",\n            \"Create your first GitHub project template\": \"創建您的第一個 GitHub 專案模板\",\n            \"Templates can be used to quickly get started with a new project.\": \"模板可以用於快速新建專案。\",\n            \"New template\": \"新建模版\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            \"New view\": \"新建視圖\",\n            \"Layout\": \"佈局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"時間線\",\n            \"Duplicate view\": \"複製視圖\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分組\",\n            \"No grouping\": \"不進行分組\",\n            \"Markers\": \"標記\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不進行排序\",\n            \"Zoom level\": \"縮放級別\",\n            \"Field sum\": \"字段總和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不進行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成圖表\",\n            \"Rename view\": \"重命名視圖\",\n            \"Delete view\": \"刪除視圖\",\n            \"Export view data\": \"導出視圖數據\",\n            \"Assignees\": \"負責人\",\n            \"Project templates\": \"專案模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用戶設置\",\n            \"Truncate titles\": \"截斷標題\",\n            \"Show date fields\": \"顯示日期字段\",\n            \"Add status update\": \"添加狀態更新\",\n            \"Project details\": \"專案詳情\",\n            \"View more options\": \"查看更多選項\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加專案\",\n            \"Start typing to create a draft, or type # to select a repository\": \"開始輸入以創建草案，或輸入 # 選擇一個倉庫\",\n            \"Scroll to previous date range\": \"滾動到上一個日期範圍\",\n            \"Scroll to next date range\": \"滾動到下一個日期範圍\",\n            \"Filter by keyword or by field\": \"按關鍵字或字段篩選\",\n            \"Discard\": \"放棄\",\n            \"Save changes to new view\": \"保存更改到新視圖\",\n            \"Visible fields\": \"可見字段\",\n            \"Hidden fields\": \"隱藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"欄目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存檔專案\",\n            \"Make a copy\": \"複製\",\n            \"GitHub Projects\": \"GitHub 專案\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"專案設置\",\n            \"Project name\": \"專案名稱\",\n            \"Short description\": \"簡短描述\",\n            \"More options\": \"更多選項\",\n            \"Make a copy of this project.\": \"複製此專案\",\n            \"Danger zone\": \"危險區\",\n            \"This project is currently private.\": \"此專案當前為私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"關閉專案將禁用其工作流程，並將其從打開專案列表中刪除.\",\n            \"Close this project\": \"關閉此專案\",\n            \"Manage access\": \"管理訪問權限\",\n            \"Who has access\": \"誰有訪問權限\",\n            \"Private project\": \"私有專案\",\n            \"Only those with access to this project can view it.\": \"只有有權訪問此專案的人才能查看它.\",\n            \"Invite collaborators\": \"邀請協作者\",\n            \"Manage access\": \"管理訪問權限\",\n            \"Custom fields\": \"自定義字段\",\n            \"Field name\": \"字段名稱\",\n            \"Field type\": \"字段類型\",\n            \"Text\": \"文本\",\n            \"Number\": \"數字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"單選\",\n            \"Starts on\": \"開始於\",\n            \"Duration\": \"持續時間\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存並創建\",\n            \"You don't have any collaborators yet.\": \"您還沒有任何協作者.\",\n            \"Add a collaborator to see them here.\": \"添加協作者以在此處查看他們.\",\n            \"Make template\": \"製作模板\",\n            \"Copy as template\": \"複製為模板\",\n            \"Visibility\": \"可見性\",\n            \"Close project\": \"關閉專案\",\n            \"Delete project\": \"刪除專案\",\n            \"Delete this project\": \"刪除此專案\",\n            \"Status chart\": \"狀態圖表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此圖表顯示了專案中所有專案的當前狀態.\",\n            \"Default charts\": \"默認圖表\",\n            \"Custom charts\": \"自定義圖表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置圖表\",\n            \"Group by (optional)\": \"分組 (可選)\",\n            \"X-axis\": \"X 軸\",\n            \"Y-axis\": \"Y 軸\",\n            \"Save to new chart\": \"保存到新圖表\",\n            \"Add a project status update\": \"添加專案狀態更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"狀態更新是跟蹤專案健康和進度的簡要報告. 從添加更新開始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"讓每個人都知道這個專案是關於什麼的，如何使用它，並鏈接到重要資源.\",\n            \"A short description about this project.\": \"關於此專案的簡短描述.\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/View (\\d+)/, \"視圖 $1\"],\n        [/([\\d,]+) Open/, \"$1 打開\"], // 專案標籤卡\n        [/([\\d,]+) Closed/, \"$1 已關閉\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Projects\": \"我的專案\",\n        },\n        \"regexp\": [\n            [/Projects/, \"專案\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"page-profile/sponsoring\"] = { // 個人首頁- 贊助標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n            \"has sponsored\": \"曾贊助\",\n            \"organization or maintainer in the past\": \"個組織或維護者\",\n            \"organization or maintainer\": \"個組織或維護者\",\n            \"Bulk Sponsor\": \"批量贊助\",\n            \"Sponsor multiple maintainers in one easy transaction.\": \"一次交易即可贊助多個維護者。\",\n            \"Get started\": \"前去贊助\",\n            \"Past sponsorship\": \"曾經贊助\",\n            \"Sponsored\": \"贊助於\",\n            \"organizations and maintainers and has sponsored\": \"個組織和維護者，過去曾贊助過\",\n                \"in the past\": \"個\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/is sponsoring/, \"正在贊助\"],\n        [/Sponsoring since (.+)/, (match ,p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `贊助自 ${translatedDate}`;\n        }],\n        [/Sponsored/, \"贊助於\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"贊助\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"page-profile/packages\"] = { // 個人首頁 - 軟體包標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 軟體包標籤卡 ?tab=packages >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Get started with GitHub Packages\": \"開始使用 GitHub 軟體包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地發佈包，將您的包與您的程式碼一起存儲，並與您的團隊私下共享您的包。\",\n            \"Choose a registry\": \"選擇註冊表\",\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用於構建基於容器的應用的軟體平臺——小型輕量級執行環境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用於 Java 編程語言和 Java 運行環境的一個默認包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一個自由和開源的開源包管理器，用於包括 .NET 在內的 Microsoft 開發平臺。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分發用於 Ruby 編程語言的 Ruby 程式和庫的標準格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一個 JavaScript 的包管理器，包含在 Node.js 中。它使開發人員能夠輕鬆地分享和重用程式碼。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"為您的團隊提供一個管理 Docker 鏡像的單一場所，並決定誰可以看到和訪問您的鏡像。\",\n\n            \"Type:\": \"類型:\",\n                // 下拉菜單\n                \"Select type\": \"選擇類型\",\n                \"All\": \"全部\",\n            \"Search packages…\": \"搜索軟體包…\",\n            \"Visibility:\": \"可見性:\",\n                \"Select visibility\": \"選擇可見性\",\n                \"Internal\": \"內部\",\n            \"Sort by:\": \"排序方式:\",\n                \"Select sort view\": \"選擇排序視圖\",\n                \"Most downloads\": \"最多下載\",\n                \"Least downloads\": \"最少下載\",\n\n            \"Clear current search query, filters, and sorts\": \"清除當前的搜索查詢、篩選器和排序方式\",\n            // 篩選結果\n            \"No results matched your search.\": \"沒有與您的搜索匹配的結果。\",\n            \"Try\": \"嘗試\",\n            \"browsing all packages\": \"瀏覽所有軟體包\",\n            \"to find what you're looking for.\": \"，以找尋您想要的內容。\",\n\n            \"Published\": \"發佈於\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) packages?/, \"$1 軟體包\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Packages\": \"我的軟體包\",\n        },\n        \"regexp\": [\n            [/Packages/, \"軟體包\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"page-profile/sponsors\"] = { // 個人首頁 - 贊助標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 贊助標籤卡 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // [/is sponsoring/, \"正在贊助\"],\n            \"organization or developer:\": \"個組織或開發者：\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/is sponsoring/, \"正在贊助\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n    ],\n};\n\nI18N[\"zh-TW\"][\"page-profile/stars\"] = { // 個人首頁 - 星標標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"page-profile-public\"][\"static\"],\n\n        // 星標標籤卡 ?tab=stars >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Show all lists...\": \"顯示所有列表…\",\n\n            \"Sort by\": \"排序方式\",\n            // 排序補充\n                \"Name ascending (A-Z)\": \"名稱升序 (A-Z)\",\n                \"Name descending (Z-A)\": \"名稱降序 (Z-A)\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Last updated\": \"最後更新\",\n\n            \"Create your first list\": \"創建您的第一個清單\",\n            \"Lists make it easier to organize and curate repositories that you have starred.\": \"列表可使您更容易組織和策劃您的星標倉庫。\",\n            \"Create your first list.\": \"創建您的第一個清單。\",\n\n            // 搜索, 篩選 & 排序工具欄\n            \"Search stars\": \"搜索星標\",\n            \"Type: All\"    : \"類型：全部\",\n            \"Type: Public\" : \"類型：公共\",\n            \"Type: Private\": \"類型：私有\",\n            \"Type: Sources\": \"類型：源碼\",\n            \"Type: Forks\"  : \"類型：複刻\",\n            \"Type: Mirrors\": \"類型：鏡像\",\n            \"Type: Templates\": \"類型：模板\",\n                \"All\"    : \"全部\",\n                \"Public\" : \"公共\",\n                \"Private\": \"私有\",\n                \"Sources\": \"源碼\",\n                \"Forks\"  : \"複刻\",\n                \"Can be sponsored\": \"可贊助\",\n                \"Mirrors\": \"鏡像\",\n                \"Templates\": \"模板\",\n            \"Language\": \"語言\",\n                // 下拉菜單\n                \"Select language\": \"選擇語言\",\n                \"All languages\": \"所有語言\",\n            \"Sort\": \"排序\",\n                // 下拉菜單\n            \"Sort by: Recently starred\": \"排序：最近星標\",\n            \"Sort by: Recently active\": \"排序：最近活躍\",\n            \"Sort by: Most stars\": \"排序：最多星標\",\n                \"Recently starred\": \"最近星標\",\n                \"Recently active\": \"最近活躍\",\n                \"Most stars\": \"最多星標\",\n                \"Languages\": \"語言\",\n\n            // 篩選結果\n            \"result for\": \"個結果在\",\n            \"results for\": \"個結果在\",\n                \"public\": \"公共\",\n                \"private\": \"私有\",\n                \"source\": \"源碼\",\n                \"forked\": \"複刻\",\n                \"sponsorable\": \"可贊助\",\n                \"archived\": \"存檔\",\n                \"mirror\": \"鏡像\",\n                \"template\": \"模板\",\n            \"star matching\": \"個星標匹配\", //?tab=stars\n            \"stars matching\": \"個星標匹配\", //?tab=stars\n            \"star written in\": \"個星標使用語言\", //?tab=stars\n            \"stars written in\": \"個星標使用語言\", //?tab=stars\n            \"starred repositories\": \"星標倉庫\",\n            \"starred repositories written in\": \"星標倉庫使用語言\",\n\n            \"Clear filter\": \"清除篩選\",\n\n            // 專案 狀態詞\n            \"Updated\": \"更新於\",\n            \"Forked from\": \"複刻自\",\n\n            \"That’s it. You’ve reached the end of your stars.\": \"而已。您已經到了星海的盡頭。\",\n\n            \"Topics\": \"主題\",\n\n            \"Add to list\": \"添加到清單\",\n            \"Lists\": \"清單\",\n            \"You don't have any lists yet.\": \"您尚無任何清單。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n\n            // 他人庫 星標頁 補充\n            \"Search starred repositories\": \"搜索星標倉庫\",\n            \"Starred repositories\": \"星標倉庫\",\n            \"Starred topics\": \"星標主題\",\n            \"See all starred topics\": \"查看所有星標主題\",\n\n            // [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已經到了$1 星海的盡頭。\"], // 他人星標頁 搜索結果\n\n        // https://github.com/stars/<user-name>/lists/<清單>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Edit list\": \"編輯清單\",\n                \"Delete list\": \"刪除清單\",\n                    \"Are you sure you want to delete this list?\": \"您確定要刪除此清單嗎？\",\n                        // 頂部提醒\n                        // [/Deleted \\\"(.*)\\\"./, \"已刪除 “$1”。], // 刪除星標清單\n                \"Save list\": \"保存清單\",\n            \"Add repositories to this list\": \"添加倉庫到此清單\",\n            \"Star repositories on GitHub to keep track of your favorite projects and inspirational code.\": \"GitHub 上的星標倉庫可以跟蹤您最喜歡的專案和鼓舞人心的程式碼。\",\n            \"Explore repositories.\": \"探索倉庫。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Deleted \\\"(.*)\\\"./, \"已刪除 “$1”。\"], // 刪除星標清單 頂部提醒\n        [/doesn’t have any starred repositories yet./, \"尚無任何星標倉庫。\"],\n        [/That’s it. You’ve reached the end of ([^ ]+)’s stars./, \"而已。您已經到了$1 星海的盡頭。\"], // 他人星標頁 搜索結果\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members?/, \"$1 成員\"], // 組織 浮動信息卡\n        [/Language: /, \"語言：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your Stars\": \"我的星標\",\n        },\n        \"regexp\": [\n            [/Your list/, \"我的清單\"],\n            [/Starred/, \"星標\"],\n            [/'s list/, \" 的清單\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"confirm-access\"] = { // “授權訪問” 對話框\n    \"static\": { // 靜態翻譯\n        // 授權訪問 sudo 模式身份驗證\n            \"Confirm access\": \"授權訪問\",\n            \"Signed in as\": \"登錄身份為\",\n            \"Authentication code\": \"驗證碼\",\n                \"More information about sudo mode authentication\": \"更多關於 sudo 模式身份驗證的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打開您的雙因素身份驗證器 (TOTP) 應用或瀏覽器擴展以查看您的身份驗證碼。\",\n            \"Verify\": \"驗證\",\n            \"Verify\": \"驗證\",\n            \"Verifying…\": \"驗證中…\",\n            \"Your authentication code has been sent.\": \"您的驗證碼已發送。\",\n\n            \"Having problems?\": \"有問題嗎？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your passkey\": \"使用您的通行密鑰\",\n            \"Use your authenticator app\": \"使用您的身份驗證器應用\",\n            \"Send a code via email\": \"通過電子郵件發送驗證碼\",\n            \"Use your password\": \"使用您的密碼\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"為您的 GitHub Mobile 應用創建驗證請求。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我們向您的 GitHub Mobile 應用發送了一個驗證請求。輸入下面顯示的數字以進入 sudo 模式。\",\n            \"We could not verify your identity\": \"我們無法核實您的身份\",\n            \"Retry\": \"請重試\",\n\n            \"Password\": \"密碼\",\n            \"Forgot password?\": \"忘記密碼？\",\n            \"Confirm\": \"確認\",\n\n            \"Passkey\": \"通行密鑰\",\n            \"When you are ready, authenticate using the button below.\": \"準備好後，請使用下面的按鈕進行身份驗證。\",\n            \"This browser or device does not fully support passkeys.\": \"此瀏覽器或設備不完全支持通行密鑰。\",\n            \"Use passkey\": \"使用通行密鑰\",\n\n            \"Authentication failed.\": \"認證失敗。\",\n            \"Retry passkey\": \"重試通行密鑰\",\n\n            \"Unable to verify with your passkey?\": \"無法驗證您的通行密鑰？\",\n    },\n};\n\nI18N[\"zh-TW\"][\"payment-module\"] = { // 通用賬單及支付信息模塊\n    \"static\": { // 靜態翻譯\n        \"Account\": \"賬戶\",\n            \"Personal account\": \"個人賬戶\",\n\n        \"Billing information\": \"賬單信息\",\n            \"You have not added any billing information.\": \"您尚未添加賬單信息。\",\n               \"Add your information to show on every invoice\": \"在每張發票上添加您的信息\",\n\n            // 添加/編輯賬單信息\n                \"First name\": \"名字\",\n                    \"First name can't be blank.\": \"名字不能為空。\",\n                    \"First name can't be blank\": \"名字不能為空\",\n                \"Last name\": \"姓氏\",\n                    \"Last name can't be blank.\": \"姓氏不能為空。\",\n                    \"Last name can't be blank\": \"姓氏不能為空\",\n                \"Address\": \"地址\",\n                    \"(Street, P.O. box)\": \"（街道，郵政信箱）\",\n                    \"Address can't be blank.\": \"地址不能為空。\",\n                    \"Address can't be blank\": \"地址不能為空\",\n                \"Address line 2\": \"地址第 2 行\",\n                    \"(Apartment, suite, unit)\": \"（公寓、套房、單元）\",\n                \"City\": \"城市\",\n                    \"City can't be blank.\": \"城市不能為空。\",\n                    \"City can't be blank\": \"城市不能為空\",\n                \"Country/Region\": \"國家/地區\",\n                \"State/Province\": \"州/省\",\n                    \"Required for certain countries\": \"某些國家/地區需要\",\n                \"Postal/Zip code\": \"郵政編碼\",\n                    \"(9-digit zip code for US)\": \"（美國為 9 位郵政編碼）\",\n                \"VAT/GST ID\": \"增值稅/消費稅編號\",\n\n                \"Save billing information\": \"保存賬單信息\",\n                \"Save and continue\": \"保存並繼續\",\n\n            // 頂部提醒\n                \"You have not added any billing information.\": \"您尚未添加賬單信息。\",\n                \"Successfully updated billing information.\": \"保存賬單信息成功。\",\n                \"An error occurred while saving billing information.\": \"保存賬單信息發生錯誤。\",\n\n            // 組織設置\n                \"This organization is linked with your billing information:\": \"該組織與您的賬單信息相關聯：\",\n\n                \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"組織所有者或賬單管理者必須將其個人賬單信息與該組織賬戶關聯。您可以切換到企業賬戶，以使用企業的賬單信息通過\",\n                \"signing\": \"簽署\",\n                \"the\": \" \",\n                \"GitHub Customer Agreement\": \"GitHub 客戶協議\",\n\n                \"Allow my billing information to be linked with this organization\": \"允許我的賬單信息與該組織關聯\",\n\n                    \"Confirm your details shown below. To make changes,\": \"確認以下顯示的詳細信息。要做出更改，\",\n                    \"edit your billing information\": \"請編輯您的賬單信息\",\n\n                \"Update your billing information\": \"更新您的賬單信息\",\n                \"to be able to link it with this organization.\": \"以便與該組織關聯。\",\n                    // 頂部提醒\n                        \"You have successfully linked your billing information with this organization.\": \"您已成功將您的賬單信息與該組織關聯。\",\n\n                // 移除對話框\n                    \"Remove\": \"移除\",\n                    \"Remove your billing information?\": \"確定移除您的賬單信息？\",\n                        \"You are about to remove the billing information for this organization. Are you sure you want to do this?\": \"您即將移除此組織的賬單信息。確定要繼續此操作嗎？\",\n                    \"Remove billing information\": \"移除賬單信息\",\n                    // 頂部提醒\n                        \"Successfully removed billing information.\": \"已成功移除賬單信息。\",\n\n            // 其他\n                // 來自 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n                    \"Please confirm your billing details to continue. You only need to do this once.\": \"請確認您的賬單詳情以繼續。您只需確認一次。\",\n\n        \"payment method\": \"支付方式\",\n        \"Payment method\": \"支付方式\",\n        \"Payment Method\": \"支付方式\",\n            \"You have not added a payment method.\": \"您尚未添加支付方式。\",\n\n        \"Payment information\": \"支付信息\",\n            \"Pay with\": \"支付方式：\",\n                \"Loading payment information…\": \"正在加載支付信息…\",\n\n                \"Credit or debit card\": \"信用卡或借記卡\",\n                    \"Card Number *\": \"卡號\",\n                    \"Expiration Date (YYYY) *\": \"終止日期 (YYYY) *\",\n                        \"- Select One -\": \"- 選擇一個 -\",\n                    \"Save payment information\": \"保存付款信息\",\n                    \"You are currently paying with your PayPal account\": \"您目前正在使用您的 PayPal 賬戶支付\",\n                    \", but you can switch to using a credit or debit card at any time.\": \"，但是您隨時可以切換到使用信用卡或借記卡支付。\",\n\n                \"PayPal account\": \"PayPal 賬戶\",\n                \"Paypal account\": \"PayPal 賬戶\",\n                    \"Sign in to\": \"登錄到\",\n                    \"Connecting to PayPal…\": \"正在連接到 PayPal…\",\n                    \"Sorry, we’re having trouble with PayPal right now, please try again a bit later.\": \"抱歉，我們目前與 PayPal 的連接遇到問題，請稍後再試。\",\n                    \"PayPal update\": \"\",\n                    \"Charge to\": \"收費至\",\n                    \"Sign in to PayPal to use a different account.\": \"登錄 PayPal 以使用其他賬戶。\",\n                    \"You are currently paying with a credit card, but you can switch to using PayPal at any time.\": \"您目前使用信用卡付款，但您可以隨時切換為使用 PayPal。\",\n\n                // 頂部提醒\n                    \"An error occurred while saving payment information.\": \"保存支付信息時發生錯誤。\",\n                    \"Your PayPal account has been successfully added.\": \"您的 PayPal 賬戶已成功添加。\",\n                    \"Your credit card has been successfully updated.\": \"您的信用卡已成功更新。\",\n\n                \"504 Gateway Time-out\": \"504 網關超時\",\n                \"We may place a temporary hold on your payment method to verify its validity. This is not a charge, and it will be released automatically after verification.\": \"我們可能會暫時凍結您的支付方式以驗證其有效性。這不是收費，驗證後將會自動解除。\",\n    },\n};\n\nI18N[\"zh-TW\"][\"settings-menu\"] = { // 設置 - 公共部分\n    \"static\": { // 靜態翻譯\n        \"Settings\": \"設置\", // 新版全局導航\n\n        \"Your personal account\": \"我的個人賬戶\",\n        \"Switch settings context\": \"切換設置上下文\", // 存在組織時\n        \"Go to your personal profile\": \"去我的個人資料\",\n        // 左側菜單\n        \"Public profile\": \"基本資料\",\n        \"Account\": \"賬戶\",\n        \"Appearance\": \"外觀\",\n        \"Accessibility\": \"無障礙\",\n        \"Notifications\": \"通知\",\n\n        \"Access\": \"訪問\",\n            \"Billing and licensing\": \"賬單和許可\",\n                \"Usage\": \"使用情況\",\n                \"Premium request analytics\": \"高級請求分析\",\n                \"Budgets and alerts\": \"預算和警報\",\n                \"Licensing\": \"許可\",\n                \"Payment information\": \"支付信息\",\n                \"Payment history\": \"支付歷史\",\n                \"Additional billing details\": \"其他賬單\",\n                \"Education benefits\": \"教育福利\",\n            \"Emails\": \"電子郵箱\",\n            \"Password and authentication\": \"密碼和身份驗證\",\n            \"Sessions\": \"會話\",\n            \"SSH and GPG keys\": \"SSH 與 GPG 公鑰\",\n            \"Organizations\": \"組織\",\n            \"Enterprises\": \"企業版\",\n            \"Moderation\": \"節制\",\n                \"Blocked users\": \"黑名單\",\n                \"Interaction limits\": \"互動限制\",\n                \"Code review limits\": \"程式碼審查限制\",\n\n        \"Code, planning, and automation\": \"程式碼、規劃和自動化\",\n            // \"Repository\": \"倉庫\"\n            // 程式碼空間\n            \"Models\": \"模型\",\n            \"Packages\": \"軟體包\",\n            \"Copilot\": \"GitHub Copilot\",\n                \"Features\": \"功能\",\n                \"Coding agent\": \"編程智能體\",\n            \"Pages\": \"GitHub Pages\",\n            \"Saved replies\": \"快捷回覆\",\n\n        // \"Security\": \"安全\",\n            \"Code security\": \"程式碼安全性\",\n\n        \"Integrations\": \"集成\",\n            \"Applications\": \"應用\",\n            \"Scheduled reminders\": \"定時提醒\",\n\n        \"Archives\": \"存檔\",\n            \"Security log\": \"安全日誌\",\n            \"Sponsorship log\": \"贊助日誌\",\n\n        \"Developer settings\": \"開發者設置\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs-settings-menu\"] = { // 組織設置 公共部分\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n\n        // 公用部分\n            \"Organization\": \"組織\",\n            \"Switch settings context\": \"切換設置上下文\", // 存在組織時\n            \"Go to your organization profile\": \"去我的組織主頁\",\n        // 左側菜單\n            \"General\": \"常規\",\n            \"Policies\": \"策略\",\n            \"Access\": \"訪問\",\n                \"Billing and licensing\": \"賬單和許可\",\n                    \"Usage\": \"使用情況\",\n                    \"Budgets and alerts\": \"預算和警報\",\n                    \"Licensing\": \"許可\",\n                    \"Payment information\": \"支付信息\",\n                    \"Payment history\": \"支付歷史\",\n                    \"Additional billing details\": \"其他賬單\",\n                \"Organization roles\": \"組織角色\",\n                    \"Role management\": \"角色管理\",\n                    \"Role assignments\": \"角色分配\",\n                \"Repository roles\": \"倉庫角色\",\n                \"Member privileges\": \"成員權限\",\n                // \"Team discussions\": \"團隊討論\",\n                \"Import/Export\": \"導入/導出\",\n                \"Moderation\": \"節制\",\n                    \"Blocked users\": \"黑名單\",\n                    \"Interaction limits\": \"互動限制\",\n                    \"Code review limits\": \"程式碼審查限制\",\n                    \"Moderators\": \"版主\",\n\n            \"Code, planning, and automation\": \"程式碼、規劃和自動化\",\n                \"Repository\": \"倉庫\",\n                    \"Topics\": \"主題\",\n                    \"Rulesets\": \"規則集\",\n                    \"Rule insights\": \"規則洞察\",\n                    \"Custom properties\": \"自定義屬性\",\n                \"Codespaces\": \"程式碼空間\",\n                \"Planning\": \"計劃\",\n                    \"Issue types\": \"議題類型\",\n                \"Copilot\": \"GitHub Copilot\",\n                    \"Access\": \"訪問\",\n                    \"Coding agent\": \"編程智能體\",\n                \"Actions\": \"操作\",\n                    \"Runners\": \"運行器\",\n                    \"Runner groups\": \"運行器組\",\n                    \"Custom images\": \"自定義鏡像\",\n                    \"Caches\": \"緩存\",\n                \"Models\": \"模型\",\n                    \"Development\": \"開發\",\n                    \"Custom models\": \"自定義模型\",\n                \"Webhooks\": \"Web 鉤子\",\n                \"Packages\": \"軟體包\",\n                \"Projects\": \"專案\",\n\n            \"Security\": \"安全\",\n                \"Authentication security\": \"身份驗證安全\",\n                \"Advanced Security\": \"高級安全\",\n                    \"Configurations\": \"配置\",\n                    \"Global settings\": \"全局設置\",\n                \"Deploy keys\": \"部署密鑰\",\n                \"Compliance\": \"承諾\",\n                \"Verified and approved domains\": \"經驗證和批准的域名\",\n                \"Secrets and variables\": \"機密和變量\",\n                    \"Private registries\": \"私有註冊表\",\n\n            \"Third-party Access\": \"第三方訪問\",\n                \"GitHub Apps\": \"GitHub 應用\",\n                \"OAuth app policy\": \"OAuth 應用策略\",\n                \"Personal access tokens\": \"個人訪問令牌\",\n                    \"Active tokens\": \"活躍的令牌\",\n                    \"Pending requests\": \"待處理的請求\",\n\n            \"Integrations\": \"集成\",\n                \"Scheduled reminders\": \"定時提醒\",\n\n            \"Archive\": \"存檔\",\n                \"Logs\": \"日誌\",\n                    \"Sponsorship log\": \"贊助日誌\",\n                    \"Audit log\": \"審計日誌\",\n                \"Deleted repositories\": \"刪除的倉庫\",\n\n            \"Developer settings\": \"開發者設置\",\n                \"OAuth Apps\": \"OAuth 應用\",\n                \"Publisher Verification\": \"發佈者驗證\",\n            \"Account settings\": \"賬戶設置\",\n\n            \"Developer Settings\": \"開發者設置\"\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/profile\"] = { // 設置 - 個人資料\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Profile 個人資料 https://github.com/settings/profile\n            \"Public profile\": \"基本資料\",\n            \"Profile picture\": \"我的頭像\",\n                \"Edit\": \"編輯\",\n                \"Upload a photo…\": \"上傳圖片…\",\n                \"Remove photo\": \"刪除圖片\",\n                \"Are you sure you want to reset your current avatar?\": \"您確定要重置當前的頭像嗎？\",\n                \"Your profile picture has been reset. It may take a few minutes to update across the site.\": \"您的個人頭像已重置，整個網站的更新可能需要幾分鐘的時間。\",\n                \"Your profile picture has been updated. It may take a few minutes to update across the site.\": \"您的個人頭像已更新，整個網站的更新可能需要幾分鐘的時間。\",\n                // 裁剪個人頭像對話框\n                \"Crop your new profile picture\": \"裁剪個人頭像\",\n                \"Set new profile picture\": \"設置新的個人頭像\",\n            //\"You can also drag and drop a picture from your computer.\": \"您也可以直接拖拽照片鏡像上傳.\",\n            \"Name\": \"暱稱\",\n            \"Your name may appear around GitHub where you contribute or are mentioned. You can remove it at any time.\": \"您的暱稱可能會出現在 GitHub 上，您的貢獻或被提及的地方。您可以隨時刪除它。\",\n            \"Public email\": \"公開電子郵箱\",\n            \"Remove\": \"移除\",\n            \"Select a verified email to display\": \"選擇顯示一個已驗證的電子郵箱\",\n            \"You have set your email address to private. To toggle email privacy, go to\": \"您已將電子郵箱地址設置為私密。需要切換電子郵箱地址的私密性，請轉到\",\n            \"email settings\": \"郵箱設置\",\n            \"and uncheck \\\"Keep my email address private.\\\"\": \"並取消 “保持我的電子郵箱地址的私密性”。\",\n            \"You can manage verified email addresses in your\": \"您可以管理已驗證的電子郵箱地址在您的\",\n            //\"Don’t show my email address\": \"不顯示我的郵箱\",\n            //\"You can add or remove verified email addresses in your\": \"您可以添加或刪除郵件地址在您的\",\n            //\"personal email settings\": \"郵箱設置\",\n            \"Bio\": \"個人簡介\",\n            \"Tell us a little bit about yourself\": \"自我介紹一下您自己的相關信息\",\n            \"You can\": \"您可以\",\n            \"@mention\": \"@用戶名或組織名\",\n            \"other users and organizations to link to them.\": \"鏈接到其他用戶和組織。\",\n            \"URL\": \"網站\",\n            \"Social accounts\": \"社交賬戶\",\n                \"Link to social profile 1\": \"鏈接到社交賬戶\",\n                \"Link to social profile 2\": \"鏈接到社交賬戶\",\n                \"Link to social profile 3\": \"鏈接到社交賬戶\",\n                \"Link to social profile 4\": \"鏈接到社交賬戶\",\n            \"Company\": \"公司\",\n            \"your company’s GitHub organization to link it.\": \"鏈接到您所在公司的 GitHub 組織。\",\n             //\"your company's GitHub organization to link it.\": \"貴公司和GitHub的組織聯繫起來。\",\n            \"Pronouns\": \"代詞\",\n                \"Don't specify\": \"不說明\",\n                \"they/them\": \"他們\",\n                \"she/her\": \"她\",\n                \"he/him\": \"他\",\n                \"Custom\": \"自定義\",\n            \"Location\": \"位置\",\n            \"Display current local time\": \"顯示當前當地時間\",\n                \"Other users will see the time difference from their local time.\": \"其他用戶將看到與本地時間的時差。\",\n                \"Time zone\": \"時區\",\n\n            \"All of the fields on this page are optional and can be deleted at any time, and by filling them out, you're giving us consent to share this data wherever your user profile appears. Please see our\": \"此頁面上的所有字段都是可選的，可以隨時刪除，填寫這些字段，即表示您同意我們在您的個人資料出現的任何地方共享此數據。請參閱我們的\",\n            \"privacy statement\": \"隱私聲明\",\n            \"to learn more about how we use this information.\": \"以瞭解更多關於我們如何使用這些信息。\",\n            \"Update profile\": \"更新資料\",\n            // 頂部提醒\n                \"Profile updated successfully\": \"資料更新成功。\",\n                \"Profile updated successfully —\": \"資料更新成功 —\",\n                \"view your profile.\": \"查看您的個人資料。\",\n\n            \"Contributions & activity\": \"貢獻與活動\",\n                \"Make profile private and hide activity\": \"將個人資料設置為私密，並隱藏活動\",\n                    \"Enabling this will hide your contributions and activity from your GitHub profile and from social features like followers, stars, feeds, leaderboards and releases.\": \"啟用此功能後，您的貢獻和活動將會從您的 GitHub 個人資料中隱藏起來，也不會被關注者、觀星者、動態提要、排行榜和發佈等社交功能所發現。\",\n                \"Include private contributions on my profile\": \"在我的個人資料顯示私人貢獻\",\n                    \"Your contribution graph, achievements, and activity overview will show your private contributions without revealing any repository or organization information.\": \"您的貢獻圖、成就和活動概覽將顯示您的私人貢獻，而不會透露任何倉庫或組織信息。\",\n                    \"Read more\": \"瞭解更多\",\n            \"Update preferences\": \"更新設置\",\n\n            \"Profile settings\": \"個人資料設置\",\n                \"Display PRO badge\": \"顯示 PRO 徽章\",\n                    \"This will display the\": \"將會顯示\",\n                    \"badge on your public profile page.\": \"徽章在您的個人資料中。\",\n                \"Show Achievements on my profile\": \"在我的個人資料上顯示成就\",\n                    \"Your achievements will be shown on your profile.\": \"您的成就將顯示在您的個人資料中。\",\n\n            \"GitHub Developer Program\": \"GitHub 開發者計劃\",\n                \"has guides, API and webhook references, information about creating GitHub Apps and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"包含指南、API 和 Web 鉤子、有關創建 GitHub 應用的信息以及用於構建與 GitHub 集成的應用的其他資源。確保您的聯繫信息是最新的。感謝您的加入！\",\n\n                \"Support email address\": \"技術支持電子郵件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用戶聯繫您尋求支持的電子郵件地址。\",\n                \"Product or company website\": \"產品或公司網站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"與 GitHub 集成的產品、公司或服務的網址。\",\n                \"Update contact information\": \"更新聯繫信息\",\n                \"Leave the program\": \"退出計劃\",\n\n                \"Building an application, service, or tool that integrates with GitHub?\": \"構建與 GitHub 集成的應用、服務或工具？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 開發者計劃\",\n                \", or read more about it at our\": \"，或瞭解更多信息在我們的\",\n                \"GitHub developer program\": \"GitHub 開發者計劃\",\n                \"Developer site\": \"開發者站點\",\n\n            \"Jobs profile\": \"就業狀態\",\n            \"Available for hire\": \"求 HR 帶走\",\n            \"Save jobs profile\": \"保存狀態\",\n                // 頂部提醒\n                \"Profile updated successfully —\": \"個人資料更新成功 —\",\n                \"view your profile.\": \"查看您的個人資料。\",\n                \"Visitors will now see your public and anonymized private contributions.\": \"現在訪客可以看到您的公開和匿名私人貢獻。\",\n                \"Visitors will now see only your public contributions.\": \"現在訪客只能看到您的公開貢獻\",\n\n            \"Trending settings\": \"趨勢設置\",\n            \"Preferred spoken language\": \"首選語言\",\n            \"No Preference\": \"未設置\",\n            \"We'll use this language preference to filter the trending repository lists on\": \"我們將使用此語言偏好來過濾趨勢倉庫列表在\",\n            \"our\": \"我們的\",\n            \"Trending Repositories\": \"趨勢倉庫\",\n            \"page.\": \"頁面。\",\n            \"Save Trending settings\": \"保存趨勢設置\",\n\n            \"ORCID provides a persistent identifier - an ORCID iD - that distinguishes you from other researchers. Learn more at\": \"ORCID 提供持久標識符 - ORCID iD - 將您與其他開發人員區分，瞭解更多信息請訪問\",\n            \"Connect your ORCID iD\": \"關聯您的 ORCID iD\",\n            \"Successfully connected your GitHub account with ORCID.\": \"已成功將您的 GitHub 賬戶與 ORCID 關聯。\",\n            \"You have a connected ORCID iD\": \"您的 ORCID iD\",\n            \"for the account\": \"已關聯賬戶\",\n            \"Display your ORCID iD on your GitHub profile\": \"在您的 GitHub 個人資料上顯示 ORCID iD\",\n            \"Disconnecting your ORCID iD may affect areas of your profile where your ORCID iD is displayed.\": \"解除關聯 ORCID iD 可能會影響您個人資料中顯示 ORCID iD 的區域。\",\n            \"Disconnect your ORCID iD\": \"解除關聯您的 ORCID iD\",\n            \"Successfully disconnected ORCID from your GitHub Account.\": \"已成功解除 ORCID 與您的 GitHub 賬戶的連接。\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your profile\": \"個人資料\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"settings\"] = I18N[\"zh-TW\"][\"settings/profile\"];\n\nI18N[\"zh-TW\"][\"settings/admin\"] = { // 設置 - 賬戶\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Account settings 賬戶設置 https://github.com/settings/admin\n            \"Change username\": \"更改用戶名\",\n            \"Changing your username can have\": \"更改您的用戶名可能會有\",\n            \"unintended side effects\": \"意想不到的副作用\",\n                \"Really change your username?\": \"確定要更改您的用戶名？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"請仔細閱讀以下提示信息！！！\",\n                \"We\": \"我們\",\n                \"will not\": \"不會\",\n                \"will\": \"會\",\n                \"set up redirects for your old profile page.\": \"為您的舊資料頁設置重定向\",\n                \"set up redirects for Pages sites.\": \"為 GitHub Pages 站點設置重定向。\",\n                \"create redirects for your repositories (web and git access).\": \"為您的倉庫設置重定向（ web 和 git 訪問）。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要幾分鐘的時間來完成。\",\n                \"I understand, let’s change my username\": \"我明白了，依然更改我的用戶名\",\n\n                \"Enter a new username\": \"輸入新用戶名\",\n                \"Choose a new username\": \"選擇新用戶名\",\n                \"Change my username\": \"更改我的用戶名\",\n                \"Trademark Policy\": \"商標政策\",\n                \"are available.\": \"都可以使用。\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用戶名只能包含字母數字字符或單個連字符，不能以連字符開始或結束。\",\n            \"Looking to manage account security settings? You can find them in the\": \"想管理賬戶安全設置？您可以在\",\n            \"page.\": \"頁面找到它們。\",\n\n            \"Link Patreon account\": \"關聯 Patreon 賬戶\",\n                \"Connect a Patreon account for\": \"關聯\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 賬戶，以便贊助維護者。當被贊助者也關聯 Patreon 和 GitHub 賬戶時，在 Patreon 上獲得的贊助也會顯示在 GitHub 上，並顯示 GitHub 贊助者的公開個人資料。\",\n                \"Connect with Patreon\": \"關聯 Patreon 賬戶\",\n                \"Successfully connected your GitHub account with Patreon.\": \"已成功將您的 GitHub 賬戶與 Patreon 關聯。\",\n\n            \"Unlink Patreon account\": \"取消關聯 Patreon 賬戶\",\n                \"Disconnect the Patreon account\": \"取消 Patreon 賬戶\",\n                \"for\": \"和\",\n                \"to sponsor maintainers with. Any sponsorships made on Patreon will no longer receive recognition on GitHub.\": \"的關聯，在 Patreon 上進行的任何贊助將不會在 GitHub 顯示。\",\n                \"Successfully disconnected your GitHub account from Patreon.\": \"已成功解除您的 GitHub 賬戶與 Patreon 的關聯。\",\n\n            \"Export account data\": \"導出賬戶數據\",\n            \"Export all repositories and profile metadata for\": \"導出所有倉庫和配置元數據，自\",\n            \". Exports will be available for 7 days.\": \"。導出結果將有 7 天有效期。\",\n            \"Start export\": \"開始導出\",\n            \"Recent exports\": \"近期導出\",\n            \"New export\": \"新建導出\",\n            \"We're preparing your export! We'll send you an email when it's finished.\": \"我們正在為您準備導出！我們完成後會發一封電子郵件。\",\n            \"New exports cannot be requested while an export is currently in progress\": \"當前正在導出中，無法請求新的導出\",\n            \"Resend email with link\": \"重新發送帶有鏈接的郵件\",\n            \"Download deleted\": \"導出內容已刪除\",\n            \"Job queued to delete file.\": \"正在排隊刪除文件的作業。\",\n\n            \"Successor settings\": \"設置繼任者\",\n            // 未指定\n            \"designated below\": \"（下面指定的）\",\n            \", in the event of my death. I understand that this appointment of a successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will.\": \"。我明白，這種指定繼任者的做法並不凌駕於具有法律約束力的近親規則或任何相關司法管轄區的遺產法，也不產生具有約束力的遺囑。\",\n            \"Learn more about account successors.\": \"瞭解更多關於賬戶繼任者的信息。\",\n            \"Add Successor\": \"添加繼任者\",\n            \"Search by username, full name, or email address\": \"搜索用戶名、全名、或電子郵箱\",\n            \"You have not designated a successor.\": \"您還沒有指定繼任者。\",\n            // 等待回應\n            \"Pending\": \"待處理\",\n            \"Copy invite link\": \"複製邀請鏈接\",\n            // 已指定\n            \"Learn more about account successors\": \"瞭解更多關於賬戶繼任者的信息\",\n            \"Revoke\": \"撤銷\",\n            // 被謝絕\n            \"Declined\": \"被謝絕\",\n\n            \"Delete account\": \"刪除賬戶\",\n            \"Once you delete your account, there is no going back. Please be certain.\": \"您一旦刪除了您的賬戶，將再也無法恢復。請確認！\",\n                \"Your account is currently an owner in these organizations:\": \"您的賬戶目前是以下組織的所有者：\", // 存在組織\n                \"You must\": \"您必須先\",\n                \"remove yourself\": \"刪除您自己\",\n                \"transfer ownership\": \"轉讓所有權\",\n                \"delete these organizations\": \"刪除這些組織\",\n                \"before you can delete your user.\": \"，您才可以刪除您的用戶。\",\n            \"Delete your account\": \"刪除賬戶\",\n            \"Are you sure you don’t want to just\": \"您確定不希望僅僅是\",\n            \"downgrade your account\": \"降級您的賬戶\",\n            \"to a\": \"為\",\n            \"FREE\": \"免費\",\n            \"account? We won’t charge your credit card anymore.\": \"賬戶嗎？我們不會再向您信用卡賬戶扣款。\",\n            \"account? We won’t charge your payment information anymore.\": \"賬戶嗎？我們不會再向您支付賬戶扣款。\",\n            \"account? We won’t charge your PayPal account anymore.\": \"賬戶嗎？我們將不再向您 PayPal 賬戶扣款。\",\n                \"Are you sure you want to do this?\": \"您確定要這麼做嗎？\",\n                \"This is extremely important.\": \"這是極其重要的。\",\n                \"We will\": \"我們將\",\n                \", along with all of your forks, wikis, issues, pull requests, and GitHub Pages sites.\": \"以及您所有的複刻、Wiki、議題、拉取請求和 GitHub Pages 站點。\",\n                \"You will no longer be billed, and after 90 days your username will be available to anyone on GitHub.\": \"您將不再被收取費用，並且 90 天后您的用戶名將被 GitHub 上的任何人使用。\",\n                \"For more help, read our article \\\"\": \"如需更多幫助，請閱讀我們的文章 “\",\n                \"Deleting your user account\": \"刪除您的賬戶\",\n                \"\\\".\": \"”。\",\n                \"Your username or email:\": \"您的用戶名或電子郵箱：\",\n                \"To verify, type\": \"為了驗證，請輸入\",\n                \"below:\": \"在下面：\",\n                \"Confirm your password:\": \"確認您的密碼：\",\n                \"Cancel plan and delete this account\": \"取消計劃並刪除此賬戶\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/is available\\./, \"可用。\"],\n        [/Username ([^ ]+) is not available\\. Please choose another\\. To submit a trademark claim, please see our/, \"用戶名 $1 不可用。請重新選擇。要提交商標索賠，請看我們的\"],\n        [/immediately delete all of your repositor(y|ies) \\((\\d+)\\)/, \"立即刪除您所有的倉庫（$1個）\"],\n\n        // 設置繼任者\n        [/By clicking \\\"Add Successor\\\" below, I acknowledge that I am the owner of the([^@]+@[^\\n]+) account, and am authorizing GitHub to transfer content within that account to my GitHub Successor,/, \"通過點擊下面的 “添加繼任者”，我確認我是 $1 賬戶的所有者，並授權 GitHub 在我死亡的情況下將此賬戶內的內容轉讓給我的 GitHub 繼任者\"],\n        [/This link will only work for ([^ ]+)./, \"此鏈接僅對 $1 有效。\"],\n\n        // 頂部提醒\n        [/You have successfully sent the successor invitation to ([^ ]+)./, \"您已經成功向 $1 發送了繼任者邀請。\"],\n        [/You have revoked the successor invitation to ([^ ]+)./, \"您已經撤銷了對 $1 的繼任者邀請。\"],\n        [/You have canceled the invitation to ([^ ]+) to be your designated successor./, \"您已經取消了讓 $1 成為您的指定繼任者的邀請。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account settings\": \"賬戶設置\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"succession/invitation\"] = { // 賬戶繼任者邀請  users/<邀請者的 user-name>/succession/invitation\n    \"static\": { // 靜態翻譯\n        // 受邀者\n        \"invited you to be their account successor\": \"邀請您成為其賬戶繼任者\",\n        \"Learn more about account successors\": \"瞭解更多關於賬戶繼任者的信息\",\n        //[/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通過點擊下面的 “接受邀請”，我確認我同意按照其繼任者要求所授權的方式擔任 $1 的繼任者。我同意在使用和維護其帳戶內容時遵守 GitHub 的\"],\n        \"Terms of Service\": \"服務條款\",\n        \"and the user's written requests, if any, in my use and maintaining of their account's content.\": \"和用戶的書面請求（如果有）。\",\n        \"I understand that accepting this appointment as successor does not override legally binding next-of-kin rules or estate laws of any relevant jurisdiction, and does not create a binding will, and I agree to comply or assist with a valid request by an individual with legal authority over the user's property (such as next-of-kin, an estate's executor, and/or a beneficiary of their will).\": \"我明白，接受此繼任者任命的做法並不凌駕於具有法律約束力的近親規則或任何相關司法管轄區的遺產法，也不產生具有約束力的遺囑，並且我同意遵守或協助對用戶財產擁有合法權力的個人（例如近親、遺產執行人和/或其遺囑受益人）的有效請求。\",\n        \"Accept invitation\": \"接受邀請\",\n        \"Decline\": \"謝絕\",\n        // 已接受\n        \"This invitation has already been accepted.\": \"此邀請已被接受。\",\n        // 已謝絕\n        \"This invitation has already been declined.\": \"此邀請已被謝絕。\",\n        // 不存在\n        \"Invitation not found\": \"此邀請已被謝絕。\",\n        \"Your invitation could not be found, or is not valid.\": \"找不到您的邀請，或是其已不再有效。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/As an account successor, you would be able to manage ([^ ]+)'s repositories if they're not able to./, \"作為賬戶繼任者，在 $1 再也無法管理其倉庫時，您將能夠管理其倉庫。\"],\n        [/By clicking \\\"Accept invitation\\\" below, I acknowledge that I agree to serve as the successor for ([^ ]+), in such ways authorized by their successor request. I agree to abide by GitHub's/, \"通過點擊下面的 “接受邀請”，我確認我同意按照其繼任者要求所授權的方式擔任 $1 的繼任者。我同意在使用和維護其帳戶內容時遵守 GitHub 的\"],\n    ]\n};\n\nI18N[\"zh-TW\"][\"settings/appearance\"] = { // 設置 - 外觀\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Appearance 外觀 https://github.com/settings/appearance\n            \"Theme preferences\": \"主題首選項\",\n            \"Choose how GitHub looks to you. Select a single theme, or sync with your system and automatically switch between day and night themes. Selections are applied immediately and saved automatically.\": \"選擇 GitHub 在您眼中的樣子。選擇單一主題，或與您的系統同步並自動在白天和夜晚的主題之間切換。選擇將立即生效並自動保存。\",\n            \"Theme mode\": \"主題模式\",\n                \"Single theme\": \"單一主題\",\n                \"Sync with system\": \"與系統同步\",\n            \"GitHub will use your selected theme\": \"GitHub 將使用您選擇的主題\",\n            \"GitHub theme will match your system active settings\": \"GitHub 主題將匹配您的系統設置\",\n            \"Light default\": \"淺色 - 默認\",\n            \"Light protanopia and deuteranopia\": \"淺色 - 色盲\",\n            \"Light colorblind\": \"淺色 - 色盲\",\n            \"Light tritanopia\": \"淺色 - 藍色盲\",\n            \"Dark default\": \"深色 - 默認\",\n            \"Dark protanopia and deuteranopia\": \"深色 - 色盲\",\n            \"Dark colorblind\": \"深色 - 色盲\",\n            \"Dark tritanopia\": \"深色 - 藍色盲\",\n            \"Soft dark\": \"深色 - 柔和\",\n            \"Light theme\": \"淺色主題\",\n            \"Dark theme\": \"深色主題\",\n            \"Active\": \"激活\",\n            \"This theme will be active when your system is set to “light mode”\": \"當您的系統設置為 “淺色模式” 時，該主題將被激活。\",\n            \"This theme will be active when your system is set to “dark mode”\": \"當您的系統設置為 “深色模式” 時，該主題將被激活。\",\n            \"Beta\":\"預覽\",\n\n            \"Contrast\": \"對比度\",\n                \"Increase contrast\": \"增加對比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根據您的系統設置啟用對淺色或深色模式（或兩者）的高對比度\",\n                    \"Light mode\": \"淺色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"Off\": \"關閉\",\n                    \"On\": \"開啟\",\n\n            \"Emoji skin tone preference\": \"表情符號膚色首選項\",\n            \"Preferred default emoji skin tone\": \"默認的表情符號膚色\",\n\n            \"Tab size preference\": \"製表符首選項\",\n            \"Choose the number of spaces a tab is equal to when rendering code\": \"在渲染程式碼時，選擇一個製表符等於多少個空格\",\n            \"4 (Default)\": \"4 (默認)\",\n\n            \"Markdown editor font preference\": \"Markdown 編輯器字體首選項\",\n            \"Font preference for plain text editors that support Markdown styling (e.g. pull request and issue descriptions, comments.)\": \"支持 Markdown 樣式的純文本編輯器的字體首選項（例如拉取請求和議題描述、評論。）\",\n            \"Use a fixed-width (monospace) font when editing Markdown\": \"編輯 Markdown 時使用固定寬度（等寬）字體\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Appearance\": \"外觀\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/accessibility\"] = { // 設置 - 無障礙\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Accessibility 無障礙 https://github.com/settings/accessibility\n            \"General\": \"通常\",\n            \"Character keys\": \"字符鍵\",\n                \"GitHub shortcuts\": \"GitHub 快捷鍵\",\n                \"that don't use modifier keys in their activation. For example, the\": \"，這些快捷鍵在激活時不使用修改鍵。例如，\",\n                \"shortcut to navigate notifications, or\": \"快捷鍵來導航到通知，或\",\n                \"to view context relevant shortcuts.\": \"查看與上下文相關的快捷鍵。\",\n                \"Learn more about character key shortcuts\": \"瞭解更多關於字符快捷鍵的信息\",\n                \"Save keyboard shortcut preferences\": \"保存鍵盤快捷鍵首選項\",\n\n            // 頂部提醒\n                \"Keyboard shortcut preference successfully saved.\": \"鍵盤快捷鍵首選項已成功保存。\",\n\n            \"Command palette\": \"命令面板\",\n                \"Modify the shortcuts to trigger the Command Palette for the default search mode and the command mode\": \"修改快捷鍵以觸發默認搜索模式和命令模式的命令面板\",\n                \"Search mode\": \"搜索模式\",\n                    \"control + k or control + alt + k (default)\": \"control + k 或 control + alt + k (默認)\",\n                    \"Disabled\": \"禁用\",\n                \"Command mode\": \"命令模式\",\n                    \"control + shift + k (default)\": \"control + shift + k (默認)\",\n                \"Save command palette preferences\": \"保存命令面板首選項\",\n\n            \"Motion\": \"動態\",\n                \"Autoplay animated images\": \"自動播放動態圖片\",\n                    \"Select whether animated images should play automatically.\": \"選擇是否需要自動播放動態圖片。\",\n                \"Sync with system\": \"與系統同步\",\n                    \"Adopts your system preference for reduced motion\": \"採用您的系統偏好以減少運動\",\n                \"Enabled\": \"啟用\",\n                    \"Automatically plays animated images\": \"自動播放動態圖片\",\n                // 禁用\n                    \"Prevents animated images from playing automatically\": \"防止自動播放動態圖片\",\n                \"Save motion preferences\": \"保存動態首選項\",\n\n            // 頂部提醒\n                \"Motion preferences successfully saved.\": \"動態首選項已成功保存。\",\n\n            \"Content\": \"內容\",\n                \"Link underlines\": \"鏈接下劃線\",\n                    \"Toggle the visibility of underlines on links that are adjacent to text.\": \"切換文本相鄰鏈接上下劃線的可見性。\",\n                \"Hide link underlines\": \"隱藏鏈接下劃線\",\n                \"Show link underlines\": \"顯示鏈接下劃線\",\n                \"Save content preferences\": \"保存內容首選項\",\n\n            // 頂部提醒\n                \"Link underline preferences successfully saved.\": \"鏈接下劃線首選項已成功保存。\",\n\n            \"Hovercards\": \"懸浮卡\",\n                \"preview information about other parts of GitHub.\": \"預覽 GitHub 其他部分的信息。\",\n                \"Show hovercards\": \"顯示懸浮卡\",\n                    \"Enable previewing link content via mouse hover or keyboard focus before navigation. Move focus to hovercard content using\": \"在導航之前，可通過鼠標懸停或鍵盤聚焦預覽鏈接內容。使用以下方法將焦點移至懸停卡片內容\",\n                \"Save hovercard preferences\": \"保存懸浮卡偏好設置\",\n            // 頂部提醒\n                \"Hovercard preferences successfully saved.\": \"懸浮卡首選項已成功保存。\",\n\n            \"Editor settings\": \"編輯器設置\",\n                \"URL paste behavior\": \"URL 粘貼行為\",\n                \"Select if URLs should be formatted on paste. You can use\": \"選擇是否應在粘貼時格式化 URL。您可以使用\",\n                \"to paste a link in the opposite way.\": \"以相反的方式粘貼鏈接。\",\n                \"Formatted link\": \"格式化鏈接\",\n                    \"Pasting a URL while having text selected will format to a Markdown link\": \"在選擇了文本的情況下，粘貼 URL 將格式化為 Markdown 鏈接\",\n                \"Plain text\": \"純文本\",\n                    \"Pasting a URL while having text selected will replace the text\": \"在選擇了文本的情況下，粘貼 URL 將替換文本\",\n                \"Save editor settings\": \"保存編輯器設置\",\n            // 頂部提醒\n                    \"Paste behavior preferences successfully saved.\": \"粘貼行為首選項已成功保存。\",\n\n            \"Assistive technology hints\": \"輔助技術提示\",\n                \"Add or remove instructions for how to operate complex controls.\": \"添加或刪除如何操作複雜控件的說明。\",\n                // 懸浮卡\n                    \"Enable screen reader hint\": \"啟用屏幕閱讀器提示\",\n                    \"Disable screen reader hint\": \"禁用屏幕閱讀器提示\",\n                \"Save assistive technology hint preferences\": \"保存輔助技術提示首選項\",\n            // 頂部提醒\n                \"Hovercard assistive technology hint preferences successfully saved.\": \"懸浮卡輔助技術提示首選項已成功保存。\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Accessibility\": \"無障礙\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/notifications\"] = { // 設置 - 通知\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Notification center 通知 https://github.com/settings/notifications\n            \"Default notifications email\": \"默認郵件通知設置\",\n                \"Choose where you'd like emails to be sent. You can add more email addresses. Use custom routes to specify different email addresses to be used for individual organizations.\": \"請選擇希望接收通知郵件的郵箱。您可以添加多個郵箱地址。可藉助自定義路由為不同的組織指定不同的郵箱地址。\",\n                \"Custom routing\": \"自定義路由\",\n\n            \"Automatically watch repositories\": \"自動關注倉庫\",\n                \"When you're given push access to a repository, automatically receive notifications for it.\": \"當您給一個倉庫推送權限時，自動接收相關通知。\",\n            \"Automatically watch teams\": \"自動關注團隊\",\n                \"Anytime you join a new team, you will automatically be subscribed to updates and receive notification when that team is @mentioned.\": \"當您加入新團隊時，您將自動訂閱更新，並在該團隊 @提及 時收到通知。\",\n\n                \"On\": \"開啟\",\n                \"Off\": \"關閉\",\n\n            \"Subscriptions\": \"訂閱\",\n                \"Watching\": \"關注倉庫\",\n                    \"Notifications for all repositories, teams, or conversations you're watching.\": \"所有您正在關注的倉庫、團隊或對話所發出的通知。\",\n                    \"View watched repositories\": \"查看正在關注的倉庫\",\n                    \"Notify me:\": \"提醒我：\",\n                    \"Select notification channels\": \"選擇通知渠道\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、電子郵件、CLI 上\",\n                    \"on GitHub, CLI\": \"在 GitHub、CLI 上\",\n                    \"on GitHub, Email, CLI\": \"在 GitHub、電子郵件、CLI 上\",\n                    \"on GitHub, Email\": \"在 GitHub、電子郵件 上\",\n                    \"On GitHub\": \"在 GitHub 上\",\n                    \"on GitHub\": \"在 GitHub 上\",\n                \"Don't notify\": \"取消通知\",\n\n                \"Participating, @mentions and custom\": \"參與、@提及和自定義\",\n                    \"Notifications for the conversations you are participating in, or if someone cites you with an @mention. Also for all activity when subscribed to specific events.\": \"您參與的對話、或有人 @您、以及您訂閱的特定事件所發出的通知。\",\n\n                \"Customize email updates\": \"自定義電子郵件更新\",\n                    \"Choose which additional events you'll receive emails for when participating or watching.\": \"選擇參與或關注時，您將收到哪些額外活動的電子郵件。\",\n                    \"Select events\": \"選擇事件\",\n                    \"Reviews\": \"審查\",\n                    \"Reviews, Pushes\": \"審查、推送\",\n                    \"Reviews, Pushes, Comments\": \"審查、推送、評論\",\n                    \"Reviews, Pushes, Comments, My own updates\": \"審查、推送、評論、自我更新\",\n                    \"Pull Request reviews\": \"拉取請求審核\",\n                    \"Pull Request pushes\": \"拉取請求推送\",\n                    \"Comments on Issues and Pull Requests\": \"關於議題和拉取請求的評論\",\n                    \"Includes your own updates\": \"包括您自己的更新\",\n                \"Ignored repositories\": \"忽略的倉庫\",\n                \"You'll never be notified.\": \"您將永遠不會收到通知。\",\n                \"View ignored repositories\": \"查看忽略的倉庫\",\n\n            \"System\": \"系統\",\n                \"Actions\": \"操作\",\n                    \"Notifications for workflow runs on repositories set up with\": \"倉庫的工作流程通知，設置在\",\n                    \". (\": \"。（\",\n                    \"Failed workflows only\": \"僅工作流程失敗時\",\n                    \"Only notify for failed workflows\": \"只對失敗的工作流程進行通知\",\n\n            \"Dependabot alerts: New vulnerabilities\": \"Dependabot 警報：新漏洞\",\n                \"When you're given access to\": \"當您獲得\",\n                \"Dependabot alerts\": \"Dependabot 警報\",\n                \"automatically receive notifications when a new vulnerability is found in one of your dependencies.\": \" 訪問權限時，當您的某個依賴項中發現新的漏洞時，就會自動收到通知。\",\n\n            \"Dependabot alerts: Email digest\": \"Dependabot 警報：電子郵件摘要\",\n                \"Email a regular summary of Dependabot alerts for up to 10 of your repositories.\": \"通過電子郵件發送最多 10 個倉庫庫的 Dependabot 警報定期摘要。\",\n                \"Don't send\": \"不發送\",\n                \"Send weekly\": \"每週發送\",\n                \"Send daily\": \"每日發送\",\n\n            \"Security campaign emails\": \"安全活動電子郵件\",\n                \"Receive email notifications about security campaigns in repositories where you have access to security alerts.\": \"接收有關您有權訪問安全警報的倉庫中的安全活動的電子郵件通知。\",\n\n            \"\\'Deploy key\\' alert email\": \"“部署密鑰” 警報電子郵件\",\n                \"When you are given admin permissions to an organization, automatically receive notifications when a new deploy key is added.\": \"當您獲得組織的管理員權限時，會在添加新部署密鑰時自動接收通知。\",\n\n            \"In-product messages\": \"產品消息\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"從 GitHub 獲取有關我們認為您可能感興趣的產品、服務和活動的提示、解決方案和獨家優惠。\",\n\n        // 通知 自定義路由 https://github.com/settings/notifications/custom_routing\n                \"/ Custom Routing\": \"/ 自定義路由\",\n                    \"You can send notifications to different\": \"您可藉助自定義路由為不同的組織指定不同的郵箱地址\",\n                    \"verified\": \"（經驗證的郵箱）\",\n                    \"email addresses depending on the organization that owns the repository.\": \"。\",\n                    \"is your current default email for notifications.\": \"是您目前默認的通知郵箱。\",\n\n                    \"No custom routes yet.\": \"尚無自定義路由\",\n                    \"Add new route\": \"添加新路由\",\n                        \"Pick organization\": \"挑選組織\",\n                            \"Select an item\": \"選擇一項\",\n                        \"Search organizations\": \"搜索組織\",\n                        \"Select Email\": \"選擇郵箱\",\n                        \"Saved\": \"已保存\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notification settings\": \"通知設置\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/billing\"] = { // 設置 - 賬單和計劃\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置\n\n        // 概況 https://github.com/settings/billing\n            // 頂部提示\n                \"Successfully updated billing information.\": \"成功更新支付信息。\",\n\n                \"For more information on using these billing pages\": \"有關使用這些賬單頁面的更多信息，\",\n                    \"please refer to the docs content here\": \"請參閱此處的文檔內容\",\n\n            // 概況\n                \"Current metered usage\": \"當前計費用量\",\n                    \"Gross metered usage for\": \" \",\n                    \"Showing gross metered usage for your account.\": \"顯示您賬戶的總計費用量。\",\n                    \"Showing gross metered usage for your organization.\": \"顯示您組織的總計費用量。\", // 組織\n\n                \"Current included usage\": \"當前包含用量\",\n                    \"More details\": \"詳情\",\n                    \"Included usage discounts for\": \" \",\n                    \"Showing currently applied discounts for your account.\": \"顯示您賬戶當前應用的折扣。\",\n                    \"Showing currently applied discounts for your organization.\": \"顯示您組織當前應用的折扣。\", // 組織\n                    \"* As per current pricing\": \"* 根據當前定價方案\",\n                    \"Download your Copilot premium request usage report\": \"下載您的 Copilot 高級請求使用報告：\",\n                        \"here\": \"下載\",\n\n                // 當前包含用量詳情\n                    \"Included usage and credits\": \"包含用量和額度\",\n                        \"Showing currently applied usage and credits for your account.\": \"顯示您賬戶當前的使用情況和額度。\", // 後續走正則\n\n                        \"Included usage*\": \"包含用量*\",\n                            \"Included premium requests\": \"包含高級請求\",\n                            \"Free usage**\": \"免費使用**\",\n                                \"100% off per month\": \"100%減免/每月\",\n\n                        \"* Included usage is an approximate amount based on current pricing.\": \"* 所包含的用量是基於當前定價的預估值。\",\n                        \"** GitHub Packages usage is free for public packages. For details on free Actions usage, see\": \"** GitHub 軟體包對公共包的使用是免費的。有關 GitHub Actions 免費使用的詳細信息，請參閱\",\n                        \"Free use of GitHub Actions\": \"Github Actions 的免費使用\",\n\n            \"Next payment due\": \"下一次應付款\",\n\n            \"Subscriptions\": \"訂閱\",\n                \"Manage subscriptions\": \"管理訂閱\",\n                \"per\": \"/\",\n                \"month\": \"月\",\n\n            \"Metered usage\": \"計費用量\",\n                \"Usage by products\": \"按產品分類\", // 省略重複內容\n                // 時間段，這部分走正則\n                    \"Today\": \"今天\",\n                    \"Current month\": \"這個月\",\n                    \"Last month\": \"上個月\",\n                    // 後 2 項正則\n\n                    \"Billable usage\": \"計費\",\n                        // 操作\n                        \"consumed usage\": \"使用\",\n                        \"discounts\": \"減免\",\n\n                        \"Billable spend for Actions and Actions Runners for the selected timeframe. Applicable discounts cover Actions usage in public repositories and included usage for Actions minutes and storage.\": \"在所選時間範圍內，Actions 和 Actions 運行器的可計費支出。適用的折扣涵蓋公共倉庫中的 Actions 使用，以及包含的 Actions 分鐘數和存儲用量。\",\n                        \"Billable spend for Codespaces for the selected timeframe.\": \"所選時間範圍內程式碼空間的可計費支出。\",\n                        \"Billable spend for Git LFS for the selected timeframe. Applicable discounts cover included usage for Git LFS bandwidth and storage.\": \"所選時間範圍內 Git LFS 的可計費支出。適用的折扣涵蓋 Git LFS 帶寬和存儲的包含用量。\",\n                        \"Billable spend for Packages for the selected timeframe. Applicable discounts cover Packages usage in public repositories and included usage for Packages data transfer and storage.\": \"所選時間範圍內軟體包的可計費支出。適用的折扣涵蓋公共倉庫中的軟體包使用，以及包含的軟體包數據傳輸和存儲用量。\",\n                    \"Included usage\": \"包含\",\n                        \"Manage budgets\": \"管理預算\",\n                        \"Actions minutes\": \"操作分鐘數\",\n                        \"Git LFS bandwidth\": \"Git LFS 帶寬\",\n                        \"Git LFS storage\": \"Git LFS 存儲\",\n                        \"Packages data transfer\": \"軟體包數據傳輸\",\n                        \"Packages storage\": \"軟體包存儲\",\n                        \"Included usage limits reset in\": \"將重置於\",\n                        \"days\": \"天內\",\n                        \"day\": \"天內\",\n                \"Chart options\": \"圖表選項\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"DateTime\": \"日期時間\",\n                    \"Download CSV\": \"下載 CSV\",\n                    \"Download PNG\": \"下載 PNG\",\n                \"All usage\": \"全部\",\n                    // 某單位\n                    \"Gross:\": \"總計：\",\n                    \"Billed:\": \"計費：\",\n                    \"Discount:\": \"優惠：\",\n                \"Usage by repository\": \"按倉庫統計\",\n                    \"Top three repositories today\": \"今日排名前三的倉庫\",\n                    \"Top two repositories this month\": \"本月排名前二的倉庫\",\n                    \"Top three repositories this month\": \"本月排名前三的倉庫\",\n                    \"Top four repositories last month\": \"上月排名前四的倉庫\",\n                    \"Top four repositories this year\": \"今年排名前四的倉庫\",\n                    \"Top four repositories this month\": \"上年排名前四的倉庫\",\n\n                    \"View all\": \"查看所有\",\n                    \"usage\": \"用量\",\n                    \"Gross amount\": \"總計\",\n                    \"All other repositories\": \"其他\",\n\n                \"No usage found\": \"無數據\",\n\n                // 底下計算部分\n                    \"View details\": \"詳情\",\n                    \"consumed usage -\": \"計費 -\",\n                    \"in discounts =\": \"折扣 =\",\n                    \"in billable usage\": \"計費\",\n                    \"Usage for Actions and Actions Runners.\": \"操作（運行器）用量。\", // 後半句走正則\n                    \"Copilot usage\": \"Copilot 用量\",\n                        \"Total spend on Copilot for the selected timeframe, excluding applicable discounts.\": \"所選時間段內 Copilot 的總支出，不含適用折扣。\",\n                    \"Billable licenses\": \"計費許可數\",\n                        \"Billable licenses info\": \"計費許可信息\",\n                            \"If a user stops consuming a license within the month, the adjustment will be reflected in your next month's bill.\": \"如果用戶在當月停止使用許可，相關調整將體現在您下個月的賬單中。\",\n                            \"Billable licenses are only available for the 'Current month' timeframe.\": \"計費許可僅適用於“當前月”時間段。\",\n                            \"Learn more about billable licenses\": \"瞭解更多關於可計費許可證的信息\",\n                        \"Showing total unique licenses billed for your enterprise. Actual billed amount for each license is prorated based on when it is added during the billing cycle.\": \"顯示您企業所計費的唯一許可證總數。每個許可證的實際計費金額將根據其在計費週期內添加的時間按比例分攤。\",\n                    \"Copilot premium requests\": \"Copilot 高級請求\",\n                        \"About Copilot premium requests\": \"關於 Copilot 高級請求\",\n                        \"If enabled, additional premium requests beyond the included amount for each license will be billed.\": \"若啟用此功能，每個許可證所包含額度之外的額外高級請求將另行計費。\",\n                        \"Manage Copilot policy\": \"管理 Copilot 策略\",\n                    // 模型\n                        \"About GitHub Models rate limits\": \"關於 GitHub 模型速率限制\",\n                            \"GitHub Models rate limits\": \"GitHub 模型速率限制\",\n                                \"The playground and free API usage are rate limited by requests per minute, requests per day, tokens per request, and concurrent requests.\": \"操場和免費 API 的使用受到以下限制：每分鐘請求數、每天請求數、每次請求的令牌數以及並發請求數。\",\n                                \"Learn more about GitHub Models rate limits\": \"瞭解更多\", // 有上下文，故省略\n\n                    // Spark\n                        \"Spark premium requests\": \"Spark 高級請求\",\n\n            // 程式碼空間超限\n            \"You've used 90% of included services for GitHub Codespaces storage.\": \"您已使用 90% 程式碼空間存儲。\",\n            \"You've used 100% of included services for GitHub Codespaces storage.\": \"您已使用 100% 程式碼空間存儲。\",\n                \"When your allotment is exhausted, you won't be able to use Codespaces until you set up a spending limit or your free Codespaces allotment is reset next month. If you want to access your in progress work from a codespace, you can\": \"當您的額度耗盡後，您將無法使用程式碼空間，直到您設置支出上限或下月重置您的免費額度。如果您想訪問程式碼空間中正在進行的工作，您可以\",\n                \"export your unpushed work to a branch.\": \"將未推送的工作導出到分支。\",\n                \"To see a full list of your usage, obtain a copy of your\": \"要查看所有使用情況，請獲取您的\",\n                \"usage report\": \"使用報告\",\n                \"to see the codespaces and prebuilds created by your account. The usage report is the only place where prebuild usage is visible. If you see charges you'd like to stop going forward, you can delete a\": \"，以查看您的賬戶創建的程式碼空間和預構建。使用報告是唯一能顯示預構建使用情況的地方。如果您看到希望以後停止的費用，您可以刪除一個\",\n                \"codespace\": \"程式碼空間\",\n                \"delete prebuilds for a repository.\": \"刪除某個倉庫的預構建。\",\n            \"Update spending limit\": \"更新支出限額\",\n\n        // 使用情況 https://github.com/settings/billing/usage\n            \"Get usage report\": \"獲取使用情況報告\",\n                \"Metered billing usage report\": \"計費用量\",\n                    \"Provides a breakdown of all metered usage\": \"提供所有計量使用情況的詳細分解\",\n                    // 窗口\n                    \"Select report type:\": \"選擇報告類型：\", // 下方小字走正則\n                        \"Summarized\": \"總結\",\n                            \"Metered usage by repository for up to 1 year\": \"每個倉庫的計量使用情況，最長可追溯至一年\",\n                        \"Detailed\": \"詳細\",\n                            \"Metered usage by username and workflow for up to 31 days\": \"每個用戶和工作流的計量使用情況，最長可追溯至 31 天\",\n                        \"Legacy\": \"傳統\",\n                            \"Metered usage before the billing transition, until April 04, 2025\": \"計費切換前的計量使用情況，截至2025年4月4日\",\n                    \"Select time frame\": \"選擇時間段\",\n                        \"This year\": \"今年\",\n                        \"Custom range\": \"自定義\",\n                            \"Up to 1 year\": \"最長 1 年\",\n                            \"Up to 31 days\": \"最長 31 天\",\n                            \"Choose date...\": \"選擇日期…\",\n                                \"Su\": \"日\",\n                                \"Mo\": \"一\",\n                                \"Tu\": \"二\",\n                                \"We\": \"三\",\n                                \"Th\": \"四\",\n                                \"Fr\": \"五\",\n                                \"Sa\": \"六\",\n                    \"Email me the report\": \"發送\",\n                \"Copilot premium requests usage report\": \"Copilot 高級請求\",\n                    \"Provides a per user breakdown of requests exhausted and their monthly quota for the current billing period.\": \"提供每個用戶的請求耗盡情況及其當前計費週期的月度配額。\",\n            \"Search or filter usage\": \"搜索或篩選使用情況\",\n\n            //\"Group: None\": \"分組：無\",\n            //\"Group: Product\": \"分組：產品\",\n            //\"Group: SKU\": \"分組：庫存單位\",\n            //\"Group: Repository\": \"分組：倉庫\",\n                \"None\": \"無\",\n                // \"SKU\": \"庫存單位\",\n            \"Metered usage grouped by Product\": \"分組：產品\",\n                \"actions\": \"操作\",\n                \"codespaces\": \"程式碼空間\",\n\n                \"Products\": \"產品\",\n            \"Metered usage grouped by SKU\": \"分組：庫存單位\",\n                \"Actions storage\": \"操作存儲\",\n                \"Codespaces storage\": \"程式碼空間存儲\",\n                \"Actions Windows\": \"操作 Windows\",\n                \"Actions Linux\": \"操作 Linux\",\n                \"Actions macOS 3-core\": \"操作 macOS 三核\",\n                \"Codespaces compute 2-core\": \"程式碼空間 - 雙核\",\n                \"Copilot Premium Request\": \"Copilot 高級請求\",\n            \"Metered usage grouped by Repository\": \"分組：倉庫\",\n                \"All other\": \"其他\",\n\n            \"For license-based products, the price/unit is a prorated portion of the monthly price.\": \"對於基於許可證的產品，每單位價格為月度價格按比例分攤的部分。\",\n\n            // 有上下文，後面重複部分直接省略\n            \"Actions usage\": \"操作\",\n            \"Actions usage grouped by SKU\": \"操作 - 詳細\",\n            \"Copilot usage\": \"Copilot\",\n            \"Copilot usage grouped by SKU\": \"Copilot - 詳細\",\n            \"Codespaces usage\": \"程式碼空間\",\n            \"Codespaces usage grouped by SKU\": \"程式碼空間 - 詳細\",\n            \"Git_lfs usage\": \"Git LFS\",\n            \"Git_lfs usage grouped by SKU\": \"Git LFS - 詳細\",\n            \"Packages usage\": \"軟體包\",\n            \"Packages usage grouped by SKU\": \"軟體包 - 詳細\",\n\n            \"Usage breakdown\": \"用量分析\",\n                \"Date\": \"日期\",\n                \"SKUs\": \"庫存單位\",\n                \"Products\": \"產品\",\n                \"Repositories\": \"倉庫\",\n                \"Units\": \"單位\",\n                \"Price/unit\": \"單價\",\n                \"Billed amount\": \"計費\",\n\n        // 高級請求分析 https://github.com/settings/billing/premium_requests_usage\n            \"Usage analytics for premium requests in your personal account.\": \"在您的個人賬戶中針對高級請求的使用分析。\",\n\n            \"Billed premium requests\": \"計費高級請求\",\n                \"Increase your budget\": \"提高您的預算\",\n                    \"to use premium requests beyond your included request limit.\": \"以便在超出包含請求額度後繼續使用。\",\n\n            \"Included premium requests consumed\": \"包含高級請求\",\n                \"included\": \" \", // 多餘原文，直接刪除\n                \"Premium requests included in your\": \"高級請求包含在您的\",\n                    \"Copilot plan\": \"Copilot 計劃中\",\n                    // 後續走正則\n\n            // 用量分析\n                \"Model\": \"模型\",\n                    \"Included requests\": \"包含請求\",\n                    \"Billed requests\": \"計費請求\",\n                    \"Code Review model\": \"程式碼審查模型\",\n                    \"Coding Agent model\": \"編程智能體模型\",\n\n            // 獲取使用情況報告\n                \"Premium requests usage report\": \"高級請求使用報告\",\n                    \"Detailed per-user breakdown of premium requests consumed.\": \"詳細列出每位用戶消耗的高級請求數量。\",\n                \"Legacy usage report\": \"舊版使用報告\",\n\n        // 預算和警報 https://github.com/settings/billing/budgets\n           \"Account budgets\": \"賬戶預算\",\n                \"New budget\": \"新建\",\n                // \"On\": \"開\",\n                // \"Off\": \"關\",\n                \"Stop usage\": \"停止使用\",\n                \"Yes\": \"是\",\n                \"spent\": \"支出\",\n                \"budget\": \"預算\",\n            \"Budgets let you set monthly usage limits for specific GitHub products or SKUs. If no budget is set, usage for that product is unlimited.\":\"預算允許您為特定的 GitHub 產品或 SKU 設置每月使用限制。如果未設置預算，該產品的使用量將不受限制。\",\n            \"Product\":\"產品類型\",\n\n        // 新建/更新預算 https://github.com/settings/billing/budgets/new\n        // https://github.com/settings/billing/budgets/<id>/edit\n            // 提醒欄\n                \"Info\": \"信息\",\n                \"SKU level budgets are only available for products that have > 1 SKU.\": \"只有擁有大於 1個 SKU 的產品才有 SKU 級別的預算。\",\n\n            \"Budgets and Alerts\": \"預算和警報\",\n            \"New monthly budget\": \"新建月度預算\",\n            \"Edit monthly budget\": \"編輯每月預算\", // edit\n                \"Create a budget to track spending for a selected product and scope.\": \"創建預算以跟蹤選定產品和範圍的支出。\",\n            // 缺失支付方式\n                \"Payment method is missing\":\"支付方式缺失\",\n                \"Please set up a valid payment method before creating or adjusting your budget.\": \"請在創建或調整預算前設置有效的付款方式。\",\n                \"Add payment method\":\"添加支付方式\",\n\n            \"Budget type\": \"預算類型\",\n                \"Set budget for either a product or individual SKU within a product.\": \"為產品或產品中的單個 SKU 設置預算。\",\n                \"Product-level budget\": \"產品級預算\",\n                    \"Codespaces\": \"程式碼空間\",\n                    \"Actions\": \"操作\",\n                    \"Models\": \"模型\",\n                        \"Enable billing to set a budget. See\": \"啟用計費以設置預算。查看\",\n                        \"Models policy configuration\": \"模型策略配置\",\n                    \"Packages\": \"軟體包\",\n                    \"Select 1 product\": \"選擇產品\",\n                \"SKU-level budget\": \"SKU 級預算\",\n                    \"Select\": \"選擇\",\n                    \"Select an item\": \"選擇專案\",\n\n            \"Next: Configure budget\": \"下一步：配置預算\",\n\n            \"All Premium Request SKUs\":\"所有高級請求 SKU\",\n            \"A budget for all SKUs that consume premium requests\":\"所有消耗高級請求的 SKU 的預算\",\n            \"Supported SKUs:\":\"支持的 SKUs：\",\n                \"Coding Agent premium requests\":\"Coding Agent 高級請求\",\n\n            \"Budget scope\": \"預算範圍\",\n                \"Select the scope of spending for this budget.\": \"選擇此預算的支出範圍。\",\n                // 倉庫\n                    \"Scoped budgets track spending for a single repository\": \"範圍預算跟蹤單個倉庫的支出\",\n\n                        \"Select repository\": \"選擇倉庫\",\n                        \"Select the\": \"選擇\",\n                        \"to include in this\": \"包含在此\",\n                        \". You can only add/remove the\": \"您只能添加/刪除您可以訪問的\",\n                        \"that you have access to.\": \"。\",\n                        \"Search repository\": \"搜索倉庫\",\n                        \"Showing\": \"顯示\",\n                        \"of\": \"/\",\n                        // [/(\\d+) selected/, \"$1 個選定\"],\n                // 賬戶\n                    \"Scoped budgets track spending for all repositories owned by your account\": \"範圍預算跟蹤您賬戶下所有倉庫的支出\",\n                    \"Scoped budgets track all spending for your account\": \"範圍預算跟蹤您賬戶的所有支出\",\n\n            \"Budget\": \"預算\",\n                \"Set a budget amount to track your spending on a monthly basis.\": \"設置預算金額以按月跟蹤您的支出。\",\n                \"Usage before budget creation isn't counted in the current billing cycle.\": \"預算創建前的使用情況不會計入當前計費週期。\",\n                \"Budget amount\": \"預算金額\",\n                    \"Stop usage when budget limit is reached\": \"達到預算上限時停止使用\",\n                        \"Spending won't exceed your set budget\": \"支出不會超出您設定的預算\",\n\n            // 警示\n                \"Get emails and GitHub notifications when your spending has reached 75%, 90%, and 100% of the budget threshold.\": \"當您的支出達到預算閾值的 75%、90% 和 100% 時，接收電子郵件和 GitHub 通知。\",\n                \"Receive emails when usage reaches 75%, 90%, and 100% of the budget amount.\":\"當您的支出達到預算閾值的 75%、90% 和 100% 時，接收電子郵件通知。\",\n\n                \"Receive budget threshold alerts\": \"接收預算閾值警報\",\n\n            \"Create budget\": \"創建預算\",\n            \"Update budget\": \"更新預算\", // edit\n\n            // 左下角提示\n                \"Please add a payment method to use budgets.\": \"請添加付款方式，以便使用預算。\",\n\n        // 許可 https://github.com/settings/billing/licensing\n            // Github Copllot\n                \"Your AI pair programmer\": \"您的 AI 編程助理\",\n                    \"You are eligible to use GitHub Copilot for free.\": \"您有資格免費使用 GitHub Copilot。\",\n\n            \"Current plan\": \"當前計劃\",\n                \"Compare all plans\": \"比較所有計劃\",\n                    \"per month\": \"每月\",\n\n                \"GitHub Free\": \"GitHub 免費版\",\n                \"The basics for all developers\": \"基礎計劃（所有開發者）\",\n                //\"GitHub Pro\": \"GitHub 專業\",\n\n                \"The basics for organizations and developers\": \"組織和開發者的基本計劃\", // 組織設置\n                \"Unlimited public/private repos\": \"無限的公共/私有倉庫\",\n                \"Unlimited collaborators\": \"無限協作者\",\n                \"2,000 Actions minutes/month\": \"每月 2,000 分鐘 GitHub Actions\",\n                \"500MB of Packages storage\": \"500MB 的 GitHub Packages 存儲空間\",\n                \"120 core-hours of Codespaces compute per developer\": \"每位開發者擁有 120 個核心小時的程式碼空間計算能力\",\n                \"15GB of Codespaces storage per developer\": \"每位開發者擁有 15GB 的程式碼空間存儲空間\",\n                \"Community support\": \"社區支持\",\n                // pro\n                    \"Downgrade to Free\": \"降級至免費版\",\n                \"3,000 Actions minutes/month\": \"每月 3,000 分鐘 GitHub Actions\",\n                \"2GB of Packages storage\": \"2GB 的 GitHub Packages 存儲空間\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小時的程式碼空間計算時長\",\n                \"20GB of Codespaces storage\": \"20GB 的程式碼空間存儲空間\",\n                \"Code owners, required reviewers, GitHub Pages,\": \"程式碼所有者、所需審核者、GitHub Pages，\",\n                \"and more\": \"以及更多\",\n                \"advanced tools\": \"高級工具\",\n\n                \"Not included:\": \"不包含：\",\n                \"Free Codespaces usage per organization\": \"每個組織的免費程式碼空間使用量\",\n                \"Protected branches on all repos\": \"所有倉庫上的受保護分支\",\n                \"Increase Codespaces\": \"提高程式碼空間\",\n                \"spend limits\": \"消費限額\",\n                \"Multiple reviewers in pull requests\": \"拉取請求中多個審查者\",\n                \"Required status checks\": \"狀態檢查\",\n                \"Code owners\": \"程式碼所有者\",\n                \"Required reviewers\": \"所需的審查者\",\n                \"Pages for static website hosting\": \"靜態網站頁面託管\",\n                \"Web-based support\": \"基於網絡的支持\",\n                \"See all features and compare plans\": \"查看所有功能並比較計劃\",\n\n            \"Active subscription\": \"當前訂閱\",\n                \"Copilot Free\": \"Copilot 免費版\",\n                    \"Upgrade Copilot\": \"升級 Copilot\",\n                    \"You can upgrade to Copilot Pro at any time. Check out this\": \"您可以隨時升級至 Copilot 專業版。詳情查看\",\n                        \"documentation\": \"文檔\",\n                        \"for more details.\": \"。\",\n\n            \"Current GitHub base plan\": \"當前 GitHub 基礎計劃\",\n                \"Compare base plans\": \"比較基礎計劃\",\n                \"Upgrade to GitHub Pro\": \"升級至 GitHub 專業版\",\n                // 有付費計劃\n                    \"Switch to yearly billing\": \"切換至年度計費\",\n                    \"Switch to monthly billing\": \"切換至月度計費\",\n\n            \"Current Copilot plan\": \"當前 Copilot 計劃\",\n                \"Monthly payment\": \"每月支付\",\n                \"Next payment\": \"下次支付\",\n                \"You can upgrade your subscription to yearly billing or cancel any time.\" : \"您可以隨時將訂閱升級為年度計費或取消訂閱。\",\n                \"Read billing documentation\": \"閱讀計費文檔\",\n\n            \"Compare Copilot plans\": \"比較 Copilot 計劃\",\n            \"Upgrade to Copilot Pro+\" : \"升級至 Copilot Pro+\",\n            \"Manage subscription\": \"管理訂閱\",\n            \"Switch to annual billing\": \"切換至年度計費\",\n            \"Cancel subscription\": \"取消訂閱\",\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            ...I18N[\"zh-TW\"][\"payment-module\"][\"static\"], // 調用通用賬單及支付信息模塊\n\n            \"Last payment\": \"最後一次支付\",\n                \"You have not made any payments.\": \"您尚未支付任何款項。\",\n\n            \"Coupon\": \"優惠劵\",\n                \"Redeem a coupon\": \"兌換優惠券\",\n                \"You don't have an active coupon.\": \"您沒有有效的優惠券。\",\n                \"* Discount only applies for GitHub Pro\": \"* 優惠僅限 GitHub Pro。\",\n\n            \"Additional information\": \"附加信息\",\n                \"Add specific contact or tax information to your receipts, like your full business name, VAT/GST identification number, or address of record here. We’ll make sure it shows up on every receipt.\": \"在您的收據上添加具體的聯繫方式或稅務信息，例如您的企業全稱、VAT/GST 識別號碼或記錄地址。我們將確保它顯示在每張收據上。\",\n                \"Add information\": \"添加信息\",\n                \"No additional information added to your receipts.\": \"您的收據上沒有添加任何額外的信息。\",\n                \"Extra information\": \"附加信息\",\n\n                // “額外賬單信息” 對話框\n                    \"Extra billing information\": \"額外的賬單信息\",\n                    \"This information will appear on all your receipts.\": \"此信息將出現在您的所有收據上。\",\n                    \"For your security, do not include any confidential or financial information (like credit card numbers).\": \"為了您的安全，請勿包含任何機密或財務信息（如信用卡號）。\",\n                    \"To update the information that appears on\": \"要更新顯示在\",\n                        \"invoices\": \"發票\",\n                        \"(if enabled), visit the\": \"上的信息（如果已啟用），請訪問\",\n                    \"Full business name or address of record\": \"企業全稱或記錄地址\",\n                    \"Save contact information\": \"保存聯繫信息\",\n                    \"Saving contact information…\": \"正在保存聯繫信息…\",\n                    // 頂部提醒\n                        \"Updated your optional contact information, it will show up on your next receipt.\": \"已更新您的可選聯繫信息，該信息將顯示在您的下一張收據上。\",\n\n            // 組織\n            \"Invoice\": \"發票\",\n                \"Receive an invoice for your GitHub purchases\": \"接收 GitHub 購物發票\",\n\n                \"The data from Billing Information, such as your address and VAT/GST ID will appear on your invoices.\": \"賬單信息中的數據，如您的地址和增值稅/消費稅 ID，將顯示在您的發票上。\",\n                \"Update your information displayed on your invoices in the\": \"更新發票上顯示信息中的\",\n                \"billing information section\": \"賬單信息欄\",\n\n                \"Automatically receive an invoice alongside the payment receipt\": \"在收到付款收據的同時自動接收發票\",\n                    \"* Enables invoices for all NEW payments.\": \"* 為所有新付款啟用發票。\",\n                \"Save invoice preference\": \"保存發票首選項\",\n\n            // 組織\n            \"Metered billing via Azure\": \"通過 Azure 計量計費\",\n                \"Add Azure Subscription\": \"添加 Azure 訂閱\",\n                \"To manage metered billing for this account through Microsoft Azure an Azure Subscription ID must be added to your account.\": \"通過 Microsoft Azure 管理此賬戶的計量計費，必須將 Azure 訂閱 ID 添加到您的賬戶中。\",\n\n        // 支付歷史 https://github.com/account/billing/history\n            \"Amounts shown in USD\": \"以美元顯示的金額\",\n\n        // 其他賬單 https://github.com/settings/billing/subscriptions\n            // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除個人賬戶外，您還可以管理 $1 個組織。\"],\n            \"Manage your organizations\": \"管理您的組織\",\n                \"Create a new organization\": \"創建新組織\",\n\n            \"Start your first organization\": \"開始您的第一個組織\",\n                \"With CI/CD, Dependabot, and the world's largest developer community, GitHub gives your team everything they need to ship better software faster\": \"通過 CI/CD、Dependabot 以及全球最大的開發者社區，GitHub 為您的團隊提供了交付更優質軟體所需的一切，讓開發更高效、更快捷。\",\n                \"Create an organization\": \"創建組織\",\n\n            \"Marketplace apps\": \"市場應用\",\n                \"Change plan\": \"更改計劃\",\n                \"Cancel plan\": \"取消計劃\",\n                    \"Are you sure you want to cancel this integration?\": \"您確定要取消此集成嗎？\",\n                    // 頂部提醒\n                        // [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消對 $1 的訂閱。此計劃變更將於 $2 生效。\"],\n                        \"Dismiss\": \"忽略\",\n                \"Do you have any questions? Contact\": \"您有任何問題嗎？請聯繫\",\n\n            // 組織設置\n            \"Billing Contacts\": \"賬單聯繫人\",\n                \"Receipts are sent to billing managers and email recipients.\": \"收據會被發送給賬單管理員和郵件接收者。\",\n\n                \"Billing managers\": \"賬單管理員\",\n                    \"You have not invited any billing managers\": \"您尚未邀請任何賬單管理員\",\n                    \"Invite\": \"邀請\",\n\n                \"Email recipients\": \"郵件接收者\",\n                    \"Add\": \"添加\",\n                    \"Primary\": \"主賬戶\",\n\n                    // 編輯賬單電子郵箱對話框\n                        \"Edit billing email address\": \"編輯賬單電子郵箱\",\n                        \"Billing primary email\": \"賬單主賬戶郵箱\",\n                        \"(Private)\": \"（私密）\",\n\n                    // 添加賬單接收者對話框\n                        \"Add billing recipient\": \"添加賬單接收者\",\n                        \"Add billing recipient email\": \"添加賬單接收者郵箱\",\n\n            \"Sponsorships\": \"贊助\",\n                \"GitHub Sponsors\": \"GitHub 贊助\",\n                    \"Connect with the community that builds the tools you use\": \"與構建您使用的工具的社區聯繫\",\n                    \"Start sponsoring\": \"開始贊助\",\n                    \"You're currently not sponsoring anyone.\": \"您目前沒有贊助任何人。\",\n                    \"Learn more about GitHub Sponsors\": \"瞭解更多關於 GitHub 贊助的信息\",\n                    \"Switch to invoiced billing\": \"切換到發票賬單\", // 組織\n\n        // 比較計劃 https://github.com/account/billing/plans\n            \"Compare plans\": \"比較計劃\",\n            \"Free\": \"免費版\",\n                \"All the basics\": \"所有基礎\",\n            \"Pro\": \"專業版\",\n                \"Advanced tools for private repos\": \"用於私人倉庫的高級工具\",\n            // 具體內容\n                \"Code management\": \"程式碼管理\",\n                    \"Public repositories\": \"公共倉庫\",\n                        \"Host open source projects in public GitHub repositories, accessible via web or command line. Public repositories are accessible to anyone at GitHub.com.\": \"在 GitHub 公共倉庫中託管開源專案，可通過網絡或命令行訪問。任何人都可以訪問 GitHub.com 上的公共倉庫。\",\n                    \"Private repositories\": \"私有倉庫\",\n                        \"Host code in private GitHub repositories, accessible via appliance, web, and command line. Private repositories are only accessible to you and people you share them with.\": \"在私有 GitHub 倉庫中託管程式碼，可通過設備、網絡和命令行訪問。只有您和與您共享的人才能訪問私有倉庫。\",\n\n                \"Code workflow\": \"程式碼工作流\",\n                    \"GitHub Codespaces\": \"GitHub 程式碼空間\",\n                        \"Spin up fully configured dev environments in the cloud with the power of your favorite editor. A \\\"core hour\\\" denotes compute usage. On a 2-core machine, you would get 60 hours free. On a 4-core machine, you would get 30 hours free, etc. Free hours are assigned to personal accounts, rather than free organizations.\": \"利用您喜愛的編輯器的強大功能，在雲中快速配置完整的開發環境。“核心小時” 表示計算使用量。在雙核機器上，您將獲得 60 小時的免費時長。在 4 核機器上，您將獲得 30 小時的免費時長，以此類推。免費時長數分配給個人賬戶，而不是免費組織。\",\n                    \"GitHub Actions\": \"Github 操作\",\n                        \"Use execution minutes with GitHub Actions to automate your software development workflows. Write tasks and combine them to build, test, and deploy any code project on GitHub. Minutes are free for public repositories.\": \"利用 GitHub Actions 的幾分鐘執行時間，實現軟體開發工作流程自動化。編寫任務並組合它們，即可在 GitHub 上構建、測試和部署任何程式碼專案。對於公共倉庫，執行時間是免費的。\",\n                        \"Learn more about billing\": \"瞭解更多關於賬單的信息\",\n                    \"GitHub Packages\": \"Github 軟體包\",\n                        \"Host your own software packages or use them as dependencies in other projects. Both private and public hosting available. Packages are free for public repositories.\": \"託管您的軟體包，或將其用作其他專案的依賴項。提供私有和公共託管。對於公共倉庫，軟體包是免費的。\",\n                    \"Code reviews\": \"程式碼審查\",\n                        \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"審查新程式碼，查看可視化的程式碼更改，並通過自動化狀態檢查自行地合併程式碼更改。\",\n                    // 拉取請求\n                        \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允許貢獻者輕鬆通知您他們推送到倉庫的更改，訪問權限僅限於您指定的貢獻者。輕鬆合併您接受的更改。\",\n                    \"Protected branches\": \"受保護的分支\",\n                    \"Repository rules\":\"倉庫規則\",\n                        \"Enforce restrictions on how code branches are merged, including requiring reviews by selected collaborators, or allowing only specific contributors to work on a particular branch.\": \"對程式碼分支的合併方式實施限制，包括要求由選定的協作者進行審查，或僅允許特定的貢獻者在特定分支上工作。\",\n                    // 程式碼所有者\n                        \"Automatically request reviews – or require approval – by selected contributors when changes are made to sections of code that they own.\": \"當選定的貢獻者對其擁有的程式碼部分進行修改時，自動要求審查或要求批准。\",\n                    \"Draft pull requests\": \"拉取請求草案\",\n                        \"Easily discuss and collaborate on pull requests before submitting to formal review.\": \"在提交正式審查之前，輕鬆討論和協作拉取請求。\",\n                    \"Multiple pull request assignees\": \"多個拉取請求受理人\",\n                        \"Assign more than one person to a pull request.\": \"為拉取請求指派多人受理。\",\n                    \"Repository insights\": \"倉庫洞察\",\n                        \"See data about activity and contributions within your repositories, including trends. You can use this data to improve collaboration and make development faster and more effective.\": \"查看有關倉庫中的活動和貢獻數據，包括趨勢。您可以利用這些數據來改善協作，使開發更加迅速和有效。\",\n                    // 定時提醒\n                        \"Send scheduled messages to you or your team listing open pull requests.\": \"按計劃的向您或您的團隊發送信息，列出打開的拉取請求。\",\n                    \"Automatic code review assignment\": \"自動程式碼審查分配\",\n                        \"Automatically assign code reviews to members of your team based on one of two algorithms.\": \"根據兩種算法之一，自動為團隊成員分配程式碼審查。\",\n                    \"Environment protection rules\": \"環境保護規則\",\n                        \"When a workflow job references an environment, the job won't start until all of the environment's protection rules pass.\": \"當工作流作業引用環境時，只有環境的所有保護規則都通過後，作業才會啟動。\",\n                    \"Environment deployment branches and secrets\": \"環境部署分支和機密\",\n                        \"A job cannot access secrets that are defined in an environment unless it is running on the specified branch.\": \"除非作業在指定的分支上運行，否則無法訪問環境中定義的機密。\",\n\n                \"Collaboration\": \"協作\",\n                    \"Collaborators for public repositories\": \"公共倉庫協作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a public repository you control – including making changes and opening issues.\": \"邀請任何 GitHub 成員或所有 GitHub 成員，在您控制的公共倉庫上與您共同處理程式碼，包括進行更改和提出議題。\",\n                    \"Collaborators for private repositories\": \"私有倉庫協作者\",\n                        \"Invite any GitHub member, or all GitHub members, to work with you on code in a private repository you control – including making changes and opening issues.\": \"邀請任何 GitHub 成員或所有 GitHub 成員，在您控制的私有倉庫上與您共同處理程式碼，包括進行更改和提出議題。\",\n                    // 議題\n                        \"Track bugs, enhancements, and other requests, prioritize work, and communicate with stakeholders as changes are proposed and merged.\": \"跟蹤漏洞、增強功能和其他請求，確定工作的優先級，並在提出和合併變更時與利益相關者溝通。\",\n                    // 專案\n                        \"Visualize and manage issues and pull requests across tables, boards, and roadmaps with custom fields and views that you can arrange to suit your workflow.\": \"通過自定義字段和視圖，在表格、面板和路線圖上可視化管理議題和拉取請求，以適應您的工作流程。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Track progress on groups of issues or pull requests in a repository, and map groups to overall project goals.\": \"跟蹤倉庫中議題或拉取請求組的進展，並將組映射到整體專案目標。\",\n                    // 團隊討論\n                    \"Team discussions\": \"團隊討論\",\n                        \"Discuss any topic, unattached to a specific project or issue. Control who has access, notify discussion participants with updates, and link from anywhere.\": \"討論任何主題，不與特定專案或議題相關。控制訪問權限，通知討論參與者最新情況，並從任何地方進行鏈接。\",\n                    \"Organization and team management\": \"組織和團隊管理\",\n                        \"Manage access to projects on a team-by-team, or individual user, basis.\": \"以團隊或個人用戶為基礎管理對專案的訪問。\",\n                    \"Pages and wikis\": \"GitHub Pages 和 Wiki\",\n                        \"Host documentation and simple websites for your project in a wiki format that contributors can easily edit either on the web or command line.\": \"以 Wiki 格式為您的專案託管文檔和簡單網站，貢獻者可以輕鬆在網絡或命令行上進行編輯。\",\n                    \"Multiple issue assignees\": \"多個議題受理人\",\n                        \"Assign more than one person to an issue.\": \"為議題指派多人受理\",\n                    \"GitHub organizations give you team-based access control and discussions.\": \"GitHub 組織為您提供基於團隊的訪問控制和討論。\",\n                        \"Learn more about organizations\": \"瞭解更多關於組織的信息\",\n\n                \"Platform security and compliance\": \"平臺安全性與合規性\",\n                    \"Repository rulesets\": \"倉庫規則集\",\n                        \"Enforce consistent code standards, security, and compliance across branches and tags.\": \"跨倉庫分支和標籤，一致的程式碼標準、安全性和合規性。\",\n                    // SBOMs\n                        \"Export a software bill of materials (SBOM) for your repository.\": \"為倉庫導出軟體物料清單 (SBOM)。\",\n                    \"Artifact attestations\": \"附件證明\",\n                        \"Ensure unfalsifiable provenance and integrity for your software.\": \"確保軟體的不可篡改性和完整性。\",\n                    \"GitHub Security Advisories\": \"GitHub 安全公告\",\n                    \"Role-based access control\": \"基於角色的訪問控制\",\n                        \"Define users' level of access to your code, data and settings.\": \"定義用戶訪問程式碼、數據和設置的級別。\",\n                    \"Required 2FA\": \"雙因素身份驗證（2FA）\",\n                        \"Use an extra layer of security with two factor authentication (2FA) when logging into GitHub.\": \"登錄 GitHub 時，使用雙因素身份驗證（2FA）作為額外的安全層。\",\n                    // 審計日誌\n                        \"Quickly review the actions performed by members of your organization.\": \"快速審查組織成員執行的操作。\",\n                    \"Enterprises can connect to advanced systems like LDAP and SAML single sign-on (SSO).\": \"企業可以連接到如 LDAP 和 SAML 單一登錄 (SSO) 等高級系統。\",\n                        \"Learn more about GitHub Enterprise\": \"瞭解更多關於 GitHub 企業版的信息。\",\n\n                \"Marketplace and integrations\": \"市場和集成\",\n                    // Github應用\n                        \"Install apps that integrate directly with GitHub's API to improve development workflows – or build your own for private use or publication in the GitHub Marketplace.\": \"安裝直接與 GitHub API 集成的應用，改進開發工作流程，或創建自己的應用，供個人使用或在 GitHub 市場發佈。\",\n                    \"Status checks\": \"狀態檢查\",\n                        \"Define tests that GitHub automatically runs against code being committed to your repository, and get details about failures and what is causing them.\": \"定義 GitHub 針對提交到倉庫的程式碼自動運行的測試，並獲取有關失敗和失敗原因的詳細信息。\",\n                    \"Enterprise Server customers create pre-receive hooks to automatically accept or reject a push.\": \"企業服務器客戶創建預接收掛鉤，以自動接受或拒絕推送。\",\n                        \"Learn more about pre-receive hooks\": \"瞭解更多關於預接收掛鉤的信息。\",\n\n                \"Support and deployment\": \"支持與部署\",\n                    \"Community Support\": \"社區支持\",\n                        \"Get help with most of your GitHub questions and issues in our Community Forum.\": \"在我們的社區論壇中，獲取大多數有關 GitHub 問題和議題的幫助。\",\n                    \"Standard Support\": \"標準支持\",\n                        \"GitHub Support can help you troubleshoot issues you run into while using GitHub. Get support via the web.\": \"GitHub 支持可幫助您解決使用 GitHub 時遇到的問題。通過網絡獲取支持。\",\n                    \"Enterprises also get Premium Support, invoice billing, and self-hosted deployment.\": \"企業還可以獲得高級支持、發票計費和自託管部署。\",\n                       // \"Learn more about GitHub Enterprise\": \"瞭解更多關於 GitHub 企業版的信息。\",\n\n                // 表格中內容\n                    \"per user/month\": \"每人/月\",\n                    \"Upgrade to Pro\": \"升級到專業版\",\n                    \"Unlimited\": \"無限\",\n                    \"$0 spend limit\": \"$0 支出限額\",\n                        \"With policies and controls\": \"帶策略及限制\",\n                    \"180 core-hours compute/month and 20GB storage\": \"每月 180 個核心小時計算和 20GB 存儲\",\n                    \"2,000 minutes/month\": \"2000 分鐘/月\",\n                        \"Free for public repositories\": \"免費用於公共倉庫\",\n                    \"3,000 minutes/month\": \"3,000 分鐘/月\",\n                    \"Public repositories\": \"公共倉庫\",\n\n        // 組織設置 邀請賬單管理員 '/organizations/<org-login>/billing_managers/new'\n            \"Billing\": \"賬單\",\n            \"/ Add a billing manager\": \"/ 添加賬單管理員\",\n            \"A\": \" \",\n            \"billing manager\": \"賬單管理員\",\n            \"is a user who manages the billing settings of your organization.\": \"是管理您組織的賬單設置的用戶。\",\n            \"will\": \"會\",\n            \"will not\": \"不會\",\n            \"have the ability to:\": \"具備以下能力：\",\n                \"Change the billing plan\": \"更改賬單計劃\",\n                \"Add, update, or remove payment methods\": \"添加、更新或刪除支付方式\",\n                \"View payment history\": \"查看支付記錄\",\n                \"Download, and receive receipts\": \"下載並接收收據\",\n                \"View a list of billing managers\": \"查看賬單管理員列表\",\n                \"Invite additional billing managers\": \"邀請其他賬單管理員\",\n                \"Remove other existing billing managers\": \"移除其他現有的賬單管理員\",\n                \"Start, modify, or cancel sponsorships\": \"開始、修改或取消贊助\",\n            \"be able to:\": \"能夠：\",\n                \"Create or access repositories in your organization\": \"在您的組織中創建或訪問倉庫\",\n                \"See private members of your organization\": \"查看您組織的私人成員\",\n                \"Be seen in the list of organization members\": \"在組織成員列表中可見\",\n                \"Use the organization’s payment method\": \"使用組織的支付方式\",\n                \"Enable or manage Copilot\": \"啟用或管理 GitHub Copilot\",\n                \"Purchase, edit, or cancel Marketplace subscriptions\": \"購買、編輯或取消市場訂閱\",\n\n            \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n            \"Send invitation\": \"發送邀請\",\n\n            // 加載\n            \"Loading Actions data...\": \"加載操作數據…\",\n            \"Loading Packages data...\": \"加載軟體包數據…\",\n            \"Loading Shared Storage data...\": \"加載共享存儲數據…\",\n            \"Loading Codespaces data...\": \"加載程式碼空間數據…\",\n            \"Loading usage breakdown…\": \"正在加載使用明細…\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        // 高級請求分析（詞條打架調整位置） https://github.com/settings/billing/premium_requests_usage\n        [/. Monthly limit resets in (\\d+) days? on (.+)./, \"。將在 $1 天后（$2）重置。\"],\n        [/Usage for (.+) - (.+). Price per premium request is \\$0.04./, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}用量。高級請求價格為 $0.04 / 個。`;\n        }],\n        [/Per-user breakdown of premium requests in the last 45 days. Sunsetting(.*)\\./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `過去 45 天內每用戶高級請求明細。${translatedDate} 日落`;\n        }],\n\n        // billing 概況頁面\n        [/(?:Gross metered usage|Included usage discounts) for (.+) - (.+).$/, (match, p1, p2) => { // 概況下方小字，過於囉嗦直接省略\n            //const translatedP1 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p1] || p1;\n            //const translatedP2 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p2] || p2;\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `${translatedP1}-${translatedP2}`;\n        }],\n        //[/Included usage discounts for (.+) - (.+)./, (match, p1, p2) => {\n        //    const translatedP1 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p1] || p1;\n        //    const translatedP2 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p2] || p2;\n        //    return `${translatedP1}-${translatedP2}`;\n        //}],\n        [/([\\d,]+) min used \\/ ([\\d,]+) min included/, \"$1 / $2 分鐘\"],\n        //(\\d+) min used \\/ ([\\d,+]) min included\n        [/(\\d+) GB used \\/ (\\d+) GB included/, \"$1/$2 GB\"],\n        // 當前包含用量 - 詳情 對話框\n            [/Current usage for (.+) - (.+). Monthly quota resets in (\\d+) day\\(s\\)./, (match, p1, p2, p3) => {\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedP1 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                const translatedP2 = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n                return `統計時間段：${translatedP1}-${translatedP2}。本月配額將在${p3}天內重置。`;\n            }],\n            [/([\\d,+]) included Actions minutes \\(~(\\$\\d+\\.\\d+) off\\*\\)/, \"$1 操作分鐘數（~$2 減免*）\"],\n            [/~(\\$\\d+\\.\\d+) off\\*/, \"~$1 減免*\"],\n            [/~(\\$\\d+(\\.\\d+)?) off/, \"~$1 減免\"],\n\n            [/([\\d,+]) included Actions minutes/, \"$1 操作分鐘數\"],\n            [/(\\d+) GB included Actions storage/, \"$1 GB 操作存儲\"],\n            [/(\\d+) GB included Git LFS bandwidth/, \"$1 GB Git LFS 帶寬\"],\n            [/(\\d+) GB included Git LFS storage/, \"$1 GB Git LFS 存儲\"],\n            [/(\\d+) GB included Packages data transfer/, \"$1 GB 軟體包數據傳輸\"],\n            [/(\\d+) GB included Packages storage/, \"$1 GB 軟體包存儲\"],\n            [/Discount for usage in public repositories \\((\\d+%) off\\)/, \"公共倉庫使用折扣（$1 減免）\"],\n            [/(\\d+) GB included Codespaces storage/, \"$1 GB 程式碼空間存儲\"],\n            [/(\\d+) included Codespaces core hours/, \"$1 程式碼空間核心小時數\"],\n            [/(\\d+) requests/, \"$1 請求\"],\n            [/Cost calculated based on (\\d+) Spark premium requests? that exceed the premium request usage included with your Copilot licenses./, \"根據您的 Copilot 許可證中包含的高級請求使用量，計算出 $1 個超出部分的 Spark 高級請求費用。\"],\n\n        // 計費用量 - 右上角時間選項\n            [/^Timeframe: (Today|Current month|Last month|This year \\((\\d+)\\)|Last year \\((\\d+)\\))$/, (match, p1, p2, p3) => {\n                switch (p1) {\n                  case 'Today':\n                    return '時間段：今天';\n                  case 'Current month':\n                    return '時間段：本月';\n                  case 'Last month':\n                    return '時間段：上個月';\n                  case `This year (${p2})`:\n                    return `時間段：今年（${p2}）`;\n                  case `Last year (${p3})`:\n                    return `時間段：去年（${p3}）`;\n                  default:\n                    return match;\n                }\n            }],\n            //Timeframe: Current month\n            [/This year \\((\\d+)\\)/, \"今年（$1）\"],\n            [/Last year \\((\\d+)\\)/, \"去年（$1）\"],\n        // 計費用量 - 今天 日期標題\n            [/(.+) \\(All times in UTC\\)/, (match, p1) => {\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}（UTC時間）`;\n            }],\n        // 計費用量圖表 數據卡\n            [/(Usage|codespaces|actions|Codespaces storage|Codespaces compute 2-core|Actions Windows|Actions macOS 3-core|Actions Linux|Actions storage|All other) (?:[^ ]+), (.+)/, (match, s1, p1) => {\n                //const translatedP1 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p1] || p1;\n                //const translatedP2 = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"][p2] || p2;\n                var s1Key = {'Usage': '用量','actions': '操作', 'codespaces': '程式碼空間', 'Codespaces storage': '程式碼空間存儲', 'Codespaces compute 2-core': '程式碼空間 - 雙核','Actions Windows': '操作 Windows', 'Actions Linux': '操作 Linux','Actions macOS 3-core': '操作 macOS 三核','Actions storage': \"操作存儲\",'All other': '其他'};\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}` + s1Key[s1];// 星期幾暫時省略\n            }],\n        // 計費用量 - 今天 X軸\n            [/(\\d+)(AM|PM)/, (match, p1, p2) => {\n                // 運行規則：非12AM照搬，PM數字加12，12AM=0\n                let hour = parseInt(p1, 10);\n                if (p2 === \"PM\" && hour !== 12) {\n                    hour += 12;\n                } else if (p2 === \"AM\" && hour === 12) {\n                    hour = 0;\n                }\n                return `${hour}:00`;\n            }],\n\n        // 計費用量 - 按倉庫統計\n            [/Top (three|four|five) repositories (today|this month|last month|this year|)/, function(all , num, time) {\n                var numKey = {\"three\": \"三\", \"four\": \"四\", \"five\": \"五\"}\n                var timeKey = {\"today\": \"今天\",\"this month\": \"這個月\",\"last month\": \"上個月\",\"this year\": \"今年\",\"last year\": \"去年\"};\n                return timeKey[time] + \"排名前\" + numKey[num] + \"的倉庫\";\n            }],\n\n        // 計費用量 - 底下計算部分\n            [/Cost calculated based on additional (\\d+) premium requests?/, \"費用計算基於額外的 $1 高級請求\"],\n            [/Cost calculated based on additional (\\d+) premium requests for Copilot and Spark./, \"費用計算基於 Copilot 和 Spark 的 $1 項額外高級請求。\"],\n            [/Cost calculated based on additional (\\d+) token units/, \"費用根據額外的 $1 項令牌單位計算\"],\n\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro yearly plan./, \"計劃變更成功。@$1 已更新為專業版年度計費。\"],\n        // [/The plan change was successful. @([^ ]+) has been updated to the pro monthly plan./, \"計劃變更成功。@$1 已更新為專業版月度計費。\"],\n        // [/We're preparing your report! We’ll send an email to ([^@]+@[^\\n]+) when it’s ready./, \"我們正在準備您的報告！完成後，我們將發送電子郵件至 $1。\"], //頂部提醒\n        // [/Included minutes quota resets? in (\\d+) days?./, \"包含的分鐘配額將在 $1 天之內重置\"],\n        // [/Data transfer quota resets? in (\\d+) days?./, \"數據傳輸配額將在 $1 天之內重置\"],\n        // //[/Included minutes quota resets/, \"\"],\n        // [/Included quotas resets? in (\\d+) days?./, \"包含的配額將在 $1 天之內重置\"],\n        // [/Bandwidth quota resets? in (\\d+) days?./, \"帶寬使用配額將在 $1 天之內重置\"],\n        // [/In addition to your personal account, you manage (\\d+) organizations?./, \"除了您的個人賬戶之外，您還管理 $1 個組織。\"],\n        // [/Leaving it at (\\$\\d+\\.\\d{2}) will avoid any extra expenses/, \"將其限制在 $1 美元將避免任何額外的費用。\"],\n        // [/isn’t a GitHub member/, \"不是 GitHub 成員\"], // 組織設置\n        // [/of ([\\d,]+\\.\\d{2}) min included/, \"/ $1 分鐘\"],\n        // [/(?:GB )?of ([^ ]+) GB(?: included)?/, \"/ $1 GB\"],\n        // //[/of ([^ ]+) GB( included)?/, \"/ $1 GB\"],\n        // [/of (\\d+\\.\\d{2}) included core hours used/, \"/ $1 核心小時數\"],\n        // [/of (\\d+\\.\\d{2}) included GB-month used/, \"/ $1 GB/每月\"],\n        // [/Last (\\d+) days/, \"最近 $1 天\"],\n        // [/Included minutes quota only applies to Ubuntu 2-core, Windows 2-core and macOS 3-core runners\\. Windows 2-core and macOS 3-core runners consume included minutes at higher rates\\. Your (\\d+\\.\\d+) included minutes used consists of (.*)/, \"包含的分鐘配額僅適用於雙核 Ubuntu、雙核 Windows 和三核 macOS 運行器。雙核 Windows 和三核 macOS 運行器以更高的速度消耗包括的分鐘數。您已使用的 $1 分鐘包含分鐘數由 $2 組成。\"],\n        // [/(\\$\\d+\\.\\d{2})\\/month/, \"$1/月\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ month/, \"-$1/月\"],\n        // [/(\\$\\d+\\.\\d{2})\\/year/, \"$1/年\"],\n        // [/(\\$\\d+\\.\\d{2}) off \\/ year/, \"-$1/年\"],\n        // [/(Due by|On|Expires) (.+)/, (match, opt, p1) => {\n        //     var optKey = {\"Due by\": \"結算\", \"On\": \"開始\", \"Expires\": \"到期\"};\n        //     const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n        //     const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n        //     return `${translatedDate}` + optKey[opt];\n        // }],\n\n        // 計費用量 https://github.com/settings/billing/usage + 高級請求分析 https://github.com/settings/billing/premium_requests_usage\n            [/^Group(?: by)?: (None|Product|SKU|Repository|Models)$/, function(all, group) {\n                var groupKey = {'None': '無','Product': '產品','SKU': 'SKU','Repository': '倉庫', 'Models': '模型'};\n                return '分組：' + groupKey[group];\n            }],\n            [/Usage for (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `${translatedDate}`; // 有標題作為上下文，直接省略，只剩日期\n            }],\n            [/(\\d+) min$/, \"$1 分\"],\n            [/([\\d,+]\\.\\d+|[\\d,+]) GB-hr/, \"$1 GB/時\"],\n            [/(\\d+\\.\\d+) hr/, \"$1 小時\"],\n\n        // 使用情況\n            [/We're preparing your usage report. It may take ~30 minutes to see usage in your report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我們正在準備您的使用報告。可能需要大約 30 分鐘。報告準備好後，我們會發送電子郵件到 $1。\"],\n            [/We're preparing your usage report. We'll send an email to ([^@]+@[^\\n]+) when it's ready./, \"我們正在準備您的使用報告。報告準備好後，我們會發送電子郵件到 $1。\"],\n            [/Your usage report request is already in progress. Check ([^@]+@[^\\n]+) for the report when it's ready./, \"您的使用報告請求正在處理。報告準備好後，請到 $1 查收。\"],\n            // 獲取使用報告窗口\n            [/The usage report will be emailed when it's ready to ([^@]+@[^\\n]+)./, \"使用報告準備好後，將通過電子郵件發送到 $1。\"],\n              // 傳統選項\n              //[/Metered usage before the billing transition, until (.+)/, (match, p1) => {\n              //  const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n              //  const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n              //  return `計費切換前的計量使用情況，截至${translatedDate}`;\n              //}],\n\n        // 賬戶預算 https://github.com/settings/billing/budgets\n            [/(\\d+) budgets?/, \"$1 預算\"],\n\n        // 支付信息 https://github.com/settings/billing/payment_information\n            [/(\\$\\d+\\.\\d{2}) off per month for (\\d+) years/, \"每月優惠 $1，為期 $2 年\"],\n            [/until (.+)./, (match, p1) => {\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `直到 ${translatedDate}。`;\n            }],\n\n        // 其他賬單 https://github.com/settings/billing/subscriptions\n            [/In addition to your personal account, you manage (\\d+) organizations?./, \"除個人賬戶外，您還可以管理 $1 個組織。\"],\n            [/([^ ]+) support/, \"$1 支持\"],\n            [/You've cancelled your subscription to (.*). This plan change will take effect on (.*)./, \"您已取消對 $1 的訂閱。此計劃變更將於 $2 生效。\"],\n\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Billing Overview\": \"賬單概覽\",\n            \"Billing Usage\": \"計費用量\",\n            \"Premium request analytics\": \"高級請求分析\",\n            \"Budgets\": \"預算\",\n            \"Billing\": \"賬單\",\n            \"Payment Information\": \"支付信息\",\n            \"Payment history\": \"支付歷史\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"account/billing/history\"] = I18N[\"zh-TW\"][\"settings/billing\"];\nI18N[\"zh-TW\"][\"orgs/settings/billing\"] = I18N[\"zh-TW\"][\"settings/billing\"];\nI18N[\"zh-TW\"][\"orgs/billing_managers/new\"] = I18N[\"zh-TW\"][\"settings/billing\"];\nI18N[\"zh-TW\"][\"orgs/billing/history\"] = I18N[\"zh-TW\"][\"settings/billing\"];\nI18N[\"zh-TW\"][\"orgs/billing/plans\"] = I18N[\"zh-TW\"][\"settings/billing\"];\n\nI18N[\"zh-TW\"][\"settings/education/benefits\"] = {  // 設置 - 賬單和計劃（新）- 教育福利\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置\n\n        \"GitHub Education\": \"GitHub 教育\",\n\n        \"Free GitHub developer resources for students and teachers\": \"為學生和教師提供免費的 GitHub 開發者資源\",\n\n        \"Education Benefits\": \"教育福利\",\n            \"Complete a teacher or student application to unlock tools and resources for your educational journey.\": \"完成教師或學生申請，解鎖教育旅程所需的工具和資源。\",\n            //\"You have a current student coupon applied.\": \"您當前已應用學生優惠券。\",\n            \"You have a current student coupon applied. Find more information on your benefits\": \"您當前已應用學生優惠券。詳情查看\",\n                \"here\": \"這裡\",\n            \"Start an application\": \"申請\",\n                \"You have not submitted an application for education benefits.\": \"沒有申請\",\n\n                \"Education Benefits Application\": \"教育福利申請\",\n                    \"Select your role in education: *\": \"選擇您的角色：*\",\n                        \"Teacher\": \"教師\",\n                        \"Student\": \"學生\",\n\n                        \"What is the name of your school? *\": \"學校名稱 *\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page. A minimum of two characters is required to find your school.\": \"如果您的學校未在列表中，請輸入完整的學校名稱並繼續。下一頁將要求您提供有關學校的更多信息。查找學校至少需要輸入兩個字符。\",\n                            // 提醒設置學校郵箱\n                                \"We require applicants of\": \"我們要求申請者\",\n                                \"to use one of these school-issues email addresses to apply:\": \"使用以下學校發放的電子郵箱地址進行申請：\",\n                                \"add and verify your\": \"添加並驗證您的\",\n                                \"school-issued email address\": \"學校發放的電子郵箱地址\",\n                                \"in your account settings -- or a contact email if you do not have one. Once your email is verified, you can try applying again.\": \"在您的賬戶設置中——若未設置郵箱，請填寫聯繫郵箱。郵箱驗證通過後，即可重新嘗試申請。\",\n\n                        \"What is your school email address?\": \"教育郵箱地址\",\n                            \"Have a different email address you use with your school?\": \"您是否有其他在校使用的電子郵件地址？\",\n                            \"Add it here.\": \"添加\",\n\n                        \"You have verified the email address\": \"您已驗證郵件\",\n                        \"on your GitHub account. This academic domain is associated with the school\": \"。該域名屬於：\",\n                        \"Unselect this school\": \"取消選擇此學校\",\n\n                        \"Share Location\": \"位置共享\",\n                        \"Location shared\": \"位置已共享\",\n                        \"Continue\": \"繼續\",\n\n                        \"Please select the type of proof you would like to provide *\": \"請選擇您希望提供的證明類型 *\",\n                        \"1. Dated school ID - Good\": \"1. 註明日期的學校證件 - 完整\",\n                        \"What is a valid proof of education?\": \"什麼是有效的教育證明？\",\n                        \"Good\": \"完整\",\n                            \"proof requires infinite academic affiliation documentation most likely to help you be approved.\": \"的證明需要詳盡的學術關係文件，以最大限度地幫助您通過審核。\",\n                        \"For\": \"部分\",\n                            \"proof types may lower your chances of being approved.\": \"證明類型可能會降低您的審核通過概率。\",\n                        \"Poor\": \"無效\",\n                            \"proof types are unlikely to be acceptable.\": \"的證明類型通常無法被接受。\",\n\n                        \"There was an error creating the discount request. Errors: Discount request could not be created. Discount request errors: School email must be verified on your GitHub account\": \"創建折扣請求時出錯。錯誤信息：無法創建折扣請求。折扣請求錯誤：學校郵箱必須在您的 GitHub 賬戶中完成驗證\",\n\n                \"Application Type:\": \"申請類型：\",\n\n            \"Approved\": \"批准\",\n                // 等待\n                    \"Coupon applied\": \"優惠券已應用\",\n                    \"Expires in almost 2 years\": \"有效期大約 2年\",\n                    \"Your academic status has been verified. Congratulations!\": \"您的學術狀態已驗證。恭喜！\",\n                    \"Your academic benefits, including Partner offers, will become available after 72 hours of your verification.\": \"您的學術福利，包括合作伙伴優惠，將在您資格審核通過後的 72 小時內生效。\",\n                    \"Once the benefits become available, you will be able to access the Students Developer Pack offers\": \"權益生效後，您將可以訪問學生開發者禮包優惠在\",\n                    \"To redeem your Copilot Pro coupon, please sign up via this\": \"要兌換您的 Copilot Pro 優惠券，請訪問此\",\n                    \"link\": \"鏈接\",\n                    \"We hope you enjoy your GitHub Education benefits.\": \"希望您享受 GitHub 教育權益。\",\n                // 結束\n                    \"Congratulations! Your application has been approved and the coupon code has been applied to your account.\": \"恭喜！您的申請已獲批准，優惠碼已成功應用到您的賬戶。\",\n                    \"Please visit the\": \"請訪問\",\n                    \"Developer Pack\": \"開發者包\",\n                    \"page to view your benefits.\": \"頁面查看您的權益。\",\n                \"Your benefits will expire on\": \"您的福利過期時間：\",\n            \"Loading details\": \"加載詳情\",\n            \"Revoked\": \"撤銷\",\n            \"Denied\": \"拒絕\",\n                \"Reason(s):\": \"拒絕原因：\",\n\n                    \"Please complete your\": \"請完善您的\",\n                    \"GitHub billing information\": \"GitHub 賬單信息\",\n                    \"with your full name exactly as it appears in your academic affiliation document. You do not have to add a payment method. You may need to log out and log back in to GitHub before reapplying. If you have only a single legal name, enter it in both the first and last name fields.\": \"，並確保其中的姓名與您學籍證明文件中的姓名完全一致。您無需添加支付方式。您可能需要先登出 GitHub，然後重新登錄後再申請。如果您只有一個法定姓名，請在名字和姓氏字段中填寫相同的姓名。\",\n\n                    \"You are unlikely to be verified until you have completed your\": \"在您用學籍證明文件上的全名完善\",\n                    \"GitHub user profile\": \"GitHub 用戶資料\",\n                    \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通過驗證。請不要使用姓名的變體或暱稱。更新資料信息後，請先登出 GitHub，然後重新登錄後再申請。\",\n    },\n    \"regexp\": [\n        [/Submitted(?: about)? (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交於 ${translatedDate}`;\n        }],\n        [/Expires in almost (\\d+) years?/, \"有效期大約 $1 年\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/emails\"] = { // 設置 - 電子郵箱\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Emails 電子郵箱 https://github.com/settings/emails\n            // 黃框警告\n                \"You have a single verified email associated with your GitHub account. Add an additional verified email address in case you lose access to your primary email.\": \"您的 GitHub 賬戶只有一個經過驗證的電子郵箱。添加另一個經過驗證的電子郵箱地址吧，那樣即使主電子郵箱無法使用也不要緊。\",\n            // 頂部提示信息\n                \"Emails you can use to sign in to your account. Verified emails can be used as the author or committer addresses for web-based Git operations, e.g. edits and merges.\":\"可用於登錄賬戶的電子郵箱。經過驗證的電子郵箱可以用作基於網頁的 Git 操作（如編輯和合併）的作者或提交者地址。\",\n            // [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)/, \"可用於登錄賬戶的電子郵箱。這些郵箱不會用作基於網頁的 Git 操作（如編輯和合併）的 “發件人” 地址。所有基於網頁的 Git 操作都將關聯至 $1。\"],\n\n            \"Primary\": \"主賬戶\",\n                \"Backup\": \"備用\",\n                \"This email address is the default for GitHub notifications, such as replies to issues, pull requests, and similar activity.\": \"此電子郵箱地址是 GitHub 通知的默認地址，例如對議題、拉取請求和類似活動的回覆。\",\n                // [/Manage email/, \"管理郵箱地址\"],\n                \"Manage email preferences\": \"管理電子郵件首選項\",\n                \"Resend verification email\": \"重新發送驗證郵件\",\n                // 刪除按鈕 提醒信息\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account.\": \"您確定要從賬戶中移除此郵箱嗎？移除後，該郵箱地址關聯的提交記錄將不再與您的賬戶關聯。。\",\n                    \"Are you sure you want to remove this email from your account? Once removed, commits attributed to this email address will no longer be associated with your account. One of your other emails will become your primary address.\": \"您確定要從賬戶中移除此郵箱嗎？移除後，該郵箱地址關聯的提交記錄將不再與您的賬戶關聯。您其他郵箱中的一個將自動成為主要地址。\",\n                    \"At least one email is required.\": \"至少需要一個電子郵箱。\",\n                    \"At least one verified email is required.\": \"至少需要一個已驗證的電子郵箱。\",\n                    // 頂部提醒\n                        // [/Removed email ([^@]+@[^\\n]+) from your account./, \"已將郵箱 $1 從您的賬戶中移除。\"],\n\n            \"Add email address\": \"添加電子郵箱\",\n                \"Email address\": \"電子郵箱\",\n                    // 頂部提醒\n                        // [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我們已向 $1 發送了驗證郵件，請登錄郵箱已完成驗證。\"],\n\n            \"Primary email address\": \"主電子郵箱\",\n                \"Select an email to be used for account-related notifications and can be used for password reset.\": \"選擇用於帳戶相關通知的電子郵件地址，並可用於密碼重置。\",\n                // 頂部提醒\n                    \"Your primary email was changed to\": \"您的主電子郵箱已更改為\",\n                    \". Your default notification email address is still set to\": \"。您的默認通知電子郵箱仍然設置為\",\n                    \". Would you like to update that as well?\": \"。您也想更新它嗎？\",\n                    \"Yes, update my notification email\": \"是的，更新我的通知電子郵箱\",\n\n            \"Backup email address\": \"備用電子郵箱\",\n                \"Your backup GitHub email address will be used as an additional destination for security-relevant account notifications and can also be used for password resets.\": \"您的備用 GitHub 電子郵箱將用作接收賬戶安全相關通知的額外方式，也可以用於密碼重置。\",\n                    \"Allow all verified emails\": \"允許所有已驗證的電子郵箱\",\n                        // 頂部提醒\n                            \"All verified emails can now be used for password resets.\": \"所有已驗證的電子郵箱現在均可用於密碼重置。\",\n                    \"Only allow primary email\": \"僅允許主電子郵箱\",\n                        // 頂部提醒\n                            \"Only your primary email address can now be used for password resets.\": \"現在只有您的主電子郵箱可用於密碼重置。\",\n\n            \"Keep my email addresses private\": \"保持我的電子郵箱地址的私密性\",\n                \"We’ll remove your public profile email and use\": \"我們將刪除您的公開個人資料中的電子郵箱，並使用\",\n                \"when performing web-based Git operations (e.g. edits and merges) and sending email on your behalf. If you want command line Git operations to use your private email you must\": \"執行基於 Web 的 Git 操作（例如：編輯和合併）並以您的名義發送電子郵件。如果您想在命令行 Git 操作中使用您的私人電子郵箱，您必須\",\n                \"set your email in Git\": \"在 Git 中設置您的電子郵箱\",\n                \"Previously authored commits associated with a public email will remain public.\": \"以前創建的與公共電子郵件相關的提交將保持公開狀態。\",\n                \"Off\": \"禁用\",\n                \"On\": \"啟用\",\n\n                // 頂部提醒\n                    \"Your primary email address is now public. To select which email to display on your profile, visit\": \"您的主電子郵箱地址現已公開。要選擇在您的個人資料中顯示哪個電子郵箱，請訪問\",\n                    \"profile settings.\": \"個人資料設置。\",\n                    \"Your primary email address is now private. If you previously made your email public, we’ve removed it from your profile.\": \"您的主電子郵箱地址現已設為私密。如果您以前公開過您的電子郵箱，我們已經從您的個人資料中刪除了它。\",\n\n            \"Block command line pushes that expose my email\": \"阻止在命令行推送中暴露我的電子郵箱\",\n                \"When you push to GitHub, we’ll check the most recent commit. If the author email on that commit is a private email on your GitHub account, we will block the push and warn you about exposing your private email.\": \"當您推送到 GitHub 時，我們會檢查最近的提交。如果該提交的作者電子郵箱是您 GitHub 賬戶上的私人電子郵箱，我們會阻止推送並警告您不要暴露您的私人電子郵箱。\",\n                // 頂部提醒\n                    \"Commits pushed with a private email will no longer be blocked.\": \"使用私人電子郵箱推送的提交將不再被阻止。\",\n                    \"Commits pushed with a private email will now be blocked and you will see a warning.\": \"使用私人電子郵箱推送的提交將被阻止，您會看到一個警告。\",\n\n        // 訂閱偏好 https://github.com/settings/emails/subscriptions\n            \"Subscription preferences for\": \"訂閱首選項\",\n            \"⏳Please wait while we find your subscriptions...⌛\": \"⏳請稍候，我們正在查找您的訂閱...⌛\",\n            \"No subscriptions found\": \"未找到訂閱信息\",\n            \"Save subscription preferences\": \"保存訂閱首選項\",\n            \"Back to email settings\": \"返回電子郵件設置\",\n            \"To stop receiving emails for the topics below, uncheck any topics you don't want to receive, then click Save subscription preferences\": \"要停止接收以下主題的電子郵件，請取消選中您不想接收的任何主題，然後單擊保存訂閱首選項\",\n            \"General info and offers from GitHub\": \"GitHub 上的一般信息和優惠\",\n                \"Get tips, solutions and exclusive offers from GitHub about products, services and events we think you might find interesting.\": \"從 GitHub 獲取有關我們認為您可能感興趣的產品、服務和活動的提示、解決方案和獨家優惠。\",\n            \"Unsubscribe from all topics\": \"取消訂閱所有主題\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Emails you can use to sign in to your account. Your emails will not be used as the 'from' address for web-based Git operations, e.g. edits and merges. All web-based Git operations will be linked to ([^@]+@users.noreply.github.com)./, \"可用於登錄賬戶的電子郵箱。該郵箱不會用作基於網頁的 Git 操作（如編輯和合併）的 “發件人” 地址。所有基於網頁的 Git 操作都將關聯至 $1。\"],\n        [/Manage email/, \"管理郵箱地址\"],\n        [/We sent a verification email to ([^@]+@[^\\s]+)\\. Please follow the instructions in it\\./, \"我們已向 $1 發送了驗證郵件，請登錄郵箱已完成驗證。\"],\n        [/Your primary email was changed to ([^@]+@[^\\n]+)\\./, \"您的主電子郵箱已更改為 $1\"],\n        [/Subscription preferences for ([^@]+@[^\\n]+)/, \"$1 的訂閱偏好\"],\n        [/Removed email ([^@]+@[^\\n]+) from your account./, \"已將郵箱 $1 從您的賬戶中移除。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Email settings\": \"郵箱設置\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/security\"] = { // 設置 - 密碼和身份身份驗證\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"confirm-access\"][\"static\"],\n\n        // 密碼和身份身份驗證 - 賬戶安全 https://github.com/settings/security\n            \"Change password\": \"更改密碼\",\n            \"Old password\": \"舊密碼\",\n            \"New password\": \"新密碼\",\n            \"Confirm new password\": \"確認新密碼\",\n            \"Make sure it's\": \"請確保\",\n            \"at least 15 characters\": \"至少需要15個字符\",\n            \"OR\": \" 或者\",\n            \"at least 8 characters\": \"至少需要8個字符\",\n            \"including a number\": \"包括數字\",\n            \"and a lowercase letter\": \"和小寫字母\",\n            \"Password is too short (minimum is 8 characters)\": \"密碼太短（最少8個字符）\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, and is in a list of passwords commonly used on other websites\": \"密碼太短（最少8個字符），至少需要1個小寫字母，而且已在其他網站常用密碼列表中\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 lowercase letter, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密碼太短（最少為8個字符），至少需要1個小寫字母，而且不能包括您的登錄名，以及在其他網站常用的密碼列表中。\",\n            \"Password is too short (minimum is 8 characters), needs at least 1 number, cannot include your login, and is in a list of passwords commonly used on other websites\": \"密碼太短（最少8個字符），需要至少1個數字，不能包含您的登錄名，以及在其他網站常用的密碼列表中\",\n            \"Password is too short (minimum is 8 characters) and is in a list of passwords commonly used on other websites\": \"密碼太短（最少為8個字符），而且已在其他網站常用的密碼列表中。\",\n            \"Password needs at least 1 lowercase letter and is in a list of passwords commonly used on other websites\": \"密碼需要至少 1 個小寫字母，而且已在其他網站常用的密碼列表中\",\n            \"Password is in a list of passwords commonly used on other websites\": \"密碼在其他網站常用的密碼列表中\",\n            \"Update password\": \"更新密碼\",\n            \"I forgot my password\": \"我忘記了我的密碼\",\n\n            \"Strengthen your account by ensuring your password is strong.\": \"確保密碼的安全性，以保護您的賬戶。\",\n            \"Learn more about creating a strong password\": \"瞭解更多關於創建強密碼的信息\",\n\n            \"Passkeys\": \"通行密鑰\",\n                \"Passwordless sign-in with passkeys\": \"使用通行密鑰進行無密碼登錄\",\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method. Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密鑰是一種 WebAuthn 憑證，可以使用觸摸、面部識別、設備密碼或 PIN 碼驗證您的身份。它們可以作為密碼替代品或作為雙因素身份驗證（2FA）方法使用。通行密鑰可以作為一種簡單且安全的替代方式用於登錄，替代您的密碼和雙因素身份驗證憑證。\",\n                \"This browser or device does not fully support passkeys - you may be able to use a passkey from another device.\": \"此瀏覽器或設備不完全支持通行密鑰 - 您可以嘗試使用來自其他設備的通行密鑰。\",\n                \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此瀏覽器或設備不完全支持通行密鑰 - 您可以嘗試使用來自其他設備的通行密鑰。\",\n                \"Add a passkey\": \"添加通行密鑰\",\n\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密鑰是一種 WebAuthn 憑證，可以使用觸摸、面部識別、設備密碼或 PIN 碼驗證您的身份。它們可以作為密碼替代品或作為雙因素身份驗證（2FA）方法使用。\",\n                \"Learn more about passkeys\": \"瞭解更多關於通行密鑰的信息\",\n\n                \"Your passkeys\": \"您的通行密鑰\",\n                \"Edit passkey nickname\": \"編輯通行密鑰暱稱\",\n                // [/Delete `([^ ]+)` passkey/, \"刪除 “$1” 通行密鑰\"],\n\n                // 刪除密鑰對話框\n                    \"Delete passkey?\": \"刪除通行密鑰？\",\n                    // [Are you sure you want to delete your `([^ ]+)` passkey?/, \"您確定要刪除您的 “$1” 通行密鑰嗎？\"],\n                    \"You will no longer be able to use it to sign-in to your account.\": \"您將無法再使用它登錄您的賬戶。\",\n                    \"Note: You may continue to see this passkey as an option during sign-in until you also delete it from your browser, device or associated account's password management settings.\": \"注意：您可能會在登錄過程中繼續看到此通行密鑰作為一個選項，直到您將其從瀏覽器、設備或關聯賬戶的密碼管理設置中刪除。\",\n                    \"Deleting…\": \"刪除中…\",\n\n            // Google\n                \"1 account connected\": \"已連接 1 個帳戶\",\n                \"Google sign in method dropdown\": \"Google 登錄方法下拉菜單\",\n\n            // 雙因素身份驗證\n                // 頂部提醒\n                    \"You can now manage your two-factor authentication methods from this page.\": \"您現在可以從此頁面管理您的雙因素身份驗證方法。\",\n                    \"Two-factor authentication successfully disabled.\": \"成功禁用雙因素身份驗證。\",\n                    \"SMS/Text message successfully configured.\": \"短信/文本信息配置成功。\",\n                    \"Authenticator app successfully reconfigured.\": \"驗證器重配置成功。\",\n\n            \"Sign in methods\": \"登錄方式\",\n                \"Email\": \"電子郵件\", // 下行內容走正則\n                    \"Manage\": \"管理\",\n                // 通行密鑰\n                    \"Passwordless sign-in with biometrics or security keys\": \"使用生物識別或安全密鑰進行無密碼登錄\",\n                    \"Add passkey\": \"添加通行密鑰\",\n                    \"Seen from this browser\": \"在此瀏覽器中可見\",\n                    \"Synced\": \"已同步\",\n                // Google\n                    \"Sign in with your Google account\": \"使用 Google 賬戶登錄\",\n                    \"Connect\": \"連接\",\n                // Apple\n                    \"Sign in with your Apple account\": \"使用 Apple 賬戶登錄\",\n\n            \"Two-factor authentication\": \"雙因素身份驗證\",\n                \"Two-factor authentication is not enabled yet.\": \"尚未啟用雙因素身份驗證。\",\n                \"Enable two-factor authentication\": \"啟用雙因素身份驗證\",\n\n                \"Because of your contributions on GitHub, two-factor authentication is required for your account. Thank you for helping keep the ecosystem safe!\": \"基於您在 GitHub 上的貢獻，您的賬戶需要雙因素身份驗證。感謝您幫助維護生態系統安全！\",\n                \"Because of your contributions on GitHub, two-factor authentication will be required for your account starting\": \"基於您在 GitHub 上的貢獻，從\",\n                \". Thank you for helping keep the ecosystem safe!\": \" 開始，您的賬戶將需要雙因素身份驗證，感謝您幫助維護生態系統的安全！\",\n                \"Learn more about our two-factor authentication initiative\": \"瞭解更多關於我們的雙因素身份驗證的倡議\",\n\n                \"Two-factor authentication adds an additional layer of security to your account by requiring more than just a password to sign in.\": \"雙因素身份驗證不僅僅要求密碼登錄，還為您的賬戶增加了一層額外的安全性。\",\n                \"Learn more about two-factor authentication\": \"瞭解更多關於雙因素身份驗證的信息\",\n\n\n                \"Enable\": \"啟用\",\n                \"Enabled\": \"啟用\",\n                    \"Two-factor authentication is required for at least one organization or enterprise account you're affiliated with.\": \"至少有一個您所屬的組織或企業賬戶需要進行雙因素身份驗證。\",\n                \"Disable\": \"停用\",\n\n            \"Preferred 2FA method\": \"首選 2FA 方法\",\n                \"Set your preferred method to use for two-factor authentication when signing into GitHub.\": \"設置登錄 GitHub 時用於雙因素身份驗證的首選方法。\",\n                \"Passkeys should be used primarily for standalone, password-less authentication.\":\"通行密鑰應主要用於獨立的無密碼身份驗證。\",\n\n            \"Two-factor methods\": \"雙因素身份驗證方式\",\n                \"Configured\": \"已配置\",\n\n                \"Authenticator app\": \"身份驗證器應用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出現提示時，使用身份驗證器應用或瀏覽器擴展獲取雙因素身份驗證碼。\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份驗證應用或瀏覽器擴展生成一次性程式碼。\",\n\n                    \"Manage Authenticator app\": \"管理身份驗證器應用\",\n\n                    \"Authenticator apps and browser extensions like\": \"身份驗證器應用和瀏覽器擴展，例如\",\n                    \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密碼，在登錄過程中出現提示時用作第二驗證因素來驗證您的身份。\",\n\n                    \"Scan the QR code\": \"掃描二維碼\",\n                    \"Re-scan the QR code\": \"重新掃描二維碼\",\n                    \"Use an authenticator app or browser extension to scan.\": \"請使用身份驗證器應用或瀏覽器擴展進行掃描。\",\n                    \"Learn more about enabling 2FA\": \"瞭解更多關於啟用 2FA 的信息\",\n\n                    \"Unable to scan? You can use the\": \"無法掃描？您可以使用\",\n                    \"setup key\": \"設置密鑰\",\n                    \"to manually configure your authenticator app.\": \"手動配置您的身份驗證器應用。\",\n                        \"Your two-factor secret\": \"您的雙因素密鑰\",\n\n                    \"Verify the code from the app\": \"驗證來自身份驗證器應用的驗證碼\",\n                    \"Two-factor code verification failed. Please try again.\": \"雙因素身份驗證碼驗證失敗。請重試。\",\n\n                \"SMS/Text message\": \"短信/文字信息\",\n                    \"Manage SMS/Text message\": \"管理短信/文字信息\",\n                    \"Less secure\": \"不安全\",\n\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests. We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. It is recommended to use an Authenticator app instead of SMS.\": \"通過短信向您的手機送達一次性驗證碼，以完成身份驗證請求。我們強烈建議不要使用短信，因為短信容易受到攔截，無法抵禦釣魚攻擊，且送達率可能不可靠。建議使用身份驗證器應用代替短信。\",\n\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登錄 GitHub 時通過手機短信獲取驗證碼。確保\",\n                    \"your country or region is supported\": \"支持您的國家/地區\",\n                    \"for SMS delivery.\": \"用於短信發送。\",\n\n                    \"Verify account\": \"驗證賬戶\",\n                    \"Before setting up SMS, please verify that you're a human.\": \"在設置短信之前，請驗證您是人類。\",\n\n                    \"Country or region code\": \"國家/地區程式碼\",\n                    \"Your phone number\": \"您的手機號碼\",\n                    \"Send authentication code\": \"發送驗證碼\",\n\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已發送。短信可能需要一分鐘時間才能送達。\",\n                    \"Verify the code sent to your phone\": \"驗證發送到您手機的驗證碼\",\n\n                    // [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我們強烈建議不要使用短信，因為短信容易受到攔截，無法抵禦釣魚攻擊，而且送達率可能不可靠。相反，我們建議配置一個身份驗證器應用，並禁用短信作為雙因素身份驗證。您將通過以下電話號碼收到一次性驗證碼：\"], // 已設置短信/文字信息\n\n                    // 頂部提醒\n                        \"SMS/Text message successfully disabled.\": \"短信/文字消息已成功禁用。\",\n\n                \"Security keys\": \"安全密鑰\",\n                    \"Security keys are webauthn credentials that can only be used as a second factor of authentication.\": \"安全密鑰是 WebAuthn 憑證，只能用作第二驗證因素。\",\n                    \"Hide\": \"隱藏\",\n                    \"No security keys\": \"沒有安全密鑰\",\n\n                    \"Register new security key\": \"註冊新安全密鑰\",\n                    \"Enter a nickname for this security key\": \"輸入安全密鑰的暱稱\",\n                    \"Waiting for input from browser interaction...\": \"等待來自瀏覽器交互的輸入…\",\n                    \"Security key registration failed.\": \"安全密鑰註冊失敗。\",\n                    \"Try again\": \"請重試\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通過安裝 GitHub Mobile 應用並登錄賬戶，可以使用 GitHub Mobile 來進行雙因素身份驗證。\",\n                    \"Manage GitHub Mobile\": \"管理 GitHub Mobile\",\n\n                    // [/(\\d+) devices?/, \"$1 設備\"], // 設置--> 密碼和身份驗證頁\n                    \"Show\": \"顯示\",\n\n            \"Recovery options\": \"恢復選項\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by viewing and downloading or printing them again.\": \"您的雙因素身份驗證恢復碼在過去一年中未被下載或打印。請通過查看並再次下載或打印恢復碼，確保您的恢復碼是最新的。\",\n\n                \"Recovery codes\": \"恢復碼\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢復碼可用於在您無法訪問設備且無法接收雙因素身份驗證碼的情況下訪問您的賬戶。\",\n                    \"Viewed\": \"已查看\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) devices?/, \"$1 個設備\"], // 設置--> 密碼和身份驗證頁\n        [/We strongly advise against using SMS because it is susceptible to interception, does not provide resistance against phishing attacks, and deliverability can be unreliable. Instead, we recommend configuring an authenticator app and disabling SMS as a 2FA method. You will receive one-time codes at this phone number:/, \"我們強烈建議不要使用短信，因為短信容易受到攔截，無法抵禦釣魚攻擊，而且送達率可能不可靠。相反，我們建議配置一個身份驗證器應用，並禁用短信作為雙因素身份驗證。您將通過以下電話號碼收到一次性驗證碼：\"], // 已設置短信/文字信息\n        [/Delete `([^ ]+)` passkey/, \"刪除 “$1” 通行密鑰\"],\n        [/Are you sure you want to delete your `([^ ]+)` passkey?/, \"您確定要刪除您的 “$1” 通行密鑰嗎？\"],\n        [/(\\d+) verified emails? configured/, \"已配置 $1 個已驗證的郵箱\"],\n        // 1 passkey configured\n        [/(\\d+) passkeys? configured/, \"已配置 $1 個通行密鑰\"],\n        [/Added (.*) \\| Last used (.*)/, (match, p1, p2) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const dateAdded = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            const dateLastUsed = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p2);\n            return `添加於 ${dateAdded} | 最後使用 ${dateLastUsed}`;\n        }]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Account security\": \"賬戶安全\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/auth\"] = {\n    \"static\": { // 靜態翻譯\n\n        // 查看恢復碼 https://github.com/settings/auth/recovery-codes\n            // 頂部提醒\n                \"New two-factor recovery codes successfully generated. Save them in a safe, durable location and discard your previous codes.\": \"已成功生成新的雙因素身份驗證恢復碼。將它們保存在安全、耐用的位置，並丟棄以前的恢復碼。\", // 生成新恢復碼\n\n            \"Two-factor recovery codes\": \"雙因素身份驗證恢復碼\",\n                \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢復碼可用於在您無法訪問設備且無法接收雙因素身份驗證碼的情況下訪問您的賬戶。\",\n                \"Your two-factor authentication recovery codes have not been downloaded or printed in the last one year. Make sure your recovery codes are up-to-date by downloading or printing them again.\": \"您的雙因素身份驗證恢復碼在過去一年中沒有下載或打印過。請重新下載或打印恢復程式碼，確保您的恢復程式碼是最新的。\",\n\n            \"Recovery codes\": \"恢復碼\",\n                \"Keep your recovery codes as safe as your password. We recommend saving them with a password manager such as\": \"保持您的恢復碼與您的密碼一樣安全。我們建議使用密碼管理器保存它們，例如\",\n                \"Keep your recovery codes in a safe spot.\": \"將您的恢復碼保存在一個安全的地方。\",\n                \"These new codes have replaced your old codes. Save them in a safe spot.\": \"這些新恢復碼已取代您的舊恢復。請將它們保存在安全的地方。\", // 生成新恢復碼\n                \"These codes are the last resort for accessing your account in case you lose your password and second factors. If you cannot find these codes, you\": \"這些恢復碼是在您丟失密碼和第二驗證因素的情況下訪問您賬戶的最後手段。如果您找不到這些恢復碼，您\",\n                \"will\": \"將\",\n                \"lose access to your account.\": \"無法訪問您的賬戶。\",\n\n                \"Print\": \"打印\",\n\n            \"Generate new recovery codes\": \"生成新恢復碼\",\n                \"When you generate new recovery codes, you must download or print the new codes.\": \"當您生成新恢復碼時，您必須下載或打印新恢復碼。\",\n                \"Your old codes won't work anymore.\": \"您的舊恢復碼將失效。\",\n\n            \"Back to settings\": \"返回設置\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/sessions\"] = {\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 會話詳情 https://github.com/settings/sessions\n            \"Web sessions\": \"網絡會話\",\n            \"GitHub Mobile can be used to verify your identity when signing in from a new device and as a two-factor authentication method.\": \"GitHub Mobile 可用於從新設備登錄時驗證您的身份，並作為一種雙因素身份驗證方法。\",\n            \"Learn more about authentication with GitHub Mobile.\": \"瞭解更多關於 GitHub Mobile 身份驗證的信息。\",\n            \"To get started, install GitHub Mobile for\": \"首先，安裝 GitHub Mobile 適用於\",\n            \"and sign in to your account.\": \"並登錄您的賬戶。\",\n\n            \"This is a list of devices that have logged into your account. Revoke any sessions that you do not recognize.\": \"這是已登錄您賬戶的設備列表。 撤銷任何您不認識的會話。\",\n            \"See more\": \"查看更多\",\n            \"Your current session\": \"您當前的會話\",\n            \"Last accessed on\": \"最後訪問日期：\",\n            \"active\": \"激活\",\n            \"stale\": \"閒置\",\n\n            \"GitHub Mobile sessions\": \"GitHub Mobile 會話\",\n            \"This is a list of devices that have logged into your account via the GitHub Mobile app. Revoke any session that you do not recognize or you can\": \"這是已通過 GitHub Mobile 應用登錄到您賬戶的設備列表。撤銷任何您不認識的會話，或者您可以\",\n            \"revoke\": \"撤消\",\n            \"your GitHub Mobile app authorization to sign out of all your devices.\": \"您的 GitHub Mobile 應用授權，以登出您的所有設備。\",\n            \"Revoke\": \"撤消\",\n            \"Registered -\": \"註冊於 -\",\n            \"Last accessed -\": \"最後訪問 -\",\n            \"Last used for authentication -\": \"最後一次認證 -\",\n            \"Never used\": \"未使用\",\n\n        // 會話詳情 https://github.com/settings/sessions/<id>\n            \"Session details\": \"會話詳情\",\n            \"Revoke session\": \"撤銷會話\",\n            \"Device:\": \"設備：\",\n            \"Last location:\": \"最後的位置：\",\n            \"Signed in:\": \"登錄：\",\n            \"View all sessions\": \"查看所有會話\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Seen in/, \"登錄於\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sessions\": \"會話\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/keys\"] = { // 設置 - SSH 與 GPG 公鑰\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // SSH and GPG keys SSH 與 GPG 公鑰 https://github.com/settings/keys\n            \"SSH keys\": \"SSH 密鑰\",\n            \"New SSH key\": \"新建 SSH 密鑰\",\n            \"Authentication keys\": \"認證密鑰\",\n            \"Signing keys\": \"簽名密鑰\",\n            \"Signing\": \"簽名\",\n            \"There are no SSH keys associated with your account.\": \"沒有與您的賬戶關聯的 SSH 密鑰。\",\n            \"This is a list of SSH keys associated with your account. Remove any keys that you do not recognize.\": \"這是與您的賬戶相關的 SSH 密鑰的列表。刪除任何您無法識別的密鑰。\",\n            \"Never used\": \"從未使用\",\n                \"— Read/write\": \"- 讀寫\",\n            \"Last used within the last week\": \"上週內最後一次使用\",\n            \"Check out our guide to\": \"請看我們的指南\",\n            \"connecting to GitHub using SSH keys\": \"使用 SSH 密鑰連接到 GitHub\",\n            \"or troubleshoot\": \"或解決\",\n            \"common SSH problems\": \"常見的 SSH 問題\",\n\n            \"GPG keys\": \"GPG 密鑰\",\n            \"New GPG key\": \"新建 GPG 密鑰\",\n            \"There are no GPG keys associated with your account.\": \"沒有與您的賬戶關聯的 GPG 密鑰。\",\n            \"This is a list of GPG keys associated with your account. Remove any keys that you do not recognize.\": \"這是與您的賬戶相關的 GPG 密鑰的列表。刪除任何您無法識別的密鑰。\",\n\n            \"Email address:\": \"電子郵件地址：\",\n            \"Key ID:\": \"密鑰 ID：\",\n            \"Subkeys:\": \"子密鑰：\",\n            \"Added\": \"添加於\",\n\n            \"Learn how to\": \"瞭解如何\",\n            \"generate a GPG key and add it to your account\": \"生成 GPG 密鑰並將其添加到您的賬戶\",\n\n            \"Vigilant mode\": \"警戒模式\",\n            \"Flag unsigned commits as unverified\": \"將未簽名的提交標記為未驗證\",\n            \"This will include any commit attributed to your account but not signed with your GPG or S/MIME key.\": \"這將包括任何歸屬於您的賬戶但沒有用您的 GPG 或 S/MIME 密鑰簽名的提交。\",\n            \"Note that this will include your existing unsigned commits.\": \"請注意，這將包括您現有的未簽名的提交。\",\n            \"Learn about vigilant mode\": \"瞭解警戒模式\",\n\n            // SSH 密鑰刪除 對話框\n            \"Are you sure you want to delete this SSH key?\": \"您確定要刪除此 SSH 密鑰嗎？\",\n            \"This action\": \"該操作\",\n            \"CANNOT\": \"不能\",\n            \"be undone. This will permanently delete the SSH key and if you’d like to use it in the future, you will need to upload it again.\": \"被撤銷。這將永久地刪除 SSH 密鑰，如果您想在未來使用它，您將需要再次上傳它。\",\n            \"I understand, delete this SSH key\": \"我明白了，刪除此 SSH 密鑰\",\n\n            // GPG 密鑰刪除 對話框\n            \"Are you sure you want to delete this GPG key?\": \"您確定要刪除此 GPG 密鑰嗎？\",\n            \"be undone. This will permanently delete the GPG key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤銷。這將永久地刪除 GPG 密鑰，如果您想在未來使用它，您將需要再次上傳它。\",\n            \"Any commits you signed with this key will become unverified after removing it.\": \"刪除後，您使用此密鑰簽名的任何提交都將變成未驗證。\",\n            \"Commits you signed with this key may become unverified after removing it.\": \"移除此密鑰後，您使用它簽署的提交可能會變為未驗證狀態。\",\n            \"Learn more about persistent commit signature verification.\": \"瞭解更多關於持久性提交簽名驗證的信息。\",\n            \"I understand, delete this GPG key\": \"我明白了，刪除此 GPG 密鑰\",\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功刪除該密鑰。\",\n            \"cannot\": \"不能\",\n\n            // 頂部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密鑰無效。您必須提供 OpenSSH 公鑰格式的密鑰\",\n            \"We got an error doing that.\": \"我們在這樣做時出錯了。\",\n            \"We got an error adding your GPG key. Please verify the input is a valid GPG key.\": \"添加您的 GPG 密鑰時出錯。請確認輸入的是有效的 GPG 密鑰。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/You have successfully added the key \\'([^ ]+)\\'./, \"成功添加密鑰 “$1”。\"],\n        [/Last used within the last (\\d+) weeks?/, \"$1 周內最後一次使用\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"SSH and GPG keys\": \"SSH 和 GPG 密鑰\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/ssh\"] = { // 設置 - SSH 與 GPG 公鑰 - 添加 SSH 公鑰\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 添加 SSH 公鑰 https://github.com/settings/ssh/new\n            \"Add new SSH Key\": \"添加新 SSH 密鑰\",\n            \"Title\": \"標題\",\n            \"Key type\": \"密鑰類型\",\n                \"Authentication Key\": \"認證密鑰\",\n                \"Signing Key\": \"簽名密鑰\",\n            \"Key\": \"密鑰\",\n            \"Add SSH key\": \"添加 SSH 密鑰\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/gpg\"] = { // 設置 - SSH 與 GPG 公鑰 - 添加 GPG 公鑰\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 添加 GPG 公鑰 https://github.com/settings/gpg/new\n            \"Add new GPG key\": \"添加新 GPG 密鑰\",\n            \"Title\": \"標題\",\n            \"Key\": \"密鑰\",\n            \"Add GPG key\": \"添加 GPG 密鑰\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/organizations\"] = { // 設置 - 組織\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Organizations 組織 https://github.com/settings/organizations\n            \"You are not a member of any organizations.\": \"您暫無任何組織。\",\n\n            \"Owner\": \"所有者\",\n            \"Member\": \"成員\",\n            \"Compare plans\": \"比較計劃\",\n            \"Leave\": \"離開\",\n            \"Leave organization\":\"離開組織\",\n\n            \"Transform account\": \"賬戶變更\",\n            \"You cannot transform this account into an organization until you leave all organizations that you’re a member of.\": \"在您離開您所屬的所有組織之前，您無法將此賬戶轉換為組織。\", // 存在所屬組織時\n            \"You cannot transform this account into an organization because you have an active GitHub Sponsors account.\": \"由於您有一個活躍的 GitHub 贊助者賬戶，因此您無法將此賬戶轉換為組織。\", // 存在贊助者賬戶時\n            \"Account Transformation Warning\": \"賬戶變更警告\",\n            \"What you are about to do is an irreversible and destructive process. Please be aware:\": \"這將是一個不可逆轉的過程，請確認：\",\n            \"Any user-specific information (OAuth tokens, SSH keys, Job Profile, etc) will be erased\": \"任何用戶特定的信息（OAuth 令牌, SSH 密鑰, 職位簡介, 等）將被刪除。\",\n            \"You will no longer be able to create or modify gists owned by the converted personal account\": \"您將無法再創建或修改已轉換的個人賬戶所擁有的程式碼片段\",\n            \"create a new personal account\": \"創建一個新的個人賬戶\",\n            \"The total amount of collaborators across private repositories will be the total amount of seats for the organization\": \"跨私人倉庫的協作者總數將是該組織的席位總數\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Turn ([^ ]+) into an organization/, \"變更 $1 為組織\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您將無法再登錄 $1（所有管理權限都將授予您選擇的所有者）\"],\n        [/Any commits and comments credited to ([^ ]+) will no longer be linked to this GitHub account/, \"任何歸功於 $1 的提交和評論將不再與此 GitHub 賬戶相關聯\"],\n        [/Any GitHub Apps installed on ([^ ]+) will be uninstalled/, \"$1 上安裝的任何 GitHub 應用程式都將被卸載\"],\n        [/If you are using ([^ ]+) as a personal account, you should/, \"如果您將 $1 用作個人賬戶，您應該在將 $1 轉變為組織之前先\"],\n        [/before transforming ([^ ]+) into an organization./, \"。\"],\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 個倉庫的外部協作者\"], // 設置 - 組織\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 個倉庫的成員和協作者\"],\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories and teams./, \"您確定要離開 $1 嗎？您將失去對所有倉庫和團隊的訪問權。\"], // 設置 - 組織 離開按鈕 提醒\n        [/Are you positive you want to leave ([^ ]+)\\? You will lose access to all repositories./, \"您確定要離開 $1 嗎？您將失去對所有倉庫的訪問權。\"], // 設置 - 組織 離開按鈕 提醒\n        [/You left ([^ ]+)\\. It may take a few minutes to process\\./, \"您已離開 $1。可能需要幾分鐘處理。\"], //設置，離開組織後的提示\n    ],\n    \"title\": {\n        \"static\": {\n            \"Organizations\": \"組織\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/enterprises\"] = { // 設置 - 企業版\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 企業版 https://github.com/settings/enterprises\n        \"Enterprises\": \"企業版\",\n        \"You don't have any enterprises\": \"您還沒有任何企業版\",\n        \"Designed for businesses or teams who collaborate on GitHub.com\": \"專為在 GitHub.com 上協作的企業或團隊而設計\",\n\n        \"Start free for 30 days\": \"免費試用 30 天\",\n        \"Start a free trial\": \"開啟免費體驗\",\n        \"Learn more about enterprises\": \"瞭解更多關於企業版信息\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Enterprises\": \"企業版\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/blocked_users\"] = { // 設置 - 黑名單\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Blocked users 黑名單 https://github.com/settings/blocked_users\n            \"Block a user\": \"拉黑用戶\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用戶可以防止所有倉庫中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打開或評論議題或拉取請求\",\n            \"starring, forking, or watching\": \"標星、複刻、關注\",\n            \"adding or editing wiki pages\": \"添加或編輯 Wiki 頁面\",\n            \"Additionally, blocked users are not able to:\": \"此外，被拉黑用戶無法：\",\n            \"invite you as a collaborator to their repositories\": \"邀請您作為其倉庫的協作者\",\n            \"follow your account’s public activity\": \"關注您的賬戶的公共活動\",\n            \"send you notifications by @mentioning your username in public repositories\": \"在公共倉庫中通過 @您 向您發送通知\",\n            \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n                \"Learn more about blocking a user\": \"瞭解更多關於拉黑用戶的信息\",\n            \"Block user\": \"拉黑用戶\",\n            \"You have not blocked any users.\": \"您還沒有拉黑任何用戶。\",\n            \"Unblock\": \"取消拉黑\",\n            \"Warn me when a blocked user is a prior contributor to a repository\": \"請警告我，當被拉黑的用戶是倉庫的先前貢獻者時\",\n            \"On repositories you haven’t contributed to yet, we’ll warn you when a user you’ve blocked has previously made contributions.\": \"在您還沒有貢獻的倉庫裡，當您拉黑的用戶之前有貢獻時，我們會警告您。\",\n            \"You can block a user to deny them access to repositories and more.\": \"您可以拉黑用戶，以拒絕他們訪問倉庫和其他功能。\",\n            \"On repositories you haven't contributed to yet, we'll warn you when a user you've blocked has previously made contributions.\": \"在您還沒有貢獻的倉庫裡，當您拉黑的用戶之前有貢獻時，我們會警告您。\",\n            \"All blocked users\": \"所有被拉黑的用戶\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Blocked users\": \"黑名單\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/interaction_limits\"] = { // 設置 - 互動限制\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Interaction limits 互動限制 https://github.com/settings/interaction_limits\n            \"Temporary interaction limits\": \"臨時互動限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的時間段內，可臨時限制哪些外部用戶與您的倉庫互動（評論、打開議題或創建拉取請求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用於在激烈討論期間，強制進入 “冷靜” 期或防止不必要的互動。\",\n            \"Interaction limits may already exist in your account's\": \"互動限制可能已經存在於您的\",\n            \"public repositories\": \"公開倉庫\",\n            \". Any changes here will override those limits.\": \" 的設置中。此處的全局設置將覆蓋那些倉庫的局部設置。\",\n            \"Limit to existing users\": \"僅限現有用戶\",\n                \"Users that have recently created their account will be unable to interact with your repositories.\": \"最近創建賬戶的用戶將無法與您的倉庫互動。\",\n            \"Limit to prior contributors\": \"僅限於先前的貢獻者\",\n                \"Users that have not previously committed to the default branch of one of your repositories will be unable to interact with that repository.\": \"以前從未提交到您某個倉庫默認分支的用戶將無法與該倉庫互動。\",\n            \"Limit to repository collaborators\": \"僅限倉庫協作者\",\n                \"Users that are not collaborators of one of your repositories will not be able to interact with that repository.\": \"不是您某個倉庫的協作者將無法與該倉庫互動。\",\n            \"New users\": \"新用戶\",\n            \"Users\": \"用戶\",\n            \"Contributors\": \"貢獻者\",\n            \"Collaborators\": \"協作者\",\n            // 交互限制時間 下拉菜單\n            \"Enable interaction limits for:\": \"啟用交互限制：\",\n            \"24 hours\": \"24 小時\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 個月\",\n            \"6 months\": \"6 個月\",\n            // 頂部提醒\n            \"User interaction limit settings saved.\": \"用戶交互限制設置已保存。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Enabled with (.+) remaining./, \"已啟用，還剩 $1。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"臨時互動限制\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/code_review_limits\"] = { // 設置 - 程式碼審查限制\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 頂部提示\n            \"Code review limit settings saved.\": \"程式碼審查限制設置已保存。\",\n\n        // Code review limits 程式碼審查限制 https://github.com/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in your public repositories.\": \"限制允許批准或請求更改公共倉庫中拉取請求的用戶。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"程式碼審查限制可能已經由各個倉庫指定。此處的任何更改都將覆蓋這些限制，直至取消設置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有倉庫程式碼審查限制都是單獨管理的。啟用限制，只允許明確授予每個倉庫訪問權的用戶提交 “批准” 或 “請求更改” 的審查。刪除限制，允許所有用戶提交拉取請求審查。所有能夠提交評論拉取請求審查的用戶將繼續能夠這樣做。\",\n            \"Code review limits are currently\": \"目前，所有倉庫都\",\n            \"enabled\": \"啟用\",\n            \"disabled\": \"禁用\",\n            \"for all repositories. Only users explicitly granted access to these repositories may submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews continue to be able to do so.\": \"程式碼審查限制。只有被明確授予訪問這些倉庫權限的用戶才能提交 “批准” 或 “請求更改” 的拉取請求審查。所有能夠提交評論拉取請求審查的用戶仍可繼續提交。\",\n            \"for all repositories. All users are able to submit pull request reviews, including those that \\\"approve\\\" or \\\"request changes\\\". Limit reviews to only permit users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\".\": \"程式碼審查限制。所有用戶都可以提交拉取請求審查，包括那些 “批准” 或 “請求更改” 的審查。限制審查，只允許明確授予每個倉庫訪問權的用戶提交 “批准” 或 “請求更改” 的審查。\",\n            \"Unset\": \"撤銷\",\n            \"Limit reviews on all repositories\": \"限制對所有倉庫的審查\",\n            \"Remove review limits from all repositories\": \"取消對所有倉庫的審查限制\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"程式碼審查限制\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/repositories\"] = { // 設置 - 倉庫\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Repository 倉庫 https://github.com/settings/repositories\n            \"Repository default branch\": \"倉庫默認分支\",\n            \"Choose the default branch for your new personal repositories. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"為您新的個人倉庫選擇默認的分支。由於工作流程的不同，或者由於您的集成仍然需要 “master” 作為默認分支名，您可能想改變默認名稱。您可以隨時改變個人倉庫的默認分支名稱。\",\n            \"Learn more about default branches.\": \"瞭解更多關於默認分支的信息。\",\n            \"Deleted repositories\": \"刪除的倉庫\",\n            \"Leave\": \"離開\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) collaborators?/, \"$1 位協作者\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repositorys\": \"倉庫\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/deleted_repositories\"] = { // 設置 - 倉庫 - 刪除的倉庫\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 刪除的倉庫 https://github.com/settings/deleted_repositories\n            \"Deleted repositories\": \"刪除的倉庫\",\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"倉庫可能需要一個小時的時間才能顯示在這裡。您只能恢復不是複刻或沒有被複刻的倉庫。\",\n            \"Learn more about restoring deleted repositories\": \"瞭解更多關於恢復已刪除倉庫的信息\",\n\n            \"These repositories were deleted, but can't be restored by you. Contact support if you want to restore them.\": \"這些倉庫已被刪除，但您無法恢復。如果您想恢復它們，請聯繫 GitHub 支持人員。\",\n\n            \"Deleted\": \"刪除於\",\n            // [/by/, \"由\"], // 刪除的倉庫\n            \"Restore\": \"恢復\",\n            \"Queue…\": \"排隊中…\",\n            \"Done!\": \"完成!\",\n\n            // 恢復倉庫 對話框\n            // [/Are you sure you want to restore ([^ ]+)?/, \"您確定要恢復 $1 嗎？\"],\n            \"This repository will be in a private state when it is restored. To change this state, go to settings once the repo is restored.\": \"此倉庫在恢復時將處於私有狀態。要更改此狀態，請在倉庫恢復後轉到設置。\",\n            \"Any team or collaborator permissions that previously existed for this repository will not be restored. If you require specific team or collaborator permissions, you will need to configure them in settings.\": \"此倉庫以前存在的任何團隊或協作者的權限將不會被恢復。如果您需要特定的團隊或協作者權限，則需要在設置中配置。\",\n            \"I understand, restore this repository\": \"我明白了，依然恢復該倉庫。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/No recoverable repositories were found for ([^ ]+)\\./, \"沒有找到 $1 的可恢復倉庫。\"],\n        [/by/, \"由\"], // 刪除的倉庫\n        [/Are you sure you want to restore ([^ ]+)?/, \"您確定要恢復 $1 嗎？\"], // 刪除的倉庫\n    ],\n};\n\nI18N[\"zh-TW\"][\"settings/codespaces\"] = { // 設置 - 程式碼空間\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 程式碼空間 https://github.com/settings/codespaces\n            \"Dotfiles\": \"點文件\",\n            \"Automatically install dotfiles\": \"自動安裝點文件\",\n            \"Codespaces can automatically install your dotfiles into every codespace you create.\": \"程式碼空間可以自動將您點文件安裝到您創建的每個程式碼空間。\",\n            \"Learn how to set up your dotfiles for Codespaces.\": \"瞭解如何為程式碼空間設置點文件。\",\n            \"Select repository\": \"選擇倉庫\",\n            \"Search for a repository\": \"搜索倉庫\",\n            \"Changes saved\": \"更改已保存\",\n\n            \"Secrets\": \"機密\",\n            \"Codespace user secrets\": \"程式碼空間用戶機密\",\n            \"New secret\": \"新建機密\",\n            \"Development environment secrets are environment variables that are encrypted. They are available to any codespace you create using repositories with access to that secret.\": \"開發環境機密是加密的環境變量。它們可用於您可訪問該機密的倉庫創建的任何程式碼空間。\",\n            \"There are no Codespace secrets.\": \"尚無程式碼空間機密\",\n            \"Secrets created at the user level can be shared with specified repositories.\": \"在用戶級別創建的機密可以與指定的倉庫共享。\",\n\n            // [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n            \"Updated\": \"更新於\",\n            // [/Are you sure you want to delete ([^ ]+)\\?/, \"您確定要刪除 $1 嗎？\"],\n\n            \"GPG verification\": \"GPG 驗證\",\n                \"Codespaces can have GPG commit signing capabilities so that GitHub can verify that commits made in the codespace come from a trusted source. When enabled, this setting will be applied to your list of trusted repositories.\": \"程式碼空間可以具有 GPG 提交簽名功能，以便 GitHub 可以驗證程式碼空間中的提交是來自受信任的來源。啟用後，該設置將被應用到您的受信任倉庫列表中。\",\n                // \"Enabled\": \"啟用\",\n                    \"GPG signing will be available in Codespaces\": \"GPG 簽名將在程式碼空間中可用\",\n\n            \"Settings Sync\": \"設置同步\",\n                \"By enabling, your codespaces will be able to pull from VS Code Settings Sync service and push only for the trusted repositories you specify. Only enable this for repositories that you trust.\": \"通過啟用，您的程式碼空間將能夠從 VS Code 設置同步服務中提取數據，並僅推送您指定的受信任倉庫。請只對您信任的倉庫啟用此功能。\",\n                // \"Enabled\": \"啟用\",\n                    \"VS Code Settings Sync will be available in Codespaces\": \"VS Code 設置同步將在程式碼空間中可用\",\n\n            // 通知\n            \"When enabled, you will receive emails when your codespaces are nearing deletion due to inactivity.\": \"啟用後，當您的程式碼空間因長時間未使用而即將被刪除時，您將收到電子郵件通知。\",\n            \"Warning notifications for codespace deletions will be enabled\": \"程式碼空間刪除警告通知將啟用\",\n\n            \"Trusted repositories\": \"受信任倉庫\",\n                \"The following repositories will be referenced by GPG verification and Settings Sync.\": \"以下倉庫將被 GPG 驗證和設置同步所引用。\",\n\n                \"All repositories\": \"所有倉庫\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces for all repositories\": \"GPG 簽名和 VS Code 設置同步將適用於所有倉庫的程式碼空間\",\n                \"Selected repositories\": \"選定的倉庫\",\n                    \"GPG signing and VS Code Settings Sync will be available for codespaces from the selected repositories\": \"GPG 簽名和 VS Code 設置同步將適用於選定倉庫的程式碼空間\",\n                    \"Select repositories\": \"選擇倉庫\",\n                    // [/Selected (\\d+) repositor(y|ies)./, \"選定 #1 個倉庫\"],\n                    \"GPG and VS Code Settings Sync will be available for Codespaces from these repositories.\": \"GPG 和 VS Code 設置同步將可用於這些倉庫的程式碼空間。\",\n\n                \"Submit\": \"確定\",\n\n            \"Access and security\": \"訪問和安全\",\n            \"Deprecated\": \"棄用\",\n            \"Codespaces you create for your personal account can either be restricted to accessing the repository it was opened for, or granted read access to other repositories you own.\": \"您為您個人賬戶創建的程式碼空間可以限制訪問已啟用的倉庫或您其他被賦予讀取權限的倉庫\",\n            \"Disabled\": \"禁用\",\n            \"Limit access of personal Codespaces to the repository they were opened for\": \"限制個人程式碼空間只能訪問對其打開的倉庫\",\n            \"All Codespaces can access other repositories I own\": \"所有程式碼空間都可以訪問我擁有的其它倉庫\",\n            \"Personal Codespaces created for specific repositories can access other repositories I own\": \"為特定倉庫創建的個人程式碼空間可以訪問我擁有的其它倉庫\",\n\n            \"Editor preference\": \"編輯器偏好\",\n                // VS code\n                    \"Connect to the cloud from your local desktop client. Requires\": \"從本地桌面客戶端連接到雲。要求\",\n                    \"with the\": \"安裝\",\n                    \"GitHub Codespaces\": \"GitHub 程式碼空間\",\n                    \"extension.\": \"插件。\",\n\n                \"Visual Studio Code for the Web\": \"網絡版的 Visual Studio Code\",\n                    \"Edit and preview changes straight from the browser.\": \"直接從瀏覽器編輯和預覽更改。\",\n\n                // \"JetBrains Gateway\": \"\",\n                    \"Connect to the cloud from your local desktop client. Requires the\": \"從本地桌面客戶端連接到雲。要求\",\n                    \"plugin, and a JetBrains license.\": \"插件和 JetBrains 許可證。\",\n\n                // JupyterLab\n                    \"Edit and run notebooks from the browser with JupyterLab.\": \"使用 JupyterLab 從瀏覽器編輯和運行筆記本。\",\n\n            \"Default idle timeout\": \"默認空閒超時\",\n                \"A codespace will suspend after a period of inactivity. You can specify a default idle timeout value, which will apply to all codespaces created after the default is changed. You will be charged for the entire time your codespace is running, even if it is idle. The maximum value is\": \"一段時間不活動後，程式碼空間將暫停。您可以指定一個默認的空閒超時值，該值將應用於更改默認值後創建的所有程式碼空間。您將在程式碼空間運行的整個過程中付費，即使它是空閒的。最大值是\",\n                \"minutes (4 hours).\": \"分鐘（4小時）。\",\n                \"minutes\": \"分鐘\",\n\n            \"Default retention period\": \"默認保留期\",\n                \"Inactive codespaces are automatically deleted 30 days after the last time they were stopped. A shorter retention period can be set, and will apply to all codespaces created going forward. The default and maximum value is\": \"不活躍的程式碼空間在上次停止後 30 天自動刪除。可以設置更短的保留期，並將應用於以後創建的所有程式碼空間。默認值和最大值是\",\n                \"days.\": \"天。\",\n                \"Learn about retention setting\": \"瞭解關於保留時間的設置\",\n                \"days\": \"天\",\n\n            \"Host image version preference\": \"主機鏡像版本偏好\",\n                \"The host image defines the operating system in which development containers run. These images receive periodic upgrades for security, functionality, and performance. GitHub Codespaces offers early access to beta images to ensure compatibility with existing development container configurations. Any codespace created or resumed after changing this setting will use the specified image configuration.\": \"主機鏡像定義了開發容器運行的操作系統。這些鏡像會定期進行安全、功能和性能升級。GitHub 程式碼空間提供對測試版鏡像的早期訪問，以確保與現有開發容器配置的兼容性。更改此設置後創建或恢復的程式碼空間都將使用指定的鏡像配置。\",\n                \"Learn more about host images\": \"瞭解更多關於主機鏡像的信息\",\n                \"Stable\": \"穩定版\",\n                    \"Always use the latest stable configuration.\": \"始終使用最新的穩定版。\",\n                \"Beta\": \"測試版\",\n                    \"Use a beta image configuration when available. Otherwise, use the latest stable configuration.\": \"如果可用，請使用測試版映像配置。否則，請使用最新的穩定配置。\",\n\n            \"Region\": \"地區\",\n                \"Your default region will be used to designate compute resources to your codespaces. GitHub can set your region automatically based on your location, or you can set it yourself. Codespaces are deployed to a subset of Azure regions.\": \"您的默認區域將被用來為您的程式碼空間指定計算資源。 GitHub 可以根據您的位置自動設置您的區域，您也可以自己設置。程式碼空間部署到 Azure 區域的子集。\",\n                \"Set automatically\": \"自動設置\",\n                \"We will determine the closest available region based on your location (IP address) at codespace creation time.\": \"我們將在創建程式碼空間時根據您的位置（IP地址）確定最近的可用區域。\",\n                \"Set manually\": \"手動設置\",\n                \"Choose your default region\": \"選擇您的默認區域\",\n                    \"United States\": \"美國\",\n                        \"US West\": \"美國西部\",\n                        \"US East\": \"美國東部\",\n                    \"Europe\": \"歐洲\",\n                        \"Europe West\": \"歐洲西部\",\n                    \"Asia Pacific\": \"亞太地區\",\n                        \"Southeast Asia\": \"東南亞\",\n                    \"Australia\": \"澳大利亞\",\n\n            // 頂部提醒\n                \"Secret added.\": \"機密已添加。\",\n                \"Secret deleted.\": \"機密已刪除。\",\n                \"Secret updated.\": \"機密已更新。\",\n\n        // 程式碼空間 機密新建 https://github.com/settings/codespaces/secrets/new\n            \"/ New secret\": \"/ 新建機密\",\n            \"Add secret\": \"添加機密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名稱\",\n                \"YOUR_SECRET_NAME\": \"您的機密名稱\",\n                \"Secret name is required and must not start with GITHUB\": \"機密名稱是必需的，並且不能以 GITHUB 開頭\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"倉庫權限\",\n            \"Available to\": \"適用於\",\n            \"repository\": \"倉庫\",\n            \"This secret will not be active until at least 1 repository is selected.\": \"至少選擇 1 個倉庫，否則此機密不會處於活動狀態。\",\n\n        // 編輯機密 https://github.com/settings/codespaces/secrets/<機密名稱>/edit\n            \"/ Update secret\": \"/ 更新機密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"機密值已加密，無法顯示，但您可以\",\n            \"enter a new value.\": \"輸入一個新值。\",\n            \"Update secret\": \"更新機密\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Selected (\\d+) repositor(y|ies)./, \"選定 $1 個倉庫\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/Are you sure you want to delete ([^ ]+)\\?/, \"您確定要刪除 $1 嗎？\"],\n        [/Remove ([^ ]+)/, \"移除 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"程式碼空間\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/models\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置\n\n        \"Billing\": \"賬單\",\n\n        \"Models paid usage\": \"使用付費模型\",\n            \"If enabled, usage beyond the free tier will be billed per token based on model pricing from your Models budget.\": \"如果啟用，超出免費額度的使用將根據您模型預算中的模型定價按令牌計費。\",\n            \"Models pricing\": \"模型價格\",\n\n            \"To enable Models paid usage, a payment method is needed.\": \"要啟用付費模型，需要添加支付方式。\",\n                \"Add payment method\": \"添加支付方式\",\n\n            \"You currently have\": \"您當前有\",\n                \"free rate limits\": \"免費額度\",\n                \". Enable paid usage to avoid interruption and add tokens.\": \"。啟用付費使用以避免中斷並添加令牌。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Models\": \"模型\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/packages\"] = { // 設置 - 軟體包\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置\n\n        // Packages 軟體包 https://github.com/settings/packages\n            \"Packages permissions\": \"軟體包權限\",\n\n            // 組織設置\n                \"Package creation\": \"包的創建\",\n                \"Members will be able to publish only the selected visibility types for packages and containers. Outside collaborators can never publish packages or containers.\": \"成員只能發佈選定可見性類型的軟體包和容器。外部協作者永遠不能發佈軟體包或容器。\",\n                \"Public\": \"公共\",\n                    \"Members will be able to create public packages, visible to anyone.\": \"成員將能夠創建公共包，對任何人都可見。\",\n                \"Private\": \"私有\",\n                    \"Members will be able to create private packages, visible to organization members with permission.\": \"成員將能夠創建私有包，對具有權限的組織成員可見。\",\n                \"Internal\": \"內部\",\n                    \"Members will be able to create internal packages, visible to all organization/enterprise members.\": \"成員將能夠創建內部包，對所有組織/企業成員可見。\",\n\n            \"Default Package Setting\": \"默認軟體包設置\",\n            \"Default package settings\": \"默認軟體包設置\", // 組織\n            \"This setting will be applied to new Container, npm, rubygems and NuGet packages.\": \"此設置將應用於新的容器、npm、rubygems 和 NuGet 軟體包。\",\n            \"Inherit access from source repository\": \"從源倉庫繼承訪問權限\",\n            \"Save\": \"保存\",\n\n            \"Deleted Packages\": \"刪除的軟體包\",\n            \"Deleted packages\": \"刪除的軟體包\", // 組織\n            \"These are packages that have been previously deleted belonging to you. You can restore a package deleted within the last 30 days.\": \"這些是先前已刪除的屬於您的軟體包。您可以恢復在過去 30 天內刪除的包。\",\n            \"These are packages that have been previously deleted belonging to this organization. You can restore a package deleted within the last 30 days.\": \"這些是先前已刪除的屬於您組織的軟體包。您可以恢復在過去 30 天內刪除的包。\", // 組織設置\n            \"Search deleted packages\": \"搜索已刪除的軟體包\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/No recoverable packages were found for ([^ ]+)./, \"沒有找到 $1 的可恢復包。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Packages\": \"軟體包\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"orgs/settings/packages\"] = I18N[\"zh-TW\"][\"settings/packages\"];\n\nI18N[\"zh-TW\"][\"settings/copilot\"] = { // 設置 - GitHub Copilot\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // GitHub Copilot https://github.com/settings/copilot/features\n            \"Trained on billions of lines of code,\": \"經過數十億行程式碼的訓練，\",\n            \"turns natural language prompts into coding suggestions across dozens of languages.\": \"將自然語言提示轉換為多種語言的編碼建議。\",\n            \"Start free trial\": \"開始免費試用\",\n            \"After that $10/month\": \"結束試用後 $10 / 月\",\n            \"Get Copilot from an organization\": \"從組織中獲取 GitHub Copilot\",\n            \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"組織可以為其成員（包括您）及其團隊提供使用 GitHub Copilot 的權限。\",\n            \"Organizations owned by enterprise accounts\": \"企業賬戶擁有的組織\",\n            \"are not currently listed.\": \"目前未包含在此計劃中。\",\n            \"You do not belong to any organizations.\": \"您不屬於任何組織。\",\n            \"Create an organization\": \"創建一個組織\",\n\n            \"Ask admin for access\": \"向管理員請求訪問權限\",\n            \"Requesting...\": \"請求中…\",\n            \"Remove request\": \"撤銷請求\",\n            \"Cancelling...\": \"撤銷中…\",\n            \"Buy Copilot Business\": \"購買 GitHub Copilot 企業版\",\n            \"Owner\": \"所有者\",\n            \"Member\": \"成員\",\n\n            \"Getting started\": \"開始使用\",\n                \"complete\": \"完成\",\n                \"Remove section\":\"移除區域\",\n            \"Install Copilot in your editor\": \"在您的編輯器中安裝 Copilot\",\n            \"Ask about coding problems and get code completions while you work.\": \"在工作時詢問問題並獲得程式碼補全。\",\n            \"Chat with Copilot anywhere\": \"隨時隨地與 Copilot 聊天\",\n            \"Open\": \"在 GitHub 的任何位置打開導航欄中的\",\n            \"Copilot chat in the navigation from anywhere on GitHub. Try asking\": \"按鈕，即可與 Copilot 聊天。嘗試詢問\",\n            \"“what can I do with Copilot?”\": \"“我能用 Copilot 做什麼？”\",\n            \"to get started.\": \"來開始聊天。\",\n            \"Go to Copilot\": \"前往 Copilot\",\n            \"Start building with Copilot\": \"使用 Copilot 開始構建專案\",\n            \"Learn how to build with Copilot in Visual Studio Code or Visual Studio.\": \"學習如何在 Visual Studio Code 或 Visual Studio 中使用 Copilot 來構建專案\",\n            \"Get started\": \"開始\",\n\n        // 免費版\n            \"You are using Copilot for free\": \"您正在使用 Copilot 免費版\",\n                \"Responses are limited to 2,000 code completions and 50 chat messages per month.\": \"回覆上限為每月 2,000 次程式碼完成和 50 條聊天信息。\",\n                \"Upgrade for higher limits, premium models, AI reviews. Free responses reset in 20 days.\": \"升級以獲得更高的限制、高級模型和 AI 評審。免費版的會話將在 20 天后重置。\",\n            \"Get unlimited usage with Copilot Pro\": \"通過 Copilot Pro 無限制使用\",\n                \"Unlimited messages and interactions\": \"信息和互動無限制\",\n                \"Access to the latest models\": \"訪問最新模型\",\n                \"Customize conversations to your private codebase and extensions\": \"為您的私人程式碼庫和擴展定製會話\",\n                \"Start a free trial\": \"免費試用\",\n                \"Code completions\":\"程式碼補全\",\n                \"Chat messages\":\"聊天信息\",\n\n            \"Copilot policies\": \"Copilot 規則\",\n                \"Copilot Chat in GitHub.com\": \"在 GitHub.com 中使用 Copilot Chat\",\n                    \"You can use Copilot Chat in GitHub.com. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。Copilot 程式碼審查和預覽功能僅適用於付費版。\",\n                    \"You can use Copilot Chat in GitHub.com. Preview features are only available for paid licenses.\": \"您可以在 GitHub.com 中使用 Copilot Chat。預覽功能僅適用於付費版。\",\n                    \"Learn more about Copilot in GitHub.com\": \"瞭解更多關於在 GitHub.com 中使用 Copilot 的信息\",\n                \"Editor preview features\": \"編輯器預覽功能\",\n                    \"You can use preview features in your editor.\": \"您可以在編輯器中使用預覽功能。\",\n                \"Suggestions matching public code\": \"公共程式碼匹配的建議\",\n                    \"Copilot can allow or block suggestions matching public code. Learn more about\": \"Copilot 可允許或阻止與公共程式碼匹配的建議。瞭解更多關於\",\n                    \"code suggestions\": \"程式碼建議\",\n                    \"Allowed\": \"允許\",\n                        \"GitHub Copilot will show suggestions matching public code.\": \"GitHub Copilot 將顯示與公共程式碼匹配的建議。\",\n                    \"Blocked\": \"阻止\",\n                        \"GitHub Copilot won't show suggestions matching public code.\": \"GitHub Copilot 不會顯示與公共程式碼匹配的建議。\",\n                \"Allow GitHub to use my data for product improvements\": \"允許 GitHub 將數據用於產品改進\",\n                //\"Allow GitHub to use my code snippets from the code editor for product improvements\": \"允許 GitHub 將程式碼編輯器中的程式碼片段用於產品改進\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for product improvements. More information in the\": \"允許GitHub、其關聯公司和第三方使用我的數據，包括提示、建議和程式碼片段，以改進產品。更多信息請查看\",\n                    //\"Allow GitHub, its affiliates and third parties to use my code snippets to research and improve GitHub Copilot suggestions, related models and product features. More information in the\": \"允許 GitHub、其附屬機構和第三方使用我的程式碼片段來研究和改進 GitHub Copilot 建議、相關模型和產品功能。更多\",\n                    \"About GitHub Copilot privacy.\": \"關於 GitHub Copilot 隱私的信息。\",\n                \"Allow GitHub to use my data for AI model training\": \"允許 GitHub 將數據用於訓練 AI 模型\",\n                    \"Allow GitHub, its affiliates and third parties to use my data, including Prompts, Suggestions, and Code Snippets, for AI model training. More information in the\": \"允許GitHub、其關聯公司和第三方使用我的數據，包括提示、建議和程式碼片段，以訓練 AI 模型。更多信息請查看\",\n                \"Copilot can search the web\": \"網絡搜索\",\n                    \"Copilot can answer questions about new trends and give improved answers, via Bing. See\": \"Copilot 可以回答有關新趨勢的問題並給出改進的答案，通過必應。請參閱\",\n                    \"Microsoft Privacy Statement\": \"微軟隱私聲明\",\n\n                    \"GitHub Copilot will answer questions about new trends and give improved answers\": \"GitHub Copilot 將回答有關新趨勢的問題並給出改進的答案\",\n                    \"GitHub Copilot won't answer questions about new trends and give improved answers\": \"GitHub Copilot 將不會回答有關新趨勢的問題並給出改進的答案\",\n                    \"Select an option\": \"選擇\",\n                        \"You will have access to the feature\": \"您將能夠訪問此功能\",\n                        \"You won’t have access to the feature\": \"您將不能訪問此功能\",\n                \"Learn more about how GitHub Copilot serves OpenAI GPT-5-Codex and confirm compatibility with your IDE in our documentation.\": \"瞭解更多關於 GitHub Copilot 如何為 OpenAI GPT-5-Codex 提供服務，並確認與您的 IDE 的兼容性。\",\n                \"Dashboard entry point\": \"儀表板入口\",\n                    \"Allows instant chatting when landing on GitHub.com\": \"允許登錄 GitHub.com 時即時聊天\",\n                \"Copilot code review\": \"Copilot 程式碼審查\",\n                    \"Use Copilot to\": \"使用 Copilot\",\n                    \"review your code\": \"審查程式碼\",\n                    \"and generate\": \"並生成\",\n                    \"pull request summaries\": \"拉取請求總結\",\n\n                    \"Automatically request Copilot code review\": \"自帶請求 Copilot 程式碼審查\",\n                        \"Use Copilot to automatically review all the pull requests you've created.\": \"使用 Copilot 自動審查您創建的拉取請求。\",\n\n            \"For more information about the data your organization receives regarding your use of GitHub Copilot, please review\": \"如需瞭解貴機構在使用 GitHub Copilot 時會收到哪些數據，請查看\",\n                \"GitHub's Privacy Statement\": \"GitHub 的《隱私聲明》\",\n            \"It can take up to 30 minutes for the changes to take effect. Restart your code editor for the changes to take effect immediately.\": \"更改可能需要 30 分鐘才能生效。重新啟動程式碼編輯器，更改會立即生效。\",\n\n            \"Visibility\": \"可見度\",\n                \"Show Copilot\": \"顯示 Copilot\",\n                \"Enable Copilot for all GitHub features, including navigation bar, search, and dashboard.\": \"為所有 GitHub 功能啟用 Copilot，包括導航欄、搜索和儀表板。\",\n                \"When disabled, Copilot will be hidden and unavailable. This setting does not apply to Copilot search on GitHub Docs.\": \"禁用後，Copilot 將隱藏且不可用。此設置不適用於 GitHub Docs 中的 Copilot 搜索。\",\n\n        // 專業版\n            // 頂部提醒\n                \"It appears you are not eligible to sign up to GitHub Copilot for free\": \"您似乎沒有資格免費註冊 GitHub Copilot\",\n            \"Your GitHub Copilot setup is incomplete. Select your preferences below to start using GitHub Copilot.\": \"您的 GitHub Copilot 設置不完整。請在下面選擇您的偏好，開始使用 GitHub Copilot。\",\n\n            \"GitHub Copilot Pro is active for your account\": \"您的 GitHub Copilot Pro 帳戶已激活\",\n                \"You currently have an active\": \"您當前擁有有效的\",\n                \"Copilot Pro subscription\": \"GitHub Copilot Pro 訂閱\",\n                \"Get started by installing the extension in your preferred IDE.\": \"首先在您首選的 IDE 中安裝擴展。\",\n                \"Get started by installing the extension in your preferred environment.\": \"首先在您首選環境中安裝擴展。\",\n                \"Copilot in your IDE\": \"集成在 IDE\",\n                \"Copilot in the CLI\": \"在終端中使用\",\n                \"Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用\",\n                \"More features\": \"更多功能\",\n\n            \"Premium requests\": \"高級請求\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. You can enable additional premium requests in the\": \"請注意，顯示的使用百分比可能會有延遲。您計劃的高級請求權限將在下個月初重置。您可以在以下位置啟用額外的高級請求：\",\n                \"Billing settings\": \"賬單設置\",\n                \"Please note that there may be a delay in the displayed usage percentage. The premium request entitlement for your plan will reset at the start of next month. To enable additional premium requests,\": \"請注意，顯示的使用百分比可能會有延遲。您計劃的高級請求權限將在下個月初重置。要啟用額外的高級請求，請\",\n                \"update your Copilot premium request budget\": \"更新您的 Copilot 高級請求預算\",\n\n            \"Features\": \"功能\",\n                // \"Copilot in github.com\": \"在 github.com 中使用 Copilot\",\n                    //\"You can use Copilot Chat in Github.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 Github.com 中使用 Copilot Chat，也可以使用 Copilot 拉取請求和所有預覽功能。\",\n                    \"You can use Copilot Chat in GitHub.com, Copilot for pull requests, and all of the preview features.\": \"您可以在 GitHub.com 中使用 Copilot Chat，Copilot 拉取請求和所有預覽功能。\",\n                    \"You can use Copilot Chat in GitHub.com and Copilot for pull requests. Copilot code review and preview features are only available for paid licenses.\": \"您可以在 GitHub.com 上使用 Copilot Chat，也可以在拉取請求中使用 Copilot。Copilot 的程式碼審查和預覽功能僅對付費許可證用戶開放。\",\n\n                // \"Copilot in the CLI\": \"在終端中使用\",\n                    \"You can use\": \"您可以\",\n                    \"GitHub Copilot for assistance in terminal\": \"GitHub Copilot 終端輔助工具\",\n                \"Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"GitHub Copilot Chat in the IDE\": \"在 IDE 中使用 Copilot Chat\",\n                    \"to explain a piece of code, propose bug fixes, or generate unit tests in a chat interface from your editor.\": \"在編輯器的聊天界面上解釋程式碼、提出錯誤修復建議或生成單元測試。\",\n                \"Copilot Chat in GitHub Mobile\": \"在 GitHub Mobile 中使用 Copilot Chat\",\n                    \"personalized to a codebase.\": \"，個性化程式碼。\",\n                \"Copilot in GitHub Desktop\": \"在 GitHub Desktop 中使用\",\n                    \"GitHub Copilot for assistance in GitHub Desktop\": \"在 GitHub Desktop 中獲得 Copilot 的協助\",\n                \"Automatic Copilot code review\": \"自動 Copilot 程式碼審查\",\n                    \"Copilot will automatically review your pull requests.\": \"Copilot 將自動審查您的拉取請求。\",\n                    \"Learn more about configuring automatic code reviews.\": \"瞭解如何配置自動程式碼審查。\",\n                \"Copilot coding agent\": \"Copilot 編程智能體\",\n                    \"With Copilot coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用 Copilot 編程智能體，您可以將任務委託給 Copilot，從而讓您專注於最具創造性的、複雜且影響深遠的工作。只需將問題分配給 Copilot，等待智能體請求您審查，然後在拉取請求中留下反饋以進行迭代。\",\n                    \"Delegate tasks to Copilot coding agent in repositories where it is enabled\": \"將任務委託給已啟用 Copilot 編程智能體的倉庫\",\n                \"MCP servers in Copilot\": \"Copilot 中的 MCP 服務器\",\n                    \"Connect MCP servers to Copilot in all Copilot editors and Coding Agent.\": \"在所有 Copilot 編輯器和編程智能體中連接 MCP 服務器。\",\n                // Grok\n                    \"If enabled, you can access and send data to xAI Grok Code Fast 1.\": \"若啟用，您可以訪問 xAI Grok Code Fast 1 並發送數據。\",\n                \"Copilot-generated commit messages\" : \"Copilot 生成的提交消息\",\n                    \"Allow Copilot to suggest commit messages when you make changes on GitHub.com.\": \"允許 Copilot 在您於 GitHub.com 上進行更改時提供提交消息建議。\",\n                    \"Learn more about Copilot-generated commit messages.\": \"瞭解更多關於 Copilot 生成的提交消息。\",\n                \"Copilot Spaces\": \"Copilot 空間\",\n                    \"If enabled, you can view and create\": \"若啟用，您可以查看和創建\",\n                    \"Copilot Spaces\": \"Copilot 空間\",\n                    \". When disabled, you cannot view or create any Copilot Spaces.\": \"。當禁用時，您無法查看或創建任何 Copilot 空間。\",\n                \"Choose which repositories Copilot coding agent should be enabled in. Copilot coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"選擇要在其中啟用 Copilot 編程智能體的倉庫。Copilot 編程智能體僅在為該倉庫啟用並符合 Copilot 許可證政策的情況下可用。\",\n                \"Copilot Spaces Individual Access\":\"Copilot Spaces 個人訪問權限\",\n                    \"If enabled, you can create individually owned\":\"若啟用，您可以創建個人擁有的\",\n                    \"Copilot Spaces\": \"Copilot 空間\",\n                    \". When disabled, you cannot create individual spaces.\":\"。當禁用時，您無法創建個人空間。\",\n                \"Copilot Spaces Individual Sharing\":\"Copilot Spaces 個人分享\",\n                    \"If enabled, you can share individually owned\": \"若啟用，您可以分享個人擁有的\",\n                    \"Copilot Spaces\": \"Copilot 空間\",\n                    \". When disabled, you cannot share individual spaces.\":\"。當禁用時，您無法分享個人空間。\",\n\n\n\n        // 編程智能體(預覽 https://github.com/settings/copilot/coding_agent\n            // 頂部提示\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以為其他用戶啟用 Copilot 編程智能體，但由於您沒有 Copilot Pro+ 或 Copilot 企業版許可證，因此無法向 Copilot 分配任務。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because the Copilot coding agent policy has been disabled by an administrator.\":  \"您可以為其他用戶啟用 Copilot 編程智能體，但由於管理員已禁用 Copilot 編程智能體策略，您將無法向 Copilot 分配任務。\",\n                \"You can enable Copilot coding agent for other users, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro, Copilot Pro+, Copilot Business or Copilot Enterprise license.\": \"雖然您可以為其他用戶啟用 Copilot 編碼代理，但由於您未持有 Copilot Pro、Copilot Pro+、Copilot Business、Copilot Enterprise 許可證，因此無法向 Copilot 分配任務。\",\n\n            \"With Coding agent, you can delegate tasks to Copilot, freeing you to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request your review, then leave feedback on the pull request to iterate.\": \"使用編程智能體，您可以將任務委派給 Copilot，從而讓您專注於最具創造性的、複雜且影響深遠的工作。只需將問題分配給 Copilot，等待智能體請求您審查，然後在拉取請求中留下反饋以進行迭代。\",\n                \"Learn more in the docs.\": \"詳情\",\n\n            \"Repository access\": \"倉庫訪問\",\n                \"Choose which repositories Coding agent should be enabled in. Coding agent will only be available where it is enabled for the repository and in the Copilot license policies.\": \"選擇要啟用編程智能體的倉庫。編程智能體僅在為該倉庫啟用並符合 Copilot 許可證政策的情況下可用。\",\n\n                \"No repositories\": \"無倉庫\",\n                // 所有\n                    \"Include all current and future repositories\": \"包括所有當前和未來的倉庫\",\n                \"Only selected repositories\": \"手動選擇\",\n                    \"Applies only to specifically selected repositories\": \"僅適用於您選擇的倉庫\",\n\n                    \"Search or filter\": \"搜索或篩選\",\n                        \"Mirror\": \"鏡像\",\n                        \"Custom properties\": \"自定義屬性\",\n                        \"Language\": \"語言\",\n                        \"License\": \"許可證\",\n                        \"Exclude\": \"排除\",\n\n                    \"Select all\": \"全選\",\n\n                    \"of\": \"/\",\n                    \"items shown.\": \"倉庫顯示。\",\n                    \"Use the search to find specific items\": \"搜索查找特定倉庫\",\n\n                    \"Select\": \"選擇\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 編程智能體需遵守\",\n                \"pre-release terms\": \"預發行條款\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Outside collaborator on (\\d+) repositor(y|ies)/, \"$1 個倉庫的外部協作者\"],\n        [/Member and collaborator on (\\d+) repositor(y|ies)/, \"$1 個倉庫的成員和協作者\"],\n        [/Upgrade for higher limits, premium models, AI reviews. Free responses reset in (\\d+) days.?/, \"升級以獲取更高的限制、高級模型和 AI 審核。免費額度將在 $1 天內重置。\"], // 免費版額度\n        [/You can use the latest (.+) model\\./, \"您可以使用最新的 $1 模型。\"],\n        [/Learn more about how GitHub Copilot serves (.+)\\./, \"瞭解更多關於 GitHub Copilot 如何為 $1 提供服務。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 編程智能體\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/pages\"] = { // 設置 - GitHub Pages\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置菜單\n\n        // GitHub Pages https://github.com/settings/pages\n            \"Verified domains\": \"經驗證的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"There are no verified domains.\": \"暫無經驗證的域名\",\n            \"There are no verified domains for this organization.\": \"此組織暫無經驗證的域名\", // 組織設置\n            \"Verify domains to restrict who can publish GitHub Pages on them.\": \"驗證域名以限制誰可以在上面發佈 GitHub Pages。\",\n            \"One of your domains is unverified. Please verify it to prevent others from claiming it for their Pages sites.\": \"您添加的域名之一未經驗證，請對其進行驗證，以防止其他人在其主頁網站上聲明該信息。\",\n            \"Please verify your domain\": \"請驗證您的域名\",\n            \"Continue verifying\": \"繼續驗證\",\n            \"Review verification steps\": \"查看驗證步驟\",\n\n            // 域名刪除對話框\n            \"Delete verified domain\": \"刪除已驗證的域名\",\n            \"This is a destructive action. Your GitHub Pages sites may lose their custom domains.\": \"這是一個破壞性的操作，您的 GitHub Pages 網站可能會失去自定義域名。\",\n            \"Your GitHub Pages sites may be unpublished from their custom domains if another organization claims ownership of this domain.\": \"如果其他組織聲稱擁有此域名的所有權，您的 GitHub Pages 網站可能會被從此自定義域名中取消發佈。\",\n            \"Please type\": \"請輸入\",\n            \"to confirm.\": \"進行確認\",\n            \"I understand, delete verified domain\": \"我明白了，依然刪除已驗證的域名\",\n\n        // GitHub Pages - 添加域名 https://github.com/settings/pages_verified_domains/new\n            \"Add a verified domain\": \"經驗證的域名\",\n            \"What domain would you like to add?\": \"您想添加什麼域名？\",\n            \"Add domain\": \"添加域名\",\n            \"Domain name has already been added\": \"域名已添加\",\n            \"Add a DNS TXT record\": \"添加 DNS TXT 記錄\",\n            \"Before we can verify\": \"在我們驗證\",\n            \", you'll need to complete these steps:\": \" 之前，您需要完成以下步驟：\",\n            \"Create a TXT record in your DNS configuration for the following hostname:\": \"在 DNS 配置中為以下主機創建 TXT 記錄：\",\n            \"Use this code for the value of the TXT record:\": \"使用以下程式碼作為 TXT 記錄的值：\",\n            \"Wait until your DNS configuration changes. This could take up to 24 hours to propagate.\": \"等待您的 DNS 變更解析生效，最長可能需要 24 小時。\",\n            \"Verify\": \"驗證\",\n            \"Copy verification steps\": \"複製驗證步驟\",\n            \"Your domain is verified. No further action is needed.\": \"您的域名已驗證，無需其它操作。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Successfully verified/, \"已成功驗證\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"orgs/settings/pages\"] = I18N[\"zh-TW\"][\"settings/pages\"];\n\nI18N[\"zh-TW\"][\"settings/replies\"] = { // 設置 - 快捷回覆\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Saved replies 快捷回覆 https://github.com/settings/replies\n            \"Saved replies are re-usable text snippets that you can use throughout GitHub comment fields. Saved replies can save you time if you’re often typing similar responses.\": \"快捷回覆是可重複使用的文本片段，您可以在整個 GitHub 評論區使用。如果您經常輸入類似的回覆，快捷回覆可以節省您的時間。\",\n            \"Learn more about working with saved replies\": \"瞭解更多關於使用快捷回覆的信息\",\n            \"No saved replies yet.\": \"暫時沒有快捷回覆。\",\n            \"Add a saved reply\": \"添加快捷回覆\",\n            \"Saved reply title\": \"快捷回覆的標題\",\n            \"Add a short title to your reply\": \"為您的快捷回覆添加簡短的標題\",\n            \"Add your saved reply\": \"添加您的快捷回覆\",\n            \"Add saved reply\": \"添加快捷回覆\",\n            \"Your saved reply was created successfully.\": \"您的快捷回覆已成功創建。\",\n            \"Edit saved reply\": \"編輯快捷回覆\",\n            \"Update saved reply\": \"更新快捷回覆\",\n            \"Your saved reply was updated successfully.\": \"您的快捷回覆已成功更新。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Saved replies\": \"快捷回覆\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/security_analysis\"] = { // 設置 - 程式碼安全性與分析\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 程式碼安全性與分析 https://github.com/settings/security_analysis\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repositories.\": \"安全和分析功能有助於確保您的倉庫安全和更新。通過啟用這些功能，您授予我們對您的倉庫執行只讀分析的權限。\",\n\n            \"User\": \"用戶\",\n                \"Security and analysis features help keep you secure and updated, wherever you are.\": \"無論您身在何處，安全和分析功能都可以幫助您保持安全並及時更新。\",\n\n                \"Keep your public pushes safe with push protection\": \"通過推送保護確保您的公共推送安全\",\n                \"GitHub will enable push protection for all GitHub Free individuals in January 2024. Enable below to try it now in beta.\": \"GitHub 將於 2024 年 1 月為所有 GitHub 免費用戶啟用推送保護。在下面啟用以立即在測試版中嘗試。\",\n                    \"Dismiss\": \"忽略\",\n\n                \"Push protection for yourself\": \"啟用推送保護\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的機密\",\n                    \"across all public repositories on GitHub.\": \"涵蓋 GitHub 上的所有公共倉庫。\",\n\n                    // 對話框\n                        \"Enable push protection for yourself\": \"為自己啟用推送保護\",\n                            \"Pushes that contain secrets will be blocked on public repositories. You'll have the option to bypass the block.\": \"包含機密的推送將在公共倉庫中被阻止。您可以選擇繞過該阻止。\",\n                            \"Enable push protection\": \"啟用推送保護\",\n\n                        \"Disable push protection for yourself\": \"為自己禁用推送保護\",\n                            \"Pushes that contain secrets will not be blocked.\": \"包含機密的推送將不會被阻止。\",\n                            \"Disable push protection\": \"禁用推送保護\",\n\n                        // 頂部提醒\n                            // [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了 $1 的倉庫的安全設置。\"],\n\n            // 倉庫\n                 \"Security and analysis features help keep your repositories secure and updated.\": \"安全和分析功能有助於確保您的程式碼倉庫安全且保持更新。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"啟用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞報告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允許您的社區向維護者和倉庫所有者私下報告潛在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"瞭解更多關於私下漏洞報告的信息\",\n                \"Automatically enable for new public repositories\": \"為新公共倉庫自動啟用\",\n\n                // 對話框\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞報告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將在 $1 的所有公共倉庫中禁用私下漏洞報告。\"],\n                        \"Enable by default for new public repositories\": \"默認啟用新公共倉庫\",\n\n                    \"Enable private vulnerability reporting\": \"啟用私下漏洞報告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將在 $1 的所有公共倉庫中啟用私下漏洞報告。\"],\n\n            \"Dependency graph\": \"依賴項關係圖\",\n                \"Understand your dependencies.\": \"瞭解您的依賴項。\",\n                \"Automatically enable for new private repositories\": \"為新私有倉庫自動啟用\",\n\n                // 對話框\n                    \"Enable dependency graph\": \"啟用依賴項關係圖\",\n                        \"You're about to enable dependency graph on all your private repositories.\": \"您即將啟用您所有私有倉庫上的依賴項關係圖。\",\n                        \"Enable by default for new private repositories\": \"默認為新私有倉庫啟用\",\n\n                    \"Disable dependency graph\": \"禁用依賴項關係圖\",\n                        \"You're about to disable dependency graph on all your private repositories. This will also disable Dependabot alerts and Dependabot security updates on those repositories.\": \"您即將禁用您所有私有倉庫上的依賴項關係圖。這也將禁用這些倉庫的 Dependabot 警報和 Dependabot 安全更新。\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依賴項的安全和最新\",\n                \"Learn more about Dependabot\": \"瞭解更多關於 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警報\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影響您的依賴項的漏洞警報，並手動生成 Dependabot 拉取請求以解決這些漏洞。\",\n                        \"Configure alert notifications\": \"配置警報通知\",\n                    \"Automatically enable for new repositories\": \"為新倉庫自動啟用\",\n\n                    // 對話框\n                        \"Enable Dependabot alerts\": \"啟用 Dependabot 警報\",\n                            \"You're about to enable Dependabot alerts on all your repositories. Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled.\": \"您即將啟用您所有倉庫上的 Dependabot 警報。Dependabot 警報需要依賴項關係圖，因此我們還將為所有倉庫開啟它。啟用 Dependabot 警報時不會發送任何通知。\",\n                                \"Enable by default for new repositories\": \"默認為新倉庫啟用\",\n\n                        \"Disable Dependabot alerts\": \"禁用 Dependabot 警報\",\n                            \"You're about to disable Dependabot alerts on all your repositories. This will also disable Dependabot security updates on those repositories.\": \"您即將禁用您所有倉庫上的 Dependabot 警報。這也將禁用這些倉庫的 Dependabot 安全更新。\",\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"啟用後，Dependabot 會自動嘗試打開拉取請求，以使用可用補丁解決每個打開的 Dependabot 警報。\",\n                        \"Dependabot rules\": \"Dependabot 規則\",\n\n                    // 對話框\n                        \"Enable Dependabot security updates\": \"啟用 Dependabot 安全更新\",\n                            \"You're about to enable Dependabot security updates on all your repositories. Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories.\": \"您即將啟用您所有倉庫上的 Dependabot 安全更新。Dependabot 安全更新需要依賴項關係圖和 Dependabot 警報，因此我們也將為所有倉庫啟用他們。\",\n\n                        \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                            \"You're about to disable Dependabot security updates on all your repositories.\": \"您即將禁用您所有倉庫上的 Dependabot 安全更新。\",\n\n                \"Grouped security updates\": \"分組安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"將解決可靠警報的所有可用更新分組為一個拉取請求（每個包管理器和需求清單目錄）。此選項可能會被 dependentabot.yml 中指定的分組規則覆蓋 -\",\n                    \"Learn how to group updates.\": \"瞭解如何配置分組更新\",\n\n                    // 對話框\n                        \"Enable grouped security updates\": \"啟用分組安全更新\",\n                            \"You're about to enable grouped security updates on all your repositories. Grouped security updates require the dependency graph, Dependabot alerts and Dependabot security updates, so we'll also turn that on for all repositories.\": \"您即將啟用您所有倉庫上的分組安全更新。分組安全更新需要依賴項關係圖、Dependabot 警報和 Dependabot 安全更新，因此我們也將為所有倉庫啟用他們。\",\n\n                        \"Disable grouped security updates\": \"禁用分組安全更新\",\n                            \"You're about to disable grouped security updates on all your repositories.\": \"您即將禁用您所有倉庫上的分組安全更新。\",\n\n                \"Dependabot on Actions runners\": \"Dependabot 應用於操作運行器\",\n                    \"Run Dependabot security and version updates on Actions runners.\": \"在操作運行器上運行 Dependabot 安全和版本更新。\",\n\n                    // 對話框\n                        \"Enable dependabot on actions\": \"在操作中啟用 Dependabot\",\n                            \"You're about to enable dependabot on actions on all your repositories. Dependabot on actions requires Actions so we'll also turn that on for all repositories.\": \"您將要在所有倉庫操作中啟用 dependabot 。操作中的 Dependabot需要操作，因此我們還將為所有倉庫啟用它。\",\n\n                        \"Disable dependabot on actions\": \"在操作中禁用 Dependabot\",\n                            \"You're about to disable dependabot on actions on all your repositories.\": \"您將要在所有倉庫操作中禁用 Dependabot。\",\n\n                \"Dependabot on self-hosted runners\": \"Dependabot 應用於自託管運行器\",\n                    \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自託管運行程式上運行 Dependabot 安全和版本更新。\",\n\n                    // 對話框\n                        \"Enable dependabot self-hosted\": \"在自託管運行器上啟用 Dependabot\",\n                            \"You're about to enable dependabot self-hosted on all your repositories. Dependabot self-hosted depends on Dependabot on Actions so we'll also turn that on for all repositories.\": \"您將在所有倉庫上啟用 dependabot 自託管。Dependabot 自託管依賴於操作中的 Dependabot，因此我們還將為所有倉庫啟用它。\",\n\n                        \"Disable dependabot self-hosted\": \"在自託管運行器上禁用 Dependabot\",\n                            \"You're about to disable dependabot self-hosted on all your repositories.\": \"您將在所有倉庫上禁用 dependabot 自託管。\",\n\n            \"Secret scanning\": \"機密掃描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有關檢測到的機密、密鑰或其他令牌的警報。\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 會隨時向合作伙伴發送公共倉庫中檢測到的機密警報。\",\n                \"Learn more about partner patterns\": \"瞭解更多關於合作伙伴模式的信息\",\n\n                // 對話框\n                    \"Enable secret scanning for eligible repositories?\": \"啟用符合條件的倉庫的機密掃描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"這將為所有公共倉庫啟用機密掃描。\",\n                        \"Enable for eligible repositories\": \"啟用符合條件的倉庫\",\n\n                    \"Disable secret scanning?\": \"禁用機密掃描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"這將禁用所有倉庫的機密掃描。\",\n                        \"Disable secret scanning\": \"禁用機密掃描\",\n\n                \"Push protection\": \"推送保護\",\n                    // \"Block commits that contain\": \"阻止提交，包含\",\n                    // \"supported secrets\": \"受支持的機密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自動啟用對添加到機密掃描的倉庫進行掃描\",\n\n                    // 對話框\n                        \"Enable push protection for eligible repositories?\": \"啟用符合條件的倉庫的推送保護？\",\n                            \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"這將為所有已啟用秘密掃描的倉庫啟用推送保護。\",\n\n                        \"Disable push protection?\": \"禁用推送保護？\",\n                            \"This will disable push protection on all repositories where it is enabled.\": \"這將禁用所有倉庫的推送保護。\",\n                            \"You can still enable push protection at the repository level.\": \"您仍然可以在倉庫級別啟用推送保護。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將在 $1 的所有公共倉庫中禁用私下漏洞報告。\"],\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將在 $1 的所有公共倉庫中啟用私下漏洞報告。\"],\n        [/Security settings updated for ([^ ]+)\\'s repositories./, \"更新了$1 的倉庫的安全設置。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security & analysis\": \"安全與分析\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/installations\"] = { // 設置 - 應用/安裝的 GitHub 應用\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Installed GitHub Apps\": \"安裝的 GitHub 應用\",\n        \"Authorized GitHub Apps\": \"授權的 GitHub 應用\",\n        \"Authorized OAuth Apps\": \"授權的 OAuth 應用\",\n\n        // 安裝的 GitHub 應用 https://github.com/settings/installations\n            // 頂部提醒\n                // [/You're all set! (.*) has been uninstalled./, \"一切就緒！$1 已被卸載。\"],\n                // [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就緒！卸載 “$1” 應用的任務已排隊等候。\"],\n                // [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安裝在 $2 賬戶上。\"],\n                // [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$1 賬戶的 $1 已更新。\"],\n\n            // \"Installed GitHub Apps\": \"安裝的 GitHub 應用\",\n                \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 應用通過商業、開源和自主開發的工具來增強和擴展您在 GitHub 上的工作流程。\",\n                \"Permission updates requested.\": \"待處理的 GitHub 權限請求\",\n\n            \"Pending GitHub Apps installation requests\": \"待處理的 GitHub 應用安裝請求\", // 組織設置\n                \"Members in your organization can request that GitHub Apps be installed. Pending requests are listed below.\": \"您組織中的成員可以請求安裝 GitHub 應用。下面列出了待處理的請求。\",\n\n            \"No installed GitHub Apps\": \"沒有已安裝的 GitHub 應用\",\n            \"You have no GitHub Apps installed on this account.\": \"此賬戶上沒有安裝任何 GitHub 應用。\",\n            \"Configure\": \"配置\",\n            \"Suspended\": \"已暫停\",\n            \"Visit Marketplace\": \"訪問市場\",\n            \"My GitHub Apps\": \"我的 GitHub 應用\",\n\n        // 安裝的 GitHub 應用設置 https://github.com/settings/installations/<id>\n            // 頂部提醒\n                // [/Your installation was suspended by you on/, \"您的安裝已暫停於\"],\n                \"Your app has been unsuspended\": \"您的應用已被取消暫停\",\n\n            \"Installed\": \"安裝於\",\n            \"Developed by\": \"開發者\",\n            \"App settings\": \"應用設置\",\n            \"Permissions\": \"權限\",\n                // [/is requesting an update to its permissions./, \"正在請求更新其權限。\"],\n                \"Read\": \"讀取\",\n                \"write\": \"寫入\",\n                \"access to metadata\": \"元數據的權限\",\n                \"Review request\": \"審核請求\",\n                \"Access public information (read-only)\": \"訪問公開信息（只讀）\",\n                \"Access user email addresses (read-only)\": \"訪問用戶電子郵件地址（只讀）\",\n                \"Read all user profile data\": \"讀取所有用戶個人資料數據\",\n                \"Create gists\": \"創建程式碼片段\",\n                \"Full control of private repositories\": \"完全控制私有倉庫\",\n                \"Update github action workflows\": \"更新 GitHub Action 工作流\",\n                \"Update all user data\": \"更新所有用戶數據\",\n                \"Full control of codespaces\": \"完全控制 Codespaces\",\n                \"Read all user profile data\": \"讀取所有用戶個人資料數據\",\n\n            \"Repository access\": \"倉庫訪問權限\",\n            \"All repositories\": \"所有倉庫\",\n                \"This applies to all current and future repositories owned by the resource owner. Also includes public repositories (read-only).\": \"這適用於資源所有者擁有的所有當前和未來的倉庫。還包括公共倉庫（只讀）。\",\n            \"Only select repositories\": \"僅選定的倉庫\",\n                \"Select at least one repository. Also includes public repositories (read-only).\": \"至少選擇一個倉庫。還包括公共倉庫（只讀）。\",\n                // [/Selected (\\d+) repositor(y|ies)./, \"選擇了 $1 個倉庫。\"],\n            \"Select repositories\": \"選擇倉庫\",\n            \"Search for a repository\": \"搜索倉庫\",\n\n            \"Danger zone\": \"危險區\",\n            \"Suspend your installation\": \"暫停使用\",\n            \"This will block the app access to your resources.\": \"這將阻止應用訪問您的資源。\",\n            \"Suspend\": \"暫停\",\n                // 取消按鈕 提醒信息\n                \"Are you sure you want to suspend this GitHub App?\": \"您確定要暫停此 GitHub 應用嗎？\",\n            \"This will remove the app and revoke access to all resources.\": \"這將刪除應用並撤銷對所有資源的訪問權限。\",\n            // [/Uninstall \"(.*)\"/, \"卸載 “$1”\"],\n            \"Uninstall\": \"卸載\",\n                // 取消按鈕 提醒信息\n                // [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作無法撤消。您確定要從 1 個倉庫中卸載此 GitHub 應用嗎？\"],\n            \"Unsuspend your installation\": \"取消暫停\",\n                \"This grant the app access to your resources.\": \"這將授予應用訪問您的資源。\",\n                \"Unsuspend\": \"取消暫停\",\n\n            \"Report abuse\": \"舉報濫用\",\n            \"Revoke\": \"撤銷\",\n            \"Read more about connecting with third-party applications at\": \"瞭解更多關於與第三方應用連接的信息，請訪問\",\n            \"GitHub Help\": \"GitHub 幫助\",\n\n        // 安裝的 GitHub 應用授權更新 https://github.com/settings/installations/<id>/permissions/update\n            // [/The (.*) app by/, \"$1 應用（由\"],\n            \"is requesting updated permissions\": \"創建）正在請求更新權限\",\n\n            \"Read and write\": \"讀寫權限\",\n            \"Read-only\": \"只讀權限\",\n            \"Admin\": \"管理員權限\",\n            \"access to\": \"針對\",\n            \"New request\": \"新請求\",\n            \"Show unchanged permissions\": \"顯示未更改的權限\",\n            \"Hide unchanged permissions\": \"隱藏未更改的權限\",\n            \"Accept new permissions\": \"接受新權限\",\n            // [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您選擇不接受新權限，“$1” 應用將保留其當前權限。\"],\n\n        // 授權的 GitHub 應用 https://github.com/settings/apps/authorizations\n            // \"Authorized GitHub Apps\": \"授權的 GitHub 應用\",\n            \"No authorized applications\": \"無授權申請\",\n            \"You have no applications authorized to access your account.\": \"您沒有授權訪問您的賬戶的應用。\",\n\n        // 授權的 OAuth 應用 https://github.com/settings/applications\n            // \"Authorized OAuth Apps\": \"授權的 OAuth 應用\",\n            \"You have granted\": \"您已經授權\",\n            \"access to your account.\": \"訪問您的賬戶。\",\n            \"Revoke all\": \"撤銷全部\",\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Alphabetical\": \"按字母排列\",\n            \"Recently used\": \"最近使用的\",\n            \"Least recently used\": \"最近使用最少的\",\n\n            \"Never used · Owned by\": \"從未使用 · 作者\",\n            \"Last used within the last week · Owned by\": \"最後一次使用是最近 1 周之內 · 作者\",\n\n            \"Report abuse\": \"舉報濫用\",\n            \"Revoke\": \"撤銷\",\n\n            // 撤銷對話框\n            \"Are you sure you want to revoke authorization?\": \"您確定要撤銷授權嗎？\",\n            \"I understand, revoke access\": \"我明白了，依然撤銷訪問\",\n\n            // 全部撤銷對話框\n            \"Are you sure you want to revoke access for all applications?\": \"您確定要撤銷對所有應用的訪問權限嗎？\",\n            \"This will revoke access for\": \"這將撤銷訪問\",\n            \"all third-party\": \"所有第三方\",\n            \"OAuth applications. This action cannot be undone.\": \"OAuth 應用。此操作無法撤消。\",\n            \"Any SSH keys created on your behalf by applications will also be deleted.\": \"任何由應用代表您創建的 SSH 密鑰也將被刪除。\",\n            \"Type your username to confirm.\": \"輸入您的用戶名進行確認。\",\n            \"I understand, revoke access for everything\": \"我明白了，依然撤銷對一切的訪問\",\n\n            // 舉報濫用對話框\n            \"Report Abuse\": \"舉報濫用\",\n            \"More options\": \"更多選項\",\n            \"Revoking will deny future access to your account\": \"撤銷授權，將拒絕今後訪問您的賬戶\",\n\n        // 授權的 GitHub 應用授權設置 https://github.com/settings/connections/applications/<client-id>\n        // 授權的 OAuth 應用授權設置 https://github.com/settings/connections/applications/<id>\n            \"Never used\": \"從未使用\",\n            \"Last used within the last week\": \"最後一次使用是最近一週之內\",\n\n            \"Developed by\": \"開發者:\",\n            \"Permissions\": \"權限\",\n            \"Revoke access\": \"撤銷授權\",\n                \"Are you sure you want to revoke authorization?\": \"您確定要撤銷授權嗎？\",\n                    // [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 將無法再訪問 GitHub API。您無法撤銷此操作。\"],\n                \"I understand, revoke access\": \"我明白了，依然撤銷授權\",\n                    \"Revoking…\": \"撤消中…\",\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications you authorize will always have access to public data in your organizations.\": \"應用根據您授予的權限代表您訪問數據。組織可控制允許哪些應用訪問其私人數據。您授權的應用始終可以訪問您組織中的公共數據。\",\n            \"Read about third-party access.\": \"瞭解關於第三方訪問的信息。\",\n\n            \"Organization access\": \"組織權限\",\n                \"Grant\": \"批准\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"該組織允許應用訪問上述權限中所述的組織數據。\",\n                \"Request\": \"請求\",\n                    \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予訪問權限之前，應用無法訪問組織的私有數據或修改其公共數據。\",\n\n        // 組織 OAuth 應用策略設置 /orgs/<orgs-name>/policies/applications/<id>\n            \"approval requested by\": \"請求批准:\",\n            \"Currently:\": \"當前\",\n                \"No private access\": \"無法訪問私有\",\n                \"Approved\": \"已批准\",\n            \"Review third-party application access request\": \"審查第三方應用訪問請求\",\n                \"Grant access\": \"批准訪問\",\n                \"Granting access will give this application the ability to request access to private data in the\": \"授權該應用訪問私有數據在\",\n                \"organization.\": \"組織。\",\n\n                \"Deny access\": \"拒絕訪問\",\n                \"Denying access will remove this application’s ability to request access to private data in the\": \"拒絕該應用訪問數據在\",\n\n            // 頂部提醒\n                // [/(.*) is authorized to access this organization’s resources/, \"$1 已獲授權訪問該組織的資源\"],\n                // [/(.*) is denied access this organization’s resources/, \"$1 被拒絕訪問該組織的資源\"],\n\n            \"Applications act on your behalf to access your data based on the permissions you grant them. Organizations control which applications are allowed to access their private data. Applications authorized by members will always have access to public data in your organization.\": \"應用根據您授予的權限代表您訪問數據。組織可控制允許哪些應用訪問其私有數據。成員授權的應用始終可以訪問組織中的公共數據。\",\n            \"Read about organization OAuth app access restrictions.\": \"瞭解有關組織 OAuth 應用訪問限制的信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Your installation was suspended by you on/, \"您的安裝已暫停於\"],\n        [/This action cannot be undone. Are you sure you want to uninstall this GitHub App from (\\d+) repositor(y|ies)?/, \"此操作無法撤消。您確定要從 $1 個倉庫中卸載此 GitHub 應用嗎？\"],\n        [/Uninstall \"(.*)\"/, \"卸載 “$1”\"],\n        [/You will no longer be able to sign in to ([^ ]+) \\(all administrative privileges will be bestowed upon the owners you choose\\)/, \"您將無法再登錄 $1（所有管理權限都將授予您選擇的所有者）\"],\n        [/(\\d+) applications?/, \"$1 個應用\"],\n        [/([^ ]+) will no longer be able to access your GitHub account. You cannot undo this action./, \"$1 將無法再訪問您的 GitHub 賬戶。您無法撤消此操作。\"],\n        [/([^ ]+) has been revoked from your account./, \"$1 已經從您的賬戶中被撤銷了。\"],\n        [/Last used within the last (\\d+) weeks? · Owned by/, \"最後一次使用是最近 $1 周之內 · 作者\"],\n        [/Last used within the last (\\d+) months? · Owned by/, \"最後一次使用是最近 $1 月之內 · 作者\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"選擇了 $1 個倉庫。\"],\n        [/You're all set! (.*) has been uninstalled./, \"一切就緒！$1 已被卸載。\"],\n        [/You're all set! A job has been queued to uninstall the \\'(.*)\\' app./, \"一切就緒！卸載 “$1” 應用的任務已排隊等候。\"],\n        [/Okay, (.*) was installed on the (@[^ ]+) account./, \"好的，$1 已安裝在 $2 賬戶上。\"],\n        [/Okay, (.*) was updated for the (@[^ ]+) account./, \"好的，$2 賬戶的 $1 已更新。\"],\n        [/Last used within the last (\\d+) weeks?/, \"最後一次使用是最近 $1 周之內\"],\n        [/Last used within the last (\\d+) months?/, \"最後一次使用是最近 $1 月之內\"],\n        [/(.+) will no longer be able to access the GitHub API. You cannot undo this action./, \"$1 將無法再訪問 GitHub API。您無法撤銷此操作。\"],\n        [/is requesting an update to its permissions./, \"正在請求更新其權限。\"],\n        [/The (.*) app by/, \"$1 應用（由\"],\n        [/The (.*) app will retain its current permissions if you choose not to accept the new permissions./, \"如果您選擇不接受新權限，“$1” 應用將保留其當前權限。\"],\n        [/(.*) is authorized to access this organization’s resources/, \"$1 已獲授權訪問該組織的資源\"],\n        [/(.*) is denied access this organization’s resources/, \"$1 被拒絕訪問該組織的資源\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Installed GitHub Apps\": \"已安裝的 GitHub 應用\",\n            \"Authorized GitHub Apps\": \"授權的 GitHub 應用\",\n            \"Authorized OAuth Apps\": \"授權的 OAuth 應用\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"settings/apps/authorizations\"] = I18N[\"zh-TW\"][\"settings/installations\"];\nI18N[\"zh-TW\"][\"settings/applications\"] = I18N[\"zh-TW\"][\"settings/installations\"];\nI18N[\"zh-TW\"][\"settings/connections/applications\"] = I18N[\"zh-TW\"][\"settings/installations\"];\nI18N[\"zh-TW\"][\"orgs/settings/installations\"] = I18N[\"zh-TW\"][\"settings/installations\"];\nI18N[\"zh-TW\"][\"orgs/policies/applications\"] = I18N[\"zh-TW\"][\"settings/installations\"];\n\nI18N[\"zh-TW\"][\"settings/reminders\"] = { // 設置 - 定時提醒\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // 定時提醒 https://github.com/settings/reminders\n            \"Reminders allow you to push certain events to authorized instances of Microsoft Teams or Slack.\": \"提醒功能允許您將特定事件推送到 Microsoft Teams 或 Slack 的授權實例。\",\n            \"To use scheduled reminders, make sure that the Slack or Microsoft Teams integration is installed and up-to-date. If you need help with this, please contact your organization's owner.\": \"要使用定時提醒，請確保已安裝 Slack 或 Microsoft Teams 集成並且是最新版本，如果您需要這方面的幫助，請聯繫您組織的所有者。\",\n            \"Available organizations\": \"可用的組織\",\n            \"Unavailable organizations\": \"不可用的組織\",\n            \"Configure Reminder\": \"配置提醒\",\n            \"No reminders\": \"沒有提醒\",\n            \"Needs installing\": \"需要安裝\",\n\n        // 新的預定提醒 https://github.com/settings/reminders/<orgs-name>\n            \"New scheduled reminder\": \"新建預定提醒\",\n            \"Slack workspace\": \"Slack 工作區\",\n            \"Authorize Slack workspace\": \"授權 Slack 工作區\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Monday\"    : \"週一\",\n                \"Tuesday\"   : \"週二\",\n                \"Wednesday\" : \"週三\",\n                \"Thursday\"  : \"週四\",\n                \"Friday\"    : \"週五\",\n                \"Saturday\"  : \"週六\",\n                \"Sunday\"    : \"週日\",\n            \"Times\": \"時間\",\n                \"Filter\": \"篩選\",\n            \"Review requests assigned to you\": \"審查分配給您的請求\",\n                \"Receive reminders for reviews waiting on you.\": \"接收等待您的審查提醒。\",\n            \"Review requests assigned to your team\": \"審查分配給您團隊的請求\",\n                \"Receive reminders for reviews waiting on your team.\": \"接收等待您的團隊的審查提醒。\",\n            \"Enable real-time alerts\": \"啟用實時警報\",\n                \"Receive immediate Slack messages when certain events happen\": \"當某些事件發生時，會立即收到 Slack 消息\",\n\n            \"You will only receive notifications from public repositories in this organization because the current plan for\": \"您將只收到來自該組織中公共倉庫的通知，因為目前\",\n            \"does not support reminders for private repositories.\": \"的計劃不支持私人倉庫的提醒。\",\n            \"Upgrade to Team\": \"升級為團隊\",\n            \"Create reminder\": \"創建提醒者\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Scheduled reminders\": \"定時提醒\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/security-log\"] = { // 設置 - 安全日誌\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Security log 安全日誌 https://github.com/settings/security-log\n            \"Loading audit log entries…\": \"正在加載日誌條目…\",\n            \"Filters\": \"篩選\",\n                \"Filter audit logs\": \"篩選審計日誌\",\n                \"Yesterday's activity\": \"昨天的活動\",\n                \"Repository management\": \"倉庫管理\",\n                \"Billing updates\": \"賬單更新\",\n                \"Copilot activity\": \"Copilot 活動\",\n                \"Personal access token activity\": \"個人訪問令牌活動\",\n                \"View advanced search syntax\": \"查看高級搜索語法\",\n            \"Filter by Member\": \"按用戶篩選\",\n            \"Filter by Action\": \"按事件篩選\",\n            \"Search audit logs\": \"搜索審計日誌\",\n            \"Search your security log\": \"搜索您的安全日誌\",\n            \"Clear current search query\": \"清除當前的搜索查詢\",\n            \"Events matching search query\": \"搜索查詢匹配結果\",\n            \"Export\": \"導出\",\n            \"Recent events\": \"最近的事件\",\n            \"Unknown IP address\": \"未知 IP 地址\",\n            \"Unknown location\": \"未知位置\",\n            // [/Found (\\d+) events?/, \"發現 $1 個活動\"],\n            \"Newer\": \"新的\",\n            \"Older\": \"舊的\",\n            \"ProTip!\": \"專業提示！\",\n                \"View all events created yesterday\": \"查看昨天創建的所有事件\",\n                \"View all events where you created something\": \"查看所有您創建內容時產生的事件\",\n            \"Country changed from your previous session\": \"國家或地區與上一次會話有所不同\",\n            \"Logged in\": \"登錄\",\n            \"User signed in from an unrecognized device.\": \"用戶從無法識別的設備登錄。\",\n            \"User signed in from an unrecognized device and location.\": \"用戶從無法識別的設備與位置登錄。\",\n            \"New Device Used\": \"使用新設備\",\n            \"Created the repository\": \"創建了倉庫\",\n            \"Deleted the repository\": \"刪除了倉庫\",\n            \"Created GitHub Pages site in\": \"創建了 GitHub Pages 在\",\n            \"Modified GitHub Pages source in\": \"修改了 GitHub Pages 源程式碼在\",\n            \"Created environment\": \"創造環境\",\n            \"Added\": \"添加\",\n            \"to the\": \"至\",\n            \"repository\": \"倉庫\",\n                \"organization with\": \"組織，使用\",\n                \"read\": \"讀取\",\n                \"permission\": \"權限\",\n            \"Added the following repositories to the\": \"添加以下倉庫到\",\n            \"Removed the following repositories from the\": \"刪除以下倉庫到\",\n            \"integration:\": \"集成：\",\n            \"Enabled GitHub Actions for\": \"啟用倉庫操作：\",\n            \"Created a secret for\": \"創建機密：\",\n            \"Created a token for\": \"創建令牌：\",\n            \"Regenerated a token for\": \"重新生成令牌：\",\n            \"Revoked a token for\": \"撤銷令牌：\",\n                \"ending in\": \"結尾\",\n                \"for the\": \"用於\",\n                \"GitHub App\": \"GitHub 應用\",\n\n            \"We couldn’t find any events matching your search.\": \"無匹配結果。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Found (\\d+) events?/, \"發現 $1 個活動\"],\n        [/View ([^ ]+)'s profile/, \"查看 $1 的資料\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Security log\": \"安全日誌\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/sponsors-log\"] = { // 設置 - 贊助日誌\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"settings-menu\"][\"static\"],\n\n        // Sponsorship log 贊助日誌 https://github.com/settings/sponsors-log\n            \"Sponsors log\": \"贊助日誌\",\n            \"New sponsorships, changes, and cancellations\": \"新的贊助、更改和取消\",\n            \"Period:\": \"週期：\",\n            \"Filter activity\": \"篩選活動\",\n            \"All-time\": \"所有時間\",\n            \"Past day\": \"過去一天\",\n            \"Past week\": \"過去一週\",\n            \"Past month\": \"過去一月\",\n            \"Past year\": \"過去一年\",\n            \"No sponsorship activity in this time period\": \"這段時間沒有贊助活動\",\n            \"This is where you can review activity from your sponsorships.\": \"您可以在此處查看您的贊助活動。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sponsorship Log\": \"贊助日誌\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/apps\"] = { // 設置 - 開發者設置/GitHub 應用\n    \"static\": { // 靜態翻譯\n        \"Developer Settings\": \"開發者設置\",\n        \"GitHub Apps\": \"GitHub 應用\",\n        \"OAuth Apps\": \"OAuth 應用\",\n        \"Personal access tokens\": \"個人訪問令牌\",\n            \"Fine-grained tokens\": \"精細化的令牌\",\n            \"Tokens (classic)\": \"令牌（經典）\",\n\n        // GitHub 應用 https://github.com/settings/apps\n            // 頂部提醒\n                \"Job queued to revoke all user tokens\": \"撤銷所有用戶令牌的任務已排隊等待\",\n\n            \"Register a new GitHub App\": \"註冊新的 GitHub 應用\",\n            \"Want to build something that integrates with and extends GitHub?\": \"想要構建與 GitHub 集成和擴展的東西嗎？\",\n            \"New GitHub App\": \"註冊新 GitHub 應用\",\n            \"to get started developing on the GitHub API. You can also read more about building GitHub Apps in our\": \"，開始在 GitHub API 上進行開發。您還可以在我們的文檔中閱讀更多關於構建 GitHub 應用的信息\",\n            \"developer documentation\": \"開發者文檔\",\n            \"A GitHub App can act on its own behalf, taking actions via the API directly instead of impersonating a user. Read more in our\": \"GitHub 應用可以代表自己執行操作，直接通過 API 執行操作，而不是冒充用戶。閱讀我們的更多內容\", // 存在 app時\n\n            // 無應用提示\n                \"No GitHub Apps\": \"無 GitHub 應用\",\n                    \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想創建與 GitHub 集成並擴展 GitHub 的應用程式嗎？註冊一個新的 GitHub 應用程式，開始使用 GitHub API 進行開發。\",\n\n                \"View documentation\": \"查看文檔\",\n\n        // 註冊 GitHub 應用 https://github.com/settings/apps/new\n            \"Register new GitHub App\": \"註冊新 GitHub 應用\",\n            \"GitHub App name\": \"GitHub 應用名稱\",\n            \"The name of your GitHub App.\": \"您的 GitHub 應用的名稱。\",\n            \"Markdown supported\": \"支持 Markdown 語法\",\n            \"This is displayed to users of your GitHub App\": \"展示給 GitHub 應用的使用者\",\n            \"Homepage URL\": \"主頁地址\",\n                \"The full URL to your GitHub App’s website.\": \"GitHub 應用網站的主頁地址\",\n\n            \"Identifying and authorizing users\": \"識別並授權用戶\",\n                \"The full URL to redirect to after a user authorizes an installation.\": \"用戶授權安裝後重定向到的完整地址。\",\n                \"Callback URL documentation\": \"回調地址文檔\",\n                \"Add Callback URL\": \"添加回調地址\",\n\n                \"Callback URL\": \"回調地址\",\n                \"Expire user authorization tokens\": \"用戶授權令牌\",\n                    \"This will provide a\": \"這將提供一個\",\n                    \"which can be used to request an updated access token when this access token expires.\": \"，用於在此訪問令牌到期時，請求更新訪問令牌。\",\n                \"Request user authorization (OAuth) during installation\": \"在安裝期間請求用戶授權 (OAuth)\",\n                    \"Requests that the installing user grants access to their identity during installation of your App\": \"請求用戶在安裝應用期間授予其身份訪問權限。\",\n                    \"Identifying and authorizing users for GitHub Apps documentation\": \"關於 GitHub 應用識別並授權用戶的文檔\",\n                \"Enable Device Flow\": \"啟用設備流\",\n                    \"Allow this GitHub App to authorize users via the Device Flow.\": \"允許此 GitHub 應用通過設備流程授權用戶。\",\n                    \"Read the\": \"閱讀\",\n                    \"Device Flow documentation\": \"設備流程文檔\",\n\n            \"Post installation\": \"安裝完成後\",\n                \"Setup URL (optional)\": \"設置網址 (可選)\",\n                    \"Users will be redirected to this URL after installing your GitHub App to complete additional setup.\": \"用戶在安裝完 GitHub 應用後，會被重定向到這個網址，以完成額外的設置。\",\n                    \"Unavailable when requesting OAuth during installation.\": \"安裝過程中請求 OAuth 時不可用。\",\n                    \"Users will be redirected to the 'User authorization callback URL' to complete additional setup.\": \"用戶將被重定向到 “用戶授權回調網址” 以完成其他設置。\",\n                \"Redirect on update\": \"更新時重定向\",\n                    \"Redirect users to the 'Setup URL' after installations are updated (E.g. repositories added/removed).\": \"在安裝後更新時將用戶重定向到 “設置網址”（例如: 添加/刪除倉庫）。\",\n                    \"Redirect users to the 'User authorization callback URL' after installations are updated (E.g repositories added/removed).\": \"在安裝後更新時將用戶重定向到 “用戶授權回調網址”（例如: 添加/刪除倉庫）。\",\n\n            \"Webhook\": \"Web 鉤子\",\n                \"Active\": \"激活\",\n                    \"We will deliver event details when this hook is triggered.\": \"當鉤子被觸發時，我們將提供事件詳細信息。\",\n                \"Webhook URL\": \"Web 鉤子網址\",\n                    \"Events will POST to this URL. Read our\": \"事件將 POST 到此網址。閱讀\",\n                    \"webhook documentation\": \"關於 Web 鉤子\",\n                    \"for more information.\": \"以獲取更多信息。\",\n                \"Secret\": \"機密\",\n                    \"Read our\": \"閱讀我們\",\n                    \"webhook secret documentation\": \"Web 鉤子機密文檔\",\n\n            \"Permissions\": \"權限\",\n                \"User permissions are granted on an individual user basis as part of the\": \"用戶權限的授予是以單個用戶為基礎的，是一個環節\",\n                \"User authorization flow\": \"用戶授權流程\",\n                \"permissions documentation\": \"權限文檔\",\n                \"for information about specific permissions.\": \"以瞭解關於特定權限的信息。\",\n\n                \"Access:\": \"訪問權限：\",\n                \"Select an access level\": \"選擇訪問級別\",\n                \"No access\": \"禁止訪問\",\n                \"Read-only\": \"只讀\",\n                \"Read and write\": \"讀寫\",\n                \"Admin\": \"管理員\",\n\n                  \"Selected\": \"項被選中\",\n                  \"mandatory\": \"強制\",\n\n                \"Repository permissions\": \"倉庫權限\",\n                    \"Repository permissions permit access to repositories and related resources.\": \"倉庫權限允許訪問倉庫和相關資源。\",\n\n                    \"Actions\": \"操作\",\n                        \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的運行和工件。\",\n                    \"Administration\": \"管理\",\n                        \"Repository creation, deletion, settings, teams, and collaborators.\": \"倉庫創建、刪除、設置、團隊和協作者。\",\n                    \"Attestations\": \"證書\",\n                        \"Create and retrieve attestations for a repository.\": \"創建和檢索倉庫的證書。\",\n                    \"Checks\": \"檢查\",\n                        \"Checks on code.\": \"檢查程式碼。\",\n                    \"Code scanning alerts\": \"程式碼掃描警報\",\n                        \"View and manage code scanning alerts.\": \"查看和管理程式碼掃描警報。\",\n                    // \"\": \"程式碼空間\",\n                        \"Create, edit, delete and list Codespaces.\": \"創建、編輯、刪除和列出程式碼空間。\",\n                    \"Codespaces lifecycle admin\": \"程式碼空間的生命週期管理\",\n                        \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理程式碼空間的生命週期，包括啟動和停止。\",\n                    \"Codespaces metadata\": \"程式碼空間元數據\",\n                        \"Access Codespaces metadata including the devcontainers and machine type.\": \"訪問程式碼空間元數據，包括開發容器和機器類型。\",\n                    \"Codespaces secrets\": \"程式碼空間機密\",\n                        \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制程式碼空間的用戶機密對特定倉庫的修改。\",\n                    \"Commit statuses\": \"提交狀態\",\n                        \"Commit statuses.\": \"提交狀態。\",\n                    \"Contents\": \"內容\",\n                        \"Repository contents, commits, branches, downloads, releases, and merges.\": \"倉庫內容、提交、分支、下載、發佈和合併。\",\n                    // 自定義屬性\n                        \"View and set values for a repository's custom properties, when allowed by the property.\": \"在屬性允許的情況下，查看和設置倉庫自定義屬性的值。\",\n                    \"Dependabot alerts\": \"Dependabot 警報\",\n                        \"Retrieve Dependabot alerts.\": \"檢索 Dependabot 警報。\",\n                    \"Dependabot secrets\": \"Dependabot 機密\",\n                        \"Manage Dependabot repository secrets.\": \"管理 Dependabot 倉庫的機密。\",\n                    \"Deployments\": \"部署\",\n                        \"Deployments and deployment statuses.\": \"部署和部署狀態。\",\n                    \"Discussions\": \"討論\",\n                        \"Discussions and related comments and labels.\": \"討論及相關評論和標籤。\",\n                    \"Environments\": \"環境\",\n                        \"Manage repository environments.\": \"管理倉庫環境。\",\n                    \"Issues\": \"議題\",\n                        \"Issues and related comments, assignees, labels, and milestones.\": \"議題及相關評論、受理人、標籤和里程碑。\",\n                    \"Merge queues\": \"合併列隊\",\n                        \"Manage a repository's merge queues\": \"管理倉庫的合併隊列。\",\n                    \"Metadata\": \"元數據\",\n                        \"Search repositories, list collaborators, and access repository metadata.\": \"搜索倉庫、列出協作者，訪問倉庫元數據。\",\n                    \"Packages\": \"軟體包\",\n                        \"Packages published to the GitHub Package Platform.\": \"發佈軟體包到 GitHub Package 平臺。\",\n                    \"Pages\": \"GitHub Pages\",\n                        \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"檢索頁面狀態、配置和構建，以及創建新的構建。\",\n                    \"Projects\": \"專案\",\n                        \"Manage classic projects within a repository.\": \"管理倉庫中的經典專案。\",\n                    \"Pull requests\": \"拉取請求\",\n                        \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取請求及相關評論、受讓人、標籤、里程碑和合併。\",\n                    \"Repository security advisories\": \"倉庫安全公告\",\n                        \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                    \"Secret scanning alerts\": \"機密掃描警報\",\n                        \"View and manage secret scanning alerts.\": \"查看和管理機密掃描警報。\",\n                    \"Secrets\": \"機密\",\n                        \"Manage Actions repository secrets.\": \"管理操作倉庫機密。\",\n                    \"Single file\": \"單個文件\",\n                        \"Manage just a single file.\": \"只管理單個文件。\",\n                        \"Path\": \"路徑\",\n                        \"The content paths to single files your app can access.\": \"應用可以訪問的單個文件的內容路徑。\",\n                    \"Variables\": \"變量\",\n                        \"Manage Actions repository variables.\": \"管理操作倉庫變量。\",\n                    \"Webhooks\": \"Web 鉤子\",\n                        \"Manage the post-receive hooks for a repository.\": \"管理倉庫的接收後鉤子。\",\n                    \"Workflows\": \"工作流程\",\n                        \"Update GitHub Action workflow files.\": \"更新 GitHub Action 工作流程文件。\",\n\n                \"Organization permissions\": \"組織權限\",\n                    \"Organization permissions permit access to organization related resources.\": \"組織權限允許訪問組織相關資源。\",\n\n                    \"API Insights\": \"API 洞察\",\n                        \"View statistics on how the API is being used for an organization.\": \"查看有關組織如何使用 API 的統計信息。\",\n                    // 管理\n                        \"Manage access to an organization.\": \"管理對組織的訪問。\",\n                    \"Blocking users\": \"拉黑用戶\",\n                        \"View and manage users blocked by the organization.\": \"查看和管理被組織拉黑的用戶。\",\n                    \"Custom organization roles\": \"自定義組織角色\",\n                        \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"創建、編輯、刪除和列出自定義組織角色。查看系統組織角色。\",\n                    \"Custom properties\": \"自定義屬性\",\n                        \"View custom properties, write repository values, and administer definitions.\": \"查看自定義屬性、寫入倉庫值並管理定義。\",\n                    \"Custom repository roles\": \"自定義倉庫角色\",\n                        \"Create, edit, delete and list custom repository roles.\": \"創建、編輯、刪除和列出自定義倉庫角色。\",\n                    \"Events\": \"活動\",\n                        \"View events triggered by an activity in an organization.\": \"查看組織中某項活動所觸發的事件。\",\n                    \"GitHub Copilot Business\": \"GitHub Copilot 商業版\",\n                        \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商業版席位和設置\",\n                    \"Knowledge bases\": \"知識庫\",\n                        \"View and manage knowledge bases for an organization.\": \"查看和管理組織的知識庫。\",\n                    \"Members\": \"成員\",\n                        \"Organization members and teams.\": \"組織成員和團隊。\",\n                    \"Organization announcement banners\": \"組織公告橫幅\",\n                        \"View and modify announcement banners for an organization.\": \"查看並修改組織的公告橫幅。\",\n                    \"Organization codespaces\": \"組織程式碼空間\",\n                        \"Manage Codespaces for an organization.\": \"管理組織的程式碼空間。\",\n                    \"Organization codespaces secrets\": \"組織程式碼空間機密\",\n                        \"Manage Codespaces Secrets for an organization.\": \"管理組織的程式碼空間機密。\",\n                    \"Organization codespaces settings\": \"組織程式碼空間設置\",\n                        \"Manage Codespaces settings for an organization.\": \"管理組織的程式碼空間設置。\",\n                    \"Organization dependabot secrets\": \"組織 Dependabot 機密\",\n                        \"Manage Dependabot organization secrets.\": \"管理 Dependabot 組織的機密。\",\n                    \"Organization private registries\": \"組織私有註冊表\",\n                        \"Manage private registries for an organization.\": \"管理組織的私有註冊表。\",\n                    \"Personal access token requests\": \"個人訪問令牌請求\",\n                        \"Manage personal access token requests from organization members.\": \"管理來自組織成員的個人訪問令牌請求。\",\n                    \"Personal access tokens\": \"個人訪問令牌\",\n                        \"View and revoke personal access tokens that have been granted access to an organization.\": \"查看和撤銷已被授予組織訪問權限的個人訪問令牌。\",\n                    \"Plan\": \"計劃\",\n                        \"View an organization's plan.\": \"查看組織的計劃。\",\n                    // 專案\n                        \"Manage projects for an organization.\": \"管理組織的專案。\",\n                    // 機密\n                        \"Manage Actions organization secrets.\": \"管理操作組織機密\",\n                    \"Self-hosted runners\": \"自託管運行器\",\n                        \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理組織可用的 “操作自託管運行器”。\",\n                    \"Team discussions\": \"團隊討論\",\n                        \"Manage team discussions and related comments.\": \"管理團隊討論及相關評論。\",\n                    // 變量\n                        \"Manage Actions organization variables.\": \"管理操作組織變量。\",\n                    // Web 鉤子\n                        \"Manage the post-receive hooks for an organization.\": \"管理組織的接收後鉤子。\",\n\n                \"Account permissions\": \"賬戶權限\",\n                    \"These permissions are granted on an individual user basis as part of the User authorization flow.\": \"這些權限是在單個用戶的基礎上授予的，作為用戶授權流程的一部分\",\n\n                    \"Block another user\": \"拉黑其他用戶\",\n                        \"View and manage users blocked by the user.\": \"查看和管理被用戶拉黑的用戶。\",\n                    \"Codespaces user secrets\": \"程式碼空間用戶機密\",\n                        \"Manage Codespaces user secrets.\": \"管理程式碼空間用戶機密。\",\n                    \"Copilot Chat \": \"\",\n                        \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"此應用將接收您的 GitHub ID、GitHub Copilot Chat 會話消息（不包括發送到其他應用的消息）以及所提供的 GitHub Copilot Chat 會話消息的時間戳。Copilot 擴展必須啟用此權限。\",\n                    \"Copilot Editor Context\": \"Copilot 編輯器語境\",\n                        \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每當您通過 Copilot Chat 嚮應用發送消息時，該應用都會收到一些編輯器上下文（例如當前打開的文件）。\",\n                    \"Email addresses\": \"電子郵箱地址\",\n                        \"Manage a user's email addresses.\": \"管理用戶的電子郵箱地址。\",\n                    // 活動\n                        \"View events triggered by a user's activity.\": \"查看用戶活動觸發的事件。\",\n                    // 關注者\n                        \"A user's followers\": \"用戶的關注者\",\n                    \"GPG keys\": \"GPG 密鑰\",\n                        \"View and manage a user's GPG keys.\": \"查看和管理用戶的 GPG 密鑰。\",\n                    // Gist\n                        \"Create and modify a user's gists and comments.\": \"創建和修改用戶的程式碼片段和評論。\",\n                    \"Git SSH keys\": \"Git SSH 密鑰\",\n                    \"Interaction limits\": \"交互限制\",\n                        \"Interaction limits on repositories\": \"倉庫的交互限制\",\n                    // 計劃\n                        \"View a user's plan.\": \"查看用戶的計劃。\",\n                    \"Profile\": \"個人信息\",\n                        \"Manage a user's profile settings.\": \"管理用戶的個人信息設置。\",\n                    \"SSH signing keys\": \"SSH 簽名密鑰\",\n                        \"View and manage a user's SSH signing keys.\": \"查看和管理用戶的 SSH 簽名密鑰。\",\n                    \"Starring\": \"星標\",\n                        \"List and manage repositories a user is starring.\": \"列出和管理用戶標星的倉庫。\",\n                    \"Watching\": \"關注\",\n                        \"List and change repositories a user is subscribed to.\": \"列出和更改用戶訂閱的倉庫。\",\n\n            // 以下的事件 與 鉤子頁面 一致\n            // 添加鉤子 頁面 /<user-name>/<repo-name>/settings/hooks/new\n            \"Subscribe to events\": \"訂閱事件\",\n                \"Based on the permissions you’ve selected, what events would you like to subscribe to?\": \"根據您選擇的權限，您想訂閱哪些事件？\",\n                \"Installation target\": \"安裝目標\",\n                    \"A GitHub App installation target is renamed.\": \"GitHub 應用安裝目標已重命名。\",\n                \"Meta\": \"元數據\",\n                    \"When this App is deleted and the associated hook is removed.\": \"當該應用被刪除和相關的鉤子被刪除時。\",\n                \"Security advisory\": \"安全提示\",\n                    \"Security advisory published, updated, or withdrawn.\": \"安全提示的發佈、更新或撤銷。\",\n                \"Branch protection configuration\": \"分支保護配置\",\n                    \"All branch protections disabled or enabled for a repository.\": \"禁用或啟用倉庫的所有分支保護。\",\n                \"Branch protection rule\": \"分支保護規則\",\n                    \"Branch protection rule created, deleted or edited.\": \"分支保護規則的創建、刪除或編輯。\",\n                \"Code scanning alert\": \"程式碼掃描警報\",\n                    \"Code Scanning alert created, fixed in branch, or closed\": \"程式碼掃描警報的創建、在分支中修復或關閉。\",\n                \"Check run\": \"檢查運行\",\n                    \"Check run is created, requested, rerequested, or completed.\": \"檢查運行的創建、請求、重新請求或完成。\",\n                \"Check suite\": \"檢查套件\",\n                    \"Check suite is requested, rerequested, or completed.\": \"檢查套件的請求、重新請求或完成。\",\n                \"Commit comment\": \"提交評論\",\n                    \"Commit or diff commented on.\": \"提交或差異評論。\",\n                //\"創建\": \"\",\n                    \"Branch or tag created.\": \"分支或標籤的創建。\",\n                \"Custom property\": \"自定義屬性\",\n                    \"Custom property is created, updated, or deleted.\": \"自定義屬性的創建、更新或刪除。\",\n                \"Custom property values\": \"自定義屬性值\",\n                    \"Custom property values are changed for a repository\": \"倉庫自定義屬性值的更改。\",\n                \"Discussion\": \"討論\",\n                    \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"討論的創建、編輯、關閉、重新打開、置頂、取消置頂、鎖定、解鎖、轉移、答覆、取消答覆、標記、取消標記、更改其類別或刪除。\",\n                \"Discussion comment\": \"討論評論\",\n                    \"Discussion comment created, edited, or deleted.\": \"討論評論的創建、編輯或刪除。\",\n                //\"刪除\": \"\",\n                    \"Branch or tag deleted.\": \"分支或標籤的刪除。\",\n                \"Dependabot alert\": \"Dependabot 警報\",\n                    \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警報的自動解除、自動重新打開、創建、解除、重新打開、修復或重新引入。\",\n                \"Deploy key\": \"部署密鑰\",\n                    \"A deploy key is created or deleted from a repository.\": \"在倉庫中部署密鑰的創建或刪除。\",\n                \"Deployment\": \"部署\",\n                    \"Repository was deployed or a deployment was deleted.\": \"倉庫的部署或刪除部署。\",\n                \"Deployment protection rule\": \"部署保護規則\",\n                    \"Deployment protection rule requested for an environment.\": \"環境請求部署保護規則。\",\n                \"Deployment review\": \"部署審查\",\n                    \"Deployment review requested, approved or rejected\": \"部署審查的請求、批准或拒絕\",\n                \"Deployment status\": \"部署狀態\",\n                    \"Deployment status updated from the API.\": \"通過 API 更新部署狀態。\",\n                \"Exemption request push ruleset\": \"推送規則集豁免請求\",\n                    \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push rules is currently in beta and subject to change.\": \"推送規則集旁路請求已創建、取消、完成、收到響應或駁回響應。注：推送規則的委託旁路目前處於測試階段，可能會有更改。\",\n                \"Exemption request secret scanning\": \"秘密掃描豁免請求\",\n                    \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"秘密掃描推送保護旁路請求已創建、取消、完成、收到響應或駁回響應。注：推送保護的授權旁路目前處於測試階段，可能會有更改。\",\n                //\"複刻\": \"\",\n                    \"Repository forked.\": \"倉庫複刻。\",\n                \"Gollum\": \"咕嚕\",\n                    \"Wiki page updated.\": \"Wiki 頁面的更新。\",\n                \"Issue comment\": \"議題評論\",\n                    \"Issue comment created, edited, or deleted.\": \"議題評論的創建、編輯或刪除。\",\n                //\"議題\": \"\",\n                    \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, unlocked, typed, or untyped.\": \"議題的打開、編輯、刪除、轉移、置頂、取消置頂、關閉、重新打開、分配、取消分配、標記、取消標記、設置里程碑、取消里程碑、鎖定、解鎖。\",\n                \"Label\": \"標籤\",\n                    \"Label created, edited or deleted.\": \"標籤的創建、編輯或刪除。\",\n                \"Milestone\": \"里程碑\",\n                    \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的創建、關閉、打開、編輯或刪除。\",\n                \"Member\": \"成員\",\n                    \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"協作者添加到倉庫、從倉庫中刪除或更改了倉庫的權限。\",\n                \"Membership\": \"團隊成員\",\n                    \"Team membership added or removed.\": \"團隊成員的添加或刪除。\",\n                \"Merge group\": \"合併組\",\n                    \"Merge Group requested checks, or was destroyed.\": \"合併組的請求檢查或銷燬。\",\n                \"Merge queue entry\": \"合併隊列條目\",\n                    \"Merge Queue entry added\": \"合併隊列條目的添加。\",\n                \"Organization\": \"組織\",\n                    \"Organization deleted, renamed, member invited, member added, or member removed.\": \"組織的刪除、重命名以及成員的邀請、添加或刪除。\",\n                \"Page build\": \"構建 GitHub Pages\",\n                    \"Pages site built.\": \"GitHub Pages 站點的建立。\",\n                \"Personal access token request\": \"個人訪問令牌請求\",\n                    \"Personal access token request created, approved, denied, or cancelled.\": \"個人訪問令牌請求的創建、批准、拒絕或取消。\",\n                \"Project\": \"專案\",\n                    \"Project created, updated, or deleted.\": \"專案的創建、更新或刪除。\",\n                \"Project card\": \"專案面板卡\",\n                    \"Project card created, updated, or deleted.\": \"專案面板卡的創建、更新或刪除\",\n                \"Project column\": \"專案欄目\",\n                    \"Project column created, updated, moved or deleted.\": \"專案欄目的創建、更新、移動或刪除。\",\n                \"Projects v2 item\": \"專案 v2 條目\",\n                    \"Project item created, edited, deleted, archived, restored, converted, or reordered.\": \"專案條目的創建、編輯、刪除、歸檔、恢復、轉換或重新排序。\",\n                \"Projects v2\": \"專案 v2\",\n                    \"Project created, updated, deleted, closed, or reopened.\": \"專案的創建、更新、刪除、關閉或重新打開。\",\n                \"Projects v2 status update\": \"專案 v2 狀態更新\",\n                    \"Project status updates created, updated, or deleted.\": \"專案狀態更新的創建、更新或刪除。\",\n                // 公共\n                    \"Repository changes from private to public.\": \"倉庫從私有更改為公共。\",\n                \"Pull request\": \"拉取請求\",\n                    \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取請求的分配、禁用自動合併、啟用自動合併、關閉、轉換為草案、取消里程碑、取消隊列、編輯、隊列、標記、鎖定、設置里程碑、打開、準備審查、重新打開、取消審查請求、請求審查、同步、取消分配、取消標記或解鎖。\",\n                \"Pull request review\": \"拉取請求審查\",\n                    \"Pull request review submitted, edited, or dismissed.\": \"拉取請求審查的提交、編輯或駁回。\",\n                \"Pull request review comment\": \"拉取請求審查意見\",\n                    \"Pull request diff comment created, edited, or deleted.\": \"拉取請求差異評論的創建、編輯或刪除。\",\n                \"Pull request review thread\": \"拉取請求線程\",\n                    \"A pull request review thread was resolved or unresolved.\": \"拉取請求的審查線程解決或未解決。\",\n                \"Push\": \"推送\",\n                    \"Git push to a repository.\": \"Git 推送到倉庫。\",\n                \"Registry package\": \"註冊軟體包\",\n                    \"Registry package published or updated in a repository.\": \"倉庫中註冊軟體包的發佈或更新。\",\n                \"Release\": \"發行版\",\n                    \"Release created, edited, published, unpublished, or deleted.\": \"發行版的創建、編輯、發佈、取消發佈或刪除。\",\n                \"Repository\": \"倉庫\",\n                    \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"倉庫的創建、刪除、歸檔、取消歸檔、公開、私有化、編輯、重命名或轉讓。\",\n                \"Repository dispatch\": \"倉庫調度\",\n                    \"When a message is dispatched from a repository.\": \"當信息從倉庫發出時。\",\n                \"Repository ruleset\": \"倉庫規則集\",\n                    \"Repository ruleset created, deleted or edited.\": \"倉庫規則集的創建、刪除或編輯。\",\n                \"Security and analysis\": \"安全和分析\",\n                    \"Code security features enabled or disabled for a repository.\": \"啟用或禁用倉庫的程式碼安全功能。\",\n                \"Secret scanning alert\": \"機密掃描警報\",\n                    \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"機密掃描警報的創建、解決、重新打開、驗證或公開洩露。\",\n                \"Secret scanning alert location\": \"機密掃描警報位置\",\n                    \"Secrets scanning alert location created.\": \"機密掃描警報位置的創建。\",\n                \"Secret scanning scan\": \"機密掃描\",\n                    \"Secrets scanning scan completed.\": \"機密掃描已完成\",\n                // 星標\n                    \"A star is created or deleted from a repository.\": \"標星或取消倉庫星標。\",\n                //\"狀態\": \"\",\n                    \"Commit status updated from the API.\": \"通過 API 更新提交狀態。\",\n                //\"團隊\": \"\",\n                    \"Team is created, deleted, edited, or added to/removed from a repository.\": \"團隊的創建、刪除、編輯以及向倉庫添加團隊、從倉庫中移除團隊。\",\n                \"Sub issues\": \"子議題\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子議題和父議題的添加或刪除。\",\n                \"Team add\": \"團隊添加\",\n                    \"Team added or modified on a repository.\": \"倉庫團隊的添加或修改。\",\n                \"Watch\": \"關注\",\n                    \"User stars a repository.\": \"用戶標星倉庫。\",\n                \"Workflow dispatch\": \"工作流程調度\",\n                    \"A manual workflow run is requested.\": \"請求手動運行工作流程。\",\n                \"Workflow job\": \"工作流程作業\",\n                    \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"倉庫中工作流作業的隊列、等待、正在進行或完成。\",\n                \"Workflow run\": \"工作流程運行\",\n                    \"Workflow run requested or completed on a repository.\": \"倉庫中工作流程運行的請求或完成。\",\n                \"Org block\": \"組織黑名單\", // 組織設置\n                    \"A user has been blocked or unblocked.\": \"用戶拉黑或解除拉黑。\",\n                \"Repository advisory\": \"倉庫公告\",\n                    \"Repository advisory published or reported.\": \"倉庫公告發布或報告。\",\n                \"Sub issues\": \"子提議\",\n                    \"Sub-issues added or removed, and parent issues added or removed.\": \"子議題和父議題的添加或刪除。\",\n\n            \"Where can this GitHub App be installed?\": \"這款 GitHub 應用可以安裝在哪裡？\",\n                \"Only on this account\": \"僅在當前賬戶\",\n                    // [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"僅允許在 $1 帳戶上安裝此 GitHub 應用。\"],\n                \"Any account\": \"任何賬戶\",\n                    \"Allow this GitHub App to be installed by any user or organization.\": \"允許任何用戶或組織安裝此 GitHub 應用。\",\n\n            \"Create GitHub App\": \"創建 GitHub 應用\",\n\n        // 某個 GitHub 應用 https://github.com/settings/apps/<app-name>\n            // 頂部提醒\n                // GitHub App 註冊成功\n                \"Registration successful. You must\": \"註冊成功。您必須\",\n                \"generate a private key\": \"生成私鑰\",\n                \"in order to install your GitHub App.\": \"才能安裝 GitHub 應用。\",\n                // GitHub App 已更新\n                \"Got it. Your GitHub App has been updated.\": \"GitHub 應用已更新。\",\n                \"The GitHub App is now public. Anyone is free to install it.\": \"GitHub 應用已公開化。任何人都可以自由安裝。\",\n                \"The GitHub App is now private. It can only be installed on this account.\": \"GitHub 應用已私有化。只能安裝在此賬戶上。\",\n\n            \"Developer settings\": \"開發者設置\",\n            // 左側欄\n                \"General\": \"通常\",\n                \"Permissions & events\": \"權限與事件\",\n                \"Install App\": \"安裝應用\",\n                \"Advanced\": \"高級\",\n                \"Optional features\": \"可選功能\",\n                \"Public page\": \"公共頁面\",\n\n            // 關於\n                \"Owned by:\": \"擁有者：\",\n                \"Using your App ID to get installation tokens? You can now\": \"使用您的 App ID 獲取安裝令牌？您現在可以\",\n                \"use your Client ID instead\": \"使用您的 Client ID\",\n                \"Revoke all user tokens\": \"撤銷所有用戶令牌\",\n                \"GitHub Apps can use OAuth credentials to identify users. Learn more about identifying users by reading our\": \"GitHub 應用可以使用 OAuth 憑據來識別用戶。瞭解更多關於識別用戶的信息，請閱讀我們的\",\n                \"integration developer documentation\": \"集成開發者文檔\",\n\n                \"Public link\": \"公共鏈接\",\n\n                // 撤銷所有用戶令牌對話框\n                \"Revoke all user tokens?\": \"撤銷所有用戶令牌？\",\n                    \"Are you sure you want to revoke\": \"您確定要撤銷此應用的\",\n                    \"all\": \"所有\",\n                    \"user tokens for this application?\": \"用戶令牌嗎？\",\n                    \"All users of this application will be forced back through the\": \"該應用的所有用戶都將被迫返回\",\n                    \"authorization flow\": \"授權流程\",\n                    \"before they can use your application again.\": \"，然後才能再次使用您的應用。\",\n                    \"All SSH keys created by this application will also be deleted.\": \"此應用創建的所有 SSH 密鑰也將被刪除。\",\n                    \"This action is not reversible.\": \"此操作不可逆轉。\",\n                    \"I understand, revoke all user tokens\": \"我明白了，依然撤銷所有用戶令牌\",\n\n            \"Client secrets\": \"客戶端機密\",\n                \"Generate a new client secret\": \"生成客戶端機密\",\n                \"You need a client secret to authenticate as the application to the API.\": \"您需要一個客戶端機密，才能以應用的身份驗證 API。\",\n\n            \"Basic information\": \"基本信息\",\n\n            \"Display information\": \"顯示信息\",\n                \"Drag & drop\": \"拖放\",\n                \"Upload a logo...\": \"上傳 Logo 圖片…\",\n                    \"Uploading...\": \"上傳中…\",\n                \"You can also drag and drop a picture from your computer.\": \"您也可以從電腦中拖放圖片。\",\n                        \"Only images, please. Try again.\": \"僅限圖片，請重試。\",\n                        \"1MB or less, please. Try again.\": \"請上傳 1MB 以內的文件，請重試。\",\n                        \"Whoops! Try again.\": \"哎呀！請重試。\",\n                        \"File contents don’t match the file extension. Try again.\": \"文件內容與擴展名不符，請重試。\",\n\n                \"Delete this image\": \"刪除圖片\",\n                \"Badge background color\": \"徽章背景顏色\",\n                \"The hex value of the badge background color. Hex colors should only contain numbers and letters from a-f.\": \"徽章背景顏色的十六進制值。十六進制顏色只能包含 a-f 之間的數字和字母。\",\n                // 剪裁對話框\n                    \"Crop your new avatar\": \"裁剪您的新頭像\",\n                    \"Set new avatar\": \"設置新頭像\",\n                // 頂部提醒\n                    \"Your avatar has been updated. It may take a few minutes to update across the site.\": \"您的頭像已更新。整個網站的更新可能需要幾分鐘的時間。\",\n                    \"This avatar has been deleted.\": \"該頭像已被刪除。\",\n\n            // 市場\n                \"List your GitHub App in the\": \"上架您的 GitHub 應用到\",\n                \"GitHub Marketplace\": \"GitHub 市場\",\n                \"so that other users can discover it.\": \"以便其他用戶可以發現它。\",\n                \"List in Marketplace\": \"上架應用\",\n\n                \"Edit how your GitHub App is presented in the Marketplace directory, including screenshots and links.\": \"編輯 GitHub 應用在市場索引中的展示方式，包括截圖和鏈接。\",\n                \"Edit Marketplace listing\": \"編輯市場上架信息\",\n\n            \"Private keys\": \"私鑰\",\n                \"Generate a private key\": \"生成私鑰\",\n                \"You need a private key to sign access token requests.\": \"您需要私鑰來簽署訪問令牌請求。\",\n\n                \"Learn more about private keys\": \"瞭解更多關於私鑰的信息\",\n                \"Private key\": \"私鑰\",\n                \"Added\": \"已添加於\",\n\n            \"IP allow list\": \"IP 允許列表\",\n                \"Enter the IP addresses of your GitHub App to allow organizations with\": \"輸入 GitHub 應用的 IP 地址，以便在安裝時允許在\",\n                \"IP allow lists\": \"IP 允許列表\",\n                \"to selectively inherit the App's IP allow list when installed.\": \"的組織有選擇地繼承應用的 IP 允許列表。\",\n                \"Learn more about App IP allow lists\": \"瞭解更多關於應用 IP 允許列表的信息\",\n\n                \"There are no IP addresses on the allow list yet.\": \"允許列表中尚無 IP 地址。\",\n                \"IP address or range in CIDR notation\": \"以 CIDR 表示的 IP 地址或範圍\",\n                \"Short description of IP address or range\": \"IP 地址或範圍的簡短描述\",\n\n                \"Check IP address\": \"檢查 IP 地址\",\n                    \"Enter an IP address to check whether it is permitted by enabled entries on the IP allow list.\": \"輸入 IP 地址，檢查 IP 允許列表中的啟用條目是否允許該地址。\",\n\n        // 某個 GitHub 應用 - 權限 https://github.com/settings/apps/<app-name>/permissions\n            \"Changes to permissions will be applied to all future installations. Current users will be prompted to accept any changes and enable the new permissions on their installation.\": \"對權限的更改將應用於今後的所有安裝。系統將提示當前用戶接受任何更改，並在其安裝中啟用新權限。\",\n\n            \"Add a note to users\": \"為用戶添加註釋\",\n                \"This note will be displayed on the permissions update approval page.\": \"該註釋將顯示在權限更新批准審查頁面上。\",\n                    \"Add a note to your users explaining why you are requesting these changes.\": \"向您的用戶添加註釋，解釋您請求這些更改的原因。\",\n\n                \"Are you sure you want to update permissions?\": \"您確定要更新權限嗎？\",\n                    \"Current users will be prompted to accept these changes and enable the new permissions on their installation.\": \"系統將提示當前用戶接受這些更改，並在其安裝中啟用新權限。\",\n\n        // 某個 GitHub 應用 - 智能體 https://github.com/settings/apps/<app-name>/agent\n            \"A Copilot configuration allows your GitHub App to integrate with Copilot. Learn more about building GitHub Copilot Extensions in the\": \"Copilot 配置允許您的 GitHub 應用與 Copilot 集成。瞭解更多關於構建 GitHub Copilot 擴展的信息，請訪問\",\n            \"documentation\": \"文檔\",\n\n            \"Accept the Marketplace Developer agreement to create your Copilot Extension\": \"接受市場開發者協議以創建您的 Copilot 擴展\",\n                \"By clicking \\\"Accept Terms\\\" below, you agree to the\": \"點擊下面的 “接受條款”，即表示您同意以下條款\",\n                \"GitHub Copilot Extension Developer Policy\": \"GitHub Copilot 擴展開發者政策\",\n                \"Pre-release License terms\": \"預發佈許可條款\",\n                \"on behalf of\": \"代表\",\n                \". Please check to make sure that you are agreeing to these terms on behalf of the correct account.\": \"。請檢查以確保您代表正確的帳戶同意這些條款。\",\n                \"Accept Terms\": \"接受條款\",\n\n            \"To enable Copilot functionality, you must first accept the Marketplace Developer agreement\": \"要啟用 Copilot 功能，您必須首先接受市場開發者協議\",\n            \"To enable Copilot functionality, you must first grant your app permission to read Copilot Messages. To do so, navigate to Permissions & Events > Account Permissions > Read-only for Copilot Chat\": \"要啟用 Copilot 功能，必須先授予應用讀取 Copilot 消息的權限。為此，請導航至權限和事件 > 帳戶權限 > Copilot 聊天 - 只讀\",\n\n        // 某個 GitHub 應用 - 安裝 https://github.com/settings/apps/<app-name>/installations\n            // [/Install (.*)/, \"安裝 $1\"],\n            // [/Choose an account to install (.*) on:/, \"選擇要安裝 $1 的賬戶：\"],\n            \"Install\": \"安裝\",\n            // [/Install (.*) on this account./, \"安裝 $1 到此賬戶上。\"],\n            \"Installed\": \"已安裝\",\n            // [/(.*) is installed on this account./, \"$1 已安裝在此賬戶上。\"],\n\n        // 某個 GitHub 應用 - 高級 https://github.com/settings/apps/<app-name>/advanced\n            \"Danger zone\": \"危險區\",\n                \"Transfer ownership of this GitHub App\": \"轉讓此 GitHub 應用的所有權\",\n                    \"Transferring may be delayed until the new owner approves the transfer.\": \"轉讓可能會延遲，直至新所有者批准轉讓\",\n                    \"Transfer ownership\": \"轉讓所有權\",\n                        // [/Where should we transfer (.*)\\?/, \"將 $1 轉讓給誰？\"],\n                        \"Type the name of the GitHub App to confirm\": \"鍵入要確認的 GitHub 應用名稱\",\n                        \"New owner’s GitHub username or organization name\": \"新所有者的 GitHub 用戶名或組織名稱\",\n                        \"Transfer this GitHub App\": \"轉讓所有權\",\n                \"Delete this GitHub App\": \"刪除此 GitHub 應用\",\n                    \"This cannot be undone. Please be certain.\": \"此操作無法撤銷。請確認。\",\n\n                    \"Delete GitHub App\": \"刪除 GitHub 應用\",\n                        \"Delete GitHub App?\": \"刪除 GitHub 應用？\",\n                            \"Unexpected bad things will happen if you don’t read this!\": \"請仔細閱讀以下提示信息！！！\",\n                            \"This action\": \"此操作\",\n                            \"CANNOT\": \"無法\",\n                            \"be undone. This will permanently delete the\": \"撤銷。這將永久刪除\",\n                            \"GitHub App.\": \"GitHub 應用。\",\n\n                            \"This will also uninstall the GitHub App from\": \"這還將卸載 GitHub 應用從\",\n                            // [/(\\d+) accounts?/, \"$1 個賬戶\"],\n\n                            \"Please type in the name of the GitHub App to confirm.\": \"請鍵入 GitHub 應用的名稱進行確認。\",\n                            \"I understand the consequences, delete this GitHub App\": \"我明白後果，依然刪除該 GitHub 應用\",\n                \"Make this GitHub App public\": \"公開 GitHub 應用\",\n                    \"Allow this GitHub App to be installed on other accounts.\": \"允許在其他賬戶中安裝此 GitHub 應用。\",\n\n                    \"Make public\": \"轉為公開\",\n                        // [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用戶或組織都可以安裝此 GitHub 應用。您確定要公開 $1 嗎？\"],\n                \"Make this GitHub App private\": \"私有化 GitHub 應用\",\n                    \"Private GitHub Apps cannot be installed on other accounts.\": \"私有 GitHub 應用不能安裝在其他賬戶上。\",\n                    \"Make private\": \"轉為私有\",\n                        \"This integration cannot be made private since it is already installed on other accounts.\": \"此應用無法轉為私有，因為它已安裝在其他賬戶上。\",\n                \"Make this application private\": \"私有化應用\",\n                    \"Private applications cannot be installed on other accounts.\": \"私有應用不能安裝在其他賬戶上。\",\n                        // [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 應用只能安裝在 $1 賬戶上。您確定要將 $2 設為私有嗎？\"],\n\n        // 某個 GitHub 應用 - 可選功能 https://github.com/settings/apps/<app-name>/beta\n            // [/Activate optional features for (.*)/, \"激活 $1 的可選功能\"],\n            // [/Choose a feature to activate for (.*):/, \"選擇要為 $1 激活的功能：\"],\n\n            \"User-to-server token expiration\": \"用戶到服務器訪問令牌過期\",\n                \"User-to-server access tokens will expire after 8 hours. A Refresh Token will be provided which can be exchanged for a new access token.\": \"用戶到服務器訪問令牌將在 8 小時後過期。我們將提供一個刷新令牌，用戶可以用它換取新的訪問令牌。\",\n                \"Opt-out\": \"選擇退出\",\n                \"Opt-in\": \"選擇加入\",\n                    \"Disable user-to-server token expiration for this app.\": \"禁用此應用的用戶到服務器訪問令牌過期。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Only allow this GitHub App to be installed on the (@[^ ]+) account./, \"僅允許在 $1 帳戶上安裝此 GitHub 應用。\"],\n        [/Choose an account to install (.*) on:/, \"選擇要安裝 $1 的賬戶：\"],\n        [/Install (.*) on this account./, \"安裝 $1 到此賬戶上。\"],\n        [/Install (.*)/, \"安裝 $1\"],\n        [/(.*) is installed on this account./, \"$1 已安裝在此賬戶上。\"],\n        [/Where should we transfer (.*)\\?/, \"將 $1 轉讓給誰？\"],\n        [/Any user or organization will be able to install this GitHub App. Are you sure you want to make (.*) public\\?/, \"任何用戶或組織都可以安裝此 GitHub 應用。您確定要公開 $1 嗎？\"],\n        [/This GitHub app will only be installable on the ([^ ]+) account. Are you sure you want to make (.*) private\\?/, \"此 GitHub 應用只能安裝在 $1 賬戶上。您確定要將 $2 設為私有嗎？\"],\n        [/(\\d+) accounts?/, \"$1 個賬戶\"],\n        [/Activate optional features for (.*)/, \"激活 $1 的可選功能\"],\n        [/Choose a feature to activate for (.*):/, \"選擇要為 $1 激活的功能：\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 應用\",\n            \"New OAuth Application\": \"新 OAuth 應用\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"orgs/settings/apps/new\"] = I18N[\"zh-TW\"][\"settings/apps\"];\n\nI18N[\"zh-TW\"][\"settings/developers\"] = { // 設置 - 開發者設置/OAuth 應用\n    \"static\": { // 靜態翻譯\n            \"Developer Settings\": \"開發者設置\",\n            \"GitHub Apps\": \"GitHub 應用\",\n            \"OAuth Apps\": \"OAuth 應用\",\n            \"Personal access tokens\": \"個人訪問令牌\",\n                \"Fine-grained tokens\": \"精細化的令牌\",\n                \"Tokens (classic)\": \"令牌（經典）\",\n\n        // OAuth 應用 https://github.com/settings/developers\n            \"No OAuth applications\": \"沒有 OAuth 應用\",\n            \"OAuth applications are used to access the GitHub API.\": \"OAuth 應用用於訪問 GitHub API。\",\n            \"Read the docs\": \"閱讀文檔\",\n            \"to find out more.\": \"以瞭解更多情況。\",\n            \"Register a new application\": \"註冊新 OAuth 應用\",\n\n            \"No OAuth apps\": \"無 OAuth 應用\",\n            \"OAuth apps are used to access the GitHub API. Read the docs to find out more.\": \"OAuth 應用程式用於訪問 GitHub API。閱讀文檔瞭解詳情。\",\n            \"New OAuth app\": \"註冊新 OAuth 應用\",\n\n            \"View documentation\": \"查看文檔\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Developer applications\": \"開發者應用\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"settings/applications/new\"] = { // 設置 - 開發者設置/OAuth 應用\n    \"static\": { // 靜態翻譯\n\n        // 註冊 OAuth 應用 https://github.com/settings/applications/new\n            \"Developer Settings\": \"開發者設置\",\n\n            \"Register a new OAuth app\": \"註冊 OAuth 應用\",\n            \"Application name\": \"應用名\",\n            \"Something users will recognize and trust.\": \"讓用戶識別和信任。\",\n            \"Homepage URL\": \"主頁地址\",\n            \"The full URL to your application homepage.\": \"您的應用主頁地址。\",\n            \"Application description\": \"應用描述\",\n            \"Application description is optional\": \"應用描述 (可選)\",\n            \"This is displayed to all users of your application.\": \"所有用戶都能看到您的應用描述。\",\n            \"Authorization callback URL\": \"認證回調地址\",\n            \"Your application’s callback URL. Read our\": \"您的應用授權回調地址。閱讀我們\",\n            \"OAuth documentation\": \"OAuth 文檔\",\n            \"for more information.\": \"瞭解更多信息。\",\n            \"Enable Device Flow\": \"啟用設備流程\",\n            \"Allow this OAuth App to authorize users via the Device Flow.\": \"允許此 OAuth 應用通過設備流程授權用戶。\",\n            \"Read the\": \"閱讀\",\n            \"Device Flow documentation\": \"設備流程文檔\",\n            \"Register application\": \"註冊應用\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"orgs/settings/applications/new\"] = I18N[\"zh-TW\"][\"settings/applications/new\"];\n\nI18N[\"zh-TW\"][\"settings/personal-access-tokens\"] = { // 設置 - 開發者設置/個人訪問令牌\n    \"static\": { // 靜態翻譯\n            \"Developer Settings\": \"開發者設置\",\n            \"GitHub Apps\": \"GitHub 應用\",\n            \"OAuth Apps\": \"OAuth 應用\",\n            \"Personal access tokens\": \"個人訪問令牌\",\n                \"Fine-grained tokens\": \"精細化的令牌\",\n                \"Tokens (classic)\": \"令牌（經典）\",\n\n        // 開發者設置 - 精細化的個人訪問令牌 https://github.com/settings/personal-access-tokens\n            \"Fine-grained personal access tokens\": \"精細化的個人訪問令牌\",\n            // 未創建時\n                \"No fine-grained tokens created\": \"沒有創建精細化的個人訪問令牌\",\n                \"Need an API token for scripts or testing? Generate a personal access token for quick access to the GitHub API.\": \"需要用於腳本或測試的 API 令牌？生成個人訪問令牌，快速訪問 GitHub API。\",\n\n            \"These are fine-grained, repository-scoped tokens suitable for personal\": \"這些都是精細化的、倉庫域的令牌，適合個人\",\n            \"use and for using Git over HTTPS.\": \"使用和通過 HTTPS 使用 Git。\",\n\n            \"Never used •\": \"從未使用過 •\",\n            \"Last used within the last week\": \"最後一次使用是最近 1 周之內\",\n            // [/Last used within/, \"最後一次使用是\"],\n\n            \"Loading expiration ...\": \"載入有效期 …\",\n            \"This token has expired.\": \"此令牌已過期。\",\n                \"To set a new expiration date, you must regenerate the token.\": \"要設置新的有效期，您必須重新生成令牌。\",\n            \"Regenerate\": \"重新生成\",\n\n            // 生成令牌後提醒複製\n                \"Make sure to copy your personal access token now as you will not be able to see this again.\": \"請務必立即複製您的個人訪問令牌，因為您將無法再次看到它。\",\n\n            // 刪除令牌對話框\n                \"Are you sure you want to delete this token?\": \"您確定要刪除此令牌嗎？\",\n                \"Any applications or scripts using this token will no longer be able to access the GitHub API. You cannot undo this action.\": \"任何使用此令牌的應用或腳本將無法再訪問 GitHub API。您無法撤消此操作。\",\n                \"I understand, delete this token\": \"我明白了，依然刪除該令牌。\",\n\n            // 頂部提醒\n                \"Deleted personal access token\": \"已刪除個人訪問令牌\",\n\n        // 創建精細化個人訪問令牌 https://github.com/settings/personal-access-tokens/new\n            \"New fine-grained personal access token\": \"新建精細化個人訪問令牌\",\n            \"Create a fine-grained, repository-scoped token suitable for personal API use and for using Git over HTTPS.\": \"創建精細化的、倉庫域的令牌，適合個人 API 使用和通過 HTTPS 使用 Git。\",\n\n            \"Token name\": \"令牌名稱\",\n                \"A unique name for this token. May be visible to resource owners or users with possession of the token.\": \"此令牌的唯一名稱。可能對資源所有者或持有該令牌的用戶可見。\",\n                \"Name can't be blank\": \"名稱不能為空\",\n                \"' is available.\": \"' 可用。\",\n                \"' is not available. The token name has already been taken.\": \"' 不可用。令牌名稱已被佔用。\",\n                \"Name has already been taken\": \"名稱已被佔用\",\n            \"Description\": \"描述\",\n            \"Resource owner\": \"資源所有者\",\n                \"The token will only be able to make changes to resources owned by the selected resource owner. Tokens can always read all public repositories.\": \"該令牌只能修改所選資源所有者擁有的資源。令牌始終可以讀取所有公共倉庫。\",\n\n                    \"Select resource owner\": \"選擇資源所有者\",\n                        \"You may only select resource owners with fine-grained PATs enabled.\": \"您只能選擇已啟用精細化個人訪問令牌（PAT）的資源所有者。\",\n            \"Authorizing...\": \"授權中…\",\n\n            \"Expiration\": \"有效期\",\n                \"7 days\": \"7 天\",\n                \"30 days\": \"30 天\",\n                \"60 days\": \"60 天\",\n                \"90 days\": \"90 天\",\n                \"Custom\": \"自定義\",\n                    \"Select date *\": \"選擇日期 *\",\n                    \"Expiration date can't be blank\": \"過期時間不能為空\",\n                \"No expiration\": \"無有效期\",\n                // [/Limit set by ([^ ]+) organization/, \"由 $1 組織設定的限制\"],\n                \"between 1 and 366 days\": \"1~366 天\",\n\n                \"The token will expire on the selected date\": \"此令牌將在指定日期過期\",\n                \"GitHub strongly recommends that you set an expiration date for your token to help keep your information secure.\": \"GitHub 強烈建議您為令牌設置有效期，以幫助確保您的信息安全。\",\n\n            \"Repository access\": \"倉庫訪問\",\n                \"Select the repositories this token can access. Personal access tokens can always read from all public repositories on GitHub.com\": \"選擇此令牌可以訪問的倉庫。個人訪問令牌始終可以讀取 GitHub.com 上所有公共倉庫中的內容。\", // 更新模式下\n\n                \"Public repositories\": \"公共倉庫\",\n                    \"Read-only access to public repositories.\": \"對公共倉庫的只讀訪問權限。\",\n                \"All repositories\": \"所有倉庫\",\n                    \"This applies to all current and future repositories you own. Also includes public repositories (read-only).\": \"規則適用於您所有現有及未來倉庫。同時包括公共倉庫（只讀）。\",\n                    \"This applies to all current and future repositories that you can access in this organization. Also includes public repositories (read-only).\": \"此規則適用於您在此組織內可訪問的所有現有及未來倉庫，同時包括公共倉庫（只讀）。\",\n                \"Only select repositories\": \"僅選定的倉庫\",\n                    \"Select at least one repository. Max 50 repositories. Also includes public repositories (read-only).\": \"至少選擇一個倉庫，最多可選擇 50 個倉庫。同時包括公共倉庫（只讀）。\",\n                    \"Select repositories\": \"選擇倉庫\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"選定 #1 個倉庫\"],\n                        \"Select at least one repository.\": \"至少選擇一個倉庫。\",\n                            \"No repositories found.\": \"未找到倉庫。\",\n\n            \"Permissions\": \"權限\",\n                \"Choose the minimal permissions necessary for your needs.\": \"選擇滿足您需求的最低權限。\",\n                \"Learn more about permissions.\": \"瞭解更多關於權限的信息。\",\n\n                \"Access:\": \"訪問權限：\",\n                \"Read and write\": \"讀寫\",\n                \"Read-only\": \"只讀\",\n                \"Access: Read-only\": \"訪問權限: 只讀\",\n                    \"Read access required to use other repository permissions.\": \"使用其他倉庫權限需要讀取權限。\",\n                    \"Read access required to use other repository permissions\": \"使用其他倉庫權限需要讀取權限。\",\n\n                \"Add permissions\": \"添加權限\",\n                    \"Select repository permissions\": \"選擇倉庫權限\",\n                        \"No items available\": \"尚無可用專案\",\n                    \"Select account permissions\": \"選擇賬戶權限\",\n                    \"Select organization permissions\": \"選擇組織權限\",\n\n            // 倉庫權限\n                \"No repository permissions added yet\": \"尚未添加倉庫權限\",\n                \"Repository permissions permit access to repositories and related resources.\": \"倉庫權限允許訪問倉庫和相關資源。\",\n\n                \"Actions\": \"操作\",\n                    \"Workflows, workflow runs and artifacts.\": \"工作流程、工作流程的運行和工件。\",\n                \"Administration\": \"管理\",\n                    \"Repository creation, deletion, settings, teams, and collaborators.\": \"倉庫創建、刪除、設置、團隊和協作者。\",\n                \"Artifact metadata\": \"附件元數據\",\n                    \"Create and retrieve artifact metadata for a repository.\": \"創建和檢索倉庫附件的元數據。\",\n                \"Attestations\": \"證書\",\n                    \"Create and retrieve attestations for a repository.\": \"創建和檢索倉庫的證書。\",\n                // \"Checks\": \"檢查\",\n                //     \"Checks on code.\": \"檢查程式碼。\",\n                \"Code scanning alerts\": \"程式碼掃描警報\",\n                    \"View and manage code scanning alerts.\": \"查看和管理程式碼掃描警報。\",\n                // \"\": \"程式碼空間\",\n                    \"Create, edit, delete and list Codespaces.\": \"創建、編輯、刪除和列出程式碼空間。\",\n                \"Codespaces lifecycle admin\": \"程式碼空間的生命週期管理\",\n                    \"Manage the lifecycle of Codespaces, including starting and stopping.\": \"管理程式碼空間的生命週期，包括啟動和停止。\",\n                \"Codespaces metadata\": \"程式碼空間元數據\",\n                    \"Access Codespaces metadata including the devcontainers and machine type.\": \"訪問程式碼空間元數據，包括開發容器和機器類型。\",\n                \"Codespaces secrets\": \"程式碼空間機密\",\n                    \"Restrict Codespaces user secrets modifications to specific repositories.\": \"限制程式碼空間的用戶機密對特定倉庫的修改。\",\n                \"Commit statuses\": \"提交狀態\",\n                    \"Commit statuses.\": \"提交狀態。\",\n                \"Contents\": \"內容\",\n                    \"Repository contents, commits, branches, downloads, releases, and merges.\": \"倉庫內容、提交、分支、下載、發佈和合併。\",\n                // 自定義屬性\n                    \"Read and write repository custom properties values at the repository level, when allowed by the property.\": \"在屬性允許的情況下，在倉庫級別讀取和寫入倉庫自定義屬性值。\",\n                \"Dependabot alerts\": \"Dependabot 警報\",\n                    \"Retrieve Dependabot alerts.\": \"檢索 Dependabot 警報。\",\n                \"Dependabot secrets\": \"Dependabot 機密\",\n                    \"Manage Dependabot repository secrets.\": \"管理 Dependabot 倉庫的機密。\",\n                \"Deployments\": \"部署\",\n                    \"Deployments and deployment statuses.\": \"部署和部署狀態。\",\n                \"Discussions\": \"討論\",\n                    \"Discussions and related comments and labels.\": \"討論及相關評論和標籤。\",\n                \"Environments\": \"環境\",\n                    \"Manage repository environments.\": \"管理倉庫環境。\",\n                \"Issues\": \"議題\",\n                    \"Issues and related comments, assignees, labels, and milestones.\": \"議題及相關評論、受理人、標籤和里程碑。\",\n                \"Merge queues\": \"合併列隊\",\n                    \"Manage a repository's merge queues\": \"管理倉庫的合併隊列。\",\n                \"Metadata\": \"元數據\",\n                    \"Search repositories, list collaborators, and access repository metadata.\": \"搜索倉庫、列出協作者，訪問倉庫元數據。\",\n                // \"Packages\": \"軟體包\",\n                //     \"Packages published to the GitHub Package Platform.\": \"發佈軟體包到 GitHub Package 平臺。\",\n                \"Pages\": \"GitHub Pages\",\n                    \"Retrieve Pages statuses, configuration, and builds, as well as create new builds.\": \"檢索頁面狀態、配置和構建，以及創建新的構建。\",\n                // \"Projects\": \"專案\",\n                //     \"Manage classic projects within a repository.\": \"管理倉庫中的經典專案。\",\n                \"Pull requests\": \"拉取請求\",\n                    \"Pull requests and related comments, assignees, labels, milestones, and merges.\": \"拉取請求及相關評論、受讓人、標籤、里程碑和合併。\",\n                \"Repository security advisories\": \"倉庫安全公告\",\n                    \"View and manage repository security advisories.\": \"查看和管理安全公告\",\n                \"Secret scanning alert dismissal requests\": \"機密掃描警報解除請求\",\n                    \"View and manage secret scanning alert dismissal requests\":\"查看和管理機密掃描警報解除請求\",\n                \"Secret scanning alerts\": \"機密掃描警報\",\n                    \"View and manage secret scanning alerts.\": \"查看和管理機密掃描警報。\",\n                \"Secret scanning push protection bypass requests\": \"機密掃描推送保護繞過請求\",\n                    \"Review and manage repository secret scanning push protection bypass requests.\": \"審查和管理倉庫機密掃描推送保護繞過請求。\",\n                \"Secrets\": \"機密\",\n                    \"Manage Actions repository secrets.\": \"管理操作倉庫機密。\",\n                \"Variables\": \"變量\",\n                    \"Manage Actions repository variables.\": \"管理操作倉庫變量。\",\n                \"Webhooks\": \"Web 鉤子\",\n                    \"Manage the post-receive hooks for a repository.\": \"管理倉庫的接收後鉤子。\",\n                \"Workflows\": \"工作流程\",\n                    \"Update GitHub Action workflow files.\": \"更新 GitHub Actions 工作流程文件。\",\n\n            // 賬戶權限\n                \"Account\": \"賬戶\",\n                \"No account permissions added yet\": \"尚未添加賬戶權限\",\n                \"User permissions permit access to resources under your personal GitHub account.\": \"用戶權限允許訪問您個人 GitHub 賬戶下的資源。\",\n\n                \"Block another user\": \"拉黑其他用戶\",\n                    \"View and manage users blocked by the user.\": \"查看和管理被用戶拉黑的用戶。\",\n                \"Codespaces user secrets\": \"程式碼空間用戶機密\",\n                    \"Manage Codespaces user secrets.\": \"管理程式碼空間用戶機密。\",\n                \"Copilot Chat\": \"Copilot 聊天\",\n                    \"This application will receive your GitHub ID, your GitHub Copilot Chat session messages (not including messages sent to another application), and timestamps of provided GitHub Copilot Chat session messages. This permission must be enabled for Copilot Extensions.\": \"該應用程式將獲取您的 GitHub ID、您的 GitHub Copilot 聊天會話消息（不包括發送到其他應用程式的消息），以及提供的 GitHub Copilot 聊天會話消息的時間戳。必須啟用此權限才能使用 Copilot 擴展功能。\",\n                \"Copilot Editor Context\": \"Copilot 編輯器上下文\",\n                    \"This application will receive bits of Editor Context (e.g. currently opened file) whenever you send it a message through Copilot Chat.\": \"每當您通過 Copilot Chat 向該應用發送消息時，該應用將接收部分編輯器上下文（例如當前打開的文件）。\",\n                \"Copilot Requests\": \"Copilot 請求\",\n                    \"Send Copilot requests.\": \"發送 Copilot 請求\",\n                \"Email addresses\": \"電子郵箱地址\",\n                    \"Manage a user's email addresses.\": \"管理用戶的電子郵箱地址。\",\n                // 活動\n                    \"View events triggered by a user's activity.\": \"查看由用戶活動觸發的事件。\",\n                // 關注者\n                    \"A user's followers\": \"用戶的關注者\",\n                \"GPG keys\": \"GPG 密鑰\",\n                    \"View and manage a user's GPG keys.\": \"查看和管理用戶的 GPG 密鑰。\",\n                // Gist\n                    \"Create and modify a user's gists and comments.\": \"創建和修改用戶的程式碼片段和評論。\",\n                \"Git SSH keys\": \"Git SSH 密鑰\",\n                \"Interaction limits\": \"交互限制\",\n                    \"Interaction limits on repositories\": \"倉庫的交互限制\",\n                \"Knowledge bases\": \"知識庫\",\n                    \"View knowledge bases for a user.\": \"為用戶查看知識庫。\",\n                \"Models\": \"模型\",\n                    \"Allows access to GitHub Models.\": \"允許訪問 GitHub 模型。\",\n                \"Plan\": \"計劃\",\n                    \"View a user's plan.\": \"查看用戶的計劃。\",\n                \"Private repository invitations\": \"私有倉庫邀請\",\n                    \"View a user's invitations to private repositories\": \"查看用戶對私有倉庫的邀請\",\n                \"Profile\": \"個人信息\",\n                    \"Manage a user's profile settings.\": \"管理用戶的個人信息設置。\",\n                \"SSH signing keys\": \"SSH 簽名密鑰\",\n                    \"View and manage a user's SSH signing keys.\": \"查看和管理用戶的 SSH 簽名密鑰。\",\n                \"Starring\": \"星標\",\n                    \"List and manage repositories a user is starring.\": \"列出和管理用戶標星的倉庫。\",\n                \"Watching\": \"關注\",\n                    \"List and change repositories a user is subscribed to.\": \"列出和更改用戶訂閱的倉庫。\",\n\n            // 組織權限\n                \"No organization permissions added yet\": \"尚未組織賬戶權限\",\n                \"Organization permissions permit access to organization related resources.\": \"組織權限允許訪問組織相關資源。\",\n\n                \"API Insights\": \"API 洞察\",\n                    \"View statistics on how the API is being used for an organization.\": \"查看 API 在組織中的使用統計。\",\n                // 管理\n                    \"Manage access to an organization.\": \"管理對組織的訪問。\",\n                \"Blocking users\": \"拉黑用戶\",\n                    \"View and manage users blocked by the organization.\": \"查看和管理被組織拉黑的用戶。\",\n                \"Campaigns\": \"活動\",\n                    \"Manage campaigns.\": \"管理活動。\",\n                \"Custom organization roles\": \"自定義組織角色\",\n                    \"Create, edit, delete and list custom organization roles. View system organization roles.\": \"創建、編輯、刪除和列出自定義組織角色。查看系統組織角色。\",\n                \"Custom properties\": \"自定義屬性\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"讀取和寫入組織級別的倉庫自定義屬性值並管理定義。\",\n                \"Custom properties for organizations\": \"自定義組織屬性\",\n                    \"Read and write organization custom properties values at the organization level, when allowed by the property.\": \"在屬性允許的情況下，讀取和寫入組織級別的自定義屬性值。\",\n                \"Custom repository roles\": \"自定義倉庫角色\",\n                    \"Read and write repository custom properties values and administer definitions at the organization level.\": \"讀取和寫入組織級別的倉庫自定義屬性值並管理定義。\",\n                \"Events\": \"事件\",\n                    \"View events triggered by an activity in an organization.\": \"查看組織中某項活動所觸發的事件。\",\n                \"GitHub Copilot Business\": \"GitHub Copilot 商業版\",\n                    \"Manage Copilot Business seats and settings\": \"管理 GitHub Copilot 商業版席位和設置\",\n                \"Hosted runner custom images\": \"託管的運行器自定義鏡像\",\n                    \"View and manage hosted runner custom images available to an organization.\": \"查看和管理組織可用的託管運行器自定義鏡像。\",\n                \"Issue Fields\": \"議題字段\",\n                    \"Manage issue fields for an organization.\": \"管理組織的議題字段。\",\n                \"Issue Types\": \"議題類型\",\n                    \"Manage issue types for an organization.\": \"管理組織的議題類型。\",\n                // 知識庫\n                    \"View and manage knowledge bases for an organization.\": \"查看和管理組織的知識庫。\",\n                \"Members\": \"成員\",\n                    \"Organization members and teams.\": \"組織成員和團隊。\",\n                // 模型\n                    \"Manage model access for an organization.\": \"管理組織的模型訪問。\",\n                \"Network configurations\": \"網絡配置\",\n                    \"View and manage hosted compute network configurations available to an organization.\": \"查看和管理組織可用的託管計算網絡配置。\",\n                \"Organization announcement banners\": \"組織公告橫幅\",\n                    \"View and modify announcement banners for an organization.\": \"查看並修改組織的公告橫幅。\",\n                \"Organization bypass requests for secret scanning\": \"組織繞過機密掃描請求\",\n                    \"Review and manage secret scanning push protection bypass requests.\": \"審查和管理機密掃描推送保護繞過請求。\",\n                \"Organization codespaces\": \"組織程式碼空間\",\n                    \"Manage Codespaces for an organization.\": \"管理組織的程式碼空間。\",\n                \"Organization codespaces secrets\": \"組織程式碼空間機密\",\n                    \"Manage Codespaces Secrets for an organization.\": \"管理組織的程式碼空間機密。\",\n                \"Organization codespaces settings\": \"組織程式碼空間設置\",\n                    \"Manage Codespaces settings for an organization.\": \"管理組織的程式碼空間設置。\",\n                \"Organization dependabot secrets\": \"組織 Dependabot 機密\",\n                    \"Manage Dependabot organization secrets.\": \"管理 Dependabot 組織的機密。\",\n                \"Organization dismissal requests for code scanning\": \"組織程式碼掃描的解除請求\",\n                    \"Review and manage code scanning alert dismissal requests.\": \"審查和管理程式碼掃描警報解除請求。\",\n                \"Organization private registries\": \"組織私有註冊表\",\n                    \"Manage private registries for an organization.\": \"管理組織的私有註冊表。\",\n                \"Plan\": \"計劃\",\n                    \"View an organization's plan.\": \"查看組織的計劃。\",\n                // 專案\n                    \"Manage projects for an organization.\": \"管理組織的專案。\",\n                // 機密掃描警報解除請求\n                    \"Review and manage secret scanning alert dismissal requests\": \"審查和管理機密掃描警報解除請求\",\n                // 機密\n                    \"Manage Actions organization secrets.\": \"管理操作組織機密\",\n                \"Self-hosted runners\": \"自託管運行器\",\n                    \"View and manage Actions self-hosted runners available to an organization.\": \"查看和管理組織可用的 “操作自託管運行器”。\",\n                \"Team discussions\": \"團隊討論\",\n                    \"Manage team discussions and related comments.\": \"管理團隊討論及相關評論。\",\n                // 變量\n                    \"Manage Actions organization variables.\": \"管理操作組織變量。\",\n                // Web 鉤子\n                    \"Manage the post-receive hooks for an organization.\": \"管理組織的接收後鉤子。\",\n\n            \"This token will be ready for use immediately.\": \"該令牌將即可可用。\",\n\n            \"New personal access token\": \"新建個人訪問令牌\",\n                \"Your new personal access token\": \"您的新個人訪問令牌\",\n                \"will be ready for use immediately. It will expire on\": \"將立即準備就緒，可供使用。其有效期至\",\n                // [/(.+) grants you/, \"$1 授予您\"],\n                // [/(\\d+) account permissions?/, \"$1 項賬戶權限\"],\n                // [/(\\d+) permissions? for all repositories:/, \"所有倉庫的 $1 項權限\"],\n                // [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 個倉庫的 $2 項權限\"],\n                // [/(\\d+) organization permissions?/, \"$1 項組織權限\"],\n                \"Generating...\": \"生成中…\",\n\n        // 查看、更新精細化個人訪問令牌 https://github.com/settings/personal-access-tokens/<id>\n            \"No description\": \"暫無描述\",\n            \"Created\": \"創建於\",\n                \"today\": \"今日\",\n\n            \"Access on\": \"訪問:\",\n            \"Access on the\": \"訪問:\",\n            \"organization\": \"組織\",\n\n            \"User permissions\": \"用戶權限\",\n            \"Repository permissions\": \"倉庫權限\",\n            \"Organization permissions\": \"組織權限\",\n\n\n            // 具體權限暫時翻譯 太麻煩 主要他將讀/寫具體的權限合併描述\n\n            // 頂部提醒\n                \"Your personal access token has been updated\": \"您的個人訪問令牌已更新\",\n\n        // 重新生成精細化個人訪問令牌 https://github.com/settings/personal-access-tokens/<id>/regenerate\n            \"Regenerate fine-grained personal access token\": \"重新生成精細化個人訪問令牌\",\n\n        // 開發者設置 - 個人訪問令牌（經典） https://github.com/settings/tokens\n            \"Personal access tokens (classic)\": \"個人訪問令牌（經典）\",\n            \"Generate new token\": \"生成新令牌\",\n                \"Fine-grained, repo-scoped\": \"精細化、 倉庫域\",\n                \"Generate new token (classic)\": \"生成新令牌（經典）\",\n                    \"For general use\": \"一般用途\",\n\n            \"Tokens you have generated that can be used to access the\": \"生成令牌用於訪問\",\n\n            \"Expires\": \"有效期至\",\n            \"This token has no expiration date\": \"此令牌未設置有效期\",\n            \"This token has expired\": \"此令牌已過期\",\n            \"Never used\": \"從未使用\",\n\n            // 生成令牌後提醒複製\n                \"Make sure to copy your personal access token now. You won’t be able to see it again!\": \"確保立即複製您的個人訪問令牌。您將無法再看到它！\",\n\n            \"Personal access tokens (classic) function like ordinary OAuth access tokens. They can be used instead of a password for Git over HTTPS, or can be used to\": \"個人訪問令牌（經典）的功能類似於普通的 OAuth 訪問令牌。它們可以用來代替 HTTPS 上 Git 的密碼，或者可以用來\",\n            \"authenticate to the API over Basic Authentication\": \"通過 ‘基本身份驗證’ 對 API 進行身份驗證\",\n\n        // 創建新個人訪問令牌（經典） https://github.com/settings/tokens/new\n            \"New personal access token (classic)\": \"新建個人訪問令牌（經典）\",\n            \"Note\": \"備註\",\n                \"Note can't be blank\": \"備註不能為空\",\n            \"What’s this token for?\": \"這個令牌有什麼用？\",\n\n            \"Expiration\": \"有效期\",\n            // \"This token expires\": \"該令牌有效期至\",\n            \". To set a new expiration date, you must\": \"。要設置一個新的有效期，您必須\",\n\n\n            \"Select scopes\": \"選擇作用域\",\n                \"Scopes define the access for personal tokens.\": \"作用域定義了個人令牌的訪問範圍。\",\n                \"Read more about OAuth scopes.\": \"瞭解更多關於 OAuth 作用域的信息。\",\n\n            // 權限\n                \"Full control of private repositories\": \"完全控制私有倉庫\",\n                \"Access commit status\": \"訪問提交狀態\",\n                \"Access deployment status\": \"訪問部署狀態\",\n                \"Access public repositories\": \"訪問公共倉庫\",\n                \"Access repository invitations\": \"訪問倉庫邀請\",\n                \"Read and write security events\": \"讀寫安全事件\",\n                \"Update GitHub Action workflows\": \"更新 GitHub Actions 工作流程\",\n                \"Upload packages to GitHub Package Registry\": \"將包上傳到 GitHub Packages 包註冊\",\n                \"Download packages from GitHub Package Registry\": \"從 GitHub Packages 包註冊表下載包\",\n                \"Delete packages from GitHub Package Registry\": \"從 GitHub Packages 包註冊表中刪除包\",\n                \"Full control of orgs and teams, read and write org projects\": \"完全控制組織和團隊，讀寫組織專案\",\n                \"Read and write org and team membership, read and write org projects\": \"讀寫組織和團隊成員，讀寫組織專案\",\n                \"Read org and team membership, read org projects\": \"讀取組織和團隊成員，讀取組織專案\",\n                \"Manage org runners and runner groups\": \"管理組織運行器和運行器組\",\n                \"Full control of user public keys\": \"完全控制用戶公鑰\",\n                \"Write user public keys\": \"寫入用戶公鑰\",\n                \"Read user public keys\": \"讀取用戶公鑰\",\n                \"Full control of repository hooks\": \"完全控制倉庫鉤子\",\n                \"Write repository hooks\": \"寫入倉庫鉤子\",\n                \"Read repository hooks\": \"讀取倉庫鉤子\",\n                \"Full control of organization hooks\": \"完全控制組織鉤子\",\n                \"Create gists\": \"創建程式碼片段\",\n                \"Access notifications\": \"訪問通知\",\n                \"Update ALL user data\": \" 更新所有用戶數據\",\n                \"Read ALL user profile data\": \"讀取所有用戶個人資料數據\",\n                \"Access user email addresses (read-only)\": \"訪問用戶電子郵箱地址（只讀）\",\n                \"Follow and unfollow users\": \"關注和取消關注用戶\",\n                \"Delete repositories\": \"刪除倉庫\",\n                \"Read and write team discussions\": \"讀寫團隊討論\",\n                \"Read team discussions\": \"讀取團隊討論\",\n                \"Full control of enterprises\": \"完全控制企業\",\n                \"Manage enterprise runners and runner groups\": \"管理企業運行器和運行器組\",\n                \"Read and write enterprise billing data\": \"讀寫企業計費數據\",\n                \"Read enterprise profile data\": \"讀取企業個人數據\",\n                \"Provisioning of users and groups via SCIM\": \"通過 SCIM 配置用戶和組\",\n                \"Full control of audit log\": \"完全控制審核日誌\",\n                \"Read access of audit log\": \"讀取審核日誌\",\n                \"Full control of codespaces\": \"完全控制程式碼空間\",\n                \"Ability to create, read, update, and delete codespace secrets\": \"創建、讀取、更新和刪除程式碼空間機密\",\n                \"Full control of GitHub Copilot settings and seat assignments\": \"完全控制 GitHub Copilot 設置和席位分配\",\n                \"View and edit Copilot Business seat assignments\": \"查看和編輯 GitHub Copilot 商業版席位分配\",\n                \"Write org hosted compute network configurations\": \"寫入組織託管計算網絡配置\",\n                \"Read org hosted compute network configurations\": \"讀取組織託管計算網絡配置\",\n                \"Full control of projects\": \"完全控制專案\",\n                \"Read access of projects\": \"讀取專案\",\n                \"Full control of public user GPG keys\": \"完全控制公共用戶 GPG 密鑰\",\n                \"(Developer Preview)\": \"（開發者預覽版）\",\n                \"Write public user GPG keys\": \"寫入公共用戶 GPG 密鑰\",\n                \"Read public user GPG keys\": \"讀取公共用戶 GPG 密鑰\",\n                \"Full control of public user SSH signing keys\": \"完全控制公共用戶 SSH 簽名密鑰\",\n                \"Write public user SSH signing keys\": \"寫入公共用戶 SSH 簽名密鑰\",\n                \"Read public user SSH signing keys\": \"讀取公共用戶 SSH 簽名密鑰\",\n\n            \"Generate token\": \"生成令牌\",\n                // 頂部提醒\n                \"Some of the scopes you’ve selected are included in other scopes. Only the minimum set of necessary scopes has been saved.\": \"您選擇的一些作用域包含在其他作用域中。只保存了必要作用域的最小集合。\",\n                \"Note has already been taken\": \"備註已存在\",\n\n        // 重新生成個人訪問令牌（經典） https://github.com/settings/tokens/<id>/regenerate\n            \"Regenerate personal access token (classic)\": \"重新生成個人訪問令牌（經典）\",\n                \"Submitting this form will generate a new token. Be aware that any scripts or applications using this token will need to be updated.\": \"提交此表單將產生一個新的令牌。請注意，任何使用該令牌的腳本或應用將需要更新。\",\n            \"Regenerate token\": \"重新生成令牌\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Expires on ([^ ]+), ([^ ]+) (\\d+) (\\d+)/, function(all, week, month, day, year){\n            var weekKey = {\n                \"Sun\"  : \"週日\",\n                \"Mon\"  : \"週一\",\n                \"Tue\"  : \"週二\",\n                \"Wed\"  : \"週三\",\n                \"Thu\"  : \"週四\",\n                \"Fri\"  : \"週五\",\n                \"Sat\"  : \"週六\"\n            };\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '有效期至 ' + year + '年' + monthKey[month] + day + '日，' + weekKey[week];\n        }],\n        [/(\\d+) days? \\((.+)\\)/, (match, d , p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return d + `天（${translatedDate}）`;\n        }],\n        [/Last used within the last (\\d+) weeks?/, \"最後一次使用是最近 $1 周之內\"],\n        [/Last used within the last (\\d+) months?/, \"最後一次使用是最近 $1 月之內\"],\n        [/Last used within the last (\\d+) years?/, \"最後一次使用是最近 $1 年之內\"],\n        [/Limit set by ([^ ]+) organization/, \"由 $1 組織設定的限制\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"選定 $1 個倉庫\"],\n        // 新建個人訪問令牌對話框\n            [/(.+) grants you/, \"$1 授予您\"],\n            [/(\\d+) account permissions?/, \"$1 項賬戶權限\"],\n            [/(\\d+) permissions? for all repositories:/, \"所有倉庫的 $1 項權限\"],\n            [/(\\d+) permissions? for (\\d+) repositori(y|es):/, \"$1 個倉庫的 $2 項權限\"],\n            [/(\\d+) organization permissions?/, \"$1 項組織權限\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Fine-grained Personal Access Tokens\": \"精細化的個人訪問令牌\",\n            \"New Fine-grained Personal Access Token\": \"新建精細化個人訪問令牌\",\n            \"Personal Access Tokens (Classic)\": \"個人訪問令牌（經典）\",\n            \"New Personal Access Token (Classic)\": \"新建個人訪問令牌（經典）\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"settings/tokens\"] = I18N[\"zh-TW\"][\"settings/personal-access-tokens\"];\n\n// 倉庫相關==\nI18N[\"zh-TW\"][\"repository-public\"] = { // 倉庫 - 公共部分\n    \"static\": { // 靜態翻譯\n        // 倉庫頁面 /<user-name>/<repo-name>/\n            // 被 GitHub 官方禁用\n            \"This repository has been disabled.\": \"此倉庫已被禁用。\",\n            \"Access to this repository has been disabled by GitHub Staff due to a violation of GitHub's terms of service. If you are the owner of the repository, you may reach out to GitHub Support for more information.\": \"由於違反了 GitHub 的服務條款，GitHub 已禁止訪問此倉庫。如果您是倉庫的所有者，您可以聯繫 GitHub 支持以獲取更多信息。\",\n\n            // 倉庫地址-浮動信息窗口(僅 Android UA)\n            \"Navigate back to\": \"返回到\",\n\n            // 頂部提示\n            \"Sorry, that branch already exists.\": \"抱歉，該分支已存在。\",\n            \"has invited you to collaborate on this repository\": \"邀請您成為該倉庫協作者\",\n                \"View invitation\": \"查看\",\n            \"Updated issue templates for this repository\": \"已為此倉庫更新議題模板\",\n\n            // 存檔\n            \"This repository has been archived by the owner. It is now read-only.\": \"此倉庫已被所有者存檔。它現在是只讀的。\",\n\n            \"Appearance settings\": \"外觀設置\", // 未登錄時出現\n                \"Increase contrast\": \"高對比度\",\n                    \"Enable high contrast for light or dark mode (or both) based on your system settings\": \"根據您的系統設置，為淺色或深色模式（或兩者）啟用高對比度\",\n                    \"Light mode\": \"淺色模式\",\n                    \"Dark mode\": \"深色模式\",\n                    \"On\": \"開\",\n                    \"Off\": \"關\",\n\n            // 倉庫違反 DMCA\n            \"Repository unavailable due to DMCA takedown.\": \"由於 DMCA 刪除，倉庫不可用。\",\n            \"This repository is currently disabled due to a DMCA takedown notice. We have disabled public access to the repository. The notice has been\": \"由於 DMCA 刪除通知，此倉庫當前已被禁用。我們已經禁止公眾訪問該倉庫。該通知已\",\n            \"publicly posted\": \"公開發布\",\n            \"If you are the repository owner, and you believe that your repository was disabled as a result of mistake or misidentification, you have the right to file a counter notice and have the repository reinstated. Our help articles provide more details on our\": \"如果您是倉庫所有者，並且您認為您的倉庫由於錯誤或誤認而被禁用，您有權提交反通知並恢復倉庫。我們的幫助文章提供了關於我們的更多詳細信息\",\n            \"DMCA takedown policy\": \"DMCA 刪除政策\",\n            \"how to file a counter notice\": \"如何提交反通知\",\n            \". If you have any questions about the process or the risks in filing a counter notice, we suggest that you consult with a lawyer.\": \"。如果您對提交反通知的流程或風險有任何疑問，我們建議您諮詢律師。\",\n\n            // 倉庫包含危險內容\n            \"This repository contains malicious content that may cause technical harms. We have decided to preserve this content for security research purposes. Please exercise CAUTION when clicking links, downloading releases, or otherwise interacting with this repository.\": \"此倉庫包含惡意內容，可能導致技術性損害。出於安全研究目的，我們決定保留此內容。在點擊鏈接、下載發行版或與此倉庫進行任何交互時，請務必謹慎。\",\n            \"Discover other projects on GitHub\": \"在 GitHub 上探索其他倉庫\",\n            \"View repository\": \"查看倉庫\",\n            \"Additional resources\": \"更多資源\",\n            \"GitHub Community Guidelines\": \"GitHub 社區準則\",\n\n             // 用戶 浮動信息卡\n                \"- same time\": \"- 時間相同\",\n                \"Recently edited these files\": \"最近編輯過這些文件\",\n                \"Owns this repository\": \"擁有該倉庫\",\n                \"Left a review\": \"留下了一個評論\",\n                \"Committed to this repository\": \"已提交過這個倉庫\",\n                \"Committed to this repository in the past day\": \"最近一天裡已提交過這個倉庫\",\n                \"Committed to this repository in the past week\": \"最近一週裡已提交過這個倉庫\",\n                \"Committed to this repository in the past month\": \"最近一個月裡已提交過這個倉庫\",\n                \"Member of\": \"隸屬組織\",\n                // [/, and (\\d+) more/, \"，以及其他 $1 個組織\"],\n                \"Opened this issue\": \"打開了該議題\",\n                \"Opened this pull request\": \"打開了該拉取請求\",\n                \"Opened this pull request (their first ever)\": \"打開了該拉取請求（他們有史以來的第一個請求）\",\n                \"Started this discussion\": \"開啟了該討論\",\n\n            // 組織  浮動信息卡\n                // [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n                // [/(\\d+) members?/, \"$1 個成員\"],\n\n            \"Some checks haven't completed yet\": \"部分檢查還未完成\",\n            \"Started\": \"開始於\",\n            \"— This check has started...\": \"— 檢查已開始...\",\n\n            \"Jump to bottom\": \"跳到底部\", //小屏模式\n            \"Forked from\": \"複刻自\", // 同上（發行版未登錄頁面）\n\n            \"people\": \"人\", // 提交\n            \"committed\": \"提交於\", // 提交浮窗\n            \"authored\": \"撰寫於\",\n            \"authored and\": \"撰寫和\", // 1 編寫，由 2 提交\n\n            // 標籤欄\n            \"Code\": \"程式碼\",\n            \"Pull requests\": \"拉取請求\",\n            \"Discussions\": \"討論\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"專案\",\n            \"Models\": \"模型\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"設置\",\n\n            \"Additional navigation options\": \"更多導航選項\", // 小屏\n            \"View all files\": \"查看所有文件\", //Android UA 下出現\n\n            // \"Pulse\": \"統計\",\n            // \"Graphs\": \"圖表\",\n\n            // 返回通知頁狀態條\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Subscribe\": \"訂閱\",\n            \"Unsubscribe\": \"退訂\",\n            \"Mark as read\": \"標記為已讀\",\n            \"Mark as unread\": \"標記為未讀\",\n            \"Move to inbox\": \"移動到收件箱\",\n            \"Save\": \"保存\",\n            \"Unsave\": \"未保存\",\n\n            // 評論框頭部欄 (議題 & 拉取請求)\n                \"Contributor\": \"貢獻者\",\n                \"Owner\": \"所有者\",\n                \"Author\": \"作者\",\n                    \"You are the author of this issue\": \"您是這個議題的作者。\",  // 議題\n                    \"You are the author of this pull request.\": \"您是這個拉取請求的作者。\", // 拉取請求\n                    \"This user is the author of this issue\": \"該用戶是這個議題的作者。\",  // 議題\n                    \"This user is the author of this issue.\": \"該用戶是這個議題的作者。\",// 拉取請求\n                    \"This user is the author of this pull request.\": \"該用戶是這個拉取請求的作者。\",// 拉取請求\n                \"Member\": \"成員\",\n                    //[/This user is a member of the ([^ ]+)./, \"該用戶是 $1 組織的成員。\"],\n                \"Collaborator\": \"協作者\",\n                    //[/This user has been invited to collaborate on the ([^ ]+) repository./, \"該用戶已被邀請在 $1 倉庫上進行協作。\"],\n                \"Pick your reaction\": \"選擇您的表情\",\n                \"Copy link\": \"複製鏈接\",\n                \"Quote reply\": \"引用回覆\",\n                \"Reference in new issue\": \"引用到新議題\",\n                    // 引用到新議題 對話框\n                    \"Body\": \"正文\",\n                    \"Issue title\": \"議題標題\",\n                    \"Issue body\": \"議題正文\",\n                    \"Select repository\": \"選擇倉庫\",\n                    \"Repository:\": \"倉庫：\",\n                    \"No matching repositories.\": \"沒有匹配的倉庫。\",\n                \"Report content\": \"舉報內容\",\n                \"Report\": \"舉報\",\n                // 評論刪除提醒\n                    \"Are you sure you want to delete this?\": \"您定要刪除這個嗎？\",\n\n                \"commented\": \"評論於\",\n                \"commented on behalf of\": \"評論，代表\",\n                \"— with\": \"— 通過\",\n                \"Update comment\": \"更新評論\",\n                \"Hide\": \"隱藏\",\n                    \"via email\": \"通過郵件\",\n\n                \"created\": \"創建\",\n                \"edited\": \"編輯\",\n                \"(most recent)\": \"(最近的)\",\n                \"(deleted)\": \"(已刪除)\",\n                \"deleted this content\": \"刪除了該內容\",\n                // 評論歷史查看\n                \"Options\": \"選項\",\n                // 選項下拉菜單\n                \"More options\": \"更多選項\",\n                \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修訂版不能被刪除。需要刪除敏感信息？請到信息的具體編輯處修改。\",\n                \"Delete revision from history\": \"從歷史記錄中刪除修訂\",\n                \"This edit’s content will no longer be visible.\": \"此修改的內容將不再可見。\",\n                    \"Delete revision\": \"刪除修訂\",\n                // 評論狀態\n                \"This comment has been hidden.\": \"此評論被隱藏。\",\n                \"This comment was marked as abuse.\": \"此評論被標記為濫用。\",\n                \"This comment was marked as spam.\": \"此評論被標記為垃圾信息。\",\n                \"This comment was marked as off-topic.\": \"此評論被標記為偏離主題。\",\n                \"This comment was marked as outdated.\": \"此評論被標記為已過時。\",\n                \"This comment was marked as duplicate.\": \"此評論被標記為重複。\",\n                \"This comment was marked as resolved.\": \"此評論被標記為已解決。\",\n                \"Sign in to view\": \"登錄後查看\", // 未登錄\n\n            // 切換分支/標籤 下拉菜單\n                \"Switch branches/tags\": \"切換分支/標籤\",\n                \"Find or create a branch…\": \"查找或創建分支…\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Filter branches/tags\": \"搜索分支/標籤\",\n                \"Branches\": \"分支\",\n                \"default\": \"默認\",\n                \"View all branches\": \"查看全部分支\",\n                \"Find a tag\": \"查找標籤\",\n                \"Tags\": \"標籤\",\n                \"Tag\": \"標籤\",\n                \"Search for a tag\": \"搜索標籤\",\n                \"Nothing to show\": \"暫無\",\n                \"View all tags\": \"查看全部標籤\",\n\n                \"Find or create a branch...\": \"查找或創建分支…\",\n                \"Search or create a new tag\": \"搜索或創建新標籤\",\n                \"View all\": \"查看全部\",\n                \"branches\": \"分支\",\n                \"Find a tag...\": \"查找標籤…\",\n                \"Nothing to show\": \"暫無\",\n                \"tags\": \"標籤\",\n\n                \"View all rules\": \"查看全部規則\",\n\n            // 鍵盤快捷鍵\n                \"Open in codespace\"  : \"在程式碼空間中打開\",\n                \"Open in github.dev editor\"  : \"在 github.dev 編輯器中打開\",\n                \"Open github.dev editor in a new tab\"  : \"在新標籤頁中打開 github.dev 編輯器\",\n                \"Open cs.github.com in a new tab\": \"在新標籤頁中打開 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二級搜索欄\",\n                \"Go to Code\"                 : \"跳轉到程式碼\",\n                \"Go to Issues\"               : \"跳轉到議題\",\n                \"Go to Pull Requests\"        : \"跳轉到拉取請求\",\n                \"Go to Actions\"              : \"跳轉到操作\",\n                \"Go to Projects\"             : \"跳轉到專案\",\n                \"Go to Wiki\"                 : \"跳轉到 Wiki\",\n                \"Go to Discussions\"          : \"跳轉到討論\",\n\n                \"Copilot chat\": \"Copilot 聊天\",\n                \"Open Copilot chat\": \"打開 Copilot 聊天\",\n                \"Close Copilot chat\": \"關閉 Copilot 聊天\",\n                \"Expand/collapse Copilot chat\": \"展開/摺疊 Copilot 聊天\",\n\n            // 議題\n                \"Submit comment\": \"提交評論\",\n                \"Submit comment and close issue\": \"提交評論並關閉議題\",\n                \"Preview comment\": \"預覽評論\",\n                \"Create issue\": \"創建議題\",\n                // \"篩選用戶\": \"\",\n                \"Filter by or edit assignees\"  : \"按受理人篩選或編輯受理人\",\n                \"Filter by or edit labels\"     : \"按標籤篩選或編輯標籤\",\n                \"Filter by or edit projects\"   : \"按專案篩選或編輯專案\",\n                \"Filter by or edit milestones\" : \"按里程碑篩選或編輯里程碑\",\n                \"Reply (quoting selected text)\": \"答覆（引用所選文本）\",\n                \"Open saved replies\": \"打開快捷回覆（引用所選文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回覆（打開快捷回覆）\",\n\n                \"Pull request list\": \"拉取請求列表\",\n                    \"Open pull request\"  : \"打開拉取請求\",\n                \"Pull request - Conversation tab\": \"拉取請求 - 對話標籤卡\",\n                    \"Submit comment and close or open pull request\": \"提交評論和關閉或打開拉取請求\",\n                    \"Request reviewers\": \"請求審查者\",\n                    \"Link an issue or pull request from the same repository\": \"鏈接同一倉庫的議題或拉取請求\",\n                    \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切換所有摺疊審查意見的可見性，而不僅僅是當前的審查意見\",\n                \"Pull request - Files changed tab\": \"拉取請求 - 文件更改標籤卡\",\n                    \"Open commits list\": \"打開提交列表\",\n                    \"Open files list\": \"打開文件列表\",\n                    \"Next commit\": \"下一個提交\",\n                    \"Previous commit\": \"上一個提交\",\n                    \"Show or hide annotations\": \"顯示或隱藏批註\",\n                    \"Show or hide comments\": \"顯示或隱藏評論\",\n                    \"Submit a review comment\": \"提交審查意見\",\n                    \"Collapse or expand all files instead of just the current one\": \"摺疊或展開所有文件，而不僅僅是當前文件\",\n                    \"and click\": \"和點擊\",\n\n            // 高頻詞\n                \"Merged\": \"已合併\",\n                \"Draft\": \"草案\",\n                \"Branch\": \"分支\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"標籤\",\n\n            \"Compare & pull request\": \"比較 & 拉取請求\",\n\n        // 倉庫 404 頁面（非刪庫狀態）\n            \"404 - page not found\": \"404 - 找不到頁面\",\n            \"The\": \"該\",\n            \"branch of\": \"分支\",\n            \"does not contain the path\": \"倉庫，不包含路徑\",\n            \"Return to the repository overview\": \"返回倉庫概述\",\n            \"Cannot find a valid ref in\": \"未找到有效的引用\",\n            \"Go to default branch\": \"跳轉到默認分支\",\n\n        // 500 頁面\n            \"Looks like something went wrong!\": \"好像出了什麼問題！\",\n            \"We track these errors automatically, but if the problem persists feel free to contact us. In the meantime, try refreshing.\": \"我們會自動跟蹤這些錯誤，但如果問題仍然存在，請隨時與我們聯繫。與此同時，嘗試刷新。\",\n            \"Contact Support\": \"聯繫 GitHub 支持\",\n            \"GitHub Status\": \"GitHub 狀態\",\n\n        // 頁面加載異常(倉庫)\n            \"Error loading page\": \"加載頁面出錯\",\n            \"It looks like your internet connection is down. Please check it.\": \"您的網絡連接似乎出現故障。請檢查一下。\",\n\n        // 邀請繼任者提醒\n            \"Ensure the future of your work!\": \"確保您工作的未來！\",\n            \"Consider inviting another GitHub user to be your successor.\": \"考慮邀請另一位 GitHub 用戶作為您的繼任者。\",\n            \"Inviting a successor helps ensure the continuity of your work in case you are unable to access your account.\": \"邀請繼任者有助於在您無法訪問賬戶時確保工作的連續性。\",\n            \"Invite a successor\": \"邀請繼任者\",\n\n        // 倉庫贊助\n            \"Couldn't load subscription status.\": \"無法加載贊助狀態。\",\n            \"Retry\": \"重試\",\n\n        // 提交檢查對話框\n            \"Some checks haven’t completed yet\": \"部分檢查尚未完成\",\n            \"Some checks were not successful\": \"部分檢查未成功\",\n            \"All checks have passed\": \"所有檢查通過\",\n            \"All checks have failed\": \"所有檢查失敗\",\n            \"Waiting to run this check...\": \"正在等待運行此檢查…\",\n            \"Queued\": \"隊列中\",\n            \"Skipped\": \"已跳過\",\n            \"Deployed\": \"已部署\",\n            \"Pending\": \"待處理\",\n            \"Build Failed\": \"構建失敗\",\n            \"Build Passed\": \"構建通過\",\n            \"Build Errored\": \"構建錯誤\",\n            \"Build Canceled\": \"構建取消\",\n            \"Waiting for build\": \"等待構建\",\n\n        // 未登錄浮窗\n            \"You must be signed in to change notification settings\": \"您必須登錄後才能更改通知設置\",\n            \"You must be signed in to star a repository\": \"您必須登錄後才能標星倉庫\",\n            \"You must be signed in to add this repository to a list\": \"您必須登錄後才能將此倉庫添加到列表中\",\n            \"You must be logged in to vote\": \"您必須登錄後才能投票\",\n\n        \"Open commit details\": \"打開提交詳情\",\n        \"failure\": \"失敗\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Started (\\d+) discussions? in this repository in the past day/, \"過去一天內在此倉庫中開啟了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Started (\\d+) discussions? in this repository in the past week/, \"過去一週內在此倉庫中開啟了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Started (\\d+) discussions? in this repository in the past month/, \"過去一個月內在此倉庫中開啟了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Started (\\d+) discussions? in this repository/, \"在此倉庫中開啟了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Opened this pull request \\(their first in ([^ ]+)\\)/, \"打開了這個拉取請求（首次在 $1 發表）\"], // 用戶 浮動信息卡\n        [/([^ ]+) requested changes, you commented/, \"$1 要求更改，您發表評論\"], // 拉取請求 浮動信息卡\n        [/(\\d+) successful checks?/, \"$1 個成功的檢查\"],\n        [/(\\d+) successful/, \"$1 成功\"],\n        [/(@\\S+) generated this status\\./, \"$1 創建了這個狀態\"],\n        [/Successful in (\\d+)s/, \"在 $1 秒內成功\"],\n        [/Successful in (\\d+)m/, \"在 $1 分內成功\"],\n        [/(\\d+) failing checks?/, \"$1 個失敗的檢查\"],\n        // 3 skipped\n        [/(\\d+) skipped/, \"$1 個跳過\"],\n        [/Failing after (\\d+)s/, \"在 $1 秒後失敗\"],\n        [/(\\d+) in progress check/, \"$1 個正在運行的檢查\"],\n        // [/ and /, \" 和 \"],\n        [/, and (\\d+) more/, \"，以及其他 $1 個組織\"], // 用戶 浮動信息卡\n        [/^(\\d+) repositor(y|ies)/, \"$1 個倉庫\"], // 組織  浮動信息卡\n        [/(\\d+) members?/, \"$1 個成員\"], // 組織  浮動信息卡\n        [/Answered (\\d+) discussions? in this repository in the past month/, \"過去一個月內在此倉庫中回答了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Answered (\\d+) discussions? in this repository in the past week/, \"過去一週內在此倉庫中回答了 $1 個討論\"], // 用戶 浮動信息卡\n        [/Answered (\\d+) discussions? in this repository/, \"在此倉庫中回答了 $1 個討論\"], // 用戶 浮動信息卡\n        [/had recent pushes (\\d+) seconds? ago/, \"分支有了最新的推送，$1 秒之前\"],\n        [/had recent pushes (\\d+) minutes? ago/, \"分支有了最新的推送，$1 分鐘之前\"],\n        [/had recent pushes less than (\\d+) minutes? ago/, \"分支有了最新的推送，不到 $1 分鐘\"],\n        [/had recent pushes about/, \"分支有了最新的推送，大約\"],\n        [/This user is a member of the ([^ ]+) organization./, \"該用戶是 $1 組織的成員。\"],\n        [/This user has been invited to collaborate on the ([^ ]+) repository./, \"該用戶已被邀請在 $1 倉庫上進行協作。\"],\n        [/You are the owner of the (.*) repository./, \"您是 $1 倉庫的所有者。\"],\n        [/This user is the owner of the (.*) repository./, \"該用戶是 $1 倉庫的所有者。\"],\n        [/You have been invited to collaborate on the (.*) repository./, \"您已受邀參與 $1 倉庫的協作。\"],\n        [/You have previously committed to the (.*) repository./, \"您之前有提交到 $1 倉庫。\"],\n        [/This user has previously committed to the (.*) repository./, \"該用戶之前有提交到 $1 倉庫。\"],\n        [/This repository was archived by the owner on (.+). It is now read-only./, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `此倉庫已由所有者於${translatedDate}存檔。它現在是只讀的。`;\n        }],\n        [/, and ([^ ]+)/, \", 和 $1\"],\n        [/reacted with (thumbs up|thumbs down|laugh|hooray|confused|heart|rocket|eyes) emoji/, function (all, reacted) {\n            var reactedKey = {'thumbs up': \"點贊\", 'thumbs down': \"點踩\", laugh: \"大笑\", hooray: \"歡呼\", confused: \"表示困惑\", heart: \"比心\", rocket: \"發送火箭\", eyes: \"表示關注\"};\n\n            return reactedKey[reacted];\n        }],\n        // 成為協作者提示\n        [/You now have push access to the ([^ ]+) repository./, \"您現在擁有推送至 $1 倉庫的權限\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n        // 提交 - 作者窗\n        [/(\\d+) authors?/, \"$1 作者\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"page-new-repo\"] = {// 倉庫 - 新建/導入/複刻倉庫\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 新建倉庫 https://github.com/new\n            \"Create a new repository\": \"新建倉庫\",\n                \"A repository contains all project files, including the revision history.\": \"倉庫包含專案中的所有文件，包括修訂歷史記錄。\",\n                \"Already have a project repository elsewhere?\": \"在其他地方已有倉庫？\",\n                \"Import a repository\": \"導入倉庫\",\n                \"Required fields are marked with an asterisk (*).\": \"帶星號 (*) 的為必填項。\",\n\n            \"🎉 Try the new experience\": \"🎉 嘗試新版頁面\",\n\n            \"Repository template\": \"倉庫模板\",\n                \"Fetching templates…\": \"正在獲取模板…\",\n                \"No template\": \"不設置模板\",\n                \"No templates available.\": \"無可用模板。\",\n                \"Start your repository with a template repository's contents.\": \"使用模板倉庫的內容新建倉庫。\",\n\n            \"Owner\": \"所有者\",\n            \"Repository name\": \"倉庫名稱\",\n            \"Great repository names are short and memorable. Need inspiration? How about\": \"好的倉庫名稱應該簡單且容易記憶。需要靈感嗎？這個怎麼樣：\",\n                \"Checking availability…\": \"檢查可用性…\",\n                \"is available.\": \"名稱可用。\",\n                \"The repository\": \"倉庫\",\n                \"already exists on this account\": \"已經存在於此賬戶\",\n                \"Your new repository will be created as\": \"您的新倉庫將被創建為\",\n                \"New repository name must not be blank\": \"新倉庫名稱不能為空\",\n\n                // 用戶名同名倉庫\n                \"You found a secret!\": \"您發現了一個秘密！\",\n                \"is a ✨\": \"是一個 ✨\",\n                \"special\": \"特別的\",\n                \"✨ repository that you can use to add a\": \"✨ 倉庫，您可以用它來添加一個\",\n                \"to your GitHub profile. Make sure it’s public and initialize it with a\": \"到您的 GitHub 個人資料。確保它是公開的，並在初始化時加入一個\",\n                \"to get started.\": \"以便開始工作。\",\n                 // 組織 .github 倉庫\n                \"to your organization's GitHub profile. Make sure it’s public and initialize it with a\": \"到您組織的 GitHub 個人資料。確保它是公開的，並在初始化時加入一個\",\n                \"in the\": \"在\",\n                \"directory to get started.\": \"目錄下以便開始工作。\",\n\n                // 組織倉庫\n                \"You may not create private repositories by organization policy.\": \"根據組織政策，您不能創建私有倉庫。\",\n\n            \"Description\": \"描述\",\n                \"(optional)\": \"(可選)\",\n            \"Public\": \"公共\",\n                \"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到這個倉庫，您可以選擇誰能提交。\",\n            \"Private\": \"私有\",\n                \"You choose who can see and commit to this repository.\": \"您可以選擇誰可以看和提交到該倉庫。\",\n            \"Initialize this repository with:\": \"使用以下方式初始化此倉庫：\",\n                // \"Skip this step if you’re importing an existing repository.\": \"如果您要導入現有倉庫，請跳過此步驟。\",\n                \"Add a README file\": \"添加 README 文件\",\n                    \"This is where you can write a long description for your project.\": \"您可以在此處為您的專案編寫詳細描述。\",\n                    \"Learn more about READMEs.\": \"瞭解更多關於 README 的信息。\",\n            \"Add .gitignore\": \"添加 .gitignore 文件\",\n                \"Choose which files not to track from a list of templates.\": \"從模板列表中選擇哪些文件不需要跟蹤。\",\n                \"Learn more about ignoring files.\": \"瞭解更多關於忽略文件的信息。\",\n                \".gitignore template:\": \".gitignore 模板：\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"篩選…\",\n                    \"None\": \"無\",\n\n                    // 篩選 - 無模板\n                    \"You haven't created any items yet\": \"您尚未創建任何專案\",\n                        \"Please add or create new items to populate the list.\": \"請添加或創建新專案以填充列表。\",\n            \"Choose a license\": \"選擇許可證\",\n                \"A license tells others what they can and can't do with your code.\": \"許可證告訴其他人，他們可以使用您的程式碼做什麼和不能做什麼。\",\n                \"Learn more about licenses.\": \"瞭解更多關於許可證的信息。\",\n\n                \"License:\": \"許可證：\",\n                    \"License\": \"許可證\",\n\n            // 市場應用列表\n            \"Grant your Marketplace apps access to this repository\": \"授予市場應用訪問該倉庫的權限\",\n            \"You are\": \"您\",\n            \"subscribed to\": \"訂閱了\",\n            \"Marketplace app\": \"個市場應用\",\n            \"s\": \" \",\n\n            \"You are creating a public repository in your personal account.\": \"您正在個人賬戶中創建公共倉庫\",\n            \"You are creating a private repository in your personal account.\": \"您正在個人賬戶中創建私有倉庫\",\n\n            \"This will set\": \"這將設置\",\n            \"as the default branch.\": \"為默認分支。\",\n            \"Change the default name in\": \"變更默認名稱在\",\n            \"your\": \"您的\",\n            \"settings\": \"設置\",\n\n            \"Create repository\": \"創建倉庫\",\n            \"Creating repository...\": \"創建倉庫中…\",\n\n        // 依據模板新建倉庫 https://github.com/new?template_owner=<template-owner>&template_name=<template-name>\n            \"Include all branches\": \"包括所有分支\",\n                \"Copy all branches from\": \"複製所有\",\n                \"and not just the default branch.\": \"倉庫分支，而不僅僅是默認分支。\",\n\n                \"If enabled, all branches from the template repository will be included.\": \"如果啟用，將包含來自模板倉庫的所有分支。\",\n\n        // 導入倉庫 第一頁 https://github.com/new/import\n            \"Import your project to GitHub\": \"將您的專案導入到 GitHub\",\n                \"Import all the files, including revision history, from another version control system.\": \"導入的所有文件，包括修訂歷史記錄，來自其他版本控制系統。\",\n                \"Support for importing Mercurial, Subversion and Team Foundation Version Control (TFVC) repositories ended on April 12, 2024. For more details, see the\": \"對導入 Mercurial、Subversion 和 Team Foundation 版本控制 (TFVC) 倉庫的支持已結束於 2024 年 4 月 12 日。有關詳細信息，請參閱\",\n                \"changelog\": \"更新日誌\",\n\n            \"Your source repository details\": \"您源倉庫的詳情\",\n            \"The URL for your source repository\": \"您源倉庫的 URL\",\n                \"Learn more about the types of\": \"瞭解更多關於\",\n                \"importing git repositories\": \"導入 Git 倉庫\",\n\n            \"Please enter your credentials if required for cloning your remote repository.\": \"如果需要克隆遠程倉庫，請輸入您的憑據。\",\n            \"Your username for your source repository\": \"源倉庫用戶名\",\n            \"Your access token or password for your source repository\": \"源倉庫的訪問令牌或密碼\",\n\n            \"Your new repository details\": \"新倉庫詳情\",\n            //\"Owner\": \"所有者\",\n            // \"Repository name\": \"倉庫名稱\",\n                // \"is available.\": \"名稱可用。\",\n                //\"The repository\": \"倉庫\",\n                //\"already exists on this account.\": \"已經存在於此賬戶。\",\n                //\"Your new repository will be created as\": \"您的新倉庫將被創建為\",\n            //\"Public\": \"公共\",\n            //\"Anyone on the internet can see this repository. You choose who can commit.\": \"任何人都可以看到這個倉庫，您可以選擇誰能提交。\",\n            //\"Private\": \"私有\",\n            //\"You choose who can see and commit to this repository.\": \"您可以選擇誰可以看和提交到該倉庫。\",\n            \"Cancel\": \"取消\",\n            \"Begin import\": \"開始導入\",\n            \"Preparing import…\": \"準備導入…\",\n            \"Importing commits and revision history to GitHub...\": \"導入提交和修訂歷史到 GitHub…\",\n\n        // 導入倉庫 第一頁 /<user-name>/<repo-name>/import\n            \"Import all the files, including the revision history, from another version control system.\": \"導入的所有文件，包括修訂歷史記錄，來自其他版本控制系統。\",\n            \"Your old repository’s clone URL\": \"您舊倉庫的克隆地址\",\n            \"supported VCS.\": \"VCS 的支持。\",\n            \"Your existing repository\": \"您已存在的倉庫\",\n            \"Change repository\": \"選擇倉庫\",\n\n        // 導入倉庫 第二頁 /<user-name>/<repo-name>/import\n            \"Your import will begin shortly...\": \"導入即將開始…\",\n            \"Preparing your new repository\": \"準備您的新倉庫\",\n                \"There is no need to keep this window open, we’ll email you when the import is done.\": \"無需保持此窗口，導入完成後我們會通過電子郵件通知您。\",\n                \"There is no need to keep this window open. We'll email you when the import is done.\": \"無需保持此窗口，導入完成後我們會通過電子郵件通知您。\",\n            \"Detecting your project’s version control system…\": \"正在檢測專案的版本控制系統…\",\n            \"Importing commits and revision history…\": \"導入提交和修訂歷史…\",\n            // [/Updating branches and (\\d) commit authors?…/, \"更新分支和 $1 個提交者…\"],\n            \"Optimizing repository and pushing commits to GitHub…\": \"優化倉庫並將提交推送到 GitHub…\",\n            \"Importing complete! Your new repository\": \"導入完成！您的新倉庫\",\n            \"is ready.\": \"已準備就緒。\",\n\n        // 複刻倉庫 /<user-name>/<repo-name>/fork\n            \"Create a new fork\": \"創建新複刻\",\n                \"A\": \" \",\n                \"fork\": \"複刻\",\n                \"is a copy of a repository. Forking a repository allows you to freely experiment with changes without affecting the original project.\": \"是一個倉庫的副本。複刻倉庫可以讓您在不影響原專案的情況下自由地進行修改實驗。\",\n                \"View existing forks.\": \"查看現有複刻。\",\n\n            \"No available destinations to fork this repository.\": \"沒有複刻此倉庫的可用目標。\",\n            \"Creating fork…\": \"正在創建複刻…\",\n\n            // \"Owners\": \"所有者\",\n                \"Search owners\": \"搜索\",\n                \"Choose an owner\": \"選擇所有者\",\n                    \"(fork already exists)\": \"(複刻已存在)\",\n            // \"Repository name\": \"倉庫名稱\",\n\n                // \"The repository\": \"倉庫\",\n                // \"already exists on this account.\": \"已經存在於此賬戶。\",\n                \"Your new repository will be created as\": \"您的新倉庫將被創建為\",\n                    \"The repository name can only contain ASCII letters, digits, and the characters\": \"倉庫名稱只能包含 ASCII 字母、數字和字符\",\n\n            \"By default, forks are named the same as their upstream repository. You can customize the name to distinguish it further.\": \"默認情況下，複刻的名稱與他們的上游倉庫相同。您可以自定義名稱以進一步區分它。\",\n\n            \"Copy the\": \"僅複製\",\n            \"branch only\": \"分支\",\n\n            \"Contribute back to\": \"回饋給\",\n            \"by adding your own branch.\": \"通過添加您自己的分支。\",\n\n            \"You are creating a fork in your personal account.\": \"您正在向您的個人賬戶中創建一個複刻。\",\n            \"Create fork\": \"創建複刻\",\n\n        // 新版新建倉庫頁\n            \"Switch back to classic experience\": \"回到經典頁面\",\n            \"Repositories contain a project's files and version history.\": \"倉庫包含專案的文件和版本歷史。\",\n            \"Have a project elsewhere?\": \"在其他地方已有倉庫？\",\n\n            \"General\": \"通常\",\n                \"Great repository names are short and memorable. How about\": \"好的倉庫名稱應該簡單且容易記憶。這個怎麼樣：\",\n\n            \"Configuration\": \"配置\",\n                \"Choose visibility\": \"選擇可見性\",\n                    \"Choose who can see and commit to this repository\": \"選擇誰可以查看並提交此倉庫\",\n                \"Start with a template\": \"使用模板開始\",\n                    \"Templates pre-configure your repository with files.\": \"模板會用文件預先配置您的倉庫。\",\n                \"Add README\": \"添加自述文件\",\n                    \"READMEs can be used as longer descriptions.\": \"自述文件可以用作更長的描述。\",\n                    \"About READMEs\": \"關於自述文件\",\n                // gitignore\n                    \".gitignore tells git which files not to track.\": \".gitignore 告訴 git 不追蹤哪些文件。\",\n                    \"About ignoring files\": \"關於忽略文件\",\n\n                    \"Choose a .gitignore template\": \"選擇 .gitignore 模板\",\n                        \"Search templates\": \"搜索模板\",\n                        \"No .gitignore\": \"無\",\n                \"Add license\": \"添加許可證\",\n                    \"Licenses explain how others can use your code.\": \"許可證解釋其他人如何使用您的程式碼。\",\n                    \"About licenses\": \"關於許可證\",\n\n                    \"Search licenses\": \"選擇許可證\",\n                    \"No license\": \"無\",\n                \"Connect GitHub Apps\": \"連接 GitHub 應用\",\n                    \"Connect this repository to apps\": \"將此倉庫連接到\",\n                    \"is subscribed to\": \"訂閱的應用\",\n\n                    \"Choose GitHub Apps\": \"選擇 GitHub 應用\",\n                    \"Search apps\": \"搜索應用\",\n                    \"Cancel and close\": \"關閉\",\n\n            \"Jumpstart your project with Copilot (optional)\": \"用 Copilot 快速啟動您的專案（可選）\",\n                \"Tell Copilot what you want to build in this repository. After creation, Copilot will open a pull request with generated files - such as a basic app, starter code, or other features you describe - then request your review when it's ready.\": \"告訴 Copilot 您想在此倉庫中構建什麼。在創建完成後，Copilot 會打開一個包含生成文件的拉取請求（例如基礎應用、起始程式碼或您描述的其他功能），然後在準備好後請求您進行審核。\",\n                \"About Copilot coding agent\": \"關於 Copilot 編程智能體\",\n\n                \"Prompt\": \"提示詞\",\n                    \"Describe what you want Copilot to build\": \"描述您想讓 Copilot 做什麼\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        // [/([^ ]+) is available\\./,\"$1 名稱可用。\"],\n        [/You are creating a public repository in the ([^ ]+) organization./,\"您正在 $1 組織中創建一個公共倉庫。\"], // 創建組織的公共倉庫\n        [/You are creating a private repository in the ([^ ]+) organization./,\"您正在 $1 組織中創建一個私有倉庫。\"], // 創建組織的私有倉庫\n        // [/\\(fork already exists\\)/, \"（複刻已存在）\"], // 複刻頁面\n        // [/\\(repository already exists\\)/, \"（倉庫已存在）\"], // 複刻頁面\n        [/You are creating a fork in the ([^ ]+) organization./, \"您正在 $1 組織中創建一個複刻。\"], // 複刻頁面\n        [/Updating branches and (\\d+) commit authors?…/, \"更新分支和 $1 個提交者…\"], // 倉庫導入第二頁\n        //[/Connect this repository to apps ([^ ]+) is subscribed to/, \"將此倉庫連接到 $1 訂閱的應用程式\"],\n        [/Auto-installed by ([^ ]+)/, \"由 $1 自動安裝\"],\n        [/(\\d+) apps? selected/, \"已選擇 $1 個應用\"],\n        [/The repository ([^ ]+) already exists on this account/, \"倉庫 $1 已存在於此賬戶\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        // [/, and (\\d+) more/, \"，以及其他 $1 個組織\"], // 用戶 浮動信息卡\n        // [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"], // 組織  浮動信息卡\n        // [/(\\d+) members?/, \"$1 個成員\"], // 組織  浮動信息卡\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New repository\": \"新建倉庫\",\n            \"Import repository\": \"導入倉庫\",\n        },\n        \"regexp\": [\n            [/Fork/, \"複刻\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"new\"] = I18N[\"zh-TW\"][\"page-new-repo\"];\nI18N[\"zh-TW\"][\"new/import\"] = I18N[\"zh-TW\"][\"page-new-repo\"];\nI18N[\"zh-TW\"][\"repository/import\"] = I18N[\"zh-TW\"][\"page-new-repo\"];\nI18N[\"zh-TW\"][\"repository/fork\"] = I18N[\"zh-TW\"][\"page-new-repo\"];\nI18N[\"zh-TW\"][\"orgs/repositories/new\"] = I18N[\"zh-TW\"][\"page-new-repo\"];\n\nI18N[\"zh-TW\"][\"repository\"] = { // 倉庫頁面 /<user-name>/<repo-name>/\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 頂部\n            \"Help us improve GitHub Codespaces\": \"幫助我們改進 GitHub 程式碼空間\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通過三個簡單的問題告訴我們如何讓 GitHub 程式碼空間更適合您。\",\n\n            \"Sorry, couldn’t delete that branch.\": \"抱歉，無法刪除此分支。\",\n            \"Copilot will begin working on your prompt in a draft pull request, and will request review from you when ready.\": \"Copilot 將起草一個拉取請求開始處理您的需求，並在準備好後請求您進行審核。\",\n\n        // 程式碼標籤卡 & 倉庫首頁 /<user-name>/<repo-name>/ 和 /<user-name>/<repo-name>/tree/<branch>\n            // [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名為 $2。\"],\n\n            // 快捷鍵\n                \"Commands\": \"命令\",\n                \"Clone repository: Copy HTTPS\": \"克隆倉庫：複製 HTTPS\",\n                \"Clone repository: Copy SSH\": \"克隆倉庫：複製 SSH\",\n                \"Clone repository: Copy GitHub CLI\": \"克隆倉庫：複製 GitHub CLI\",\n                \"Copy file permalink\": \"複製文件永久鏈接\",\n\n            // 操作條\n                \"forked from\": \"複刻自\",\n                \"Public repository · Forked from\": \"公共倉庫 · 複刻自\", // Android UA 下出現\n                \"Public repository · Generated from\": \"公共倉庫 · 創建自\", // 同上\n                \"Public archive repository\": \"公共存檔倉庫\",\n                \"Public archive repository · Forked from\": \"公共存檔倉庫 · 複刻自\",\n                \"generated from\": \"創建自\",\n                \"mirrored from\": \"鏡像自\",\n\n                \"Pin\": \"置頂\",\n                    \"Pin this repository to your profile\": \"置頂此倉庫到您的個人資料\",\n                    \"No pin slots remaining in your profile\": \"您的個人資料中沒有剩餘的置頂位\",\n                \"Edit Pins\": \"編輯置頂\",\n                    \"Pin to…\": \"置頂到…\",\n                    \"Profile\": \"個人資料頁\",\n                        \"Pin this to your personal profile, visible to everyone\": \"將此置頂到您的個人資料，對所有人可見\",\n                        \"Limit reached\": \"已達上限\",\n                    // 組織倉庫\n                    \"Public pins in this organization\": \"該組織的公共置頂\",\n                        \"Visible to anyone\": \"對任何人可見\",\n                    \"Private pins in this organization\": \"該組織的私有置頂\",\n                        \"Visible to members only\": \"僅對成員可見\",\n                \"Unpin\": \"取消置頂\",\n\n                \"Ignoring\": \"忽略\",\n                \"Stop ignoring\": \"取消忽略\",\n                \"Watch\": \"關注\",\n                \"Unwatch\": \"取消關注\",\n\n                \"Star\": \"星標\",\n                \"Unstar\": \"已加星標\",\n                \"Fork\": \"複刻\",\n                \"Unfork\": \"取消複刻\",\n\n                \"Sponsor\": \"贊助\",\n                // 贊助對話框\n                // [/Sponsor ([^ ]+)?/, \"贊助 $1\"], // 贊助按鈕 對話框 標題\n                \"External links\": \"外部鏈接\",\n                \"Learn more about funding links in repositories\": \"瞭解更多關於倉庫中的贊助鏈接的信息\",\n                \"Report abuse\": \"舉報濫用\",\n\n                // 提交欄 GitHub Action\n                \"All checks have passed\": \"已通過所有檢查\",\n\n\n                // 關注 & 訂閱通知設置 下拉菜單\n                \"Notification settings\": \"通知設置\", //小屏模式\n                \"Subscribe to events for\": \"訂閱事件\",\n                \"Notifications\": \"通知類型\",\n                \"Participating and @mentions\": \"參與和 @您\",\n                    \"Only receive notifications from this repository when participating or @mentioned.\": \"僅在參與或 @您 時接收來自此倉庫的通知。\",\n                \"All Activity\": \"所有活動\",\n                    \"Notified of all notifications on this repository.\": \"接收來自此倉庫所有通知。\",\n                \"Ignore\": \"忽略\",\n                    \"Never be notified.\": \"永不接收通知。\",\n                \"Custom\": \"自定義\",\n                    \"Select events you want to be notified of in addition to participating and @mentions.\": \"選擇除參與和 @您 之外還要接收通知的事件。\",\n                \"Get push notifications on\": \"要獲取推送通知，使用\",\n                \"Releases\": \"發行版\",\n                    //\"Issues are not enabled for this repository\": \"此倉庫未啟用議題功能\",\n                \"Discussions\": \"討論\",\n                    //\"Discussions are not enabled for this repository\": \"該倉庫未啟用討論功能\",\n                    //\"Discussions are not enabled for this repo\": \"此倉庫未啟用討論功能\",\n                    \"are not enabled for this repository\": \"功能未啟用\",\n                \"Security alerts\": \"安全警報\",\n                //\"Cancel\": \"取消\",\n                \"Apply\": \"應用\",\n\n                // 複刻下拉\n                \"Cannot fork because repository is empty.\": \"無法複刻，因為倉庫是空的。\",\n                \"Cannot fork because you own this repository and are not a member of any organizations.\": \"不能複刻，因為您擁有該倉庫，而且不是任何組織的成員。\",\n                \"Existing forks\": \"現有的複刻\",\n                \"You don't have any forks of this repository.\": \"您沒有此倉庫的任何複刻。\",\n                \"Create a new fork\": \"創建複刻\",\n\n                //\n                \"Star this repository\": \"標星倉庫\", //小屏模式\n                \"Unstar this repository\": \"取消倉庫星標\", //小屏模式\n\n            // 倉庫主頁 分支保護\n                // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保護\"], // 倉庫主頁 分支保護\n                \"Your\": \"您的\",\n                \"branch isn't protected\": \"分支不受保護\", // 新版倉庫概述\n                \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保護此分支免受強制推送或刪除，或在合併前要求狀態檢查。\",\n                \"View documentation.\": \"查看文檔\",\n                \"Protect this branch\": \"保護該分支\",\n                \"Dismiss\": \"忽略\",\n\n            // 倉庫主頁 Dependabot 警告框\n                \"We found potential security vulnerabilities in your dependencies.\": \"我們在您的依賴項中發現了潛在的安全漏洞。\",\n                \"Only the owner of this repository can see this message.\": \"僅此倉庫的所有者可以看到此消息。\",\n                \"See Dependabot alerts\": \"查看 Dependabot 警報\",\n\n            // 空倉庫\n                \"This repository is empty.\": \"此倉庫是空的。\",\n                \"Care to check out the\": \"是否願意查看\",\n                \"GitHub Channel on YouTube\": \"YouTube 上的 GitHub 頻道\",\n                \"while you wait?\": \"在您等待的時候？\",\n\n            // 已上架的 GitHub Action 專案\n                \"Use this GitHub action with your project\": \"將此 GitHub Actions 用於您的專案\",\n                \"Add this Action to an existing workflow or create a new one\": \"將此操作添加到現有工作流程或創建新工作流程\",\n                \"View on Marketplace\": \"去市場查看\",\n\n            // 未上架的 GitHub Action 專案\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以將此 Action 發佈到 GitHub 市場\",\n                \"Draft a release\": \"起草發佈\",\n\n            // 訪問已刪除的分支\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"這個提交不屬於本倉庫的任何分支，可能屬於倉庫以外的分支。\",\n\n            // 最近有了新提交提醒\n            // [/had recent pushes less than/, \"有了最近的推送，不到\"], //最近有了新提交提醒\n            // [/had recent pushes/, \"有了最近的推送，\"], //最近有了新提交提醒\n\n            \"Navigate back to\": \"導航回\", // 小屏模式\n\n            // 左側正文\n\n            // 文檔欄目(僅 Andoid UA)\n            \"Menu\": \"菜單\",\n\n            // 自述文件(README.md)\n            \"Filter headings\": \"篩選標題\",\n            \"Edit file\": \"編輯文件\",\n\n            // 默認分支被重命名提醒框\n                \"The default branch has been renamed!\": \"默認分支已重命名!\",\n                \"is now named\": \"已重命名為\",\n                \"If you have a local clone, you can update it by running the following commands.\": \"如果您有一個本地克隆，您可以通過運行以下命令來更新它。\",\n                \"OK, got it\": \"好的，我知道了！\",\n\n                // 上游倉庫分支重命名\n                    \"The default branch on the parent repository has been renamed!\": \"上游倉庫默認分支已被重新命名!\",\n                    \"renamed its default branch\": \"默認分支重命名為\",\n                    \"You can rename this fork's default branch to match in\": \"您可以重命名此複刻默認分支以匹配，在\",\n                    \"branch settings\": \"分支設置\",\n\n            \"branch\": \"分支\",\n            \"branches\": \"分支\",\n            \"tag\": \"標籤\",\n            \"tags\": \"標籤\",\n\n            \"Go to file\": \"轉到文件\",\n                \"No matches found\": \"未找到匹配項\",\n                \"Go to folder\": \"轉到文件夾\",\n                \"See all results\": \"查看所有結果\",\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜單\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上傳文件\",\n                \"Upload file\": \"上傳文件\", // Android UA\n\n            // 程式碼 下拉菜單\n                \"Local\": \"本地\",\n                    \"Clone\": \"克隆\",\n                        // HTTPS\n                        \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n                        // SSH\n                        \"You don't have any public SSH keys in your GitHub account.\": \"您的 GitHub 賬戶中沒有任何公共 SSH 密鑰。\",\n                        \"You can\": \"您可以\",\n                        \"add a new public key\": \"添加新的公共密鑰\",\n                        \", or try cloning this repository via HTTPS.\": \"，或嘗試通過 HTTPS 克隆此倉庫。\",\n\n                        \"Use a password-protected SSH key.\": \"使用受密碼保護的 SSH 密鑰。\",\n                        // GitHub CLI\n                        \"Work fast with our official CLI.\": \"使用我們的官方 CLI 快速工作。\",\n                        \"Learn more about the CLI\": \"瞭解更多關於 CLI 的信息\",\n\n                    \"Open with GitHub Desktop\": \"在 GitHub Desktop 中打開\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 啟動中\",\n                            \"If nothing happens,\": \"如果沒有響應\",\n                            \"download GitHub Desktop\": \"下載 GitHub Desktop\",\n                            \"and try again.\": \"並重試\",\n                    \"Open with Visual Studio\": \"在 Visual Studio 中打開\",\n                    \"Download ZIP\": \"下載 ZIP 壓縮包\",\n\n                    \"Code 55% faster with AI pair programming.\": \"與 AI 一起編程，寫程式碼速度提高55%。\",\n                        \"Start my free trial\": \"開始我的免費試用\",\n                        \"Don't show again\": \"不再顯示\",\n\n                    \"Which remote URL should I use?\": \"我應該使用哪個遠程 URL ?\",\n                    \"Copy url to clipboard\": \"複製鏈接到剪貼板\",\n                    // \"Copy to clipboard\": \"複製到剪切板\",\n                    // \"Copied!\": \"✅ 複製成功!\",\n\n                // 程式碼空間\n                    // 維護提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間正在維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間將進行維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n                        \"this announcement\": \"此公告\",\n                    \"Your workspaces in the cloud\": \"您在雲端的工作空間\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n                    \"Codespace repository configuration\": \"程式碼空間倉庫配置\",\n                        \"New with options...\": \"新建（選項）…\",\n                        \"Configure dev container\": \"配置開發容器\",\n                        \"Set up prebuilds\": \"設置預構建\",\n                        \"Manage codespaces\": \"管理程式碼空間\",\n                        \"Share a deep link\": \"分享深度鏈接\",\n                            \"Share codespace configuration\": \"共享程式碼空間配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"選擇共享時要包含此配置中的哪些設置\",\n                            \"Quick start\": \"快速開始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自動創建或使用最新匹配的程式碼空間。\",\n                            \"Read more about creating a link.\": \"閱讀有關創建鏈接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下程式碼片段在您自己的頁面或 README 中嵌入此配置的 “在 Codespaces 中打開” 按鈕。\",\n                        \"What are codespaces?\": \"什麼是程式碼空間？\",\n                    \"No codespaces\": \"尚無程式碼空間\",\n                    \"You don't have any codespaces with this repository checked out\": \"您沒有檢出此倉庫的任何程式碼空間\",\n                    \"Opening in codespace\": \"正在打開程式碼空間\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n                    \"Learn more about codespaces...\": \"瞭解更多關於程式碼空間的信息…\",\n                    \"Codespace usage for this repository is paid for by\": \"該倉庫的程式碼空間使用費由以下人員支付\",\n\n                    \"On current branch\": \"在當前分支\",\n                        \"No codespaces on current branch\": \"當前分支上沒有程式碼空間\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探險\",\n                    \"Open miniature adventure in web\": \"在網絡中打開迷你探險\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打開…\",\n                            \"Open in browser\": \"在瀏覽器中打開\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打開\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打開\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打開\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"將程式碼空間顯示名稱更改為…\",\n                        \"Export changes to a branch\": \"將更改導出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"這將創建一個包含任何未推送更改的新分支\",\n                            \"Create branch\": \"創建分支\",\n                        \"Change machine type\": \"更改機器類型\",\n                            \"Change codespace machine type\": \"更改程式碼空間機器類型\",\n                            \"Machine type\": \"機器類型\",\n                                \"2-core\": \"雙核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"聯繫我們團隊\",\n                            \"to enable 32-core or GPU machines.\": \"啟用 32 核或 GPU 機器。\",\n                            \"Update codespace\": \"升級程式碼空間\",\n                        \"Stop codespace\": \"停止程式碼空間\",\n                    \"Show more actions for codespace\": \"顯示程式碼空間的更多操作\",\n                        \"Open in Browser\": \"在瀏覽器中打開\",\n                        \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打開\",\n                        \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打開\",\n                        \"Open in JupyterLab\": \"在 JupyterLab 中打開\",\n                        \"Rename\": \"重命名\",\n                            \"Rename codespace\": \"重命名程式碼空間\",\n                            \"Name\": \"名稱\",\n                        \"Auto-delete codespace\": \"自動刪除程式碼空間\",\n                        \"Export changes to a branch\": \"將更改導出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"這將創建一個包含任何未推送更改的新分支\",\n                            \"Checking branch status\": \"檢查分支情況\",\n                            \"Create branch\": \"創建分支\",\n                        \"Export changes to a fork\": \"將更改導出到複刻\",\n                            \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您沒有對此程式碼空間的倉庫的寫訪問權限。這將創建一個新的倉庫分支在\",\n                            \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，將程式碼空間重新分配給該複刻，並將更改導出到新分支。\",\n                            \"Create fork\": \"創建複刻\",\n                        \"Change machine type\": \"修改機器類型\",\n                            \"Change codespace machine type\": \"修改程式碼空間機器類型\",\n                            \"Update codespace\": \"更新程式碼空間\",\n                        \"Stop codespace\": \"停止程式碼空間\",\n                    \"No changes\": \"未更改\",\n                    \"Uncommitted changes\": \"未提交更改\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了賬單問題。請調整您的賬單設置以繼續使用程式碼空間。\",\n\n                    // 刪除對話框\n                        \"Are you sure?\": \"您確定嗎？\",\n\n                // Copilot\n                    \"Describe a task...\": \"描述任務…\",\n                    \"Start task\": \"開始任務\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"程式碼空間 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"程式碼空間 “$1” 已刪除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您確定要刪除 $1 嗎？\"],\n\n\n            \"Use this template\": \"使用此模板\",\n                \"Create a new repository\": \"新建倉庫\",\n                \"Open in a codespace\": \"在程式碼空間中打開\",\n\n            // 個人倉庫 當前分支狀態\n            \"This branch is\": \"該分支\",\n            \"ahead of\": \"領先於\", // 新版倉庫概述\n            \"behind\": \"落後\", // 新版倉庫概述\n            \"This branch is up to date with\": \"該分支保持同步與\", // 新版倉庫概述\n\n            \"Contribute\": \"貢獻\",\n                // 貢獻按鈕下拉菜單\n                \"This branch is not ahead of the upstream\": \"這個分支不領先於上游\",\n                \"No new commits yet. Enjoy your day!\": \"尚無新提交。祝您愉快！\",\n                \"Open a pull request to contribute your changes upstream.\": \"打開拉取請求以向上遊貢獻您的更改。\",\n                \"This branch is not behind the upstream\": \"這個分支不落後於上游\",\n                \"Open pull request\": \"打開拉取請求\",\n\n            \"Sync fork\": \"同步複刻\",\n                // 同步複刻按鈕下拉菜單\n                \"This branch is out-of-date\": \"此分支已過時\",\n                \"Update branch to merge the latest changes from the upstream repository into this branch.\": \"更新分支，將上游倉庫的最新修改合併到本分支。\",\n                // [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通過從上游倉庫同步 $1 個提交來更新分支，以使該分支保持最新。\"], // 同步複刻\n                \"Update branch to keep this branch up-to-date by syncing\": \"更新分支以保持該分支與最新狀態同步，需要同步\",\n                \"from the upstream repository.\": \"來自上游倉庫。\",\n                \"Learn more about syncing a fork\": \"瞭解更多關於複刻同步的信息\",\n                // [/This branch is not behind the upstream ([^ ]+)/, \"該分支不落後與上游 $1\"], // 同步複刻\n                \"No new commits to fetch. Enjoy your day!\": \"尚無新提交。祝您愉快！\", //相同\n                \"Compare\": \"對比\",\n                \"Update branch\": \"更新分支\",\n\n                \"This branch has conflicts that must be resolved\": \"該分支有必須解決的衝突\",\n                // [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+)commits? will be removed from this branch./, \"丟棄 $1 個提交，以使本分支與上游倉庫一致。$2 個提交將從本分支中刪除。\"],\n                \"Discard\": \"丟棄\", // 新版倉庫概述\n                \"to make this branch match the upstream repository.\": \"，以使本分支與上游倉庫一致。\", // 新版倉庫概述\n                \"will be removed from this branch.\": \"將從本分支中刪除。\", // 新版倉庫概述\n                \"You can resolve merge conflicts using the command line and a text editor.\": \"您可以使用命令行和文本編輯器解決合併衝突。\",\n                // [/Discard (\\d+) commits?/, \"丟棄 $1 個提交\"],\n                \"Discarding changes...\": \"放棄更改…\",\n\n                // 頂部提醒\n                    // [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功從上游 $1 獲取並合併。\"],\n\n            // \"Choose a head ref\": \"選擇一個頭引用\",\n\n            // \"There isn’t anything to compare.\": \"沒有什麼可比較的。\",\n            // \"and\": \"和\",\n            // \"are entirely different commit histories.\": \"是完全不同的提交歷史。\",\n            // \"No commit comments for this range\": \"在此範圍內沒有提交評論\",\n            // \"No new commits yet. enjoy your day!\": \"尚無新提交。祝您愉快！\",\n            // \"Find a branch\": \"查找分支\",\n\n            // 正文\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"failure\": \"失敗\",\n            \"success\": \"成功\",\n            \"Approved\": \"已批准\",\n            // [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版倉庫概述\n            \"Open commit details\": \"打開提交詳細信息\", // TODO: 修復該詞條翻譯不生效問題\n\n            \"Failed to load latest commit information.\": \"載入最新提交信息失敗。\",\n\n            \"View code\": \"查看程式碼\", //小屏模式\n\n            // 倉庫缺失 README 提醒\n            \"Help people interested in this repository understand your project by adding a README.\": \"通過添加 README，幫助對此倉庫感興趣的人瞭解您的專案。\",\n            \"Help people interested in this repository understand your project.\": \"幫助對此倉庫感興趣的人瞭解您的專案。\",\n            \"Add a README\": \"添加 README\",\n\n            // 右側欄\n\n            // 與用戶名同名倉庫 編輯 README\n            \"is a special repository.\": \"是一個特殊的倉庫。\",\n            \"Its\": \"它的\",\n            \"will appear on your public profile.\": \"將出現在您的公開個人資料中。\",\n            \"Edit README\": \"編輯 README\",\n            \"Visit profile\": \"查看資料\",\n\n            \"is special. If you\": \"是特殊的。如果您\",\n            \"make this a public repository\": \"將倉庫設置為公開\",\n            \", its\": \"，它的\",\n            \"Go to Settings\": \"前往設置\",\n\n            // 組織下.github 倉庫 README\n                \"is a special repository. Create a\": \"是一個特殊的倉庫。創建\",\n                \"and it will appear on the organization's profile!\": \"並將出現在該組織資料中!\",\n                \"Add profile README\": \"添加 profile/README\",\n\n                \"is a special repository.\": \"是一個特殊的倉庫。\",\n                \"will appear on the organization's profile.\": \"將出現在該組織資料中。\",\n\n            // 組織下.github-private 倉庫 README\n                \"Add a README with an overview of your project.\": \"為您專案添加一個概述 README 文件。\",\n                \"The\": \" \",\n                // [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"將出現在 $1 的成員資料中，僅對組織成員可見。\"],\n\n            // \"About\": \"關於\"，\n            \"No description, website, or topics provided.\": \"未提供描述、網站或主題。\",\n            \"Readme\": \"自述文件\",\n            \"README\": \"自述文件\",\n            \"Contributing\": \"貢獻指南\",\n            \"View license\": \"查看許可證\",\n                \"GPL-3.0 license\": \"GPL-3.0 許可證\",\n                \"AGPL-3.0 license\": \"AGPL-3.0 許可證\",\n                \"LGPL-3.0 license\": \"LGPL-3.0 許可證\",\n                \"MIT license\": \"MIT 許可證\",\n                \"Apache-2.0 license\": \"Apache-2.0 許可證\",\n                \"OFL-1.1 license\": \"OFL-1.1 許可證\",\n                \"0BSD license\": \"0BSD 許可證\",\n                \"BSD-3-Clause license\": \"BSD-3-Clause 許可證\",\n                \"CC0-1.0 license\": \"CC0-1.0 許可證\",\n                \"WTFPL license\": \"WTFPL 許可證\",\n                \"Unknown\": \"未知\",\n            \"Code of conduct\": \"行為準則\",\n            \"Security policy\": \"安全政策\",\n            \"Cite this repository\": \"引用此倉庫\",\n                \"If you use this software in your work, please cite it using the following metadata.\": \"如果您使用此軟體，請使用以下元數據進行引用。\",\n                \"Learn more about CITATION files.\": \"瞭解更多關於引用文件的信息。\",\n                \"View citation file\": \"查看引用文件\",\n            \"Activity\": \"活動\",\n            \"Custom properties\": \"自定義屬性\",\n            \"star\": \"星標\",\n            \"stars\": \"星標\",\n            \"watching\": \"關注\",\n            \"fork\": \"複刻\",\n            \"forks\": \"複刻\",\n            \"Report repository\": \"舉報倉庫\",\n            \"Public repository\": \"公共倉庫\", //小屏模式\n            \"Private repository\": \"私有倉庫\", //小屏模式\n\n\n            // 倉庫描述編輯 對話框\n            \"Edit repository details\": \"編輯倉庫簡述\",\n            \"Description\": \"描述\",\n            \"Short description of this repository\": \"簡短的描述下您的倉庫\",\n            \"Website\": \"網址\",\n            \"Enter a valid URL\": \"請輸入有效的 URL\",\n            \"Use your GitHub Pages website\": \"使用您的 GitHub Pages 站點\",\n            \"Topics\": \"主題\",\n            \"(separate with spaces)\": \"（空格分隔）\",\n            \"Suggested:\": \"建議：\",\n                \"Add this topic\": \"接受該建議\",\n                \"Decline this topic\": \"拒絕該建議\",\n                    \"This isn’t relevant\": \"這並不相關\",\n                    \"This is too specific\": \"這太具體了\",\n                    \"This is too general\": \"這太籠統了\",\n                    \"I just don’t like it\": \"我只是不喜歡它\",\n            \"Include in the home page\": \"包含在主頁中\",\n\n                // 頂部提醒\n                \"Your repository details have been saved.\": \"您的倉庫簡述已保存。\",\n\n            \"Releases\": \"發行版\",\n                \"No releases published\": \"未發佈任何版本\",\n                \"Latest\": \"最新\",\n                \"Create a new release\": \"創建發行版\",\n            // \"Packages\": \"軟體包\",\n                \"No packages published\": \"未發佈軟體包\",\n                \"Publish your first package\": \"發佈軟體包\",\n            \"Sponsor this project\": \"贊助本專案\",\n                \"Learn more about GitHub Sponsors\": \"瞭解更多關於 GitHub 贊助者的信息\",\n            \"Used by\": \"使用者\",\n            \"Contributors\": \"貢獻者\",\n            \"Environments\": \"環境\",\n            \"Deployments\": \"部署\",\n                \"+ more deployments\": \"+ 更多部署\",\n            \"Languages\": \"語言\",\n\n            // \"branch\": \"分支\",\n            // \"branches\": \"分支\",\n            // \"release\": \"次發佈\",\n            // \"releases\": \"次發佈\",\n            // \"contributor\": \"個貢獻者\",\n            // \"contributors\": \"個貢獻者\",\n\n        // 新版倉庫概述\n            // /<user-name>/<repo-name>#coc\n                \"Add a code of conduct\": \"添加行為準則\",\n                \"Define community standards, signal a welcoming and inclusive project, and outline procedures for handling abuse by adding a code of conduct.\": \"通過添加行為準則，明確社區標準，體現專案的歡迎和包容性，並概述處理濫用行為的程式。\",\n\n            // /<user-name>/<repo-name>#license\n                \"License\": \"許可證\",\n                \"Add a license\": \"添加許可證\",\n                \"Add a license to your repository to make it clear how others can use, change, and contribute to your project.\": \"向倉庫中添加許可證，以明確其他人可以如何使用、更改您的專案並為您的專案做出貢獻。\",\n\n            // /<user-name>/<repo-name>#security\n                \"Add a security policy\": \"添加安全策略\",\n                \"Help your community understand how to securely report security vulnerabilities for your project.\": \"幫助您的社區瞭解如何安全地報告專案的安全漏洞。\",\n\n        // Action 倉庫 右側欄\n            \"Suggested workflows\": \"建議的工作流程\",\n            \"Based on your tech stack\": \"基於您的技術堆棧\",\n            \"Set up\": \"設立\",\n            \"Configure\": \"設置\",\n            \"More workflows\": \"更多工作流程\",\n            \"Dismiss suggestions\": \"隱藏建議\",\n\n        // 倉庫複刻中...\n            // [/Forking ([^ ]+)/, \"複刻 $1 中\"], // 複刻中...\n            \"Generating your repository...\": \"正在創建您的倉庫…\",\n            \"It should only take a few seconds.\": \"應該只需要幾秒鐘的時間。\",\n            \"Refresh\": \"刷新\",\n\n        // 初始化空倉庫 /<user-name>/<repo-name>/\n            \"Start coding with Codespaces\": \"使用程式碼空間開始編程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件並在安全、可配置和專用的開發環境中開始編碼。\",\n                \"Create a codespace\": \"創建程式碼空間\",\n            // 組織倉庫\n            \"Set up GitHub Copilot\": \"設置 GitHub Copilot\",\n                \"Use GitHub's AI pair programmer to autocomplete suggestions as you code.\": \"使用 GitHub 的 AI 配對程式員在您編碼時自動完成建議。\",\n                \"Get started with GitHub Copilot\": \"開始使用 GitHub Copilot\",\n            \"Add collaborators to this repository\": \"將協作者添加到此倉庫\",\n                \"Search for people using their GitHub username or email address.\": \"使用 GitHub 用戶名或電子郵件地址搜索人員。\",\n                \"Invite collaborators\": \"邀請協作者\",\n            \"Quick setup\": \"快速安裝\",\n            \"— if you’ve done this kind of thing before\": \"- 如果您以前做過這樣的事\",\n            \"Set up in Desktop\": \"安裝到 GitHub Desktop\",\n            \"Get started by\": \"通過\",\n            \"creating a new file\": \"創建一個新文件\",\n            \"uploading an existing file\": \"上傳一個現有的文件\",\n            \". We recommend every repository include a\": \"來開始。我們推薦每個倉庫都包括\",\n            \", and\": \"，和\",\n            \"…or create a new repository on the command line\": \"…或在命令行上創建一個新的倉庫\",\n            \"…or push an existing repository from the command line\": \"…或從命令行中推送現有的倉庫\",\n            \"…or import code from another repository\": \"…或從另一個倉庫導入程式碼\",\n            \"You can initialize this repository with code from a Subversion, Mercurial, or TFS project.\": \"您可以初始化此倉庫從一個 Subversion，Mercurial 或 TFS 專案導入。\",\n            \"Import code\": \"導入程式碼\",\n            \"ProTip!\": \"專業提示！\",\n                \"Use the URL for this page when adding GitHub as a remote.\": \"將 GitHub 添加為遠程時，請使用此頁面上的 URL。\",\n\n        // 文件管理器 /<user-name>/<repo-name>/tree/<branch>/<文件夾路徑>/\n          // /<user-name>/<repo-name>/?search=1\n          // /<user-name>/<repo-name>/tree/?search=1\n            // 文件樹側邊欄\n                \"Expand file tree\": \"展開文件樹\",\n                \"Collapse file tree\": \"摺疊文件樹\",\n                \"Search this repository\": \"搜索此倉庫\",\n\n                // 搜索框\n                    \"Go to file\": \"轉到文件\",\n                        \"No matches found\": \"未找到匹配項\",\n                        \"Go to folder\": \"轉到文件夾\",\n                        \"See all results\": \"查看所有結果\",\n\n            \"Add file\": \"添加文件\",\n                // 添加文件 下拉菜單\n                \"Create new file\": \"新建文件\",\n                \"Upload files\": \"上傳文件\",\n\n            // 新三個點\n                \"Copy path\": \"複製路徑\",\n                \"Copy permalink\": \"複製永久鏈接\",\n                \"Delete directory\": \"刪除文件夾\",\n                \"View options\": \"查看選項\",\n                    \"Center content\": \"核心內容\",\n\n            \"Copied path!\": \"✅ 路徑已複製！\",\n\n            \"History\": \"歷史\",\n\n            \"Top\": \"頂部\",\n            \"Jump to file\": \"跳轉到文件\",\n\n            \"Name\": \"文件名\",\n            \"Last commit message\": \"最後提交消息\",\n            \"Last commit date\": \"最後提交時間\",\n\n            // 編輯按鈕\n            \"Edit README\": \"編輯 README\", // md 文件\n\n            // 超過 1000 個文件截斷提示\n            \"Sorry, we had to truncate this directory to\": \"抱歉，我們已將該目錄截斷至\",\n                \"files.\": \"文件。\",\n                \"entries were\": \"條目\",\n                \"omitted from the list. Latest commit info may be omitted.\": \"被省略。最新提交信息可能會省略。\",\n\n        // 文件管理器 - 議題模板 /<user-name>/<repo-name>/tree/<branch>/.github/ISSUE_TEMPLATE\n            \"Customize the issue creation experience with a\": \"自定義議題的創建模板使用一個\",\n            \"file.\": \"文件。\",\n            \"Learn more about configuring a template chooser.\": \"瞭解更多關於配置模板選擇器的信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        // 個人倉庫 貢獻和同步複刻操作後 信息提示條\n        [/Successfully fetched and fast-forwarded from upstream ([^ ]+)\\./, \"成功從上游 $1 中獲取並快速轉發。\"],\n        [/Successfully discarded changes and synchronized branch to match upstream ([^ ]+)\\./, \"成功丟棄更改，並將分支與上游 $1 保持同步。\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/commits by (.+)/, \"由 $1 提交\"],\n        [/Signed-off-by: (.*)/, \"簽字人：$1\"], // TODO: 修復該詞條翻譯不生效問題\n        [/Branch ([^ ]+) was renamed to ([^ ]+)./, \"分支 $1 已更名為 $2。\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保護\"], // 倉庫主頁 分支保護\n        [/([\\d,]+) Commits?/, \"$1 次提交\"], // 新版倉庫概述\n        [/Create a codespace on (.+)/, \"在 $1 上創建程式碼空間\"], // 倉庫主頁 創建程式碼空間\n        [/Create codespace on (.+)/, \"在 $1 上創建程式碼空間\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"程式碼空間 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"程式碼空間 “$1” 已刪除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您確定要刪除 $1 嗎？\"],\n        [/Sponsor ([^ ]+)?/, \"贊助 $1\"], // 贊助按鈕 對話框 標題\n        [/\\+ ([\\d,]+) releases?/, \"+ $1 個發行版\"], // 倉庫首頁右側欄 發行版\n        [/\\+ ([\\d,]+) packages?/, \"+ $1 個軟體包\"], // 倉庫首頁右側欄 軟體包\n        [/\\+ ([\\d,]+) contributors?/, \"+ $1 位貢獻者\"], // 倉庫首頁右側欄 貢獻者\n        [/\\+ ([\\d,]+) environments?/, \"+ $1 個環境\"], // 倉庫首頁右側欄 環境\n        [/\\+ ([\\d,]+) deployments?/, \"+ $1 個部署\"], // 倉庫首頁右側欄 部署\n        // 同步複刻\n        [/Update branch to keep this branch up-to-date by syncing (\\d+) commits? from the upstream repository./, \"通過從上游倉庫同步 $1 個提交來更新分支，以使該分支保持最新。\"],\n        [/This branch is not behind the upstream ([^ ]+)/, \"該分支不落後與上游 $1\"],\n        [/Discard (\\d+) commits? to make this branch match the upstream repository. (\\d+) commits? will be removed from this branch./, \"丟棄 $1 個提交，以使本分支與上游倉庫一致。$2 個提交將從本分支中刪除。\"],\n        [/Discard (\\d+) commits?/, \"丟棄 $1 個提交\"],\n        [/Successfully fetched and merged from upstream ([^ ]+)/, \"成功從上游 $1 獲取並合併。\"],\n        // 貢獻\n        [/This branch is not ahead of the upstream ([^ ]+)\\./, \"該分支並不領先上游 $1。\"],\n        [/This branch is (\\d+) commits? ahead of ([^ ]+)\\./, \"該分支領先上游 $2 $1個提交。\"],\n        // 個人倉庫當前分支狀態\n        [/This branch is up to date with ([^ ]+)\\./, \"該分支與上游 $1 保持同步。\"],\n        [/(\\d+) commits? ahead/, \"領先 $1 個提交\"],\n        [/(\\d+) commits? behind/, \"落後 $1 個提交\"],\n        [/(\\d+) commits?/, \"$1 個提交\"], // 新版倉庫概述\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的電腦。\"],\n        [/Forking ([^ ]+)/, \"複刻 $1 中\"], // 複刻中...\n        [/Fork your own copy of ([^ ]+)/, \"複刻成您自己的 $1 副本\"], // 複刻按鈕提示\n        [/will appear on ([^ ]+)'s member profile, visible only to organization members./, \"將出現在 $1 的成員資料中，僅對組織成員可見。\"],\n        [/and ([^ ]+) were installed on this repository/, \"和 $1 已安裝到此倉庫\"], // 頂部提示：市場應用（如果有）\n        [/([^ ]+) and (\\d+) other licenses found/, function(all, lic, num){\n            var licKey = {'Unknown': '未知'};\n            return licKey[lic] + '和另外' + num + '個許可證';\n        }],\n        [/First (\\d+) files? shown./, \"顯示前 $1 個文件。\"],\n        [/Copy \\\"(.+)\\\" to clipboard/, \"複製“$1”到剪切板\"],\n        // 程式碼 -> 程式碼空間\n        [/(\\d+) changes?/, \"$1 個更改\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您確定要刪除嗎？\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n            [/(.+) at (.+)/, \"$1 在分支 $2\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/tree\"] = I18N[\"zh-TW\"][\"repository\"];\n\nI18N[\"zh-TW\"][\"repository/milestones\"] = { // 倉庫 - 里程碑頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 里程碑頁面 /<user-name>/<repo-name>/milestones\n            \"Labels\": \"標籤\",\n            \"Milestones\": \"里程碑\",\n\n            \"You haven’t created any Milestones.\": \"您尚未創建任何里程碑。\",\n            \"Use Milestones to create collections of Issues and Pull Requests for a particular release or project.\": \"使用里程碑為特定版本或專案創建議題和拉取請求的集合。\",\n\n            // 組織 倉庫 里程碑\n            \"No Milestones found!\": \"沒有發現里程碑!\",\n            \"If this project had milestones, we’d show you them here. Promise!\": \"如果該專案有里程碑，我們會在此處向您展示。\",\n\n            \"Create a Milestone\": \"創建里程碑\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序\",\n                \"Recently updated\": \"最近更新\",\n                \"Furthest due date\": \"最遲到期日\",\n                \"Closest due date\": \"最近到期日\",\n                \"Least complete\": \"最不完整\",\n                \"Most complete\": \"最完整\",\n                \"Alphabetical\": \"按字母順序\",\n                \"Reverse alphabetical\": \"按字母倒序\",\n                \"Most issues\": \"最多的議題\",\n                \"Fewest issues\": \"最少的議題\",\n\n            \"No due date\": \"沒有截止日期\",\n            \"issues closed\": \"議題關閉\",\n            // [/Due by (.*)/, \"截止日期 $1\"], // 里程碑截止日期\n            \"Last updated\": \"最後更新\",\n            \"(more)\": \"（更多）\",\n            // 完成進度條\n            \"complete\": \"已完成\",\n            \"open\": \"打開\",\n            \"closed\": \"關閉\",\n\n        // 新建里程碑頁面 /<user-name>/<repo-name>/milestones/new\n            \"New milestone\": \"新建里程牌\",\n                \"Create a new milestone to help organize your issues and pull requests. Learn more about\": \"創建一個新的里程碑來幫助組織您的議題和拉取請求。瞭解更多關於\",\n                \"milestones and issues\": \"里程碑和議題\",\n            \"Title\": \"標題\",\n            \"Due date (optional)\": \"截止日期（可選）\",\n            \"Description\": \"描述\",\n            \"Create milestone\": \"創建里程碑\",\n\n        // 單個里程碑頁 /<user-name>/<repo-name>/milestones\n            \"opened\": \"打開於\",\n            \"was closed\": \"關閉於\",\n\n            \"There are no open issues in this milestone\": \"此里程碑沒有打開議題\",\n            \"Add issues to milestones to help organize your work for a particular release or project. Find and add\": \"將議題添加到里程碑，有助於為特定的版本或專案組織您的工作。在此倉庫中查找並添加\",\n            \"issues with no milestones\": \"沒有里程碑的議題。\",\n            \"in this repo.\": \" \",\n\n            \"There are no closed issues in this milestone\": \"此里程碑沒有已關閉議題\",\n            \"Issues will automatically be moved here when they are closed.\": \"議題在關閉後會自動移到這裡。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Open/, \"$1 打開\"],\n        [/([\\d,]+) Closed/, \"$1 已關閉\"],\n        [/(\\d+\\%) completed/, \"$1 已完成\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/milestone\"] = I18N[\"zh-TW\"][\"repository/milestones\"]; // 倉庫 - 某里程碑\n\nI18N[\"zh-TW\"][\"repository/pull_issue_public\"] = { // 倉庫 - 議題和拉取請求頁面公共部分\n    \"static\": { // 靜態翻譯\n        // pull 與 request 公共詞條\n            \"Filters\": \"篩選\",\n                // 篩選下拉菜單\n                \"Filter Issues\": \"篩選議題\",\n                \"Open issues and pull requests\": \"打開的議題和拉取請求\",\n                \"Your issues\": \"您提出的議題\",\n                \"Your pull requests\": \"您的拉取請求\",\n                \"Everything assigned to you\": \"任何分配給您的\",\n                \"Everything mentioning you\": \"任何提及您的\",\n                \"View advanced search syntax\": \"查看高級搜索語法\",\n\n            \"Search all issues\": \"搜索所有議題\",\n            \"Clear current search query, filters, and sorts\": \"清除當前的搜索查詢、篩選器和排序方式\",\n\n            \"ProTip!\": \"專業提示！\",\n                \"Find everything you created by searching\": \"通過搜索查找您創建的所有內容：\",\n                \"Exclude your own issues with\": \"排除您自己創建的議題：\",\n                \"Mix and match filters to narrow down what you’re looking for.\": \"通過混合和匹配篩選器以縮小查找範圍。\",\n                \"Exclude everything labeled\": \"排除所有標有\",\n                \"with\": \"標籤的內容，使用：\",\n                \"Follow long discussions with\": \"要跟進長討論，請使用：\",\n                \"on any issue or pull request to go back to the pull request listing page.\": \"在任何議題或拉取請求上使用以返回拉取請求列表頁面。\",\n                \"Filter pull requests by the default branch with\": \"通過默認分支過濾拉取請求：\",\n                \"to see everything that’s not assigned.\": \"以查看所有未分配的內容。\",\n                \"Find all pull requests that aren't related to any open issues with\": \"查找所有未關聯任何打開議題的拉取請求，使用：\",\n                \"Add comments to specific lines under\": \"在以下特定行添加註釋：\",\n                \"will show everything without a milestone.\": \"將顯示所有沒有里程碑的內容。\",\n                \"Updated in the last three days:\": \"最近 3 天更新：\",\n                \"Notify someone on an issue with a mention, like:\": \"在議題中通過 @ 提及通知某人，例如：\",\n                \"Adding\": \"添加\",\n                \"will show everything without a label.\": \"將顯示所有無標籤的內容。\",\n                \"on any issue or pull request to go back to the issue listing page.\": \"在任何議題或拉取請求上使用以返回議題列表頁面。\",\n                \"Click a checkbox on the left to edit multiple issues at once.\": \"單擊左側複選框即可同時編輯多個議題。\",\n                // [/Ears burning? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的內容，請使用\"]\n\n\n            \"Labels\": \"標籤\",\n                \"No labels\": \"無標籤\",\n            \"Milestones\": \"里程碑\",\n            \"New issue\": \"創建議題\",\n            \"New\": \"創建\", // 小屏\n\n            // 篩選工作條\n            // \"Author\": \"作者\",\n                \"Filter by author\": \"按用戶篩選\",\n                \"Filter users\": \"篩選用戶名\",\n\n            \"Label\": \"標籤\",\n                \"Filter by label\": \"按標籤篩選\",\n                \"Filter labels\": \"篩選標籤\",\n                \"Unlabeled\": \"無標籤\",\n                \"to exclude labels\": \"排除標籤\",\n                \"for logical OR\": \"表示邏輯“或”\",\n\n            // \"Projects\": \"專案\",\n                \"Filter by project\": \"按專案篩選\",\n                \"Filter projects\": \"篩選專案\",\n                \"Repository\": \"倉庫\",\n                \"Organization\": \"組織\",\n                \"No projects found. Sorry about that.\": \"很抱歉，未找到任何專案。\",\n\n            // \"Milestones\": \"里程碑\",\n                \"Filter by milestone\": \"按里程碑篩選\",\n                \"Filter milestones\": \"篩選里程碑\",\n                \"Issues with no milestone\": \"無里程碑的議題\",\n                \"Pull requests with no milestone\": \"無里程碑的拉取請求\", // pulls\n                \"Nothing to show\": \"暫無\",\n\n            \"Assignee\": \"受理人\",\n                \"Filter by who’s assigned\": \"按受理人篩選\",\n                \"Filter assignees\": \"篩選受理人\",\n                \"Assigned to nobody\": \"無受理人\",\n                // [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 審查請求\"],\n                \"Requested changes must be addressed to merge this pull request.\": \"要合併這個拉取請求，必須先解決所要求的更改。\",\n                \"No one -\": \"無人 -\",\n                    \"Assign yourself\": \"分配給自己\",\n\n            \"Relationships\": \"關係\",\n                \"Parent issue\": \"父議題\",\n\n            \"Sort\": \"排序\",\n                \"Sort by\": \"排序\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Most commented\": \"最多評論\",\n                \"Least commented\": \"最少評論\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\", //?\n                \"Most reactions\": \"多數反應\",\n                \"Best match\": \"最佳匹配\",\n\n            // 選中模式\n                \"selected\": \"選中\",\n                \"Mark as\": \"標記為\",\n                \"Apply labels\": \"應用標籤\",\n                \"Assign\": \"分配\",\n                    \"Assign someone\": \"分配給某人\",\n                    \"Assign to nobody\": \"分配給任何人\",\n\n            // 篩選結果\n            \"No results matched your search.\": \"沒有與您的搜索匹配的結果。\",\n            \"You could search\": \"您可以搜索\",\n            \"all of GitHub\": \"所有 GitHub\",\n            \"or try an\": \"或者嘗試\",\n            \"advanced search\": \"高級搜索\",\n\n            // 狀態詞\n            \"was merged\": \"合併於\",\n            \"was closed\": \"關閉於\",\n            \"closed this\": \"關閉了這個\",\n            \"reopened this\": \"重新打開了這個\",\n            \"Approved\": \"已批准\",\n            \"Review required\": \"需要審查\", // 拉取請求 頁面狀態詞\n                \"Review required before merging\": \"合併前需要審查\",\n            \"outdated\": \"陳舊的\",\n            \"Pending\": \"待定\",\n            \"Draft\": \"草案\",\n            \"deployed\": \"部署\",\n                \"View deployment\": \"查看部署\",\n            \"This was referenced\": \"被引用於\",\n            \"locked as\": \"鎖定為\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"並限制與協作者對話\",\n            \"assigned\": \"分配給\",\n            \"labels\": \"標籤\",\n\n            // 圖標浮窗\n            \"Open issue\": \"議題已打開\",\n            \"Closed issue\": \"議題已完成\",\n            \"Closed as not planned issue\": \"議題已關閉因未計劃\",\n            \"Open Pull Request\": \"拉取請求已打開\",\n            \"Draft Pull Request\": \"拉取請求草案\",\n            \"Merged Pull Request\": \"拉取請求已合併\",\n            \"Closed Pull Request\": \"拉取請求已關閉\",\n\n            // [/(\\d+) linked pull requests?/, \"鏈接 $1 個拉取請求\"],\n\n        // 某個拉取請求和某個議題 公共詞條\n            // 頂部提醒\n                \"You’ve been unsubscribed from this thread.\": \"您已退訂該主題。\",\n\n            // 右側欄\n                \"Reviewers\": \"審查者\",\n                    \"No reviews\": \"無人審查\",\n                    \"Loading suggestions…\": \"載入推薦…\",\n                    // [/([^ ]+) left review comments/, \"$1 發表了審查意見\"],\n                    // [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合併此拉取請求至少需要 $1 次批准審核。\"], // 具體的拉取請求 審查者\n                    \"No reviews—at least 1 approving review is required.\": \"未經審查—至少需要 1 次批准審查。\",\n                    \"Re-request review\": \"重新請求審核\",\n                    \"Still in progress?\": \"仍在進行中嗎？\",\n                    // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的審查請求\"]\n                    \"Learn about draft PRs\": \"瞭解拉取請求草案\",\n                        \"Try draft pull requests\": \"嘗試拉取請求草案\",\n                        \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打開正在進行的拉取請求，無需請求正式審核，也不必冒不必要的合併風險。當您準備好進行程式碼審核時，您可以將拉取請求草案標記為已準備好審核，這將請求任何程式碼所有者進行審核。\",\n                        \"Ask admin for access\": \"向管理員請求權限\",\n                    \"Convert to draft\": \"設置為草案\",\n                        // 設置草案對話框\n                            \"Convert this pull request to draft?\": \"將此拉取請求轉換為草案？\", // 拉取請求\n                            \"People who are already subscribed will not be unsubscribed.\": \"已訂閱的用戶將不會被取消訂閱。\",\n                    // 下拉\n                    \"Request up to 15 reviewers\": \"最多請求 15 個審查者\",\n                    // [/([^ ]+) approved these changes/, \"$1 批准這些更改\"], // 具體的拉取請求 審查者\n                    \"Request\": \"請求\",\n                    // [/Request review from ([^ ]+)/, \"請求 $1 審查\"], // 具體的拉取請求 審查者\n                    \"This pull request is waiting on your review.\": \"此拉取請求正在等待您的審核。\",\n\n                \"Assignees\": \"受理人\",\n                    \"No one assigned\": \"無人受理\",\n                    \"No one—\": \"無人 - \",\n                    \"assign yourself\": \" 受理自己\",\n                    // 下拉框\n                    \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 議題\n                    \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取請求\n                    \"Clear assignees\": \"清除受理人\",\n                    \"Type or choose a user\": \"輸入或選擇用戶\",\n                    \"Suggestions\": \"建議\",\n\n                // \"Labels\": \"標籤\",\n                    \"None yet\": \"暫無\",\n                    // 下拉\n                    \"bug\": \"BUG\",\n                        \"Something isn't working\": \"有些東西不工作\",\n                    \"dependencies\": \"依賴性\",\n                        \"Pull requests that update a dependency file\": \"更新一個依賴文件的拉取請求\",\n                    \"documentation\": \"文檔\",\n                        \"Improvements or additions to documentation\": \"文檔的改進或補充\",\n                    \"duplicate\": \"重複\",\n                        \"This issue or pull request already exists\": \"這個議題或拉取請求已經存在\",\n                    \"enhancement\": \"增強\",\n                        \"New feature or request\": \"新功能或請求\",\n                    \"good first issue\": \"好的首發議題\",\n                        \"Good for newcomers\": \"適合新人\",\n                    \"help wanted\": \"需要幫助\",\n                        \"Extra attention is needed\": \"需要特別關注\",\n                    \"invalid\": \"無效\",\n                        \"This doesn't seem right\": \"這似乎不對\",\n                    \"question\": \"問題\",\n                        \"Further information is requested\": \"要求提供更多信息\",\n                    \"wontfix\": \"不會修復\",\n                        \"This will not be worked on\": \"這將不會被處理\",\n\n                    \"Apply labels to this issue\": \"應用標籤\", // 議題\n                    \"Apply labels to this pull request\": \"應用標籤\", // 拉取請求\n                    \"Edit labels\": \"編輯標籤\",\n\n                    // 拉取請求\n                    \"dependencies\": \"依賴項\",\n                        \"Pull requests that update a dependency file\": \"更新依賴文件的拉取請求\",\n\n                // 專案\n                    \"Recent\": \"最近\",\n                    \"User\": \"用戶\",\n                    \"No projects\": \"無專案\",\n\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"無里程碑\",\n                    //下拉\n                    \"Set milestone\": \"設置里程碑\",\n                        \"Nothing to show\": \"暫無\",\n\n                \"Development\": \"進展\",\n                    \"Successfully merging this pull request may close these issues.\": \"成功合併此拉取請求可能會關閉這些議題。\",\n                    \"Successfully merging a pull request may close this issue.\": \"成功合併一個拉取請求可能會關閉此議題。\",\n                    // 下拉\n                    \"Link an issue from this repository\": \"關聯來自此倉庫的議題\",\n                    \"Filter\": \"篩選\",\n                    \"No results\": \"無結果\",\n                    \"Open in Workspace\": \"在工作區打開\",\n\n                // \"Notifications\": \"通知類型\",\n                \"Customize\": \"自定義\",\n                \"Subscribe\": \"訂閱\",\n                // \"Unsubscribe\": \"取消訂閱\",\n                \"You’re not receiving notifications from this thread.\": \"您沒有收到來自該話題的通知。\",\n                \"You're not receiving notifications from this thread.\": \"您沒有收到來自該話題的通知。\",\n                \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因為您訂閱了該話題。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因為您訂閱了該話題。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因為您正在關注此倉庫。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因為您提出了該話題。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因為有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因為您發表了評論。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因為您正在關注此倉庫上的拉取請求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因為您正在關注此倉庫上的議題。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因為您修改了打開/關閉狀態。\",\n                \"You’re receiving notifications because you were assigned.\": \"您收到通知是因為您受理了它。\",\n                \"You’re ignoring this repository.\": \"您忽略了這個倉庫。\",\n\n                    // 通知設置對話框\n                    \"Notification settings\": \"通知設置\",\n                    \"Notifications settings\": \"通知設置\", // 新版議題頁面\n                    \"Not subscribed\": \"未訂閱\",\n                        \"Only receive notifications from this pull request when you have participated or have been @mentioned.\": \"只有在您參與或被 @您 時才會收到來自此拉取請求的通知。\",\n                        \"Only receive notifications from this issue when you have participated or have been @mentioned.\": \"只有在您參與或被 @您 時才會收到來自此議題的通知。\", // 議題頁面\n                    \"Subscribed\": \"訂閱\",\n                        \"Receive all notifications from this pull request.\": \"接收來自此拉取請求的所有通知。\",\n                        \"Receive all notifications from this issue.\": \"接收來自此議題的所有通知。\",  // 議題頁面\n                    \"Custom\": \"自定義\",\n                        \"You will only be notified for events selected from the list below. If you participate or are @mentioned you will be subscribed.\": \"您只會收到從以下列表中選擇的事件的通知。如果您參與或 @您 時，將自動訂閱。\",\n                        \"You will only be notified for the events selected from the list below.\": \"您只會收到從以下列表中選擇的事件的通知。\",\n                        \"If you participate or are @mentioned you will be subscribed.\": \"如果您參與或 @您 時，將自動訂閱。\",\n                    // 議題\n                        \"Receive a notification when this issue has been closed.\": \"當議題被關閉時，收到通知。\",\n                        \"Reopened\": \"重新打開\",\n                            \"Receive a notification when this issue has been reopened.\": \"當議題被重新打開時，收到通知。\",\n                    // 拉取請求\n                        \"Receive a notification when this pull request has been merged.\": \"當拉取請求被合併時，收到通知。\",\n                        \"Receive a notification when this pull request has been closed.\": \"當拉取請求被關閉時，收到通知。\",\n                        \"Receive a notification when this pull request has been reopened.\": \"當拉取請求被重新打開時，收到通知。\",\n\n                \"Lock conversation\": \"鎖定對話\",\n                    \"Lock conversation on this issue\": \"鎖定此議題的對話\",\n                    \"Lock conversation on this pull request\": \"鎖定此拉取請求的對話\",\n                    \"Other users\": \"其他用戶\",\n                    \"can’t add new comments\": \"無法添加新評論\",\n                    \"to this issue.\": \"到該議題。\",\n                    \"to this pull request.\": \"到該拉取請求。\",\n                    \"You and other collaborators\": \"您和其他協作者\",\n                    \"with access\": \"有權限訪問\",\n                    \"to this repository\": \"該倉庫\",\n                    \"can still leave comments\": \"仍然可以發表評論\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                    \"You can always unlock this issue again in the future.\": \"您今後仍可以隨時再次解鎖此議題。\",\n                    \"You can always unlock this pull request again in the future.\": \"您今後仍可以隨時再次解鎖此拉取請求。\",\n                    \"Other users can't add new comments to this issue. You and other members of teams with\": \"其他用戶無法在此議題下添加新評論。您及\",\n                    \"write access\": \"有權訪問\",\n                    \"to this repository can still leave comments that others can see. You can always unlock this issue again in the future.\": \"該倉庫的團隊成員仍可發表其他用戶可見的評論。您隨時可以在未來重新解鎖此議題。\",\n                    \"Reason for locking\": \"鎖定原因\",\n                    \"Choose a reason\": \"選擇原因\",\n                    \"Reason\": \"原因\",\n                        \"No reason\": \"無\",\n                        \"Off-topic\": \"偏離主題\",\n                        \"Too heated\": \"爭論不休\",\n                        \"Resolved\": \"已解決\",\n                        \"Spam\": \"垃圾信息\",\n                    \"Optionally, choose a reason for locking that others can see. Learn more about when it’s appropriate to\": \"或者，選擇其他人可以看到的鎖定原因。詳細瞭解何時適合\",\n                    \"lock conversations\": \"鎖定對話\",\n                    // \"Lock conversation on this issue\": \"鎖定對話\",\n                \"Unlock conversation\": \"解鎖對話\",\n                    \"Unlock conversation on this issue\": \"解鎖此議題的對話\",\n                    \"Unlock conversation on this pull request\": \"解鎖此拉取請求的對話\",\n                    \"Everyone\": \"任何人\",\n                    \"will be able to comment on this issue once more.\": \"將能夠再次對這個議題發表評論。\",\n                    \"will be able to comment on this pull request once more.\": \"將能夠再次對這個拉取請求發表評論。\",\n                    \"You can always lock this pull request again in the future.\": \"您今後仍可以隨時再次鎖定此拉取請求。\",\n                    \"You can always lock this issue again in the future.\": \"您今後仍可以隨時再次鎖定此議題。\",\n                    \"Everyone will be able to comment on this issue once more. You can always lock this issue again in the future.\": \"任何人將能夠再次對這個議題發表評論。您今後仍可以隨時再次鎖定此議題。\",\n\n                // 隱藏評論對話框\n                \"The reason will be displayed to describe this comment to others.\": \"將顯示原因，以便向其他人描述此評論。\",\n                \"Learn more about hiding comments\": \"瞭解更多關於隱藏評論的信息\",\n                \"comment\": \"評論\",\n                \"Unhide\": \"取消隱藏\",\n                \"Choose a reason for hiding this comment\": \"選擇隱藏此評論原因\",\n                \"Choose a reason\": \"選擇原因\",\n                    \"Abuse\": \"濫用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏離主題\",\n                    \"Outdated\": \"過時\",\n                    \"Duplicate\": \"重複\",\n                    \"Resolved\": \"已解決\",\n\n                \"This comment has been minimized.\": \"此評論已最小化。\",\n                    \"Show comment\": \"顯示評論\",\n                    \"Hide comment\": \"隱藏評論\",\n\n            \"Remember, contributions to this repository should follow our\": \"請記住，對該倉庫的貢獻應遵循我們的\",\n            \"GitHub Community Guidelines\": \"GitHub 社區準則\",\n            \"Remember, contributions to this repository should follow its\": \"請記住，對該倉庫的貢獻應遵循\",\n            \"contributing guidelines\": \"貢獻指南\",\n            \"security policy\": \"安全政策\",\n            \"code of conduct\": \"行為準則\",\n            \"contributing guidelines\": \"貢獻準則\",\n\n            // 被鎖定\n                \"This conversation has been locked as\": \"此對話已鎖定為\",\n                    \"and limited to collaborators.\": \"，並限制與協作者對話。\",\n                \"You can't perform this action at this time.\": \"您此時不能操作。\",\n\n            // 底部贊助\n                \"Show your support for\": \"通過贊助來表達您對\",\n                \"by sponsoring them.\": \"的支持。\",\n                \"Sponsor\": \"贊助\",\n\n            // 底部提示欄 (未登錄)\n                \"Sign up for free\": \"免費註冊\",\n                \"to subscribe to this conversation on GitHub\": \"在 GitHub 上訂閱這個討論\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的這個討論\",\n                \". Already have an account?\": \"。已經有賬戶？\",\n                \"Sign in to comment\": \"登錄後發表評論\",\n    },\n    \"regexp\": [ // 正則翻譯\n        // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有寫入權限的審查者至少需要 $1 次批准審查。\"],\n        [/(\\+\\d+) more reviewers?/, \"$1 個審查者\"],\n        [/(\\d+) linked issues?/, \"鏈接 $1 個議題\"],\n        [/Assigned to (.*)/, \"分配給 $1\"],\n        [/Edited (\\d+) times?/, \"編輯 $1 次\"],\n        [/Open issues created by ([^ ]+)/, \"$1 創建議題\"],\n        [/issues opened by ([^ ]+)/, \"$1 打開議題\"],\n        [/Open pull requests created by ([^ ]+)/, \"$1 創建拉取請求\"],\n        [/pull requests opened by ([^ ]+)/, \"$1 打開拉取請求\"],\n        [/(\\d+) hidden conversations/, \"$1 條隱藏對話\"],\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵要炸了？如果只需要查看提及了 $1 的內容，請使用\"]\n    ]\n};\n\nI18N[\"zh-TW\"][\"repository/issues\"] = { // 倉庫 - 議題頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 倉庫 --> 議題 標籤卡/<user-name>/<repo-name>/issues\n        // /<user-name>/<repo-name>/labels/<label-name>\n            // 歡迎信息\n            \"Welcome to issues!\": \"歡迎關注議題！\",\n            \"Issues are used to track todos, bugs, feature requests, and more. As issues are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"議題用於跟蹤待辦事項、錯誤、功能請求等。創建議題後，它們將出現在可搜索和可篩選的列表中。要開始，您應該\",\n            \"create an issue\": \"創建議題\",\n                \"Open issue creation in fullscreen\": \"全屏\", // 有議題模板時\n\n            \"Label issues and pull requests for new contributors\": \"標記新貢獻者的議題和拉取請求\",\n            \"Now, GitHub will help potential first-time contributors\": \"現在，GitHub 將幫助潛在的首次貢獻者\",\n            \"discover issues\": \"探索議題\",\n            \"labeled with\": \"標記為\",\n                \"Completed\": \"已完成\",\n            \"Project\": \"專案\",\n\n            \"Clear filter\": \"清除篩選\",\n            \"Filter authors\": \"篩選作者\",\n            \"Filter by assignees\": \"篩選受理人\",\n                \"No assignees\": \"無人受理\",\n            // 新版內容\n                // 頂部\n                    \"👋 Want to contribute to\": \"👋 想做貢獻給\",\n                // 排序\n                    \"Created on\": \"創建時間\",\n                    \"Comments\": \"評論\",\n                    \"Total comments\": \"評論數\",\n                    \"Reactions\": \"看法數\",\n                    \"Total reactions\": \"總看法數\",\n                    \"Thumbs up\": \"點贊\",\n                    \"Thumbs down\": \"點踩\",\n                    \"Rocket\": \"火箭\",\n                    \"Hooray\": \"歡呼\",\n                    \"Eyes\": \"關注\",\n                    \"Heart\": \"比心\",\n                    \"Laugh\": \"大笑\",\n                    \"Confused\": \"拒絕\",\n                    \"Ascending\": \"遞增\",\n                    \"Descending\": \"遞減\",\n\n                \"Types\": \"類型\",\n                \"Issue type\": \"議題類型\",\n                    \"Filter by issue type\": \"按議題類型篩選\",\n                    \"Select issue type\": \"選擇議題類型\",\n                    \"Filter types\": \"篩選類型\",\n                        \"No type\": \"無類型\",\n                            \"Issues with no type\": \"無類型議題\",\n                            \"No issue type\": \"無議題類型\",\n                // 搜索\n                \"Try adjusting your search filters.\": \"嘗試調整搜索篩選器。\",\n\n            // [/Want to contribute to ([^ ]+)/, \"想為 $1 做貢獻嗎？\"], /issues\n            \"If you have a bug or an idea, read the\": \"如果您發現一個錯誤或有任何想法，請閱讀\",\n            \"before opening an issue.\": \"，在打開議題之前。\",\n            \"If you have a bug or an idea, browse the open issues before opening a new one. You can also take a look at the\": \"如果您發現一個錯誤或有任何想法，請在打開新議題之前瀏覽未解決的議題。您也可以看看\",\n            \"Open Source Guide\": \"開源指南\",\n                \"Learn about Open Source and how to contribute\": \"瞭解開源和如何貢獻\",\n            \"If you're ready to tackle some open issues,\": \"如果您準備好解決一些未解決的議題，\",\n            \"we've collected some good first issues for you\": \"我們已為您收集了一些好的首發議題\",\n            \"we've collected some good first issues for you.\": \"我們已為您收集了一些好的首發議題。\", // 新版議題頁\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"僅對該倉庫不在提示\",\n                \"Dismiss for all repositories\": \"對所有倉庫均不在提示\",\n\n\n            \"There aren’t any open issues.\": \"暫無開放的議題。\",\n\n            // 狀態詞\n            \"Merged\": \"已合併\",\n            // \"open\": \"打開\",\n            // \"Opened\": \"打開\",\n            \"opened\": \"打開於\",\n            // \"closed\": \"已關閉\",\n            // 新版\n                \"Closed as not planned\": \"關閉因未計劃\",\n                \"Closed as duplicate\": \"關閉因重複\",\n                \"of\": \"於\",\n                \"Not planned\": \"未計劃\",\n\n            // 父級議題\n            \"Parent:\": \"父級：\",\n            // 子級議題\n            \"Create sub-issue\": \"創建子議題\",\n                //\"Create sub-issue\": \"創建子議題\",\n                    // 窗口\n                        \"Create new issue\": \"新建議題\",\n                            \"Select an item\": \"選擇一項\",\n                                \"Select repository\": \"選擇倉庫\",\n                            \"Templates and forms\": \"模板和表單\",\n                                // 空白議題\n                                    \"Create a new issue from scratch\": \"從頭開始創建新議題\",\n                \"Add existing issue\": \"添加現有議題\",\n                    \"Search issues\": \"搜索議題\",\n                        \"Group selected\": \"分組選擇\",\n\n\n                \"Blank issue\": \"空白議題\",\n                    \"in\": \"在\",\n                \"Type your description here…\": \"在此鍵入介紹…\",\n                \"Create more sub-issues\": \"創建更多子議題\",\n\n                // 警告\n                    \"Are you sure?\": \"您確定嗎？\",\n                        \"Sub-issues are limited to one parent. Confirm you want to proceed with this change.\": \"子議題僅允許關聯一個父議題。請確認是否要繼續進行此更改？\",\n                        \"Change parent issue\": \"更改父議題\",\n\n            \"Sub-issues\": \"子議題\",\n                \"Collapse Sub-issues\": \"摺疊子議題\",\n                \"Expand Sub-issues\": \"展開子議題\",\n\n                \"More list item action bar\": \"更多操作\",\n                    \"Remove sub-issue\": \"移除子議題\",\n\n            \"Invalid value\": \"無效值\",\n            \"for\": \"，\",\n            //\"parent-issue\": \"父議題\",\n\n            \"You commented on and opened this issue\": \"您打開了此議題並發表了評論\",\n            \"You were mentioned on and commented on this issue\": \"您被提及並對此議題發表了評論\",\n            \"You commented on this issue\": \"您對此議題發表了評論\",\n            \"You opened this issue\": \"您打開了此議題\",\n\n            // 置頂議題\n            \"Pinned issues\": \"置頂議題\",\n            \"Drag to reorder\": \"拖拽排序\",\n            \"Pinned issue options\": \"置頂選項\",\n\n            \"Unpin\": \"取消置頂\",\n            \"Advanced move...\": \"高級移動…\",\n                \"Move selected item\": \"移動選中項\",\n                    \"Item\": \"標題\",\n                    \"Action\": \"操作\",\n                    \"Move item before\": \"移動到…之前\",\n                    \"Move item after\": \"移動到…之後\",\n                    \"Move to position\": \"指定位置\",\n                    \"Move\": \"移動\",\n            \"Search Issues\": \"搜索議題\",\n                // 倉庫\n                    \"No repository\": \"無倉庫\",\n                    \"Has repository\": \"包含倉庫\",\n                    \"Exclude repo\": \"排除倉庫\",\n                // 組織\n                    \"Has organization\": \"包含組織\",\n                    \"Exclude org\": \"排除組織\",\n                \"Is\": \"類型為\",\n                    \"Exclude is\": \"排除類型為\",\n                    \"Issue\": \"議題\",\n                    \"Pull Request\": \"拉取請求\",\n                    \"Unmerged\": \"未合併\",\n                    \"Locked\": \"已鎖定\",\n                    \"Unlocked\": \"未鎖定\",\n                    \"Blocked\": \"已阻塞\",\n                \"State\": \"狀態\",\n                    \"Exclude state\": \"排除狀態\",\n                // 標籤\n                    \"No label\": \"無標籤\",\n                    \"Has label\": \"包含標籤\",\n                    \"Exclude label\": \"排除標籤\",\n                    \"aesthetics\": \"美化\",\n                    \"bug\": \"缺陷\",\n                    \"dependencies\": \"依賴項\",\n                    \"development\": \"開發中\",\n                    \"discuss\": \"討論\",\n                    \"documentation\": \"文檔\",\n                    \"duplicate\": \"重複\",\n                    \"enhancement\": \"功能增強\",\n                    \"forums\": \"論壇\",\n                    \"good first issue\": \"適合新手\",\n                    \"help wanted\": \"求助\",\n                    \"invalid\": \"無效\",\n                    \"question\": \"提問\",\n                    \"website\": \"網站\",\n                    \"wontfix\": \"不會修復\",\n                // 類型\n                    \"No type\": \"無類型\",\n                    \"Has type\": \"包含類型\",\n                \"Project\": \"專案\",\n                    \"No project\": \"無專案\",\n                    \"Has project\": \"包含專案\",\n                    \"Exclude project\": \"排除專案\",\n                \"Milestone\": \"里程碑\",\n                    \"No milestone\": \"無里程碑\",\n                    \"Has milestone\": \"包含里程碑\",\n                    \"Exclude milestone\": \"排除里程碑\",\n                // 受理人\n                    \"No assignee\": \"無受理人\",\n                    \"Has assignee\": \"包含受理人\",\n                    \"Me\": \"我\",\n                        \"Signed-in user\": \"已登錄用戶\",\n                    // Copilot\n                        \"Your AI pair programmer\": \"您的 AI 編程助理\",\n                        \"Assign to Copilot\": \"受理給 Copilot\",\n                        // 窗口\n                            \"Assign Copilot to issue\": \"分配議題給 Copilot\",\n                            \"Feedback\": \"反饋\",\n                                \"Copilot will open a pull request using the issue's description, comments, and the additional prompt if you provide one. Choose a custom agent to tailor Copilot for specific tasks.\": \"Copilot 將根據議題的描述、評論以及您提供的額外提示詞（若有）來開啟拉取請求。您可以選擇自定義智能體，以便針對特定任務定製 Copilot。\",\n                                \"Optional prompt\": \"提示詞（可選）\",\n                                    \"Provide additional instructions for Copilot\": \"提供可選提示給 Copilot\",\n                                \"Auto\": \"自動\",\n                    \"Exclude assignee\": \"排除受理人\",\n                \"Author\": \"作者\",\n                    \"Has author\": \"包含作者\",\n                    \"Exclude author\": \"排除作者\",\n                \"Involves\": \"涉及\",\n                    \"Has involves\": \"包含涉及\",\n                    \"Exclude involves\": \"排除涉及\",\n                \"Mentions\": \"提及\",\n                    \"Has mentions\": \"包含提及\",\n                    \"Exclude mentions\": \"排除提及\",\n                \"Parent issue\": \"父議題\",\n                    \"No parent issue\": \"無父議題\",\n                    \"Has parent issue\": \"包含父議題\",\n                    \"Exclude parent-issue\": \"排除父議題\",\n                \"Blocking\": \"阻塞\",\n                    \"No blocking\": \"無阻塞\",\n                    \"Has blocking\": \"包含阻塞\",\n                    \"Exclude blocking\": \"排除阻塞\",\n                \"Blocked by\": \"被…阻塞\",\n                    \"No blocked by\": \"無被阻塞\",\n                    \"Has blocked by\": \"包含被阻塞\",\n                    \"Exclude blocked-by\": \"排除被阻塞\",\n                \"Sub-issue\": \"子議題\",\n                    \"No sub-issue\": \"無子議題\",\n                    \"Has sub-issue\": \"包含子議題\",\n                    \"Exclude sub-issue\": \"排除子議題\",\n                \"Update date\": \"更新日期\",\n                    \"Exclude updated\": \"排除更新日期\",\n                    \"Today\": \"今天\",\n                    \"Yesterday\": \"昨天\",\n                    \"Past 7 days\": \"過去 7 天\",\n                    \"Past 30 days\": \"過去 30 天\",\n                    \"Past year\": \"過去 1 年\",\n                \"Creation date\": \"創建日期\",\n                    \"Has creation date\": \"包含創建日期\",\n                    \"Exclude created\": \"排除創建日期\",\n                \"Closed date\": \"關閉日期\",\n                    \"Has closed date\": \"包含關閉日期\",\n                    \"Exclude closed\": \"排除關閉日期\",\n                \"Merge date\": \"合併日期\",\n                    \"Has merge date\": \"包含合併日期\",\n                    \"Exclude merged\": \"排除合併日期\",\n                \"Review requested\": \"已請求評審\",\n                    \"Has review requested\": \"包含已請求評審\",\n                    \"Exclude review-requested\": \"排除已請求評審\",\n                \"In\": \"在\",\n                    \"Has in\": \"包含在\",\n                    \"Exclude in\": \"排除在\",\n                    \"Body\": \"正文\",\n                    \"Comments\": \"評論\",\n                \"Commenter\": \"評論者\",\n                    \"Has commenter\": \"包含評論者\",\n                    \"Exclude commenter\": \"排除評論者\",\n                \"User\": \"用戶\",\n                    \"Has user\": \"包含用戶\",\n                    \"Exclude user\": \"排除用戶\",\n                \"User review requested\": \"已請求用戶評審\",\n                    \"Has user review requested\": \"包含已請求用戶評審\",\n                    \"Exclude user-review-requested\": \"排除已請求用戶評審\",\n                \"Reviewed by\": \"評審者\",\n                    \"Has reviewed by\": \"包含評審者\",\n                    \"Exclude reviewed-by\": \"排除評審者\",\n                \"Comment count\": \"評論數\",\n                    \"Has comment count\": \"有評論數\",\n                    \"Less than 10\": \"少於 10\",\n                    \"More than 10\": \"多於 10\",\n                    \"Between 10 and 100\": \"10 到 100\",\n                \"Interactions count\": \"互動數\",\n                    \"Has interactions count\": \"有互動數\",\n                \"Closed reason\": \"關閉原因\",\n                    \"Exclude reason\": \"排除原因\",\n                    \"Completed\": \"已完成\",\n                    \"Not planned\": \"未計劃\",\n                    \"Duplicate\": \"重複\",\n                \"Linked\": \"已鏈接\",\n                    \"Has linked\": \"包含已鏈接\",\n                    \"Exclude linked\": \"排除已鏈接\",\n                \"Archived\": \"已歸檔\",\n                    \"Has archived\": \"包含已歸檔\",\n                    \"Exclude archived\": \"排除已歸檔\",\n                    \"True\": \"是\",\n                    \"False\": \"否\",\n                \"Reaction count\": \"表情回應數\",\n                    \"Has reaction count\": \"有表情回應數\",\n                // 草案\n                    \"Has draft\": \"包含草案\",\n                    \"Exclude draft\": \"排除草案\",\n                \"Review state\": \"評審狀態\",\n                    \"Has review state\": \"包含評審狀態\",\n                    \"Exclude review\": \"排除評審狀態\",\n                    \"No reviews\": \"無評審\",\n                \"Code language\": \"程式碼語言\",\n                    \"Has code language\": \"包含程式碼語言\",\n                    \"Exclude language\": \"排除程式碼語言\",\n                \"Commit SHA\": \"提交 SHA\",\n                    \"Has commit sha\": \"包含提交 SHA\",\n                    \"Exclude sha\": \"排除提交 SHA\",\n                \"Base\": \"基礎分支\",\n                    \"Has base\": \"包含基礎分支\",\n                    \"Exclude base\": \"排除基礎分支\",\n                \"Head\": \"對比分支\",\n                    \"Has head\": \"包含對比分支\",\n                    \"Exclude head\": \"排除對比分支\",\n                // 狀態 (Status)\n                    \"Has status\": \"包含狀態檢查\",\n                    \"Exclude status\": \"排除狀態檢查\",\n                    \"Pending\": \"待處理\",\n                    \"Success\": \"成功\",\n                    \"Failure\": \"失敗\",\n                    \"Queued\": \"排隊中\",\n                    \"Waiting\": \"等待中\",\n                    \"Cancelled\": \"已取消\",\n                    \"Skipped\": \"已跳過\",\n                \"Team\": \"團隊\",\n                    \"Has team\": \"包含團隊\",\n                    \"Exclude team\": \"排除團隊\",\n                \"Team review requested\": \"已請求團隊評審\",\n                    \"Has team review requested\": \"包含已請求團隊評審\",\n                    \"Exclude team-review-requested\": \"排除已請求團隊評審\",\n                // 排序\n                    \"Has sort\": \"包含排序\",\n                    \"Exclude sort\": \"排除排序\",\n                    \"Least reactions\": \"最少回應\",\n                    \"Most thumbs up (👍) reactions\": \"👍 回應最多\",\n                    \"Least thumbs up (👍) reactions\": \"👍 回應最少\",\n                    \"Most thumbs down (👎) reactions\": \"👎 回應最多\",\n                    \"Least thumbs down (👎) reactions\": \"👎 回應最少\",\n                    \"Most laugh (😄) reactions\": \"😄 回應最多\",\n                    \"Least laugh (😄) reactions\": \"😄 回應最少\",\n                    \"Most confused (😕) reactions\": \"😕 回應最多\",\n                    \"Least confused (😕) reactions\": \"😕 回應最少\",\n                    \"Most tada (🎉) reactions\": \"🎉 回應最多\",\n                    \"Least tada (🎉) reactions\": \"🎉 回應最少\",\n                    \"Most heart (❤️) reactions\": \"❤️ 回應最多\",\n                    \"Least heart (❤️) reactions\": \"❤️ 回應最少\",\n                    \"Most eyes (👀) reactions\": \"👀 回應最多\",\n                    \"Least eyes (👀) reactions\": \"👀 回應最少\",\n                \"AND\": \"且\",\n                \"OR\": \"或\",\n                \"Exclude\": \"排除\",\n            // 過濾器問題\n                \"Empty value for\": \"空值\",\n                \"Invalid value\": \"無效值\",\n                \"for\": \"對於\",\n                \"Unbalanced quotation marks\": \"引號不匹配\",\n\n            \"Order\": \"順序\",\n\n        // 新建議題 選擇議題模板  /<user-name>/<repo-name>/issues/new/choose\n            \"Get started\": \"開始\",\n            \"Don’t see your issue here?\": \"在這裡沒有看到您的議題？\",\n            \"Open a blank issue.\": \"打開一個空白議題。\",\n            \"Edit templates\": \"編輯模板\",\n            \"Report abuse\": \"舉報濫用\",\n\n            \"View organization templates\": \"查看組織模板\", // 組織倉庫\n\n            // 警告\n                \"Discard changes?\": \"丟棄更改？\",\n                \"Close and discard\": \"丟棄並關閉\",\n\n        // 新建空白議題  /<user-name>/<repo-name>/issues/new\n            \"Title\": \"標題\",\n            \"Helpful resources\": \"幫助性資源\",\n            \"Create more\": \"創建多個\",\n            \"Write with Copilot\": \"請 Copilot 編寫\",\n                \"Navigate to Copilot Chat\": \"導航到 Copilot 聊天\",\n                    \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您確定要放棄它們嗎？\",\n                    \"Keep editing\": \"否\", // 實際作用：返回編寫頁面\n                    \"Go to Copilot\": \"是\", // 實際作用：前往 Copilot 頁面\n\n            \"Choose a different template\": \"切換模板\",\n\n        // 從討論創建議題  /<user-name>/<repo-name>/issues/new?created_from_discussion_number=<id>\n            \"Documentation has changed since you last contributed\": \"自您上次貢獻以來，文檔已更改\",\n            \". Take a look before submitting an issue:\": \"。在提交議題之前先看一下：\",\n            \"Contributing guidelines\": \"貢獻指南\",\n            \"Last updated\": \"最後更新\",\n\n        // 某條具體的議題 /<user-name>/<repo-name>/issues/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 快捷鍵\n                \"Convert issue to discussion…\": \"將議題轉化為討論…\",\n\n            \"This issue was moved to a discussion.\": \"這個議題被轉移到討論中。\",\n            \"You can continue the conversation there.\": \"您可以在那裡繼續討論。\",\n            \"Go to discussion →\": \"轉到討論→\",\n\n            \"Edit\": \"編輯\",\n            \"Issue body actions\": \"菜單\", // 原文過於囉嗦，直接省略\n\n            // 狀態詞 同 /<user-name>/<repo-name>/pull/<id>\n            \"changed the title\": \"修改了標題\",\n            \"opened this issue\": \"打開了該議題\",\n            \"· Fixed by\": \"· 修復了\",\n            \"mentioned this issue\": \"提及了該議題\",\n            \"mentioned this\": \"提及此\",\n            \"opened this\": \"打開了這個\",\n            \"linked a pull request\": \"關聯了一個拉取請求\",\n            \"linked a pull request that will close this issue\": \"關聯了一個關閉此議題的拉取請求\",\n            //\"that will\": \"這將會\",\n            //\"close\": \"關閉\",\n            //\"this issue\": \"這個議題\",\n            // \"that will close this issue\": \"這將會關閉這個議題\",\n            // \"Issue\": \"議題\",\n            \"added a commit that closed this issue\": \"在提交時關閉了這個議題\",\n            \"closed this in\": \"關閉於\",\n            \"added the\": \"添加了\",\n            \"added\": \"添加了\",\n            \"and removed\": \"並移除了\",\n            \"removed the\": \"移除了\",\n            \"removed\": \"移除了\",\n            \"label\": \"標籤\",\n            \"labels\": \"標籤\",\n            \"self-assigned this\": \"自己受理了該議題\",\n            // \"edited\": \"編輯的\",\n            \"added this to the\": \"添加到\",\n            \"added this to\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"moved this to\": \"移動到\",\n            \"closed this\": \"關閉了\",\n            \"as\": \"因\",\n            \"as a\": \"因\",\n            \"closed this as\": \"已關閉因\",\n                \"not planned\": \"非計劃中\",\n                \"completed\": \"已完成\",\n            \"reopened this\": \"重新打開了這個\",\n            \"This was referenced\": \"這是引用\",\n            \"deleted a comment from\": \"刪除了評論，來自\",\n            \"· May be fixed by\": \" · 可通過該方案修復\",\n            \"pinned this issue\": \"置頂議題\",\n            \"unpinned this issue\": \"取消置頂\",\n            \"Repository owner\": \"倉庫所有者\",\n            \"Repository owner locked and limited conversation to collaborators\": \"倉庫所有者鎖定並限制與協作者對話\",\n            \"Repository owner locked as\": \"倉庫所有者鎖定為\",\n            \"Repository owner deleted a comment\": \"倉庫所有者刪除了評論\",\n            \"Repository owner deleted a comment from\": \"倉庫所有者刪除了評論來自\",\n            \"locked\": \"鎖定\",\n            \"locked as\": \"鎖定為\",\n                \"off-topic\": \"偏離主題\",\n                \"too heated\": \"爭論不休\",\n                \"resolved\": \"已解決\",\n                \"spam\": \"垃圾信息\",\n            \"and limited conversation to collaborators\": \"並限制與協作者對話\",\n            \"unlocked this conversation\": \"解鎖了對話\",\n            \"merged commit\": \"已合併提交\",\n            // \"into\": \"到\",\n            \"deleted the\": \"刪除了\",\n            \"locked and limited conversation to collaborators\": \"鎖定並限制與協作者對話\",\n            \"converted this issue into discussion\": \"此議題已轉化為討論\",\n            \"converted this issue into a discussion\": \"此議題已轉化為討論\",\n            \"removed their assignment\": \"取消了他們的任務\",\n            \"assigned\": \"分配給了\",\n            \"unassigned\": \"取消分配給\",\n            \"and unassigned\": \"和取消了分配給\",\n            \"marked this pull request as draft\": \"將此拉取請求標記為草案\",\n            \"marked this pull request as ready for review\": \"將此拉取請求標記為可供審查\",\n            \"dismissed a stale review via\": \"駁回了一個陳舊的審查，通過\",\n            \"requested changes\": \"請求了更改\",\n            \"added a commit that referenced this issue\": \"添加了一個引用此問題的提交\",\n            \"referenced this issue\": \"提及這個議題\",\n            \"closed this as completed\": \"已完成，關閉\",\n            \"added a parent issue\": \"添加了一個父議題\",\n            \"added a commit that references this issue\": \"添加了一個引用此議題的提交\",\n            \"transferred this issue from\": \"將此議題轉移，從\",\n            \"as off topic\": \"為偏離主題\",\n            \"as too heated\": \"為爭論不休\",\n            \"as spam\": \"為垃圾信息\",\n            \"as resolved\": \"為已解決\",\n            \"added a sub-issue\": \"添加子議題\",\n            \"added sub-issues\": \"添加子議題\",\n            \"removed a parent issue\": \"移除父議題\",\n            \"removed a sub-issue\": \"移除子議題\",\n            \"marked\": \"標記\",\n                \"as a duplicate of this issue\": \"議題同此重複\", // 示例 https://github.com/maboloshi/github-chinese/issues/405\n\n            // 右側欄 補充\n            \"Metadata\": \"元數據\", // 小屏模式\n                // \"Development\": \"進展\",\n                    \"Code with agent mode\": \"智能體模式編程\",\n                        \"Select code repository\": \"選擇倉庫\",\n                        \"Start a codespace with Copilot agent mode for this issue in another repository.\": \"為另一個倉庫中的此議題啟動使用 Copilot 智能體模式的程式碼空間。\",\n                    \"No branches or pull requests\": \"沒有分支或拉取請求\",\n                    \"Shows branches and pull requests linked to this issue.\": \"顯示與該議題相關的分支和拉取請求。\",\n                    \"Create a branch\": \"創建分支\",\n                    \"for this issue or link a pull request.\": \"為這個議題或關聯一個拉取請求\",\n                    \"When branches are created from issues, their pull requests are automatically linked.\": \"當從議題中創建分支時，它們的拉取請求會自動關聯。\",\n\n                    // 關係\n                        \"Add parent\": \"添加父議題\",\n                        \"Select a repository\": \"選擇一個倉庫\",\n                        \"Change or remove parent\": \"更改或移除父議題\",\n                            \"Selected\": \"當前\",\n\n                    // 參與者數大於2\n                        \"and others\": \"等\",\n\n                    // 下拉\n                    \"Link a pull request from this repository\": \"關聯來自此倉庫的拉取請求\",\n\n                    // \"linked a pull request that will\": \"關聯一個拉取請求, 將會\",\n                    // \"close\": \"關閉\",\n                    // \"this issue\": \"這個議題\",\n\n                    // 第一次打開議題\n                    \"It looks like this is your first time opening an issue in this project!\": \"看起來這是您第一次在此專案中打開議題！\",\n                    \"Be sure to review the\": \"請務必查閱\",\n\n                    // 議題表單\n                    \"You're using an\": \"您正在使用\",\n                    \"issue form\": \"議題表單\",\n                    \", a new type of issue template.\": \"，一種新型議題模板。\",\n\n                    // 創建分支 對話框\n                        \"Create a branch for this issue\": \"為該議題創建一個分支\",\n                        \"Branch name\": \"分支名稱\",\n                        \"Repository destination\": \"倉庫目的地\",\n                            \"Search for a repository\": \"搜索倉庫\",\n                        \"Change branch source\": \"更改分支源\",\n                        \"What's next?\": \"下一步是什麼？\",\n                            \"Checkout locally\": \"檢出本地\",\n                            \"Open branch with GitHub Desktop\": \"使用 GitHub Desktop 打開分支\",\n                        \"Create branch\": \"創建分支\",\n\n                    // 在本地倉庫檢出對話框\n                        \"Checkout in your local repository\": \"在本地倉庫檢出\",\n                        \"Run the following commands in your local clone.\": \"在您的本地克隆中運行以下指令。\",\n\n                    // 專案\n                        \"Select projects\": \"選擇專案\",\n\n                    // 進展\n                        \"Link a branch or pull request\": \"關聯分支或拉取請求\",\n                        \"Select a repository to search for branches and pull requests or\": \"選擇一個倉庫來搜索分支和拉取請求或\",\n                        \"create a branch\": \"創建一分支\",\n                        \"Search pull requests\": \"搜索拉取請求\",\n                        \"Search for repositories\": \"搜索倉庫\",\n                        \"Link a branch, pull request, or\": \"關聯分支、拉取請求或\",\n                        \"Search for branches or pull requests\": \"搜索分支或拉取請求\",\n                        \"no pull request\": \"無拉取請求\",\n\n                \"Duplicate issue\": \"複製議題\",\n                    // [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中複製當前議題\"],\n                    \"Changing the repository may remove Milestone, Labels, Type, and Assignees from the duplicate issue.\": \"更改倉庫可能會從重複議題中移除里程碑、標籤、類型和分配人員。\",\n                    \"This issue is being duplicated across repositories. The following metadata might not be copied: Milestone, Labels.\": \"該議題正跨倉庫中被複制創建。以下元數據可能不會被複制：里程碑、標籤。\",\n                \"Pin issue\": \"置頂議題\",\n                    \"Up to 3 issues can be pinned and they will appear publicly at the top of the issues page\": \"最多可以置頂 3 個議題，它們將公開顯示在議題頁面的頂部\",\n                    \"Up to 3 issues can be pinned to the top of the issues page\": \"最多可以在議題頁面置頂 3 個議題\",\n                    \"This will unpin this issue from the top of the issues page\": \"將從議題頁面取消置頂該議題\",\n                    // 頂部提醒\n                    \"The issue has been pinned.\": \"該議題已置頂。\",\n                \"Unpin issue\": \"取消置頂\",\n                    \"Up to 3 issues can be pinned and they will appear at the top of the issues page\": \"最多可以置頂 3 個議題，它們將顯示在議題頁面的頂部\",\n                    \"3/3 issues already pinned. Unpin an issue to pin this one.\": \"已有3/3個議題被置頂。請先取消置頂其中一個議題，才能置頂當前議題。\",\n                    // 頂部提醒\n                    \"The issue has been unpinned.\": \"該議題已取消置頂。\",\n                \"Transfer issue\": \"轉移議題\",\n                    // 轉移議題 對話框\n                        \"Transfer this issue\": \"轉移議題\",\n                            \"This does not scrub any issue content. Content such as text references to other issues, pull requests, projects and teams will still appear in the description or comments. Labels will be transferred.\": \"該操作不會清除任何議題內容。對其它議題、拉取請求、專案和團隊的文本引用仍會保留在描述或評論中。標籤將會被轉移。\",\n                            \"Repository projects assigned to this issue will not transfer to the new location\": \"分配給此議題的倉庫專案不會轉移到新位置\",\n                        \"Choose a repository\": \"選擇倉庫\",\n                        \"Find a repository\": \"搜索倉庫\",\n                        \"Warning!\": \"警告！\",\n                            \"Transferring an issue does not scrub any issue content. Content such as text references to other issues, pull requests, projects, teams will remain in this issue's descriptions and comments.\": \"轉移議題不會清除任何議題內容。諸如對其他議題、拉取請求、專案、團隊的文本引用等內容將保留在此議題的描述和評論中。\",\n                            \"Assignees, labels and milestones will be transferred if they are present in the target repository.\": \"如果目標倉庫中存在受讓人、標籤和里程碑，它們將被轉移。\",\n                \"Convert to discussion\": \"轉為討論\",\n                    // 轉換議題為討論 對話框\n                    \"Convert issue to a discussion\": \"轉換議題為討論\",\n                        \"Are you sure you want to convert this issue to a discussion?\": \"您確定要將議題轉換為討論嗎？\",\n                        \"What happens when an issue is converted into a discussion:\": \"將議題轉化為討論時，會發生什麼：\",\n                        \"Issue will be closed and locked\": \"議題將被關閉並鎖定\",\n                        \"Title, description, and author will be the same as the issue\": \"標題、描述和作者將與議題相同\",\n                        \"All comments and reactions will be the same as the issue\": \"所有評論和反應將與議題相同\",\n                        \"Category for new discussion\": \"新討論的類別\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"問與答\",\n                            \"Show and tell\": \"展示與講述\",\n                        \"I understand, convert this issue\": \"我明白了，依然轉化該議題\",\n                \"Delete issue\": \"刪除議題\",\n                    \"Delete issue?\": \"刪除議題？\",\n                    \"Are you sure you want to delete this issue?\": \"您確定要刪除此議題嗎？\",\n                    \"This cannot be undone\": \"這不能被撤消\",\n                    \"Only adminstrators can delete issues\": \"只有管理員可以刪除議題\",\n                    \"Deletion will remove the issue from search and previous references will point to a placeholder\": \"刪除將會從搜索中刪除議題，以前的引用將指向一個佔位符\",\n                    \"Delete this issue\": \"刪除議題\",\n                    \"Deleting issue…\": \"議題刪除中…\",\n                    // 頂部提醒\n                    \"The issue was successfully deleted.\": \"該議題已成功刪除。\",\n\n                \"Participants\": \"參與者\",\n                    \"No participants\": \"尚無參與者\",\n\n            // 新版議題頁面\n            \"remaining\": \"剩餘\",\n            \"items\": \"項\",\n            \"Load more\": \"載入更多\",\n\n            \"This conversation has been locked and limited to collaborators.\": \"此對話已鎖定並限制與協作者對話。\",\n            \"This issue has been deleted.\": \"該議題已被刪除。\",\n            \"deleted this from\": \"刪除了這個，從\",\n\n            \"Reference in a new issue\": \"在新議題中提及\",\n\n            // 評論框\n            \"edited by\": \"編輯者\",\n            \"Hidden as\": \"隱藏因\",\n                \"abuse\": \"濫用\",\n                \"show comment\": \"顯示評論\",\n                \"hide comment\": \"隱藏評論\",\n            \"Edits\": \"編輯\",\n                \"Most recent\": \"最近\",\n                \"Viewing edit\": \"查看編輯\",\n                \"Delete revision\": \"刪除修訂\",\n            \"Reopen Issue\": \"重新打開議題\",\n                \"You do not have permissions to reopen this issue\": \"您沒有權限重新打開此議題\",\n            // 評論刪除對話框\n                \"Delete comment\": \"刪除評論\",\n                \"Are you sure you'd like to delete this comment?\": \"您確定要刪除這條評論嗎？\",\n            // 關閉議題\n                \"You do not have permissions to close this issue\": \"您沒有權限關閉此議題\",\n            \"Comment can not be empty\": \"評論不能為空\",\n            \"Add files\": \"添加文件\", // 小屏模式\n\n        // 議題標籤管理 /<user-name>/<repo-name>/issues/labels\n        // 倉庫 --> 標籤頁面 /<user-name>/<repo-name>/labels\n            \"Labels\": \"標籤\",\n            \"Milestones\": \"里程碑\",\n            \"Search all labels\": \"搜索所有標籤\",\n\n            \"labels\": \"標籤\",\n\n            \"New label\": \"新建標籤\",\n                \"Label preview\": \"標籤預覽\",\n                \"Label name\": \"標籤名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可選）\",\n                \"Color\": \"顏色\",\n                    \"Get a new color\": \"獲得新顏色\",\n                    \"Choose from default colors:\": \"從默認顏色中選擇：\",\n                \"Create label\": \"創建標籤\",\n\n            \"Sort\": \"排序\",\n                \"Alphabetically\": \"按字母順序\",\n                \"Reverse alphabetically\": \"按字母倒序\",\n                \"Most issues\": \"最多的議題\",\n                \"Fewest issues\": \"最少的議題\",\n\n            // 標籤\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些東西不工作\",\n                \"dependencies\": \"依賴性\",\n                    \"Pull requests that update a dependency file\": \"更新一個依賴文件的拉取請求\",\n                \"documentation\": \"文檔\",\n                    \"Improvements or additions to documentation\": \"文檔的改進或補充\",\n                \"duplicate\": \"重複\",\n                    \"This issue or pull request already exists\": \"這個議題或拉取請求已經存在\",\n                \"enhancement\": \"增強\",\n                    \"New feature or request\": \"新功能或請求\",\n                \"good first issue\": \"好的首發議題\",\n                    \"Good for newcomers\": \"適合新人\",\n                \"help wanted\": \"需要幫助\",\n                    \"Extra attention is needed\": \"需要特別關注\",\n                \"invalid\": \"無效\",\n                    \"This doesn't seem right\": \"這似乎不對\",\n                \"question\": \"問題\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不會修復\",\n                    \"This will not be worked on\": \"這將不會被處理\",\n\n            // [/open issues? and pull requests?/, \"個打開的議題和拉取請求\"], // 標籤頁面\n            // [/open issues? or pull requests?/, \"個打開的議題或拉取請求\"], // 標籤頁面\n\n            \"Convert to discussions\": \"轉為討論\",\n                // 轉換議題為討論 對話框\n                \"Convert issue to discussion\": \"轉換議題為討論\",\n                \"Convert issues to discussions\": \"轉換議題為討論\",\n                    // [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您確定要將帶有以下標籤的 $1 條議題轉換為討論嗎？\"],\n                    // \"What happens when an issue is converted into a discussion:\": \"將議題轉化為討論時，會發生什麼：\",\n                    \"Issue will be locked\": \"議題將被鎖定\",\n                    // \"Title, description, and author will be the same as the issue\": \"標題、描述和作者將與議題相同\",\n                    \"Existing links will redirect to the new discussion\": \"現有鏈接將重定向至新討論\",\n                    // \"All comments and reactions will be the same as the issue\": \"所有評論和反應將與議題相同\",\n                    \"Discussions do not have tasklists\": \"討論沒有任務列表\",\n                    \"Discussions do not have assignees\": \"討論沒有受理人\",\n                    \"Discussions cannot be added to projects\": \"討論無法添加到專案\",\n                    \"Discussions do not have milestones\": \"討論沒有里程碑\",\n                    \"You must choose a category for the discussion to belong to. You will be able to change this after the conversion is complete.\": \"您必須為討論選擇一個所屬類別。轉換完成後，您可以更改類別。\",\n                    \"Choose a category\": \"選擇類別\",\n                        \"Announcements\": \"公告\",\n                        \"General\": \"通常\",\n                        \"Ideas\": \"想法\",\n                        \"Polls\": \"投票\",\n                        \"Q&A\": \"問與答\",\n                        \"Show and tell\": \"展示與講述\",\n                    \"I understand, convert issue to discussion\": \"我明白了，依然將議題轉換為討論\",\n                    \"I understand, convert issues to discussions\": \"我明白了，依然將議題轉換為討論\",\n                    \"Future issues with this label will not be automatically converted into discussions.\": \"今後帶有此標籤的議題不會自動轉換為討論。\",\n\n        // 添加/編輯議題模板 /<user-name>/<repo-name>/issues/templates/edit\n            \"Propose changes\": \"提出更改\",\n            \"Add template:\": \"添加模板：\",\n            \"select\": \"選擇\",\n            \"Bug report\": \"錯誤報告\",\n                \"Standard bug report template\": \"標準錯誤報告模板\",\n                \"Create a report to help us improve\": \"創建報告以幫助我們改進\",\n            \"Feature request\": \"功能要求\",\n                \"Standard feature request template\": \"標準功能請求模板\",\n                \"Suggest an idea for this project\": \"為這個專案提出想法\",\n            \"Custom template\": \"自定義模板\",\n                \"Blank template for other issue types\": \"其他議題類型的空白模板\",\n                \"Custom issue template\": \"自定義議題模板\",\n                \"Describe this issue template's purpose here.\": \"在此處描述此議題模板的用途。\",\n\n            \"Preview and edit\": \"預覽和編輯\",\n            \"Close preview\": \"關閉預覽\",\n\n            \"Template name\": \"模板名稱\",\n            \"This file lives in\": \"該文件位於\",\n            \"Template content\": \"模板內容\",\n                \"Styling with Markdown is supported\": \"支持 Markdown 格式\",\n            \"Optional additional items\": \"可選附加專案\",\n            \"Issue default title\": \"議題默認標題\",\n            \"This will be suggested as the issue title\": \"建議作為議題標題\",\n                \"Add a placeholder for issue title, ex. [BUG]\": \"設置默認議題標題，例如：[BUG]\",\n\n            \"Commit changes\": \"提交更改\",\n                \"Commit message\": \"提交信息\",\n                \"Extended commit message\": \"擴展描述\",\n                    \"Add an optional extended description\": \"添加描述... (可選)\",\n                \"Commit directly to the\": \"提交到\",\n                \"branch.\": \"分支。\",\n\n                \"Some rules will be bypassed by committing directly\": \"直接提交可以繞過一些規則\",\n                \"Bypass rules and commit changes\": \"繞過規則並提交更改\",\n\n                \"Create a\": \"創建\",\n                \"new branch\": \"新分支\",\n                \"for this commit and start a pull request.\": \"為這個提交，並且發起一個拉取請求。\",\n\n        // Copilot 浮窗 獨有詞條\n            \"Ask about the issue:\": \"討論此議題：\",\n\n        // 底部提示欄（未登錄\n        \"to join this conversation on GitHub.\": \"加入 GitHub 上的這個討論。\",\n            \"Already have an account?\": \"已經有賬戶？\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Want to contribute to ([^ ]+)\\?/, \"想為 $1 做貢獻？\"],\n        [/Awaiting requested review from ([^ ]+)/, \"正在等待 $1 審查請求\"],\n        [/([\\d,]+) Open/, \"$1 打開\"],\n        [/([\\d,]+) Closed/, \"$1 已關閉\"],\n        [/(#\\d+) opened/, \"$1 打開於\"],\n        [/(#\\d+) by/, \"$1 打開者\"],\n        [/(\\d+) linked pull requests?/, \"鏈接 $1 個拉取請求\"],\n        [/([\\d,]+) linked issues?/, \"$1 個關聯議題\"],\n        [/(\\d+) tasks? done/, \"$1 個任務完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 個任務\"],\n        [/(\\d+) tasks?/, \"$1 個任務\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次為 $1 做貢獻？\"],\n\n        // 具體某條議題 /<user-name>/<repo-name>/issues/<id>\n        [/· ([\\d,]+) comments?/, \"• $1 條評論\"],\n        [/([\\d,]+) participants?/, \"$1 位參與者\"],\n        [/(\\d+) similar comments?/, \"$1 條類似評論\"],\n        [/(\\d+) hidden items?/, \"$1 條隱藏專案\"],\n        [/added a commit to ([^ ]+) that referenced this issue/, \"為 $1 添加了引用這個議題的提交\"],\n        [/Only people who can see ([^ ]+) will see this reference./, \"只有能看到 $1 的人才能看到這個參考。\"],\n        [/Sponsor ([^ ]+)?/, \"贊助 $1\"], // 贊助按鈕 對話框 標題\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在議題中通過 @ 提及通知某人，例如：@$1。\"], // 專業提示\n        [/Edited (\\d+) times?/, \"已編輯 $1 次\"],\n        [/edited by ([^ ]+)/, \"由 $1 編輯\"],\n        [/This issue will close when (#?\\d+) is merged/, \"此議題將在 $1 合併時關閉\"],\n        [/Opened this issue \\(their first in ([^ ]+)\\)/, \"打開了這個議題（首次在 $1 發表）\"],\n        [/Duplicate current issue in ([^ ]+\\/[^ ]+)/, \"在 $1 中複製當前議題\"],\n        [/added (\\d+) commits? that reference this issue/, \"添加 $1 個引用此議題的提交\"],\n        [/This issue will close once commit ([a-f0-9]{7}) is merged into the \\'([^ ]+)\\' branch./, \"此議題將在提交 $1 合併到 '$2' 分支後關閉。\"],\n\n        // 標籤頁面\n        [/open issues? and pull requests?/, \"個打開的議題和拉取請求\"],\n        [/open issues? or pull requests?/, \"個打開的議題或拉取請求\"],\n        [/Are you sure you want to convert (\\d+) issues? with the following label to (?:a |)discussions?\\?/, \"您確定要將帶有以下標籤的 $1 條議題轉換為討論嗎？\"],\n        [/(\\d+) labels/, \"$1 個標籤\"],\n\n        // 子議題\n        [/Create new sub-issue in ([^ ]+)/, \"在 $1 中新建子議題\"],\n        [/(\\d+) of (\\d+)/, \"$1 / $2\"],\n        [/Filter contains (\\d+) issues?\\:/, \"篩選包含 $1 個議題：\"],\n\n        // 新版議題\n        [/(.+) will be between (.+) and (.+)./, \"“$1” 將在 “$2” 和 “$3” 之間。\"],\n        [/(.+) will not be moved./, \"“$1” 將不會被移動。\"],\n        [/(.+) will be first item in the list./, \"“$1” 將移至最前。\"],\n        [/(.+) will be last item in the list./, \"“$1” 將移至最後。\"],\n        [/of (\\d+) selected/, \"/ $1 選中\"],\n        [/(\\d+\\%) completed/, \"$1 完成\"],\n        [/Issue (#\\d+) created/, \"議題 $1 已創建\"],\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n        [/mentioned this in (\\d+) issues?/, \"在 $1 個議題中提及\"],\n        [/Create new issue in (.+)/, \"在 $1 新建議題\"],\n        [/Close as duplicate of (\\#\\d+)/, \"因同 $1 重複關閉\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"New Issue\": \"創建議題\",\n        },\n        \"regexp\": [\n            [/Issues?/, \"議題\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/labels\"] = I18N[\"zh-TW\"][\"repository/issues\"];\n\nI18N[\"zh-TW\"][\"repository/pulls\"] = { // 倉庫 - 拉取請求頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 倉庫 --> 拉取請求 標籤卡 /<user-name>/<repo-name>/pulls\n            // 歡迎信息\n            \"Welcome to pull requests!\": \"歡迎使用拉取請求！\",\n            \"Pull requests help you collaborate on code with other people. As pull requests are created, they’ll appear here in a searchable and filterable list. To get started, you should\": \"拉取請求可幫助您與其他人協作處理程式碼。創建拉取請求後，它們將出現在可搜索和可篩選的列表中。要開始，您應該\",\n            \"create a pull request\": \"創建拉取請求\",\n\n            // [/First time contributing to ([^ ]+)?/, \"首次為 $1 做貢獻？\"], // /pulls\n            \"If you know how to fix an\": \"如果您知道如何修復一個\",\n            \"issue\": \"議題\",\n            \", consider opening a pull request for it.\": \"，可考慮為它打開一個拉取請求。\",\n            \"You can read this repository’s\": \"您可以閱讀該倉庫的\",\n            \"to learn how to open a good pull request.\": \"，去學習如何打開一個好的拉取請求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request.\": \"如果您想向這個倉庫提交程式碼，請考慮打開一個拉取請求。\",\n            \"If you would like to submit code to this repository, consider opening a pull request. You can read this repository’s\": \"如果您想向這個倉庫提交程式碼，請考慮打開一個拉取請求。您可以閱讀該倉庫的\",\n\n            \"Label issues and pull requests for new contributors\": \"標記新貢獻者的議題和拉取請求\",\n            \"Now, GitHub will help potential first-time contributors\": \"現在，GitHub 將幫助潛在的首次貢獻者\",\n            \"discover issues\": \"探索議題\",\n            \"labeled with\": \"標記為\",\n\n            \"Dismiss\": \"忽略\",\n                // 忽略 下拉\n                \"Dismiss for this repository only\": \"僅對該倉庫不在提示\",\n                \"Dismiss for all repositories\": \"對所有倉庫均不在提示\",\n\n            \"New pull request\": \"發起拉取請求\",\n\n            \"Reviews\": \"審查\",\n                // 篩選工作條\n                \"Filter by reviews\": \"按審查篩選\",\n                \"No reviews\": \"未經審查\",\n                // \"Review required\": \"需要審查\",\n                \"Approved review\": \"已批准的審查\",\n                \"Changes requested\": \"已請求更改\",\n                \"Reviewed by you\": \"由您審查\",\n                \"Not reviewed by you\": \"您未審查\",\n                \"Awaiting review from you\": \"等待您審查\",\n                \"Awaiting review from you or your team\": \"等待您或您的團隊的審查\",\n                \"Awaiting review from you specifically\": \"特別等待您審查\",\n\n                // 篩選結果\n                \"There aren’t any open pull requests.\": \"暫無拉取請求。\",\n\n                \"You commented on and opened this pull request\": \"您打開了此拉取請求並發表了評論\",\n                \"You were mentioned on and commented on this pull request\": \"您被提及並對此拉取請求發表了評論\",\n                \"You commented on this pull request\": \"您對此拉取請求發表了評論\",\n                \"You opened this pull request\": \"您打開了此拉取請求\",\n\n                \"Suggested change\": \"建議更改\",\n\n    },\n    \"regexp\": [\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"regexp\"],\n\n        [/(\\d+) reviews? requesting changes?/, \"$1 個請求審查更改\"],\n        [/(\\d+) linked issues?/, \"鏈接 $1 個議題\"],\n        [/([\\d,]+) Open/, \"$1 打開\"],\n        [/([\\d,]+) Closed/, \"$1 已關閉\"],\n        [/(#\\d+) opened/, \"$1 打開於\"],\n        [/(#\\d+) by/, \"$1 打開者\"],\n        [/(\\d+) tasks? done/, \"$1 個任務完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 個任務\"],\n        [/(\\d+) tasks?/, \"$1 個任務\"],\n        [/(\\d+) Total/, \"$1 總計\"],\n        [/(\\d+) review requesting changes/, \"$1 個要求修改的審查\"],\n        [/First time contributing to ([^ ]+)\\?/, \"首次為 $1 做貢獻？\"],\n        [/Suggested change/, \"建議更改\"],\n        [/Ears burning\\? Get\\@([^ ]+) mentions with/, \"耳朵癢嗎？使用 @$1 查看提及：\"], // 專業提示\n        [/Notify someone on an issue with a mention, like: \\@([^ ]+)/, \"在議題中通過 @ 提及通知某人，例如：@$1\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pull requests/, \"拉取請求\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/pull\"] = { // 倉庫 - 某個拉取請求頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"static\"],\n\n        // 某條具體的拉取請求 /<user-name>/<repo-name>/pull/<id> >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 頂部提醒\n                \"The head ref may contain hidden characters:\": \"頭部引用可能包含隱藏字符：\",\n                \"Your review was submitted on a merged pull request.\": \"您的審查已提交，一個合併的拉取請求。\",\n                \"Marked pull request as ready for review.\": \"標記拉取請求為可審核。\",\n                \"Your review was submitted successfully.\": \"您的審查已成功提交。\",\n                \"requested your review on this pull request.\": \"請求審核此拉取請求。\",\n                // Dependabot 打開的拉取請求\n                    \"Merging this pull request will resolve\": \"合併此拉取請求將解決\", // 後面警報數走正則\n                    //\"on rollup including a\": \"，包括 1 個\",\n                    \"severity alert.\": \"風險警報。\",\n\n            // 快捷鍵\n                \"Edit pull request title\": \"編輯拉取請求標題\",\n                \"Edit pull request body\": \"編輯拉取請求主體\",\n\n            // 編輯 -> 選擇基礎庫\n            \"Choose a base branch\": \"選擇基礎分支\",\n            \"base:\": \"基礎：\",\n                // 更改基礎分支對話框\n                \"Find a branch\": \"搜索分支\",\n                \"Are you sure you want to change the base?\": \"您確定要更改基礎分支嗎？\",\n                \"Some commits from the old base branch may be removed from the timeline, and old review comments may become outdated.\": \"舊的基礎分支的一些提交可能會從時間線上刪除，而舊的審查意見可能會變得過時。\",\n                \"Change base\": \"更改基礎分支\",\n\n            // 程式碼 下拉菜單\n                \"Code 55% faster with AI pair programming.\": \"與 AI 一起編程，寫程式碼速度提高55%。\",\n                    \"Start my free trial\": \"開始我的免費試用\",\n                    \"Don't show again\": \"不再顯示\",\n\n                \"Local\": \"本地\",\n                    \"Checkout with GitHub CLI\": \"使用 GitHub CLI 檢出\",\n                    \"Work fast with our official CLI.\": \"使用我們的官方 CLI 快速工作。\",\n                    \"Checkout with GitHub Desktop\": \"使用 GitHub Desktop 檢出\",\n                        \"Launching GitHub Desktop\": \"GitHub Desktop 啟動中\",\n                        \"If nothing happens,\": \"如果沒有響應\",\n                            \"download GitHub Desktop\": \"下載 GitHub Desktop\",\n                            \"and try again.\": \"並重試\",\n\n                // 程式碼空間\n                    // 維護提示\n                        \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間正在維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n                        \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間將進行維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n                        \"this announcement\": \"此公告\",\n                    \"This pull request must be reopened to create new codespaces on it.\": \"必須重新打開此拉取請求才能在其上創建新的程式碼空間。\",\n                    \"Your workspaces in the cloud\": \"您在雲端的工作空間\",\n                    //[/Create a codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n                    \"Codespace repository configuration\": \"程式碼空間倉庫配置\",\n                        \"New with options...\": \"新建（選項）…\",\n                        \"Configure dev container\": \"配置開發容器\",\n                        \"Set up prebuilds\": \"設置預構建\",\n                        \"Manage codespaces\": \"管理程式碼空間\",\n                        \"Share a deep link\": \"分享深度鏈接\",\n                            \"Share codespace configuration\": \"共享程式碼空間配置\",\n                            \"Choose which settings from this configuration to include when sharing\": \"選擇共享時要包含此配置中的哪些設置\",\n                            \"Quick start\": \"快速開始\",\n                            \"Automatically create or reuse the most recent matching codespace.\": \"自動創建或使用最新匹配的程式碼空間。\",\n                            \"Read more about creating a link.\": \"閱讀有關創建鏈接的更多信息。\",\n                            \"Snippets\": \"片段\",\n                            \"Use the following snippets to embed an “Open in Codespaces” button for this configuration in your own page or README.\": \"使用以下程式碼片段在您自己的頁面或 README 中嵌入此配置的 “在 Codespaces 中打開” 按鈕。\",\n                        \"What are codespaces?\": \"什麼是程式碼空間？\",\n                    \"No codespaces\": \"尚無程式碼空間\",\n                    \"You don't have any codespaces with this repository checked out\": \"您沒有檢出此倉庫的任何程式碼空間\",\n                    //[/Create codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n                    \"Learn more about codespaces...\": \"瞭解更多關於程式碼空間的信息…\",\n\n                    \"On current branch\": \"在當前分支\",\n                        \"No codespaces on current branch\": \"當前分支上沒有程式碼空間\",\n                    \"On other branches\": \"在其他分支\",\n                    \"miniature adventure\": \"迷你探險\",\n                    \"Open miniature adventure in web\": \"在網絡中打開迷你探險\",\n                    \"Active\": \"激活\",\n                        \"Open in ...\": \"打開…\",\n                            \"Open in browser\": \"在瀏覽器中打開\",\n                            \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打開\",\n                            \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打開\",\n                            \"Open in JupyterLab\": \"在 JupyterLab 中打開\",\n                        \"Rename\": \"重命名\",\n                            \"Change codespace display name to...\": \"將程式碼空間顯示名稱更改為…\",\n                        \"Export changes to a branch\": \"將更改導出到分支\",\n                            \"This will create a new branch with any unpushed changes\": \"這將創建一個包含任何未推送更改的新分支\",\n                            \"Create branch\": \"創建分支\",\n                        \"Change machine type\": \"更改機器類型\",\n                            \"Change codespace machine type\": \"更改程式碼空間機器類型\",\n                            \"Machine type\": \"機器類型\",\n                                \"2-core\": \"雙核\",\n                                \"4-core\": \"四核\",\n                            \"Need even more power?\": \"需要更多的力量？\",\n                            \"Contact our team\": \"聯繫我們團隊\",\n                            \"to enable 32-core or GPU machines.\": \"啟用 32 核或 GPU 機器。\",\n                            \"Update codespace\": \"升級程式碼空間\",\n                        \"Stop codespace\": \"停止程式碼空間\",\n                    \"Codespace configuration\": \"程式碼空間設置\",\n                    \"No changes\": \"未更改\",\n\n                    \"Codespace usage for this repository is paid for by\": \"該倉庫的程式碼空間使用費由以下人員支付\",\n\n                    \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了賬單問題。請調整您的賬單設置以繼續使用程式碼空間。\",\n\n                    // 被拉黑\n                        \"Repository access limited\": \"倉庫訪問受限\",\n                            \"You do not have access to push to this repository and its owner has disabled forking.\": \"您無權推送到此倉庫，其所有者已禁用了複刻。\",\n\n                    // [/Codespace \\\"(.+)\\\" stopped./, \"程式碼空間 “$1” 已停止。\"],\n                    // [/Codespace \\\"(.+)\\\" deleted./, \"程式碼空間 “$1” 已刪除。\"],\n                    // [/Are you sure you want to delete (.+)\\?/, \"您確定要刪除 $1 嗎？\"],\n\n                // Copilot\n                    \"Describe a change you'd like to make to this pull request, such as adding tests or documentation...\": \"描述您想對此拉取請求進行的更改，例如添加測試或文檔…\",\n                    \"Start task\": \"開始任務\",\n                    \"You can ask Copilot to make changes to this pull request by mentioning @copilot in a comment.\": \"您可以在評論中提及 @copilot，讓 Copilot 對此拉取請求進行更改。\",\n                    \"Copilot generated this review using guidance from\": \"Copilot 生成此次審查，使用\",\n                        \"repository custom instructions\": \"倉庫自定義指令\",\n\n            // 自動修復漏洞 提示\n                \"This automated pull request fixes a\": \"這個自動拉取請求將修復了一個\",\n                \"security vulnerability\": \"安全漏洞\",\n                \"Only users with access to Dependabot alerts can see this message.\": \"只有有權訪問 Dependabot 警報的用戶才能看到此消息。\",\n                \"Learn more about Dependabot security updates\": \"瞭解更多關於 Dependabot 安全更新的信息\",\n                \"opt out\": \"選擇退出\",\n            // 頂部提醒\n                \"Opted out of Dependabot security updates.\": \"選擇退出 Dependabot 安全更新。\",\n\n            // Dependabot 警報 拉取請求 提示\n                \"Merging this pull request will resolve a\": \"合併此拉取請求將解決\",\n                \"high\": \"高\",\n                \"severity\": \"嚴重性\",\n                    \"Filter alerts by 'high' severity.\": \"按“高”嚴重性過濾警報。\", // BUG: 不生效\n                \"Dependabot alert\": \"Dependabot 警報\",\n                \"on\": \"：\",\n                // 首次彈窗\n                    \"Your first automated security update\": \"您的第一個自動安全更新\",\n                        \"Dependabot security updates keep your projects secure and up-to-date.\": \"Dependabot 安全更新使您的專案安全且最新。\",\n                        \"You can opt out at any time in\": \"您可以在任何時候選擇退出在\",\n                        \"this repository’s settings\": \"倉庫設置\",\n                        \"Got it!\": \"我知道了\",\n\n                // 合併後頂部提醒\n                    // [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"該請求解決了 $1 的 Dependabot 警報問題。\"],\n\n            // 狀態詞\n            // [/merged (\\d+) commits? into/, \"將 4 個提交合併到\"],\n            \"into\": \"到\",\n            // \"merged\": \"已合併\",\n            \"wants to merge\": \"希望合併\",\n            \"commit into\": \"個提交到\",\n            \"commits into\": \"個提交到\",\n            \"from\": \"來自\",\n            \"closed this\": \"關閉了這個\",\n            \"reopened this\": \"重新打開了這個\",\n            \"added a commit that referenced this pull request\": \"添加了引用此拉取請求的提交\",\n            \"removed the request for review from\": \"取消請求審查\",\n            \"pushed a commit that referenced this pull request\": \"推送了一個引用此拉取請求的提交\",\n            \"suggested changes\": \"建議更改\",\n            \"deleted the branch\": \"刪除了分支\",\n            \"deleted a comment from\": \"刪除了評論從\",\n            // Copilot 專屬狀態詞\n            \"started work\": \"開工\",\n            \"on behalf of\": \"代表\",\n                \"View session\": \"查看\",\n            \"finished work\": \"完工\",\n            \"finished work on behalf of\": \"完工，代表\",\n            \"stopped work on behalf of\": \"停工，代表\",\n                \"due to an error\": \"因為錯誤\",\n\n            // 標籤欄\n            \"Conversation\": \"討論\",\n            // 提交\n                \"No new commits\": \"無新提交\", // 下方句子走正則\n                \"was force-pushed and no longer has any new commits. Pushing new commits will allow the pull request to be re-opened.\": \"分支已強制推送，並且不再包含任何新的提交。推送新的提交將允許重新打開拉取請求。\",\n            \"Checks\": \"檢查\",\n                \"Search logs\": \"搜索日誌\",\n                \"Pushing new commits will allow the pull request to be re-opened.\": \"推送新的提交將允許重新打開拉取請求。\", // 上面的句子走正則\n            \"Files changed\": \"更改的文件\",\n                \"No changes to show.\": \"無更改顯示。\", // 刪除複刻倉庫的提交時出現\n                \"This commit has no content.\": \"該提交無內容。\", // 同上\n              \"authored\": \"撰寫於\",\n\n            // 右側欄 補充\n                // 審查者\n                \"Reviewers whose approvals may not affect merge requirements\": \"審查者的批准可能不影響合併要求。\",\n\n                \"Allow edits by maintainers\": \"允許維護者進行編輯\",\n                    \"Allowing edits by maintainers\": \"允許維護者進行編輯\",\n                    \"If checked, users with write access to\": \"若勾選此項，擁有對\",\n                    \"can add new commits to\": \"具有寫入權限的用戶可以在您的\",\n                    \"branch.\": \"分支上添加新的提交。\",\n                    \"You can always change this setting later.\": \"您可以隨時修改此設置。\",\n                    \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通過授予寫入權限，維護者可能會編輯您倉庫的工作流程以揭示機密值，並獲取對其他分支的訪問權限。\",\n                    \"Got it\": \"知道了\",\n                    \"If checked,\": \"如果選中，\",\n                    // [/users with write access to ([^ ]+) can add new commits/, \"對 $1 具有寫權限的用戶可以添加新的提交\"], // 具體拉取請求\n                    \"to your\": \"到您的\",\n                    \"branch. You can always change this setting later.\": \"分支。您以後可以隨時更改此設置。\",\n                \"Allow edits and access to secrets by maintainers\": \"允許維護者編輯和訪問機密\",\n                    \"Maintainers could potentially edit this repository's workflows to reveal values of secrets and gain access to other branches.\": \"維護者有可能編輯這個倉庫的工作流程來獲取機密值，並獲得對其他分支的訪問。\",\n\n                \"Maintainers are allowed to edit this pull request.\": \"允許維護者編輯此拉取請求。\",\n\n                // 進展\n                    \"In progress\": \"進行中\",\n                    \"started\": \"開始於\",\n                    \"Copilot is done\": \"Copilot 已完成\",\n                    \"Copilot has failed\": \"Copilot 已失敗\",\n                    \"completed after\": \"總耗時\", // 示例：總耗時 11分45秒\n                    \"failed after\": \"失敗於\",\n\n            // 討論標籤卡 主頁\n            \"Refresh\": \"刷新\",\n\n            \"marked this pull request as draft\": \"將此拉取請求標記為草案\",\n            \"First-time contributor\": \"首次貢獻者\",\n            // [/This user is a first-time contributor to the ([^ ]+) repository./, \"該用戶是第一次為 $1 倉庫做貢獻。\"]\n            \"View changes\": \"查看更改\",\n            \"Outdated\": \"陳舊的\",\n            \"Resolve conversation\": \"轉為已解決對話\",\n                \"Resolving conversation…\": \"正在轉為已解決對話……\",\n            \"Unresolve conversation\": \"轉為未解決對話\",\n                \"Unresolving conversation…\": \"正在轉為未解決對話……\",\n                \"marked this conversation as resolved.\": \"已將此對話標記為已解決。\",\n            \"Changes requested\": \"更改請求\",\n            \"Change requested\": \"更改請求\",\n            \"Show resolved\": \"顯示已解決\",\n            \"Hide resolved\": \"隱藏已解決\",\n            \"Reviews\": \"審查\",\n            \"Show all reviewers\": \"顯示所有審查者\",\n            \"Hide all reviewers\": \"隱藏所有審查者\",\n            \"New changes since you last viewed\": \"自您上次查看以來的新變化\",\n            \"mentioned this pull request\": \"提及這個拉取請求\",\n            \"linked an issue\": \"鏈接議題\",\n            \"that may be\": \"將在該拉取請求合併時\",\n            \"closed\": \"關閉\",  // 浮動小字走正則\n            \"by this pull request\": \" \",\n            \"dismissed\": \"駁回\",\n            \"\\’s\": \" 的\",\n            \"stale review\": \"陳舊審查\",\n            \"via\": \"通過\",\n            \"force-pushed\": \"強制推送\",\n            \"enabled auto-merge (squash)\": \"啟用自動合併（壓縮）\",\n            \"the\": \" \",\n            \"branch from\": \"分支從\",\n            \"and others\": \"和其他成員\",\n            \"previously\": \"預先\",\n            \"approved these changes\": \"批准這些更改\",\n            \"previously approved these changes\": \"預先批准這些更改\",\n                \"See review\": \"查看審查\",\n                \"Dismiss review\": \"駁回審查\",\n            \"started a review\": \"開始審查\",\n                \"View reviewed changes\": \"查看已審核的更改\",\n            \"self-requested a review\": \"自我要求審查\",\n            \"self-assigned this\": \"已自我審查\",\n            \"unassign me\": \"取消自我分配\",\n            \"marked this pull request as ready for review\": \"已將此拉取請求標記為可審核\",\n            \"merged commit\": \"合併提交\",\n            \"left a comment\": \"發表評論\",\n            \"Add more commits by pushing to the\": \"添加更多提交，通過推送到\",\n            \"branch on\": \"分支在\",\n            \"requested review from\": \"請求審查\",\n                \"a team\": \"團隊\",\n                \"as a\": \"作為\",\n                \"code owner\": \"程式碼所有者\",\n            \"started reviewing\": \"開始審查\",\n            \"finished reviewing on behalf of\": \"完成審查，代表\",\n            \"This pull request was\": \"此拉取請求已\",\n            \"Compare\": \"比較\",\n            \"deleted the\": \"刪除\",\n            \"branch\": \"分支\",\n            \"added\": \"添加\",\n            \"requested changes\": \"要求更改\",\n            \"changed the title\": \"修改了標題\",\n            \"changed the base branch from\": \"更改基礎分支從\",\n            \"added the\": \"添加\",\n            \"label\": \"標籤\",\n            \"closed this\": \"已關閉\",\n            \"reopened this\": \"已重新打開\",\n            \"closed this by deleting the head repository\": \"已關閉因倉庫已刪除\",\n            \"Requested changes\": \"請求更改\",\n            \"restored the\": \"恢復\",\n            \"unlocked this conversation\": \"解鎖此對話\",\n            \"added this to the\": \"添加到\",\n            \"milestone\": \"里程碑\",\n            \"review requested due to automatic review settings\": \"因設置自動審查\",\n\n            //\n            \"This branch has not been deployed\": \"該分支尚未部署\",\n            \"No deployments\": \"未部署\",\n\n            // 拉取請求狀態\n            \"Review requested\": \"請求審查\",\n            \"New changes require approval from someone other than the last pusher.\": \"新更改需要最後推送者以外的其他人批准。\",\n            \"Review has been requested on this pull request. It is not required to merge.\": \"此拉取請求已請求進行審查。這不是合併的必要條件。\",\n            \"Learn more about requesting a pull request review.\": \"瞭解更多關於申請拉取請求審核的信息。\",\n            // [/(\\d+) pending reviewers?/, \"$1 名待審者\"],\n            \"was requested for review\": \"被請求審查\",\n\n            \"Changes reviewed\": \"更改已審查\",\n                \"No applicable reviews submitted by reviewers with write access.\": \"沒有具有寫入權限的審查者提交適用的審查意見。\",\n\n            // 已請求更改\n                // [/(\\d+) reviews? requesting changes by reviewers with write access./, \"$1 條評論請求更改由具有寫入權限的審查者進行更改。\"], // 拉取請求\n\n            \"All conversations are resolved\": \"所有對話均已解決\",\n                // [/(\\d+) resolved conversations?/, \"2 條對話已解決\"], // 拉取請求\n\n            \"No unresolved conversations\": \"沒有未解決的對話\",\n                \"There aren't yet any conversations on this pull request.\": \"此拉取請求尚無任何對話。\",\n\n            \"This pull request is still a work in progress\": \"此拉取請求仍在進行中\",\n                \"Ready for review\": \"準備審核\",\n                \"Draft pull requests cannot be merged.\": \"拉取請求草案不能合併。\",\n            \"This pull request can be automatically merged by project collaborators\": \"此拉取請求可以由專案協作者自動合併\",\n                \"Only those with\": \"只有對此倉庫具有\",\n                \"write access\": \"寫入訪問權限\",\n                \"to this repository can merge pull requests.\": \"的才可合併拉取請求。\",\n                \"to this repository can mark a draft pull request as ready for review.\": \"的才可將拉取請求草案標記為可供審查。\",\n\n            // \"Review required\": \"需要審查\", // 拉取請求 頁面狀態詞\n                \"Add your review\": \"添加您的評論\",\n                // [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有寫入權限的審查者至少需要 $1 次批准審查。\"],\n            \"Code owner review required\": \"需要程式碼所有者審核\",\n                \"was requested for review as a code owner\": \"要求以程式碼所有者身份進行審查\",\n            \"Conversation resolution required\": \"需要解決對話\",\n                \"A conversation must be resolved before this pull request can be merged.\": \"在合併此拉取請求前，必須先解決對話。\",\n            \"Learn more about pull request reviews.\": \"瞭解更多關於拉取請求審核的信息。\",\n            \"Changes approved\": \"變更已獲批准\",\n            \"Approval not required\": \"不需要批准\",\n            \"This pull request may be merged without approvals.\": \"可以在沒有批准的情況下合併此拉取請求。\",\n            // [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 個批准的審查由具有寫入權限的審查者進行審查。\"],\n            // [/(\\d+) approvals?/, \"$1 項批准\"],\n            \"Some checks haven’t completed yet\": \"有些檢查還沒有完成\",\n            // [/1 in progress check/, \"$1個正在進行的檢查\"],\n            \"Some checks were not successful\": \"有些檢查不成功\",\n            // [/1 skipped, 4 successful, and 2 failing checks/, \"$1 個跳過, $2 個成功, $3 失敗\"],\n            // [/1 skipped, 4 successful, and 2 expected checks/, \"$1 個跳過, $2 個成功, $3 個預先檢查\"],\n            \"All checks have passed\": \"所有檢查均已通過\",\n            \"All checks have failed\": \"所有檢查均失敗\",\n            // [/5 successful checks/, \"\"],\n            // [/6 checks passed/, \"\"],\n                \"Show all checks\": \"顯示所有檢查\",\n                \"Hide all checks\": \"隱藏所有檢查\",\n                \"Details\": \"細節\",\n                \"Required\": \"必須\",\n                \"Checks settings\": \"檢查設置\",\n                    \"Group by status\": \"按狀態分組\",\n                    \"No grouping\": \"不分組\",\n            \"Unresolved conversations\": \"未解決的討論\",\n                // [/(\\d+) conversations? must be resolved before merging./, \"合併之前必須解決 $1 個對話。\"],\n            \"No conflicts with base branch\": \"與基礎分支沒有衝突\",\n                \"Changes can be cleanly merged.\": \"更改可以被幹淨地合併。\",\n\n                \"Update branch options\": \"更新分支選項\",\n            \"Merging is blocked\": \"合併被阻止\",\n                \"Commits must have verified signatures.\": \"提交必須驗證簽名。\",\n                \"The base branch requires all conversations on code to be resolved.\": \"基礎分支要求解決所有關於程式碼的對話。\",\n                \"The base branch requires all commits to be signed.\": \"基礎分支要求所有提交都經過簽名。\",\n                \"Learn more about signing commits.\": \"瞭解更多關於簽名提交的信息。\",\n                \"View rules\": \"查看規則\",\n                // 無權提交\n                \"You're not authorized to push to this branch. Visit\": \"您沒有權限推送到此分支。請訪問\",\n                    \"for more information.\": \"獲取更多信息。\",\n                // 新版合併界面\n                \"Merge is not an allowed merge method in this repository.\": \"合併不是此倉庫允許的合併方法。\",\n                \"Pull request cannot be merged because it has a merge conflict.\": \"由於存在合併衝突，無法合併拉取請求。\",\n                \"User does not have push access to the repository.\": \"用戶無權推送到此倉庫。\",\n                \"You're not authorized to push to this branch. Visit https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches for more information.\": \"您無權推送到該分支。請訪問 https://docs.github.com/repositories/configuring-branches-and-merges-in-your-repository/managing-protected-branches/about-protected-branches 瞭解更多信息。\",\n\n                // 繞過規則合併\n                \"Merge without waiting for requirements to be met (bypass rules)\": \"無需等待滿足要求即可合併（繞過規則）\",\n                \"Bypass rules and merge\": \"繞過規則合併\",\n                    \"Confirm bypass rules and merge\": \"確認繞過規則合併\",\n                \"Bypass rules and merge (squash)\": \"繞過規則合併（壓縮）\",\n                    \"Confirm bypass rules and merge (squash)\": \"確認繞過規則合併（壓縮）\",\n                \"Bypass rules and merge (rebase)\": \"繞過規則合併（變基）\",\n                    \"This will rebase your changes and merge them into\": \"將更改變基合併到\",\n                    \"Confirm bypass rules and merge (rebase)\": \"確認繞過規則合併（變基）\",\n\n            \"Merging can be performed automatically once the requested changes are addressed.\": \"一旦請求的更改得到解決，合併就可以自動執行。\",\n            \"This branch is out-of-date with the base branch\": \"此分支相比基礎分支已過時\",\n                \"Merge the latest changes from\": \"將\",\n                \"into this branch.\": \"的最新更改合併到此分支中。\",\n                    \"Update branch\": \"更新分支\",\n                        \"Update with merge commit\": \"使用合併提交更新\",\n                            \"The latest changes will be merged into this branch with a merge commit.\": \"最新的更改將通過合併提交合併到此分支中。\",\n                            \"The merge commit will be associated with your account.\": \"合併提交將與您的賬戶相關聯。\",\n                        \"Update with rebase\": \"使用變基更新\",\n                            \"This branch cannot be rebased due to conflicts.\": \"由於衝突，此分支不能變基。\",\n                            \"This pull request will be rebased on top of the latest changes and then force pushed.\": \"此拉取請求將會在最新的更改之上進行變基，並且會使用強制推送的方式提交。\",\n                            \"This branch cannot be rebased due to conflicts\": \"由於衝突，無法對此分支執行變基操作。\",\n                // [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"將最新更改從 $1 分支合併到當前分支。該合併提交將與用戶 $2 相關聯。\"],\n\n            \"The base branch restricts merging to authorized users.\": \"基礎分支合併僅限於授權用戶。\",\n            \"Learn more about protected branches.\": \"瞭解更多關於受保護分支的信息。\",\n            // [/Merging can be performed automatically with (\\d+) approving review./, \"合併可以通過 $1 次批准審查自動執行。\"],\n            \"Merge without waiting for requirements to be met (bypass branch protections)\": \"合併而無需等待需求滿足（繞過分支保護）。\",\n                \"Extended description\": \"擴展描述\",\n                \"Add an optional extended description…\": \"添加可選的擴展描述…\",\n                // [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"],\n            \"Checks awaiting conflict resolution\": \"等待衝突解決\",\n\n            // 合併失敗提示\n                \"Merge attempt failed\": \"合併嘗試失敗\",\n                \"We couldn’t merge this pull request. Reload the page before trying again.\": \"我們無法合併此請求。重新加載頁面後再試。\",\n\n            // [/(\\d+) workflow awaiting approval/, \"$1 個工作流等待批准\"],\n            \"First-time contributors need a maintainer to approve running workflows.\": \"首次貢獻者需要維護者來批准正在運行的工作流。\",\n            \"The base branch does not accept merge commits. Alternate merge methods are preferred.\": \"基礎分支不接受合併提交。其他合併方法是首選。\",\n            // [/The ([^ ]+) branch requires linear history/, \"$1 分支為要求線性歷史記錄\"],\n            \"Learn more about required linear history.\": \"瞭解更多關於要求線性歷史記錄的信息。\",\n\n            \"Checking for the ability to merge automatically...\": \"檢測自動合併的能力…\",\n            \"Hang in there while we check the branch's status.\": \"請等待，我們正在檢查該分支的狀態\",\n\n            \"Required statuses must pass before merging\": \"合併前必須通過所需的狀態\",\n            \"All required\": \"所有必需\",\n            \"statuses\": \"狀態\",\n            \"and check runs on this pull request must run successfully to enable automatic merging.\": \"和檢查運行在該拉取請求上必須成功運行，才能啟用自動合併。\",\n\n            \"Continuous integration has not been set up\": \"尚未設置持續集成\",\n            \"several other apps\": \"其他一些應用\",\n            \"can be used to automatically catch bugs and enforce style.\": \"可用於自動捕獲錯誤和強制執行樣式。\",\n\n            \"This branch has no conflicts with the base branch\": \"該分支與基礎分支沒有衝突\",\n            \"No conflicts with base branch\": \"與基本分支無衝突\",\n                \"Merging can be performed automatically.\": \"可以自動地執行合併。\",\n                \"Changes can be cleanly merged.\": \"可以乾淨地合併更改。\",\n\n            \"This branch has no conflicts with the base branch when rebasing\": \"該分支基變時與基礎分支沒有衝突。\",\n                \"Rebase and merge can be performed automatically.\": \"可以自動執行變基和合併。\",\n\n                \"You’re not\": \"您無\",\n                \"authorized\": \"權限\",\n                \"to merge this pull request.\": \"合併此拉取請求。\",\n\n            \"Merge pull request\": \"合併拉取請求\",\n                \"Merging is blocked due to failing merge requirements\": \"由於未滿足合併要求，合併已被阻止。\",\n            // 合併拉取請求 按鈕下拉\n            \"Select merge method\": \"選擇合併方式\",\n                \"Create a merge commit\": \"創建合併提交\",\n                    \"All commits from this branch will be added to the base branch via a merge commit.\": \"該分支的所有提交都將通過合併提交加入到基礎分支中。\",\n                    \"Not enabled for this repository\": \"未為此倉庫啟用\",\n                \"Squash and merge\": \"壓縮合併\",\n                    // [/The (\\d+) commits? from this branch will be added to the base branch./, \"該分支的 $1 個提交將合併到基本分支中。\"],\n                \"Rebase and merge\": \"變基合併\",\n                    // [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"該分支的 $1 個提交將變基合併到基礎分支中。\"],\n                    \"Failed to load repo merge settings\": \"無法加載倉庫合併設置\",\n\n            //確認合併 對話框\n                // 新版合併界面\n                \"Commit header\": \"提交標題\",\n                \"Commit message\": \"提交信息\",\n                \"This commit will be authored by\": \"此提交的作者是\",\n            \"Confirm merge\": \"確認合併\",\n            \"Confirm squash and merge\": \"確認壓縮合併\",\n            \"Confirm rebase and merge\": \"確認變基合併\",\n            \"Merging…\": \"合併中…\",\n\n            \"You can also\": \"您也可以\",\n            \"open this in GitHub Desktop\": \"在 GitHub Desktop 中打開\",\n            \"or view\": \"，或查看\",\n            \"You can also merge this with the command line, view\": \"您也可以使用命令行合併，查看\",\n            \"command line instructions\": \"命令行指令\",\n            \"You can also merge this with the command line.\": \"您也可以使用命令行合併。\",\n            \"View command line instructions.\": \"查看命令行指令。\",\n\n            // \"Merged\": \"已合併\",\n            \"More actions\": \"更多操作\",\n            \"View details\": \"查看詳情\",\n            \"Hide details\": \"隱藏詳情\",\n            \"Revert\": \"還原\",\n                \"Create a new pull request to revert these changes\": \"創建一個新的拉取請求以恢復這些更改\",\n            \"Closed with unmerged commits\": \"已關閉的未合併的提交\",\n                \"This pull request is closed.\": \"此拉取請求已關閉。\",\n\n            \"Pull request successfully merged and closed\": \"拉取請求已成功合併並關閉\",\n                \"You're all set — the\": \"一切就緒\",\n                \"branch has been merged and deleted.\": \"分支已合併並刪除。\",\n                \"You're all set — the branch has been merged.\": \"一切就緒 - 該分支已合併。\",\n            \"Delete branch\": \"刪除分支\",\n            \"Restore branch\": \"恢復分支\",\n\n            \"Pull request closed\": \"拉取請求已關閉\",\n            \"This pull request is closed, but the\": \"此拉取請求已關閉，但是\",\n            \"branch has unmerged commits.\": \"分支具有未合併的提交。\",\n            \"branch has unmerged commits. You can delete this branch if you wish.\": \"分支具有未合併的提交。您可以根據需要刪除此分支。\",\n            \"If you wish, you can also delete this fork of\": \"如果需要，還可以刪除此複刻\",\n            \"If you wish, you can delete this fork of\": \"如果需要，可以刪除此複刻\",\n            \"in the\": \"在\",\n            \"settings\": \"設置\",\n\n            // \"Only those with\": \"只有對此倉庫具有\",\n            // \"write access\": \"寫入訪問權限\",\n            // \"to this repository can merge pull requests.\": \"的才可合併拉取請求。\",\n            \"You’re all set — the\": \"一切就緒 —\",\n            \"You’re all set—the\": \"一切就緒 —\",\n            \"branch can be safely deleted.\": \"分支可以被安全刪除。\",\n            \"This branch has conflicts that must be resolved\": \"該分支存在衝突，必須解決\",\n                \"Resolve conflicts then push again. These conflicts are too complex to resolve in the web editor. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"解決衝突後再次推送。這些衝突過於複雜，無法在 Web 編輯器中解決。當該拉取請求存在合併衝突時，操作工作流將不會觸發該拉取請求的活動。\",\n                \"These conflicts are too complex to resolve in the web editor.\": \"這些衝突過於複雜，無法在網頁編輯器中解決。\",\n                \"You do not have permission to push to the head branch.\": \"您沒有權限向主分支推送。\",\n                \"Use the command line\": \"使用命令行\",\n                \"to resolve conflicts before continuing.\": \"解決衝突後再繼續。\",\n                \"or the command line to resolve conflicts before continuing. Actions workflows will not trigger on activity from this pull request while it has merge conflicts.\": \"或通過命令行解決衝突。在此拉取請求仍存在合併衝突的情況下，操作工作流不會因該拉取請求的活動而觸發。\",\n                \"or the command line to resolve conflicts before continuing.\": \"或通過命令行解決衝突後再繼續。\",\n                \"Use the command line to resolve conflicts before continuing.\": \"使用命令行解決衝突後再繼續。\",\n\n                \"Checkout via command line\": \"通過命令行檢出\",\n                \"Checkout via the command line\": \"通過命令行檢出\", // 新版合併界面\n                \"If the conflicts on this branch are too complex to resolve in the web editor, you can check it out via command line to resolve the conflicts.\": \"如果該分支上的衝突過於複雜，無法在 Web 編輯器中解決，您可以通過命令行檢出來解決衝突。\",\n                \"If you do not want to use the merge button or an automatic merge cannot be performed, you can perform a manual merge on the command line. However, the following steps are not applicable if the base branch is protected.\": \"如果不想使用合併按鈕或無法執行自動合併，可以在命令行上執行手動合併。但若基本分支受到保護，則不適用以下步驟。\", //新版合併界面\n                \"Step\": \"步驟\", // 新版合併界面\n                \"Step 1:\": \"第 1 步：\",\n                    \"From your project repository, check out a new branch and test the changes.\": \"從專案倉庫中，檢出新分支並測試更改。\",\n                    \"Clone the repository or update your local repository with the latest changes.\": \"克隆倉庫或使用最新更改更新本地倉庫。\",\n                \"Step 2:\": \"第 2 步：\",\n                    \"Merge the changes and update on GitHub.\": \"合併更改並在 GitHub 上更新。\",\n                    \"Switch to the head branch of the pull request.\": \"切換到拉取請求的頭部分支。\",\n                \"Step 3:\": \"第 3 步：\",\n                    \"Merge the base branch into the head branch.\": \"將基礎分支合併至頭部分支。\",\n                \"Step 4:\": \"第 4 步：\",\n                    \"Fix the conflicts and commit the result.\": \"修復衝突並提交。\",\n                    \"See\": \"查閱\",\n                        \"Resolving a merge conflict using the command line\": \"使用命令行解決合併衝突\",\n                        \"for step-by-step instructions on resolving merge conflicts.\": \"的分步說明。\",\n                \"Step 5:\": \"第 5 步：\",\n                    \"Push the changes.\": \"推送更改。\",\n                // 新版合併界面 複製按鈕\n                    \"Copy clone URL\": \"複製克隆鏈接\",\n                    \"Copy clone command\": \"複製克隆命令\",\n                    \"Copy checkout command\": \"複製切換命令\",\n                    \"Copy merge command\": \"複製合併命令\",\n                    \"Copy push command\": \"複製推送命令\",\n\n            \"Resolve conflicts\": \"解決衝突\",\n                \"Use the\": \"使用\",\n                \"web editor\": \"Web 編輯器\",\n                \"or the\": \"或\",\n                \"command line\": \"命令行\",\n                \"to resolve conflicts.\": \"來解決衝突。\",\n                \"These conflicts are too complex to resolve in the web editor\": \"這些衝突過於複雜，無法在網頁編輯器中解決\",\n            \"Conflicting files\": \"衝突的文件:\",\n\n            \"Require approval from specific reviewers before merging\": \"合併前需要特定審查者的批准\",\n                \"Branch protection rules\": \"分支保護規則\",\n                \"Rulesets\": \"規則集\",\n                \"ensure specific people approve pull requests before they're merged.\": \"確保特定人員在合併之前批准拉取請求。\",\n            \"Add rule\": \"添加規則\",\n            // [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"確保特定的人或團隊在拉取請求被合併到您的 $1 分支之前批准它們。\"], // 合併拉取請求\n\n            // [/(\\d+) workflows? awaiting approval/, \"$1 個工作流程等待批准\"],\n            \"This workflow requires approval from a maintainer.\": \"此工作流程需要維護者批准。\",\n            \"Learn more about approving workflows.\": \"瞭解更多關於批准工作流程的信息。\",\n            \"Approve and run\": \"批准並運行\",\n            \"Approve and run workflows\": \"批准並運行工作流程\",\n            \"Approve workflows to run\": \"批准運行工作流程\",\n\n            // 狀態詞\n            \"reviewed\": \"審查\",\n            \"requested a review from\": \"請求審查\",\n            \"Reply...\": \"回覆…\",\n\n            // 程式碼審查回覆\n            \"Suggestions cannot be applied on outdated comments.\": \"建議不要應用於過時的評論。\",\n            \"Suggested change\": \"更改建議\",\n            \"This code change can be committed by users with write permissions.\": \"具有寫入權限的用戶可以提交此程式碼更改。\",\n\n            \"This branch was successfully deployed\": \"該分支已成功部署\",\n            \"Show environments\": \"顯示環境\",\n            // [/(\\d+) active deployments?/, \"$1 個活動的部署\"],\n\n            // 評論輸入框選項，僅PR界面有\n                \"Copilot actions\": \"Copilot 操作\",\n                   \"Generate\": \"生成\",\n                   \"Summary\": \"總結\",\n                   \"Generate a summary of the changes in this pull request.\": \"生成此拉取請求的更改摘要。\",\n                \"Summarizing changes… this might take a minute\": \"總結更改…這可能需要 1 分鐘\",\n\n        // 拉取請求 --> 提交 標籤卡 /<user-name>/<repo-name>/pull/<id>/commits\n            // 頂部提示\n                \"This pull request is big! We're only showing the most recent 250 commits\": \"該拉取請求過大！僅顯示最近 250 次提交\",\n            \"Commits\": \"提交\",\n            // [/Commits (.+)/, \"提交於 $1\"]\n            \"committed\": \"提交於\",\n\n            \"Copy the full SHA\": \"複製完整的 SHA\",\n            \"View commit details\": \"查看提交詳情\",\n            \"Browse the repository at this point in the history\": \"瀏覽該階段的歷史倉庫內容\",\n\n        // 拉取請求--> 提交 --> 某提交詳情/<user-name>/<repo-name>/pull/<id>/commits/<full SHA>\n            \"commit\": \"提交\",\n            // 修改的文件 左側 展開按鈕\n            \"Expand all\": \"展開全部\",\n            \"Expand All\": \"展開全部\",\n            \"Collapse expanded lines\": \"摺疊展開行\",\n            \"Expand Up\": \"向上展開\",\n            \"Expand Down\": \"向下展開\",\n\n            // 修改的 yaml 文件，預覽窗口\n            \"Loading Dependency Review...\": \"正在加載依賴審查…\",\n            \"No dependencies changed.\": \"未更改依賴。\",\n                \"The changes to this file likely do not affect the dependencies\": \"對此文件的更改可能不會影響依賴\",\n\n            \"Give feedback on\": \"提交反饋，在\",\n                \"dependency review\": \"依賴項審查\",\n\n            // 修改的文件 右側下拉\n            \"Show comments\": \"顯示評論\",\n            \"Show annotations\": \"顯示註釋\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"編輯文件\",\n            \"Delete file\": \"刪除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打開\",\n            \"Copilot is not available for this file type\": \"Copilot 不支持此文件類型\",\n\n            // 上一頁\n            \"You are viewing the earliest commit\": \"您正在查看最早的提交\",\n            // 下一頁\n            \"You are viewing the latest commit\": \"您正在查看最新的提交\",\n\n            \"This merge commit was added into this branch cleanly.\": \"該合併提交被幹淨利落地添加到該分支中。\",\n                \"There are no new changes to show, but you can still\": \"沒有新的更改可顯示，但您仍然可以\",\n                \"view the diff.\": \"查看差異。\",\n\n            // 中間\n            \"Loading branch information\": \"正在加載分支信息\",\n\n            \"Some comments aren't visible on the classic Files Changed page.\": \"某些評論在傳統更改的文件頁不可見。\",\n\n        // 拉取請求 --> 更改的文件 標籤卡 /<user-name>/<repo-name>/pull/<id>/files\n            // 網絡錯誤\n            \"There was an issue loading this file\": \"加載此文件時出錯\",\n                \"Try refreshing the page or if the problem persists\": \"請嘗試刷新頁面，如果問題仍然存在，請\",\n                    \"contact support\": \"聯繫支持人員\",\n\n            \"Try the new experience\": \"嘗試新體驗\",\n            // 工具條\n            \"Browse files\": \"瀏覽文件\", // 兩個提交的比較頁面\n\n            \"Show file tree\": \"顯示文件樹\",\n            \"Hide file tree\": \"隱藏文件樹\",\n            \"Changes from\": \"更改自\",\n                \"all commits\": \"所有提交\",\n                // 下拉\n                \"Show all changes\": \"顯示所有更改\",\n                // [/(\\d+) commits?/, \"$1 條提交\"],\n                \"Show changes since your last review\": \"顯示自您上次評論以來的更改\",\n                // \"You haven‘t reviewed this pull requeste\": \"您尚未審查過此請求請求\",\n                \"You haven’t reviewed this pull request yet\": \"您尚未審查此請求請求\",\n                \"Select commit\": \"選擇提交\",\n                \"Hold shift + click to select a range\": \"按住 shift + 單擊以選擇一個範圍\",\n            \"File filter\": \"文件篩選\",\n                \"Filter by extension\": \"按文件後綴名篩選\",\n                    \"No extension\": \"無後綴名\",\n                    // [/All (\\d+) file types? selected/, \"所有 $1 種文件類型被選中\"],\n                    // [/Select all 1 file types?/, \"選擇所有 $1 種文件類型\"],\n                    \"Only manifest files\": \"僅清單文件\",\n                \"There are no files selected for viewing\": \"沒有選擇要查看的文件\",\n                \"Viewed files\": \"查看過的文件\",\n                // \"filter file types\": \"篩選文件類型\",\n                // \"filter viewed files\": \"篩選已查看文件\",\n                // \"hide viewed files\": \"隱藏已查看文件\",\n                // \"filter by context\": \"按內容篩選\",\n            \"Clear filters\": \"清除篩選\",\n            \"Conversations\": \"討論\",\n            \"Jump to conversation\": \"跳轉到討論\",\n                \"Give feedback\": \"反饋\",\n                // [/Unresolved conversations/, \"未解決的討論\"],\n                \"Nice work!\": \"幹得好！\",\n                \"All of your conversations have been resolved.\": \"您的所有討論都已解決。\",\n                // [/Resolved conversations/, \"已解決的討論\"],\n                \"No conversations yet\": \"尚無討論\",\n                \"Review conversations will show up here.\": \"審查討論將顯示在這裡。\",\n            // \"Jump to\": \"跳轉到\",\n                \"Jump to file\": \"跳轉到文件\",\n                \"Filter changed files\": \"篩選已更改文件\",\n                    \"No files found.\": \"未找到文件。\",\n            // 差異視圖\n                \"Diff view\": \"差異視圖\",\n                // \"Always\": \"總是\",\n                \"Unified\": \"同屏\",\n                \"Split\": \"分屏\",\n                // \"Just for now\": \"僅當前\",\n                // \"Hide whitespace changes\": \"隱藏空白更改\",\n                \"Hide whitespace\": \"隱藏空白\",\n                \"Apply and reload\": \"應用並重新加載\",\n            \"Show whitespace\": \"顯示空白\",\n            \"Expand file\": \"展開文件\",\n            \"Collapse file\": \"摺疊文件\",\n            // \"Refresh\": \"刷新\",\n            // 複製文件按鈕\n                \"Copy file name to clipboard\": \"複製文件名到剪切板\",\n\n            \"Open overview side panel\": \"打開概覽側邊欄\",\n                \"Close overview panel\": \"關閉\", // 過於囉嗦省略\n            // 評論\n                \"No replies\": \"無回覆\",\n\n            \"files viewed\": \"查看過的文件\",\n                \"Marking files as viewed can help keep track of your progress, but will not affect your submitted review\": \"將文件標記為已查看可以幫助您跟蹤進度，但不會糾正您提交的審查\",\n            // 諮詢 Copilot\n                \"Loading Copilot features…\": \"加載 Copilot 功能…\",\n                \"Copilot is not available for this pull request\": \"Copilot 不可用於此拉取請求\",\n            \"Review in codespace\": \"在程式碼空間中審查\",\n            // \"Review changes\": \"審查更改\", // 使用 Selector 規則翻譯\n                // 下拉\n                \"Finish your review\": \"完成審查\",\n                    \"Submit general feedback without explicit approval.\": \"未批准，並提出一般性反饋意見。\",\n                \"Approve\": \"批准\",\n                    \"Submit feedback approving these changes.\": \"批准，並提出反饋意見。\",\n                    \"Submit feedback and approve merging these changes.\": \"提交反饋意見並批准合併這些更改。\",\n                    \"Pull request authors can’t approve their own pull request.\": \"拉取請求作者無法批准自己的拉取請求。\",\n                    \"Only users with explicit access to this repository may approve pull requests\": \"只有對這個倉庫有明確訪問權限的用戶才能批准拉取請求\",\n                \"Request changes\": \"請求更改\",\n                    \"Submit feedback suggesting changes.\": \"請求更改，並提出更改反饋意見。\",\n                    \"Submit feedback that must be addressed before merging.\": \"提交合併前必須解決的反饋意見\",\n                    \"Pull request authors can’t request changes on their own pull request.\": \"拉取請求作者不能在自己的拉取請求上請求更改。\",\n                    \"Only users with explicit access to this repository may request changes to pull requests\": \"只有對這個倉庫有明確訪問權限的用戶才能請求更改拉取請求\",\n                \"Abandon review\": \"放棄審核\",\n                \"Submit review\": \"提交審查\",\n                    // 頂部提醒\n                        \"You need to leave a comment indicating the requested changes.\": \"您需要留下評論，說明所要求的更改。\",\n                \"Cancel review\": \"取消審核\",\n                \"pending\": \"條待處理\",\n                \"comment\": \"評論\",\n                \"comments\": \"評論\",\n\n            \"Review changes\": \"審查更改\",\n                // 被鎖定\n                \"This conversation has been locked and limited to collaborators.\": \"此對話已鎖定，並限制與協作者對話。\",\n\n            \"Viewed\": \"已查看\",\n            \"Comment on this file\": \"評論此文件\",\n            \"Comment on file\": \"評論此文件\",\n\n            \"No changes to show\": \"沒有更改\",\n                \"This commit does not include any file changes\": \"此提交未包含文件更改\",\n\n            \"Load diff\": \"載入差異\", // old 待清理\n            \"Load Diff\": \"載入差異\", // new\n            \"This file was deleted.\": \"該文件已被刪除\",\n            \"Large diffs are not rendered by default.\": \"默認情況下，大的差異不會被呈現。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默認不呈現。瞭解更多信息關於\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的顯示方式\", // old 待清理\n            \"customizing how changed files appear on GitHub.\": \"自定義更改文件在 GitHub 中的顯示方式。\", // new\n            \"File renamed without changes.\": \"文件僅重命名，內容沒有更改。\",\n            \"File renamed without changes\": \"文件僅重命名，內容沒有更改\",\n            \"Binary file not shown.\": \"不顯示二進制文件。\",\n            \"Display the source diff\": \"顯示源差異\",\n            \"Display the rich diff\": \"顯示富差異\",\n                \"Added\": \"增加\",\n                \"Deleted\": \"刪除\",\n                \"2-up\": \"並排\",\n                \"Swipe\": \"拖拽\",\n                \"Onion Skin\": \"漸變\",\n\n            // 大型拉取請求提示\n            \"This page has been optimized for large pull requests. Some browser features (like Find on Page or Select All) may not work as expected.\": \"此頁面已針對大型拉取請求進行了優化。某些瀏覽器功能（如頁面查找或全選）可能無法正常工作。\",\n                \"Switch to single file mode\": \"切換至單文件模式\",\n\n            \"These merge commits were added into this branch cleanly.\": \"這些合併提交已被幹淨利落地添加到該分支中。\",\n                \"There are no new changes to show.\": \"沒有任何新的變化。\",\n\n            // 未更改文件檢查註釋(GA 檢查)\n                \"Unchanged files with check annotations\": \"帶檢查註釋的未更改文件\",\n                    \"View workflow job for this annotation\": \"查看此註釋的工作流程作業\",\n\n            // 程式碼評論\n                \"Comment on lines\": \"評論行\",\n                \"Commenting on lines\": \"評論行\",\n\n            // Copilot 菜單\n                \"Ask Copilot about this diff\": \"與 Copilot 討論此差異\",\n                    \"Copilot is not available for this file type\": \"Copilot 不支持此文件類型\",\n                \"Ask Copilot about this file-diff\": \"與 Copilot 討論此文件差異\",\n                \"Copilot menu\": \"Copilot 菜單\",\n                    \"Explain\": \"解釋\",\n                    \"Attach to current thread\": \"附加到當前主題\",\n                    \"Reference added to thread\": \"已附加至主題\", // 左下角浮窗\n                    \"Ask about this diff\": \"詢問此差異\",\n\n                \"Select files to discuss\": \"選擇文件討論\",\n                    \"Copilot is not available for this file\": \"Copilot 不支持此文件\",\n                    \"Start chat\": \"開始聊天\",\n\n            // 建議更改\n                \"Suggested change\": \"建議更改\",\n                \"Sign off and commit suggestion\": \"簽署並提交建議\",\n                    \"Suggestions cannot be applied from pending reviews.\": \"無法應用待審核中的更改\",\n                    \"This suggestion has been applied or marked resolved.\": \"該建議已被應用或標記為已解決。\",\n                    \"Outdated suggestions cannot be applied.\": \"過時建議不能應用。\",\n                \"Add suggestion to batch\": \"批量添加建議\",\n                    \"Add this suggestion to a batch that can be applied as a single commit.\": \"將此建議添加到可批量處理的單個提交中。\",\n                    \"Batching suggestions must be done from the files tab.\": \"批處理建議必須在 “文件” 選項卡中進行。\",\n                \"Commit suggestion\": \"提交建議\",\n\n                \"Pending in batch\": \"待批量處理\",\n                \"Remove from batch\": \"從批量處理中移除\",\n                    \"Remove this suggestion from those to be applied in batch\": \"從批量應用的建議中刪除此建議\",\n                \"Sign off and commit suggestions\": \"簽署並提交建議\",\n                    \"Apply all batched suggestions as a single commit\": \"將所有批量建議作為單個提交應用\",\n                \"Sign off and commit changes\": \"簽署並提交更改\",\n                    \"Applying commit...\": \"正在應用提交…\",\n\n                \"This diff has recently been updated.\": \"該差異最近已更新。\",\n                \"Refresh and try again.\": \"刷新並重試。\",\n\n                \"Multiple suggested changes can be batched together in a single commit. Each suggestion author will be attributed in the commit as a co-author.\": \"多個建議更改可以在一次提交中批量處理。每個建議作者都將在提交中被歸為共同作者。\",\n\n            // 新版\n                \"Switch back\": \"返回舊版\",\n                \"Feedback\": \"反饋\",\n\n                \"Collapse file tree\": \"摺疊文件樹\",\n                \"Expand file tree\": \"展開文件樹\",\n\n                \"All changes\": \"所有更改\",\n                \"All commits\": \"所有提交\",\n                \"Changes since your last review\": \"自您上次審核以來的更改\",\n                \"Specific commit…\": \"特定提交…\",\n                    \"Pick one or more commits\": \"選擇多個提交\",\n                    \"Clear selection\": \"清除選擇\",\n                        \"Picking a range will select commits in between.\": \"選擇一個範圍將會選中其間的提交。\",\n\n                \"viewed\": \"已審查\",\n\n                \"Comments\": \"評論\",\n                \"Submit\": \"提交\",\n                    \"review\": \"審查\",\n\n                \"Filter files…\": \"篩選文件…\",\n                \"Filter options\": \"選項\",\n                    \"File extensions\": \"文件擴展名\",\n\n                \"Layout\": \"結構\",\n                \"Minimize comments\": \"最小化評論\",\n                \"Compact line height\": \"緊湊行高\",\n\n                \"Select all\": \"全選\",\n                \"Expand above\": \"向上展開\",\n                \"Expand below\": \"向下展開\",\n                \"Go to next hunk\": \"下一塊\",\n\n        // 拉取請求 --> 更改的文件 標籤卡 /<user-name>/<repo-name>/pull/<id>/files/<full SHA>\n            \"You are viewing a condensed version of this merge commit. You can view the\": \"您正在查看該合併提交的濃縮版本。您可以查看\",\n            \"full changes here\": \"完整的更改\",\n\n            \"We went looking everywhere, but couldn’t find those commits.\": \"我們嘗試尋找，就是找不到那些提交者。\",\n            \"Sometimes commits can disappear after a force-push. Head back to the\": \"有時提交會在強推後消失。頭部回到\",\n            \"latest changes here\": \"最新的更改\",\n\n            \"Previous file (K)\": \"上個文件 (K)\",\n            \"Next file (J)\": \"下個文件 (J)\",\n\n            \"Comment on line\": \"評論行\",\n            \"Expand comment\": \"展開評論\",\n            \"Collapse comment\": \"摺疊評論\",\n            \"Unresolve comment\": \"取消解決評論\",\n                \"marked this comment as resolved\": \"標記為已解決\",\n            \"Resolve comment\": \"解決評論\",\n                \"Apply suggestion\": \"應用建議\",\n                    \"More suggestion batching options\": \"更多選項\",\n                        \"This feature is not supported yet.\": \"此功能尚未支持。\",\n            \"Return to code\": \"返回程式碼\",\n            \"Reference in a new issue\": \"在新議題中引用\",\n\n            // 圖片壓縮\n            \"You're in single-file mode\": \"當前為單文件模式\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由於此拉取請求中的更改數量較多，因此一次只顯示一個文件。\",\n\n                \"buttons to move between files.\": \"按鈕在文件之間移動。\",\n\n                \"OK, got it\": \"知道了\",\n\n            // 評論\n                \"Filter comments\": \"篩選評論\",\n                    \"Show resolved comments\": \"顯示已解決評論\",\n                    \"Show outdated comments\": \"顯示陳舊的評論\",\n\n                \"No comments on changes yet\": \"還沒有評論\",\n                    \"Comments will show up here as soon as there are some.\": \"評論將在此顯示。\",\n\n                // Copilot\n                    \"Implement suggestion\": \"採納建議\",\n                    \"Mention Copilot\": \"提及 Copilot\",\n                        \"Copilot isn't available for cross-repository pull requests\": \"Copilot 在跨倉庫的拉取請求中不可用\",\n\n        // 拉取請求 --> 解決衝突 /<user-name>/<repo-name>/pull/<id>/conflicts\n            \"Resolving conflicts\": \"解決衝突\",\n            \"between\": \" \",\n            \"and committing changes\": \"並提交更改\",\n            // [/(\\d+) conflicting files?/, \"$1 個衝突文件\"],\n            // [/(\\d+) conflicts?/, \"$1 處衝突\"],\n\n            \"Keyboard hints\": \"快捷鍵\",\n                \"How to interact with code conflict editor via keyboard\": \"如何通過鍵盤與程式碼衝突編輯器交互\",\n                    \"Toggle between edit mode and tab focus mode\": \"切換編輯模式和標籤焦點模式\",\n                    \"Navigation between elements with tab focus mode on\": \"在 Tab 焦點模式下在元素之間導航\",\n                    \"Move to next conflict control after accepting suggestion\": \"接受建議後移動到下一個衝突控件\",\n                    \"Exit editor\": \"退出編輯器\",\n                        \"then\": \"以及\",\n\n            \"Mark as resolved\": \"標記為已解決\",\n                \"Remove all conflict markers to resolve this file\": \"刪除所有衝突標記以解決此文件衝突\",\n            \"Indent mode\": \"縮進模式\",\n                \"Spaces\": \"空格\",\n                \"Tabs\": \"製表符\",\n            \"Indent size\": \"縮進尺寸\",\n            \"Line wrap mode\": \"換行模式\",\n                \"No wrap\": \"不換行\",\n                \"Soft wrap\": \"軟換行\",\n\n            \"Commit merge\": \"提交合併\",\n            \"Sign off and commit merge\": \"簽署並提交合併\",\n                \"Heads up, this will commit to\": \"請注意，這將提交到\",\n                \"Commit updates to the\": \"提交更改到\",\n                \"branch.\": \"分支。\",\n                \"Create a\": \"創建\",\n                \"new branch\": \"新分支\",\n                \"and commit updates. Your pull request will be updated automatically.\": \"並提交更改。您的拉取請求將自動更新。\",\n                // [/I understand, sign off and update/, \"我明白了，依然簽署並更新\"],\n                \"You are\": \"您將\",\n                \"signing off\": \"簽署\",\n                // [/on this commit as ([^@]+@[^\\n]+)/, \"該提交以 $1 身份\"],\n                \"Committing merge…\": \"正在提交合併…\",\n\n                \"conflict\": \"衝突\",\n                \"conflicts\": \"衝突\",\n\n            \"Accept current change\": \"接受當前更改\",\n            \"Accept incoming change\": \"接受傳入更改\",\n            \"Accept both changes\": \"接受全部更改\",\n\n        // 拉取請求 - 由 Copilot 編寫 https://github.com/用戶名/倉庫名/pull/編號/agent-sessions\n            \"Back to pull request #\": \"返回到拉取請求 #\",\n\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 編程智能體現在使用更少的高級請求！\",\n                \"From now on, each session uses just one premium request.\": \"從現在起，每個會話只會使用一次高級請求。\",\n\n            // 狀態\n                \"Failed\": \"失敗\",\n            \"Sessions\": \"進度\",\n            \"Duration\": \"總時長\",\n            \"Premium requests\": \"高級請求\",\n                \"Learn more about premium requests\": \"關於高級請求\",\n\n            \"premium\": \"高級\",\n            \"request\": \"請求\",\n            \"requests\": \"請求\",\n            \"used in\": \"被用於\",\n            \"session\": \"任務\",\n            \"sessions\": \"任務\",\n\n            \"Stop session\": \"停止任務\",\n            \"Open menu\": \"操作\",\n                \"View verbose logs\": \"查看日誌\",\n\n            \"Spinning up dev environment…\": \"正在啟動開發環境…\",\n            \"Starting MCP servers…\": \"正在啟動 MCP 服務器…\",\n            \"Making sure Copilot feels comfortable in the cockpit…\": \"確保 Copilot 在駕駛艙中感到舒適…\",\n            \"Fueling the runtime engines…\": \"為運行時引擎加油…\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Copilot stopped work due to an error\": \"Copilot 因錯誤停工\",\n                \"Copilot has encountered an error. See logs for additional details.\": \"Copilot 遇到錯誤。請查看日誌以獲取更多詳細信息。\",\n                // 內部錯誤，走正則\n                \"View detailed logs\": \"查看詳細日誌\",\n\n            // 進度\n            \"View repository\": \"查看倉庫\",\n\n        // 新版拉取請求提交頁面\n            \"authored and\": \"撰寫和\",\n            \"Browse repository at this point\": \"查看此時間點的倉庫\",\n\n        \"ProTip!\": \"專業提示！\",\n            \"to the end of URLs for Git’s plaintext views.\": \"到 Git 純文本視圖的 URL 結尾。\",\n            \"Add comments to specific lines under\": \"為以下特定行添加註釋於\",\n        \"Switch back to the classic merge experience\": \"切換回經典的合併界面\",\n        \"Try the new merge experience\": \"嘗試新的合併界面\",\n\n        \"Repository owner locked as\": \"倉庫所有者鎖定為\",\n            \"resolved\": \"已解決\",\n            \"too heated\": \"爭論不休\",\n            \"off-topic\": \"偏離主題\",\n\n        \"Merge status cannot be loaded\": \"合併狀態加載出錯\",\n            \"Try reloading the page, or if the problem persists\": \"嘗試重新加載頁面，或者如果問題仍然存在\",\n                \"contact support\": \"請聯繫支持人員\",\n            \"GitHub status\": \"GitHub 狀態\",\n\n        \"Mention \\@copilot in a comment to make changes to this pull request.\": \"在評論中提及 @copilot 以對該拉取請求進行更改。\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"該分支的 $1 次提交將變基並添加到基本分支。\"],\n        [/([^ ]+):([^ ]+)% was force-pushed and no longer has any new commits./, \"$1:$2 分支被強制推送，現在沒有新的提交。\"], // 放這裡是因為跟現有詞條衝突\n        // 建議更改（詞條打架移動至此）\n        [/on this commit as ([^@]+@[^\\n]+)/, \"該提交以 $1 身份\"],\n        // Dependabot 打開的拉取請求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"此拉取請求解決了 1 個 Dependabot 警報，在 $1 上。\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 個 Dependabot 警報\"],\n        [/^on ([^ ]+) including a/, \"在 $1 上，包括 1 個\"],\n        [/^on ([^ ]+)./, \"在 $1 上。\"],\n\n        // 提交時展開收縮的描述\n        [/Show description for ([a-f0-9]{7})/, \"顯示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隱藏提交 $1 的描述\"],\n\n        // 新版 PR 提交頁\n        [/wants to merge (\\d+) commits? into/, \"希望合併 $1 條提交到\"],\n        [/Commits on (.+)/,  (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `提交於${translatedDate}`;\n        }],\n        [/Add(?: a)? comment on line ((L|R)(\\d+))/, \"在 $1 行評論\"],\n        [/Suggest change on line ((L|R)(\\d+))/, \"建議更改 $1 行\"],\n        [/Expand all lines: (.+)/, \"展開所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"摺疊未更改行：$1\"],\n        // CODEOWNERS 文件指定所有者\n        [/Owned by (\\@.+) \\(from CODEOWNERS line (\\d+)\\)/, \"由 $1 擁有（來自 CODEOWNERS 第 $2 行）\"],\n\n        // 具體某條拉取請求\n        [/edited by ([^ ]+)/, \"由 $1 編輯\"],\n        [/At least (\\d+) approving reviews? is required to merge this pull request./, \"合併此拉取請求至少需要 $1 次批准審核。\"],\n        [/Commits?/, \"提交\"],\n        [/Files? changed/, \"文件更改\"],\n        [/merged (\\d+) commits? into/, \"將 $1 個提交合併到\"],\n        [/Copy full SHA for ([^ ]+)/, \"複製 $1 完整的 SHA\"], // Android UA ? 提交卡\n        [/View checks?/, \"查看檢查\"], // Android UA ?\n        [/([^ ]+) left review comments?/, \"$1 發表了審查意見\"],\n        [/([^ ]+) approved these changes?/, \"$1 批准這些更改\"], // 具體的拉取請求 審查者\n        [/Request review from ([^ ]+)/, \"請求 $1 審查\"], // 具體的拉取請求 審查者\n        [/users with write access to ([^ ]+) can add new commits/, \"對 $1 具有寫權限的用戶可以添加新的提交\"], // 具體拉取請求\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准審查才能合併此拉取請求。\"], // 具體的拉取請求 審查者\n        [/This user is a first-time contributor to the ([^ ]+) repository./, \"該用戶是第一次為 $1 倉庫做貢獻。\"],\n        [/(\\d+) pending reviewers?/, \"$1 名待審者\"],\n        [/([\\d,]+) participants?/, \"$1 位參與者\"],\n        [/At least (\\d+) approving reviews? is required by reviewers with write access./, \"具有寫入權限的審查者至少需要 $1 次批准審查。\"],\n        [/(\\d+) approving reviews? by reviewers? with write access./, \"$1 個批准的審查由具有寫入權限的審查者進行審查。\"],\n        [/(\\d+) review requesting changes by reviewers? with write access./, \"$1 個請求審查更改由具有寫入權限的審查者進行審查。\"],\n        [/(\\d+) approvals?/, \"$1 項批准\"],\n        [/(\\d+) reviews? requesting changes by reviewers with write access/, \"$1 項審查，要求有寫入權限的審查者進行更改\"], // 拉取請求\n        [/(\\d+) changes? requested by reviewers with write access/, \"具有寫入權限的審查者提出 $1 項更改請求\"],\n        [/(\\d+) changes? requested/, \"$1 項更改請求\"],\n        [/This pull request closes issue (#\\d+)./, \"該拉取請求將關閉議題 $1。\"], // 死活不翻譯\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 處增加，$2 處刪除未顯示，因為差異太大。請使用本地 Git 客戶端查看這些更改。\"],\n        [/(\\d+) requested change/, \"$1 項請求更改\"],\n\n        // 狀態\n        [/branch (\\d+) times, most recently from/, \"分支 $1 次，最近一次從\"],\n        [/pushed a commit to ([^ ]+) that referenced this pull request/, \" 向 $1 推送一次提交，其中引用了此拉取請求\"],\n        [/added a commit to ([^ ]+) that referenced this pull request/, \"向 $1 添加一個提交，其中引用了此拉取請求\"],\n        [/Missing successful active ([^ ]+) deployment./, \"未成功激活 $1 部署。\"], // 新本合併頁面\n\n        [/(\\d+) in progress checks?/, \"$1 個正在進行的檢查\"],\n        [/(\\d+) in progress(es)?/, \"$1 個正在進行的檢查\"],\n        [/(\\d+) skipped and (\\d+) successful checks?/, \"$1 個跳過, $2 個成功檢查\"],\n        [/(\\d+) successful and (\\d+) failing checks?/, \"$1 個成功, $2 個失敗檢查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) failing checks?/, \"$1 個跳過, $2 個成功, $3 個失敗檢查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) cancelled, and (\\d+) failing checks?/, \"$1 個跳過, $2 個成功, $3 個取消, $4 個失敗檢查\"],\n        [/(\\d+) skipped, (\\d+) successful, and (\\d+) expected checks?/, \"$1 個跳過, $2 個成功, $3 個預先檢查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) queue, and (\\d+) expected checks?/, \"$1 個跳過, $2 個成功, $3 個排隊, $4 個預先檢查\"],\n        [/(\\d+) skipped, (\\d+) successful, (\\d+) in progress, and (\\d+) expected checks?/, \"$1 個跳過, $2 個成功, $3 個正在進行, $4 個預先檢查\"],\n        [/(\\d+) neutral checks?/, \"$1 次中立檢查\"],\n        [/(\\d+) successful checks?/, \"$1 次成功檢查\"],\n        [/(\\d+) of (\\d+) checks? passed/, \"$1/$2 次檢查通過\"],\n        [/(\\d+) checks? passed/, \"$1 次檢查通過\"],\n\n        [/Merge the latest changes from ([^ ]+) into this branch. This merge commit will be associated with ([^ ]+)./, \"將最新更改從 $1 分支合併到當前分支。該合併提交將與用戶 $2 相關聯。\"],\n        [/Merging can be performed automatically with (\\d+) approving review./, \"合併可以通過 $1 次批准審查自動執行。\"],\n        [/(\\d+) workflow awaiting approval/, \"$1 個工作流等待批准\"],\n        [/The ([^ ]+) branch requires linear history/, \"$1 分支為要求線性歷史記錄\"],\n        [/The (\\d+) commits? from this branch will be added to the base branch./, \"該分支的 $1 個提交將合併到基本分支中。\"], // 合併拉取請求 按鈕下拉\n        [/The (\\d+) commits? from this branch will be combined into one commit in the base branch./, \"該分支的 $1 個提交將合併到基礎分支中。\"], // 合併拉取請求 按鈕下拉\n        [/The (\\d+) commits? from this branch will be rebased and added to the base branch./, \"該分支的 $1 個提交將變基合併到基礎分支中。\"], // 合併拉取請求 按鈕下拉\n        [/Ensure specific people or teams approve pull requests before they're merged into your ([^ ]+) branch./, \"確保特定的人或團隊在拉取請求被合併到您的 $1 分支之前批准它們。\"], // 合併拉取請求\n        [/(\\d+) commits?/, \"$1 條提交\"],\n        [/All (\\d+) file types? selected/, \"所有 $1 種文件類型被選中\"], // 文件篩選\n        [/Select all (\\d+) file types?/, \"選擇所有 $1 種文件類型\"],\n        [/Unresolved conversations/, \"未解決的討論\"],\n        [/Resolved conversations/, \"已解決的討論\"],\n        // [/Commits (.+)/, \"提交於 $1\"], // 提交標籤卡\n        [/(#\\d+) will be closed when this pull request is merged/, \"$1 將在該拉取請求合併時關閉\"],\n        // 程式碼空間\n        [/Create a codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n        [/Create codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n        [/Codespace \\\"(.+)\\\" stopped./, \"程式碼空間 “$1” 已停止。\"],\n        [/Codespace \\\"(.+)\\\" deleted./, \"程式碼空間 “$1” 已刪除。\"],\n        [/Are you sure you want to delete (.+)\\?/, \"您確定要刪除 $1 嗎？\"],\n        [/(\\d+) conflicting files?/, \"$1 個衝突文件\"], //conflicts\n        [/(\\d+) conflicts?/, \"$1 處衝突\"],  //conflicts\n        [/Awaiting requested review from ([^ ]+)/, \"等待 $1 審查請求\"], // 具體的拉取請求\n        [/([^ ]+) is a code owner/, \"$1 是程式碼所有者\"], // 具體的拉取請求\n        [/This commit will be authored by ([^@]+@[^\\n]+)/, \"此提交的作者是 $1\"], // 具體的拉取請求\n        [/This pull request resolved a Dependabot alert on ([^ ]+)./, \"該請求解決了 $1 的 Dependabot 警報問題。\"],\n        [/(\\d+) workflows? awaiting approval/, \"$1 個工作流程等待批准\"],\n        [/(\\d+) resolved conversations?/, \"$1 條對話已解決\"], // 拉取請求\n        [/I understand, continue updating ([^ ]+)/, \"我明白了，繼續更新 $1\"],\n        [/I understand, sign off and update/, \"我明白了，依然簽署並更新\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在議題中通過 @ 提及通知某人，例如：@$1。\"], // 專業提示\n        [/(\\d+) conversations? must be resolved before merging./, \"合併之前必須解決 $1 個對話。\"],\n        [/(\\d+) hidden items?/, \"$1 條隱藏專案\"],\n        [/([^ ]+) requested changes/, \"$1 要求更改\"],\n        [/(\\d+) active deployments?/, \"$1 個活動的部署\"],\n        [/Check failure on line (\\d+)/, \"第 $1 行檢查失敗：\"],\n\n        // 命令行解決衝突頁面\n        [/Copy (.+?) to clipboard/, \"複製 $1 到剪切板\"],\n\n        // 文件差異過大 參考 https://github.com/maboloshi/github-chinese/pull/306/files\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"差異過大，不會顯示 $1 行添加以及 $2 行刪除。請使用本地 Git 客戶端查看更改。\"],\n\n        // 任務\n        [/(\\d+) tasks?/, \"$1 個任務\"],\n\n        // 評論\n        [/Lines (\\d+) to (\\d+) in/, \"第 $1 - $2 行，\"],\n\n        // 建議更改\n        //[/on this commit as ([^@]+@[^\\n]+)/, \"提交，身份為 $1\"],\n\n        // Copilot\n        [/Copilot has encountered an internal error. If the problem persists, please contact GitHub Support, including the request ID `([^ ]+)`. To retry, leave a comment on this pull request asking Copilot to try again./, \"Copilot 遇到了內部錯誤。如果問題仍然存在，請聯繫 GitHub 支持，並附上請求 ID `$1`。要重試，請在此拉取請求中發表評論，要求 Copilot 再試一次。\"],\n\n        // 解決衝突編輯器（似乎又是 F12 才會翻譯）\n        [/Search:/, \"搜索：\"],\n        [/\\(Use \\/re\\/ syntax for regexp search\\)/, \"(使用 /re/ 進行正則搜索)\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        ...I18N[\"zh-TW\"][\"repository/pull_issue_public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素篩選器規則\n        [\"span[data-message='Review changes']\", \"審查更改\"], // 拉取請求 --> 更改的文件\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) by (.+) · Pull Request #(\\d+) · (.+)/, \"$1 作者：$2 · 拉取請求 #$3 · $4\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/compare\"] = { // 倉庫 - 比較並創建拉取請求\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 變更比較 頁面 /<user-name>/<repo-name>/compare@\n            \"Compare changes\": \"比較變更\",\n            \"Compare changes across branches, commits, tags, and more below. If you need to, you can also\": \"比較跨分支，提交，標籤，和更多的變更。如果您需要，也可以\",\n            \"compare across forks\": \"比較複刻庫和源倉庫\",\n            \"Learn more about diff comparisons here\": \"點擊此處瞭解更多關於差異比較的信息\",\n            \"This is a direct comparison between two commits made in this repository or its related repositories.\": \"這是本倉庫或其相關倉庫中兩次提交的直接比較。\",\n            \"View the default comparison\": \"查看此範圍的默認比較\",\n            \"for this range or\": \"或\",\n\n            // 分支選擇欄\n            \"base repository:\": \"基礎倉庫：\",\n                \"Choose a Base Repository\": \"選擇基礎倉庫\",\n                \"Filter repos\": \"篩選倉庫\",\n            \"head repository:\": \"頭部倉庫：\",\n                \"Choose a Head Repository\": \"選擇頭部倉庫\",\n\n            \"base:\": \"基礎分支：\",\n                \"Choose a base ref\": \"選擇基礎引用\",\n                \"Find a branch\": \"搜索分支\",\n                \"Find a tag\": \"搜索標籤\",\n            \"compare:\": \"比較分支：\",\n                \"Choose a head ref\": \"選擇頭部引用\",\n\n            \"Choose different branches or forks above to discuss and review changes.\": \"選擇不同的分支或複刻來討論和查看變化。\",\n            \"Learn about pull requests\": \"瞭解拉取請求\",\n\n            \"Create pull request\": \"創建拉取請求\",\n\n            \"Compare and review just about anything\": \"比較和審查任何文件\",\n            \"Branches, tags, commit ranges, and time ranges. In the same repository and across forks.\": \"分支，標籤，提交範圍和時間範圍。在同一倉庫和複刻的倉庫。\",\n            \"Example comparisons\": \"比較例子\",\n\n            \"Commit\": \"提交\",\n            \"Commits\": \"提交\",\n            \"File changed\": \"更改的文件\",\n            \"Files changed\": \"更改的文件\",\n\n        // 提出合併分支 /<user-name>/<repo-name>/compare/<branch>...<user-name-1>:<branch-1>\n        // /<user-name>/<repo-name>/compare/<branch>...<branch-1>\n        // <user-name>/<repo-name>/compare/<branch>...<user-name-1>:<repo-name-1>:<branch-1>\n            \"Comparing changes\": \"比較變更\",\n            \"Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also\": \"選擇兩個分支，看看發生了什麼改變，或發起一個新的拉請求。如果您需要，您也可以\",\n            \"learn more about diff comparisons\": \"瞭解更多關於差異比較的信息\",\n            // \"base fork:\": \"基複刻：\",\n            \"Documentation has changed since you last contributed\": \"文件已發生變化，自您上次提交文件於\",\n            \". Take a look before submitting a pull request:\": \"。在提交拉取請求前，請先看一下：\",\n            \"Contributing guidelines\": \"貢獻指南\",\n            \"Last updated\": \"最近更新於\",\n\n            \"There isn’t anything to compare.\": \"沒有任何東西可比較。\",\n                \"We couldn’t figure out how to compare these references, do they point to valid commits?\": \"我們不知道如何比較這些引用，它們是否指向有效的提交？\",\n\n                \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用兩個不同的分支名稱來進行有效的比較。\",\n                \"Check out some of these sample comparisons.\": \"看看這些比較的例子吧。\",\n\n                \"is up to date with all commits from\": \"已是最新，提交於\",\n                \". Try\": \"。嘗試\",\n                \"switching the base\": \"切換基礎庫\",\n                \"for your comparison.\": \"來進行比較。\",\n\n                \"are entirely different commit histories.\": \"是完全不同的提交歷史。\",\n\n            \"Discuss and review the changes in this comparison with others.\": \"與他人討論並回顧此次對比中的變化。\",\n\n            \"This comparison is big! We’re only showing the most recent 250 commits\": \"這個比較是很大的! 我們只顯示最近的 250 個提交。\",\n\n            \"You’ll need to use two different branch names to get a valid comparison.\": \"您需要使用兩個不同的分支名稱來進行有效的比較。\",\n\n            \"are identical.\": \"是相同的。\",\n\n            \"Create another pull request to discuss and review the changes again.\": \"創建另一個拉取請求，再次討論和審查這些更改。\",\n\n            // 修改的文件 左側 展開按鈕\n            \"Expand all\": \"展開全部\",\n            \"Expand All\": \"展開全部\",\n            \"Expand Up\": \"向上展開\",\n            \"Expand Down\": \"向下展開\",\n\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n\n            \"Load diff\": \"載入差異\",\n            \"This file was deleted.\": \"該文件已被刪除\",\n            \"Large diffs are not rendered by default.\": \"默認情況下，大的差異不會被呈現。\",\n            \"File renamed without changes\": \"文件僅重命名，內容沒有更改\",\n            \"Binary file not shown.\": \"不顯示二進制文件。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默認不會呈現。詳細瞭解\",\n                \"how customized files appear on GitHub\": \"自定義文件在 GitHub 上的顯示方式\",\n            \"Empty file.\": \"空文件。\",\n\n            // 提交相關\n            \"Copy the full SHA\": \"複製完整 SHA\",\n            \"View commit details\": \"查看提交詳情\",\n            \"Browse the repository at this point in the history\": \"瀏覽該階段的歷史倉庫內容\",\n\n        // 直接提交拉取請求 /<user-name>/<repo-name>/compare/<branch>...<branch-1>?quick_pull=1\n            \"Open a pull request\": \"新建一個拉取請求\",\n            \"The change you just made was written to a new branch named\": \"您剛剛所做的更改已寫入新分支\",\n            \". Create a pull request below to propose these changes.\": \". 請在下方創建拉取請求，提出這些更改。\",\n            \"Create a new pull request by comparing changes across two branches. If you need to, you can also\": \"通過比較兩個分支的更改來創建一個新的拉請求。如果需要，還可以\",\n\n            // 提示框（第一次提交拉取請求時）\n            \"It looks like this is your first time opening a pull request in this project!\": \"看起來這是您在這個專案中首次發起的拉取請求呢！\",\n            \"Be sure to review the\": \"請務必查閱\",\n            \"contributing guidelines\": \"貢獻指南\",\n            \"Reporting a security vulnerability?\": \"報告安全漏洞？\",\n            \"Check out the project's\": \"查看本專案的\",\n            \"Looking for help?\": \"需要幫助？\",\n                \"Check out the project’s\": \"查看本專案的\",\n                \"instructions for getting support\": \"支持說明\",\n\n            \"Checking mergeability…\": \"檢查可合併性…\",\n            \"Don’t worry, you can still create the pull request.\": \"別擔心，您仍然可以創建拉取請求。\",\n            \"Able to merge.\": \"可被合併。\",\n            \"Can’t automatically merge.\": \"無法自動合併。\",\n            \"These branches can be automatically merged.\": \"該分支可被自動合併。\",\n\n            \"View pull request\": \"查看拉取請求\", //存在拉取請求時\n                \"No description available\": \"無說明\", // 拉取請求無評論時\n\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            \"file changed\": \"個文件變更\",\n            \"files changed\": \"個文件變更\",\n            \"contributor\": \"位貢獻者\",\n            \"contributors\": \"位貢獻者\",\n            // \"No commit comments for this range\": \"該範圍變更沒有提交註釋\",\n\n            \"Reviewers\": \"審查者\",\n                \"No reviews\": \"未經審查\",\n                \"Loading suggestions…\": \"載入推薦…\",\n                // [/([^ ]+) left review comments/, \"$1 發表了審查意見\"],\n                // [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准審查才能合併此拉取請求。\"],\n                \"No reviews—at least 0 approving review is required.\": \"未經審查 — 至少需要 0 次批准審查。\",\n                \"Re-request review\": \"重新請求審核\",\n                \"Still in progress?\": \"仍在進行中嗎？\",\n                // [/Awaiting requested review from ([^ ]+)/, \"等待 $1 的審查請求\"]\n                \"Learn about draft PRs\": \"瞭解拉取請求草案\",\n                    \"Try draft pull requests\": \"嘗試拉取請求草案\",\n                    \"Open an in-progress pull request without asking for formal review or risking an unwanted merge. When you're ready for code review, you can mark your draft pull request as ready for review, which will request reviews from any code owners.\": \"打開正在進行的拉取請求，無需請求正式審核，也不必冒不必要的合併風險。當您準備好進行程式碼審核時，您可以將拉取請求草案標記為已準備好審核，這將請求任何程式碼所有者進行審核。\",\n                    \"Ask admin for access\": \"向管理員請求權限\",\n                \"Convert to draft\": \"設置為草案\",\n                \"Request up to 15 reviewers\": \"最多請求 15 個審查者\",\n                // [/([^ ]+) approved these changes/, \"$1 批准這些更改\"], // 具體的拉取請求 審查者\n                \"Request\": \"請求\",\n                // [/Request review from ([^ ]+)/, \"請求 $1 審查\"], // 具體的拉取請求 審查者\n                \"This pull request is waiting on your review.\": \"此拉取請求正在等待您的審核。\",\n                // Copilot\n                    \"Copilot can review pull requests\": \"Copilot 可以審查拉取請求\",\n                    \"Request a review from Copilot to get fast, actionable feedback on your code, so you can start iterating before you receive a human review.\": \"向 Copilot 請求程式碼審查，即可獲得快速且可操作的反饋，讓您能在收到人工審查前就開始迭代優化。\",\n                    \"OK, dismiss\": \"關閉\",\n\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"無人受理\",\n                \"No one—\": \"無人 - \",\n                \"assign yourself\": \" 受理自己\",\n                \"Assign up to 10 people to this issue\": \"最多指定 10 人\", // 議題\n                \"Assign up to 10 people to this pull request\": \"最多指定 10 人\", // 拉取請求\n                \"Clear assignees\": \"清除受理人\",\n                \"Type or choose a user\": \"輸入或選擇用戶\",\n                \"Suggestions\": \"建議\",\n\n            \"Labels\": \"標籤\",\n                \"None yet\": \"暫無\",\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些東西不工作\",\n                \"confirmed\": \"已確認\",\n                    \"Issue confirmed to exist and the reason is known\": \"問題已確認存在，原因已知\",\n                \"dependencies\": \"依賴性\",\n                    \"Pull requests that update a dependency file\": \"更新依賴文件的拉取請求\",\n                \"documentation\": \"文檔\",\n                    \"Improvements or additions to documentation\": \"文檔的改進或補充\",\n                \"duplicate\": \"重複\",\n                    \"This issue or pull request already exists\": \"這個議題或拉取請求已經存在\",\n                \"enhancement\": \"增強\",\n                    \"New feature or request\": \"新功能或請求\",\n                \"good first issue\": \"好的首發議題\",\n                    \"Good for newcomers\": \"適合新人\",\n                \"help wanted\": \"需要幫助\",\n                    \"Extra attention is needed\": \"需要特別關注\",\n                \"invalid\": \"無效\",\n                    \"This doesn't seem right\": \"這似乎不對\",\n                \"question\": \"問題\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不會修復\",\n                    \"Not going to fix it\": \"不打算修復\",\n                    \"This will not be worked on\": \"這將不會被處理\",\n\n                \"Apply labels to this issue\": \"應用標籤\", // 議題\n                \"Apply labels to this pull request\": \"應用標籤\", // 拉取請求\n                \"Edit labels\": \"編輯標籤\",\n\n                \"dependencies\": \"依賴項\",\n                    \"Pull requests that update a dependency file\": \"更新依賴文件的拉取請求\",\n                \"Recent\": \"最近\",\n                \"User\": \"用戶\",\n                \"No projects\": \"無專案\",\n\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"無里程碑\",\n                \"Set milestone\": \"設置里程碑\",\n                    \"Nothing to show\": \"暫無\",\n\n        \"Allow edits and access to secrets by maintainers\": \"允許維護人員編輯和訪問機密\",\n            \"If checked,\": \"如果勾選，\",\n            \"users with write access to\": \"則擁有\",\n            \"can add new commits\": \"寫訪問權限的用戶可以向您的\",\n            \"to your\": \"向您的\",\n            \"branch.\": \"分支添加新提交。\",\n            \"You can always change this setting later.\": \"您可以隨時更改這一設置。\",\n            \"Note: By granting write access, maintainers could potentially edit your repository's workflows to reveal values of secrets and gain access to other branches.\": \"注意：通過授予寫入權限，維護者可能會編輯您倉庫的工作流程以揭示機密值，並獲取對其他分支的訪問權限。\",\n            \"Got it\": \"知道了\",\n        // 創建拉取請求 按鈕下拉\n            \"Open a pull request that is ready for review\": \"打開一個準備好進行審核的拉取請求\",\n            \"Automatically requests reviews from code owners\": \"自動請求程式碼所有者進行審查\",\n            \"Create draft pull request\": \"創建拉取請求草案\",\n            \"Cannot be merged until marked ready for review\": \"在標記為準備好進行審核之前無法合併\",\n            \"Doesn't request code owners review and cannot be merged\": \"不請求程式碼所有者審核並且無法合併\",\n            \"Draft pull request\": \"拉取請求草案\",\n        \"Remember, contributions to this repository should follow its\": \"請記住，對該倉庫的貢獻應遵循其\",\n        \"security policy\": \"安全政策\",\n        \"code of conduct\": \"行為準則\",\n        \"Remember, contributions to this repository should follow our\": \"請記住，對此倉庫的貢獻應遵循我們的\",\n        \"GitHub Community Guidelines\": \"GitHub 社區準則\",\n        \"Support\": \"支持\",\n\n        // 右側欄補充\n        \"Development\": \"進展\",\n            \"Use\": \"使用\",\n            \"Closing keywords\": \"關閉關鍵詞\",\n            \"in the description to automatically close issues\": \"在描述中，以自動關閉議題\",\n            \"Use Closing keywords to add a closing reference\": \"使用關閉關鍵詞添加一個關閉引用\",\n\n        \"Helpful resources\": \"幫助性資源\",\n            // \"GitHub Community Guidelines\": \"GitHub 社區準則\",\n            \"Contributing\": \"貢獻準則\",\n            \"Code of conduct\": \"行為準則\",\n            \"Security policy\": \"安全政策\",\n\n        // 標籤對應版本比較 /<user-name>/<repo-name>/compare/<tag-id1>...<tag-id2>\n            // 僅限 MD文件\n            \"Display the source diff\": \"顯示源差異\",\n            \"Display the rich diff\": \"顯示富差異\",\n\n            \"Load more commits\": \"載入更多的提交\",\n\n        // /<user-name>/<repo-name>/compare/<tag>...<branch>\n            \"Commit comments\": \"提交評論\",\n\n        \"Showing\": \"顯示\",\n        \"with\": \"包含\",\n\n        // 編輯器右上角三點，“顯示評論”走正則\n        \"View file\": \"查看文件\",\n        \"Edit file\": \"編輯文件\",\n        \"Delete file\": \"刪除文件\",\n\n        // 加載差異失敗\n        \"This comparison is taking too long to generate.\": \"生成比較結果的時間過長。\",\n        \"Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.\": \"不幸的是，我們現在無法為您提供這種比較。它可能太大了，或者您的倉庫有什麼奇怪的地方。\",\n        \"You can try running this command locally to see the comparison on your machine:\": \"您可以嘗試在本地運行此命令以查看比較結果：\",\n\n        // 評論輸入框選項\n        \"Copilot actions\": \"Copilot 操作\",\n            \"Generate\": \"生成\",\n                \"Summary\": \"總結\",\n                    \"Generate a summary of the changes in this pull request.\": \"生成此拉取請求的更改摘要。\",\n        \"Summarizing changes… this might take a minute\": \"總結更改…這可能需要 1 分鐘\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Show comments?/, \"顯示評論\"], // 編輯器右上角三點\n        [/committed/, \"提交於\"],\n        [/(\\d+) contributors?/, \"$1 貢獻者\"],\n        [/Allow(ing)? edits by maintainers/, \"允許維護人員編輯\"],\n        [/users with write access to ([^ ]+) can add new commits/, \"則擁有 $1 寫訪問權限的用戶可以向您的\"],\n        [/(\\d+) changed files?/, \"更改的文件\"],\n        [/(\\d+) additions?/, \"$1 處增加\"],\n        [/(\\d+) deletions?/, \"$1 處刪除\"],\n        [/At least (\\d+) approving reviews? are required to merge this pull request./, \"至少需要 $1 次批准審查才能合併此拉取請求。\"], // 創建拉取請求\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Compare/, \"比較\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/commit\"] = { // 倉庫 - 提交頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 具體某個提交頁面 /<user-name>/<repo-name>/commit/<full SHA>\n            \"Commit\": \"提交\",\n\n            // 快捷鍵\n            \"Browsing commits\": \"瀏覽提交\",\n            // \"\": \"提交評論\",\n            \"Close form\": \"關閉評論\",\n            \"Parent commit\": \"父提交\",\n            \"Other parent commit\": \"其他父提交\",\n\n            // 訪問已刪除的提交\n            \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"這個提交不屬於本倉庫的任何分支，可能屬於倉庫以外的分支。\",\n\n            \"Browse files\": \"瀏覽文件\",\n            \"Loading branch information\": \"載入分支信息\",\n\n            // [/This commit closes issue (#\\d+)./, \"此提交關閉了提議 $1。\"], //具體提交頁面\n            \"committed\": \"提交於\",\n            \"commit\": \"提交\",\n\n            \"Showing\": \"顯示\",\n            \"with\": \"包含\",\n            \"always\": \"總是\",\n            \"Whitespace\": \"顯示空白字符差異\",\n            \"Ignore whitespace\": \"忽略空白字符差異\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            \"Minimize comments\": \"最小化評論\",\n\n            \"Display the source diff\": \"顯示源差異\",\n            \"Display the rich diff\": \"顯示富差異\",\n            \"Comment on this file\": \"評論此文件\", // new code view\n\n            \"Filter changed files\": \"篩選已更改的文件\", // new code view 側欄\n            \"Show file tree\": \"顯示文件樹\", // new code view 側欄\n            \"Hide file tree\": \"隱藏文件樹\", // new code view 側欄\n\n            \"Submodule\": \"子模塊\",\n            \"updated\": \"已更新\",\n            // [/from ([^ ]+) to ([^ ]+)/, \"從 $1 到 $2。\"], //具體提交頁面\n\n            \"Binary file not shown.\": \"不顯示二進制文件\",\n            \"Empty file.\": \"空文件。\",\n            \"File renamed without changes.\": \"文件僅重命名，內容沒有更改。\",\n            \"Whitespace-only changes.\": \"僅空白字符更改。\",\n\n            \"Some content is hidden\": \"某些內容被隱藏\",\n                \"Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.\": \"大型提交默認隱藏部分內容。使用下面的搜索框查找可能隱藏的內容。\",\n            \"Dismiss banner\": \"關閉\",\n\n            \"Load diff\": \"載入差異\",\n            \"Load Diff\": \"載入差異\",\n            \"This file was deleted.\": \"該文件已被刪除\",\n            \"Large diffs are not rendered by default.\": \"默認情況下，大的差異不會被呈現。\",\n            \"Some generated files are not rendered by default. Learn more about\": \"某些生成的文件默認不呈現。瞭解更多信息關於\",\n            \"how customized files appear on GitHub\": \"更改文件在 GitHub 中的顯示方式\",\n            \"customizing how changed files appear on GitHub.\": \"自定義更改文件在 GitHub 上顯示方式。\",\n            \"File renamed without changes.\": \"文件僅重命名，內容沒有更改。\",\n            \"File renamed without changes\": \"文件僅重命名，內容沒有更改\",\n            \"Binary file not shown.\": \"不顯示二進制文件。\",\n            \"Diff is too big to render. To view,\": \"差異過大，\",\n            \"check out this pull request locally.\": \"請在本地查看拉取請求。\",\n\n            // 修改的文件 左側 展開按鈕\n            \"Expand all\": \"展開全部\",\n            \"Expand Up\": \"向上展開\",\n            \"Expand Down\": \"向下展開\",\n            \"Collapse expanded lines\": \"摺疊展開的線\",\n\n            // 修改的 yaml 文件，預覽窗口\n            \"Loading Dependency Review...\": \"正在加載依賴審查…\",\n            \"No dependencies changed.\": \"未更改依賴。\",\n                \"The changes to this file likely do not affect the dependencies\": \"對此文件的更改可能不會影響依賴\",\n\n            \"Give feedback on\": \"提交反饋，在\",\n                \"dependency review\": \"依賴項審查\",\n\n            // 修改的文件 右側下拉\n            \"Show comments\": \"顯示評論\",\n            \"Show annotations\": \"顯示註釋\",\n            \"View file\": \"查看文件\",\n            \"Edit file\": \"編輯文件\",\n            \"Delete file\": \"刪除文件\",\n            \"Open in desktop\": \"在 GitHub Desktop 中打開\",\n            \"Copilot is loading...\": \"Copilot 加載中…\",\n            \"Ask about this diff\": \"詢問此差異\",\n                \"Explain\": \"解釋\",\n                \"Attach to current thread\": \"附加至當前話題\",\n\n            //底部評論框上部\n            \"Lock conversation\": \"鎖定對話\",\n                \"Lock conversation on this commit\": \"鎖定關於此提交的對話\",\n                \"Locking the conversation means:\": \"鎖定對話意味著：\",\n                    \"Other users\": \"其他用戶\",\n                    \"can’t add new comments\": \"無法添加新評論\",\n                    \"to this commit.\": \"到這個提交。\",\n                    \"You and other collaborators\": \"您和其他協作者\",\n                    \"with access\": \"有權限訪問\",\n                    \"to this repository\": \"該倉庫\",\n                    \"can still leave comments\": \"仍然可以發表評論\",\n                    \"that others can see.\": \"其他人可以看到。\",\n                \"You can always unlock this commit again in the future.\": \"您可以隨時再次解鎖此提交。\",\n            \"Unlock conversation\": \"解鎖對話\",\n                \"Unlock conversation on this commit\": \"解鎖關於此提交的對話\",\n                \"Unlocking the conversation means:\": \"解鎖對話意味著：\",\n                \"will be able to comment on this commit once more.\": \"將能夠再次對此提交發表評論。\",\n                \"You can always lock this commit again in the future.\": \"您可以隨時再次鎖定此提交。\",\n\n                \"Reply…\": \"回覆…\",\n\n            \"commented on\": \"評論於\",\n            \"Comment on line\": \"評論行\",\n\n            \"Paste, drop, or click to add files\": \"粘貼、拖放或點擊添加文件\",\n\n            // 隱藏評論\n            \"Choose a reason for hiding this comment\": \"選擇隱藏此評論原因\",\n            \"The reason will be displayed to describe this comment to others.\": \"將顯示原因，以便向其他人描述此評論。\",\n                \"Choose a reason for hiding this comment\": \"選擇隱藏此評論原因\",\n                \"Unhide\": \"取消隱藏\",\n                \"comment\": \"評論\",\n                \"Choose a reason\": \"選擇原因\",\n                    \"Abuse\": \"濫用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏離主題\",\n                    \"Outdated\": \"過時\",\n                    \"Duplicate\": \"重複\",\n                    \"Resolved\": \"已解決\",\n\n            \"Subscribe\": \"訂閱\",\n            \"Unsubscribe\": \"取消訂閱\",\n            \"You’re not receiving notifications from this thread.\": \"您沒有收到來自該話題的通知。\",\n            \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因為您編寫了提交。\",\n            \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因為您訂閱了該話題。\",\n            \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因為您關注了該倉庫。\",\n\n        // 提交 commits 頁面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            \"Commits\": \"提交\",\n            \"commit\": \"提交\",\n            // 快捷鍵\n                \"Copy file permalink\": \"複製文件永久鏈接\",\n\n            \"Copy full SHA for\": \"複製該提交的完整 SHA\", // Android UA\n            \"View commit details\": \"查看提交詳情\",\n            \"Browse the repository at this point in the history\": \"瀏覽該階段的歷史倉庫內容\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"舊的\",\n\n            // 拉取請求懸浮卡\n                \"You were mentioned on and commented on this pull request\": \"您在該請求中被提及並發表了評論\",\n                \"You left a review\": \"您發表了評論\",\n\n            // 議題懸浮卡\n                \"You commented on this issue\": \"您對此議題發表了評論\",\n                \"You commented on and opened this issue\": \"您評論並打開了此議題\",\n\n        // /commits?since=<start-date XXXX-XX-XX>&until=<end-date XXXX-XX-XX>&author=<author-name>\n            \"No commits history\": \"尚無提交歷史記錄\",\n            \"There isn't any commit history to show here\": \"此處沒有可顯示\",\n            \"for the selected date range\": \"所選日期範圍內的任何提交歷史記錄\",\n            \"There isn't any commit history to show here for the selected date range\": \"這裡沒有顯示所選日期範圍內的任何提交歷史記錄\",\n\n        // 新版提交 commits 頁面 /<user-name>/<repo-name>/commits/<branch> 或 /<user-name>/<repo-name>/commits\n            // 用戶篩選\n                \"All users\": \"所有用戶\",\n                \"Find a user...\": \"尋找一個用戶……\",\n                \"Filter on author\": \"篩選作者：\",\n                \"View commits for all users\": \"查看所有用戶的提交\",\n            // 時間篩選\n                \"All time\": \"所有時間\",\n                \"Today\": \"今天\",\n            \"Clear\": \"清除\",\n            \"Browse repository at this point\": \"查看此時間點的倉庫\",\n            \"View code at this point\": \"查看此時間點的程式碼\",\n\n            // 日曆\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n            // [/Copy full SHA for ([a-f0-9]{7})/, \"複製提交 $1 的完整 SHA\"],\n            // [/Show description for ([a-f0-9]{7})/, \"顯示提交 $1 的描述\"],\n            // [/Hide description for ([a-f0-9]{7})/, \"隱藏提交 $1 的描述\"],\n\n        // 提交中文件歷史 /<user-name>/<repo-name>/commits/<branch>/<file> 或 /<user-name>/<repo-name>/commits/<full SHA>/<file>\n            \"History for\": \"歷史：\",\n            \"View at this point in the history\": \"在這一歷史節點上查看\",\n\n            // [/Renamed from/, \"重命名自\"], // 提交中文件歷史\n            \"(Browse History)\": \"（瀏覽歷史）\",\n\n        // 提交中文件夾歷史 /<user-name>/<repo-name>/commits/<branch>/<folder> 或 /<user-name>/<repo-name>/commits/<full SHA>/<folder>\n            \"End of commit history for this file\": \"此文件的提交歷史結束\",\n\n        // 2/commits?author=maboloshi&since=2021-09-30&until=2021-10-13\n            \"Seeing something unexpected? Take a look at the\": \"看到了一些意想不到的東西？請看一下\",\n            \"GitHub commits guide\": \"GitHub 提交指南\",\n\n        // 新版提交頁\n            \"More actions\": \"更多操作\",\n            // 具體某條提交\n            \"authored and\": \"撰寫和\",\n            \"authored\": \"撰寫於\",\n\n            // 左側文件管理器\n            \"Filter options\": \"篩選…\",\n            \"Filter files…\": \"篩選文件…\",\n                \"File extensions\": \"文件擴展名\",\n                \"No extension\": \"無擴展名\",\n\n            // 中間\n            \"file\": \"個文件\",\n                \"s\": \" \",\n                \"changed\": \"更改\",\n\n            // 展開/收起文件樹按鈕\n                \"Collapse file tree\": \"收起文件樹\",\n                \"Expand file tree\": \"展開文件樹\",\n\n            // 展開/收起文件按鈕\n                \"Collapse file\": \"收起文件\",\n                \"Expand file\": \"展開文件\",\n            // 複製文件按鈕\n                \"Copy file name to clipboard\": \"複製文件名到剪切板\",\n\n            \"There are no files selected for viewing\": \"沒有更改\",\n\n            // 右側\n            \"Search within code\": \"在程式碼中搜索\",\n            \"Top\": \"頂部\",\n            \"Open diff view settings\": \"打開差異視圖設置\",\n                \"Layout\": \"佈局\",\n                    \"Hide whitespace\": \"隱藏空白\",\n                    \"Compact line height\": \"自定義行高\",\n\n                \"View comments\": \"查看評論\",\n                    \"Loading comments\": \"加載評論中\",\n                    \"Comment on lines\": \"評論於行\",\n\n                \"Select all\": \"全選\",\n                \"Expand above\": \"向上展開\",\n                \"Expand below\": \"向下展開\",\n                \"Go to previous hunk\": \"上一塊\",\n                \"Go to next hunk\": \"下一塊\",\n\n            \"Customizable line height\": \"自定義行高\",\n                \"The default line height has been increased for improved accessibility. You can choose to enable a more compact line height from the view settings menu.\": \"默認行高已增加，以提高可訪問性。您可以從視圖設置菜單中選擇啟用更緊湊的行高。\",\n                \"Enable compact line height\": \"啟用自定義行高\",\n                \"Dismiss\": \"禁用\",\n\n            // 底部評論\n            \"Comments\": \"評論\",\n            \"edited by\": \"編輯者\",\n            \"Edits\": \"編輯\",\n                \"Most recent\": \"最近\",\n                \"Deleted\": \"已刪除\",\n            \"Lock\": \"鎖定\",\n                \"conversation\": \"對話\",\n                \"Off-topic\": \"偏離主題\",\n            \"Load more comments\": \"加載更多評論\",\n            \"Reference in a new issue\": \"在新議題中提及\",\n            \"Add Files\": \"添加文件\",\n            \"You're not receiving notifications from this thread.\": \"您沒有收到來自此主題的通知。\",\n            \"You're receiving notifications because you're subscribed to this thread.\": \"您收到通知是因為您訂閱了此主題。\",\n            \"Return to code\": \"返回程式碼\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) parents?/, \"$1 個父\"],\n        [/lines? changed/, \"行更改\"],//新版提交頁面\n        [/(\\d+) changed files?/, \"$1 個更改的文件\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?$/, \"$1 處更改：$2 處增加和 $3 處刪除\"],\n        [/(\\d+) additions?$/, \"$1 處增加\"],\n        [/(\\d+) deletions?$/, \"$1 處刪除\"],\n        [/This commit closes issue (#\\d+)./, \"此提交關閉了議題 $1。\"], //具體提交頁面\n        [/from ([^ ]+) to ([^ ]+)/, \"從 $1 到 $2。\"], //具體提交頁面\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 處增加，$2 處刪除未顯示，因為差異太大。請使用本地 Git 客戶端查看這些更改。\"],\n        [/(\\d+) comments? on commit/, \"該提交有 $1 條評論\"],\n        [/Edited (\\d+) times?/, \"編輯 $1 次\"],\n        // [/Commits (.+)/, \"提交於 $1\"], // 提交頁面 /<user-name>/<repo-name>/commits/<branch\n        [/Renamed from/, \"重命名自\"], // 提交中文件歷史\n        [/Copy full SHA for ([a-f0-9]{7})/, \"複製提交 $1 的完整 SHA\"],\n        [/Show description for ([a-f0-9]{7})/, \"顯示提交 $1 的描述\"],\n        [/Hide description for ([a-f0-9]{7})/, \"隱藏提交 $1 的描述\"],\n        [/View (\\d+) commit comments?/, \"查看 $1 條提交評論\"], // 新版提交 commits 頁面 /<user-name>/<repo-name>/commits/<branch>\n        [/View checks?/, \"查看檢查\"], // Android UA\n        [/Add a comment on line (L|R)(\\d+)/, \"在 $1$2 行添加評論\"], // 新版提交詳情頁\n        [/Add a comment on lines (L|R)(\\d+) to (L|R)(\\d+)/, \"在 $1$2 行到 $3$4 行上添加評論\"],\n        [/Start conversation on line (L|R)(\\d+)/, \"在 $1$2 行開始討論\"], // 新版提交詳情頁\n        [/Expand all lines: ([^ ]+)/, \"展開全部：$1\"],\n        [/Collapse file: ([^ ]+)/, \"摺疊文件：$1\"],\n        [/Collapse non-diff lines: ([^ ]+)/, \"摺疊無差異行：$1\"],\n        [/(\\d+) tags?/, \"$1 標籤\"], // 出現位置：某提交所跨標籤數\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/blob\"] = { // 倉庫 - 瀏覽程式碼\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 公共部分\n            // 許可證文件 中間欄 頂部 權限信息\n                \"the\": \"為：\", // 上半句走正則\n\n                // 許可證類型\n                    \"GNU General Public License v3.0\": \"GNU 通用公共許可證 v3.0\",\n                    \"GPL-3.0 License\": \"GPL-3.0 許可證\",\n                    \"AGPL-3.0 License\": \"AGPL-3.0 許可證\",\n                    \"LGPL-3.0 License\": \"LGPL-3.0 許可證\",\n                    \"MIT License\": \"MIT 許可證\",\n                    \"Apache License 2.0\": \"Apache-2.0 許可證\",\n                    \"OFL-1.1 License\": \"OFL-1.1 許可證\",\n                    \"0BSD License\": \"0BSD 許可證\",\n                    \"BSD-3-Clause License\": \"BSD-3-Clause 許可證\",\n                    \"BSD 3-Clause \\\"New\\\" or \\\"Revised\\\" License\": \"BSD-3-Clause 許可證\",\n                    \"CC0-1.0 License\": \"CC0-1.0 許可證\",\n                    \"WTFPL License\": \"WTFPL 許可證\",\n                    \"Unknown\": \"未知\",\n\n                // 許可證概述 懶得翻譯 O(∩_∩)O哈哈~\n\n                // 許可證範圍, 限制, 條件\n                    \"Permissions\": \"許可事項\",\n                    \"Limitations\": \"限制條件\",\n                        \"Commercial use\": \"商業用途\",\n                        \"Modification\": \"修改\",\n                        \"Distribution\": \"分佈\",\n                        \"Patent use\": \"專利使用\",\n                        \"Private use\": \"私人使用\",\n                        \"Trademark use\": \"商標使用\",\n                        \"Liability\": \"責任\",\n                        \"Warranty\": \"擔保\",\n                        \"Disclose source\": \"開源\",\n                        \"Same license\": \"相同的許可證\",\n                    \"Conditions\": \"條件\",\n                        \"License and copyright notice\": \"許可和版權聲明\",\n                        \"State changes\": \"狀態變化\",\n                        \"License and copyright notice for source\": \"來源許可和版權聲明\",\n                        \"Network use is distribution\": \"網絡使用即分發\",\n                        \"Same license (library)\": \"相同的許可證（庫）\",\n                        \"Same license (file)\": \"相同的許可證（文件）\",\n\n                \"This is not legal advice.\": \"這並不是法律建議。\",\n                \"Learn more about repository licenses\": \"瞭解更多關於倉庫許可證的信息\",\n\n\n        // 文件程式碼頁面 /<user-name>/<repo-name>/blob/<brach>/<file>\n            // 頂部提醒\n                \"This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.\": \"此提交不屬於該倉庫上的任何分支，並且可能屬於倉庫的外部分支。\",\n\n            // 快捷鍵\n                \"Source code browsing\": \"源程式碼瀏覽\",\n                    \"Jump to line\": \"跳轉到行\",\n                    \"Switch branch/tag\": \"切換分支/標籤\",\n                    \"Expand URL to its canonical form\": \"將 URL 擴展為其規範形式\",\n                    \"Show/hide all inline notes\": \"顯示/隱藏所有內嵌註釋\",\n                    \"Open blame\": \"打開追溯視圖\",\n                    \"Copy file path\": \"複製文件路徑\",\n                    \"Toggle symbols panel\": \"切換符號面板\",\n                    \"Toggle file tree\": \"切換文件樹\",\n                    \"Open code view\": \"打開程式碼視圖\",\n                    \"Open preview\": \"打開預覽\",\n                    \"Open raw file\": \"打開源文件\",\n                \"File tree\": \"文件樹\",\n                    \"Move focus to row starting with string\": \"將焦點移至字符串\",\n                    \"Focus previous row\": \"聚焦上一行\",\n                    \"Focus next row\": \"聚焦下一行\",\n                    \"Collapse row, or focus parent row\": \"摺疊行或聚焦父行\",\n                    \"Expand row, or focus child row\": \"展開行或聚焦子行\",\n\n            // 文件樹側邊欄\n                \"Expand file tree\": \"展開文件樹\",\n                \"Collapse file tree\": \"摺疊文件樹\",\n                // 搜索框\n                    \"Go to file\": \"轉到文件\",\n                        \"No matches found\": \"未找到匹配項\",\n                        \"Go to folder\": \"轉到文件夾\",\n                        \"See all results\": \"查看所有結果\",\n\n            // Git LFS 託管的文件\n                \"Stored with Git LFS\": \"Git LFS 託管\",\n\n            // Action的 action.yml 文件\n                \"You can publish this Action to the GitHub Marketplace\": \"您可以將此 Action 發佈到 GitHub 市場\",\n                \"Draft a release\": \"起草發佈\",\n            // 工作流程文件 /blob/<brach>/.github/workflows/xxxx.yml\n                \"View Runs\": \"查看運行情況\",\n            // 議題模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.yml\n                \"This file is used as an Issue Form template.\": \"該文件用作議題表單模板。\",\n                \"Give Feedback.\": \"提交反饋。\",\n            // 議題模板 /blob/<brach>/.github/ISSUE_TEMPLATE/xxxx.md\n                \"info\": \"信息\",\n                \"This file is used as a markdown issue template.\": \"該文件用作 Markdown 議題模板。\",\n            // 添加文件按鈕, 文件夾模式下\n                \"Add file\": \"添加文件\",\n            // 三個點\n                \"Raw file content\": \"原始文件內容\",\n                    // \"Jump to line\": \"跳轉到行\",\n                    \"Find in file\": \"在文件中查找\", // 激活 “換行” 時顯示\n                    \"Copy path\": \"複製路徑\",\n                    \"Copy permalink\": \"複製永久鏈接\",\n                    \"View options\": \"查看選項\",\n                        \"Show code folding buttons\": \"顯示程式碼摺疊按鈕\",\n                        \"Wrap lines\": \"換行\",\n                        \"Center content\": \"核心內容\",\n                        \"Open symbols on click\": \"單擊打開符號\",\n                    \"Ask about this file\": \"討論此文件\",\n                    \"Delete file\": \"刪除文件\",\n\n            \"Copied path!\": \"✅ 路徑已複製！\",\n\n            \"History\": \"歷史\",\n\n            \"Top\": \"頂部\",\n            \"Jump to file\": \"跳轉到文件\",\n\n            // 正文 - 錯誤信息，例如某些二進制文件\n                \"Error rendering embedded code\": \"嵌入程式碼渲染錯誤\",\n                    \"Invalid PDF\": \"無效 PDF\",\n\n            // 程式碼操作欄\n                \"Blame\": \"追溯\",\n                \"Your blame took too long to compute.\": \"追溯花了太長時間來計算。\",\n                // [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行 ($1 個位置) ·\"],\n                // Copilot 廣告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 編碼速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的時間創建模板和重複的程式碼模式，花更多的時間構建優秀的軟體。在 GitHub 程式碼空間或您最喜歡的文件編輯器中嘗試一下哈。\",\n                        \"Get GitHub Copilot\": \"獲取 GitHub Copilot\",\n                        \"Don't show again\": \"不再顯示\",\n\n                \"Executable File\": \"可執行文件\",\n                \"executable file\": \"可執行文件\",\n\n                // Copilot\n                \"Ask Copilot about this file\": \"與 Copilot 討論此文件\",\n\n                \"Raw\": \"源碼\",\n                // 文件複製圖標\n                    \"Copy raw file\": \"複製原始文件\",\n                    \"Copy raw content\": \"複製原始文件\",\n                // 文件下載圖標\n                    \"Download raw file\": \"下載原始文件\",\n                // 文件編輯圖標\n                    \"More file actions\": \"更多文件操作\",\n                    \"Edit this file\": \"編輯本文件\",\n                        \"More edit options\": \"更多編輯選項\",\n                            \"Edit file...\": \"編輯文件…\",\n                            \"In place\": \"就地編輯\",\n                    \"Edit the file in your fork of this project\": \"在您的複刻中編輯文件\",\n                        \"Edit file\": \"編輯文件\",\n                            \"Edit in place\": \"就地編輯\",\n                        \"Open with...\": \"打開…\",\n                            \"You must be on a branch to make or propose changes to this file\": \"您必須在分支上才能對該文件進行修改或提出修改建議\",\n\n                    // 按鈕提示\n                    \"Fork this repository and edit the file\": \"複刻此倉庫並編輯文件\",\n                // 符號面板圖標\n                    \"Open symbols panel\": \"打開符號面板\",\n                    \"Close symbols panel\": \"關閉符號面板\",\n\n            // 程式碼視圖 行號欄 菜單\n                \"Copy line\": \"複製行\",\n                \"Copy lines\": \"複製行\",\n                \"Copy permalink\": \"複製永久鏈接\",\n                \"View git blame\": \"瀏覽 Git 追溯\",\n                \"Reference in new issue\": \"引用到新議題\",\n                \"Reference in new discussion\": \"引用到新討論\",\n                \"View file in GitHub.dev\": \"在 GitHub.dev 中查看文件\",\n                \"View file in different branch/tag\": \"查看不同分支/標籤中的文件\",\n\n            // 提醒\n                \"This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.\": \"此文件包含雙向 Unicode 文本，其解釋或編譯方式可能與下面的顯示不同。要查看，請在一個能顯示隱藏的 Unicode 字符的編輯器中打開文件。\",\n                \"Learn more about bidirectional Unicode characters\": \"瞭解更多關於雙向 Unicode 字符的信息\",\n                \"Show hidden characters\": \"顯示隱藏字符\",\n                \"Code view is read-only.\": \"程式碼視圖只讀。\",\n                    \"Switch to the editor.\": \"切換到編輯器。\",\n\n            // 程式碼視圖底部\n                \"View remainder of file in raw view\": \"以原碼視圖查看文件剩餘部分\",\n\n            // 正文部分\n                // 只讀模式\n                    \"Code view is read-only. \": \"程式碼視圖是只讀的。\",\n                    \"Switch to the editor.\": \"請切換至編輯器。\",\n                // csv 文件\n                    \"Search this file\": \"搜索這個文件\", // csv 文件\n                    // 提醒\n                        \"We can make this file\": \"如果糾正此錯誤，我們可以使該文件\",\n                        \"beautiful and searchable\": \"美觀且可搜索\",\n                        \"if this error is corrected: No commas found in this CSV file in line 0.\": \"：在此 CSV 文件中的第 0 行中找不到逗號。\",\n\n                // 大文件\n                    \"View raw\": \"查看原始數據\",\n                    \"(Sorry about that, but we can’t show files that are this big right now.)\": \"（很抱歉，但我們現在無法顯示這麼大的文件。）\",\n                // 無法渲染\n                    \"Sorry, something went wrong.\": \"抱歉，出了一些問題。\",\n                    \"Reload?\": \"重新加載？\",\n                    \"Unable to render code block\": \"無法渲染程式碼塊\",\n\n            \"More Pages\": \"更多頁面\",\n\n            // Markdown 文件右側大綱面板\n                \"Outline\": \"大綱\",\n                    \"Close outline\": \"關閉大綱\",\n                    \"Filter headings\": \"篩選標題\",\n\n            // 右側符號面板\n                \"Symbols\": \"符號\",\n                    \"Close symbols\": \"關閉符號面板\",\n                    \"Symbol outline not available for this file\": \"大綱不適用於此文件\",\n                    \"To inspect a symbol, try clicking on the symbol directly in the code view.\": \"要檢查一個符號，可以嘗試在程式碼視圖中直接點擊該符號。\",\n                    \"Code navigation supports a limited number of languages.\": \"程式碼導航支持有限數量的語言。\",\n                    \"See which languages are supported.\": \"查看支持哪些語言。\",\n\n                    \"Find definitions and references for functions and other symbols in this file by clicking a symbol below or in the code.\": \"通過點擊下方或程式碼中的符號，查找此文件中函數和其他符號的定義和引用。\",\n                    \"Filter symbols\": \"篩選符號\",\n\n                \"All Symbols\": \"所有符號\",\n                    \"Search for this symbol in this repository\": \"在此倉庫中搜索此符號\",\n                    \"all repositories.\": \"所有倉庫。\",\n                    \"In this file\": \"在這個文件中\",\n                    \"Definition\": \"定義\",\n                    \"search-based\": \"基於搜索\",\n                    \"References\": \"引用\",\n                    \"Reference\": \"引用\",\n                    \"No definitions or references found\": \"未找到定義或引用\",\n                    \"Search for this symbol\": \"搜索此符號\",\n\n        // 程式碼追溯頁面 /<user-name>/<repo-name>/blame/<branch>/<file>\n            \"Newer\": \"新的\",\n            \"Older\": \"舊的\",\n\n            \"Contributor\": \"貢獻者\",\n            \"Contributors\": \"貢獻者\",\n\n            // 浮動搜索框\n                \"Find\": \"查找\",\n                \"Press\": \"按\",\n                \"again to open the browser's find menu\": \"打開瀏覽器的查找菜單\",\n                \"Search this file\": \"搜索此文件\",\n\n            \"Ask Copilot about this snippet\": \"向 Copilot 詢問此片段\",\n                \"Explain\": \"解釋\",\n                \"Suggest improvements\": \"提出優化建議\",\n                \"Attach to current thread\": \"附加至當前話題\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) lines? \\((\\d+) loc\\) ·/, \"$1 行（$2 非空行）·\"],  // loc = 程式碼行（line of code）= 行數 - 空行數（lines - blank lines）\n        [/(\\d+) References?/, \"$1 次引用\"],\n        [/Blame prior to change ([a-f0-9]{7}), made on ([^ ]+)/, \"追溯提交 $1，創建於 $2\"],\n\n        // 程式碼追溯頁面\n        [/(\\d+) contributors?/, \"$1 位貢獻者\"],\n        [/(\\d+) commits?/, \"$1 個提交\"],\n\n        // 許可證\n        [/([^ ]+) is licensed under/, \"$1 的許可證\"],\n\n        [/First (\\d+) files? shown./, \"顯示前 $1 個文件。\"],\n\n        [/Line (\\d+) options/, \"行 $1 選項\"], // TODO: 修復翻譯未生效問題\n\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/(.+) at (.+?) · (.+)/, \"$1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/blame\"] = I18N[\"zh-TW\"][\"repository/blob\"];\n\nI18N[\"zh-TW\"][\"repository/discussions\"] = { // 討論頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n\n        // 沒有任何討論時\n            \"Get started with GitHub Discussions\": \"開始使用 GitHub 討論\",\n                \"Discussions is a central gathering space for your community to ask questions, share ideas, and build connections with each other—all right next to your code.\": \"討論是一個社區成員集中交流的空間，大家可以在這裡提問、分享想法，並彼此建立聯繫——而且這一切都在您的程式碼旁邊完成。\",\n\n                \"Get Started\": \"開始使用\",\n                \"Not now\": \"暫不\",\n\n                \"Only maintainers can see this page and enable Discussions\": \"只有維護者能看到此頁面並啟用討論\",\n\n            // 用法介紹\n                // 自定義分類\n                    \"Create custom categories and discussion types to suit your community's unique needs.\": \"創建自定義類別和討論類型，以滿足您社區的獨特需求。\",\n                \"Mark the most helpful answer\": \"標記答案\",\n                    \"Highlight quality responses and make the best answer super discoverable.\": \"突出優質回答，讓最佳答案易於被發現。\",\n                \"Pin big announcements\": \"置頂功能\",\n                    \"Direct the community’s attention to important announcements or popular discussions.\": \"將社區的關注引導至重要公告或熱門討論。\",\n                \"Label your discussions\": \"標籤功能\",\n                    \"Organize and triage discussions to keep your space tidy and help contributors filter to areas of interest.\": \"組織和篩選討論內容，以保持社區空間整潔，並幫助參與者過濾到感興趣的領域。\",\n                \"Respond on-the-go with mobile\": \"通過移動端隨時響應\",\n                    \"Check in and respond to discussions whenever and wherever is convenient for you.\": \"隨時隨地在方便的時候查看並回復討論。\",\n                \"Connect to your apps\": \"鏈接應用\",\n                    \"Integrate with your existing workflows and GitHub Actions via the GraphQL API and webhooks.\": \"通過 GraphQL API 和 Web 鉤子與現有工作流程及 GitHub Actions 集成。\",\n                \"Thread your conversations\": \"串聯對話\",\n                    \"Keep conversations on track and encourage collaboration with threaded comments.\": \"通過串聯評論讓對話保持正軌並促進協作。\",\n                \"Monitor community insights\": \"社區數據看板\",\n                    \"Track the health and growth of your community with a dashboard full of actionable data.\": \"通過充滿可操作數據的儀表盤，追蹤社區的健康狀況與發展情況。\",\n                \"Ask your community with polls\": \"社區投票\",\n                    \"Gauge interest in a feature, vote on a meetup time, or learn more about your community with polls.\": \"通過投票來衡量對某項功能的興趣、對聚會時間進行表決，或進一步瞭解您的社區情況。\",\n\n            \"Communities using Discussions\": \"使用討論交流\",\n\n            \"Ready to try Discussions?\": \"準備嘗試討論？\",\n                \"Click “get started” to enable it for your community and start your first discussion. Now is not the right time? Click “not now” to dismiss this tab. You can always turn Discussions on in your repository settings later.\": \"點擊 “開始使用” 即可為您的社區啟用該功能，並發起您的首次討論。現在不方便操作？點擊 “暫不” 可關閉此標籤頁。您也可以稍後在倉庫設置中隨時開啟討論功能。\",\n\n            \"Read about best practices for setting up Discussions for your community.\": \"瞭解為社區設置討論功能的最佳實踐。\",\n                \"Visit the docs\": \"查看\",\n\n        // 討論頁面 /<user-name>/<repo-name>/discussions\n        // 組織討論頁 /orgs/<orgs-name>/discussions\n            // 頂部提示\n                \"You can't perform that action at this time.\": \"您現在不能執行該操作。\",\n\n            \"Start a new discussion\": \"開始新的討論\",\n            \"Get started by creating the first\": \"開始吧，為您的社區創建\",\n            \"discussion for your community.\": \"第一個討論。\",\n            \"Got it\": \"知道了\",\n\n            \"About pinned discussions\": \"關於置頂討論\",\n            \"When you start a discussion,\": \"當您開始討論時，\",\n            \"you can choose to feature it\": \"您可以選擇將\",\n            \"here by pinning it.\": \"其置頂在此處。\",\n\n            \"Personalize your categories\": \"自定義您的分類\",\n            \"Choose categories that fit your community. These could be announcements, Q&A with marked answers, open-ended conversations, or polls for community voting.\": \"選擇適合您社區的類別。這些可以是公告、帶有標記答案的問答、開放式對話或用於調查的社區投票。\",\n\n            \"Welcome to discussions!\": \"歡迎參與討論！\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more.\": \"討論是為了分享公告，在您的社區創造對話，回答問題，以及更多。\",\n            \"Discussions are to share announcements, create conversation in your community, answer questions, and more. To get started, you can create a\": \"討論是為了分享公告，在您的社區創造對話，回答問題，以及更多。首先，您可以創建一個\",\n\n            // 組織討論\n            \"Welcome to Organization Discussions!\": \"歡迎參與組織討論！\",\n            \"There are no discussions here yet\": \"這裡還沒有討論\",\n            \"Organization discussions are to broadcast news, create conversation in your community, answer questions, and share ideas. To get started, you can\": \"組織討論是為了廣播新聞，在您的社區創造對話，回答問題，並分享想法。要開始，您可以\",\n            \"create a new discussion.\": \"創建新的討論。\",\n\n            // 左側欄\n            \"Submit search\": \"提交搜索\",\n            \"Search all discussions\": \"搜索所有討論\",\n            \"Suggested filters\": \"推薦的篩選器\",\n            \"filter by discussion author\": \"按討論作者篩選\",\n            \"filter by discussion category\": \"按討論分類篩選\",\n            \"filter by answered or unanswered\": \"按已答覆或未答覆篩選\",\n\n            \"Categories\": \"分類\",\n            \"View all discussions\": \"查看全部討論\", // 組織討論\n            \"View all\": \"查看全部\", // 倉庫討論\n\n            \"Most helpful\": \"最有幫助\",\n                \"Be sure to mark someone’s comment as an answer if it helps you resolve your question — they deserve the credit!\": \"如果某人的評論有助於您解決問題，請務必將其標記為答案——他們值得稱讚！\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Community guidelines\": \"社區指南\",\n            \"Community insights\": \"社區見解\",\n\n            //\n            \"Sort by:\": \"排序方式：\",\n                \"Latest activity\": \"最新活動\",\n                \"Date created\": \"創建日期\",\n                \"Top: Past week\": \"置頂：過去一週\",\n                \"Top: Past month\": \"置頂：過去一月\",\n                \"Top: Past day\": \"置頂：過去一天\",\n                \"Top: Past year\": \"置頂：過去一年\",\n                \"Top: All\": \"置頂：所有\",\n            \"Label\": \"標籤\",\n                \"Filter by label\": \"按標籤篩選\",\n                \"Filter labels\": \"篩選標籤\",\n                \"Unlabeled\": \"無標籤\",\n\n                \"bug\": \"BUG\",\n                    \"Something isn't working\": \"有些東西不工作\",\n                \"dependencies\": \"依賴性\",\n                    \"Pull requests that update a dependency file\": \"更新一個依賴文件的拉取請求\",\n                \"documentation\": \"文檔\",\n                    \"Improvements or additions to documentation\": \"文檔的改進或補充\",\n                \"duplicate\": \"重複\",\n                    \"This issue or pull request already exists\": \"這個議題或拉取請求已經存在\",\n                \"enhancement\": \"增強\",\n                    \"New feature or request\": \"新功能或請求\",\n                \"good first issue\": \"好的首發議題\",\n                    \"Good for newcomers\": \"適合新人\",\n                \"help wanted\": \"需要幫助\",\n                    \"Extra attention is needed\": \"需要特別關注\",\n                \"invalid\": \"無效\",\n                    \"This doesn't seem right\": \"這似乎不對\",\n                \"question\": \"問題\",\n                    \"Further information is requested\": \"要求提供更多信息\",\n                \"wontfix\": \"不會修復\",\n                    \"This will not be worked on\": \"這將不會被處理\",\n\n                \"Edit labels\": \"編輯標籤\",\n            \"Filter\": \"篩選\",\n            \"Filter:\": \"篩選:\",\n                \"Closed\": \"已關閉\",\n                \"Answered\": \"已答覆\",\n                \"Unanswered\": \"未答覆\",\n                \"Locked\": \"鎖定\",\n                \"Unlocked\": \"未鎖定\",\n                \"All\": \"所有\",\n\n            \"New discussion\": \"新建討論\",\n\n            \"There aren't any discussions.\": \"暫無任何討論。\",\n            \"There are no matching discussions.\": \"沒有匹配的討論。\",\n            \"There are no matching answered discussions.\": \"沒有匹配的已答覆討論。\",\n            \"There are no matching unanswered discussions.\": \"沒有匹配的未答覆討論。\",\n            \"You can open a\": \"您可以打開一個\",\n            \"new discussion\": \"新討論\",\n            \"to ask questions about this repository or get help.\": \"，詢問關於這個倉庫的問題或獲得幫助。\",\n\n            \"asked\": \"回覆\",\n            \"started\": \"開始於\",\n            \"· Unanswered\": \" · 未答覆\",\n            \"· Answered\": \" · 已答覆\",\n\n            // 下拉補充\n            \"Use\": \"使用\",\n            \"click/return\": \"點擊/回車\",\n            \"to exclude labels.\": \"去排除標籤。\",\n\n            // 狀態詞\n            \"asked a question in\": \"提出了一個問題在\",\n            \"Unanswered Question\": \"未解答的問題\",\n            \"announced\": \"公佈於\",\n            \"in\": \"在\",\n\n        // 討論分類 /<user-name>/<repo-name>/discussions/categories\n            \"Manage discussion categories\": \"管理討論分類\",\n                \"Sections are a dropdown of categories. Categories have types of discussions, and discussions within them.\": \"本欄目是類別的下拉菜單。類別中包含討論類型和討論內容。\",\n            // [/(\\d+) categories?/, \"$1 個分類\"],\n            \"Categories without section\": \"無欄目分類\",\n            \"Announcements\": \"公告\",\n                \"Updates from maintainers\": \"維護者的更新信息\",\n            \"General\": \"通常\",\n                \"Chat about anything and everything here\": \"在這裡談論任何事情\",\n            \"Ideas\": \"想法\",\n                \"Share ideas for new features\": \"分享對新功能的想法\",\n            \"Polls\": \"投票\",\n                \"Take a vote from the community\": \"社區中進行投票\",\n            \"Q&A\": \"問答\",\n                \"Ask the community for help\": \"向社會尋求幫助\",\n                \"Answers enabled\": \"已啟用答案\",\n            \"Show and tell\": \"展示與講述\",\n                \"Show off something you've made\": \"炫耀您所做的事情\",\n\n            \"New section\": \"新建欄目\",\n            \"New category\": \"新建分類\",\n\n            \"Edit Announcements category\": \"編輯 “公告” 分類\",\n            \"Edit General category\": \"編輯 “通常” 分類\",\n            \"Edit Ideas category\": \"編輯 “想法” 分類\",\n            \"Edit Polls category\": \"編輯 “投票” 分類\",\n            \"Edit Q&A category\": \"編輯 “問與答” 分類\",\n            \"Edit Show and tell category\": \"編輯 “展示與講述” 分類\",\n\n            \"Delete Announcements category\": \"刪除 “公告” 分類\",\n            \"Delete General category\": \"刪除 “通常” 分類\",\n            \"Delete Ideas category\": \"刪除 “想法” 分類\",\n            \"Delete Polls category\": \"刪除 “投票” 分類\",\n            \"Delete Q&A category\": \"刪除 “問與答” 分類\",\n            \"Delete Show and tell category\": \"刪除 “展示與講述” 分類\",\n\n            // 刪除分類\n                \"If this category has discussions associated, where would you like to reassign them?\": \"如果此類別有相關的討論，您希望將它們重新分配到何處？\",\n                \"Delete and move\": \"刪除並移動\",\n\n            // 刪除欄目\n                // [/Delete (.*) section/, \"刪除 “$1” 欄目\"],\n                \"Are you sure you want to delete this section? All categories in this section will no longer belong to a section.\": \"您確定要刪除此欄目嗎？此欄目中的所有分類將不再屬於一個欄目。\",\n\n        // 新建 & 編輯 分類 /<user-name>/<repo-name>/discussions/categories/new\n        // /<user-name>/<repo-name>/discussions/categories/<id>/edit\n            \"Create category\": \"創建分類\",\n            \"Edit category\": \"編輯分類\",\n            \"Category name\": \"分類名稱\",\n            \"Description\": \"描述\",\n            \"Add a description (optional)\": \"添加描述（可選）\",\n            \"Discussion Format\": \"討論形式\",\n                \"Open-ended discussion\": \"開放式討論\",\n                    \"Enable your community to have conversations that don't require a definitive answer to a question. Great for sharing tips and tricks or just chatting.\": \"使您的社區能夠進行對話，不需要對問題作出明確的回答。很適合分享技巧和竅門，或者只是聊天。\",\n                \"Question / Answer\": \"問 / 答\",\n                    \"Enable your community to ask questions, suggest answers, and vote on the best suggested answer.\": \"使您的社區能夠提出問題、建議答案並投票選出最佳建議答案。\",\n                \"Announcement\": \"公告\",\n                    \"Share updates and news with your community. Only maintainers and admins can post new discussions in these categories, but anyone can comment and reply.\": \"與您的社區分享更新和新聞。只有維護者和管理員可以在這些類別中發佈新討論，但任何人都可以發表評論和回覆。\",\n                \"Poll\": \"投票\",\n                    \"Gauge interest, vote, and interact with other community members using polls.\": \"調查興趣，投票，並使用投票與其他社區成員互動。\",\n                    \"Cannot be changed to polls. Please create a new category for polls.\": \"不能更改為投票。請為投票創建一個新類別。\",\n            \"Add this category to a section (optional)\": \"將此分類添加到一個欄目（可選）\",\n                \"No section\": \"無欄目\",\n\n            \"Submitting\": \"提交中\",\n\n            // 頂部提醒\n                \"Category Announcements has been created.\": \"分類 “公告” 已創建\",\n                \"Category General has been created.\": \"分類 “通常” 已創建\",\n                \"Category Ideas has been created.\": \"分類 “想法” 已創建\",\n                \"Category Polls has been created.\": \"分類 “投票” 已創建\",\n                \"Category Q&A has been created.\": \"分類 “問與答” 已創建\",\n                \"Category Show and tell has been created.\": \"分類 “展示與講述” 已創建\",\n\n                \"Category Announcements has been updated.\": \"分類 “公告” 已更新\",\n                \"Category General has been updated.\": \"分類 “通常” 已更新\",\n                \"Category Ideas has been updated.\": \"分類 “想法” 已更新\",\n                \"Category Polls has been updated.\": \"分類 “投票” 已更新\",\n                \"Category Q&A has been updated.\": \"分類 “問與答” 已更新\",\n                \"Category Show and tell has been updated.\": \"分類 “展示與講述” 已更新\",\n\n                \"Category Announcements has been deleted.\": \"分類 “公告” 已刪除\",\n                \"Category General has been deleted.\": \"分類 “通常” 已刪除\",\n                \"Category Ideas has been deleted.\": \"分類 “想法” 已刪除\",\n                \"Category Polls has been deleted.\": \"分類 “投票” 已刪除\",\n                \"Category Q&A has been deleted.\": \"分類 “問與答” 已刪除\",\n                \"Category Show and tell has been deleted.\": \"分類 “展示與講述” 已刪除\",\n\n                // [/Category \\\"(.*)\\\" has been created./, \"分類 “$1” 已創建。\"],\n                // [/Category \\\"(.*)\\\" has been updated./, \"分類 “$1” 已更新。\"],\n                // [/Category \\\"(.*)\\\" has been deleted./, \"分類 “$1” 已刪除。\"],\n\n        // 新建 & 編輯欄目 /<user-name>/<repo-name>/discussions/sections/new\n            \"Create section\": \"創建欄目\",\n            \"Section name\": \"欄目名稱\",\n            \"Add categories to this section\": \"向欄目添加分類\",\n            \"A category can only belong to one section at a time.\": \"一個分類一次只能屬於一個欄目。\",\n\n            // 頂部提醒\n                // [/Section \\\"(.*)\\\" has been created./, \"欄目 “$1” 已創建。\"],\n                // [/Section \\\"(.*)\\\" has been updated./, \"欄目 “$1” 已更新。\"],\n                // [/Section \\\"(.*)\\\" has been deleted./, \"欄目 “$1” 已刪除。\"],\n\n        // 新建討論頁面 /<user-name>/<repo-name>/discussions/new\n            \"Start a new discussion\": \"開始新的討論\",\n            \"Select a discussion category\": \"選擇討論分類\",\n            \"Get started\": \"開始\",\n            \"Category:\": \"分類：\",\n            \"Contributing\": \"貢獻\",\n            \"It looks like this is your first time starting a discussion in this repository!\": \"看起來這是您第一次在此倉庫中開始討論！\",\n            \"This is a community we build together. Please be welcoming and open minded.\": \"這是我們共同建立的社區。請保持熱情和開放的態度。\",\n\n            // 投票類\n            \"Poll question\": \"投票問題\",\n            \"Ask your question here (required)\": \"在此提出您的問題（必填）。\",\n            \"Poll options\": \"投票選項\",\n            \"Option 1 (required)\": \"選項 1（必填）\",\n            \"Option 2 (required)\": \"選項 2（必填）\",\n            \"Option\": \"選項\",\n            \"+ Add an option\": \"+ 增加選項\",\n\n            // 右側欄\n            \"Labels\": \"標籤\",\n                \"None yet\": \"暫無\",\n            \"Helpful resources\": \"幫助性資源\",\n            \"Code of conduct\": \"行為準則\",\n            \"Security policy\": \"安全政策\",\n            \"Support\": \"支持\",\n            \"GitHub Community Guidelines\": \"GitHub 社區準則\",\n\n            \"Ask a question, start a conversation, or make an announcement\": \"提出問題、開始對話或發佈公告\",\n\n        // 新建討論頁面 /<user-name>/<repo-name>/discussions/new?category=general\n            \"If this doesn’t look right you can\": \"如果這個看起來不對，您可以\",\n            \"choose a different category.\": \"選擇不同的類別。\",\n            \"Fields marked with an asterisk (*) are required.\": \"標有星號（*）的字段是必填字段。\",\n            \"Discussion title\": \"討論標題\",\n\n        // 新建討論頁面 /<user-name>/<repo-name>/discussions/new?category=announcements&welcome_text=true\n            \"Since you're new here, we're helping you to get started by generating your first post to the community. Don't worry, you can edit this discussion after you post!\": \"由於您是新來的，我們正在幫助您開始向社區發佈您的第一個帖子。不用擔心，您可以在發佈後編輯此討論！\",\n\n        // 某個討論頁面 /<user-name>/<repo-name>/discussions/<id>\n            // [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已經在 $1 中創建了第一個討論!\"],\n\n            // 頂部提醒\n                \"Discussion has successfully been pinned.\": \"討論已成功置頂。\",\n                \"Discussion has been unpinned.\": \"討論已取消置頂。\",\n                \"Discussion pinned to Announcements\": \"在 “公告” 上置頂討論\",\n                \"Discussion pinned to General\": \"在 “通常” 上置頂討論\",\n                \"Discussion pinned to Ideas\": \"在 “想法” 上置頂討論\",\n                \"Discussion pinned to Polls\": \"在 “投票” 上置頂討論\",\n                \"Discussion pinned to Q&A\": \"在 “問與答” 上置頂討論\",\n                \"Discussion pinned to Show and tell\": \"在 “展示與講述” 上置頂討論\",\n                \"Discussion unpinned from Announcements\": \"取消在 “公告” 上置頂討論\",\n                \"Discussion unpinned from General\": \"取消在 “通常” 上置頂討論\",\n                \"Discussion unpinned from Ideas\": \"取消在 “想法” 上置頂討論\",\n                \"Discussion unpinned from Polls\": \"取消在 “投票” 上置頂討論\",\n                \"Discussion unpinned from Q&A\": \"取消在 “問與答” 上置頂討論\",\n                \"Discussion unpinned from Show and tell\": \"取消在 “展示與講述” 上置頂討論\",\n\n            \"Pinned\": \"已置頂\",\n\n            \"announced in\": \"宣佈於\",\n            \"started this conversation in\": \"開始了這次討論，在\",\n            \"asked this question in\": \"提出了這個問題，在\",\n            \"Maintainer\": \"維護者\",\n            \"Sponsor\": \"贊助者\",\n            \"Discussion options\": \"討論選項\",\n            \"Category\": \"分類\",\n\n            \"You are a maintainer on this repository.\": \"您是這個倉庫的維護者。\",\n            \"You are the author of this discussion.\": \"您是這個討論的作者。\",\n\n            // [/(\\d+) answers?/, \"$1 位答覆者\"],\n            \"Return to top\": \"返回頂部\",\n            // [/(\\d+) comments?/, \"$1 條評論\"],\n            // [/(\\d+) replies?/, \"$1 條答覆\"],\n            // [/(\\d+) suggested answer/, \"$1 個建議答案\"],\n\n            \"Answered by\": \"答覆者：\",\n            \"View full answer\": \"查看完整答案\",\n            \"Oldest\": \"最早\",\n            \"Newest\": \"最新\",\n            \"Top\": \"置頂\",\n            \"Comment options\": \"評論選項\",\n\n\n            \"Events\": \"活動\",\n            \"Marked\": \"標記為\",\n            \"an\": \"一個\",\n            \"Marked then unmarked an answer\": \"標記後，又取消標記\",\n            \"Marked as answer\": \"標記為答案\",\n            \"Mark as answer\": \"標記為答案\",\n            \"Answer selected by\": \"被標記答案由\",\n            \"Unmark as answer\": \"取消標記為答案\",\n            \"Answer\": \"答案\",\n\n            \"This comment has been minimized.\": \"此評論被最小化。\",\n            \"This comment was marked as off-topic.\": \"此評論被標記為偏離主題。\",\n            \"Show comment\": \"顯示評論\",\n            \"Hide comment\": \"隱藏評論\",\n\n            // 隱藏評論對話框\n                \"The reason will be displayed to describe this comment to others.\": \"將顯示原因，以便向其他人描述此評論。\",\n                \"Learn more about hiding a comment\": \"瞭解更多關於隱藏評論的信息\",\n                \"Choose a reason for hiding this comment\": \"選擇隱藏此評論原因\",\n                \"Unhide\": \"取消隱藏\",\n                \"Choose a reason\": \"選擇原因\",\n                    \"Abuse\": \"濫用\",\n                    \"Spam\": \"垃圾信息\",\n                    \"Off Topic\": \"偏離主題\",\n                    \"Outdated\": \"過時\",\n                    \"Duplicate\": \"重複\",\n                    \"Resolved\": \"已解決\",\n\n            // 取消隱藏評論\n                \"Unhide\": \"取消隱藏\",\n                \"Unhide comment\": \"取消隱藏評論\",\n                \"Are you sure you want to unhide this comment?\": \"您確定要取消隱藏此評論嗎？\",\n\n            // [/Show (\\d+) previous repl(y|ies)/, \"顯示 $1 條之前的答覆\"],\n            // [/(\\d+) hidden items?/, \"$1 條隱藏專案\"],\n\n            \"Loading more replies...\": \"載入更多回復中…\",\n\n            \"Remember, contributions to this repository should follow its\": \"請記住，對該倉庫的貢獻應遵循\",\n            \"Remember, contributions to this repository should follow our\": \"請記住，對該倉庫的貢獻應遵循我們的\",\n            \"code of conduct\": \"行為準則\",\n            \"contributing guidelines\": \"貢獻準則\",\n\n            // [/(\\d+) new suggested answers?/, \"$1 個新的建議答案\"],\n            \"Answer selected\": \"已選擇答案\",\n\n            // 右側欄\n            // /([\\d,]+) participants?/, \"$1 位參與者\"\n            \"and others\": \"和其它\",\n            \"Reopened\": \"重新打開\",\n            \"Closed as resolved\": \"關閉為已解決\",\n\n            \"Change category\": \"更改類別\",\n            \"Converted from issue\": \"由議題轉化而來\",\n                // [/This discussion was converted from issue/, \"本討論由以下議題轉換而來\"],\n\n            \"Notifications\": \"通知類型\",\n                \"Subscribe\": \"訂閱\",\n                \"Unsubscribe\": \"退訂\",\n                \"You’re not receiving notifications from this thread.\": \"您沒有收到來自該話題的通知。\",\n                \"You’re receiving notifications because you’re watching this repository.\": \"您收到通知是因為您正在關注此倉庫。\",\n                \"You’re receiving notifications because you authored the thread.\": \"您收到通知是因為您提出了該話題。\",\n                \"You’re receiving notifications because you’re subscribed to this thread.\": \"您收到通知是因為您訂閱了該話題。\",\n                \"You’re receiving notifications because you were mentioned.\": \"您收到通知是因為有人 @您。\",\n                \"You’re receiving notifications because you commented.\": \"您收到通知是因為您發表了評論。\",\n                \"You’re receiving notifications because you are watching pull requests on this repository.\": \"您收到通知是因為您正在關注此倉庫上的拉取請求。\",\n                \"You’re receiving notifications because you are watching issues on this repository.\": \"您收到通知是因為您正在關注此倉庫上的議題。\",\n                \"You’re receiving notifications because you modified the open/close state.\": \"您收到通知是因為您修改了打開/關閉狀態。\",\n                \"You’re ignoring this repository.\": \"您忽略了這個倉庫。\",\n\n            // 鎖定對話\n            \"Lock conversation\": \"鎖定對話\",\n                \"Are you sure you want to lock conversation on this discussion?\": \"您確定要鎖定此討論的對話嗎？\",\n                \"Other users\": \"其他用戶\",\n                \"can’t add new comments\": \"無法添加新評論\",\n                \"to this discussion.\": \"到該討論。\",\n                \"You and other collaborators\": \"您和其他協作者\",\n                \"with access\": \"具有訪問權限\",\n                \"to this repository\": \"該倉庫\",\n                \"can still leave comments\": \"仍然可以留下評論\",\n                \"that others can see.\": \"，其他人可以看到。\",\n                \"You can always unlock this discussion again in the future.\": \"您今後仍可以隨時再次解鎖此討論。\",\n                \"This conversation has been locked and limited to collaborators.\": \"此對話已鎖定，僅協作者可評論。\",\n            \"Unlock conversation\": \"解鎖對話\",\n                \"Are you sure you want to unlock conversation on this discussion?\": \"您確定要解鎖此討論的對話嗎？\",\n                \"Everyone\": \"任何人\",\n                \"will be able to comment on this discussion once more.\": \"將能夠再次對這個討論發表評論。\",\n                \"You can always lock this discussion again in the future.\": \"您今後仍可以隨時再次鎖定此討論。\",\n            \"Transfer this discussion\": \"轉移討論\",\n                // 轉移議題 對話框\n                \"Results are limited to top repositories, search to find more.\": \"結果僅限於置頂倉庫，請搜索以查找更多信息。\",\n                \"Move this discussion to another repository owned by\": \"將此討論移至另一個擁有的倉庫由\",\n                \"Move this discussion to another repository you own.\": \"將此討論移至您擁有的另一個倉庫。\",\n                \"Search repositories\": \"搜索倉庫\",\n                \"There aren't any eligible repositories that match your query.\": \"沒有任何符合條件的倉庫與您的查詢匹配。\",\n                \"There aren't any eligible repositories to transfer this discussion to.\": \"沒有任何符合條件的倉庫可以將此討論轉移到其他倉庫。\",\n                \"Transfer discussion\": \"轉移討論\",\n            \"Pin discussion\": \"置頂討論\",\n                \"You can pin up to 4 discussions. They will appear publicly at the top of the discussions page.\": \"您最多可以置頂 4 個討論。它們將公開顯示在討論頁面的頂部。\",\n                \"Configure pinned discussion\": \"設置置頂討論\",\n                    \"Background\": \"背景色\",\n                    \"Pattern\": \"圖案\",\n                \"Pinning discussion…\": \"置頂討論…\",\n            \"Edit pinned discussion\": \"編輯置頂討論\",\n            \"Unpin discussion\": \"取消置頂討論\",\n                \"Are you sure you want to unpin this discussion?\": \"您確定要取消置頂討論嗎？\",\n                \"The discussion itself won't be deleted, it just won't be shown prominently above the list of discussions.\": \"討論本身不會被刪除，只是不會突出顯示在討論列表上方。\",\n                // 頂部提醒\n                // [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"討論 “$1” 已取消置頂。\"],\n            \"Pin discussion to Announcements\": \"將討論置頂到 “公告”\",\n                \"Pin this discussion to this category\": \"將此討論置頂到此類別\",\n                    \"This will pin this discussion to the top of the Announcements category.\": \"這將此討論置頂到 “公告” 類別頂部。\",\n                    \"Pin to Announcements\": \"置頂到 “公告”\",\n            \"Pin discussion to General\": \"將討論置頂到 “通常”\",\n                    \"This will pin this discussion to the top of the General category.\": \"這將此討論置頂到 “通常” 類別頂部。\",\n                    \"Pin to General\": \"置頂到 “通常”\",\n            \"Pin discussion to Ideas\": \"將討論置頂到 “想法”\",\n                    \"This will pin this discussion to the top of the Ideas category.\": \"這將此討論置頂到 “想法” 類別頂部。\",\n                    \"Pin to Ideas\": \"置頂到 “想法”\",\n            \"Pin discussion to Polls\": \"將討論置頂到 “投票”\",\n                    \"This will pin this discussion to the top of the Polls category.\": \"這將此討論置頂到 “投票” 類別頂部。\",\n                    \"Pin to Polls\": \"置頂到 “投票”\",\n            \"Pin discussion to Q&A\": \"將討論置頂到 “問與答”\",\n                    \"This will pin this discussion to the top of the Q&A category.\": \"這將此討論置頂到 “問與答” 類別頂部。\",\n                    \"Pin to Q&A\": \"置頂到 “問與答”\",\n            \"Pin discussion to Show and tell\": \"將討論置頂到 “展示與講述”\",\n                    \"This will pin this discussion to the top of the Show and tell category.\": \"這將此討論置頂到 “展示與講述” 類別頂部。\",\n                    \"Pin to Show and tell\": \"置頂到 “展示與講述”\",\n            \"Unpin discussion from this category\": \"從此類別取消置頂\",\n                \"Are you sure you want to unpin this discussion from Announcements?\": \"您確定要從 “公告” 中取消置頂此討論嗎？\",\n                \"Are you sure you want to unpin this discussion from General?\": \"您確定要從 “通常” 中取消置頂此討論嗎？\",\n                \"Are you sure you want to unpin this discussion from Ideas?\": \"您確定要從 “想法” 中取消置頂此討論嗎？\",\n                \"Are you sure you want to unpin this discussion from Polls?\": \"您確定要從 “投票” 中取消置頂此討論嗎？\",\n                \"Are you sure you want to unpin this discussion from Q&A?\": \"您確定要從 “問與答” 中取消置頂此討論嗎？\",\n                \"Are you sure you want to unpin this discussion from Show and tell?\": \"您確定要從 “展示與講述” 中取消置頂此討論嗎？\",\n                \"The discussion itself won't be deleted, it just won't be shown at the top of this category.\": \"討論本身不會被刪除，只是不會顯示在該類別的頂部。\",\n            \"Create issue from discussion\": \"從討論中創建議題\",\n            \"Delete discussion\": \"刪除討論\",\n                \"Delete discussion?\": \"刪除討論？\",\n                \"The discussion will be deleted permanently. You will not be able to restore the discussion or its comments.\": \"該討論將被永久刪除。您將無法恢復該討論或其評論。\",\n                \"Deleting discussion…\": \"正在刪除討論…\",\n                // 頂部提醒\n                \"The discussion was successfully deleted.\": \"該討論已成功刪除。\",\n\n            \"The original post will be copied into a new issue, and the discussion will remain active.\": \"原帖將被複制到一個新的議題中，討論將保持活躍。\",\n            \"OK, got it!\": \"好的，我知道了！\",\n\n            // 評論刪除對話框\n                \"Delete comment\": \"刪除評論\",\n                \"Are you sure you want to delete this comment?\": \"您確定要刪除這條評論嗎？\",\n\n            // 底部提示欄 (未登錄)\n                \"Sign up for free\": \"免費註冊\",\n                \"to join this conversation on GitHub\": \"加入 GitHub 上的這個討論\",\n                \". Already have an account?\": \"。已經有賬戶？\",\n                \"Sign in to comment\": \"登錄後發表評論\",\n\n        // 轉移議題到討論 /<user-name>/<repo-name>discussions/<id>?converting=<討論id>\n            \"This discussion is being migrated\": \"此討論正在遷移\",\n                \"The issue and any comments are still being copied to this discussion thread, please check back later.\": \"該議題和所有評論仍在複製到此討論話題中，請稍後查看\",\n                \"Refresh\": \"刷新\",\n\n        // /<user-name>/community/discussions\n            // [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"這是一個 ✨ 特別的 ✨ 倉庫，包含 $1 的組織層面的討論。這裡發佈的所有內容在組織層面上也是可見的。\"],\n            \"View organization discussions\": \"查看組織討論\",\n\n        // 標籤浮動文本\n            \"This user is a collaborator on this repository.\": \"該用戶是此倉庫的協作者。\",\n            \"This user is a maintainer on this repository.\": \"該用戶是此倉庫的維護者。\",\n            \"This user is the author of this discussion.\": \"該用戶是此討論的作者。\",\n\n        // 開始討論按鈕上方小字\n            \"I have done a\": \"我已\", // 與下條二選一展示\n            \"Reminder to\": \"記得\", // 同上\n            \"search for similar discussions\": \"搜索相似話題先\",\n\n        // 評論框編輯\n            \"Edited\": \"編輯於\",\n            \"'s edit\": \" 編輯\",\n        // 反應相關\n            \"You can't vote on a locked discussion\": \"您不能在鎖定討論投票\",\n            \"Uh oh! You can't vote right now.\": \"哎呀！您現在不能投票。\",\n\n        // 投票\n            \"Show Results\": \"顯示結果\",\n            \"Hide Results\": \"隱藏結果\",\n            \"Vote\": \"投票\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) categories?/, \"$1 個分類\"],\n        [/Congratulations, you've created the first discussion in ([^ ]+)!/, \"恭喜您，您已經在 $1 中創建了第一個討論!\"],\n        [/(\\d+) answers?/, \"$1 位答覆者\"],\n        [/(\\d+) comments?/, \"$1 條評論\"],\n        [/(\\d+) repl(y|ies)/, \"$1 條答覆\"],\n        [/(\\d+) suggested answers?/, \"$1 個建議答案\"],\n        [/(\\d+) participants?/, \"$1 位參與者\"],\n        [/Show (\\d+) previous repl(y|ies)/, \"顯示 $1 條之前的答覆\"],\n        [/(\\d+) hidden items?/, \"$1 條隱藏專案\"],\n        [/Discussion \\\"([^ ]+)\\\" has been unpinned./, \"討論 “$1” 已取消置頂。\"],\n        [/Edited (\\d+) times?/,\"編輯 $1 次\"], //評論框編輯次數\n        [/edited by ([^ ]+)/,\"被 $1 編輯\"], //評論框 被他人編輯\n        [/This is a ✨special✨ repository containing the organization level discussions for ([^ ]+). Everything posted here will also be visible at the organization level./, \"這是一個 ✨ 特別的 ✨ 倉庫，包含 $1 的組織層面的討論。這裡發佈的所有內容在組織層面上也是可見的。\"],\n        [/Category \\\"(.*)\\\" has been created./, \"分類 “$1” 已創建。\"],\n        [/Category \\\"(.*)\\\" has been updated./, \"分類 “$1” 已更新。\"],\n        [/Category \\\"(.*)\\\" has been deleted./, \"分類 “$1” 已刪除。\"],\n        [/Section \\\"(.*)\\\" has been created./, \"欄目 “$1” 已創建。\"],\n        [/Section \\\"(.*)\\\" has been updated./, \"欄目 “$1” 已更新。\"],\n        [/Section \\\"(.*)\\\" has been deleted./, \"欄目 “$1” 已刪除。\"],\n        [/Edit (.*) category/, \"編輯 “$1” 分類\"],\n        [/Delete (.*) category/, \"刪除分類 “$1”\"],\n        [/Edit section (.*)/, \"編輯欄目 “$1”\"],\n        [/Delete section (.*)/, \"刪除欄目 “$1”\"],\n        [/Delete (.*) section/, \"刪除 “$1” 欄目\"],\n        [/(\\d+) new suggested answers?/, \"$1 個新的建議答案\"],\n        [/This discussion was converted from issue (#\\d+) on (.+)/, \"本討論由以下議題轉換而來：$1 ，$2\"],\n        [/(\\d+) new comments?/, \"$1 條新評論\"],\n        [/Show (\\d+) more repl(y|ies)/, \"顯示剩餘 $1 條答覆\"],\n        [/(\\d+) new/, \"$1 新\"],\n        [/Filter:\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered)(?:,\\s*(Open|Closed|Locked|Unlocked|Answered|Unanswered))*\\s*/, function (all, stat) {\n            var statKey = {Open: '打開', Closed: '關閉', Locked: '鎖定', Unlocked: '未鎖定', Answered: '已答覆', Unanswered: '未答覆', \" ,\": \"，\"};\n\n            return '篩選：' + statKey[stat];\n        }],\n        [/This user is sponsoring ([^ ]+)./, \"該用戶正在贊助 $1。\"],\n        [/(\\d+) votes?/, \"$1 投票\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Discussions/, \"討論\"],\n            [/New Discussion · (.+) · Category selection/, \"新討論 · $1 · 分類選擇\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/orgs/discussions\"] = I18N[\"zh-TW\"][\"repository/discussions\"] ;\n\nI18N[\"zh-TW\"][\"repository/actions\"] = { // 倉庫 - 操作頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 頂部提示\n            \"Actions Enabled.\": \"操作已啟用。\",\n\n        // 複刻倉庫操作頁面提示\n            \"Workflows aren’t being run on this forked repository\": \"這個分支倉庫並未運行任何工作流程。\",\n            \"Workflows aren't being run on this forked repository\": \"這個分支倉庫並未運行任何工作流程。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository.\": \"因為這個倉庫在被分支時含有工作流文件，我們已禁止在此分支上運行它們。在開啟此倉庫的操作之前，請務必理解配置的工作流程及其預期的使用方式。\",\n            \"Because this repository contained workflow files when it was forked, we have disabled them from running on this fork. Make sure you understand the configured workflows and their expected usage before enabling Actions on this repository. Some GitHub features that depend on Actions may still be able to run.\": \"因為這個倉庫在被分支時含有工作流文件，我們已禁止在此分支上運行它們。在開啟此倉庫的操作之前，請務必理解配置的工作流程及其預期的使用方式。一些依賴於 Actions 的 GitHub 功能可能可以運行。\",\n            \"I understand my workflows, go ahead and enable them\": \"我已理解我的工作流程，可以放心啟用它們。\",\n            \"View the workflows directory\": \"查看工作流程目錄\",\n\n        //無工作流程\n            \"There are no workflow runs yet.\": \"無工作流程運行。\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new\n            \"Get started with GitHub Actions\": \"開始使用 GitHub Actions\",\n            \"Choose a workflow\": \"選擇工作流程\",\n            \"Build, test, and deploy your code. Make code reviews, branch management, and issue triaging work the way you want. Select a workflow to get started.\": \"構建、測試和部署您的程式碼。以您想要的方式進行程式碼審查、分支管理和議題分類。選擇一個工作流以開始使用。\",\n            \"Skip this and\": \"跳過並\",\n            \"set up a workflow yourself\": \"建立工作流程\",\n            \"Search workflows\": \"搜索工作流\",\n\n            \"Suggested for this repository\": \"建議該倉庫採用\",\n            \"Categories\": \"類別\",\n            \"Configure\": \"設置\",\n            \"Deployment\": \"部署\",\n            \"Continuous integration\": \"持續集成\",\n            \"Automation\": \"自動化\",\n            \"Browse all categories\": \"瀏覽所有類別\",\n                \"Code scanning\": \"程式碼掃描\",\n            \"View all\": \"查看全部\",\n\n            \"Learn more about GitHub Actions\": \"瞭解更多關於 GitHub Actions 的信息\",\n            \"Getting started and core concepts\": \"入門和核心概念\",\n            \"New to Actions? Start here. Learn the core concepts and how to get started.\": \"初次接觸 Actions？從這裡開始。瞭解核心概念和如何開始。\",\n            \"Configuring and managing workflows\": \"配置和管理工作流程\",\n            \"Create custom workflows to control your project's life cycle processes.\": \"創建自定義工作流程以控制專案的生命週期過程。\",\n            \"Language and framework guides\": \"語言與框架指南\",\n            \"Guides for projects written in many programming languages.\": \"專案指南由多種編程語言編寫。\",\n\n            \"Didn't find what you're looking for?\": \"沒有找到您需要的？\",\n            \"Fill out a 2-minute survey to request a new workflow template for GitHub Actions.\" :\"填寫一份 2 分鐘的調查，為 GitHub Actions 申請一個新的工作流模板。\",\n            \"Request\": \"申請\",\n\n        // 新建操作 /<user-name>/<repo-name>/actions/new?category=xxxx\n            // [/Found (\\d+) workflows?/, \"發現 $1 個工作流程\"],\n\n        // 操作 /<user-name>/<repo-name>/actions\n            // 快捷鍵\n                \"Go to usage\": \"跳轉到運用\",\n                \"Go to workflow file\": \"跳轉到工作流程文件\", // /actions/runs/<id>\n                \"Toggle timestamps in logs\": \"切換日誌中的時間戳\",\n                \"Toggle fullscreen logs\": \"切換全屏日誌\",\n                \"Exit fullscreen logs\": \"退出全屏日誌\",\n                \"Actions main view search bar\": \"操作主視圖搜索欄\",\n\n            \"Automate your workflow from idea to production\": \"從創意到產品，使您的工作流程自動化\",\n            \"GitHub Actions makes it easy to automate all your software workflows, now with world-class CI/CD. Build, test, and deploy your code right from GitHub.\": \"GitHub Actions 現在可以使用世界一流的 CI/CD 輕鬆自動化所有軟體工作流程。直接從 GitHub 構建、測試和部署您的程式碼。\",\n            \"Learn more about getting started with Actions.\": \"瞭解更多關於開始使用 GitHub Actions 的信息。\",\n            \"Linux, macOS, Windows, ARM, and containers\": \"Linux、macOS、Windows、ARM 和容器\",\n            \"Hosted runners for every major OS make it easy to build and test all your projects. Run directly on a VM or inside a container. Use your own VMs, in the cloud or on-prem, with self-hosted runners.\": \"為每一個主要的操作系統提供的託管運行程式，使您能夠輕鬆地構建和測試您的所有專案。直接在虛擬機上或容器內運行。在雲端或本地使用您自己的虛擬機，以及自託管的運行器。\",\n\n            \"Matrix builds\": \"矩陣式構建\",\n            \"Save time with matrix workflows that simultaneously test across multiple operating systems and versions of your runtime.\": \"使用矩陣工作流程可同時跨多個操作系統和版本運行，節省時間\",\n\n            \"Any language\": \"任何語言\",\n            \"GitHub Actions supports Node.js, Python, Java, Ruby, PHP, Go, Rust, .NET, and more. Build, test, and deploy applications in your language of choice.\": \"GitHub Actions 支持 Node.js、Python、Java、Ruby、PHP、Go、Rust、.NET 等。以您選擇的語言構建、測試和部署應用。\",\n\n            \"Live logs\": \"實時日誌\",\n            \"See your workflow run in realtime with color and emoji. It’s one click to copy a link that highlights a specific line number to share a CI/CD failure.\": \"使用顏色和表情符號實時查看您的工作流程。只需單擊即可複製突出顯示特定行號的鏈接以共享 CI/CD 故障。\",\n\n            \"Built-in secret store\": \"內置的機密存儲\",\n            \"Automate your software development practices with workflow files embracing the Git flow by codifying it in your repository.\": \"通過將工作流程文件編碼到您的倉庫，您的軟體開發實踐，包括 Git 流程自動化。\",\n\n            \"Multi-container testing\": \"多容器測試\",\n            \"Test your web service and its DB in your workflow by simply adding some\": \"在您的工作流程中測試您的網絡服務和它的數據庫，只需添加一些\",\n            \"docker-compose\": \"docker-組合\",\n            \"to your workflow file.\": \"到您的工作流程文件。\",\n\n            // 左側欄\n                \"New workflow\": \"新建工作流程\",\n                \"Management\": \"管理\",\n                    \"Caches\": \"緩存\",\n                    \"Deployments\": \"部署\",\n                    \"Attestations\": \"證書\",\n                    \"Runners\": \"運行器\",\n                    \"Usage metrics\": \"使用情況\",\n                    \"Performance metrics\": \"數據看板\",\n                \"Disabled\": \"已禁用\",\n\n                // 頂部提醒\n                    // [/Workflow (.*) pinned./, \"工作流程 $1 已置頂\"],\n                    // [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置頂\"],\n\n                // 取消置頂對話框\n                    \"Unpin this workflow?\": \"取消工作流程置頂？\",\n                        \"This action will unpin the workflow for all viewers of this repository.\": \"此操作將為該倉庫的所有查看者取消置頂工作流程。\",\n                    \"Yes, unpin\": \"是的，取消固定\",\n\n            // 工作流文件不存在\n            \"Not found\": \"未找到\",\n                \"This workflow does not exist.\": \"此工作流不存在。\",\n\n            \"All workflows\": \"全部工作流程\",\n                \"Show more workflows...\": \"顯示更多工作流程…\",\n                \"Showing runs from all workflows\": \"顯示所有工作流程的運行情況\",\n\n            \"Codespaces Prebuilds\": \"程式碼空間預構建\",\n                \"Showing all prebuild configuration runs for Codespaces. Learn about\": \"顯示程式碼空間所有預構建設置的運行情況。瞭解\",\n                \"prebuilding your codespaces.\": \"程式碼空間預構建。\",\n\n            // 篩選條\n                \"Filter workflow runs\": \"篩選工作流程\",\n                    \"Narrow your search\": \"縮小搜索範圍\",\n\n            //訪問上限\n            //示例：https://github.com/wilsonzlin/fastrender/actions/workflows/ci.yml?page=1174\n                \"You have hit the limit of pages.\": \"您已到達頁面訪問上限。\",\n                \"You could filter by\":\"您可以按以下篩選\",\n                \"to continue reviewing older workflow runs.\":\"繼續查看舊的工作流程運行。\",\n\n\n            // 反饋提醒\n                \"Help us improve GitHub Actions\": \"幫助我們改進 GitHub Actions\",\n                    \"Tell us how to make GitHub Actions work better for you with three quick questions.\": \"通過三個快速問題告訴我們如何讓 GitHub Actions 更好地為您服務。\",\n\n\n            // [/(\\d+) workflow runs?$/, \"$1 個工作流程運行\"],\n            // [/(\\d+) workflow runs results/, \"$1 個工作流程運行結果\"],\n\n            \"Event\": \"事件\",\n                \"Filter by Event\": \"按事件篩選\",\n                \"No matching events.\": \"無匹配事件。\",\n                //\"Filter by event\": \"按事件篩選\",\n                \"Find an event\": \"查找事件\",\n                    \"issue_comment\": \"議題評論\",\n                    \"pull_request\": \"拉取請求\",\n                    \"pull_request_target\": \"拉取請求目標\",\n                    \"push\": \"推送\",\n                    \"schedule\": \"日程\",\n                    \"watch\": \"關注\",\n                    \"workflow_dispatch\": \"工作流程調度\",\n                    \"repository_dispatch\": \"倉庫調度\",\n                    \"dynamic\": \"動態\",\n            // 狀態\n                \"Filter by Status\": \"按狀態篩選\",\n                \"Find a status\": \"查找狀態\",\n                    \"queued\": \"排隊\",\n                    \"in progress\": \"正在進行中\",\n                    \"waiting\": \"等待中\",\n                    \"completed\": \"已完成\",\n                    \"neutral\": \"中立\",\n                    \"success\": \"成功\",\n                    \"failure\": \"失敗\",\n                    \"failed\": \"失敗\",\n                    \"cancelled\": \"已取消\",\n                    \"action required\": \"需要採取行動\",\n                    \"timed out\": \"已超時\",\n                    \"skipped\": \"跳過\",\n                    \"stale\": \"陳舊\",\n                    \"required action\": \"需要操作\",\n            \"Branch\": \"分支\",\n                \"Filter by Branch\": \"按分支篩選\",\n                \"Find a branch\": \"查找分支\",\n                \"Default\": \"默認\",\n            \"Actor\": \"角色\",\n                \"Filter by Actor\": \"按角色篩選\",\n                \"Find a user\": \"查找用戶\",\n\n            // 日誌 右側按鈕\n                // 時間補丁 25年9月24日更新\n                \"Today at\": \"今天\",\n            \"Cancel run\": \"取消運行\",\n            \"View workflow file\": \"查看工作流程文件\",\n            \"Delete workflow run\": \"刪除工作流程運行\",\n                // 刪除工作流程運行 對話框\n                    \"Are you sure you want to permanently delete this workflow run?\": \"您確定要永久刪除此工作流程運行嗎？\",\n                    \"This action cannot be undone.\": \"此操作無法撤消。\",\n                    \"Yes, delete this workflow run\": \"是的，刪除此工作流程\",\n                // 頂部提醒\n                    \"Workflow run deleted successfully.\": \"工作流程運行刪除成功。\",\n\n            // 篩選結果\n                \"No results matched your search.\": \"沒有與您的搜索匹配的結果。\",\n                \"You could search\": \"您可以搜索\",\n                \"all workflow runs\": \"所有工作流程運行\",\n                \"or try different filters.\": \"或嘗試不同的篩選器。\",\n\n            // 列表區域\n                // 工作流程運行狀態\n                \"In progress\": \"進行中\",\n                \"Queued\": \"排隊中\",\n                \"Pending\": \"待定中\",\n\n            // 頂部提醒\n                \"You have successfully requested the workflow to be canceled.\": \"您已成功請求取消工作流。\",\n\n        // /<user-name>/<repo-name>/actions/workflows/<file>.yml\n            //右側三個點\n                \"Show workflow options\": \"顯示工作流程選項\",\n                    \"Create status badge\": \"創建狀態徽章\",\n                        // 對話框\n                            \"Default branch\": \"默認分支\",\n                                \"Filter branches\": \"篩選分支\",\n                            \"Copy status badge Markdown\": \"複製狀態徽章 Markdown 程式碼\",\n                    \"Pin workflow\": \"固定工作流程\",\n                    \"Disable workflow\": \"禁用工作流程\",\n                        // 頂部提醒\n                        \"Workflow disabled successfully.\": \"工作流程已成功禁用。\",\n\n            \"This workflow has a\": \"這個工作流程有一個\",\n            \"event trigger.\": \"事件觸發器。\",\n\n            \"Run workflow\": \"運行工作流程\",\n                \"Use workflow from\": \"使用工作流程來自：\",\n                \"Branch:\": \"分支：\",\n                \"Select branch\": \"選擇分支\",\n                \"Select ref\": \"選擇引用\",\n                \"Select a tag\": \"選擇標籤\",\n                    \"Nothing to show\": \"暫無\",\n\n                    \"Workflow does not exist or does not have a\": \"工作流程不存在或沒有\",\n                    \"trigger in this branch.\": \"觸發在此分支。\",\n                    \"Learn more about manual workflows\": \"瞭解更多關於手工工作流程的信息\",\n                \"Running workflow...\": \"正在運行工作流程…\",\n                // 頂部提醒\n                    \"Workflow run was successfully requested.\": \"工作流程已成功請求運行。\",\n\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days.\": \"此計劃工作流程已禁用，因為此倉庫至少 60 天沒有活動。\",\n            \"This scheduled workflow is disabled because there hasn't been activity in this repository for at least 60 days. Enable this workflow to resume scheduled runs.\": \"此計劃的工作流程已禁用，因為此倉庫至少有 60 天沒有活動。啟用此工作流程可恢復計劃運行。\",\n            \"This scheduled workflow is disabled because scheduled workflows are disabled by default in forks.\": \"此計劃工作流程已被禁用，因為計劃工作流程在複刻倉庫中默認被禁用。\",\n            \"This workflow was disabled manually.\": \"工作流程已被手動禁用。\",\n            \"This workflow is\": \"此工作流程正在等待維護者\",\n                \"awaiting approval\": \"批准\",\n                \"from a maintainer in\": \"在\",\n            \"Enable workflow\": \"啟用工作流程\",\n                // 頂部提醒\n                    \"Workflow enabled successfully.\": \"工作流程已成功啟用。\",\n            \"Re-run jobs\": \"重新運行作業\",\n                \"Re-running...\": \"重新運行中…\",\n\n            // 重新運行對話框\n            \"Re-run single job\": \"重新運行單個作業\",\n                \"A new attempt of this workflow will be started, including\": \"將開始此工作流程的新嘗試，包括\",\n                \"all the jobs\": \"所有作業\",\n                \"all failed jobs\": \"所有失敗作業\",\n                \"and dependents:\": \"和依賴：\",\n                \"debug logging\": \"調試日誌\",\n\n            \"This workflow has no runs yet.\": \"此工作流程尚未運行。\",\n\n        // 緩存 /<user-name>/<repo-name>/actions/caches\n            \"Showing caches from all workflows.\": \"顯示所有工作流程的緩存。\",\n            \"Learn more about managing caches.\": \"瞭解更多關於管理緩存的信息。\",\n            \"Filter caches\": \"篩選緩存\",\n            \"Filter by branch\": \"按分支篩選\",\n            \"Approaching total cache storage limit\": \"接近總緩存存儲限制\",\n            \"Least recently used caches will be automatically evicted to limit the total cache storage to 10 GB.\": \"最近最少使用的緩存將被自動驅逐，以限制總緩存存儲為 10 GB。\",\n            \"Learn more about cache usage.\": \"瞭解更多關於緩存使用的信息。\",\n\n            // [/(\\d+) caches?/, \"$1 個緩存\"],\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜單\n                \"Recently used\": \"最近使用\",\n                \"Least recently used\": \"最近最少使用\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n            \"No caches\": \"尚無緩存\",\n            \"Nothing has been cached by workflows running in this repository.\": \"在此倉庫中運行的工作流程尚未緩存任何內容。\",\n            \"Learn more about caching\": \"瞭解更多關於緩存的信息\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依賴項和構建輸出以縮短工作流執行時間。\",\n            \"Last used\": \"最近使用\",\n\n            // [/(\\d+) cache results?/, \"$1 個緩存結果\"],\n            \"No caches matched your search\": \"沒有與您的搜索相匹配的緩存\",\n            // [/No caches matched your search branch:([^ ]+)/, \"沒有與您搜索的分支: $1 相匹配的緩存\"],\n            \"Remove the filters\": \"刪除篩選器\",\n            \"or try a different search query.\": \"或嘗試不同的搜索查詢。\",\n\n            \"Delete cache\": \"刪除緩存\",\n                \"Remove cache\": \"刪除緩存\",\n                \"Are you sure you want to delete this cache?\": \"您確定要刪除此緩存嗎？\",\n                \"This action cannot be undone\": \"此操作無法撤消\",\n                \"Yes, permanently delete this cache\": \"是的，永久刪除此緩存\",\n\n                \"Deleting Cache...\": \"刪除緩存中…\",\n                // 頂部提醒\n                \"Cache deleted successfully.\": \"緩存已成功刪除。\",\n\n        // 運行器 /<user-name>/<repo-name>/actions/runners\n            \"Runners available to this repository\": \"此倉庫可用的運行器\",\n            \"New runner\": \"新建運行器\",\n            \"GitHub-hosted runners\": \"GitHub 託管的運行器\",\n                // [/(\\d+) available runners?/, \"$1 個可用運行器\"],\n                \"Larger GitHub-hosted runners\": \"大型 GitHub 託管運行程式\",\n                \"Unprovisioned\": \"未配置\",\n                \"Team & Enterprise\": \"團隊與企業\",\n                \"Sizes up to:\": \"尺寸可達：\",\n                \"Standard GitHub-hosted runners\": \"標準 GitHub 託管的運行器\",\n                \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型運行器。\",\n                \"Learn more about GitHub-hosted runners.\": \"瞭解更多關於 GitHub 託管運行器的信息。\",\n                \"Copy ubuntu-latest\": \"複製 ubuntu-latest\",\n                \"Copy windows-latest\": \"複製 windows-latest\",\n                \"Copy macos-latest\": \"複製 macos-latest\",\n\n                \"View larger runner docs\": \"查看大型運行器文檔\",\n                \"See pricing\": \"查看定價\",\n            \"Self-hosted runners\": \"自託管運行器\",\n                \"You don't have any\": \"此倉庫尚無任何\",\n                \"self-hosted\": \"自託管\",\n                \"runners for this repository\": \"運行器\",\n                    \"Self-hosted runners are virtual machines for GitHub Actions workflows that you manage and maintain outside of GitHub.\": \"自託管運行器是您在 GitHub 外部管理和維護的 GitHub Actions 工作流程的虛擬機。\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>\n            // 頂部提醒\n                \"Logs deleted successfully.\": \"日誌已成功刪除。\",\n\n            // 標題\n            \"Re-run all jobs\": \"重新運行所有作業\",\n            \"Re-run failed jobs\": \"重新運行失敗作業\",\n            \"Cancel workflow\": \"取消工作流程\",\n\n            //\"Latest attempt\": \"最後運行\",\n            //\"Attempt\": \"運行\",\n            \"Explain error\": \"解釋錯誤\",\n            //右側按鈕\n            \"View workflow runs\": \"查看工作流程運行\",\n            \"Workflow run options\": \"工作流程運行選項\",\n            \"Delete all logs\": \"刪除所有日誌\",\n            \"Sign in to view logs\": \"登錄後查看日誌\",\n\n            // 左側欄\n            \"Summary\": \"摘要\",\n            \"All jobs\": \"所有作業\",\n                \"Filter by job status\": \"由作業狀態篩選\",\n                    \"Filter by status\": \"狀態篩選\",\n            \"Jobs\": \"作業\",\n            \"Run details\": \"運行詳情\",\n            \"Usage\": \"運用\",\n\n            //狀態條\n            \"Triggered via pull request\": \"通過拉取請求觸發\",\n            \"Triggered via issues\": \"通過議題觸發\",\n            \"Triggered via push\": \"通過推送觸發\",\n            \"Triggered via schedule\": \"通過計劃表觸發\",\n            \"Triggered via dynamic\": \"通過動態觸發\",\n            \"Triggered via GitHub Pages\": \"通過 GitHub 頁面觸發\",\n            \"Triggered via repository dispatch\": \"通過倉庫調度觸發\",\n            \"Triggered via release\": \"通過發行版觸發\",\n            \"Triggered via issue\": \"通過議題觸發\",\n            \"Triggered via discussion\": \"通過討論觸發\",\n            \"Triggered via discussion comment\": \"通過討論評論觸發\",\n            \"Triggered via workflow run\": \"通過工作流運行觸發\",\n            \"Re-run triggered\": \"重新觸發\",\n            \"Manually triggered\": \"手動觸發\",\n\n            \"pushed\": \"推送\",\n            \"opened\": \"打開\",\n            \"reopened\": \"重新打開\",\n            \"commented on\": \"評論於\",\n            \"opened by\": \"打開者\",\n\n            // 狀態\n                \"Success\": \"成功\",\n                \"Failure\": \"失敗\",\n                \"Startup failure\": \"失敗\",\n                \"Cancelled\": \"取消\",\n                \"Action required\": \"請求操作\",\n                \"Waiting\": \"等待\",\n            \"Total duration\": \"總時長\",\n            \"Billable time\": \"計費時間\",\n\n            \"This workflow is waiting for\": \"該工作流程正在等待\",\n                \"to complete before running.\": \"完成後再運行。\",\n                \"Learn more about concurrency\": \"瞭解有關並發執行的更多信息\",\n\n            \"Job summary generated at run-time\": \"運行時生成的工作摘要\",\n\n            // 右側中間欄\n                \"This workflow graph cannot be shown\": \"無法顯示此工作流圖表\",\n                \"A graph will be generated the next time this workflow is run.\": \"下次運行此工作流時將生成一個圖表。\",\n\n                \"This run and associated checks have been archived and are scheduled for deletion.\": \"此運行和相關檢查已存檔並計劃刪除。\",\n                \"Learn more about checks retention\": \"瞭解更多關於檢查保留的信息\",\n\n            \"Artifacts\": \"附件\",\n                \"Produced during runtime\": \"在運行期間生成\",\n                \"Name\": \"名稱\",\n                \"Size\": \"大小\",\n                \"Digest\": \"校驗值\",\n                // [/Delete artifact ([^ ]+)/, \"刪除附件 $1\"],\n                \"Expired\": \"已過期\",\n                    \"This artifact has expired and you can no longer download it\": \"此附件已過期，您無法再下載\",\n            \"Annotations\": \"說明\",\n                \"The self-hosted runner lost communication with the server. Verify the machine is running and has a healthy network connection. Anything in your workflow that terminates the runner process, starves it for CPU/Memory, or blocks its network access can cause this error.\": \"自行託管的運行器與服務器通信中斷。請確認機器正在運行且網絡連接正常。工作流中任何終止運行器進程、耗盡 CPU/內存或阻塞其網絡訪問的操作都可能導致此錯誤。\",\n                \"The job has exceeded the maximum execution time of 6h0m0s\": \"該作業已超過最大執行時間 6 小時\",\n                // [/1 error/, \"$1 個錯誤\"],\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/job/<job-id>\n            \"The logs for this run have expired and are no longer available.\": \"此運行日誌已過期，不再可用。\",\n            \"This job was cancelled\": \"作業已取消\",\n            \"This step has been truncated due to its large size. View the raw logs from the\": \"此步驟因內容過大，已將其截斷。工作流運行完成後，從\",\n            \"menu once the workflow run has completed.\": \"菜單中查看原始日誌。\",\n\n            \"Started\": \"開始於\",\n            \"succeeded\": \"成功於\",\n            \"ago\": \"之前\",\n\n            \"Search logs\": \"搜索日誌\",\n            \"Re-run this job\": \"重新運行此作業\",\n            // 設置按鈕\n                \"Show timestamps\": \"顯示時間戳\",\n                \"Show full screen (Shift+F)\": \"全屏顯示（Shift+F）\",\n                \"Download log archive\": \"下載日誌存檔\",\n                \"View raw logs\": \"查看原始日誌\",\n                \"View job summary\": \"查看作業摘要\",\n\n            \"Try broadening your search filters.\": \"嘗試擴大您的搜索篩選器。\",\n\n            \"Re-run all checks\": \"重新運行所有檢查\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/usage\n            \"Run and billable time\": \"運行和計費時間\",\n            \"Learn about OS pricing on GitHub Actions\": \"瞭解 GitHub Actions 上的操作系統定價\",\n            \"Job\": \"工作\",\n            \"Run time\": \"運行時間\",\n            \"Billable\": \"計費\",\n            \"time\": \"時間\",\n\n        // /<user-name>/<repo-name>/actions/runs/<id>/workflow\n            \"Workflow file\": \"工作流程文件\",\n            \"Workflow file for this run\": \"本次運行的工作流程文件\",\n\n        // 操作面板\n            \"Show all jobs\": \"顯示所有工作\",\n            \"Scheduled\": \"計劃運行\",\n            \"Commit\": \"提交\",\n                \"pushed by\": \"推送者\",\n            \"Manually run by\": \"手動運行由\",\n            \"The run was canceled by\": \"取消由\", // 原文過於囉嗦\n            \"Pull request\": \"拉取請求\",\n                \"synchronize by\": \"同步者\",\n                \"synchronize\": \"同步自\",\n                \"reopened by\": \"重新打開者\",\n            \"The operation was canceled.\": \"已取消。\",\n            \"Release\": \"發行版\",\n                \"published by\": \"發佈者\",\n            \"created by\": \"創建者\",\n            \"completed by\": \"完成者\",\n            //\"Process completed with exit code 1.\": \"進程完成，退出程式碼為 1。\",\n            \"Cache not found\": \"找不到緩存\",\n            \"Starting job\": \"作業啟動中\",\n            \"This job failed\": \"此作業失敗\",\n            \"This job was skipped\": \"此作業被跳過\",\n            \"Waiting for pending jobs\": \"等待中\",\n            \"Input required and not supplied: token\": \"需要輸入但未提供：令牌\",\n            \"The deployment was rejected or didn't satisfy other protection rules.\": \"部署被拒絕或不符合其他保護規則。\",\n            \"Fit to window\": \"適合\",\n            \"Zoom out\": \"縮小\",\n            \"Zoom in\": \"放大\",\n\n        // 摘要窗口\n            \"Unable to load summary\": \"無法加載摘要\",\n            \"This job summary has expired and is no longer available\": \"此作業摘要已過期，不再可用\",\n                // 右側三個點\n                \"View job logs\": \"查看日誌\",\n                \"View raw markdown\": \"查看原始 Markdown\",\n                \"Copy permalink\": \"複製永久鏈接\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Back to pull request (#\\d+)/, \"返回拉取請求 $1\"],\n        [/Workflow (.*) pinned./, \"工作流程 $1 已置頂\"],\n        [/Workflow (.*) unpinned./, \"工作流程 $1 已取消置頂\"],\n        [/Found (\\d+) workflows?/, \"發現 $1 個工作流程\"],\n        [/(\\d+) workflow runs?$/, \"$1 個工作流程運行\"],\n        [/(\\d+) workflow runs? results?/, \"$1 個工作流程運行結果\"],\n        [/Download ([^ ]+) \\(opens in a new tab\\)/, \"下載 $1（在新標籤中打開）\"],\n        [/Download ([^ ]+)/, \"下載 $1\"],\n        [/Delete ([^ ]+)/, \"刪除 $1\"],\n        [/(\\d+) errors?/, \"$1 個錯誤\"],\n        [/(\\d+) cache results?/, \"$1 個緩存結果\"],\n        [/(\\d+) caches?/, \"$1 個緩存\"],\n        [/No caches matched your search branch:([^ ]+)/, \"沒有與您搜索的分支: $1 相匹配的緩存\"],\n        [/(\\d+) available runners?/, \"$1 個可用運行器\"],\n        [/(\\d+)\\/(\\d+) jobs? completed/, \"$1/$2 個工作完成\"],\n        [/(\\d+) jobs? completed/, \"$1 個工作完成\"],\n        [/(\\d+) warnings?/, \"$1 個警告\"],\n        [/Latest attempt (#\\d+)/, \"最後運行 $1\"],\n        [/Latest (#\\d+)/, \"最新 $1\"],\n        [/Attempt (#\\d+)/, \"運行 $1\"],\n        [/cached/, \"被緩存\"],\n        [/(\\d+)-cores · (\\d+) GB RAM · (\\d+) GB SSD Storage/, \"$1 核心 · $2 GB內存 · $3 GB SSD 存儲\"],\n        [/Process completed with exit code (\\d+)/, \"進程已結束，退出程式碼為 $1\"],\n        [/([^ ]+) value is not set/, \"$1 值未設置\"],\n        [/([^ ]+) summary/, \"$1 摘要\"],\n        [/By ([^ ]+)/, \"創建：$1\"],\n        [/Branch \"([^ ]+)\" is not allowed to deploy to ([^ ]+) due to environment protection rules./, \"由於環境保護規則，“$1”分支不允許部署到 $2 上。\"],\n        // 時間\n        [/(\\d+)d (\\d+)h (\\d+)m (\\d+)s/, \"$1天$2時$3分$4秒\"],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1時$2分$3秒\"],\n        [/(\\d+)h (\\d+)m/, \"$1時$2分\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Workflow runs/, \"工作流程運行\"],\n            [/Caches/, \"緩存\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/runs\"] = I18N[\"zh-TW\"][\"repository/actions\"];\n\nI18N[\"zh-TW\"][\"repository/deployments\"] = { // 倉庫 - 部署頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/deployments\n            // 左側欄\n                \"Deployed\": \"部署\",\n                    \"All deployments\": \"所有部署\",\n                    \"Environments\": \"環境\",\n                    \"Manage environments\": \"管理環境\",\n\n            // 面板\n                // 所有部署\n                    \"Latest deployments from pinned environments\": \"來自固定環境的最新部署\",\n                //具體某一項\n                    \"Latest deployments\": \"最新部署\",\n                    \"Last\": \"最後\",\n                    \"deployed\": \"部署於\",\n                // 中間面板\n                    \"Your search did not match any deployments\": \"您的搜索未匹配任何部署\",\n                    \"Try a different search query\": \"嘗試不同的搜索查詢\",\n\n                // 篩選條\n                    \"Filter\": \"篩選\",\n                        \"Filter deployments\": \"篩選部署\",\n                        // 搜索框菜單\n                            \"State\": \"狀態\",\n                                \"success\": \"成功\",\n                                \"failure\": \"失敗\",\n                                \"error\": \"錯誤\",\n                                \"inactive\": \"不活躍\",\n                                \"pending\": \"待定\",\n                                \"queued\": \"排隊\",\n                                \"in progress\": \"進行中\",\n                                \"waiting\": \"等待中\",\n                            \"Creator\": \"創建者\",\n                            \"Environment\": \"環境\",\n                            \"Ref\": \"引用\",\n                            \"Text\": \"文本\",\n\n                    // 篩選器窗口\n                        \"Advanced filters\": \"高級篩選\",\n                        \"Build complex filter queries\": \"建立複雜的篩選器查詢\",\n                        \"To start building your query add your first filter using the button below.\": \"要開始建立查詢，請使用下面的按鈕添加第一個篩選器。\",\n\n                        \"Qualifier\": \"限定\",\n                        \"Operator\": \"操作\",\n                            \"is one of\": \"之中的\",\n                            \"is\": \"是\",\n                        \"Value\": \"值\",\n                            \"Make a selection\": \"請選擇\",\n                            \"Select items\": \"請選擇專案\",\n                            \"Filter values\": \"篩選值\",\n                            \"Enter search text\": \"鍵入任意文本\",\n                                \"Me\": \"我\",\n                                \"Signed-in user\": \"已登錄用戶\",\n                        \"Add a filter\": \"添加篩選器\",\n                        \"Apply\": \"應用\",\n\n                    // 關閉彈窗\n                        \"Discard changes?\": \"是否放棄更改？\",\n                            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您確定要放棄它們嗎？\",\n                            \"Keep editing\": \"繼續編輯\",\n                            \"Close and discard\": \"關閉並放棄\",\n\n                    //篩選器報錯窗口\n                        \"Empty value for\": \"空值：\",\n                        \"Text will be ignored since log searching is not yet available:\": \"由於尚未提供日誌搜索功能，文本將被忽略：\",\n\n                // 列表\n                    \"Active\": \"活躍\",\n                    \"Inactive\": \"不活躍\",\n                    \"Abandoned\": \"廢棄\",\n                    \"Deployed to\": \"部署到\",\n                    \"Failed to deploy to\": \"無法部署到\",\n\n                    \"View logs\": \"查看日誌\",\n                    \"View workflow run\": \"查看工作流程運行\",\n\n        // /<user-name>/<repo-name>/deployments/activity_log?environment=github-pages\n            \"Deployments\": \"部署\",\n            \"/ History\": \"/ 歷史\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/deployments?/, \"部署\"],\n        [/Filter contains (\\d+) issues?:/, \"過濾器包含 $1 個問題：\"], // 過濾器報錯窗口\n        [/via/, \"通過\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Deployments/, \"部署\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/attestations\"] = { // 倉庫 - 證書頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // <user-name>/repo-name>/attestations 證書\n            \"Attestations\": \"證書\",\n\n            \"No attestations\": \"尚無證書\",\n                \"Create attestations using the\": \"創建證書，請使用\",\n                \"action\": \"操作工作流\",\n\n            \"Filter\": \"篩選\",\n                \"Sort by:\": \"排序方式：\",\n                    \"Newest\": \"最新\",\n                    \"Oldest\": \"最早\",\n                \"Search or filter\": \"搜索或篩選\",\n                \"Advanced filters\": \"高級篩選\",\n                \"Build complex filter queries\": \"建立複雜的篩選器查詢\",\n                \"To start building your query add your first filter using the button below.\": \"要開始建立查詢，請使用下面的按鈕添加第一個篩選器。\",\n                \"Add a filter\": \"添加篩選器\",\n                \"Apply\": \"應用\",\n                \"Created\": \"創建於\",\n                    \"before\": \"之前\",\n                    \"after\": \"之後\",\n                    \"before and including\": \"之前包括\",\n                    \"after and including\": \"之後包括\",\n                    \"between\": \"之間\",\n                    \"is one of\": \"之中的\",\n                    \"is not one of\": \"不包含\",\n                    \"is\": \"是\",\n                \"Has\": \"包含\",\n                \"Predicate type\": \"謂詞類型\",\n                \"Exclude\": \"排除\",\n                \"Text\": \"文本\",\n                    \"Enter search text\": \"鍵入任意文本\",\n\n\n            \"Qualifier\": \"條件\",\n            \"Operator\": \"操作\",\n            \"Value\": \"值\",\n                \"Make a selection\": \"請選擇\",\n                \"Select items\": \"請選擇專案\",\n                \"Select an item\": \"請選擇一個專案\",\n                \"Filter values\": \"篩選值\",\n    },\n    \"title\": {\n        \"regexp\": [\n            [/Attestations/, \"證書\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/watchers\"] = { // 倉庫 - 關注者頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 關注者頁面  /<user-name>/<repo-name>/watchers\n            \"Watchers\": \"關注者\",\n            \"No one’s watching this repository yet. You could be the first.\": \"暫無關注者。您可以成為第一個\",\n            \"Learn more about how watching repositories works on GitHub\": \"瞭解更多關於如何在 GitHub 上關注倉庫的工作方式\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入於\"], // 追星者，關注者頁面\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/stargazers\"] = { // 倉庫 - 追星者頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 追星者頁面  /<user-name>/<repo-name>/stargazers\n            \"Stargazers\": \"追星者\",\n            \"All\": \"全部\",\n            \"You know\": \"您關注的\",\n            \"Be the first to star this repository\": \"成為第一個為這個倉庫標星的人\",\n            \"about how starring works on GitHub.\": \"關於如何在 GitHub 上標星。\",\n            \"Be the first of your friends to star this repository.\": \"成為第一個為這個倉庫標星的朋友。\",\n\n        // /<user-name>/<repo-name>/stargazers/you_know\n            \"No one you follow has starred this repository yet.\": \"您關注的任何人都未標星此倉庫。\",\n            \"Learn more about how starring works on GitHub.\": \"瞭解更多關於在 GitHub 上標星的工作原理。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        // [/Joined/,\"加入於\"], // 追星者，關注者頁面\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/new\"] = { // 倉庫 - 新建/編輯/上傳/刪除文件頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 新建文件頁面 /<user-name>/<repo-name>/new/<branch>\n            // 文件樹側邊欄\n                \"Expand file tree\": \"展開文件樹\",\n                \"Collapse file tree\": \"摺疊文件樹\",\n                \"Add file\": \"添加文件\",\n                // 搜索框\n                    \"Search this repository\": \"搜索此倉庫\",\n                    \"Go to file\": \"轉到文件\",\n                        \"No matches found\": \"未找到匹配項\",\n                        \"Go to folder\": \"轉到文件夾\",\n                        \"See all results\": \"查看所有結果\",\n\n            \"Name your file...\": \"文件名…\",\n            \"in\": \"在\",\n\n            \"Cancel changes\": \"取消更改\",\n                \"You have unsaved changes. Do you want to discard them?\": \"您有未保存的更改。您想丟棄它們嗎？\",\n            \"Commit changes...\": \"提交更改…\",\n\n            \"Preview\": \"預覽\",\n                \"Loading preview…\": \"載入預覽…\",\n                    \"There is no content to preview.\": \"沒有可預覽的內容。\",\n                    \"There has been an error generating the preview.\": \"生成預覽時發生錯誤。\",\n                    \"Unable to load this preview, sorry.\": \"抱歉，無法加載此預覽。\",\n                    \"There are no changes to show.\": \"沒有要顯示的更改。\",\n                    \"But you can preview the whole file.\": \"但您可以預覽整個文件。\", // new code view\n\n            // 程式碼編輯框\n                // Copilot 廣告\n                    \"Code 55% faster with GitHub Copilot\": \"使用 GitHub Copilot 編碼速度提高 55%\",\n                        \"Spend less time creating boilerplate and repetitive code patterns, and more time building great software. Try it in Codespaces or your favorite file editor.\": \"花更少的時間創建模板和重複的程式碼模式，花更多的時間構建優秀的軟體。在 GitHub 程式碼空間或您最喜歡的文件編輯器中嘗試一下哈。\",\n                        \"Get GitHub Copilot\": \"獲取 GitHub Copilot\",\n                        \"Don't show again\": \"不再顯示\",\n\n                \"Indent mode\": \"縮進模式\",\n                    \"Spaces\": \"空格\",\n                    \"Tabs\": \"Tab\",\n                \"Indent size\": \"縮進大小\",\n                \"Line wrap mode\": \"換行模式\",\n                    \"No wrap\": \"不換行\",\n                    \"Soft wrap\": \"軟換行\",\n\n            \"Show Diff\": \"顯示差異\",\n\n            // 提交對話框\n                \"Commit changes\": \"提交更改\",\n                    \"There was an error committing your changes:\": \"在提交您的更改時出現錯誤：\",\n                    \"A file with the same name already exists. Please choose a different name and try again.\": \"已存在同名文件。請選擇其他名稱並重試。\",\n                    \"File could not be edited\": \"文件不能編輯\",\n                    \"See what changed\": \"查看更改\",\n                \"Sign off and commit changes\": \"提交更改並簽署\",\n                \"Propose changes\": \"提出更改建議\", // 向他人倉庫提交\n                \"Sign off and propose changes\": \"提出更改建議並簽署\", // 向他人倉庫提交\n                    \"Commit message\": \"提交信息\",\n                    \"Extended description\": \"擴展描述\",\n                        \"Add an optional extended description...\": \"添加描述... (可選)\",\n\n                    \"Message and description suggested by Copilot.\": \"Copilot建議的消息和描述。\",\n                        \"Send feedback\": \"提交反饋\",\n\n                    \"You are\": \"您將\",\n                    \"signing off\": \"簽署\",\n                    // [/on this commit as/,\"該提交以\"],\n\n                    \"You can’t commit to\": \"您不能提交到\",\n                    \"because its is a\": \"，因為它是一個\",\n                    \"protected branch\": \"受保護分支\",\n\n                    \"Commit directly to the\": \"提交到\",\n                    \"branch\": \"分支\",\n\n                    \"Some rules will be bypassed by committing directly\": \"直接提交可以繞過一些規則\",\n                    \"Bypass rules and commit changes\": \"繞過規則並提交更改\",\n\n                    \"Create a\": \"創建\",\n                    \"new branch\": \"新分支\",\n                    \"for this commit and start a pull request\": \"為這個提交，並且發起一個拉取請求\",\n                    \"Learn more about pull requests\": \"瞭解更多關於拉取請求的信息\",\n\n                \"Something went wrong. Please fork the project, then try from your fork.\": \"出錯了。請複刻該專案，然後從您的複刻處嘗試。\",\n\n            // 底部欄\n                \"Use\": \"使用\",\n                \"to toggle the\": \"切換\",\n                \"key moving focus. Alternatively, use\": \"鍵移動對焦。或者使用\",\n                \"then\": \"鍵，然後\",\n                \"to move to the next interactive element on the page.\": \"鍵移動到頁面上的下一個交互元素。\",\n\n            // 頂部提醒\n            // [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的許可證已準備就緒。請在下面審查它並將其提交到 $1 分支或新分支。\"],\n\n        // 編輯文件頁面 /<user-name>/<repo-name>/edit/<branch>/<file>\n            // 非本人倉庫\n                \"You need to fork this repository to propose changes.\": \"您需要複刻此倉庫以提出更改。\",\n                    \"Sorry, you’re not able to edit this repository directly—you need to fork it and propose your changes from there instead.\": \"抱歉，您無法直接編輯此倉庫——您需要將其複刻並從那裡提出您的更改。\",\n                \"Fork this repository\": \"複刻此倉庫\",\n                    \"Learn more about forks\": \"瞭解更多關於複刻的信息\",\n\n                \"You have unsaved changes on this file that can be restored.\": \"您可以恢復該文件上未保存的更改。\",\n                    \"Discard\": \"丟棄\",\n                    \"Restore\": \"恢復\",\n\n                \"You’re making changes in a project you don’t have write access to. Submitting a change will write it to a new branch in your fork\": \"您正在對沒有寫入權限的專案進行更改。提交更改會將其寫入您的複刻\",\n                \", so you can send a pull request.\": \" 中的新分支，這樣您就可以發送拉取請求。\",\n\n            // 複刻倉庫過舊\n                \"Sorry, it looks like your fork is outdated!\": \"抱歉，您的複刻好像過時了！\",\n                \"You’ll have to bring it up to date before you can propose changes.\": \"在提出修改意見之前，您必須對其進行更新。\",\n                \"Update your fork\": \"更新您的複刻\",\n\n            // 組織倉庫 編輯文件頁面\n                \"You’re making changes in a project you don’t have write access to. We’ve\": \"您正在對沒有寫入權限的專案進行更改。我們已經\",\n                \"created a fork of this project\": \"為該專案創建複刻\",\n                \"for you to commit your proposed changes to. Submitting a change will write it to a new branch in your fork, so you can send a pull request.\": \"供您提交建議的更改。提交更改會將其寫入複刻中的新分支，這樣您就可以發送拉取請求。\",\n\n            // 混合換行符\n                \"We’ve detected the file has mixed line endings. When you commit changes we will normalize them to\": \"我們檢測到該文件具有混合行結尾。當您提交更改時，我們會將它們標準化為\",\n                \"Windows-style\": \"Windows 樣式\",\n\n            // 與用戶名同名倉庫 編輯 README.md 文件\n                \"is a special repository: its\": \"是一個特殊的倉庫：它的\",\n                \"will appear on your profile!\": \"將出現在您的個人資料中！\",\n\n                \"is now a special repository: its\": \"現在是一個特殊的倉庫：它的\",\n\n            // 組織下.github 倉庫 編輯 /profile/README.md 文件\n                \"is a special repository: this\": \"是一個特殊的倉庫：這個\",\n                \"will appear on your organization's profile!\": \"將出現在您的組織資料中!\",\n\n            // 編輯 .gitignore 文件\n                \"Choose .gitignore template\": \"選擇 .gitignore 模板\",\n                    \".gitignore template\": \".gitignore 模板\",\n                    \"Filter…\": \"篩選…\",\n                    \"None\": \"無\",\n\n            // 編輯 工作流程文件 .github/workflows/xxxx.yml\n                \"Collapse help panel\": \"摺疊幫助面板\",\n\n                // 幫助面板側邊欄\n                    \"Search Marketplace for Actions\": \"搜索 Actions 市場\",\n                    \"Featured Actions\": \"特色 Actions\",\n                    \"Featured categories\": \"特色分類\",\n                        \"Code quality\": \"程式碼質量\",\n                        \"Monitoring\": \"監控\",\n                        \"Continuous integration\": \"持續集成\",\n                        \"Project management\": \"專案管理\",\n                        \"Deployment\": \"部署\",\n                        \"Project management\": \"專案管理\",\n                        \"Testing\": \"測試\",\n                    \"\\/ Search results\": \"\\/搜索結果\",\n                    \"Browse all actions on the GitHub Marketplace\": \"瀏覽 GitHub 市場 上的所有 Actions\",\n\n                    // 具體某個操作\n                        \"View full Marketplace listing\": \"去市場查看詳細信息\", // 跳轉去市場對應頁面\n                        \"Installation\": \"安裝\",\n                        \"Copy and paste the following snippet into your\": \"將以下程式碼段複製並粘貼到您的\",\n                            \"file.\": \"文件。\",\n                        \"Version:\": \"版本：\",\n\n                // 底部欄補充\n                    \"Space\": \"空格\",\n                    \"to trigger autocomplete in most situations.\": \"在大多數情況下將觸發自動完成。\",\n                    \"Documentation\": \"文檔\",\n\n            // 編輯 LICENSE 許可證文件\n                \"Choose a license template\": \"選擇許可證模板\",\n\n            // 編輯 議題表單模板文件 .github/ISSUE_TEMPLATE/xxxx.yml\n                // 頂部提示\n                \"Looks like this file is an issue template. Need help?\": \"此文件是一個議題模板。需要幫助？\",\n                \"Learn more about issue templates.\": \"瞭解更多關於議題模板的信息。\",\n                \"Give feedback.\": \"提交反饋。\",\n                // 右側幫助說明\n                \"Top-level configuration options\": \"頂層配置選項\",\n                    \"Required Fields\": \"必填項\",\n                        \"(String): The template's name. Must be unique across all templates, including Markdown templates.\": \"（字符串）模板名。不能與其他模板名重複，包括 Markdown 模板\",\n                        \"(String): A description of this template's intended use. This will be shown in the issue template chooser interface.\": \"(字符串）：該模板預期用途的說明。這將顯示在議題模板選擇界面中。\",\n                    \"Optional Fields\": \"可選項\",\n                        \"(Array or String): This issue will be automatically assigned to these users. Can be array of usernames or comma-delimited string, e.g. \\\"monalisa,nat\\\"\": \"(數組或字符串）：此議題將自動分配給這些用戶。可以是用戶名數組或以逗號分隔的字符串，例如 “monalisa,nat”。\",\n                        \"(Array or String): This issue will automatically receive these labels upon creation. Can be array of labels or comma-delimited string, e.g. \\\"bug,needs-triage\\\"\": \"(數組或字符串）：該議題在創建時將自動接收這些標籤。可以是標籤數組或以逗號分隔的字符串，例如 “bug,needs-triage”（錯誤，需要分流）。\",\n                        \"(Array or String): This issue will be automatically added to these projects. Can be array of projects or comma-delimited string, e.g. \\\"github\\/1,github\\/2\\\"\": \"(數組或字符串）：該議題將自動添加到這些專案中。可以是專案數組或以逗號分隔的字符串，如 “github\\/1,github\\/2”。\",\n                        \"(String): Default title that will be pre-populated in the issue submission form.\": \"(字符串）：將在議題表單中預填的默認標題。\",\n                        \"(Array): Definition of user inputs.\": \"(數組）：用戶輸入的定義。\",\n                \"Input type configuration options\": \"輸入類型配置項\",\n                    // Markdown\n                        \"Markdown blocks contain arbitrary text that a maintainer can add to a template, to provide extra context or guidance to a contributor. Supports Markdown formatting. This text will\": \"Markdown 塊包含任意文本，維護者可將其添加到模板中，為貢獻者提供額外的上下文或指導。支持 Markdown 格式。這些文本\",\n                        \"not be rendered in the submitted issue body\": \"不會在提交的議題正文中呈現。\",\n                        // 必填項\n                            \"(String): The text that will be rendered. Markdown formatting is supported.\": \"(字符串）：將渲染的文本。支持 Markdown 格式。\",\n                        \"Tip #1: YAML processing will cause the hash symbol to be treated as a comment. To insert Markdown headers, wrap your text in quotes.\": \"提示 1：YAML 處理會將 # 號視為註釋。要插入 Markdown 標題，請用引號將文本包起來。\",\n                        \"Tip #2: For multi-line text, you can use the pipe operator.\": \"提示 2：對於多行文本，可以使用管道運算符。\",\n                        \"Example\": \"示例\",\n                    \"Input\": \"輸入\",\n                        \"Inputs are single-line form input fields. Contributors may use markdown formatting in their responses.\": \"輸入為單行表單輸入字段。貢獻者可在回覆中使用標記符格式。\",\n                        \"Required Attributes\": \"必要屬性\",\n                            \"(String): A brief description of the expected user input.\": \"(字符串）： 預期用戶輸入的簡要說明。\",\n                        \"Optional Attributes\": \"可選屬性\",\n                            \"(String): Extra context or guidance about filling out this form input. Supports Markdown.\": \"(字符串）：有關填寫此表單輸入的額外上下文或指導。支持 Markdown。\",\n                            \"(String): Renders as semi-transparent \\\"placeholder\\\" element in the input field when it's empty.\": \"(字符串）：當輸入框為空時，渲染為半透明的 “placeholder”元素。\",\n                            \"(String): Default text that is pre-populated in the input field.\": \"(字符串）：輸入字段中預填的默認文本。\",\n                        // ID\n                            \"(String): Optional unique identifier. Can only contain alphanumeric characters,\": \"(字符串）：可選的唯一標識符。只能包含字母數字字符、\",\n                        \"Validations\": \"驗證\",\n                            \"(Boolean): If\": \"(布爾值）：若\",\n                            \", the form will not be submittable until this is filled out. Only for public repositories.\": \"，則填寫此信息後才能提交表格。僅適用於公共倉庫。\",\n                    \"Textarea\": \"文本區域\",\n                        \"Very similar to inputs, textareas are multiple-line form input fields. Typically used if you'd like a contributor to provide an answer longer than a few words. Contributors may use markdown formatting in their responses.\": \"文本區域與輸入非常相似，都是多行表單輸入字段。如果希望貢獻者提供長於幾個單詞的答案，通常會使用文本區域。貢獻者可以在回覆中使用標記符格式。\",\n                        // 可選屬性\n                            \"(String): If a value is provided, user-submitted text will be formatted into a codeblock automatically.\": \"(字符串）：如果提供該值，用戶提交的文本將自動格式化為程式碼塊。\",\n                    \"Dropdown\": \"下拉菜單\",\n                        \"Users can select their answer from options defined by the maintainer.\": \"用戶可以從維護者定義的選項中選擇答案。\",\n                            \"(String Array): Set of values that user can select from to answer. Cannot be empty, and all choices must be distinct.\": \"(字符串數組）：用戶可從中選擇回答的一組值。不能為空，且所有選擇必須是不同的。\",\n                        // 可選屬性\n                            \", users can submit multiple selections.\": \"則用戶可提交多選項。\",\n                        // 驗證\n                            \", the form will not be submittable until at least one choice is selected. Only for public repositories.\": \"則至少選擇一個選項後才能提交表單。僅適用於公共倉庫。\",\n                    \"Checkboxes\": \"勾選框\",\n                    \"A group of one or more checkboxes. This will be saved as a Markdown checkbox, and will continue to support interactive updating.\": \"由一個或多個複選框組成的組。這將被保存為 Markdown 複選框，並將繼續支持交互式更新。\",\n                        \"(Array): Set of values that user can select from to answer. Cannot be empty. Each item must have a\": \"(數組）：用戶可從中選擇回答的數值集合。不能為空。每個專案必須有一個\",\n                        \", described below.\": \"，如下所述。\",\n                    \"Within each item in\": \"對於任何帶\",\n                        \", the following fields are supported:\": \"元素則支持以下字段：\",\n                        \"(String): The text that will appear beside the checkbox. Markdown is supported for bold or italic text formatting, and hyperlinks.\": \"(字符串）：複選框旁邊顯示的文本。Markdown 支持粗體或斜體文本格式以及超鏈接。\",\n                    \"Optional\": \"可選\",\n                        \"(Boolean): If required, the form will not be submittable unless checked. Only for public repositories.\": \"(布爾值）：如果需要，除非選中，否則表單將無法提交。僅適用於公共倉庫。\",\n\n            // 查找工具欄\n                \"Find\": \"查找\",\n                \"next\": \"下一處\",\n                \"previous\": \"上一處\",\n                \"all\": \"全部\",\n                \"match case\": \"區分大小寫\",\n                \"regexp\": \"正則\",\n                \"by word\": \"全字匹配\",\n                \"Replace\": \"替換\",\n                \"replace\": \"替換\",\n                \"replace all\": \"全部替換\",\n\n        // 刪除文件頁面 /<user-name>/<repo-name>/delete/<branch>/<file>\n            // 頂部提醒\n            \"File successfully deleted.\": \"文件已成功刪除。\",\n\n            \"Copy path to clipboard\": \"複製路徑到剪切板\",\n\n            \"Load diff\": \"加載差異\",\n            \"This file was deleted.\": \"此文件已刪除。\",\n\n        // 上傳文件頁面 /<user-name>/<repo-name>/upload/<branch>\n            // 自有倉庫\n                \"Drag files here to add them to your repository\": \"拖拽文件添加到當前倉庫\",\n                \"Drag additional files here to add them to your repository\": \"拖拽其他文件添加到當前倉庫\",\n                \"Or\": \"或\",\n                \"choose your files\": \"選擇文件\",\n                \"Drop to upload your files\": \"拖拽上傳您的文件\",\n                // 處理反饋\n                \"Yowza, that’s a big file. Try again with a file smaller than 25MB.\": \"我勒個擦，這麼大的文件，單文件不得超過25MB\",\n                \"Yowza, that’s a lot of files. Try again with fewer than 100 files.\": \"我勒個擦，這麼多文件，一次不能超過100個\",\n                \"This file is\": \"這個文件是\",\n                \"empty\": \"空的\",\n                \"Something went really wrong, and we can’t process that file.\": \"遇到錯誤，我們無法處理這個文件。\",\n\n                // 文件上傳進度條\n                \"Uploading\": \"文件上傳中\",\n                \"of\": \"/\",\n\n                // 提交框 補充\n                    \"Add files via upload\": \"通過上傳添加文件\",\n                    \"Add an optional extended description…\": \"添加可選的擴展描述…\",\n\n                    \"branch.\": \"分支。\", // 上傳頁面\n                    \"for this commit and start a pull request.\": \"為這個提交，並且發起一個拉取請求。\", // 上傳頁面\n                    \"Learn more about pull requests.\": \"瞭解更多關於拉取請求的信息。\", // 上傳頁面\n\n                // 提交後處理頁面\n                    \"Processing your files…\": \"正在處理您的文件…\",\n\n            // 他人倉庫\n                \"Uploads are disabled.\": \"上傳功能已禁用。\",\n                \"File uploads require push access to this repository.\": \"文件上傳需要推送訪問此倉庫。\",\n\n        // new code view\n            \"Top\": \"頂部\",\n            \"Jump to file\": \"跳轉到文件\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/on this commit as/,\"該提交以\"],\n        [/Commit changes?/, \"提交更改\"], // 提交對話框\n        [/Your license is ready. Please review it below and either commit it to the ([^ ]+) branch or to a new branch./, \"您的許可證已準備就緒。請在下面審查它並將其提交到 $1 分支或新分支。\"],\n        [/Your search has returned (\\d+) results?./, \"您的搜索返回了 $1 條結果。\"],\n        [/First (\\d+) files? shown./, \"顯示前 $1 個文件。\"],\n        [/([^ ]+) has committed since you started editing./, \"$1 自您開始編輯以來已提交。\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/New File at/, \"新建文件在\"],\n            [/Editing (.+) at (.+) · (.+)/, \"編輯文件 $1 在分支 $2 · $3\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/edit\"] = I18N[\"zh-TW\"][\"repository/new\"];\nI18N[\"zh-TW\"][\"repository/delete\"] = I18N[\"zh-TW\"][\"repository/new\"];\nI18N[\"zh-TW\"][\"repository/upload\"] = I18N[\"zh-TW\"][\"repository/new\"];\n\nI18N[\"zh-TW\"][\"repository/find\"] = { //  倉庫 - 查找文件頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // Find file 頁面 /<user-name>/<repo-name>/find/<branch>\n            \"You’ve activated the\": \"您已激活\",\n            \"file finder\": \"文件搜索模式\",\n            \". Start typing to filter the file list. Use\": \"。輸入關鍵詞查找您的文件。使用\",\n            \"and\": \"和\",\n            \"to navigate,\": \"選擇文件\",\n            \"to view files,\": \"查看文件\",\n            \"to exit.\": \"返回。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/models\"] = { // 倉庫 - 模型\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        \"Public Preview\": \"公共預覽\",\n        \"Expand menu\": \"展開目錄\",\n        \"Collapse menu\": \"摺疊目錄\",\n        \"Catalog\": \"目錄\",\n        \"Share feedback\": \"反饋\",\n        \"Filter items\": \"篩選專案\",\n\n        // 概況\n            \"Build your AI products—right inside GitHub. Create prompts, test models, and ship AI-powered features with built-in tools for model access, prompt collaboration, and lightweight evaluation.\": \"在 GitHub 內部構建您的 AI 產品。利用內置的模型接入、提示協作和輕量級評估工具，創建提示詞、測試模型，並發布 AI 驅動的功能。\",\n                \"Read the docs\": \"閱讀文檔\",\n                \"to learn more.\": \"瞭解詳情。\",\n\n            \"You do not have access to GitHub Models on this repository\": \"您無權訪問此倉庫上的 GitHub 模型\",\n                \"You need write permissions or higher for this repository to use GitHub Models.\": \"您需要擁有此倉庫寫入權限或更高權限，才能使用 GitHub 模型。\",\n                \"Learn more about GitHub Models.\": \"瞭解更多。\",\n\n            \"Get started\": \"開始使用\",\n                \"Watch the models demo\": \"觀看模型演示\",\n                \"Watch this 3-minute demo reel to learn everything you can do with GitHub Models\": \"觀看這個 3 分鐘的演示視頻，瞭解您可以使用 GitHub 模型完成的所有操作\",\n\n            \"Prompts\": \"提示詞\",\n                \"Create, evaluate, and iterate on prompts right inside your repo.\": \"在您的倉庫內直接創建、評估和迭代提示詞。\",\n                \"Get write permissions or higher for this repository to create and manage prompts.\": \"獲得對此倉庫的寫入權限或更高權限，才能創建和管理提示詞。\",\n                \"Create a prompt\": \"創建提示詞\",\n                \"Build with natural language or using\": \"使用自然語言或使用\",\n                \"prompt.yml files\": \"prompt.yml 文件\",\n                \"Test sample prompt\": \"測試示例提示詞\",\n                \"Manage prompts stored in your repo using\": \"管理您倉庫中的提示詞，使用\",\n                \"Get started with Models in your codebase\": \"開始使用模型您的程式碼庫\", // 還有一些部分未翻譯\n\n            \"Add AI to your project now\": \"立即添加 AI 到您的專案\",\n                \"Drop this snippet into your code to start using AI instantly.\": \"將此程式碼片段插入您的程式碼中，即可立即開始使用 AI。\",\n                \"Get API Key\": \"獲取 API 密鑰\",\n\n            \"Explore 40+ models in the catalog\": \"在目錄中探索 40+ 模型\",\n                \"Compare models in the playground—test parameters, token usage, and latency to find the right fit for your use case.\": \"在遊樂場中對比模型——測試參數、令牌使用量和延遲，以找到最適合您用例的模型。\",\n            \"Power your prompt with the right model\": \"為您的提示詞選擇合適的模型\",\n                \"Test and compare models against your prompt to find the best fit, then commit it directly to your project when you're ready.\": \"針對您的提示詞測試和對比不同模型，以找到最合適的模型，然後在準備好後將其直接提交到您的專案中。\",\n            \"Instrument your Actions workflow with models\": \"使用模型為您的 Actions 工作流提供支持\",\n                \"Set up a new GitHub Actions workflow using models.\": \"使用模型新建 Actions 工作流。\",\n\n        // 提示詞\n            \"Manage\": \"管理\",\n                \"prompts stored in your repo using\": \"您倉庫中的提示詞，使用\",\n                \".prompt.yml file\": \".prompt.yml 文件\",\n                \"format.\": \"格式。\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) prompts? found/, \"$1 條提示詞\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Models/, \"模型\"],\n            [/Prompts/, \"提示詞\"],\n        ],\n    },\n}\n\nI18N[\"zh-TW\"][\"repository/wiki\"] = { // 倉庫 - wiki 頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // wiki 頁面  /<user-name>/<repo-name>/wiki\n            // [/Welcome to the ([^ ]+) wiki!/, \"歡迎訪問 $1 的 Wiki\"], // wiki頁面\n            \"You do not have permission to update this wiki.\": \"您無權更新此 wiki。\",\n            \"Wikis provide a place in your repository to lay out the roadmap of your project, show the current status, and document software better, together.\": \"Wiki 為您的倉庫提供了一個更好的文檔資料。\",\n            \"Create the first page\": \"創建第一個頁面\",\n\n            // [/edited this page/, \"編輯此頁\"], // wiki\n            // [/(\\d+) revisions?/, \"$1 次修訂\"], // wiki\n            \"New page\": \"新建頁面\",\n            \"Add a custom footer\": \"添加自定義頁腳\",\n\n            // 右側欄\n            \"Pages\": \"頁面\",\n                \"Toggle table of contents\": \"摺疊/展開目錄\",\n                \"Find a page…\": \"搜索頁面…\",\n            \"Add a custom sidebar\": \"添加自定義側邊欄\",\n            \"Clone this wiki locally\": \"在本地克隆這個 Wiki\",\n\n            \"Last updated\": \"最後更新\",\n\n        // 新建 wiki 頁面 /<user-name>/<repo-name>/wiki/_new\n            \"Create new page\": \"創建新頁面\",\n            \"Title\": \"標題\",\n            \"Write\": \"編輯\",\n            \"Preview\": \"預覽\",\n            \"Edit mode:\": \"標記語言：\",\n            \"Edit message\": \"提交信息\",\n\n            \"Write a small message here explaining this change. (Optional)\": \"請簡要描述所作修改(可選)\",\n            \"Save page\": \"保存頁面\",\n            // 頂部提醒\n                \"Your Wiki was created.\": \"您的 Wiki 已創建。\",\n\n        // 編輯 wiki 頁面 /<user-name>/<repo-name>/wiki/<page name>/_edit\n            // [/Editing/, \"編輯\"], //編輯 wiki\n            \"Page history\": \"頁面歷史\",\n            \"Delete page\": \"刪除頁面\",\n                \"Are you sure you want to delete this page?\": \"您確定要刪除此頁面嗎？\",\n\n            \"Someone has edited the wiki since you started. Please reload this page and re-apply your changes.\": \"此頁面已被其他用戶修改。請重新加載此頁面並重新應用您的更改。\",\n\n            // 頂部提醒\n                \"The wiki page was successfully deleted.\": \"Wiki 頁面已成功刪除。\",\n\n        // wiki頁面歷史 /<user-name>/<repo-name>/wiki/<page name>/_history\n            \"History\": \"歷史\",\n            \"Edit page\": \"編輯頁面\",\n            \"Revisions\": \"修訂\",\n            \"Compare revisions\": \"對比修訂\",\n                \"Invalid or empty diff.\": \"無效或無差異。\",\n\n        // wiki修訂間差異 /<user-name>/<repo-name>/wiki/<page name>/_compare\n            \"Revert changes\": \"撤銷更改\",\n            \"Back to top\": \"回到頂部\",\n            \"Showing\": \"顯示\",\n            \"with\": \"包含\",\n            \"Unified\": \"同屏\",\n            \"Split\": \"分屏\",\n            // 差異按鈕\n                \"Display the source diff\": \"顯示源差異\",\n                \"Display the rich diff\": \"顯示富差異\",\n            // 修改的文件 右側下拉\n                \"Show comments\": \"顯示評論\",\n                \"Show annotations\": \"顯示註釋\",\n                \"View file\": \"查看文件\",\n                \"Edit file\": \"編輯文件\",\n                \"Delete file\": \"刪除文件\",\n\n        // wiki 編輯器（補全未翻譯部分\n            // 工具欄\n                \"Header 1\": \"1 級標題\",\n                \"Header 2\": \"2 級標題\",\n                \"Header 3\": \"3 級標題\",\n\n                \"Image\": \"圖片\",\n                    \"Insert Image\": \"插入圖片\",\n                        \"Image URL\": \"圖片 URL\",\n                        \"Alt Text\": \"文本\",\n\n                \"Unordered List\": \"無序列表\",\n                \"Ordered List\": \"有序列表\",\n                \"Blockquote\": \"整段引用\",\n                \"Horizontal Rule\": \"水平規則\",\n\n                \"Help\": \"幫助\",\n                    \"Block Elements\": \"段落元素\",\n                        \"Paragraphs & Breaks\": \"圖表 & 段落\",\n                            \"To create a paragraph, simply create a block of text that is not separated by one or more blank lines. Blocks of text separated by one or more blank lines will be parsed as paragraphs.\": \"要創建一個段落，只需創建一個沒有一個或多個空行分隔的文本塊即可。被一個或多個空行分隔的文本塊將被解析為段落。\",\n                            \"If you want to create a line break, end a line with two or more spaces, then hit Return/Enter.\": \"如果要創建換行符，請在行尾空兩格或更多格，然後按 Return/Enter 鍵。\",\n                        \"Headers\": \"標題\",\n                            // Markdown 支持兩種標題格式。維基編輯器使用“atx”樣式的標題。只需在標題文本前加上 # 字符數即可指定標題深度。例如：# 1 級標題，## 2 級標題 和 ### 3 級標題 的標題將逐漸變小。您可以用任意數量的#號結束標題。\n                            \"Markdown supports two header formats. The wiki editor uses the “atx”-style headers. Simply prefix your header text with the number of\": \"Markdown 支持兩種標題格式。維基編輯器使用“atx”樣式的標題。只需在標題文本前加上\",\n                            \"characters to specify heading depth. For example:\": \"字符數即可指定標題深度。例如：\",\n                            \"will be progressively smaller headers. You may end your headers with any number of hashes.\": \"的標題將逐漸變小。您可以用任意數量的#號結束標題。\",\n                        \"Blockquotes\": \"整段引用\",\n                            // Markdown 通過在每行前加上 > 來創建電子郵件風格的 “楷體引號”。如果您決定硬包文本並在每行前加上 > 字符，這種方法看起來效果最好，但 Markdown 也支持在段落前加上 >。\n                                \"Markdown creates blockquotes email-style by prefixing each line with the\": \"Markdown 通過在每行前加上\",\n                                \". This looks best if you decide to hard-wrap text and prefix each line with a\": \"來創建電子郵件風格的 “楷體引號”。如果您決定硬包文本並在每行前加上\",\n                                \"character, but Markdown supports just putting\": \"字符，這種方法看起來效果最好，但 Markdown 也支持在段落前加上\",\n                                \"before your paragraph.\": \"。\",\n                        // 清單\n                            // Markdown 支持有序和無序列表。要創建有序列表，只需在每行前加上一個數字（任何數字都可以，這就是編輯器只使用一個數字的原因）。要創建無序列表，可以在每行前加上 *、+ 或 -。\n                                \"Markdown supports both ordered and unordered lists. To create an ordered list, simply prefix each line with a number (any number will do — this is why the editor only uses one number.) To create an unordered list, you can prefix each line with\": \"Markdown 支持有序和無序列表。要創建有序列表，只需在每行前加上一個數字（任何數字都可以，這就是編輯器只使用一個數字的原因）。要創建無序列表，可以在每行前加上\",\n                                \"or\": \"或\",\n                            // 列表項可以包含多個段落，但每個段落必須縮進至少 4 個空格或一個製表符。\n                                \"List items can contain multiple paragraphs, however each paragraph must be indented by at least 4 spaces or a tab.\": \"列表項可以包含多個段落，但每個段落必須縮進至少 4 個空格或一個製表符。\",\n                        \"Code Blocks\": \"程式碼塊\",\n                            \"Markdown wraps code blocks in pre-formatted tags to preserve indentation in your code blocks. To create a code block, indent the entire block by at least 4 spaces or one tab. Markdown will strip the extra indentation you’ve added to the code block.\": \"Markdown 將程式碼塊封裝在預設格式的標籤中，以保留程式碼塊的縮進。要創建程式碼塊，請將整個程式碼塊縮進至少 4 個空格或一個製表符。Markdown 會去掉您添加到程式碼塊中的額外縮進。\",\n                        \"Horizontal Rules\": \"水平規則\",\n                            \"Horizontal rules are created by placing three or more hyphens, asterisks or underscores on a line by themselves. Spaces are allowed between the hyphens, asterisks or underscores.\": \"橫線規則是將三個或三個以上的連字符、星號或下劃線單獨放在一行中。連字符、星號或下劃線之間允許有空格。\",\n                    \"Span Elements\": \"引用元素\",\n                        \"Links\": \"鏈接\",\n                            // Markdown 有兩種鏈接類型：內聯和引用。對於這兩種類型的鏈接，您希望向用戶顯示的文本都放在方括號中。例如，如果您想讓鏈接顯示文本 “GitHub”，您可以寫成 [GitHub]。\n                                \"Markdown has two types of links:\": \"Markdown 有兩種鏈接類型：\",\n                                \"inline\": \"內聯\",\n                                \"reference\": \"引用\",\n                                \". For both types of links, the text you want to display to the user is placed in square brackets. For example, if you want your link to display the text “GitHub”, you write\": \"。對於這兩種類型的鏈接，您希望向用戶顯示的文本都放在方括號中。例如，如果您想讓鏈接顯示文本 “GitHub”，您可以寫成\",\n                            // 要創建內嵌鏈接，請在括號後創建一組括號，並在括號內寫入 URL。(例如，[GitHub](https://github.com/)）。內聯鏈接允許使用相對路徑。\n                                \"To create an inline link, create a set of parentheses immediately after the brackets and write your URL within the parentheses. (e.g.,\": \"要創建內嵌鏈接，請在括號後創建一組括號，並在括號內寫入 URL。(例如，\",\n                                \"). Relative paths are allowed in inline links.\": \"）。內聯鏈接允許使用相對路徑。\",\n                            // 要創建引用鏈接，請使用兩組方括號。[[我的內部鏈接|內部引用]]將鏈接到內部引用。\n                                \"To create a reference link, use two sets of square brackets.\": \"要創建引用鏈接，請使用兩組方括號。\",\n                                \"will link to the internal reference\": \"將鏈接到\",\n                        \"Emphasis\": \"強調\",\n                            // 星號（*）和下劃線（_）被視為強調，並用 `<em>` 標籤包裹，這在大多數瀏覽器中通常顯示為斜體。雙星號（**）或雙下劃線（__）被視為使用 `<strong>` 標籤的粗體。要創建斜體或粗體文本，只需用單個/雙個星號/下劃線包裹您的單詞。例如，**我的雙重強調文本** 變成我的雙重強調文本，*我的單一強調文本* 變成我的單一強調文本。\n                                \"Asterisks (\": \"星號（\",\n                                \") and underscores (\": \"）和下劃線（\",\n                                \") are treated as emphasis and are wrapped with an\": \"）被視為強調，並用\",\n                                \"tag, which usually displays as italics in most browsers. Double asterisks (\": \"標籤包裹，這在大多數瀏覽器中通常顯示為斜體。雙星號（\",\n                                \") or double underscores (\": \"）或雙下劃線（\",\n                                \") are treated as bold using the\": \"）被視為使用\",\n                                \"tag. To create italic or bold text, simply wrap your words in single/double asterisks/underscores. For example,\": \"標籤的粗體。要創建斜體或粗體文本，只需用單個/雙個星號/下劃線包裹您的單詞。例如，\",\n                                \"becomes\": \"變成\",\n                                \", and\": \"，\",\n                        // 程式碼\n                            // 要創建內聯程式碼，只需用反標 (`) 將程式碼包起來即可。Markdown 會將 `myFunction` 變成 myFunction。\n                                \"To create inline spans of code, simply wrap the code in backticks (\": \"要創建內聯程式碼，只需用反標\",\n                                \"). Markdown will turn\": \") 將程式碼包起來即可。Markdown 會將\",\n                                \"into\": \"變成\",\n                        \"Images\": \"圖片\",\n                            // Markdown 的圖像語法與鏈接語法很相似；基本上是相同的語法，前面加上一個感嘆號（!）。例如，如果您想鏈接到 https://github.com/unicorn.png 網站上的圖片，並使用另一文本 “我的獨角獸”，您可以寫成 ![My Unicorn](https://github.com/unicorn.png)。\n                            \"Markdown image syntax looks a lot like the syntax for links; it is essentially the same syntax preceded by an exclamation point (\": \"Markdown 的圖像語法與鏈接語法很相似；基本上是相同的語法，前面加上一個感嘆號（\",\n                            \"). For example, if you want to link to an image at\": \"）。例如，如果您想鏈接到\",\n                            \"with the alternate text\": \"網站上的圖片，並使用另一文本\",\n                            \", you would write\": \"，您可以寫成\",\n                    \"Miscellaneous\": \"雜項\",\n                        \"Automatic Links\": \"自動鏈接\",\n                            // 如果您想創建一個能顯示實際 URL 的鏈接，markdown 允許您用 < 和 > 來快速封裝 URL。例如，只要寫入 <https://github.com/>，就能輕鬆創建 https://github.com/ 鏈接。\n                            \"If you want to create a link that displays the actual URL, markdown allows you to quickly wrap the URL in\": \"如果您想創建一個能顯示實際 URL 的鏈接，markdown 允許您用\",\n                            \"to do so. For example, the link\": \"來快速封裝 URL。例如，創建鏈接\",\n                            \"is easily produced by writing\": \"只需寫入\",\n                        \"Escaping\": \"忽略\",\n                            \"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\": \"如果您想在文檔中使用特殊的 Markdown 字符（例如顯示星號），可以用反斜槓 (\",\n                            \"). Markdown will ignore the character directly after a backslash.\": \") 來轉義該字符。Markdown 將忽略反斜線後的字符。\",\n                            //\"If you want to use a special Markdown character in your document (such as displaying literal asterisks), you can escape the character with the backslash (\\). Markdown will ignore the character directly after a backslash.\": \"如果您想在文檔中使用特殊的 Markdown 字符（例如顯示星號），可以用反斜槓 (\\) 來轉義該字符。Markdown 將忽略反斜線後的字符。\",\n\n            // 底部\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通過拖放、選擇或粘貼來添加文件。\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 創建樣式\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Welcome to the ([^ ]+) wiki!/, \"歡迎訪問 $1 的 Wiki\"], // wiki頁面\n        [/edited this page/, \"編輯此頁\"], // wiki\n        [/(\\d+) revisions?/, \"$1 次修訂\"], // wiki\n        [/Editing/, \"編輯\"], //編輯 wiki\n        [/Could not find version \"([^ ]+)\"/, \"找不到版本 “$1”\"],\n        [/Compare:/, \"對比：\"],\n        [/(\\d+) additions?/, \"$1 處增加\"],\n        [/(\\d+) deletions?/, \"$1 處刪除\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/branches\"] = { // 倉庫 - 分支頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 分支頁面 branches  /<user-name>/<repo-name>/branches\n            // 標籤卡欄\n            \"Overview\": \"概況\",\n            \"Yours\": \"您的\",\n            \"Active\": \"活躍的\",\n            \"Stale\": \"陳舊的\",\n            \"All branches\": \"所有分支\",\n            \"All\": \"所有\",\n            \"branches\": \"分支\",\n            \"New branch\": \"新建分支\",\n                // 創建分支對話框\n                \"Branch source\": \"源分支\",\n                    \"Choose from this fork or its upstream repository.\": \"從此複刻或其上游倉庫中進行選擇。\",\n                    \"Choose a source branch\": \"選擇源分支\",\n                \"Share feedback\": \"分享反饋\",\n            \"Search branches…\": \"搜索分支…\",\n            \"Copy branch name to clipboard\": \"複製分支名到剪切板\",\n\n            \"Default branch\": \"默認分支\",\n            \"Switch default branch\": \"切換默認分支\",\n            \"View branch activity\": \"查看分支活動\",\n            \"Default\": \"默認\",\n\n            // [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保護\"],\n            \"Your\": \"您的\",\n            \"branch isn't protected\": \"分支不受保護\",\n            \"Protect this branch from force pushing or deletion, or require status checks before merging.\": \"保護此分支不被強制推送或刪除，或在合併之前要求狀態檢查。\",\n            \"Dismiss\": \"駁回\",\n            \"Protect this branch\": \"保護該分支\",\n\n            \"Updated\": \"更新於\",\n            \"New pull request\": \"發起拉取請求\",\n\n                // 重命名分支對話框\n                \"Rename default branch\": \"重命名默認分支\", // 重命名默認分支 標題\n                \"Rename this branch\": \"重命名分支\", // 重命名其他分支 標題\n                \"Rename\": \"重命名\",\n                \"to:\": \"為：\",\n                \"Most projects name the default branch\": \"大多數專案將默認分支名為\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 該分支存在來自其他分支的拉取請求時\n                        \"Will update\": \"將更新\",\n                        \"pull request targeting this branch.\": \"條針對該分支的拉取請求。\",\n                        \"pull\": \"條拉取請求\",\n                        \"request\": \" \",\n                        \"targeting this\": \"針對\",\n                        \"branch.\": \"該分支。\",\n                        \"branch protection rule that explicitly targets\": \"條分支保護規則明確針對\",\n\n                    // 該分支存在用於其他分支的拉取請求時\n                        \"Will close\": \"將關閉\",\n                        \"open pull request for this branch.\": \"個該分支的拉取請求。\",\n                        \"open pull\": \"個打開的拉取請求\",\n                        \"for this branch.\": \"針對該分支。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"將取消當前發佈的 GitHub Pages 站點。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您當前的 GitHub Pages 站點將被取消發佈。重命名分支上的新提交將再次發佈 GitHub Pages 站點。\",\n\n                    \"Will not update your members' local environments.\": \"不會更新您成員的本地環境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不會更新您成員的本地環境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成員將不得不手動更新他們的本地環境。我們會在他們訪問倉庫時通知他們，或者您可以共享以下命令。\",\n\n                \"Rename branch\": \"重命名分支\",\n                \"Saving…\": \"保存中…\",\n\n                \"Deleted\": \"已刪除\",\n                // 刪除分支後\n                \"Restore\": \"還原\",\n                \"Deleted just now by\": \"剛剛被刪除\",\n\n                // 刪除對話框 僅當該分支存在拉取請求\n                \"The branch\": \"分支\",\n                // [/is associated with (\\d+) open pull requests?:/, \"與 $1 個拉取請求相關聯：\"], // 分支頁面\n                \"is associated with an open pull request:\": \"與 1 個拉取請求相關聯：\", // 分支頁面\n                \"If you delete this branch, the pull request will be closed.\": \"如果您刪除此分支，則拉取請求將被關閉。\",\n                \"Are you sure you want to delete this branch?\": \"您確定要刪除此分支嗎？\",\n\n                // 頂部提醒\n                // [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 將很快重命名為 $2。\"], //分支重命名成功\n\n            \"Your branches\": \"您的分支\",\n            \"You haven’t pushed any branches to this repository.\": \"您沒有推送任何分支到該倉庫。\",\n            \"Active branches\": \"活躍的分支\",\n            \"There aren’t any active branches.\": \"沒有任何活躍的分支。\",\n            \"Stale branches\": \"陳舊的分支\",\n            \"There aren’t any stale branches.\": \"沒有任何陳舊的分支。\",\n            \"View more active branches\": \"查看更多活躍的分支\",\n            \"View more stale branches\": \"查看更多陳舊的分支\",\n\n            // [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"領先 $1 個提交，落後 $2 個提交於 $3\"],\n\n            // 新版分支視圖\n                // 創建分支對話框\n                \"Create a branch\": \"創建分支\",\n                    \"New branch name\": \"新分支名稱\",\n                    \"Source\": \"源分支\",\n                        \"Switch branches\": \"切換分支\",\n                        \"Find a branch...\": \"查找分支…\",\n                        \"default\": \"默認\",\n                    \"Create new branch\": \"創建新分支\",\n\n                \"Search branches...\": \"搜索分支…\",\n\n                // 無匹配結果\n                    \"No branches\": \"沒有分支\",\n                    \"No branches match the search\": \"沒有符合搜索條件的分支\",\n\n                \"Check status\": \"檢查狀態\",\n                \"Behind\": \"落後\",\n                \"Ahead\": \"領先\",\n                \"Pull request\": \"拉取請求\",\n\n                \"Copy branch name to clipboard\": \"將分支名稱複製到剪貼板\",\n                \"This branch is protected by branch protections\": \"該分支受分支保護的保護\",\n\n                \"Branch menu\": \"分支菜單\",\n                    \"Activity\": \"活動\",\n                    \"View rules\": \"查看規則\",\n                        \"There are no rulesets associated with this branch.\": \"該分支沒有相關的規則集。\",\n\n                \"View more branches\": \"查看更多分支\",\n\n                // 底部提醒\n                    \"You can't delete this protected branch.\": \"您無法刪除此受保護分支。\",\n                    \"You can't delete the default branch.\": \"您不能刪除默認分支。\",\n                    \"Branch could not be deleted.\": \"不能刪除分支。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Your ([^ ]+) branch isn't protected/, \"您的 $1 分支不受保護\"],\n        [/Rename default branch/, \"重命名默認分支\"],\n        [/Rename branch/, \"重命名分支\"],\n        [/Your branch name will be ([^ ]+)/, \"分支將重命名為 $1\"],\n        [/Delete branch/, \"刪除分支\"],\n        // [/is associated with (\\d+) open pull requests?:/, \"與 $1 個拉取請求相關聯：\"],\n        [/Branch ([^ ]+) will be renamed to ([^ ]+) shortly./,\"分支 $1 將很快重命名為 $2。\"], //分支重命名成功\n        [/(\\d+) commits? ahead, (\\d+) commits? behind ([^ ]+)/, \"領先 $1 個提交，落後 $2 個提交於 $3\"],\n        [/(\\d+) commits? behind ([^ ]+)/, \"落後 $1 個提交於 $2\"],\n        [/(\\d+) commits? ahead ([^ ]+)/, \"領先 $1 個提交於 $2\"],\n        [/Ahead behind count: (\\d+)/, \"領先落後數：$1\"],\n    ],\n    \"selector\": [ // 元素篩選器規則\n        [\"a[data-target='branch-filter.allFilter']\", \"所有分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Branches/, \"分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/activity\"] = { // 倉庫 - 活動頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 活動頁面 /<user-name>/<repo-name>/activity\n            \"Activity\": \"活動\",\n\n            \"All branches\": \"所有分支\",\n                \"Switch branches\": \"切換分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"Branches\": \"分支\",\n                \"default\": \"默認\",\n                \"View activity for all branches\": \"查看所有分支的活動\",\n\n            \"All activity\": \"所有活動\",\n                \"Direct pushes\": \"直接推送\",\n                \"Pull request merges\": \"拉取請求合併\",\n                \"Merge queue merges\": \"合併隊列合併\",\n                \"Force pushes\": \"強制推送\",\n                \"Branch creations\": \"創建分支\",\n                \"Branch deletions\": \"刪除分支\",\n\n            \"All users\": \"所有用戶\",\n                \"Find a user...\": \"查找用戶…\",\n                \"View activity for all users\": \"查看所有用戶的活動\",\n\n            \"All time\": \"所有時間\",\n                \"Last 24 hours\": \"過去 24 小時\",\n                \"Last week\": \"上星期\",\n                \"Last month\": \"上個月\",\n                \"Last quarter\": \"上季度\",\n                \"Last year\": \"去年\",\n\n\n            \"Showing oldest first\": \"顯示最早的\",\n            \"Showing most recent first\": \"顯示最近的\",\n\n            \"Compare changes\": \"比較變更\",\n            \"Restore Branch\": \"恢復分支\",\n\n            \"Previous\": \"上一頁\",\n            \"Next\": \"下一頁\",\n\n            \"Direct push\": \"直接推送\",\n            \"Pull request merge\": \"拉取請求合併\",\n            \"Force push\": \"強制推送\",\n            \"Branch creation\": \"創建分支\",\n            \"Branch deletion\": \"刪除分支\",\n\n            \"force pushed to\": \"強制推送到\",\n            \"deleted\": \"刪除\",\n\n            \"Share feedback about this page\": \"分享關於此頁面的反饋\",\n\n        // 活動頁面 - 指定分支 /<user-name>/<repo-name>/activity?ref=<branch-name>\n            \"created this branch\": \"創建此分支\",\n            \"deleted this branch\": \"刪除此分支\",\n            \"force pushed\": \"強制推送\",\n\n            \"No activity matched your search.\": \"沒有與您搜索相匹配的活動。\",\n            \"Try expanding your search by selecting a different branch, activity type, user, or timeframe.\": \"嘗試通過選擇不同的分支、活動類型、用戶或時間範圍來擴大搜索範圍。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/pushed (\\d+) commits? to/, \"推送 $1 個提交到\"],\n        [/pushed (\\d+) commits?/, \"推送 $1 個提交\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/releases\"] = { // 倉庫 - 發行版頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 發行版 頁面 /<user-name>/<repo-name>/releases\n            \"Releases\": \"發行版\",\n            // 無發行版時\n            \"There aren’t any releases here\": \"沒有任何發行版\",\n            \"You can create a release to package software, along with release notes and links to binary files, for other people to use. Learn more about releases in\": \"您可以創建一個發行版來打包軟體，以及發行說明和二進制文件鏈接，供其他人使用。瞭解更多關於發行版的信息，查看\",\n            \"our docs\": \"文檔\",\n            \"Releases are powered by\": \"發行版是指通過對倉庫中\",\n            \"tagging specific points of history\": \"特定歷史點\",\n            \"in a repository. They’re great for marking release points like\": \"進行標記來發布。用於發佈的版本號類似\",\n            \"Create a new release\": \"創建發行版\",\n\n            // 有發行版時\n            \"Draft a new release\": \"起草發行版\",\n            \"Find a release\": \"搜索發行版\",\n\n                // 搜索未找到\n                \"No releases found\": \"無匹配結果\",\n            // 左側欄\n            \"Pre-release\": \"預發行版\",\n            \"Latest\": \"最新發行版\",\n            \"Draft\": \"草案\",\n\n            \"Compare\": \"對比\",\n                \"Choose a tag to compare\": \"選擇標籤進行比較\",\n                \"Find a tag\": \"搜索標籤\",\n                \"View all tags\": \"查看全部標籤\",\n\n            \"Read more\": \"閱讀更多內容\",\n            \"Contributors\": \"貢獻者\",\n            \"Assets\": \"資源\",\n            // [/Show all (\\d+) assets?/, \"顯示所有 $1 個資產？\"],\n\n            \"Join discussion\": \"加入討論\",\n\n            // [/Edit: (.*)/, \"編輯：$1\"],\n            // [/Delete: (.*)/, \"刪除：$1\"],\n\n        // 發行版 標籤卡 /<user-name>/<repo-name>/tags\n            \"Create release\": \"創建發行版\",\n            \"Edit release\": \"編輯發行版\",\n\n            \"Toggle commit message\": \"顯示/隱藏提交消息\",\n\n            \"Notes\": \"說明\",\n            \"Downloads\": \"下載\",\n\n            \"Delete tag\": \"刪除標籤\",\n                // 刪除標籤 對話框\n                    \"Delete this tag?\": \"刪除此標籤？\",\n                    \"This will delete the information for the tag\": \"這將刪除標籤信息\",\n                    \"and cannot be undone.\": \"而且無法撤銷。\",\n                    \"Delete this tag\": \"刪除此標籤\",\n\n        // 某個發行版標籤 /<user-name>/<repo-name>/releases/tag/<tag>\n            // 不存在發行版時\n            // \"Create release\": \"創建發行版\",\n            \"from tag\": \"來自該標籤\",\n            // \"Edit\": \"編輯\",\n            \"release\": \"發行版\",\n\n            // \"Read release notes\": \"閱讀發佈說明\",\n            // 狀態詞\n            \"released this\": \"發佈於\",\n            \"tagged this\": \"標記了\",\n            \"drafted this\": \"起草了\",\n\n            // 刪除標籤對話框\n            \"Delete tag?\": \"刪除標籤？\",\n            \"This will delete the information for this tag and cannot be undone.\": \"將刪除該標籤的所有信息，並且無法撤消。\",\n            \"I understand, delete this tag\": \"我明白了，依然刪除該標籤\",\n\n            // 存在發行版時\n            // 15 commits to master since this release\n\n            \"Delete release\": \"刪除發行版\",\n            // 刪除發行版對話框\n            \"Delete this release?\": \"刪除該發行版？\",\n            // \"This will delete the information for this release.\": \"這將會刪除該發行版的信息。\",\n                \"This will delete the information for the release\": \"這將刪除該發行版信息：\",\n            \"Delete this release\": \"刪除發行版\",\n\n            // 頂部提醒框\n            \"Your tag was removed\": \"您的標籤已刪除\",\n            \"Your release was removed\": \"您的發行版已刪除\",\n\n        // 創建發行版 /releases/new 和 編輯發行版 /releases/edit/<tag>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            // 提醒條\n            \"This is a draft and won’t be seen by the public unless it’s published.\": \"這是一個草案，除非發佈，否則不會被公眾看到。\",\n            \"This is a draft and won’t be seen by the public unless it is published\": \"這是一個草案，除非發佈，否則不會被公眾看到。\",\n            \"Discard draft\": \"丟棄草案\",\n\n            \"New Release\": \"新建發行版\", // 上方\n            \"New release\": \"新建發行版\", // 下方\n\n            \"Release notes\": \"發行版說明\",\n                \"Select a previous tag to create generated release notes\": \"選擇一個先前的標籤以生成發行說明\",\n\n            \"Choose a tag\": \"選擇標籤\",\n                \"Find or create a new tag\": \"查找或創建新標籤\",\n                \"Search or create a new tag\": \"查找或新建標籤\",\n            \"Tag:\": \"標籤：\",\n                \"Select tag\": \"選擇標籤\",\n                \"Create new tag\": \"新建標籤\",\n            \"Target:\": \"目標：\",\n                \"Pick a branch or recent commit\": \"選擇分支或最近的提交\",\n                \"Filter branches…\": \"篩選分支…\",\n                \"Filter recent commits…\": \"篩選最近提交…\",\n                \"Recent Commits\": \"最近提交…\",\n            \"Choose an existing tag, or create a new tag on publish\": \"選擇現有的標籤，或在發佈時創建新標籤\",\n            \"Choose an existing tag, or create a new tag when you publish this release.\": \"選擇現有的標籤，或在您發佈這個版本時，創建新標籤。\",\n\n            \"Loading tag information…\": \"載入標籤信息…\",\n            // 在篩選標籤框輸入 標籤時\n            \"Create new tag:\": \"創建新標籤：\",\n            \"on publish\": \"發佈時\",\n            // 輸入結果\n            \"Duplicate tag name\": \"重複的標籤名\",\n                \"This tag already has release notes. Would you like to\": \"這個標籤已經有發行說明。您是否願意\",\n                \"edit them?\": \"編輯它們？\",\n                \"edit the existing notes\": \"編輯現有註釋\",\n                \"Existing tag\": \"已存在的標籤\",\n            \"Invalid tag name\": \"無效的標籤名\",\n                \"We weren’t able to create the release for you. Make sure you have a valid tag.\": \"我們無法為您創建發行版。請確保您有一個有效的標籤。\",\n                \"There was an error creating your Release: tag name can't be blank, tag name is not well-formed, published releases must have a valid tag.\": \"創建發行版時出錯：標籤名稱不能為空，標籤名稱格式不正確，已發佈的發行版必須有一個有效的標籤。\",\n                \"We can’t create a tag with this name. Take a look at the suggestions in the sidebar for example tag names.\": \"我們不能用這個名字創建標籤。看看側邊欄的建議，看看標籤名稱的例子。\",\n            \"Excellent! This tag will be created from the target when you publish this release.\": \"優秀! 當您發佈這個版本時，這個標籤將從目標創建。\",\n\n            \"Release title\": \"發行版標題\",\n\n            \"Previous tag:\": \"上一個標籤：\",\n            \"Previous tag\": \"上一個標籤\",\n                \"Auto\": \"自動\",\n                \"auto\": \"自動\",\n                \"Select previous tag to compare\": \"選擇上一個標籤進行比較\",\n                    \"Find previous tag\": \"篩選上一個標籤\",\n            \"Generate release notes\": \"生成發行版說明\",\n                \"Select a valid tag to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"選擇一個有效的標籤，以自動為該差異中的所有合併拉取請求和該版本的貢獻者添加至 Markdown 說明\",\n                \"Automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"自動為來自此差異和此發行版貢獻者的所有已合併拉取請求，添加 Markdown 說明。\",\n                \"Clear existing notes to automatically add the Markdown for all the merged pull requests from this diff and contributors of this release\": \"清除現有的註釋，以自動添加來自此差異和此版本貢獻者的所有合併的拉取請求的標記。\",\n\n                \"There were no pull requests associated with the commits included in this release.\": \"此版本中沒有與提交相關的拉取請求。\",\n\n            \"Describe this release\": \"描述此發行版\",\n\n            // 編輯器按鈕(老版)\n                \"Add heading text\": \"添加標題文本\",\n                \"Add bold text, <Ctrl+b>\": \"添加粗體文本 <Ctrl+b>\",\n                \"Add italic text, <Ctrl+i>\": \"添加斜體文本 <Ctrl+i>\",\n                \"Add a quote, <Ctrl+Shift+.>\": \"添加引用 <Ctrl+Shift+.>\",\n                \"Add code, <Ctrl+e>\": \"添加程式碼 <Ctrl+e>\",\n                \"Add a link, <Ctrl+k>\": \"添加鏈接 <Ctrl+k>\",\n                \"Add a bulleted list, <Ctrl+Shift+8>\": \"添加無序列表 <Ctrl+Shift+8>\",\n                \"Add a numbered list, <Ctrl+Shift+7>\": \"添加有序列表 <Ctrl+Shift+7>\",\n                \"Add a task list, <Ctrl+Shift+l>\": \"添加任務列表 <Ctrl+Shift+l>\",\n                \"Directly mention a user or team\": \"直接提及用戶或團隊\",\n                \"Reference an issue, pull request or discussion\": \"引用議題，拉取請求或討論\",\n                \"Add saved reply\": \"添加快捷回覆\",\n                    \"Select a reply\": \"選擇回覆\",\n                        \"Filter saved replies\": \"篩選快捷回覆\",\n                        \"Create a new saved reply\": \"創建新快捷回覆\",\n                \"Attach files by dragging & dropping, selecting or pasting them.\": \"通過拖拽、選擇或粘貼來附加文件。\",\n\n            // 附加文件\n            \"Attach binaries by dropping them here or selecting them.\": \"拖拽文件到這來或選擇它們來附加文件。\",\n            \"Uploading your release now…\": \"正在上傳到您的發行版…\",\n            \"Uploading your file now…\": \"正在上傳您的文件…\",\n            \"An attachment with that filename already exists.\": \"同名附件已經存在。\",\n            \"Try a different file.\": \"請嘗試不同的文件。\",\n            \"We don’t support that file type.  try zipping it.\": \"我們不支持該文件類型，請嘗試壓縮它。\",\n            \"Try another file.\": \"請嘗試另一個文件。\",\n            \"Yowza, that’s a big file.\": \"喲，這可是個大文件。\",\n            \"Try again\": \"請嘗試\",\n            \"With a file smaller than 2GB.\": \"一個小於 2GB 的文件。\",\n            \"This file is empty.\": \"這是一個空文件。\",\n            \"with a file that’s not empty.\": \"一個非空的文件。\",\n            \"Something went really wrong, and we can’t process that file.\": \"確實出了點問題，我們無法處理該文件。\",\n            \"Try again.\": \"請重試。\",\n\n            // \"Delete and try uploading this file again.\": \"刪除並重新上傳。\",\n            \"Upload failed. Delete and try uploading this file again.\": \"上傳失敗。請刪除並重新上傳。\",\n            \"will be deleted\": \"將被刪除\",\n            \"Remove\": \"刪除\",\n            \"Undo\": \"撤銷\",\n\n            \"Set as a pre-release\": \"設置為預發佈版本\",\n                \"This release is labeled as non-production ready.\": \"此版本標記為非正式版本。\",\n                \"This release will be labeled as non-production ready\": \"此版本將被標記為非正式版本。\",\n            \"Create a discussion for this release\": \"為此版本創建討論\",\n                \"People will be able to leave comments and reactions on this release using Discussions.\": \"人們將能夠使用“討論”對此版本發表評論和反應。\",\n                        \"Category:\": \"類別：\",\n                            \"Announcements\": \"公告\",\n                            \"General\": \"通常\",\n                            \"Ideas\": \"想法\",\n                            \"Polls\": \"投票\",\n                            \"Q&A\": \"問與答\",\n                            \"Show and tell\": \"展示與講述\",\n            \"Set as the latest release\": \"設置為最新版本\", //edit\n                \"This release is labeled as the latest for this repository.\": \"此版本將被標記為此倉庫的最新版本。\",\n                \"This release will be labeled as the latest for this repository.\": \"此版本將被標記為此倉庫的最新版本。\",\n\n            \"Publish release\": \"發佈發行版\",\n                \"Publishing…\": \"發佈中…\",\n            \"Update release\": \"更新發行版\",\n                \"Saving release…\": \"保存中…\",\n            \"Save draft\": \"保存草案\",\n            \"Saved!\": \"已保存\",\n            \"Saving draft failed. Try again?\": \"保存草案失敗。請重試？\",\n\n            // 丟棄草案 對話框\n            \"Are you sure?\": \"您確定哇?\",\n            \"This will delete the information for this draft.\": \"這將會刪除該草案的信息。\",\n            \"Delete this draft\": \"刪除草案\",\n\n            // 右側欄\n            \"Tagging suggestions\": \"標籤建議\",\n            \"It’s common practice to prefix your version names with the letter\": \"通常的做法是在版本名稱前加上字母\",\n            \". Some good tag names might be\": \"。一些好的標籤名稱可能是\",\n            \"If the tag isn’t meant for production use, add a pre-release version after the version name. Some good pre-release versions might be\": \"如果標籤不是用於生產的，就在版本名後面加上預發佈版本。一些好的預發佈版本可能是\",\n\n            \"Semantic versioning\": \"語義版本管理\",\n            \"If you’re new to releasing software, we highly recommend to\": \"如果您是發佈新手，我們強烈您\",\n            \"learn more about semantic versioning.\": \"瞭解更多關於語義版本管理的信息。\",\n\n            \"A newly published release will automatically be labeled as the latest release for this repository.\": \"新發布的版本將自動標記為該倉庫的最新版本。\",\n            \"If \\'Set as the latest release\\' is unchecked, the latest release will be determined by higher semantic version and creation date.\": \"如果未選中 “設置為最新版本”，則最新版本將由更高語義版本和創建日期確定。\",\n            \"Learn more about release settings.\": \"瞭解更多關於發行版設置的信息。\",\n\n       // 創建 Action 發行版到市場 /releases/new?marketplace 和 編輯 /releases/edit/... >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Release Action\": \"發佈 Action\",\n                \"Publish this release to the GitHub Marketplace\": \"將此版本發佈到 GitHub 市場\",\n                \"You must\": \"您必須\",\n                \"accept the GitHub Marketplace Developer Agreement\": \"接受 GitHub 市場開發者協議\",\n                \"before publishing an Action.\": \"在發佈之前。\",\n\n                \"Publish this Action to the GitHub Marketplace\": \"將此 Action 發佈到 GitHub  市場\",\n                \"Your Action will be discoverable in the Marketplace and available in GitHub search.\": \"您的 Action 將在市場中被發現，並可在 GitHub 搜索中找到。\",\n\n                \"Your action.yml needs changes before it can be published.\": \"您的 action.yml 需要更改才能發佈。\",\n                \"Everything looks good! You have all the required information.\": \"一切看起來都不錯！您擁有所有必需的信息。\",\n\n                \"Name\": \"名稱\",\n                    \"- Name must be unique. Cannot match an existing action, user or organization name.\": \"- 名稱必須唯一。不能與現有的操作、用戶或組織名稱相匹配。\",\n                \"Description\": \"描述\",\n                \"Icon\": \"圖標\",\n                \"Color\": \"顏色\",\n\n                \"A README exists.\": \"已經存在 README 文件。\",\n\n                \"Primary Category\": \"主要類別\",\n                    \"Choose an option\": \"請選擇\",\n                \"Another Category\": \"其他分類\",\n                    \"— optional\": \"— 可選\",\n\n        // 發行版評論\n            \"No significant changes\": \"無重大變化\", // GitHub Action 生成的發行版\n\n        // 反應相關\n            \"You reacted\": \"您表達看法\",\n            \"All reactions\": \"所有看法\", // Android UA\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Show all (\\d+) assets?/, \"顯示所有 $1 個資產\"],\n        [/(\\d+) commits?/, \"$1 個提交\"],\n        [/to ([^ ]+) since this release/, \"在此發行版之後進入 $1 分支\"],  // $1 分支在此發行版之後有 xxx 個提交\n        [/This will delete the information for the release ([^ ]+)./, \"這將刪除發行版 $1 的信息。\"],\n        [/Toggle (.*)'s commit message/, \"切換 $1 的提交消息\"],\n        [/Edit: (.*)/, \"編輯：$1\"],\n        [/Delete: (.*)/, \"刪除：$1\"],\n        [/Remove attached binary ([^ ]+)/, \"刪除 $1\"],\n        [/and (\\d+) other contributors/, \"和另外 $1 個貢獻者\"],\n        [/You and (\\d+) others? reacted/, \"您和另外 $1 人表達看法\"],\n        [/^([^ ]+) and ([^ ]+)/, \"$1 和 $2\"], // 發行版 - 貢獻者（2位\n        [/(\\d+) (people|person) reacted/, \"$1 人表達看法\"],\n        [/There are no releases containing \\\"([^ ]+)\\\"./, \"沒有發行版包含“$1”。\"],\n        [/Edit (.+)/, \"編輯 $1\"],\n        [/^([^ ]+) will be created on publish/, \"$1 將在發佈時創建\"],\n        [/^([^ ]+) is used by another release/, \"$1 已存在\"], // 省略部分內容\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Releases?/, \"發行版\"],\n            [/Tags/, \"標籤\"],\n            [/New release/, \"新建發行版\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/tags\"] = I18N[\"zh-TW\"][\"repository/releases\"];\n\nI18N[\"zh-TW\"][\"repository/packages\"] = { // 倉庫 - 軟體包頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // /<user-name>/<repo-name>/packages\n            \"Get started with GitHub Packages\": \"開始使用 GitHub 軟體包\",\n            \"Safely publish packages, store your packages alongside your code, and share your packages privately with your team.\": \"安全地發佈包，將您的包與您的程式碼一起存儲，並與您的團隊私下共享您的包。\",\n             \"Choose a registry\": \"選擇註冊表\",\n\n            \"A software platform used for building applications based on containers — small and lightweight execution environments.\": \"用於構建基於容器的應用的軟體平臺——小型輕量級執行環境。\",\n            \"A default package manager used for the Java programming language and the Java runtime environment.\": \"用於 Java 編程語言和 Java 運行環境的一個默認包管理器。\",\n            \"A free and open source package manager used for the Microsoft development platforms including .NET.\": \"一個自由和開源的開源包管理器，用於包括 .NET 在內的 Microsoft 開發平臺。\",\n            \"A standard format for distributing Ruby programs and libraries used for the Ruby programming language.\": \"分發用於 Ruby 編程語言的 Ruby 程式和庫的標準格式。\",\n            \"A package manager for JavaScript, included with Node.js. npm makes it easy for developers to share and reuse code.\": \"npm 是一個 JavaScript 的包管理器，包含在 Node.js 中。它使開發人員能夠輕鬆地分享和重用程式碼。\",\n            \"Containers\": \"容器\",\n            \"A single place for your team to manage Docker images and decide who can see and access your images.\": \"為您的團隊提供一個管理 Docker 鏡像的單一場所，並決定誰可以看到和訪問您的鏡像。\",\n\n            \"Package settings\": \"軟體包設置\",\n            \"Repository source\": \"倉庫來源\",\n            \"This is the repository where the package's source code is stored. This is defined in the repository's package.json file using the\": \"這是軟體包源程式碼的倉庫。這是在倉庫中的 package.json 文件使用字段\",\n            \"field.\": \"定義的。\",\n            \"A GitHub repository has been identified as the source for this package. This package will be displayed in this repositories package list.\": \"GitHub 倉庫已被確定為該軟體包的來源，該軟體包將顯示在此倉庫的軟體包列表中。\",\n            \"You have referenced a non-GitHub source for this package that cannot be verified.\": \"您引用了一個無法驗證的非 GitHub 來源的軟體包。\",\n            \"Manage Actions access\": \"操作訪問權限管理\",\n            \"Add Repository\": \"添加倉庫\",\n            \"Pick the repositories that can access this package using\": \"選擇可以訪問此軟體包的倉庫，用於\",\n            \"Role:\": \"角色:\",\n            \"Choose role\": \"選擇角色\",\n            \"Change role\": \"更改角色\",\n            \"Read\": \"只讀\",\n            \"Write\": \"編輯\",\n            \"Admin\": \"管理\",\n            \"Remove\": \"刪除\",\n            \"Actions repository access\": \"操作倉庫訪問\",\n            \"Pick the repositories that can access this package using GitHub Actions.\": \"選擇可以使用 GitHub Actions 訪問此軟體包的倉庫。\",\n            \"Permissions added for selected repositories.\": \"為選定的倉庫添加了權限。\",\n            \"Permissions updated for selected repositories.\": \"更新了選定倉庫的權限。\",\n            \"Can upload and download this package. Can read and write package metadata.\": \"可以上傳和下載此軟體包，並且可以讀取和寫入元數據。\",\n            \"Can download this package and read package metadata.\": \"可以下載此軟體包並讀取元數據。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can delete and restore packages.\": \"可以上傳、下載和管理此軟體包，可以讀取和寫入元數據，可以刪除和恢復此軟體包。\",\n            \"Can upload, download, and manage this package. Can read and write package metadata. Can grant package permissions.\": \"可以上傳、下載和管理此軟體包，可以讀取和寫入元數據，可以授予軟體包權限。\",\n            \"Manage Codespaces access\": \"程式碼空間訪問管理\",\n            \"Codespaces repository access\": \"程式碼空間倉庫訪問\",\n            \"Pick the repositories that can read this package using GitHub Codespaces.\": \"選擇可以使用 GitHub 程式碼空間 讀取此軟體包的倉庫。\",\n            \"Pick the repositories that can read this package using\": \"選擇可以讀取此軟體包的倉庫，用於\",\n            \"Inherited access\": \"繼承訪問\",\n            \"Inherit access from source repository (recommended)\": \"從源倉庫繼承訪問權限 (推薦)\",\n            \"Go to\": \"轉到\",\n            \"to change access, or remove inherited access to manage it separately. Inherited access is recommended.\": \"的訪問設置以更改訪問權限，或刪除繼承的訪問權限以單獨管理它，建議使用繼承訪問權限。\",\n            \"Danger Zone\": \"危險操作\",\n            \"Change package visibility\": \"更改軟體包可見性\",\n            \"This package is currently public.\": \"該軟體包當前是公開的\",\n            \"This package is currently private.\": \"該軟體包當前是私有的\",\n            \"Change visibility\": \"更改可見性\",\n            \"Delete this package\": \"刪除軟體包\",\n            \"Once you delete a package, there is no going back. Please be certain.\": \"您一旦刪除了軟體包，將再也無法恢復，請確認！\",\n            \"Manage access\": \"訪問管理\",\n            \"Invite teams or people\": \"邀請團隊或人員\",\n\n        // 倉庫鏈接對話框\n            \"Confirm you want to unlink this repository\": \"確認您要取消與此倉庫的鏈接\",\n            \"Yes, unlink this repository\": \"是的，取消鏈接此倉庫\",\n\n        // 添加倉庫對話框\n            \"Select repository that can access this package using GitHub actions\": \"選擇可以使用 GitHub 操作訪問此軟體包的倉庫\",\n            \"Add repositories\": \"添加倉庫\",\n\n        // 刪除倉庫對話框\n            \"Confirm you want to remove this repository\": \"確認要刪除此倉庫\",\n            \"Once removed,\": \"刪除後，\",\n            \"will no longer have access to the\": \"將無法再訪問\",\n            \"package.\": \"軟體包。\",\n\n        // 程式碼空間添加倉庫對話框\n            \"Select repository that can access this package using GitHub codespaces\": \"選擇可以使用 GitHub 程式碼空間訪問此軟體包的倉庫\",\n\n        // 更改軟體包可見性對話框\n            \"Make this package visible to anyone.\": \"使這個軟體包對所有人都可見。\",\n            \"Make this package visible privately, to organization members that have access.\": \"僅這個軟體包有權訪問的組織成員可見。\",\n            \"Please type\": \"請輸入\",\n            \"to confirm:\": \"進行確認：\",\n            \"I understand the consequences, change package visibility.\": \"我明白後果，依然更改軟體包可見性\",\n\n        // 刪除軟體包對話框\n            \"Are you absolutely sure?\": \"您真的確定嗎？\",\n            \"Once this package is deleted, it will no longer be accessible.\": \"一旦刪除了這個軟體包，您將無法再訪問它。\",\n            \"This action will delete package\": \"此操作將刪除軟體包\",\n            \". Versions of this package will no longer be accessible, and it will not appear in searches or package listings.\": \"。此軟體包的版本將不再可訪問，並且不會出現在搜索結果或軟體包列表中。\",\n            \"I understand the consequences, delete this package\": \"我明白後果，依然刪除這個軟體包\",\n\n        // 更改倉庫角色對話框\n            \"Select a new role\": \"選擇新角色\",\n            \"Recommended for non-code contributors who want to view or discuss your package.\": \"推薦給想要查看或討論您的軟體包的非程式碼貢獻者。\",\n            \"Recommended for contributors who actively push to your package.\": \"推薦給積極推送程式碼到您的軟體包的貢獻者。\",\n\n        // 更改成員角色對話框\n            \"Recommended for people who need full access to the package, including sensitive and destructive actions like managing security and package visibility.\": \"建議需要完全訪問軟體包的人員使用，包括管理安全性和軟體包可見性等敏感和破壞性操作。\",\n\n        // 訪問管理刪除對話框\n            \"Confirm you want to remove this user\": \"確認刪除該用戶\",\n\n        // 邀請團隊或人員對話框\n            \"Invite teams or people to\": \"邀請團隊或人員參與\",\n            \"Search by username, full name, or email\": \"搜索用戶名、全名或電子郵件\"\n    },\n    \"regexp\": [\n        [/Are you sure you want to unlink (.*) from (.*)\\?/, \"您確定要取消 $1 與 $2 的鏈接嗎？\"],\n        [/(\\d+) repositor(y|ies) selected…/, \"選中 $1 個倉庫\"],\n        [/Change the role of (\\d+) repositor(y|ies)\\?/, \"更改 $1 個倉庫的角色？\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members? selected…/, \"選中 $1 個成員\"],\n        [/Change the role of (\\d+) members?\\?/, \"更改 $1 個成員的角色？\"],\n        [/(\\d+) members?/, \"$1 個成員\"],\n        [/(.*)'s access settings/, \"$1 訪問設置\"],\n        [/Removed access from repository (.*)\\./, \"刪除了倉庫 $1 的訪問權限。\"],\n        [/Removed (.*) as a package collaborator\\./, \"刪除了 $1 作為軟體包的協作者。\"],\n\n        // 刪除倉庫對話框\n        [/Remove (.*) from (.*)/, \"從 $2 中刪除 $1\"],\n\n        // 更改倉庫角色對話框\n        [/Change (\\d+) Roles?/, \"更改 $1 個角色\"],\n    ],\n}\n\nI18N[\"zh-TW\"][\"repository/pkgs\"] = { // 倉庫 - 軟體包\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository/packages\"][\"static\"],\n\n        // /<user-name>/<repo-name>/pkgs/container/<pag name>\n            \"Installation\": \"安裝\",\n                \"OS / Arch\": \"系統 / 架構\",\n                    \"unknown/unknown\": \"未知/未知\",\n            \"Learn more about packages\": \"瞭解更多關於軟體包的信息\",\n            \"Learn more about npm packages\": \"瞭解更多關於 npm 軟體包的信息\",\n            \"Install from the command line\": \"從命令行安裝\",\n            \"Install from the command line:\": \"從命令行安裝：\",\n            \"Install via package.json:\": \"通過 package.json 安裝：\",\n            \"Use as base image in Dockerfile:\": \"在 Dockerfile 中用作基礎鏡像：\",\n            \"Recent tagged image versions\": \"最近被標記的映像版本\",\n            \"latest\": \"最新\",\n            \"Latest\": \"最新\",\n            // [/Published (.*) · Digest/, \"發佈於 $1 · 摘要\"],\n            \"View all tagged versions\": \"查看所有被標記的版本\",\n\n            \"Details\": \"詳細信息\",\n                \"stars\": \"星標\",\n            \"Readme\": \"自述文件\",\n            \"Last published\": \"最新發布\",\n            \"Total downloads\": \"總下載量\",\n            \"Start a discussion\": \"開始討論\",\n            \"Contributors\": \"貢獻者\",\n            \"Open an issue\": \"打開一個議題\",\n            \"Package settings\": \"軟體包設置\",\n\n            \"Recent Versions\": \"最近版本\",\n            \"View and manage all versions\": \"查看和管理所有版本\",\n\n            \"Add a Readme to the linked repository\": \"添加一個 README 自述文件到鏈接的倉庫\",\n            \"The linked repository's Readme will be shown here.\": \"鏈接倉庫中的 README 自述文件將在此處顯示。\",\n\n        // 全部版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/versions\n            \"All versions\": \"所有版本\",\n            // [/Published (*)/, \"發佈於 $1\"],\n            // [/(\\d+) tagged/, \"$1 個標記\"],\n            // [/(\\d+) untagged/, \"$1 個未標記\"],\n\n        // 某個版本 /<user-name>/<repo-name>/pkgs/container/<pag name>/<version id>\n            \"About this version\": \"關於這個版本\",\n            \"Manifest\": \"清單\",\n            \"No description provided\": \"未提供說明\",\n            \"This package version was published\": \"此版本軟體包發佈於\",\n\n            \"To provide a description, add the following line to your Dockerfile:\": \"要提供描述，請將以下行添加到您的 Dockerfile 中：\",\n            \"For multi-arch images, set a value for the\": \"對於多架構鏡像，請設置\",\n            \"key in the\": \"值在\",\n            \"field of the manifest:\": \"字段：\",\n            \"Learn more about labelling container images\": \"瞭解更多關於標記容器鏡像的信息\",\n\n            \"Download activity\": \"下載活動\",\n                \"Download activity of this version\": \"此版本的下載活動\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last week\": \"最近一週\",\n            \"Today\": \"今天\",\n\n            \"Other tags on this version\": \"此版本的其他標籤\",\n            \"View all versions\": \"查看全部版本\",\n\n        // 版本刪除對話框\n            \"Are you absolutely sure?\": \"您真的確定嗎？\",\n            \"This cannot be undone. This will permanently delete the version\": \"這個操作不能撤銷，這將永久刪除版本\",\n            \"so users and processes won’t be able to download this version.\": \"，用戶和程式將無法再下載該版本。\",\n            \"Please type\": \"請輸入\",\n            \"to confirm:\": \"進行確認：\",\n            \"I understand the consequences, delete this version\": \"我明白後果，依然刪除此版本\"\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository/packages\"][\"regexp\"],\n\n        //[/Published (.*) · Digest/, \"發佈於 $1 · 摘要\"],\n        [/Published (.*) · Digest/, (match, p1) => { // p1為(.+)\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `發佈於 ${translatedDate} · 摘要`;\n        }],\n        [/Published (.*)/, \"發佈於 $1\"],\n        [/(\\d+) tagged/, \"$1 個標記\"],\n        [/(\\d+) untagged/, \"$1 個未標記\"],\n        [/(\\d+) dependencies/, \"$1 個依賴包\"],\n        [/(\\d+) active/, \"$1 個可用\"],\n        [/(\\d+) deleted/, \"$1 個已刪除\"],\n        [/(\\d+) contributors?/, \"$1 位貢獻者\"],\n    ],\n};\nI18N[\"zh-TW\"][\"packages\"] = { // 軟體包 - 未鏈接倉庫的軟體包\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository/pkgs\"][\"static\"],\n\n        \"Link this package to a repository\": \"將此軟體包鏈接到倉庫\",\n        \"By linking to a repository, you can automatically add a Readme, link discussions, and show contributors on this page.\": \"通過鏈接到倉庫，您可以自動添加 README 自述文件、鏈接討論、在此頁面上顯示貢獻者。\",\n        \"Connect Repository\": \"關聯倉庫\",\n\n        // 關聯倉庫對話框\n        \"Select a repository to link to this package.\": \"選擇一個倉庫以鏈接到此軟體包。\"\n    },\n    \"regexp\": [  // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository/pkgs\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/security\"] = { // 倉庫 - 安全頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 安全標籤卡 & 安全概述 /<user-name>/<repo-name>/security\n\n            // 公共部分\n            \"Reporting\": \"報告\",\n                \"Policy\": \"政策\",\n                \"Advisories\": \"諮詢\",\n            \"Vulnerability alerts\": \"漏洞警報\",\n                \"Code scanning\": \"程式碼掃描\",\n                \"Secret scanning\": \"機密掃描\",\n\n            \"Disabled\": \"禁用\",\n            \"Enabled\": \"啟用\",\n            \"Needs setup\": \"需要設置\",\n\n            \"Security overview\": \"安全概述\",\n            \"Report a vulnerability\": \"報告漏洞\",\n            \"Fork this repository and edit the file\": \"複刻此倉庫並編輯文件\",\n            \"Security policy •\": \"安全政策 •\",\n                \"Define how users should report security vulnerabilities for this repository\": \"定義用戶應如何報告此倉庫的安全漏洞\",\n\n                \"Suggest how users should report security vulnerabilities for this repository\": \"建議用戶應如何報告此倉庫的安全漏洞\",\n                \"Suggest a security policy\": \"安全政策建議\",\n\n                \"View how to securely report security vulnerabilities for this repository\": \"查看如何安全地報告此倉庫的安全漏洞\",\n                \"View security policy\": \"查看安全策略\",\n\n            \"Security advisories •\": \"安全公告 •\",\n                \"View or disclose security advisories for this repository\": \"查看或公開此倉庫的安全公告\",\n                \"View security advisories\": \"查看安全公告\",\n                \"View security advisories for this repository\": \"查看此倉庫的安全公告\",\n\n            \"Private vulnerability reporting •\": \"私下漏洞報告 •\",\n                \"Allow users to privately report potential security vulnerabilities\": \"允許用戶私下報告潛在的安全漏洞\",\n                \"Enable vulnerability reporting\": \"啟用漏洞報告\",\n                \"See reported vulnerabilities\": \"查看報告的漏洞\",\n\n            \"Dependabot alerts •\": \"Dependabot 警報 •\",\n                \"— Active\": \"— 激活\",\n                \"Get notified when one of your dependencies has a vulnerability\": \"當您的一個依賴項存在漏洞時得到通知\",\n                \"Enable Dependabot alerts\": \"啟用 Dependabot 警報\",\n                \"View Dependabot alerts\": \"查看 Dependabot 警報\",\n                \"You don't have permissito enable this feature\":\"您沒有啟用此功能的權限。\",\n\n            \"Code scanning alerts •\": \"程式碼掃描警報 •\",\n                \"Automatically detect common vulnerability and coding errors\": \"自動檢測常見漏洞和編碼錯誤\",\n                \"Set up code scanning\": \"設置程式碼掃描\",\n                \"View alerts\": \"查看警報\",\n                // 私有庫\n                \"Advanced Security is only available for Organizations\": \"高級安全只適用於組織\",\n                \"Find out more\": \"瞭解更多\",\n                \"Code scanning for private repositories is part of GitHub Advanced Security\": \"私有倉庫的程式碼掃描是 GitHub 高級安全的一部分\", //組織倉庫\n                \"Contact sales\": \"聯繫銷售\", //組織倉庫\n\n            \"Secret scanning alerts •\": \"機密掃描警報 •\",\n                \"Get notified when a secret is pushed to this repository\": \"當機密被推送到倉庫時得到通知\",\n                \"Enable in settings\": \"在設置中啟用\",\n                \"View detected secrets\": \"查看檢測到的機密\",\n\n            // \"Vulnerability details\": \"漏洞詳情\",\n            \"High severity\": \"高風險\",\n            \"Moderate severity\": \"中風險\",\n            \"Low severity\": \"低風險\",\n            // \"Create dependabot security update\": \"創建可靠的安全更新\",\n\n            \"Suggest a policy\": \"建議政策\",\n\n            \"Code scanning configuratierror\": \"程式碼掃描配置錯誤\",\n                \"CodeQL is reporting errors. Check the\": \"CodeQL 出錯。檢查\",\n                \"status page\": \"狀態頁\",\n                \"for help.\": \"以尋求幫助\",\n\n            \"Checking code scanning status...\": \"正在檢查程式碼掃描狀態\",\n\n        // 安全政策 /<user-name>/<repo-name>/security/policy\n            \"Set up a security policy\": \"制定安全政策\",\n            \"Help your community understand how to securely report security vulnerabilities for your project.\": \"幫助您的社區瞭解如何安全地報告專案的安全漏洞。\",\n            \"Start setup\": \"開始設置\",\n\n            \"No security policy detected\": \"未檢測到安全策略\",\n            \"This project has not set up a\": \"該專案尚未設置\",\n            \"file yet.\": \"文件。\",\n\n        // 安全公告 /<user-name>/<repo-name>/security/advisories\n            \"Security Advisories\": \"安全公告\",\n            \"Privately discuss, fix, and publish information about security vulnerabilities in your repository's code.\": \"私人討論，修復和發佈倉庫程式碼中的安全漏洞的信息。\",\n            \"New draft security advisory\": \"新的安全建議草案\",\n\n            // [/(\\d+) Draft/, \"$1 項草案\"],\n            // [/(\\d+) Published/, \"$1 項已發佈\"],\n            // [/(\\d+) Closed/, \"$1 項已關閉\"],\n\n            \"There aren’t any triage security advisories\": \"沒有任何安全建議通知\",\n            \"There aren’t any draft security advisories\": \"沒有任何安全建議草案\",\n            \"There aren’t any published security advisories\": \"沒有任何已發佈的安全公告\",\n            \"There aren’t any closed security advisories\": \"沒有任何已關閉的安全公告\",\n\n            // 他人庫\n            \"View information about security vulnerabilities from this repository's maintainers.\": \"查看倉庫維護者提供的安全漏洞信息。\",\n\n        // Dependabot 警報 /<user-name>/<repo-name>/security/dependabot\n            \"Dependabot alerts\": \"Dependabot 警報\",\n            \"Dependency files checked\": \"檢查依賴文件\",\n\n            \"Ignore the false alarms\": \"忽略誤報\",\n            \"To help you focus on the alerts that matter, Dependabot now proactively dismisses low impact alerts. These alerts may only have limited effects (e.g. long-running builds or tests) or are unlikely to be exploitable.\": \"為了幫助您專注於重要的警報，Dependabot 現在會主動消除低影響警報。這些警報可能只會產生有限的影響（例如長時間運行的構建或測試）或不太可能被利用。\",\n            \"Opt out\": \"設置\",\n            \"learn more about auto-dismissing alerts.\": \"瞭解更多關於自動撤消警報的信息。\",\n\n            \"Auto-triage your alerts\": \"自動分類您的警報\",\n                \"Control how Dependabot opens pull requests, ignores false positives and snoozes alerts. Rules can be enforced at the organization level. Free for open source and available for private repos through\": \"控制 Dependabot 如何打開拉取請求、忽略誤報和推遲警報。規則可以在組織層面強制執行。免費供開源專案使用，私有倉庫需要通過\",\n                \"GitHub Advanced Security.\": \"GitHub 高級安全性。\",\n                \"Learn more about auto-triage\": \"瞭解更多關於自動分類的信息\",\n\n            \"opened\": \"打開於\",\n\n            \"Dependabot alerts are disabled.\": \"Dependabot 警報已禁用。\",\n            \"To receive Dependabot alerts, you must first enable Dependabot alerts in\": \"要接收 Dependabot 警報，必須首先啟用 Dependabot 警報\",\n            \"this repository’s settings\": \"在倉庫的設置中\",\n\n            \"Welcome to Dependabot alerts!\": \"歡迎使用 Dependabot 警報！\",\n            \"Dependabot alerts track security vulnerabilities that apply to your repository's dependencies. As alerts are created, they’ll appear here.\": \"Dependabot 警報跟蹤適用於倉庫依賴項的安全漏洞。一旦創建警報後，它們將顯示在此處。\",\n\n            \"Configure\": \"設置\",\n                \"Manage repository vulnerability settings\": \"管理倉庫漏洞設置\",\n                \"Manage Dependabot rules\": \"管理 Dependabot 規則\",\n                \"Manage account notification settings\": \"管理賬戶通知設置\",\n                \"Refresh Dependabot alerts\": \"刷新 Dependabot 警報\",\n                    \"Reprocess your project's current dependency files.\": \"重新處理專案當前的依賴項文件。\",\n                    // 頂部提醒\n                        \"Refresh queued, it may take several minutes to see changes reflected in your alerts.\": \"刷新隊列後，可能需要幾分鐘才能看到警報中反映的更改。\",\n                        \"Refreshed recently, available again in about 1 hour.\": \"最近刷新，約 1 小時後可再次使用。\",\n\n            \"Search all Dependabot alerts\": \"搜索所有 Dependabot 警報\",\n                \"- submit\": \"- 提交\",\n                \"Narrow your search\": \"縮小搜索範圍\",\n                    \"fix-started, no-bandwidth, tolerable-risk, inaccurate, not-used, fixed, auto-dismissed\": \"修復啟動、無帶寬、可容忍風險、不準確、未使用、已修復、自動忽略\",\n                    \"critical, high, moderate, low\": \"嚴重、高、中、低\",\n                    \"package-name\": \"軟體包名稱\",\n                    \"ecosystem-name\": \"生態系統名稱\",\n                    \"most-important, newest, oldest, severity, manifest-path, package-name, epss-percentage\": \"最重要、最新、最舊、嚴重性、清單路徑、軟體包名稱、EPSS-百分比\",\n                    \"open, closed\": \"打開、關閉\",\n                    \"patch\": \"補丁\",\n                    \"runtime, development\": \"運行時、開發\",\n                    \"direct\": \"直接\",\n                    \"team-name\": \"團隊名稱\",\n                    \"topic-name\": \"主題名稱\",\n                    \"CVE exploitation likelihood. `n`, `>n`, `<n`, `>=n`, `<=n`, or range `n..n`, where `n` is a number from 0.0 to 1.0\": \"CVE 被利用的可能性。`n`, `>n`, `<n`, `>=n`, `<=n` 或範圍 `n...n`，其中 `n` 為 0.0 至 1.0 之間的數字\",\n                    \"manifest-name\": \"清單名稱\",\n\n            // 篩選條\n                \"Closed as\": \"關閉\",\n                    \"Filter by resolution\": \"按決議篩選\",\n                    \"Clear resolution\": \"清除決議篩選\",\n                        \"A fix has already been started\": \"修復已經開始\",\n                        \"No bandwidth to fix this\": \"沒有帶寬來修復\",\n                        \"Risk is tolerable to this project\": \"風險可承受\",\n                        \"This alert is inaccurate or incorrect\": \"此警報不準確或不正確\",\n                        \"Vulnerable code is not actually used\": \"漏洞程式碼實際未使用\",\n                        \"Dismissal comment\": \"忽略評論\",\n                        \"Dismiss Alerts\": \"忽略警報\",\n                        \"Fixed\": \"已修復\",\n                        \"fixed\": \"已修復\",\n                        \"Auto-dismissed\": \"自動忽略\",\n            \"Package\": \"軟體包\",\n                \"Filter by packages\": \"按軟體包篩選\",\n                \"Clear package filter\": \"清除軟體包篩選器\",\n                \"No results found\": \"未找到結果\",\n            \"Ecosystem\": \"生態系統\",\n                \"Filter by ecosystem\": \"按生態系統篩選\",\n                \"Clear ecosystem filter\": \"清除生態系統篩選器\",\n            \"Manifest\": \"清單\",\n                \"Filter by manifest\": \"按清單篩選\",\n                \"Clear manifest filter\": \"清除清單篩選器\",\n            \"Severity\": \"嚴重等級\",\n                \"Filter by severity\": \"按嚴重性篩選\",\n            \"Sort\": \"排序\",\n                \"Most important\": \"最重要的\",\n                \"Newest\": \"最新的\",\n                \"Oldest\": \"最早的\",\n                \"Manifest path\": \"表現路徑\",\n                \"Package name\": \"包名稱\",\n\n            \"selected\": \"條被選中\",\n            \"Dismiss alerts\": \"忽略警報\",\n                \"Select a reason to dismiss\": \"選擇忽略理由\",\n\n            \"opened\": \"打開於\",\n\n            \"No results matched your search.\": \"沒有與您的搜索匹配的結果。\",\n            \"Clear current search filters.\": \"清除當前搜索篩選器。\",\n\n            \"ProTip!\": \"專業提示！\",\n                \"See auto-dismissed alerts with\": \"要查看自動解除的警報，請使用\",\n                \"to see alerts without an available fix.\": \"來查看沒有可用修復程式的警報。\",\n                \"Find alerts on your dev dependencies using\": \"使用以下命令查找開發依賴項的警報：\",\n                \"to see alerts with calls to vulnerable functions.\": \"查看調用易受攻擊函數的警報。\",\n\n         // 具體某條 Dependabot 警報 /security/dependabot/<id>\n            \"Dismiss alert\": \"忽略警報\",\n\n            \"Opened\": \"打開\",\n            // [/Upgrade ([^ ]+) to fix/, \"升級 $1 去修復\"], // 某個 Dependabot 警報\n            // [/Upgrade ([^ ]+) to version/, \"升級 $1 到版本\"], // 某個 Dependabot 警報\n            \"Create Dependabot security update\": \"創建 Dependabot 安全更新\",\n\n            // [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 無法將 $1 更新為無漏洞的版本\"],\n            \"The latest possible version that can be installed is\": \"最新可以安裝版本是\",\n            \"because of the following conflicting dependency:\": \"，但是存在以下衝突的依賴項：\",\n            \"because of the following conflicting dependencies:\": \"，但是存在以下衝突的依賴項：\",\n            \"The earliest fixed version is\": \"最早修復版本為\",\n            \"Try again\": \"再試一次\",\n            \"View logs\": \"查看日誌\",\n            \"about troubleshooting Dependabot errors\": \"關於排除 Dependabot 錯誤的信息\",\n\n            \"Transitive dependency\": \"通過\",\n            \"is introduced via\": \"傳遞依賴性\",\n\n            \"Patched version\": \"補丁版本\",\n\n            \"Impact\": \"影響\",\n            \"Patches\": \"補丁\",\n            \"Workarounds\": \"解決方法\",\n            \"Workarounds / Mitigations\": \"解決方法/緩解措施\",\n            \"References\": \"參考信息\",\n            \"For more information\": \"更多信息\",\n\n            // [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"將 $1 從 $2 升級到 $3\"],\n            \"Merging this pull request would fix\": \"合併此拉取請求將修復\",\n            \"Review security update\": \"審查安全更新\",\n\n            \"opened this\": \"打開了這個\",\n\n            // 右側欄\n                \"This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).\": \"該分數以通用漏洞評分系統 (CVSS) 為基礎，從 0 到 10 計算總體漏洞嚴重性。\",\n                \"CVSS v4 base metrics\": \"CVSS v4 基本指標\",\n                    \"Exploitability Metrics\": \"可利用性指標\",\n                        \"Attack Vector\": \"攻擊載體\",\n                            \"Network\": \"網絡\",\n                            \"Local\": \"本地\",\n                        \"Attack Complexity\": \"攻擊複雜性\",\n                        \"Attack Requirements\": \"攻擊要求\",\n                        \"Privileges Required\": \"所需權限\",\n                            \"None\": \"無\",\n                        \"User interaction\": \"用戶交互\",\n                            \"Required\": \"必須\",\n                    \"Vulnerable System Impact Metrics\": \"脆弱系統影響指標\",\n                        \"Confidentiality\": \"保密性\",\n                        \"Integrity\": \"完整性\",\n                        \"Availability\": \"可利用性\",\n                    \"Subsequent System Impact Metrics\": \"後續系統影響指標\",\n                    \"Learn more about base metrics\": \"瞭解更多關於基礎指標的信息\",\n\n                    // CVSS v4 基本指標 對話框 // BUG: 詳細解釋文本翻譯不生效\n                    // 可利用性指標\n                        \"Attack Vector:\": \"攻擊載體：\",\n                            \"This metric reflects the context by which vulnerability exploitation is possible. This metric value (and consequently the resulting severity) will be larger the more remote (logically, and physically) an attacker can be in order to exploit the vulnerable system. The assumption is that the number of potential attackers for a vulnerability that could be exploited from across a network is larger than the number of potential attackers that could exploit a vulnerability requiring physical access to a device, and therefore warrants a greater severity.\": \"該指標反映漏洞被利用的可能性的上下文。攻擊者距離越遠（邏輯上和物理上），該指標值（以及由此得出的嚴重性）就越高。假設可以從網絡上利用的漏洞比需要物理訪問設備的漏洞擁有更多的潛在攻擊者，因此嚴重性更高。\",\n                        \"Attack Complexity:\": \"攻擊複雜性：\",\n                            \"This metric captures measurable actions that must be taken by the attacker to actively evade or circumvent existing built-in security-enhancing conditions in order to obtain a working exploit. These are conditions whose primary purpose is to increase security and/or increase exploit engineering complexity. A vulnerability exploitable without a target-specific variable has a lower complexity than a vulnerability that would require non-trivial customization. This metric is meant to capture security mechanisms utilized by the vulnerable system.\": \"該指標衡量攻擊者為繞過或規避現有內置安全機制而必須採取的可量化操作。這些機制的主要目的是提升安全性或增加利用難度。不需要目標特定變量的漏洞比需要非平凡定製的漏洞複雜性更低。\",\n                        \"Attack Requirements:\": \"攻擊要求：\",\n                            \"This metric captures the prerequisite deployment and executiconditions or variables of the vulnerable system that enable the attack. These differ from security-enhancing techniques/technologies (ref Attack Complexity) as the primary purpose of these conditions is not to explicitly mitigate attacks, but rather, emerge naturally as a consequence of the deployment and execution of the vulnerable system.\": \"該指標衡量使攻擊成為可能的先決部署和執行條件或變量。這些條件與安全增強技術不同（參見攻擊複雜性），它們並非專門用於緩解攻擊，而是脆弱系統部署和運行的自然結果。\",\n                        \"Privileges Required:\": \"所需權限：\",\n                            \"This metric describes the level of privileges an attacker must possess prior to successfully exploiting the vulnerability. The method by which the attacker obtains privileged credentials prior to the attack (e.g., free trial accounts), is outside the scope of this metric. Generally, self-service provisioned accounts do not constitute a privilege requirement if the attacker can grant themselves privileges as part of the attack.\": \"該指標描述攻擊者在成功利用漏洞前必須擁有的權限級別。攻擊者在攻擊前獲取特權憑據的方式（如免費試用賬戶）不在本指標範圍內。\",\n                        \"User interaction:\": \"用戶交互：\",\n                            \"This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable system. This metric determines whether the vulnerability can be exploited solely at the will of the attacker, or whether a separate user (or user-initiated process) must participate in some manner.\": \"該指標衡量除攻擊者外是否需要其他人類用戶參與才能成功攻破脆弱系統。\",\n                    // 脆弱系統影響指標\n                        \"Confidentiality:\": \"機密性：\",\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the VULNERABLE SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"該指標衡量成功利用漏洞後對脆弱系統所管理信息的機密性影響。\",\n                        \"Integrity:\": \"完整性：\",\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the VULNERABLE SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"該指標衡量成功利用漏洞後對信息的可信度和準確性的影響。\",\n                        \"Availability:\": \"可用性：\",\n                            \"This metric measures the impact to the availability of the VULNERABLE SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"該指標衡量成功利用漏洞後對脆弱系統本身可用性的影響（如網絡服務被打掛）。\",\n                    // 後續系統影響指標\n                        // 機密性\n                            \"This metric measures the impact to the confidentiality of the informatimanaged by the SUBSEQUENT SYSTEM due to a successfully exploited vulnerability. Confidentiality refers to limiting information access and disclosure to only authorized users, as well as preventing access by, or disclosure to, unauthorized ones.\": \"該指標衡量成功利用漏洞後對後續系統所管理信息的機密性影響。\",\n                        // 完整性\n                            \"This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. Integrity of the SUBSEQUENT SYSTEM is impacted when an attacker makes unauthorized modificatiof system data. Integrity is also impacted when a system user can repudiate critical actions taken in the context of the system (e.g. due to insufficient logging).\": \"該指標衡量成功利用漏洞後對後續系統數據完整性的影響。\",\n                        // 可用性\n                            \"This metric measures the impact to the availability of the SUBSEQUENT SYSTEM resulting from a successfully exploited vulnerability. While the Confidentiality and Integrity impact metrics apply to the loss of confidentiality or integrity of data (e.g., information, files) used by the system, this metric refers to the loss of availability of the impacted system itself, such as a networked service (e.g., web, database, email). Since availability refers to the accessibility of information resources, attacks that consume network bandwidth, processor cycles, or disk space all impact the availability of a system.\": \"該指標衡量成功利用漏洞後對後續系統本身可用性的影響。\",\n\n                \"EPSS score\": \"EPSS 得分\",\n                \"Weaknesses\": \"缺陷\",\n                \"Related alerts\": \"相關警報\",\n                \"See advisory in GitHub Advisory Database\": \"請參閱 GitHub 諮詢數據庫中的諮詢\",\n                \"See all of your affected repositories\": \"查看您所有受影響的倉庫\",\n                \"See something to contribute?\": \"看到有什麼可貢獻的嗎？\",\n                \"Suggest improvements for this advisory on the GitHub Advisory Database.\": \"在 GitHub 諮詢數據庫上建議改進此諮詢。\",\n\n            // 生成安全更新\n                // 頂部提醒\n                    // [/Started generating a security update for ([^ ]+)./, \"開始為 $1 生成安全更新。\"],\n                // [/Creating a security update for ([^ ]+)/, \"為 $1 創建安全更新\"],\n                \"Dependabot is creating a security update to fix\": \"Dependabot 正在創建一個安全更新來修復\",\n                // [/(\\d+) Dependabot alerts?/, \"$1 個 Dependabot 警報\"],\n                // [/on ([^ ]+) in/, \"關於 $1 在\"],\n                // [/Or, manually upgrade ([^ ]+) to version/, \"或者，手動將 $1 升級到版本\"],\n                \"or later. For example:\": \"或更高。例如：\",\n\n         // 具體某條Dependabot 警報 日誌 /security/dependabot/<id>/update-logs/<id2>\n            \"Update logs\": \"更新日誌\",\n\n        // 程式碼掃描器 /<user-name>/<repo-name>/security/code-scanning\n            \"Automatically detect vulnerabilities in your code.\": \"自動檢測您程式碼中的漏洞。\",\n            \"Configure tools that integrate with Code Scanning to keep the quality of your code under control. Learn more about\": \"配置與程式碼掃描集成的工具，以控制程式碼質量。瞭解更多關於\",\n            \"Code Scanning\": \"程式碼掃描\",\n\n            \"Configure scanning tool\": \"配置掃描工具\",\n\n            \"All tools are working as expected\": \"所有工具均按預期運行\",\n            \"Tools\": \"工具\",\n            \"Add tool\": \"添加工具\",\n\n            // 搜索條\n                \"Available filters\": \"可用篩選器\",\n                    \"filter by open/closed state\": \"按打開/關閉狀態篩選\",\n                    \"filter by tool\": \"按工具篩選\",\n                    \"filter by branch name\": \"按分支名稱篩選\",\n                    \"filter by pr number\": \"按 PR 號篩選\",\n                    \"filter by ref (e.g. branches/tags)\": \"按引用篩選（例如 分支/標籤）\",\n                    \"filter by rule\": \"按規則篩選\",\n                    \"filter by rule tag\": \"按規則標籤篩選\",\n                    \"filter by severity\": \"按嚴重程度篩選\",\n                    \"sort by\": \"排序方式\",\n                    \"only show alerts in application code\": \"僅在應用程式程式碼中顯示警報\",\n                    \"filter by closure reason\": \"按關閉原因篩選\",\n                    \"filter by file path (e.g. lib/crypto or *_test.js)\": \"按文件路徑篩選（例如 lib/crypto or *_test.js）\",\n                    \"filter by language\": \"按語言篩選\",\n                    \"filter by assignee\": \"按受理人過濾\",\n                    \"filter by presence of a property\": \"按屬性的存在進行過濾\",\n                    \"filter by absence of a property\": \"按不存在屬性進行過濾\",\n                \"Filter alerts\": \"篩選警報\",\n\n            \"Language\": \"語言\",\n                \"Filter by language\": \"篩選語言\",\n            \"Tool\": \"工具\",\n                \"Filter by tool\": \"篩選工具\",\n            // 分支\n                \"Filter by branch\": \"篩選分支\",\n            \"Rule\": \"規則\",\n                \"Filter by rule\": \"篩選規則\",\n                \"Filter rules\": \"篩選規則\",\n            // 嚴重等級\n                \"Medium\": \"中風險\",\n                \"Error\": \"錯誤\",\n                \"Warning\": \"警告\",\n                \"Note\": \"注意\",\n\n            \"Looking good!\": \"看起來不錯！\",\n                \"No new code scanning alerts.\": \"沒有新的程式碼掃描警報。\",\n            \"No code scanning alerts here!\": \"尚無程式碼掃描警報！\",\n                \"Keep up the good work!\": \"繼續努力！\",\n            \"No code scanning alerts found.\": \"尚無程式碼掃描警報。\",\n                \"We'll keep watching out for new ones.\": \"我們會繼續關注新的消息。\",\n\n            \"Detected by\": \"檢測者\",\n            \"in\": \"在\",\n\n            \"CodeQL is reporting errors.\": \"CodeQL 出錯。\",\n            \"Check the\": \"檢查\",\n\n            // 專業提示\n                \"You can run CodeQL locally from the command line.\": \"您可以從命令行在本地運行 CodeQL。\",\n                \"You can run CodeQL locally using Visual Studio Code.\": \"您可以使用 Visual Studio Code 在本地運行 CodeQL。\",\n                \"CodeQL queries are developed by an open-source coaliticalled the\": \"CodeQL 查詢由一個開源聯盟開發：\", // BUG: 翻譯不生效\n                    \"GitHub Security Lab\": \"GitHub 安全實驗室\",\n                \"The libraries and queries that power CodeQL are open-source.\": \"支持 CodeQL 的庫和查詢是開源的。\",\n                \"You can upload code scanning analyses from other third-party tools using GitHub Actions.\": \"您可以使用 GitHub Actions 從其他第三方工具上傳程式碼掃描分析。\",\n                \"You can configure CodeQL to run with additional queries.\": \"您可以配置 CodeQL 以運行其他查詢。\",\n\n        // 具體某條 程式碼掃描 警報/<user-name>/<repo-name>/security/security/code-scanning/<id>\n            \"Code scanning alerts\": \"程式碼掃描警報\",\n            // 狀態詞\n                \"Dismissed\": \"關閉\",\n            \"← Code scanning alerts\": \"← 程式碼掃描警報\",\n            \"Speed up the remediatiof this alert with\": \"加快修復此警報的速度，使用\", // BUG: 翻譯不生效\n                \"Copilot Autofix for CodeQL\": \"CodeQL 的 Copilot 自動修復\",\n            \"Generate fix\": \"創建修復\",\n            \"Affected branches\": \"受影響分支\",\n            \"Rule ID\": \"規則 ID\",\n            \"Query\": \"查詢\",\n            \"View source\": \"查看源程式碼\",\n            \"First detected in commit\": \"首次在提交中檢測到\",\n            \"Assignees\": \"受理人\",\n                \"No one -\": \"無人 -\",\n                \"Assign yourself\": \"分配給自己\",\n                \"Assign up to 10 people to this alert\": \"最多為 10 人分配此警報\",\n                \"Filter assignees\": \"篩選受理人\",\n                // Copilot\n                    \"bot\": \"機器人\",\n                    \"Ensure a fix has been generated.\": \"確保已生成修復程式。\",\n            \"Development\": \"開發\",\n                \"Link a branch, pull request, or\": \"鏈接分支、拉取請求或\",\n                    \"create a new branch\": \"創建新分支\",\n                    \"to start working this alert.\": \"以開始處理此警報。\", // BUG: 翻譯不生效\n                \"Link a branch or pull request\": \"鏈接分支或拉取請求\",\n                \"Search pull requests\": \"搜索拉取請求\",\n                \"Group selected\": \"已選擇組\",\n            // 受影響的分支\n                \"Configurations analyzing\": \"配置分析\",\n                    \"The following configurations have reported this alert.\": \"以下配置已報告此警報。\",\n                    \"Last updated\": \"最後更新\",\n            \"Appeared in branch\": \"出現在分支\",\n            \"Show paths\": \"顯示路徑\",\n                \"Source\": \"源頭\",\n                \"Sink\": \"匯點\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status\n            \"Scanned files\": \"掃描文件\",\n                \"Download language CSV report\": \"下載語言 CSV 報告\",\n            \"Setup types\": \"設置類型\",\n            \"Default setup\": \"默認設置\",\n            \"· Last scan\": \"· 最近一次掃描\",\n            \"Menu\": \"菜單\",\n            \"View setup type\": \"查看設置類型\",\n\n        // /<user-name>/<repo-name>/security/code-scanning/tools/CodeQL/status/configurations/automatic\n            // 設置類型\n                \"This setup is working as expected.\": \"此設置正在按預期工作。\",\n                // 詳細信息\n                    \"Setup type\": \"設置類型\",\n                    \"First scan\": \"首次掃描\",\n                    \"Last scan\": \"最後掃描\",\n                \"Scan events\": \"掃描事件\",\n                    \"Push to\": \"推送到\",\n                    \"Pull request to\": \"拉取請求到\",\n            \"Configurations\": \"配置\",\n                \"last scan\": \"最後掃描\", // BUG: 不生效\n                \"This configuratiis working as expected.\": \"此配置正在按預期工作\", // BUG: 不生效\n                \"Configuratimenu\": \"配置菜單\", // BUG: 不生效\n                    \"Delete configuration\": \"刪除配置\",\n                    \"Download list of rules used\": \"下載所用規則列表\",\n                // 詳細信息\n                    \"Configuration\": \"配置\",\n                    \"Tool version\": \"工具版本\",\n\n        // 機密掃描警報 /<user-name>/<repo-name>/security/secret-scanning\n            // 頂端窗口\n            \"Can you give us some feedback?\": \"您能給我們一些反饋意見嗎？\",\n            \"We want to better understand our users' needs and experiences.\": \"我們希望更好地瞭解用戶的需求和體驗。\",\n            \"Book some time with us\": \"與我們預約時間，\",\n            \"to discuss the GitHub secret scanning experience.\": \"討論 GitHub 機密掃描體驗。\",\n\n            \"Secret scanning alerts\": \"機密掃描警報\",\n            \"Secret scanning disabled\": \"機密掃描已停用\",\n                \"To scan for secrets, you must first enable secret scanning in\": \"要掃描機密，您必須首先啟用機密掃描在\",\n                \"this repository's settings\": \"此倉庫設置\",\n\n            // 關閉\n                \"Revoked\": \"已撤銷\",\n                \"False positive\": \"假陽性\",\n                \"Used in tests\": \"僅測試\",\n                \"Won't fix\": \"不會修復\",\n                \"Ignored by configuration\": \"配置忽略\",\n                \"Clear closure reasons\": \"全部\",\n\n            \"Bypassed\": \"繞行\",\n                \"True\": \"是\",\n            \"Validity\": \"有效性\",\n                \"Active\": \"活躍\",\n                \"Inactive\": \"不活躍\",\n                \"Unknown\": \"未知\",\n            \"Secret type\": \"機密類型\",\n                \"Service Providers\": \"服務提供商\",\n                \"Custom Patterns\": \"自定義模式\",\n                \"Filter by secret type\": \"按機密類型篩選\",\n                \"Filter secret type\": \"篩選機密類型\",\n                \"Nothing to show\": \"暫無\",\n\n            \"Provider\": \"提供者\",\n                \"Filter by provider\": \"按提供者篩選\",\n                \"Filter provider\": \"篩選提供者\",\n\n            // 排序\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Clear current search query, filters, and sorts\": \"清除當前搜索查詢、過濾器和排序\",\n\n            \"No secrets found.\": \"沒有發現任何機密\",\n            \"Try\": \"嘗試\",\n            \"clearing filters\": \"清除過濾器\",\n            \"to view all of this repository's secret alerts.\": \"以查看此倉庫的所有機密警報。\",\n            \"Your repository doesn't have any unresolved secrets.\": \"您的倉庫沒有任何未解決的機密。\",\n\n            // 具體某條信息 https://github.com/<user-name>/<repo-name>/security/secret-scanning/<id>\n                \"detected a\": \"檢測到\",\n                    \"secret\": \"機密\",\n                \"Give us feedback\": \"提交反饋\",\n\n                \"Close as\": \"關閉為\",\n                    \"Select a close reason\": \"選擇關閉原因\",\n                    \"This secret has been revoked\": \"機密被撤銷\",\n                    \"This secret is not in production code\": \"機密不在生產程式碼中\",\n                    \"This alert is not valid\": \"警報無效\",\n                    \"This alert is not relevant\": \"警報無關\",\n\n                \"Reopen alert\": \"重新打開\",\n\n                    \"Close alert\": \"關閉警報\",\n\n                \"Secret detected\": \"檢測到\",\n                \"Possibly active secret\": \"可能活躍\",\n                    \"Copy token\": \"複製令牌\",\n\n                \"Remediation steps\": \"補救措施\",\n                    \"Follow the steps below before you close this alert.\": \"關閉此警報前，請按照以下步驟操作。\",\n                    \"Rotate the secret if it's in use to prevent breaking workflows.\": \"如果正在使用，請輪換機密以防中斷工作流程。\",\n                    \"Revoke this\": \"撤銷\",\n                    \"through\": \"通過\",\n                    \"to prevent unauthorized access.\": \"，以防止未經授權的訪問。\",\n                    //\"Revoke this Google API Key through Google to prevent unauthorized access.\": \"通過 Google 撤銷此 Google API 密鑰，以防止未經授權的訪問。\",\n                    \"Check security logs for potential breaches.\": \"檢查安全日誌，查找潛在漏洞。\",\n                    \"Close the alert as revoked.\": \"關閉已撤銷的警報。\",\n\n                // 檢測到位置\n                    \"Preview unavailable\": \"預覽不可用\",\n                    \"This file is too large to show a preview\": \"文件過大，無法顯示預覽\",\n\n                    // 複製\n                        \"to clipboard\": \"到剪切板\",\n\n                    \"View file\": \"瀏覽文件\",\n                    \"View git blame\": \"瀏覽 Git 追溯\",\n\n                // 狀態詞\n                    \"opened this alert\": \"打開此警報\",\n                    \"reopened this\": \"重新打開\",\n                    \"closed this as\": \"將其關閉為\",\n                    \"closed as\": \"關閉為\",\n                        \"used in tests\": \"僅測試\",\n                        \"won't fix\": \"不會修復\",\n                        \"revoked\": \"忽略\",\n                        \"false positive\": \"假陽性\",\n                    \"closed this as completed in\": \"將其關閉為已完成\",\n\n                \"hidden item\": \"條隱藏專案\",\n                \"s\": \" \",\n                \"Load all...\": \"加載全部…\",\n\n        // 新建安全公告草案 /<user-name>/<repo-name>/security/advisories/new\n            \"Open a draft security advisory\": \"打開一個安全公告草案\",\n            \"After the draft security advisory is open, you can privately discuss it with collaborators and create a temporary private fork where you can collaborate on a fix. If you've already fixed the vulnerability, just fill out the draft security advisory and then publish it.\": \"在安全公告草案打開後，您可以與協作者私下討論，並創建一個臨時的私有複刻，在那裡您們可以協作進行修復。如果您已經修復了該漏洞，只需填寫安全公告草案，然後發佈即可。\",\n\n            \"Advisory Details\": \"公告詳情\",\n            \"Title *\": \"標題 *\",\n            \"CVE identifier\": \"CVE 標識符\",\n                \"Request CVE ID later\": \"稍後請求 CVE ID\",\n                \"I have an existing CVE ID\": \"我有一個現有的 CVE ID\",\n            \"Description *\": \"描述 *\",\n\n            \"Affected products\": \"受影響的產品\",\n            \"Ecosystem *\": \"生態系統 *\",\n                \"Don't see the ecosystem you're looking for? It may not be supported yet.\": \"沒有看到您正在尋找的生態系統？可能還不支持。\",\n                \"Select an ecosystem\": \"選擇一個生態系統\",\n                \"Go\": \"\",\n                \"Other\": \"其他\",\n            \"Affected versions\": \"受影響的版本\",\n            \"Patched versions\": \"補丁版本\",\n            \"Add another affected product\": \"添加另一個受影響的產品\",\n\n            // 嚴重等級\n            \"Pending selection\": \"待選擇\",\n\n            \"Select severity\": \"選擇嚴重程度\",\n                \"Low\": \"低風險\",\n                \"Moderate\": \"中風險\",\n                \"High\": \"高風險\",\n                \"Critical\": \"關鍵風險\",\n                \"Assess severity using CVSS\": \"使用 CVSS 評估嚴重程度\",\n\n            \"Vector string\": \"矢量字符串\",\n\n            \"Calculator\": \"計算器\",\n                \"Learn more about CVSS scoring\": \"瞭解更多關於 CVSS 計分的信息\",\n\n                \"Adjacent\": \"鄰近\",\n                \"Physical\": \"物理\",\n\n            \"Common weakness enumerator (CWE)\": \"常見弱點枚舉器 (CWE)\",\n                \"Search by CWE\": \"按 CWE 搜索\",\n\n            \"Credits\": \"用戶\",\n                \"Add a user by username, full name, or email\": \"通過用戶名、全名或電子郵件添加用戶\",\n\n            \"Create draft security advisory\": \"創建安全公告草案\",\n\n            // 右側欄\n            \"Access and visibility\": \"訪問和可見性\",\n                \"Until it is published, this draft security advisory will only be visible to the maintainers of\": \"在發佈之前，此安全公告草案僅對以下的所有者可見\",\n                \". Other users and teams may be added once the advisory is created.\": \"。 其他用戶和團隊可以在諮詢創建後加入。\",\n            \"Once published, security advisories on public repositories are visible to everyone.\": \"一旦發佈，公共倉庫上的安全公告對所有人都是可見的。\",\n            \"Once reviewed by GitHub, security advisories may be broadcast on the\": \"一旦通過 GitHub 的審查，安全公告就可以出現在\",\n            \"GitHub Advisory Database\": \"GitHub 諮詢數據庫\",\n            \". They may also trigger Dependabot alerts to users that depend on this repository.\": \"。它們還可能向依賴此倉庫的用戶觸發 Dependabot 警報。\",\n\n            \"Security policy\": \"安全政策\",\n            \"Glossary and documentation\": \"詞彙表和文檔\",\n            \"Dependabot language support\": \"Dependabot 語言支持\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/([\\d,]+) Triages?/, \"$1 分類\"],\n        [/([\\d,]+) Draft/, \"$1 草案\"],\n        [/([\\d,]+) Published/, \"$1 發佈\"],\n        [/([\\d,]+) Open/, \"$1 打開\"],\n        [/(#\\d+) opened/, \"$1 打開於\"],\n        [/([\\d,]+) Closed/, \"$1 關閉\"],\n        [/(#\\d+) closed as/, \"$1 關閉為\"],\n        [/(\\d+) selected/, \"$1 條被選中\"],\n        [/Detected in (\\d+) locations?/, \"在 $1 個位置檢測到\"],\n        [/Detected in ([^ ]+)/, \"在 $1 中檢測到\"],\n        [/Upgrade ([^ ]+) to fix/, \"升級 $1 去修復\"], // 某個 Dependabot 警報\n        [/Upgrade ([^ ]+) to version/, \"升級 $1 到版本\"], // 某個 Dependabot 警報\n        [/Dependabot cannot update ([^ ]+) to a non-vulnerable version/, \"Dependabot 無法將 $1 更新為無漏洞的版本\"],\n        [/Bump ([^ ]+) from ([^ ]+) to ([^ ]+)/, \"將 $1 從 $2 升級到 $3\"],\n        [/Started generating a security update for ([^ ]+)./, \"開始為 $1 生成安全更新。\"],\n        [/Creating a security update for ([^ ]+)/, \"為 $1 創建安全更新\"],\n        [/(\\d+) Dependabot alerts?/, \"$1 個 Dependabot 警報\"],\n        [/on ([^ ]+) in/, \"關於 $1 在\"],\n        [/Or, manually upgrade ([^ ]+) to version/, \"或者，手動將 $1 升級到版本\"],\n        [/on (.+)/, \"$1\"],\n        [/(\\d+)\\/(\\d+) files? scanned/, \"$1/$2 文件已掃描\"],\n        //[/Copy ([^/]\\/(?:[^/]+\\/)*[^/]+$) to clipboard/, \"複製 $1 到剪切板\"],\n        [/Prototype Pollution in ([^ ]+)/, \"$1 上游汙染\"],\n        [/First detected (.+)/, (match, p1) => { // 受影響的分支 // BUG: 翻譯不生效\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `初次檢測 ${translatedDate}`;\n        }],\n        [/(\\d+) steps? in (.+)/, \"$1 個步驟在 $2\"],\n        [/Step (\\d+)/, \"步驟 $1\"]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Security Overview/, \"安全概述\"],\n            [/Security Policy/, \"安全政策\"],\n            [/Security Advisories/, \"安全諮詢\"],\n            [/Dependabot alerts?/, \"Dependabot 警報\"],\n            [/Code scanning alerts?/, \"程式碼掃描警報\"],\n            [/Secret scanning/, \"機密掃描\"],\n            [/Code scanning tool status/, \"程式碼掃描工具狀態\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/contribute\"] = { // 倉庫 - 貢獻頁面\n    \"static\": { // 靜態翻譯\n\n        // 貢獻頁面 /<user-name>/<repo-name>/contribute\n            \"Contribute to\": \"貢獻於\",\n            \"Make your first contribution to this repository by tackling one of the issues listed below.\": \"通過解決下面列出的一個議題，為這個倉庫做出您的第一個貢獻。\",\n            \"Each issue displayed here is a \\\"good first issue,\\\" selected for its relative approachability for first-time contributors.\": \"此處顯示的每個議題都是 “好的首發議題”，因其對首次貢獻者來說相對容易。\",\n\n            \"Read the contributing guidelines\": \"閱讀貢獻指南\",\n\n            \"Good first issues\": \"好的首發議題\",\n            \"See all issues\": \"查看所有議題\",\n\n            \"This repo doesn't have any good first issues, yet\": \"該倉庫暫無任何好的首發議題\",\n            \"Once its maintainers label issues and pull requests for new contributors, they will begin to appear here.\": \"一旦它的維護者為新的貢獻者標記了議題和拉取請求，它們就會開始出現在這裡。\",\n            \"All issues in this repository\": \"此倉庫中的所有議題\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/subscription\"] = { // 倉庫 - 通知狀態頁面\n    \"static\": { // 靜態翻譯\n\n        // 倉庫通知狀態管理 /<user-name>/<repo-name>/subscription\n            \"Your\": \"您的\",\n            \"notifications status\": \"通知狀態\",\n            \"A notification is created every time someone discusses something inside of the repository — Pull Requests, Issues, Comments, and Commit discussions. Whether you are watching the repository, not watching it, or ignoring it determines which notifications you receive.\": \"每當有人在倉庫內討論什麼，比如拉取請求、議題、評論和提交討論，都會產生一個通知。無論您是關注倉庫、不關注還是忽略它，都決定了您會收到哪些通知。\",\n            \"Not watching\": \"不關注\",\n                \"You will only receive notifications when you participate or are @mentioned.\": \"只有當您參與或被 @您 時，您才會收到通知。\",\n            \"Releases only\": \"僅發行版\",\n                \"You will only receive notifications for new releases, or when you participate or are @mentioned.\": \"您只會收到新版本的通知，或者當您參與或被 @您 時。\",\n            \"Watching\": \"關注\",\n                \"You will receive all notifications for this repository.\": \"您將收到此倉庫的所有通知。\",\n            \"Ignored\": \"忽略\",\n                \"You will not receive any notifications for this repository.\": \"您將不會收到有關此倉庫的任何通知。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/invitations\"] = { // 倉庫 - 接受邀請頁面\n    \"static\": { // 靜態翻譯\n\n        // 接受邀請 /<user-name>/<repo-name>/invitations\n            \"invited you to collaborate\": \"邀請您進行協作\",\n            \"invited you to collaborate on\": \"邀請您進行協作\",\n            \"Accept invitation\": \"接受邀請\",\n            \"Decline\": \"拒絕\",\n            \"Decline invitation\": \"拒絕\",\n            \"Owners\": \"所有者\",\n            \"Your public profile information\": \"您的公開個人資料信息\",\n            \"Certain activity\": \"某些活動\",\n            \"within this repository\": \"在這個倉庫中\",\n            \"Country of request origin\": \"請求來源國家/地區\",\n            \"Your access level for this repository\": \"您對該倉庫的訪問等級\",\n            \"Your IP address\": \"您的 IP 地址\",\n            \"Is this user sending spam or malicious content?\": \"此用戶是否發送垃圾郵件或惡意內容？\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/of ([^ ]+) will be able to see:/, \"$1 將能夠看到：\"], // 邀請頁\n        [/Block ([^ ]+)/, \"拉黑 $1\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/tasks\"] = {\n    \"static\": {\n        \"You\": \"您\",\n        \"created the session\": \"創建此任務\",\n\n        \"session\": \"任務\",\n        \"premium request\": \"高級請求\",\n\n        \"started a task\": \"開始任務\",\n\n        \"Stop\": \"停止\",\n        \"Setting up environment\": \"設置環境\",\n        \"View repository\": \"查看倉庫\",\n    },\n    \"regexp\": [\n        [/View (\\d+) files?/, \"查看 $1 個文件\"],\n        [/Edit (\\d+) files?/, \"編輯 $1 個文件\"],\n    ],\n};\n\n\n// 洞察 >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n\nI18N[\"zh-TW\"][\"repository-insights-menu\"] = { // 倉庫 -> 洞察 - 公共部分\n    \"static\": { // 靜態翻譯\n        // 公共部分\n            // 左側菜單\n            \"Pulse\": \"統計\",\n            \"Contributors\": \"貢獻者\",\n            \"Community\": \"社區\",\n            \"Community Standards\": \"社區準則\",\n            \"Community standards\": \"社區準則\",\n            \"Traffic\": \"流量\",\n            \"Commits\": \"提交\",\n            \"Code frequency\": \"程式碼頻率\",\n            \"Dependency graph\": \"依賴項關係圖\",\n            // \"Punch card\": \"時刻\",\n            \"Network\": \"網絡\",\n            // \"Members\": \"成員\",\n            \"Forks\": \"複刻\",\n            \"Actions Usage Metrics\": \"操作使用情況\",\n            \"Actions Performance Metrics\": \"操作數據看板\",\n            \"Actions usage metrics\": \"操作使用情況\",\n            \"Actions performance metrics\": \"操作數據看板\",\n\n            \"People\": \"成員\", //組織倉庫\n\n            // 私有庫禁用部分功能的提醒\n            \"Upgrade to GitHub Pro or make this repository public to enable this feature.\": \"升級到 GitHub Pro 或將此倉庫設為公開以啟用此功能。\",\n            // 他人私有庫\n            \"Contact an administrator to upgrade to GitHub Team or make this repository public to enable this feature.\": \"請聯繫管理員升級到 GitHub 團隊或將此設為倉庫公開以啟用此功能。\",\n\n            \"We want to know how these insights are helping you and where they could be improved.\": \"我們想知道這些洞察如何幫助您，以及在哪些方面可以改進。\",\n            \"Give us your feedback\": \"向我們提供反饋意見\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/pulse\"] = { // 倉庫 -> 洞察 - 統計\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 統計 /<user-name>/<repo-name>/pulse\n            \"Period:\": \"週期：\",\n                \"Filter activity\": \"篩選活動\",\n                \"24 hours\": \"24 小時\",\n                \"3 days\": \"3 天\",\n                \"1 week\": \"1 周\",\n                \"1 month\": \"1 個月\",\n            \"Active pull request\": \"活躍的拉取請求\",\n            \"Active pull requests\": \"活躍的拉取請求\",\n            \"Active issue\": \"活躍的議題\",\n            \"Active issues\": \"活躍的議題\",\n            \"Merged pull request\": \"合併的拉取請求\",\n            \"Merged pull requests\": \"合併的拉取請求\",\n            \"Open pull request\": \"打開的拉取請求\",\n            \"Open pull requests\": \"打開的拉取請求\",\n            \"Closed issue\": \"關閉的議題\",\n            \"Closed issues\": \"關閉的議題\",\n            \"New issue\": \"新議題\",\n            \"New issues\": \"新議題\",\n\n            \"Excluding merges,\": \"不包括合併，\",\n            // [/(\\d+) authors?/, \"$1 位作者\"],\n            \"have pushed\": \"推送了\",\n            \"has pushed\": \"推送了\",\n            \"commit\": \"次提交\",\n            \"commits\": \"次提交\",\n            // [/to ([^ ]+), and/, \"到 $1 分支和\"],\n            // [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n            // [/(\\d+) files?/, \"$1 個文件\"],\n            \"have changed and there have been\": \"已經發生了變化，並且有\",\n            \"has changed and there have been\": \"已經發生了變化，並且有\",\n            \"additions\": \"處增加\",\n            \"deletions\": \"處刪除\",\n\n            \"commit authored by\": \"次提交，作者：\",\n            \"commits authored by\": \"次提交，作者：\",\n\n            \"Want to help out?\": \"想幫忙嗎？\",\n            \"Fork this repository\": \"複刻倉庫\",\n            \"Release published by\": \"個發行版已發佈由\",\n            \"Releases published by\": \"個發行版已發佈由\",\n            \"published\": \"發佈\",\n            \"Pull request merged by\": \"個拉取請求已合併由\",\n            \"Pull requests merged by\": \"個拉取請求已合併由\",\n            \"Pull request opened by\": \"個拉取請求打開由\",\n            \"Pull requests opened by\": \"個拉取請求打開由\",\n            \"Issue closed by\": \"個議題已關閉由\",\n            \"Issues closed by\": \"個議題已關閉由\",\n            \"Issue opened by\": \"個議題打開由\",\n            \"Issues opened by\": \"個議題打開由\",\n            \"person\": \"人\",\n            \"people\": \"人\",\n            \"Sometimes conversations happen on old items that aren’t yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有時會針對尚未關閉的舊專案進行討論。以下是所有未解決的討論的議題和拉取請求的列表。\",\n            // [/• (\\d+) new comments/, \"• $1 個新評論\"],\n            \"Unresolved conversation\": \"個未解決的討論\",\n            \"Unresolved conversations\": \"個未解決的討論\",\n\n            \"merged\": \"已合併\",\n            \"opened\": \"打開\",\n            \"closed\": \"已關閉\",\n\n            // 新版（2025/9）\n            \"There hasn't been any commit activity on\": \"沒有任何提交活動於\",\n            \"over the last\": \"在最近\",\n\n            \"Summary\": \"總結\",\n                \"author\": \"位作者\",\n                \"authors\": \"位作者\",\n                \"have\": \" \",\n                \"has\": \" \",\n                \"pushed\": \"推送\",\n                \"to all branches.\": \"到所有分支。\",\n\n                \"On\": \"在\",\n                \"file\": \"文件\",\n                \"changed and there have been\": \"已經發生了變化，並且有\",\n\n            \"Top Committers\": \"提交排行\",\n                \"Chart options\": \"圖表選項\",\n                    \"View as table\": \"以表格形式查看\",\n                        \"Category\": \"作者\", // 此處原文錯誤\n                    \"Download CSV\": \"下載 CSV\",\n                    \"Download PNG\": \"下載 PNG\",\n\n                \"Customization settings\": \"自定義設置\",\n                    \"Column & bar chart settings\": \"柱狀圖設置\",\n                        \"Increase Contrast\": \"增加對比度\",\n                            \"Adds gradients and outlines to increase contrast in charts.\": \"為圖表添加漸變效果和輪廓，以增強對比度\",\n                        \"Show data labels\": \"顯示數據標籤\",\n                            \"Show labels for each data point in column and bar charts.\": \"在柱狀圖中顯示每個數據點的標籤\",\n\n            \"Sometimes conversations happen on old items that aren't yet closed. Here is a list of all the Issues and Pull Requests with unresolved conversations.\": \"有時對尚未關閉的舊專案會有新的討論。以下是所有有未解決討論的議題和拉取請求列表。\",\n                \"commented on\": \"評論於\",\n                \"new comments\": \"新評論\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) authors?/, \"$1 位作者\"],\n        [/to ([^ ]+) and/, \"到 $1 分支和\"],\n        [/to all branches. On ([^ ]+),/, \"到全部分支。在 $1 分支，\"],\n        [/(\\d+) files?/, \"$1 個文件\"],\n        [/(\\d+) commented on/, \"$1 評論於\",],\n        [/• (\\d+) new comments?/, \"• $1 個新評論\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 24 hours./, \"在過去的 24 小時裡，$1 沒有任何提交活動。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last 3 days./, \"在過去的 3 天裡，$1 沒有任何提交活動。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last week./, \"在過去的 1 周裡，$1 沒有任何提交活動。\"],\n        [/There hasn’t been any commit activity on ([^ ]+) in the last month./, \"在過去的 1 月裡，$1 沒有任何提交活動。\"],\n        [/releases? published/, \"發行版已發佈\"],\n        [/pull requests? opened/, \"拉取請求打開\"],\n        [/pull requests? merged/, \"拉取請求合併\"],\n        [/issues? opened/, \"議題打開\"],\n        [/issues? closed/, \"議題關閉\"],\n        [/(\\d+) commits? authored by ([^ ]+)/, \"$2 提交 $1 次\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Pulse/, \"洞察\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/graphs/contributors\"] = { // 倉庫 -> 洞察 - 貢獻者\n    \"static\": { // 靜態翻譯\n\n        // 貢獻者 /<user-name>/<repo-name>/graphs/contributors\n            \"Loading contributions…\": \"載入貢獻者…\",\n            // [/Contributions to (.*), excluding merge commits/, \"貢獻到 $1 分支，不包括合併提交\"],\n            \"Contributions:\": \"貢獻者：\",\n                // 下拉菜單\n                \"Filter contributions\": \"篩選貢獻者\",\n                \"Additions\": \"添加數量\",\n                \"Deletions\": \"刪除數量\",\n                // [/Contributions to (.*), excluding merge commits and bot accounts/, \"貢獻到 $1 分支，不包括合併提交和機器人賬戶\"],\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在為您準備最新數據，請稍後…\",\n\n        // 新版\n            // 標題\n                \"Contributions per week to\": \"每週貢獻到\",\n                \", excluding merge commits\": \" 分支，不包括合併提交\",\n                \", line counts have been omitted because commit count exceeds 10,000.\": \" 分支，由於提交次數超過 10,000 次，因此省略行數。\",\n            // 篩選欄\n                \"Period\": \"時間\",\n                    \"All\": \"全部\",\n                    \"Last month\": \"上月\",\n            // 日期\n                \"Weekly from\": \" 每週從\",\n                \"From\": \"從\",\n            // 提交圖表\n                \"over time\": \"總覽\",\n                \"commit\": \"次提交\",\n                    \"s\": \" \",\n                \"Contributions\": \"貢獻\", // 圖表旁豎寫\n                \"Chart options\": \"圖表選項\",\n                    \"View as table\": \"以表格形式查看\",\n                    \"Download CSV\": \"下載 CSV\",\n                    \"Download PNG\": \"下載 PNG\",\n                    // 表格窗口\n                        \"Commits over time\": \"提交總覽\",\n                        \"DateTime\": \"日期時間\",\n                        \"Week of\": \"周\",\n\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Contributions to (.*), excluding merge commits/, \"貢獻到 $1 分支，不包括合併提交\"],\n        [/Contributions to (.*), excluding merge commits and bot accounts/, \"貢獻到 $1 分支，不包括合併提交和機器人賬戶\"],\n        [/Contributions to (.*), line counts have been omitted because commit count exceeds 10,000./, \"貢獻到 $1 分支，由於提交次數超過 10,000 次，因此省略行數。\"],\n        //[/Contributions per week to (.*), excluding merge commits/, \"每週貢獻到 $1 分支，不包括合併提交\"],\n        [/([\\d,]+) commits?/, \"$1 次提交\"],\n        // 新版\n        [/Last (\\d+) months?/, \"最後 $1 個月\"],\n        [/([^ ]+)'s (Commits|Additions|Deletions)/, function(all, user, cont){\n\n            var contKey = {Commits: '提交', Additions: '添加數量', Deletions: '刪除數量'};\n\n            return user + ' 的' + contKey[cont];\n        }],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1為(.+)\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}當週`; // 無論如何都是星期一\n        }],\n        [/([^ ]+)-([^ ]+) (\\d+)/, (match, p1, p2 ,p3) => { // 出現位置：具體某貢獻者 - 貢獻數柱形圖日期，原文格式為 月-月 年\n            const translatedP1 = I18N[\"zh-TW\"][\"public\"][\"static\"][p1] || p1;\n            const translatedP2 = I18N[\"zh-TW\"][\"public\"][\"static\"][p2] || p2;\n            return `${p3}年 ${translatedP1}-${translatedP2}`; // 此處修改格式為 年 月-月\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Contributors to (.+)/, \"$1 的貢獻者\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/graphs/community\"] = { // 倉庫 -> 洞察 - 社區\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社區 /<user-name>/<repo-name>/graphs/community\n            \"Enable Discussions to unlock Community Insights!\": \"啟用討論，以解鎖社區見解！\",\n            \"Discussions is the central space for your community to share announcements, ask questions, and host conversations.\": \"討論是您的社區共享公告、提出問題和主持對話的中心空間。\",\n            \"Set up discussions\": \"建立討論\",\n\n            \"Community insights\": \"社區見解\",\n            \"Period:\": \"週期：\",\n                \"Filter activity\": \"篩選活動\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 3 months\": \"最近 3 個月\",\n                \"Last year\": \"最近 1 年\",\n\n            \"Contribution activity\": \"貢獻活動\",\n                \"Count of total contribution activity to Discussions, Issues, and PRs\": \"對討論、議題和拉取請求的總貢獻活動計數\",\n                \"discussions\": \"討論\",\n                \"Quantity\": \"數量\",\n                \"Timeline\": \"時間軸\",\n                // [/(\\d+) pull requests created/, \"$1 個拉取請求創建\"],\n            \"We tried our best, but the graph wouldn’t load. Try reloading the page.\": \"我們盡了最大努力，但圖表無法加載。嘗試重新加載頁面。\",\n            \"Discussions page views\": \"討論頁面瀏覽量\",\n                \"Total page views to Discussions segmented by logged in vs anonymous users.\": \"按登錄用戶與匿名用戶劃分的討論的總頁面瀏覽量。\",\n                \"logged in\": \"登錄\",\n                \"anonymous\": \"匿名\",\n\n                \"Not enough data yet.\": \"還沒有足夠的數據。\",\n                \"It usually takes about a week to populate this chart.\": \"填充此圖表通常需要大約一週的時間。\",\n                \"Read more about insights\": \"閱讀更多關於見解的信息\",\n\n            \"Discussions daily contributors\": \"每日討論的貢獻者\",\n                \"Count of unique users who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所選時間段內，作出反應、投票、標記答案、評論或發帖的唯一用戶的數量。\",\n            \"Discussions new contributors\": \"討論的新貢獻者\",\n                \"Count of unique new users to Discussions who have reacted, upvoted, marked an answer, commented, or posted in the selected period.\": \"在所選時間段內，對討論作出反應、投票、標記答案、評論或發帖的唯一新用戶的數量。\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在為您準備最新數據，請稍後…\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) pull requests? created/, \"$1 個拉取請求創建\"],\n        [/(\\d+) issues? created/, \"$1 個議題創建\"],\n        [/(\\d+) discussions? created/, \"$1 個討論創建\"],\n        [/(\\d+) contributors?/, \"$1 貢獻者\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/community\"] = { // 倉庫 -> 洞察 - 社區準則\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 社區準則 /<user-name>/<repo-name>/community\n            \"Here’s how this project compares to\": \"以下是該專案內容，不同於\",\n            \"recommended community standards\": \"推薦的社區標準\",\n            \"Checklist\": \"檢查清單\",\n            \"Add\": \"添加\",\n            \"Propose\": \"提議\",\n\n            \"Description\": \"描述\",\n                \"Add a description to your repository so people understand the goals of your project.\": \"向您的倉庫添加描述，以便人們瞭解您專案的目標。\",\n            \"README\": \"自述文件（README）\",\n                \"Writing a README\": \"編寫自述文件（README）\",\n            \"Code of conduct\": \"行為準則\",\n                \"What is a code of conduct?\": \"什麼是行為準則？\",\n            \"Contributing\": \"貢獻\",\n                \"Writing contributing guidelines\": \"編寫貢獻指南\",\n            \"License\": \"許可證\",\n                \"Choosing a license\": \"選擇許可證\",\n            \"Security policy\": \"安全政策\",\n                \"Set up a security policy\": \"設置安全策略\",\n            \"Issue templates\": \"議題模板\",\n            \"Pull request template\": \"拉取請求模板\",\n            \"Repository admins accept content reports\": \"倉庫管理員接受內容報告\", // 組織倉庫?\n            \"What is\": \"什麼是\",\n            \"the community profile\": \"社區簡介\",\n\n        // 添加許可證 /<user-name>/<repo-name>/community/license/new?branch=main\n            \"Add a license to your project\": \"為您的專案添加許可證\",\n            \"Choose a license to add to your project\": \"選擇要添加到專案的許可證\",\n            \"Select a template on the left to get started.\": \"在左側選擇一個模板開始。\",\n            \"Learn more about\": \"瞭解更多關於\",\n            \"which license best fits your project\": \"哪種許可證最適合您的專案\",\n\n        // 添加許可證 /<user-name>/<repo-name>/community/license/new?branch=<branch name>&template=<template name>\n            // 右側欄\n                \"You’ll have a chance to review before committing a\": \"您將有機會在提交之前進行審查\",\n                \"file to a new branch or the root of your project.\": \"文件到新分支或專案的根目錄。\",\n\n                \"To adopt\": \"採用\",\n                \", enter your details. You’ll have a chance to review before committing a\": \"，輸入您的詳細信息。您將有機會在提交之前進行審查\",\n                \"Year\": \"年份\",\n                    \"The current year\": \"當前年份\",\n                \"Full name\": \"全名\",\n                    \"The full name or username of the repository owner\": \"倉庫所有者的全名或用戶名\",\n                \"Review and submit\": \"審查並提交\",\n\n            // 中間欄 頂部 權限信息\n                \"Permissions\": \"許可事項\",\n                \"Limitations\": \"限制條件\",\n                    \"Commercial use\": \"商業用途\",\n                    \"Modification\": \"修改\",\n                    \"Distribution\": \"分佈\",\n                    \"Patent use\": \"專利使用\",\n                    \"Private use\": \"私人使用\",\n                    \"Trademark use\": \"商標使用\",\n                    \"Liability\": \"責任\",\n                    \"Warranty\": \"擔保\",\n                    \"Disclose source\": \"開源\",\n                    \"Same license\": \"相同的許可證\",\n                \"Conditions\": \"條件\",\n                    \"License and copyright notice\": \"許可和版權聲明\",\n                    \"State changes\": \"狀態變化\",\n                    \"License and copyright notice for source\": \"來源許可和版權聲明\",\n                    \"Network use is distribution\": \"網絡使用即分發\",\n                    \"Same license (library)\": \"相同的許可證（庫）\",\n                    \"Same license (file)\": \"相同的許可證（文件）\",\n\n                \"This is not legal advice.\": \"這並不是法律建議。\",\n                \"Learn more about repository licenses\": \"瞭解更多關於倉庫許可證的信息\",\n\n        // 添加行為準則 /<user-name>/<repo-name>/community/code-of-conduct/new\n            \"Add a code of conduct to your project\": \"為您的專案添加行為準則\",\n            \"Choose a code of conduct to add to your project\": \"選擇要添加到專案中的行為準則\",\n            \"what a code of conduct is\": \"什麼是行為準則\",\n            \"and how to enforce it.\": \"以及如何執行。\",\n            \"Contributor Covenant\": \"貢獻者協議\",\n                \"Recommended for projects of all sizes\": \"建議用於各種規模的專案\",\n                \"Contact method\": \"聯繫方式\",\n            \"Citizen Code Of Conduct\": \"公民行為準則\",\n                \"Suitable for large communities and events\": \"適合大型社區和活動\",\n                \"Link to reporting guidelines\": \"報告指南鏈接\",\n                \"Link to policy\": \"政策鏈接\",\n                \"Note\": \"註釋\",\n                \"Contact info\": \"聯繫信息\",\n                \"Community name\": \"團隊名稱\",\n                \"Governing body\": \"管理機構\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Community Standards\": \"社區準則\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/graphs/traffic\"] = { // 倉庫 -> 洞察 - 流量\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 流量 /<user-name>/<repo-name>/graphs/traffic\n            \"Git clones\": \"Git 克隆\",\n            \"Clones\": \"克隆\",\n            \"Unique cloners\": \"唯一克隆者\",\n            \"clones\": \"次克隆\",\n            \"clone\": \"次克隆\",\n            \"unique cloners\": \"個唯一克隆者\",\n            \"unique cloner\": \"個唯一克隆者\",\n            \"Visitors\": \"訪客\",\n\n            \"Referring sites\": \"引薦網站\",\n            \"Site\": \"站點\",\n            \"Domains\": \"域名\",\n            \"Views\": \"瀏覽\",\n            \"Unique visitors\": \"唯一訪客\",\n            \"Unique Visits\": \"唯一訪問\",\n            \"views\": \"次瀏覽\",\n            \"view\": \"次瀏覽\",\n            \"Visits\": \"訪問\",\n            \"unique visitors\": \"個唯一訪客\",\n            \"unique visitor\": \"個唯一訪客\",\n            \"Popular content\": \"熱門內容\",\n            \"Content\": \"內容\",\n            \"Path\": \"路徑\",\n\n            \"We don’t have enough data to show anything useful.\": \"我們沒有足夠的數據來顯示任何有用的東西。\",\n            \"It usually takes about a week to populate this graph.\": \"通常需要一週左右的時間來填充此圖表。\",\n            \"It looks like traffic to your repository is a little light. Go spread the word and check back later!\": \"看起來您的倉庫的流量有點少呀。去宣傳一下吧，稍後再回來查看！\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在為您準備最新數據，請稍後…\",\n\n        // 新版\n            \"Referring sites and popular content are temporarily unavailable or may not display accurately. We're actively working to resolve the issue.\": \"引用網站和熱門內容暫時無法使用或可能無法準確顯示。我們正在積極解決該問題。\",\n\n            \"Clones in last 14 days\": \"最近 14 天克隆數\",\n            \"Unique cloners in last 14 days\": \"最近 14 天唯一克隆者\",\n                \"Cloners\": \"克隆者\",\n            \"Total views in last 14 days\": \"最近 14 天訪問數\",\n                \"Total views\": \"總訪問數\",\n            \"Unique visitors in last 14 days\": \"最近 14 天唯一訪客\",\n\n            \"Chart options\": \"圖表選項\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下載 CSV\",\n                \"Download PNG\": \"下載 PNG\",\n\n            \"Customization settings\": \"自定義設置\",\n                \"Line chart settings\": \"折線圖設置\",\n                    \"Differentiate by line style\": \"折線樣式區分\",\n                        \"Use unique line styles (dashed, dotted, etc.) to differentiate lines in charts.\": \"使用獨特的線條樣式（如虛線、點線等）在圖表中區分不同的線條。\",\n                    \"Show data labels\": \"顯示數據標籤\",\n                        \"Show labels for each data point in line chart.\": \"在折線圖每個數據點顯示標籤。\",\n\n            // 表格\n            \"Category\": \"日期\", // 實際上為日期\n            \"Total\": \"總計\",\n            \"Unique\": \"唯一\",\n\n            \"We don't have enough data to show anything useful.\": \"我們沒有足夠的數據來顯示任何有用的東西。\",\n            \"It usually takes about a week to populate this table.\": \"通常需要一週左右的時間來填充此圖表。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Clones?/, \"$1 次克隆\"],\n        [/(\\d+) Unique cloners?/, \"$1 位唯一克隆者\"],\n        [/(\\d+) Views?/, \"$1 次訪問\"],\n        [/(\\d+) Unique visitors?/, \"$1 位唯一訪客\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/graphs/commit-activity\"] = { // 倉庫 -> 洞察 - 提交\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 提交 /<user-name>/<repo-name>/graphs/commit-activity\n            \"Sunday\"    : \"週日\",\n            \"Monday\"    : \"週一\",\n            \"Tuesday\"   : \"週二\",\n            \"Wednesday\" : \"週三\",\n            \"Thursday\"  : \"週四\",\n            \"Friday\"    : \"週五\",\n            \"Saturday\"  : \"週六\",\n\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在為您準備最新數據，請稍後…\",\n\n        // 新版\n            \"Commits over the last year of\": \"最近一年內提交到\",\n\n            \"Number of commits per week\": \"每週提交數\",\n            \"Customization settings\": \"自定義設置\",\n                \"Column & bar chart settings\": \"柱狀圖設置\",\n                    \"Increase Contrast\": \"增加對比度\",\n                    \"Adds gradients and outlines to increase contrast in charts.\": \"為圖表添加漸變效果和輪廓，以增強對比度\",\n                    \"Show data labels\": \"顯示數據標籤\",\n                    \"Show labels for each data point in column and bar charts.\": \"在柱狀圖中顯示每個數據點的標籤\",\n\n            \"Chart options\": \"圖表選項\",\n                \"View as table\": \"以表格形式查看\",\n                \"Download CSV\": \"下載 CSV\",\n                \"Download PNG\": \"下載 PNG\",\n\n                \"DateTime\": \"日期\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/commits? the week of (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) (\\d+)/, function(all, month, day){\n            var monthKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\"\n            };\n\n            return '次提交本週，' + monthKey[month] + day + '日';\n        }],\n        [/Week of (.+)/, (match, p1) => { // p1為(.+)\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}當週` ; // 這裡寫翻譯結果\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Commits/, \"提交\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/graphs/code-frequency\"] = { // 倉庫 -> 洞察 - 程式碼頻率\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 程式碼頻率 /<user-name>/<repo-name>/graphs/code-frequency\n            \"Code frequency over the history of\": \"歷史上的程式碼頻率\",\n            \"Additions\": \"添加數量\",\n            \"Deletions\": \"刪除數量\",\n            \"per week\": \"每週\",\n            \"Crunching the latest data, just for you. Hang tight…\": \"正在為您準備最新數據，請稍後…\",\n\n            // 過多\n            \"There are too many commits to generate this graph.\": \"提交次數過多，無法生成圖表。\",\n            \"More information about this data can be found in the\": \"有關這些數據的更多信息，請參閱\",\n            \"activity documentation\": \"活動文檔\",\n\n        // 新版\n        \"Additions and deletions per week\": \"添加數量和刪除數量/每週\",\n        \"Chart options\": \"圖表選項\",\n            \"View as table\": \"以表格形式查看\",\n            \"Download CSV\": \"下載 CSV\",\n            \"Download PNG\": \"下載 PNG\",\n            // 圖表本體\n                \"DateTime\": \"日期時間\",\n                \"Frequency\": \"頻率\",\n                \"Values\": \"值\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Week (?:of|from) (?:Monday,)?(.+)/, (match, p1) => { // p1為(.+)\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `${translatedDate}當週`; // 無論如何都是星期一\n        }],\n        [/(\\d+) (Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)/, function(all, d, m){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n        [/(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec) '(\\d+)/, function(all, m, d){\n            var mKey = {\n                \"Jan\": \"1月\",\n                \"Feb\": \"2月\",\n                \"Mar\": \"3月\",\n                \"Apr\": \"4月\",\n                \"May\": \"5月\",\n                \"Jun\": \"6月\",\n                \"Jul\": \"7月\",\n                \"Aug\": \"8月\",\n                \"Sep\": \"9月\",\n                \"Oct\": \"10月\",\n                \"Nov\": \"11月\",\n                \"Dec\": \"12月\",\n            };\n\n            return mKey[m] + d + \"日\";\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Code frequency/, \"程式碼頻率\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/network/dependencies\"] = { // 倉庫 -> 洞察 - 依賴項關係圖 - 依賴項\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依賴項\",\n        \"Dependents\": \"依賴者\",\n        // 依賴項關係圖 - 依賴項 /network/dependencies\n            \"Tell us how to make the Dependency Graph work better for you with a few quick questions.\": \"請通過幾個簡單的問題告訴我們，如何使 “依賴項關係圖” 更好地為您工作。\",\n\n            \"Dependency graph is disabled\": \"依賴項關係圖未啟用\",\n            \"The owner of this repository has not yet enabled the dependency graph. Once enabled, you can\": \"此倉庫的所有者尚未啟用依賴項關係圖。一旦啟用，您可以\", //個人倉庫\n            \"Dependency graph has not been enabled by an organization owner or a user with admin permissions for this repository. Once enabled, you can\": \"依賴項關係圖還沒有被組織所有者或具有該倉庫管理權限的用戶啟用。一旦啟用，您可以\", // 組織倉庫\n            \"track this repository’s dependencies\": \"追蹤此倉庫的依賴項\",\n            \"Learn more about how we use your data.\":\"深入瞭解我們對您數據的使用方式。\",\n\n            \"Enable the dependency graph\": \"啟用依賴項關係圖\",\n            \"Track this repository’s\": \"追蹤該倉庫的\",\n            \"dependencies and sub-dependencies\": \"依賴項和子依賴項\",\n            \"The\": \" \",\n            \"is not enabled for this repository. Click on \\\"Enable the dependency graph\\\" below to enable it.\": \"暫未啟用。單擊下面的 “啟用依賴項關係圖” 以啟用它。\",\n            \"If you’d like to enable the\": \"如果您想啟用\",\n            \"dependency graph\": \"依賴項關係圖\",\n            \"vulnerability alerting\": \"漏洞警報\",\n            \"click on \\\"Allow access\\\" below to enable it.\": \"點擊下面的 “允許訪問” 來啟用它。\",\n            \"Learn more about how we use your data\": \"瞭解更多關於我們如何使用您的數據的信息\",\n            \"Allow access\": \"允許訪問\",\n\n            \"No dependencies found.\": \"未找到依賴項\",\n            \"To view your dependency graph, your repository must define dependencies in\": \"要查看依賴項關係圖，您的倉庫必須定義依賴項存在\",\n            \"one of the supported manifest file types\": \"一個支持的清單文件\",\n            \", like\": \"，例如\",\n            \", and\": \"，和\",\n\n            \"Export SBOM\": \"導出 SBOM\",\n\n            \"Detect additional dependencies with GitHub Actions\": \"使用 GitHub Actions 檢測額外的依賴項\",\n                // 並非所有依賴項都會自動檢測到，例如 Gradle 這樣的生態系統。GitHub Actions 會通過依賴項提交 API 添加您的依賴項，這樣您就可以收到有關已知漏洞的 Dependabot 警報。\n                \"Not all dependencies are automatically detected for ecosystems like Gradle. GitHub Actions adds your dependencies using the\": \"並非所有依賴項都會自動檢測到，例如 Gradle 這樣的生態系統。GitHub Actions 會通過\",\n                \"dependency submission API\": \"依賴項提交 API\",\n                \"so you can receive Dependabot alerts for known vulnerabilities.\": \"添加您的依賴項，這樣您就可以收到有關已知漏洞的 Dependabot 警報。\",\n            \"View in Marketplace\": \"去市場查看\",\n\n            // \"Dependencies\": \"依賴項\",\n            \"Search all dependencies\": \"搜索所有依賴項\",\n                \"Suggested filters\": \"建議篩選\",\n\n            \"These dependencies are defined in\": \"這些依賴項被定義在\",\n            \"’s manifest files, such as\": \"的清單文件，例如\",\n            \"Dependencies defined in\": \"依賴項被定義在\",\n\n            // 發現已知漏洞\n            \"Dependencies defined in these manifest files have known security vulnerabilities and should be updated:\": \"這些清單文件中定義的依賴項具有已知的安全漏洞，應更新：\",\n            // [/(\\d+) vulnerabilities? found/, \"發現 $1 個漏洞\"],\n            \"Known security vulnerability in\": \"已知的安全漏洞，在\",\n                \"Known vulnerability found\": \"發現已知漏洞\",\n                \"update suggested:\": \"更新建議：\",\n                \"Always verify the validity and compatibility of suggestions with your codebase.\": \"始終驗證建議與程式碼庫的有效性和兼容性。\",\n\n            // [/(\\d+) more dependencies/, \"更多 $1 個依賴項\"],\n            // [/Load (\\d+) more…/, \"加載更多 $1個…\"],\n            \"Ecosystem\": \"生態系統\",\n                \"Filter by ecosystem\": \"按生態系統篩選\",\n\n            \"ProTip!\": \"專業提示！\",\n            \"What’s not been updated\": \"未更新內容\",\n                \"Supported ecosystems will have transitivity labels on their packages.\": \"受支持的生態系統將在其包上有傳遞性標籤。\",\n\n            \"View transitive paths\": \"查看傳遞路徑\",\n            \"You can view transitive paths for packages within supported ecosystems.\": \"您可以在受支持的生態系統中查看包的傳遞路徑。\",\n            \"OK, got it\": \"好的，明白了\",\n            \"Show dependency options\": \"顯示依賴選項\",\n                \"Show paths\": \"顯示路徑\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/View Dependabot alerts?/, \"查看 Dependabot 警報\"],\n        //[/Detected automatically on (.+)/, \"自動檢測於$1\"],\n        [/· Detected automatically on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `· 自動檢測於 ${translatedDate}`;\n        }],\n        [/(\\d+) Total/, \"$1 總計\"],\n        [/(\\d+) vulnerabilities? found/, \"發現 $1 個漏洞\"],\n        [/(\\d+) more dependencies/, \"更多 $1 個依賴項\"],\n        [/(\\d+) moderate · (\\d+) total/, \"$1 中風險 · $2 總計\"],\n        [/(\\d+) high · (\\d+) total/, \"$1 高風險 · $2 總計\"],\n        [/(\\d+) high/, \"$1 高風險\"],\n        [/(\\d+) moderate/, \"$1 中風險\"],\n        [/Load (\\d+) more…/, \"加載更多 $1個…\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Dependencies/, \"依賴項\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/network/dependents\"] = { // 倉庫 -> 洞察 - 依賴項關係圖 - 依賴者\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依賴項\",\n        \"Dependents\": \"依賴者\",\n        // 依賴項關係圖 - 依賴者 /network/dependents\n            \"GitHub does not currently determine the dependents of private repositories\": \"GitHub 目前無法確定私有倉庫的依賴者\",\n\n            \"Export SBOM\": \"導出 SBOM\",\n            // \"Dependents\": \"依賴者\",\n            \"We haven’t found any dependents for this repository yet.\": \"我們尚未找到此倉庫的任何依賴者。\",\n            \"We’ll keep looking!\": \"我們會繼續尋找！\",\n\n            \"Repositories that depend on\": \"依賴的倉庫包括\",\n            \"Package:\": \"軟體包：\",\n\n            \"These counts are approximate and may not exactly match the dependents shown below.\": \"這些計數是近似值，可能與下方顯示的依賴項不完全匹配。\",\n\n            // [/(\\d+) Repositor(y|ies)/, \"$1 倉庫\"],\n            // [/(\\d+) Packages?/, \"$1 軟體包\"],\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) Repositor(y|ies)/, \"$1 倉庫\"],\n        [/(\\d+) Packages?/, \"$1 軟體包\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Dependents/, \"網絡依賴者\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/network/updates\"] = { // 倉庫 -> 洞察 - 依賴項關係圖 - Dependabot\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Dependencies\": \"依賴項\",\n        \"Dependents\": \"依賴者\",\n\n        \"Export SBOM\": \"導出 SBOM\",\n        // 依賴項關係圖 - Dependabot /network/updates\n            \"Enable Dependabot\": \"啟用 Dependabot\",\n            \"Dependabot isn't enabled\": \"未啟用 Dependabot\",\n            \"Dependabot isn't enabled on forks by default\": \"默認情況下，Dependabot 不會在複刻上啟用。\",\n\n            \"Dependabot version updates aren't configured yet\": \"尚未配置 Dependabot 版本更新\",\n            \"Dependabot creates pull requests to keep your dependencies up-to-date.\": \"Dependabot 創建拉取請求以保持您的依賴項是最新的。\",\n            \"Create config file\": \"創建配置文件\",\n\n            \"Recent update jobs\": \"最近更新的工作\",\n\n            \"Dependabot version updates\": \"Dependabot 版本更新\",\n            \"automatically keep your application up-to-date by periodically updating dependencies to their latest versions.\": \"通過定期將依賴項更新到最新版本，自動保持應用的最新狀態。\",\n            \"Dependabot security updates\": \"Dependabot 版本更新\",\n            \"can also help keep dependencies updated.\": \"還可以幫助保持依賴項更新。\",\n\n            \"Monitored dependency files\": \"受監控的依賴文件\",\n            \"Check for updates\": \"檢查更新\",\n            \"Recent jobs\": \"近期工作\",\n            \"view logs\": \"查看日誌\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/network\"] = { // 倉庫 -> 洞察 - 網絡圖\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 網絡圖 /<user-name>/<repo-name>/network\n            // 鍵盤快捷鍵\n                \"Scroll left\": \"向左滑動\",\n                \"Scroll right\": \"向右滑動\",\n                \"Scroll up\": \"向上滑動\",\n                \"Scroll down\": \"向下滑動\",\n                \"Toggle visibility of the head labels\": \"切換頭部標籤的可見性\",\n                \"Scroll all the way left\": \"一直向左滑動\",\n                \"Scroll all the way right\": \"一直向右滑動\",\n                \"Scroll all the way up\": \"一直向上滑動\",\n                \"Scroll all the way down\": \"一直向下滑動\",\n\n            \"Network graph\": \"網絡圖\",\n            \"Timeline of the most recent commits to this repository and its network ordered by most recently pushed to.\": \"最近提交到此倉庫的時間軸及其網絡圖按最近推送的順序排序。\",\n\n            \"The repository network shows the 100 most recently pushed forks.\": \"倉庫網絡圖顯示最近推送的 100 個複刻。\",\n\n            \"Loading graph data\": \"加載網絡圖數據\",\n            \"Keyboard shortcuts available\": \"可用的鍵盤快捷鍵\",\n\n            \"Sorry, your browser doesn’t support the <canvas> element.\": \"抱歉，您的瀏覽器不支持 <canvas> 元素。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Network Graph/, \"網絡圖\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/network/members\"] = { // 倉庫 -> 洞察 - 複刻\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 複刻 - 樹形視圖 /<user-name>/<repo-name>/network/members\n            \"switch to list view\": \"切換到列表視圖\",\n\n            \"No one has forked this repository yet.\": \"目前，暫無人複刻該倉庫。\",\n            \"Forks are a great way to contribute to a repository. After\": \"複刻是給該倉庫做貢獻的好方法。首先\",\n            \"forking a repository\": \"複刻倉庫\",\n            \", you can send the original author a\": \"，然後您可向原作者發送\",\n            \"pull request\": \"拉取請求\",\n\n            \"Woah, this network is huge! We’re showing only some of this network’s repositories.\": \"哇，這個網絡太龐大了! 我們只展示了這個網絡中的一部分倉庫。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/forks\"] = { // 倉庫 -> 洞察 - 複刻\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        // 複刻 - 列表視圖 /<user-name>/<repo-name>/forks\n            \"Switch to tree view\": \"切換到樹形視圖\",\n\n            \"No one has forked this repository yet\": \"目前，暫無人複刻該倉庫\",\n            \"Forks are a great way to contribute to a repository. After\": \"複刻是給該倉庫做貢獻的好方法。首先\",\n            \"forking a repository\": \"複刻倉庫\",\n            \", you can send the original author a\": \"，然後您可向原作者發送\",\n            \"pull request\": \"拉取請求\",\n\n            \"No forked repositories found\": \"尚無複刻倉庫\",\n            \"Try changing your filters, or search for\": \"嘗試更改篩選器，或搜索\",\n            \"active forked repositories\": \"活躍的複刻倉庫\",\n\n            \"Period:\": \"週期:\",\n                \"Filter by period\": \"篩選週期\",\n                \"1 month\": \"1 個月\",\n                \"6 months\": \"6 個月\",\n                \"1 year\": \"1 年\",\n                \"2 years\": \"2 年\",\n                \"5 years\": \"5 年\",\n                \"All time\": \"所有時間\",\n\n                \"Any repository that has not been created or updated during this period will be excluded.\": \"在此期間未被創建或更新的任何倉庫將被排除在外。\",\n            \"Repository type:\": \"倉庫類型:\",\n                \"Filter by repository type\": \"篩選倉庫類型\",\n                \"None\": \"無\",\n                \"Active\": \"活躍\",\n                    \"Repositories with push activity\": \"有推送活動的倉庫\",\n                \"Inactive\": \"不活躍\",\n                    \"Repositories with no push activity\": \"無推送活動的倉庫\",\n                \"Network\": \"網絡\",\n                    \"Forks of other forks\": \"其他複刻的複刻\",\n                \"Archived\": \"存檔\",\n                    \"Archived repositories\": \"已存檔的倉庫\",\n                \"Starred\": \"星標\",\n                    \"Repositories with at least 1 star\": \"至少有 1 個星標的倉庫\",\n            \"Sort:\": \"排序:\",\n                \"Sort by\": \"排序方式\",\n                    \"Most starred\": \"最多星標\",\n                    \"Recently updated\": \"最近更新\",\n                    \"Open issues\": \"打開的議題\",\n                    \"Open pull requests\": \"打開的拉取請求\",\n                \"Defaults Saved\": \"默認值已保存\",\n                \"Save Defaults\": \"保存默認值\",\n\n            \"Never updated\": \"從未更新\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Created/, \"創建於\"],\n        [/Updated/, \"更新於\"],\n        [/(Active|Inactive|Network|Archived|Starred) (\\+\\d+)/, function(all, type, num){\n            var typeKey = {\"Active\": \"活躍\",\"Inactive\": \"不活躍\",\"Network\": \"網絡\",\"Archived\": \"存檔\",\"Starred\": \"星標\"};\n            return typeKey[type] + ' ' + num;\n        }],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Forks/, \"複刻\"],\n        ],\n    },\n};\n\n// 洞察 <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<\n\nI18N[\"zh-TW\"][\"repository-settings-menu\"] = { // 倉庫設置公共部分\n    \"static\": { // 靜態翻譯\n        // >>>>>>>>>>>>>>>>>>   倉庫設置 公共部分  <<<<<<<<<<<<<<<<<<<\n            // 頂部提醒欄\n            \"Most repository settings are hidden for archived repositories. This repository must be unarchived to change them.\": \"對於存檔的倉庫，大多數倉庫設置都是隱藏的。 必須解除倉庫存檔才能更改它們。\",\n            \"This repository has been archived by the owner. It is now read-only.\": \"此倉庫已由所有者存檔。它現在是只讀的。\",\n            \"Repository settings saved.\": \"倉庫設置已保存。\",\n\n\n            // 左側菜單\n            \"General\": \"通常\",\n\n            \"Access\": \"訪問\",\n                // \"Collaborators\": \"協作者\",\n                \"Collaborators and teams\": \"協作者和團隊\", // 組織倉庫\n                \"Team and member roles\": \"團隊和成員職責\",  // 組織倉庫\n                \"Moderation options\": \"節制選項\",\n                    \"Interaction limits\": \"互動限制\",\n                    \"Code review limits\": \"程式碼審查限制\",\n\n            \"Code and automation\": \"程式碼與自動化\",\n                \"Branches\": \"分支\",\n                \"Tags\": \"標籤\",\n                \"Rules\": \"規則\",\n                    \"Rulesets\": \"規則集\",\n                // \"Actions\": \"操作\",\n                    // \"General\": \"通常\",\n                    \"Runners\": \"運行器\",\n                \"Models\": \"模型\",\n                \"Webhooks\": \"Web 鉤子\",\n                // Copilot\n                    \"Code review\": \"程式碼審查\",\n                    \"Coding agent\": \"編程智能體\",\n                \"Environments\": \"環境\",\n                \"Pages\": \"GitHub Pages\",\n                \"Custom properties\": \"自定義屬性\",  // 組織倉庫\n\n            // \"Security\": \"安全\",\n                \"Advanced Security\": \"高級安全\",\n                \"Deploy keys\": \"部署密鑰\",\n                \"Secrets and variables\": \"機密和變量\",\n\n            \"Integrations\": \"集成\",\n                \"GitHub Apps\": \"GitHub 應用\",\n                \"Email notifications\": \"郵件通知\",\n                \"Autolink references\": \"自動鏈接引用\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/settings\"] = { // 倉庫設置 - 通常 /<user-name>/<repo-name>/settings\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 通常 - 設置頁面 /<user-name>/<repo-name>/settings ====================================\n            \"You don't have access to repository options\": \"你沒有對倉庫設置的訪問權限\",\n                \"Check the sidebar for available repository settings.\": \"在側邊欄中查看可用的倉庫設置。\",\n            \"Repository name\": \"倉庫名稱\",\n            \"Rename\": \"重命名\",\n                // [/is available./, \"名稱可用。\"],\n                \"The repository\": \"倉庫\",\n                \"already exists on this account.\": \"已經存在於此賬戶。\",\n                \"Your new repository will be created as\": \"您的新倉庫將被創建為\",\n                // 頂部提醒\n                \"Repository name was not changed\": \"倉庫名稱未更改\",\n\n                \"Renaming...\": \"重命名中…\",\n\n            \"Template repository\": \"模板庫\",\n                \"Template repositories let users generate new repositories with the same directory structure and files.\": \"模板倉庫允許用戶生成具有相同目錄結構和文件的新倉庫。\",\n                \"A repository with LFS content cannot be used as a template.\": \"帶有 LFS 內容的倉庫不能作為模板使用。\",\n                \"Learn more about template repositories\": \"瞭解更多關於模板庫的信息\",\n\n                \"Require contributors to sign off on web-based commits\": \"要求貢獻者在基於 Web 的提交上籤署\",\n                \"Enabling this setting will require contributors to sign off on commits made through GitHub’s web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"啟用此設置將要求貢獻者簽署通過 GitHub 的 Web 界面所做的提交。簽署是貢獻者確認他們的提交符合倉庫條款的一種方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"開發者來源證書（DCO）\",\n                \"Learn more about signing off on commits\": \"瞭解更多關於簽署提交的信息\",\n\n            \"This setting is enabled on the upstream repository. Disabling this setting may block commits from being merged upstream.\": \"此設置在上游倉庫中啟用。禁用此設置可能會阻止提交向上遊合併。\",\n\n            \"Default branch\": \"默認分支\",\n            \"The default branch is considered the “base” branch in your repository, against which all pull requests and code commits are automatically made, unless you specify a different branch.\": \"默認分支被認為是倉庫中的 “基礎” 分支，所有的拉取請求和程式碼提交都是針對該分支進行的，除非您指定一個不同的分支。\",\n            \"Rename branch\": \"重命名分支\",\n                // 重命名分支對話框\n                \"Rename this branch\": \"重命名分支\",\n                \"Rename\": \"重命名\",\n                \"to:\": \"為：\",\n                // [/is already the branch name./, \"已經是分支的名稱了。\"],\n                // [/Your branch name will be/, \"您的分支的名稱將重命名為\"],\n                \"Most projects name the default branch\": \"大多數專案將默認分支名為\",\n                \"Renaming this branch:\": \"重命名此分支：\",\n                    // 該分支存在來自其他分支的拉取請求時\n                        \"Will update\": \"將更新\",\n                        \"pull request targeting this branch.\": \"條針對該分支的拉取請求。\",\n                        \"pull requests targeting this branch.\": \"條針對該分支的拉取請求。\",\n                        \"branch protection rule that explicitly targets\": \"條分支保護規則明確針對\",\n\n                    // 該分支存在用於其他分支的拉取請求時\n                        \"Will close\": \"將關閉\",\n                        \"open pull request for this branch.\": \"個該分支的拉取請求。\",\n\n                    // 重命名 GitHub Pages 所在分支\n                        \"Will unpublish current GitHub Pages site.\": \"將取消當前發佈的 GitHub Pages 站點。\",\n                            \"Your current GitHub Pages site will become unpublished. A new commit on the renamed branch will publish the GitHub Pages site again.\": \"您當前的 GitHub Pages 站點將被取消發佈。重命名分支上的新提交將再次發佈 GitHub Pages 站點。\",\n\n                    \"Will not update your members' local environments.\": \"不會更新您成員的本地環境。\",\n                \"Renaming this branch will not update your members' local environments.\": \"重命名此分支不會更新您成員的本地環境。\",\n                    \"Your members will have to manually update their local environments. We'll let them know when they visit the repository, or you can share the following commands.\": \"您的成員將不得不手動更新他們的本地環境。我們會在他們訪問倉庫時通知他們，或者您可以共享以下命令。\",\n                \"Saving…\": \"保存中…\",\n\n            \"Switch to another branch\": \"切換到另一分支\",\n                // 分支切換對話框\n                \"Switch default branch to another branch\": \"將默認分支切換到另一分支\",\n                // [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"選擇另一分支作為 $1 的默認分支而不是\"], // 分支切換 對話框\n                \"Switch default branch\": \"切換默認分支\",\n                \"Filter branches\": \"篩選分支\",\n                \"default\": \"默認\",\n                // 更新默認分支對話框\n                \"Update default branch\": \"更新默認分支\",\n                \"Changing your default branch\": \"更改您的默認分支\",\n                \"can have unintended consequences that can affect new pull requests and clones.\": \"可能會產生意想不到的後果，影響新的拉取請求和克隆。\",\n                \"I understand, update the default branch.\": \"我明白了，依然更新默認分支\",\n                // 頂部提醒\n                    // [/Default branch changed to ([^ ])/, \"默認分支更改為 $1\"]\n\n            // 發行版\n                \"Enable release immutability\": \"啟用發行版不可修改\",\n                    \"Disallow assets and tags from being modified once a release is published.\": \"禁止在發佈發行版後修改資產和標籤。\",\n\n            \"Social preview\": \"社交預覽\",\n            // 關於私有庫提醒\n            \"You can upload a social image, but it will not be visible publicly while\": \"您可以上傳社交圖片，但當\",\n            \"is private.\": \"是私密時，它不會公開顯示。\",\n            \"Upload an image to customize your repository’s social media preview.\": \"上傳圖像以自定義倉庫的社交媒體預覽。\",\n            \"Images should be at least 640×320px (1280×640px for best display).\": \"圖片至少應為 640×320 像素（1280×640 像素以獲得最佳顯示效果）。\",\n            \"Download template\": \"下載模板\",\n            \"Edit\": \"編輯\",\n                \"Upload an image…\": \"上傳圖片…\",\n                \"Remove image\": \"刪除圖片\",\n\n            \"Features\": \"功能\",\n            // \"Wikis\": \"\",\n                \"Wikis host documentation for your repository.\": \"Wikis 為您的倉庫託管文檔。\",\n                \"Restrict editing to collaborators only\": \"僅限協作者進行編輯\",\n                \"Restrict editing to users in teams with push access only\": \"僅限具有推送訪問權限的團隊中的成員進行編輯\", //組織倉庫\n                    \"Public wikis will still be readable by everyone.\": \"公共 Wikis 仍然可供所有人閱讀。\",\n\n            // 私人庫 啟用 Wiki 提醒\n                \"Upgrade or make this repository public to enable Wikis\": \"升級或公開此倉庫，以啟用 Wiki\",\n                \"GitHub Wikis is a simple way to let others contribute content. Any GitHub user can create and edit pages to use for documentation, examples, support, or anything you wish.\": \"GitHub Wikis 是一種讓他人貢獻內容的簡單方法。任何 GitHub 用戶都可以創建和編輯頁面，用於文檔、示例、支持或任何您想要的東西。\",\n                // \"Upgrade\": \"升級\",\n                    \"Learn more about wikis\": \"瞭解更多關於 Wiki 的信息\",\n\n            // 議題\n            \"Issues integrate lightweight task tracking into your repository. Keep projects on track with issue labels and milestones, and reference them in commit messages.\": \"議題將輕量級任務跟蹤集成到您的倉庫中。使用議題標籤和里程碑保持專案正常運行，並在提交消息中引用它們。\",\n            \"Get organized with issue templates\": \"使用議題模板進行組織\",\n            \"Give contributors issue templates that help you cut through the noise and help them push your project forward.\": \"為貢獻者提供議題模板，幫助您消除干擾並幫助他們推進您的專案。\",\n            \"Set up templates\": \"設置模板\",\n\n            \"Allow forking\": \"允許複刻\", // 組織倉庫\n            \"If disabled, existing forks will be unaffected.\": \"如果禁用，現有複刻將不受影響。\", // 組織倉庫\n\n            // 贊助\n            \"Sponsorships\": \"贊助\",\n            \"Sponsorships help your community know how to financially support this repository.\": \"贊助可幫助您的社區瞭解如何在資金上支持此倉庫。\",\n            \"Display a \\\"Sponsor\\\" button\": \"顯示 “贊助” 按鈕\",\n            \"Add links to GitHub Sponsors or third-party methods your repository accepts for financial contributions to your project.\": \"添加指向 GitHub 贊助者或您的倉庫接受的第三方收款鏈接，以便為您的專案提供資金捐助。\",\n            \"Set up sponsor button\": \"設置贊助按鈕\",\n            \"Edit funding links\": \"編輯贊助鏈接\",\n\n            // 專案\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的專案可以幫助您組織工作並確定其優先次序。您可以為特定的功能工作、全面的路線圖、甚至是發佈清單創建專案\",\n\n            \"Preserve this repository\": \"保留這個倉庫\",\n            \"Include this code in the\": \"將此程式碼包含在\",\n            \"GitHub Archive Program\": \"GitHub 存檔計劃中\",\n\n            \"Table of contents\": \"目錄\",\n            \"Autogenerate table of contents for markdown files in this repository. the table of contents will be displayed near the top of the file.\": \"自動生成此倉庫中 Markdown 文件的目錄。目錄將顯示在文件頂部附近。\",\n\n            // \"Discussions\": \"討論\",\n            \"Discussions is the space for your community to have conversations, ask questions and post answers without opening issues.\": \"討論是您的社區進行對話、提問和發佈答案的地方，而無需打開議題。\",\n            \"Get started with Discussions\": \"開始討論\",\n            \"Engage your community by having discussions right in your repository, where your community already lives\": \"通過在您的社區已經存在的倉庫中進行討論來吸引您的社區\",\n            \"Set up discussions\": \"建立討論\",\n\n            // 專案\n            \"Projects on GitHub are created at the repository owner's level (organization or user) and can be linked to a repository's Projects tab. Projects are suitable for cross-repository development efforts such as feature work, complex product roadmaps or even Issue triage.\": \"GitHub 上的專案是在倉庫所有者級別（組織或用戶）創建的，並且可以鏈接到倉庫的專案選項卡。專案適用於跨倉庫的開發工作，例如功能工作、複雜的產品路線圖，甚至問題分流。\",\n\n            // 拉取請求\n            \"Pull requests allow others to suggest changes to your repository.\": \"拉取請求允許其他人向您的程式碼倉庫提出更改建議。\",\n            \"Pull request permissions\": \"拉取請求權限\",\n                \"Creation allowed by:\": \"允許創建：\",\n                    \"All users\": \"所有用戶\",\n                    \"Anyone can create a pull request\": \"任何人都可以創建拉取請求\",\n                    \"Collaborators only\": \"僅限協作者\",\n                    \"Only collaborators can create PRs\": \"僅協作者可以創建拉取請求\",\n                \"If restricted, pull requests will still be readable by everyone who can see this repository.\": \"即使設置了限制，所有能夠查看此存儲庫的人仍然可以閱讀拉取請求。\",\n\n            // \"Pull Requests\": \"拉取請求\",\n                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled. If you have linear history requirement enabled on any protected branch, you must enable squashing or rebasing.\": \"當合併拉取請求時，您可以允許合併提交、壓縮或變基的任意組合。必須至少啟用一個選項。如果您在任何受保護分支上啟用了線性歷史要求，則必須啟用壓縮或變基。\",\n\n                \"You must select at least one option\": \"您必須至少選擇一個選項\",\n                \"Allow merge commits\": \"允許合併提交\",\n                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"使用合併提交將所有從頭部分支的提交添加到基礎分支。\",\n                        \"Default commit message\": \"默認提交信息\",\n                            \"Presented when merging a pull request with merge.\": \"當合併拉取請求時時出現。\",\n                        \"Default message\": \"默認信息\",\n                        \"Pull request title\": \"拉取請求標題\",\n                        \"Pull request title and commit details\": \"拉取請求標題和提交詳情\",\n                        \"Pull request title and description\": \"拉取請求標題和描述\",\n\n                \"Allow squash merging\": \"允許壓縮合併\",\n                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"將來自頭部分支的所有提交合併到基礎分支中的單個提交中。\",\n                        // \"Default commit message\": \"默認提交信息\",\n                            \"Presented when merging a pull request with squash.\": \"當使用壓縮合併拉取請求時顯示。\",\n                        \"Default to pull request title and commit details\": \"默認為拉取請求標題和提交詳細信息\",\n\n                    \"Default to PR title for squash merge commits\": \"默認將拉取請求的標題作為壓縮合併提交的信息\",\n                    \"This will pre-populate the commit message with the PR title when performing a squash merge.\": \"在執行壓縮合併時，將在提交信息中添加拉取請求的標題。\",\n\n                \"Allow rebase merging\": \"允許變基合併\",\n                    \"Add all commits from the head branch onto the base branch individually.\": \"將來自頭部分支的所有提交單獨添加到基礎分支。\",\n\n                \"Control how and when users are prompted to update their branches if there are new changes available in the base branch.\": \"如果基礎分支中有可用的新更改，則控制提示用戶更新其分支的方式和時間。\",\n                \"Always suggest updating pull request branches\": \"始終建議更新拉取請求分支\",\n                    \"Whenever there are new changes available in the base branch, present an “update branch” option in the pull request.\": \"每當基礎分支中有可用的新更改時，就在拉取請求中顯示 “更新分支” 選項。\",\n\n                \"You can allow setting pull requests to merge automatically once all required reviews and status checks have passed.\": \"一旦所有必需的審查和狀態檢查都通過，您可以允許設置拉取請求自動合併。\",\n\n                \"Allow auto-merge\": \"允許自動合併\",\n                    \"Waits for merge requirements to be met and then merges automatically.\": \"等待滿足合併要求，然後自動合併。\",\n                    \"Why is this option disabled?\": \"為什麼該選項被禁用？\",\n\n                \"After pull requests are merged, you can have head branches deleted automatically.\": \"合併拉取請求後，您可以自動刪除頭部分支。\",\n\n                    \"Automatically delete head branches\": \"自動刪除頭部分支\",\n                        \"Deleted branches will still be able to be restored.\": \"刪除的分支仍然可以恢復。\",\n\n            \"Archives\": \"檔案\",\n            \"When creating source code archives, you can choose to include files stored using Git LFS in the archive.\": \"創建源程式碼存檔時，您可以選擇在存檔中包含使用 Git LFS 存儲的文件。\",\n\n            \"Include Git LFS objects in archives\": \"在檔案中包含 Git LFS 對象\",\n            \"Git LFS usage in archives is billed at the same rate as usage with the client.\": \"歸檔中的 Git LFS 使用率與客戶端的使用率相同。\",\n\n            \"Pushes\": \"推送\",\n            \"Limit how many branches and tags can be updated in a single push\": \"限制一次推送中可以更新多少個分支和標籤\",\n                \"Pushes will be rejected if they attempt to update more than this.\": \"如果推送嘗試更新超過該值，則推送將被拒絕。\",\n                \"Learn more about this setting\": \"瞭解更多關於此設置的信息\",\n                \", and send us your\": \"，並向我們發送您的\",\n                \"feedback\": \"反饋\",\n\n                \"Up to\": \"在一次推送中最多可以更新\",\n                \"branches and tags can be updated in a push\": \"個分支和標籤\",\n\n                // 提醒\n                \"Must be a whole number between 2 and 1000\": \"必須是 2 到 1000 之間的整數\",\n\n            // 議題\n                \"After merging a pull request, linked issues can be closed automatically.\": \"合併拉取請求後，可以自動關閉關聯議題。\",\n                    \"Auto-close issues with merged linked pull requests\": \"使用已合併的關聯拉取請求自動關閉議題\",\n                        \"Whenever linked pull requests have merged, auto-close the issue.\": \"當關聯的拉取請求被合併時，自動關閉該議題。\",\n\n            \"Danger Zone\": \"危險區\",\n            \"Change repository visibility\": \"更改倉庫可見性\",\n            \"You cannot change the visibility of a fork. please\": \"您無法更改複刻倉庫的可見性。請\",\n            \"Duplicate the repository\": \"複製倉庫\",\n            \"For security reasons, you cannot change the visibility of a fork.\": \"出於安全原因，您無法更改複刻倉庫的可見性。\",\n\n            // 更改倉庫可見性對話框\n            \"Change visibility\": \"更改可見性\",\n                \"Change to private\": \"更改為私有\",\n                \"Change to public\": \"更改為公開\",\n            \"This repository is currently public.\": \"該倉庫當前是公開的。\",\n            \"This repository is currently private.\": \"該倉庫當前是私有的。\",\n            \"I want to make this repository public\": \"我想將此倉庫設為公開\",\n                \"The code will be visible to everyone who can visit https://github.com\": \"所有可以訪問 https://github.com 的人都可以看到程式碼\",\n                \"Attachments uploaded to this repository's issues and pull requests will not be accessible unless it is made private again.\": \"上傳到此倉庫的議題和拉取請求的附件將無法訪問，除非再次設為私有。\",\n                \"Anyone can fork your repository.\": \"任何人都可以複刻您的倉庫。\",\n                \"All push rulesets will be disabled.\": \"所有推送規則集都將被禁用。\",\n                \"Your changes will be published as activity.\": \"您的更改將作為活動發佈。\",\n                \"Actions history and logs will be visible to everyone.\": \"操作歷史和日誌將對所有人可見。\",\n                \"Make this repository public\": \"我想將此倉庫設為公開\",\n            \"I want to make this repository private\": \"我想將此倉庫設為私有\",\n                \"Making this repository private could permanently erase these counts by removing stars and watchers associated to users that will no longer have access to this repository:\": \"該倉庫私有化，將會通過解除星標者和關注者，刪除這些計數。他們將無法訪問該倉庫：\",\n                    \"star\": \"星標者\",\n                    \"stars\": \"星標者\",\n                    \"watcher\": \"關注者\",\n                    \"watchers\": \"關注者\",\n                \"If you decide to make this repository public in the future, it will not be possible to restore these stars and watchers and this will affect its repository rankings.\": \"即使您決定將來公開此倉庫，也無法恢復這些星標者和關注者，這將影響其倉庫排名。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository.\": \"依賴項關係圖和 Dependabot 警報將保持啟用，並有權限對該倉庫進行只讀分析。\",\n                \"Dependency graph and Dependabot alerts will remain enabled with permission to perform read-only analysis on this repository. Any custom Dependabot alert rules will be disabled unless GitHub Advanced Security is enabled for this repository.\": \"依賴項關係圖和 Dependabot 警報將繼續啟用，並允許對該倉庫執行只讀分析。除非為該倉庫啟用了 GitHub 高級安全功能，否則任何自定義的 Dependabot 警報規則都將被禁用。\",\n                \"Code scanning will become unavailable.\": \"程式碼掃描將變得不可用。\",\n                \"Current forks will remain public and will be detached from this repository.\": \"當前的複刻將保持公開，並將從該倉庫中分離出來。\",\n                \"Make this repository private\": \"將此倉庫設為私有\",\n                \"I have read and understand these effects\": \"我已閱讀並理解這些影響\",\n\n                \"Warning: this is a destructive action\": \"警告：這是一個破壞性的行為\",\n                \"To confirm, type the number of stars on this repository in the box below\": \"要確認，請在下面的框中輸入此倉庫的星標數\",\n\n            \"Disable branch protection rules\": \"禁用分支保護規則\",\n                \"Disable branch protection rules enforcement and APIs\": \"禁用分支保護規則執行和 API\",\n\n                // 頂部提醒\n                    \"Branch protection settings saved.\": \"分支保護設置已保存。\",\n\n            // 禁用分支保護對話框\n                \"This will hide the branch protection settings and disable branch protection rules for this repository.\": \"這將隱藏分支保護設置，並禁用該倉庫的分支保護規則。\",\n                \"Disabling branch protection rules allows you to enforce branch and tag protections exclusively with Repository Rules.\": \"禁用分支保護規則後，允許您僅使用倉庫規則來執行分支和標籤保護。\",\n\n                \"This action will disable:\": \"此操作將禁用：\",\n                    \"Branch protection rule enforcement\": \"分支保護執行\",\n                    \"Branch protection rule APIs\": \"分支保護 API\",\n                // [/(\\d+) branch protection rules?/, \"$1 項分支保護規則\"],\n                \"will be disabled as part of this action\": \"作為此操作的一部分將被禁用\",\n\n            \"Re-enable branch protection rules\": \"重新啟用分支保護規則\",\n                \"Re-enable branch protection rules enforcement and APIs\": \"重新啟用分支保護規則執行和 API\",\n\n            // 重新啟用分支保護對話框\n                \"Re-enable branch protection\": \"重新啟用分支保護\",\n                \"will be re-enabled as part of this action\": \"作為此操作的一部分將被重新啟用\",\n\n            \"Transfer ownership\": \"轉讓所有權\",\n            \"Transfer\": \"轉讓\",\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"將此倉庫轉讓給另一位用戶或您可以創建倉庫的組織。\",\n            \"Organization members cannot transfer repositories\": \"組織成員沒有轉讓所有權的權限\",\n\n            \"Leave fork network\": \"離開複刻網絡\",\n            \"Can't leave the fork network because this fork has child forks.\": \"無法離開複刻網絡，因為此複刻有子複刻。\",\n            \"Can't detach forks larger than 1 GB.\": \"無法解除大於 1 GB 的複刻關聯。\",\n            \"Unlink this repository from the fork network and make it standalone.\": \"將該倉庫從複刻網絡中解除關聯，使其成為獨立倉庫。\",\n            \"Detach is in progress.\": \"分離中。\",\n            // 頂部提醒\n                \"Detaching this repository.\": \"分離此倉庫…\",\n\n            \"Archive this repository\": \"存檔倉庫\",\n            \"Mark this repository as archived and read-only.\": \"將此倉庫標記為已存檔和只讀。\",\n\n            // 存檔倉庫對話框\n            \"Archive repository\": \"存檔倉庫\",\n            \"This repository will become read-only.\": \"該倉庫將設置為只讀。\",\n            \"You will still be able to fork the repository and unarchive it at any time.\": \"您仍然可以隨時訪問複刻倉庫並取消存檔。\",\n            \"Unexpected bad things will happen if you don’t read this!\": \"如果您不閱讀此說明，將會發生意想不到的事情！\",\n            \"All scheduled workflows will stop running.\": \"所有預定的工作流程將停止運行。\",\n            \"Security features will be unavailable:\": \"安全功能將無法使用：\",\n            \"Code scanning\": \"程式碼掃描\",\n            \"Before you archive, please consider:\": \"在您存檔之前，請考慮：\",\n            \"Updating any repository settings\": \"更新倉庫設置\",\n            \"Closing all open issues and pull requests\": \"關閉所有打開的議題和拉取請求\",\n            \"Making a note in your README\": \"在您的 README 中做個說明\",\n            \"Please type\": \"請鍵入\",\n            \"to confirm.\": \"進行確定。\",\n            \"I understand the consequences, archive this repository\": \"我明白後果，依然存檔該倉庫\",\n            // \"This repository has been archived by the owner. It is now read-only.\": \"此倉庫已由所有者存檔。它現在是只讀的。\",\n\n            // 頂部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的倉庫 “$1” 已成功存檔。\"], //倉庫存檔\n\n            \"Unarchive this repository\": \"解除倉庫存檔\",\n            \"Mark this repository as unarchived and read-write.\": \"將此倉庫標記為未存檔和可讀寫。\",\n\n            // 解除倉庫存檔對話框\n            \"Unarchive repository\": \"解除倉庫存檔\",\n            \"This will make\": \"這將使\",\n            \"read-write.\": \"可讀寫。\",\n            \"Once unarchived, the following can be modified and commented on:\": \"一旦解除存檔，就可以對以下內容進行修改和評論：\",\n            \"Pull Requests\": \"拉取請求\",\n            \"Labels\": \"標籤\",\n            \"Releases\": \"發行版\",\n            \"Milestones\": \"里程碑\",\n            \"Past due by\": \"已經過期於\",\n            \"Security features will become available:\": \"安全功能將不可用：\",\n            \"I understand the consequences, unarchive this repository\": \"我明白後果，依然解除該倉庫存檔\",\n\n            \"Delete this repository\": \"刪除倉庫\",\n            \"Once you delete a repository, there is no going back. Please be certain.\": \"您一旦刪除倉庫，將再也無法恢復。請確認。\",\n            \"Organization members cannot delete repositories.\": \"組織成員沒有刪除倉庫的權限\",\n\n            // 離開複刻網絡對話框\n                \"This will permanently remove the fork relationship to the upstream repository\": \"這將永久移除與上游倉庫的複刻關係：\",\n                \"will become a standalone repository and will no longer be able to fetch upstream updates or propose changes to the upstream repository\": \"將成為獨立倉庫，無法再獲取上游更新，也無法向原倉庫提交更改：\",\n                \"cannot rejoin the fork network.\": \"不能重新加入複刻網絡。\",\n\n            // 頂部提醒\n            // [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的倉庫 “$1” 已成功解除存檔。\"], //倉庫解除存檔\n\n            // 刪除倉庫對話框\n                // [/Delete/, \"刪除\"],\n                \"I want to delete this repository\": \"我想刪除這個倉庫\",\n\n                \"This will permanently delete the\": \"這將永久刪除\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations will be permanently deleted.\": \"倉庫、Wiki、議題、評論、軟體包、機密、工作流程，並刪除所有協作者關聯。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all collaborator associations.\": \"倉庫、Wiki、議題、評論、軟體包、機密、工作流程，並刪除所有協作者關聯。\",\n                \"repository, wiki, issues, comments, packages, secrets, workflow runs, and remove all team associations.\": \"倉庫、Wiki、議題、評論、軟體包、機密、工作流程，並刪除所有團隊關聯。\", // 組織倉庫\n                \"This will not change your billing plan. If you want to downgrade, you can do so in your Billing Settings.\": \"這並不會更改您的結算方案。 如果您想降級，可以在結算設置中進行降級。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/is available./, \"名稱可用。\"],\n        [/Make ([^ ]+) private/, \"將 $1 設為私有\"],\n        [/Make ([^ ]+) public/, \"將 $1 設為公開\"],\n        [/(\\d+) stars?/, \"$1 位星標者\"],\n        [/(\\d+) watchers?/, \"$1 位關注者\"],\n        [/To confirm, type \\\"([^ ]+)\\\" in the box below/, \"要確認，請在下面的方框中輸入 \\\"$1\\\"\"],\n        [/Your repository \\\"([^ ]+)\\\" was successfully archived./, \"您的倉庫 “$1” 已成功存檔。\"], //倉庫存檔\n        [/Your repository \\\"([^ ]+)\\\" was successfully unarchived./, \"您的倉庫 “$1” 已成功解除存檔。\"], //倉庫解除存檔\n        [/is already the branch name./, \"已經是分支的名稱了。\"],\n        [/Your branch name will be/, \"您的分支的名稱將重命名為\"],\n        [/Choose another branch to use as the default branch of ([^ ]+) instead of/,\"選擇另一分支作為 $1 的默認分支而不是\"], // 分支切換 對話框\n        [/(\\d+) branch protection rules?/, \"$1 項分支保護規則\"], // 禁用/重啟啟用分支保護\n        [/Delete/, \"刪除\"],\n        [/Default branch changed to ([^ ])/, \"默認分支更改為 $1\"],\n        // 離開複刻網絡\n        [/Forked from ([^ ])/, \"複刻自 $1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"General\": \"通常\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/access\"] = { // 倉庫設置 - 協作者/(組織倉庫 協作者和團隊) /<user-name>/<repo-name>/settings/access\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 協作者 / 協作者和團隊 - 訪問管理頁面 /<user-name>/<repo-name>/settings/access ====================================\n            // 頂部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"倉庫邀請 URL 僅適用於受邀請的用戶。您只能與受邀請的用戶共享此 URL。\",\n\n                // [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"刪除 $1 為 $2 的協作者\"],\n\n            \"Who has access\": \"誰有權訪問\",\n            \"public repository\": \"公共倉庫\",\n            \"Public repository\": \"公共倉庫\",\n            \"This repository is public and visible to anyone\": \"該倉庫是公開的，對任何人都可見\",\n            \"This repository is public and visible to anyone.\": \"該倉庫是公開的，對任何人都可見。\",\n            \"private repository\": \"私有倉庫\",\n            \"Only those with access to this repository can view it.\": \"只有擁有該倉庫訪問權的用戶才能查看。\",\n            \"Manage\": \"管理\",\n            \"Manage visibility\": \"管理\", // 內容重複，直接省略\n\n            \"Direct access\": \"直接訪問\",\n            \"collaborators have access to this repository. Only you can contribute to this repository.\": \"個協作者有權訪問此倉庫。 只有您可以對此倉庫做出貢獻。\",\n            \"has access to this repository.\": \"位有權訪問此倉庫。\",\n            \"have access to this repository.\": \"有權訪問此倉庫。\",\n            // 組織倉庫\n            \"teams or members have access to this repository. Only\": \"團隊或成員有權訪問此倉庫。只有\",\n            \"Owners\": \"所有者\",\n            \"can contribute to this repository.\": \"可以為此倉庫做出貢獻。\",\n\n            // 組織倉庫\n            \"Base role\": \"基本角色\",\n            \"All\": \"所有\",\n            // [/(\\d+) members?/, \"$1 位成員\"],\n            \"can access this repository.\": \"可以訪問此倉庫。\",\n\n            \"Manage access\": \"訪問管理\",\n            \"You haven't invited any collaborators yet\": \"您尚未邀請任何協作者\",\n            // \"invite a collaborator\": \"邀請協作者\",\n            \"Add people\": \"添加他人\",\n                // 邀請對話框\n                    \"Add people to\": \"添加成員到\",\n                    \"Search by username, full name, or email\": \"搜索用戶名、全名、或電子郵箱\",\n                    \"Find people\": \"查找\",\n                    \"Invite collaborator\": \"邀請協作者\",\n                    \"Add to repository\": \"添加到倉庫\",\n                    // 頂部提醒\n                        // [/([^ ]+) has been added as a collaborator on the repository./, \"$1 已被添加為倉庫的協作者。\"],\n\n\n            \"Select all\": \"全選\",\n                // [/(\\d+) members? selected…/, \"已選擇 $1 名成員...\"],\n                \"Change role\": \"切換角色\",\n                \"Remove Access\": \"刪除訪問權限\",\n            \"Type\": \"類型\",\n                \"Filter by member type\": \"按成員類型篩選\",\n                    \"Organization Members\": \"組織成員\",\n                    \"Outside Collaborators\": \"外部協作者\",\n                    \"Pending Invitations\": \"待處理邀請\",\n            \"Find a collaborator…\": \"尋找協作者……\",\n            \"Find people or a team…\": \"尋找用戶或一個團隊……\",\n            \"No Results\": \"無結果\",\n\n            \"Pending Invite\": \"待處理邀請\",\n            \"Invite expired\": \"已過期\",\n            // [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回覆\"],\n            \"Remove\": \"移除\",\n\n            // 移除邀請對話框\n                \"Confirm you want to remove this invitation\": \"確認移除邀請\",\n                \"Once canceled,\": \"取消後，\",\n                \"will no longer be invited to access the\": \"將不再被邀請訪問\",\n                \"repository.\": \"倉庫。\",\n                // [/Cancel ([^ ]+)'s invitation/, \"取消邀請 $1\"],\n                // 頂部提醒\n                    // [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀訪問該倉庫。\"],\n\n            // 刪除協助者對話框\n                \"Confirm you want to remove this member\": \"確認要刪除此成員？\",\n                \"Once removed,\": \"一旦刪除，\",\n                \"will no longer have direct access to this repository. However, they may still have access to this repository if they are a member of a team that is granted access.\": \"將不再能直接訪問此倉庫。但是，如果他們是獲准訪問該倉庫的團隊成員，則仍可訪問該倉庫。\",\n                // 頂部提醒\n                    // [/Remove ([^ ]+) from this repository/, \"從該倉庫移除 $1\"],\n\n            // 組織倉庫\n            \"Create team\": \"創建組織\",\n            \"You haven't added any teams or people yet\": \"您尚未添加團隊或成員\",\n            \"Organization owners can manage individual and team access to the organization's repositories. Team maintainers can also manage a team's repository access.\": \"組織所有者可以管理成員和團隊對組織倉庫的訪問。團隊維護者也可以管理一個團隊的倉庫訪問。\",\n            \"Learn more about organization access\": \"瞭解更多關於組織訪問權限的信息\",\n            \"Add teams\": \"添加團隊\",\n\n            // \"Add people to\": \"添加成員到\",\n            \"Select a member above\": \"在上面選擇一名成員\",\n            \"Add teams to\": \"添加團隊\",\n            \"Search by team name\": \"按團隊名稱搜索\",\n            \"Select a team above\": \"在上面選擇一個團隊\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) members? selected…/, \"已選擇 $1 名成員...\"],\n        [/(\\d+) members?/, \"$1 位成員\"],\n        [/(\\d+) collaborators?/, \"$1 位協作者\"],\n        [/(\\d+) invitations?/, \"$1 個邀請\"],\n        [/Awaiting ([^ ]+)’s response/, \"等待 $1 的回覆\"],\n        [/([^ ]+) • Collaborator/, \"$1 • 協作者\"],\n        [/([^ ]+) • Invite collaborator/, \"$1 • 邀請協作者\"],\n        [/(\\d+) users?/, \"$1 個用戶\"],\n        [/(\\d+) teams?/, \"$1 個團隊\"],\n        [/Add people to ([^ ]+)/, \"添加人員到 $1\"],\n        [/([^ ]+) has been added as a collaborator on the repository./, \"已將 $1 添加為倉庫協作者。\"],\n        [/Cancel ([^ ]+)'s invitation/, \"取消邀請 $1\"],\n        [/([^ ]+) is no longer invited to this repository./, \"$1 不再受邀訪問該倉庫。\"],\n        [/Remove ([^ ]+) from this repository/, \"從該倉庫移除 $1\"],\n        [/Removed ([^ ]+) as a collaborator of ([^ ]+\\/[^ ]+)/, \"刪除 $1 為 $2 的協作者\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Manage access\": \"訪問管理\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/interaction_limits\"] = { // 倉庫設置 - 互動限制 /<user-name>/<repo-name>/settings/interaction_limits\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 審查設置 (倉庫)互動限制 /<user-name>/<repo-name>/settings/interaction_limits\n        // 同全局 同組織倉庫\n            \"Temporary interaction limits\": \"臨時互動限制\",\n            \"Temporarily restrict which external users can interact with your repository (comment, open issues, or create pull requests) for a configurable period of time.\": \"在配置的時間段內，可臨時限制哪些外部用戶與您的倉庫互動（評論、打開議題或創建拉取請求）。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用於在激烈討論期間，強制進入 “冷靜” 期或防止不必要的互動。\",\n\n            \"You can restrict repository interactions across your account in your\": \"您可以限制倉庫交互，在您的賬戶設置中的\",\n            \"account settings\": \"互動限制\",\n\n            // [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 組織中限制倉庫交互\"],\n\n            \"Limit to existing users\": \"僅限現有用戶\",\n                \"Users that have recently created their account will be unable to interact with the repository.\": \"最近創建賬戶的用戶將無法與該倉庫互動。\",\n            \"Limit to prior contributors\": \"僅限於先前的貢獻者\",\n                \"Users that have not previously\": \"以前從未\",\n                \"committed\": \"提交\",\n                // [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到該倉庫的 $1 分支的用戶將無法與該倉庫互動。\"],\n            \"Limit to repository collaborators\": \"僅限倉庫協作者\",\n                \"Users that are not\": \"不是\",\n                // \"collaborators\": \"\",\n                // \"of one of your repositories will not be able to interact with that repository.\": \"\",\n                \"will not be able to interact with the repository.\": \"將無法與該倉庫互動。\",\n\n            \"New users\": \"新用戶\",\n            \"Users\": \"用戶\",\n            \"Contributors\": \"貢獻者\",\n            \"Collaborators\": \"協作者\",\n            \"Organization members\": \"組織成員\", //組織倉庫\n\n            \"Enable\": \"啟用\",\n            \"Disable\": \"禁用\",\n            // 交互限制時間 下拉菜單\n            \"Enable interaction limits for:\": \"啟用交互限制：\",\n            \"24 hours\": \"24 小時\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 個月\",\n            \"6 months\": \"6 個月\",\n\n            // 頂部提醒\n            \"Repository interaction limit settings saved.\": \"倉庫交互限制設置已保存。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n            [/You can restrict repository interactions across the ([^ ]+) organization in your/, \"您可以在您的 $1 組織中限制倉庫交互\"],\n            [/to the ([^ ]+) branch of this repository will be unable to interact with the repository./, \"到該倉庫的 $1 分支的用戶將無法與該倉庫互動。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Temporary interaction limits\": \"臨時互動限制\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/code_review_limits\"] = { // 倉庫設置 - 程式碼審查限制 /<user-name>/<repo-name>/settings/code_review_limits\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // Code review limits 程式碼審查限制 /<user-name>/<repo-name>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in this repository.\": \"限制允許批准或請求更改該倉庫中拉取請求的用戶。\",\n            \"Limit to users explicitly granted\": \"限於明確授予\",\n            \"read\": \"讀取\",\n            \"or higher access\": \"或 更高權限的用戶\",\n                \"When enabled, only users explicitly granted access to this repository will be able to submit pull request reviews that \\\"approve\\\" or \\\"request changes\\\". All users able to submit comment pull request reviews will continue to be able to do so.\": \"啟用後，只有被明確授予該倉庫訪問權的用戶才能提交 “批准” 或 “請求更改” 的拉取請求審查。所有能夠提交評論拉取請求審查的用戶將繼續能夠這樣做。\",\n\n            // 頂部提醒\n                \"Code review limit settings saved.\": \"程式碼審查限制設置已保存。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Code review limits\": \"程式碼審查限制\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/branches\"] = { // 倉庫設置 - 分支 /<user-name>/<repo-name>/settings/branches\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 分支管理頁面 /<user-name>/<repo-name>/settings/branches====================================\n            \"Branch protection rules\": \"分支保護規則\",\n            \"Add rule\": \"添加規則\",\n\n            \"Define branch protection rules to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging. New to branch protection rules?\": \"定義分支保護規則，以禁止強制推送，防止分支被刪除，並可選擇要求在合併前進行狀態檢查。初次接觸分支保護規則？\",\n\n            \"No branch protection rules defined yet.\": \"尚未定義分支保護規則。\",\n\n            \"You haven't protected any of your branches\": \"您沒有保護任何分支\",\n            \"Classic branch protections have not been configured\": \"未配置經典分支保護\",\n            \"Define branch rules to disable force pushing, prevent branches from being deleted, or require pull requests before merging. Learn more about\": \"定義分支規則，以禁止強制推送、防止分支被刪除或在合併前要求提交拉取請求。瞭解更多：\",\n            //\"Define a protected branch rule to disable force pushing, prevent branches from being deleted, and optionally require status checks before merging.\": \"定義分支保護規則，以禁用強制推送，防止分支被刪除，並可選擇在合併前進行狀態檢查。\",\n            \"repository rules\": \"倉庫規則\",\n            \"protected branches\": \"受保護分支\",\n            \"Add branch ruleset\": \"添加分支規則集\",\n            \"Add classic branch protection rule\": \"添加經典分支保護規則\",\n            //\"Learn more about protected branches\": \"瞭解更多關於受保護分支的信息\",\n            //\"Add branch protection rule\": \"添加分支保護規則\",\n\n            // 私有庫 分支保護 未執行 提醒\n            \"Your protected branch rules won't be enforced on this private repository until you move to a GitHub Team or Enterprise organization account.\": \"您的受保護分支規則不會在這個私有倉庫上執行，直到您遷移至 GitHub 團隊或企業組織賬戶。\",\n            \"Move to an organization\": \"轉移到組織\",\n\n            \"Not enforced\": \"未執行\",\n                \"Rules on your private repos can't be enforced until you upgrade to GitHub Team or Enterprise.\": \"在您升級到 GitHub 團隊或企業版之前，您的私有倉庫的規則不能被執行。\",\n\n            // [/Currently applies to (\\d+) branchs?/, \"目前適用於 $1 個分支\"], // 倉庫設置-->分支-->分支保護規則\n\n            // 刪除分支保護規則\n            \"Delete this branch protection rule?\": \"刪除此分支保護規則？\",\n            \"This action cannot be undone.\": \"此操作無法撤消。\",\n            \"I understand, delete this rule.\": \"我明白了，依然刪除此規則。\",\n\n            // 頂部提醒\n            \"Branch protection rule settings saved.\": \"分支保護規則設置已保存。\",\n            \"Branch protection rule created.\": \"分支保護規則已創建。\",\n            \"Branch protection rule was successfully deleted.\": \"分支保護規則已成功刪除。\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前適用於 $1 個分支\"], // 倉庫設置-->分支-->分支保護規則\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches/, \"設置 · 分支\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/branch_protection_rules\"] = { // 倉庫設置 - 分支/分支保護 /<user-name>/<repo-name>/settings/branch_protection_rules\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 新建分支保護規則 頁面 /<user-name>/<repo-name>/settings/branch_protection_rules/new====================================\n            \"Branch protection rule\": \"分支保護規則\",\n\n            \"Protect your most important branches\": \"保護您最重要的分支\",\n                \"Branch protection rules\": \"分支保護規則\",\n                \"define whether collaborators can delete or force push to the branch and set requirements for any pushes to the branch, such as passing status checks or a linear commit history.\": \"定義協作者是否可以刪除或強制推送到分支，並對任何推送到分支的內容設置要求，如通過狀態檢查或線性提交歷史。\",\n\n                \"Your GitHub Free plan\": \"您的 GitHub 免費計劃\",\n                \"Your organization's GitHub Free plan\": \"您組織的 GitHub 免費計劃\", // 組織倉庫\n                \"can only enforce rules on its public repositories, like this one.\": \"只能對其公共倉庫執行規則，例如這個。\",\n\n                \"Your rules won't be enforced on this private repository until you\": \"您的規則將不會在此私有倉庫上強制執行，直到您\",\n                \"move to a GitHub Team or Enterprise organization account\": \"遷移至 GitHub 團隊或企業組織賬戶\",\n                \"upgrade this organization to GitHub Team or Enterprise\": \"升級組織至 GitHub 團隊或企業版\", // 組織倉庫\n\n            \"Branch name pattern\": \"分支名稱模式\",\n            \"Protect matching branches\": \"保護匹配的分支\",\n                \"Require a pull request before merging\": \"要求在合併前提交拉取請求\",\n                    \"When enabled, all commits must be made to a non-protected branch and submitted via a pull request before they can be merged into a branch that matches this rule.\": \"啟用後，所有提交都必須提交到不受保護的分支，並通過拉取請求提交，然後才能將它們合併到與此規則匹配的分支中。\",\n                    \"Require approvals\": \"要求批准審查\",\n                        \"When enabled, pull requests targeting a matching branch require a number of approvals and no changes requested before they can be merged.\": \"啟用後，針對匹配分支的拉取請求需要若干次批准審查，並且在合併之前無需請求更改。\",\n                        \"Required number of approvals before merging:\": \"合併前所需的批准審查數量：\",\n                    \"Dismiss stale pull request approvals when new commits are pushed\": \"當新的提交被推送時，撤銷陳舊的拉取請求批准審查\",\n                        \"New reviewable commits pushed to a matching branch will dismiss pull request review approvals.\": \"推送到匹配分支的新的可審查提交將撤銷之前的拉取請求的批准審查。\",\n                    \"Require review from Code Owners\": \"要求程式碼所有者進行審查\",\n                        \"Require an approved review in pull requests including files with a designated code owner.\": \"要求在拉取請求中進行批准審查，包括有指定程式碼所有者的文件。\",\n                    \"Restrict who can dismiss pull request reviews\": \"限制誰可以駁回拉取請求審查\", // 組織倉庫\n                        \"Specify people, teams, or apps allowed to dismiss pull request reviews.\": \"指定允許駁回拉取請求審查的人員、團隊或應用。\",\n                        \"People, teams, or apps that can dismiss reviews.\": \"允許駁回審查的人員、團隊或應用。\",\n                            \"Organization and repository administrators\": \"組織和倉庫管理員\",\n                                \"These members can always dismiss.\": \"這些成員總是允許駁回。\",\n                                \"These members cannot dismiss.\": \"這些成員不允許駁回。\",\n                    \"Allow specified actors to bypass required pull requests\": \"允許指定的參與者繞過所需的拉取請求\", //組織倉庫\n                        \"Specify people, teams, or apps who are allowed to bypass required pull requests.\": \"指定允許繞過所需拉取請求的人員、團隊或應用。\",\n                        \"People, teams, or apps who can bypass required pull requests\": \"允許繞過所需拉取請求的人員、團隊或應用\",\n                            // \"Organization and repository administrators\": \"組織和倉庫管理員\",\n                                \"These members can always bypass required pull requests.\": \"這些成員始終允許繞過所需的拉取請求。\",\n                                \"These members cannot bypass.\": \"這些成員不允許繞過。\",\n                    \"Require approval of the most recent reviewable push\": \"要求批准最新的可審查推送\",\n                        \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可審核推送是否必須得到推送者以外的其他人批准。\",\n                \"Require status checks to pass before merging\": \"要求在合併前通過狀態檢查\",\n                    \"Choose which\": \"選擇那些\",\n                    \"status checks\": \"狀態檢查\",\n                    \"must pass before branches can be merged into a branch that matches this rule. When enabled, commits must first be pushed to another branch, then merged or pushed directly to a branch that matches this rule after status checks have passed.\": \"必須通過，才能將分支合併到符合此規則的分支。啟用後，提交的內容必須先推送到另一個分支，然後在狀態檢查通過後再合併或直接推送到符合此規則的分支。\",\n\n                    \"Require branches to be up to date before merging\": \"要求分支在合併前必須是最新的\",\n                        \"This ensures pull requests targeting a matching branch have been tested with the latest code. This setting will not take effect unless at least one status check is enabled (see below).\": \"這可確保針對匹配分支的拉取請求已使用最新的程式碼進行了測試。除非啟用了至少一個狀態檢查，否則這個設置不會生效（見下文）。\",\n\n                    \"Do not require status checks on creation\": \"不要求在創建時進行狀態檢查\",\n                        \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允許創建倉庫和分支，否則檢查將禁止創建。\",\n\n                    \"Search for status checks in the last week for this repository\": \"搜索此倉庫最近一週的狀態檢查\",\n                    \"Status checks that are required.\": \"需要進行的狀態檢查。\",\n\n                    \"No status checks found\": \"尚無狀態檢查\",\n                        \"Sorry, we couldn’t find any status checks in the last week for this repository.\": \"抱歉，我們最近一週未找此倉庫的任何狀態檢查。\",\n                    \"Learn more about status checks\": \"瞭解更多關於狀態檢查的信息\",\n                \"Require conversation resolution before merging\": \"要求在合併前解決對話\",\n                    \"When enabled, all conversations on code must be resolved before a pull request can be merged into a branch that matches this rule.\": \"啟用後，必須先解決所有有關程式碼的對話，然後才能將拉取請求合併到與此規則匹配的分支中。\",\n                    \"Learn more about requiring conversation completion before merging\": \"瞭解更多關於合併前要求完成對話的信息\",\n                \"Require signed commits\": \"要求帶簽名的提交\",\n                    \"Commits pushed to matching branches must have verified signatures.\": \"推送到匹配分支的提交必須帶有經過驗證的簽名。\",\n                \"Require linear history\": \"要求線性歷史記錄\",\n                    \"Prevent merge commits from being pushed to matching branches.\": \"防止合併後的提交被推送到匹配的分支。\",\n                \"Require merge queue\": \"要求合併隊列\", // 組織倉庫\n                    \"Merges to matching branches must be performed via a merge queue.\": \"對匹配分支的合併必須通過合併隊列執行。\",\n                    \"Make sure to configure your CI to build branches created by the queue.\": \"確保您配置 CI 以構建由隊列創建的分支\",\n                    \"Merge method\": \"合併模式\",\n                        \"Method to use when merging changes from queued pull requests.\": \"合併來自列隊拉取請求的更改時使用的模式。\",\n                        \"Method:\": \"模式：\",\n                            \"Merge commit\": \"合併提交\",\n                            \"Squash and merge\": \"壓縮合併\",\n                            \"Rebase and merge\": \"變基合併\",\n                    \"Build concurrency\": \"構建並發\",\n                        \"Limit the number of queued pull requests building at the same time.\": \"限制同時構建的列隊拉取請求的數量。\",\n                        \"Maximum pull requests to build:\": \"構建的最大拉取請求：\",\n                    \"Merge limits\": \"合併限制\",\n                        \"Limit the number of pull requests merged into the protected branch in a single merge operation.\": \"限制在單個合併操作中合併到受保護分支的拉取請求的數量。\",\n                        \"Minimum pull requests to merge:\": \"合併的最小拉取請求：\",\n                            \"or after\": \"或\",\n                            \"minutes\": \"分鐘之後\",\n                        \"Maximum pull requests to merge:\": \"合併的最大拉取請求：\",\n                        \"Only merge non-failing pull requests\": \"僅合併未失敗的拉取請求\",\n                    \"Status check timeout\": \"狀態檢查超時\",\n                        \"Time (in minutes) a required status check must report a conclusion within to not be considered failed.\": \"所需的狀態檢查必須在規定的時間（以分鐘為單位）內報告結論才不會被視為失敗。\",\n                        \"Consider check failed after:\": \"考慮檢查失敗：\",\n                \"Require deployments to succeed before merging\": \"要求部署成功後再合併\",\n                    \"Choose which environments must be successfully deployed to before branches can be merged into a branch that matches this rule.\": \"選擇必須成功部署到哪些環境才能將分支合併到與此規則匹配的分支中。\",\n                            \"No deployment environments found\": \"尚無部署環境\",\n                            \"Sorry, we couldn’t find any deployments for this repository.\": \"抱歉，我們未找到此倉庫的任何部署。\",\n                            \"Deployment environments found in this repository\": \"在此倉庫中找到的部署環境\",\n                                \"Required\": \"必須\",\n                \"Lock branch\": \"鎖定分支\",\n                    \"Branch is read-only. Users cannot push to the branch.\": \"分支為只讀。用戶無法推送到該分支。\",\n                \"Do not allow bypassing the above settings\": \"不允許繞過上述設置\",\n                    \"The above settings will apply to administrators and custom roles with the \\\"bypass branch protections\\\" permission.\": \"上述設置將應用於具有 “繞過分支保護” 權限的管理員和自定義角色。\",\n                \"Restrict who can push to matching branches\": \"限制誰可以推送到匹配的分支\", // 組織倉庫\n                    \"Specify people, teams, or apps allowed to push to matching branches. Required status checks will still prevent these people, teams, and apps from merging if the checks fail.\": \"指定允許推送到匹配分支的人員、團隊或應用。如果檢查失敗，所需的狀態檢查仍然會阻止這些人、團隊和應用的合併。\",\n\n                    \"Restrict pushes that create matching branches\": \"限制創建匹配分支的推送\",\n                        \"Only people, teams, or apps allowed to push will be able to create new branches matching this rule.\": \"只有允許推送的人員、團隊或應用才能創建符合此規則的新分支。\",\n                        \"People, teams, or apps with push access\": \"允許推送的人員、團隊或應用\",\n                            \"Organization administrators, repository administrators, and users with the Maintain role.\": \"組織管理員、倉管理員和具有維護角色的用戶。\",\n                            \"Organization administrators, repository administrators, the merge queue, and users with the Maintain role.\": \"組織管理員、倉管理員、合併隊列和具有維護角色的用戶。\", // 開啟需要合併隊列\n                                \"Admins can always push. Users with the Maintain role can push when required status checks pass.\": \"管理員始終允許推送。具有維護角色的用戶允許在所需狀態檢查通過時推送。\",\n                                \"These members can push when required status checks pass.\": \"這些成員允許在所需狀態檢查通過時推送。\",\n\n            \"Rules applied to everyone including administrators\": \"規則適用於每個人，包括管理員\",\n                \"Allow force pushes\": \"允許強制推送\",\n                    \"Everyone\": \"所有人\",\n                        \"Permit force pushes for all users with push access.\": \"允許所有有推送權限的用戶強制推送。\",\n                    \"Specify who can force push\": \"指定誰允許強制推送\",\n                        \"Only these people, teams, or apps are allowed to force push.\": \"僅允許這些人、團隊或應用強制推送。\",\n                        \"Search for people, teams, or apps\": \"搜索人員、團隊或應用\",\n                        \"People, teams, or apps who can force push\": \"允許強制推送的人員、團隊或應用\",\n                            \"Organization and repository administrators (automatic)\": \"組織和倉庫管理員（自動）\",\n                \"Allow deletions\": \"允許刪除\",\n                    \"Allow users with push access to delete matching branches.\": \"允許具有推送權限的用戶刪除匹配的分支。\",\n\n            // 頂部提醒\n            \"Branch protection rule created.\": \"分支保護規則已創建。\",\n\n        // 編輯分支保護規則 頁面 /<user-name>/<repo-name>/settings/branch_protection_rules/<id>===================================\n            // [/Applies to (\\d+) branchs?/, \"應用於 $1 個分支\"], //倉庫設置-->分支-->分支保護規則-->編輯\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Applies to (\\d+) branch(?:es|)/, \"應用於 $1 個分支\"], //倉庫設置-->分支-->分支保護規則-->編輯\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Branches · New branch protection rule/, \"設置 · 分支 · 新建分支保護規則\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/tag_protection\"] = { // 倉庫設置 - 標籤 /<user-name>/<repo-name>/settings/tag_protection\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 標籤 頁面 /<user-name>/<repo-name>/settings/tag_protection===============================\n            // 頂部提醒\n                \"Tag protection rule created.\": \"標籤保護規則已創建。\",\n                \"Tag protection rule deleted.\": \"標籤保護規則已刪除。\",\n\n            // 頂部窗口\n            \"Level up your tag protections with Repository Rules\": \"利用倉庫規則提升標籤保護級別\",\n            \"Protected tags are being deprecated. To continue protecting tags, please migrate to a tag ruleset by August 30th. You can learn more about the sunset in our\": \"受保護的標籤將被廢棄。要繼續保護標籤，請在 8 月 30 日前遷移到標籤規則集。您可以在我們的\",\n            \"changelog\": \"更改日誌\",\n            \"and can get started now by migrating to rulesets.\": \"中瞭解更多信息，並且可以立即開始遷移到規則集。\",\n\n            \"Protected tags\": \"受保護的標籤\",\n            \"Protected tags are available to Pro, Team, and Enterprise users\": \"專業版、團隊版和企業版用戶均可使用受保護的標籤\", //私有庫\n            \"Protected tags can only be created or deleted by users with enhanced permissions defined by your organization owners.\": \"受保護的標籤只能由具有由組織所有者定義的增強權限的用戶創建或刪除。\",\n            \"Learn more about protected tags\": \"瞭解更多關於受保護標籤的信息\",\n            \"No protected tag rules exist yet\": \"尚無受保護的標籤規則存在\",\n            \"Protected tags have been deprecated\": \"受保護的標籤已棄用\",\n            \"Go to rulesets to create new tag rules\": \"轉到規則集創建新標籤規則\",\n            \"New rule\": \"新建規則\",\n            \"Import to rulesets\": \"導入規則集\",\n                \"Import your tag protection rules into repository rules\": \"將您的標籤保護規則導入倉庫規則集\",\n                    \"Migrate your protected tags to one or more repository rulesets. This will implement the same tag protections you currently have today. Once created, the tag rulesets can take advantage of new ruleset features:\": \"將受保護的標籤遷移到一個或多個倉庫規則集。這將實現與當前相同的標籤保護。創建後，標籤規則集可利用規則集的新功能：\",\n                        \"Requiring status checks to pass\": \"要求通過狀態檢查\",\n                        \"Signed commits\": \"要求簽名提交\",\n                        \"Requiring linear history\": \"需要線性歷史\",\n                        \"and more\": \"和更多\",\n                    \"Create separate rulesets for creating and deleting protected tags\": \"為創建和刪除受保護的標籤創建單獨的規則集\",\n                        \"Users and Teams with at least Maintainer role will be able to create new protected tags. Administrators will be able to delete protected tags. This is the same behavior as existing tag protections.\": \"至少具有維護者角色的用戶和團隊可以創建新的受保護標籤。管理員可以刪除受保護標籤。這與現有標籤保護的行為相同。\",\n                    \"Create one ruleset for all protected tag operations\": \"為所有受保護的標籤操作創建規則集\",\n                        \"Administrators will be able to create and delete protected tags.\": \"管理員可以創建和刪除受保護的標籤。\",\n\n                    \"Learn more about tag rulesets\": \"瞭解更多關於標籤規則集的信息\",\n                    \"Import\": \"導入\",\n\n            \"Delete tag protection rule\": \"刪除標籤保護規則\",\n                \"Delete tag protection rule?\": \"刪除標籤保護規則？\",\n                    \"Are you sure you want to delete this tag protection rule? Anyone who can write to this repository will be able to create tags with this pattern.\": \"您確定要刪除此標籤保護規則嗎？任何可以寫入此倉庫的人都能夠使用此模式創建標籤。\",\n                    \"Yes, remove this tag protection rule\": \"是的，刪除此標籤保護規則\",\n\n            // [/(\\d+) rules?/, \"$1 條規則\"],\n\n        // 新建標籤規則 頁面 /<user-name>/<repo-name>/settings/tag_protection/new===============================\n            \"/ New rule\": \"/ 新建規則\",\n            \"Tag name pattern\": \"標籤名稱模式\",\n            \"Example: You can use\": \"示例：您可以使用\",\n            \"to target tags named\": \"來鎖定名為\",\n            \", and so on.\": \"等的標籤。\",\n\n            \"Add rule\": \"添加規則\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) rules?/, \"$1 條規則\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Tags/, \"設置 · 標籤\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/rules\"] = { // 倉庫設置 - 規則 - 規則集 /<user-name>/<repo-name>/settings/rules\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"], // 組織設置\n        ...I18N[\"zh-TW\"][\"confirm-access\"][\"static\"],\n\n        // 倉庫規則集頁面 /<user-name>/<repo-name>/rules\n        // 規則集 頁面 /<user-name>/<repo-name>/settings/rules\n            \"Your rulesets won't be enforced on this private repository until you upgrade this organization account to GitHub Team.\": \"在您將此組織賬戶升級到 GitHub Team 之前，您的規則集不會在此私有倉庫上強制執行。\", // 組織 私有倉庫\n\n            \"Organization rulesets won't be enforced\": \"在您將該組織賬戶升級到 GitHub 企業版之前，\", // 組織設置\n            \"until you upgrade this organization account to GitHub Enterprise.\": \"組織規則集將不會強制執行。\", // 組織設置\n\n            \"You haven't created any rulesets\": \"您尚未創建任何規則集\",\n                \"Define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定義協作者是否可以刪除或強制推送，並為任何推送設置要求，如通過狀態檢查或線性提交歷史。\",\n                \"Learn more about rulesets.\": \"瞭解更多關於規則集的信息。\",\n\n            \"Rulesets\": \"規則集\",\n            \"New ruleset\": \"新建規則集\",\n                \"New branch ruleset\": \"新建分支規則集\",\n                    \"New tag ruleset\": \"新建標籤規則集\",\n                    \"Import a ruleset\": \"導入規則集\",\n                        \"Choose a JSON file to upload\": \"選擇 JSON 文件上傳\",\n\n            \"Ruleset\": \"規則集\",\n\n            \"No rulesets have been added yet\": \"尚未添加任何規則集\",\n\n            \"All\": \"全部\",\n            \"• targeting\": \"• 針對\",\n            \", targeting\": \", 針對\",\n\n            \"Ruleset menu\": \"菜單\",\n                \"Export ruleset\": \"導出規則集\",\n                \"Delete ruleset\": \"刪除規則\",\n\n            // 刪除規則對話框\n                \"Delete ruleset?\": \"刪除規則？\",\n                \"Are you sure you want to delete this ruleset? This action cannot be undone.\": \"您確定要刪除此規則集嗎？此操作無法撤消。\",\n\n        // 新建分支規則 /<user-name>/<repo-name>/settings/rules/new?target=branch&enforcement=disabled\n        // 新建標籤規則 /<user-name>/<repo-name>/settings/rules/new?target=tag&enforcement=disabled\n        // 編輯規則 /<user-name>/<repo-name>/settings/rules/<id>\n\n            \"Protect your most important branches\": \"保護您最重要的分支\",\n                \"define whether collaborators can delete or force push and set requirements for any pushes, such as passing status checks or a linear commit history.\": \"定義協作者是否可以刪除或強制推送，並為任何推送設置要求，如通過狀態檢查或線性提交歷史。\",\n\n            \"Tag\": \"標籤\",\n            \"tags\": \"標籤\",\n\n            \"Open additional options\": \"打開其他選項\",\n            \"Export\": \"導出\",\n            \"ruleset\": \"規則\",\n\n            \"Name\": \"名稱\",\n                \"Ruleset name cannot be empty\": \"規則集名稱不能為空\",\n            \"Enforcement status\": \"執行狀態\",\n                \"Active\": \"激活\",\n                    \"This ruleset will be enforced\": \"規則將被執行\",\n                    \"Rules will be enforced\": \"規則將被執行\",\n                    \"Enable Organization Ruleset\": \"啟用組織規則集\", // 組織設置\n                        \"I want rules enforced on targeted repositories in this ruleset.\": \"我希望此規則集中強制執行針對目標倉庫的規則。\",\n                \"Evaluate\": \"評估\", // 組織設置\n                    \"Evaluate Rulesets to trial rules and view insights\": \"評估規則集，以試用規則並查看洞察\",\n                    \"Evaluate mode is only available to Enterprise organizations.\": \"評估模式僅適用於企業組織。\",\n                        \"Upgrade to Enterprise to use this mode.\": \"升級到企業版即可使用此模式。\",\n                \"Disabled\": \"禁用\",\n                    \"Do not evaluate or enforce rules\": \"不評估或執行規則\",\n                    \"This ruleset will not be enforced\": \"規則將不被執行\",\n\n            \"Bypass list\": \"旁路列表\",\n                \"Exempt roles, teams, and apps from this ruleset by adding them to the bypass list.\": \"通過將角色、團隊和應用程式添加到旁路列表，使其免受此規則集的約束。\",\n                \"Exempt roles, teams, or apps from this ruleset by adding them to the bypass list.\": \"通過將角色、團隊或應用程式添加到旁路列表，使其免受此規則集的約束。\",\n                \"Exempt roles or teams from this ruleset by adding them to the bypass list\": \"通過將角色或團隊添加到旁路列表，使其免受此規則集的約束\", // 組織設置\n                \"Add bypass\": \"添加旁路\",\n\n                 // 添加旁路對話框\n                    \"Choose which roles, teams, and apps can bypass this ruleset\": \"選擇哪些角色、團隊和應用可繞過此規則集\",\n\n                    \"Filter items\": \"篩選\",\n                    \"Filter bypass actors\": \"篩選旁路參與者\",\n\n                    \"No suggestions\": \"暫無建議\",\n\n                    \"Suggestions\": \"建議\",\n                        \"Role\": \"角色\",\n                        \"App\": \"應用\",\n                        \"Organization admin\": \"組織管理員\",\n                        \"Repository admin\": \"倉庫管理員\",\n                        \"Maintain\": \"維護\",\n                        \"triage\": \"分類\",\n                        \"maintain\": \"維持\",\n                        \"read\": \"讀取\",\n                        \"write\": \"寫入\",\n                        \"vulnerability_reporter\": \"漏洞報告員\",\n                        \"Add selected\": \"添加所選\",\n\n                \"Always allow\": \"總是允許\",\n                \"Allow for pull requests only\": \"僅允許拉取請求\",\n                    \"Allow\": \"允許\",\n                        \"Always\": \"總是\",\n                        \"For pull requests only\": \"僅適用於拉取請求\",\n                    \"Delete bypass\": \"刪除旁路\",\n\n                \"Bypass list is empty\": \"旁路列表為空\",\n\n            \"Target branches\": \"目標分支\",\n                \"Which branches should be matched?\": \"哪些分支應匹配？\",\n                \"Which branches do you want to make a ruleset for?\": \"您想為哪些分支制定規則集？\",\n                \"Which tags do you want to make a ruleset for?\": \"您想為哪些標籤制定規則集？\", // 標籤\n                \"Which repositories and branches do you want to make a ruleset for?\": \"您想為哪些倉庫和分支創建規則集？\", // 組織設置\n\n                // 組織設置\n                    \"Target repositories\": \"目標倉庫\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset. Use inclusion patterns to expand the list of repositories under this ruleset. Use exclusion patterns to exclude repositories.\": \"倉庫目標確定哪些倉庫將受此規則集保護。使用包含模式來擴展此規則集下的倉庫列表。使用排除模式來排除倉庫。\",\n                    \"Target:\": \"目標：\",\n                        \"All repositories\": \"所有倉庫\",\n                            \"Target all repositories within the organization\": \"組織內的所有倉庫\",\n                        \"Dynamic list by name\": \"按名稱動態列表\",\n                            \"Target repositories based on name\": \"基於名稱的目標倉庫\",\n                        \"Dynamic list by property\": \"按屬性動態列表\",\n                            \"Target repositories based on properties\": \"基於屬性的目標倉庫\",\n                        \"Select repositories\": \"選擇倉庫\",\n                            \"Target a specific list of selected repositories\": \"以選定倉庫列表為目標\",\n\n                    \"Targeting criteria\": \"目標規則\",\n                        \"No repository targets have been added yet\": \"尚未添加倉庫目標\",\n\n                        \"Prevent renaming of target repositories\": \"防止重命名目標倉庫\",\n                            \"When checked, target repositories can only be renamed by those with bypass permission.\": \"選中後，目標倉庫只能由具有繞過權限的成員重命名。\",\n\n                            \"Repositories that match the matching pattern will be targeted by this ruleset.\": \"與匹配規則相匹配的倉庫將成為該規則集的目標。\",\n                            \"Repositories that do not match the matching pattern will be targeted by this ruleset.\": \"與匹配規則不匹配的倉庫將成為該規則集的目標。\",\n\n                    \"Target by repository properties\": \"目標倉庫屬性\",\n                        \"Repository targeting determines which repositories will be protected by this ruleset.\": \"倉庫目標確定哪些倉庫將受此規則集保護\",\n\n                        \"Add a target\": \"添加目標\",\n                            \"Include by property\": \"包含屬性\",\n                            \"Exclude by property\": \"排除屬性\",\n\n                        \"Include repositories by custom property\": \"按自定義屬性包含倉庫\",\n                            \"Custom properties allow you to create your own metadata for repositories\": \"自定義屬性允許您為倉庫創建自己的元數據，\",\n                            \"include\": \"包括\",\n                            \"exclude\": \"排除\",\n                            \"Property\": \"屬性\",\n                                \"Select property\": \"選擇屬性\",\n                                    \"Select an item\": \"選擇專案\",\n                                        \"Search for properties\": \"搜索屬性\",\n\n                    // 倉庫\n                        \"Select items\": \"選擇專案\",\n                            \"Repos\": \"倉庫\",\n\n                \"Target\": \"目標\",\n                    \"Branch targeting determines which branches will be protected by this ruleset. Use inclusion patterns to expand the list of branches under this ruleset. Use exclusion patterns to exclude branches.\": \"分支目標確定哪些分支將受此規則集保護。使用包含模式來擴展該規則集下的分支列表。使用排除模式來排除分支。\",\n                    \"Tag targeting determines which tags will be protected by this ruleset. Use inclusion patterns to expand the list of tags under this ruleset. Use exclusion patterns to exclude tags.\": \"標籤目標確定哪些標籤將受此規則集保護。使用包含模式來擴展該規則集下的標籤列表。使用排除模式來排除標籤。\", // 標籤\n\n                    \"Branch targeting criteria\": \"目標分支規則\",\n                    \"Tag targeting criteria\": \"目標標籤規則\", // 標籤\n                        \"Add target\": \"添加目標\",\n                            \"Include default branch\": \"包含默認分支\",\n                            \"Include all branches\": \"包含所有分支\",\n                            \"Include all tags\": \"包含所有標籤\", // 標籤\n                            \"Target by inclusion or exclusion pattern\": \"通過包含或排除規則確定目標\",\n                            \"Include by pattern\": \"包含規則\",\n                            \"Exclude by pattern\": \"排除規則\",\n\n                        \"Branch targeting has not been configured\": \"尚未配置分支目標\",\n                        \"Tag targeting has not been configured\": \"尚未配置標籤目標\", // 標籤\n\n                        \"Default\": \"默認\",\n                        \"All branches\": \"所有分支\",\n                        \"All tags\": \"所有標籤\", // 標籤\n\n                        \"Applies to\": \"適用於\",\n                        \"target:\": \"個目標：\",\n                        \"targets:\": \"個目標：\",\n                        \"Targets have changed and branch match list will update on save.\": \"目標已更改，分支匹配列表將在保存時更新。\",\n                            \"Targets have changed and\": \"目標已更改，\",\n                            \"branch\": \"分支\",\n                            \"branches\": \"分支\",\n                            \"match list will update on save.\": \"匹配列表將在保存時更新。\",\n                        \"targets including\": \"個目標，包括\",\n                        \"Targets have changed and repository match list will update on save.\": \"目標已更改，倉庫匹配列表將在保存時更新。\", // 組織設置\n\n                        // 包含規則 對話框\n                            \"Branches that match the matching pattern will be targeted by this ruleset.\": \"與匹配規則相匹配的分支將成為該規則集的目標。\",\n                            \"Tags that match the matching pattern will be targeted by this ruleset.\": \"與匹配規則相匹配的標籤將成為該規則集的目標。\", // 標籤\n                            \"naming pattern\": \"命名規則\",\n                                \"Pattern cannot be empty\": \"規則不能為空\",\n                            \"Example patterns: \\\"\": \"示例：\\\"\",\n                            \"Learn more about fnmatch\": \"瞭解更多關於 fnmatch 的信息\",\n                            \"Add Inclusion pattern\": \"添加包含規則\",\n\n                        // 排除規則 對話框\n                            \"Branches that do not match the matching pattern will be targeted by this ruleset.\": \"與匹配規則不匹配的分支將成為該規則集的目標。\",\n                            \"Tags that do not match the matching pattern will be targeted by this ruleset.\": \"與匹配規則不匹配的標籤將成為該規則集的目標。\", // 標籤\n                            \"Add Exclusion pattern\": \"添加排除規則\",\n\n            // 規則\n            \"Branch rules\": \"分支規則\",\n            \"rules\": \"規則\",\n                \"Which rules should be applied to the targets that you have selected?\": \"哪些規則應適用於您選擇的目標？\",\n                \"Which rules should be applied?\": \"應適用哪些規則？\",\n\n                \"protections\": \"保護\",\n                    \"Restrict creations\": \"限制創建\",\n                        \"Only allow users with bypass permission to create matching refs.\": \"只允許具有繞過權限的用戶創建匹配的引用。\",\n                    \"Restrict updates\": \"限制更新\",\n                        \"Only allow users with bypass permission to update matching refs.\": \"只允許具有繞過權限的用戶更新匹配的引用。\",\n                            \"Allow fork syncing\": \"允許複刻倉庫同步\",\n                                 \"Branch can pull changes from its upstream repository\": \"分支可從上游倉庫中拉取更改\",\n                    \"Restrict deletions\": \"限制刪除\",\n                        \"Only allow users with bypass permissions to delete matching refs.\": \"只允許具有繞過權限的用戶刪除匹配的引用。\",\n                    \"Require linear history\": \"需要線性歷史\",\n                        \"Prevent merge commits from being pushed to matching refs.\": \"防止合併後的提交被推送到匹配的引用。\",\n                    \"Require merge queue\": \"要求合併隊列\", // 組織倉庫\n                        \"Merges must be performed via a merge queue.\": \"合併必須通過合併隊列進行。\",\n                        \"Merge method\": \"合併模式\",\n                            \"Method to use when merging changes from queued pull requests.\": \"合併來自列隊拉取請求的更改時使用的模式。\",\n\n                                \"Merge commit\": \"合併提交\",\n                                \"Squash and merge\": \"壓縮合併\",\n                                \"Rebase and merge\": \"變基合併\",\n                        \"Build concurrency\": \"構建並發\",\n                            \"Limit the number of queued pull requests requesting checks and workflow runs at the same time.\": \"限制同時請求檢查和工作流運行的隊列拉取請求數量。\",\n                        \"Minimum group size\": \"最小分組數\",\n                            \"The minimum number of PRs that will be merged together in a group.\": \"將合併為一組的拉取請求的最小數量。\",\n                        \"Maximum group size\": \"最大分組數\",\n                            \"The maximum number of PRs that will be merged together in a group.\": \"將合併為一組的拉取請求的最大數量。\",\n                        \"Wait time to meet minimum group size (minutes)\": \"達到最小分組數的等待時間（分鐘）\",\n                            \"The time merge queue should wait after the first PR is added to the queue for the minimum group size to be met. After this time has elapsed, the minimum group size will be ignored and a smaller group will be merged.\": \"第一個拉取請求添加到隊列後，合併隊列為達到最小分組規模所需的等待時間。超過這一時間後，將忽略最小分組大小，合併一個較小的分組\",\n                        \"Require all queue entries to pass required checks\": \"要求所有隊列條目通過必要的檢查\",\n                            \"When this setting is disabled, only the commit at the head of the merge group, i.e. the commit containing changes from all of the PRs in the group, must pass its required checks to merge.\": \"禁用此設置後，只有位於合併組頭部的提交（即包含組內所有拉取請求變更的提交）必須通過合併所需的檢查。\",\n                        \"Status check timeout (minutes)\": \"狀態檢查超時（分鐘）\",\n                            \"Maximum time for a required status check to report a conclusion. After this much time has elapsed, checks that have not reported a conclusion will be assumed to have failed\": \"報告結論所需的狀態檢查的最長時間。超過此時間後，未報告結論的檢查將被視為失敗\",\n                    \"Require deployments to succeed\": \"要求部署成功\",\n                        \"Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches this rule.\": \"選擇必須成功部署到哪些環境，之後才能將引用推送到與此規則匹配的引用中。\",\n                        \"Hide additional settings\": \"隱藏附加設置\",\n                        \"Show additional settings\": \"顯示附加設置\",\n                            \"Search for deployment environments\": \"搜索部署環境\",\n                            \"No deployment environments have been added\": \"未添加部署環境\",\n                            \"Learn more about deployment environments\": \"瞭解更多關於部署環境的信息\",\n                    \"Require signed commits\": \"要求帶簽名的提交\",\n                        \"Commits pushed to matching refs must have verified signatures.\": \"推送到匹配引用的提交必須帶有經過驗證的簽名。\",\n                    \"Require a pull request before merging\": \"要求在合併前提交拉取請求\",\n                        \"Require all commits be made to a non-target branch and submitted via a pull request before they can be merged.\": \"要求所有的提交都必須在非目標分支上進行，並在合併前通過拉取請求提交。\",\n                            \"Required approvals\": \"要求批准審查\",\n                                \"The number of approving reviews that are required before a pull request can be merged.\": \"拉取請求合併前所需的批准審查次數。\",\n                            \"Dismiss stale pull request approvals when new commits are pushed\": \"當新的提交被推送時，撤銷陳舊的拉取請求批准審查\",\n                                \"New, reviewable commits pushed will dismiss previous pull request review approvals.\": \"推送新的可審查提交將撤銷之前的拉取請求的批准審查。\",\n                            \"Require review from Code Owners\": \"要求程式碼所有者進行審查\",\n                                \"Require an approving review in pull requests that modify files that have a designated code owner.\": \"要求對具有指定程式碼所有者的文件修改的拉取請求中進行批准審查。\",\n                            \"Require approval of the most recent reviewable push\": \"要求批准最新的可審查推送\",\n                                \"Whether the most recent reviewable push must be approved by someone other than the person who pushed it.\": \"最新的可審核推送是否必須得到推送者以外的其他人批准。\",\n                            \"Require conversation resolution before merging\": \"要求在合併前解決對話\",\n                                \"All conversations on code must be resolved before a pull request can be merged.\": \"在合併拉取請求之前，必須解決有關程式碼的所有對話。\",\n                            \"Request pull request review from Copilot\": \"請求 Copilot 進行拉取請求審查\",\n                                \"Automatically request review from Copilot for new pull requests, if the author has access to Copilot code review.\": \"如果作者有權訪問 Copilot 程式碼審查，則自動請求 Copilot 對新拉取請求進行審查。\",\n\n                            \"Allowed merge methods\": \"允許合併方法\",\n                                \"Merge, Squash\": \"合併，壓縮\",\n                                \"Merge, Squash, Rebase\": \"合併，壓縮，變基\",\n                                \"Merge, Rebase, Squash\": \"合併，變基，壓縮\",\n                                \"Merge, Rebase, Squash\": \"合併，變基，壓縮\",\n                                \"Merge, Rebase\": \"合併，變基\",\n                                \"Squash, Rebase\": \"壓縮，變基\",\n                                \"Squash, Rebase, Merge\": \"壓縮，變基，合併\",\n                                \"Squash, Merge\": \"壓縮，合併\",\n                                \"Squash, Merge, Rebase\": \"壓縮，合併，變基\",\n                                \"Rebase, Merge\": \"變基，合併\",\n                                \"Rebase, Squash\": \"變基，壓縮\",\n                                \"Rebase, Squash, Merge\": \"變基，壓縮，合併\",\n                                \"Rebase, Merge, Squash\": \"變基，合併，壓縮\",\n                                \"Merge\": \"合併\",\n                                    \"Add all commits from the head branch to the base branch with a merge commit.\": \"將所有來自頭部分支的提交通過一次合併提交添加到基礎分支。\",\n                                \"Squash\": \"壓縮\",\n                                    \"Combine all commits from the head branch into a single commit in the base branch.\": \"將頭部分支上的所有提交合併為一個提交，然後將其集成到基礎分支。\",\n                                \"Rebase\": \"變基\",\n                                    \"Add all commits from the head branch onto the base branch individually.\": \"將頭部分支中的所有提交逐個添加到基礎分支上。\",\n                                \"When merging pull requests, you can allow any combination of merge commits, squashing, or rebasing. At least one option must be enabled.\": \"在合併拉取請求時，您可以允許合併提交、壓縮或變基這三種方式中的任意組合。至少啟用其中一種選項。\",\n                    \"Require status checks to pass\": \"要求通過狀態檢查\",\n                        \"Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed to another ref where the checks pass.\": \"更新引用之前必須選擇通過哪些狀態檢查。啟用後，提交必須首先推送到檢查通過的另一個引用。\",\n                            \"Require branches to be up to date before merging\": \"要求分支在合併前必須是最新的\",\n                                \"Whether pull requests targeting a matching branch must be tested with the latest code. This setting will not take effect unless at least one status check is enabled.\": \"針對匹配分支的拉取請求，使用最新程式碼進行測試。至少啟用一項狀態檢查，否則此設置不會生效。\",\n                                \"Do not require status checks on creation\": \"不要求在創建時進行狀態檢查\",\n                                    \"Allow repositories and branches to be created if a check would otherwise prohibit it.\": \"允許創建倉庫和分支，否則檢查將禁止創建。\",\n                                // \"Enter the name of a status check\": \"輸入狀態檢查的名稱\",\n                                    // [/Add '(.*)'/, \"添加 $1\"],\n                                \"No required checks\": \"無需進行必要的檢查\",\n                                    \"Add checks\": \"添加檢查\",\n                                        \"Add Checks\": \"添加檢查\",\n                                            \"Search for checks\": \"搜索檢查\",\n                                            \"No results\": \"無結果\",\n                                \"No checks have been added\": \"未添加任何檢查\",\n                                \"Learn more about status checks\": \"瞭解更多關於狀態檢查的信息\",\n                    \"Block force pushes\": \"阻止強制推送\",\n                        \"Prevent users with push access from force pushing to refs.\": \"防止具有推送權限的用戶強制推送到引用。\",\n                    \"Require code scanning results\": \"需要程式碼掃描結果\",\n                        \"Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning must be enabled and have results for both the commit and the reference being updated.\": \"選擇哪些工具必須在更新引用之前提供程式碼掃描結果。配置後，程式碼掃描必須啟用，並為提交和正在更新的引用提供結果。\",\n                        \"Required tools and alert thresholds\": \"所需工具和警報閾值\",\n                            \"Add tool\": \"添加工具\",\n                                \"Tool name\": \"工具名稱\",\n                                \"Enter the name of a code scanning tool\": \"輸入程式碼掃描工具名稱\",\n                        \"Security alerts\": \"安全警報\",\n                            \"None\": \"無\",\n                            \"Critical\": \"關鍵\",\n                            \"High or higher\": \"高風險及以上\",\n                            \"Medium or higher\": \"中風險及以上\",\n                        \"Alerts\": \"警報\",\n                            \"Errors\": \"僅錯誤\",\n                            \"Errors and Warnings\": \"錯誤和警告\",\n                        \"Delete Tool\": \"刪除工具\",\n                        \"Tools that must provide code scanning results for this rule to pass.\": \"必須提供程式碼掃描結果才能通過此規則的工具。\",\n                        \"Learn more about enabling code scanning.\": \"瞭解更多關於啟用程式碼掃描的信息。\",\n\n                    \"Require code quality results\": \"要求程式碼質量結果\",\n                        \"Choose which severity levels of code quality results should block pull request merges. When configured, a code quality analysis must be done on the pull request before the changes can be merged.\": \"選擇哪些程式碼質量結果嚴重級別應阻止拉取請求合併。配置後，必須在拉取請求上進行程式碼質量分析，才能合併更改。\",\n                        \"Severity\": \"嚴重級別\",\n                            \"Error\": \"錯誤\",\n                            \"Warning\": \"警告\",\n                            \"Warnings and higher\": \"警告及以上\",\n                            \"Notes and higher\": \"備註及以上\",\n                        \"The lowest severity level at which code quality reviews need to be resolved before commits can be merged.\": \"在合併提交之前，需要解決的最低嚴重級別程式碼質量審查。\",\n\n                    \"Automatically request Copilot code review\": \"自動請求 Copilot 程式碼審查\",\n                        \"Request Copilot code review for new pull requests automatically if the author has access to Copilot code review and their premium requests quota has not reached the limit.\": \"如果作者有權訪問 Copilot 程式碼審查並且其高級請求配額尚未達到限制，則自動請求 Copilot 對新拉取請求進行程式碼審查。\",\n                        \"Review new pushes\": \"審查新的推送\",\n                        \"Copilot automatically reviews each new push to the pull request.\": \"Copilot 自動審查每個新的推送請求。\",\n                        \"Review draft pull requests\": \"審查草稿拉取請求\",\n                        \"Copilot automatically reviews draft pull requests before they are marked as ready for review.\": \"Copilot 自動審查草稿拉取請求，在標記為準備好審查之前。\",\n\n                    \"Manage static analysis tools in Copilot code review\": \"在 Copilot 程式碼審查中管理靜態分析工具\",\n                        \"Copilot code review will include findings from the selected static analysis tools in its review comments.\": \"Copilot 程式碼審查將在其審查意見中包括所選靜態分析工具的結果。\",\n\n                    // 組織設置\n                    \"Require workflows to pass before merging\": \"要求合併前，工作流通過狀態檢查\",\n                        \"Require all changes made to a targeted branch to pass the specified workflows before they can be merged.\": \"要求目標分支上的所有更改在合併前通過指定的工作流\",\n                        \"Workflow configurations\": \"工作流程配置\",\n                            \"No workflow configurations found\": \"尚無工作流配置\",\n\n                        \"Add workflow\": \"添加工作流\",\n                            \"Add required workflow\": \"添加所需的工作流\",\n                                // 倉庫\n                                    \"Select a repository\": \"選擇倉庫\",\n                                \"Select branch or tag\": \"選擇分支或標籤\",\n                                    \"Branch or tag\": \"分支或標籤\",\n                                    \"Pin to commit\": \"固定到提交\",\n                                        \"Always reference the current commit\": \"始終引用當前提交\",\n                                \"Enter a SHA\": \"輸入 SHA\",\n                                    \"Enter a valid SHA\": \"輸入有效的 SHA\",\n                                    \"Enter the SHA for the commit you want to reference\": \"輸入要引用的提交的 SHA\",\n                                    \"Invalid SHA\": \"無效的 SHA\",\n                                \"Pick a workflow file\": \"選擇工作流文件\",\n                                    \"Please select a workflow path\": \"請選擇工作流路徑\",\n\n            \"Restrictions\": \"限制\", // 組織設置\n                \"Restrict commit metadata\": \"限制提交元數據\",\n                    \"Restrict commit author email addresses, committer email addresses, commit message content, and other metadata\": \"限制提交作者電子郵箱地址、提交者電子郵箱地址、提交消息內容和其他元數據\",\n\n                    \"Metadata restrictions\": \"元數據限制\",\n                        \"No metadata restrictions have been added\": \"尚無元素限制\",\n                        \"Learn more about\": \"瞭解更多關於\",\n                        \"metadata\": \"元素\",\n                        \"restrictions\": \"限制\",\n\n                        \"Add restriction\": \"添加限制\",\n                            // 添加元數據限制 對話框\n                                \"Add a metadata restriction\": \"添加元數據限制\",\n                                    \"Applies To\": \"適用於\",\n                                        \"Commit message\": \"提交信息\",\n                                        \"Author email\": \"作者電子郵箱地址\",\n                                        \"Committer email\": \"提交者電子郵箱地址\",\n                                        \"Branch name\": \"分支名稱\",\n                                    \"Requirement\": \"要求\",\n                                        \"Must\": \"必須\",\n                                        \"start with a matching pattern\": \"以匹配規則開頭\",\n                                        \"end with a matching pattern\": \"以匹配規則結束\",\n                                        \"contain a matching pattern\": \"包含匹配規則\",\n                                        \"match a given regex pattern\": \"匹配給定的正則表達式規則\",\n                                        \"Must not\": \"不得\",\n                                    \"Matching pattern\": \"匹配規則\",\n                                    \"Description\": \"描述\",\n                                        // [/Commit message must start with a matching pattern/, \"提交信息必須以匹配規則開頭\"],\n                                        // [/Commit message must end with a matching pattern/, \"提交信息必須以匹配規則結束\"],\n                                        // [/Commit message must contain with a matching pattern/, \"提交信息必須包含匹配規則\"],\n                                        // [/Commit message must match a given regex pattern/, \"提交信息必須匹配給定的正則表達式規則\"],\n                                        // [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配規則開頭\"],\n                                        // [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配規則結束\"],\n                                        // [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配規則\"],\n                                        // [/Commit message must not match a given regex pattern/, \"提交信息不得匹配給定的正則表達式規則\"],\n\n                                        // [/Author email must start with a matching pattern/, \"作者電子郵箱地址必須以匹配規則開頭\"],\n                                        // [/Author email must end with a matching pattern/, \"作者電子郵箱地址必須以匹配規則結束\"],\n                                        // [/Author email must contain a matching pattern/, \"作者電子郵箱地址必須包含匹配規則\"],\n                                        // [/Author email must match a given regex pattern/, \"作者電子郵箱地址必須匹配給定的正則表達式規則\"],\n                                        // [/Author email must not start with a matching pattern/, \"作者電子郵箱地址不得以匹配規則開頭\"],\n                                        // [/Author email must not end with a matching pattern/, \"作者電子郵箱地址不得以匹配規則結束\"],\n                                        // [/Author email must not contain a matching pattern/, \"作者電子郵箱地址不得包含匹配規則\"],\n                                        // [/Author email must not match a given regex pattern/, \"作者電子郵箱地址不得匹配給定的正則表達式規則\"],\n\n                                        // [/Committer email must start with a matching pattern/, \"提交者電子郵箱地址必須以匹配規則開頭\"],\n                                        // [/Committer email must end with a matching pattern/, \"提交者電子郵箱地址必須以匹配規則結束\"],\n                                        // [/Committer email must contain a matching pattern/, \"提交者電子郵箱地址必須包含匹配規則\"],\n                                        // [/Committer email must match a given regex pattern/, \"提交者電子郵箱地址必須匹配給定的正則表達式規則\"],\n                                        // [/Committer email must not start with a matching pattern/, \"提交者電子郵箱地址不得以匹配規則開頭\"],\n                                        // [/Committer email must not end with a matching pattern/, \"提交者電子郵箱地址不得以匹配規則結束\"],\n                                        // [/Committer email must not contain a matching pattern/, \"提交者電子郵箱地址不得包含匹配規則\"],\n                                        // [/Committer email must not match a given regex pattern/, \"提交者電子郵箱地址不得匹配給定的正則表達式規則\"],\n\n                                        // [/Branch name must start with a matching pattern/, \"分支名稱必須以匹配規則開頭\"],\n                                        // [/Branch name must end with a matching pattern/, \"分支名稱必須以匹配規則結束\"],\n                                        // [/Branch name must contain a matching pattern/, \"分支名稱必須包含匹配規則\"],\n                                        // [/Branch name must match a given regex pattern/, \"分支名稱必須匹配給定的正則表達式規則\"],\n                                        // [/Branch name must not start with a matching pattern/, \"分支名稱不得以匹配規則開頭\"],\n                                        // [/Branch name must not end with a matching pattern/, \"分支名稱不得以匹配規則結束\"],\n                                        // [/Branch name must not contain a matching pattern/, \"分支名稱不得包含匹配規則\"],\n                                        // [/Branch name must not match a given regex pattern/, \"分支名稱不得匹配給定的正則表達式規則\"],\n\n                                    \"How this rule will appear to your\": \"這個規則將如何在您的\",\n                                    \"organization\": \"組織\",\n                                    \"'s users throughout\": \"內的用戶中顯示\",\n                \"Restrict branch names\": \"限制分支名\",\n\n            \"Revert\": \"撤銷\",\n            \"Reverting...\": \"撤銷…\",\n            \"changes\": \"更改\",\n            \"change\": \"更改\",\n\n            // 右下角提示\n                \"Unauthorized\": \"未經授權\",\n                \"Ruleset created\": \"規則集已創建\",\n                \"Changes reverted\": \"更改已恢復\",\n                \"No changes have been made\": \"未作任何更改\",\n                \"Invalid rules: 'Required status checks'\": \"無效規則：“必需的狀態檢查”\",\n                \"This\": \"此\",\n                    \"does not target any resources and will not be applied.\": \"未針對任何資源，將不會生效。\",\n                \"Ruleset updated\": \"規則已更新\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Applies to (\\d+) target/, \"適用於 $1 個目標\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) branch rules? • targeting (\\d+) branch(es)?/, \"$1 條分支規則 • 針對 $1 個分支\"],\n        [/(\\d+) branch rules?/, \"$1 條分支規則\"],\n        [/(\\d+) rules?/, \"$1 條規則\"],\n        [/(\\d+) branch(?:es|)?/, \"$1 個分支\"],\n        [/(\\d+) tags?/, \" $1 個標籤\"],\n        [/Add '(.*)'/, \"添加 $1\"],\n        [/Commit message must start with a matching pattern/, \"提交信息必須以匹配規則開頭\"],\n        [/Commit message must end with a matching pattern/, \"提交信息必須以匹配規則結束\"],\n        [/Commit message must contain with a matching pattern/, \"提交信息必須包含匹配規則\"],\n        [/Commit message must match a given regex pattern/, \"提交信息必須匹配給定的正則表達式規則\"],\n        [/Commit message must not start with a matching pattern/, \"提交信息不得以匹配規則開頭\"],\n        [/Commit message must not end with a matching pattern/, \"提交信息不得以匹配規則結束\"],\n        [/Commit message must not contain a matching pattern/, \"提交信息不得包含匹配規則\"],\n        [/Commit message must not match a given regex pattern/, \"提交信息不得匹配給定的正則表達式規則\"],\n        [/Author email must start with a matching pattern/, \"作者電子郵箱地址必須以匹配規則開頭\"],\n        [/Author email must end with a matching pattern/, \"作者電子郵箱地址必須以匹配規則結束\"],\n        [/Author email must contain a matching pattern/, \"作者電子郵箱地址必須包含匹配規則\"],\n        [/Author email must match a given regex pattern/, \"作者電子郵箱地址必須匹配給定的正則表達式規則\"],\n        [/Author email must not start with a matching pattern/, \"作者電子郵箱地址不得以匹配規則開頭\"],\n        [/Author email must not end with a matching pattern/, \"作者電子郵箱地址不得以匹配規則結束\"],\n        [/Author email must not contain a matching pattern/, \"作者電子郵箱地址不得包含匹配規則\"],\n        [/Author email must not match a given regex pattern/, \"作者電子郵箱地址不得匹配給定的正則表達式規則\"],\n        [/Committer email must start with a matching pattern/, \"提交者電子郵箱地址必須以匹配規則開頭\"],\n        [/Committer email must end with a matching pattern/, \"提交者電子郵箱地址必須以匹配規則結束\"],\n        [/Committer email must contain a matching pattern/, \"提交者電子郵箱地址必須包含匹配規則\"],\n        [/Committer email must match a given regex pattern/, \"提交者電子郵箱地址必須匹配給定的正則表達式規則\"],\n        [/Committer email must not start with a matching pattern/, \"提交者電子郵箱地址不得以匹配規則開頭\"],\n        [/Committer email must not end with a matching pattern/, \"提交者電子郵箱地址不得以匹配規則結束\"],\n        [/Committer email must not contain a matching pattern/, \"提交者電子郵箱地址不得包含匹配規則\"],\n        [/Committer email must not match a given regex pattern/, \"提交者電子郵箱地址不得匹配給定的正則表達式規則\"],\n        [/Branch name must start with a matching pattern/, \"分支名稱必須以匹配規則開頭\"],\n        [/Branch name must end with a matching pattern/, \"分支名稱必須以匹配規則結束\"],\n        [/Branch name must contain a matching pattern/, \"分支名稱必須包含匹配規則\"],\n        [/Branch name must match a given regex pattern/, \"分支名稱必須匹配給定的正則表達式規則\"],\n        [/Branch name must not start with a matching pattern/, \"分支名稱不得以匹配規則開頭\"],\n        [/Branch name must not end with a matching pattern/, \"分支名稱不得以匹配規則結束\"],\n        [/Branch name must not contain a matching pattern/, \"分支名稱不得包含匹配規則\"],\n        [/Branch name must not match a given regex pattern/, \"分支名稱不得匹配給定的正則表達式規則\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Rulesets?/, \"設置 · 規則集\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"orgs/settings/rules\"] = I18N[\"zh-TW\"][\"repository/settings/rules\"];\nI18N[\"zh-TW\"][\"repository/rules\"] = I18N[\"zh-TW\"][\"repository/settings/rules\"];\n\nI18N[\"zh-TW\"][\"repository/settings/actions\"] = { // 倉庫設置 - 操作 /<user-name>/<repo-name>/settings/actions\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作頁面 /<user-name>/<repo-name>/settings/actions\n            \"Actions permissions\": \"操作權限\",\n                \"This setting has been disabled by organization administrators.\": \"此設置已被組織管理員禁用。\", // 組織倉庫\n                \"Allow all actions and reusable workflows\": \"允許所有操作和可複用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可複用的工作流程，而不管它是誰創作的或在哪裡定義的。\",\n            \"Disable actions\": \"禁用操作\",\n                \"The Actions tab is hidden and no workflows can run.\": \"“操作” 選項卡將被隱藏，無法運行任何工作流程。\",\n            // [/Allow ([^ ]+) actions and reusable workflows/, \"允許 $1 的操作和可複用的工作流程\"],\n                // [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的倉庫中定義的任何操作或可複用的工作流程。\"], // 操作頁面\n            // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允許 $1，並選擇非 $2、操作和可複用的工作流程\"],\n                // [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定條件的操作或工作流程，以及在 $1 的倉庫中定義的操作或可複用的工作流程。\"], // 操作頁面\n                \"Learn more about allowing specific actions and reusable workflows to run.\": \"瞭解更多關於允許運行特定操作和可複用的工作流程的信息。\",\n                \"Allow actions created by GitHub\": \"允許由 GitHub 創建的操作\",\n                \"Allow actions by Marketplace\": \"允許來自市場的操作，\",\n                \"verified creators\": \"由經驗證的創建者創建\",\n                \"Allow specified actions and reusable workflows\": \"允許指定的操作和可複用的工作流程\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"輸入以逗號分隔的操作和可複用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允許使用通配符、標籤和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可複用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整個組織或倉庫的示例：\",\n                // \"Save\": \"保存\",\n                // 頂部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n            \"Require actions to be pinned to a full-length commit SHA\": \"要求將操作固定到完整的提交 SHA\",\n\n            \"Artifact and log retention\": \"工件和日誌保留\",\n                \"Choose the repository settings for artifacts and logs.\": \"選擇工件和日誌的倉庫設置。\",\n                \"There is a maximum limit of\": \"最大限制為\",\n                \"days.\": \"天。\",\n                \"Your organization has set a maximum limit of\": \"您的組織已將上限設置為\", //組織倉庫\n                \"Learn more about the artifact and log retention policy.\": \"瞭解更多關於工件和日誌保留政策的信息。\",\n\n                // 輸入框提示\n                \"Duration must be 1 or more.\": \"不能小於 1\",\n                \"Duration must be 90 or less\": \"不能大於 90\",\n                \"There is a maximum limit of\": \"最多\",\n\n                \"days\": \"天\",\n\n            \"Cache\": \"緩存\",\n                \"Choose the repository settings for cache.\": \"選擇此存儲庫的緩存設置。\",\n                \"Cache retention\": \"緩存保留\",\n                    \"Retention can be set up to\": \"保留可以設置為\",\n                \"Cache size eviction limit\": \"緩存大小逐出限制\",\n                    \"Use this limit to control when cache evictions occur. Exceeding this limit will trigger evictions of the least recently used cache. Note this limit should not be used for controlling costs.\": \"使用此限制來控制何時發生緩存逐出。超過此限制將觸發最近最少使用的緩存的逐出。請注意，此限制不應用於控制成本。\",\n                    \"Total cache size can be set up to\": \"總緩存大小可設置為\",\n\n            \"Fork pull request workflows\": \"複刻拉取請求工作流程\",\n                \"Run workflows from fork pull requests\": \"從複刻拉取請求運行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"這告訴 Actions 運行工作流程，來自倉庫複刻的拉取請求。請注意，這樣做將使這些複刻的維護者有能力在源碼庫上使用具有讀取權限的令牌。\",\n                \"Send write tokens to workflows from fork pull requests.\": \"從複刻拉取請求，發送可寫令牌到工作流程\",\n                    \"This tells Actions to send tokens with\": \"這告訴 Actions 發送令牌\",\n                    \"write\": \"寫入\",\n                    \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"權限到工作流程，來自倉庫複刻的拉取請求。請注意，這樣做將授予這些複刻的維護者\",\n                    \"permissions against the source repository.\": \"權限，針對源倉庫。\",\n                \"Send secrets to workflows from fork pull requests.\": \"從複刻拉取請求，發送機密到工作流程\",\n                    \"This tells Actions to send repository secrets to workflows from pull requests originating from repository forks.\": \"這告訴 Actions 發送倉庫機密到工作流程，來自倉庫複刻的拉取請求。\",\n\n            \"Approval for running fork pull request workflows from contributors\": \"允許貢獻者運行複刻拉取請求工作流\",\n                \"Choose which subset of users will require approval before running workflows on their pull requests. Both the pull request author and the actor of the pull request event triggering the workflow will be checked to determine if approval is required. If approval is required, a user with write access to the repository must\": \"選擇在拉取請求上運行工作流之前需要批准的用戶子集。將檢查拉取請求作者和觸發工作流的拉取請求事件的行為者，以確定是否需要批准。如果需要批准，則必須由具有寫權限的用戶\",\n                \"approve the pull request workflow to be run.\": \"批准才能運行拉取請求工作流。\",\n            \"Fork pull request workflows from outside collaborators\": \"從外部協作者，複刻拉取請求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"選擇哪些外部協作者的子集需要批准才能對他們的拉取請求運行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"瞭解更多關於批准來自公共複刻的工作流運行的信息。\",\n            \"Require approval for first-time contributors who are new to GitHub\": \"要求對首次加入 GitHub 的貢獻者進行批准審查\",\n                \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近創建 GitHub 賬戶的首次貢獻者才需要獲得批准才能運行工作流程。\",\n                \"Only users who are both new on GitHub and who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有新加入 GitHub 和從未有提交或拉取請求合併到該倉庫的用戶才需要批准運行工作流。\",\n            \"Require approval for first-time contributors\": \"要求對首次貢獻者進行批准審查\",\n                \"Only first-time contributors will require approval to run workflows.\": \"只有首次貢獻者才需要獲得批准才能運行工作流程。\",\n                \"Only users who have never had a commit or pull request merged into this repository will require approval to run workflows.\": \"只有從未有提交或拉動請求合併到該倉庫的用戶才需要批准運行工作流。\",\n            \"Require approval for all outside collaborators\": \"要求對所有外部協作者進行批准審查\",\n                \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部協作者將始終需要批准才能在他們的拉取請求上運行工作流程。\",\n            \"Require approval for all external contributors\": \"要求對所有外部貢獻者進行批准審查\",\n                \"All users that are not a member or owner of this repository will require approval to run workflows.\": \"所有不是該倉庫成員或所有者的用戶，均需獲得批准才能運行工作流。\",\n                // [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是該倉庫成員或所有者，且未加入 $1 組織的用戶，均需獲得批准才能運行工作流。\"], // 組織\n\n            \"Workflow permissions\": \"工作流程權限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this repository. You can specify more granular permissions in the workflow using YAML.\": \"在倉庫中運行工作流程時，選擇授予 GITHUB_TOKEN 的默認權限。您可以使用 YAML 在工作流程中指定更細化的權限。\",\n                \"Learn more about managing permissions.\": \"瞭解更多關於管理權限的信息。\",\n                \"Read and write permissions\": \"讀取和寫入權限\",\n                    \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在倉庫中對所有作用域具有讀和寫的權限。\",\n                \"Read repository contents and packages permissions\": \"讀取倉庫的內容和軟體包的權限\",\n                    \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在倉庫中僅對內容和軟體包作用域具有只讀的權限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"選擇 GitHub Actions 是否可以創建拉取請求或提交批准拉取請求審查。\",\n                        \"Allow GitHub Actions to create and approve pull requests\": \"允許 GitHub Actions 創建和批准拉取請求\",\n\n                // 頂部提醒\n                    \"Default workflow permissions settings saved.\": \"已保存默認工作流程權限設置。\",\n\n        // 運行器頁面 /<user-name>/<repo-name>/settings/actions/runners\n            \"New self-hosted runner\": \"新建自託管運行器\",\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows.\": \"託管您自己的運行器，並定製用於在您的 GitHub Actions 工作流程中運行作業的環境。\",\n            \"Learn more about self-hosted runners\": \"瞭解更多關於自託管運行器的信息\",\n            \"There are no runners configured\": \"暫無設置運行器\",\n            \"Learn more about using runners\": \"瞭解更多關於使用運行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服務器上運行操作的信息。\",\n            \"Idle\": \"空閒\",\n            \"Active\": \"活躍\",\n            \"Offline\": \"離線\",\n\n        // 運行器詳情頁面 /<user-name>/<repo-name>/settings/actions/runners/<id>\n            \"Configuration\": \"配置\",\n            \"Labels\": \"標籤\",\n            \"Labels are values used with the\": \"標籤是在工作流的 YAML 文件中與\",\n            \"key in your workflow's YAML to send jobs to specific runners. To copy a label, click on it.\": \"鍵配合使用的值，用於將任務分配到特定的運行器。要複製標籤，請單擊它。\",\n            \"Learn more about labels.\": \"瞭解有關標籤的更多信息。\",\n            \"Active Job\": \"活躍中的作業\",\n            \"There are currently no running jobs\": \"當前沒有正在運行的作業\",\n            \"Add `\": \"在工作流的 YAML 文件中添加 `\",\n            \"` to your workflow's YAML to send jobs to this runner.\": \"`，即可將任務發送至此運行器。\",\n            \"In progress\": \"進行中\",\n            \"Cancel run\": \"取消運行\",\n            \"View workflow file\": \"查看工作流文件\",\n\n        // 創建運行器頁面 /<user-name>/<repo-name>/settings/actions/runners/new\n            // [/\\/ Add new self-hosted runner ·/, \"/ 創建自託管運行器 ·\"],\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一個自託管運行器需要您下載、配置並執行 GitHub Actions 運行器。下載並配置 GitHub Actions 運行器 後，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服務條款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企業服務條款\",\n                \", as applicable.\": \"，如適用。\",\n            \"Runner image\": \"運行器鏡像\",\n            \"Architecture\": \"架構\",\n            \"Download\": \"下載\",\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我們建議在 “\\\\actions-runner” 下配置運行器。這將有助於避免與 Windows 上的服務標識文件夾權限和長路徑限制相關的議題。\",\n            \"Configure\": \"設置\",\n            \"Using your self-hosted runner\": \"使用您的自託管運行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"關於配置、運行或關閉運行器的其他細節，請查看我們的\",\n            \"product docs\": \"產品文檔\",\n            \"Add new self-hosted runner\": \"添加新的自託管運行器\",\n            \"Using self-hosted runners in public repositories is not recommended.\": \"在公共倉庫中使用自託管運行器不推薦。\",\n            \"Forks of your public repository can potentially run dangerous code on your self-hosted runner by creating a pull request.\": \"公共倉庫的複刻可以潛在地在您的自託管運行器上運行危險程式碼，通過創建拉取請求。\",\n            \"Learn more about security hardening for self-hosted runners\": \"瞭解更多關於自託管運行器的安全強化\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. If you do not already have an existing volume licensing agreement for your GitHub purchases, by downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一個自託管運行器需要您下載、配置並執行 GitHub Actions 運行器。如果您還沒有現有的 GitHub 購買量許可證協議，通過下載並配置 GitHub 操作運行器，您同意\",\n            \"GitHub Customer Agreement\": \"GitHub 客戶協議\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/\\/ Add new self-hosted runner ·/, \"/ 創建自託管運行器 ·\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允許 $1 的操作和可複用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within ([^ ]+) can be used./, \"可以使用在 $1 的倉庫中定義的任何操作或可複用的工作流程。\"], // 操作頁面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允許 $1，並選擇非 $2、操作和可複用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within ([^ ]+), can be used./, \"可以使用符合指定條件的操作或工作流程，以及在 $1 的倉庫中定義的操作或可複用的工作流程。\"], // 操作頁面\n        [/All users that are not a member or owner of this repository and not a member of the ([^ ]+) organization will require approval to run workflows./, \"所有不是該倉庫成員或所有者，且未加入 $1 組織的用戶，均需獲得批准才能運行工作流。\"], // 組織\n        [/Add new self-hosted runner · (.+)/, \"添加自託管運行器 · $1\"],\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions settings/, \"操作設置\"],\n            [/Runners/, \"運行器\"],\n            [/Add new self-hosted runner/, \"添加自託管運行器\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/models/access-policy\"] = { // 倉庫設置 - 模型 /<user-name>/<repo-name>/settings/models/access-policy\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        //\"Models\": \"模型\",\n\n        \"Models in this repository\": \"此倉庫模型\",\n            \"If disabled, the Models tab will be hidden, and the prompt editor and comparison tooling evaluations will be unavailable.\": \"如果禁用，模型選項卡將被隱藏，提示編輯器和對比工具評估也將不可用。\",\n            \"Learn more about Models.\": \"瞭解更多。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"regexp\": [\n            [/settings · GitHub Models access policy/, \"設置 · GitHub 模型訪問政策\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/hooks\"] = { // 倉庫設置 - Web 鉤子 /<user-name>/<repo-name>/settings/hooks\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Web 鉤子 頁面 /<user-name>/<repo-name>/settings/hooks====================================\n            \"Add webhook\": \"添加 Web 鉤子\",\n            \"Webhooks allow external services to be notified when certain events happen. When the specified events happen, we'll send a POST request to each of the URLs you provide. Learn more in our\": \"Web 鉤子允許在發生某些事件時通知外部服務。當指定的事件發生時，我們將向您提供的每個 URL 發送 POST 請求。瞭解更多信息，在我們的\",\n            \"Webhooks Guide\": \"Web 鉤子指南\",\n\n            \"We will also send events from this repository to your\": \"我們還將把這個倉庫的事件發送到您的\", // 組織倉庫\n            \"organization webhooks\": \"組織 Web 鉤子\", // 組織倉庫\n\n            \"This hook has never been triggered.\": \"此鉤子從未被觸發過。\",\n            \"Last delivery was successful.\": \"上次觸發成功。\",\n\n            // 刪除對話框\n                \"Delete webhook?\": \"刪除 Web 鉤子？\",\n                \"This action cannot be undone. Future events will no longer be delivered to this webhook\": \"此操作無法撤消。未來的事件將不再傳遞到此 Web 鉤子\",\n                \"Yes, delete webhook\": \"是的，刪除 Web 鉤子\",\n\n        // 添加鉤子 頁面 /<user-name>/<repo-name>/settings/hooks/new ====================================\n            \"Webhooks /\": \"Web 鉤子 /\",\n            \"Add webhook\": \"添加 Web 鉤子\",\n            \"We'll send a\": \"我們將\",\n            \"request to the URL below with details of any subscribed events. You can also specify which data format you'd like to receive (JSON,\": \"請求到以下 URL，其中包含任何訂閱事件的詳細信息。您還可以指定要接收的數據格式（JSON、\",\n            \"etc\": \"等\",\n            \"). More information can be found in\": \"）。更多信息可以在\",\n            \"our developer documentation\": \"開發人員文檔\",\n\n            \"Payload URL\": \"有效負載 URL\",\n            \"Content type\": \"內容類型\",\n            \"Secret\": \"機密\",\n                \"Leave blank to remove secret\": \"留空以刪除機密\",\n            \"There is currently a secret configured for this webhook. If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated.\": \"目前 Web 鉤子已配置了一個機密。如果您丟失或忘記了這個機密，可以更改它，但請注意，任何使用此機密的集成將需要更新\",\n            \"Change secret\": \"修改機密\",\n\n            \"SSL verification\": \"SSL 驗證\",\n            \"By default, we verify SSL certificates when delivering payloads.\": \"默認情況下，我們在交付有效負載時驗證 SSL 證書。\",\n            \"Enable SSL verification\": \"啟用 SSL 驗證\",\n            \"Disable\": \"禁用\",\n            \"(not recommended)\": \"（不推薦）\",\n                \"Are you sure?\": \"您確定嗎？\",\n                \"Warning\": \"警告\",\n                \": Disabling SSL verification has serious implications.\": \"：禁用 SSL 驗證具有嚴重的影響。\",\n                \"SSL verification helps ensure that hook payloads are delivered to your URL endpoint securely, keeping your data away from prying eyes. Disabling this option is\": \"SSL 驗證有助於確保鉤子有效負載安全地傳送到您的 URL 端點，使您的數據遠離窺探。禁用此選項是\",\n                \"not recommended\": \"不推薦的\",\n                \"Disable, I understand my webhooks may not be secure\": \"禁用，我明白我的 web 鉤子可能不安全\",\n\n            \"Which events would you like to trigger this webhook?\": \"您希望哪些事件觸發此 Web 鉤子？\",\n                \"Just the\": \"僅\",\n                \"push\": \"推送\",\n                \"event.\": \"事件。\",\n                \"Send me\": \"發送給我\",\n                \"everything\": \"所有\",\n                \"Let me select individual events.\": \"讓我選擇單個事件。\",\n                    \"Branch or tag creation\": \"分支或標籤創建\",\n                        \"Branch or tag created.\": \"分支或標籤的創建。\",\n                    \"Branch or tag deletion\": \"分支或標籤刪除\",\n                        \"Branch or tag deleted.\": \"分支或標籤的刪除。\",\n                    \"Branch protection configurations\": \"分支保護配置\",\n                        \"All branch protections disabled or enabled for a repository.\": \"禁用或啟用倉庫的所有分支保護。\",\n                    \"Branch protection rules\": \"分支保護規則\",\n                        \"Branch protection rule created, deleted or edited.\": \"分支保護規則的創建、刪除或編輯。\",\n                    \"Bypass requests for push rulesets\": \"繞過推送規則集的請求\",\n                        \"Push ruleset bypass request was created, cancelled, completed, received a response, or a response was dismissed.\": \"推送規則集旁路請求已創建、取消、完成、收到回覆或回覆被駁回。\",\n                    \"Bypass requests for secret scanning push protections\": \"繞過機密掃描推送保護請求\",\n                        \"Secret scanning push protection bypass request was created, cancelled, completed, received a response, or a response was dismissed. Note: Delegated bypass for push protection is currently in beta and subject to change.\": \"機密掃描推送保護旁路請求的創建、取消、完成、收到回覆或回覆被駁回。注意：推送保護的委託旁路目前處於測試階段，可能會有更改。\",\n                    \"Check runs\": \"檢查運行\",\n                        \"Check run is created, requested, rerequested, or completed.\": \"檢查運行的創建、請求、重新請求或完成。\",\n                    \"Check suites\": \"檢查套件\",\n                        \"Check suite is requested, rerequested, or completed.\": \"檢查套件的請求、重新請求或完成。\",\n                    \"Code scanning alerts\": \"程式碼掃描警報\",\n                        \"Code Scanning alert created, fixed in branch, or closed\": \"程式碼掃描警報的創建、在分支中的修復或關閉。\",\n                    \"Collaborator add, remove, or changed\": \"協作者的添加、刪除或更改\",\n                        \"Collaborator added to, removed from, or has changed permissions for a repository.\": \"協作者添加到倉庫、從倉庫中刪除或更改了倉庫的權限。\",\n                    \"Commit comments\": \"提交評論\",\n                        \"Commit or diff commented on.\": \"提交或差異評論。\",\n                    \"Custom property\": \"自定義屬性\",\n                        \"Custom property is created, updated, or deleted.\": \"自定義屬性的創建、更新或刪除。\",\n                    \"Custom property values\": \"自定義屬性值\",\n                        \"Custom property values are changed for a repository\": \"倉庫自定義屬性值的更改。\",\n                    \"Dependabot alerts\": \"Dependabot 警報\",\n                        \"Dependabot alert auto_dismissed, auto_reopened, created, dismissed, reopened, fixed, or reintroduced.\": \"Dependabot 警報自動解除、自動重新打開、創建、解除、重新打開、修復或重新引入。\",\n                    \"Deploy keys\": \"部署密鑰\",\n                        \"A deploy key is created or deleted from a repository.\": \"在倉庫中部署密鑰的創建或刪除。\",\n                    \"Deployment statuses\": \"部署狀態\",\n                        \"Deployment status updated from the API.\": \"通過 API 更新部署狀態。\",\n                    \"Deployments\": \"部署\",\n                        \"Repository was deployed or a deployment was deleted.\": \"倉庫的部署或刪除部署。\",\n                    \"Discussion comments\": \"討論評論\",\n                        \"Discussion comment created, edited, or deleted.\": \"討論評論的創建、編輯或刪除。\",\n                    // \"Discussion\": \"討論\",\n                        \"Discussion created, edited, closed, reopened, pinned, unpinned, locked, unlocked, transferred, answered, unanswered, labeled, unlabeled, had its category changed, or was deleted.\": \"討論的創建、編輯、關閉、重新打開、置頂、取消置頂、鎖定、解鎖、轉移、答覆、取消答覆、標記、取消標記、更改其類別或刪除。\",\n                    \"Forks\": \"複刻\",\n                        \"Repository forked.\": \"倉庫複刻。\",\n                    \"Issue comments\": \"議題評論\",\n                        \"Issue comment created, edited, or deleted.\": \"議題評論的創建、編輯或刪除。\",\n                    // \"Issue\": \"議題\",\n                        \"Issue opened, edited, deleted, transferred, pinned, unpinned, closed, reopened, assigned, unassigned, labeled, unlabeled, milestoned, demilestoned, locked, or unlocked.\": \"議題的打開、編輯、刪除、轉移、置頂、取消置頂、關閉、重新打開、分配、取消分配、標記、取消標記、設置里程碑、取消里程碑、鎖定或解鎖。\",\n                    \"Labels\": \"標籤\",\n                        \"Label created, edited or deleted.\": \"標籤的創建、編輯或刪除。\",\n                    \"Memberships\": \"團隊成員\", // 組織設置\n                        \"Team membership added or removed.\": \"團隊成員的添加或刪除。\",\n                    \"Merge groups\": \"合併組\",\n                        \"Merge Group requested checks, or was destroyed.\": \"合併組的請求檢查或銷燬。\",\n                    \"Meta\": \"元數據\",\n                        \"This particular hook is deleted.\": \"這個特定的鉤子被刪除。\",\n                    \"Milestones\": \"里程碑\",\n                        \"Milestone created, closed, opened, edited, or deleted.\": \"里程碑的創建、關閉、打開、編輯或刪除。\",\n                    \"Org blocks\": \"組織黑名單\", // 組織設置\n                        \"A user has been blocked or unblocked.\": \"用戶拉黑或解除拉黑。\",\n                    \"Organizations\": \"組織\", // 組織設置\n                        \"Organization deleted, renamed, member invited, member added, or member removed.\": \"組織的刪除、重命名以及成員的邀請、添加或刪除。\",\n                    // \"Packages\": \"軟體包\",\n                        \"GitHub Packages published or updated in a repository.\": \"倉庫中 GitHub 軟體包的發佈或更新 。\",\n                    \"Page builds\": \"構建 GitHub Pages\",\n                        \"Pages site built.\": \"GitHub Pages 站點的建立。\",\n                    \"Project cards\": \"專案面板卡\",\n                        \"Project card created, updated, or deleted.\": \"專案面板卡的創建、更新或刪除。\",\n                    \"Project columns\": \"專案欄目\",\n                        \"Project column created, updated, moved or deleted.\": \"專案列目的創建、更新、移動或刪除。\",\n                    \"Project v2 items\": \"專案項 v2\", // 組織設置\n                        \"Project item created, edited, deleted, archived, restored, converted, or reordered. Feedback is welcome in\": \"專案條目的創建、編輯、刪除、歸檔、恢復、轉換或重新排序。歡迎提供反饋意見在\",\n                        \"this discussion\": \"這個討論\",\n                    // \"\": \"專案\",\n                        \"Project created, updated, or deleted.\": \"專案的創建、更新或刪除。\",\n                    \"Projects v2\": \"專案 v2\", // 組織設置\n                        \"Project created, updated, deleted, closed, or reopened. Feedback is welcome in\": \"專案的創建、更新、刪除、關閉或重新打開。歡迎提供反饋意見在\",\n                    \"Pull request review comments\": \"拉取請求審查意見\",\n                        \"Pull request diff comment created, edited, or deleted.\": \"拉取請求差異評論的創建、編輯或刪除。\",\n                    \"Pull request review threads\": \"拉取請求的審查線程\",\n                        \"A pull request review thread was resolved or unresolved.\": \"拉取請求的審查線程的解決或未解決。\",\n                    \"Pull request reviews\": \"拉取請求審查\",\n                        \"Pull request review submitted, edited, or dismissed.\": \"拉取請求審查的提交、編輯或駁回。\",\n                    // \"\": \"拉取請求\",\n                        \"Pull request assigned, auto merge disabled, auto merge enabled, closed, converted to draft, demilestoned, dequeued, edited, enqueued, labeled, locked, milestoned, opened, ready for review, reopened, review request removed, review requested, synchronized, unassigned, unlabeled, or unlocked.\": \"拉取請求的分配、禁用自動合併、啟用自動合併、關閉、轉換為草案、取消里程碑、取消隊列、編輯、隊列、標記、鎖定、設置里程碑、打開、準備審查、重新打開、取消審查請求、請求審查、同步、取消分配、取消標記或解鎖。\",\n                    \"Pushes\": \"推送\",\n                        \"Git push to a repository.\": \"Git 推送到倉庫。\",\n                    \"Registry packages\": \"註冊軟體包\",\n                        \"Registry package published or updated in a repository.\": \"倉庫中註冊軟體包的發佈或更新。\",\n                    \"Releases\": \"發行版\",\n                        \"Release created, edited, published, unpublished, or deleted.\": \"發行版的創建、編輯、發佈、取消發佈或刪除。\",\n                    // \"\": \"倉庫\",\n                        \"Repository created, deleted, archived, unarchived, publicized, privatized, edited, renamed, or transferred.\": \"倉庫的創建、刪除、歸檔、取消歸檔、公開、私有化、編輯、重命名或轉讓。\",\n                    \"Repository advisories\": \"倉庫公告\",\n                        \"Repository advisory published or reported.\": \"倉庫公告發布或報告。\",\n                    \"Repository imports\": \"倉庫導入\",\n                        \"Repository import succeeded, failed, or cancelled.\": \"倉庫導入的成功、失敗或取消。\",\n                    \"Repository rulesets\": \"倉庫規則集\",\n                        \"Repository ruleset created, deleted or edited.\": \"倉庫規則集的創建、刪除或編輯。\",\n                    \"Repository vulnerability alerts\": \"倉庫漏洞警報\",\n                        \"Dependabot alert (aka dependency vulnerability alert) created, resolved, or dismissed on a repository.\": \"Dependabot 警報（又名依賴漏洞警報）在倉庫上的創建、解決或解除。\",\n                    \"Secret scanning alert locations\": \"機密掃描警報位置\",\n                        \"Secrets scanning alert location created.\": \"機密掃描警報位置的創建。\",\n                    \"Secret scanning alerts\": \"機密掃描警報\",\n                        \"Secrets scanning alert created, resolved, reopened, validated, or publicly leaked.\": \"機密掃描警報的創建、解決、重新打開、驗證或公開洩露。\",\n                    \"Security and analyses\": \"安全和分析\",\n                        \"Code security features enabled or disabled for a repository.\": \"啟用或禁用倉庫的程式碼安全功能。\",\n                    \"Secret scanning scans\": \"機密掃描\",\n                        \"Secrets scanning scan completed.\": \"機密掃描已完成\",\n                    // \"\": \"星標\",\n                        \"A star is created or deleted from a repository.\": \"標星或取消倉庫星標。\",\n                    \"Statuses\": \"狀態\",\n                        \"Commit status updated from the API.\": \"通過 API 更新提交狀態。\",\n                    \"Team adds\": \"團隊添加\",\n                        \"Team added or modified on a repository.\": \"在倉庫上添加或修改的團隊。\",\n                    \"Teams\": \"團隊\",  // 組織設置\n                        \"Team is created, deleted, edited, or added to/removed from a repository.\": \"團隊的創建、刪除、編輯以及向倉庫添加團隊、從倉庫中移除團隊。\",\n                    \"Visibility changes\": \"可見性變化\",\n                        \"Repository changes from private to public.\": \"倉庫從私有更改為公共。\",\n                    \"Watches\": \"關注\",\n                        \"User stars a repository.\": \"用戶標星倉庫。\",\n                    \"Wiki\": \"\",\n                        \"Wiki page updated.\": \"Wiki 頁面的更新。\",\n                    \"Workflow jobs\": \"工作流程作業\",\n                        \"Workflow job queued, waiting, in progress, or completed on a repository.\": \"倉庫中工作流作業的隊列、等待、正在進行或完成。\",\n                    \"Workflow runs\": \"工作流程運行\",\n                        \"Workflow run requested or completed on a repository.\": \"倉庫中工作流程運行的請求或完成。\",\n                \"Active\": \"激活\",\n                \"We will deliver event details when this hook is triggered.\": \"當鉤子被觸發時，我們將提供事件詳細信息。\",\n\n            // 頂部提醒\n            \"Okay, that hook was successfully created. We sent a ping payload to test it out! Read more about it at https://docs.github.com/webhooks/#ping-event.\": \"好的，這個鉤子已經成功創建。我們發送了一個 ping 負載來測試它! 閱讀更多關於它的信息，請訪問 https://docs.github.com/webhooks/#ping-event。\",\n\n        // 管理 鉤子 /<user-name>/<repo-name>/settings/hooks/<id>\n            \"Manage webhook\": \"管理 Web 鉤子\",\n            \"If you've lost or forgotten this secret, you can change it, but be aware that any integrations using this secret will need to be updated. —\": \"如果您丟失或忘記了此機密，則可以更改它，但請注意，使用此機密的任何集成都需要更新。 —\",\n            \"Change Secret\": \"更改機密\",\n            \"Update webhook\": \"更新 Web 鉤子\",\n            // 頂部提醒\n                \"Okay, the hook was successfully updated.\": \"好的，Web 鉤子已經成功更新。\",\n            \"Delete webhook\": \"刪除 Web 鉤子\",\n\n        // 最近交付標籤 /<user-name>/<repo-name>/settings/hooks/<id>?tab=deliveries\n            \"Recent Deliveries\": \"最近交付\",\n                \"redelivery\": \"再交付\",\n            \"Loading deliveries…\": \"載入交付…\",\n            \"Detailed delivery information will be shown here once the hook has been triggered.\": \"一旦觸發鉤子，詳細的交付信息將在此處顯示。\",\n\n            \"Request\": \"請求\",\n            \"Response\": \"應答\",\n            \"Redeliver\": \"重新交付\",\n                \"Redeliver payload?\": \"重新交付有效負載？\",\n                \"The payload will be delivered to\": \"該有效負載將被發送到\",\n                \"using the current webhook configuration.\": \"使用當前的 Web 鉤子 配置。\",\n                \"Yes, redeliver this payload\": \"是的，重新發送此有效負載\",\n                    \"Delivering payload…\": \"交付有效載荷…\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Completed in (\\d+(\\.\\d+)) seconds?./, \"在 $1 秒內完成。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Add webhook\": \"添加 Web 鉤子\",\n        },\n        \"regexp\": [\n            [/Webhooks · Settings/, \"Web 鉤子 · 設置\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"orgs/settings/hooks\"] = I18N[\"zh-TW\"][\"repository/settings/hooks\"];\n\nI18N[\"zh-TW\"][\"repository/settings/copilot/code_review\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 程式碼審查\n            \"Enable automatic code review\": \"啟用自動程式碼審查\",\n                \"You can enable Copilot to automatically review pull requests by enabling it inside Repository rules.\": \"您可以在倉庫規則中啟用 Copilot，從而讓 Copilot 自動審查拉取請求。\",\n                \"Learn more about automatic code reviews.\": \"瞭解更多關於自動程式碼生成的信息。\",\n                \"Go to repository rules\": \"前往倉庫規則\",\n\n        \"General settings\": \"常規設置\",\n            \"Use custom instructions when reviewing pull requests\": \"在審查拉取請求時使用自定義指令\",\n                \"Copilot references\": \"Copilot 在審查拉取請求時會參考\",\n                \"repository custom instructions\": \"倉庫自定義指令\",\n                \"when reviewing pull requests.\": \"。\",\n\n        \"With Copilot code review, you can add Copilot as a reviewer to your pull requests, including drafts. You can also select lines in Visual Studio Code and ask Copilot to review and comment on specific sections.\": \"使用 Copilot 程式碼審查，您可以將 Copilot 添加為拉取請求的審查者，包括草稿。您還可以在 Visual Studio Code 中選擇行，並請求 Copilot 審查和評論特定部分。\",\n        \"Learn more about Copilot code reviews.\": \"瞭解更多關於 Copilot 程式碼審查的信息。\",\n\n        \"Automated code reviews using rulesets\": \"使用規則集自動程式碼審查\",\n            \"Use rulesets to configure Copilot to review pull requests automatically.\": \"使用規則集配置 Copilot 自動審查拉取請求。\",\n            \"Learn how to set up rulesets.\": \"瞭解如何設置規則集。\",\n\n        \"Go to rulesets\": \"前往規則集\",\n        \"No rulesets set up for automated reviews\": \"尚無設置自動程式碼審查的規則集\",\n        \"Create a ruleset to automate code reviews for pull requests targeting your default branch\": \"創建一個規則集，自動程式碼審查針對您的默認分支的拉取請求\",\n        \"Create ruleset for default branch\": \"創建針對默認分支的規則集\",\n    },\n    \"regexp\": [\n        // 1 repository ruleset\n        [/(\\d+) repository rulesets?/, \"$1 倉庫規則集\"],\n        // 3 branch rules • targeting 1 branch\n        [/(\\d+) branch rules? • targeting (\\d+) branch(?:es)?/, \"$1 分支規則 • 針對 $2 分支\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Code review/, \"設置 · 程式碼審查\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/copilot/coding_agent\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        \"Copilot coding agent\": \"Copilot 編程智能體\",\n\n        \"You can configure Copilot coding agent for other users with access to this repository, but you won't be able to assign tasks to Copilot because you don't have a Copilot Pro+ or Copilot Enterprise license.\": \"您可以為其他具有此倉庫訪問權限的用戶配置 Copilot 編程智能體，但由於您沒有 Copilot Pro+ 或 Copilot 企業版許可證，因此無法向 Copilot 分配任務。\",\n\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Simply assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate. To learn more, see the\": \"使用 Copilot 編程智能體，開發者可以將任務委託給 Copilot，從而專注於更具創造性、複雜性和高影響力的重要工作。只需將議題分配給 Copilot，等待助手發起評審請求，然後在拉取請求上留下反饋進行迭代。更多信息請參閱\",\n        \"With Copilot coding agent, developers can delegate tasks to Copilot, freeing them to focus on the creative, complex, and high-impact work that matters most. Assign an issue to Copilot, wait for the agent to request review, then leave feedback on the pull request to iterate.\": \"藉助 Copilot 編程智能體，開發者可以將任務委託給 Copilot，從而有更多時間專注於最重要的創造性、複雜和高影響力的工作。只需將議題分配給 Copilot，等待請求程式碼審查，然後在拉取請求上留下反饋，進行迭代即可。\",\n        \"Learn more about Copilot coding agent\": \"瞭解更多\",\n\n        \"Internet access\": \"訪問互聯網\",\n            \"Ensure that the agent only accesses approved network resources during code generation and execution.\": \"確保智能體在程式碼生成和執行過程中只訪問已批准的網絡資源。\",\n                \"Learn more about customizing network access\": \"瞭解更多\",\n\n            \"Enable firewall\": \"啟用防火牆\",\n                \"Recommended\": \"推薦\",\n                \"Limit Copilot coding agent’s Internet access to only allow access to allowlisted locations\": \"將 Copilot 編程智能體的互聯網訪問權限限制為僅允許訪問白名單中的位置。\",\n            \"Recommended allowlist\": \"推薦白名單\",\n                \"Allow access to locations frequently used to install tools, packages, and dependencies\": \"允許訪問常用於安裝工具、軟體包和依賴項的位置\",\n            \"Custom allowlist\": \"自定義白名單\",\n                \"Allow access to specific domains, IP addresses, or URLs.\": \"允許訪問特定域名、IP 地址或 URL。\",\n\n            // settings/copilot/coding_agent/allowlist 自定義白名單\n                \"Add items to the allowlist to enable Copilot coding agent to access specific domains, IP addresses, or URLs.\": \"將專案添加到允許列表，以便 Copilot 智能體能夠訪問特定的域名、IP 地址或 URL。\",\n                    \"See the GitHub Docs for syntax and examples.\": \"請參閱 GitHub 文檔以獲取語法和示例。\",\n\n                \"e.g. https://example.com/a/path or example.com\": \"例：https://example.com/a/path 或 example.com\",\n                \"Add rule\": \"添加規則\",\n                \"Rule must be a valid domain, IP address, or URL\": \"規則必須是有效域名、IP 地址或 URL\",\n\n                \"No rules yet\": \"無規則\",\n                    \"Tip: Paste a list of rules into the input to add them all at once.\": \"提示：將規則列表粘貼到輸入框中，可以一次性添加所有規則。\",\n                \"Delete rule\": \"刪除規則\",\n\n                // 保存\n                    \"Allowlist settings saved successfully!\": \"白名單設置保存成功！\",\n\n        \"Model Context Protocol (MCP)\": \"模型上下文協議（MCP）\",\n            \"The MCP is an open standard that defines how applications share context with large language models (LLMs). MCP provides a standardized way to connect AI models to different data sources and tools, enabling them to work together more effectively.\": \"MCP 是一個開放標準，定義了應用程式如何與大型語言模型（LLM）共享上下文。MCP 提供了一種標準化的方法，將 AI 模型與不同的數據源和工具連接起來，使它們能夠更高效地協同工作。\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services. For information on how to write your JSON MCP configuration, see the\": \"您可以使用 MCP 通過將其連接到其他工具和服務，來擴展 Copilot 編程智能體的功能。有關如何編寫您的 JSON MCP 配置的詳細信息，請參見\",\n            \"You can use MCP to extend the capabilities of Copilot coding agent by connecting it to other tools and services.\": \"您可以使用 MCP 通過將其連接到其他工具和服務，來擴展 Copilot 編程智能體的功能。\",\n                \"Learn how to write your JSON MCP configuration\": \"瞭解如何編寫您的 JSON MCP 配置\",\n\n            \"MCP configuration\": \"MCP 配置\",\n                // 程式碼窗 - 底部欄\n                  \"to toggle the\": \"切換\",\n                  \"key moving focus. Alternatively, use\": \"鍵移動對焦。或者使用\",\n                  \"then\": \"鍵，然後\",\n                  \"to move to the next interactive element on the page.\": \"鍵移動到頁面上的下一個交互元素。\",\n\n            \"Your configuration will be validated on save.\": \"您的配置將在保存時進行驗證。\",\n\n            \"Save MCP configuration\": \"保存\",\n\n            \"Use of Copilot coding agent is subject to the\": \"使用 Copilot 編程智能體需遵守\",\n                \"pre-release terms\": \"預發行條款\",\n    },\n    \"regexp\": [\n        [/(\\d+) rules?/, \"$1 規則\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Copilot coding agent\": \"Copilot 編程智能體\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/environments\"] = { // 倉庫設置 - 環境 /<user-name>/<repo-name>/settings/environment\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 倉庫 環境 /<user-name>/<repo-name>/settings/environments\n            \"New environment\": \"新建環境\",\n            \"You can configure environments with protection rules, variables, and secrets.\": \"您可以使用保護規則，變量和機密配置環境。\",\n            \"Learn more about configuring environments.\": \"瞭解更多關於配置環境的信息。\",\n\n            \"There are no environments for this repository\": \"此倉庫尚無環境\",\n            \"Environments are used by your workflows for deployments.\": \"您的工作流程使用環境進行部署。\",\n            \"You can configure environments with protection rules and secrets.\": \"您可以使用保護規則和機密配置環境。\",\n\n            \"Delete environment\": \"刪除環境\",\n            // 刪除環境對話框\n            \"Are you sure you want to delete this environment?\": \"您確定要刪除此環境嗎？\",\n                \"Deleting an environment will delete all associated secrets, variables, and protection rules.\": \"刪除環境將刪除所有關聯的機密、變量和保護規則。\",\n                \"I understand, delete this environment\": \"我明白了，依然刪除這個環境\",\n            // 頂部提醒\n                \"Environment deleted.\": \"環境已刪除。\",\n                \"There was an error saving your new environment.\": \"保存新環境時出錯。\",\n\n        // 倉庫 新建環境 /<user-name>/<repo-name>/settings/environments/new\n            \"/ Add\": \"/ 添加\",\n            \"Name\": \"名稱\",\n            \"Configure environment\": \"設置環境\",\n            \"Name can't be blank\": \"名稱不能為空\",\n\n        // 編輯環境 /<user-name>/<repo-name>/settings/environments/<id>/edit\n            // 頂部提醒\n                // [/Environment \\\"([^ ]+)\\\" created./, \"環境 “$1” 已創建。\"],\n                // [/Environment \\\"([^ ]+)\\\" updated./, \"環境 “$1” 已更新。\"],\n\n            \"/ Configure\": \"/ 設置\",\n\n            \"Deployment protection rules\": \"部署保護規則\",\n                \"Configure reviewers, timers, and custom rules that must pass before deployments to this environment can proceed.\": \"配置審查者、計時器和自定義規則，在繼續部署到此環境之前必須通過這些規則。\",\n\n                \"Required reviewers\": \"所需的審查者\",\n                    \"Specify people or teams that may approve workflow runs when they access this environment.\": \"指定訪問此環境時可以批准工作流運行的人員或團隊。\",\n                        \"Add up to\": \"最多添加\",\n                        \"more\": \" \",\n                        \"reviewers\": \"位審查者\",\n                        \"Search for people or teams...\": \"搜索人員或團隊…\",\n\n                    \"Prevent self-review\": \"防止自我審查\",\n                        \"Require a different approver than the user who triggered the workflow run.\": \"要求與觸發工作流程運行的用戶不同的批准審查者。\",\n                \"Wait timer\": \"等待計時器\",\n                    \"Set an amount of time to wait before allowing deployments to proceed.\": \"設置允許部署繼續之前等待的時間。\",\n                    \"minutes\": \"分鐘\",\n                \"Enable custom rules with GitHub Apps\": \"使用 GitHub Apps 啟用自定義規則\",\n                    \"Learn about existing apps\": \"瞭解現有應用\",\n                    \"create your own protection rules\": \"創建您自己的保護規則\",\n                    \"so you can deploy with confidence.\": \"以便您可以放心地進行部署。\",\n                \"Allow administrators to bypass configured protection rules\": \"允許管理員繞過配置的保護規則\",\n                \"Save protection rules\": \"保存保護規則\",\n\n            \"Deployment branches and tags\": \"部署分支和標籤\",\n                \"Limit which branches and tags can deploy to this environment based on rules or naming patterns.\": \"根據規則或命名模式限制哪些分支和標籤可以部署到此環境。\",\n                \"No restriction\": \"沒有限制\",\n                    \"No restriction to which branch or tag from this repository can deploy.\": \"不限制倉庫中的分支或標籤進行部署。\",\n                \"Protected branches only\": \"僅受保護的分支\",\n                    \"Deployment limited to branches with protection rules.\": \"部署僅限於具有保護規則的分支。\",\n                \"Selected branches and tags\": \"選中的分支和標籤\",\n                    \"Specify a list of branches and tags using naming patterns.\": \"使用命名模式指定分支和標籤的列表。\",\n\n                \"Applies to\": \"適用於\",\n                // [/(\\d+) branch(?:es|)/, \"$1 個分支\"],\n                \". Based on the existing\": \"。基於已有的\",\n                \"repository branch protection rules\": \"倉庫分支保護規則\",\n                // [/Currently applies to (\\d+) branch(?:es|)/, \"目前適用於 $1 個分支\"],\n\n                \"No branch or tag rules applied yet:\": \"尚未應用分支或標籤規則：\",\n                \"all branches and tags are still allowed to deploy.\": \"仍允許所有分支和標籤進行部署。\",\n\n                // [/(\\d+) branch(?:es|) allowed/, \"允許 $1 個分支\"],\n                // [/(\\d+) branch(?:es|) and (\\d+)  tags? allowed/, \"允許 $1 個分支和 $2 個標籤\"],\n                \"Add deployment branch or tag rule\": \"添加部署分支或標籤規則\",\n                    // 添加部署分支規則 對話框\n                    \"Ref type:\": \"引用類型：\",\n                        \"Tag\": \"標籤\",\n                    \"Name pattern:\": \"名稱的模式：\",\n                    \"Add rule\": \"添加規則\",\n                \"Update deployment branch rule\": \"更新部署分支規則\",\n                    \"Update rule\": \"更新規則\",\n                \"Remove\": \"刪除\",\n\n                // 頂部提醒\n                    \"Environment changes successfully saved: all branches can deploy.\": \"環境更改已成功保存：所有分支都可以部署。\",\n                    \"Environment changes successfully saved: only protected branches can deploy.\": \"環境更改已成功保存：只有受保護的分支才能部署。\",\n                    \"Environment changes successfully saved: only selected branches and tags can deploy.\": \"環境更改已成功保存：只有選定的分支和標籤才能部署。\",\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支規則 “$1” 已成功保存。\"],\n                    // [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支規則 “$1” 已刪除。\",]\n\n            \"Environment secrets\": \"環境機密\",\n                \"Secrets are encrypted environment variables. They are accessible only by GitHub Actions in the context of this environment by using the\": \"機密是加密的環境變量。它們只能由 GitHub Actions 在這個環境中訪問\",\n                    \"secret context\": \"機密上下文\",\n\n                \"Name\": \"名稱\",\n                \"Value\": \"值\",\n                \"Last updated\": \"最後更新\",\n\n                \"This environment has no secrets.\": \"該環境尚無機密。\",\n                \"Add environment secret\": \"添加環境機密\",\n                    // 添加機密對話框\n                    \"Add secret\": \"添加機密\",\n                    \"Secret value\": \"機密值\",\n                    // 提醒\n                        \"Failed to add secret: Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加機密失敗：機密名稱只能包含字母、數字字符 ([a-z], [A-Z], [0-9]) 或下劃線 (_)。不允許使用空格。必須以字母 ([a-z], [A-Z]) 或下劃線 (_) 開頭。\",\n                        \"Name and value are required\": \"名稱和值是必填項。\",\n\n                \"Update secret\": \"更新機密\",\n                // 刪除機密 對話框\n                    \"Delete secret\": \"刪除機密\",\n                        \"Are you sure you want to delete\": \"您確定要刪除\",\n                        \"Yes, delete this\": \"是的，刪除該\",\n                        \"secret\": \"機密\",\n\n            \"Environment variables\": \"環境變量\",\n                \"Variables are used for non-sensitive configuration data. They are accessible only by GitHub Actions in the context of this environment by using the\": \"變量用於非敏感配置數據。它們只能由 GitHub Actions 在此環境中訪問\",\n                    \"variable context\": \"變量上下文\",\n\n                \"This environment has no variables.\": \"該環境尚無變量。\",\n                \"Add environment variable\": \"添加環境變量\",\n                    // 添加變量對話框\n                    \"Add variable\": \"添加變量\",\n                    \"Variable value\": \"變量值\",\n                    // 提醒\n                        \"Failed to add variable: Variable names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加變量失敗： 變量名只能包含字母、數字字符（[a-z]、[A-Z]、[0-9]）或下劃線 (_)。不允許使用空格。必須以字母 ([a-z], [A-Z]) 或下劃線 (_) 開頭。\",\n\n                \"Update variable\": \"更新變量\",\n                // 刪除變量 對話框\n                    \"Delete variable\": \"刪除變量\",\n                    \"variable\": \"變量\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) protection rules?/, \"$1 個保護規則\"], // /environments\n        [/(\\d+) secrets?/, \"$1 個機密\"], // /environments\n        [/(\\d+) variables?/, \"$1 個變量\"], // /environments\n        [/Environment \\\"([^ ]+)\\\" created./, \"環境 “$1” 已創建。\"],\n        [/Environment \\\"([^ ]+)\\\" updated./, \"環境 “$1” 已更新。\"],\n        [/Currently applies to (\\d+) branch(?:es|)/, \"目前適用於 $1 個分支\"],\n        [/(\\d+) branch(?:es|) and (\\d+) tags? allowed/, \"允許 $1 個分支和 $2 個標籤\"],\n        [/(\\d+) branch(?:es|) allowed/, \"允許 $1 個分支\"],\n        [/(\\d+) branch(?:es|)/, \"$1 個分支\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" saved successfully./ ,\"部署分支規則 “$1” 已成功保存。\"],\n        [/Deployment branch rule \\\"([^ ]+)\\\" removed./, \"部署分支規則 “$1” 已刪除。\",]\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Environments/, \"環境\"],\n            [/Create environment/, \"創建環境\"],\n            [/Configure environment/, \"配置環境\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/codespaces\"] = { // 倉庫設置 - 程式碼空間 /<user-name>/<repo-name>/settings/codespaces\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 程式碼空間 /<user-name>/<repo-name>/settings/codespaces\n            // 頂部提醒\n                \"Prebuild configuration created\": \"預構建設置已創建\",\n                \"Prebuild configuration deleted\": \"預構建設置已刪除\",\n            \"Prebuild configuration\": \"預構建設置\",\n\n            \"Set up prebuild\": \"設置預構建\",\n            \"There are no prebuilds configured for this repository\": \"尚無預構建設置\",\n            \"Prebuild configurations speed up Codespace creations significantly by pre-executing all the tasks required to build your development environment.\": \"預構建設置通過預先執行構建開發環境所需的所有任務，大大加快了程式碼空間的創建。\",\n            \"Learn more about setting up prebuilds\": \"瞭解更多關於預構建設置的信息\",\n\n            // 狀態\n                \"Currently Running\": \"正在運行中\",\n                \"Disabled\": \"禁用\",\n            \"See output\": \"查看輸出結果\",\n\n            \"Configuration menu\": \"設置菜單\",\n                \"Manually trigger\": \"手動觸發\",\n                \"View runs\": \"查看運行日誌\",\n                \"Disable runs\":\"暫停運行\",\n                \"Enable runs\":\"恢復運行\",\n\n            // 刪除對話框\n                \"Are you sure?\": \"您確定嗎？\",\n                \"Are you sure you want to delete this prebuild configuration? Running workflow may fail and templates associated with this configuration will be deleted.\": \"您確定要刪除這個預構建設置嗎？運行中的工作流可能會失敗，與此設置相關的模板將被刪除。\",\n\n        // 程式碼空間-新建預構建設置 /<user-name>/<repo-name>/settings/codespaces/prebuild_configurations/new\n            \"/ New prebuild configuration\": \"/ 新建預構建設置\",\n            // 黃色警告\n                \"Prebuilds consume storage space that will incur a billable charge. Learn more about\": \"預構建會佔用存儲空間，可能會產生費用。瞭解更多關於\",\n                \"prebuild configurations\": \"預構建設置\",\n\n            \"Configuration\": \"設置\",\n            \"Your prebuild will be built from the branch and configuration file selected below. Learn more about\": \"您的預構建將從下面選擇的分支和配置文件中構建。瞭解更多關於\",\n            \"prebuild configuration.\": \"預構建的設置。\",\n            \"Select branch\": \"選擇分支\",\n            \"Find a branch\": \"查找分支\",\n            \"Configuration File:\": \"設置文件：\",\n            \"Default Codespaces Configuration\": \"默認程式碼空間設置\",\n\n            \"Access and cost control\": \"訪問和成本控制\",\n            \"Prebuild triggers\": \"預構建觸發器\",\n            \"You can specify how often to prebuild your codespace based on changes to your repository or a schedule to manage Actions usage.\": \"您可以根據對倉庫的更改或管理操作使用的計劃來指定預構建程式碼空間的頻率。\",\n            \"Learn about prebuild triggers\": \"瞭解預構建觸發器\",\n            \"Every push\": \"每次推送\",\n                \"Default\": \"默認\",\n                \"Your codespace will prebuild on every push to this branch\": \"您的程式碼空間將在每次推送到該分支時預構建\",\n            \"Configuration change\": \"配置改變時\",\n                \"Your codespace will prebuild when a change is detected on the devcontainer.json and associated configuration files\": \"當檢測到 devcontainer.json 和相關的配置文件有變化時，您的程式碼空間將預構建。\",\n            \"Scheduled\": \"計劃\",\n                \"Your codespace will prebuild on a schedule\": \"您的程式碼空間將按計劃進行預構建\",\n            \"Days\": \"天\",\n                \"Weekdays\": \"工作日\",\n                \"Every day\": \"每日\",\n                \"Sunday\"    : \"週日\",\n                \"Monday\"    : \"週一\",\n                \"Tuesday\"   : \"週二\",\n                \"Wednesday\" : \"週三\",\n                \"Thursday\"  : \"週四\",\n                \"Friday\"    : \"週五\",\n                \"Saturday\"  : \"週六\",\n            \"Times\": \"時間\",\n                \"Filter\": \"篩選\",\n\n            \"Region availability\": \"區域可用性\",\n            \"Reduce prebuild availability to only specific regions\": \"僅在特定區域提供預構建\",\n                \"By default, your prebuilt image will be available to all regions where codespaces are available and storage costs will apply for each region. You can adjust this to manage your storage usage.\": \"默認情況下，您的預構建鏡像將在所有提供程式碼空間的區域可用，並且每個區域都會產生存儲費用。您可以對此進行調整，以管理存儲空間的使用。\",\n                \"Learn about region availability\": \"瞭解區域可用性\",\n                    \"US East\": \"美國東部\",\n                    \"US West\": \"美國西部\",\n                    \"Europe West\": \"歐洲西部\",\n                    \"Southeast Asia\": \"東南亞\",\n                    \"Australia\": \"澳大利亞\",\n            \"Template history\": \"模板歷史\",\n                \"You can specify the number of prebuild template versions retained to speed up codespaces from an older commit to manage storage costs. The maximum value is 5 versions.\": \"您可以指定保留的預構建模板版本的數量，以加快舊提交的程式碼空間，以管理存儲成本。最大值為 5 個版本。\",\n                \"Learn about template history\": \"瞭解模板歷史\",\n            \"versions\": \"個版本\",\n\n            \"Failure notifications\": \"失敗通知\",\n            \"You can specify users or teams to be notified via e-mail when prebuilds for this particular configuration fail.\": \"您可以指定用戶或團隊，當這個特定配置的預構建失敗時，通過電子郵件通知他們。\",\n            \"Add by username, full name, or team name\": \"按用戶名、全名或團隊名稱添加\",\n            \"You haven't added anyone yet\": \"尚未添加任何人\",\n            \"Add members to receive email notifications when prebuilds fail for this configuration\": \"添加成員，以便在此配置的預構建失敗時接收電子郵件通知\",\n            \"Show advanced options\": \"顯示高級選項\",\n\n            \"Advanced options\": \"高級選項\",\n            \"You can disable prebuild optimization if you're having issues where codespaces are several commits behind on a specific branch.\": \"如果您遇到程式碼空間在特定分支上落後多個提交的問題，您可以禁用預構建優化。\",\n            \"Learn about prebuild optimization\": \"瞭解預構建優化\",\n            \"Disable prebuild optimization\": \"禁用預構建優化\",\n                \"This prevents codespaces from attempting to use an older image to speed up boot time. This could adversely affect performance.\": \"這可以防止程式碼空間嘗試使用舊的映像來加快啟動時間。這可能會對性能產生不利影響。\",\n            \"Hide advanced options\": \"隱藏高級選項\",\n\n        // 程式碼空間-編輯預構建設置 /<user-name>/<repo-name>/settings/settings/codespaces/prebuild_configurations/<id>/edit\n            \"/ Edit configuration\": \"編輯預構建設置\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"程式碼空間\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/pages\"] = { // 倉庫設置頁面(含組織倉庫) /<user-name>/<repo-name>/settings\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // GitHub Pages 頁面 /<user-name>/<repo-name>/settings/pages====================================\n            \"is designed to host your personal, organization, or project pages from a GitHub repository.\": \"旨在從 GitHub 倉庫託管您的個人、組織或專案頁面。\",\n            // 私有庫 提醒\n            \"Upgrade or make this repository public to enable Pages\": \"升級或公開該倉庫，以啟用 GitHub Pages\",\n            \"GitHub Pages is designed to host your personal, organization, or project pages from a GitHub repository.\": \"GitHub Pages 旨在從 GitHub 倉庫中託管您的個人、組織或專案頁面。\",\n            \"Learn more about GitHub Pages\": \"瞭解更多關於 GitHub Pages 的信息\",\n            // 存檔時 提醒\n            \"This repository has been archived. The associated GitHub Pages site remains published but settings are read-only.\": \"該倉庫已存檔。相關的 GitHub Pages 網站仍然發佈，但設置是只讀的。\",\n\n            // 已發佈時\n            \"Your site is live at\": \"您的站點在\",\n                \"Last\": \"最近\",\n                \"deployed\": \"部署\",\n            \"Visit site\": \"訪問網站\",\n            \"Additional site options\": \"站點附加選項\",\n            \"Unpublish site\": \"取消站點發布\",\n                // 頂部提醒\n                    \"GitHub Pages unpublished.\": \"GitHub  Pages 未發佈。\",\n\n            \"Build and deployment\": \"構建和部署\",\n                // 頂部提醒\n                    \"GitHub Pages source saved.\": \"GitHub Pages 源已保存。\",\n            \"Source\": \"來源\",\n                // \"GitHub Actions\": \"\",\n                    \"Best for using frameworks and customizing your build process\": \"最適合使用框架和自定義構建過程\",\n                \"Deploy from a branch\": \"從分支部署\",\n                    \"Classic Pages experience\": \"經典頁面體驗\",\n\n            // GitHub Actions 部署模式\n                \"Send feedback\": \"發送反饋\",\n                \"Use a suggested workflow,\": \"使用建議的工作流程，\",\n                \"browse all workflows\": \"瀏覽所有工作流程\",\n                \", or\": \"，或\",\n                \"create your own\": \"自建\",\n\n                \"Configure\": \"設置\",\n\n                \"Workflow details will appear here once your site has been deployed.\": \"部署站點後，工作流程詳細信息將顯示在此處。\",\n                \"View workflow runs.\": \"查看工作流程運行情況。\",\n\n                \"Your site was last deployed to the\": \"您的站點上次部署到\",\n                \"environment by the\": \"環境，由\",\n                \"pages build and deployment\": \"頁面構建和部署\",\n                \"workflow.\": \"工作流程。\",\n                \"Learn more about deploying to GitHub Pages using custom workflows\": \"瞭解更多關於使用自定義工作流程部署到 GitHub Pages 的信息\",\n\n            // 從分支部署模式\n            \"Branch\": \"分支\",\n                // 禁用時\n                \"GitHub Pages is currently disabled. Select a source below to enable GitHub Pages for this repository.\": \"GitHub Pages 目前已被禁用。在下面選擇一個源，為該倉庫啟用 GitHub Pages。\",\n                \"GitHub Pages is currently disabled. You must first add content to your repository before you can publish a GitHub Pages site.\": \"GitHub Pages 目前已被禁用。您必須先將內容添加到您的倉庫，然後才能發佈 GitHub Pages 站點。\",\n                // 啟用時\n                \"Your GitHub Pages site is currently being built from the\": \"您的 GitHub Pages 站點，目前正建立於\",\n                \"folder in the\": \"目錄在\",\n                \"branch.\": \"分支。\",\n                \"Learn more about configuring the publishing source for your site\": \"瞭解更多關於配置網站發佈源的信息\",\n\n                \"Select branch\": \"選擇分支\",\n                    \"None\": \"無\",\n                \"Select folder\": \"選擇文件夾\",\n                    \"/ (root)\": \"/ (根目錄)\",\n\n                \"No results found\": \"無結果\",\n\n                \"Learn how to\": \"瞭解如何\",\n                \"add a Jekyll theme\": \"添加 Jekyll 主題\",\n                \"to your site.\": \"到您的站點。\",\n\n            \"Custom domain\": \"自定義域\",\n                \"Custom domains allow you to serve your site from a domain other than\": \"自定義域允許您從其他域為您的站點提供服務，而不是\",\n                \"Learn more about configuring custom domains\": \"瞭解更多關於配置自定義域的信息\",\n                    \"Remove\": \"移除\",\n                    \"Check again\": \"再檢查一次\",\n                    \"DNS Check in Progress\": \"DNS 檢查中\",\n                    \"DNS check successful\": \"DNS 檢查成功\",\n                    \"DNS check unsuccessful\": \"DNS 檢查失敗\",\n                    \"Please wait for the DNS check to complete.\": \"請等待 DNS 檢查結束。\",\n                    // [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正確\"],\n                    // [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您網站的 DNS 設置使用的是自定義子域 $1，該子域未設置正確的 CNAME 記錄。我們建議您將此 CNAME 記錄設置為指向 [YOUR USERNAME].github.io。有關詳細信息，請參閱\"],\n\n                    \"DNS records should point to the\": \"DNS記錄應該指向\",\n                    \"internationalized domain name\": \"國際化域名\",\n\n                    \"Domain does not resolve to the GitHub Pages server. For more information, see\": \"域名未解析至 GitHub Pages 服務器。更多信息，請參閱\",\n                    \"documentation\": \"文檔\",\n                    \"(NotServedByPagesError).\": \"（Pages 服務錯誤）。\",\n\n                    \"Domain's DNS record could not be retrieved. For more information, see\": \"無法檢索域的 DNS 記錄。更多信息，請參閱\",\n                    \"(InvalidDNSError).\": \"（DNS 錯誤）。\",\n\n                    // 頂部提醒\n                    \"No changes to custom domain.\": \"沒有對自定義域進行修改。\",\n                    \"Custom domain removed. Please remember to remove any GitHub Pages DNS records for this domain if you do not plan to continue using it with GitHub Pages.\": \"自定義域已刪除。如果您不打算繼續使用 GitHub Pages，請記得刪除此域的任何 GitHub Pages 的 DNS 記錄。\",\n\n                \"Enforce HTTPS\": \"強制 HTTPS\",\n                    \"— Unavailable for your site because your domain is not properly configured to support HTTPS (\": \"— 您的網站不可用，因為您的域未正確配置為支持 HTTPS (\",\n                    \"— Unavailable for your site because a certificate has not yet been issued for your domain (\": \"— 您的網站不可用，因為您的域尚未頒發證書 (\",\n                    \"Troubleshooting custom domains\": \"自定義域故障排除\",\n                    \"— Required for your site because you are using the default domain (\": \"— 必須先設置自定義域，目前您正在使用默認域 (\",\n\n                    \"HTTPS provides a layer of encryption that prevents others from snooping on or tampering with traffic to your site.\": \"HTTPS 提供了一層加密，防止他人窺探或篡改您站點的流量。\",\n                    \"When HTTPS is enforced, your site will only be served over HTTPS.\": \"當開啟強制 HTTPS 時，您的站點將只通過 HTTPS 提供服務。\",\n                    \"Learn more about securing your GitHub Pages site with HTTPS\": \"瞭解更多關於使用 HTTPS 保護 GitHub Pages 站點安全的信息\",\n\n            \"Visibility\": \"可見性\",\n                \"GitHub Enterprise\": \"GitHub 企業版\",\n                \"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise. You can try GitHub Enterprise risk-free for 30 days.\": \"使用 GitHub 企業版賬戶，您可以通過私下發布來限制對 GitHub Pages 站點的訪問。您可以使用私下發布的站點與企業成員共享您的內部文檔或知識庫。 您可以免費試用 GitHub 企業版 30 天。\",\n                //\"With a GitHub Enterprise account, you can restrict access to your GitHub Pages site by publishing it privately. You can use privately published sites to share your internal documentation or knowledge base with members of your enterprise.\": \"使用 GitHub 企業版賬戶，您可以通過私下發布來限制對 GitHub Pages 站點的訪問。您可以使用私下發布的站點與企業成員共享您的內部文檔或知識庫。\",\n                \"Try GitHub Enterprise\": \"試用 GitHub 企業版\",\n                \"Try GitHub Enterprise risk-free for 30 days\": \"免費無風險試用 GitHub 企業版 30 天\",\n                \"Start free for 30 days\": \"免費試用 30 天\",\n                \"Learn more about the visibility of your GitHub Pages site.\": \"瞭解更多關於 GitHub Pages 站點可見性的信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Custom domain \\\"([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?)\\\" saved./, \"自定義域“$1”已保存。\"],\n        [/Both ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) and its alternate name are improperly configured/, \"$1 及其備用名稱均配置不正確\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) DNS check is in progress./, \"$1 的 DNS 檢查正在進行。\"],\n        [/([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?) is improperly configured/, \"$1 配置不正確\"],\n        [/Your site's DNS settings are using a custom subdomain, ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?), that's not set up with a correct CNAME record. We recommend you set this CNAME record to point at [YOUR USERNAME].github.io. For more information, see/, \"您網站的 DNS 設置使用的是自定義子域 $1，該子域未設置正確的 CNAME 記錄。我們建議您將此 CNAME 記錄設置為指向 [YOUR USERNAME].github.io。有關詳細信息，請參閱\"],\n        [/Something went wrong issuing a certificate for ([a-zA-Z0-9][-a-zA-Z0-9]{0,62}(?:\\.[a-zA-Z0-9][-a-zA-Z0-9]{0,62})+\\.?). Please contact the Pages team./, \"為 $1 頒發證書時出現問題。請聯繫 Pages 團隊。\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/settings/security_analysis\"] = { // 倉庫設置 - 高級安全 /<user-name>/<repo-name>/settings/security_analysis\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 高級安全 /<user-name>/<repo-name>/settings/security_analysis\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository. Unarchive your repository to access additional features.\": \"高級安全功能有助於保護您的倉庫安全並及時更新。啟用這些功能，即表示您授權我們對您的程式碼庫執行只讀分析。請解除倉庫的歸檔狀態以使用更多功能。\", // 存檔倉庫\n            \"Advanced Security features help keep your repository secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your repository.\": \"高級安全功能有助於保護您的倉庫安全並保持更新。啟用這些功能，即表示您授權我們對您的倉庫執行只讀分析。\",\n\n            \"Private vulnerability reporting\": \"私下漏洞報告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允許您的社區向維護者和倉庫所有者私下報告潛在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"瞭解更多關於私下漏洞報告的信息\",\n\n            \"Dependency graph\": \"依賴項關係圖\",\n                \"Understand your dependencies.\": \"瞭解您的依賴項。\",\n\n                // 禁用對話框\n                    \"Disable dependency graph\": \"禁用依賴項關係圖\",\n                        \"Disabling the dependency graph will also disable Dependabot alerts and Dependabot security updates.\": \"禁用依賴項關係圖也將同時禁用 Dependabot 警報和 Dependabot 安全更新。\", // Dependabot 警報和 Dependabot 安全更新啟用時\n                        \"Disabling the dependency graph will also disable Dependabot alerts.\": \"禁用依賴項關係圖也將同時禁用 Dependabot 警報。\", // Dependabot 警報啟用, Dependabot 安全更新未啟用時\n\n                // 啟用時\n                \"Automatic dependency submission\": \"自動提交依賴項\",\n                    \"Automatically detect and report build-time dependencies for select ecosystems.\": \"自動檢測並報告選定生態系統的構建時依賴項。\",\n                    // 啟用\n                        \"Use standard GitHub runners\": \"使用標準 GitHub 運行器\",\n                    \"Enabled for labeled runners\": \"為有標籤的運行器啟用\",\n                        \"Use runners labeled with 'dependency-submission'\": \"使用帶 “dependency-submission” 標籤的運行器\",\n                        \"No runners with this label assigned to repository\": \"沒有為倉庫分配帶有此標籤的運行器\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依賴項的安全和最新。\",\n                \"Learn more about Dependabot\": \"瞭解更多關於 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警報\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影響您的依賴項的漏洞警報，並手動生成 Dependabot 拉取請求以解決這些漏洞。\",\n                    \"Configure alert notifications\": \"配置警報通知\",\n\n                    // 啟用時\n                    \"Dependabot rules\": \"Dependabot 規則\",\n                        \"Create your own custom rules and manage alert presets.\": \"創建您自己的自定義規則並管理警報預設。\",\n                        \"Review and manage alert presets.\": \"查看和管理警報預設。\", //私有庫\n                        // [/(\\d+) rules? enabled/, \"已啟用 $1 條規則\"],\n\n                \"Dependabot security updates\": \"Dependabot 安全更新\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch.\": \"啟用後，Dependabot 會自動嘗試打開拉取請求，以使用可用補丁解決每個打開的 Dependabot 警報。\",\n                    \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"啟用後，Dependabot 會自動嘗試打開拉取請求，以使用可用補丁解決每個打開的 Dependabot 警報。如果您想要更具體的配置選項，請將其禁用並使用\",\n                        // \"Dependabot rules\": \"Dependabot 規則\",\n\n                    // 啟用對話框\n                        \"Enable Dependabot security updates\": \"啟用 Dependabot 安全更新\",\n                            \"Dependabot security updates needs the dependency graph and Dependabot alerts to be enabled, so we'll turn them on too.\": \"Dependabot 安全更新需要啟用依賴關係圖和 Dependabot 警報，因此我們也將啟用他們。\",\n                            \"Dependabot security updates needs Dependabot alerts to be enabled, so we'll turn that on too.\": \"Dependabot 安全更新需要啟用 Dependabot 警報，因此我們也將啟用它。\",\n\n                \"Grouped security updates\": \"分組安全更新\",\n                    \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"將解決可靠警報的所有可用更新分組為一個拉取請求（每個包管理器和需求清單目錄）。該選項可被 dependabot.yml 中指定的組規則覆蓋 -\",\n                    \"learn more here\": \"在此瞭解更多\",\n\n                    // 啟用對話框\n                        \"Grouped security updates needs the dependency graph, Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too\": \"分組安全更新需要啟用依賴項關係圖、Dependabot 警報和 Dependabot 安全更新，因此我們也將啟用他們。\",\n                        \"Grouped security updates needs Dependabot alerts and Dependabot security updates to be enabled, so we'll turn them on too.\": \"分組安全更新需要啟用 Dependabot 警報和 Dependabot 安全更新，因此我們也將啟用他們。\",\n                        \"Grouped security updates needs Dependabot security updates to be enabled, so we'll turn that on too.\": \"分組安全更新需要啟用 Dependabot 安全更新，因此我們也將啟用它。\",\n\n                \"Dependabot version updates\": \"Dependabot 版本更新\",\n                    \"Allow Dependabot to open pull requests automatically to keep your dependencies up-to-date when new versions are available.\": \"允許 Dependabot 自動打開拉取請求，以便在有新版本時保持您的依賴項是最新的。\",\n                    \"Learn more about configuring a dependabot.yml file\": \"瞭解更多關於配置 dependabot.yml 文件的信息\",\n                    \"Configure\": \"配置\",\n\n                // \"Dependabot on Actions runners\": \"Dependabot 應用於操作運行器\",\n                //     \"Run Dependabot security and version updates on Actions runners.\": \"在操作運行器上運行 Dependabot 安全和版本更新。\",\n\n                // \"Dependabot on self-hosted runners\": \"Dependabot 應用於自託管運行器\",\n                //     \"Run Dependabot security and version updates on self-hosted Actions runners.\": \"在自託管運行程式上運行 Dependabot 安全和版本更新。\",\n\n            \"Code scanning\": \"程式碼掃描\",\n                \"Automatically detect common vulnerabilities and coding errors.\": \"自動檢測常見漏洞和編碼錯誤。\",\n\n                // 組織倉庫\n                    // 提示區\n                        \"Code scanning with GitHub Actions is not available for this repository.\": \"使用 GitHub Actions 進行程式碼掃描不適用於該倉庫。\",\n\n                        \"GitHub Actions is disabled on this repository because it is a fork. To use code scanning please\": \"GitHub 操作已在此倉庫禁用，因為它是一個複刻。要使用程式碼掃描，請\",\n                        \"enable it\": \"啟用它\",\n\n                        \"GitHub Actions is disabled on this repository by an enterprise or organization policy. To use code scanning, please ask your organization administrator to enable Actions, or\": \"由於企業或組織策略，此倉庫中禁用了 GitHub Actions。要使用程式碼掃描，請請求您的組織管理員啟用 GitHub Actions，或者\",\n                        \"submit code scanning results externally using the API\": \"使用 API 在程式碼掃描外部結果\",\n\n                    \"Prevent direct alert dismissals\": \"防止直接解除警報\",\n                        \"Actors must submit requests to dismiss an alert. This can impact pull requests requiring code scanning dismissal to merge.\": \"參與者必須提交解除警報的請求。這可能會影響需要解除程式碼掃描警報才能合併的拉取請求。\",\n\n                \"Tools\": \"工具\",\n                    \"CodeQL analysis\": \"CodeQL 分析\",\n                        \"Identify vulnerabilities and errors with\": \"識別程式碼中的漏洞和錯誤，通過\",\n                        \"for\": \"為\",\n                        \"eligible\": \"符合條件的\",\n                        \"repositories.\": \"倉庫。\",\n\n                        \"Default setup\": \"默認設置\",\n                        \"Last scan\": \"最後一次掃描\",\n\n                        //未啟用時\n                        \"Set up\": \"設置\",\n                            \"Default\": \"默認\",\n                                \"CodeQL will automatically find the best configuration for your repository.\": \"CodeQL 將自動給您的倉庫找到最佳配置。\",\n                                // \"Languages detected in this repository are not compatible with this setup type at this time. Use the advanced setup instead.\": \"目前，該倉庫中檢測到的語言與該設置類型不兼容。請使用高級設置。\",\n                            \"Advanced\": \"高級\",\n                                \"Customize your CodeQL configuration via a YAML file checked into the repository.\": \"通過倉庫中的 YAML 文件定製您的 CodeQL 配置。\",\n                            // \"Not supported\": \"不支持\",\n                            // \"Languages on this repository are not compatible with this feature. Learn more about\": \"該倉庫上的語言與此功能不兼容。瞭解更多關於\",\n                            // \"supported languages and frameworks\": \"所支持的語言和框架\",\n\n                            // CodeQL 默認設置對話框\n                                \"CodeQL default configuration\": \"CodeQL 默認設置\",\n                                \"These languages were detected on the default branch of this repository.\": \"這些語言是在該倉庫的默認分支上檢測到的。\",\n                                //1 of 1 languages selected\n                                \"Query suites\": \"查詢套件\",\n                                    \"Group of queries\": \"查詢套件\",\n                                    \"to run against your code.\": \"針對您的程式碼運行。\",\n\n                                    // \"默認\n                                        \"Recommended\": \"推薦\",\n                                        \"CodeQL high-precision queries.\": \"CodeQL 高精度查詢。\",\n                                \"Runner type\": \"運行器類型\",\n                                    \"This is the runner default setup will use to run\": \"這是運行器默認設置將用於運行\",\n                                    \"Standard GitHub runner\": \"標準 GitHub 運行器\",\n                                \"Scan events\": \"掃描事件\",\n                                    \"These events will trigger a new scan.\": \"這些事件將觸發新的掃描。\",\n                                    \"On push and pull requests to\": \"推送和拉取請求到\",\n                                        \"protected branches\": \"受保護的分支\",\n                                    \"On a weekly schedule\": \"每週計劃\",\n                                        \"Next scan of\": \"下次掃描\",\n                                \"Enable CodeQL\": \"啟用 CodeQL\",\n\n                                \"Setting up\": \"設置中\",\n                                \"View setup log\": \"查看設置日誌\",\n\n                                // 頂部提醒\n                                    \"Repository settings saved. This initial setup might take a while because CodeQL will perform a full scan of the repository.\": \"倉庫設置已保存。此初始設置可能需要一段時間，因為 CodeQL 將對倉庫執行完整掃描。\",\n\n                        // 啟用後, 三個點菜單\n                            \"View last scan log\": \"查看最近一次掃描日誌\",\n                            \"View Code Scanning alerts\": \"查看程式碼掃描警報\",\n                            \"View CodeQL configuration\": \"查看 CodeQL 設置\",\n                            \"Switch to advanced\": \"切換到高級\",\n                            // 切換到 CodeQL 工作流程對話框\n                                \"Switch to a CodeQL workflow?\": \"切換到 CodeQL 工作流程？\",\n                                    \"To switch to a workflow-based configuration, we must disable CodeQL first. CodeQL will stop analyzing code and resume once a valid workflow file is committed to the repository.\": \"要切換到基於工作流的配置，我們必須先禁用 CodeQL。CodeQL 將停止分析程式碼，並在有效的工作流文件提交到倉庫後恢復分析。\",\n                            \"Disable CodeQL\": \"禁用 CodeQL\",\n                                // 禁用對話框\n                                    \"Disable CodeQL?\": \"禁用 CodeQL？\",\n                                    \"CodeQL will stop analyzing code from this repository. Existing alerts will remain open; you can dismiss them but not close them as fixed, as CodeQL needs to be enabled for that to happen. Existing CodeQL Actions workflows on this repository must be\": \"CodeQL 將停止分析該倉庫中的程式碼。現有的警報將保持打開；您可以忽略它們，但不能關閉它們，因為 CodeQL 需要啟用才能關閉。要\",\n                                    \"manually re-enabled to resume previous analyses\": \"恢復先前的分析，必須手動重新啟用\",\n\n                    \"Other tools\": \"其他工具\",\n                        \"Add any third-party code scanning tool.\": \"添加任意第三方程式碼掃描工具。\",\n                        \"Explore workflows\": \"探索工作流程\",\n\n                    \"Copilot Autofix\": \"Copilot 自動修復\",\n                        \"Suggest fixes for CodeQL alerts using AI. CodeQL default or advanced setup must be enabled for this feature to work. Learn more about the\": \"使用 AI 為 CodeQL 警報提出修復建議。必須啟用 CodeQL 默認設置或高級設置才能使用此功能。瞭解更多關於\",\n                        \"limitations of autofix code suggestions\": \"自動修復程式碼建議的限制\",\n                        \"On\": \"開\",\n                        \"Off\": \"關\",\n\n                    // 組織設置\n                    // \"Copilot Autofix for third-party tools\": \"適用於第三方工具的 Copilot 自動修復\",\n                    //     \"Suggest fixes for third-party alerts using AI. Ensure that these tools are properly configured or that an analysis is uploaded for this feature to work. Learn more about the\": \"使用人工智能對第三方警報提出修復建議。確保這些工具已正確配置或已上傳分析，以便此功能正常工作。瞭解更多關於\",\n                    //     \"limitations of autofix code suggestions for third party tools\": \"第三方工具自動修復程式碼建議的限制\",\n\n                \"Protection rules\": \"保護規則\",\n                    \"Check runs failure threshold\": \"檢查運行失敗閥值\",\n                        \"Select the alert severity level for code scanning check runs to fail.\": \"選擇程式碼掃描檢查運行失敗的警報嚴重性級別。\",\n                        \"Create a branch ruleset\": \"創建分支規則集\",\n                        \"to prevent a branch from merging when these checks fail.\": \"以防止分支在這些檢查失敗時被合併。\",\n\n                        \"Security alert severity level:\": \"安全警報級別：\",\n                            \"None\": \"無\",\n                            \"Only critical\": \"僅關鍵風險\",\n                            \"High or higher\": \"高風險及以上\",\n                            \"Medium or higher\": \"中風險及以上\",\n                            \"Any\": \"任何\",\n                        \"Standard alert severity level:\": \"標準警報級別：\",\n                            \"Only errors\": \"僅錯誤\",\n                            \"Errors and warnings\": \"錯誤和警告\",\n\n                // 頂部提醒\n                \"Code Scanning alert severity settings saved.\": \"程式碼掃描警報嚴重性設置已保存。\",\n\n            \"Secret Protection\": \"機密保護\",\n                \"GitHub will always send alerts to partners for detected secrets in public repositories.\": \"GitHub 會始終向合作伙伴發送檢測到公共倉庫中機密的警報。\",\n                \"Learn more about partner patterns\": \"瞭解更多關於合作伙伴模式的信息\",\n\n                // 開啟對話框\n                    \"Enable Secret Protection\": \"啟用機密保護\",\n                        \"This will enable Secret Protection for your repository.\": \"這將為您的倉庫啟用機密保護。\",\n                        \"Enable secret scanning alerts\": \"啟用機密掃描警報\",\n                        \"No additional licenses will be consumed.\": \"不會消耗額外的許可。\",\n\n                //開啟後\n                    \"Push protection\": \"推送保護\",\n                    \"Block commits that contain\": \"阻止推送包含\",\n                    \"supported secrets\": \"支持的機密\",\n\n            // 組織倉庫\n                \"Access to alerts\": \"訪問警報\",\n                \"Admins, users, and teams in the list below have permission to view and manage code scanning, Dependabot, or secret scanning alerts. These users may be notified when a new vulnerability is found in one of this repository's dependencies and when a secret or key is checked in. They will also see additional details when viewing Dependabot security updates. Individuals can manage how they receive these alerts in their\": \"以下列表中的管理員、用戶和團隊有權限查看和管理程式碼掃描、Dependabot 或機密掃描警報。當在此倉庫的依賴項之一中發現新的漏洞，以及當機密或令牌被嵌入時，可能會通知這些用戶。在查看 Dependabot 安全更新時，他們還會看到其他詳細信息。用戶可以管理他們如何接收這些警報，在他們的\",\n                \"notification settings\": \"通知設置\",\n\n                \"Choose the people or teams you would like to grant access\": \"選擇您希望授予訪問權限的人員或團隊\",\n                    \"Search for people or teams\": \"搜索人員或團隊\",\n                        \"You have reached the maximum number of people and teams you can add.\": \"您已達到可添加的人員和團隊數量上限。\",\n                        \"Remove one or more to continue adding others.\": \"請移除一個或多個以繼續添加其他成員。\",\n                \"People and teams with access\": \"擁有訪問權限的人員和團隊\",\n                \"Organization administrators, repository administrators, and teams with the security manager role\": \"具有安全管理員角色的組織管理員、倉庫管理員和團隊\",\n                \"These members always see code scanning, Dependabot, and secret scanning alerts.\": \"這些成員始終能夠查看程式碼掃描、Dependabot 和機密掃描警報。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/(\\d+) rules? enabled/, \"已啟用 $1 條規則\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Settings · Advanced Security/, \"設置 · 高級安全\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/keys\"] = { // 倉庫設置 - 部署密鑰 /<user-name>/<repo-name>/settings/keys\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 部署密鑰 頁面 /<user-name>/<repo-name>/settings/keys====================================\n            \"We recommend using\": \"我們建議使用\",\n            \"instead for fine grained control over repositories and\": \"來對倉庫進行細粒度控制並\",\n            \"enhanced security\": \"增強安全性\",\n            \"use an SSH key to grant readonly or write access to a single repository. They are not protected by a passphrase and can be a security risk if your server is compromised. If you have a complex project or want more fine-grain control over permissions, consider using\": \"使用 SSH 密鑰授予對單個倉庫的只讀或寫入訪問權限。它們不受密碼保護，如果您的服務器受到威脅，則可能存在安全風險。如果您的專案很複雜或想要更精細地控制權限，請考慮使用\",\n            \"instead.\": \"。\",\n            \"Add deploy key\": \"添加部署密鑰\",\n            \"There are no deploy keys for this repository\": \"此倉庫暫無部署密鑰\",\n            \"Check out our\": \"查看我們的\",\n            \"guide on deploy keys\": \"部署密鑰指南\",\n            \"to learn more.\": \"瞭解更多。\",\n            \"Last used within the last week\": \"最後一次使用是最近 1 周之內\",\n            \"— Read/write\": \"— 讀取和寫入權限\",\n            \"— Read\": \"— 讀取權限\",\n\n            // 密鑰刪除對話框\n            \"Are you sure you want to delete this SSH key?\": \"您確定要刪除此 SSH 密鑰嗎？\",\n            \"This action\": \"該操作\",\n            \"cannot\": \"不能\",\n            \"be undone. This will permanently delete the SSH key, and if you’d like to use it in the future, you will need to upload it again.\": \"被撤銷。這將永久地刪除 SSH 密鑰，如果您想在未來使用它，您將需要再次上傳它。\",\n            \"I understand, delete this SSH key\": \"我明白了，依然刪除該 SSH 密鑰\",\n\n            // 頂部提醒\n            \"Okay, you have successfully deleted that key.\": \"好的，您已成功刪除該密鑰。\",\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密鑰無效。您必須提供 OpenSSH 公鑰格式的密鑰\",\n\n        // 部署密鑰新建 頁面 /<user-name>/<repo-name>/settings/keys/new====================================\n            \"/ Add new\": \"/ 新添\",\n            \"Title\": \"標題\",\n            \"Key\": \"密鑰\",\n            \"Allow write access\": \"允許寫訪問\",\n            \"Can this key be used to\": \"該密鑰允許\",\n            \"push\": \"推送\",\n            \"Begins with\": \"以\",\n            \"to this repository? Deploy keys always have pull access.\": \"到這個倉庫？部署密鑰始終具有拉取訪問權限。\",\n            \"Add key\": \"添加密鑰\",\n            // 頂部提醒\n            \"Key is invalid. You must supply a key in OpenSSH public key format\": \"密鑰無效。您必須提供 OpenSSH 公鑰格式的密鑰\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Last used within the last (\\d+) weeks?/, \"最後一次使用是最近 $1 周之內\"], // /keys\n        [/Last used within the last (\\d+) months?/, \"最後一次使用是最近 $1 個月之內\"], // /keys\n    ],\n    \"title\": {\n        \"static\": {\n            \"Deploy keys\": \"部署密鑰\",\n            \"Add deploy key\": \"添加部署密鑰\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/secrets\"] = { // 倉庫設置 - 機密 /<user-name>/<repo-name>/settings/secrets\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 操作機密 /<user-name>/<repo-name>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作機密和變量\",\n            \"New repository secret\": \"新建倉庫機密\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"機密和變量允許您管理可重複使用的配置數據。機密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"並用于敏感數據。\",\n            \"Learn more about encrypted secrets\": \"瞭解更多關於加密機密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。變量顯示為純文本，用於\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"數據。\",\n            \"Learn more about variables\": \"瞭解更多關於變量的信息\",\n\n            \"Anyone with collaborator access to this repository can use these secrets and variables for actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何有協作者權限的人都可以使用這些機密和變量進行操作。它們不會被傳遞到由複刻的拉取請求觸發的工作流中。\",\n\n            \"Secrets\": \"機密\",\n            \"Variables\": \"變量\",\n\n            \"Updated\": \"更新於\",\n            \"Remove\": \"移除\",\n\n            // 頂部提醒\n            \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加機密失敗。機密名稱只能包含字母數字字符（[a-z]、[A-Z]、[0-9]）或下劃線 (_)。不允許有空格。必須以字母 ([a-z], [A-Z]) 或下劃線 (_) 開頭。\",\n            \"Secret names must not start with GITHUB_.\": \"機密名稱不能以“GITHUB_”開頭。\",\n\n            \"Environment secrets\": \"環境機密\",\n                \"This environment has no secrets.\": \"此環境尚無機密。\",\n                \"Manage environment secrets\": \"管理環境機密\",\n\n            \"Repository secrets\": \"倉庫機密\",\n                \"This repository has no secrets.\": \"此倉庫尚無機密。\",\n                \"Last updated\": \"最近更新時間\",\n\n            //組織倉庫\n            \"Secrets can also be created at the organization level and authorized for use in this repository.\": \"機密也可以在組織層面上創建，並授權在這個倉庫中使用。\",\n            \"Organization secrets\": \"組織機密\",\n            \"Manage organization secrets\": \"管理組織機密\",\n            \"Organization secrets can only be used by public repositories on your plan.\": \"組織機密只能由您計劃中的公共倉庫使用。\",\n            \"If you would like to use organization secrets in a private repository, you will need to upgrade your plan.\": \"如果您想在私有倉庫中使用組織機密，則需要升級您的計劃。\",\n\n            // 刪除機密對話框\n            \"Delete secret\": \"刪除機密\",\n                \"Are you sure you want to delete\": \"您確定要刪除\",\n                \"Yes, delete this secret\": \"是的，刪除該機密\",\n                \"Yes, delete this\": \"是的，刪除該\",\n                \"secret\": \"機密\",\n\n            // 頂部提醒\n                \"Repository secret added.\": \"添加了倉庫機密。\",\n                \"Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"機密名稱只能包含字母數字字符([a-z]、[A-Z]、[0-9])或下劃線 (_)。不允許使用空格。必須以字母（[a-z]、[A-Z]）或下劃線 (_) 開頭。\",\n\n        // 操作變量 /<user-name>/<repo-name>/settings/variables/actions\n            \"Environment variables\": \"環境變量\",\n                \"This environment has no variables.\": \"此環境尚無變量。\",\n                \"Manage environment variables\": \"管理環境變量\",\n\n                \"Environment\": \"環境\",\n\n            \"Repository variables\": \"倉庫變量\",\n                \"New repository variable\": \"新建倉庫變量\",\n                \"This repository has no variables.\": \"此倉庫尚無變量。\",\n\n            // 刪除變量對話框\n            \"Delete variable\": \"刪除變量\",\n                \"Yes, delete this variable\": \"是的，刪除該變量\",\n                \"variable\": \"變量\",\n\n        // 新建倉庫機密 /<user-name>/<repo-name>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作機密\",\n            \"/ New secret\": \"/ 新建機密\",\n\n            \"Name\": \"名稱\",\n            \"Secret\": \"機密\",\n\n            \"Add secret\": \"添加機密\",\n                \"Adding…\": \"添加中…\",\n\n        // 新建倉庫變量 /<user-name>/<repo-name>/settings/variables/actions/new\n            \"Actions variables\": \"操作變量\",\n            \"/ New variable\": \"/ 新建變量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：變量值是以純文本形式暴露的。如果您需要對敏感信息進行加密和屏蔽，請使用\",\n            \"create a secret\": \"創建機密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"變量名稱只能包含字母數字字符（[A-Z]，[A-Z]，[0-9]）或僅下劃線（_）。\",\n            \"Variable names cannot start with a number.\": \"變量名稱不能以數字開頭。\",\n            \"Variable names cannot start with\": \"變量名稱不能以\",\n            \"prefix.\": \"前綴開頭。\",\n\n            \"Add variable\": \"添加變量\",\n                \"Adding…\": \"添加中…\",\n\n        // 更新操作機密 /<user-name>/<repo-name>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新機密\",\n\n            \"Value\": \"值\",\n\n            \"Update secret\": \"更新機密\",\n\n        // 程式碼空間機密 /<user-name>/<repo-name>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"程式碼空間機密\",\n            \"Development environment secrets are environment variables that are\": \"開發環境機密是環境變量\",\n            \". Secrets are not passed to forks.\": \"。機密不會傳遞給複刻。\",\n\n            \"Repository development environment secrets\": \"倉庫開發環境機密\", // 組織倉庫\n            \"Organization development environment secrets\": \"組織開發環境機密\", // 組織倉庫\n\n        // Dependabot 機密 /<user-name>/<repo-name>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 機密\",\n            \"Secrets are credentials that are\": \"機密是憑證\",\n            \". Anyone with\": \"。任何對此倉庫具有\",\n            \"collaborator\": \"協作者\",\n            \"access to this repository can use these secrets for Dependabot.\": \"訪問權限的人可以將這些機密用於 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"機密不會傳遞給複刻。\",\n            \"Encrypted secrets allow you to store private access tokens so that Dependabot can update dependencies from private registries.\": \"加密的機密允許您存儲私有訪問令牌，以便 Dependabot 可以從私有註冊表更新依賴項。\",\n\n            // 組織倉庫\n            \"No organization secrets have been authorized for this repository.\": \"該倉庫暫無授權任何組織機密。\",\n            // [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的組織機密可以管理，在\"],\n            \"organization settings\": \"組織設置\",\n\n            // 頂部提醒\n            \"Secret updated.\": \"機密已更新\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n        [/Organization secrets for ([^ ]+) can be managed within/, \"$1  的組織機密可以管理，在\"], // /secrets/dependabot\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Actions secrets/, \"操作機密\"],\n            [/Add Actions secret/, \"新建操作機密\"],\n            [/Actions variables/, \"操作變量\"],\n            [/Add Actions variable/, \"新建操作變量\"],\n            [/Codespaces secrets/, \"程式碼空間機密\"],\n            [/Add Codespaces secret/, \"新建程式碼空間機密\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"repository/settings/variables\"] = I18N[\"zh-TW\"][\"repository/settings/secrets\"];\n\nI18N[\"zh-TW\"][\"repository/settings/installations\"] = { // 倉庫設置 - GitHub 應用 /<user-name>/<repo-name>/settings/installations\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 集成應用 頁面 /<user-name>/<repo-name>/settings/installations====================================\n        // 全局設置在 Applications 應用 /settings/installations\n            \"Installed GitHub Apps\": \"安裝的 GitHub 應用\",\n            \"GitHub Apps augment and extend your workflows on GitHub with commercial, open source, and homegrown tools.\": \"GitHub 應用通過商業、開源和自主開發的工具來增強和擴展您在 GitHub 上的工作流程。\",\n            \"Configure\": \"配置\",\n\n            \"There aren't any GitHub Apps installed on this repository.\": \"此倉庫上未安裝任何 GitHub 應用。\",\n            \"Suspended\": \"已暫停\",\n            \"Developed by\": \"開發者:\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Apps\": \"GitHub 應用\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/notifications\"] = { // 倉庫設置 - 郵件通知 /<user-name>/<repo-name>/settings/notifications/edit\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        // 郵件通知管理 頁面 /<user-name>/<repo-name>/settings/notifications/edit ====================================\n            \"Setup email addresses to receive notifications when push events are triggered.\": \"設置電子郵箱地址，以便在推送事件被觸發時收到通知。\",\n            \"Asterisk (*) denotes a required field\": \"星號 (*) 表示必填字段\",\n            \"Address\": \"電子郵箱地址\",\n            \"Whitespace separated email addresses (at most two).\": \"用空格分隔的電子郵箱地址（最多兩個）。\",\n            \"Approved header\": \"批准的標題\",\n            \"Sets the\": \"設置\",\n            \"Active\": \"激活\",\n            \"header to automatically approve the message in a read-only or moderated mailing list.\": \"標頭以自動批准只讀或審核郵件列表中的郵件。\",\n            \"We will send notification emails to the listed addresses when a\": \"我們將向所列地址發送通知郵件，當\",\n            \"event is triggered.\": \"事件被觸發。\",\n            \"Setup notifications\": \"設置通知\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Configure email notifications\": \"配置電子郵件通知\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/settings/key_links\"] = { // 倉庫設置 - 自動鏈接引用（注：只有專業版有） /<user-name>/<repo-name>/settings/key_links\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n\n        \"Add autolink reference\": \"添加自動鏈接引用\",\n\n        \"References to GitHub issues, pull requests, and commits are automatically converted into links. Configure your own autolink references for non-GitHub URLs.\": \"GitHub 問題、拉取請求和提交的引用會自動轉換為鏈接。為非 GitHub URL 配置您自己的自動鏈接引用。\",\n            \"Learn more about automatic autolinks.\": \"瞭解更多有關自動鏈接的信息。\",\n        \"Autolinks can be either alphanumeric or numeric.\": \"自動鏈接可以是字母或數字。\",\n            \"Read more about the differences between the two.\": \"瞭解兩者之間的區別。\",\n\n        \"No custom autolink references have been created yet.\": \"尚未創建自定義自動鏈接引用。\",\n\n        // 新建 <user-name>/<repo-name>/settings/key_links/new\n            \"/ Add new\": \"/ 添加\",\n                \"Alphanumeric\": \"字母數字\",\n                    \"Alphanumeric autolinks match\": \"匹配\",\n                    \". They are not case sensitive.\": \"。不區分大小寫。\",\n                \"Numeric\": \"純數字\",\n                    \"Numeric autolinks only match\": \"只匹配\",\n\n                \"Reference prefix\": \"引用前綴\",\n                    \"This prefix appended by a string will generate a link any time it is found in an issue, pull request, or commit.\": \"這段前綴加上一個字符串後，在議題、拉取請求或提交中找到時將生成一個鏈接。\",\n                \"Target URL\": \"目標鏈接\",\n                    \"The URL must contain\": \"該鏈接必須包含\",\n                    \"for the reference number.\": \"作為引用編號。\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"Autolink references\": \"自動鏈接引用\",\n            \"Add autolink reference\": \"添加自動鏈接引用\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/transfer\"] = { // 轉讓倉庫\n    \"static\": { // 靜態翻譯\n\n        // 轉讓倉庫 /<user-name>/<repo-name>/transfer\n            \"Transfer this repository to another user or to an organization where you have the ability to create repositories.\": \"將該倉庫轉讓給另一位用戶或一個您可以創建倉庫的組織。\",\n            \"Required fields are marked with an asterisk (*).\": \"帶星號 (*) 的為必填項。\",\n            \"To understand admin access, teams, issue assignments, and redirects after a repository is transferred, see\": \"要了解倉庫轉移後的管理員訪問權限、團隊、議題分配和重定向，請參閱\",\n            \"Transferring a repository\": \"轉讓倉庫\",\n            \"in GitHub Help.\": \"在 GitHub 幫助中。\",\n            \"Transferring may be delayed until the new owner approves the transfer.\": \"轉讓可能會延遲，直到新所有者批准轉讓。\",\n            \"There\": \"有\",\n            \"are\": \" \",\n            \"is\": \" \",\n            \"that may be affected by this transfer.\": \"可能受到這次轉讓的影響。\",\n            \"New owner\": \"新所有者\",\n            \"Select one of my organizations\": \"選擇一個我的組織\",\n            \"Choose an owner\": \"選擇所有者\",\n            \"Filter…\": \"篩選…\",\n            \"Specify an organization or username\": \"指定組織或用戶名\",\n            \"Repository name\": \"倉庫名\",\n                \"Checking availability…\": \"檢查可用性…\",\n                \"The repository\": \"倉庫\",\n                \"already exists on this account\": \"已經存在於此賬戶\",\n                \"Your new repository will be created as\": \"您的新倉庫將被創建為\",\n                \"New repository name must not be blank\": \"新倉庫名稱不能為空\",\n\n            // 私有倉庫轉讓\n                \"If\": \"如果\",\n                \"username\": \"用戶名\",\n                \"is using\": \"使用\",\n                \"and accepts the transfer, they will lose access to private repository features:\": \"並接受轉移，他們將失去對私有倉庫功能的訪問：\",\n                \"Code owners\": \"程式碼所有者\",\n                \"Any existing\": \"任何已存在的\",\n                \"wikis\": \"WiKi\",\n                \"Pulse, Contributors, Community, Traffic, Commits, Code Frequency, Network,\": \"統計，貢獻者，社區，流量，提交，程式碼頻率，網絡，\",\n                \"Forks\": \"複刻\",\n                \"on the\": \"在\",\n                \"Insights\": \"洞察\",\n                \"tab\": \"標籤頁\",\n                \"Draft\": \"草案\",\n                \"PRs\": \"拉取請求\",\n                \"Multiple assignees\": \"多個受讓人\",\n                \"for issues and PRs\": \"的議題和拉取請求\",\n                \"Multiple reviewers\": \"多個審查者\",\n                \"for PRs\": \"的拉去請求\",\n                \"Branch and tag protection rules\": \"分支和標籤保護規則\",\n\n                \"can\": \"可\",\n                \"upgrade\": \"升級\",\n                \"their plan before accepting the transfer to avoid losing access.\": \"他們的計劃在接受轉讓之前，以避免失去訪問權。\",\n\n            \"Individual users, teams, and apps will be removed from the following options:\": \"個人用戶、團隊和應用將從以下選項中刪除：\",\n                \"Repository ruleset bypassers\": \"倉庫規則旁路設置\",\n                \"Protected branch pull request bypassers\": \"受保護分支拉取請求旁路設置\",\n                \"Protected branch authorized pull request review dismissers\": \"受保護分支授權拉取請求審核駁回者\",\n                \"Protected branch authorized pushers\": \"受保護分支授權的推送者\",\n                \"Protected branch allowed force pushers\": \"受保護分支允許強制推送者\",\n\n            \"Warning: This is a potentially destructive action.\": \"警告：這是一個潛在的破壞性行為。\",\n\n            \"to confirm.\": \"進行確認。\",\n            \"I understand, transfer this repository.\": \"我明白了，依然轉讓該倉庫。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Transfer repository:/, \"轉讓倉庫:\"],\n        [/(\\d+) codespaces?/, \"$1 個程式碼空間\"],\n        [/is available./, \"名稱可用。\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/codespaces\"] = { // 倉庫 - 程式碼空間界面 /<user-name>/<repo-name>/codespaces\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        // 倉庫 - 程式碼空間界面 /<user-name>/<repo-name>/codespaces\n            \"Codespace usage for this repository is paid for by\": \"該倉庫的程式碼空間使用費由以下人員支付\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 程式碼空間入門\",\n                \"Learn core concepts\": \"學習核心概念\",\n                    \"New to Codespaces?\": \"剛接觸程式碼空間？\",\n                    \"Start here\": \"從這裡開始\",\n                    \". Learn the core concepts and how to get started.\": \"。學習核心概念以及如何開始。\",\n                \"Configure and manage\": \"配置和管理\",\n                    \"Learn more about features like\": \"瞭解更多關於功能的信息，例如\",\n                    \"secret management\": \"機密管理\",\n                    \"port forwarding\": \"端口轉發\",\n                \"Develop locally\": \"在本地開發\",\n                    \"Access codespaces from within\": \"從內部訪問程式碼空間，使用\",\n\n            \"Go to docs\": \"轉到文檔\",\n            // [/Create codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n                    \"2-core • 8GB RAM • 32GB\": \"雙核 • 8GB 內存 • 32GB 硬盤\",\n                \"Configure and create codespace\": \"配置並創建程式碼空間\",\n                    \"Show advanced options before launching codespace\": \"啟動程式碼空間前顯示高級選項\",\n            \"Opening in codespace\": \"在程式碼空間中打開\",\n\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 內存 • 32GB 硬盤\",\n\n            // [/(\\d+) codespaces?/, \"$1 個程式碼空間\"],\n            \"Retrieving…\": \"正在檢索…\",\n            \"Active\": \"活躍\",\n            \"Show more actions for codespace\": \"顯示程式碼空間的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名程式碼空間\",\n                    \"Name\": \"名稱\",\n                \"Export changes to a branch\": \"將更改導出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"這將創建一個包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"檢查分支情況\",\n                    \"Create branch\": \"創建分支\",\n                \"Export changes to a fork\": \"將更改導出到複刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您沒有對此程式碼空間的倉庫的寫訪問權限。這將創建一個新的倉庫分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，將程式碼空間重新分配給該複刻，並將更改導出到新分支。\",\n                    \"Create fork\": \"創建複刻\",\n                \"Change machine type\": \"修改機器類型\",\n                    \"Change codespace machine type\": \"修改程式碼空間機器類型\",\n                        \"Machine type\": \"機器類型\",\n                            \"2-core\": \"雙核\",\n                            \"8GB RAM • 32GB\": \"8GB 內存 • 32GB 硬盤\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 內存 • 32GB 硬盤\",\n                        \"Update codespace\": \"更新程式碼空間\",\n                \"Stop codespace\": \"停止程式碼空間\",\n                \"Auto-delete codespace\": \"自動刪除程式碼空間\",\n                \"Open in Browser\": \"在瀏覽器中打開\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打開\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打開\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打開\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Create codespace on ([^ ]+)/, \"在 $1 上創建程式碼空間\"],\n        [/(\\d+) codespaces?/, \"$1 個程式碼空間\"],\n        [/Last used ([^ ]+)/, \"上次使用 $1\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/custom-properties\"] = { // 倉庫 - 自定義屬性 https://github.com/<uesr-name>/<repo-name>/custom-properties\n    \"static\": {\n        \"Custom properties\": \"自定義屬性\",\n        \"Custom properties allow you to decorate your repository with information such as compliance frameworks, data sensitivity, or project details.\": \"自定義屬性允許您為倉庫添加信息，例如合規框架、數據敏感性或專案詳情。\",\n\n        // 面板\n        \"No custom properties set for this repository.\": \"該倉庫尚未設置自定義屬性。\",\n        \"Learn more about custom properties\": \"瞭解更多關於自定義屬性的信息\",\n        \"and how to set them at the organization level.\": \"以及如何在組織級別進行設置。\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-TW\"][\"repository/codespaces\"] = { // 倉庫 - 內容舉報 /<user-name>/<repo-name>/reported_content\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n\n        \"Reported content\": \"內容舉報\",\n        \"Users can report abusive or distruptive content for review and moderation.\": \"用戶可以舉報辱罵性或破壞性內容，以供審查和審核。\",\n        \"Learn more about reported content\": \"瞭解更多關於舉報內容的信息。\",\n        \"Report content setting\": \"舉報內容設置\",\n        \"All users\": \"所有用戶\",\n        \"Any user on GitHub is able to report content\": \"GitHub 上的任何用戶都可以舉報內容\",\n        \"Prior contributors and collaborators\": \"先前的貢獻者和協作者\",\n        \"Only users who have previously contributed to the repository and collaborators will be able to report content\": \"只有之前曾為倉庫做出貢獻的用戶和協作者才能夠舉報內容\",\n        \"Disable content reporting\": \"禁用內容舉報\",\n        \"Disable content reporting for all users\": \"為所有用戶禁用內容舉報\",\n        \"Abuse reports\": \"濫用報告\",\n        \"The following content has been reported by users:\": \"以下內容已被用戶舉報：\",\n        \"Reported Content\": \"未解決\",\n        \"Resolved\": \"已解決\",\n        \"There aren't any unresolved content reports for this repository.\": \"此倉庫沒有任何未解決的內容舉報。\",\n        \"There aren't any resolved content reports for this repository.\": \"此倉庫沒有任何已解決的內容舉報。\",\n    },\n    \"regexp\": [ // 正則翻譯\n\n    ],\n};\n\n// 倉庫相關==\n\nI18N[\"zh-TW\"][\"homepage\"] = { // 未登錄的首頁\n    \"static\": { // 靜態翻譯\n        //\"GitHub Copilot is now available for free.\": \"免費使用 GitHub Copilot。\",\n        //\"Let’s build from here\": \"讓我們從這裡開始\",\n        //\"The world’s leading AI-powered developer platform.\": \"全球領先的人工智能開發者平臺。\",\n        //\"Build and ship software on a single, collaborative platform\": \"在單一協作平臺上構建和發佈軟體\",\n        //\"Join the world’s most widely adopted AI-powered developer platform.\": \"加入全球最廣泛採用的人工智能開發者平臺\",\n        //\"Join the world’s most widely adopted AI-powered developer platform where millions of developers, businesses, and the largest open source community build software that advances humanity.\": \"加入全球最廣泛採用的人工智能開發者平臺，在這裡，數百萬的開發人員、企業和最大的開源社區構建推動人類進步的軟體。\",\n        \"Explore the latest tools from Universe '25\": \"探索 Universe '25 的最新工具\",\n        \"The future of building happens together\": \"構建未來的方式是共同創造\",\n        \"Tools and trends evolve, but collaboration endures. With GitHub, developers, agents, and code come together on one platform.\": \"工具與趨勢不斷演變，但協作永恆。有 GitHub在，開發者、智能體與程式碼在同一個平臺匯聚。\",\n\n        //\"Email address\": \"電子郵箱地址\",\n        \"Enter your email\": \"鍵入郵箱地址\",\n        \"Sign up for GitHub\": \"註冊 GitHub\",\n        //\"Start a free enterprise trial\": \"開始免費試用企業版\",\n        \"Try GitHub Copilot free\": \"免費試用 GitHub Copilot\",\n\n        \"Try Copilot Free\": \"試用 GitHub Copilot\",\n            \"30 days free\": \"30天免費\",\n        \"Free Enterprise trial\": \"免費試用企業版\", // 已登錄\n        \"Explore upcoming releases\": \"探索即將發佈的產品\", // 已登錄\n\n        // 程式碼\n            \"Write, test, and fix code quickly with GitHub Copilot, from simple boilerplate to complex features.\": \"使用 GitHub Copilot 快速編寫、測試和修復程式碼，從簡單的樣板程式碼到複雜功能都能勝任。\",\n        \"Plan\": \"計劃\",\n            \"Align your team from idea to launch with tools that track work, visualize roadmaps, and gather insights.\": \"藉助跟蹤工作、可視化路線圖、收集洞察的工具，讓團隊從創意到上線全程對齊。\",\n        \"Collaborate\": \"協作\",\n            \"Enable your team to collaborate with agents to plan, code, and test the next big thing.\": \"讓團隊與智能體協作，一起規劃、編寫和測試下一個大專案。\",\n        \"Automate\": \"自動化\",\n            \"Improve your software development process by automating builds, tests, and deployments with CI/CD.\": \"通過 CI/CD 自動化構建、測試和部署，提升整個軟體開發流程。\",\n        \"Secure\": \"安全\",\n            \"Leverage tooling to detect, review, and fix vulnerabilities before they reach production.\": \"利用工具在漏洞進入生產之前檢測、審查並修復漏洞。\",\n\n        \"Accelerate your entire workflow\": \"加速你的全部工作流\",\n            \"From your first line of code to final deployment, GitHub provides AI and automation tools to help you build and ship better software faster.\": \"從第一行程式碼到最終部署，GitHub 提供 AI 和自動化工具，幫助你更快地構建並發布更優質的軟體。\",\n\n            \"Your AI partner everywhere.\": \"你的 AI 夥伴，無處不在。\",\n                \"Copilot is ready to work with you at each step of the software development lifecycle.\": \"Copilot 已準備好在軟體開發生命週期的每一個階段與你並肩工作。\",\n\n            \"Work 55% faster.\": \"工作快 55%。\",\n                \"Increase productivity with AI-powered coding assistance, including code completion, chat, and more.\": \"通過人工智能編碼輔助（包括程式碼完成、聊天等）提高生產力。\",\n                \"Survey: The AI wave continues to grow on software development teams, 2024.\": \"調查：2024 年，人工智能浪潮將在軟體開發團隊中持續高漲。\",\n                \"Explore GitHub Copilot\": \"探索 GitHub Copilot\",\n\n            \"Duolingo boosts developer speed by 25% with GitHub Copilot\": \"多鄰國利用 GitHub Copilot 將開發速度提高了 25%\",\n              \"Read customer story\": \"閱讀客戶故事\",\n\n            \"2025 Gartner® Magic Quadrant™ for AI Code Assistants\": \"2025 Gartner® AI 程式碼助手魔力象限™\",\n              \"Read industry report\": \"閱讀行業報告\",\n\n        \"Automate your path to production\": \"自動化通往生產的路徑\",\n            \"Ship faster with secure, reliable CI/CD.\": \"使用安全可靠的 CI/CD，更快交付。\",\n            \"Explore GitHub Actions\": \"探索 GitHub Actions\",\n\n            \"Code instantly from anywhere\": \"隨時隨地立即開始編碼\",\n            \"Launch a full, cloud-based development environment in seconds.\": \"幾秒內啟動完整的雲端開發環境。\",\n            \"Explore GitHub Codespaces\": \"探索 GitHub 程式碼空間\",\n\n            \"Keep momentum on the go\": \"隨時隨地保持開發節奏\",\n            \"Manage projects and assign tasks to Copilot, all from your mobile device.\": \"在手機上就能管理專案、給 Copilot 派任務。\",\n            \"Explore GitHub Mobile\": \"探索 GitHub 移動端\",\n\n            \"Shape your toolchain\": \"塑造你的工具鏈\",\n            \"Extend your stack with apps, actions, and AI models.\": \"通過應用、Actions 和 AI 模型擴展你的技術棧。\",\n            \"Explore GitHub Marketplace\": \"探索 GitHub 市場\",\n\n        \"Built-in application security where found means fixed\": \"內置應用安全，發現即修復\",\n            \"Use AI to find and fix vulnerabilities so your team can ship more secure software faster.\": \"利用 AI 發現並修復漏洞，讓團隊更快交付更安全的軟體。\",\n\n            \"Apply fixes in seconds.\": \"在幾秒鐘內完成修復。\",\n                \"Spend less time debugging and more time building features with Copilot Autofix.\": \"使用 Copilot 自動修復，花更少時間調試，把更多時間用來開發新功能。\",\n                \"Explore GitHub Advanced Security\": \"探索 GitHub 高級安全\",\n\n                \"Security debt, solved.\": \"安全債務，一鍵解決。\",\n                    \"Leverage security campaigns and Copilot Autofix to reduce application vulnerabilities.\": \"利用安全整治活動和 Copilot 自動修復，大幅減少應用漏洞。\",\n                    \"Learn about GitHub Code Security\": \"瞭解 GitHub 程式碼安全功能\",\n\n                \"Dependencies you can depend on.\": \"您可以依賴的依賴項。\",\n                    \"Update vulnerable dependencies with supported fixes for breaking changes.\": \"使用支持的修復程式更新易受攻擊的依賴項\\n以解決重大更改。\",\n                    \"Learn about Dependabot\": \"瞭解 Dependabot\",\n\n                \"Your secrets, your business.\": \"你的密鑰，你說了算。\",\n                    \"Detect, prevent, and remediate leaked secrets across your organization.\": \"檢測、預防並補救整個組織內洩露的機密。\",\n                    \"Learn about GitHub Secret Protection\": \"瞭解 GitHub 密鑰保護功能\",\n\n                \"70% MTTR reduction\": \"平均修復時間 (MTTR) 降低 70%\",\n                    \"with Copilot Autofix\": \"得益於 Copilot 自動修復\",\n\n                \"8.3M secret leaks stopped\": \"阻止了 830 萬次密鑰洩露\",\n                    \"in the past 12 months with push protection\": \"過去 12 個月內通過推送保護實現\",\n\n        \"Work together, achieve more\": \"共同協作，取得更大成就\",\n            \"From planning and discussion to code review, GitHub keeps your team’s conversation and context next to your code.\": \"從規劃、討論到程式碼審查，GitHub 始終將團隊的對話和上下文緊貼在程式碼旁邊。\",\n\n            \"Plan with clarity.\": \"清晰規劃。\",\n                \"Organize everything from high-level roadmaps to everyday tasks.\": \"從高層路線圖到日常任務，一切井井有條。\",\n                \"Explore GitHub Projects\": \"探索 GitHub 專案\",\n            \"It helps us onboard new software engineers and get them productive right away. We have all our source code, issues, and pull requests in one place... GitHub is a complete platform that frees us from menial tasks and enables us to do our best work.\": \"它可以幫助我們吸收新的軟體工程師，讓他們立即投入工作。我們的所有源程式碼、問題和拉取請求都在一個地方... GitHub 是一個完整的平臺，它將我們從瑣碎的工作中解脫出來，讓我們能夠全力以赴。\",\n                \"Application manager at Mercedes-Benz\": \"Mercedes-Benz 應用管理員\",\n            \"Keep track of your tasks\": \"跟蹤任務\",\n                \"Create issues and manage projects with tools that adapt to your code.\": \"創建議題和管理專案的工具能適應您的程式碼。\",\n                \"Explore GitHub Issues\": \"探索 GitHub 議題\",\n            \"Share ideas and ask questions\": \"交流想法和提出問題\",\n                \"Create space for open-ended conversations alongside your project.\": \"在開展專案的同時，為開放式對話創造空間。\",\n                \"Explore GitHub Discussions\": \"探索 GitHub 討論\",\n            \"Review code changes together\": \"共同審查程式碼\",\n                \"Assign initial reviews to Copilot for greater speed and quality.\": \"將初步審查交給 Copilot，獲得更快的速度和更高的質量。\",\n                \"Explore code review\": \"探索程式碼審查\",\n            \"Fund open source projects\": \"資助開源專案\",\n                \"Become an open source partner and support the tools and libraries that power your work.\": \"成為開源合作伙伴，支持為您的工作提供動力的工具和庫。\",\n                \"Explore GitHub Sponsors\": \"探索 GitHub 贊助\",\n\n        \"From startups to enterprises,\": \"從初創公司到大型企業，\",\n            \"GitHub scales with teams of any size in any industry.\": \"GitHub 能適配任何規模、任何行業的團隊。\",\n\n            // 工業\n                \"Technology\": \"技術\",\n                \"Figma streamlines development and strengthens security\": \"Figma 簡化開發並增強安全性\",\n                \"Automotive\": \"汽車\",\n                \"Mercedes-Benz standardizes source code and automates onboarding\": \"奔馳標準化源程式碼並自動化入職\",\n                \"Mercado Libre cuts coding time by 50%\": \"Mercado Libre 將編碼時間縮短了 50%\",\n            \"By size\": \"規模\",\n                \"Buffer enhances collaboration and control with GitHub Team\": \"Buffer 通過 GitHub 團隊 提升協作與控制力\",\n                \"Accenture customizes GitHub Copilot for its 12,000 developers\": \"埃森哲為其 12,000 名開發者定製 GitHub Copilot\",\n                \"Philips reduces infrastructure costs by 80%\": \"飛利浦將基礎設施成本降低 80%\",\n            // 使用案例\n                \"TELUS saves $16.9M with GitHub\": \"TELUS 使用 GitHub 節省 1690 萬美元\",\n                \"Automation\": \"自動化\",\n                \"Fullstory automates DevSecOps at scale with GitHub\": \"Fullstory 使用 GitHub 大規模自動化 DevSecOps\",\n                \"EY leverages GitHub and Microsoft Azure DevOps to outpace the competition\": \"安永（EY）藉助 GitHub 和 Microsoft Azure DevOps 領先競爭對手\",\n\n            \"Explore customer stories\": \"探索客戶故事\",\n\n        \"Millions of developers and businesses call GitHub home\": \"數百萬開發者和企業將 GitHub 視為自己的家\",\n            \"Whether you’re scaling your development process or just learning how to code, GitHub is where you belong. Join the world’s most widely adopted developer platform to build the technologies that shape what’s next.\": \"無論你是正在擴展開發流程，還是剛剛開始學習編程，GitHub 都是你的歸屬之地。加入全球採用最廣泛的開發者平臺，一起構建塑造未來的技術。\",\n\n        \"GitHub internal customer data, 2025.\": \"GitHub 內部客戶數據，2025年。\",\n\n        // 底部欄\n        \"Subscribe to our developer newsletter\": \"訂閱我們的開發者新聞\",\n        \"Get tips, technical guides, and best practices. Twice a month.\": \"獲取提示、技術指南和最佳實踐。每月兩次。\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"獲取提示、技術指南和最佳實踐。每月兩次。直接發送到您的收件箱。\",\n        \"Subscribe\": \"訂閱\",\n\n        \"Features\": \"功能\",\n        \"Roadmap\": \"路線圖\",\n        \"Compare GitHub\": \"比較 GitHub\",\n\n        \"Ecosystem\": \"生態\",\n        \"Platform\": \"平臺\",\n        \"Developer API\": \"開發者 API\",\n        \"Education\": \"教育\",\n        \"GitHub Desktop\": \"GitHub 桌面端\",\n        \"GitHub Mobile\": \"GitHub 移動端\",\n\n        \"Support\": \"支持\",\n        \"Community Forum\": \"社區論壇\",\n        \"Professional Services\": \"專業服務\",\n        \"Premium Support\": \"高級支持\",\n        \"Skills\": \"技能\",\n\n        \"Company\": \"公司\",\n        \"Customer stories\": \"客戶案例\",\n        \"The ReadME Project\": \"ReadME 專案\",\n        \"Careers\": \"招賢納士\",\n        \"Press\": \"新聞\",\n        \"Inclusion\": \"包容性\",\n        \"Newsroom\": \"媒體\",\n        \"Social Impact\": \"社會責任\",\n        \"Shop\": \"商店\",\n\n        \"Sitemap\": \"網站地圖\",\n        \"What is Git?\": \"什麼是 Git？\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub · Change is constant. GitHub keeps you ahead. · GitHub\": \"GitHub · 變化是常態，GitHub 讓你始終領先 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"home\"] = I18N[\"zh-TW\"][\"homepage\"];\n\nI18N[\"zh-TW\"][\"session-authentication\"] = { // 登錄頁 包含(/login, /session, /sessions/two-factor, sessions/recovery, /sessions/recovery/token, /password_reset等)\n    \"static\": { // 靜態翻譯\n\n        // 登錄頁 https://github.com/login\n            \"Your account was created successfully. Please sign in to continue\": \"您的賬戶創建成功，請繼續登錄\",\n\n            \"Sign in to GitHub\": \"登錄 GitHub\",\n            \"Sign in to\": \"登錄\",\n            \"Signed in as\": \"登錄身份為\",\n            \"to continue to\": \"繼續登錄\",\n            \"Username or email address\": \"用戶名或電子郵箱\",\n            \"Password\": \"密碼\",\n            \"Forgot password?\": \"忘記密碼？\",\n            \"Sign in\": \"登錄\",\n            \"Sign in with a passkey\": \"使用通行密鑰登錄\",\n            \"Signing in…\": \"登錄中…\",\n\n            \"Add an account\": \"添加賬號\", // 添加新賬號\n            \"Want to create an account?\": \"想要新建一個賬戶嗎？\", // 添加新賬號\n\n            \"Or\": \"或\",\n            \"Continue with Google\": \"使用 Google 繼續\",\n                \"Continuing with Google...\": \"使用 Google 繼續…\",\n            \"Continue with Apple\": \"使用 Apple 繼續\",\n                \"Continuing with Apple...\": \"使用 Apple 繼續…\",\n            // \"This browser or device does not fully support passkeys.\": \"此瀏覽器或設備不完全支持通行密鑰。\",\n            \"This browser or device is reporting partial passkey support.\": \"此瀏覽器或設備報告部分支持通行密鑰。\",\n            \"Sign-in with a passkey\": \"使用通行密鑰登錄\",\n\n            \"New to GitHub?\": \"初次接觸 GitHub？\",\n            \"Create an account\": \"那就註冊個賬戶吧\",\n\n            \"Contact GitHub Support\": \"聯繫 GitHub 支持\",\n\n            // 驗證狀態提醒\n            \"Incorrect username or password.\": \"用戶名或密碼不正確。\",\n            \"Recovery code authentication failed.\": \"恢復碼身份驗證失敗。\",\n\n        // 設備授權激活 https://github.com/login/device\n            \"Device Activation\": \"設備激活\",\n            \"Enter the code displayed on your device\": \"輸入您的設備上顯示的程式碼\",\n            \"Continue\": \"繼續\",\n            \"GitHub staff will never ask you to enter your code on this page.\": \"GitHub 工作人員絕不會要求您在此頁面上輸入您的程式碼。\",\n\n        // 設備授權第2頁面 https://github.com/login/device/confirmation\n            // [/Authorize/, \"授權\"],\n            \"This authorization was requested from\": \"此授權請求來自\",\n            \"Make sure you trust this device as it will get access to your account.\": \"請確保您信任該設備，因為它可以訪問您的賬戶。\",\n            \"wants to access your\": \"希望訪問您的\",\n            \"account\": \"賬戶\",\n            \"Organization access\": \"組織訪問\",\n            \"Requested from\": \"請求自\",\n\n            \"Owned & operated by GitHub\": \"由 GitHub 擁有和運營\",\n            \"Created\": \"創建於\",\n            \"More than 1K\": \"超過1K\",\n            \"GitHub users\": \"GitHub 用戶\",\n            \"Learn more about OAuth\": \"瞭解更多關於 OAuth 的信息\",\n\n        // 設備授權成功 https://github.com/login/device/success\n            \"Congratulations, you're all set!\": \"恭喜，一切就緒！\",\n            \"Your device is now connected.\": \"您的設備現已連接。\",\n\n        // 設備授權失敗 https://github.com/login/device/failure?reason=not_found\n            \"Uh oh, we couldn't find anything\": \"呃，我們找不到任何東西\",\n            \"Please make sure you entered the user code correctly.\": \"請確保您輸入正確的用戶程式碼。\",\n\n        // 設備驗證 https://github.com/sessions/verified-device\n            \"Device verification\": \"設備驗證\",\n            \"Email\": \"電子郵件\",\n            \"Device Verification Code\": \"設備驗證碼\",\n            \"Having trouble verifying via email?\": \"通過電子郵件驗證時遇到問題？\",\n                \"Re-send the authentication code\": \"重新發送驗證碼\",\n                \"Try GitHub Mobile for simplified device verification\": \"嘗試 GitHub Mobile 的簡化設備驗證\",\n            \"If you'd like to require verification on every sign in, consider enabling\": \"如果您想在每次登錄時都要求進行驗證，請考慮在您的賬戶上啟用\",\n                \"two-factor authentication\": \"雙因素身份驗證\",\n                \"on your account.\": \"。\",\n            // 黃色橫幅\n            \"Incorrect verification code provided.\": \"提供的驗證碼錯誤。\",\n\n        // 雙因素身份驗證登錄 https://github.com/sessions/two-factor/app\n            // \"Learn more\": \"瞭解更多\",\n            // \"Learn more.\": \"瞭解更多。\",\n            \"Confirm password to continue\": \"確認密碼以繼續\",\n            \"Confirm password\": \"確認密碼\",\n            \"Tip:\": \"提示：\",\n\n            \"Two-factor authentication\": \"雙因素身份驗證\",\n            \"Authentication code\": \"驗證碼\",\n                \"More information about Authentication Codes\": \"更多關於驗證碼的信息\",\n            //\"Signing in…\": \"登錄中…\",\n            \"6-digit code\": \"6位驗證碼\",\n            \"Verify\": \"驗證\",\n                \"Verifying\": \"驗證中\",\n                \"Verifying…\": \"驗證中…\",\n            \"Open the two-factor authenticator (TOTP) app on your mobile device to view your authentication code.\": \"打開您的移動設備上的 “雙因素身份驗證器” 應用（TOTP），以查看您的身份驗證碼。\",\n\n            \"Use this method for future logins\": \"今後的登錄中使用此方法\",\n                \"Future logins on this device will prompt you to use\": \"今後在該設備上的登錄將提示您使用\",\n                \"an authentication code\": \"一個驗證碼\",\n                \"by default.\": \"作為默認方式。\",\n\n            \"Having problems?\": \"有問題嗎？\",\n                \"Use your passkey\": \"使用您的通行密鑰\",\n                \"Authenticate with GitHub Mobile\": \"使用 GitHub Mobile 進行身份驗證\",\n                \"Use a recovery code or begin 2FA account recovery\": \"使用恢復碼或開始 2FA 賬戶恢復\",\n\n        // https://github.com/sessions/two-factor/mobile\n            \"We sent you a sign-in request on your GitHub Mobile app. Approve the request to verify your identity.\": \"我們向您的 GitHub Mobile 應用發送了一個登錄請求。批准驗證您的身份的請求。\",\n            \"We sent you a sign-in request on your GitHub Mobile app. Enter the digits shown below to verify your identity.\": \"我們向您的 GitHub Mobile 應用發送了一個登錄請求。輸入下面顯示的數字以驗證您的身份。\",\n            \"We could not verify your identity\": \"我們無法核實您的身份\",\n            \"Retry\": \"請重試\",\n\n            \"Unable to verify with GitHub Mobile?\": \"無法使用 GitHub Mobile 進行驗證？\",\n                \"Enter two-factor authentication code\": \"輸入雙因素身份驗證碼\",\n\n            // 驗證狀態提醒\n            \"Sign-in request timed out.\": \"登錄請求超時。\",\n\n        // https://github.com/sessions/two-factor/webauthn\n            \"Passkey\": \"通行密鑰\",\n            \"When you are ready, authenticate using the button below.\": \"準備好後，請使用下面的按鈕進行身份驗證。\",\n            \"Use passkey\": \"使用通行密鑰\",\n\n            \"Authentication failed.\": \"認證失敗。\",\n            \"Retry passkey\": \"重試通行密鑰\",\n\n            \"Unable to verify with your passkey?\": \"無法驗證您的通行密鑰？\",\n\n        // 雙因素身份驗證恢復 https://github.com/sessions/two-factor/recovery\n            \"Two-factor recovery\": \"雙因素身份驗證恢復\",\n            \"Recovery code\": \"恢復碼\",\n\n            \"If you are unable to access your mobile device, enter one of your recovery codes to verify your identity.\": \"如果您無法訪問您的移動設備，請輸入您的一個恢復碼以驗證您的身份。\",\n\n            \"Don't have a recovery code?\": \"沒有恢復碼？\",\n            \"Where to find recovery codes\": \"哪裡可以找到恢復碼\",\n\n            \"Locked out?\": \"被鎖在外面了嗎？\",\n            \"Try recovering your account, or unlink your account email address(es)\": \"請嘗試恢復您的賬戶，或取消關聯您的賬戶電子郵件地址。\",\n\n            // 恢復賬戶對話框\n            \"Recovering your account\": \"恢復您的賬戶\",\n            \"If you can’t access a verified device or recovery codes you can request a reset of your authentication settings. For security reasons\": \"如果您無法訪問已驗證的設備或恢復碼，您可以請求重置您的驗證設置。出於安全考慮\",\n            \"this can take 1-3 days\": \"這可能需要 1-3 天\",\n            \"Step 1\": \"第一步\",\n            \"Verify an email associated with this account.\": \"驗證與該賬戶相關的電子郵箱。\",\n            \"Step 2\": \"第二步\",\n            \"Verify a device, SSH key or personal access token.\": \"驗證一個設備、SSH 密鑰或個人訪問令牌。\",\n            \"Step 3\": \"第三步\",\n            \"GitHub support will review your request\": \"GitHub 支持將審查您的請求\",\n            \"within 1-3 days\": \"在 1-3 天內\",\n            \"I understand, get started\": \"我知道了，開始吧\",\n\n            \"Two-factor authentication failed.\": \"雙因素身份驗證失敗。\",\n\n        // 賬戶恢復 https://github.com/sessions/recovery\n            \"Account recovery\": \"賬戶恢復\",\n            \"The account recovery process can take 1-3 business days. We recommend one of the following if possible.\": \"賬戶恢復過程可能需要 1-3 個工作日。如果可能，我們推薦以下其中一項。\",\n            \"Enter a recovery code\": \"輸入恢復碼\",\n                \"The file containing your recovery codes may exist on your computer - check for a file named\": \"包含恢復碼的文件可能存在於您的計算機上——請檢查一個名為\",\n            //使用 GitHub Mobile 應用進行身份驗證\n            \"It looks like you have a GitHub Mobile session that could be used for two-factor authentication. If you have access to your mobile device, you may be able to use it to login.\": \"看起來您有一個 GitHub Mobile 會話，可以用來進行雙因素身份驗證。如果您能訪問您的移動設備，您也許能用它來登錄。\",\n\n            \"First we need to verify an email address\": \"首先，我們需要驗證一個電子郵箱地址\",\n            \"by sending a one-time password to all addresses associated with this account.\": \"用於通過向該賬戶關聯的所有地址發送一次性密碼。\",\n            \"Send one-time password\": \"發送一次性密碼\",\n\n            // 驗證提醒\n            \"Recovery email sent\": \"已發送恢復電子郵件\",\n\n            \"One-time password\": \"一次性密碼\",\n            \"Verify email address\": \"驗證電子郵箱地址\",\n            \"We sent an email to all addresses associated with this account containing a one-time password.\": \"我們向與該賬戶相關的所有郵箱地址發送了一封電子郵件，其中包含一個一次性的密碼。\",\n            \"Resend email\": \"重新發送郵件\",\n\n            \"Next we need to verify an alternative factor.\": \"接下來，我們需要驗證另一個因素。\",\n            \"This can be a verified device, an SSH key or a personal access token associated with this account.\": \"這可以是一個經過驗證的設備，一個SSH 密鑰或一個與此賬戶相關的個人訪問令牌。\",\n            \"Cannot verify this device\": \"無法驗證該設備\",\n            \"or verify a\": \"或者驗證\",\n            \"SSH key\": \"SSH 密鑰\",\n            \"Personal access token\": \"個人訪問令牌\",\n\n            \"Unable to verify an alternative factor?\": \"無法驗證另一個因素？\",\n            \"Contact support\": \"聯繫支持部門\",\n\n            // \"Sign in to\": \"登錄\",\n            // \"To continue to\": \"繼續登錄\",\n\n            // 定時確認您的賬戶恢復設置\n            \"Confirm your account recovery settings\": \"確認您的賬戶恢復設置\",\n            \"Are your account recovery settings up to date? If not, you risk getting locked out of your account.\": \"您的賬戶恢復設置是否最新？如果沒有，您就有被鎖定賬戶的風險。\",\n            \"Emails\": \"電子郵箱\",\n                \"View and update your email addresses\": \"查看和更新您的電子郵箱地址\",\n\n                \"Verified emails\": \"經過驗證的電子郵箱\",\n                    // [/(\\d+) verified emails?/, \"$1 個經過驗證的郵箱\"],\n                \"Verified emails give you access to more features on GitHub.\": \"經過驗證的電子郵箱讓您可以使用 GitHub 上的更多功能。\",\n                \"Unverified emails\": \"未經驗證的電子郵箱\",\n                \"Unverified emails cannot receive notifications or be used to reset your password.\": \"未經驗證的電子郵箱無法接收通知或用於重置密碼。\",\n            \"Password Alternatives\": \"密碼替代方案\",\n                \"Passkeys\": \"通行密鑰\",\n                // [/(\\d+) keys?/, \"$1 個通行密鑰\"],\n                \"Passkeys are webauthn credentials that validate your identity using touch, facial recognition, a device password, or a PIN. They can be used as a password replacement or as a 2FA method.\": \"通行密鑰是一種 WebAuthn 憑證，可以使用觸摸、面部識別、設備密碼或 PIN 碼驗證您的身份。它們可以作為密碼替代品或作為雙因素身份驗證（2FA）方法使用。\",\n                    \"This browser or device is reporting partial passkey support, but you may be able to use a passkey from a nearby device.\": \"此瀏覽器或設備報告支持部分通行密鑰，但您也許可以嘗試使用附近設備的通行密鑰。\",\n            \"Two-factor methods\": \"雙因素身份驗證方式\",\n                \"Your preferred 2FA method is\": \"您首選的 2FA 方式是\",\n                \"Configured\": \"已配置\",\n                \"Not configured\": \"未配置\",\n\n                \"Authenticator app\": \"身份驗證器應用\",\n                    \"Use an authentication app or browser extension to get two-factor authentication codes when prompted.\": \"在出現提示時，使用身份驗證應用或瀏覽器擴展獲取雙因素身份驗證碼。\",\n                \"SMS/Text message\": \"短信/文字信息\",\n                    // [/You will receive one-time codes at this phone number:/, \"您將通過以下電話號碼收到一次性驗證碼：\"], // 已設置短信/文字信息\n                \"Security keys\": \"安全密鑰\",\n                    \"Security keys are hardware devices that can be used as your second factor of authentication.\": \"安全密鑰是一種硬件設備，可以作為您的第二驗證因素。\",\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"GitHub Mobile can be used for two-factor authentication by installing the GitHub Mobile app and signing in to your account.\": \"通過安裝 GitHub Mobile 應用並登錄賬戶，可以使用 GitHub Mobile 來進行雙因素身份驗證。\",\n                    \"No devices\": \"沒有設備\",\n                \"SMS number\": \"手機號碼\",\n            \"Recovery options\": \"恢復選項\",\n                \"Recovery codes\": \"恢復碼\",\n                    \"Recovery codes can be used to access your account in the event you lose access to your device and cannot receive two-factor authentication codes.\": \"恢復碼可用於在您無法訪問設備且無法接收雙因素身份驗證碼的情況下訪問您的賬戶。\",\n                    \"Viewed\": \"已查看\",\n\n            \"Make changes\": \"進行更改\",\n            \"Confirm\": \"確認\",\n            \"Remind me later\": \"稍後提醒我\",\n\n        // 驗證個人訪問令牌 https://github.com/sessions/recovery/token\n            \"Verify a personal access token\": \"驗證個人訪問令牌\",\n            \"you've used in the past to verify your account. The token must have\": \"您過去曾用於驗證您的賬戶。令牌必須具有\",\n            \"scope.\": \"範圍。\",\n            \"Verify and submit for review\": \"驗證並提交審核\",\n\n            // 驗證提醒\n            \"Unable to verify personal access token\": \"無法驗證個人訪問令牌\",\n\n        // 配置無密碼身份驗證 https://github.com/sessions/trusted-device?return_to=%2Fsettings%2Fsecurity\n            \"Configure passwordless authentication\": \"配置無密碼身份驗證\",\n            \"Add a passkey\": \"添加通行密鑰\",\n            \"Your device supports passkeys, a password replacement that validates your identity using touch, facial recognition, a device password, or a PIN.\": \"您的設備支持密碼替代方案，通過觸摸、面部識別、設備密碼或者 PIN 碼來驗證您的身份。\",\n\n            \"Passkeys can be used for sign-in as a simple and secure alternative to your password and two-factor credentials.\": \"通行密鑰可以作為一種簡單且安全的替代方式，用於登錄而不需要密碼和雙因素身份驗證。\",\n            \"Add passkey\": \"添加通行密鑰\",\n            \"Passkey registration failed.\": \"密鑰註冊失敗。\",\n            \"Ask me later\": \"稍後再問\",\n            \"Not interested?\": \"沒興趣？\",\n            \"Don't ask again for this browser\": \"不要再詢問此瀏覽器\",\n\n            \"Successfully added a passkey\": \"已成功添加通行密鑰\",\n            \"From now on, you can use this passkey to sign-in to GitHub.\": \"從現在起，您可以使用此通行密鑰登錄 GitHub。\",\n            \"Passkey nickname\": \"通行密鑰暱稱\",\n            \"Continue...\": \"繼續中…\",\n\n        // 重置密碼 https://github.com/password_reset\n            \"Reset your password\": \"重置您的密碼\",\n            \"Enter your user account's verified email address and we will send you a password reset link.\": \"輸入您的用戶賬戶經過驗證的電子郵箱，我們將向您發送一份帶密碼重置鏈接的郵件。\",\n            \"Enter your email address\": \"輸入您的郵箱地址\",\n            \"Verify your account\": \"驗證您的賬戶\",\n            \"Send password reset email\": \"發送密碼重置郵件\",\n            \"Check your email for a link to reset your password. If it doesn’t appear within a few minutes, check your spam folder.\": \"檢查您的電子郵件以獲取重置密碼的鏈接。如果它在幾分鐘內沒有出現，請檢查您的垃圾郵件文件夾。\",\n            \"Return to Sign in\": \"返回登錄\",\n\n        // ...I18N[\"zh-TW\"][\"confirm-access\"][\"static\"], // [留待後期合併] 授權訪問 sudo 模式身份驗證\n            \"Confirm access\": \"授權訪問\",\n            \"Signed in as\": \"登錄身份為\",\n            \"Authentication code\": \"驗證碼\",\n                \"More information about sudo mode authentication\": \"更多關於 sudo 模式身份驗證的信息\",\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打開您的雙因素身份驗證器 (TOTP) 應用或瀏覽器擴展以查看您的身份驗證碼。\",\n            \"Verify\": \"驗證\",\n            \"Verify\": \"驗證\",\n            \"Verifying…\": \"驗證中…\",\n            \"Your authentication code has been sent.\": \"您的驗證碼已發送。\",\n\n            \"Having problems?\": \"有問題嗎？\",\n            \"Use GitHub Mobile\": \"使用 GitHub Mobile\",\n            \"Use your authenticator app\": \"使用您的身份驗證器應用\",\n            \"Send a code via email\": \"通過電子郵件發送驗證碼\",\n            \"Send a code via SMS\": \"通過短信發送驗證碼\",\n            \"Resend SMS\": \"重新發送短信\",\n            \"Use your password\": \"使用您的密碼\",\n\n            \"GitHub Mobile\": \"GitHub Mobile\",\n            \"Creating a verification request for your GitHub Mobile app.\": \"為您的 GitHub Mobile 應用創建驗證請求。\",\n            \"When your phone is ready, click the button below.\": \"當您的手機準備就緒時，請點擊下面的按鈕。\",\n            \"We sent you a verification request on your GitHub Mobile app. Enter the digits shown below to enter sudo mode.\": \"我們向您的 GitHub Mobile 應用發送了一個驗證請求。輸入下面顯示的數字以進入 sudo 模式。\",\n            \"We could not verify your identity\": \"我們無法核實您的身份\",\n            \"Retry\": \"請重試\",\n\n            \"We just sent you a message via SMS with your authentication code. Enter the code in the form above to verify your identity.\": \"我們剛剛通過短信向您發送了一條消息，其中包含您的驗證碼。在上面的表格中輸入驗證碼以驗證您的身份。\",\n\n            // \"Password\": \"密碼\",\n            // \"Forgot password?\": \"忘記密碼？\",\n            \"Confirm\": \"確認\",\n\n            \"You are entering\": \"您正在進入\",\n            \"sudo mode\": \"Sudo 模式\",\n            \". After you've performed a sudo-protected action, you'll only be asked to re-authenticate again after a few hours of inactivity.\": \"。在您執行了受 sudo 保護的操作後，在幾個小時不活動後才會要求您重新進行身份驗證。\",\n\n        // 首次設置雙因素身份驗證 https://github.com/settings/two_factor_authentication/setup/intro\n\n            \"Enable two-factor authentication (2FA)\": \"啟用雙因素身份驗證 (2FA)\",\n            \"Loading…\": \"載入中…\",\n\n            // 第1步\n                \"Setup authenticator app\": \"設置身份驗證器應用\",\n                \"Authenticator apps and browser extensions like\": \"身份驗證器應用和瀏覽器擴展，例如\",\n                \", etc. generate one-time passwords that are used as a second factor to verify your identity when prompted during sign-in.\": \"等生成一次性密碼，在登錄過程中出現提示時用作第二驗證因素來驗證您的身份。\",\n\n                \"Scan the QR code\": \"掃描二維碼\",\n                \"Re-scan the QR code\": \"重新掃描二維碼\",\n                \"Use an authenticator app or browser extension to scan.\": \"請使用身份驗證器應用或瀏覽器擴展進行掃描。\",\n                \"Learn more about enabling 2FA\": \"瞭解更多關於啟用 2FA 的信息\",\n\n                \"Unable to scan? You can use the\": \"無法掃描？您可以使用\",\n                \"setup key\": \"設置密鑰\",\n                \"to manually configure your authenticator app.\": \"手動配置您的身份驗證器應用。\",\n                    \"Your two-factor secret\": \"您的雙因素密鑰\",\n\n                \"Verify the code from the app\": \"驗證來自身份驗證器應用的驗證碼\",\n                \"Two-factor code verification failed. Please try again.\": \"雙因素身份驗證碼驗證失敗。請重試。\",\n\n                \"Setup SMS authentication\": \"設置短信驗證\",\n                    \"Get authentication codes by SMS on your mobile phone when signing into GitHub. Make sure that\": \"登錄 GitHub 時通過手機短信獲取驗證碼。確保\",\n                    \"your country is supported\": \"支持您的國家/地區\",\n                    \"for SMS delivery.\": \"用於短信發送。\",\n                    \"Country code\": \"國家程式碼\",\n                    \"Your phone number\": \"您的手機號碼\",\n                    \"Send authentication code\": \"發送驗證碼\",\n                    \"Sent. It may take a minute for the SMS to arrive.\": \"已發送。短信可能需要一分鐘時間才能送達。\",\n                    \"Verify the code sent to your phone\": \"驗證發送到您手機的驗證碼\",\n\n                \"Continue\": \"繼續\",\n\n                \"Alternative 2FA option:\": \"備選 2FA 選項:\",\n                \"SMS authentication\": \"短信驗證\",\n                    \"Get one-time codes sent to your phone via SMS to complete authentication requests.\": \"通過短信向您的手機發送一次性程式碼，以完成認證請求。\",\n                \"Authenticator app\": \"身份驗證器應用\",\n                    \"Use an authentication app or browser extension to generate one-time codes.\": \"使用身份驗證應用或瀏覽器擴展生成一次性程式碼。\",\n                \"Select\": \"選擇\",\n\n            // 第2步\n                \"Download your recovery codes\": \"下載您的恢復碼\",\n                \"You can use recovery codes as a second factor to authenticate in case you lose access to your device. We recommend saving them with a secure password manager such as\": \"您可以使用恢復碼作為第二驗證因素來進行身份驗證，以防您無法訪問您的設備。我們建議使用安全的密碼管理器保存它們，例如\",\n                \"Keep your recovery codes in a safe spot\": \"將您的恢復碼保存在安全的地方\",\n                \"If you lose your device and don't have the recovery codes, you will lose access to your account.\": \"如果您丟失了您的設備，並且沒有恢復碼，您將無法訪問您的賬戶。\",\n\n                \"Download\": \"下載\",\n                \"I have saved my recovery codes\": \"我已經保存了我的恢復碼\",\n\n            // 第3步\n                \"Two-factor authentication (2FA) is now enabled for your GitHub account\": \"現已為您的 GitHub 賬戶啟用雙因素身份驗證 (2FA)\",\n                \"You have enabled two-factor authentication using SMS.\": \"您已使用 SMS 啟用雙因素身份驗證\",\n                \"You have enabled two-factor authentication using your authenticator app.\": \"您已使用身份驗證應用啟用雙因素身份驗證\",\n\n                \"Don't get locked out, configure additional authentication methods\": \"別被鎖在外面，配置額外的身份驗證方法\",\n                \"Configuring additional authentication methods will help you gain access to your account in case you lose your device and don't have your recovery codes.\": \"配置額外的認證方法將幫助您在丟失設備和沒有恢復碼的情況下獲得對賬戶的訪問。\",\n\n                \"Security key\": \"安全密鑰\",\n                    \"Use your device with Touch ID, Windows Hello, etc. or a physical security key (e.g. YubiKey)\": \"使用您的設備配合 Touch ID、Windows Hello 等功能或物理安全密鑰（例如YubiKey）。\",\n                    \"Manage\": \"管理\",\n                    \"Register new security key\": \"註冊新安全密鑰\",\n                    \"Enter a nickname for this security key\": \"輸入安全密鑰的暱稱\",\n                    \"Waiting for input from browser interaction...\": \"等待來自瀏覽器交互的輸入…\",\n                    \"Security key registration failed.\": \"安全密鑰註冊失敗。\",\n                    \"Try again\": \"請重試\",\n\n                \"GitHub Mobile\": \"GitHub Mobile\",\n                    \"Install\": \"安裝\",\n                    \"The GitHub Mobile app on your phone can be used as a 2FA method. Enable it by installing the GitHub Mobile app for\": \"您手機上的 GitHub Mobile 應用可用作雙因素身份驗證方法。通過安裝 GitHub Mobile 應用（\",\n                    \"and signing in to your account.\": \"）並登錄您的賬戶來啟用它。\",\n                \"Done\": \"完成\",\n\n        // 定期驗證雙因素身份驗證（2FA）設置\n            \"Verify your two-factor authentication (2FA) settings\": \"驗證您的雙因素身份驗證（2FA）設置\",\n            \"This is a one-time verification of your recent configured 2FA credentials.\": \"這是對您最近配置的雙因素身份驗證憑據進行一次性驗證。\",\n            \"Make sure that 2FA is correctly configured, and avoid a potential account lockout disaster. If you're having trouble verifying, you'll be able to reconfigure 2FA for your account.\": \"確保正確配置雙因素身份驗證，避免可能的賬戶鎖定災難。如果您在驗證時遇到問題，可以重新為您的賬戶配置雙因素身份驗證。\",\n            \"Verify 2FA now\": \"現在驗證雙因素身份驗證\",\n            \"You can choose to\": \"您可以選擇\",\n            \"skip 2FA verification\": \"跳過雙因素身份驗證\",\n            \"at this moment, we'll remind you again tomorrow.\": \"此刻，我們會在明天再次提醒您。\",\n\n        // https://github.com/settings/two_factor_checkup?\n            \"Open your two-factor authenticator (TOTP) app or browser extension to view your authentication code.\": \"打開您的雙因素身份驗證器（TOTP）應用或瀏覽器擴展，以查看您的身份驗證碼。\",\n            \"Verify your 2FA setup tomorrow\": \"明天驗證您的雙因素身份驗證設置\",\n            \"Reconfigure 2FA on this account\": \"重新配置雙因素身份驗證\",\n\n        // https://github.com/settings/two_factor_checkup\n            \"2FA verification successful!\": \"雙因素身份驗證成功！\",\n            \"Keep your recovery codes safe and easy to access\": \"請將您的恢復碼保管好以便於訪問。\",\n            \"As a reminder, recovery codes can be used as a second factor to authenticate in case you lose your device. If you don't have your recovery codes, you may lose access to your account.\": \"作為提醒，恢復碼可用作第二驗證因素，以防您丟失設備。如果您沒有恢復碼，則可能無法訪問您的賬戶。\",\n            \"Not sure where you saved them?\": \"您不確定把它們保存在哪裡了嗎？\",\n\n        // https://github.com/settings/security\n            \"Two-factor authentication (2FA)\": \"雙因素身份驗證 (2FA)\",\n            \"is required for your GitHub account\": \"您的 GitHub 賬戶需要\",\n\n            \"This will only take a minute.\": \"只需一分鐘時間。\",\n            \"Enable 2FA now. You'll be able to continue on with your work right after.\": \"立即啟用雙因素身份驗證。之後您將能夠繼續您的工作。\",\n\n            \"Two-factor authentication adds an\": \"雙因素身份驗證增加了一個\",\n            \"additional layer of account security\": \"額外的賬戶安全保護\",\n            \". It is a proven method of keeping you safe from hackers and account takeover, even if your password is stolen or compromised.\": \"。這是一種行之有效的方法，即使您的密碼被盜或洩露，也能保證您不被黑客和賬戶接管。\",\n            \"Enable 2FA now\": \"立即啟用雙因素身份驗證\",\n\n            \"You have\": \"您還有\",\n            \"left to enable 2FA. Take action now to avoid additional interruptions.\": \"時間啟用雙因素身份驗證。請立即採取行動以避免額外的干擾。\",\n            \"Remind me tomorrow\": \"明天提醒我\",\n\n        // 登出頁面 https://github.com/logout\n            \"Are you sure you want to sign out?\": \"您確定要登出？\",\n            \"Sign out\": \"登出\",\n\n            \"Select account to sign out\": \"選擇要登出的賬戶\",\n            \"Sign out from all accounts\": \"登出所有賬戶\",\n\n        // 接受邀請 /<user-name>/<repo-name>/invitations\n        // 跳轉至 協作者 / 協作者和團隊 - 訪問管理頁面 /<user-name>/<repo-name>/settings/access 驗證\n            // 頂部提醒\n                \"Repository invitation URLs work for invited users only. You may only share this URL with an invited user.\": \"倉庫邀請 URL 僅適用於受邀請的用戶。您只能與受邀請的用戶共享此 URL。\",\n\n        // 切換賬戶 https://github.com/switch_account\n            \"Signed out\": \"已註銷\",\n            \"Add a different account\": \"添加其他賬戶\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) verified emails?/, \"$1 個經過驗證的郵箱\"],\n        [/(\\d+) unverified emails?/, \"$1 個未經驗證的郵箱\"],\n        [/(\\d+) keys?/, \"$1 個通行密鑰\"],\n        [/(\\d+) devices?/, \"$1 設備\"],\n        [/You will receive one-time codes at this phone number:/, \"您將通過以下電話號碼收到一次性驗證碼：\"], // 已設置短信/文字信息\n        [/Continue as (.*)/, \"以 $1 身份繼續使用\"],\n        [/Authorize/, \"授權\"],\n\n        // 設備驗證 https://github.com/sessions/verified-device\n        [/We just sent your authentication code via email to (.*)\\. The code will expire at (.*)\\./, \"我們剛剛通過電子郵件將您的驗證碼發送給 $1。驗證碼將於 $2 過期。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Confirm access\": \"授權訪問\",\n            \"Forgot your password?\": \"忘記您的密碼了嗎？\",\n            \"Sign in to GitHub · GitHub\": \"登錄 GitHub · GitHub\",\n        },\n    },\n};\nI18N[\"zh-TW\"].login = I18N[\"zh-TW\"][\"session-authentication\"];\nI18N[\"zh-TW\"].logout = I18N[\"zh-TW\"][\"session-authentication\"];\nI18N[\"zh-TW\"].session = I18N[\"zh-TW\"][\"session-authentication\"];\nI18N[\"zh-TW\"].sessions = I18N[\"zh-TW\"][\"session-authentication\"];\nI18N[\"zh-TW\"].password_reset = I18N[\"zh-TW\"][\"session-authentication\"];\n\nI18N[\"zh-TW\"][\"signup\"] = { // 註冊頁\n    \"static\": { // 靜態翻譯\n        \"Create your free account\": \"創建免費賬戶\",\n            \"Explore GitHub's core features for individuals and organizations.\": \"探索 GitHub 為個人及組織提供的核心功能。\",\n            \"See what's included\": \"包含內容\",\n                \"Access to GitHub Copilot\": \"訪問 GitHub Copilot\",\n                    \"Increase your productivity and accelerate software development.\": \"提升生產力，加快軟體開發進程。\",\n                \"Unlimited repositories\": \"無限倉庫\",\n                    \"Collaborate securely on public and private projects.\": \"在公開和私有專案上安全協作。\",\n                \"Integrated code reviews\": \"集成程式碼審查\",\n                    \"Boost code quality with built-in review tools.\": \"通過內置審查工具提升程式碼質量。\",\n                \"Automated workflows\": \"自動化工作流\",\n                    \"Save time with CI/CD integrations and GitHub Actions.\": \"使用 CI/CD 集成和 GitHub Actions 節省時間。\",\n                \"Community support\": \"社區支持\",\n                    \"Connect with developers worldwide for instant feedback and insights.\": \"與全球開發者即時交流，獲取反饋和見解。\",\n\n        \"Already have an account?\": \"已經有賬戶嗎？\",\n        \"Sign in →\": \"登錄 →\",\n\n        \"Sign up for GitHub\": \"註冊 GitHub\",\n            \"Continue with Google\": \"使用 Google 繼續\",\n                \"Continuing with Google...\": \"使用 Google 繼續…\",\n            \"Continue with Apple\": \"使用 Apple 繼續\",\n                \"Continuing with Apple...\": \"使用 Apple 繼續…\",\n\n            \"Email\": \"電子郵件\",\n                \"Email is invalid or already taken\": \"電子郵箱地址無效或已被佔用\",\n                \"Email cannot be blank\": \"電子郵件不能為空\",\n                \"The email you have provided is already associated with an account.\": \"該郵件已被註冊。\",\n                \"reset your password\": \"重置密碼\",\n            \"Password\": \"密碼\",\n                \"Password is too short\": \"密碼太短\",\n                \"Password needs a number and lowercase letter\": \"密碼需要有數字和小寫字母\",\n                \"Password is strong\": \"密碼很強\",\n                \"Password may be compromised\": \"密碼可能被洩露\",\n                \"Password is in a list of passwords commonly used on other websites\": \"密碼在其他網站常用的密碼列表中\",\n                \"Password cannot be blank\": \"密碼不能為空\",\n                \"Password should be at least 15 characters OR at least 8 characters including a number and a lowercase letter.\": \"密碼應至少包含15個字符，或者至少包含8個字符且其中包括一個數字和一個小寫字母。\",\n            \"Username\": \"用戶名\",\n                \"Username may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen.\": \"用戶名只能包含字母數字字符或單個連字符，並且不能以連字符開頭或結尾。\",\n                \"Username cannot be blank\": \"用戶名不能為空\",\n                \"are available.\": \"可用。\",\n            \"Your Country/Region\": \"您的國家/地區\",\n                \"Select Country/Region\": \"選擇國家/地區\",\n                \"For compliance reasons, we're required to collect country information to send you occasional updates and announcements.\": \"根據合規要求，我們需要收集您所在的國家/地區信息，以便向您發送最新的更新和公告。\",\n\n            \"Email preferences\": \"電子郵件偏好設置\",\n                \"Receive occasional product updates and announcements\": \"偶爾接收產品更新和公告\",\n\n            \"Create account\": \"創建賬戶\",\n                \"By creating an account, you agree to the\": \"創建賬戶即表示您同意\",\n                \"Terms of Service\": \"服務條款\",\n                \". For more information about GitHub's privacy practices, see the\": \"。更多關於 GitHub 隱私條款的信息，請參見\",\n                \"GitHub Privacy Statement\": \"GitHub 隱私聲明\",\n                \". We'll occasionally send you account-related emails.\": \"。我們偶爾會向您發送與賬戶相關的電子郵件。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Username ([^ ]+) is not available./, \"用戶名 $1 不可用。\"],\n        [/([^ ]+) is available./, \"用戶名 $1 可用。\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Sign up for GitHub · GitHub\": \"註冊 GitHub · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"account_verifications\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"signup\"][\"static\"],\n\n        \"Confirm your email address\": \"驗證您的郵箱\",\n            \"We have sent a code to\": \"已發送驗證碼至\",\n        \"Enter code\": \"鍵入驗證碼\",\n        \"Didn't get your email?\": \"未收到郵件？\",\n            \"Resend the code\": \"重發驗證碼\",\n            \"update your email address\": \"修改郵箱\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-TW\"][\"notifications\"] = { // 通知頁面\n    \"static\": { // 靜態翻譯\n        \"Notifications\": \"通知\",\n        \"All\": \"所有\",\n        \"Unread\": \"未讀\",\n\n        \"Switch inbox\": \"切換收件箱\", // Android UA 下出現\n        \"Inbox\": \"收件箱\",\n        \"Saved\": \"已保存\",\n        \"Save\": \"保存\",\n        \"Done\": \"已完成\",\n        \"Filters\": \"篩選\",\n        \"Dismiss\": \"忽略\",\n        \"get started\": \"開始\",\n        \"Subscribe\": \"訂閱\",\n        \"Unsubscribe\": \"退訂\",\n\n        \"Search notifications\": \"搜索通知\",\n        \"Filter notifications\": \"篩選通知\",\n            \"Suggested filters\": \"建議篩選\",\n            \"Sorry, we don't support the\": \"抱歉，我們不支持\",\n            \"filter yet.\": \"篩選器。\",\n            \"Learn more about filters.\": \"瞭解更多關於篩選器的信息。\",\n\n            \"- submit\": \"- 提交\",\n            \"Submit search\": \"提交搜索\",\n\n            \"Available filters\": \"可用篩選器\",\n            \"filter by repository\": \"按倉庫篩選\",\n            \"filter by status or discussion type\": \"按狀態或評論類型篩選\",\n            \"filter by notification reason\": \"按通知原因篩選\",\n            \"filter by notification author\": \"按通知作者篩選\",\n            \"filter by organization\": \"按組織篩選\",\n        \"Group by:\": \"分組：\",\n        \"Group by: Date\": \"分組：日期\",\n        \"Group by: Repository\": \"分組：倉庫\",\n        \"Date\": \"日期\",\n        \"Repository\": \"倉庫\",\n        // [/(\\d+) new notifications?/, \"$1 條新通知\"], // 通知管理頁\n\n        // 篩選結果\n        \"No results\": \"無結果\",\n        \"No notifications matched your query.\": \"沒有與您的查詢相匹配的通知。\",\n\n        \"Select all\": \"全選\",\n        \"selected\": \"條被選中\",\n        \"Mark as read\": \"標記為已讀\",\n        \"Mark as unread\": \"標記為未讀\",\n        \"Mark as done\": \"標記為已完成\",\n        \"Move to inbox\": \"移動到收件箱\",\n\n         \"Clear selection\": \"清除選中\",\n\n        //\"Mark all as read\": \"全部標為已讀\",\n        //\"Are you sure?\": \"您確定嗎？\",\n        //\"Are you sure you want to mark all unread notifications as read?\": \"您確定要將所有的未讀通知標記為已讀？\",\n        //\"Mark all notifications as read\": \"全部標為已讀\",\n\n        \"Clear out the clutter.\": \"清除混亂。\",\n        \"Get the most out of your new inbox by quickly and easily marking all of your previously read notifications as done.\": \"快速輕鬆地將所有已閱讀的通知標記為已完成，以充分利用新的收件箱。\",\n        \"Overwhelmed by notifications? We've found some repositories that may be causing notifications you don't need.\": \"通知不知所措？我們發現了一些倉庫，這些倉庫可能會導致您不需要的通知。\",\n        \"Update watching settings\": \"更新關注設置\",\n        \"Get started\": \"開始\",\n            \"Clean up your inbox\": \"清理收件箱\",\n            \"Marking your notifications as \\\"done\\\" helps to create a more focused inbox. Don't worry - if there is new activity, you'll still be notified.\": \"將您的通知標記為 “已完成” 有助於創建一個更加集中的收件箱。不用擔心 - 如果有新的活動，您仍然會收到通知。\",\n            \"Mark all read notifications as done\": \"將所有已讀通知標記為已完成\",\n            \"This process could take a few moments depending on the quantity.\": \"這個過程可能會根據數量的多少而耗費一些時間。\",\n            \"Bulk actions currently being processed.\": \"批量操作正在處理中。\",\n            \"Bulk action processing complete.\": \"批量操作處理完成。\",\n\n        \"Manage notifications\": \"管理通知\",\n        \"Notification settings\": \"通知設置\",\n        \"Watched repositories\": \"關注的倉庫\",\n        \"Subscriptions\": \"訂閱\",\n        \"Watching\": \"關注\",\n\n        \"assigned\": \"分配\",\n        \"subscribed\": \"訂閱\",\n        \"mention\": \"提及\",\n        \"commented\": \"評論\",\n        \"author\": \"作者\",\n        \"manual\": \"手動\",\n        \"state change\": \"狀態更改\",\n        \"review requested\": \"請求審查\",\n        \"ci activity\": \"CI 活動\",\n        \"security alert\": \"安全警報\",\n\n        \"View all gist notifications\": \"查看全部 Gist 通知\", // 倉庫分組模式\n\n        \"Prev\": \"上一頁\",\n        \"Previous\": \"上一頁\",\n        \"Next\": \"下一頁\",\n\n        \"change notification settings\": \"更改通知設置\",\n        \"you can change how you receive notifications from your account settings.\": \"您可以從賬戶設置更改接收通知的方式。\",\n        \"unwatch suggestions\": \"取消關注建議\",\n        \"these repositories may be causing unnecessary notifications.\": \"這些倉庫可能導致不必要的通知。\",\n        \"unwatch all\": \"取消所有關注\",\n        \"customize\": \"自定義\",\n\n        \"🎯 Assigned\": \"🎯 已分配\",\n        \"💬 Participating\": \"💬 參與\",\n        \"✋ Mentioned\": \"✋ 提及\",\n        \"🙌 Team mentioned\": \"🙌 提到的團隊\",\n        \"👀 Review requested\": \"👀 審查請求\",\n        \"Add new filter\": \"添加新篩選器\",\n        \"Name\": \"名稱\",\n        \"Filter by…\": \"篩選…\", // Android UA 下才有\n        \"New filter\": \"新建\", // Android UA 下才有\n        \"Filter inbox by…\": \"篩選收件箱…\",\n        \"Create new filter\": \"創建新規則\",\n        \"Query\": \"規則\",\n\n        \"All caught up!\": \"處理完了！\",\n        \"Take a break, write some code, do what you do best.\": \"休息一下，寫一些程式碼，做您最擅長的事。\",\n        \"Save something important\": \"保存重要的東西\",\n        \"Notifications you save will appear here to read later.\": \"您保存的通知會出現在這裡，以便以後閱讀。\",\n        \"Mark notifications as done so you can move on with your work.\": \"將通知標記為已完成，以便您可以繼續工作。\",\n        \"New activity appears in your inbox.\": \"新活動出現在您的收件箱中。\",\n        \"All done here!\":\"這裡都完成了！\",\n        \"You're caught up on this filter.\":\"您已處理完當前篩選下的所有任務。\",\n\n        // /notifications?query=repo 某個倉庫\n        \"We've noticed that you rarely interact with this repository, are you sure you need notifications?\": \"我們注意到您很少與此倉庫交互，您確定需要通知嗎？\",\n        \"Unwatch\": \"取消關注\",\n        // \"Notifications\": \"通知類型\",\n            \"Participating and @mentions\": \"參與和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"僅在參與或 @您 時接收來自此倉庫的通知。\",\n            \"All Activity\": \"所有活動\",\n            \"Notified of all notifications on this repository.\": \"接收來自此倉庫所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定義\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"選擇除參與和 @您 之外還要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此倉庫未啟用討論功能\",\n            \"Releases\": \"發行版\",\n            \"Discussions\": \"討論\",\n                \"Discussions are not enabled for this repository\": \"該倉庫未啟用討論功能\",\n            \"Security alerts\": \"安全警報\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"應用\",\n\n        \"ProTip!\": \"專業提示！\",\n            \"Triage notifications on the go with GitHub Mobile for\": \"使用 GitHub Mobile 隨時隨地查看分類通知\",\n            \"When viewing a notification, press\": \"在查看一條通知時，按下\",\n            \"to mark it as Done.\": \"將其標記為 “已完成”。\",\n            \"to mark it as Unread.\": \"將其標記為 “未讀”。\",\n            \"Create custom filters to quickly access your most important notifications.\": \"創建自定義篩選器以快速訪問最重要的通知。\",\n            \"Filter by\": \"使用\",\n            \"to see what's new.\": \"查看新通知。\",\n            \"then bulk select and mark all as\": \"然後批量選擇並將所有內容標記為\",\n            \"to clean up your inbox.\": \"以清理收件箱。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) selected/, \"$1 條被選中\"],\n        [/Select all (\\d+) notifications?/, \"選中全部 $1 條通知\"],\n        [/View all (\\d+) notifications?/, \"查看全部 $1 條通知\"], // 倉庫分組模式\n        [/(\\d+) new notifications?/, \"$1 條新通知\"],\n        [/of (\\d+)/, \" 共 $1 條\"],\n        [/workflow run failed for ([^ ]+) branch/, \"工作流程運行失敗，$1 分支\"], // F12 才翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Notifications\": \"通知\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"watching\"] = { // 關注的倉庫頁面\n    \"static\": { // 靜態翻譯\n        \"Notifications\": \"通知\",\n        \"Watching\": \"關注\",\n        \"Subscriptions\": \"訂閱\",\n        \"Custom\": \"自定義\",\n        // \"Ignoring\": \"忽略\",\n\n        \"Unwatch suggestions\": \"取消關注建議\",\n        \"These repositories may be causing unnecessary notifications.\": \"這些倉庫可能導致不必要的通知。\",\n\n        //\n        \"Are you sure?\": \"您確定嗎?\",\n        // [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消對這 $1 個倉庫的關注，您將只在參與或 @您 時收到通知。\"], //取消所以關注\n\n        \"Ignoring\": \"忽略\",\n        \"Stop ignoring\": \"取消忽略\",\n        \"Watch\": \"關注\",\n        \"Unwatch\": \"取消關注\",\n\n        //\"Watched repositories\": \"關注的倉庫\",\n\n        // \"Stop ignoring\": \"取消忽略\",\n        //\"Sorted by most recently watched.\": \"按最近關注排序\",\n        \"Unwatch all\": \"取消所有關注\",\n            \"Unwatch repositories by owner\": \"按所有者取消關注倉庫\",\n            \"Find a repository owner\": \"查找倉庫所有者\",\n            \"All repositories\": \"所有倉庫\",\n             // [/([^ ]+)'s repositories/, \"$1 的倉庫\"],\n        \"Stop watching all repositories\": \"取消關注所有的倉庫\",\n\n        // 取消所有者關注倉庫對話框\n        // [/Confirm unwatching ([^ ]+)'s repositories/, \"確認不關注 $1 的倉庫\"],\n        // [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您將停止接收您所關注的 $1 擁有的所有倉庫的通知。\"],\n\n        // 關注 & 訂閱通知設置 下拉菜單\n        // \"Notifications\": \"通知類型\",\n        \"Participating and @mentions\": \"參與和 @您\",\n        \"Only receive notifications from this repository when participating or @mentioned.\": \"僅在參與或 @您 時接收來自此倉庫的通知。\",\n        \"All Activity\": \"所有活動\",\n        \"Notified of all notifications on this repository.\": \"接收來自此倉庫所有通知。\",\n        \"Ignore\": \"忽略\",\n        \"Never be notified.\": \"永不接收通知。\",\n        // \"Custom\": \"自定義\",\n        \"Select events you want to be notified of in addition to participating and @mentions.\": \"選擇除參與和 @您 之外還要接收通知的事件。\",\n        \"Discussions are not enabled for this repo\": \"此倉庫未啟用討論功能\",\n        \"Releases\": \"發行版\",\n        \"Discussions\": \"討論\",\n            \"Discussions are not enabled for this repository\": \"該倉庫未啟用討論功能\",\n        \"Security alerts\": \"安全警報\",\n        //\"Cancel\": \"取消\",\n        \"Apply\": \"應用\",\n\n        \"Notification settings\": \"通知設置\",\n        \"You can change how you receive notifications from your account settings.\": \"您可以從賬戶設置更改接收通知的方式。\",\n        \"Change notification settings\": \"更改通知設置\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/By unwatching these (\\d+) repositor(y|ies), you will only receive notifications when participating or @mentioned./, \"取消對這 $1 個倉庫的關注，您將只在參與或 @您 時收到通知。\"],\n        [/Unwatch (\\d+) repositor(y|ies)/, \"取消對 $1 個倉庫關注\"],\n        [/You will stop receiving notifications for the (\\d+) repositor(y|ies) you are watching./, \"您將停止接收您正在關注的 $1 個倉庫的通知。\"],\n        [/Confirm unwatching ([^ ]+)'s repositories/, \"確定不關注 $1 的倉庫\"],\n        [/You will stop receiving notifications for all repositories owned by ([^ ]+) that you are watching./, \"您將停止接收您所關注的 $1 擁有的所有倉庫的通知。\"],\n        [/([^ ]+)'s repositories/, \"$1 的倉庫\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"notifications/subscriptions\"] = { //訂閱的倉庫頁面\n    \"static\": { // 靜態翻譯\n        \"Notifications\": \"通知\",\n        \"Watching\": \"關注\",\n        \"Subscriptions\": \"訂閱\",\n\n        \"Reason\": \"原因\",\n            \"Filter by reason\": \"按原因篩選\",\n            \"Any reason\": \"任何原因\",\n            \"Show all subscriptions\": \"顯示所有訂閱\",\n            \"Assign\": \"分配\",\n            \"You were assigned to the Issue/PR.\": \"您被分配到議題/拉取請求。\",\n            \"Author\": \"作者\",\n            \"You created the thread.\": \"您創造了這個話題。\",\n            \"Comment\": \"評論\",\n            \"You commented on the thread.\": \"您評論了這個話題。\",\n            \"Manual\": \"手動\",\n            \"You subscribed to the thread (via an Issue or Pull Request).\": \"您訂閱了該主題（通過議題或拉取請求）。\",\n            \"Mention\": \"提及\",\n            \"You were specifically @mentioned in the content.\": \"在內容中特別 @您。\",\n            \"Review Requested\": \"請求審查\",\n            \"You were requested for review.\": \"您被要求進行審查。\",\n            \"State Change\": \"狀態變化\",\n            \"You changed the thread state (for example, closing an Issue or merging a Pull Request).\": \"您更改了話題狀態（例如，關閉議題或合併拉取請求）。\",\n            \"Team Mention\": \"提及團隊\",\n            \"You were on a team that was mentioned.\": \"您在團隊中被提及。\",\n        \"Repository\": \"倉庫\",\n            \"Filter by repository\": \"按倉庫篩選\",\n            \"Filter repository\": \"篩選倉庫\",\n            \"All repositories\": \"所有倉庫\",\n            \"Loading repositories…\": \"載入倉庫中…\",\n        \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n            \"Most recently subscribed\": \"最近訂閱最多的\",\n            \"Least recently subscribed\": \"最近訂閱最少的\",\n\n        \"Reason:\": \"原因：\",\n        \"Repository:\": \"倉庫：\",\n        \"Clear current filters\": \"清除當前篩選器\",\n        \"No results matched your search.\": \"沒有符合您的搜索結果。\",\n\n        \"selected\": \"個被選中\",\n        \"Unsubscribe\": \"取消訂閱\",\n\n        \"opened\": \"打開\",\n        \"• subscribed\": \"• 訂閱於\",\n        \"• updated\": \"• 更新於\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"stars\"] = { // 星標 https://github.com/stars/<user-name>\n    \"static\": { // 靜態翻譯\n        \"Your Stars\": \"我的星標\",\n        \"Browse your starred repositories and topics\": \"瀏覽我的星標倉庫和主題\",\n        \"Your Starred Repositories\": \"我的星標倉庫\",\n        \"Browse your starred repositories\": \"瀏覽我的星標倉庫\",\n        \"Your Starred Topics\": \"我的星標主題\",\n        \"Browse your starred topics\": \"瀏覽我的星標主題\",\n\n        \"Browse starred repositories and topics\": \"瀏覽星標倉庫和主題\",\n        \"Starred Repositories\": \"星標倉庫\", // 他人\n        \"Browse starred repositories\": \"瀏覽星標倉庫\", // 他人\n        \"Starred Topics\": \"星標主題\", // 他人\n        \"Browse starred topics\": \"瀏覽星標主題\", // 他人\n\n        \"Search stars…\": \"搜索星標主題…\",\n        \"Sort:\": \"排序：\",\n            // 篩選下拉\n            \"Sort options\": \"排序選項\",\n            \"Recently starred\": \"最近標星\",\n            \"Recently active\": \"最近活躍\",\n            \"Most stars\": \"最多星標\",\n\n        \"Sponsor\": \"贊助\",\n        \"Unstar\": \"已加星標於\",\n        \"See all starred repositories\": \"查看所有星標倉庫\",\n        \"See all starred topics\": \"查看所有星標主題\",\n\n        \"You don’t have any starred topics, yet.\": \"您尚無任何的星標主題。\",\n        \"As you\": \"如果您\",\n        \"explore GitHub\": \"探索 GitHub\",\n        \"star topics to save them for later and they’ll show up here.\": \" 時，標星主題，它們會在這裡顯示出來。\",\n\n\n        // 右側欄\n        \"All stars\": \"所有星標\",\n        \"All repositories\": \"所有倉庫\",\n        \"Your repositories\": \"我的倉庫\",\n        \"Others’ repositories\": \"其他倉庫\",\n        \"Topics\": \"主題\",\n\n        \"Filter by languages\": \"按語言篩選\",\n        \"Jump to a friend\": \"去好基友那\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Your starred topics\": \"我的星標主題\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"issues\"] = { // 議題頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository/issues\"][\"static\"],\n\n        \"Pull Requests\": \"拉取請求\", // pulls\n\n        \"Assigned to me\": \"分配給您\",\n        \"Created by me\": \"由您創建\",\n\n        \"Created\": \"已創建\",\n        \"Assigned\": \"已分配\",\n        \"Mentioned\": \"提到的\",\n            \"Issues mentioning you\": \"提及您的議題\",\n            \"Pull Requests mentioning you\": \"提及您的拉取請求\", // pulls\n        \"Review requests\": \"審查請求\", // pulls\n            \"Pull Requests requesting your review\": \"請求您審查的拉取請求\", // pulls\n        \"Recent activity\": \"最近活動\",\n        \"Views\": \"視圖\",\n            \"Untitled view\": \"未命名的視圖\",\n            \"All views\": \"所有視圖\",\n            \"Create view\": \"創建視圖\",\n                \"Build powerful views to keep track of work\": \"構建強大的視圖來跟蹤工作\",\n                \"Create your own views to quickly find and access your work.\": \"創建您自己的視圖以快速查找和訪問您的工作。\",\n                \"You have unsaved changes\": \"您有未保存的更改\",\n                    \"Are you sure you want to discard them?\": \"您確定要丟棄它們嗎？\",\n                    \"OK\": \"確定\",\n            \"Saved views menu\": \"保存的視圖菜單\",\n            \"Edit view\": \"編輯視圖\",\n                \"Icon\": \"圖標\",\n                \"Description\": \"描述\",\n                \"Query\": \"查詢\",\n                \"Save view\": \"保存視圖\",\n            \"Delete view\": \"刪除視圖\",\n\n        \"Visibility\": \"可見性\",\n        \"Repository visibility\": \"倉庫可見性\",\n        \"Private repositories only\": \"只有私有倉庫\",\n        \"Public repositories only\": \"只有公共倉庫\",\n\n        \"Organization\": \"組織\",\n        \"Filter by organization or owner\": \"按組織或所有者篩選\",\n        \"Filter organizations\": \"篩選組織\",\n\n        \"Sort\": \"排序\",\n        \"Sort by\": \"排序方式\",\n        \"Order\": \"順序\",\n        \"Newest\": \"最新的\",\n        \"Oldest\": \"最早的\",\n        \"Most commented\": \"最多評論\",\n        \"Least commented\": \"最少評論\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n        \"Best match\": \"最佳匹配\",\n        \"Most reactions\": \"最多回應\",\n        \"Least reactions\": \"最少回應\",\n\n        // 狀態詞\n        \"was merged\": \"已合併\",\n        \"was closed\": \"已關閉\",\n        \"Approved\": \"已批准\",\n        \"Review required\": \"請求審查\", // 拉取請求 頁面狀態詞\n            \"Review required before merging\": \"合併前需要審查\",\n        \"Changes requested\": \"請求更改\",\n        \"outdated\": \"陳舊的\",\n        \"Draft\": \"草案\",\n        \"Merged\": \"已合併\",\n        \"opened\": \"打開於\",\n\n        \"This issue was\": \"此議題已\",\n            \"closed\": \"關閉\",\n\n        // \"No results matched your search.\": \"沒有符合您的搜索結果。\",\n        \"Search all issues\": \"搜索所有議題\",\n        // 篩選結果\n        \"No results matched your search.\": \"沒有與您的搜索匹配的結果。\",\n        \"You could search\": \"您可以搜索\",\n        \"all of GitHub\": \"所有 GitHub\",\n        \"or try an\": \"或者嘗試\",\n        \"advanced search\": \"高級搜索\",\n        \"No results\":\"無結果\",\n        \"Try adjusting your search filters.\":\"嘗試調整您的搜索篩選條件。\",\n        \"Failed to load issues.\": \"無法加載議題。\",\n        \"We encountered an error trying to load issues.\": \"我們在嘗試加載議題時遇到了錯誤。\",\n\n        // \"Use the links above to find what you’re looking for, or try\": \"使用上面的鏈接找到您要找的內容，或嘗試\",\n        // \"a new search query\": \"新的搜索查詢\",\n        // \". The Filters menu is also super helpful for quickly finding issues most relevant to you.\": \"。篩選菜單也是快速找到議題最相關的您超級有幫助的。\",\n        // \"Updated in the last three days\": \"更新了最後三天：\",\n        \"ProTip!\": \"專業提示！\",\n            \"Exclude your own issues with\": \"排除自己的議題\",\n            \"Mix and match filters to narrow down what you’re looking for.\": \"通過混合和匹配篩選器以縮小您要查找的範圍。\",\n            \"Exclude everything labeled\": \"如果要找到所有標有\",\n            \"with\": \"標籤的，請使用\",\n            \"on any issue or pull request to go back to the issue listing page.\": \"在任何議題或拉取請求上以返回到問題列表頁面。\",\n            \"on any issue or pull request to go back to the pull request listing page.\": \"在任何問題或拉取請求上以返回拉取請求列表頁面。\",\n            \"Updated in the last three days:\": \"最近三天更新：\",\n            \"Find all pull requests that aren't related to any open issues with\": \"查找與任何未解決議題無關的所有拉取請求\",\n            \"Adding\": \"添加\",\n            \"will show everything without a label.\": \"將顯示沒有標籤的所有內容。\",\n            \"Follow long discussions with\": \"要跟隨長討論，請使用\",\n            \"Find everything you created by searching\": \"找到您創建的所有內容，通過搜索\",\n            \"will show everything without a milestone.\": \"將顯示沒有里程碑的任何東西。\",\n            \"What’s not been updated in a month:\": \"1 個月之內沒有更新的內容：\",\n            \"to see everything that’s not assigned.\": \"以查看所有未分配的內容。\",\n\n        // 鍵盤快捷鍵\n            \"Pull request list\"  : \"拉取請求列表\",\n                \"Open pull request\"  : \"打開拉取請求\",\n            \"Pull request - Conversation tab\": \"拉取請求 - 對話選項卡\",\n                \"Open in github.dev editor\"  : \"在 github.dev 編輯器中打開\",\n                \"Open github.dev editor in a new tab\"  : \"在新標籤頁中打開 github.dev 編輯器\",\n                \"Submit comment\": \"提交評論\",\n                \"Submit comment and close or open pull request\": \"提交評論並關閉或打開拉取請求\",\n                \"Submit comment and close issue\": \"提交評論並關閉??議題\", // 議題\n                \"Preview comment\": \"預覽評論\",\n                \"Create issue\": \"創建議題\", //議題\n                \"Request reviewers\": \"請求審查者\",\n                \"Filter by author\"             : \"按作者篩選\",\n                \"Filter by or edit assignees\"  : \"按受理人篩選或編輯受理人\",\n                \"Filter by or edit labels\"     : \"按標籤篩選或編輯標籤\",\n                \"Filter by or edit projects\"   : \"按專案篩選或編輯專案\",\n                \"Filter by or edit milestones\" : \"按里程碑篩選或編輯里程碑\",\n                \"Link an issue or pull request from the same repository\": \"鏈接同一倉庫的議題或拉取請求\",\n                \"Reply (quoting selected text)\": \"答覆（引用所選文本）\",\n                \"Open saved replies\": \"打開快捷回覆（引用所選文本）\",\n                \"Insert saved reply (with open saved replies)\": \"插入快捷回覆（打開快捷回覆）\",\n                \"Toggle visibility of all collapsed review comments instead of just the current one\": \"切換所有摺疊審查意見的可見性，而不僅僅是當前的審查意見\",\n            \"Pull request - Files changed tab\": \"拉取請求 - 文件更改標籤卡\",\n                \"Open commits list\": \"打開提交列表\",\n                \"Open files list\": \"打開文件列表\",\n                \"Next commit\": \"下一個提交\",\n                \"Previous commit\": \"上一個提交\",\n                \"Show or hide annotations\": \"顯示或隱藏批註\",\n                \"Show or hide comments\": \"顯示或隱藏評論\",\n                \"Submit a review comment\": \"提交審查意見\",\n                \"Collapse or expand all files instead of just the current one\": \"摺疊或展開所有文件，而不僅僅是當前文件\",\n                    \"and click\": \"和點擊\",\n\n        \"Search Issues\": \"搜索議題\",\n            // 倉庫\n                \"No repository\": \"無倉庫\",\n                \"Has repository\": \"包含倉庫\",\n                \"Exclude repo\": \"排除倉庫\",\n            // 組織\n                \"Has organization\": \"包含組織\",\n                \"Exclude org\": \"排除組織\",\n            \"Is\": \"類型為\",\n                \"Exclude is\": \"排除類型為\",\n                \"Issue\": \"議題\",\n                \"Pull Request\": \"拉取請求\",\n                \"Unmerged\": \"未合併\",\n                \"Locked\": \"已鎖定\",\n                \"Unlocked\": \"未鎖定\",\n                \"Blocked\": \"已阻塞\",\n            \"State\": \"狀態\",\n                \"Exclude state\": \"排除狀態\",\n            // 標籤\n                \"No label\": \"無標籤\",\n                \"Has label\": \"包含標籤\",\n                \"Exclude label\": \"排除標籤\",\n                \"aesthetics\": \"美化\",\n                \"bug\": \"缺陷\",\n                \"dependencies\": \"依賴項\",\n                \"development\": \"開發中\",\n                \"discuss\": \"討論\",\n                \"documentation\": \"文檔\",\n                \"duplicate\": \"重複\",\n                \"enhancement\": \"功能增強\",\n                \"forums\": \"論壇\",\n                \"good first issue\": \"適合新手\",\n                \"help wanted\": \"求助\",\n                \"invalid\": \"無效\",\n                \"question\": \"提問\",\n                \"website\": \"網站\",\n                \"wontfix\": \"不會修復\",\n            // 類型\n                \"No type\": \"無類型\",\n                \"Has type\": \"包含類型\",\n            \"Project\": \"專案\",\n                \"No project\": \"無專案\",\n                \"Has project\": \"包含專案\",\n                \"Exclude project\": \"排除專案\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"無里程碑\",\n                \"Has milestone\": \"包含里程碑\",\n                \"Exclude milestone\": \"排除里程碑\",\n            // 受理人\n                \"No assignee\": \"無受理人\",\n                \"Has assignee\": \"包含受理人\",\n                \"Me\": \"我\",\n                    \"Signed-in user\": \"已登錄用戶\",\n                // Copilot\n                    \"Your AI pair programmer\": \"您的 AI 編程助理\",\n                \"Exclude assignee\": \"排除受理人\",\n            \"Author\": \"作者\",\n                \"Has author\": \"包含作者\",\n                \"Exclude author\": \"排除作者\",\n            \"Involves\": \"涉及\",\n                \"Has involves\": \"包含涉及\",\n                \"Exclude involves\": \"排除涉及\",\n            \"Mentions\": \"提及\",\n                \"Has mentions\": \"包含提及\",\n                \"Exclude mentions\": \"排除提及\",\n            \"Parent issue\": \"父議題\",\n                \"No parent issue\": \"無父議題\",\n                \"Has parent issue\": \"包含父議題\",\n                \"Exclude parent-issue\": \"排除父議題\",\n            \"Blocking\": \"阻塞\",\n                \"No blocking\": \"無阻塞\",\n                \"Has blocking\": \"包含阻塞\",\n                \"Exclude blocking\": \"排除阻塞\",\n            \"Blocked by\": \"被…阻塞\",\n                \"No blocked by\": \"無被阻塞\",\n                \"Has blocked by\": \"包含被阻塞\",\n                \"Exclude blocked-by\": \"排除被阻塞\",\n            \"Sub-issue\": \"子議題\",\n                \"No sub-issue\": \"無子議題\",\n                \"Has sub-issue\": \"包含子議題\",\n                \"Exclude sub-issue\": \"排除子議題\",\n            \"Update date\": \"更新日期\",\n                \"Exclude updated\": \"排除更新日期\",\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Past 7 days\": \"過去 7 天\",\n                \"Past 30 days\": \"過去 30 天\",\n                \"Past year\": \"過去 1 年\",\n            \"Creation date\": \"創建日期\",\n                \"Has creation date\": \"包含創建日期\",\n                \"Exclude created\": \"排除創建日期\",\n            \"Closed date\": \"關閉日期\",\n                \"Has closed date\": \"包含關閉日期\",\n                \"Exclude closed\": \"排除關閉日期\",\n            \"Merge date\": \"合併日期\",\n                \"Has merge date\": \"包含合併日期\",\n                \"Exclude merged\": \"排除合併日期\",\n            \"Review requested\": \"已請求評審\",\n                \"Has review requested\": \"包含已請求評審\",\n                \"Exclude review-requested\": \"排除已請求評審\",\n            \"In\": \"在\",\n                \"Has in\": \"包含在\",\n                \"Exclude in\": \"排除在\",\n                \"Body\": \"正文\",\n                \"Comments\": \"評論\",\n            \"Commenter\": \"評論者\",\n                \"Has commenter\": \"包含評論者\",\n                \"Exclude commenter\": \"排除評論者\",\n            \"User\": \"用戶\",\n                \"Has user\": \"包含用戶\",\n                \"Exclude user\": \"排除用戶\",\n            \"User review requested\": \"已請求用戶評審\",\n                \"Has user review requested\": \"包含已請求用戶評審\",\n                \"Exclude user-review-requested\": \"排除已請求用戶評審\",\n            \"Reviewed by\": \"評審者\",\n                \"Has reviewed by\": \"包含評審者\",\n                \"Exclude reviewed-by\": \"排除評審者\",\n            \"Comment count\": \"評論數\",\n                \"Has comment count\": \"有評論數\",\n                \"Less than 10\": \"少於 10\",\n                \"More than 10\": \"多於 10\",\n                \"Between 10 and 100\": \"10 到 100\",\n            \"Interactions count\": \"互動數\",\n                \"Has interactions count\": \"有互動數\",\n            \"Closed reason\": \"關閉原因\",\n                \"Exclude reason\": \"排除原因\",\n                \"Completed\": \"已完成\",\n                \"Not planned\": \"未計劃\",\n                \"Duplicate\": \"重複\",\n            \"Linked\": \"已鏈接\",\n                \"Has linked\": \"包含已鏈接\",\n                \"Exclude linked\": \"排除已鏈接\",\n            \"Archived\": \"已歸檔\",\n                \"Has archived\": \"包含已歸檔\",\n                \"Exclude archived\": \"排除已歸檔\",\n                \"True\": \"是\",\n                \"False\": \"否\",\n            \"Reaction count\": \"表情回應數\",\n                \"Has reaction count\": \"有表情回應數\",\n            // 草案\n                \"Has draft\": \"包含草案\",\n                \"Exclude draft\": \"排除草案\",\n            \"Review state\": \"評審狀態\",\n                \"Has review state\": \"包含評審狀態\",\n                \"Exclude review\": \"排除評審狀態\",\n                \"No reviews\": \"無評審\",\n            \"Code language\": \"程式碼語言\",\n                \"Has code language\": \"包含程式碼語言\",\n                \"Exclude language\": \"排除程式碼語言\",\n            \"Commit SHA\": \"提交 SHA\",\n                \"Has commit sha\": \"包含提交 SHA\",\n                \"Exclude sha\": \"排除提交 SHA\",\n            \"Base\": \"基礎分支\",\n                \"Has base\": \"包含基礎分支\",\n                \"Exclude base\": \"排除基礎分支\",\n            \"Head\": \"對比分支\",\n                \"Has head\": \"包含對比分支\",\n                \"Exclude head\": \"排除對比分支\",\n            // 狀態 (Status)\n                \"Has status\": \"包含狀態檢查\",\n                \"Exclude status\": \"排除狀態檢查\",\n                \"Pending\": \"待處理\",\n                \"Success\": \"成功\",\n                \"Failure\": \"失敗\",\n                \"Queued\": \"排隊中\",\n                \"Waiting\": \"等待中\",\n                \"Cancelled\": \"已取消\",\n                \"Skipped\": \"已跳過\",\n            \"Team\": \"團隊\",\n                \"Has team\": \"包含團隊\",\n                \"Exclude team\": \"排除團隊\",\n            \"Team review requested\": \"已請求團隊評審\",\n                \"Has team review requested\": \"包含已請求團隊評審\",\n                \"Exclude team-review-requested\": \"排除已請求團隊評審\",\n            // 排序\n                \"Has sort\": \"包含排序\",\n                \"Exclude sort\": \"排除排序\",\n                \"Least reactions\": \"最少回應\",\n                \"Most thumbs up (👍) reactions\": \"👍 回應最多\",\n                \"Least thumbs up (👍) reactions\": \"👍 回應最少\",\n                \"Most thumbs down (👎) reactions\": \"👎 回應最多\",\n                \"Least thumbs down (👎) reactions\": \"👎 回應最少\",\n                \"Most laugh (😄) reactions\": \"😄 回應最多\",\n                \"Least laugh (😄) reactions\": \"😄 回應最少\",\n                \"Most confused (😕) reactions\": \"😕 回應最多\",\n                \"Least confused (😕) reactions\": \"😕 回應最少\",\n                \"Most tada (🎉) reactions\": \"🎉 回應最多\",\n                \"Least tada (🎉) reactions\": \"🎉 回應最少\",\n                \"Most heart (❤️) reactions\": \"❤️ 回應最多\",\n                \"Least heart (❤️) reactions\": \"❤️ 回應最少\",\n                \"Most eyes (👀) reactions\": \"👀 回應最多\",\n                \"Least eyes (👀) reactions\": \"👀 回應最少\",\n            \"AND\": \"且\",\n            \"OR\": \"或\",\n            \"Exclude\": \"排除\",\n        // 過濾器問題\n            \"Empty value for\": \"空值\",\n            \"Invalid value\": \"無效值\",\n            \"for\": \"對於\",\n        \"Clear filter\": \"清除篩選\",\n\n        \"View issue\": \"查看議題\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"repository/issues\"][\"regexp\"],\n\n        [/(\\d+) Open/, \"$1 打開\"],\n        [/(\\d+) Closed/, \"$1 已關閉\"],\n        [/(\\d+) tasks? done/, \"$1 個任務完成\"],\n        [/(\\d+) of (\\d+) tasks?/, \"$1 / $2 個任務\"],\n        [/(\\d+) results?/, \"$1 個結果\"],\n        [/(\\d+) tasks?/, \"$1 個任務\"],\n        [/(\\d+) review approvals?/, \"$1 次審查批准\"],// 拉取請求頁 \"已批准' 浮動提示\n        [/(\\d+) review requesting changes?/, \"$1 條請求更改評論\"],\n        [/([\\d,]+) linked issues?/, \"$1 個關聯議題\"],\n        [/([\\d,]+) linked pull requests?/, \"$1 個關聯拉取請求\"],\n        [/(\\d+) \\/ (\\d+) checks? OK/, \"$1 / $2 檢查 OK\"], // 對勾 的提醒 /pulls\n        [/Assigned to ([^ ]+)/, \"分配給 $1\"],\n        [/Created by ([^ ]+)/, \"由 $1 創建\"],\n        [/Updated/, \"更新於\"],\n        [/#([^ ]+) opened/, \"#$1 打開於\"],\n        [/#(\\d+) by/, \"#$1 打開者\"],\n        [/Notify someone on an issue with a mention, like: @([^ ]+)./, \"在議題中通過 @ 提及通知某人，例如：@$1。\"], // 專業提示\n        [/Ears burning\\? Get @([^ ]+) mentions with/, \"耳朵癢了？用它篩選 @$1 的提及：\"], // 專業提示\n        [/Are you sure you want to delete view (.*)\\?/, \"您確定要刪除視圖 $1 嗎？\"],\n        [/Filter contains (\\d+) issues?:/, \"過濾器包含 $1 個問題：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            // issues\n            \"Assigned to me\": \"分配給您\",\n            \"Created by me\": \"由您創建\",\n            \"Mentioned\": \"提到的\",\n            \"Recent Activity\": \"最近活動\",\n            \"View\": \"視圖\",\n\n            // pulls\n            \"Pull requests - Created\": \"拉取請求 - 已創建\",\n            \"Pull requests - Assigned\": \"拉取請求 - 已分配\",\n            \"Pull requests - Mentioned\": \"拉取請求 - 提到的\",\n            \"Pull requests - Review requests\": \"拉取請求 - 審查請求\",\n        },\n    },\n};\nI18N[\"zh-TW\"].pulls = I18N[\"zh-TW\"].issues;\n\nI18N[\"zh-TW\"][\"repos\"] = {\n    \"static\": {\n        \"My contributions\": \"我的貢獻\",\n        \"My repositories\": \"我的倉庫\",\n        \"My forks\": \"我的複刻\",\n        \"Adminable by me\": \"我可管理\",\n\n        \"Views\": \"視圖\",\n            \"Create view\": \"新建\",\n                \"Icon\": \"圖標\",\n                \"Description\": \"描述\",\n                \"Query\": \"查詢\",\n\n                \"Save view\": \"保存\",\n\n        // 搜索欄\n            \"Clear filter\": \"清除篩選\",\n            \"Comfortable display density\": \"舒適視圖\",\n            \"Compact display density\": \"緊湊視圖\",\n\n        // 篩選框\n            \"Relevance\": \"相關性\",\n            \"Last pushed\": \"最後推送\",\n            \"Name\": \"名稱\",\n\n            \"Ascending\": \"遞增\",\n            \"Descending\": \"遞減\",\n\n        \"Updated\": \"更新於\",\n    },\n    \"regexp\": [\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/([^ ]+)’s past year of commit activity/, \"近幾年 $1 的提交活動\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"search\"] = { // 搜索頁面\n    \"static\": { // 靜態翻譯\n        \"More than\": \"多餘\",\n        \"ms\": \"毫秒\", // 時間，前面\"結果\"走正則匹配\n        \"s\": \"秒\", // 同上\n        \"in\": \"在\",\n        \"View topic\": \"查看主題\", //搜索結果中的主題\n        // 搜索 https://github.com/search >>>>>>>>>>>>>>>>>>>>>>>>\n            \"Search GitHub\": \"在 GitHub 上搜索\",\n\n            // ProTip\n            \"ProTip!\": \"專業提示！\",\n            \"Press the\": \"再次按\",\n            \"key to activate the search input again and adjust your query.\": \"鍵激活搜索輸入並調整您的搜索結果。\",\n            \"For an\": \"要進行\",\n            \"advanced search\": \"高級搜索\",\n            \", use our\": \"，使用我們的\",\n            \"prefixes\": \"前綴\",\n\n            // 搜索技巧 對話框 (忽略 不翻譯)\n            \"Search cheat sheet\": \"搜索小技巧\",\n            \"GitHub’s search supports a variety of different operations. Here’s a quick cheat sheet for some of the common searches.\": \"GitHub 的搜索支持各種不同的操作。下面是一些常見搜索的快速小抄。\",\n            \"For more information, visit our\": \"更多有關信息，請訪問我們的\",\n            \"search help section\": \"搜索幫助章節\",\n            \"Basic search\": \"基本搜索\",\n            \"This search\": \"關鍵規則\",\n            \"Finds repositories with…\": \"查找倉庫…\",\n            \"Repository search\": \"倉庫搜索\",\n            \"Code search\": \"程式碼搜索\",\n            \"Issue search\": \"議題搜索\",\n            \"User search\": \"用戶搜索\",\n\n        // 搜索結果頁面 https://github.com/search?q=  >>>>>>>>>>>>>>>>>>>>>>>>\n            // 左側菜單\n            \"Filter by\": \"篩選\",\n            \"Code\": \"程式碼\",\n            \"Repositories\": \"倉庫\",\n            \"Commits\": \"提交\",\n            \"Discussions\": \"討論\",\n            \"Topics\": \"主題\",\n            \"Users\": \"用戶\",\n\n            \"States\": \"狀態\",\n\n            \"Languages\": \"語言\",\n            \"More languages...\": \"更多語言…\",\n\n            // &type=code\n            \"Files with identical content are grouped together.\": \"內容相同的文件已歸為一組。\",\n                \"Hide these extra files instead\": \"隱藏這些重複文件\",\n\n            \"More repositories...\": \"更多倉庫…\",\n            \"Paths\": \"路徑\",\n            \"More directories...\": \"更多路徑…\",\n\n            // &type=registrypackages\n            \"Types\": \"類型\",\n\n            // &type=issues\n            \"State\": \"狀態\",\n\n            \"Advanced\": \"高級搜索\",\n                \"Owner\": \"所有者\",\n                \"Size\": \"尺寸\",\n                \"Number of followers\": \"關注數\",\n                \"Number of forks\": \"複刻數\",\n                \"Number of stars\": \"星標數\",\n                \"Date created\": \"創建日期\",\n                \"Date pushed\": \"推送日期\",\n                \"Topic\": \"話題\",\n                \"License\": \"許可證\",\n                \"Archived\": \"存檔\",\n\n                // &type=code\n                \"Symbol\": \"符號\",\n                \"Exclude archived\": \"排除存檔\",\n\n                // &type=issues\n                \"Close reason\": \"關閉原因\",\n                \"Has linked pull request\": \"已關聯的拉取請求\",\n                \"Author\": \"作者\",\n                \"Assignee\": \"受理人\",\n                \"Mentioned user\": \"提及的用戶\",\n                \"Mentioned team\": \"提及的團隊\",\n                \"Commenter\": \"評論者\",\n                \"Involved user\": \"相關用戶\",\n                \"Label\": \"標籤\",\n                \"Milestone\": \"里程碑\",\n                \"Number of comments\": \"評論數\",\n                \"Number of interactions\": \"互動數\",\n\n                // &type=pullrequests\n                \"CI status\": \"CI 狀態\",\n                \"Review status\": \"審查狀態\",\n                \"Merged\": \"已合併\",\n                \"Not merged\": \"未合併\",\n\n                // &type=discussions\n                \"Organization\": \"組織\",\n                \"Involves user\": \"相關用戶\",\n\n                // &type=users\n                \"Full name\": \"全稱\",\n                \"Location\": \"地區\",\n                \"Language\": \"語言\",\n                \"Sponsorable\": \"可贊助\",\n\n                // &type=commits\n                \"Committer\": \"提交至\",\n                \"Author email\": \"作者電子郵箱\",\n                \"Committer email\": \"提交者電子郵箱\",\n                \"Merge commits\": \"合併提交\",\n                \"Hash\": \"哈希值\",\n                \"Parent hash\": \"父哈希值\",\n                \"Tree hash\": \"樹哈希值\",\n\n            \"Advanced search\": \"高級搜索\",\n                // &type=wikis\n                \"User\": \"用戶\",\n                \"Repository\": \"倉庫\",\n                \"Last updated date\": \"最後更新日期\",\n                // &type=topics\n                \"Curated topics\": \"策劃主題\",\n                \"Featured topics\": \"精選主題\",\n                \"Number of repositories\": \"倉庫數\",\n                \"Creation date\": \"創建日期\",\n\n            \"Cheat sheet\": \"搜索技巧\",\n\n            \"Sort by:\": \"排序方式：\",\n            \"Sort by\": \"排序方式\", // Android UA\n                // 篩選下拉\n                // &type=repositories\n                \"Sort options\": \"排序選項\",\n                \"Best match\": \"最佳匹配\",\n                \"Most stars\": \"最多星標\",\n                \"Fewest stars\": \"最少星標\",\n                \"Most forks\": \"最多複刻\",\n                \"Fewest forks\": \"最少複刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                // 提交\n                \"Recently committed\": \"最近提交\",\n                \"Least recently committed\": \"最早提交\",\n                \"Recently authored\": \"最近撰寫\",\n                \"Least recently authored\": \"最早撰寫\",\n                // 議題\n                \"Most commented\": \"最多評論\",\n                \"Least commented\": \"最少評論\",\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                // 討論\n                \"Highest score\": \"得分最高\",\n                \"Lowest score\": \"得分最低\",\n                // 軟體包\n                \"Most downloads\": \"最多下載\",\n                \"Fewest downloads\": \"最少下載\",\n                // 用戶\n                \"Most followers\": \"最多關注者\",\n                \"Fewest followers\": \"最少關注者\",\n                \"Most recently joined\": \"最近加入\",\n                \"Fewest recently joined\": \"最早加入\",\n                \"Least recently joined\": \"最早加入\",\n                \"Most repositories\": \"最多倉庫\",\n                \"Fewest repositories\": \"最少倉庫\",\n\n            \"More options\": \"更多選項\",\n            \"your search\": \"您的搜索\", // Android UA\n            \"View search docs\": \"查看搜索文檔\",\n\n            // 部分狀態詞\n            \"Updated\": \"更新於\", // &type=repositories\n            \"committ\": \"提交\",\n            \"committed\": \"提交於\", // &type=commits\n            \"Opened\": \"打開於\", // &type=issues\n            \"Last updated\": \"最近更新於\", // &type=wikis\n            \"posted\": \"發佈於\", // &type=discussions\n\n            // 保存對話框\n            \"Create saved search\": \"創建保存的搜索\",\n                \"Use saved searches to filter your results more quickly\": \"使用保存的搜索更快地篩選結果\",\n                \"Name\": \"名稱\",\n                \"Query\": \"詢問\",\n                \"To see all available qualifiers, see our\": \"要查看所有可用的限定符，請參閱我們的\",\n                \"documentation\": \"文檔\",\n\n                \"Name has already been taken\": \"名稱被佔用\",\n\n            // &type=repositories\n                \"Sponsor\": \"贊助\",\n                // [/Sponsor ([^ ]+)?/, \"贊助 $1\"], // 贊助按鈕 對話框 標題\n                // 贊助對話框\n                \"External links\": \"外部鏈接\",\n                \"Learn more about funding links in repositories\": \"瞭解更多關於倉庫中的贊助鏈接的信息\",\n                \"Report abuse\": \"舉報濫用\",\n\n                // 右側欄\n                    \"Sponsor open source projects you depend on\": \"贊助您依賴的開源專案\",\n                    \"Contributors are working behind the scenes to make open source better for everyone—give them the help and recognition they deserve.\": \"貢獻者們正在幕後努力，為每個人創造更好的開源環境——給予他們應有的幫助和認可\",\n                    \"Explore sponsorable projects\": \"探索可贊助專案\",\n\n                    \"How can we improve search?\": \"我們如何改進搜索？\",\n                    \"Give feedback\": \"提供反饋意見\",\n                        // 對話框\n                        \"Provide feedback\": \"提供反饋\",\n                            \"We read every piece of feedback, and take your input very seriously.\": \"我們認真閱讀每一份反饋意見，並非常重視您的建議。\",\n                            \"Include my email address so I can be contacted\": \"附上我的電子郵件地址以便於聯繫\",\n                            \"Submit feedback\": \"提交\",\n\n            // &type=code\n                // [/Show ([\\d,]+) more matches?/, \"顯示更多 $1 處匹配\"],\n                \"This file contains\": \"該文件還包含\",\n                \"more\": \"處\",\n                \"match\": \"匹配\",\n                \"matches\": \"匹配\",\n                \"not shown.\": \"未顯示。\",\n                \"See all\": \"查看完整文件中的所有\",\n                \"matche in the full file\": \"處匹配\",\n                \"matches in the full file\": \"處匹配\",\n                // 未登錄\n                \"Sign in to search code on GitHub\": \"登錄以在 GitHub 上搜索程式碼\",\n                \"Before you can access our code search functionality please sign in or create a free account.\": \"在使用程式碼搜索功能之前，請先登錄或創建一個免費帳戶。\",\n\n            // &type=issues\n                \"Learn how you can use GitHub Issues to plan and track your work.\": \"瞭解如何使用 GitHub 議題計劃和跟蹤工作。\",\n                \"Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.\": \"保存衝刺、待辦事項、團隊或發佈的視圖。根據場合對議題進行排名、排序和篩選。可能性是無止境。\",\n                \"Learn more about GitHub Issues\": \"瞭解更多關於 GitHub 議題的信息\",\n\n            // &type=registrypackages\n                \"Learn GitHub Packages\": \"瞭解 GitHub 軟體包\",\n                \"GitHub Packages is a platform for hosting and managing packages, including containers and other dependencies. Get started with publishing or installing packages yourself.\": \"GitHub 軟體包是一個託管和管理包（包括容器和其他依賴項）的平臺。開始自行發佈或安裝軟體包吧\",\n                \"Learn more about GitHub Packages\": \"瞭解更多關於 GitHub 軟體包的信息\",\n\n            // &type=topics\n                \"Related:\": \"相關的：\",\n\n            // &type=registrypackages\n                \"latest\": \"最新\",\n\n            \"Your search did not match any\": \"您的搜索沒有匹配任何\",\n            \"code\": \"程式碼\",\n            \"issue\": \"議題\",\n            \"issues\": \"議題\",\n            \"pull request\": \"拉取請求\",\n            \"pull requests\": \"拉取請求\",\n            \"discussion\": \"討論\",\n            \"discussions\": \"討論\",\n            \"commit\": \"提交\",\n            \"commits\": \"提交\",\n            \"package\": \"軟體包\",\n            \"packages\": \"軟體包\",\n            \"wikis\": \"Wiki\",\n            \"Try one of the tips below to find more code\": \"請嘗試使用以下提示查找更多程式碼\",\n            \"Try one of the tips below to find more repositories\": \"請嘗試使用以下提示查找更多倉庫\",\n            \"You could try one of the tips below.\": \"請嘗試使用以下提示\",\n\n            \"However we found\": \"然而我們發現\",\n            \"code results\": \"程式碼結果\",\n            \"code result\": \"程式碼結果\",\n            \"and\": \"和\",\n            \"that matched your search query. Alternatively try one of the tips below.\": \"與您的搜索查詢相匹配。或者嘗試以下提示之一。\",\n\n            \"Search across repositories\": \"跨倉庫搜索\",\n                \"Within a repository:\": \"在倉庫內：\",\n                \"Across several:\": \"跨越幾個：\",\n                \"Alternative way:\": \"替代方式：\",\n\n                \"Note that we don't currently support regular expressions in the repo or org qualifiers. For more information on search syntax, see our\": \"請注意，我們目前不支持 repo 或 org 限定符中的正則表達式。更多關於搜索語法的信息，請參閱我們的\",\n                \"syntax guide\": \"語法指南\",\n\n            \"Search across an organization\": \"跨組織搜索\",\n                \"Within an organization:\": \"在組織內：\",\n                \"User's code:\": \"用戶程式碼：\",\n\n            \"Find a particular file extension\": \"查找特定的文件擴展名\",\n                \"With .txt extensions:\": \"帶有 .txt 擴展名：\",\n                \"JavaScript and TypeScript files:\": \"JavaScript 和 TypeScript 文件：\",\n\n                \"The path qualifier can search the entire file path, not just the extension, and supports regular expressions. For more information, see our\": \"路徑限定符可以搜索整個文件路徑，而不僅僅是擴展名，並且支持正則表達式。更多信息，請參閱我們的\",\n\n            \"Why wasn't my code found?\": \"為什麼找不到我的程式碼？\",\n                \"When you search within a repository for the first time, please note that the repository undergoes indexing.\": \"首次在倉庫中搜索時，請注意倉庫會進行索引。\",\n                \"This process may take a few minutes.\": \"這一過程可能需要幾分鐘。\",\n\n                \"The index currently includes more than 70 million popular public repositories, plus all private repositories that users search for.\": \"該索引目前包括超過 7000 萬個熱門公共倉庫，以及用戶搜索的所有私有倉庫。\",\n                \"Beyond that, we also don't include all files in the search index:\": \"除此之外，我們也不會將所有文件都納入搜索索引：\",\n                    \"Vendored and generated code is excluded\": \"排除供應和生成的程式碼\",\n                    \"Empty files and files over 350 kiB are excluded\": \"排除空文件和超過 350 kiB 的文件\",\n                    \"Only UTF-8 encoded files are indexed\": \"僅對 UTF-8 編碼的文件進行索引\",\n                    \"Very large repositories may not be indexed\": \"非常大的倉庫可能不會被索引\",\n\n                \"We intend to continue to increase the amount of code available in the index as much as possible. If we are missing files that are useful to you, feel free to\": \"我們打算繼續儘可能增加索引中可用的程式碼量。如果我們缺少對您有用的文件，請隨意在此處\",\n                \"provide feedback here\": \"提供反饋\",\n\n            \"Regular expressions\": \"正則表達式\",\n                \"Sparse followed by index:\": \"稀疏跟隨索引：\",\n                \"Lines that end with return:\": \"以回車結束的行：\",\n                \"File paths matching:\": \"文件路徑匹配：\",\n\n                \"Note that you'll have to escape any slashes in the regex. For more information, see our\": \"注意，您必須在 正則中轉義任何斜線。更多信息，請參閱我們的\",\n\n            \"Saved searches\": \"保存搜索\",\n                \"Always searching within the same organization or set of repositories? Try constructing a query and click the save button in the top right corner.\": \"總是在同一個組織或一組倉庫中搜索？請嘗試創建一個查詢，然後點擊右上角的保存按鈕。\",\n\n            \"You could try an\": \"您可以嘗試\",\n\n        // 高級搜索 https://github.com/search/advanced >>>>>>>>>>>>>>>>>>>>>>>>\n            // 高級搜索\n            // \"Advanced search\": \"高級搜索\",\n            \"Search\": \"搜索\",\n            \"Advanced options\": \"高級選項\",\n            \"From these owners\": \"指定作者\",\n            \"In these repositories\": \"指定倉庫\",\n            \"Created on the dates\": \"創建日期\",\n            \"Written in this language\": \"使用語言\",\n            \"Any language\": \"任何語言\",\n                \"Popular\": \"熱門\",\n                \"Everything else\": \"其他語言\",\n\n            \"Repositories options\": \"倉庫選項\",\n            \"With this many stars\": \"指定星標數\",\n            \"With this many forks\": \"指定複刻數\",\n            \"Of this size\": \"倉庫大小\",\n            \"Pushed to\": \"推送於\",\n            \"With this license\": \"用何種許可證\",\n                \"Any license\": \"任意許可證\",\n                \"Licenses\": \"許可證\",\n                \"License families\": \"許可證系列\",\n            \"Return repositories\": \"搜索結果\",\n            \"not\": \"不\",\n            // \"and\": \"要\",\n            \"only\": \"僅\",\n            \"including forks.\": \"包含複刻倉庫。\",\n\n            \"Code options\": \"程式碼選項\",\n            \"With this extension\": \"文件後綴\",\n            \"Of this file size\": \"文件大小\",\n            \"In this path\": \"文件路徑\",\n            \"With this file name\": \"文件名稱\",\n            \"Return code\": \"搜索結果\",\n            // \"Return code from forked repositories\": \"搜索結果包括被複刻的倉庫。\",\n\n            \"Issues options\": \"議題選項\",\n            \"In the state\": \"議題狀態\",\n                \"open/closed\": \"打開/關閉\",\n                \"open\": \"打開\",\n                \"closed\": \"已關閉\",\n            \"With the reason\": \"原因\",\n                \"any reason\": \"任何原因\",\n                \"completed\": \"已完成\",\n                \"not planned\": \"無計劃\",\n                \"reopened\": \"重新打開\",\n            \"With this many comments\": \"評論數量\",\n            \"With the labels\": \"議題標籤\",\n            \"Opened by the author\": \"提議人\",\n            \"Mentioning the users\": \"提及誰\",\n            \"Assigned to the users\": \"分配給誰\",\n            \"Updated before the date\": \"更新於\",\n\n            \"Users options\": \"用戶選項\",\n            \"With this full name\": \"用戶全稱\",\n            \"From this location\": \"來自哪裡\",\n            \"With this many followers\": \"有多少關注者\",\n            \"With this many public repositories\": \"有多少公共倉庫\",\n            \"Working in this language\": \"擅長什麼語言\",\n            \"Wiki options\": \"Wiki 選項\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Filters?/, \"過濾\"], // Android UA\n        [/(\\d+(k|M|B)?) results?/, \"$1 個結果\"], // 頂部，數字後可能帶 K、M、B 三種字母其中一個\n        [/(\\d+(k|M|B)?) files?/, \"$1 個文件\"], // 同上 https://github.com/search?q=<keyword>&type=code\n        [/More than ([\\d,]+) results?/, \"大於 $1 個結果\"],\n        [/Show ([\\d,]+) more matches?/, \"顯示更多 $1 處匹配\"],\n        [/(\\d+) issues? needs? help/, \"$1 個議題需要幫助\"],\n        [/Sponsor ([^ ]+)?/, \"贊助 $1\"], // 贊助按鈕 對話框 標題\n        [/on (.+)/, \"$1\"], // 日期去除 on\n    ],\n    \"selector\": [ // 元素篩選器規則\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(2) > label > select > option:nth-child(2)\", \"要\"],\n        [\"#search_form > div.container-lg.p-responsive.advanced-search-form > fieldset:nth-child(3) > label > select > option:nth-child(2)\", \"要\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Repository search results\": \"倉庫搜索結果\",\n            \"Code search results\": \"程式碼搜索結果\",\n            \"Issue search results\": \"議題搜索結果\",\n            \"Pull request search results\": \"拉取請求搜索結果\",\n            \"Discussion search results\": \"討論搜索結果\",\n            \"User search results\": \"用戶搜索結果\",\n            \"Commit search results\": \"提交搜索結果\",\n            \"Package search results\": \"軟體包搜索結果\",\n            \"Wiki search results\": \"Wiki 搜索結果\",\n            \"Topic search results\": \"主題搜索結果\",\n            \"Marketplace search results\": \"市場搜索結果\",\n        },\n    },\n};\nI18N[\"zh-TW\"][\"repository/search\"] = I18N[\"zh-TW\"][\"search\"];\n\nI18N[\"zh-TW\"][\"discussions\"] = {\n    \"static\": { // 靜態翻譯\n        // https://github.com/discussions\n            \"Discussions\": \"討論\",\n\n            \"Created\": \"已創建\",\n            \"Commented\": \"已評論\",\n\n            \"Search all discussions\": \"搜索所有討論\",\n\n            \"No discussions match the selected filters.\": \"沒有符合所篩選條件的討論。\",\n            \"Discussions are used to ask questions and have open-ended conversations.\": \"討論用於提出問題並進行開放式對話。\",\n\n        // https://github.com/discussions/commented\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Discussions\": \"討論\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"gist\"] = { // 程式碼片段頁面\n    \"static\": { // 靜態翻譯\n        // 快捷鍵\n        \"Site wide shortcuts\": \"全局快捷鍵\",\n        \"Gists\": \"程式碼片段\",\n        \"Go to Code\": \"跳轉到程式碼\",\n        \"Go to Revisions\": \"跳轉到修訂\",\n\n        \"Instantly share code, notes, and snippets.\": \"即時分享您的程式碼，筆記，片段，以及靈感。\",\n        \"Search…\": \"搜索…\", // 未登錄\n        \"Search...\": \"搜索…\", // 已登錄\n        \"Search Gists\": \"搜索程式碼片段\",\n            \"No results.\": \"沒有結果。\",\n            \"Yours\": \"您的\",\n        \"All gists\": \"所有片段\",\n        \"Back to GitHub\": \"返回到 GitHub\",\n        \"You don’t have any gists yet.\": \"您還沒有任何程式碼片段。\",\n        \"Your public gists will show up here on your profile.\": \"您的公開程式碼片段將顯示在這裡。\",\n        \"Create a gist\": \"新建一個程式碼片段\",\n\n        \"Forked\": \"複刻\",\n        \"Starred\": \"星標\",\n\n        // 左側用戶信息欄\n        \"Change your avatar\": \"修改頭像\",\n        \"follower\": \"關注者\",\n        \"followers\": \"關注者\",\n        \"following\": \"關注\",\n        \"Joined\": \"加入於\",\n        \"View GitHub Profile\": \"查看 GitHub 個人資料\",\n\n        \"Create new gist\": \"新建片段\",\n        // 右上角個人圖標下拉菜單\n            \"Signed in as\": \"登錄身份為\",\n            \"Your gists\": \"我的程式碼片段\",\n            \"Starred gists\": \"我的星標程式碼片段\",\n            \"Help\": \"幫助\",\n        \"Your GitHub profile\": \"我的 GitHub 個人資料\",\n\n        \"View profile and more\": \"查看更多信息\",\n        \"See all of your gists\": \"查看您的所有片段\",\n\n        // 返回通知頁狀態條\n            \"Back to notifications\": \"回到通知\",\n            \"Done\": \"已完成\",\n            \"Unsubscribe\": \"退訂\",\n            \"Mark as unread\": \"標記為未讀\",\n            \"Save\": \"保存\",\n\n        // 用戶 浮動信息卡\n        \"Member of\": \"隸屬組織\",\n        // [/, and (\\d+) more/, \"，以及其他 $1 個組織\"],\n\n        // 新建片段頁面\n        \"View your gists\": \"查看您的片段\",\n        \"Gist description…\": \"片段描述…\",\n        \"Filename including extension…\": \"文件名 (包括擴展名)…\",\n        \"Create secret gist\": \"創建私密片段\",\n        \"Secret gists are hidden by search engines but visible to anyone you give the URL to.\": \"私密片段對搜索引擎不可見，對直接訪問您分享的鏈接可見。\",\n        \"Create public gist\": \"創建公開片段\",\n        \"Public gists are visible to everyone.\": \"公開片段對所有人可見。\",\n\n        // 程式碼編輯框\n        \"Indent mode\": \"縮進模式\",\n        \"Spaces\": \"空格\",\n        \"Tabs\": \"Tab\",\n        \"Indent size\": \"縮進大小\",\n        \"Line wrap mode\": \"換行模式\",\n        \"No wrap\": \"不換行\",\n        \"Soft wrap\": \"軟換行\",\n        \"Add file\": \"添加文件\",\n        \"Remove file\": \"移除文件\",\n\n        // All gists 標籤卡\n        // 篩選 & 排序工具欄\n        \"Sort:\": \"排序:\",\n        \"Sort options\": \"排序選項\",\n        \"Recently created\": \"最近創建\",\n        \"Least recently created\": \"最早創建\",\n        \"Recently updated\": \"最近更新\",\n        \"Least recently updated\": \"最早更新\",\n\n        \"Type:\": \"類型:\",\n        \"Filter options\": \"篩選選項\",\n        \"All\": \"所有\",\n        \"Public\": \"公共\",\n        \"Secret\": \"私密\",\n\n        \"Created\": \"創建於\",\n        \"Last active\": \"最後活動於\",\n        \"Forked from\": \"複刻自\",\n        \"— forked from\": \"— 複刻自\",\n\n        \"Newer\": \"新的\",\n        \"Older\": \"舊的\",\n\n        // View 程式碼 頁面\n        // 頭部通用信息\n        \"Only those with the link can see this gist.\": \"只有知道鏈接的人才能看到此 Gist。\",\n        \"Edit\": \"編輯\",\n        \"Delete\": \"刪除\",\n            \"Are you positive you want to delete this Gist?\": \"您確定要刪除此 Gist 嗎？\",\n            // 頂部提醒\n                \"Gist deleted successfully.\": \"程式碼片段已成功刪除。\",\n        \"Subscribe\": \"訂閱\",\n        // \"Unsubscribe\": \"退訂\",\n        \"Star\": \"標星\",\n            \"Star this gist\": \"標星該程式碼片段\",\n            \"You must be signed in to star a gist\": \"您必須登錄才能標星程式碼片段\",\n        \"Unstar\": \"取消星標\",\n            \"Unstar this gist\": \"取消該程式碼片段星標\",\n        \"Forks\": \"複刻\",\n            \"Fork this gist\": \"複刻程式碼片段\",\n            \"You must be signed in to fork a gist\": \"您必須登錄才能複刻程式碼片段\",\n        \"User actions\": \"用戶操作\",\n        \"Report abuse\": \"舉報濫用\",\n        \"Disable comments\": \"禁用評論\",\n            \"Comments have been disabled.\": \"評論已禁用。\", // 頂部提示\n            \"Comments are disabled for this gist.\": \"評論已被禁用。\", // 評論框底部提示\n        \"Enable comments\": \"啟用評論\",\n            \"Comments have been enabled.\": \"評論已啟用。\", // 頂部提示\n\n        \"Code\": \"程式碼\",\n        \"Revisions\": \"修訂\",\n        \"Stars\": \"星標\",\n\n        \"Drop one or more files here to prefill your gist!\": \"在此處拖放一個或多個文件以填充您的 Gist！\",\n\n        // 分享工具條\n        \"What would you like to do?\": \"您想做什麼？\",\n        \"Embed\": \"嵌入\",\n            \"Embed this gist in your website.\": \"嵌入到您的網頁中。\",\n        \"Share\": \"分享\",\n            \"Copy sharable link for this gist.\": \"複製片段共享鏈接。\",\n        \"Clone via HTTPS\": \"通過 HTTPS 方式克隆\",\n            \"Clone using the web URL.\": \"使用 Web URL 克隆。\",\n        \"Clone via SSH\": \"通過 SSH 方式克隆\",\n            \"Clone with an SSH key and passphrase from your GitHub settings.\": \"通過 GitHub 設置中的 SSH 密鑰和密碼進行克隆。\",\n        \"Learn more about clone URLs\": \"瞭解更多關於克隆地址的信息\",\n\n        // 外部編輯器\n        \"Open repository with\": \"打開倉庫於\",\n\n        \"Copy to clipboard\": \"複製到剪切板\",\n        \"Copied!\": \"✅ 複製成功!\",\n        \"Download ZIP\": \"下載 Zip 壓縮包\",\n        \"Permalink\": \"永久鏈接\",\n\n        // 程式碼標籤卡\n        \"Raw\": \"源碼\",\n        \"Load earlier comments...\": \"載入早期的評論…\",\n\n        // 修訂標籤卡\n        \"Unified\": \"同屏\",\n        \"Split\": \"分屏\",\n        \"created\": \"創建\",\n        \"revised\": \"修訂\",\n        \"renamed\": \"重命名\",\n        \"this gist\": \"該片段於\",\n        \"with\": \"包含\",\n        \"No changes.\": \"無變化\",\n\n        \"Show comments\": \"顯示評論\",\n        \"View file\": \"查看文件\",\n\n        \"Display the source diff\": \"顯示源差異\",\n        \"Display the rich diff\": \"顯示富差異\",\n        \"Empty file.\": \"空文件。\",\n        \"File renamed without changes.\": \"文件僅重命名，內容沒有更改。\",\n        // [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 處添加，$2 處刪除未顯示，因為差異太大。請使用本地 Git 客戶端查看這些更改。\"],\n\n        // 星標標籤卡\n        \"Stargazers\": \"追星者\",\n        \"Be the first to star this gist.\": \"成為第一個為該程式碼片段標星的人。\",\n        \"Learn more about starring Gists\": \"瞭解更多關於標星程式碼片段的信息\",\n\n        // 複刻標籤卡\n        \"Modified\": \"修改\",\n        \"View fork\": \"瀏覽複刻\",\n\n        // 編輯程式碼頁面\n        \"Editing\": \"編輯\",\n        \"Edit file\": \"編輯文件\",\n        \"Edit new file\": \"編輯新文件\",\n        \"Preview changes\": \"預覽更改\",\n        \"Loading preview…\": \"載入預覽…\",\n        // 搜索框\n            \"Search:\": \"搜索：\",\n            \"(Use /re/ syntax for regexp search)\": \"（使用 /re/ 語法進行正則搜索）\",\n        \"Attach files by selecting or pasting them.\": \"通過選擇或粘貼來附加文件。\",\n        // 底部欄\n            \"Use\": \"使用\",\n            \"to toggle the\": \"切換\",\n            \"key moving focus.\": \"鍵移動對焦。\",\n        \"Make secret\": \"轉為私密\",\n        \"Make public\": \"轉為公開\",\n        \"Cancel\": \"取消\",\n        \"Update public gist\": \"更新公開片段\",\n        \"Update secret gist\": \"更新私密片段\",\n\n        // 已加星標頁面\n        \"You don’t have any starred gists yet.\": \"您還沒有任何星標程式碼片段。\",\n\n        // 評論框\n        \"Owner\": \"所有者\",\n        \"Author\": \"作者\",\n        \"Copy link\": \"複製鏈接\",\n        \"Quote reply\": \"引用回覆\",\n        \"Report content\": \"舉報內容\",\n        \"Report\": \"舉報\",\n        // 評論刪除提醒\n            \"Are you sure you want to delete this?\": \"您定要刪除這個嗎？\",\n\n        \"You are the owner of the gist.\": \"您是程式碼片段的所有者。\",\n        \"You are the author of this gist.\": \"您是程式碼片段的作者。\",\n        \"You are the author of this .\": \"您是程式碼片段的作者。\",\n\n        \"commented\": \"評論於\",\n        \"via email\": \"通過郵件\",\n        \"Update comment\": \"更新評論\",\n        \"Hide\": \"隱藏\",\n\n        \"edited\": \"編輯\",\n        \"(most recent)\": \"(最近的)\",\n        \"(deleted)\": \"(已刪除)\",\n        \"deleted this content\": \"刪除了該內容\",\n        \"Options\": \"選項\",\n        \"More options\": \"更多選項\",\n        \"The most recent revision cannot be deleted. Need to delete sensitive information? Go to the specific edit where the information was added.\": \"最近的修訂版不能被刪除。需要刪除敏感信息？請到信息的具體編輯處修改。\",\n        \"Delete revision from history\": \"從歷史記錄中刪除修訂\",\n        \"This edit’s content will no longer be visible\": \"此修改的內容將不再可見\",\n\n        // 探索頁面\n        \"Discover gists\": \"探索程式碼片段\",\n\n        // 搜索頁面\n        //\"Sort:\": \"排序:\",\n            \"Best match\": \"最佳匹配\",\n            \"Most stars\": \"最多星標\",\n            \"Fewest stars\": \"最少星標\",\n            \"Most forks\": \"最多複刻\",\n            \"Fewest forks\": \"最少複刻\",\n\n        // 底部提示欄 (未登錄)\n        \"Sign up for free\": \"免費註冊\",\n        \"to join this conversation on GitHub\": \"加入 GitHub 上的這個討論\",\n        \". Already have an account?\": \"。已經有賬戶？\",\n        \"Sign in to comment\": \"登錄後發表評論\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/View ([^ ]+) on GitHub/, \"查看 $1 的 GitHub\"],\n        [/(\\d+) files?/, \"$1 文件\"],\n        [/(\\d+) forks?/, \"$1 複刻\"],\n        [/(\\d+) comments?/, \"$1 評論\"],\n        [/(\\d+) stars?/, \"$1 星標\"],\n        [/Save (.+?) to your computer and use it in GitHub Desktop./, \"使用 GitHub Desktop，保存 $1 到您的電腦。\"],\n        //程式碼修訂\n        [/(\\d+) changed files?/, \"$1 個更改的文件\"],\n        [/(\\d+) additions?$/, \"$1 處增加\"],\n        [/(\\d+) deletions?$/, \"$1 處刪除\"],\n        [/(\\d+) changes?: (\\d+) additions? & (\\d+) deletions?/, \" $1 處更改：$2 處增加 & $3 處刪除\"],\n        [/([\\d,]+) additions, ([\\d,]+) deletions not shown because the diff is too large. Please use a local Git client to view these changes./, \"$1 處增加，$2 處刪除未顯示，因為差異太大。請使用本地 Git 客戶端查看這些更改。\"],\n        [/Edited (\\d+) times?/,\"編輯 $1 次\"], //評論框編輯次數\n        [/edited by ([^ ]+)/,\"被 $1 編輯\"], //評論框 被他人編輯\n        // [/Joined/,\"加入於\"], //星標標籤卡\n        [/, and (\\d+) more/, \"，以及其他 $1 個組織\"], // 用戶 浮動信息卡\n        [/doesn’t have any public gists yet./, \"尚無任何公開的程式碼片段。\"],\n        [/([\\d,]+) gist results?/, \"$1 個片段結果\"],\n        [/Sort:/, \"排序：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Create a new Gist\": \"新建程式碼片段\",\n            \"Discover gists\": \"探索程式碼片段\",\n        },\n        \"regexp\": [\n            [/’s gists/, \" 的程式碼片段\"],\n            [/Search/, \"搜索\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"login/oauth\"] = { // 應用授權\n    \"static\": { // 靜態翻譯\n        // 第三頁 安裝中\n\n        // 第四頁 安裝後 授權\n        // GitHub 應用安裝授權 /login/oauth/authorize?client_id=<client-id>&state=<state>\n        // 示例 /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n            \"Resources on your account\": \"您賬戶中的資源\",\n            \"Act on your behalf\": \"代表您行事\",\n            \"Email addresses\": \"電子郵箱地址\",\n            \"(read)\": \"(只讀)\",\n            \"View your email addresses\": \"查看您的電子郵箱地址\",\n            \"Authorizing will redirect to\": \"授權將重定向到\",\n            \"Not\": \"不由\",\n            \"owned or operated by GitHub\": \"GitHub 擁有或運營\",\n            \"Created\": \"創建於\",\n            \"GitHub users\": \"GitHub 用戶\",\n\n        // OAuth 應用安裝授權 /login/oauth/authorize?client_id=<client-id>&redirect_uri=<redirect-uri>&scope=<scope>&state=<>\n        // 示例 /login/oauth/authorize?client_id=78a2ba87f071c28e65bb&redirect_uri=https%3A%2F%2Fcircleci.com%2Fauth%2Fgithub%3Freturn-to%3D%252Fdashboard%253Futm_medium%253Dpartner%2526utm_campaign%253Dghmarketplace%2526utm_source%253Dgithub&scope=repo%2Cuser%3Aemail&state=uZ9BTIkhQ3_98icRI09o1L1HJmfvIO8gK3FDGwytNAzbBRzXwTge440cKS7NaGtvS0tqCR_HzGMH2z3p\n            \"wants to access your\": \"想訪問您的\",\n            \"account\": \"賬戶\",\n            \"Public and\": \"公共庫和\",\n            \"private\": \"私有庫\",\n            \"This application will be able to\": \"該應用將能夠\",\n            \"read and write all public and private repository data\": \"讀寫所有公共和私有倉庫數據\",\n            \". This includes the following:\": \"。這包括以下內容：\",\n            \"Wikis\": \"Wiki\",\n            \"Webhooks and services\": \"Web 鉤子和服務\",\n            \"Deploy keys\": \"部署密鑰\",\n            \"Collaboration invites\": \"合作的邀請\",\n\n            \"Personal user data\": \"個人用戶資料\",\n            \"Email addresses (read-only)\": \"電子郵箱地址(只讀)\",\n            \"This application will be able to read your private email addresses.\": \"此應用將能夠讀取您的私人電子郵箱地址。\",\n\n            \"Organization access\": \"組織訪問\",\n                \"Request\": \"請求\",\n                \"This organization allows the application to access organization data as described in the permissions above.\": \"該組織允許應用訪問上述權限中所述的組織數據。\",\n                \"Until access is granted by an owner, the application cannot access the organization’s private data or modify its public data.\": \"在所有者授予訪問權限之前，應用無法訪問組織的私有數據或修改其公共數據。\",\n                \"The application cannot access this organization’s private data or modify its public data.\": \"應用無法訪問該組織的私有數據或修改其公共數據。\",\n\n            // >>>>>具體的權限不打算漢化<<<<<<<\n\n            \"Owned & operated by GitHub\": \"由 GitHub 擁有和運營\",\n\n        // 第五頁 即將跳轉到 重定向頁面\n            \"You are being redirected to the authorized application.\": \"您將被重定向到授權的應用。\",\n            \"If your browser does not redirect you back, please visit\": \"如果您的瀏覽器沒有將您重定向回來，請\",\n            \"If your browser does not redirect you back, please\": \"如果您的瀏覽器沒有將您重定向回來，請\",\n            \"click here\": \"點擊這裡\",\n            \"this setup page\": \"點擊這裡\",\n            \"to continue.\": \"繼續。\",\n            \"would like permission to:\": \"希望獲得以下許可：\",\n            \"Know which resources you can access\": \"瞭解您可以訪問哪些資源\",\n\n        // 選擇賬戶授權 https://github.com/login/oauth/select_account?*\n            //\"Select user to authorize\": \"選擇用戶進行授權\",\n            //\"Signed in as\": \"登錄身份為\",\n            \"From the options below, choose which account you would like to use to authorize this app.\": \"從下面的選項中，選擇您要使用哪個帳戶來授權此應用程式。\",\n            \"Use a different account\": \"使用其他賬戶\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login\n        [/Verify your GitHub identity/, \"驗證您的 GitHub 身份\"],\n        [/Select user to authorize ([^ ]+)/, \"選擇用戶進行授權 $1\"],\n        [/Signed in as/, \"登錄身份為 \"],\n        [/has not been installed on any accounts you have access to./, \"尚未安裝在您有權訪問的任何賬戶上。\"],\n        [/Learn more about/, \"瞭解更多關於\"],\n        [/More than ([^ ]+)/, \"超過 $1\"],\n        // /apps/codacy-production/installations/new/permissions?target_id=7850715\n        // [/Install & Authorize on your personal account/, \"安裝和授權到您的個人賬戶\"],\n        // [/Install & Authorize/, \"安裝和授權\"],\n        [/Authorize ([^ ]+)/, \"授權 $1\"], // /login/oauth/authorize?client_id=Iv1.1a4d20f84a40d790&state=login 調整位置避免覆蓋\n        // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安裝和授權 $1 則會立即授予您賬戶的以下權限：\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"選擇了 $1 個倉庫。\"],\n    ],\n};\n// I18N[\"zh-TW\"][\"installations/new\"] = I18N[\"zh-TW\"][\"login/oauth\"];\n\nI18N[\"zh-TW\"][\"explore\"] = { // 探索頁面\n    \"static\": { // 靜態翻譯\n\n        // github.com/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主題\",\n            \"Trending\": \"熱門\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活動\",\n            \"GitHub Sponsors\": \"GitHub 贊助\",\n            \"Get email updates\": \"獲取電子郵件更新\",\n            \"Change email updates\": \"更改電子郵件更新\", // 已設置郵件更新通知\n\n            // 右側信息欄\n            \"Trending repositories\": \"熱門倉庫\",\n                \"today\": \"今日\",\n            \"See more trending repositories\": \"查看更多熱門倉庫\",\n            \"Trending developers\": \"熱門開發者\",\n            \"See more trending developers\": \"查看更多熱門開發者\",\n\n            // 中間信息欄\n            \"Here's what we found based on your interests...\": \"以下是我們根據您的興趣發現的內容…\",\n            \"Here's what's popular on GitHub today...\": \"這是今天 GitHub 熱門內容…\", // 未登錄\n                \"This recommendation was generated by GitHub computers\": \"此推薦由 GitHub 計算機生成\",\n                \"Based on repositories you’ve starred\": \"基於您標星的倉庫\",\n                \"Based on topics you've starred\": \"基於您標星的主題\",\n                \"Based on people you follow\": \"基於您關注的人\",\n                \"Based on repositories you’ve viewed\": \"基於您查看過的倉庫\",\n                \"Based on your public repository contributions\": \"基於您對公共倉庫的貢獻\",\n                \"App recommended by GitHub\": \"GitHub 推薦的應用\",\n                \"Staff pick\": \"員工精選\",\n                \"This recommendation was created by GitHub staff\": \"此推薦由 GitHub 工作人員創建\",\n                \"Upcoming event recommended by GitHub\": \"GitHub 推薦的即將舉行的活動\",\n                \"For the Love of Code submission\": \"程式碼之愛投稿\", // 機翻\n\n            \"Trending repository\": \"熱門倉庫\", // 未登錄\n            \"Popular topic\": \"熱門主題\", // 未登錄\n\n            \"Star topics that interest you\": \"標星您感興趣的主題\",\n            \"and we'll show you the latest from the octoverse.\": \"我們將向您展示來自八維空間的最新信息。\",\n            \"Explore more topics\": \"探索更多主題\",\n\n            \"Collection recommended by GitHub\": \"GitHub 推薦的合集\",\n\n            \"That's everything we found for you, for now.\": \"這就是我們目前為您找到的一切。\",\n                \"Come back soon to see what we find next,\": \"請儘快回來查看我們接下來會發現什麼，\",\n                \"get email updates.\": \"獲取電子郵件更新。\",\n                \"check how often you receive email updates.\": \"檢查您收到電子郵件更新的頻率。\", // 已設置郵件更新通知\n\n            \"Updated\": \"更新於\",\n            \"See more matching repositories\": \"查看更多匹配的倉庫\",\n\n        // github.com/explore/email\n            \"Explore email newsletter\": \"探索電子郵件通訊\",\n                \"Get email updates about what GitHub finds for you based on your interests\": \"根據您的興趣，通過電子郵件獲取 GitHub 為您找到的最新信息\",\n\n            \"None\": \"無\",\n                \"Email isn’t for everyone. Or maybe you’ve just made github.com/explore your homepage. We won’t send you any emails.\": \"電子郵件並不適合所有人。或者，您剛剛把 github.com/explore 作為您的主頁。我們不會給您發送任何電子郵件。\",\n            \"Daily\": \"每天\",\n                \"Start your day with a delicious cup of coffee (or perhaps an artisan matcha latte) and interesting repositories every day.\": \"每天以一杯美味的咖啡（或可能是手工抹茶拿鐵）和有趣的倉庫開始您的一天。\",\n            \"Weekly\": \"每週\",\n                \"The perfect way to keep on top of everything GitHub. Every Tuesday, we’ll send you an email with everything we found for you in the past week based on your interests.\": \"掌握 GitHub 一切信息的完美方式。每週二，我們會根據您的興趣向您發送一封電子郵件，內容是我們在過去一週為您找到的所有內容。\",\n            \"Monthly\": \"每月\",\n                \"The best option for lurkers who want to keep up with major happenings in the open source world.\": \"對於想了解開源世界重大事件的潛伏者來說，這是最佳選擇。\",\n            \"Unsubscribed!\": \"已取消訂閱！\",\n            \"Subscribed!\": \"已訂閱！\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/([\\d,]+) more/, \"其他 $1 項\"],\n        [/([\\d,]+) starred topics?/, \"$1 個星標主題\"],\n        [/([\\d,]+) starred repositories?/, \"$1 個星標倉庫\"],\n        [/There are ([\\d,]+) public repositories? matching this topic/, \"有 $1 個公共倉庫與此主題相匹配\"],\n        [/See the ([\\d,]+) items? in this collection/, \"查看該系列中的 $1 個專案\"],\n        [/Topic: ([^ ]+)/, \"主題：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub\": \"探索 GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"topics\"] = { // 探索-->主題頁面\n    \"static\": { // 靜態翻譯\n\n        // github.com/topics\n            \"Explore\": \"探索\",\n            \"Topics\": \"主題\",\n            \"Trending\": \"熱門\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活動\",\n            \"GitHub Sponsors\": \"GitHub 贊助\",\n            \"Get email updates\": \"獲取電子郵件更新\",\n            \"Change email updates\": \"更改電子郵件更新\", // 已設置郵件更新通知\n\n            \"Browse popular topics on GitHub.\": \"瀏覽 GitHub 上的熱門主題。\",\n            \"All featured topics\": \"所有主題\",\n            \"Popular topics\": \"熱門主題\",\n            \"Unstar\": \"已加星標\",\n\n        // github.com/topics/<某主題>\n            \"Created by\": \"創建者\",\n            \"Released\": \"發佈於\",\n            \"Latest release\": \"最新發行\",\n\n            \"Related Topics\": \"相關主題\",\n            \"Updated\": \"更新於\",\n            \"Sponsor\": \"贊助\",\n\n            \"Language:\": \"語言:\",\n                \"Filter by language\": \"按語言篩選\",\n                \"All\": \"所有\",\n            \"Sort:\": \"排序:\",\n                \"Sort options\": \"排序選項\",\n                \"Most stars\": \"最多星標\",\n                \"Fewest stars\": \"最少星標\",\n                \"Most forks\": \"最多複刻\",\n                \"Fewest forks\": \"最少複刻\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n\n            \"Improve this page\": \"改善此頁面\",\n                \"Add a description, image, and links to the\": \"為\",\n                \"topic page so that developers can more easily learn about it.\": \"主題頁面添加描述、圖片和鏈接，以便開發人員可以更輕鬆地瞭解它。\",\n                \"Curate this topic\": \"整理此主題\",\n            \"Add this topic to your repo\": \"將此主題添加到您的倉庫\",\n                \"To associate your repository with the\": \"將您的倉庫與\",\n                \"topic, visit your repo's landing page and select \\\"manage topics.\\\"\": \"主題關聯，請訪問倉庫的登錄頁面，然後選擇 “管理主題”。\",\n\n            // 沒有任何倉庫\n                // 原句：The <主題名> topic hasn't been used on any public repositories, yet.\n                \"The\": \" \",\n                    \"topic hasn't been used on any public repositories, yet.\": \"尚未被任何公共倉庫使用。\",\n                \"Explore topics\": \"探索主題\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/followers?/, \"個關注者\"],\n        [/Here are ([\\d,]+) public repositories? matching this topic.../, \"有 $1 個公共倉庫與此主題相匹配\"],\n        [/Topic: ([^ ]+)/, \"主題：$1\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Topics on GitHub\": \"GitHub 上的主題\",\n        },\n        \"regexp\": [\n            [/GitHub Topics/, \"GitHub 主題\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"trending\"] = { // 熱門頁面\n    \"static\": { // 靜態翻譯\n        \"Explore\": \"探索\",\n        \"Topics\": \"主題\",\n        \"Trending\": \"熱門\",\n        \"Collections\": \"集合\",\n        \"Events\": \"活動\",\n        \"GitHub Sponsors\": \"GitHub 贊助\",\n        \"Get email updates\": \"獲取電子郵件更新\",\n        \"Change email updates\": \"更改電子郵件更新\", // 已設置郵件更新通知\n\n        \"See what the GitHub community is most excited about today.\": \"看看 GitHub 社區今天最受關注的專案。\",\n        \"See what the GitHub community is most excited about this week.\": \"看看 GitHub 社區本週最受關注的專案。\",\n        \"See what the GitHub community is most excited about this month.\": \"看看 GitHub 社區本月最受關注的專案。\",\n\n        \"These are the developers building the hot tools today.\": \"這些是今天創建熱門專案的開發人員。\",\n        \"These are the developers building the hot tools this week.\": \"這些是本週創建熱門專案的開發人員。\",\n        \"These are the developers building the hot tools this month.\": \"這些是本月創建熱門專案的開發人員。\",\n\n        \"Repositories\": \"倉庫\",\n        \"Developers\": \"開發者\",\n\n        \"Sponsor\": \"贊助\",\n        \"Built by\": \"構建者\",\n\n        \"Spoken Language:\": \"母語：\",\n            \"Select a spoken language\": \"選擇母語：\",\n            \"This setting can be saved in your\": \"此設置可以保存在您的\",\n            \"This setting can be updated in your\": \"此設置可以更新於您的\",\n            \"profile settings.\": \"個人資料。\",\n            \"Filter spoken languages\": \"篩選母語\",\n            \"Clear spoken language\": \"清除母語\",\n            \"Any\": \"任何\",\n            // 彈窗\n            \"Filter by spoken language\": \"使用母語篩選\",\n                \"Select your preferred spoken language in order to see matching trending results.\": \"選擇您喜歡的母語以查看匹配的趨勢結果。\",\n                \"Got it!\": \"確定\",\n        \"Language:\": \"語言：\",\n            \"Select a language\": \"選擇語言：\",\n            \"Filter languages\": \"篩選語言\",\n            \"Unknown languages\": \"未知語言\",\n        \"Date range:\": \"日期範圍：\",\n            \"Adjust time span\": \"調整的時間跨度\",\n                \"Today\": \"今天\",\n                \"This week\": \"本週\",\n                \"This month\": \"本月\",\n        \"Sponsorable:\": \"可贊助：\",\n            \"GitHub Sponsors participation\": \"參與 GitHub 贊助\",\n            \"Sponsorable developers\": \"可贊助的開發者\",\n            \"All developers\": \"所有開發者\",\n            \"All\": \"所有\",\n\n        // 開發者頁\n        \"Popular repo\": \"熱門倉庫\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/([\\d,]+) stars? today/, \"今日 $1 星標\"],\n        [/([\\d,]+) stars? this week/, \"本週 $1 星標\"],\n        [/([\\d,]+) stars? this month/, \"本月 $1 星標\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Trending repositories on GitHub today\": \"今日熱門倉庫\",\n            \"Trending repositories on GitHub this week\": \"本週熱門倉庫\",\n            \"Trending repositories on GitHub this month\": \"本月熱門倉庫\",\n            \"Trending developers on GitHub today\": \"今日熱門開發者\",\n            \"Trending developers on GitHub this week\": \"本週熱門開發者\",\n            \"Trending developers on GitHub this month\": \"本月熱門開發者\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"collections\"] = { // 集合頁面\n    \"static\": { // 靜態翻譯\n        \"Explore\": \"探索\",\n        \"Topics\": \"主題\",\n        \"Trending\": \"熱門\",\n        \"Collections\": \"集合\",\n        \"Collection\": \"集合\",\n        \"Events\": \"活動\",\n        \"GitHub Sponsors\": \"GitHub 贊助\",\n        \"Get email updates\": \"獲取電子郵件更新\",\n        \"Change email updates\": \"更改電子郵件更新\", // 已設置郵件更新通知\n        \"Curated lists and insight into burgeoning industries, topics, and communities.\": \"精心策劃的列表和對新興行業、主題和社區的見解。\",\n        \"Create a collection\": \"創建一個集合\",\n        \"Suggest edits\": \"建議修改\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n    \"title\": {\n        \"static\": {\n            \"Collections\": \"集合\",\n        },\n        \"regexp\": [\n            [/Collection: /, \"集合：\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"sponsors\"] = { // 贊助界面\n    \"static\": {\n        // 贊助者首頁 https://github.com/sponsors\n            \"Invest in the software that powers your world\": \"投資驅動您世界的專案\",\n            \"See your top dependencies\": \"查看您的首要依賴項\",\n            \"Get sponsored\": \"獲得贊助\",\n            \"A new way to contribute\": \"為開源做出貢獻的\",\n            \"to open source\": \"新方式\",\n            \"Invest in your supply chain\": \"投資您的供應鏈\",\n            \"You depend on open source every day\": \"您每天都依賴於開源專案\",\n            \"Make open source careers possible\": \"使開源生涯成為可能\",\n            \"Thanks to our partners\": \"感謝我們的合作伙伴\",\n            \"Available in 103 regions\": \"可用於 103 個地區\",\n            \"to receive updates when we expand.\": \"以便在我們擴展時接收更新。\",\n            \"View country and region list\": \"查看國家和地區支持列表\",\n            \"Anyone can sponsor, but you must reside in a supported region to receive funds.\": \"任何人都可以贊助，但您必須居住在受支持的地區才能獲得資金。\",\n            \"Frequently asked questions\": \"常見問題\",\n            \"Invest in the projects you depend on\": \"投資您所依賴的專案\",\n\n        // 贊助者賬戶頁面 https://github.com/sponsors/accounts\n            // 標題\n                \"GitHub Sponsors accounts\": \"GitHub 贊助者賬戶\",\n            // 管理\n                \"Manage who you sponsor\": \"管理您贊助的對象\",\n                    \"You haven't sponsored anyone yet.\": \"您還沒有贊助任何人。\",\n                    \"Find someone to sponsor\": \"尋找贊助對象\",\n            // 名單\n                \"GitHub Sponsors eligible accounts\": \"符合 GitHub 贊助者資格的賬戶\",\n                    \"This account has not applied to join GitHub Sponsors.\": \"此賬戶尚未申請加入 GitHub 贊助者。\",\n                    \"Join the waitlist\": \"加入等候名單\",\n\n            \"GitHub Sponsors applications\": \"GitHub 贊助者申請\",\n                \"Pending\": \"排隊\",\n                    \"This GitHub Sponsors profile is waiting to be reviewed by GitHub.\": \"此 GitHub 贊助者個人資料正在等待 GitHub 審核。\",\n                \"Manage\": \"管理\",\n\n        // GitHub 贊助者個人資料 https://github.com/sponsors/<user-name>\n        // GitHub 贊助者組織資料 https://github.com/sponsors/<org-name>\n        // ...?preview=true\n        \"You are previewing your GitHub Sponsors profile.\": \"您正在預覽您的 GitHub 贊助者個人資料。\",\n        \"Edit your profile.\": \"編輯您的個人資料。\",\n        // 組織\n        // [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在預覽 $1 組織的 GitHub 贊助者個人資料。\"],\n        // [/Edit ([^ ]+)’s profile./, \"編輯 $1 組織的個人資料。\"],\n            // 標題\n            \"Become a sponsor to\": \"成為贊助者\",\n\n            \"Current sponsors\": \"當前贊助者\",\n            \"Past sponsors\": \"過去贊助者\",\n\n            \"Private Sponsor\": \"私密贊助者\",\n\n            \"Meet the team\": \"查看團隊\",\n            \"Featured work\": \"精選\",\n\n            \"Learn more about sponsoring developers and organizations\": \"瞭解更多關於贊助開發者和組織的信息\",\n            \"Report abuse\": \"舉報濫用\",\n\n            // 右側欄\n            \"towards\": \"達成\",\n            \"goal\": \"目標\",\n            \"Sponsor as\": \"贊助身份為\",\n\n            \"Hover over your avatar to review the badge you'll get that shows\": \"當鼠標懸停在您的頭像時，將顯示\",\n            \"you're a sponsor.\": \"的贊助者徽章。\",\n\n            \"Select a tier\": \"選擇\",\n            \"Monthly\": \"每月\",\n                \"a month\": \"/月\",\n                \"Select\": \"選擇\",\n                \"Choose a custom amount.\": \"填入自定義金額。\",\n            \"One-time\": \"一次性\",\n                \"one time\": \"/次\",\n                \"A Public Sponsor achievement will be added to your profile.\": \"一個 “公開贊助者” 成就將添加到您的個人資料中。\",\n\n        // 贊助者登錄頁 https://github.com/sponsors/<user-name>/signup\n            // 標題\n                \"GitHub Sponsors · Get sponsored\": \"GitHub 贊助者 · 獲得贊助\",\n                \"Get Sponsored\": \"獲得贊助\",\n                \"Launch a\": \"啟動一個\",\n                \"GitHub Sponsors profile\": \"GitHub 贊助者資料\",\n                \"and start receiving funding.\": \"並開始獲得資金。\",\n            // 聯繫電子郵箱\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly. You can manage verified email addresses in your\": \"選擇一個經過驗證的電子郵件地址，以便我們就您的 GitHub 贊助者資料與您聯繫。該地址不會公開共享。您可以在您的\",\n            // 收款方式\n                \"Bank account\": \"銀行賬戶\",\n                    \"Use a bank account to receive your sponsorships. Note: If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"使用銀行賬戶接收您的贊助。注意：如果您使用個人銀行賬戶，您所在的國家/地區可能會將您的 GitHub 贊助者 付款作為個人收入徵稅。\",\n                    \"Country or region where your bank account is located\": \"請選擇您的銀行賬戶所在的國家或地區\",\n                \"Fiscal Host\": \"財政主辦方\",\n                    \"Choose a fiscal host\": \"請選擇一個財政主辦方\",\n                    \"Members of supported fiscal hosts can use their fiscal host to join GitHub Sponsors instead of using a bank account.\": \"受支持財務主辦方的成員可使用其財務主機加入 GitHub 贊助者，而無需使用銀行賬戶。\",\n            \"Submit\": \"提交\",\n            \"Your information has been saved.\": \"您的信息已保存。\",\n\n        // 加入等候名單界面 https://github.com/sponsors/<user-name>/waitlist\n            \"GitHub Sponsors is now out of beta for 103 regions!\": \"GitHub 贊助者現已在 103 個地區推出測試版！\",\n                \"If you have a bank account in\": \"如果您的銀行賬戶所在\",\n                \"a country or region where GitHub Sponsors is generally available\": \"國家或地區普遍支持 GitHub 贊助者\",\n                \", you will get an email from us when your application has been reviewed.\": \"，您將在申請通過審核後收到我們的電子郵件。\",\n                \"If you don't have an eligible bank account, don't worry! We're working hard to get more countries out of beta soon. Join the waitlist to be the first to know.\": \"如果您沒有符合條件的銀行賬戶，也不用擔心！我們正在努力讓更多的國家或地區通過測試。加入等候名單，第一時間獲知消息。\",\n            \"Contact email\": \"聯繫電子郵箱\",\n                \"Select a verified email address for us to contact you about your GitHub Sponsors profile. This will not be shared publicly.\": \"請選擇一個經過驗證的電子郵箱地址，以便我們就您的 GitHub 贊助者個人資料與您聯繫。該郵箱地址不會公開。\",\n                \"You can manage verified email addresses in your\": \"您可以管理已驗證的電子郵箱地址在您的\",\n                \"email settings\": \"電子郵箱設置\",\n            \"Country or region of residence\": \"居住的國家或地區\",\n                \"Select a country or region\": \"選擇一個國家或地區\",\n                \"The country or region where you reside. This is required for tax purposes.\": \"您居住的國家或地區。這是出於稅務目的所必需的。\",\n            \"Bank account country or region\": \"銀行賬戶所在的國家或地區\",\n            \"How you receive payments\": \"收款方式\",\n                \"Use a bank account\": \"使用銀行賬戶\",\n                    \"You can use your bank account to join GitHub Sponsors.\": \"您可以使用您的銀行賬戶加入 GitHub 贊助者。\",\n                    \"Note that you are responsible for all applicable taxes on payouts you receive. If you use a personal bank account, your country may tax your GitHub Sponsors payouts as personal income.\": \"請注意，您需承擔您收到的付款的所有適用稅款。如果您使用個人銀行賬戶，您所在國家或地區可能會將您的 GitHub 贊助者收款作為個人收入徵稅。\",\n                    \"Learn more about setting up a Stripe account\": \"瞭解更多關於設置 Stripe 賬戶的信息\",\n\n                    \"Country or region where your bank account is located:\": \"您的銀行賬戶所在的國家或地區：\",\n                        \"Your region is\": \"您所在的地區\",\n                        \"not supported\": \"不受支持\",\n                        \"or may be in\": \"或者可能處於\",\n                        \"beta\": \"測試階段\",\n                    \"Use another bank account where GitHub Sponsors is available or complete signup to receive a notification if your region becomes available.\": \"使用另一個 GitHub 贊助者可用的銀行賬戶，或者在您所在的地區可用時完成註冊以收到通知。\",\n                \"Use a fiscal host\": \"使用財務託管\",\n                    \"You can use a fiscal host to join GitHub Sponsors instead of using your own bank account.\": \"您可以使用財務託管機構代替自己的銀行賬戶來加入 GitHub 贊助者。\",\n                    \"Choose a fiscal host:\": \"選擇一個財務託管機構：\",\n                    \"Select a fiscal host\": \"選擇一個財務託管機構\",\n\n                    \"Fiscal host project profile URL:\": \"財務託管機構專案資料鏈接：\",\n                        \"Please include a link to your profile on your fiscal host's site, if available.\": \"如果有的話，請提供您在的財務託管機構上的個人資料鏈接。\",\n                    \"e.g.,\": \"例如，\",\n            \"Join waitlist\": \"加入等候名單\",\n\n        // 探索 GitHub 贊助者界面 https://github.com/sponsors/explore\n            \"Explore\": \"探索\",\n            \"Topics\": \"主題\",\n            \"Trending\": \"熱門\",\n            \"Collections\": \"集合\",\n            \"Events\": \"活動\",\n            \"GitHub Sponsors\": \"GitHub 贊助者\",\n            \"Get email updates\": \"獲取電子郵件更新\",\n            \"Change email updates\": \"更改電子郵件更新\", // 已設置郵件更新通知\n\n            \"Explore GitHub Sponsors\": \"探索 GitHub 贊助者\",\n                \"Fund the work of developers and projects you depend on.\": \"為您所依賴的開發者和專案提供資金。\",\n\n            // 左側欄\n                \"Explore as\": \"使用以下身份進行探索\",\n                \"Ecosystems\": \"生態系統\",\n                    \"All ecosystems\": \"所有生態系統\",\n                \"Filters\": \"過濾器\",\n                    \"Direct dependencies only\": \"僅直接依賴項\",\n\n            \"None of your dependencies can be sponsored\": \"您的任何依賴項都尚未開放贊助\",\n                // [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依賴於任何可以贊助其維護人員的倉庫。\"],\n            \"You don't directly depend on any repositories whose maintainers can be sponsored.\": \"您不直接依賴任何可贊助維護者的倉庫。\",\n            \"developers who maintain your dependencies\": \"位開發人員維護您的依賴項\",\n            \"Download your\": \"下載\",\n            \"results as CSV\": \"結果（CSV格式）\",\n\n            \"Order by\": \"排序依據\",\n                \"Most used\": \"較常使用\",\n                \"Least used\": \"較少使用\",\n                \"Most sponsors\": \"較多贊助者\",\n                \"Fewest sponsors\": \"較少贊助者\",\n                \"Newest Sponsors profile\": \"最新贊助者資料\",\n                \"Oldest Sponsors profile\": \"最早贊助者資料\",\n\n            \"Apply\": \"應用\",\n\n            \"You depend on\": \"您依賴於\",\n            // [/(\\d+) repositor(y|ies) they own or maintain/, \"他們擁有或維護 $1 個倉庫\"],\n            // [/others? sponsor, including (\\d+) organizations?/, \"位其他贊助者，包括 $1 個組織\"],\n            \"sponsors\": \"贊助者\",\n            \"others sponsor\": \"位其他贊助者\",\n            // [/(\\d+)% towards goal/, \"實現目標的 $1%\"],\n\n            \"Explore people and projects\": \"探索人員和專案\",\n            \"Bulk Sponsor\": \"批量贊助\",\n                \"Sponsor multiple maintainers in one easy transaction.\": \"在一筆簡單的交易中贊助多位維護人員。\",\n                \"Get started\": \"開始\",\n            \"Don't see what you're looking for? Try\": \"沒有看到您在找的東西？嘗試\",\n            \"searching for people you can sponsor\": \"尋找可以接受您贊助的人\",\n            \"and filtering by language!\": \"並通過語言篩選！\",\n            \"Clear filter\": \"清除篩選器\",\n            \"Sponsor\": \"贊助\",\n\n            // 倉庫列表\n            \"Repository list\": \"倉庫列表\",\n                \"You\": \"您\",\n                \"owns or maintains.\": \"擁有或維護\",\n                \"We check their maintainer status by seeing if they're listed in a repository's\": \"我們會確認他們是否被列在一個倉庫中來檢查他們的維護者狀態，查看：\",\n                \"funding file\": \"資助文件\",\n                \"Load more...\": \"加載更多…\",\n\n            // [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 贊助嗎？\"],\n            \"Talk to your organization about GitHub Sponsors\": \"與您的組織討論 GitHub 贊助者事宜\",\n            \"Share this discovery page with your team to start a conversation about investing in the people and projects you rely on.\": \"與您的團隊分享本發現頁面，並就投資於您所依賴的人員和專案展開討論。\",\n            \"Invest in open source software and we'll track your progress here!\": \"投資開源軟體，我們將在這裡跟蹤您的進度！\",\n\n        // 批量贊助頁 https://github.com/sponsors/bulk-sponsorships/frequencies\n            \"Bulk sponsor\": \"批量贊助\",\n            \"Bulk sponsorship\": \"批量贊助\",\n\n            \"Choose a frequency\": \"選擇一個頻率\",\n                \"Choose\": \"選擇\",\n                // 一次性\n                    \"Sponsored maintainers will receive a one-time payment. Your profile picture will appear in their sponsors for one month.\": \"贊助的維護者將收到一筆一次性付款。您的個人資料照片將在他們的贊助商中顯示一個月。\",\n                // 每月\n                    \"Sponsored maintainers will receive a recurring sponsorship until you cancel. Your profile picture will appear in their sponsors for the duration of your sponsorship.\": \"贊助的維護者將獲得定期贊助，直到您取消為止。在您的贊助期間，您的個人資料照片將顯示在他們的贊助商中。\",\n        // 批量贊助頁 https://github.com/sponsors/bulk-sponsorships/import/new\n            \"Import\": \"導入\",\n\n            \"One-time bulk sponsorship\": \"一次性批量贊助\",\n            \"Monthly bulk sponsorship\": \"每月批量贊助\",\n\n            \"Import a CSV\": \"從 CSV 導入\",\n                \"Choose file\": \"選擇文件\",\n                \"Download example CSV\": \"下載示例 CSV\",\n\n                \"Or export a list of your dependencies on\": \"或者導出您的依賴項列表\",\n                    \"Explore Sponsors\": \"探索贊助者\",\n\n                \"A CSV is a type of file that contains the names of the people you want to sponsor and the sponsorship amount. We'll look for columns labeled Maintainer Username and Amount in USD. We'll safely ignore the rest of your columns. You can modify the file using a tool like Microsoft Excel, Google Sheets, or a text editor.\": \"CSV 是一種文件類型，其中包含您想要贊助的人員的姓名和贊助金額。我們將查找標有維護者用戶名和美元金額的列。我們將安全地忽略您的其餘專欄。您可以使用 Microsoft Excel、Google Sheets 或文本編輯器等工具修改該文件。\",\n    },\n    \"regexp\": [ // 正則匹配\n        [/You are previewing ([^ ]+)’s GitHub Sponsors profile./, \"您正在預覽 $1 組織的 GitHub 贊助者個人資料。\"], // sponsors/<org-name>?preview=true\n        [/Edit ([^ ]+)’s profile./, \"編輯 $1 組織的個人資料。\"], // sponsors/<org-name>?preview=true\n        [/([^ ]+) does not directly depend on any repositories whose maintainers can be sponsored./, \"$1 不直接依賴於任何可以贊助其維護人員的倉庫。\"],\n        [/(\\d+) repositor(y|ies) they own or maintain/, \"他們擁有或維護 $1 個倉庫\"],\n        [/others? sponsor, including (\\d+) organizations?/, \"位其他贊助者，包括 $1 個組織\"],\n        [/(\\d+)% towards goal/, \"實現目標的 $1%\"],\n        [/Want to sponsor on behalf of ([^ ]+)?/, \"想代表 $1 贊助嗎？\"],\n        [/depend on (\\d+) repositor(y|ies)/, \"依賴於他的 $1 個倉庫：\"],\n        [/(\\d+) repositor(y|ies)/, \"$1 個倉庫\"],\n        [/(\\d+) members/, \"$1 位成員\"],\n        [/(\\$\\d+) a month/, \"$1/月\"],\n        [/(\\$[\\d,]+) per month/, \"$1 每月\"],\n        [/Amount must be at least (\\$\\d+)/, \"至少填入 $1\"],\n        [/Amount exceeds maximum tier amount of (\\$[\\d,]+)/, \"至多填入 $1\"],\n        [/You'll receive any rewards listed in the (\\$\\d+) monthly tier. Additionally, a Public Sponsor achievement will be added to your profile./, \"您將獲得 $1 月度獎勵中列出的所有獎勵。此外，您的個人檔案中還將添加公共贊助商成就。\"],\n        [/and (\\d+) others sponsor this goal/, \"和另外 $1 人贊助此目標\"],\n        [/(\\d+) of your repositories depends? on this/, \"您有 $1 個倉庫依賴此\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Explore GitHub Sponsors\": \"探索 GitHub 贊助者\",\n            \"GitHub Sponsors accounts\": \"GitHub 贊助者賬戶\",\n            \"GitHub Sponsors · Get sponsored\": \"GitHub 贊助者 · 獲得贊助\",\n            \"Choose frequency to bulk sponsor\": \"選擇批量贊助的頻率\",\n            \"Create sponsorships in bulk via file import\": \"通過文件導入批量創建贊助\",\n        },\n        \"regexp\": [\n            [/Sponsor @(.+) on GitHub Sponsors/, \"GitHub 贊助上贊助者 @$1\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"showcases\"] = { // 展示頁面\n    \"static\": { // 靜態翻譯\n        \"Open source showcases\": \"開源展示\",\n        \"Browse popular repositories based on the topic that interests you most.\": \"瀏覽熱門倉庫基於您最感興趣的主題。\",\n        \"Search showcases\": \"搜索展示\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"account/organizations/new\"] = { // 創建組織\n    \"static\": { // 靜態翻譯\n        // 創建免費的組織 https://github.com/account/organizations/new?coupon=&plan=team_free\n        // https://github.com/account/organizations/new?coupon=&plan=free\n        // 第 1 頁\n        \"Tell us about your organization\": \"告訴我們您的組織\",\n        \"Set up your organization\": \"設置您的組織\",\n        \"Verify your account\": \"驗證您的賬戶\",\n        \"Organization name\": \"組織名稱\",\n            // [/The name \\'(\\d+)\\' is already taken./, \"名稱 '$1' 已被採用。\"],\n            // [/The name \\'(\\d+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名稱 '$1' 只能包含字母數字字符或單個連字符，並且不能以連字符開頭或結尾。\"],\n            // [/Organization name \\'([^ ]+)\\' is unavailable./, \"組織名稱 '$1' 不可用。\"], //\n            \"This will be the name of your account on GitHub.\": \"這將是您在 GitHub 上的賬戶名稱。\",\n            \"Your URL will be: https://github.com/\": \"您的網址將是：https://github.com/\",\n        \"Contact email\": \"聯繫電子郵箱\",\n            \"Email is invalid\": \"電子郵箱無效\",\n        \"This organization belongs to:\": \"該組織屬於：\",\n            \"My personal account\": \"我的個人賬戶\",\n                // [/I.e.,/, \"即：\"],\n            \"A business or institution\": \"企業或機構\",\n                \"For example: GitHub, Inc., Example Institute, American Red Cross\": \"比如說：GitHub, Inc., Example Institute, American Red Cross\",\n                \"Name of business or institution this organization belongs to\": \"該組織所屬的企業或機構的名稱\",\n                \"This business or institution — not\": \"該企業或機構 — 不是\",\n                \"(your personal account) — will control this organization.\": \"（您的個人賬戶）— 將控制此組織。\",\n        \"Add-ons\": \"附加組件\",\n            \"Get GitHub Copilot Business in this organization\": \"在組織中獲取 GitHub Copilot 商業版\",\n                \"Boost developer productivity for $19/user/month. Pay only for assigned seats after setup.\": \"以 $19 /用戶/月的價格提高開發人員的工作效率。僅需在設置後為分配的席位付費。\",\n                \"See Copilot Business docs.\": \"請參閱 GitHub Copilot 商業版文檔。\",\n        \"I hereby accept the\": \"我特此接受\",\n            // 個人賬戶\n            \"Terms of Service\": \"服務條款\",\n            \". For more information about GitHub's privacy practices, see the\": \"。關於 GitHub 隱私條款的更多信息，請參見\",\n            \"GitHub Privacy Statement\": \"GitHub 隱私聲明\",\n            // 企業或機構\n            \"GitHub Customer Agreement\": \"GitHub 客戶協議\",\n            \"on behalf of my organization and confirm that I have the authority to do so\": \"代表我的組織，並確認我有權力這樣做\",\n\n        // \". We'll occasionally send you account-related emails.\": \"。我們偶爾會向您發送與賬戶相關的電子郵件。\",\n\n        // https://github.com/organizations/<org-name>/invite\n        // 第 2 頁 邀請成員\n        \"Start collaborating\": \"開始合作\",\n        // [/Welcome to/, \"歡迎來到\"],\n        \"Add organization members\": \"添加組織成員\",\n        \"Organization members will be able to view repositories, organize into teams, review code, and tag other members using @mentions.\": \"組織成員將能夠使用 @提及來查看倉庫、組織成團隊、審查程式碼以及標記其他成員。\",\n        \"Learn more about permissions for organizations →\": \"瞭解更多關於組織權限的信息 →\",\n        \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n        \"Complete setup\": \"完成設置\",\n        \"Skip this step\": \"跳過\",\n\n        // https://github.com/orgs/<org-name>/invitations/bulk_create_for_new_org\n        // https://github.com/orgs/<org-name>/welcome_survey/new\n    },\n    \"regexp\": [ // 正則翻譯\n        [/The name \\'([^ ]+)\\' is already taken./, \"名稱 '$1' 已被採用。\"],\n        [/The name \\'([^ ]+)\\' may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen./, \"名稱 '$1' 只能包含字母數字字符或單個連字符，並且不能以連字符開頭或結尾。\"],\n        [/Organization name \\'([^ ]+)\\' is unavailable./, \"組織名稱 '$1' 不可用。\"],\n        [/I.e.,/, \"即：\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Set up your organization\": \"設置您的組織\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"account/choose\"] = { // 賬戶升級選擇\n    \"static\": { // 靜態翻譯\n        // https://github.com/account/choose?action=upgrade\n            \"Which do you want to upgrade?\": \"您想升級哪個？\",\n            \"Your personal account\": \"您的個人賬戶\",\n            \"Organization\": \"組織\",\n            \"Create a new organization\": \"創建新組織\",\n            \"Try GitHub Enterprise\": \"試用 GitHub 企業版\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"account/upgrade\"] = { // 賬戶\n    \"static\": {\n        // https://github.com/account/upgrade?plan=pro&source=account+compare+plans\n            \"Upgrade your account from GitHub Free to GitHub Pro\": \"從 GitHub 免費版升級到 GitHub 專業版\",\n            \"Back to billing settings\": \"返回賬單設置\",\n\n            \"Plan details\": \"計劃詳情\",\n                \"Pro\": \"Pro 專業版\",\n                \"Includes everything in\": \"包含所有\",\n                \"GitHub Free\": \"GitHub 免費版\",\n                \"plus:\": \"以及：\",\n                \"Required reviewers in private repos\": \"私有倉庫的必需審查者\",\n                \"Protected branches in private repos\": \"私有倉庫的受保護分支\",\n                \"Repository insights in private repos\": \"私有倉庫的倉庫洞察\",\n                \"Wikis in private repos\": \"私有倉庫的 Wiki\",\n                \"Pages in private repos\": \"私有倉庫的 GitHub Pages\",\n                \"Code owners in private repos\": \"私有倉庫的程式碼所有者\",\n                \"3,000 minutes for GitHub Actions\": \"3,000 分鐘的 GitHub Actions 使用時長\",\n                \"2GB of GitHub Packages storage\": \"2GB 的 GitHub Packages 存儲空間\",\n                \"180 core-hours of Codespaces compute\": \"180 核心小時的程式碼空間計算時長\",\n                \"20GB of Codespaces storage\": \"20GB 的程式碼空間存儲空間\",\n\n            \"Payment frequency\": \"支付頻率\",\n                \"Pay yearly\": \"按年支付\",\n                \"Pay monthly\": \"按月支付\",\n\n                \"Note: Switching from monthly to yearly billing will also impact your other active subscriptions. Any necessary adjustments will be reflected on your invoice.\": \"注意：從月度計費轉換為年度計費也會影響您的其他活躍訂閱。任何必要的調整將反映在您的賬單上。\",\n\n                \"/ year\": \"/年\",\n                \"/ month\": \"/月\",\n\n                \"Total amount\": \"總計\",\n                \"Due today\": \"今天到期\",\n                // [/Payment due/, \"付款截止日期為\"],\n                // 示例 Payment due Nov 19, 2025\n\n            ...I18N[\"zh-TW\"][\"payment-module\"][\"static\"], // 調用通用賬單及支付信息模塊\n\n            \"Upgrade to GitHub Pro\": \"更新到 GitHub Pro\",\n            \"By clicking “Upgrade to GitHub Pro”, you agree to our\": \"通過點擊 “更新到 GitHub Pro”，您同意我們的\",\n            \"Terms of Service\": \"服務條款\",\n            \"Corporate Terms of Service\": \"企業服務條款\",\n            \". We’ll occasionally send you account-related emails.\": \"。我們會偶爾發送與賬戶相關的電子郵件。\",\n\n    },\n    \"regexp\": [\n        [/Payment due/, \"付款截止日期為\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"marketplace\"] = { // GitHub 市場\n    \"static\": { // 靜態翻譯\n\n        // GitHub 市場主頁及相關type頁 https://github.com/marketplace\n\t\t\t\"Enhance your workflow with extensions\": \"增強您的工作流程\",\n\t\t\t\t\"Tools from the community and partners to simplify tasks and automate processes\": \"社區和合作夥伴提供的簡化任務和自動化流程的工具\",\n\t\t\t\t\"Search for apps, actions, and models\": \"搜索應用程式、操作和模型\",\n    \t\t\t\t\"Listing Type\": \"顯示類型\",\n    \t\t\t\t\t\"Has listing type\": \"包含顯示類型\",\n                    \"Input modality\": \"輸入模態\",\n                        \"No input modality\": \"無輸入模態\",\n                        \"Has input modality\": \"包含輸入模態\",\n                        \"audio\": \"音頻\",\n                        \"image\": \"圖片\",\n                        \"text\": \"文本\",\n                    \"Supported language\": \"支持的語言\",\n                        \"No supported language\": \"無支持的語言\",\n                        \"Has supported language\": \"包含支持的語言\",\n                    \"Output modality\": \"輸出模態\",\n                        \"No output modality\": \"無輸出模態\",\n                        \"Has output modality\": \"包含輸出模態\",\n                        \"embeddings\": \"嵌入\",\n                    \"Capability\": \"能力\",\n                        \"No capability\": \"無能力\",\n                        \"Has capability\": \"包含能力\",\n                    \"Publisher\": \"供應商\",\n                        \"No publisher\": \"無供應商\",\n                        \"Has publisher\": \"包含供應商\",\n                    // 類別\n                        \"No category\": \"無類別\",\n                        \"Has category\": \"包含類別\",\n                        \"agents\": \"智能體\",\n                        \"coding\": \"編碼\",\n                        \"conversation\": \"對話\",\n                        \"instruction\": \"指令\",\n                        \"large context\": \"長上下文\",\n                        \"low latency\": \"低延時\",\n                        \"multilingual\": \"多語言\",\n                        \"multimodal\": \"多模態\",\n                        \"multipurpose\": \"多用途\",\n                        \"rag\": \"RAG\",\n                        \"reasoning\": \"推理\",\n                        \"summarization\": \"文本摘要\",\n                        \"understanding\": \"理解\",\n                        \"vision\": \"視覺\",\n\t\t\t\t    \"Exclude\": \"排除\",\n                    \"Has\": \"包含\",\n                \"Copilot extensions\": \"Copilot 擴展\",\n\t\t\t\t\"Clear filter\": \"清除篩選\",\n\t\t\t\t// 過濾器問題\n\t\t\t\t\t\"Empty value for\": \"空值\",\n\t\t\t\t\t\"Invalid value\": \"無效值\",\n\t\t\t\t\t\"for\": \"對於\",\n\t\t\t\t\"Menu\": \"菜單\", // Android UA 下出現\n\n            \"Featured\": \"精選\",\n                \"Models for your every use case\": \"適用於各種方案的模型\",\n                \"Try, test, and deploy from a wide range of model types, sizes, and specializations.\": \"嘗試、測試和部署各種型號、尺寸和專業化產品。\",\n\n                // 未登錄 或 https://github.com/marketplace?type=\n                \"Discover apps with Copilot extensions\": \"使用 Copilot 擴展程式探索應用\",\n                \"Your favorite tools now work with GitHub Copilot.\": \"您最喜歡的工具現在可與 GitHub Copilot 配合使用。\",\n\n                \"Recommended\": \"推薦\",\n                \"Recently added\": \"最近添加\",\n\t\t\t\t\"Most popular\": \"最熱門\",\n\n            // Copilot\n                \"Copilot Extensions\": \"Copilot 擴展\",\n                \"Extend Copilot capabilities using third party tools, services, and data\": \"使用第三方工具、服務或數據擴展 Copilot 的功能\",\n\n                \"Filter:\": \"篩選：\",\n                    \"All\": \"全部\",\n                    \"Free trial\": \"免費試用\",\n                \"By:\": \"分類：\",\n                    \"All creators\": \"所有創作者\",\n                    \"Verified creators\": \"已驗證創作者\",\n                \"Sort:\": \"排序：\",\n                    \"Popularity\": \"熱門\",\n                    \"Best match\": \"最佳匹配\",\n\n            \"Models\": \"模型\",\n                \"Model\": \"模型\",\n                \"Catalog\": \"目錄\",\n\n\t\t\t\t\t\"Create applications with GitHub powered by AI Models. Free to use, quick personal setup, and seamless model switching to help you build AI products using the latest models.\": \"使用由 AI 模型提供支持的 GitHub 創建應用程式。免費使用、快速個人設置和無縫模型切換，幫助您使用最新模型構建 AI 產品。\",\n\n\t\t\t\t\t\"Try models in playground\": \"在運行場上嘗試模型\",\n\n\t\t\t\t\t// 分類\n                        \"All providers\": \"所有提供商\",\n                    \"Publisher:\": \"發佈者：\",\n                    \"Capability:\": \"能力：\",\n                        \"Chat/completion\": \"聊天/完成\",\n                        \"Embeddings\": \"嵌入\",\n                    \"Tag:\": \"標籤\",\n                    \"Category:\": \"類型：\",\n                        \"Agents\": \"智能體\",\n                        \"Conversation\": \"對話\",\n                        \"Large context\": \"大模型\",\n                        \"Low latency\": \"低延遲\",\n                        \"Multilingual\": \"多語言\",\n                        \"Multimodal\": \"多模態\",\n                        \"Multipurpose\": \"多功能\",\n                        \"Rag\": \"檢索增強生成\",\n                        \"Reasoning\": \"推理\",\n                        \"Understanding\": \"理解\",\n\t\t\t\t\t\t\"Audio\": \"音頻\",\n\t\t\t\t\t\t\"Coding\": \"編碼\",\n\t\t\t\t\t\t\"Instruction\": \"指令\",\n\t\t\t\t\t\t\"RAG\": \"檢索增強生成\",\n\t\t\t\t\t\t\"Vision\": \"視覺\",\n                    // 排序\n                        \"Alphabetical\": \"A-Z\",\n                        \"Output token limit\": \"輸出令牌限制\",\n                        \"Input token limit\": \"輸入令牌順序\",\n\n            \"All apps\": \"所有應用\",\n                \"Apps\": \"應用\",\n                \"Build on your workflow with apps that integrate with GitHub\": \"使用與 GitHub 集成的應用構建您的工作流程。\",\n                \"App\": \"應用\",\n\n            \"AI Assisted\": \"AI 助理\",\n                \"AI Assisted apps\": \"AI 助理應用\",\n                \"AI Assisted actions\": \"AI 助理操作\",\n                \"Tools that are superpowered with AI (artificial intelligence) to help you be a better developer.\": \"使用人工智能（AI）強化的工具，助您成為更優秀的開發者。\",\n\n            \"API management\": \"API 管理\",\n                \"API management apps\": \"API 管理應用\",\n                \"API management actions\": \"API 管理操作\",\n                \"Structure your API infrastructure to enable various internet gateways to interact with your service.\": \"構建應用接口基礎設施，使各種互聯網網關能夠與您的服務互動。\",\n\n            \"Backup Utilities\": \"備份工具\",\n                \"Backup Utilities apps\": \"備份工具應用\",\n                \"Backup Utilities actions\": \"備份工具操作\",\n                \"Utilities providing periodic backups of your GitHub data\": \"定期備份 GitHub 數據的實用工具\",\n\n            \"Chat\": \"聊天\",\n                \"Chat apps\": \"聊天應用\",\n                \"Chat actions\": \"聊天操作\",\n                \"Bring GitHub into your conversations.\": \"將 GitHub 納入您的對話中。\",\n\n            \"Code quality\": \"程式碼質量\",\n                \"Code quality apps\": \"程式碼質量應用\",\n                \"Code quality actions\": \"程式碼質量操作\",\n                \"Automate your code review with style, quality, security, and test‑coverage checks when you need them.\": \"在需要時，通過樣式、質量、安全性和測試覆蓋檢查自動進行程式碼審查。\",\n\n            \"Code review\": \"程式碼審查\",\n                \"Code review apps\": \"程式碼審查應用\",\n                \"Code review actions\": \"程式碼審查操作\",\n                \"Ensure your code meets quality standards and ship with confidence.\": \"確保您的程式碼符合質量標準，並能放心交付。\",\n\n            \"Code Scanning Ready\": \"程式碼掃描\",\n                \"Code Scanning Ready apps\": \"程式碼掃描應用\",\n                \"Code Scanning Ready actions\": \"程式碼掃描操作\",\n                \"Static analysis, dynamic analysis, container scanning, linting, and fuzzing tools that integrate with GitHub Code Scanning SARIF Upload\": \"與 GitHub 程式碼掃描 SARIF 上傳集成的靜態分析、動態分析、容器掃描、程式碼規範檢查（linting）和模糊測試（fuzzing）工具。\",\n\n            \"Code search\": \"程式碼搜索\",\n                \"Code search apps\": \"程式碼搜索應用\",\n                \"Code search actions\": \"程式碼搜索操作\",\n                \"Query, index, or hash the semantics of your source code.\": \"查詢、索引或哈希您的源程式碼語義。\",\n\n            \"Container CI\": \"容器持續集成\",\n                \"Container CI apps\": \"容器 CI 應用\",\n                \"Container CI actions\": \"容器 CI 操作\",\n                \"Continuous integration for container applications.\": \"容器應用的持續集成。\",\n\n            \"Continuous integration\": \"持續集成\",\n                \"Continuous integration apps\": \"持續集成應用\",\n                \"Continuous integration actions\": \"持續集成操作\",\n                \"Automatically build and test your code as you push it to GitHub, preventing bugs from being deployed to production.\": \"當您將程式碼推送到 GitHub 時，自動構建和測試您的程式碼，從而防止將錯誤部署到生產中。\",\n\n            \"Dependency management\": \"依賴管理\",\n                \"Dependency management apps\": \"依賴管理應用\",\n                \"Dependency management actions\": \"依賴管理操作\",\n                \"Secure and manage your third-party dependencies.\": \"保護和管理第三方依賴關係。\",\n\n            \"Deployment\": \"部署\",\n                \"Deployment apps\": \"部署應用\",\n                \"Deployment actions\": \"部署操作\",\n                \"Streamline your code deployment so you can focus on your product.\": \"簡化程式碼部署，讓您專注於產品。\",\n\n            \"Deployment Protection Rules\": \"部署保護規則\",\n                \"Deployment Protection Rules apps\": \"部署保護規則應用\",\n                \"Deployment Protection Rules actions\": \"部署保護規則操作\",\n                \"Enables custom protection rules to gate deployments with third-party services\": \"啟用自定義保護規則，以使用第三方服務進行部署\",\n\n            \"Desktop tools\": \"桌面工具\",\n                \"Desktop tools apps\": \"桌面工具應用\",\n                \"Developer tools that are run natively on your local machine.\": \"在本地計算機上本機運行的開發者工具。\",\n\n            \"Game CI\": \"遊戲 CI\",\n                \"Game CI apps\": \"遊戲 CI 應用\",\n                \"Game CI actions\": \"遊戲 CI 操作\",\n                \"Tools for building a CI pipeline for game development\": \"用於構建遊戲開發 CI 管道的工具\",\n\n            \"GitHub Sponsors\": \"GitHub 贊助\",\n                \"GitHub Sponsors actions\": \"GitHub 贊助操作\",\n                \"Tools to manage your\": \"管理您的\",\n                    \"community\": \"社區\",\n\n                \"IDEs\": \"集成開發環境\",\n                \"IDEs apps\": \"IDE 應用\",\n                \"IDEs actions\": \"IDE 操作\",\n                \"Find the right interface to build, debug, and deploy your source code.\": \"找到合適的界面來構建、調試和部署源程式碼。\",\n\n            \"Learning\": \"學習\",\n                \"Learning apps\": \"學習應用\",\n                \"Learning actions\": \"學習操作\",\n                \"Get the skills you need to level up.\": \"獲得升級所需的技能。\",\n\n            \"Localization\": \"本地化\",\n                \"Localization apps\": \"本地化應用\",\n                \"Localization actions\": \"本地化操作\",\n                \"Extend your software's reach. Localize and translate continuously from GitHub.\": \"擴展您的軟體的覆蓋範圍。從 GitHub 持續本地化和翻譯。\",\n\n            \"Mobile\": \"移動\",\n                \"Mobile apps\": \"移動應用\",\n                \"Mobile actions\": \"移動操作\",\n                \"Improve your workflow for the small screen.\": \"針對小屏幕改進工作流程。\",\n\n            \"Mobile CI\": \"移動 CI\",\n                \"Mobile CI apps\": \"移動 CI 應用\",\n                \"Mobile CI actions\": \"移動 CI 操作\",\n                \"Continuous integration for Mobile applications\": \"移動應用的持續集成\",\n\n            \"Monitoring\": \"監控\",\n                \"Monitoring apps\": \"監控應用\",\n                \"Monitoring actions\": \"監控操作\",\n                \"Monitor the impact of your code changes. Measure performance, track errors, and analyze your application.\": \"監控程式碼更改的影響。衡量性能、跟蹤錯誤並分析您的應用。\",\n\n            \"Open Source management\": \"開源管理\",\n                \"Open Source management apps\": \"開源管理應用\",\n                \"Open Source management actions\": \"開源管理操作\",\n                \"Running open source projects can be hard. Here are some tools to make that process a little more fun and a ton more manageable.\": \"運營開源專案可能會很困難。以下是一些工具，可以讓這個過程變得更有趣且更加易於管理。\",\n\n            \"Project management\": \"專案管理\",\n                \"Project management apps\": \"專案管理應用\",\n                \"Project management actions\": \"專案管理操作\",\n                \"Organize, manage, and track your project with tools that build on top of issues and pull requests.\": \"使用基於置頂議題和拉取請求的工具來組織、管理和跟蹤您的專案。\",\n\n            \"Publishing\": \"發佈\",\n                \"Publishing apps\": \"發佈應用\",\n                \"Publishing actions\": \"發佈操作\",\n                \"Get your site ready for production so you can get the word out.\": \"讓您的網站做好生產準備，以便您可以宣傳。\",\n\n            // \"Recently added\": \"最近添加\",\n                \"Recently added apps\": \"最近添加應用\",\n                \"Recently added actions\": \"最近添加操作\",\n                \"The latest tools that help you and your team build software better, together.\": \"最新的工具可幫助您和您的團隊更好地共同構建軟體。\",\n\n            \"Reporting\": \"報告\",\n                \"Reporting apps\": \"報告應用\",\n                \"Get insights into how your teams are developing software using GitHub.\": \"瞭解您的團隊如何使用 GitHub 開發軟體的深入見解。\",\n\n            // 安全\n                \"Security apps\": \"安全應用\",\n                \"Security actions\": \"安全操作\",\n                \"Find, fix, and prevent security vulnerabilities before they can be exploited.\": \"發現、修復和預防安全漏洞，防患於未然。\",\n\n            // 支持\n                \"Support apps\": \"支持應用\",\n                \"Support actions\": \"支持操作\",\n                \"Get your team and customers the help they need.\": \"為您的團隊和客戶提供所需的幫助。\",\n\n            \"Sustainability\": \"可持續\",\n                \"Sustainability actions\": \"可持續操作\",\n                \"Optimize your work to minimize impact on the environment.\": \"優化您的工作以儘量減少對環境的影響。\",\n\n            \"Testing\": \"測試\",\n                \"Testing apps\": \"測試應用\",\n                \"Testing actions\": \"測試操作\",\n                \"Eliminate bugs and ship with more confidence by adding these tools to your workflow.\": \"通過將這些工具添加到您的工作流程中，消除錯誤並更有信心地交付。\",\n\n            \"Time tracking\": \"時間跟蹤\",\n                \"Time tracking apps\": \"時間追蹤應用\",\n                \"Time tracking actions\": \"時間追蹤操作\",\n                \"Track your progress, and predict how long a task will take based on your coding activity.\": \"跟蹤您的進度，並根據您的編碼活動預測完成任務所需的時間。\",\n\n            \"Utilities\": \"實用工具\",\n                \"Utilities apps\": \"實用工具應用\",\n                \"Utilities actions\": \"實用工具操作\",\n                \"Auxiliary tools to enhance your experience on GitHub\": \"輔助工具，提升您的 GitHub 使用體驗\",\n\n            // 操作\n            \"All actions\": \"所有操作\",\n                \"Automate your workflow from idea to production\": \"實現從構思到生產的工作流程自動化\",\n                    \"Action\": \"操作\",\n\n            \"Create a new extension\": \"創建新擴展\",\n\n            // 搜索結果\n                \"No results\": \"無結果\",\n                \"Try searching by different keywords.\": \"嘗試使用不同的關鍵字進行搜索。\",\n\n        // 待處理訂單頁面 https://github.com/marketplace/orders/pending\n            // 老頁面 左側欄 不在兼容\n\n            \"Pending orders\": \"待處理訂單\",\n            \"Review and complete your orders\": \"查看並完成您的訂單\",\n                \"We noticed you started setting up some new plans but didn’t finish. You can complete your pending orders below or review any active subscriptions on the\": \"我們注意到您開始制定一些新計劃，但尚未完成。您可以完成下面的待處理訂單或查看任何有效的訂閱在\",\n                \"billing overview page\": \"賬單概覽頁面\",\n\n            \"Next: Confirm your installation location.\": \"下一步：確認您的安裝位置。\",\n            \"Next: Confirm your installation location and payment information.\": \"下一步：確認您的安裝位置和支付信息。\",\n\n            \"Remove from pending orders\": \"從待處理訂單中刪除\",\n            \"This will not affect your existing subscriptions.\": \"這不會影響您現有的訂閱。\",\n\n            // 頂部提醒\n                // [/plan has been deleted./, \"計劃已被刪除。\"],\n\n        // 待安裝頁面 https://github.com/marketplace/installations/pending\n            // 老頁面 左側欄 不在兼容\n\n            \"Pending installations\": \"待安裝\",\n            \"We noticed you’ve purchased some apps but didn't finish installing them. You can review and install them below.\": \"我們注意到您購買了一些應用，但尚未完成安裝。您可以在下面查看並安裝它們。\",\n            \"View or cancel any active subscriptions on the\": \"查看或取消任何有效的訂閱\",\n            \"Install\": \"安裝\",\n            \"Grant this app access to your GitHub account to complete installation.\": \"授予此應用訪問 GitHub 賬戶的權限，以完成安裝。\",\n\n        // 應用介紹頁面 https://github.com/marketplace/<app-name>\n        // 示例: https://github.com/marketplace/codacy 第一頁\n            \"by\": \"創建者：\",\n            \"install\": \"安裝\",\n            \"s\": \" \",\n\n            // 添加\n                \"Edit current plan\": \"編輯當前計劃\",\n                \"Configure account access\": \"配置賬戶訪問權限\",\n\n            // 左側信息欄\n                // 關於\n                    \"GitHub has verified that the publisher controls the domain and meets other requirements.\": \"GitHub 已經驗證了發佈者對該域名的控制權和滿足其他要求\",\n\n                \"Category\": \"類別\",\n                \"Supported languages\": \"支持的語言\",\n                \"Customers\": \"客戶\",\n                \"From the developer\": \"來自開發者\",\n                \"Support\": \"支持\",\n                \"Documentation\": \"文檔\",\n                \"Privacy Policy\": \"隱私條款\",\n                \"Terms of Service\": \"服務條款\",\n                \"Report abuse\": \"舉報濫用\",\n\n            // 右側正文\n\n            // 下半部分\n            \"Pricing and setup\": \"定價與設置\",\n\n            \"Open source\": \"開源\",\n            \"Free for open source projects\": \"對開源專案免費\",\n            \"Free for both open source and private projects\": \"對開源和私人專案免費\",\n            \"Unlimited private repositories\": \"無限制私有專案\",\n            \"Free Trial\": \"免費試用\",\n            \"Pay-as-you-go\": \"即用即付\",\n\n            \"User\": \"用戶\",\n            \"in this plan\": \"在計劃中\",\n            \"per\": \"每\",\n\n            // \"Search by name\": \"按名稱搜索\",\n            \"Install it for free\": \"免費安裝\",\n            \"Try free for 14 days\": \"免費試用 14 天\",\n\n            \"Buy with GitHub\": \"通過 GitHub 購買\",\n            // [/Set up with ([^ ]+)/, \"使用 $1 設置\"],\n            \"Next: Confirm your installation location\": \"下一步：確認您的安裝位置\",\n            \"and payment information\": \"和支付信息\",\n\n            \"is provided by a third-party and is governed by\": \"是由第三方提供的，並受\",\n            \"separate\": \"單獨的\",\n            \"terms of service\": \"服務條款\",\n            \"privacy policy\": \"隱私政策\",\n            \", and\": \"，和\",\n            \"support documentation\": \"支持文檔\",\n            \"support contact\": \"支持聯絡\",\n\n            // [/By clicking Set up with (.*), you agree to (.*)’s/, \"單擊 “使用 $1 設置”，即表示您同意 $1 的以下條款\"],\n            \"You previously agreed to the\": \"您之前已同意\",\n            \"Marketplace Terms of Service\": \"市場服務協議\",\n\n        // 應用的審查、編輯訂單 第二頁 https://github.com/marketplace/<app-name>/order/<order-id>?account=<account-name>\n        // 個人 應用示例: https://github.com/marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n            \"Edit your plan\": \"編輯您的計劃\",\n            \"Account:\": \"賬戶：\",\n            \"Order summary\": \"訂單摘要\",\n            \"Open Source\": \"開源\",\n            \"Free\": \"免費\",\n            \"(current plan)\": \"(當前計劃)\",\n            \"Plans\": \"計劃\",\n                \"/ month\": \"/ 月\",\n\n            \"To complete this installation, you must\": \"要完成此安裝，您必須\",\n            \"grant this app access\": \"授予此應用的權限\",\n            \"to your GitHub account.\": \"訪問您的 GitHub 賬戶。\",\n\n            \"Cancel this plan\": \"取消計劃\",\n\n            // 右側欄\n            \"Current plan\": \"當前計劃\",\n            \"New plan\": \"新計劃\",\n                \"Due today\": \"截止到今天\",\n                // [/Prorated for/, \"按比例計算\"],\n\n            ...I18N[\"zh-TW\"][\"payment-module\"][\"static\"], // 調用通用賬單及支付信息模塊\n\n        // 組織 應用示例: https://github.com/marketplace/gitlocalize/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW4zOTg=?account=maboloshi\n            \"Review your order\": \"審查您的訂單\",\n            \"For individuals, teams, and communities, public and private projects\": \"對於個人、團隊和社區，公共和私人專案\",\n            \"Total amount\": \"總金額\",\n\n            \"An organization owner or billing manager must link their personal billing information with this organization account. You can switch to a business account to use your business’ billing information by\": \"組織所有者或賬單管理者必須將其個人賬單信息與該組織賬戶關聯。您可以切換到企業賬戶，以使用企業的賬單信息通過\",\n            // \"By clicking \\\"Complete order and begin installation\\\", you agree to the\": \"通過單擊“完成訂單並開始安裝”，您同意\",\n            // \"Marketplace Terms of Service\": \"市場服務條款\",\n            \"signing\": \"簽署\",\n            \"the\": \" \",\n            \"GitHub Customer Agreement\": \"GitHub 客戶協議\",\n            // \"Complete order and begin installation\": \"完成訂單並開始安裝\",\n\n            \"Save and continue\": \"保存並繼續\",\n\n        // 操作介紹頁面 https://github.com/marketplace/actions/<action-name>\n        // 示例: https://github.com/marketplace/actions/merge-upstream\n            // 頂部提醒\n                \"Sorry, we couldn’t find that version of this Action. Here’s the latest version.\": \"對不起，我們找不到此 GitHub Action 的這個版本。 下面是最新的版本。\",\n                \"You're viewing an older version of this GitHub Action. Do you want to see the\": \"您正在查看此 GitHub Action 的舊版本。您想查看\",\n                \"latest version\": \"最新版本\",\n                \"instead?\": \"嗎？\",\n\n            // 右側欄\n                \"Latest version\": \"最新發行版\",\n                    \"Choose a version\": \"選擇發行版\",\n                // [/Use (v\\d+)/, \"使用 $1\"], // 右上角綠色按鈕\n\n                // 安裝窗口\n                    \"Installation\": \"安裝\",\n                    \"Copy and paste the following snippet into your\": \"將以下程式碼段複製並粘貼到您的\",\n                        \"file.\": \"文件。\",\n                    \"Learn more about this action in\": \"瞭解更多關於該操作的信息，請訪問\",\n\n                // 關於\n                    \"Latest\": \"最新\",\n                    \"By\": \"創建者：\",\n\n                // 已驗證\n                    \"GitHub has manually verified the creator of the action as an official partner organization. For more info see\": \"GitHub 已手動驗證該操作的創建者為官方合作伙伴組織。欲瞭解更多信息，請參閱\",\n                        \"About badges in GitHub Marketplace\": \"關於 GitHub 市場中的徽章\",\n\n                \"Contributors\": \"貢獻者\",\n                \"Start a discussion\": \"開始討論\",\n                \"Open an issue\": \"打開議題\",\n                \"View source code\": \"查看源程式碼\",\n                \"Security policy\": \"安全政策\",\n\n                \"is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"未經 GitHub 認證。它由第三方提供，並受單獨的服務條款、隱私政策和支持文檔的約束。\",\n\n        // GitHub 模型集合頁 https://github.com/marketplace/models\n            \"Select a Model\": \"選擇模型\",\n\n            \"Welcome to GitHub Models\": \"歡迎訪問 GiHub 模型\",\n                \"A catalog and playground of AI models to help you build AI features and products.\": \"一個AI模型目錄和運行場，幫助您構建AI特性和產品。\",\n\n            \"Model switching:\": \"模型切換：\",\n                \"A single API key for all models & billing.\": \"一個 API 密鑰適用於所有模型和計費。\",\n            \"Quick personal setup:\": \"快速個人設置：\",\n                \"GitHub PAT to install models in your projects.\": \"使用 GitHub 個人訪問令牌（PAT）在您的專案中安裝模型。\",\n            \"Free to start:\": \"免費開始：\",\n                \"No charges until you hit our rate limits.\": \"在達到速率制限之前不收費。\",\n\n            \"Select a model to get started, or\": \"選擇一個模型開始，或\",\n                \"explore the full model catalog\": \"瀏覽完整模型目錄\",\n\n        // GitHub 模型頁面 https://github.com/marketplace/models/<user-name>/<model-name>\n            \"You're already on the waitlist! We'll send you an email once your access is granted.\": \"GitHub 模型限量公開測試將有名額限制。如果您獲准訪問，您將收到一封電子郵件。\",\n            \"You're already on the waitlist! We'll send you an email once your access is granted\": \"GitHub 模型限量公開測試將有名額限制。如果您獲准訪問，您將收到一封電子郵件\",\n\n            // 頂部\n            \"Playground\": \"運行\",\n            \"Use this model\": \"使用此模型\",\n            \"Get started\": \"開始\",\n                \"Language:\": \"語言：\",\n                \"Chapters\": \"步驟\",\n            \"Get API key\": \"獲取 API 密鑰\",\n\n            \"Enter a message...\": \"鍵入信息…\",\n                \"Submit message\": \"發送\",\n\n            // 中間橫條\n            \"README\": \"自述文件\",\n            \"Evaluation\": \"評估\",\n            \"Transparency\": \"透明度\",\n            \"License\": \"許可證\",\n\n            // 右側\n            \"Context\": \"文本\",\n                \"input\": \"輸入\",\n                \"output\": \"輸出\",\n            \"Training date\": \"訓練日期\",\n            // 價格\n                \"View pricing\": \"查看價格\",\n            \"Free rate limit tier\": \"免費速率限制等級\",\n                \"Low\": \"低\",\n                \"High\": \"高\",\n                \"Custom\": \"自定義\",\n                \"Undisclosed\": \"未公佈\",\n            \"Provider support\": \"供應商支持\",\n            \"Tags\": \"標籤\",\n\n            // 獲取 API 密鑰窗口（從“使用此模型”進入\n\n                \"1. Create a personal access token\": \"1. 創建個人訪問令牌（PAT）\",\n                \"2. Install dependencies\": \"2. 安裝依賴\",\n                \"3. Run a basic code sample\": \"3. 運行基本程式碼示例\",\n                \"4. Explore more samples\": \"運行更多示例\",\n                \"5. Going beyond rate limits\": \"5. 超出速率限制\",\n                // REST\n                    \"2. Run a basic code sample\": \"3. 運行基本程式碼示例\",\n                    \"3. Explore more samples\": \"運行更多示例\",\n                    \"4. Going beyond rate limits\": \"5. 超出速率限制\",\n\n                \"Run with codespaces\": \"在程式碼空間運行\",\n                    \"Seriously, you'll be up and running in seconds. It will be great.\": \"請放心，您只需數秒即可完成配置並開始使用，效果超乎預期\",\n                    \"Run codespace\": \"運行程式碼空間\",\n\n        // GitHub 模型聊天頁面 https://github.com/marketplace/models/<user-name>/<model-name>/playground\n            // 頂部欄\n            \"Model:\": \"模型：\",\n                \"Close\": \"關閉\",\n                \"Switch model\": \"切換模型\",\n                \"View all models\": \"查看所有模型\",\n            \"Prompt editor\": \"提示詞編輯器\",\n            \"Preset:\": \"預設：\",\n                \"Default\": \"默認\",\n                \"Edit preset\": \"編輯預設\",\n                \"Delete preset\": \"刪除預設\",\n                     // 彈窗\n                         \"Are you sure you want to delete this preset?\": \"您確定要刪除嗎？\",\n                \"Create new preset\": \"新建預設\",\n                    \"Presets save your current parameters, chat history, and state.\": \"預設可保存當前參數、聊天記錄和狀態。\",\n                    \"Name\": \"名稱\",\n                        \"Name is required\": \"需要名稱\",\n                    \"Description\": \"簡述\",\n                    \"Save chat history\": \"保存聊天曆史\",\n                        \"Chat history in this preset will be saved and visible to others when shared.\": \" 此預設中的聊天記錄將被保存，並在共享時對其他人可見。\",\n                        \"Note: Image attachments are not saved with the preset.\": \"注意：預設不保存圖像附件。\",\n                    \"Enable sharing\": \"啟用分享\",\n                        \"Anyone with the URL will be able to view and use this preset, but not edit. Presets are private by default.\": \"任何擁有該 URL 的人都可以查看和使用該預設，但不能進行編輯。預設默認為私有。\",\n                    \"Create preset\": \"新建\",\n            \"Raw\": \"源碼\",\n            \"Input:\": \"輸入：\",\n            \"• Output:\": \"• 輸出：\",\n            \"ms\": \"毫秒\",\n\n            \"Welcome to GitHub Models!\": \"歡迎使用 GitHub 模型！\",\n                \"We want to make Models Playground amazing for you. Got feedback? Book a call or\": \"我們致力於讓模型遊樂場為您帶來卓越體驗。如有反饋，請預約通話或\",\n            // 聊天窗口\n                // 頂部橫條\n                    \"Restore last session\": \"恢復上次聊天\",\n                    \"Compare\": \"比較\",\n                        \"Select model\": \"選擇模型\",\n                    \"Reset chat history\": \"刪除聊天\",\n                // 中間\n                \"Responding...\": \"響應中…\",\n                \"An error occurred. Please try again.\": \"發生錯誤，請重試。\",\n\n                    \"Positive\": \"點贊\",\n                    \"Negative\": \"點踩\",\n                    \"Regenerate\": \"重新生成\",\n                    \"Edit prompt\": \"編輯提示詞\",\n\n                \"Attach an image\": \"附加圖像\",\n                    \"Remove\": \"移除\",\n                \"Type your prompt…\": \"鍵入提示詞…\",\n                    \"Send now\": \"發送\",\n\n            // 參數設置\n                \"Parameters\": \"參數\",\n                \"Reset to default inputs\": \"重置\",\n                \"Hide parameters setting\": \"隱藏參數設置\",\n                \"Show parameters setting\": \"顯示參數設置\",\n                \"System prompt\": \"系統提示詞\",\n                    //\"Set the context for the model response.\": \"設置模型響應的環境。\",\n                    \"You are a helpful assistant...\": \"您是一個得力的助手…\", // 默認提示詞\n                \"Improve prompt\": \"增強提示詞\",\n                    \"Adjust your prompt with specific suggestions or simply click to enhance your prompt.\": \"根據具體建議調整，或者簡單地點擊以增強您的提示詞。\",\n                    \"Current prompt\": \"原提示詞\",\n                    \"What would you like to improve? (optional)\": \"您想增強什麼內容？（可選）\",\n                        \"Eg: explain X for a beginner and write responses in nested bullets.\": \"例如：為初學者解釋 X ，並用嵌套專案符號編寫回應。\",\n                \"Response format\": \"響應格式\",\n                    \"Text\": \"文本\",\n                    \"Set the format for the model response.\": \"設置模型響應的格式。\",\n                \"Max Tokens\": \"最大令牌\",\n                \"Max Completion Tokens\": \"最大輸出標記\",\n                    \"Limit the maximum output tokens for the model response.\": \"限制模型響應的最大輸出標記。\",\n                \"Reasoning Effort\": \"推理強度調節\",\n                    \"Adjust the model's cognitive load with options for low, medium, and high reasoning levels.\": \"通過低、中、高三級可選項調整模型的計算資源分配，控制輸出結果的邏輯複雜度和思考深度。\",\n                    \"high\": \"高\",\n                    \"medium\": \"中\",\n                    \"low\": \"低\",\n                \"Temperature\": \"隨機度\",\n                    \"Controls randomness in the response, use lower to be more deterministic.\": \"控制響應的隨機性，使用較低值則更具確定性。\",\n                \"Top P\": \"最大概率\",\n                    \"Controls text diversity by selecting the most probable words until a set probability is reached.\": \"通過選擇最有可能出現的詞語來控制文本多樣性，直到達到設定的概率。\",\n                \"Presence Penalty\": \"重複懲罰\",\n                    \"Discourages the model from repeating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their presence in the text.\": \"通過根據文本中已存在的詞語或短語施加懲罰（範圍在-2.0到2.0之間），抑制模型過於頻繁地重複使用相同詞語或短語的傾向。\",\n                \"Frequency Penalty\": \"頻率懲罰\",\n                    \"Discourages the model from generating the same words or phrases too frequently by applying a penalty (between -2.0 and 2.0) based on their existing frequency in the text.\": \"通過根據文本中已存在詞語或短語的出現頻率施加懲罰（範圍在-2.0到2.0之間），抑制模型過於頻繁地生成相同詞語或短語的傾向。\",\n                \"Stop\": \"停止\",\n                    \"Force cutting the output when this string occurs.\": \" 當出現該字符串時，強制切斷輸出。\",\n            // 模型比較\n                \"Close model\": \"關閉\",\n                \"Show model info\": \"顯示模型信息\",\n                // 參數設置窗口\n                \"Sync chat input and parameters\": \"同步聊天輸入和參數\",\n            // 詳細信息\n                \"Model details page\": \"詳細信息\",\n\n                \"Got feedback?\": \"提交反饋？\",\n                    \"share feedback via discussion\": \"前往討論\",\n\n            // 底部\n                \"Azure hosted. AI powered, can make mistakes.\": \" Azure 託管。人工智能驅動，可能犯錯。\",\n                \"Share feedback\": \"分享反饋\",\n                \". Subject to\": \"。受\",\n                \"Product Terms\": \"產品條款\",\n                \". Not intended for production/sensitive data.\": \"約束。不適用於生產/敏感數據。\",\n\n        // 提示詞編輯器 https://github.com/marketplace/models/<user-name>/<model-name>/prompt\n\n            // 左側\n                \"Edit variables\": \"編輯變量\",\n                    \"System\": \"系統\",\n                        \"Define the model's behavior or role. Example: 'You are a spaceship captain telling intergalactic tales.'\": \"定義模型的行為模式或角色設定。例如：\\\"您是一位正在講述星際傳奇故事的宇宙飛船艦長\\\"\",\n                    // 用戶\n                        \"Enter the task or question for the model. Example: 'Write me a song about GitHub.' Use {{variable}} for placeholders.\": \"輸入模型需處理的任務或問題。示例：\\\"創作一首關於 GitHub 的歌曲\\\"。使用 {{variable}} 作為佔位符\",\n\n            // 中間\n                \"Run\": \"運行\",\n\n                \"We want to make this new experience amazing for you! Got feedback? Book a call or\": \"我們致力於為您打造非凡的全新體驗！有任何反饋？立即預約通話或\",\n                    \"share your thoughts\": \"分享您的想法\",\n                    \"Book a call\": \"預約通話\",\n\n                \"Iterate on your prompt\": \"持續優化提示詞\",\n                    \"Use the prompt editor to run a single prompt repeatedly, refining it and adjusting\": \"通過提示詞編輯器反覆執行單個提示詞，持續優化內容並動態調整\",\n                    \"to achieve the perfect response.\": \"，最終生成理想響應結果\",\n\n        // 加入模型內測頁 https://github.com/marketplace/models/waitlist/join\n            \"GitHub Models waitlist\": \"GitHub 模型等待名單\",\n\n            // 左側\n                \"Limited Public Beta\": \"有限公開測試\",\n                \"Join the GitHub Models waitlist\": \"加入 GitHub 模型等待名單\",\n                    \"Join the limited public beta for early access to GitHub Models.\": \"加入有限公開測試，提前訪問 GitHub 模型。\",\n\n            // 問卷\n                \"What level of experience do you have in building GenAI solutions that use large language models (LLMs)?\": \"您在構建使用大型語言模型 (LLM) 的 GenAI 解決方案方面有哪些經驗？\",\n                    \"Exploration/proof-of-concept\": \"探索/概念驗證\",\n                    \"In development\": \"開發\",\n                    \"I have built 1 solution that is in production\": \"我已構建了 1 個解決方案，並已投入生產\",\n                    \"I have built 2 or more solutions that are in production\": \"我已構建了 2 個或更多解決方案，並已投入生產\",\n                \"What is your main business use case for GenAI applications? Please select all that apply.\": \"GenAI 應用程式的主要業務用例是什麼？請選擇所有適用情況。\",\n                    \"RAG-based chat applications (\\\"chat with my own data\\\")\": \"基於 RAG 的聊天應用程式（“與我自己的數據聊天”）\",\n                    \"Sentiment analysis\": \"情緒分析\",\n                    \"Summarization\": \"歸納總結\",\n                    \"Content generation\": \"內容生成\",\n                    \"Entity extraction\": \"實體提取\",\n                    \"Text classification\": \"文本分類\",\n                    \"Image classification\": \"圖片分類\",\n                    \"Translation\": \"翻譯\",\n                    \"Other (please specify):\": \"其他（請說明）：\",\n\n                \"Join GitHub Models waitlist\": \"加入 GitHub 模型等待名單\",\n\n                \"By signing up for the waitlist you agree to\": \"註冊等待名單即代表您同意\",\n                \"GitHub's preview terms\": \"GitHub 預覽條款\",\n                \". Signing up does not guarantee access.\": \"。註冊並不保證可以訪問。\",\n\n                // 成功，標題走正則\n                \"Admission to the limited public beta for GitHub Models will be limited. You will receive an email if you are granted access.\": \"GitHub 模型的限量公開測試有名額限制。如果您獲准訪問，您將收到一封電子郵件。\",\n                \"Return to continue exploring\": \"繼續探索\",\n                \"GitHub Models\": \"GitHub 模型\",\n\t\t// 新上市市場頁 https://github.com/marketplace/new\n\t\t\t\"List your tool\": \"上市你的工具\",\n\t\t\t\"List your tool on GitHub Marketplace\": \"在 GitHub 市場上市你的工具\",\n\n\t\t\t\"You have no tools to list on GitHub Marketplace\": \"您沒有可在 GitHub 市場上市的工具\",\n\t\t\t\t\"Learn more about the requirements\": \"瞭解有關要求的更多信息\",\n\t\t\t\t\"to list a tool on GitHub Marketplace.\": \"在 GitHub 市場上市工具。\",\n\n            \"More about tools and GitHub Marketplace\": \"有關工具和 GitHub 市場的更多信息\",\n                \"About GitHub Marketplace\": \"關於 GitHub 市場\",\n                    \"How to create and list tools on the GitHub Marketplace, including guidelines for listing content, artwork, and screenshots.\": \"如何在 GitHub 市場上創建和上市工具，包括列出內容、插圖和屏幕截圖的指南。\",\n                \"Adding webhooks for a GitHub Marketplace listing\": \"為 GitHub 市場上市添加 Webhook\",\n                    \"Add webhooks for your app to notify you when specified events are triggered.\": \"為您的應用程式添加 Webhooks，以便在觸發指定事件時通知您。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Search results for “(.+)”/, \"“$1”的搜索結果\"], // 市場搜索\n        [/(\\d+) results?/, \"$1 個結果\"], // 市場搜索\n        [/plan has been deleted./, \"計劃已被刪除。\"],\n\n        [/Use (v\\d+)/, \"使用 $1\"], // 操作介紹頁面 右上角綠色按鈕\n        [/Set up with (.*)/, \"使用 $1 設置\"], // 應用介紹頁面\n        [/By clicking Set up with (.*), you agree to (.*)’s/, \"單擊 “使用 $1 設置”，即表示您同意 $1 的以下條款\"], // 應用介紹頁面\n        // /marketplace/travis-ci/order/MDIyOk1hcmtldHBsYWNlTGlzdGluZ1BsYW43MA==?account=maboloshi\n        [/Prorated for/, \"按比例計算\"],\n\n        [/Thank you! ([^ ]+) is now on the waitlist for GitHub Models./, \"謝謝！$1 現已進入 GitHub 模型等待名單。\"],\n\n\t\t[/Filter contains (\\d+) issues?:/, \"過濾器包含 $1 個問題：\"]\n    ],\n    \"title\": {\n        \"static\": {\n            \"Marketplace\": \"市場\",\n            \"Marketplace · Tools to improve your workflow\": \"市場 · 改進工作流程的工具\",\n            \"GitHub Models\": \"GitHub 模型\",\n            \"Models · GitHub Marketplace\": \"模型 · GitHub 市場\",\n            \"New Marketplace Listing · GitHub Marketplace\": \"新建市場 · GitHub 市場\",\n        },\n        \"regexp\": [\n            [/Models/, \"模型\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"apps\"] = { // GitHub 應用\n    \"static\": { // 靜態翻譯\n\n        // GitHub 應用頁面 https://github.com/apps/<app-name>\n        // 示例: https://github.com/apps/codacy-production\n            \"GitHub App\": \"GitHub 應用\",\n\n            \"No description\": \"尚無描述\",\n\n            \"Read more about this app on the Marketplace\": \"瞭解更多關於市場中此應用的信息\",\n\n            // 未安裝\n                \"Install\": \"安裝\",\n                \"Next: Confirm your installation location.\": \"下一步：確認您的安裝位置。\",\n\n            // 已安裝\n                \"Configure\": \"設置\",\n                \"Manage your installation settings.\": \"管理安裝設置。\",\n\n            // 私有 App\n                \"Learn more about GitHub Apps\": \"瞭解更多關於 GitHub 應用的信息\",\n\n            \"Developer\": \"開發者\",\n                \"App settings\": \"應用設置\", // 已安裝\n                \"Website\": \"網站\",\n\n            \"is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.\": \"是由第三方提供的，並受單獨的服務條款、隱私政策和支持文檔的約束。\",\n\n            \"Report abuse\": \"舉報濫用\",\n\n        // GitHub 應用 安裝、授權頁面 https://github.com/apps/<app-name>/installations/new/permissions?target_id=<id>\n        // 示例 https://github.com/apps/codacy-production/installations/new/permissions?target_id=7850715\n            \"Install & Authorize\": \"安裝與授權\",\n            \"Authorize & Request\": \"授權與請求\", // 他人的組織\n            \"Request\": \"請求\",\n            // [/Install & Authorize on your personal account (.*)/, \"在您的個人賬戶 $1 上安裝與授權\"],\n            // [/Install on your personal account (.*)/, \"在您的個人賬戶 $1 上安裝\"],\n            // [/Install & Authorize on your organization (.*)/, \"在您的組織 $1 上安裝與授權\"], // 組織\n            // [/Install on your organization (.*)/, \"在您的組織 $1 上安裝\"], // 組織\n            // [/Request on your organization (.*)/, \"對於您的組織 $1 的請求\"], // 組織\n            // [/Authorize & Request on your organization (.*)/, \"對於您的組織 $1 的授權與請求\"], // 組織\n\n            \"for these repositories:\": \"對於這些倉庫：\",\n                \"All repositories\": \"所有倉庫\",\n                    \"This applies to all current\": \"這適用於資源所有者擁有的所有當前\",\n                    \"and\": \"和\",\n                    \"future repositories owned by the resource owner.\": \"未來的倉庫。\",\n                    \"Also includes public repositories (read-only).\": \"還包括公共倉庫（只讀）。\",\n                \"Only select repositories\": \"僅選定的倉庫\",\n                    \"Select at least one repository.\": \"至少選擇一個倉庫。\",\n                    \"Select repositories\": \"選擇倉庫\",\n                        \"Search for a repository\": \"搜索倉庫\",\n                        // [/Selected (\\d+) repositor(y|ies)./, \"已選擇 $1 倉庫。\"],\n                        \"request\": \"請求\",\n\n            \"with these permissions:\": \"授權以下權限：\",\n\n            // >>>>>具體的權限不打算漢化<<<<<<<\n            // >>>>>具體的權限不打算漢化<<<<<<<\n\n            \"User permissions\": \"用戶權限\",\n            // [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安裝 & 授權 $1 會立即在您的賬戶上授予以下權限：\"],\n            // [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"還可以請求用戶對以下資源的許可。這些權限將在個人用戶的基礎上請求和授權。\"],\n            \"These permissions will also be requested and authorized as needed on an individual-user basis.\": \"這些權限也將根據個人用戶的需要進行申請和授權。\", // 組織\n\n            \"Installing & Authorizing\": \"安裝與授權中\",\n            \"Installing\": \"安裝中\",\n            \"Requesting\": \"請求中\",\n\n            \"Next: you'll be redirected to\": \"下一步：您將被重定向到\",\n            \"Next: you’ll be directed to the GitHub App’s site to complete setup.\": \"下一步：您將被引導到GitHub 應用網站完成設置。\", // 組織\n\n        // 應用設置 - 選擇目標 https://github.com/apps/<app-name>/installations/select_target\n            // [/Install (.*)/, \"安裝 $1\"],\n            // [/Where do you want to install (.*)\\?/, \"您想把 $1 安裝在哪裡？\"],\n            // [/(.*) is installed. Click to configure./, \"$1 已安裝。點擊進行配置。\"],\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Install & Authorize on your personal account (.*)/, \"在您的個人賬戶 $1 上安裝與授權\"],\n        [/Install & Authorize on your organization (.*)/, \"在您的組織 $1 上安裝與授權\"], // 組織\n        [/Install on your personal account (.*)/, \"在您的個人賬戶 $1 上安裝\"],\n        [/Install on your organization (.*)/, \"在您的組織賬戶 $1 上安裝\"],\n        [/Selected (\\d+) repositor(y|ies)./, \"已選擇 $1 倉庫。\"],\n        [/Installing and authorizing (.*) immediately grants these permissions on your account:/, \"安裝與授權 $1 會立即在您的賬戶上授予以下權限：\"],\n        [/can also request users' permission to the following resources. These permissions will be requested and authorized on an individual-user basis./, \"還可以請求用戶對以下資源的許可。這些權限將在個人用戶的基礎上請求和授權。\"],\n        [/Authorize & Request on your organization (.*)/, \"對於您的組織 $1 的授權與請求\"], // 組織\n        [/Request on your organization (.*)/, \"對於您的組織 $1 的請求\"], // 組織\n        [/Install (.*)/, \"安裝 $1\"],\n        [/Where do you want to install (.*)\\?/, \"您想把 $1 安裝在哪裡？\"],\n        [/(.*) is installed. Click to configure./, \"$1 已安裝。點擊進行配置。\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs\"] = { // 組織頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n        //>>>>>>>>>>>>>>>>>> 組織主頁/概況頁 <<<<<<<<<<<<<<<<<<<<<\n            // [/doesn't have any pinned public repositories yet./, \"還沒有任何置頂的公共倉庫。\"],\n\n            \"followers\": \"關注者\",\n            \"Sponsor\": \"贊助\",\n\n            \"Send feedback\": \"發送反饋\",\n\n            \"Pinned\": \"已置頂\",\n            \"Popular repositories\": \"流行的倉庫\",\n\n            // 倉庫\n                // 搜索, 篩選 & 排序工具欄\n                \"Find a repository…\": \"搜索倉庫…\",\n                // \"Type\": \"類型\", // 與全局衝突 使用 Selector 規則翻譯\n                    // 下拉菜單\n                    \"Select type\": \"選擇類型\",\n                    \"All\": \"全部\",\n                    \"Public\": \"公共\",\n                    \"Private\": \"私有\",\n                    \"Sources\": \"源碼\",\n                    \"Forks\": \"複刻\",\n                    \"Archived\": \"存檔\",\n                    \"Can be sponsored\": \"可贊助\",\n                    \"Mirrors\": \"鏡像\",\n                    \"Templates\": \"模板\",\n                \"Language\": \"語言\",\n                    // 下拉菜單\n                    \"Select language\": \"選擇語言\",\n                    \"All languages\": \"所有語言\",\n                \"Sort\": \"排序\",\n                    // 下拉菜單\n                    \"Select order\": \"選擇排序\",\n                    \"Last updated\": \"最近更新\",\n                    \"Name\": \"倉庫名\",\n                    // \"Recently starred\": \"最近標星\",\n                    // \"Recently active\": \"最近活躍\",\n                    // \"Most stars\": \"最多星標\",\n                    // \"Unstar\": \"取消星標\",\n                \"New\": \"新建\",\n\n                // 篩選結果\n                \"result for\": \"個結果在\",\n                \"results for\": \"個結果在\",\n                    \"public\": \"公共\",\n                    \"private\": \"私有\",\n                    \"source\": \"源碼\",\n                    \"forked\": \"複刻\",\n                    \"archived\": \"存檔\",\n                    \"sponsorable\": \"可贊助\",\n                    \"mirror\": \"鏡像\",\n                    \"template\": \"模板\",\n                \"repositories matching\": \"倉庫中匹配了\",\n                // \"result for repositories matching\": \"個結果在倉庫中匹配了\",\n                // \"results for repositories matching\": \"個結果在倉庫中匹配了\",\n                // \"repositories sorted by\": \"倉庫，排序按\",\n                \"written in\": \"，使用語言\",\n                // \"results for repositories written in\": \"個結果在倉庫中使用語言\",\n                // \"star matching\": \"個星標匹配\", //?tab=stars\n                // \"stars matching\": \"個星標匹配\", //?tab=stars\n                // \"star written in\": \"個星標使用語言\", //?tab=stars\n                // \"stars written in\": \"個星標使用語言\", //?tab=stars\n                \"repositories sorted by\": \"倉庫，排序按\",\n                \"sorted by\": \"，排序按\",\n                    \"last updated\": \"最近更新\",\n                    \"name\": \"倉庫名\",\n                    \"stars\": \"星標\",\n                \"all\": \"所有\",\n                \"repositories written in\": \"倉庫中使用語言\",\n\n                \"Clear filter\": \"清除篩選\",\n\n                // [/([^ ]+) doesn’t have any repositories that match./, \"$1 沒有任何匹配的倉庫\"],\n                \"No repositories matched your search.\": \"沒有與您的搜索相匹配的倉庫。\",\n\n                // 專案 狀態詞\n                \"Updated\": \"更新於\",\n                \"Forked from\": \"複刻自\",\n\n\n            // 右側欄\n                \"View as:\": \"瀏覽：\",\n                    \"Switch profile context\": \"切換視角\",\n                    \"Member\": \"成員\",\n                        \"Member of\": \"隸屬於\", // 成員 - 浮動信息卡\n                        \"- same time\": \"- 時間相同\", // 成員 - 浮動信息卡\n\n                // 公共視角\n                    \"You are viewing the README and pinned repositories as a public user.\": \"您正在以公共用戶的身份查看自述文件和置頂倉庫。\",\n\n                // 組織成員視角\n                    // [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 組織成員的身份查看自述文件和置頂倉庫。\"],\n\n                \"You can\": \"您可以\",\n                \"pin repositories\": \"置頂倉庫\",\n                \"visible to anyone.\": \"讓任何人都能看到。\",\n                \"visible only to members of the organization.\": \"僅對組織成員可見。\",\n\n                \"Get started with tasks\": \"開始任務\",\n                \"that most successful organizations complete.\": \"大多數成功的組織都會完成。\",\n                \"hide the tasks we've suggested\": \"隱藏我們建議的任務\",\n                \"on this page and bring them back later.\": \"在此頁面上，以後再把它們帶回來。\",\n\n                \"Top discussions this past month\": \"上個月的熱門討論\",\n                    \"Nothing to see here yet!\": \"這裡還沒什麼可看的!\",\n                    \"Discussions are for sharing announcements, creating conversation in your community, answering questions, and more.\": \"討論是為了分享公告，在您的社區創建對話，回答問題，以及更多。\",\n                    \"Start a new discussion\": \"開始新的討論\",\n                    \"View all discussions\": \"查看全部討論\", // 組織討論\n\n                // \"People\": \"成員\",\n                    \"This organization has no public members. You must be a member to see who’s a part of this organization.\": \"該組織沒有公共成員。您必須是成員才能查看誰是該組織的成員。\",\n                    \"Invite someone\": \"邀請他人\",\n                        // 邀請對話框\n                        // [/Invite a member to/, \"邀請成員加入\"],\n                        \"Search by username, full name or email address\": \"搜索用戶名，全名或郵箱地址：\",\n                        \"Invite\": \"邀請\",\n                        \"Invite a billing manager\": \"邀請一位賬單管理員\",\n                        \"Authenticate your members with SAML single sign-on\": \"使用 SAML 單一登錄對您的成員進行身份驗證\",\n                        \"Try risk-free for 30 days\": \"無風險試用 30 天\",\n                        \"learn more about SAML\": \"瞭解更多關於 SAML 的信息\",\n                        \", or\": \"，或\",\n                        \"dismiss this message\": \"忽略此消息\",\n                    \"View all\": \"查看全部\",\n\n                \"Top languages\": \"熱門語言\",\n                    \"Loading…\": \"載入中…\",\n                \"Most used topics\": \"最常用的話題\",\n                \"Developer Program Member\": \"開發者計劃成員\",\n                \"Report abuse\": \"舉報濫用\",\n\n            \"Create new repository\": \"新建倉庫\",\n            \"Import\": \"導入\",\n\n            \"This organization has no repositories.\": \"該組織暫無倉庫。\",\n            \"View all repositories\": \"查看所有倉庫\",\n\n            // 設置置頂\n            \"Edit pinned repositories\": \"設置置頂專案\",\n            \"Select up to six public repositories you'd like to show to anyone.\": \"最多選擇 6 個您想向任何人展示的公共倉庫。\",\n            \"Select up to six public, internal, or private repositories you'd like to show only to members of the organization.\": \"最多選擇 6 個您想僅向組織成員展示的公共、內部或私有倉庫。\",\n            \"No repositories or gists found.\": \"沒有發現倉庫或 Gists。\",\n            // 頂部提醒\n            \"You’re not a member of any teams in this organization.\": \"您不是該組織中任何團隊的成員。\",\n            \"invited you to join the\": \"邀請您加入\",\n            \"organization\": \"組織\",\n            \"View invitation\": \"查看邀請\",\n\n            // 新組織 入門任務\n            \"We think you’re gonna like it here.\": \"我們認為您會喜歡這裡的。\",\n            \"We’ve suggested some tasks here in your organization's overview to help you get started.\": \"我們在這裡就您的組織概況提出了一些任務，以幫助您開始工作。\",\n            \"Invite your people\": \"邀請同伴\",\n                \"Invite your first member\": \"邀請首位成員\",\n                    \"Find people by their GitHub username or email address.\": \"通過 GitHub 用戶名或電子郵件地址找到他們。\",\n                \"Customize members' permissions\": \"自定義成員權限\",\n                    \"Set everyone’s base permissions for your code.\": \"為您的程式碼設置每個人的基本權限。\",\n            \"Collaborative coding\": \"協助編碼\",\n                \"See more about collaborative coding\": \"查看更多關於協作式編碼的信息\",\n                \"Create a pull request\": \"創建拉取請求\",\n                    \"Propose and collaborate on changes to a repository.\": \"就對倉庫的更改提出建議並進行協作。\",\n                \"Create a branch protection rule\": \"創建分支保護規則\",\n                    \"Enforce certain workflows for one or more branches.\": \"為一個或多個分支強制執行某些工作流程。\",\n            \"Automation and CI/CD\": \"自動化和 CI/CD\",\n                \"See more about automation and CI/CD\": \"查看更多關於自動化和 CI/CD 的信息\",\n                \"Auto-assign new issues\": \"自動分配新議題\",\n                    \"Try automatically assigning work with GitHub Actions.\": \"嘗試使用 GitHub Actions 自動分配工作。\",\n                \"Run a continuous integration test\": \"運行持續集成測試\",\n                    \"Validate your code using a CI workflow.\": \"使用 CI 工作流程驗證您的程式碼。\",\n            \"Discover new GitHub features\": \"發現 GitHub 的新功能\",\n                \"See all features\": \"查看所有功能\",\n                \"Client apps\": \"客戶端應用\",\n                \"Project management\": \"專案管理\",\n                \"Team administration\": \"團隊管理\",\n                \"Community\": \"社區\",\n\n            // 組織關注 指引框\n                \"You can now follow organizations\": \"您現在可以關注組織\",\n                \"Organization activity like new discussions, sponsorships, and repositories will appear in\": \"組織活動，如新的討論、贊助和倉庫將出現在\",\n                \"your dashboard feed\": \"您的儀表板的信息上\",\n                \"OK, got it!\": \"好的，知道了！\",\n\n            \"This organization has no public repositories.\": \"該組織沒有公共倉庫。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/doesn't have any pinned public repositories yet./, \"還沒有任何置頂的公共倉庫。\"],\n        [/You are viewing the README and pinned repositories as a member of the ([^ ]+) organization./, \"您正在以 $1 組織成員的身份查看自述文件和置頂倉庫。\"],\n        [/Invite a member to/, \"邀請成員加入\"],\n        [/\\((\\d+) issues? needs? help\\)/, \"($1 個議題需要幫助)\"],\n        [/([^ ]+)’s past year of commit activity/, \"近幾年 $1 的提交活動\"],\n        // 用戶 - 浮動信息卡\n        [/- (\\d+)h (ahead|behind)/, function(all, num, compare){\n            var compareKey = {ahead: '早', behind: '晚'};\n\n            return '- ' + compareKey[compare] + num + '小時';\n        }],\n        [/, and (\\d+) more/, \" 等 $1 個組織\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"selector\": [ // 元素篩選器規則\n        [\"#type-options > summary > span:nth-child(1)\", \"類型\"], // 組織主頁 --> 倉庫標籤頁-->類型篩選器 Type\n    ],\n    \"title\": {\n        \"static\": {\n            \"Choose a plan\": \"選擇一個計劃\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"orgs/repositories\"] = I18N[\"zh-TW\"][\"page-profile/repositories\"];\n\nI18N[\"zh-TW\"][\"orgs/projects\"] = I18N[\"zh-TW\"][\"page-profile/projects\"];\n\nI18N[\"zh-TW\"][\"orgs/packages\"] = I18N[\"zh-TW\"][\"page-profile/packages\"];\n\nI18N[\"zh-TW\"][\"orgs/people\"] = { // 組織 - 成員標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n\n        // 成員標籤頁 https://github.com/orgs/<orgs-name>/people\n            // 左側欄\n            \"Organization permissions\": \"組織權限\",\n            \"Members\": \"成員\",\n            \"Outside collaborators\": \"外部協作者\",\n            \"Pending collaborators\": \"待定協作者\",\n            \"Invitations\": \"邀請\",\n            \"Failed invitations\": \"失敗邀請\",\n            \"Security Managers\": \"安全管理員\",\n\n            \"Find a member…\": \"搜索成員…\",\n\n            \"Export\": \"導出\",\n            \"Invite member\": \"邀請成員\",\n\n            \"You are the only owner of this organization! We recommend a minimum of two people within each organization have the owner role.\": \"您是該組織的唯一所有者！我們建議每個組織內至少有兩人擔任所有者角色。\",\n            \"Dismiss\": \"忽略\",\n\n            \"Filter by two-factor authentication\": \"按雙因素身份驗證篩選\",\n            \"Everyone\": \"所有人\",\n            \"Enabled\": \"啟用\",\n            \"Disabled\": \"禁用\",\n            \"Required\": \"必須\",\n\n            \"Membership\": \"成員\",\n            \"Filter by membership\": \"按成員篩選\",\n            \"Owners\": \"所有者\",\n            \"Member\": \"成員\",\n\n            \"Organization visibility\": \"組織可見性\",\n            \"Your membership is visible to everyone and is displayed on your public profile.\": \"您的成員資格對所有人都是可見的，並顯示在您的個人資料上。\",\n            \"Your membership is only visible to other members of this organization.\": \"您的成員資格只對本組織的其他成員可見。\",\n\n            \"Owner\": \"所有者\",\n            \"Owners have full access to teams, settings, and repositories.\": \"所有者擁有對團隊、設置和倉庫的完全訪問權限。\",\n            // [/(\\d+) teams?/, \"$1 團隊\"],\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n            \"Member settings\": \"成員設置\",\n            \"Manage\": \"管理\",\n            \"Change role…\": \"切換角色…\",\n            \"Convert to outside collaborator…\": \"轉為外部協作者…\",\n            \"Remove from organization…\": \"從組織移除…\",\n\n            \"This organization has no public members.\": \"該組織沒有公開的成員。\",\n\n            // 邀請對話框\n                // [/Invite a member to/, \"邀請成員加入\"],\n                \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n                \"Invite\": \"邀請\",\n                \"Invite a billing manager\": \"邀請一位賬單管理員\",\n                \"Authenticate members with\": \"對成員進行身份驗證，使用\",\n                \"SAML single sign-on\": \"SAML 單點登錄\",\n                \"Try it in a 30-day trial of GitHub Enterprise.\": \"嘗試試用 30 天 GitHub 企業版\",\n                \"Start a free trial\": \"開始免費試用\",\n\n            // 轉換為外部協作者 對話框\n                // [/Convert ([^ ]+) to outside collaborator?/, \"將 $1 轉換為外部協作者？\"],\n                \"Converting members to outside collaborators will remove them from this organization and from all teams, and if they do not currently have access to any private repositories in the organization their seat will be reclaimed.\": \"將成員轉換為外部協作者會將把他們從本組織和所有團隊中移除，如果他們目前無法訪問組織中的任何私有倉庫，他們的席位將被收回。\",\n                \"Their repository access will be preserved by making them collaborators on all repositories that their teams gave them access to. They will retain access to repositories that they were previously collaborators on, but all other access to this organization’s repositories will be lost.\": \"通過使他們成為其團隊授予他們訪問權限的所有倉庫的協作者，他們的倉庫訪問權限將得到保留。他們將保留對之前作為協作者的倉庫的訪問權限，但對該組織倉庫的所有其他訪問權限都將丟失。\",\n                \"Convert to outside collaborator\": \"轉換為外部協作者\",\n\n                //頂部提示\n                    \"You can't remove yourself from the organization. Have another admin do this for you.\": \"您無法將自己從組織中刪除。請讓其他管理員代勞。\",\n            // 移除成員 對話框\n                // [/Removing (\\d+) members? from/, \"移除 $1 名成員，從\"],\n                \"The following members will be removed:\": \"以下成員將被移除：\",\n                \"Remove members\": \"移除成員\",\n\n                // 頂部提醒\n                    \"You can't remove the last owner of this organization.\": \"您無法移除該組織的最後一位所有者。\",\n            // 頂部提醒\n                \"You publicized 1 membership.\": \"您公開了 1 名成員資格\",\n                \"You concealed 1 membership.\": \"您隱藏了 1 名成員資格\",\n\n        // 成員管理 https://github.com/orgs/<orgs-name>/people/<user-name>\n\n        // 成員權限詳情 /orgs/<orgs-name>/people/<user-name>/repositories/<orgs-name>/<repo-name>\n\n        // 外部協作者 https://github.com/orgs/<orgs-name>/outside-collaborators\n            \"Find a collaborator…\": \"尋找協作者…\",\n            \"Select all\": \"全選\",\n            \"No one outside of the organization has access to its repositories.\": \"組織外部的任何人都無法訪問其倉庫。\",\n\n        // 待定協作者 https://github.com/orgs/<orgs-name>/pending_collaborators\n            \"Find a pending collaborator…\": \"搜索待定協作者…\",\n            \"There aren't any pending collaborators.\": \"暫無任何待定的協作者\",\n\n        // 待定邀請 https://github.com/orgs/<orgs-name>/people/pending_invitations\n            // 頂部提醒\n                // [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀請 $1 加入到 $2 ！他們很快就會收到一封電子郵件。他們還可以訪問 $3 接受邀請。\"],\n                // [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀請。\"],\n                // [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已經取消了來自 $2 的 $1 個邀請。可能需要幾分鐘處理。\"],\n\n            \"Find an invitation…\": \"搜索邀請…\",\n\n            \"Role\": \"角色\",\n\n            \"Source\": \"來源\",\n            \"Filter by invitation source\": \"按邀請來源篩選\",\n            \"All sources\": \"所有來源\",\n\n            // [/(\\d+) invitations?/, \"邀請\"],\n\n            \"Sort\": \"排序\",\n            \"Sort Order\": \"排序方式\",\n            \"Order\": \"方式\",\n            \"Newest\": \"最新的\",\n            \"Oldest\": \"最早的\",\n\n            \"No matching invitations.\": \"暫無匹配的邀請。\",\n\n            \"Edit invitation\": \"編輯邀請\",\n            \"Cancel invitation\": \"取消邀請\",\n                // [/Cancel invitation from ([^ ]+)/, \"取消來自 $1 的邀請\"],\n                \"The following invitations will be canceled:\": \"以下邀請將被取消：\",\n\n        // 失敗邀請 https://github.com/orgs/<orgs-name>/people/failed_invitations\n            // [/(\\d+) Failed invitations?/, \"個失敗邀請\"],\n            \"No failed invitations.\": \"暫無失敗邀請。\",\n\n        // 安全管理 https://github.com/orgs/<orgs-name>/people/security_managers\n            \"Find a security manager…\": \"搜索安全管理員…\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) teams?/, \"$1 團隊\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) Failed invitations?/, \"$1 失敗邀請\"],\n        [/Invite a member to/, \"邀請成員加入\"],\n        [/Convert ([^ ]+) to outside collaborator?/, \"將 $1 轉換為外部協作者？\"],\n        [/Removing (\\d+) members? from/, \"移除 $1 名成員，從\"],\n        [/(\\d+) pe(?:ople|rson) in the ([^ ]+) organization/, \"$2 組織中的 $1 位成員\"],\n        [/(\\d+) security managers? in the ([^ ]+) organization/, \"$2 組織中的 $1 位安全管理員\"],\n        [/You've invited ([^ ]+) to ([^ ]+)! They'll be receiving an email shortly. They can also visit ([^ ]+) to accept the invitation./, \"您已邀請 $1 加入到 $2 ！他們很快就會收到一封電子郵件。他們還可以訪問 $3 接受邀請。\"],\n        [/You've successfully updated ([^ ]+)'s invitation./, \"您已成功更新 $1 的邀請。\"],\n        [/Cancel invitation from ([^ ]+)/, \"取消來自 $1 的邀請\"],\n        [/You've canceled (\\d+) invitations? from ([^ ]+). It may take a few minutes to process./, \"您已經取消了來自 $2 的 $1 個邀請。可能需要幾分鐘處理。\"],\n        [/(\\d+) invitations?/, \"$1 邀請\"],\n        [/Invited on (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `邀請於${translatedDate}`;\n        }],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n   ],\n    \"title\": {\n        \"regexp\": [\n            [/Members · People/, \"成員 · 人\"],\n        ],\n    },\n};\nI18N[\"zh-TW\"][\"orgs/outside-collaborators\"] = I18N[\"zh-TW\"][\"orgs/people\"];\nI18N[\"zh-TW\"][\"orgs/pending_collaborators\"] = I18N[\"zh-TW\"][\"orgs/people\"];\n\n\nI18N[\"zh-TW\"][\"orgs/teams\"] = { // 組織 - 團隊標籤卡\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n        \"Organization roles\": \"組織角色\",\n\n        // 團隊標籤卡 https://github.com/orgs/<orgs-name>/teams\n            \"Seamless communication with teams\": \"與團隊的無縫溝通\",\n            \"Teams are a great way for groups of people to communicate and work on code together. Take a look at why they’re great.\": \"團隊是一群人在一起交流和編寫程式碼的好方法。看看為什麼他們很棒。\",\n            \"Flexible repository access\": \"靈活的倉庫訪問\",\n                \"You can add repositories to your teams with more flexible levels of access (Admin, Write, Read).\": \"您可以將倉庫添加到您的團隊中，並有更靈活的訪問級別（管理員、寫入、讀取）。\",\n            \"Request to join teams\": \"申請加入團隊\",\n                \"Members can quickly request to join any team. An owner or team maintainer can approve the request.\": \"成員可以快速申請加入任何團隊。一個所有者或團隊維護者可以批准該請求。\",\n            \"Team mentions\": \"團隊提及\",\n                \"Use team @mentions (ex.\": \"使用團隊 @提及（例如\",\n                \"for the entire team) in any comment, issue, or pull request.\": \"對於整個團隊）在任何評論、議題或拉取請求中。\",\n                \"New team\": \"新建團隊\",\n\n            \"Find a team…\": \"搜索團隊……\",\n\n            \"Select all\": \"全選\",\n            \"Visibility\": \"可見性\",\n                \"All\": \"所有\",\n            \"Members\": \"成員\",\n            \"Team members\": \"團隊成員\",\n                \"My teams\": \"我的團隊\",\n                \"No members\": \"沒有成員\",\n\n            // [/(\\d+) roles?/, \"$1 角色\"],\n\n        // 子團隊 https://github.com/orgs/<orgs-name>/teams/team\n            // 申請提示\n                \"Membership requested. We’ll let you know once an administrator has reviewed your request.\": \"成員資格已申請。一旦管理員審核了您的請求，我們將通知您。\",\n                \"Okay, we’ve cancelled your request to join this team.\": \"好的，已取消加入此團隊申請。\",\n\n            \"Find a member…\": \"查找成員…\",\n            \"Add a member\": \"添加成員\",\n\n            \"Request to join\": \"請求加入\",\n                \"Requires approval from an owner or team maintainer\": \"需要所有者或團隊維護者批准\",\n            \"Cancel pending request\": \"取消請求\",\n                \"Your request to join this team is pending review\": \"您的請求待審查\",\n\n            \"This team doesn’t have any child team members.\": \"此團隊沒有子團隊成員。\",\n\n            \"Filter by role\": \"篩選角色\",\n                \"Maintainer\": \"維護者\",\n                \"Member\": \"成員\",\n\n        // 子團隊成員 https://github.com/orgs/<orgs-name>/teams/team/members\n            \"Invite\": \"邀請\",\n                \"Search by username, full name, or email address\": \"搜索用戶名，全名或郵件\",\n\n            \"Invitations\": \"邀請\",\n            \"Requests\": \"請求\",\n                \"Approve\": \"批准\",\n                \"Deny\": \"拒絕\",\n\n        // 創建團隊 /orgs/<org-login>/new-team\n            \"Create new team\": \"新建團隊\",\n            \"Team name\": \"團隊名稱\",\n            \"You’ll use this name to mention this team in conversations.\": \"您將使用此名稱在對話中提及此團隊。\",\n            \"Description\": \"描述\",\n            \"What is this team all about?\": \"這個團隊是什麼？\",\n            \"Parent team\": \"父團隊\",\n                \"There are no teams that can be selected.\": \"沒有可以選擇的團隊。\",\n                \"Select parent team\": \"選擇父團隊\",\n                \"Search teams\": \"搜索團隊\",\n                \"Clear selected value\": \"清除\",\n            \"Team visibility\": \"團隊可見性\",\n                \"Visible\": \"可見\",\n                    \"Recommended\": \"推薦\",\n                    \"A visible team can be seen and\": \"可見的團隊可以被看到並\",\n                    \"@mentioned\": \"@提及\",\n                    \"by every member of this organization.\": \"本組織的每一位成員。\",\n                \"Secret\": \"私密\",\n                    \"A secret team can only be seen by its members and may not be nested.\": \"私密團隊只能被其成員看到，而且不能被嵌套。\",\n                \"Team notifications\": \"團隊通知\",\n                    \"Enabled\": \"啟用\",\n                        \"Everyone will be notified when the team is @mentioned.\": \"當團隊被 @提及 時，每個人都會收到通知。\",\n                    \"Disabled\": \"禁用\",\n                        \"No one will receive notifications.\": \"沒有人會收到通知。\",\n            \"Create team\": \"創建團隊\",\n\n        // 團隊設置 - 通常 https://github.com/orgs/<orgs-name>/teams/team/edit\n            \"General\": \"通常\",\n            \"Code review\": \"程式碼審查\",\n            \"Scheduled reminders\": \"定時提醒\",\n\n            \"Team settings\": \"團隊設置：\",\n            \"Changing the team name will break past @mentions.\": \"更改團隊名稱會破壞過去的 @提及。\",\n            \"Profile picture\": \"團隊頭像\",\n            \"Upload new picture\": \"上傳新頭像\",\n            \"You may also drag and drop an image from your computer. The image must be less than 1MB.\": \"您也可以從電腦中拖放圖片。圖片必須小於 1MB。\",\n\n            \"Danger zone\": \"危險區\",\n                \"Delete this team\": \"刪除團隊\",\n                \"Once deleted, it will be gone forever. Please be certain.\": \"一旦刪除，將永遠消失。請確定\",\n\n                // 刪除對話框\n                    \"Are you sure you want to delete this team?\": \"您確定要刪除該團隊嗎？\",\n                        \"Once deleted, it will be gone forever.\": \"一旦刪除，它將永遠消失。\",\n                        \"I understand, delete this team\": \"我明白了，依然刪除該團隊\",\n\n        // 團隊設置 - 程式碼審查 https://github.com/orgs/<orgs-name>/teams/team/edit/review_assignment\n            \"Only notify requested team members\": \"僅通知被請求的團隊成員\",\n                \"If both a team and one or more of its members are requested for review, don't notify the entire team.\": \"不通知整個團隊，僅通知被請求的團隊成員\",\n            \"Enable auto assignment\": \"啟用自動分配\",\n                \"This will automatically route this team's code review requests to individual team members.\": \"自動將程式碼審查請求轉發給單個團隊成員。\",\n                \"Note: this won't assign members who have committed to the pull request or have set their status to Busy.\": \"注意：這不會將已提交的拉取請求或已將狀態設置為 “忙碌 ”的成員分配給他們。\",\n                    \"How many team members should be assigned to review?\": \"應指派多少名團隊成員進行審查？\",\n                    \"Routing algorithm\": \"旁路算法\",\n                        \"Round robin\": \"循環\",\n                        \"Alternate reviews between each team member\": \"每位團隊成員交替審核\",\n                        \"Load balance\": \"負載平衡\",\n                        \"Balance review load across the entire team\": \"平衡整個團隊的審核負載\",\n                        \"Never assign certain team members\": \"絕不指派某些團隊成員\",\n                            \"Select team members\": \"選擇團隊成員\",\n                    \"Child team members\": \"子團隊成員\",\n                        \"Include the members of any child teams when assigning requests.\": \"在分配申請時，包括任何子團隊的成員。\",\n                    \"Count existing requests\": \"計算現有請求\",\n                        \"Count any members whose review has already been requested against the total number of members to assign.\": \"在要分配的成員總數中計算任何已提出審核請求的成員。\",\n                    \"Team review request\": \"團隊審查請求\",\n                        \"When assigning team members, remove the review request for the team.\": \"分配團隊成員時，刪除團隊的審核請求。\",\n\n        // 團隊設置 - 定時提醒 https://github.com/orgs/<orgs-name>/teams/team/settings/reminders\n            \"No scheduled reminders created.\": \"未創建預定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"為了保持專案進展，您現在可以提醒您的團隊關於他們需要審查的拉取請求。\",\n\n            \"Connect a Slack workspace to get started\": \"連接 Slack 工作區以開始使用\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) members?/, \"$1 成員\"],\n        [/(\\d+) roles?/, \"$1 角色\"],\n        [/(\\d+) teams? in the ([^ ]+) organization/, \"$2 組織中的 $1 個團隊\"],\n        [/(\\d+) teams?/, \"$1 團隊\"],\n        [/(\\d+) child team members?/, \"$1 子團隊成員\"],\n        [/Add member to (.+)/, \"添加成員至 $1\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"orgs/new-team\"]= I18N[\"zh-TW\"][\"orgs/teams\"];\n\nI18N[\"zh-TW\"][\"orgs/invitations\"] = { // 組織 - 邀請頁面\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"static\"],\n\n        // 邀請 https://github.com/orgs/<orgs-name>/invitations/<user-name>/edit\n            // [/Invite ([^ ]+) to ([^ ]+)/, \"邀請 $1 加入 $2 組織\"],\n            \"Give them an appropriate role in the organization and add them to some teams to give access to repositories.\": \"在組織中賦予他們適當的角色，並將他們添加到一些團隊中，以便讓他們訪問倉庫。\",\n            \"Role in the organization\": \"在組織中的角色\",\n                \"Member\": \"成員\",\n                    \"Members can see all other members, and can be granted access to repositories. They can also create new teams and repositories.\": \"成員可以看到所有其他成員，並可被授予訪問倉庫的權限。他們還可以創建新團隊和倉庫。\",\n                \"Owner\": \"所有者\",\n                    \"Owners have full administrative rights to the organization and have complete access to all repositories and teams.\": \"所有者擁有組織的全部管理權限，可以完全訪問所有倉庫和團隊。\",\n            \"Send invitation\": \"發送邀請\",\n\n        // 編輯模式\n            // [/Edit ([^ ]+)’s invitation to ([^ ]+)/, \"編輯 $2 對 $1 的邀請\"],\n            \"Originally invited by\": \"最初由\",\n            // [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀請。作為所有者，您可以賦予 $1 不同的角色，並為他們挑選不同的團隊。\"],\n            \"Cancel invitation\": \"取消邀請\",\n            \"Update invitation\": \"更新邀請\",\n\n        // 已通過邀請\n            // [/Invite a member to ([^ ]+)/, \"邀請會員加入 $1\"],\n            \"Sorry,\": \"抱歉!\",\n            // [/is already a member of ([^ ]+)./, \"已經是 $1 的成員。\"],\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Invite ([^ ]+) to ([^ ]+)/, \"邀請 $1 加入 $2\"],\n        [/invitation to ([^ ]+)/, \"關於組織 $1 的邀請\"],\n        [/. As an owner, you can give ([^ ]+) a different role and pick different teams for them./, \"邀請。作為所有者，您可以賦予 $1 不同的角色，並為他們挑選不同的團隊。\"],\n        [/Invite a member to ([^ ]+)/, \"邀請會員加入 $1\"],\n        [/is already a member of ([^ ]+)./, \"已經是 $1 的成員。\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/invitation\"] = { // 組織 - 接受邀請頁面\n    \"static\": {\n\n        // 接受邀請 https://github.com/<orgs-name>/invitation\n            \"You’ve been invited to the\": \"您被邀請加入\",\n                \"organization!\": \"組織！\",\n\n            \"Invited by\": \"邀請者：\",\n\n            // [/Join ([^ ]+)/, \"加入 $1\"],\n            \"Decline\": \"拒絕\",\n\n            // [/of ([^ ]+) may be able to see:/, \"$1 將可以查看：\"],\n            // 組織權限\n                \"If you have\": \"您的\",\n                    \"two-factor authentication\": \"雙重身份驗證（2FA）\",\n                    \"enabled or not\": \"是否啟用\",\n                \"Your public profile information\": \"您的公開信息\",\n                \"Certain activity\": \"某些活動\",\n                    \"within this organization\": \"在該組織內\",\n                \"Country of request origin\": \"請求來源國家/地區\",\n                \"Your access level to repositories within the organization\": \"您對組織內倉庫的訪問級別\",\n                \"Your IP address\": \"您的 IP 地址\",\n\n            \"Opt out\": \"拒絕\",\n                \"of future invitations from this organization.\": \"該組織未來的邀請。\",\n            \"of future invitations from this organization.\": \"該組織未來的邀請。\",\n\n    },\n    \"regexp\": [\n        [/Join ([^ ]+)/, \"加入 $1\"],\n        [/of ([^ ]+) may be able to see:/, \"$1 將可以查看：\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/domain/new\"] = { // 組織 - 添加域名\n    \"static\": { // 靜態翻譯\n        \"Verified & approved domains\": \"經驗證和批准的域名\",\n        \"Add a domain\": \"添加域名\",\n        \"What domain would you like to add?\": \"您想添加什麼域名？\",\n        \"Add domain\": \"添加域名\",\n        \"Domain name has already been added\": \"域名已添加\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/profile\"] = { // 組織設置 - 組織資料\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 頂部提示\n            \"Thanks for updating your Developer Program contact information!\": \"感謝您更新開發者聯繫信息！\",\n\n        // 組織資料 /organizations/<org-login>/settings/profile\n            \"Most organization settings are hidden for an archived organization. This organization must be unarchived to change them.\": \"對於已存檔的組織，組織大多數設置都是隱藏的。必須取消對該組織的歸檔才能更改它們。\",\n\n            \"Organization profile\": \"基本資料\",\n                \"Profile picture\": \"我的頭像\",\n                    \"Upload new picture\": \"上傳新頭像\",\n                    \"Note: To apply for a publisher verification your organization's profile picture should not be irrelevant, abusive or vulgar. It should not be a default image provided by GitHub.\": \"注意：需要申請發佈者驗證，您的組織的個人資料圖片不應該是不相關的、辱罵性的或粗俗的。它不應該是由 GitHub 提供的默認圖片。\",\n                \"Organization display name\": \"組織顯示名稱\",\n                \"Email (will be public)\": \"公開電子郵箱\",\n                \"Description\": \"描述\",\n                \"URL\": \"網站\",\n                \"Social accounts\": \"社交賬戶\",\n                \"Link to social profile\": \"鏈接到社交賬戶\",\n                \"Location\": \"位置\",\n                    \"Select a location\": \"選擇位置\",\n                    \"Find a location...\": \"搜索位置…\",\n                    \"Clear Location\": \"清除位置\",\n                \"Billing email\": \"賬單電子郵箱\",\n                \"(Private)\": \"（私人）\",\n                    \"Add more billing email recipients in the\": \"添加更多的賬單郵件收件人在\",\n                    \"billing page\": \"賬單頁面\",\n                \"Gravatar email\": \"Gravatar 電子郵箱\",\n                \"Sponsors update email\": \"贊助者更新電子郵箱\",\n                    \"The developers and organizations that your organization sponsors can send you updates to this email.\": \"您的組織贊助的開發人員和組織可以向您發送此電子郵箱的更新。\",\n                \"Update profile\": \"更新資料\",\n                \"Profile updated successfully\": \"資料更新成功。\",\n\n            \"Link Patreon account\": \"關聯 Patreon 賬戶\",\n                \"Connect a Patreon account for\": \"關聯\",\n                \"to sponsor maintainers with. Get recognition on GitHub for sponsorships made on Patreon when the sponsored person has linked Patreon and GitHub, too, and has a public GitHub Sponsors profile.\": \"的 Patreon 賬戶，以便贊助維護者。當被贊助者也關聯 Patreon 和 GitHub 賬戶時，在 Patreon 上獲得的贊助也會顯示在 GitHub 上，並顯示 GitHub 贊助者的公開個人資料。\",\n                \"Connect with Patreon\": \"關聯 Patreon 賬戶\",\n\n            \"GitHub Developer Program\": \"GitHub 開發者計劃\",\n                \"Building an application, service, or tool that integrates with GitHub?\": \"構建應用、服務或工具，集成到 GitHub 嗎？\",\n                \"Join the GitHub Developer Program\": \"加入 GitHub 開發者計劃\",\n                \", or read more about it at our\": \"，或瞭解更多信息在我們的\",\n                \"GitHub developer program\": \"GitHub 開發者計劃\",\n                \"Check out the Developer site\": \"查看開發者站點，\",\n                \"for guides, our API reference, and other resources for building applications that integrate with GitHub. Make sure your contact information is up-to-date below. Thanks for being a member!\": \"以獲取指南、我們的 API 參考和其他用於構建與 GitHub 集成的應用的資源。請確保您的聯繫信息是最新的。感謝您成為我們的成員！\",\n\n            \"Terms of Service\": \"服務條款\",\n                \"Standard\": \"標準\",\n                    \"Best for individuals wanting the freedom to move data and remain independent of a corporation.\": \"最適合希望自由移動數據並保持獨立於公司的個人。\",\n                    \"Read the Standard Terms of Service\": \"閱讀 “標準服務條款”\",\n                \"Corporate\": \"企業\",\n                    \"Best for businesses that need to protect their intellectual property and secure visibility into their data.\": \"最適合需要保護知識產權並確保數據可見性的企業。\",\n                    \"Read the GitHub customer agreement\": \"請閱讀 GitHub 用戶協議\",\n                    \"Sign GitHub customer terms\": \"簽署 GitHub 用戶條款\",\n\n            \"Danger zone\": \"危險區\",\n                \"Rename organization\": \"重命名組織\",\n                    \"Renaming your organization can have\": \"重命名您的組織可能會有\",\n                    \"unintended side effects\": \"意想不到的副作用\",\n                    \"This organization cannot be renamed because it is archived.\": \"該組織無法重命名，因為它已存檔。\",\n                \"Really rename your organization?\": \"確定要重命名您的組織？\",\n                \"Unexpected bad things will happen if you don’t read this!\": \"請仔細閱讀以下提示信息！！！\",\n                \"We\": \"我們\",\n                \"will not\": \"不會\",\n                \"will\": \"會\",\n                \"create redirects for your repositories (web and git access).\": \"為您的倉庫設置重定向（ web 和 git 訪問）。\",\n                \"You will need to update your local repositories to point to the new location.\": \"您將需要更新您的本地倉庫，以指向新的位置。\",\n                \"Renaming may take a few minutes to complete.\": \"重命名可能需要幾分鐘的時間來完成。\",\n                \"I understand, let’s rename my organization\": \"我明白了，依然重命名我的組織\",\n\n                \"Rename your organization\": \"重命名組織\",\n                \"Change organization’s name\": \"更改組織名\",\n                // 頂部提醒\n                    \"Organization name may only contain alphanumeric characters or single hyphens, and cannot begin or end with a hyphen\": \"組織名稱只能包含字母數字字符或單連字符，不能以連字符開始或結束。\",\n                    \"Organization name is not available\": \"組織名稱不可用\",\n\n                \"Archive this organization\": \"存檔組織\",\n                    \"Mark this organization and all its repositories as archived and read-only.\": \"將此組織及其所有倉庫標記為已存檔和只讀。\",\n                    \"Please provide\": \"請提供\",\n                    \"feedback\": \"反饋\",\n                    \"on this feature.\": \"關於此功能。\",\n\n                    \"Archive organization\": \"存檔組織\",\n                        \"This organization will be archived.\": \"該組織將被存檔。\",\n                        \"Modifying settings will be limited and creating new repositories will be blocked.\": \"修改設置將受到限制，並且創建新倉庫將被阻止。\",\n\n                        \"All repositories will be\": \"所有倉庫都將被\",\n                        \"archived\": \"存檔\",\n                        \"and be read-only.\": \"並設為只讀。\",\n                        \"Before you archive, please consider:\": \"在存檔之前，請考慮：\",\n                            \"Updating any organization settings\": \"更新任何組織設置\",\n                            \"Making a note in your\": \"請標記在您的\",\n                            \"organization README\": \"組織 README\",\n                        \"Please type\": \"請輸入\",\n                        \"to confirm.\": \"進行確定。\",\n                        \"I understand the consequences, archive this organization\": \"我明白後果，依然存檔該組織\",\n\n                        // 頂部提醒\n                        // [/Your organization ([^ ]+) is being archived./, \"您的組織 $1 已歸檔。\"],\n\n                \"Unarchive this organization\": \"解鎖存檔組織\",\n                    \"Mark this organization as unarchived and read-write.\": \"將此組織標記為未存檔且可讀寫。\",\n\n                    \"Unarchive organization\": \"解除組織存檔\",\n                    \"This organization will be unarchived.\": \"該組織將解除存檔。\",\n                    \"Modifying settings will be possible and creating new repositories will be unblocked.\": \"可以修改設置，創建新倉庫也將不再受限。\",\n\n                    \"Repositories will be remain\": \"倉庫將保持\",\n                    \"and need to be unarchived separately.\": \"，並需要單獨解除存檔。\",\n                    \"I understand the consequences, unarchive this organization\": \"我明白後果，依然解除該組織存檔\",\n\n                        // 頂部提醒\n                        // [/Your organization ([^ ]+) has been unarchived./, \"您的組織 $1 已解除歸檔。\"],\n\n                \"Delete this organization\": \"刪除組織\",\n                    \"Once deleted, it will be gone forever. Please be certain.\": \"您一旦刪除，將再也無法恢復。請確認！\",\n\n                   \"Are you sure you want to delete this?\": \"您確定要刪除嗎？\",\n                   \"Deleting the\": \"刪除\",\n                   \"organization will delete all of its repositories. The\": \"組織，將會刪除其所有倉庫。\",\n                   \"username will be unavailable for 90 days.\": \"用戶名將在 90 天內不可用。\",\n                   \"Before proceeding, please be sure to review the\": \"在繼續之前，請務必查看\",\n                   \"regarding account deletion.\": \"關於賬戶刪除。\",\n                   \"Enter this organization’s name to confirm\": \"請輸入組織的名稱，進行確認\",\n                   \"Cancel plan and delete the organization\": \"取消計劃並刪除此組織\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Your organization ([^ ]+) is being archived./, \"您的組織 $1 已歸檔。\"],\n        [/Your organization ([^ ]+) has been unarchived./, \"您的組織 $1 已解除歸檔。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/policies/repositories\"] = { // 組織設置 - 策略 - 倉庫策略\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 倉庫策略 /organizations/<org-login>/policies/repositories\n            \"Repository policies\": \"倉庫策略\",\n            \"You haven't created any policies\": \"您尚未創建任何策略\",\n            \"Define whether members can perform operations on repositories such as delete and transfer.\": \"定義成員是否可以對倉庫執行刪除和轉移等操作。\",\n            \"Learn more about rulesets.\": \"瞭解更多關於規則集的信息\",\n            \"Organization rulesets won't be enforced\": \"組織規則集將不會被強制執行\",\n            \"until you upgrade this organization account to GitHub Team.\": \"直到您將此組織賬戶升級至 GitHub 團體版。\",\n            \"New policy\": \"新建策略\",\n    }\n}\n\nI18N[\"zh-TW\"][\"orgs/settings/roles\"] = { // 組織設置 - 倉庫角色\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 倉庫角色 /organizations/<org-login>/settings/roles\n            // \"Roles are used to grant access and permissions for teams and members. In addition to the available pre-defined roles, you can create up to 0 custom roles to fit your needs.\": \"角色是用來為團隊和成員授予訪問和權限的。除了可用的預定義角色外，您可以創建多達 0 個自定義角色以滿足您的需求。\",\n            //     \"Learn more about custom repository roles\": \"瞭解更多關於自定義倉庫角色的信息\",\n            \"Roles are used to grant access and permissions for teams and members.\": \"角色是用來為團隊和成員授予訪問和權限的。\",\n            \"Pre-defined roles\": \"預定義角色\",\n                \"You can\": \"您可\",\n                \"set the base role\": \"設置基礎角色\",\n                \"for this organization from one of these roles.\": \"從該組織的這些角色中設置\",\n                    \"Read\": \"只讀\",\n                        \"Read and clone repositories. Open and comment on issues and pull requests.\": \"讀取和克隆倉庫。打開並評論問題和拉取請求。\",\n                    \"Triage\": \"分級\",\n                        \"Read permissions plus manage issues and pull requests.\": \"讀取權限外加管理議題和拉取請求的權限。\",\n                    \"Write\": \"可寫\",\n                        \"Triage permissions plus read, clone and push to repositories.\": \"分級權限外加讀取、克隆和推送到倉庫。\",\n                    \"Maintain\": \"維護\",\n                        \"Write permissions plus manage issues, pull requests and some repository settings.\": \"可寫權限外加管理議題、拉取請求和一些倉庫設置。\",\n                    \"Admin\": \"管理員\",\n                        \"Full access to repositories including sensitive and destructive actions.\": \"對倉庫的完全訪問權限，包括敏感和破壞性操作。\",\n                        \"Modify Admin Role\": \"修改管理角色\",\n\n            \"Custom roles\": \"自定義角色\",\n                \"Create a role\": \"創建角色\",\n                \"Create custom roles with GitHub Enterprise\": \"使用 GitHub 企業版創建自定義角色\",\n                    \"Enterprise accounts offer organizations more granular control over permissions by allowing you to configure up to five custom repository roles. This enables greater control over who and how your users access code and data in your organization.\": \"企業賬戶允許配置最多五個自定義倉庫角色，從而為企業提供更細粒度的權限控制。這樣就能更好地控制組織內用戶訪問程式碼和數據。\",\n                \"Try GitHub Enterprise\": \"試用 GitHub 企業版\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/member_privileges\"] = { // 組織設置 - 成員權限\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 成員權限 /organizations/<org-login>/settings/member_privileges\n            \"Member repository permissions\": \"成員倉庫權限\",\n                \"Base permissions\": \"基本權限\",\n                    \"Base permissions to the organization’s repositories apply to all members and excludes outside collaborators. Since organization members can have permissions from multiple sources, members and collaborators who have been granted a higher level of access than the base permissions will retain their higher permission privileges.\": \"組織倉庫的基本權限適用於所有成員，不包括外部協作者。由於組織成員可以擁有多個來源的權限，已經被授予比基本權限更高的訪問級別的成員和協作者將保留他們更高的權限。\",\n\n                    \"Organization member permissions\": \"組織成員的權限\",\n                        \"No permission\": \"無權限\",\n                            \"Members will only be able to clone and pull public repositories. To give a member additional access, you’ll need to add them to teams or make them collaborators on individual repositories.\": \"成員只能克隆和拉取公共倉庫。要為成員提供額外的訪問權限，您需要將他們添加到團隊中，或者讓他們成為單個倉庫的協作者。\",\n                            // 對話框\n                                \"Change base permission to \\\"No permission\\\"\": \"將基本權限更改為 “無權限”\",\n                                \"You are about to change the base repository permission for this organization.\": \"您即將更改此組織倉庫的基本權限。\",\n                                // [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"這可能會更改組織的 $1 個成員對其 $2 個倉庫的權限。\"],\n                        \"Read\": \"只讀\",\n                            \"Members will be able to clone and pull all repositories.\": \"成員將能夠克隆和拉取所有倉庫。\",\n                            // 對話框\n                                \"Change base permission to \\\"Read\\\"\": \"將基本權限更改為 “只讀”\",\n                        \"Write\": \"可寫\",\n                            \"Members will be able to clone, pull, and push all repositories.\": \"成員將能夠克隆、拉取和推送所有倉庫。\",\n                            // 對話框\n                                \"Change base permission to \\\"Write\\\"\": \"將基本權限更改為 “可寫”\",\n                        \"Admin\": \"管理員\",\n                            \"Members will be able to clone, pull, push, and add new collaborators to all repositories.\": \"成員將能夠克隆、拉取、推送和向所有倉庫添加新的協作者。\",\n                            // 對話框\n                                \"Change base permission to \\\"Admin\\\"\": \"將基本權限更改為 “管理員”\",\n                        // 頂部提醒\n                            \"Base repository permission removed.\": \"基本倉庫權限已被刪除。\",\n                            \"Base repository permission updated to \\\"Read\\\".\": \"基本倉庫權限已更新為 “只讀” 。\",\n                            \"Base repository permission updated to \\\"Write\\\".\": \"基本倉庫權限已更新為 “可寫” 。\",\n                            \"Base repository permission updated to \\\"Admin\\\".\": \"基本倉庫權限已更新為 “管理員” 。\",\n                        \"Update in progress\": \"正在更新中\",\n                        \". Refresh to see if it’s done.\": \"。刷新看看是否完成。\",\n\n                \"Repository creation\": \"倉庫創建\",\n                    \"Members will be able to create only selected repository types. Outside collaborators can never create repositories.\": \"成員將只能創建選定類型的倉庫。外部協作者永遠不能創建倉庫。\",\n                    \"Public\": \"公共\",\n                        \"Members will be able to create public repositories, visible to anyone.\": \"成員將能夠創建任何人都可見的公共倉庫。\",\n                        \"Why is this option disabled?\": \"為什麼該選項被禁用？\",\n                    \"Private\": \"私有\",\n                        \"Members will be able to create private repositories, visible to organization members with permission.\": \"成員將能夠創建私有倉庫，對有權限的組織成員可見。\",\n                    // 頂部提醒\n                        \"Members can no longer create public or private repositories.\": \"成員不能再創建公共或私有倉庫。\",\n                        \"Members can now create public repositories.\": \"成員現在可以創建公共倉庫。\",\n                        \"Members can now create public and private repositories.\": \"成員現在可以創建公共和私有倉庫。\",\n\n                \"Repository forking\": \"倉庫複刻\",\n                    \"Allow forking of private repositories\": \"允許複刻私有倉庫\",\n                        \"If enabled, forking is allowed on private and public repositories. If disabled, forking is only allowed on public repositories. This setting is also configurable per-repository.\": \"如果啟用，則私有和公共倉庫都允許複刻。如果禁用，則只允許複刻公共倉庫。此設置也可以在每個倉庫中進行配置。\",\n                    // 頂部提醒\n                        \"Repository forking setting updated!\": \"倉庫複刻設置已經更新！\",\n                        \"Repository forking setting not updated. Please try again.\": \"倉庫複刻設置不能更新。請重試。\",\n\n                \"Repository discussions\": \"倉庫討論\",\n                    \"Allow users with read access to create discussions\": \"允許具有讀取權限的用戶創建討論\",\n                        // [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果啟用，所有具有讀取權限的用戶都可以在 $1 的倉庫中創建和評論討論。\"],\n                        \"If disabled, discussion creation is limited to users with at least triage permission. Users with read access can still comment on discussions.\": \"如果禁用，討論的創建僅限於至少具有分級權限的用戶。具有讀取權限的用戶仍然可以對討論發表評論。\",\n                    // 頂部提醒\n                        \"Users with read access to repositories can create new discussions.\": \"對倉庫具有讀取權限的用戶可以創建新的討論。\",\n                        \"Only users with at least triage access to repositories can create new discussions.\": \"只有至少對倉庫有分級權限的用戶才能創建新的討論。\",\n\n                \"Projects base permissions\": \"專案基本權限\",\n                    \"Projects created by members will default to the elected role below.\": \"成員創建的專案將默認為下面選定的角色。\",\n\n                    \"No access\": \"無法訪問\",\n                        \"Members will only be able to see projects that are made public. To give an organization member additional access, they can be added as part of a team or as a collaborator.\": \"成員只能看到公開專案。要賦予組織成員更多訪問權限，可以將其添加為團隊成員或協作者。\",\n                        // 對話框\n                            \"Change base permissions to \\\"No access\\\"\": \"將基本權限改為 “無法訪問”\",\n                                \"You are about to change the base projects permission for this organization.\": \"您將更改該組織的基本專案權限\",\n                                \"This won't affect any existing projects.\": \"這不會影響任何現有專案\",\n                    // 只讀\n                        \"Members can see projects.\": \"成員可以查看專案\",\n                        // 對話框\n                            \"Change base permissions to \\\"Read\\\"\": \"將基本權限改為 “只讀”\",\n                    // 可寫\n                        \"Members can see and make changes to projects.\": \"成員可以查看和修改專案\",\n                        // 對話框\n                            \"Change base permissions to \\\"Write\\\"\": \"將基本權限改為 “可寫”\",\n                    // 管理員\n                        \"Members can see, make changes to, and add new collaborators to projects.\": \"成員可以查看和修改專案，並可為專案添加新的協助者。\",\n                        // 對話框\n                            \"You are about to change the base projects permission for this organization.\": \"您將更改該組織的基本專案權限\",\n                    // 頂部提醒\n                        \"Base permission updated to \\\"None\\\" for projects.\": \"專案的基本權限已更新為 “無”。\",\n                        \"Base permission updated to \\\"Read\\\" for projects.\": \"專案的基本權限已更新為 “只讀”。\",\n                        \"Base permission updated to \\\"Write\\\" for projects.\": \"專案的基本權限已更新為 “可寫”。\",\n                        \"Base permission updated to \\\"Admin\\\" for projects.\": \"專案的基本權限已更新為 “管理員”。\",\n\n                \"Pages creation\": \"頁面創建\",\n                    \"Members will be able to publish sites with only the selected access controls.\": \"成員將能夠發佈僅只有選定的訪問控制的站點。\",\n                    // \"Public\": \"公共\",\n                        \"Members will be able to create public sites, visible to anyone.\": \"成員將能夠創建任何人都可見的公共站點。\",\n                    // \"Private\": \"私有\",\n                        \"Members will be able to create private sites, visible to anyone with permission.\": \"成員將能夠創建私有站點，對任何有權限的人可見。\",\n                    // 頂部提醒\n                        \"Projects settings updated for this organization.\": \"該組織的專案設置已經更新。\",\n\n                \"Integration access requests\": \"集成訪問請求\",\n                    \"Allow integration requests from outside collaborators\": \"允許來自外部協作者的集成請求\",\n                        \"Outside collaborators will be able to request access for GitHub or OAuth apps to access this organization and its resources.\": \"外部協作者將能夠為 GitHub 或 OAuth 應用申請訪問該組織及其資源的權限。\",\n                        // 頂部提醒\n                            \"Outside collaborators can no longer request third party access.\": \"外部協作者無法再請求第三方訪問。\",\n                            \"Outside collaborators can now request third party access.\": \"外部協作者現在可以請求第三方訪問。\",\n\n                \"Admin repository permissions\": \"管理員倉庫權限\",\n                    \"Repository visibility change\": \"倉庫可見性更改\",\n                        \"Allow members to change repository visibilities for this organization\": \"允許成員更改此組織的倉庫可見性\",\n                            \"If enabled, members with admin permissions for the repository will be able to change its visibility. If disabled, only organization owners can change repository visibilities.\": \"如果啟用，對倉庫有管理權限的成員將能夠更改其可見性。如果禁用，只有組織所有者可以更改倉庫的可見性。\",\n                        // 頂部提醒\n                            \"Members can now change repository visibility.\": \"成員現在可以更改倉庫可見性。\",\n                            \"Members can no longer change repository visibility.\": \"成員不能再更改倉庫可見性。\",\n\n                    \"Repository deletion and transfer\": \"倉庫的刪除和轉讓\",\n                        \"Allow members to delete or transfer repositories for this organization\": \"允許成員刪除或轉讓此組織的倉庫\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete or transfer\": \"如果啟用，對倉庫有管理權限的成員將能夠刪除或轉讓\",\n                            \"public\": \"公共\",\n                            \"private\": \"私有\",\n                            \"repositories. If disabled, only organization owners can delete or transfer repositories.\": \"倉庫。如果禁用，只有組織所有者可以刪除或轉讓倉庫。\",\n                        // 頂部提醒\n                            \"Members can now delete or transfer repositories.\": \"成員現在可以刪除或轉讓倉庫。\",\n                            \"Members can no longer delete or transfer repositories.\": \"成員不能再刪除或轉讓倉庫。\",\n\n                    \"Issue deletion\": \"議題刪除\",\n                        \"Allow repository administrators to delete issues for this organization\": \"允許倉庫管理員刪除此組織的議題\",\n                            \"If enabled, members with admin permissions for the repository will be able to delete issues. If disabled, only organization owners can delete issues.\": \"如果啟用，對倉庫有管理權限的成員將能夠刪除議題。如果禁用，只有組織所有者可以刪除議題。\",\n                            \"Learn more about allowing people to delete issues in your organization\": \"瞭解更多關於允許成員刪除組織內議題的信息\",\n\n                        // 頂部提醒\n                            \"Members can now delete issues.\": \"成員現在可以刪除議題。\",\n                            \"Members can no longer delete issues.\": \"成員不能再刪除議題。\",\n\n                \"Member team permissions\": \"成員團隊權限\",\n                    \"Team creation rules\": \"團隊創建規則\",\n                        \"Allow members to create teams\": \"允許成員創建團隊\",\n                            \"If enabled, any member of the organization will be able to create new teams. If disabled, only organization owners can create new teams.\": \"如果啟用，組織的任何成員將能夠創建新的團隊。如果禁用，只有組織所有者可以創建新的團隊。\",\n                    // 頂部提醒\n                        \"Members can now create teams.\": \"成員現在可以創建團隊。\",\n                        \"Members can no longer create teams.\": \"成員不能再創建團隊。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/This may change the permission that the organization’s (\\d+) members? has on its (\\d+) repositories?./, \"這可能會更改組織的 $1 個成員對其 $2 個倉庫的權限。\"], // 組織 基本權限更改\n        [/If enabled, all users with read access can create and comment on discussions in ([^ ]+)’s repositories./, \"如果啟用，所有具有讀取權限的用戶都可以在 $1 的倉庫中創建和評論討論。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/teams\"] = { // 組織設置 - 團隊討論\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 團隊討論 /organizations/<org-login>/settings/teams\n            \"Team discussions provide a place for a team to have conversations that span across projects or repositories and that don’t belong in an issue or a pull request.\": \"團隊討論為團隊提供了一個進行跨專案或倉庫，且不屬於議題或拉取請求的對話的場所。\",\n            \"Enable team discussions for this organization\": \"為此組織啟用團隊討論\",\n                \"This allows members to start discussions in any team in the\": \"這允許成員在任何團隊中開始討論，在\",\n            \"organization.\": \"組織中。\",\n\n            \"Looking for\": \"尋找\",\n            \"Organization Discussions\": \"組織討論\",\n            \"? Go to\": \"？轉到\",\n            \"Organization Discussions settings.\": \"組織討論設置。\",\n\n            // 頂部提醒\n                \"Team discussions enabled for this organization.\": \"該組織啟用了團隊討論。\",\n                \"Team discussions disabled for this organization.\": \"該組織禁用了團隊討論。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/import-export\"] = { // 組織設置 - 導入/導出\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Import/Export 導入/導出 - 佔位賬戶 /organizations/<org-login>/settings/import-export\n            \"Mannequins\": \"佔位賬戶\",\n            \"Search mannequins by login or email...\": \"通過登錄名或電子郵箱地址搜索佔位賬戶…\",\n            \"There are no mannequins in this organization\": \"該組織尚無佔位賬戶\",\n            \"Mannequins represent authors of imported contributions. They do not have profile pages and cannot sign in. Their contributions can be reattributed to other members of your organization.\": \"佔位賬戶代表導入貢獻的作者。他們沒有個人資料頁，也不能登錄。他們的貢獻可以重新歸屬於您組織的其他成員。\",\n\n        // Import/Export 導入/導出 - 歸屬邀請 /organizations/<org-login>/settings/import-export/attribution-invitations\n            \"Attribution Invitations\": \"歸屬邀請\",\n            \"Below are the mannequin reattribution invitations that have been sent within this organization. If the state is \\\"invited,\\\" then the user has not yet replied; if it is \\\"completed,\\\" then the user has accepted and their contributions have been reattributed, and if it is \\\"rejected,\\\" then the user opted not to be credited for that mannequin's contributions.\": \"以下是該組織內已發送的佔位賬戶重新歸屬的邀請。如果狀態是 “已邀請”，則用戶尚未回覆；如果是 “已完成”，那麼用戶已經接受並且他們的貢獻已經被重新歸屬；如果是 “已拒絕”，那麼用戶選擇不記入該佔位賬戶的貢獻。\",\n            \"No attribution invitations have been sent\": \"尚未發出歸屬邀請\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/blocked_users\"] = { // 組織設置 - 黑名單\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Blocked users 黑名單 /organizations/<org-login>/settings/blocked_users\n            \"Block a user\": \"拉黑用戶\",\n            \"Blocking a user prevents the following on all your repositories:\": \"拉黑用戶可以防止所有倉庫中的以下操作：\",\n            \"opening or commenting on issues or pull requests\": \"打開或評論議題或拉取請求\",\n            \"starring, forking, or watching\": \"標星、複刻、關注\",\n            \"adding or editing wiki pages\": \"添加或編輯 Wiki 頁面\",\n\n            \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n                \"Learn more about blocking a user\": \"瞭解更多關於拉黑用戶的信息\",\n            \"Block options\": \"拉黑選項\",\n                \"For 1 day\": \"1 天\",\n                \"For 3 days\": \"3 天\",\n                \"For 7 days\": \"7 天\",\n                \"For 30 days\": \"30 天\",\n                \"Until I unblock them\": \"直到取消拉黑\",\n            \"Block user\": \"拉黑用戶\",\n            \"You have not blocked any users.\": \"您還沒有拉黑任何用戶。\",\n            \"Unblock\": \"取消拉黑\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/interaction_limits\"] = { // 組織設置 - 互動限制\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Interaction limits 互動限制 /organizations/<org-login>/settings/interaction_limits\n            \"Temporary interaction limits\": \"臨時互動限制\",\n            \"Temporarily restrict which external users can interact with your repositories (comment, open issues, or create pull requests) for a configurable period of time. Users who are members of this organization will not be affected by these limits.\": \"在配置的時間段內，可臨時限制哪些外部用戶與您的倉庫互動（評論、打開議題或創建拉取請求）。作為該組織成員的用戶將不受這些限制的影響。\",\n            \"This may be used to force a \\\"cool-down\\\" period during heated discussions or prevent unwanted interactions.\": \"可用於在激烈討論期間，強制進入 “冷靜” 期或防止不必要的互動。\",\n            \"Interaction limits may already exist in your organization's\": \"互動限制可能已經存在於您的組織\",\n            \"public repositories\": \"公開倉庫\",\n            \". Any changes here will override those limits.\": \" 的設置中。此處的全局設置將覆蓋那些倉庫的局部設置。\",\n            \"Limit to existing users\": \"僅限現有用戶\",\n                \"Users that have recently created their account will be unable to interact with this organization's repositories.\": \"最近創建賬戶的用戶將無法與您組織的倉庫互動。\",\n            \"Limit to prior contributors\": \"僅限於先前的貢獻者\",\n                \"Users that have not previously committed to the default branch of a repository in this organization will be unable to interact with that repository.\": \"以前從未提交到您組織某個倉庫默認分支的用戶將無法與該倉庫互動。\",\n            \"Limit to repository collaborators\": \"僅限倉庫協作者\",\n                \"Users that are not collaborators of a repository in this organization will not be able to interact with that repository.\": \"不是您組織某個倉庫的協作者將無法與該倉庫互動。\",\n            \"New users\": \"新用戶\",\n            \"Users\": \"用戶\",\n            \"Contributors\": \"貢獻者\",\n            \"Collaborators\": \"協作者\",\n            \"Organization members\": \"組織成員\",\n            // 交互限制時間 下拉菜單\n            \"Enable interaction limits for:\": \"啟用交互限制：\",\n            \"24 hours\": \"24 小時\",\n            \"3 days\": \"3 天\",\n            \"1 week\": \"1 周\",\n            \"1 month\": \"1 個月\",\n            \"6 months\": \"6 個月\",\n            // 頂部提醒\n            \"User interaction limit settings saved.\": \"用戶交互限制設置已保存。\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/code_review_limits\"] = { // 組織設置 - 程式碼審查限制\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 程式碼審查限制 /organizations/<org-login>/settings/code_review_limits\n            \"Restrict users who are permitted to approve or request changes on pull requests in public repositories within this organization.\": \"限制該組織內允許批准或請求更改公共倉庫中拉取請求的用戶。\",\n            \"Code review limits may already be specified by individual repositories. Any changes here will override those limits until unset.\": \"程式碼審查限制可能已經由各個倉庫指定。此處的任何更改都將覆蓋這些限制，直至取消設置。\",\n            \"Code review limits are currently managed individually for all repositories. Enable limits to permit only users who have explicitly been granted access to each repository to submit reviews that \\\"approve\\\" or \\\"request changes\\\". Remove limits to allow all users to submit pull request reviews. All users able to submit comment pull request reviews will continue to be able to do so.\": \"目前，所有倉庫程式碼審查限制都是單獨管理的。啟用限制，只允許明確授予每個倉庫訪問權的用戶提交 “批准” 或 “請求更改” 的審查。刪除限制，允許所有用戶提交拉取請求審查。所有能夠提交評論拉取請求審查的用戶將繼續能夠這樣做。\",\n            \"Limit reviews on all repositories\": \"限制對所有倉庫的審查\",\n            \"Remove review limits from all repositories\": \"取消對所有倉庫的審查限制\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/moderators\"] = { // 組織設置 - 版主\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Moderators 版主 /organizations/<org-login>/settings/moderators\n            \"You can add organization members or teams as moderators for your organization. Moderators can block and unblock users from the organization, minimize comments, and manage interaction limits for all public organization repositories.\": \"您可以將組織成員或團隊添加為組織的主版主。版主可以阻止和解除對該組織用戶的阻止、最小化評論、並管理所有公共組織倉庫的交互限制。\",\n\n            \"You may add up to\": \"您最多可以添加\",\n            \"members or teams as moderators.\": \"成員或團隊作為版主。\",\n            \"Add a member or team\": \"添加成員或團隊\",\n            \"You don't have any moderators for this organization.\": \"該組織尚無任何版主\",\n\n            // [/Successfully added (@[^\\n]+) as a moderator/, \"已成功將 $1 添加為版主\"],\n            // [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功將 $1 的版主身份移除\"],\n            \"Remove moderator\": \"移除版主\",\n\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Successfully added (@[^\\n]+) as a moderator/, \"已成功將 $1 添加為版主\"],\n        [/Successfully removed (@[^\\n]+) as a moderator/, \"已成功將 $1 的版主身份移除\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/repository-defaults\"] = { // 組織設置 - 倉庫 / 默認值\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 倉庫默認分支 /organizations/<org-login>/settings/repository-defaults\n            \"Repository default branch\": \"倉庫默認分支\",\n                \"Choose the default branch for new repositories in this organization. You might want to change the default name due to different workflows, or because your integrations still require “master” as the default branch name. You can always change the default branch name on individual repositories.\": \"為該組織中的新倉庫選擇默認的分支。由於工作流程的不同，或者由於您的集成仍然需要 “master” 作為默認分支名，您可能想改變默認名稱。您可以隨時改變單個倉庫的默認分支名稱。\",\n                \"Learn more about default branches.\": \"瞭解更多關於默認分支的信息。\",\n\n            // 頂部提醒\n                // [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中創建的新倉庫將使用 main 作為其默認分支。\"],\n\n            \"Commit signoff\": \"提交簽署\",\n                \"Choose whether repositories will require contributors to sign off on commits they make through GitHub's web interface. Signing off is a way for contributors to affirm that their commit complies with the repository's terms, commonly the\": \"選擇倉庫是否要求貢獻者簽署通過 GitHub 的 Web 界面所做的提交。簽署是貢獻者確認他們的提交符合倉庫條款的一種方式，通常是\",\n                \"Developer Certificate of Origin (DCO)\": \"開發者來源證書（DCO）\",\n                \"Learn more about signing off on commits\": \"瞭解更多關於簽署提交的信息\",\n                \"All repositories\": \"所有倉庫\",\n                    \"Require signoff on web-based commits for all repositories in this organization\": \"要求對該組織中所有倉庫的基於 Web 的提交進行簽署\",\n                \"No policy\": \"無政策\",\n                    \"Each repository chooses whether to require signoff on web-based commits\": \"每個倉庫選擇是否要求對基於 Web 的提交進行簽署\",\n\n                // 頂部提醒\n                    \"Commit signoff settings were updated.\": \"提交簽署設置已更新。\",\n\n            \"Repository labels\": \"倉庫標籤\",\n                \"Set the labels that will be included when a new repository is created in this organization.\": \"設置在此組織中創建新的倉庫時將包含的標籤。\",\n                \"Learn more about managing default labels for your organization.\": \"瞭解更多關於為您的組織管理默認標籤的信息。\",\n            \"New label\": \"新建標籤\",\n                \"Label preview\": \"標籤預覽\",\n                \"Label name\": \"標籤名\",\n                \"Description\": \"描述\",\n                \"Description (optional)\": \"描述（可選）\",\n                \"Color\": \"顏色\",\n                    \"Get a new color\": \"獲得新顏色\",\n                    \"Choose from default colors:\": \"從默認顏色中選擇：\",\n                \"Create label\": \"創建標籤\",\n            // 刪除提醒\n            \"Are you sure? Deleting a label will remove as a default, and no future repositories will receive this label when created.\": \"您確定嗎？刪除標籤將作為默認值刪除，以後的倉庫在創建時不會收到此標籤。\",\n\n            \"label\": \"個標籤\",\n            \"labels\": \"個標籤\",\n            \"bug\": \"BUG\",\n                \"Something isn't working\": \"有些東西不工作\",\n            \"dependencies\": \"依賴性\",\n                \"Pull requests that update a dependency file\": \"更新一個依賴文件的拉取請求\",\n            \"documentation\": \"文檔\",\n                \"Improvements or additions to documentation\": \"文檔的改進或補充\",\n            \"duplicate\": \"重複\",\n                \"This issue or pull request already exists\": \"這個議題或拉取請求已經存在\",\n            \"enhancement\": \"增強\",\n                \"New feature or request\": \"新功能或請求\",\n            \"good first issue\": \"好的首發議題\",\n                \"Good for newcomers\": \"適合新人\",\n            \"help wanted\": \"需要幫助\",\n                \"Extra attention is needed\": \"需要特別關注\",\n            \"invalid\": \"無效\",\n                \"This doesn't seem right\": \"這似乎不對\",\n            \"question\": \"問題\",\n                \"Further information is requested\": \"要求提供更多信息\",\n            \"wontfix\": \"不會修復\",\n                \"This will not be worked on\": \"這將不會被處理\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/New repositories created in ([^ ]+) will use main as their default branch./, \"在 $1 中創建的新倉庫將使用 main 作為其默認分支。\"],\n        [/Your default branch name will be ([^ ]+)/, \"您的默認分支名稱將是 $1\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/topics\"] = { // 組織設置 - 倉庫 /倉庫主題\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 倉庫主題 /orgs/<org-login>/topics\n            \"No repositories\": \"尚無倉庫\",\n            \"A code repository designed to show the best GitHub has to offer.\": \"旨在展示 GitHub 必須提供的最佳程式碼倉庫。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/([^ ]+) repositories you contribute to/, \"您貢獻的 $1 倉庫\"],\n        [/There are no repositories in ([^ ]+) that you’ve contributed to and that you can set topics on./, \"$1  中沒有您貢獻過的並且可以設置主題的倉庫。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/codespaces\"] = { // 組織設置 - 倉庫 /程式碼空間\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n        \"To manage Codespace ownership settings, please\": \"要管理程式碼空間所有權設置，請\",\n        \"upgrade your plan\": \"升級您的計劃\",\n        \"to enable your organization.\": \"以啟用您的組織。\",\n\n        \"Codespaces access\": \"程式碼空間訪問\",\n            \"Manage access to GitHub Codespaces for your organization's members on private and internal repositories. Codespaces are always available on public repositories.\": \"管理組織成員對私有和內部倉庫中 GitHub 程式碼空間的訪問權限。程式碼空間始終在公共倉庫中可用。\",\n\n            \"By enabling Codespaces, you agree to GitHub’s\": \"啟用程式碼空間即表示您同意 GitHub 的\",\n            \"additional products and features terms\": \"附加產品和功能條款\",\n            \"and approve of these terms on behalf of your organization.\": \"並代表您的組織批准這些條款。\",\n\n            \"Disabled\": \"禁用\",\n                \"Disable GitHub Codespaces for all organization owned private and internal repositories\": \"禁用所有組織擁有的私有和內部倉庫的 GitHub 程式碼空間\",\n\n            \"Enable for specific members or teams\": \"為特定成員或團隊啟用\",\n                \"Enable GitHub Codespaces for specific organization members or teams on all organization owned private and internal repositories\": \"在所有組織擁有的私有和內部倉庫上為特定組織成員或團隊啟用 GitHub 程式碼空間\",\n\n            \"Enable for all members\": \"為所有成員啟用\",\n                \"Enable GitHub Codespaces for all organization members on all organization owned private and internal repositories\": \"在所有組織擁有的私有和內部倉庫上為所有組織成員啟用 GitHub 程式碼空間\",\n\n            \"Enable for all members and outside collaborators\": \"為所有成員和外部協作者啟用\",\n                \"Enable GitHub Codespaces for all organization members and outside collaborators on all organization owned private and internal repositories\": \"在所有組織擁有的私有和內部倉庫上為所有組織成員和外部協作者啟用 GitHub 程式碼空間\",\n\n        \"Codespace ownership\": \"程式碼空間所有權\",\n            \"Control who owns codespaces created by your organization’s members on organization owned repositories. Codespace ownership dictates who is billed for usage, whose policies apply, and where audit logs are sent.\": \"控制誰擁有組織成員在組織擁有的倉庫上創建的程式碼空間。程式碼空間所有權決定了由誰來支付使用費、適用誰的策略以及審計日誌發送到何處。\",\n\n            \"Organization ownership\": \"組織所有權\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the organization\": \"組織成員在組織倉庫上創建的所有程式碼空間都歸組織所有\",\n\n            \"User ownership\": \"用戶所有權\",\n                \"All codespaces created by your organization’s members on your organization’s repositories are owned by the creating member\": \"組織的成員在組織倉庫上創建的所有程式碼空間都歸創建成員所有\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/copilot\"] = {  // 組織設置 - GitHub Copilot\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 組織設置 - GitHub Copilot /orgs/<org-login>/settings/copilot\n            \"The AI powered pair programmer for your organization. Once you complete onboarding, you’ll have the ability to manage policies and control which users or teams will have access to\": \"為您的組織提供人工智能助理程式員。完成入職後，您將能夠管理策略並控制哪些用戶或團隊有權訪問組織內的\",\n            \"inside your organization.\": \"。\",\n\n            \"Enable GitHub Copilot\": \"啟用 GitHub Copilot\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/actions\"] = { // 組織設置 - 操作\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 操作頁面 /organizations/<org-login>/settings/actions\n            \"General actions permissions\": \"常規操作權限\",\n\n            \"Policies\": \"政策\",\n                \"Choose which repositories are permitted to use GitHub Actions.\": \"選擇允許哪些倉庫使用 GitHub Actions。\",\n                \"All repositories\": \"所有倉庫\",\n                    \"Actions can be run by any repository in the organization\": \"操作可以由組織中的任何倉庫運行\",\n                \"Selected repositories\": \"選定的倉庫\",\n                    \"Actions can only be run by specifically selected repositories\": \"操作只能由特定選擇的倉庫運行\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n                    \"selected repository\": \"個選定的倉庫\",\n                    \"selected repositories\": \"個選定的倉庫\",\n                    // 對話框\n                        \"Select the organization repositories that may use Actions.\": \"選擇可以使用操作的組織倉庫。\",\n                        \"Filter repositories\": \"篩選倉庫\",\n                        \"No repositories found.\": \"未找到倉庫。\",\n                        \"Select repositories\": \"選定倉庫\",\n                \"Disabled\": \"禁用\",\n                    \"GitHub Actions is disabled for all repositories in the organization\": \"對組織中的所有倉庫禁用 GitHub Actions\",\n\n                \"Allow all actions and reusable workflows\": \"允許所有操作和可複用的工作流程\",\n                    \"Any action or reusable workflow can be used, regardless of who authored it or where it is defined.\": \"可以使用任何操作或可複用的工作流程，而不管它是誰創作的或在哪裡定義的。\",\n                // [/Allow ([^ ]+) actions and reusable workflows/, \"允許 $1 的操作和可複用的工作流程\"],\n                //     [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 組織內的倉庫中定義的任何操作或可複用的工作流程。\"], // 操作頁面\n                // [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允許 $1，並選擇非 $2、操作和可複用的工作流程\"],\n                //     [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定條件的操作或可複用的工作流程，以及在 $1 組織內的倉庫中定義的操作或可複用的工作流程。\"], // 操作頁面\n                    \"Learn more about allowing specific actions and reusable workflows to run.\": \"瞭解更多關於允許運行特定操作和可複用的工作流程的信息。\",\n                    \"Allow actions created by GitHub\": \"允許由 GitHub 創建的操作\",\n                    \"Allow actions by Marketplace\": \"允許來自市場的操作，\",\n                    \"verified creators\": \"由經驗證的創建者創建\",\n                    \"Allow specified actions and reusable workflows\": \"允許指定的操作和可複用的工作流程\",\n                    \"Applies to\": \"適用於\",\n                    \"repositories only\": \"倉庫，僅僅\",\n                        // \"Workflows using these actions in private repositories will fail.\": \"在私有倉庫中使用這些操作的工作流程將失敗。\",\n                        // \"Using a list of specific actions is only supported for public repositories on your current GitHub plan. To have this list apply to private repositories,\": \"只有當前 GitHub 計劃中的公共倉庫才支持使用特定操作列表。要將此列表應用於私有倉庫，\",\n                        // \"upgrade your plan\": \"升級您的計劃\",\n                \"Enter a comma-separated list of actions and reusable workflows\": \"輸入以逗號分隔的操作和可複用的工作流程列表\",\n                \"Wildcards, tags, and SHAs are allowed.\": \"允許使用通配符、標籤和 SHA。\",\n                \"Action examples:\": \"操作示例：\",\n                \"Reusable workflow examples:\": \"可複用的工作流程示例：\",\n                \"Entire organization or repository examples:\": \"整個組織或倉庫的示例：\",\n\n                // 頂部提醒\n                    \"Actions policy updated.\": \"操作政策已更新\",\n\n            // 運行器\n                \"Choose which repositories are allowed to create repository-level self-hosted runners.\": \"選擇哪些倉庫允許創建倉庫級自託管運行器。\",\n                // 私有倉庫\n                    \"Repo-level self-hosted runners can be used by any repository in the organization\": \"組織內的任何倉庫都可以使用倉庫級自託管運行器\",\n                // 選定的倉庫\n                    \"Repo-level self-hosted runners can be used by specifically selected repositories\": \"選定的倉庫允許使用倉庫級自託管運行器\",\n                    \"Select the organization repositories that may use repository-level self-hosted runners.\": \"選擇組織中允許使用倉庫級自託管運行器的倉庫。\",\n                // 禁用\n                    \"Repo-level self-hosted runners are disabled for all repositories in the organization\": \"組織中的所有倉庫都禁用倉庫級別的自託管運行器\",\n\n                // 頂部提醒\n                    \"Repo-level self-hosted runners settings changed.\": \"倉庫級別的自託管運行器設置已更改。\",\n\n            \"Artifact and log retention\": \"工件和日誌保留\",\n                \"Choose the default repository settings for artifacts and logs.\": \"選擇工件和日誌的默認倉庫設置。\",\n                \"days\": \"天\",\n                \"You can set a maximum limit of\": \"您最多可以設置為\",\n                \"days.\": \"天。\",\n                \"Learn more about the artifact and log retention policy.\": \"瞭解更多關於工件和日誌保留政策的信息。\",\n                \"Duration must be 90 or less\": \"必須為 1-90\",\n                \"Duration must be 1 or more.\": \"必須為 1-90\",\n\n            \"Fork pull request workflows from outside collaborators\": \"從外部協作者，複刻拉取請求工作流程\",\n                \"Choose which subset of outside collaborators will require approval to run workflows on their pull requests.\": \"選擇哪些外部協作者的子集需要批准才能對他們的拉取請求運行工作流程。\",\n                \"Learn more about approving workflow runs from public forks.\": \"瞭解更多關於批准來自公共複刻的工作流運行的信息。\",\n                \"Require approval for first-time contributors who are new to GitHub\": \"要求對首次加入 GitHub 的貢獻者進行批准審查\",\n                    \"Only first-time contributors who recently created a GitHub account will require approval to run workflows.\": \"只有最近創建 GitHub 賬戶的首次貢獻者才需要獲得批准才能運行工作流程。\",\n                \"Require approval for first-time contributors\": \"要求對首次貢獻者進行批准審查\",\n                    \"Only first-time contributors will require approval to run workflows.\": \"只有首次貢獻者才需要獲得批准才能運行工作流程。\",\n                \"Require approval for all outside collaborators\": \"要求對所有外部協作者進行批准審查\",\n                    \"All outside collaborators will always require approval to run workflows on their pull requests.\": \"所有外部協作者將始終需要批准才能在他們的拉取請求上運行工作流程。\",\n                // 頂部提醒\n                    \"Fork pull request outside collaborators settings saved.\": \"外部協作者複刻拉取請求設置已保存。\",\n\n            \"Fork pull request workflows in private repositories\": \"私有倉庫的複刻拉取請求工作流程\",\n                \"These settings apply to private repositories. Repository administrators will only be able to change the settings that are enabled here.\": \"這些設置適用於私有倉庫。倉庫管理員只能改變這裡啟用的設置。\",\n                \"Run workflows from fork pull requests\": \"從複刻拉取請求運行工作流程\",\n                    \"This tells Actions to run workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks the ability to use tokens with read permissions on the source repository.\": \"這告訴 Actions 運行工作流程，來自倉庫複刻的拉取請求。請注意，這樣做將使這些複刻的維護者有能力在源碼庫上使用具有讀取權限的令牌。\",\n                    \"Send write tokens to workflows from fork pull requests.\": \"從複刻拉取請求，發送可寫令牌到工作流程\",\n                        \"This tells Actions to send tokens with\": \"這告訴 Actions 發送令牌\",\n                        \"write\": \"寫入\",\n                        \"permissions to workflows from pull requests originating from repository forks. Note that doing so will give maintainers of those forks\": \"權限到工作流程，來自倉庫複刻的拉取請求。請注意，這樣做將授予這些複刻的維護者\",\n                        \"permissions against the source repository.\": \"權限，針對源倉庫。\",\n                    \"Send secrets and variables to workflows from fork pull requests.\": \"從複刻拉取請求，發送機密和變量到工作流程\",\n                        \"This tells Actions to send repository secrets and variables to workflows from pull requests originating from repository forks.\": \"這告訴 Actions 發送倉庫機密和變量到工作流程，來自倉庫複刻的拉取請求。\",\n                    \"Require approval for fork pull request workflows.\": \"要求批准複刻 拉取請求工作流程。\",\n                        \"Fork pull requests from users without write access will require approval to run workflows.\": \"來自沒有寫入權限的用戶的複刻拉取請求需要獲得批准才能運行工作流程。\",\n                // 頂部提醒\n                    \"Fork pull request workflow settings saved.\": \"複刻拉取請求工作流程設置已保存。\",\n\n            \"Workflow permissions\": \"工作流程權限\",\n                \"Choose the default permissions granted to the GITHUB_TOKEN when running workflows in this organization. You can specify more granular permissions in the workflow using YAML.\": \"在組織中運行工作流程時，選擇授予 GITHUB_TOKEN 的默認權限。您可以使用 YAML 在工作流程中指定更細化的權限。\",\n                \"Learn more about managing permissions.\": \"瞭解更多關於管理權限的信息。\",\n\n                \"Repository administrators will only be able to change the default permissions to a more restrictive setting.\": \"倉庫管理員只能將默認權限改為更嚴格的設置。\",\n                    \"Read and write permissions\": \"讀取和寫入權限\",\n                        \"Workflows have read and write permissions in the repository for all scopes.\": \"工作流程在倉庫中對所有作用域具有讀和寫的權限。\",\n                    \"Read repository contents and packages permissions\": \"讀取倉庫的內容和軟體包的權限\",\n                        \"Workflows have read permissions in the repository for the contents and packages scopes only.\": \"工作流程在倉庫中僅對內容和軟體包作用域具有只讀的權限。\",\n                    \"Choose whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"選擇 GitHub Actions 是否可以創建拉取請求或提交批准拉取請求審查。\",\n                    \"Allow GitHub Actions to create and approve pull requests\": \"允許 GitHub Actions 創建和批准拉取請求\",\n                        \"This controls whether GitHub Actions can create pull requests or submit approving pull request reviews.\": \"這控制 GitHub Actions 是否可以創建拉取請求或提交批准的拉取請求審查。\",\n                    // 頂部提醒\n                        \"Default workflow permissions settings saved.\": \"默認工作流程權限設置已保存。\",\n\n            \"Required workflows\": \"所需的工作流程\",\n                \"Add workflow\": \"添加工作流\",\n                \"Set required workflows to run in your organization’s repositories. These workflows will run alongside the repository workflows and branch merging will be blocked until the required checks succeed.\": \"設置所需的工作流程，在您的組織的倉庫中運行。這些工作流程將與倉庫的工作流程一起運行，分支合併將被阻止，直到所需的檢查成功。\",\n                \"Learn more about required workflows.\": \"瞭解更多關於所需工作流程的信息。\",\n                \"There are no required workflows in this organization.\": \"此組織中尚無所需的工作流程。\",\n\n        // 運行器頁面 /organizations/<org-login>/settings/actions/runners\n            \"Includes all runners across self-hosted and GitHub-hosted runners.\": \"包括所有自託管和 GitHub 託管的運行器。\",\n\n            \"Host your own runners and customize the environment used to run jobs in your GitHub Actions workflows. Runners added to this organization can be used to process jobs in multiple repositories in your organization.\": \"託管您自己的運行器，並定製用於在您的 GitHub Actions 工作流程中運行作業的環境。添加到該組織的運行器可以用來處理您的組織中的多個倉庫的工作。\",\n            \"Learn more about self-hosted runners\": \"瞭解更多關於自託管運行器的信息\",\n\n            \"Search runners\": \"搜索運行器\",\n            \"New runner\": \"創建運行器\",\n                \"New self-hosted runner\": \"新建自託管運行器\",\n                    \"Bring your own infrastructure\": \"自備基礎設施\",\n                \"New GitHub-hosted runner\": \"新建 GitHub 託管運行器\",\n                    \"Pay-as-you-go, customizable, secure, scaled &\": \"即用即付、可定製、安全、可擴展並\",\n                    \"managed by GitHub\": \"由 GitHub 管理\",\n                \"Only available on paid Team or Enterprise plans\": \"僅適用於付費團隊或企業計劃\",\n\n            \"There are no runners configured\": \"暫無設置運行器\",\n            \"Learn more about using runners\": \"瞭解更多關於使用運行器的信息\",\n            \"to run actions on your own servers.\": \"在您自己的服務器上運行操作的信息。\",\n\n            \"Standard GitHub-hosted runners\": \"標準 GitHub 託管運行器\",\n            \"Ready-to-use runners managed by GitHub.\": \"由 GitHub 管理的即用型運行器。\",\n            \"Idle\": \"空閒\",\n            \"Active\": \"活躍\",\n            \"Offline\": \"離線\",\n            // [/(\\d+) active jobs?/ ,\"$1 個活躍的工作\"]\n\n        // 由 GitHub 託管的運行器 /organizations/<org-login>/settings/actions/hosted-runners\n            \"/ GitHub-hosted runners\": \"/ GitHub 託管運行器\",\n            \"All jobs usage\": \"所有工作的使用情況\",\n            \"To increase your concurrency limit, upgrade your\": \"要增加您的並發限制，請升級您的\",\n            \"GitHub plan.\": \"GitHub 計劃。\",\n\n            \"Labels\": \"標籤\",\n\n            \"Active jobs\": \"活躍的工作\",\n            \"There are currently no running jobs\": \"目前沒有正在運行的工作\",\n            \"Add `\": \"添加 `\",\n            \"` to your workflow's YAML to send jobs to GitHub-hosted runners.\": \"`到您的工作流程的YAML中，以發送作業到 GitHub 託管的運行器。\",\n\n        // 創建運行器頁面 /organizations/<org-login>/settings/actions/runners/new\n            \"/ Create self-hosted runner\": \"/ 創建自託管運行器\",\n            \"Adding a self-hosted runner requires that you download, configure, and execute the GitHub Actions Runner. By downloading and configuring the GitHub Actions Runner, you agree to the\": \"添加一個自託管運行器需要您下載、配置並執行 GitHub Actions 運行器。下載並配置 GitHub Actions 運行器 後，您同意\",\n                \"GitHub Terms of Service\": \"GitHub 服務條款\",\n                \"GitHub Corporate Terms of Service\": \"GitHub 企業服務條款\",\n                \", as applicable.\": \"，如適用。\",\n            \"Runner image\": \"運行器鏡像\",\n            \"Architecture\": \"架構\",\n            \"Download\": \"下載\",\n            // win 64\n            \"We recommend configuring the runner under \\\"\\\\actions-runner\\\". This will help avoid issues related to service identity folder permissions and long path restrictions on Windows.\": \"我們建議在 “\\\\actions-runner” 下配置運行器。這將有助於避免與 Windows 上的服務標識文件夾權限和長路徑限制相關的議題。\",\n            // macOS-arm64\n            \"macOS-arm64 runners are currently in pre-release status and subject to change.\": \"macOS-arm64 的運行器目前處於預發佈狀態，可能會有變化。\",\n            \"Configure\": \"設置\",\n            \"Using your self-hosted runner\": \"使用您的自託管運行器\",\n            \"For additional details about configuring, running, or shutting down the runner, please check out our\": \"關於配置、運行或關閉運行器的其他細節，請查看我們的\",\n            \"product docs\": \"產品文檔\",\n\n        // 運行器組 /organizations/<org-login>/settings/actions/runner-groups\n            \"Control access to your runners by specifying the repositories that are able to use your shared organization runners. New runners will be automatically assigned to the default group if no other group is specified. Upgrade to an Enterprise plan to create groups.\": \"通過指定能夠使用您的共享組織運行器的倉庫來控制對運行器的訪問。如果沒有指定其他組，新運行器將自動分配到默認組。升級到企業計劃以創建組。\",\n\n            \"Search runner groups\": \"搜索運行器組\",\n            \"New runner group\": \"創建運行器組\",\n\n            \"Group\": \"組\",\n            \"Default\": \"默認\",\n                \"This group cannot be deleted and new runners will be automatically assigned to this group if no other group is specified.\": \"該組不能被刪除，如果沒有指定其他組，新的運行器將被自動分配到該組。\",\n                \"All repositories, excluding public repositories\": \"所有倉庫，不包括公共倉庫\",\n\n        // 緩存 /organizations/<org-login>/settings/actions/caches\n            \"Caches\": \"緩存\",\n            \"You can use caches for dependencies and other commonly reused files to speed up your workflows. The data on this page have at least 5 minutes of latency.\": \"您可以對依賴項和其他經常重複使用的文件的緩存來加快您的工作流程。此頁面上的數據至少有 5 分鐘的延遲。\",\n            \"Learn more about caches\": \"瞭解更多關於緩存的信息\",\n\n            \"Search repositories\": \"搜索倉庫\",\n\n            \"Sort:\": \"排序：\",\n                \"Largest size\": \"最大尺寸\",\n                \"Smallest size\": \"最小尺寸\",\n\n            \"No repository uses caches\": \"尚無倉庫使用緩存\",\n            \"Nothing has been cached by workflows running in any repositories of this organization.\": \"該組織任何倉庫中運行的工作流程都未緩存任何內容。\",\n            \"Learn more about caching\": \"瞭解更多關於緩存\",\n            \"dependencies and build outputs to improve workflow execution time.\": \"依賴關係和構建輸出以改善工作流程執行時間的信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n        [/Allow ([^ ]+) actions and reusable workflows/, \"允許 $1 的操作和可複用的工作流程\"],\n        [/Any action or reusable workflow defined in a repository within the ([^ ]+) organization can be used./, \"可以使用在 $1 組織內的倉庫中定義的任何操作或可複用的工作流程。\"], // 操作頁面\n        [/Allow ([^ ]+), and select non-([^ ]+), actions and reusable workflows/, \"允許 $1，並選擇非 $2、操作和可複用的工作流程\"],\n        [/Any action or reusable workflow that matches the specified criteria, plus those defined in a repository within the ([^ ]+) organization, can be used./, \"可以使用符合指定條件的操作或可複用的工作流程，以及在 $1 組織內的倉庫中定義的操作或可複用的工作流程。\"], // 操作頁面\n        [/(\\d+) active jobs?/ ,\"$1 個活躍的工作\"], // settings/actions/runners\n        [/(\\d+) caches?/, \"$1 項緩存\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/discussions\"] = { // 組織設置 - 討論\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 討論 /organizations/<org-login>/settings/discussions\n            \"Discussions for your organization\": \"您組織的討論\",\n            \"Setting up Discussions for your organization will allow you to broadcast updates, answer questions, and hold conversations for the entire organization.\": \"為您的組織設置 “討論”，將您能夠為整個組織廣播更新、回答問題和舉行對話。\",\n            \"Enable discussions for this organization\": \"啟用組織的討論功能\",\n\n            \"Choose a source repository that will host the discussions.\": \"選擇承載討論的源碼庫。\",\n                \"All discussions on the source repository will be surfaced to the organization Discussions tab.\": \"源碼庫上的所有討論都將顯示在組織討論選項卡中。\",\n                \"Permissions from the repository will be applied to the organization Discussions. By default, all members of the organization will be able to create and comment on discussions.\": \"來自倉庫的權限將應用於組織討論。默認情況下，組織的所有成員都可以創建討論並發表評論。\",\n                \"Members can now share updates or ask questions to the entire organization.\": \"成員現在可以向整個組織共享更新或提問。\",\n                \"For more information, see our documentation.\": \"有關更多信息，請參閱我們的文檔。\",\n\n                \"Choose a repository\": \"選擇倉庫\",\n                \"Search for a repository\": \"搜索倉庫\",\n\n            // 提醒\n                \"Organization discussions has been set up!\": \"組織討論已經建立！\",\n                \"View organization discussions\": \"查看組織討論\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/projects\"] = { // 組織設置 - 計劃 - 專案\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 專案 /organizations/<org-login>/settings/projects\n            \"Projects on GitHub help you organize and prioritize your work. You can create projects for specific feature work, comprehensive roadmaps, or even release checklists.\": \"GitHub 上的專案可以幫助您組織和安排工作的優先級。您可以為特定的功能工作、全面的路線圖、甚至是發佈清單創建專案。\",\n            \"Enable Projects for the organization\": \"啟用專案，為組織\",\n                \"This allows members to create projects for the\": \"允許成員創建專案，為\",\n                \"organization. Members can create projects to organize and track issues from any\": \"組織。成員可以創建專案來組織和跟蹤來自任何\",\n                \"-owned repository.\": \"組織擁有的倉庫。\",\n            \"Allow members to change project visibilities for this organization\": \"允許成員更改此組織的專案可見性\",\n                \"If enabled, members with admin permissions on a project can make the project public or private. If disabled, only organization owners can make the project public or private. All projects are private by default.\": \"如果啟用，在專案上有管理權限的成員可以將專案設為公開或私有。如果禁用，則只有組織所有者可以將專案設為公開或私有。默認情況下，所有專案都是私有的。\",\n\n            \"Welcome to projects\": \"歡迎來到專案！\",\n                \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\": \"專案表格的構造類似電子表格，為您提供了一個實時畫布，可用於篩選、排序和分組問題及拉取請求。您可以使用自定義字段和保存的視圖，根據自身需求對其進行定製。\",\n\n            \"Recommended templates\": \"推薦模板\",\n                \"Customize a selection of recommended project templates for this organization. These templates will be surfaced first when a member of the organization creates a new project.\": \"為此組織定製一系列推薦的專案模板。當組織成員創建新專案時，這些模板將首先出現。\",\n\n                \"Create your first GitHub project template\": \"創建第一個 GitHub 專案模板\",\n                    \"Templates can be used to quickly get started with a new project.\": \"模板可用於快速開始新專案。\",\n                \"New template\": \"新建模板\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/security\"] = { // 組織設置 - 身份驗證安全\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 身份驗證安全  /organizations/<org-login>/settings/security\n            \"Two-factor authentication\": \"雙因素身份驗證\",\n            \"Requiring an additional authentication method adds another level of security for your organization.\": \"要求額外的身份驗證方法為您的組織增加了另一個級別的安全性。\",\n            // [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求對 $1 組織中的每個成員進行雙因素身份驗證。\"],\n            \"Members, billing managers, and outside collaborators who do not have two-factor authentication enabled for their personal account will be removed from the organization and will receive an email notifying them about the change.\": \"未為其個人賬戶啟用雙因素身份驗證的成員、賬單管理員和外部協作者將從組織中刪除，並會收到一封電子郵件，通知他們有關更改。\",\n\n            // 頂部提醒\n                \"Enabling two-factor authentication requirement.\": \"啟用雙因素身份驗證。\",\n                \"Disabled two-factor authentication requirement.\": \"禁用雙因素身份驗證。\",\n\n            \"SSH Certificate Authorities\": \"SSH 證書頒發機構\",\n            \"Provide SSH certificates that members can use to access your resources with Git\": \"提供 SSH 證書，成員可以用 Git 來訪問您的資源\",\n            \"Try risk-free for 30 days\": \"無風險試用 30 天\",\n            \"learn more\": \"瞭解更多\",\n            \", or\": \"，或\",\n            \"dismiss this message.\": \"忽略此消息。\",\n\n            \"IP allow list\": \"IP 允許列表\",\n            \"An IP allow list lets your organization limit access based on the IP address a person is accessing from.\": \"IP 允許列表可讓您的組織根據成員訪問的 IP 地址來限制訪問。\",\n            \"Restrict access to your organization's assets by configuring a list of IP addresses that are allowed to connect\": \"通過配置 IP 允許列表來限制對組織資產的訪問\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Require two-factor authentication for everyone in the ([^]+) organization./, \"要求對 $1 組織中的每個成員進行雙因素身份驗證。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/security_analysis\"] = { // 組織設置 - 程式碼安全性與分析\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 程式碼安全性與分析 /organizations/<org-login>/settings/security_analysis\n            \"Try our new settings\": \"嘗試我們的新設置\",\n            // 頂部提醒\n                \"Something went wrong. Please try again.\": \"出了些問題。請再試一次。\",\n\n            \"Security and analysis features help keep your repositories secure and updated. By enabling these features, you're granting us permission to perform read-only analysis on your organization's repositories.\": \"安全和分析功能有助於確保您的倉庫安全和更新。通過啟用這些功能，您授予我們對您組織的倉庫執行只讀分析的權限。\",\n\n            \"Disable all\": \"禁用全部\",\n            \"Enable all\": \"啟用全部\",\n\n            \"Private vulnerability reporting\": \"私下漏洞報告\",\n                \"Allow your community to privately report potential security vulnerabilities to maintainers and repository owners.\": \"允許您的社區向維護者和倉庫所有者私下報告潛在的安全漏洞。\",\n                \"Learn more about private vulnerability reporting\": \"瞭解更多關於私下漏洞報告的信息\",\n                \"Automatically enable for new public repositories\": \"為新公共倉庫自動啟用\",\n\n                // 對話框\n                    \"Enable private vulnerability reporting\": \"啟用私下漏洞報告\",\n                        // [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將啟用 $1 組織中的所有私有倉庫上的私下漏洞報告。\"],\n\n                    \"Disable private vulnerability reporting\": \"禁用私下漏洞報告\",\n                        // [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將禁用 $1 組織中所有私有倉庫上的私下漏洞報告。\"],\n                        \"Enable by default for new public repositories\": \"默認啟用新公共倉庫\",\n\n            \"Dependency graph\": \"依賴關係圖\",\n                \"Understand your dependencies.\": \"瞭解您的依賴項。\",\n                \"Automatically enable for new private repositories\": \"為新私有倉庫自動啟用\",\n\n                // 對話框\n                    \"Enable dependency graph\": \"啟用依賴關係圖\",\n                        // [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即將啟用 $1 組織中的所有私有倉庫上的依賴關係圖。\"],\n\n                    \"Disable dependency graph\": \"禁用依賴關係圖\",\n                        // [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即將禁用 $1 組織中所有私有倉庫上的依賴關係圖。這也將禁用這些倉庫的 Dependabot 警報和 Dependabot 安全更新。\"],\n                        \"Enable by default for new private repositories\": \"默認為新私有倉庫啟用\",\n\n            // Dependabot\n                \"Keep your dependencies secure and up-to-date.\": \"保持您的依賴關係的安全和最新\",\n                \"Learn more about Dependabot\": \"瞭解更多關於 Dependabot 的信息\",\n\n                \"Dependabot alerts\": \"Dependabot 警報\",\n                    \"Receive alerts for vulnerabilities that affect your dependencies and manually generate Dependabot pull requests to resolve these vulnerabilities.\": \"接收影響您的依賴關係的漏洞警報，並手動生成 Dependabot 拉取請求以解決這些漏洞。\",\n                        \"Configure alert notifications\": \"配置警報通知\",\n                    \"Automatically enable for new repositories\": \"為新倉庫自動啟用\",\n\n                // 對話框\n                    \"Enable Dependabot alerts\": \"啟用 Dependabot 警報\",\n                        // [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即將啟用 $1 組織中所有倉庫上的 Dependabot 警報。Dependabot 警報需要依賴關係圖，因此我們還將為所有倉庫開啟它。啟用 Dependabot 警報時不會發送任何通知。\"],\n\n                    \"Disable Dependabot alerts\": \"禁用 Dependabot 警報\",\n                        // [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即將禁用 $1 組織中所有倉庫上的 Dependabot 警報。這也將禁用這些倉庫的 Dependabot 安全更新。\"],\n                        \"Enable by default for new repositories\": \"默認為新倉庫啟用\",\n\n                \"Dependabot rules\": \"Dependabot 規則\",\n                    \"Create your own custom rules and manage alert presets.\": \"創建您自己的自定義規則並管理警報預設。\",\n                    // [/(\\d+) rules? enabled/, \"$1 條規則啟用\"],\n\n            \"Dependabot security updates\": \"Dependabot 安全更新\",\n                \"Enabling this option will result in Dependabot automatically attempting to open pull requests to resolve every open Dependabot alert with an available patch. If you would like more specific configuration options, leave this disabled and use\": \"啟用後，Dependabot 會自動嘗試打開拉取請求，以使用可用補丁解決每個打開的 Dependabot 警報。如果您想要更具體的配置選項，請將其禁用並使用\",\n                    // \"Dependabot rules\": \"Dependabot 規則\",\n\n                // 對話框\n                    \"Enable Dependabot security updates\": \"啟用 Dependabot 安全更新\",\n                        // [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即將啟用 $1 組織中的所有倉庫上的 Dependabot 安全更新。Dependabot 安全更新需要依賴項關係圖和 Dependabot 警報，因此我們還將為所有倉庫開啟他們。\"],\n\n                    \"Disable Dependabot security updates\": \"禁用 Dependabot 安全更新\",\n                        // [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即將禁用 $1 組織中的所有倉庫上的 Dependabot 安全更新。\"],\n\n            \"Grouped security updates\": \"分組安全更新\",\n                \"Groups all available updates that resolve a Dependabot alert into one pull request (per package manager and directory of requirement manifests). This option may be overridden by group rules specified in dependabot.yml -\": \"將解決可靠警報的所有可用更新分組為一個拉取請求（每個包管理器和需求清單目錄）。該選項可被 dependabot.yml 中指定的組規則覆蓋 -\",\n                \"learn more here\": \"在此瞭解更多\",\n\n                // 對話框\n                    \"Enable grouped security updates\": \"啟用分組安全更新\",\n                        // [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即將啟用 $1 組織中的所有倉庫上的分組安全更新。分組安全更新需要依賴項關係圖、Dependabot警報、Dependabot安全更新和 Dependabot安全更新，因此我們還將為所有倉庫開啟他們。\"],\n\n                    \"Disable grouped security updates\": \"禁用分組安全更新\",\n                        // [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即將禁用 $1 組織中的所有倉庫上的分組安全更新。\"],\n\n            \"Code scanning\": \"程式碼掃描\",\n                \"Identify vulnerabilities and errors with\": \"識別程式碼中的漏洞和錯誤，通過\",\n                \". Default CodeQL analysis will be set up on\": \"。默認的 CodeQL 分析將被設置為\",\n                \"eligible\": \"符合條件的\",\n                \"public repositories.\": \"公共倉庫。\",\n\n                \"Recommend the extended query suite for repositories enabling default setup\": \"建議為啟用默認設置的倉庫提供擴展查詢套件\",\n                    \"The extended query includes the default suite, plus lower severity and precision queries.\": \"擴展查詢包括默認套件，以及較低嚴重性和精度的查詢。\",\n\n                // 對話框\n                    \"Enable code scanning default setup\": \"啟用程式碼掃描默認設置\",\n                        \"This will turn on CodeQL default setup for all eligible public repositories and repositories with GitHub Advanced Security enabled.\": \"這將為所有符合條件的公共倉庫和已啟用 GitHub 高級安全功能的倉庫開啟 CodeQL 默認設置。\",\n                        \"What makes a repository eligible for default setup?\": \"怎樣的倉庫符合默認設置？\",\n                        \"Query suites\": \"查詢套件\",\n                            \"Group of queries\": \"查詢套件\",\n                            \"to run against your code.\": \"針對您的程式碼運行。\",\n\n                            \"Default\": \"默認\",\n                                \"Recommended\": \"推薦\",\n                                \"CodeQL high-precision queries.\": \"CodeQL 高精度查詢。\",\n                            \"Extended\": \"擴展\",\n                                \"Queries from the default suite, plus lower severity and precision queries.\": \"來自默認套件的查詢，以及較低嚴重性和精度查詢。\",\n                                \"Recommended by your organization. Queries from the default suite, plus lower severity and precision queries.\": \"由您的組織推薦。來自默認套件的查詢，以及較低嚴重性和精度的查詢。\",\n                        \"Code scanning uses GitHub Actions. Also, repositories where code scanning is already enabled will not be re-enabled.\": \"程式碼掃描使用 GitHub Actions。此外，已啟用程式碼掃描的倉庫將不會重新啟用。\",\n\n                    \"Disable code scanning default setup\": \"禁用程式碼掃描默認設置\",\n                        \"This will disable CodeQL default setup on all repositories where it is enabled.\": \"這將禁用所有倉庫的 CodeQL 默認設置。\",\n\n            \"Secret scanning\": \"機密掃描\",\n                \"Receive alerts on GitHub for detected secrets, keys, or other tokens.\": \"在 GitHub 上接收有關檢測到的機密、密鑰或其他令牌的警報。\",\n\n                \"Push protection\": \"推送保護\",\n                    \"Block commits that contain\": \"阻止提交，包含\",\n                    \"supported secrets\": \"受支持的機密\",\n                    \"Automatically enable for repositories added to secret scanning\": \"自動啟用對添加到機密掃描的倉庫進行掃描\",\n                    \"Add a resource link in the CLI and web UI when a commit is blocked\": \"當提交被阻止時，在 CLI 和 Web UI 中添加資源鏈接。\",\n                        \"Link will show in addition to\": \"顯示鏈接和\",\n                        \"the message GitHub displays\": \"GitHub 顯示的消息\",\n                        \"Save link\": \"保存鏈接\",\n\n                // 對話框\n                    \"Enable secret scanning for eligible repositories?\": \"啟用適用倉庫的機密掃描？\",\n                        \"This will turn on secret scanning for all public repositories.\": \"這將為所有公共倉庫啟用機密掃描。\",\n                        \"Enable for eligible repositories\": \"啟用符合條件的倉庫\",\n\n                    \"Disable secret scanning?\": \"禁用機密掃描？\",\n                        \"This will disable secret scanning on all repositories where it is enabled.\": \"這將禁用所有倉庫的機密掃描。\",\n                        \"Disable secret scanning\": \"禁用機密掃描\",\n\n                    \"Enable push protection for eligible repositories?\": \"為符合條件的倉庫啟用推送保護？\",\n                        \"This will turn on push protection for all repositories that have secret scanning enabled.\": \"這將為所有已啟用秘密掃描的倉庫啟用推送保護。\",\n                        \"Push protection coverage\": \"推送保護覆蓋範圍\",\n                        \"Already enabled\": \"已啟用\",\n                        \"Will be enabled\": \"將啟用\",\n                        \"Not eligible\": \"不符合條件\",\n\n                    \"Disable push protection?\": \"禁用推送保護？\",\n                        // [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"這將在已啟用推送保護的 $1 個倉庫中禁用推送保護。\"],\n                        \"You can still enable push protection at the repository level.\": \"您仍然可以在倉庫級別啟用推送保護。\",\n                        \"Disable push protection\": \"禁用推送保護\",\n\n            \"Grant Dependabot access to private repositories\": \"授予 Dependabot 訪問私有庫權限\",\n                \"In order to update dependencies in your organization, Dependabot accesses dependencies in all public repositories and the selected private repositories. The contents of these repositories will be accessible to all users in your organization through Dependabot updates. Be sure that you want to share these repositories with everyone in your organization or consider using private registries instead.\": \"為了更新組織中的依賴項，Dependabot 會訪問所有公共倉庫和選定的私有庫中的依賴項。您組織中的所有用戶都可以通過 Dependabot 更新訪問這些倉庫內容。請確保您想與組織中的每個人共享這些倉庫，或考慮使用私有註冊表。\",\n                \"Add private repositories\": \"添加私有庫\",\n                    \"Add a private repository\": \"添加私有庫\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n\n            \"Security managers\": \"安全管理員\",\n                \"Grant a team permission to manage security alerts and settings across your organization. This team will also be granted read access to all repositories.\": \"授予團隊管理整個組織的安全警報和設置的權限。該團隊還將被授予對所有倉庫的讀取權限。\",\n                \"Learn more about these security privileges\": \"瞭解更多關於這些安全特權的信息\",\n                \"Search for teams\": \"搜索團隊\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/You're about to enable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將啟用 $1 組織中的所有私有倉庫上的私下漏洞報告。\"],\n        [/You're about to disable private vulnerability reporting on all public repositories in ([^ ]+)./, \"您即將禁用 $1 組織中的所有私有倉庫上的私下漏洞報告。\"],\n        [/You're about to enable dependency graph on all private repositories in ([^ ]+)./, \"您即將啟用 $1 組織中的所有私有倉庫上的依賴項關係圖。\"],\n        [/You're about to disable dependency graph on all private repositories in ([^ ]+). This will also disable Dependabot alerts and Dependabot security updates on those repositories./, \"您即將禁用 $1 組織中所有私有倉庫上的依賴項關係圖。這也將禁用這些倉庫的 Dependabot 警報和 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot alerts on all repositories in ([^ ]+). Alerts require the dependency graph, so we'll also turn that on for all repositories. No notifications will be sent while Dependabot alerts are being enabled./, \"您即將啟用 $1 組織中所有倉庫上的 Dependabot 警報。Dependabot 警報需要依賴項關係圖，因此我們還將為所有倉庫開啟它。啟用 Dependabot 警報時不會發送任何通知。\"],\n        [/You're about to disable Dependabot alerts on all repositories in ([^ ]+). This will also disable Dependabot security updates on those repositories./, \"您即將禁用 $1 組織中所有倉庫上的 Dependabot 警報。這也將禁用這些倉庫的 Dependabot 安全更新。\"],\n        [/You're about to enable Dependabot security updates on all repositories in ([^ ]+). Dependabot security updates require the dependency graph and Dependabot alerts, so we'll also turn that on for all repositories./, \"您即將啟用 $1 組織中的所有倉庫上的 Dependabot 安全更新。Dependabot 安全更新需要依賴項關係圖和 Dependabot 警報，因此我們還將為所有倉庫開啟他們。\"],\n        [/You're about to disable Dependabot security updates on all repositories in ([^ ]+)./, \"您即將禁用 $1 組織中的所有倉庫上的 Dependabot 安全更新。\"],\n        [/You're about to enable grouped security updates on all repositories in ([^ ]+). Grouped security updates require the dependency graph, Dependabot alerts, Dependabot security updates and Dependabot security updates, so we'll also turn that on for all repositories./, \"您即將啟用 $1 組織中的所有倉庫上的分組安全更新。分組安全更新需要依賴項關係圖、Dependabot警報、Dependabot安全更新和 Dependabot安全更新，因此我們還將為所有倉庫開啟他們。\"],\n        [/You're about to disable grouped security updates on all repositories in ([^ ]+)./, \"您即將禁用 $1 組織中的所有倉庫上的分組安全更新。\"],\n        [/This will disable push protection on (\\d+) repositori(y|es) where it is enabled./, \"這將在已啟用推送保護的 $1 個倉庫中禁用推送保護。\"],\n        [/(\\d+) rules? enabled/, \"$1 條規則啟用\"],\n        [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/dependabot_rules\"] = { // 組織設置 - Dependabot 規則\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Dependabot 規則 /organizations/<org-login>/settings/dependabot_rules\n            // 頂部提醒\n                \"Rule created.\": \"規則已創建。\", // 倉庫規則\n                \"Rule saved. It may take a moment for this rule to be applied to matching alerts\": \"規則已保存。此規則可能需要一段時間才能應用於匹配的警報\",\n                \"Rule saved.\": \"規則已保存。\",\n                \"Rule was successfully deleted.\": \"規則已成功刪除。\",\n\n            \"/ Dependabot rules\": \"/ Dependabot 規則\",\n            \"New rule\": \"新建規則\",\n            \"GitHub presets\": \"GitHub 預設\",\n                \"Managed by GitHub\": \"由 GitHub 管理\",\n                \"Edit curated rule\": \"編輯策劃規則\",\n                \"Edit rule\": \"編輯規則\",  // 倉庫規則\n                \"Dismiss low-impact alerts for development-scoped dependencies\": \"解除開發範圍下依賴項的低影響警報\",\n                    \"In a developer (non-production or runtime) environment, these alerts are unlikely to be exploitable or have limited effect like slow builds or long-running tests.\": \"在開發人員（非生產或運行時）環境中，這些警報不太可能被利用，或者影響有限，例如緩慢的構建或長時間運行的測試。\",\n                    \"Learn more about this methodology.\": \"瞭解更多關於此方式的信息。\",\n            \"Repository rules\": \"倉庫規則\", // 倉庫規則\n            \"Organization rules\": \"組織規則\",\n                // [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n                \"Edit custom rule\": \"編輯自定義規則\",\n\n        // 新建規則 /organizations/<org-login>/settings/dependabot_rules/new\n            // 頂部警告\n                \"The following inputs have errors:\": \"以下輸入有錯誤：\",\n\n            \"Dependabot rules\": \"Dependabot 規則\",\n            \"/ New rule\": \"/ 新建規則\",\n            \"Rule name\": \"規則名稱\",\n                \"Add a rule name\": \"添加規則名稱\",\n            \"State\": \"狀態\",\n                \"Rules will target all public repositories in this organization.\": \"規則將針對該組織中的所有公共倉庫。\",\n                    \"Enabled\": \"啟用\",\n                        \"Rule is enabled by default for all public repositories.\": \"默認情況下，規則對所有公共倉庫啟用。\",\n                    \"Enforced\": \"強制\",\n                        \"Rule is enabled for all public repositories and can never be disabled by individual repositories.\": \"規則對所有公共倉庫啟用，單個倉庫永遠無法禁用。\",\n                    \"Disabled\": \"禁用\",\n                        \"Rule can never be enabled on any repositories.\": \"規則永遠不能在任何倉庫中啟用。\",\n            \"Target alerts\": \"目標警告\",\n                \"Add rule metadata\": \"添加規則元數據\",\n                    \"Suggested filters\": \"建議的過濾器\",\n                        \"severity:\": \"嚴重度：\",\n                            \"critical, high, moderate, low\": \"嚴重、高、中、低\",\n                                \"Severities\": \"嚴重度\",\n                                    \"critical\": \"嚴重\",\n                                    \"high\": \"高\",\n                                    \"moderate\": \"中\",\n                                    \"low\": \"低\",\n                        \"package:\": \"軟體包：\",\n                            \"package-name\": \"軟體包名稱\",\n                        \"ecosystem:\": \"生態系統：\",\n                            \"ecosystem-name\": \"生態系統名稱\",\n                        \"scope:\": \"範圍：\",\n                            \"runtime, development\": \"運行時、開發\",\n                                \"Scopes\": \"範圍\",\n                                    \"runtime\": \"運行時\",\n                                    \"development\": \"開發\",\n                        \"cwe:\": \"CWE：\",\n                            \"cwe-number\": \"CWE 號碼\",\n                \"Rules will be applied for alerts matching all included metadata.\": \"規則將應用於與所有包含的元數據匹配的警報。\",\n            \"Rules\": \"規則\",\n                \"Select one or more rules to apply to matching alerts.\": \"選擇一個或多個規則以應用於匹配的警報。\",\n                \"Dismiss alerts\": \"忽略警報\",\n                    \"Dependabot will automatically close or reopen alerts based on selected criteria.\": \"Dependabot 將根據選定的條件自動關閉或重新打開警報。\",\n                    \"Until patch is available\": \"直到補丁可用為止\",\n                    \"Indefinitely\": \"無限期\",\n                \"Open a pull request to resolve alerts\": \"打開拉取請求以解決警報\",\n                    \"Dependabot will attempt to open security updates based on selected criteria.\": \"Dependabot 將嘗試根據選定的標準打開安全更新。\",\n            \"Create rule\": \"創建規則\",\n\n        // 編輯規則 /organizations/<org-login>/settings/dependabot_rules/edit/<id>\n            \"/ Edit rule\": \"/ 編輯規則\",\n            \"Save rule\": \"保存規則\",\n\n            \"Danger Zone\": \"危險區\",\n                \"Delete this rule\": \"刪除規則\",\n                    \"Deleting this rule can potentially reopen associated alerts.\": \"刪除此規則可能會重新打開相關警報。\",\n                    \"Delete rule\": \"刪除規則\",\n\n                    \"Are you sure you want to delete this rule?\": \"您確定要刪除此規則嗎？\",\n                        // [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"這將永久刪除規則 “$1” 並可能重新打開相關警報。\"],\n\n        // 編輯默認規則 /organizations/<org-login>/settings/dependabot_rules/edit_default/1\n            \"/ GitHub Preset rule\": \"/ GitHub 預設規則\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Managed by ([^ ]+)/, \"由 $1 管理\"],\n        [/This will permanently delete the rule \\\"(.*)\\\" and potentially reopen associated alerts./, \"這將永久刪除規則 “$1” 並可能重新打開相關警報。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"repository/settings/dependabot_rules\"] = I18N[\"zh-TW\"][\"orgs/settings/dependabot_rules\"];\n\nI18N[\"zh-TW\"][\"orgs/settings/domains\"] = { // 組織設置 - 經驗證和批准的域名\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 經驗證和批准的域名 /organizations/<org-login>/settings/domains\n            \"Verified & approved domains\": \"經驗證和批准的域名\",\n            \"Add a domain\": \"添加域名\",\n            \"You can verify the domains controlled by your organization to confirm your organization's identity on GitHub. A\": \"您可以驗證組織控制的域，以確認組織在 GitHub 上的身份。一個\",\n            \"badge will be added to your organization's profile page if all of the domains displayed on your profile (e.g. public email or website URL) are verified. You may also approve a domain by first adding it to the list of eligible domains. Approved domains may be used for email notification routing to users with verified emails that do not belong to a domain that you can verify.\": \"的徽章，您的組織的資料頁面上顯示，則表明您的資料中顯示的所有域名（例如公共電子郵箱地址或網站 URL）都經過驗證。您也可以通過，首先將一個域名添加到合格的域名列表中來批准該域名。已批准的域名可用於通過電子郵件通知具有經過驗證的郵箱地址的用戶，這些電子郵箱地址不屬於您可以驗證的域名。\",\n            \"Learn more about verifying or approving a domain for your enterprise.\": \"瞭解更多關於驗證或批准企業域名的信息。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/secrets\"] = { // 組織設置 - 機密和變量\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"confirm-access\"][\"static\"],\n\n        // 操作機密 /organizations/<org-login>/settings/secrets/actions\n            \"Actions secrets and variables\": \"操作機密和變量\",\n            \"Secrets and variables allow you to manage reusable configuration data. Secrets are\": \"機密和變量允許您管理可重複使用的配置數據。機密是\",\n            \"encrypted\": \"被加密\",\n            \"and are used for sensitive data.\": \"，用於敏感數據。\",\n            \"Learn more about encrypted secrets\": \"瞭解更多關於加密機密的信息\",\n            \". Variables are shown as plain text and are used for\": \"。變量是明文顯示，用於\",\n            \"non-sensitive\": \"不敏感\",\n            \"data.\": \"數據。\",\n            \"Learn more about variables\": \"瞭解更多關於變量的信息\",\n\n            \"Anyone with collaborator access to the repositories with access to a secret or variable can use it for Actions. They are not passed to workflows that are triggered by a pull request from a fork.\": \"任何具有協作者權限的人，只要能接觸到機密或變量，都可以將其用於操作。它們不會被傳遞到由複刻的拉取請求觸發的工作流中。\",\n\n            \"Organization secrets and variables cannot be used by private repositories with your plan.\": \"在您的計劃中私有倉庫不能使用組織機密和變量。\",\n            \"Please consider\": \"請考慮\",\n            \"upgrading your plan\": \"升級您的計劃\",\n            \"if you require this functionality.\": \"如果您需要此功能。\",\n\n            \"Secrets\": \"機密\",\n            \"Variables\": \"變量\",\n\n            \"Organization secrets\": \"組織機密\",\n                \"This organization has no secrets.\": \"該組織尚無機密。\",\n                \"New organization secret\": \"新建組織機密\",\n\n            \"Visibility\": \"可見性\",\n            \"Last updated\": \"最後更新\",\n\n            // 頂部提醒\n                \"Failed to add secret. Secret names can only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_). Spaces are not allowed. Must start with a letter ([a-z], [A-Z]) or underscores (_).\": \"添加機密失敗。機密名稱只能包含字母數字字符（[a-z]、[A-Z]、[0-9]）或下劃線 (_)。不允許有空格。必須以字母 ([a-z], [A-Z]) 或下劃線 (_) 開頭。\",\n                \"Secret added.\": \"機密已添加。\",\n                \"Secret updated.\": \"機密已更新。\",\n                \"Secret deleted.\": \"機密已刪除。\",\n\n            // 刪除機密對話框\n            \"Delete secret\": \"刪除機密\",\n                \"Are you sure you want to delete\": \"您確定要刪除\",\n                    \"Deleting\": \"刪除\",\n                    \"Unable to delete\": \"無法刪除\",\n                \"Yes, delete this\": \"是的，刪除該\",\n                \"secret\": \"機密\",\n\n        // 新建組織機密 /organizations/<org-login>/settings/secrets/actions/new\n            \"Actions secrets\": \"操作機密\",\n            \"/ New secret\": \"/ 新建機密\",\n            \"Add secret\": \"添加機密\",\n                \"Adding…\": \"添加中…\",\n\n            \"Name\": \"名稱\",\n            \"Value\": \"值\",\n\n            \"Repository access\": \"倉庫權限\",\n            \"Public repositories\": \"公共倉庫\",\n                \"This secret may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"該機密可由組織中的公共倉庫使用。付費的 GitHub 計劃包括私有倉庫。\",\n            \"Private repositories\": \"私有倉庫\",\n                \"Organization secrets cannot be used by private repositories with your plan.\": \"在您的計劃中私有倉庫不能使用組織機密。\",\n            \"Selected repositories\": \"選定的倉庫\",\n                \"This secret may only be used by specifically selected repositories.\": \"該機密只能由特定倉庫使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n                // 機密倉庫訪問 對話框\n                    \"Secret repository access\": \"機密倉庫訪問\",\n                    \"Select the organization repositories that may use this secret.\": \"選擇可以使用該機密的組織倉庫。\",\n                        \"Filter repositories\": \"篩選倉庫\",\n                        \"selected repository\": \"個選定的倉庫\",\n                        \"selected repositories\": \"個選定的倉庫\",\n                    \"Update selection\": \"更新選擇\",\n\n        // 更新操作機密 /organizations/<org-login>/settings/secrets/actions/<name>\n            \"/ Update secret\": \"/ 更新機密\",\n            \"Secret values are encrypted and cannot be displayed, but you can\": \"機密值已加密，無法顯示，但您可以\",\n            \"enter a new value.\": \"輸入一個新值。\",\n\n        // 操作變量 /organizations/<org-login>/settings/variables/actions\n            \"Create new organization variable\": \"新建組織變量\",\n\n            \"Organization variables\": \"組織變量\",\n            \"This organization has no variables.\": \"此組織尚無變量。\",\n\n            // 刪除變量對話框\n            \"Delete variable\": \"刪除變量\",\n                \"variable\": \"變量\",\n\n        // 新建組織變量 /organizations/<org-login>/settings/variables/actions/new\n            \"Actions variables\": \"操作變量\",\n            \"/ New variable\": \"/ 新建變量\",\n            \"Note: Variable values are exposed as plain text. If you need to encrypt and mask sensitive information,\": \"注意：變量值是以純文本形式暴露的。如果您需要對敏感信息進行加密和屏蔽，請使用\",\n            \"create a secret\": \"創建機密\",\n            \"instead.\": \"代替。\",\n\n            \"Variable names may only contain alphanumeric characters ([a-z], [A-Z], [0-9]) or underscores (_).\": \"變量名稱只能包含字母數字字符（[A-Z]，[A-Z]，[0-9]）或僅下劃線（_）。\",\n            \"Variable names cannot start with a number.\": \"變量名稱不能以數字開頭。\",\n            \"Variable names cannot start with\": \"變量名稱不能以\",\n            \"prefix.\": \"前綴開頭。\",\n\n            // 變量名稱警示\n                \"Variable name can only contain alphanumeric characters. Special characters and spaces are not allowed.\": \"變量名稱只能包含字母數字字符。不允許特殊字符和空格。\",\n                \"Variable name can only start with a letter or underscore.\": \"變量名稱只能以字母或下劃線開頭。\",\n                \"Variable name cannot start with \\\"GITHUB_\\\" prefix.\": \"變量名稱不能以 “GITHUB_” 前綴開頭。\",\n\n            // \"Public repositories\": \"公共倉庫\",\n                \"This variable may be used by public repositories in the organization. Paid GitHub plans include private repositories.\": \"改變量可由組織中的公共倉庫使用。付費的 GitHub 計劃包括私有倉庫。\",\n            // \"Private repositories\": \"私有倉庫\",\n                \"Organization variables cannot be used by private repositories with your plan.\": \"在您的計劃中私有倉庫不能使用組織變量。\",\n            // \"Selected repositories\": \"選定的倉庫\",\n                \"This variable may only be used by specifically selected repositories.\": \"該變量只能由特定倉庫使用。\",\n                    // [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n                // 變量倉庫訪問 對話框\n                    \"Variable repository access\": \"變量倉庫訪問\",\n                    \"Select the organization repositories that may use this variable.\": \"選擇可以使用該變量的組織倉庫。\",\n\n            \"Add variable\": \"添加變量\",\n\n        // 更新組織變量 /organizations/<org-login>/settings/variables/actions/<name>\n            \"/ Update variable\": \"/ 更新變量\",\n            \"Update variable\": \"更新變量\",\n                \"Saving…\": \"保存中…\",\n                \"Save variable\": \"保存變量\",\n\n        // 程式碼空間機密 /organizations/<org-login>/settings/secrets/codespaces\n            \"Codespaces secrets\": \"程式碼空間機密\",\n            \"Development environment secrets are environment variables that are\": \"開發環境機密是環境變量\",\n            \"encrypted\": \"被加密\",\n            \". They are available to any codespace user with\": \"。任何程式碼空間用戶具有\",\n            \"collaborator\": \"協作者\",\n            \"access to the repositories with access to that secret.\": \"權限訪問該機密的倉庫。\",\n\n            \"Development environment secrets\": \"開發環境機密\",\n                \"This organization has no development environment secrets.\": \"該組織尚無開發環境機密。\",\n                \"New codespace secret\": \"新建程式碼空間機密\",\n\n        // Dependabot 機密 /organizations/<org-login>/settings/secrets/dependabot\n            \"Dependabot secrets\": \"Dependabot 機密\",\n            \"Secrets are credentials that are\": \"機密是憑證\",\n            \". Anyone with\": \"。任何對此倉庫具有\",\n            \"access to the repositories with access to each secret can use it for Dependabot.\": \"訪問權限的人都可以訪問倉庫的每個機密用於 Dependabot。\",\n            \"Secrets are not passed to forks.\": \"機密不會傳遞給複刻。\",\n\n        // Dependabot 機密 /organizations/<org-login>/settings/secrets/dependabot/new\n            \"All repositories\": \"所有倉庫\",\n            \"This secret may be used by any repository in the organization.\": \"組織中的任何倉庫都可以使用此機密。\",\n            \"This secret may be used by any private repository in the organization.\": \"組織中的任何私有倉庫都可以使用此機密。\",\n\n        // 私有登記表 /organizations/<org-login>/settings/secrets/private_registries\n            \"Private Registries\": \"私有註冊表\",\n            \"Private registry configurations include passwords or tokens that are handled as encrypted secrets. Access to private registry configurations is limited to\": \"私有註冊表配置包括加密處理的密碼或令牌作為機密。對私有註冊表配置的訪問僅限於\",\n            \"CodeQL default setup\": \"CodeQL 默認設置\",\n            \"for analyzing code. The automatically-generated name for a private registry configuration is visible to users in log files for debugging. No other information is accessible to users.\": \"用於分析程式碼。用戶可以在日誌文件中看到自動生成的私有註冊表配置名稱，以便進行調試。用戶無法訪問其他信息。\",\n            \"Private registry secrets\": \"私人註冊表機密\",\n\n            \"New private registry\": \"新建私有註冊表\",\n\n        // 新建私有登記表 /organizations/<org-login>/settings/secrets/private_registries/new\n            \"Private registries\": \"私有註冊表\",\n            \"New private registry\": \"新建私有註冊表\",\n            \"Select registry type\": \"選擇註冊表類型\",\n                \"Maven Repository\": \"Maven 倉庫\",\n                \"NuGet Feed\": \"NuGet 訂閱\",\n                \"Token\": \"令牌\",\n                \"Username and password\": \"用戶名和密碼\",\n                \"Username\": \"用戶名\",\n                \"Password\": \"密碼\",\n                \"Add Registry\": \"添加註冊表\",\n\n        // 編輯私有登記表 /organizations/<org-login>/settings/secrets/private_registries/<>\n            \"Edit private registry\": \"編輯私有註冊表\",\n            \"Type\": \"類型\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        [/(\\d+) selected repositor(y|ies)/, \"$1 個選定的倉庫\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"orgs/settings/variables\"] = I18N[\"zh-TW\"][\"orgs/settings/secrets\"];\n\nI18N[\"zh-TW\"][\"orgs/settings/oauth_application_policy\"] = { // 組織設置 - 第三方應用訪問策略\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 第三方應用訪問策略 /organizations/<org-login>/settings/oauth_application_policy\n            \"Third-party application access policy\": \"第三方應用訪問策略\",\n            \"Policy:\": \"策略：\",\n                \"Access restricted\": \"訪問受限\",\n                    \"Only approved applications can access data in this organization. Applications owned by\": \"只有獲得批准的應用才能訪問該組織中的數據。應用由\",\n                    \"always have access.\": \"擁有的始終可以訪問。\",\n                    \"Remove restrictions\": \"解除限制\",\n                    // 解除限制對話框\n                    \"Are you sure?\": \"您確定嗎？\",\n                    \"You’re about to remove all third-party application restrictions. Please read this carefully.\": \"您即將刪除所有第三方應用限制。請仔細閱讀。\",\n                    \"Removing third-party application restrictions will immediately give member authorized applications access to private data in the\": \"取消第三方應用限制，將立即允許成員授權的應用訪問私人數據，在\",\n                    \"Please be sure you want to do this.\": \"請確定您想這麼做。\",\n                    \"Yes, remove application restrictions\": \"是的，取消應用限制\",\n                \"No restrictions\": \"未受限\",\n                    \"All applications authorized by organization members have access to\": \"所有由組織成員授權的應用都可以訪問\",\n                    \"’s data.\": \"的數據。\",\n                    \"Setup application access restrictions\": \"設置應用訪問限制\",\n\n            \"Denied\": \"拒絕\",\n            \"Approved\": \"已批准\",\n\n            \"No pending requests\": \"沒有待處理的請求\",\n            \"As members request access for specific applications, those requests will be listed here for your approval. You can start by browsing\": \"當成員請求訪問特定應用時，這些請求將在此處列出以供您批准。您可以瀏覽\",\n            \"your own authorized applications\": \"您授權的應用\",\n\n            \"When authorized, applications can act on behalf of organization members. Your access policy determines which applications can access data in your organization.\": \"獲得授權後，應用可以代表組織成員進行操作。您的訪問策略決定了哪些應用可以訪問您組織中的數據。\",\n            \"Read more about third-party access and organizations.\": \"閱讀更多關於第三方訪問和組織的信息。\",\n\n        // 設置第三方應用訪問限制 /settings/oauth_application_policy/confirm\n            \"Third-party application restrictions\": \"第三方應用限制\",\n            \"create an extra layer of security that allows owners to better control how applications access data in their organization.\": \"創建一個額外的安全層，使所有者能夠更好地控制應用如何訪問其組織中的數據。\",\n\n            \"Organization owners maintain an allowlist of trusted applications.\": \"組織所有者維護受信任應用的允許列表。\",\n            \"Applications owned by\": \"應用擁有者\",\n                \"are always trusted.\": \"的應用始終受信任。\",\n            \"Members can request organization approval for an application.\": \"成員可請求組織批准應用。\",\n            \"Approval requests notify organization owners, allowing them to deny or approve application access.\": \"批准請求會通知組織所有者，允許他們拒絕或批准應用的訪問。\",\n            \"Only trusted applications can:\": \"只有受信任的應用才能：\",\n                \"Access private organization data via the API or SSH.\": \"通過 API 或 SSH 訪問私有組織數據。\",\n                \"Change public organization data.\": \"更改公共組織數據。\",\n                \"Receive webhooks for private events.\": \"接收私人事件的 Web 鉤子。\",\n\n            \"Restrict third-party application access\": \"限制第三方應用訪問\",\n            \"Restricting access will immediately block all unapproved applications and will disable SSH keys created before February 2014.\": \"限制訪問將立即阻止所有未經批准的應用，並禁用 2014 年 2 月前創建的 SSH 密鑰。\",\n            \"Read more at GitHub Help.\": \"請訪問 GitHub 幫助瞭解更多信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/personal-access-token\"] = { // 組織設置 - 個人訪問令牌\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 個人訪問令牌 - 精細化令牌 /organizations/<org-login>/settings/personal-access-tokens\n            \"Fine-grained tokens\": \"精細化令牌\",\n            \"Fine-grained personal access tokens\": \"精細化的個人訪問令牌\",\n                \"By default, fine-grained personal access tokens cannot access content owned by your organization via the Public API or Git. This includes both public and private resources such as repositories.\": \"默認情況下，精細化的個人訪問令牌不能通過公共 API 或 Git 訪問您組織擁有的內容。這包括公共和私人資源，如倉庫。\",\n                \"Allow access via fine-grained personal access tokens\": \"允許通過細化的個人訪問令牌進行訪問\",\n                    \"API and Git access will be allowed using approved organization member's fine-grained personal access tokens\": \"API 和 Git 訪問將被允許使用經批准的組織成員的精細化個人訪問令牌\",\n                \"Restrict access via fine-grained personal access tokens\": \"通過精細化的個人訪問令牌限制訪問。\",\n                    \"Organization members will not be allowed to access your organization using a fine-grained personal access token\": \"不允許組織成員使用精細化的個人訪問令牌訪問您的組織\",\n\n            \"Require approval of fine-grained personal access tokens\": \"要求批准精細化的個人訪問令牌\",\n                \"Access requests by organization members can be subject to review by administrator before approval.\": \"組織成員的訪問請求在批准之前可能需要經過管理員審查。\",\n                \"Require administrator approval\": \"需要管理員批准\",\n                    \"All access requests by organization members to this organization must be approved before the token is usable.\": \"組織成員對該組織的所有訪問請求都必須在令牌可用之前得到批准。\",\n                \"Do not require administrator approval\": \"不需要管理員批准\",\n                    \"Tokens requested for this organization will work immediately, and organization members are not required to provide a justification when creating the token.\": \"為該組織申請的令牌將立即生效，並且組織成員在創建令牌時無需提供理由。\",\n\n            \"Set maximum lifetimes for personal access tokens\": \"設置個人訪問令牌的最長使用期限\",\n                \"Control the maximum lifetime for fine-grained personal access tokens in your organizations. If set, your organization members can only use fine-grained personal access tokens against your resources if the tokens are set to expire within the period you provide.\": \"控制組織中精細化個人訪問令牌的最長使用期限。如果設置了，您的組織成員只能在您提供的期限內對您的資源使用精細化個人訪問令牌。\",\n                \"Learn more about token expiration policies.\": \"瞭解更多關於令牌過期策略的信息。\",\n\n            \"Fine-grained personal access tokens must expire\": \"精細化個人訪問令牌必須過期\",\n                \"Select a maximum lifetime for fine-grained personal access tokens to be allowed to access your organizations.\": \"選擇允許訪問組織的精細化個人訪問令牌的最長有效期。\",\n                // 有效期 下拉菜單\n                    \"7 days\": \"7 天\",\n                    \"30 days\": \"30 天\",\n                    \"60 days\": \"60 天\",\n                    \"90 days\": \"90 天\",\n                    \"366 days\": \"366 天\",\n                    \"Custom...\": \"自定義…\",\n\n                    \"days\": \"天\",\n                    \"between 1 and 366 days\": \"1 至 366 天之間\",\n\n        // 個人訪問令牌 - 令牌（經典）/organizations/<org-login>/settings/personal-access-tokens?tab=classic\n            \"Tokens (classic)\": \"令牌（經典）\",\n            \"Restrict personal access tokens (classic) from accessing your organizations\": \"限制個人訪問令牌（經典）訪問您的組織\",\n                \"By default, personal access tokens (classic) can access content owned by your organization via the GitHub API or Git over HTTPS. This includes both public and private resources such as repositories.\": \"默認情況下，個人訪問令牌（經典）可以通過 GitHub API 或基於 HTTPS 的 Git 訪問您組織擁有的內容。這包括公共和私有資源，例如倉庫。\",\n                \"Allow access via personal access tokens (classic)\": \"允許通過個人訪問令牌進行訪問（經典）\",\n                    \"API and Git access will be allowed using an organization member's personal access token (classic)\": \"允許組織成員使用個人訪問令牌（經典）訪問 API 和 Git。\",\n                \"Restrict access via personal access tokens (classic)\": \"通過個人訪問令牌限制訪問（經典）\",\n                    \"Organization members will not be allowed to access your organization using a personal access token (classic)\": \"不允許組織成員使用個人訪問令牌（經典）訪問您的組織\",\n\n            // 設置個人訪問令牌的最長使用期限\n                \"Control the maximum lifetime for personal access tokens (classic) in your organizations. If set, your organization members can only use personal access tokens (classic) against your resources if the tokens are set to expire within the period you provide.\": \"控制組織中個人訪問令牌（經典）的最長使用期限。如果設置了，您的組織成員只能在您提供的期限內對您的資源使用個人訪問令牌（經典）。\",\n                \"Personal access tokens (classic) must expire\": \"個人訪問令牌（經典）必須過期\",\n                    \"Select a maximum lifetime for personal access tokens (classic) to be allowed to access your organizations.\": \"選擇允許訪問組織的個人訪問令牌（經典）的最長使用期限。\",\n\n        // 活躍的令牌  /organizations/<org-login>/settings/personal-access-tokens/active\n            \"Filter active fine-grained tokens\": \"篩選活躍的精細化令牌\",\n            \"Tokens\": \"令牌\",\n            \"Owner\": \"所有者\",\n                \"Filter by owner\": \"按所有者篩選\",\n                \"Filter users\": \"篩選用戶\",\n                \"Clear\": \"清除\",\n\n            // \"Repository\": \"倉庫\",\n                \"Filter by repository\": \"按倉庫篩選\",\n                \"Filter repositories\": \"篩選倉庫\",\n\n            \"Permissions\": \"權限\",\n                \"Filter by permission\": \"按權限篩選\",\n                \"Filter permissions\": \"篩選權限\",\n                    \"read\": \"只讀\",\n                    \"write\": \"可寫\",\n                    \"Administration\": \"管理員\",\n                    \"Attestations\": \"證書\",\n                    \"Code scanning alerts\": \"程式碼掃描警報\",\n                    \"Codespaces lifecycle admin\": \"程式碼空間生命週期管理員\",\n                    \"Codespaces metadata\": \"程式碼空間元數據\",\n                    \"Codespaces secrets\": \"程式碼空間機密\",\n                    \"Commit statuses\": \"提交狀態\",\n                    \"Contents\": \"內容\",\n                    \"Dependabot alerts\": \"Dependabot 警報\",\n                    \"Dependabot secrets\": \"Dependabot 機密\",\n                    \"Deployments\": \"部署\",\n                    \"Environments\": \"環境\",\n                    \"Merge queues\": \"合併列隊\",\n                    \"Metadata\": \"元數據\",\n                    \"Repository announcement banners\": \"倉庫公告橫幅\",\n                    \"Repository security advisories\": \"倉庫安全公告\",\n                    \"Secret scanning alerts\": \"機密掃描警報\",\n                    \"Secrets\": \"機密\",\n                    \"Variables\": \"變量\",\n                    \"Workflows\": \"工作流程\",\n                    \"Organization\": \"組織\",\n                        \"API Insights\": \"API 透視\",\n                        \"Blocking users\": \"拉黑用戶\",\n                        \"Custom organization roles\": \"自定義組織角色\",\n                        \"Custom repository roles\": \"自定義倉庫角色\",\n                        \"Events\": \"活動\",\n                        \"GitHub Copilot Business\": \"GitHub Copilot 商業版\",\n                        \"Knowledge bases\": \"知識庫\",\n                        \"Members\": \"成員\",\n                        \"Organization announcement banners\": \"組織公告橫幅\",\n                        \"Organization codespaces\": \"組織程式碼空間\",\n                        \"Organization codespaces secrets\": \"組織程式碼空間機密\",\n                        \"Organization codespaces settings\": \"組織程式碼空間設置\",\n                        \"Organization dependabot secrets\": \"組織 Dependabot 機密\",\n                        \"Organization private registries\": \"組織私有註冊表\",\n                        \"Plan\": \"計劃\",\n                        \"Self-hosted runners\": \"自託管運行器\",\n\n            \"There aren't any fine-grained tokens for this organization\": \"該組織尚無任何精細化令牌\",\n\n        // 精細化的個人訪問令牌請求  /organizations/<org-login>/settings/personal-access-token-requests\n            \"Fine-grained personal access token requests\": \"精細化的個人訪問令牌請求\",\n            \"Filter fine-grained personal access tokens requests\": \"篩選精細化的個人訪問令牌請求\",\n\n            \"Requests\": \"請求\",\n\n            \"There aren't any personal access token requests for this organization\": \"該組織尚無任何個人訪問令牌的請求\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/reminders\"] = { // 組織設置 - 定時提醒\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 定時提醒 /organizations/<org-login>/settings/reminders\n            \"No scheduled reminders created.\": \"未創建預定提醒。\",\n            \"To keep projects moving, you can now remind your teams about pull requests they need to review.\": \"為了保持專案進展，您現在可以提醒您的團隊關於他們需要審查的拉取請求。\",\n\n            \"Connect a Slack workspace to get started\": \"連接 Slack 工作區以開始使用\",\n            // 對話框\n            \"Add Slack workspace\": \"添加 Slack 工作區\",\n            \"We have rolled out a new version of the GitHub app in Slack. If you are currently on the old app, please consider switching over to the new app! More info about migration can be found\": \"我們已經在 Slack 中推出了新版本的 GitHub 應用。如果您目前使用的是舊版應用，請考慮切換到新版應用！更多關於遷移的信息可以點擊\",\n            \"here.\": \"這裡。\",\n            \"1. Clicking on 'Add' will configure your Slack workspace with the new GitHub app.\": \"1. 點擊 “添加” 將用新的 GitHub 應用配置您的 Slack 工作區。\",\n            \"2. If you already have the old app in Slack, it will uninstall the legacy app and install the new one.\": \"2. 如果您在 Slack 中已有舊應用，它將卸載舊應用並安裝新應用。\",\n            \"Add workspace\": \"添加工作區\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/sponsors-log\"] = { // 組織設置 - 贊助日誌\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Sponsorship log 贊助日誌 /organizations/<org-login>/settings/sponsors-log\n            \"Sponsors log\": \"贊助日誌\",\n            \"New sponsorships, changes, and cancellations\": \"新的贊助、更改和取消\",\n            \"Period:\": \"週期：\",\n                \"Filter activity\": \"篩選活動\",\n                \"All-time\": \"所有時間\",\n                \"Past Day\": \"過去一天\",\n                \"Past Week\": \"過去一週\",\n                \"Past Month\": \"過去一月\",\n                \"Past Year\": \"過去一年\",\n            \"No sponsorship activity in this time period\": \"這段時間沒有贊助活動\",\n            // \"This is where you can review activity from your sponsorships.\": \"您可以在此處查看您的贊助活動。\",\n            // [/This is where you can review activity from ([^ ]+)'s sponsorships./ \"在這裡您可以查看 $1 贊助的活動。\"],\n    },\n    \"regexp\": [ // 正則翻譯\n        [/This is where you can review activity from ([^ ]+)'s sponsorships./,  \"在這裡您可以查看 $1 贊助的活動。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/audit-log\"] = { // 組織設置 - 審計日誌\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // Audit log 審計日誌 /organizations/<org-login>/settings/audit-log\n            \"Events\": \"活動\",\n            \"Loading audit log entries…\": \"正在加載日誌條目…\",\n            \"Filters\": \"篩選\",\n                \"Filter audit logs\": \"篩選審計日誌\",\n                \"Yesterday's activity\": \"昨日的活動\",\n                \"Organization membership\": \"組織成員\",\n                \"Team management\": \"團隊管理\",\n                \"Repository management\": \"倉庫管理\",\n                \"Billing updates\": \"賬單更新\",\n                \"Copilot activity\": \"Copilot 活動\",\n                \"Hook activity\": \"掛鉤活動\",\n                \"Personal access token activity\": \"個人訪問令牌活動\",\n                \"View advanced search syntax\": \"查看高級搜索語法\",\n            \"Search audit logs\": \"搜索審計日誌\",\n            \"Export Git Events\": \"導出 Git 事件\",\n                \"Export Git events\": \"導出 Git 事件\",\n                \"Export file will be limited to 100 Mb.\": \"導出文件將限制為 100 Mb。\",\n                \"Select events from:\": \"選擇事件，從：\",\n                \"To:\": \"到：\",\n                \"Download Results\": \"下載結果\",\n            \"Export\": \"導出\",\n                \"Exporting\": \"導出中\",\n            \"Recent events\": \"最近的事件\",\n\n            \"Clear current search query\": \"清除當前搜索查詢\",\n            // [/Found (\\d+) events?/, \"找到 $1 個事件\"],\n            \"We couldn’t find any events matching your search.\": \"我們未找到與您的搜索相匹配的活動。\",\n\n            \"Newer\": \"新的\",\n            \"Older\": \"舊的\",\n\n        // 源IP洩露 /organizations/<org-login>/audit-log/event_settings\n            \"Disclose actor IP addresses in audit logs\": \"在審計日誌中披露行為人 IP 地址\",\n            \"Enable source IP disclosure\": \"啟用源 IP 洩露\",\n            \"Enabling will allow you to view IP addresses of current members for organization audit log events. As this feature makes your users' IP addresses automatically available, you should review this change with your legal team to determine whether any user notification is required. When enabled at the enterprise level it will be automatically enabled for all organizations owned by the enterprise, the reverse is not true.\": \"啟用此功能將允許您查看組織審計日誌事件中當前成員的 IP 地址。由於此功能會自動公開用戶的 IP 地址，因此您應該與法律團隊一起審核此更改，以確定是否需要任何用戶通知。當在企業級別啟用時，它將自動為企業擁有的所有組織啟用，反之則不然。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/Found (\\d+) events?/, \"找到 $1 個事件\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\nI18N[\"zh-TW\"][\"orgs/audit-log/event_settings\"] = I18N[\"zh-TW\"][\"orgs/settings/audit-log\"];\n\nI18N[\"zh-TW\"][\"orgs/settings/deleted_repositories\"] = { // 組織設置 - 刪除的倉庫\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 刪除的倉庫 /organizations/<org-login>/settings/deleted_repositories\n            \"Deleted Repositories\": \"刪除的倉庫\",\n            // [/No recoverable repositories were found for ([^ ]+)./, \"沒有發現 $1 中可恢復倉庫\"],\n            \"It may take up to an hour for repositories to be displayed here. You can only restore repositories that are not forks, or have not been forked.\": \"倉庫可能需要一個小時的時間才能顯示在這裡。您只能恢復沒有複刻，或沒有被複刻的倉庫。\",\n            \"Learn more about restoring deleted repositories\": \"瞭解更多關於恢復已刪除倉庫的信息\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/No recoverable repositories were found for ([^ ]+)./, \"沒有發現 $1 中可恢復倉庫\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/applications\"] = { // 組織設置 - OAuth 應用\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // OAuth 應用 /organizations/<org-login>/settings/applications\n            \"OAuth apps\": \"OAuth 應用\",\n            \"No Organization Owned Apps\": \"沒有組織擁有的應用\",\n            \"Do you want to develop an App that uses the GitHub API? Register an App to generate OAuth tokens.\": \"您想開發一個使用 GitHub API 的應用嗎？註冊應用 生成 OAuth 令牌。\",\n            \"New OAuth app\": \"新建 OAuth 應用\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/apps\"] = { // 組織設置 - GitHub 應用\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // GitHub 應用 /organizations/<org-login>/settings/apps\n            \"No GitHub Apps\": \"尚無 GitHub 應用\",\n                \"Want to build something that integrates with and extends GitHub? Register a new GitHub App to get started developing on the GitHub API.\": \"想創建與 GitHub 集成並擴展 GitHub 的應用嗎？註冊一個新的 GitHub 應用，開始使用 GitHub API 進行開發。\",\n            \"New GitHub App\": \"新建 GitHub 應用\",\n            \"View documentation\": \"查看文檔\",\n\n            \"Management\": \"管理人員\",\n            \"Choose members that are allowed to manage all GitHub Apps belonging to this organization.\": \"選擇允許管理屬於該組織的所有 GitHub 應用的成員。\",\n            \"Organization owner\": \"組織所有者\",\n            \"Search by username or full name\": \"按用戶名或全名搜索\",\n            \"Grant\": \"授予\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/settings/publisher\"] = { // 組織設置 - GitHub 發佈者驗證\n    \"static\": { // 靜態翻譯\n        ...I18N[\"zh-TW\"][\"orgs-settings-menu\"][\"static\"],\n\n        // 發佈者驗證 /organizations/<org-login>/settings/publisher\n            \"There must be 1 or more GitHub/OAuth App registered by the organization to request publisher verification\": \"組織必須有 1 個或多個 GitHub/OAuth 應用才能請求發佈者驗證\",\n            \"You can request publisher verification for your organization. A\": \"您可以為您的組織請求發佈者驗證。一個\",\n            \"badge will be added to your apps published in the marketplace, recognizing that apps and other published materials were created by you.\": \"徽章將添加到您在市場上發佈的應用中，以識別應用和其他已發佈材料是由您創建的。\",\n            \"Learn more about publisher verification.\": \"瞭解更多關於發佈者驗證的信息。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"projects\"] = { // 專案頁面(含倉庫專案)\n    \"static\": { // 靜態翻譯\n        // >>>>>>>>>>>>>>>>>>倉庫 公共部分<<<<<<<<<<<<<<<<<<<<<<<<<<<\n            // 頭部條\n            \"forked from\": \"複刻自\",\n            \"mirrored from\": \"鏡像自\",\n\n            \"Unpin\": \"取消置頂\",\n            \"Ignoring\": \"忽略\",\n            \"Stop ignoring\": \"取消忽略\",\n            \"Watch\": \"關注\",\n            \"Unwatch\": \"取消關注\",\n\n            \"Star\": \"標星\",\n            \"Unstar\": \"已加星標\",\n            \"Fork\": \"複刻\",\n            \"Unfork\": \"取消複刻\",\n\n            // 贊助對話框\n            \"External links\": \"外部鏈接\",\n            \"Learn more about funding links in repositories\": \"瞭解更多關於倉庫中的贊助鏈接的信息\",\n            \"Report abuse\": \"舉報濫用\",\n\n            // 關注 & 訂閱通知設置 下拉菜單\n            \"Notifications\": \"通知類型\",\n            \"Participating and @mentions\": \"參與和 @您\",\n            \"Only receive notifications from this repository when participating or @mentioned.\": \"僅在參與或 @您時接收來自此倉庫的通知。\",\n            \"All Activity\": \"所有活動\",\n            \"Notified of all notifications on this repository.\": \"接收來自此倉庫所有通知。\",\n            \"Ignore\": \"忽略\",\n            \"Never be notified.\": \"永不接收通知。\",\n            \"Custom\": \"自定義\",\n            \"Select events you want to be notified of in addition to participating and @mentions.\": \"選擇除參與和 @您之外還要接收通知的事件。\",\n            \"Discussions are not enabled for this repo\": \"此倉庫未啟用討論功能\",\n            // \"Releases\": \"發行版\",\n            // \"Discussions\": \"討論\",\n            \"Security alerts\": \"安全警報\",\n            //\"Cancel\": \"取消\",\n            \"Apply\": \"應用\",\n\n            // 複刻下拉\n            \"Existing forks\": \"現有的複刻\",\n            \"You don't have any forks of this repository.\": \"您沒有此倉庫的任何複刻。\",\n            \"Create a new fork\": \"創建複刻\",\n\n            // 標籤欄\n            \"Code\": \"程式碼\",\n            \"Pull requests\": \"拉取請求\",\n            \"Discussions\": \"討論\",\n            \"Actions\": \"操作\",\n            \"Projects\": \"專案\",\n            \"Security\": \"安全\",\n            \"Insights\": \"洞察\",\n            \"Settings\": \"設置\",\n\n            // 鍵盤快捷鍵\n                \"Open in codespace\"  : \"在程式碼空間中打開\",\n                \"Open in github.dev editor\"  : \"在 github.dev 編輯器中打開\",\n                \"Open github.dev editor in a new tab\"  : \"在新標籤頁中打開 github.dev 編輯器\",\n                \"Open cs.github.com in a new tab\": \"在新標籤頁中打開 cs.github.com\",\n                \"Focus secondary search bar\" : \"聚焦二級搜索欄\",\n                \"Go to Code\"                 : \"跳轉到程式碼\",\n                \"Go to Issues\"               : \"跳轉到議題\",\n                \"Go to Pull Requests\"        : \"跳轉到拉取請求\",\n                \"Go to Actions\"              : \"跳轉到操作\",\n                \"Go to Projects\"             : \"跳轉到專案\",\n                \"Go to Wiki\"                 : \"跳轉到 Wiki\",\n                \"Go to Discussions\"          : \"跳轉到討論\",\n\n        // https://github.com/projects\n            \"Recently viewed\": \"最近瀏覽\",\n                \"Remove from recently viewed\": \"從最近瀏覽中刪除\",\n            \"Created by me\": \"由我創建\",\n                \"Create your first GitHub project\": \"創建您的第一個 GitHub 專案\",\n                \"Projects are a customizable, flexible tool for planning and tracking your work.\": \"專案是用於規劃和跟蹤您工作的可定製、靈活的工具。\",\n\n        // 公共詞 簡版 議題&拉取請求信息\n            \"opened by\": \"打開者\",\n            \"Opened in\": \"打開在\",\n            \"commented\": \"評論於\",\n            \"Assignees\": \"受理人\",\n                \"No one assigned\": \"無人受理\",\n            \"Labels\": \"標籤\",\n            \"Milestone\": \"里程碑\",\n                \"No milestone\": \"尚無里程碑\",\n            \"Linked pull requests\": \"關聯的拉取請求\",\n                \"Successfully merging a pull request may close this issue.\": \"成功合併一個拉取請求可能會關閉此議題。\",\n            \"None yet\": \"暫無\",\n            \"Go to issue for full details\": \"跳轉到議題以獲取完整詳細信息\",\n\n            \"Loading details…\": \"載入細節…\",\n\n        // 新建專案 https://github.com/new/project\n          //同 倉庫 新建專案頁面  /<user-name>/<repo-name>/projects/new\n            \"Create a new classic project\": \"創建經典專案\",\n            \"Coordinate, track, and update your work in one place, so projects stay transparent and on schedule.\": \"在這裡協調、跟蹤和更新您的工作，使專案保持透明，並按計劃進行。\",\n            \"Project board name\": \"專案面板名稱\",\n            \"Description\": \"描述\",\n            \"(optional)\": \"(可選)\",\n            \"Project template\": \"專案模板\",\n            \"Save yourself time with a pre-configured project board template.\": \"使用預先配置的專案面板模板可為您節省時間。\",\n            \"Template:\": \"模板：\",\n                \"Templates\": \"模板\",\n                \"None\": \"無\",\n                    \"Start from scratch with a completely blank project board. You can add columns and configure automation settings yourself.\": \"從一個完全空白的專案面板開始。您可以自己添加欄目並配置自動化設置。\",\n                \"Basic kanban\": \"基礎看板\",\n                    \"Basic kanban-style board with columns for To do, In progress and Done.\": \"基礎風格看板，帶有待辦、進行中和已完成等欄目。\",\n                \"Automated kanban\": \"自動化看板\",\n                    \"Kanban-style board with built-in triggers to automatically move issues and pull requests across To do, In progress and Done columns.\": \"帶有內置觸發器的風格看板，可以自動將議題和拉取請求移到待辦、進行中和已完成欄目中。\",\n                \"Automated kanban with reviews\": \"帶審查的自動看板\",\n                    \"Everything included in the Automated kanban template with additional triggers for pull request reviews.\": \"除了包含自動化看板模板中的所有內容，還有拉取請求審查的額外觸發器。\",\n                \"Bug triage\": \"BUG 分類\",\n                    \"Triage and prioritize bugs with columns for To do, High priority, Low priority, and Closed.\": \"使用待辦事項、高優先級、低優先級和已關閉的欄目對錯誤進行分類和優先級排序。\",\n            \"Visibility\": \"可見性\",\n                // \"Public\": \"公共\",\n                    \"Anyone on the internet can see this project. You choose who can make changes.\": \"互聯網上的任何人都可以看到這個專案。您選擇誰可以進行更改。\",\n                \"Private\": \"私有\",\n                    \"You choose who can see and make changes to this project.\": \"您可以選擇誰可以查看此專案並對其進行更改。\",\n            \"Linked repositories\": \"關聯的倉庫\",\n                \"Search\": \"搜索\",\n                \"to link repositories to this project for more accurate suggestions and better search results.\": \"將倉庫關聯到此專案，以獲得更準確的建議和更好的搜索結果。\",\n                \"Search by repository name\": \"搜索倉庫名\",\n                \"You've reached the limit of 25 linked repositories.\": \"您已經達到了 25 個關聯倉庫的上限。\",\n                \"Linked repositories:\": \"關聯的倉庫\",\n                \"None yet!\": \"啥也木有！\",\n            \"Create project\": \"創建專案\",\n\n        // 倉庫 專案頁面  /<user-name>/<repo-name>/projects >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>\n            \"Welcome to projects\": \"歡迎訪問專案\",\n            \"No open projects\": \"無已打開的專案\",\n            \"No open project templates\": \"無已打開的專案模板\",\n            \"Built like a spreadsheet, project tables give you a live canvas to filter, sort, and group issues and pull requests. Tailor them to your needs with custom fields and saved views.\":\"專案表格就像電子表格一樣構建，為您提供實時畫布，用於篩選、排序和分組問題及拉取請求。您可以根據需求自定義字段並保存視圖。\",\n            \"This repository doesn't have any projects yet\": \"該倉庫目前沒有任何專案\",\n            \"Create a project\": \"創建一個專案\",\n            \"Provide quick access to relevant projects.\":\"為相關專案提供便捷訪問\",\n            \"Add projects to view them here.\":\"添加專案以在此處查看。\",\n            \"Link a project\":\" 關聯一個專案\",\n            \"Link projects\":\"關聯專案\",\n            \"Link a project to this repository\":\"將專案與該倉庫進行關聯\",\n\n            \"Organize your issues with project boards\": \"使用專案面板組織您的議題\",\n            \"Did you know you can manage projects in the same place you keep your code? Set up a project board on GitHub to streamline and automate your workflow.\": \"您知道您可以在保存程式碼的同一個地方管理專案嗎？在 GitHub 上設置專案面板以簡化和自動化您的工作流程。\",\n\n            \"Sort tasks\": \"排序任務\",\n            \"Add issues and pull requests to your board and prioritize them alongside note cards containing ideas or task lists.\": \"將議題和拉取請求添加到您的看板中，並將它們與包含想法或任務清單的筆記卡一起進行優先排序。\",\n            \"Plan your project\": \"規劃專案\",\n            \"Sort tasks into columns by status. You can label columns with status indicators like \\\"To Do\\\", \\\"In Progress\\\", and \\\"Done\\\".\": \"將任務按狀態分類成列。您可以用 “待辦”、“進行中” 和 “已完成” 等狀態指標給各欄貼上標籤。\",\n            \"Automate your workflow\": \"自動化工作流程\",\n            \"Set up triggering events to save time on project management—we’ll move tasks into the right columns for you.\": \"設置觸發事件，以節省專案管理的時間——我們將為您把任務移到正確的欄目中。\",\n            \"Track progress\": \"追蹤進度\",\n            \"Keep track of everything happening in your project and see exactly what’s changed since the last time you looked.\": \"追蹤專案中發生的一切，並準確查看自上次查看以來發生的變化。\",\n            \"Share status\": \"共享狀態\",\n            \"Each card has a unique URL, making it easy to share and discuss individual tasks with your team.\": \"每張卡片都有一個唯一的 URL，可以輕鬆地與您的團隊共享和討論個人任務。\",\n            \"Wrap up\": \"結束工作\",\n            \"After you wrap up your work, close your project board to remove it from your active projects list. On to the next project!\": \"結束工作後，關閉專案面板，並從活動專案列表中刪除。進入下一個專案！\",\n\n            \"Try the\": \"嘗試\",\n            \"new projects today.\": \"新版專案。\",\n            \"Repository access coming soon ✨\": \"倉庫訪問即將推出 ✨\",\n            \"Remove project\":\"移除專案\",\n            \"Open\":\"已打開\",\n\n            \"Sort\": \"排序\",\n            \"Sort by\": \"排序方式\",\n                // 排序下拉菜單\n                \"Newest\": \"最新\",\n                \"Oldest\": \"最早\",\n                \"Recently updated\": \"最近更新\",\n                \"Least recently updated\": \"最早更新\",\n                \"Name\": \"名稱\",\n            // 清除篩選\n            \"Clear current search query, filters, and sorts\": \"清除當前的搜索查詢、篩選器和排序方式\",\n\n            \"No description\": \"無描述\",\n\n            // 頂部提醒\n            \"Project closed.\": \"專案已關閉。\",\n            \"Project reopened.\": \"專案已重新打開。\",\n\n        // https://github.com/users/<user-name>/projects/<id>\n            // 鍵盤快捷鍵\n                \"Project card shortcuts\": \"專案卡快捷鍵\",\n                    \"Open the issue or pull request associated with the focused card in the sidebar\": \"聚焦卡片的側邊欄中打開相關聯的議題或拉取請求\",\n                \"Moving a card\": \"移動卡片\",\n                    \"Start moving the focused card\": \"開始移動聚焦卡片\",\n                    \"Cancel the move in progress\": \"取消正在進行的移動\",\n                    \"Complete the move in progress\": \"完成正在進行的移動\",\n                    \"Move card down\": \"向下移動卡片\",\n                    \"Move card to the bottom of the column\": \"移動到專案欄底部\",\n                    \"Move card up\": \"向上移動卡片\",\n                    \"Move card to the top of the column\": \"移動到專案欄頂部\",\n                    \"Move card to the bottom of the column on the left\": \"移動到左側專案欄底部\",\n                    \"Move card to the top of the column on the left\": \"移動到左側專案欄頂部\",\n                    \"Move card to the bottom of the leftmost column\": \"移動到最左側專案欄底部\",\n                    \"Move card to the top of the leftmost column\": \"移動到最左側專案欄頂部\",\n                    \"Move card to the bottom of the column on the right\": \"移動到右側專案欄底部\",\n                    \"Move card to the top of the column on the right\": \"移動到右側專案欄頂部\",\n                    \"Move card to the bottom of the rightmost column\": \"移動到最右側專案欄底部\",\n                    \"Move card to the top of the rightmost column\": \"移動到最右側專案欄頂部\",\n                \"Moving a column\": \"移動欄目\",\n                    \"Start moving the focused column\": \"開始移動聚焦欄目\",\n                    \"Move column to the left\": \"將欄目移到左側\",\n                    \"Move column to the leftmost position\": \"將欄目移到最左側\",\n                    \"Move column to the right\": \"將欄目移到右側\",\n                    \"Move column to the rightmost position\": \"將欄目移到最右側\",\n            // 頂部提醒\n            \"Project created from Basic kanban template.\": \"已從基礎看板模板創建專案。\",\n\n            \"Updated\": \"更新於\",\n            \"Filter cards\": \"篩選卡片\",\n                \"Narrow your search\": \"縮小搜索範圍\",\n            // 工具欄\n            \"Add cards\": \"添加卡片\",\n                \"You can use the filters available in\": \"您可使用的篩選器在\",\n                \"issue search\": \"議題搜索\",\n                \"Loading search results…\": \"載入搜索結果…\",\n                \"Search results\": \"搜索結果\",\n            \"Fullscreen\": \"全屏\",\n            \"Exit fullscreen\": \"退出全屏\",\n            \"Menu\": \"菜單\",\n                \"This project doesn’t have a description.\": \"該專案沒有描述。\",\n                \"Add description\": \"添加描述\",\n                \"Close project\": \"關閉專案\",\n                    \"Are you sure you want to close\": \"您確定要關閉\",\n                \"Activity\": \"活動\",\n                // ... 展開\n                \"Loading activity\": \"載入活動\",\n                \"View archive\": \"查看活動\",\n                \"Showing all activity\": \"顯示所有活動\",\n            // 活動 狀態詞\n                \"added\": \"添加了\",\n                \"created the project\": \"創建了專案\",\n                \"updated the project\": \"更新了專案\",\n                \"created the column\": \"創建了欄目\",\n                \"To do.\": \"待辦。\",\n                \"Done.\": \"已完成。\",\n                \"In progress.\": \"進行中。\",\n                \"archived\": \"存檔了\",\n                \"restored\": \"恢復了\",\n                \"moved\": \"移動了\",\n                \"from\": \"來自\",\n                \"From\": \"來自\",\n\n            // 編輯對話框\n                \"Edit project\": \"編輯專案\",\n                \"Name\": \"名稱\",\n                \"Description\": \"描述\",\n                \"Track project progress\": \"跟蹤專案進度\",\n                    \"A progress bar will be displayed to help you visualize the overall progress of your project based on your automated To Do, In Progress, and Done columns.\": \"將顯示一個進度條，以幫助您根據您的自動化的待辦、進行中和已完成欄目，直觀地瞭解專案的總體進展。\",\n                \"Save project\": \"保存專案\",\n                // [/Delete/, \"刪除\"],\n                \"Once you delete a project, there is no going back. Please be certain.\": \"刪除專案後，將無法撤回。請確認。\",\n                \"Delete project\": \"刪除專案\",\n\n            // 複製專案\n                \"Copy project board\": \"複製專案面板\",\n                \"Your copy of this project includes column names and positions. Cards will not be copied.\": \"此專案的副本包括欄目名稱和位置。卡片不會被複制。\",\n                \"Owner\": \"所有者\",\n                    \"Choose an owner\": \"選擇所有者\",\n                    \"Search organizations and repositories\": \"搜索組織和倉庫\",\n                    \"Suggested\": \"建議\",\n                    \"Everything else\": \"其他一切\",\n                \"Project board name\": \"專案面板名稱\",\n                \"Copy project\": \"複製專案\",\n\n            // 存檔的卡片\n                \"Archived cards\": \"存檔的卡片\",\n                \"Loading archived cards…\": \"載入存檔的卡片…\",\n                \"Show all archived cards\": \"顯示所有存檔卡片\",\n                \"Filter by note or issue title\": \"按註釋或提議標題篩選\",\n                \"Column:\": \"欄目：\",\n                    \"All\": \"所有\",\n                \"Restore\": \"恢復\",\n                \"No archived cards\": \"無存檔卡片\",\n                \"You haven't archived any cards yet.\": \"您尚未歸檔任何卡片。\",\n\n            \"This project doesn’t have any columns or cards.\": \"該專案沒有任何欄目或卡片。\",\n\n            \"Add a column\": \"添加欄目\",\n            \"Add column\": \"添加欄目\",\n                \"Column name\": \"欄目名稱\",\n                \"Enter a column name (To Do, In Progress, Done)\": \"輸入欄目名稱（待辦、進行中、已完成）\",\n                \"Automation\": \"自動化\",\n                \"Choose a preset to enable progress tracking, automation, and better context sharing across your project.\": \"選擇預設值，以便在您的專案中實現進度跟蹤、自動化和更好的內容共享。\",\n                \"Loading…\": \"載入中…\",\n                \"Preset:\": \"預設：\",\n                    \"Select type\": \"選擇類型\",\n                    \"None\": \"無\",\n                        \"This column will not be automated\": \"本欄目將不會自動化\",\n                    \"To do\": \"待辦\",\n                        \"Planned but not started\": \"已計劃但未開始\",\n                        \"Move issues here when…\": \"當…時，將議題移至此處\",\n                            \"Newly added\": \"新添加的\",\n                                \"Issues will automatically move here when added to this project.\": \"添加到此專案時，議題將自動移至此處。\",\n                            \"Reopened\": \"重新打開\",\n                                \"If a closed issue in this project reopens, it will automatically move here.\": \"如果此專案中已關閉的議題重新打開，它將自動移至此處。\",\n                        \"Move pull requests here when…\": \"當…時，將拉取請求移到此處\",\n                            \"Pull requests will automatically move here when added to this project.\": \"添加到此專案時，拉取請求將自動移至此處。\",\n                            \"If a closed pull request in this project reopens, it will automatically move here.\": \"如果此專案中已關閉的拉取請求重新打開，它將自動移至此處。\",\n                    \"In progress\": \"進行中\",\n                        \"Actively being worked on\": \"正在積極開展工作\",\n                        \"Approved by reviewer\": \"由審查者批准\",\n                        \"Pull requests in this project will automatically move here when they meet the minimum number of required approving reviews. Recommended when another column has the\": \"當該專案中的拉取請求達到所需的最低批准審查數時，將自動移至此處。當另一欄啟用了 “\",\n                        \"automation enabled.\": \"” 的自動化功能時推薦使用。\",\n                        \"Pending approval by reviewer\": \"由審查者待批准\",\n                        \"Pull requests in this project will automatically move here when a reviewer requests changes, or it no longer meets the minimum number of required approving reviews. Recommended when another column has the\": \"當審查者請求更改或不再滿足所需的最小批准審查數時，此專案中的拉取請求將自動移至此處。當另一欄目啟用了 “\",\n                    \"Done\": \"已完成\",\n                        \"Items are complete\": \"專案已完成\",\n                        // 已關閉\n                            \"If an open issue in this project is closed, it will automatically move here.\": \"如果該專案中的一個打開的議題被關閉，它將自動轉移到這裡。\",\n                        \"Merged\": \"已合併\",\n                            \"If an open pull request in this project is merged, it will automatically move here.\": \"如果該專案中的一個打開的拉取請求被合併，它將自動轉移到這裡。\",\n                        \"Closed with unmerged commits\": \"已關閉的未合併的提交\",\n                            \"If an open pull request in this project is closed with unmerged commits, it will automatically move here.\": \"如果該專案中的一個打開的拉取請求因未合併提交而關閉，它將自動移到這裡。\",\n                \"Create column\": \"創建欄目\",\n\n            \"Edit column\": \"編輯欄目\",\n            \"Manage automation\": \"管理自動化\",\n            \"Archive all cards\": \"存檔所有卡片\",\n                \"Archiving cards...\": \"存檔卡片…\",\n            \"Copy column link\": \"複製欄目鏈接\",\n            \"Delete column\": \"刪除欄目\",\n\n            // \"Manage automation for To do\": \"管理待辦的自動化\",\n            // \"Manage automation for In progress\": \"管理進行中的自動化\",\n            // \"Manage automation for Done\": \"管理已完成的自動化\",\n            \"Update automation\": \"更新自動化設置\",\n\n            \"Add a note to this column\": \"向此欄目添加註釋\",\n            \"Enter a note\": \"輸入註釋\",\n            \"Add\": \"添加\",\n\n            // \"Edit To do\": \"編輯 “待辦”\",\n            // \"Edit In progress\": \"編輯 “進行中”\",\n            // \"Edit Done\": \"編輯 “已完成”\",\n            \"Update column\": \"更新欄目\",\n\n            \"Cards\": \"卡片\",\n            \"Automation\": \"自動化\",\n\n            // \"Archive all cards in To do\": \"存檔所有 “待辦” 卡片\",\n            // \"Archive all cards in In progress\": \"存檔所有 “進行中” 卡片\",\n            // \"Archive all cards in Done\": \"存檔所有 “已完成” 卡片\",\n            \"Are you sure you want to archive all cards in the\": \"您確定要將存檔所有卡片\",\n            \"column? You will not be able to undo this action.\": \"欄目？您將無法撤消此操作。\",\n\n            // \"Delete To do\": \"刪除 “待辦” \",\n            // \"Delete In progress\": \"刪除 “進行中” \",\n            // \"Delete Done\": \"刪除 “已完成” \",\n            \"This action will remove any cards and automation preset associated with the column.\": \"此操作將刪除與該列關聯的所有卡片和自動化預設。\",\n\n            \"Copy card link\": \"複製卡片鏈接\",\n            \"Convert to issue\": \"轉換為議題\",\n                \"Convert note to issue\": \"轉換註釋為議題\",\n                \"Repository\": \"倉庫\",\n                    \"Choose a repository for this issue\": \"為這個議題選擇一個倉庫\",\n                    \"Find a repository\": \"查找倉庫\",\n                    \"Title\": \"標題\",\n                    \"Body\": \"內容\",\n            \"Edit note\": \"編輯註釋\",\n                \"Note\": \"註釋\",\n                \"Save note\": \"保存註釋\",\n            \"Archive\": \"存檔\",\n            \"Delete note\": \"刪除註釋\",\n                \"This will remove this note from the project\": \"這將從專案中刪除該註釋\",\n            \"New view\": \"新建視圖\",\n            \"Layout\": \"佈局\",\n            \"Board\": \"面板\",\n            \"Roadmap\": \"時間線\",\n            \"Duplicate view\": \"複製視圖\",\n            \"Configuration\": \"配置\",\n            \"Group by\": \"分組\",\n            \"No grouping\": \"不進行分組\",\n            \"Markers\": \"標記\",\n            \"Sort by\": \"排序\",\n            \"No sorting\": \"不進行排序\",\n            \"Zoom level\": \"縮放級別\",\n            \"Field sum\": \"字段總和\",\n            \"Slice by\": \"切片\",\n            \"No slicing\": \"不進行切片\",\n            \"Fields\": \"字段\",\n            \"Generate chart\": \"生成圖表\",\n            \"Rename view\": \"重命名視圖\",\n            \"Delete view\": \"刪除視圖\",\n            \"Export view data\": \"導出視圖數據\",\n            \"Assignees\": \"負責人\",\n            \"Project templates\": \"專案模板\",\n            \"Featured\": \"特色\",\n            \"Iteration\": \"迭代\",\n            \"Dates\": \"日期\",\n            \"User settings\": \"用戶設置\",\n            \"Truncate titles\": \"截斷標題\",\n            \"Show date fields\": \"顯示日期字段\",\n            \"Add status update\": \"添加狀態更新\",\n            \"Project details\": \"專案詳情\",\n            \"View more options\": \"查看更多選項\",\n            \"Date fields\": \"日期字段\",\n            \"Month\": \"月\",\n            \"Quarter\": \"季度\",\n            \"Year\": \"年\",\n            \"Today\": \"今天\",\n            \"Add item\": \"添加專案\",\n            \"Pin side panel\": \"固定側邊欄\",\n            \"Close panel\": \"關閉側邊欄\",\n            \"Add your first item\": \"添加您的第一個專案\",\n            \"Click \\\"Add Item\\\" to get started or use the shortcut\": \"點擊 \\\"添加專案\\\" 以開始，或使用快捷鍵\",\n            \"OK, dismiss\": \"好的，忽略\",\n            \"Create new item or add existing item\": \"創建新專案或添加現有專案\",\n            \"Add field\": \"添加字段\",\n            \"Status column options\": \"狀態欄目選項\",\n                \"Select column\": \"選擇欄目\",\n                \"Sort ascending\": \"升序\",\n                \"Sort descending\": \"降序\",\n                \"Filter by values…\": \"按值篩選…\",\n                \"Group by values\": \"按值分組\",\n                \"Slice by values\": \"按值切片\",\n                \"Hide field\": \"隱藏字段\",\n                \"Field settings…\": \"字段設置…\",\n                    \"Status field settings\": \"狀態字段設置\",\n                    \"fields are created by GitHub and cannot be renamed.\": \"字段是由 GitHub 創建的，無法重命名。\",\n                    \"Todo\": \"待辦\",\n                    \"In Progress\": \"進行中\",\n                    \"Open field actions for Todo\": \"打開待辦字段操作\",\n                    \"Open field actions for In Progress\": \"打開進行中字段操作\",\n                    \"Open field actions for Done\": \"打開已完成字段操作\",\n                    \"Edit option\": \"編輯選項\",\n                        \"Label text\": \"標籤文本\",\n                        \"Color\": \"顏色\",\n                        \"Visible in group headers and value pickers\": \"在分組頭和值選擇器中可見\",\n                    \"Advanced Move...\": \"高級移動…\",\n                        \"Move selected item\": \"移動選定專案\",\n                        \"Item\": \"專案\",\n                        \"Action\": \"操作\",\n                            \"Move item before\": \"移動專案之前\",\n                            \"Move item after\": \"移動專案之後\",\n                            \"Move to position\": \"移動到位置\",\n                            \"Move\": \"移動\",\n                    \"Remove option\": \"刪除選項\",\n                    \"Add option…\": \"添加選項…\",\n                \"Move left\": \"向左移動\",\n                \"Move right\": \"向右移動\",\n                    \"This is the right-most column\": \"這是最右邊的欄目\",\n\n                \"Sub-issues progress field settings\": \"子議題進度字段設置\",\n                \"Show numerical value\": \"顯示數值\",\n                \"Saved!\": \"保存成功！\",\n                \"Custom field options\": \"自定義字段選項\",\n                    \"Reorder fields\": \"重新排序字段\",\n                    \"Reorder custom fields\": \"重新排序自定義字段\",\n                    \"Change the order in which custom fields appear on project items and in field lists.\": \"更改自定義字段在專案項和字段列表中出現的順序。\",\n                    \"Edit field\": \"編輯字段\",\n                    \"Move field...\": \"移動字段…\",\n            \"Reviewers\": \"審查者\",\n            \"Parent issue\": \"父議題\",\n            \"Sub-issues progress\": \"子議題進度\",\n            \"Create new issue\": \"創建新議題\",\n                \"Templates and forms\": \"模板和表單\",\n                \"Create a new issue from scratch\": \"從頭開始創建新議題\",\n                \"Select repository\": \"選擇倉庫\",\n                \"Copy link\": \"複製鏈接\",\n                \"Blank issue\": \"空白議題\",\n            \"Add item from repository\": \"從倉庫添加專案\",\n                \"No items to add\": \"無專案可添加\",\n                \"This repository is either empty or all items were already added to this project.\": \"此倉庫要麼為空，要麼所有專案都已添加到此專案中。\",\n                \"Select an item\": \"選擇一個專案\",\n                \"Search for issues and pull requests\": \"搜索議題和拉取請求\",\n                \"Add selected items\": \"添加選定專案\",\n                \"Select all items\": \"選擇所有專案\",\n            \"Search by username\": \"按用戶名搜索\",\n            \"Admin\": \"管理員\",\n            \"Can see, make changes to, and add new collaborators to this project.\": \"可以查看、更改和添加新的協作者到此專案。\",\n            \"Can see and make changes to this project.\": \"可以查看和更改此專案。\",\n            \"Read\": \"只讀\",\n            \"Can see this project.\": \"可以查看此專案。\",\n            \"Invite\": \"邀請\",\n            \"Role:\": \"角色：\",\n            \"Find a collaborator\": \"查找協作者\",\n            \"Show\": \"顯示\",\n            \"Hide\": \"隱藏\",\n            \"empty values\": \"空值\",\n            \"Assignees column options\": \"負責人欄目選項\",\n            \"Title column options\": \"標題欄目選項\",\n                \"Filter by type or state…\": \"按類型或狀態篩選…\",\n                \"This is the left-most column\": \"這是最左邊的欄目\",\n            \"Welcome to Roadmap!\": \"歡迎使用時間線！\",\n            \"Your project needs at least one date or iteration field to get started.\": \"您的專案需要至少一個日期或迭代字段才能開始。\",\n            \"Got it!\": \"明白了！\",\n            \"Start date\": \"開始日期\",\n            \"No start date\": \"無開始日期\",\n            \"Target date\": \"目標日期\",\n            \"No target date\": \"無目標日期\",\n            \"Items\": \"專案\",\n            \"Archive all\": \"存檔所有\",\n            \"Delete all\": \"刪除所有\",\n            \"Column\": \"欄目\",\n            \"Set limit\": \"設置限制\",\n            \"Edit details\": \"編輯詳情\",\n            \"Hide from view\": \"從視圖中隱藏\",\n            \"Position\": \"位置\",\n            \"You choose who can read, write, and admin this project.\": \"您選擇誰可以讀取、寫入和管理此專案。\",\n            \"on the internet\": \"在互聯網上\",\n            \"has read access to this project. You choose who has write and admin access.\": \"有讀取訪問權限到此專案。您選擇誰有寫入和管理訪問權限。\",\n            \"Add Files\": \"添加文件\",\n            \"Save update\": \"保存更新\",\n            \"Select a status\": \"選擇一個狀態\",\n                \"Filter statuses\": \"篩選狀態\",\n            \"Clear\": \"清除\",\n            \"Start typing to create a draft, or type # to select a repository\": \"開始輸入以創建草案，或輸入 # 選擇一個倉庫\",\n            \"Scroll to previous date range\": \"滾動到上一個日期範圍\",\n            \"Scroll to next date range\": \"滾動到下一個日期範圍\",\n            \"Filter by keyword or by field\": \"按關鍵字或字段篩選\",\n            \"Discard\": \"放棄\",\n            \"Save changes to new view\": \"保存更改到新視圖\",\n            \"Visible fields\": \"可見字段\",\n            \"Hidden fields\": \"隱藏字段\",\n            \"New field\": \"新建字段\",\n            \"Column by\": \"欄目\",\n            \"Workflows\": \"工作流\",\n            \"Archived items\": \"已存檔專案\",\n            \"Make a copy\": \"複製\",\n            \"GitHub Projects\": \"GitHub 專案\",\n            \"What’s new\": \"新功能\",\n            \"Project settings\": \"專案設置\",\n            \"Project name\": \"專案名稱\",\n            \"Short description\": \"簡短描述\",\n            \"More options\": \"更多選項\",\n            \"Make a copy of this project.\": \"複製此專案\",\n            \"Danger zone\": \"危險區\",\n            \"This project is currently private.\": \"此專案當前為私有.\",\n            \"Closing a project will disable its workflows & remove it from the list of open projects.\": \"關閉專案將禁用其工作流程，並將其從打開專案列表中刪除.\",\n            \"Close this project\": \"關閉此專案\",\n            \"Manage access\": \"管理訪問權限\",\n            \"Who has access\": \"誰有訪問權限\",\n            \"Private project\": \"私有專案\",\n            \"Only those with access to this project can view it.\": \"只有有權訪問此專案的人才能查看它.\",\n            \"Invite collaborators\": \"邀請協作者\",\n            \"Manage access\": \"管理訪問權限\",\n            \"Custom fields\": \"自定義字段\",\n            \"Field name\": \"字段名稱\",\n            \"Field type\": \"字段類型\",\n            \"Text\": \"文本\",\n            \"Number\": \"數字\",\n            \"Date\": \"日期\",\n            \"Single select\": \"單選\",\n            \"Starts on\": \"開始於\",\n            \"Duration\": \"持續時間\",\n            \"days\": \"天\",\n            \"weeks\": \"周\",\n            \"Save and create\": \"保存並創建\",\n            \"You don't have any collaborators yet.\": \"您還沒有任何協作者.\",\n            \"Add a collaborator to see them here.\": \"添加協作者以在此處查看他們.\",\n            \"Make template\": \"製作模板\",\n            \"Copy as template\": \"複製為模板\",\n            \"Visibility\": \"可見性\",\n            \"Close project\": \"關閉專案\",\n            \"Delete project\": \"刪除專案\",\n            \"Delete this project\": \"刪除此專案\",\n            \"Status chart\": \"狀態圖表\",\n            \"This chart shows the current status for the total number of items in your project.\": \"此圖表顯示了專案中所有專案的當前狀態。\",\n            \"No data available\": \"無可用數據\",\n            \"No results were returned.\": \"未返回任何結果。\",\n            \"Default charts\": \"默認圖表\",\n            \"Custom charts\": \"自定義圖表\",\n            \"Configure\": \"配置\",\n            \"Configure chart\": \"配置圖表\",\n            \"Group by (optional)\": \"分組 (可選)\",\n            \"X-axis\": \"X 軸\",\n            \"Y-axis\": \"Y 軸\",\n            \"Save to new chart\": \"保存到新圖表\",\n            \"Add a project status update\": \"添加專案狀態更新\",\n            \"Add update\": \"添加更新\",\n            \"Status updates are brief reports tracking your project's health and progress. Begin by adding an update.\": \"狀態更新是跟蹤專案健康和進度的簡要報告. 從添加更新開始.\",\n            \"Let everyone know what this project is about, how to use it and link to important resources.\": \"讓每個人都知道這個專案是關於什麼的，如何使用它，並鏈接到重要資源.\",\n            \"A short description about this project.\": \"關於此專案的簡短描述.\",\n            \"You can use\": \"您可以使用\",\n            \"to add an item\": \"來添加專案\",\n\n        // 自動化看板模板專案 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 頂部提醒\n            \"Project created from Automated kanban template.\": \"已從自動化看板模板創建專案。\",\n\n            \"Automated as\": \"自動化為\",\n            \"Manage\": \"管理\",\n\n            // 管理自動化 補充\n            \"The\": \" \",\n            \"column is already using this rule.\": \"欄目已在使用此規則。\",\n\n            // 複製專案面板 補充\n            \"Your copy of this project includes column names, positions, and automation settings. Cards will not be copied.\": \"此專案的副本包括欄目名稱、位置和自動化設置。卡片不會被複制。\",\n            \"Automation settings\": \"自動化設置\",\n            \"Copy automation settings.\": \"複製自動化設置。\",\n            \"Includes automation settings for\": \"包括自動化設置，關於\",\n            \"To do, In progress, and Done\": \"待辦、進行中和已完成\",\n\n\n            \"Pull Request closed without merge\": \"拉取請求關閉而不合併\",\n            \"Pull Request merged\": \"合併拉取請求\",\n            \"Issue closed\": \"議題已關閉\",\n            \"Pull Request reopened\": \"拉取請求已重新打開\",\n            \"Issue reopened\": \"議題已重新打開\",\n            \"Pull Request pending card added\": \"添加了拉取請求待辦卡\",\n            \"Issue pending card added\": \"添加了議題待辦卡\",\n\n            \"automation\": \"自動化\",\n            \"to the\": \"到\",\n            \"column.\": \"欄目。\",\n\n        // 自動看板與審查模板專案 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 頂部提醒\n            \"Project created from Automated kanban with reviews template.\": \"已從自動看板與審查模板創建專案。\",\n\n        // 錯誤分類模板專案 https://github.com/users/<user-name>/projects/<id>?add_cards_query=is%3Aopen\n            // 頂部提醒\n            \"Project created from Bug triage template.\": \"已從錯誤分類模板創建專案。\",\n\n            \"Needs triage\": \"需要分流\",\n            \"High priority\": \"高優先級\",\n            \"Low priority\": \"低優先級\",\n\n        // https://github.com/users/<user-name>/projects/<id>/settings\n            \"Collaboration settings\": \"協作設置\",\n                \"Options\": \"選項\",\n                    \"Visibility\": \"可見性\",\n                    \"Visibility settings only impact the project itself. Project content that belongs to a repository the user does not have access to will be redacted.\": \"可見性設置只影響專案本身。屬於用戶無權訪問的倉庫的專案內容將被編輯。\",\n                    \"Public\": \"公開\",\n                        \"Anyone on the internet can see this project. You choose who can make changes.\": \"互聯網上的任何人都可以看到這個專案。您選擇誰可以進行更改。\",\n                    \"Private\": \"私密\",\n                        \"You choose who can see and make changes to this project.\": \"您可以選擇誰查看此專案並對其進行更改。\",\n            // 協作者\n                \"This project doesn’t have any collaborators yet. Use the form below to add a collaborator.\": \"該專案還沒有任何協作者。使用下面的表格添加協作者。\",\n                \"Search by username, full name or email address\": \"搜索用戶名、全名、或電子郵箱\",\n\n                \"You’ll only be able to find a GitHub user by their email address if they’ve chosen to list it publicly. Otherwise, use their username instead.\": \"只有當 GitHub 用戶選擇公開電子郵箱地址時，您才能通過他們的電子郵箱地址找到他們。否則，請使用他們的用戶名代替。\",\n                \"Add collaborator\": \"Add collaborator\",\n                // [/isn’t a GitHub member/, \"不是 GitHub 成員\"],\n            \"Linked repositories\": \"關聯的倉庫\",\n                \"Link a repository\": \"關聯倉庫\",\n                \"Get more accurate suggestions and better search results by linking up to 25 repositories to this project.\": \"通過將多達 25 個倉庫關聯到這個專案，獲得更準確的建議和更好的搜索結果。\",\n                // [/(\\d+) linked repositories/, \"$1 個關聯倉庫\"],\n                \"This project doesn’t have any linked repositories yet.\": \"該專案暫無任何關聯的倉庫。\",\n\n        // https://github.com/users/<user-name>/projects/<id>/edit\n            \"(optional)\": \"(可選)\",\n            \"Once you delete this project, there is no going back. Please be certain.\": \"一旦您刪除了這個專案，就再也無法恢復。請確認。\",\n    },\n    \"regexp\": [ // 正則翻譯\n        [/updated/, \"更新於\"],\n        [/View (\\d+)/, \"視圖 $1\"],\n        [/Delete/, \"刪除\"],\n        [/Edit/, \"編輯\"],\n        // 1 member\n        [/(\\d+) member/, \"$1 成員\"],\n        [/Manage automation for/, \"管理自動化\"],\n        [/Archive all cards in/, \"存檔所有\"],\n        [/(\\d+) linked repositories/, \"$1 個關聯倉庫\"],\n        [/([\\d,]+) Open/, \"$1 打開\"], // 專案標籤卡\n        [/([\\d,]+) Closed/, \"$1 已關閉\"],\n        [/(\\d+) tasks? done/, \"$1 個任務完成\"],\n        // Showing 1 most recent item that has not been added to this project\n        [/Showing (\\d+) most recent item that has not been added to this project/, \"顯示 $1 個最近的專案，尚未添加到此專案\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Projects/, \"專案\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"new/project\"] = I18N[\"zh-TW\"][\"projects\"];\nI18N[\"zh-TW\"][\"repository/projects/new\"] = I18N[\"zh-TW\"][\"projects\"];\nI18N[\"zh-TW\"][\"repository/projects\"] = I18N[\"zh-TW\"][\"projects\"];\n\nI18N[\"zh-TW\"][\"redeem\"] = { // 兌換頁面\n    \"static\": { // 靜態翻譯\n        \"Enter coupon code\": \"輸入優惠券程式碼\",\n        \"Redeem\": \"兌換\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"github-copilot/signup\"] = { // GitHub Copilot 個人版獲取頁面\n    \"static\": { // 靜態翻譯\n    ...I18N[\"zh-TW\"][\"settings/copilot\"][\"static\"],\n\n        // https://github.com/github-copilot/signup\n           \"GitHub Copilot Individual\": \"GitHub Copilot 個人版\",\n           //\"The world's most widely adopted AI developer tool.\": \"世界上採用最廣泛的人工智能開發工具。\",\n           //\"GitHub Copilot is powered by generative AI to help you code faster and happier!\": \"GitHub Copilot 是由生成式 AI 驅動的，旨在幫助您更快樂、更高效地編碼！\",\n           \"For developers who want unlimited access to GitHub Copilot.\": \"適用於希望無限制訪問 GitHub Copilot 的開發人員。\",\n           \"Start your 30-day free trial\": \"開始 30 天免費試用\",\n               //\"GitHub Copilot uses the GPT-3.5 Turbo model to offer coding suggestions.\": \"GitHub Copilot 使用 GPT-3.5 Turbo 模型提供編碼建議。\",\n               //\"Chat with Copilot for assistance on a wide variety of scenarios, such as project-specific code explanations or help with debugging\": \"與 Copilot 聊天以獲取有關各種場景的幫助，例如特定於專案的程式碼解釋或調試幫助\",\n               //\"Get code suggestions as you type in more than a dozen coding languages, including Python, JavaScript, TypeScript, Go, and Ruby\": \"支持超過十種編程語言的程式碼建議，包括 Python、JavaScript、TypeScript、Go 和 Ruby。\",\n               //\"Plugs into IDEs, including VS Code, Visual Studio, JetBrains IDEs, and Neovim\": \"可以與包括 VS Code、Visual Studio、Neovim 和 JetBrains 在內的集成開發環境（IDE）配合使用\",\n               //\"Sign up for an annual subscription and get two months free!\": \"註冊年度訂閱，可享受兩個月免費福利。\",\n               \"Copilot Pro includes everything you get for free, plus:\": \"Copilot Pro 包括免費版所有內容，此外還有：\",\n                   \"Unlimited code completions and chat interactions\": \"無限程式碼完成和聊天互動\",\n                   \"Access to more models, like OpenAI o1 and Gemini 1.5 Pro\": \"訪問更多模型，如 OpenAI o1 和 Gemini 1.5 Pro\",\n                   \"Works in GitHub Mobile, CLI, and Windows Terminal\": \"可在 GitHub 移動端、CLI 和 Windows 終端中使用\",\n                   \"Cancel anytime before the trial ends to avoid getting billed\": \"在試用期結束前隨時取消，以避免收費。\",\n\n           \"Pay frequency after trial\": \"試用結束後付費頻率\",\n               \"Monthly plan\": \"月度計劃\",\n               \"/month\": \"/ 月\",\n               \"Yearly plan\": \"年度計劃\",\n               \"Save $20!\": \"節省 $20 ！\",\n               \"/year\": \"/ 年\",\n\n            \"Or get GitHub Copilot from an organization\": \"您可以通過組織獲取 GitHub Copilot\",\n                \"Organizations can provide their members (including you) and their teams access to GitHub Copilot.\": \"組織可以為其成員（包括您）和團隊提供訪問 GitHub Copilot 的權限。\",\n                \"Access Copilot from an organization\": \"從組織中訪問 GitHub Copilot。\",\n\n           \"Get access to GitHub Copilot\": \"獲取 GitHub Copilot 使用權限\",\n\n           \"Next: Confirm your payment details\": \"下一步：確認您的付款詳細信息\",\n\n           \"GitHub Copilot is free for maintainers of popular open source software on GitHub and verified students. Check out the\": \"GitHub Copilot 對於在 GitHub 上維護流行開源軟體的人員和經過驗證的學生是免費的。查看\",\n           \"free use FAQ\": \"免費使用常見問題解答（FAQ）\",\n           \"for more details.\": \"以獲取更多詳細信息。\",\n\n        // https://github.com/github-copilot/signup/success\n        \"Your AI pair programmer\": \"您的 AI 編程助理\",\n        \"Select your preferences\": \"設置規則\",\n            \"You can change these at any time from your account settings.\": \"您稍後可以在賬戶設置內更改。\",\n\n            // 此處引用 I18N[\"zh-TW\"][\"settings/copilot\"]部分詞條\n\n            \"Save and complete setup\": \"保存並繼續\",\n\n        // https://github.com/github-copilot/signup/settings\n            \"GitHub Copilot is now ready\": \"GitHub Copilot 已就緒\",\n                \"Add it to your editor and start building.\": \"添加至您的編輯器並開始構建\",\n\n            \"Install the GitHub Copilot extension\": \"安裝 GitHub Copilot 擴展\",\n                \"You can now use GitHub Copilot on the GitHub website. To use Copilot in your IDE, you first need to install the GitHub Copilot extension. To install for your preferred code editor, check out these Getting Started guides:\": \"您現在可以在 GitHub 網站上使用 GitHub Copilot。要在 IDE 中使用 Copilot，您需要安裝 GitHub Copilot 擴展。請查看這些入門指南：\",\n\n            \"If you have the extension already installed for your code editor and have it open, please restart your editor in order to access GitHub Copilot.\": \"如果您的程式碼編輯器中已經安裝了擴展並且是打開狀態，請重啟您的編輯器以使用 GitHub Copilot。\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"github-copilot/free_signup\"] = { // GitHub Copilot 個人免費版獲取頁面\n    \"static\": { // 靜態翻譯\n\n        \"Your AI pair programmer\": \"您的 AI 編程助理\",\n\n        // https://github.com/github-copilot/free_signup\n           \"Use GitHub Copilot for free\": \"免費使用 GitHub Copilot\",\n               \"🎉 Congratulations! You are eligible to use GitHub Copilot for free.\": \"🎉恭喜！您有資格免費使用 GitHub Copilot。\",\n               \"Get code suggestions in more than a dozen coding languages including Python, JavaScript, TypeScript, Go, and Ruby\": \"獲取十多種編碼語言的程式碼建議，包括 Python、JavaScript、TypeScript、Go 和 Ruby\",\n               \"Plugs into IDEs including VS Code, Visual Studio, Neovim, and JetBrains\": \"IDE 擴展，包括 VS Code、Visual Studio、Neovim 和 JetBrains\",\n           \"Eligibility requirements\": \"資格要求\",\n            \"GitHub Copilot is free to use for open source maintainers, teachers and students. We check eligibility monthly, per our policies.\": \"GitHub Copilot 對開源維護者、教師和學生免費開放。根據我們的政策，我們每月檢查一次使用資格。\",\n           \"Get access to GitHub Copilot\": \"獲取 GitHub Copilot 使用權限\",\n\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"github-copilot/pro\"] = { // GitHub Copilot 專業版適用頁面\n    \"static\": {\n        // https://github.com/github-copilot/pro\n            \"Try Copilot Pro for 30 days free\": \"免費試用 Copilot Pro 30 天\",\n\n            \"Everything in Copilot Free and:\": \"Copilot 免費版的所有功能以及：\",\n                \"Unlimited agent mode and chat with GPT-4.1\": \"無限智能體 GPT-4.1 暢聊\",\n                \"Unlimited code completions\": \"無限程式碼補全\",\n                \"Access to Anthropic Claude Sonnet 4, GPT-5, Gemini 2.5 Pro, and more\": \"可訪問 Anthropic Claude Sonnet 4、GPT-5、Gemini 2.5 Pro 等模型\",\n                \"300 premium requests to use the latest models and code review\": \"300 次高級請求，用於使用最新模型和程式碼審查\",\n\n            \"Try now\": \"立即試用\",\n                \"Part of an organization? Upgrade to\": \"屬於某個組織嗎？升級到\",\n                    \"Copilot Business\": \"Copilot 商業版\",\n                    \"to enable across teams.\": \"，以便在整個團隊中啟用。\",\n\n            \"Upgrade now\": \"現在升級\",\n\n        // https://github.com/github-copilot/pro/signup?\n            \"Copilot Pro checkout\": \"Copilot Pro 結賬\",\n            \"Free for 30 days\": \"免費試用 30天\",\n            \"Subscribe to GitHub Copilot Pro\": \"訂閱 GitHub Copilot Pro\",\n                \"Everything in Free, plus unlimited chats and code completions, premium model access (Claude 3.7/4 and more), and 6x more premium requests.\": \"免費提供所有服務，包括無限聊天和程式碼補全，高級模型訪問權限（Claude 3.7/4 及更多），以及 6 倍以上的高級請求量。\",\n                \"Review\": \"審查\",\n\n            ...I18N[\"zh-TW\"][\"payment-module\"][\"static\"], // 調用通用賬單及支付信息模塊\n\n            \"Billing frequency\": \"支付頻率\",\n                \"Pay monthly\": \"按月支付\",\n                    \"/ month\": \"/月\",\n                \"Pay yearly\": \"按年支付\",\n                    \"/ year\": \"/年\",\n                    \"Save $20.00\": \"節省 $20.00\",\n\n            \"- Free trial\": \"- 免費試用\",\n\n            \"You will be billed $100.00/year starting\": \"您將每年被收取 $100.00 自：\",\n            \"You will be billed $10.00/month starting\": \"您將每月被收取 $10.00 自：\",\n\n            \"To prevent abuse, we require billing information upfront. Your 30-day free trial will automatically convert to a paid plan after the trial ends. You can cancel anytime from settings before the trial expires to avoid being billed.\": \"為防止濫用，我們要求提前提供賬單信息。您的 30 天免費試用將在試用結束後自動轉換為付費計劃。您可以在試用到期前從設置中隨時取消，以避免被收費。\",\n\n            \"Yes please, I'd like GitHub and affiliates to use my information for personalized communications, targeted advertising and campaign effectiveness. The information used includes, but is not limited to, name、email address and country.\": \"好的。我希望 GitHub 及其附屬機構能使用我的信息進行個性化溝通、精準廣告和活動效果提升。所使用的信息包括但不限於姓名、電子郵件地址和國家。\",\n            \"See the\": \"請參閱\",\n            \"GitHub Privacy Statement\": \"GitHub 隱私聲明\",\n            \"for more details.\": \"獲取更多詳情。\",\n\n            \"Participation requires transferring your personal data to other countries in which GitHub operates, including the United States. By submitting this form, you agree to the transfer of your data outside of China.\": \"參與需要將您的個人數據轉移到 GitHub 運營的其他國家，包括美國。通過提交此表單，您同意將您的數據轉移到中國以外的地方。\",\n            \"Activate now\": \"立即激活\",\n\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-TW\"][\"orgs/enterprise_plan\"] = { // 企業版訂閱頁面\n    \"static\": {\n        // https://github.com/organizations/enterprise_plan\n            \"Pick your trial plan\": \"選擇您的試用計劃\",\n            \"Recommended\": \"推薦\",\n                \"Enterprise Cloud\": \"企業雲\",\n                    \"Build and deploy to GitHub-hosted cloud environments, directly from your repositories.\": \"直接從您的倉庫構建並部署到 GitHub 託管的雲環境。\",\n                \"Enterprise Server\": \"企業服務器\",\n                    \"Manage and deploy GitHub Enterprise on your own servers, including AWS, Azure, or GC\": \"在您自己的服務器（包括 AWS、Azure 或 GC）上管理和部署 GitHub 企業版\",\n            \"Why teams\": \"為何團隊\",\n            \"it: Get started in minutes, and leave the infrastructure to us.\": \"它：只需幾分鐘即可開始使用，基礎設施則交給我們來處理。\",\n            \"it: Control where your code and data live in a private cloud.\": \"它：控制您的程式碼和數據在私有云中的存放位置。\",\n    },\n    \"regexp\": [ // 正則翻譯\n    ],\n};\n\nI18N[\"zh-TW\"][\"codespaces\"] = { // 程式碼空間頁面\n    \"static\": {\n        // 頂部\n            \"Help us improve GitHub Codespaces\": \"幫助我們改進 GitHub 程式碼空間\",\n                \"Tell us how to make GitHub Codespaces work better for you with three quick questions.\": \"通過三個簡單的問題告訴我們如何讓 GitHub 程式碼空間更適合您。\",\n\n        // 維護提示\n            \"Codespaces is undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間正在維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n            \"Codespaces will be undergoing maintenance. Users may experience connection issues during this time, for more details please visit\": \"程式碼空間將進行維護。在此期間，用戶可能會遇到連接問題。更多詳情請訪問\",\n            \"this announcement\": \"此公告\",\n\n        // https://github.com/codespaces\n            \"Your codespaces\": \"您的程式碼空間\",\n\n            \"All\": \"所有\",\n            \"Templates\": \"模版\",\n            \"By repository\": \"按倉庫\",\n                \"Created from a template\": \"通過模板創建\",\n\n            \"Your instant dev environment\": \"您的即時開發環境\",\n            \"Go from code to commit faster on any project.\": \"在任何專案中，從程式碼到提交速度更快。\",\n            \"Go to docs\": \"轉到文檔\",\n            \"New codespace\": \"新建程式碼空間\",\n            \"Explore quick start templates\": \"瀏覽快速入門模板\",\n            \"See all\": \"查看所有\",\n            \"Use this template\": \"使用此模版\",\n            \"Getting started with GitHub Codespaces\": \"GitHub 程式碼空間入門\",\n            \"Learn core concepts\": \"學習核心概念\",\n            \"Configure and manage\": \"配置和管理\",\n            \"Develop locally\": \"在本地開發\",\n            \"New to Codespaces?\": \"剛接觸程式碼空間？\",\n            \"Start here\": \"從這裡開始\",\n            \". Learn the core concepts and how to get started.\": \"。學習核心概念以及如何開始。\",\n            \"Learn more about features like\": \"瞭解更多關於功能的信息，例如\",\n            \"secret management\": \"機密管理\",\n            \"port forwarding\": \"端口轉發\",\n            \"Access codespaces from within\": \"從內部訪問程式碼空間，使用\",\n\n            \"Request Usage Report\": \"請求使用報告\",\n\n            \"Retrieving…\": \"正在檢索…\",\n            \"Active\": \"活躍\",\n            \"Last used\": \"上次使用\",\n            \"Show more actions for codespace\": \"顯示程式碼空間的更多操作\",\n                \"Rename\": \"重命名\",\n                    \"Rename codespace\": \"重命名程式碼空間\",\n                    \"Name\": \"名稱\",\n                \"Export changes to a branch\": \"將更改導出到分支\",\n                    \"This will create a new branch with any unpushed changes\": \"這將創建一個包含任何未推送更改的新分支\",\n                    \"Checking branch status\": \"檢查分支情況\",\n                    \"Create branch\": \"創建分支\",\n                \"Export changes to a fork\": \"將更改導出到複刻\",\n                    \"You do not have write access to this codespace's repository. This will create a new fork of the repository at\": \"您沒有對此程式碼空間的倉庫的寫訪問權限。這將創建一個新的倉庫分支在\",\n                    \", reassign your codespace to that fork, and export your changes to a new branch.\": \"，將程式碼空間重新分配給該複刻，並將更改導出到新分支。\",\n                    \"Create fork\": \"創建複刻\",\n                \"Publish to a new repository\": \"發佈到新倉庫\", // 從模板創建\n                    \"This will create a new repository and push up your work.\": \"這將創建一新倉庫，並推送您的工作。\",\n                    // 公共\n                        \"Anyone on the internet can see this repository. You choose who can commit.\": \"互聯網上的任何人都可以看到該倉庫。您可以選擇誰可以提交。\",\n                    // 私有\n                        \"You choose who can see and commit to this repository.\": \"您選擇誰可以查看並提交到此倉庫。\",\n                    \"Create repository\": \"創建倉庫\",\n                \"Change machine type\": \"修改機器類型\",\n                    \"Change codespace machine type\": \"修改程式碼空間機器類型\",\n                        \"Machine type\": \"機器類型\",\n                            \"2-core\": \"雙核\",\n                            \"8GB RAM • 32GB\": \"8GB 內存 • 32GB 硬盤\",\n                            \"4-core\": \"四核\",\n                            \"16GB RAM • 32GB\": \"16GB 內存 • 32GB 硬盤\",\n                        \"Update codespace\": \"更新程式碼空間\",\n                \"Stop codespace\": \"停止程式碼空間\",\n                \"Delete\": \"刪除\",\n                    \"Are you sure?\": \"您確定嗎？\",\n                \"Auto-delete codespace\": \"自動刪除程式碼空間\",\n                \"Open in Browser\": \"在瀏覽器中打開\",\n                \"Open in Visual Studio Code\": \"在 Visual Studio Code 中打開\",\n                \"Open in JetBrains Gateway\": \"在 JetBrains Gateway 中打開\",\n                \"Open in JupyterLab\": \"在 JupyterLab 中打開\",\n                \"Start is temporarily disabled\": \"啟動暫時被禁用\",\n\n                \"Expiring in\": \"最後使用\", // GitHub 的爛活，原為過期，但居然還能重新打開\n\n            \"Created from\": \"創建自\",\n            \"2-core • 8GB RAM • 32GB\": \"雙核 • 8GB 內存 • 32GB 硬盤\",\n            \"4-core • 16GB RAM • 32GB\": \"四核 • 16GB 內存 • 32GB 硬盤\",\n\n            // 警告\n                \"You're at 100% of your included usage for this billing period. For more information, view your\": \"您已使用了本計費週期的 100% 額度。有關更多信息，請查看您的\",\n                \"billing settings\": \"賬單設置\",\n                \"You seem to have a billing issue. Please adjust your billing settings to continue using codespaces.\": \"您似乎遇到了賬單問題。請調整您的賬單設置以繼續使用程式碼空間。\",\n\n            // 狀態\n                \"No changes\": \"沒有更改\",\n                \"This codespace has uncommitted changes\": \"此程式碼空間有未提交的更改\",\n\n        // https://github.com/codespaces/templates\n            \"Choose a template\": \"選擇模版\",\n            \"Start a codespace from a template and get to developing with the power of a virtual machine in the cloud.\": \"從模板開始創建程式碼空間，然後利用雲中虛擬機的能力進行開發。\",\n            \"Use this template\": \"使用此模版\",\n\n        // https://github.com/codespaces/new\n            \"Create a new codespace\": \"新建程式碼空間\",\n            \"Codespace usage for this repository is paid for by\": \"該倉庫的程式碼空間使用費由以下人員支付\",\n            \"Repository\": \"倉庫\",\n                \"To be cloned into your codespace\": \"要被克隆到您的程式碼空間\",\n                \"Select a repository\": \"選擇倉庫\",\n                \"Search for a repository\": \"查找倉庫\",\n                \"Select repository\": \"選擇倉庫\",\n            \"Branch\": \"分支\",\n                \"This branch will be checked out on creation\": \"創建時將顯示此分支\",\n                \"Default branch\": \"默認分支\",\n                \"Default Branch\": \"默認分支\",\n                \"Select branch\": \"選擇分支\",\n                \"Find a branch\": \"查找分支\",\n                \"Switch branches\": \"切換分支\",\n                \"Find a branch...\": \"查找分支…\",\n                \"default\": \"默認\",\n                \"branches\": \"分支\",\n            \"Region\": \"區域\",\n                \"Your codespace will run in the selected region\": \"您的程式碼空間將在所選區域運行\",\n                \"US East\": \"美國東部\",\n                \"US West\": \"美國西部\",\n                \"Europe West\": \"歐洲西部\",\n                \"Southeast Asia\": \"東南亞\",\n                \"Australia\": \"澳大利亞\",\n            \"Machine type\": \"機器類型\",\n                \"Resources for your codespace\": \"程式碼空間的資源\",\n                \"None\": \"無\",\n                \"2-core\": \"雙核\",\n                \"8GB RAM • 32GB\": \"8GB 內存 • 32GB 硬盤\",\n                \"4-core\": \"四核\",\n                \"16GB RAM • 32GB\": \"16GB 內存 • 32GB 硬盤\",\n            \"Dev container configuration\": \"開發容器配置\",\n                \"Your codespace will use this configuration\": \"您的程式碼空間將使用此配置\",\n            \"Create codespace\": \"新建程式碼空間\",\n            \"Creating codespace\": \"新建程式碼空間中\",\n\n        // https://github.com/codespaces/new?hide_repo_select=true&ref=<branch-name>&repo=<repo-id>\n            \"Create codespace for\": \"創建程式碼空間\",\n\n        // 在拉取請求上創建程式碼空間 https://github.com/codespaces/new/<user-name>/<repo-name>/pull/<pull-id>?resume=1\n            \"Get started with development in the cloud from an existing repository or a template.\": \"從現有倉庫或模板開始雲開發。\",\n            \"Find out more about codespaces.\": \"瞭解更多關於程式碼空間的信息。\",\n\n            \"Start coding\": \"開始編程\",\n                \"Add a README file and start coding in a secure, configurable, and dedicated development environment.\": \"添加 README 文件並在安全、可配置和專用的開發環境中開始編碼。\",\n\n            // 警示\n                \"You cannot create a codespace on a closed pull request. Please reopen it if you wish to create a new codespace.\": \"您無法在已關閉的拉取請求上創建程式碼空間。如果您想創建新的程式碼空間，請重新打開它。\",\n\n            \"No codespace to resume\": \"沒有可恢復的程式碼空間\",\n                \"You don't have a codespace matching these settings. You can continue to create a new one or customize your settings.\": \"您沒有符合這些設置的程式碼空間。您可以繼續創建一個新空間或自定義設置。\",\n\n            \"Change options\": \"更改選項\",\n            \"new codespace\": \"新程式碼空間\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=vscode\n            \"Launching Visual Studio Code\": \"正在啟動 Visual Studio Code\",\n            \"You should have received a prompt to open Visual Studio Code. If not, ensure it is\": \"您應該已經收到打開 Visual Studio Code 的提示。如果沒有，請確保它已\",\n            \"installed\": \"被安裝\",\n\n        // https://github.com/codespaces/<codespace-name>?editor=jetbrains\n            \"Launching JetBrains Gateway\": \"正在啟動 JetBrains Gateway\",\n            \"You should have received a prompt to open the JetBrains Gateway. If not, ensure it is\": \"您應該已經收到打開 JetBrains Gateway 的提示。如果沒有，請確保它已\",\n    },\n    \"regexp\": [\n        [/By ([^ ]+)/, \"$1 發佈\"],\n        [/Owned by ([^ ]+)/, \"擁有者為 $1\"],\n        //[/Last used (\\d+) days ago/, \"上次使用 $1 天前\"],\n        //[/Last used 大約 (\\d+) 小時之前/, \"上次使用大約 $1 小時以前\"],\n        //[/Last used less than (\\d+) 分鐘之前/, \"上次使用小於 $1 分鐘以前\"],\n        //[/Last used (\\d+) 分鐘之前/, \"上次使用 $1 分鐘以前\"],\n        [/Codespace \"(.+)\" stopped./, \"程式碼空間 “$1” 停止。\"],\n        [/Codespace \"(.+)\" deleted./, \"程式碼空間 “$1” 刪除。\"],\n        [/Your codespace \"(.+)\" has been updated./, \"您的程式碼空間 “$1” 已更新。\"],\n        [/Your codespace \"(.+)\" will no longer be auto-deleted./, \"您的程式碼空間 “$1” 將不再自動刪除。\"],\n        [/Your codespace \"(.+)\" has been updated to use machine type: \"(\\d+) cores, (\\d+) GB RAM, (\\d+) GB storage\". Changes will take effect the next time your codespace restarts./, \"您的程式碼空間“$1”將更新機器類型為：“$2 核，$3 GB 內存，$4 GB 存儲”。更改將在下次啟動程式碼空間時生效。\"],\n        [/Are you sure you want to delete/, \"您確定要刪除\"],\n        [/(.+) has unpushed changes, are you sure you want to delete\\?/, \"$1 有未提交更改，您確定要刪除嗎？\"],\n        [/Last used (.+)/, (match, p1) => {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `最後使用${translatedDate}`;\n        }],\n        [/This codespace is (\\d+) commits? ahead of remote/, \"此程式碼空間 $1 條提交領先遠端\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Codespaces\": \"程式碼空間\",\n            \"Codespace templates\": \"程式碼空間模版\",\n            \"Create new codespace\": \"創建程式碼空間\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"codespaces/allow_permissions\"] = { // 程式碼空間申請額外權限頁面，似乎不可用\n    \"static\": {\n        \"This codespace is requesting\": \"該程式碼空間要求\",\n        \"additional permissions\": \"額外權限\",\n\n        \"Your codespace is requesting the following permissions for these repositories:\": \"您的程式碼空間正在為這些倉庫申請以下權限：\",\n\n        \"The following permissions were also requested but are not available. You can continue but the codespace may not function as intended.\": \"以下權限已申請，但不可用。您可以繼續，但程式碼空間可能無法正常運行。\",\n\n        \"Contents:\": \"內容：\",\n            \"write\": \"寫入\",\n\n        \"Continue without authorizing\": \"不授權繼續\",\n        \"Authorize and continue\": \"授權並繼續\",\n    },\n    \"regexp\": [\n        [/(\\d+) permissions? requested/, \"要求 $1 項權限\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"developer/register\"] = { // 開發者註冊\n    \"static\": {\n        // https://github.com/developer/register\n            // 標題\n                \"Register for the\": \"註冊\",\n                \"GitHub Developer Program\": \"GitHub 開發者計劃\",\n                \"The best way to integrate with GitHub.\": \"與 GitHub 集成最佳方法。\",\n            // 註冊表單\n                \"Select an account\": \"選擇賬戶\",\n                    \"Select an account to register\": \"選擇一個賬戶進行註冊\",\n                    \"You don’t belong to any organizations.\": \"您不屬於任何組織。\",\n                    \"Create Organization\": \"創建組織\",\n                    \"Support email address\": \"技術支持電子郵件地址\",\n                    \"An email address where GitHub users can contact you for support.\": \"供 GitHub 用戶聯繫您尋求支持的電子郵件地址。\",\n                \"Product or company website\": \"產品或公司網站\",\n                    \"The URL for the product, company, or service that integrates with GitHub.\": \"與 GitHub 集成的產品、公司或服務的網址。\",\n                    \"Website can't be blank\": \"網站不能為空\",\n            // 免責聲明\n                \"By clicking “Register for the GitHub Developer Program” below, you agree to the\": \"點擊 “註冊 GitHub 開發者計劃”，表示您已閱讀並同意\",\n                \"developer terms of service\": \"開發者服務條款\",\n                \"and the\": \"和\",\n                \"privacy statement\": \"隱私聲明\",\n                \". We’ll occasionally send you account related emails.\": \"。我們會偶爾向您發送與賬戶相關的電子郵件。\",\n\n            \"Register for the GitHub Developer Program\": \"註冊 GitHub 開發者計劃\",\n\n            \"Program Benefits\": \"開發者權益\",\n                \"Notification of API changes\": \"API 更改通知\",\n                \"Early access eligibility on select features\": \"獲得部分功能的搶先體驗資格\",\n                \"Eligibility for development licenses for GitHub products\": \"獲得 GitHub 產品的開發許可資格\",\n                \"GitHub profile membership badge\": \"GitHub 個人資料成員徽章\",\n                \"Learn more about the program\": \"瞭解更多關於 GitHub 開發者計劃的信息\",\n    },\n    \"regexp\": [ // 正則匹配\n    ],\n};\n\nI18N[\"zh-TW\"][\"features\"] = {\n    \"static\": {\n        \"The tools you need to build what you want.\": \"構建您想要的內容所需的工具。\",\n        // 看板\n        \"Experience AI\": \"體驗 AI\",\n            \"with Copilot Chat\": \"通過 Copilot\",\n            \"The latest GitHub\": \"最新 GitHub\",\n            \"previews\": \"預覽\",\n        // 流水圖\n        \"Collaborative\": \"協作\",\n            \"Coding\": \"編程\",\n        \"Contribute to projects quickly with automatic environment setup.\": \"通過自動環境設置快速為專案做出貢獻。\",\n        \"Make sure you see the changes you care about.\": \"確保您看到您關注的變化。\",\n        \"Build community around your code.\": \"圍繞您的程式碼建立社區。\",\n        // 列表\n            // 程式碼空間\n                \"Spin up fully configured dev environments in the cloud with the full power of your favorite editor.\": \"在雲端啟動完全配置的開發環境，並利用您最喜愛的編輯器的全部功能。\",\n            // GitHub Copilot\n                \"With GitHub Copilot, get suggestions for whole lines or entire functions right inside your editor.\": \"使用GitHub Copilot，在您的編輯器內部即可獲得整行程式碼或整個函數的建議。\",\n            // 拉取請求\n                \"Allow contributors to easily notify you of changes they've pushed to a repository – with access limited to the contributors you specify. Easily merge changes you accept.\": \"允許貢獻者輕鬆地通知您他們已經推送到倉庫的變更——訪問權限限制在您指定的貢獻者。輕鬆合併您接受的更改。\",\n            // 討論\n                \"Dedicated space for your community to come together, ask and answer questions, and have open-ended conversations.\": \"為您的社區提供一個專門的空間，以便聚集在一起，提問和回答問題，以及進行開放式的交流。\",\n            \"Code search & code view\": \"程式碼搜索 & 程式碼審查\",\n                \"Our powerful new code search and code view enable developers to rapidly search, navigate, and understand code right from GitHub.com.\": \"我們強大的新程式碼搜索和程式碼查看功能，使開發者能夠從GitHub.com上快速搜索、導航並理解程式碼。\",\n            // 通知\n                \"Get updates on the GitHub activity you've subscribed to. Use the notifications inbox to customize, triage, and manage your updates.\": \"獲取您訂閱的 GitHub 活動更新。使用通知收件箱來自定義、分類和管理您的更新。\",\n            \"Code reviews\": \"程式碼審查\",\n                \"Review new code, see visual code changes, and confidently merge code changes with automated status checks.\": \"審查新程式碼，查看視覺程式碼更改，並通過自動化狀態檢查自信地合併程式碼更改。\",\n            \"Code review assignments\": \"程式碼審查分配\",\n                \"Assign code reviews to make it clear which team members should submit their review for a pull request.\": \"分配程式碼審查，明確哪些團隊成員應該為拉取請求提交他們的審查。\",\n            \"Code owners\": \"程式碼所有者\",\n                \"Automatically request reviews–or require approval—by selected contributors when changes are made to sections of code that they own.\": \"當對他們擁有的程式碼部分進行更改時，自動請求選定貢獻者的審查，或者要求他們的批准。\",\n            \"Draft pull requests\": \"起草拉取請求\",\n                \"Use a pull request as a way to discuss and collaborate, without submitting to formal review or risking an unwanted merge.\": \"使用拉取請求作為一種討論和協作的方式，無需提交正式審查或冒不必要合併的風險。\",\n            \"Protected branches\": \"保護分支\",\n                \"Enforce restrictions on how code branches are merged, including requiring reviews, or allowing only specific contributors to work on a particular branch.\": \"強制限制程式碼分支的合併方式，包括要求審查，或者只允許特定貢獻者在某個特定分支上工作。\",\n            \"Team reviewers\": \"團隊審查人員\",\n                \"Request a team on GitHub to review your pull request. Members of the team will get a notification indicating that you've asked for their review.\": \"在 GitHub 上請求一個團隊審查您的拉取請求。團隊成員將收到通知，表明您已經要求他們進行審查。\",\n            \"Multiple assignees\": \"多人分配\",\n                \"Assign up to 10 people to work on a given issue or pull request, letting you more easily track who's working on what.\": \"可指派多達 10 人處理特定問題或拉取請求，讓您更容易追蹤誰在處理什麼。\",\n            \"Multiple reviewers\": \"多人審查\",\n                \"Request review from multiple contributors. Requested reviewers will be notified that you've asked for their review.\": \"請求多個貢獻者進行審查。被請求的審核者將收到通知，告知您已請求他們進行審查。\",\n            \"Multi-line comments\": \"多行評論\",\n                \"Clarify code reviews by referencing or commenting on multiple lines at once in a pull request diff view.\": \"通過在拉取請求差異視圖中一次引用或評論多行程式碼，來澄清程式碼審查。\",\n            \"Public repositories\": \"公共倉庫\",\n                \"Work with any GitHub member on code in a public repository you control. Make changes, open a pull request, create an issue, and more.\": \"與任何 GitHub 成員合作在您控制的公共倉庫中的程式碼。進行更改，打開一個拉取請求，創建一個問題等等。\",\n            \"Dark mode\": \"深色模式\",\n                \"Choose how you experience GitHub with theme settings. Swap to dark theme or default to your system preferences.\": \"通過主題設置來選擇您使用 GitHub 的方式。切換到深色主題或默認使用您的系統偏好設置。\",\n    },\n    \"regexp\": [\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Features · GitHub\": \"GitHub 特點 · GitHub\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"status\"] = { // GitHub Status\n    \"static\": {\n        // https://www.githubstatus.com/\n            \"Help\": \"幫助\",\n            \"Community\": \"社區\",\n            \"Subscribe To Updates\": \"訂閱更新\",\n                \"Subscribe to status updates\": \"訂閱狀態更新\",\n                    // 郵件\n                    \"Get email notifications whenever GitHub\": \"您會收到電子郵件通知每當 GitHub\",\n                        \"creates\": \"創建\",\n                        \"updates\": \"更新\",\n                        \"resolves\": \"解決\",\n                        \"an incident.\": \"某個事件時。\",\n                    \"Email address:\": \"郵件地址\",\n                        \"Subscribe via Email\": \"通過郵件訂閱\",\n                        \"Subscribing...\": \"訂閱中…\",\n                    \"By subscribing you agree to our\": \"訂閱即表示您同意我們的\",\n                        \"Privacy Policy\": \"隱私政策\",\n                        \"This site is protected by reCAPTCHA and the Google\": \"本網站受 reCAPTCHA 保護，適用 Google\",\n                        \"Terms of Service\": \"服務條款\",\n                        \"apply.\": \"。\",\n                    // 電話\n                        \"Get text message notifications whenever GitHub\": \"您會收到短信通知每當 GitHub\",\n                        \"Country code:\": \"國家程式碼：\",\n                        \"Phone number:\": \"電話號碼：\",\n                        \"Subscribe via Text Message\": \"通過短信訂閱\",\n                        \"Message and data rates may apply. By subscribing you agree to our\": \"信息和數據費率可能適用。訂閱即表示您同意我們的\",\n                            \"the\": \" \",\n                            \", and the\": \"和\",\n                            \". This site is protected by reCAPTCHA and the Google\": \"。本網站受 reCAPTCHA 保護，適用 Google\",\n                    // Slack\n                        \"Get incident updates and maintenance status messages in Slack.\": \"在 Slack 中獲取事件更新和維護狀態信息。\",\n                        \"Subscribe via Slack\": \"通過 Slack 訂閱\",\n                        \"By subscribing you acknowledge our\": \"通過訂閱，您承認我們的\",\n                        \". In addition, you agree to the Atlassian\": \"。此外，您同意 Atlassian\",\n                        \"Cloud Terms of Service\": \"雲服務條款\",\n                        \"and acknowledge Atlassian's\": \"並承認 Atlassian 的\",\n                    // Web 鉤子\n                        \"Get webhook notifications whenever GitHub\": \"您會收到 Web 鉤子每當 GitHub\",\n                            \"an incident,\": \"一個事件，\",\n                            \"an incident or\": \"一個事件或\",\n                            \"changes\": \"更改\",\n                            \"a component status.\": \"組件狀態時。\",\n                        \"Webhook URL:\": \"Web 鉤子 URL\",\n                            \"The URL we should send the webhooks to\": \"我們應將 Web 鉤子發送到的 URL\",\n                        \"We'll send you email if your endpoint fails\": \"如果您的終端出現故障，我們將向您發送電子郵件\",\n                        \"Subscribe\": \"訂閱\",\n                    // X\n                        \"Follow @githubstatus\": \"關注 @githubstatus\",\n                        \"view our profile\": \"查看我們的簡介\",\n                    // 支持網站\n                        \"Visit our\": \"訪問\",\n                        \"support site\": \"支持站點\",\n                    // 播客\n                        \"Get the\": \"獲取\",\n                        \"Atom Feed\": \"Atom 反饋\",\n                        \"RSS Feed\": \"RSS 反饋\",\n            \"Current Status: GitHub.com\": \"當前狀態：GitHub.com\",\n            \"All Systems Operational\": \"所有系統運行正常\",\n            \"Normal\": \"正常\",\n                \"Operational\": \"運行\",\n            \"Incident\": \"故障\",\n                \"Major Outage\": \"重大故障\",\n            \"Degraded\": \"降級\",\n                \"Partial Outage\": \"部分中斷\",\n            \"Maintenance\": \"維護\",\n                \"Under Maintenance\": \"維護中\",\n            \"Git Operations\": \"Git 操作\",\n                \"Performance of git clones, pulls, pushes, and associated operations\": \"git 克隆、拉取、推送和相關操作的性能\",\n            \"API Requests\": \"API 請求\",\n                \"Requests for GitHub APIs\": \"GitHub API 請求\",\n            \"Webhooks\": \"Web 鉤子\",\n                \"Real time HTTP callbacks of user-generated and system events\": \"實時 HTTP 回調用戶生成的事件和系統事件\",\n            // 議題\n                \"Requests for Issues on GitHub.com\": \"GitHub.com 上的議題請求\",\n            \"Pull Requests\": \"拉取請求\",\n                \"Requests for Pull Requests on GitHub.com\": \"GitHub.com 上的拉取請求\",\n            // 操作\n                \"Workflows, Compute and Orchestration for GitHub Actions\": \"GitHub 操作的工作流、計算和協調\",\n            // 軟體包\n                \"API requests and webhook delivery for GitHub Packages\": \"GitHub 軟體包的 API 請求和 Web 鉤子發送\",\n            // Github Pages\n                \"Frontend application and API servers for Pages builds\": \"用於頁面構建的前端應用程式和應用程式接口服務器\",\n            // 程式碼空間\n                \"Orchestration and Compute for GitHub Codespaces\": \"GitHub 程式碼空間的協調與計算\",\n            \"For the status of GitHub Enterprise Cloud - EU, please visit:\": \"有關歐盟版 GitHub 企業雲的狀態，請訪問\",\n            \"For the status of GitHub Enterprise Cloud - Australia, please visit\":\"有關澳大利亞版 GitHub 企業雲的狀態，請訪問\",\n            \"For the status of GitHub Enterprise Cloud - US, please visit\":\"有關美國版 GitHub 企業雲的狀態，請訪問\",\n            \"Current Status\": \"當前狀態\",\n            \"Incident History\": \"歷史事故\",\n\n        \"Codespaces Scheduled Maintenance\": \"程式碼空間計劃維護\",\n\n        \"Subscribe to our developer newsletter\": \"訂閱我們的開發者新聞\",\n        \"Get tips, technical guides, and best practices. Twice a month. Right in your inbox.\": \"獲取提示、技術指南和最佳實踐。每月兩次。直接發送到您的收件箱。\",\n\n\n        // https://www.githubstatus.com/history\n            \"Incident with Packages\": \"軟體包事故\",\n            \"Incident with Issues\": \"議題事故\",\n            \"Incident with Codespaces\": \"程式碼空間事故\",\n            \"Incident with Copilot\": \"Copilot 事故\",\n            \"Incident with Pull Requests\": \"拉取請求事故\",\n            \"Incident with Git Operations\": \"Git 操作事故\",\n            \"Incident with API Requests\": \"API 請求事故\",\n            \"Incident with Actions\": \"操作事故\",\n            \"Incident with Pages\": \"Pages 事故\",\n            \"Incident with Webhooks\": \"Web 鉤子事故\",\n            \"We are investigating reports of degraded performance.\": \"我們正在調查性能下降的報告。\",\n            \"This incident has been resolved.\": \"此事故已解決。\",\n            \"Disruption with some GitHub services\": \"某些 GitHub 服務中斷\",\n            \"+ Show All\": \"+ 展開全部\",\n            \"Incidents\": \"個事故\",\n            \"- Collapse Incidents\": \"- 收起事故\",\n            \"Current status\": \"當前狀態\",\n            \"No incidents reported for this month.\": \"本月無事故報告。\",\n\n        // https://www.githubstatus.com/incidents/xxxxxxxxxxxx\n            \"Incident Report for GitHub\": \"GitHub 事故報告\",\n            \"Resolved\": \"解決\",\n            \"Investigating\": \"調查\",\n            \"Posted\": \"更新\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-TW\"][\"skills\"] = { // https://skills.github.com/\n    \"static\": { // 靜態翻譯\n        \"GitHub Skills\": \"Github 技能\",\n            \"Learn how to use GitHub with interactive courses designed for beginners and experts.\": \"通過專為初學者和專家設計的互動課程，學習如何使用 GitHub。\",\n            \"Start with\": \"開始於\",\n                \"Introduction to GitHub\": \"GitHub 介紹\",\n        \"Our courses\": \"我們的課程\",\n            \"First day on GitHub\": \"第一天\",\n                // Github介紹\n                    \"Get started using GitHub in less than an hour.\": \"在不到一個小時的時間內開始使用 GitHub。\",\n                \"Communicate using Markdown\": \"使用 Markdown 交流\",\n                    \"Organize ideas and collaborate using Markdown, a lightweight language for text formatting.\": \"使用 Markdown（一種用於文本格式的輕量級語言）組織想法和協作。\",\n                // Github Pages\n                    \"Create a site or blog from your GitHub repositories with GitHub Pages.\": \"使用 GitHub Pages 從 GitHub 倉庫創建站點或博客。\",\n            \"First week on GitHub\": \"第一週\",\n                \"Review pull requests\": \"審查拉取請求\",\n                    \"Collaborate and work together on GitHub.\": \"在 GitHub 上協作。\",\n                \"Resolve merge conflicts\": \"解決合併衝突\",\n                    \"Learn why conflicts happen and how to resolve them.\": \"瞭解衝突發生的原因以及如何解決衝突。\",\n                \"Release-based workflow\": \"基於發行版的工作流\",\n                    \"Practice a release-based workflow and explore branching strategies.\": \"練習基於發佈的工作流程，探索分支策略。\",\n                \"Connect the dots\": \"連接信息\",\n                    \"Find relevant conversations, commits, and projects in a repository.\": \"查找倉庫中的相關對話、提交和專案。\",\n                \"Code with Codespaces\": \"使用程式碼空間編程\",\n                    \"Develop code using GitHub Codespaces and Visual Studio Code.\": \"使用 GitHub 程式碼空間和 Visual Studio Code 開發程式碼。\",\n                \"Code with Copilot\": \"使用 Copilot 編程\",\n                    \"Develop with AI-powered code suggestions using GitHub Copilot, Codespaces, and VS Code.\": \"使用 GitHub Copilot、程式碼空間和 VS Code，利用人工智能驅動的程式碼建議進行開發。\",\n            \"Automate workflows with GitHub Actions\": \"使用 GitHub 操作自動執行工作流程\",\n                \"Hello GitHub Actions\": \"您好 GitHub 操作\",\n                    \"Create a GitHub Action and use it in a workflow.\": \"創建 GitHub 操作並在工作流程中使用。\",\n                \"Test with Actions\": \"使用操作測試\",\n                    \"Create workflows that enable you to use Continuous Integration (CI) for your projects.\": \"創建工作流程，使您能夠在專案中使用持續集成 (CI)。\",\n                \"Publish packages\": \"發佈軟體包\",\n                    \"Use GitHub Actions to publish your project to a Docker image.\": \"使用 GitHub 操作將專案發佈為 Docker 鏡像。\",\n                \"Deploy to Azure\": \"部署到 Azure\",\n                    \"Create a deployment workflow using GitHub Actions and Microsoft Azure.\": \"使用 GitHub 操作和 Microsoft Azure 創建部署工作流程。\",\n                \"Write JavaScript actions\": \"編寫 JavaScript 操作\",\n                   \"Write your own GitHub JavaScript Action.\": \"編寫自己的 GitHub JavaScript 操作。\",\n                \"Reusable workflows\": \"可重複使用的工作流程\",\n                    \"Make a workflow reusable in other workflows.\": \"讓一個工作流程可在其他工作流程中重複使用。\",\n            \"Code security and analysis\": \"程式碼安全和分析\",\n                \"Secure your repository supply chain\": \"確保您的倉庫供應鏈安全\",\n                    \"Secure your supply chain, patch dependency vulnerabilities.\": \"確保供應鏈安全，修補依賴性漏洞。\",\n                \"Secure code game\": \"安全程式碼遊戲\",\n                    \"Learn about software security in a fun, educational environment.\": \"在寓教於樂的環境中學習軟體安全知識。\",\n                \"Introduction to CodeQL\": \"CodeQL 簡介\",\n                    \"Learn how to enable CodeQL to secure your code.\": \"瞭解如何啟用 CodeQL 以確保程式碼安全。\",\n                \"Change commit history\": \"更改提交歷史\",\n                    \"A skills course on changing the commit history with Git.\": \"使用 Git 更改提交歷史的技能課程。\",\n                \"Introduction to secret scanning\": \"安全掃描介紹\",\n                    \"Enable secret scanning and take a feature tour.\": \"啟用安全掃描並進行功能導覽。\",\n            // 底部提示框\n            \"Have an idea for a course? Build your own with our quickstart guide.\": \"有課程想法？使用我們的快速入門指南，創建您自己的課程。\",\n                \"View quickstart guide\": \"查看快速入門指南\",\n\n            //底部欄\n            \"Expert Services\": \"專家服務\",\n\n        // 快速入門指南 https://skills.github.com/quickstart\n        \"GitHub Skills Quickstart Guide\": \"GitHub 技能快速入門指南\",\n            \"Build your own GitHub Actions-powered courses in a few simple steps.\": \"只需幾個簡單的步驟，就能構建自己的由 GitHub 操作驅動的課程。\",\n            \"This guide covers planning your course, building your course, and best practices for GitHub Actions-powered courses.\": \"本指南包括規劃課程、構建課程以及由 GitHub 操作驅動的課程的最佳實踐。\",\n            \"Take a look at our\": \"查看我們的\",\n            \"courses for examples and templates.\": \"課程，瞭解示例和模板。\",\n        \"Table of contents\": \"目錄\",\n        \"Author prerequisites\": \"作者必備條件\",\n            \"Course authors should be familiar with\": \"課程作者在開始製作自己的課程之前，應熟悉\",\n            \"GitHub Actions\": \"GitHub 操作\",\n            \"before starting to make their own courses.\": \"。\",\n            \"Some courses will require knowledge of\": \"部分課程需要了解\",\n            \"command line\": \"命令行\",\n        \"Planning your course\": \"規劃課程\",\n            \"Write down your learning goals\": \"寫下學習目標\",\n                \"Does your course give the learner something practical to work on?\": \"您的課程是否為學員提供了實用的學習內容？\",\n                    \"Learners prefer working on real projects over examples.\": \"相比示例，學員更喜歡實際專案。\",\n                    \"How can the learner use this project after they finish the course?\": \"完成課程後，學員如何使用該專案？\",\n                \"What specific skill does the learner leave your course with?\": \"學員在結束課程後能掌握哪些具體技能？\",\n                    \"Focus on what the learner will be able to do after they complete the course.\": \"重點是學員在完成課程後能夠做什麼。\",\n                \"Is an Actions-based course right for your goal?\": \"基於操作的課程適合您的目標嗎？\",\n                    \"Does the learning experience benefit from step-by-step, in-repository learning?\": \"學習體驗是否得益於循序漸進的庫內學習？\",\n            \"Outline your steps\": \"概述步驟\",\n                \"Does this workflow match what the learner will do in the “real world”?\": \"這一工作流程是否與學員在“真實世界”中要做的事情相匹配？\",\n                    \"If you were teaching your friend, how would you interact with them in the repository?\": \"如果您在教您的朋友，您會如何在倉庫中與他們互動？\",\n                    \"Does each step build towards the skills you’ve identified?\": \"每一步是否都是為了培養您所確定的技能？\",\n                \"Can you teach the skill in three to five small steps?\": \"您能分三到五個小步驟教授技能嗎？\",\n                    \"Most learners tend to drop off after 30-45 minutes.\": \"大多數學員往往在 30-45 分鐘後就會放棄學習。\",\n                    \"We’ve found that it takes learners about four times the length of an expert to complete a course.\": \"我們發現，學員完成一門課程所需的時間大約是專家的四倍。\",\n                    \"If your course needs more steps, consider splitting your learning objective into multiple courses.\": \"如果您的課程需要更多的步驟，可以考慮將學習目標分成多個課程。\",\n                \"Does the order of the steps build the learner’s knowledge in each step?\": \"步驟的順序是否有助於學員掌握每個步驟的知識？\",\n                    \"Each step should reference and build on the knowledge in the previous steps.\": \"每個步驟都應參考和借鑑前幾個步驟的知識。\",\n                \"Does each step relate to the main learning goal?\": \"每個步驟都與主要學習目標相關嗎？\",\n                    \"You can use GitHub Actions and GitHub CLI to automate any needed steps that don’t build towards the learning goal.\": \"您可以使用 GitHub 操作和 GitHub CLI 自動執行任何不需要的步驟，以實現學習目標。\",\n        \"Set up your repository\": \"設置倉庫\",\n            \"Start by clicking “Use this template” on our\": \"點擊 “使用此模板” 開始。\",\n                \"course template\": \"課程模板\",\n            \"Check the box for “Template repository” either when setting up your repository, or\": \"在創建倉庫時或在\",\n                \"in the repository settings\": \"倉庫設置\",\n                \"afterwards. Actions\": \"中勾選 “模板版本庫” 複選框。複刻倉庫中操作\",\n                \"are not enabled by default\": \"默認不啟用\",\n                \"in forks.\": \"。\",\n            \"Add a 1280×640 social image. Learners will share your course on different websites that will pull in the social image.\": \"添加一張 1280×640 的社交圖片。學員將在不同網站上分享您的課程，而這些網站將調入社交圖片。\",\n            \"Enable the automatically delete head branches\": \"啟用自動刪除頭部分支設置\",\n                \"setting.\": \"。\",\n            \"Add a LICENSE file to your repository\": \"在倉庫中添加 LICENSE 文件。\",\n                \". GitHub uses Creative Commons Attribution 4.0 International.\": \"GitHub 採用知識共享署名 4.0 國際協議。\",\n            \"Add a\": \"添加一個\",\n                \"file\": \"文件。\",\n                \". You can see an\": \"您可以查看\",\n                \"example\": \"示例\",\n                \". We recommend at minimum ignoring operating system generated files.\": \" 文件。我們建議至少忽略操作系統生成的文件。\",\n            \"Include\": \"將\",\n                \"in the\": \"包含於\",\n                \"repository topics\": \"倉庫主題內\",\n        \"Writing your README\": \"編寫自述文件\",\n            \"Your README file will have a few sections: a header, a start step, three to five workflow steps, a finish step, and a footer.\": \"README 文件將包含幾個部分：頁眉、開始步驟、三到五個工作流程步驟、結束步驟和頁腳。\",\n            \"The raw source of the README in\": \" \",\n                \"includes many comments you can use to guide the development of your course’s README file.\": \"中的 README 源碼包含了許多註釋，您可以用來指導課程 README 文件的開發。\",\n            \"Writing your README: Header\": \"編寫自述文件：頁眉\",\n                \"Start with a short paragraph describing what you’ll teach. Be sure to include information on how the course is relevant to the learner. This paragraph should answer the question, “Why should I take this course?”\": \"首先用一小段文字描述您的教學內容。請務必說明課程與學員的相關性。這一段應該回答“我為什麼要學習這門課程？”\",\n                \"Include the course title in sentence case, and a concise description in emphasis.\": \"用句子大小寫寫上課程名稱，並用著重號簡明扼要地描述。\",\n            \"Writing your README: Start\": \"編寫自述文件：開始\",\n                \"A brief paragraph should describe the goal of the course, what the learner will learn, and why they should take the course.\": \"請用簡短的一段文字說明課程的目標、學員將學到什麼以及為什麼要學習該課程。\",\n                \"A brief list of the following items can help the learner decide if the course is right for them:\": \"以下專案的簡要列表可以幫助學習者確定該課程是否適合他們：\",\n                    \"Who is this for\": \"這是給誰學的\",\n                    \"What you’ll learn\": \"學習內容\",\n                    \"What you’ll build\": \"構建內容\",\n                    \"Prerequisites\": \"先決條件\",\n                    \"How long the course is (time and steps)\": \"課程有多長（時間和步驟）\",\n                \"Include clear directions on how to start the course.\": \"包括有關如何開始課程的明確說明。\",\n            \"Writing your README: Steps\": \"編寫自述文件：步驟\",\n                \"Each step should:\": \"每個步驟都應該\",\n                \"Acknowledge the learner completed the previous step, using emphasis (italics).\": \"使用強調（斜體）來確認學習者已完成上一步。\",\n                \"Concisely describe the concept behind the next step. Link to GitHub docs for more in-depth explanation.\": \"簡明描述下一步背後的概念。鏈接到 GitHub 文檔以獲取更深入的解釋。\",\n                \"Describe what the learner is about to do\": \"描述學習者將要做什麼\",\n                \"Mark the activity with\": \"標記活動使用\",\n                \"Use an ordered list to briefly describe what the learner needs to do\": \"使用有序列表簡要描述學習者需要做什麼\",\n                \"Let the learner know it will need about 20 seconds and refresh to move on to the next step\": \"讓學習者知道大約需要 20 秒，然後刷新即可進入下一步\",\n                \"Include warning and troubleshooting information if the learner gets stuck\": \"如果學習者遇到困難，請提供警告和故障排除信息\",\n                \"Try to keep your formatting consistent so the learner can more easily find what they are looking for.\": \"儘量保持格式一致，以便學員可以更輕鬆地找到他們要查找的內容。\",\n                \"The first step is the hardest, so pick something easy! On the first step, encourage users to open new tabs for steps.\": \"第一步是最難的，所以要選擇簡單的步驟！在第一步，鼓勵用戶打開新的標籤頁進行操作。\",\n            \"Writing your README: Finish\": \"編寫自述文件：結束\",\n                \"In the finish section,\": \"在結束部分，\",\n                \"Celebrate that the learner finished the course\": \"慶祝學習者完成課程\",\n                \"Include an celebratory image\": \"附上一張慶祝圖片\",\n                \"Review what the learner just did\": \"回顧學習者剛剛做的事情\",\n                \"Provide next steps for learners who want to know more\": \"為想要了解更多信息的學習者提供後續步驟\",\n                \"Invite feedback about the course\": \"邀請學習者對課程提出反饋\",\n            \"Writing your README: Footer\": \"編寫自述文件：頁腳\",\n                \"Include a link for how learners should get help if they get stuck or have further questions\": \"如果學習者遇到困難或有進一步的問題，可通過鏈接瞭解如何獲得幫助\",\n                \"Include a link to the GitHub status page. If GitHub Actions is down, the course won’t work.\": \"包含指向 GitHub 狀態頁面的鏈接。如果 GitHub 操作崩潰，課程將無法運行。\",\n                \"Include copyright information and a link to the license\": \"包含版權信息和許可證鏈接\",\n                \"Include Code of Conduct and other contributing information\": \"包含行為準則和其他有效信息\",\n                \"The footer should not be included in the finish section. The footer should appear regardless of which step the learner is currently on.\": \"結束部分不應包含頁腳。無論學員當前處於哪個步驟，都應顯示頁腳。\",\n        \"Writing your Actions workflow files\": \"編寫操作工作流程文件\",\n            \"Writing your Actions workflow files: Connect your steps to GitHub Actions events\": \"編寫操作工作流程文件：將步驟連接到 GitHub 操作事件\",\n               \"Every step will have an Actions workflow file that triggers on\": \"每個步驟都會有一個根據\",\n               \"GitHub Actions events\": \"GitHub 操作事件\",\n               \". Start by reviewing which event corresponds with each of your steps.\": \"觸發的操作工作流文件。首先查看每個步驟對應的事件。\",\n            \"Writing your Actions workflow files: Identify what GitHub Actions will need to do in each step\": \"編寫操作工作流程文件：確定 GitHub 操作在每個步驟中需要做的事情\",\n                \"You can use\": \"您可以在操作工作流中使用\",\n                \"in your Actions workflows to perform almost any GitHub interaction you can think of. Write down everything each step will need to do to complete the step. Store links for reference as your work on your course.\": \"來執行您能想到的幾乎所有 GitHub 交互操作。寫下完成每個步驟需要做的所有事情。存儲鏈接，以便在學習課程時參考。\",\n            \"Writing your Actions workflow files: Sections of the workflow file\": \"編寫操作工作流程文件： 工作流程文件的各部分\",\n                \"Take a look at\": \"查看\",\n                \"for example workflow files.\": \"中的工作流程示例文件。\",\n                \"Each workflow file has the name format:\": \"每個工作流程文件的名稱格式為\",\n                \", where\": \"其中\",\n                \"is the step number and\": \"是步驟編號，\",\n                \"describes the step. We recommend this format to make it easy to see the order the steps will run in.\": \"描述步驟。我們推薦使用這種格式，以便於查看各步驟的運行順序。\",\n                \"Each workflow file will have a few sections, the name, describing comments, event trigger, job header, and steps.\": \"每個工作流程文件都有幾個部分：名稱、描述註釋、事件觸發器、任務標題和步驟。\",\n                \"The first section is the\": \"第一部分為\",\n                \"name\": \"名稱\",\n                \"Next, add\": \"接下來，添加\",\n                \"comments describing\": \"註釋\",\n                \"what the Actions workflow will do:\": \"，說明操作工作流要做什麼：\",\n                \"Followed by the\": \"隨後是\",\n                \"event trigger\": \"事件觸發器\",\n                \"Next is the\": \"接下來是\",\n                \"job header\": \"任務標題\",\n                \". You can add\": \"。您可以在這裡添加\",\n                \"tags to limit the scope of the event trigger here. You’ll also need to specify\": \"標籤來限制事件觸發的範圍。您還需要指定\",\n                \"to get your Actions workflow running.\": \"，以運行操作工作流。\",\n                \"Last, we are finally in the\": \"最後，我們終於進入了操作工作流的\",\n                \"steps\": \"步驟\",\n                \"of the Actions workflow. This is the heart of the file, where you can customize your course the most.\": \"。這是文件的核心部分，在這裡您可以對課程進行最大程度的自定義。\",\n                \"You may include the\": \"您可以在課程中包含\",\n                \"update step action\": \"更新步驟操作\",\n                \"in your course, however it is not fully required. You may also customize this script to meet the needs of your course.\": \"，但並非完全必需。您也可以自定義此腳本，以滿足課程的需要。\",\n                \"Include thorough comments in your workflow files to describe each section. Other authors and your future self will thank you later.\": \"在您的工作流程文件中包含詳盡的註釋，以描述每個部分。其他作者和未來的自己都會感謝您。\",\n        \"Testing and monitoring your course\": \"測試和監控課程\",\n            \"Click on “Use this template” and run through your course on a your personal account. Does everything work? Do any actions go red?\": \"點擊 “使用此模板”，然後在個人賬戶上運行課程。一切正常嗎？是否有任何操作變紅？\",\n            \"Consider asking for both technical and content review.\": \"考慮要求進行技術和內容審查。\",\n            \"Test your course with a potential learner.\": \"與潛在學員一起測試課程。\",\n            \"Check in our your course regularly for any reported issues or out-of-date information.\": \"定期檢查您的課程，查看是否有任何報告的問題或過時的信息。\",\n        \"Best practices for building courses\": \"構建課程的最佳做法\",\n            \"Not everyone reads docs! Many potential course authors will use your course as an example. Make sure to include lots of comments in your README and Actions workflow files.\": \"不是每個人都會閱讀文檔！許多潛在的課程作者會將您的課程作為範例。請確保在您的 README 和操作工作流程文件中包含大量註釋。\",\n            \"Keep everything you need in the one course repository.\": \"將您需要的一切都保存在一個課程倉庫內。\",\n            \"If you need your courses to have limited access, create an organization for your courses, make your courses private, and invite the specific users that need these courses to your organization.\": \"如果您需要限制課程的訪問權限，請為您的課程創建一個組織，將您的課程設為私人課程，並邀請需要這些課程的特定用戶加入您的組織。\",\n            \"Consider adding a Code of Conduct, contributing guide, and issue templates.\": \"考慮添加行為準則、貢獻指南和議題模板。\",\n            \"Keep the number of files and folders in the root directory short. More items in the root level means the README is further down the page.\": \"儘量減少根目錄中文件和文件夾的數量。根目錄中的專案越多，README 就越靠近頁面底部。\",\n            \"Content\": \"內容\",\n                \"The more content you have, the more content you will have to update later. Be concise. Link to the GitHub Docs whenever you can.\": \"內容越多，以後需要更新的內容就越多。簡明扼要。儘可能鏈接到 GitHub 文檔。\",\n                \"Where does the learner go to get help? Add links to your README to let the learner know where to ask for help.\": \"學習者從哪裡獲得幫助？在 README 中添加鏈接，讓學習者知道到哪裡尋求幫助。\",\n                \"Make it as easy as possible for the learner to get started. Learners will give up if they don’t make some progress within a few minutes.\": \"儘可能讓學員容易上手。如果學習者不能在幾分鐘內取得一些進展，他們就會放棄。\",\n                \"Write in casual, polite, active, and inspiring language. We’ve found courses perform better when they are more friendly.\": \"用隨意、禮貌、活躍和鼓舞人心的語言寫作。我們發現，當課程更具親和力時，效果會更好。\",\n                \"Use emoji to convey a positive tone. Emoji can add to content, but use words to convey meaning.\": \"使用表情符號傳達積極的語氣。表情符號可以為內容錦上添花，但要用文字表達意思。\",\n                \"Check spelling and grammar.\": \"檢查拼寫和語法。\",\n                \"Limit use of acronyms, write out the full text instead.\": \"限制使用縮略語，而應寫出全文。\",\n                \"Images can be helpful, but only when they are up-to-date.\": \"圖片可以起到輔助作用，但必須是最新的。\",\n                \"Provide examples and templates to reduce how much work the learner needs to do to complete the step.\": \"提供示例和模板，以減少學員完成該步驟所需的工作量。\",\n                \"Follow the\": \"遵循\",\n                \"GitHub docs content style guide\": \"GitHub 文檔內容風格指南\",\n            \"Actions workflows\": \"操作工作流程\",\n                \"You can do anything in your course that GitHub Actions can do. Review the\": \"您可以在課程中做任何 GitHub 操作能做的事。查看\",\n                \"GitHub Actions docs\": \"GitHub 操作文檔\",\n                \"and some\": \"和一些\",\n                \"examples of GitHub Actions\": \"GitHub 操作示例\",\n                \"to get a feel for what all actions can do.\": \"，瞭解所有操作的功能。\",\n                \"If you are building a course for your own organization, you can add your own analytics or learning management system integration as part of the Actions workflows.\": \"如果您正在為自己的組織構建課程，您可以添加自己的分析或學習管理系統集成，作為操作工作流的一部分。\",\n            \"Sharing your course\": \"分享您的課程\",\n                \"Your course only matters if potential learners know about it. Where can you link to your course? If public, is social media an option?\": \"只有當潛在學員知道您的課程時，您的課程才有意義。在哪裡可以鏈接到您的課程？如果是公開的，是否可以選擇社交媒體？\",\n                \"Make sure your course includes keywords and text that someone would search for in Google and other search engines.\": \"確保您的課程中包含有人會在 Google 和其他搜索引擎中搜索的關鍵字和文本。\",\n    },\n    \"regexp\": [\n    ],\n};\n\nI18N[\"zh-TW\"][\"orgs/sponsoring\"] = { // https://github.com/orgs/<org-name>/sponsoring 贊助頁\n    \"static\": {\n        //\"hasn’t sponsored any users yet.\": \"尚未贊助任何人。\",\n        \"'s sponsorships\": \" 的贊助者\",\n\n        \"Current Sponsorships\": \"當前贊助者\",\n        \"Past Sponsorships\": \"曾經贊助者\",\n\n        \"has\": \"有\",\n        \"current\": \"當前\",\n        \"past\": \"曾經\",\n        \"and\": \"和\",\n        \"sponsorship\": \"贊助者\",\n        \"sponsorships\": \"贊助者\",\n        \"Search users\": \"搜索用戶\",\n        \"Name\": \"名稱\",\n        \"Start date\": \"開始日期\",\n        \"Sponsor\": \"贊助\",\n\n        \"No sponsorships\": \"無贊助\",\n        \"No sponsorships to display.\": \"暫無贊助內容可顯示。\",\n        \"Explore your dependencies\": \"探索你的依賴項\",\n    },\n    \"regexp\": [\n        [/([^ ]+) hasn’t sponsored any users yet./, \"$1 尚未贊助任何人。\"],\n        ...I18N[\"zh-TW\"][\"orgs-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"regexp\": [\n            [/Sponsoring/, \"贊助\"],\n        ],\n    },\n};\n\nI18N[\"zh-TW\"][\"organizations/plan\"] = {\n    \"static\": {\n        \"Pick a plan for your organization\": \"為您的組織選擇計劃\",\n    },\n    \"regexp\": [],\n};\n\nI18N[\"zh-TW\"][\"repo-actions-merics-public\"] = { // 倉庫 - 洞察 - 操作看板公共部分\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repository-public\"][\"static\"],\n        ...I18N[\"zh-TW\"][\"repository-insights-menu\"][\"static\"],\n\n        \"Period\": \"週期\",\n            \"Current week (Mon-Sun)\": \"本週（週一 ~ 週日）\",\n            \"Current month\": \"本月\",\n            \"Last month\": \"上個月\",\n            \"Last 30 days\": \"最近 30 天\",\n            \"Last 90 days\": \"最近 90 天\",\n            \"Last year\": \"最近一年\",\n            \"Custom\": \"自定義\",\n\n        // 自定義日期\n            \"Custom date range (UTC)\": \"自定義日期範圍(UTC)\",\n            \"Choose dates\": \"選擇日期\",\n            // 日曆\n                \"Su\": \"一\",\n                \"Mo\": \"二\",\n                \"Tu\": \"三\",\n                \"We\": \"四\",\n                \"Th\": \"五\",\n                \"Fr\": \"六\",\n                \"Sa\": \"日\",\n\n        // 篩選相關\n            \"Filter\": \"篩選\",\n                \"Search or filter\": \"搜索或篩選\",\n                \"Exclude\": \"排除\",\n            \"Download report\": \"下載報告\",\n\n        // 高級篩選窗口\n            \"Advanced filters\": \"高級篩選\",\n                \"Build complex filter queries\": \"建立複雜的篩選器查詢\",\n                \"To start building your query add your first filter using the button below.\": \"要開始建立查詢，請使用下面的按鈕添加第一個篩選器。\",\n\n                \"Qualifier\": \"限定\",\n                \"Operator\": \"操作\",\n                    \"is not one of\": \"不包含\",\n                    \"is one of\": \"包含\",\n                    \"is\": \"是\",\n                    \"greater than\": \"大於\",\n                    \"less than\": \"小於\",\n                    \"greater than or equal to\": \"大於或等於\",\n                    \"less than or equal to\": \"小於或等於\",\n                    \"equal to\": \"等於\",\n                    \"between\": \"之間\",\n                \"Value\": \"值\",\n                    \"Make a selection\": \"請選擇\",\n                    \"Select items\": \"請選擇專案\",\n                    \"Filter values\": \"篩選值\",\n                    \"Enter a number\": \"鍵入數字\",\n                    \"Enter search text\": \"鍵入任意文本\",\n                        \"Me\": \"我\",\n                        \"Signed-in user\": \"已登錄用戶\",\n                \"Add a filter\": \"添加\",\n                    \"Text\": \"文本\",\n                \"Apply\": \"應用\",\n\n        // 關閉彈窗\n            \"Discard changes?\": \"是否放棄更改？\",\n            \"You have unsaved changes. Are you sure you want to discard them?\": \"您有未保存的更改。您確定要放棄它們嗎？\",\n            \"Keep editing\": \"繼續編輯\",\n            \"Close and discard\": \"關閉並放棄\",\n\n        // 篩選器報錯窗口\n            \"Empty value for\": \"空值：\",\n            \"Text will be ignored since log searching is not yet available:\": \"由於尚未提供日誌搜索功能，文本將被忽略：\",\n\n        // 工作流相關\n            \"Workflows\": \"工作流\",\n            \"Jobs\": \"作業\",\n                \"Job\": \"作業\",\n                \"Job runs\": \"作業運行\",\n                \"Runtime OS\": \"操作系統\",\n                \"Runner type\": \"運行器類型\",\n                    \"hosted\": \"託管\",\n                    \"hosted-larger\": \"大型託管\",\n                    \"self-hosted\": \"自託管\",\n                \"Runner labels\": \"運行器標籤\",\n\n        // 無數據\n            \"No table data available yet.\": \"還沒有數據。\",\n                \"You don't have workflows on any of your organization repositories.\": \"您的任何組織倉庫中都沒有工作流程。\",\n            \"Get started with GitHub Actions\": \"快速開始\",\n\n        // 工作流條目\n            \"Workflow\": \"工作流\",\n            \"Workflow runs\": \"工作流運行\",\n\n        \"of\": \"/\",\n    },\n    \"regexp\": [\n        [/Showing data from (\\d+)\\/(\\d+)\\/(\\d+) to/, \"顯示數據：從$1年$2月$3日至\"],\n        [/Total (minutes|job runs) across all workflows in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'minutes': '總分鐘數', 'job runs': '總工作運行數'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本週（週一 ~ 週日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上個月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定義時間段\",\n            };\n            return periodKey[period] + '該組織所有工作流程的' + typeKey[type];\n        }],\n        [/Period: (Current week \\(Mon-Sun\\)|Current month|Last month|Last 30 days|Last 90 days|Last year|Custom)/, function(all, period){\n            var periodKey = {\n                \"Current week (Mon-Sun)\": \"本週（週一 ~ 週日）\",\n                \"Current month\": \"本月\",\n                \"Last month\": \"上個月\",\n                \"Last 30 days\": \"最近 30 天\",\n                \"Last 90 days\": \"最近 90 天\",\n                \"Last year\": \"最近一年\",\n                \"Custom\": \"自定義\",\n            };\n            return '範圍：' + periodKey[period];\n        }],\n    ],\n};\n\nI18N[\"zh-TW\"][\"repository/actions/metrics/usage\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Total minutes\": \"總分鐘數\",\n        \"Total job runs\": \"總工作運行\",\n\n        \"Row Actions\": \"更多\", // 暫譯\n        \"View performance\": \"查看數據看板\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-TW\"][\"repo-actions-merics-public\"][\"regexp\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions usage metrics\": \"操作使用情況\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/actions/metrics/performance\"] = {\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"repo-actions-merics-public\"][\"static\"],\n\n        \"Avg job run time\": \"平均作業運行時長\",\n        \"Avg job queue time\": \"平均作業等待時長\",\n        \"Job failure rate\": \"作業失敗率\",\n        \"Failed job usage\": \"作業失敗次數\",\n\n        \"<1s\": \"<1秒\",\n\n        \"Avg run time minutes\": \"平均運行時長\",\n        \"Avg queue time minutes\": \"平均等待時長\",\n        \"Failure rate\": \"失敗率\",\n\n        \"Has job failures\": \"作業失敗率\",\n        \"Avg run time\": \"平均運行時長\",\n        \"Avg queue time\": \"平均等待時長\",\n\n        \"Row Actions\": \"更多\", // 暫譯\n        \"View usage\": \"查看使用情況\",\n    },\n    \"regexp\": [\n        ...I18N[\"zh-TW\"][\"repo-actions-merics-public\"][\"regexp\"],\n        [/(Average run time of|Average queue time of|Failure rate across|Total minutes used across failed) jobs in this organization for (current week \\(mon-sun\\)|current month|last month|last 30 days|last 90 days|last year|custom)/, function(all, type, period){\n            var typeKey = {'Average run time of': '平均運行時長', 'Average queue time of': '平均等待時長', 'Failure rate across': '作業失敗率', 'Total minutes used across failed': '作業失敗次數'};\n            var periodKey = {\n                \"current week (mon-sun)\": \"本週（週一 ~ 週日）\",\n                \"current month\": \"本月\",\n                \"last month\": \"上個月\",\n                \"last 30 days\": \"最近 30 天\",\n                \"last 90 days\": \"最近 90 天\",\n                \"last year\": \"最近一年\",\n                \"custom\": \"自定義時間段\",\n            };\n            return periodKey[period] + '該組織所有工作流程的' + typeKey[type];\n        }],\n        [/(\\d+)h (\\d+)m (\\d+)s/, \"$1時$2分$3秒\"],\n        [/(\\d+)m (\\d+)s/, \"$1分$2秒\"],\n        [/(\\d+)m/, \"$1分鐘\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"Actions performance metrics\": \"操作數據看板\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"copilot\"] = {\n    \"static\": {\n        // 錯誤\n            \"Conversation failed to load\": \"加載失敗\",\n                \"Reload the page\": \"重載頁面。\",\n                \"to try again.\": \" \",\n        // 高級請求數已用完\n            \"You have reached your monthly limit for premium requests. Enable additional requests or switch to the default model. Limit resets on.\": \"您已達到本月高級請求的額度上限。請啟用額外請求或切換到默認模型。額度將重置。\",\n            \"You have used 80% of your premium responses this month. Enable additional requests to get more usage after the limit is reached.\": \"您本月已使用 80% 的高級請求。達到限制後啟用額外請求以獲得更多使用量。\",\n        // 左側邊欄\n            \"New conversation\": \"新聊天\",\n            \"Close conversations\": \"關閉側邊欄\",\n            \"Open conversations\": \"打開側邊欄\",\n            \"New chat\": \"新聊天\",\n            \"Collapse\": \"摺疊\",\n            \"Expand sidebar\": \"展開側邊欄\",\n\n            \"Agent sessions\": \"智能體任務\",\n            \"Agent sessions and chats\": \"智能體任務及聊天\",\n                \"No agents running\": \"無智能體運行\",\n                    \"You can now ask Copilot to work on a task for you in the background, creating a pull request which you can review.\": \"您現在可以讓 Copilot 在後臺為您處理任務，創建一個供您審核的拉取請求。\",\n\n            // 時間\n                \"Today\": \"今天\",\n                \"Yesterday\": \"昨天\",\n                \"Last 7 days\": \"最近 7 天\",\n                \"Last 30 days\": \"最近 30 天\",\n\n            // 無對話\n            \"No conversations yet\": \"還沒有對話\",\n            \"Ask Copilot anything on the right to start your first conversation.\": \"向 Copilot 提出任何問題，開始第一次對話。\",\n\n            // 某條對話\n                \"Manage chat\": \"管理\",\n                    \"Rename\": \"重命名\",\n                        \"Rename chat\": \"重命名\",\n                    \"Share\": \"分享\",\n                    // 刪除\n                        \"Delete chat\": \"刪除聊天\",\n                        \"Are you sure you want to delete this chat? This action cannot be undone.\": \"您確定要刪除該聊天嗎？此操作無法撤銷。\",\n\n        // 中間\n            \"Ask\": \"詢問\",\n            // 模型選擇窗\n                \"Models\": \"模型\",\n                    \"Fast and cost-efficient\": \"快速、經濟高效\",\n                    \"Versatile and highly intelligent\": \"多功能、高智能\",\n                    \"Most powerful at complex tasks\": \"執行複雜任務\",\n            \"uses AI. Check for mistakes.\": \"使用 AI。請檢查錯誤。\",\n            \"Get file\": \"獲取文件\",\n\n            \"Recent agent sessions\": \"最近智能體任務\",\n            \"View all\": \"查看全部\",\n                \"No sessions found. Create one by sending a prompt above.\": \"未找到會話。請通過在上方發送提示來創建一個會話。\",\n\n            // 拉取請求列表\n            \"opened\": \"打開於\",\n            \"closed\": \"關閉於\",\n            \"ago\": \"之前\",\n\n            \"Copy code\": \"複製程式碼\",\n            \"Copied!\": \"複製成功！\",\n\n            \"Good response\": \"點贊\",\n            \"Bad response\": \"點踩\",\n            \"Retry with…\": \"重試…\",\n\n            \"Scroll to bottom\": \"滾動至底部\",\n\n        // 右側\n            \"Share conversation\": \"分享對話\",\n                \"Anyone with the link can view this conversation\": \"持有鏈接者可見\",\n                \"When shared, this conversation and future messages will be visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"分享後，該對話及後續消息將對所有擁有鏈接的人可見。如果包含私有倉庫內容，則需具有倉庫訪問權限才能查看。\",\n                \"This conversation may contain private content. Viewers must have access to all referenced content.\": \"這段對話可能包含私人內容。查看者必須擁有對所有引用內容的訪問權限。\",\n                \"Create link\": \"創建鏈接\",\n                \"Copy link\": \"複製鏈接\",\n                \"Delete shared link\": \"刪除分享鏈接\",\n                \"New messages after creating a link stay private.\": \"新消息在創建鏈接後仍保持私密。\",\n                \"Messages up to this point are included in shared link\": \"以上內容都包含在共享鏈接中\",\n                \"a previous version of this conversation has been shared\": \"此對話舊版本已被共享\",\n                \"create link to share the current version of this conversation.\": \"創建鏈接以分享此對話的當前版本。\",\n                \"this shared link is up to date\": \"分享鏈接是最新的\",\n\n                \"Manage link\": \"管理鏈接\",\n                    \"Update link\": \"更新\",\n                        \"Update shared conversation to include most recent messages\": \"更新分享鏈接以包含最新信息\",\n                        \"This shared link is up to date\": \"分享鏈接是最新的\",\n                    \"Delete link\": \"刪除\",\n                        \"Delete shared link and remove access for all users\": \"刪除分享鏈接並移除所有用戶的訪問權限\",\n                \"Copy link\": \"複製鏈接\",\n\n            // 分享\n            \"This conversation has not yet been shared\": \"還沒有分享\",\n            \"This conversation is only visible to you\": \"此對話僅您可見\",\n            \"This conversation is visible to anyone with the link\": \"此對話對任何擁有鏈接的人可見\",\n            \"Shared\": \"已分享\",\n            \"Conversation shared\": \"對話已分享\",\n                \"This conversation and future messages are visible to anyone with the link. If private repository content is included, repository access is required to view.\": \"此對話及未來的消息對任何擁有鏈接的人都是可見的。如果包含私有倉庫內容，則需要倉庫訪問權限才能查看。\",\n                \"Only users with access to referenced private content can view this conversation.\": \"只有有權訪問相關私人內容的用戶才能查看此對話。\",\n                \"This conversation is private and only visible to you. Share it to make it accessible to others with the link.\": \"此對話為私密對話，僅您自己可見。通過分享鏈接，其他人才能訪問此對話。\",\n                \"This conversation is now shared. Anyone with the link can view it. Keep in mind that it is live and publicly accessible.\": \"此對話已共享。任何擁有該鏈接的人均可查看此對話。請注意，該對話為實時且公開可訪問的內容。\",\n                \"Conversation link will appear here after sharing\": \"對話鏈接將在分享後出現\",\n                \"Only visible to you\": \"私密\",\n                \"Visible to anyone with the link\": \"擁有鏈接者可見\",\n\n                \"Unshare\": \"取消\",\n\n            \"Manage shared conversations\": \"管理已分享對話\",\n                \"Last updated\": \"最後更新\",\n                    // 日期走正則\n\n                    \"Copy share link\": \"複製分享鏈接\",\n                    \"Unshare conversation\": \"取消分享\",\n                        \"You're about to unshare the link for the following conversation:\": \"您將取消分享此對話：\",\n                        \"Once unshared, the link will no longer be accessible.\": \"取消後，此鏈接將失效。\",\n\n                \"Unshare all\": \"全部取消分享\",\n\n            \"Open menu\": \"菜單\",\n                \"Conversation\": \"對話\",\n                \"Prompt\": \"提示詞\",\n                    \"System prompt\": \"系統提示詞\",\n                        // 完整句子：GitHub Copilot 的系統提示是一系列指令，用於指導大語言模型（LLM）根據用戶輸入提供增強的功能並優化輸出質量。\n                        \"The system prompt for\": \" \",\n                        \"is a set of instructions that guides the LLM to provide enhanced functionality and output quality based on user input.\": \"的系統提示詞是一系列指令，用於指導大語言模型（LLM）根據用戶輸入提供增強的功能並優化輸出質量。\",\n            \"Feedback and settings\": \"反饋和設置\",\n                // 反饋\n                    \"Rate your experience\": \"反饋\",\n                        // 四個表情\n                            \"Love it\": \"優\",\n                            \"It’s ok\": \"良\",\n                            \"Not great\": \"中\",\n                            \"Hate it\": \"差\",\n\n                        \"Tell us what you liked or what could be better\": \"告訴我們您喜歡什麼或可以改進的地方\",\n\n                        \"Please don’t include sensitive, confidential, or personal data. Your anonymous feedback helps us improve our services in line with our\": \"請不要包含敏感、機密或個人數據。您的匿名反饋有助於我們改進服務，根據\",\n                        \"Privacy Policy\": \"隱私政策\",\n                        \"Send\": \"發送\",\n\n            \"Upgrade to Pro\": \"升級至專業版\",\n                \"to access higher limits and premium models.\": \"以獲取更高額度和高級模型。\",\n\n            \"Open panel\": \"打開面板\",\n            \"Close panel\": \"關閉面板\",\n            \"Open workbench\": \"打開工作臺\",\n            \"Close workbench\": \"關閉工作臺\",\n            \"Close file browser\": \"關閉文件瀏覽器\",\n                \"View files directly within Copilot\": \"直接在 Copilot 中查看文件\",\n                    \"Ask to generate a file or app, or use the button below to try it yourself.\": \"詢問生成文件或應用程式，或使用下面的按鈕自行嘗試。\",\n                \"I’m feeling lucky\": \"我手氣不錯\",\n\n                \"More options\": \"更多\",\n                    \"Download all files\": \"下載全部\",\n                    \"Close all tabs\": \"關閉所有標籤\",\n\n                \"Diff\": \"差異\",\n\n                \"Download code\": \"下載程式碼\",\n\n                \"lines\": \"行\",\n                \"line\": \"行\",\n\n                // 程式碼窗 - 底部欄\n                  \"to toggle the\": \"切換\",\n                  \"key moving focus. Alternatively, use\": \"鍵移動對焦。或者使用\",\n                  \"then\": \"鍵，然後\",\n                  \"to move to the next interactive element on the page.\": \"鍵移動到頁面上的下一個交互元素。\",\n        // 聊天窗口\n        \"Install Copilot in your favorite code editor\": \"安裝 Copilot 到您的程式碼編輯器\",\n            \"Copilot is available for a multitude of editors to fit your needs\": \"Copilot 可用於多種編輯器，以滿足您的需求\",\n            \"Dismiss banner\": \"關閉\",\n\n            \"Remove topic\": \"移除主題\",\n            \"Remove\": \"移除\",\n            \"Attachments options\": \"附件選項\",\n                \"Remove attachments\": \"移除附件\",\n\n            \"Ask Copilot\": \"詢問 Copilot\",\n            \"Add repositories, files and spaces\": \"添加倉庫，文件和空間\",\n                // 文件（夾）和符號\n                \"Select folders and files in\": \"選擇文件（夾）於\",\n            \"Add attachment\": \"添加附件\",\n                \"Files and symbols…\": \"文件和符號…\",\n                    \"First attach a repository\": \"請先附加倉庫\",\n                    \"Attach files and symbols\": \"附加文件和符號\",\n                        \"Choose which files and symbols you want to chat about. Use fewer references for more accurate responses.\": \"選擇您想要討論的文件和符號。使用較少的參考資料即可獲得更準確的回覆。\",\n                        \"Search files and symbols\": \"搜索文件和符號\",\n                        \"Current attachments\": \"當前附件\",\n                        \"Symbols\": \"符號\",\n                \"Repository…\": \"倉庫…\",\n                    \"Attach a repository\": \"附加倉庫\",\n                        \"Search repositories\": \"搜索倉庫\",\n                        \"Fetching repositories…\": \"正在獲取倉庫\",\n                \"Image…\": \"圖片…\",\n                    \"Only images below 3.75MB are supported\": \"僅支持小於 3.75 MB 的圖片\",\n                \"Extension…\": \"擴展…\",\n                \"Extension\": \"擴展\",\n                    \"Extensions\": \"擴展\",\n                        \"Chat with your favorite tools and services\": \"使用您最喜歡的工具和服務聊天\",\n                        \"Browse the marketplace to find extensions for the tools and services you rely on\": \"瀏覽市場以查找您所依賴的工具和服務的擴展\",\n                        \"Browse marketplace\": \"前往市場\",\n\n                        // 不支持\n                        \"aren't supported by this model\": \"不支持此模型\",\n                        \"Switch back to the\": \"切回\",\n                        \"model or start a new conversation\": \"模型或新建對話\",\n            \"Space\": \"空間\",\n                \"Select a space\": \"選擇一個空間\",\n                \"Recent spaces\": \"最近的空間\",\n                \"Filter items\": \"過濾專案\",\n                \"No spaces found\": \"沒有找到空間\",\n                \"You can create a new space to get started.\": \"您可以創建一個新空間來開始。\",\n                \"Create a new space\": \"創建一個新空間\",\n            \"Send now\": \"發送\",\n\n            // 預設欄\n                \"Create issue\": \"創建議題\",\n                // 空間\n                    \"Recent\": \"最近\",\n                    \"Create a space\": \"新建空間\",\n                // 文件\n                    \"Profile README\": \"個人資料\",\n                    \"Simple calculator\": \"簡易計算器\",\n                    \"Pong game\": \"乒乓球遊戲\",\n                    \"Mermaid architecture overview\": \"Mermaid 架構概覽\",\n                \"Write code\": \"寫程式碼\",\n                    \"Create a profile README\": \"個人資料\",\n                    \"Generate a simple calculator\": \"簡易計算器\",\n                    \"Make a Pong game\": \"乒乓球遊戲\",\n                    \"Design a Mermaid architecture overview\": \"Mermaid 架構概覽\",\n                // 拉取請求\n                    \"My open pull requests\": \"我打開的\",\n                    \"Summarize my latest PR\": \"總結最近\",\n                // 議題\n                    \"Issues assigned to me\": \"分配給我\",\n                    \"Create a new issue\": \"新建議題\",\n                    \"Summarize my latest issue\": \"總結最近\",\n                // Git\n                    \"Basic Git commands\": \"基本 Git 命令\",\n                    \"Git branching\": \"Git 分支\",\n                    \"Advanced Git commands\": \"高級 Git 命令\",\n\n        // 漏洞相關\n            \"Path Injection\": \"路徑注入\",\n                \"Unvalidated input in path value creation risks unintended file/directory access\": \"創建路徑值時輸入的無效信息可能會導致意外文件/目錄訪問\",\n\n        \"You’ve edited\": \"您已編輯\",\n            \"Undo\": \"撤銷\",\n            \"Revert\": \"回退\",\n\n        // 瞭解世界領先的人工智能開發工具的所有優勢。\n        \"Accelerate your development speed with Copilot\": \"使用 Copilot 加快開發速度\",\n        \"Discover all the\": \"瞭解世界領先的人工智能開發工具的所有\",\n            \"benefits\": \"優勢\",\n            \"of the world’s leading AI developer tool.\": \"。\",\n\n        \"Spaces\": \"空間\",\n\n        \"Set context once. Chat again and again\": \"一次設置上下文，反覆聊天。\",\n            \"Create and share a custom Copilot experience using a collection of GitHub repositories, files, and other content.\": \"使用一組 GitHub 倉庫、文件和其他內容創建並分享定製的 Copilot 體驗。\",\n            \"Spaces lets you create shared research environments where you and your team can collaborate, explore topics, and exchange insights—all powered by AI-driven search and summarization.\": \"空間讓您創建共享的研究環境，您和您的團隊可以在其中協作、探索主題和交流見解——所有這些都得益於 AI 驅動的搜索和摘要。\",\n\n        \"Yours\": \"我的\",\n            \"Spaces you create will appear here.\": \"您創建的空間將在此顯示。\",\n\n            \"Manage space\": \"管理\",\n              // 刪除按鈕\n                  \"Delete space\": \"刪除空間\",\n                  \"Are you sure you want to delete this space? This action cannot be undone.\": \"您確定要刪除嗎？此操作不可撤銷！\",\n\n        \"New space\": \"新建\",\n        \"Edit space\": \"編輯\",\n            \"Name\": \"名稱\",\n                \"Memorable name that helps you find your space.\": \"幫助您找到空間的易記名稱。\",\n\n            \"Icon\": \"圖標\",\n                \"Pick a color to make your space more recognizable.\": \"選擇一種顏色，讓您的空間更易於識別。\",\n\n            \"Color:\": \"顏色：\",\n                \"Select a color\": \"選擇顏色\",\n                    \"Filter colors\": \"篩選\",\n                    \"auburn\": \"赤褐色\",\n                    \"blue\": \"藍\",\n                    \"brown\": \"棕\",\n                    \"coral\": \"珊瑚紅\",\n                    \"cyan\": \"青\",\n                    \"gray\": \"灰\",\n                    \"green\": \"綠\",\n                    \"indigo\": \"靛藍\",\n                    \"lemon\": \"檸檬黃\",\n                    \"lime\": \"酸橙\",\n                    \"olive\": \"橄欖綠\",\n                    \"orange\": \"橙\",\n                    \"pine\": \"松綠\",\n                    \"pink\": \"粉\",\n                    \"plum\": \"梅子\",\n                    \"purple\": \"紫\",\n                    \"red\": \"紅\",\n                    \"teal\": \"藍綠\",\n                    \"yellow\": \"黃\",\n\n            \"Owner\": \"所有者\",\n                \"Where we will store your space. Once created the space is not transferable.\": \"我們將存儲您空間的位置，創建後無法轉移。\",\n\n            \"Description\": \"介紹\",\n                \"(optional)\": \"（可選）\",\n                \"Displays beneath the title on your spaces overview page without impacting responses.\": \"在您的空間概覽頁標題下方顯示，不影響回覆內容。\",\n\n            \"Instructions\": \"說明\",\n                \"Changes how Copilot responds on specific questions or tasks.\": \"更改 Copilot 對特定問題或任務的回應方式。\",\n\n            \"Attachments\": \"附件\",\n                \"Add text, code files, or GitHub data to set a permanent context\": \"添加文本、程式碼文件或 GitHub 數據，以設置永久上下文\",\n                \"You've exceeded the size limit for this space. Remove some references to continue.\": \"您已超出此空間的大小限制。請移除一些引用以繼續操作。\",\n\n                // 添加菜單\n                    \"Add files, folders...\": \"文件（夾）…\",\n                        \"Select folders and files\": \"選擇文件（夾）\",\n                        \"Search for files or folders\": \"搜索文件（夾）\",\n                        \"Fetching files...\": \"獲取文件中…\",\n                        \"Up to\": \"一次最多添加\",\n                        \"files can be added at a time.\": \"個文件。\",\n                        \"One or more files can't be submitted:\": \"一個或多個文件不能提交：\",\n                        \". Only supported file types are allowed.\": \"。只允許支持的文件類型。\",\n                    \"Add a text file\": \"文本文件\",\n                        // 名稱\n                            \"Give the file a title\": \"文件標題\",\n                        \"Content\": \"內容\",\n                            \"Enter content here\": \"在此鍵入內容\",\n\n                // 文件列表\n                \"Size\": \"大小\",\n                \"Resource actions\": \"操作\",\n\n        // 空間 - 聊天\n            \"Start a new conversation\": \"開始聊天\",\n\n            \"Ask anything\": \"詢問任何事\",\n\n            \"Start your first conversation using the field above\": \"用上面的輸入框開始您的第一次對話\",\n            \"Start your first conversation using the input above\": \"輸入文本開始您的第一次對話\",\n\n            // 右側\n                \"Owned by\": \"所有者\",\n\n                \"View all attachments\": \"查看所有附件\",\n\n        // 智能體 https://github.com/copilot/agents\n            \"Copilot coding agent now uses fewer premium requests!\": \"Copilot 編程智能體現在使用更少的高級請求！\",\n                \"From now on, each session uses just one premium request.\": \"從現在起，每個會話只會使用一次高級請求。\",\n\n            \"Agents\": \"智能體\",\n\n            \"Delegate tasks to GitHub Copilot coding agent\":\"將任務委派給 GitHub Copilot 編程智能體\",\n            \"Let Copilot work independently in the background to complete tasks, and then monitor Copilot's progress.\":\"讓 Copilot 在後臺獨立工作，完成任務後，您可以監控 Copilot 的進展。\",\n            \"This feature is not available on your current plan.\":\"此功能當前不在您的計劃中。\",\n\n            \"Let Copilot tackle your TODOs\": \"讓 Copilot 處理您的待辦\",\n                \"Delegate tasks to GitHub Copilot coding agent to work on in the background, and then monitor Copilot's progress.\": \"將任務委派給 GitHub Copilot 編程智能體在後臺處理，然後監控 Copilot 的進展。\",\n                \"Learn more about Copilot coding agent\": \"瞭解更多關於 Copilot 編程智能體的信息\",\n\n            // 倉庫選擇\n                \"Select an item\": \"選擇一項\",\n                    \"Repos\": \"倉庫\",\n                \"Select a branch\": \"選擇分支\",\n                    \"Find a branch...\": \"查找分支...\",\n                \"default\": \"默認\",\n\n            // 自定義智能體\n            \"This repository has no custom agents\": \"此倉庫沒有自定義智能體\",\n                \"Custom agents are reusable instructions and tools in your repository.\": \"自定義智能體是您倉庫中的可複用指令和工具。\",\n                \"Create a custom agent\": \"創建\",\n\n            \"Auto\": \"自動\",\n\n            \"Start task\": \"開始任務\",\n\n            \"Started\": \"開始於\",\n            \"Completed\": \"完成於\",\n\n            \"Recent sessions\": \"最近任務\",\n\n            \"Open\": \"打開\",\n                \"No open tasks yet. Start a new task to see it here.\": \"還沒有打開的任務。開始一個新任務後即可在這裡查看。\",\n                \"Failed\": \"失敗\",\n                \"Ready for review\": \"準備審查\",\n                \"· Initializing pull request…\": \"· 初始化拉取請求…\",\n            \"Closed\": \"關閉\",\n                \"· started\": \"· 開始於\",\n                \"ago ·\": \"之前\",\n                \"Merged\": \"已合併\",\n\n            //\"Add a light/dark mode switcher\": \"添加淺色/深色模式切換器\",\n\n            \"You\": \"您\",\n            \"started a task\": \"開始任務\",\n            \"started work\": \"Copilot 開工\",\n            \"Copilot is working…\": \"Copilot 工作中…\",\n\n            \"Stop\": \"停止\",\n\n            \"View pull request\": \"查看拉取請求\",\n\n            \"revision\": \"修訂\",\n\n            \"In progress\": \"進行中\",\n\n            // 評論框\n                \"Steer active session while Copilot is working\": \"在 Copilot 工作時引導活動任務\",\n\n                \"Copilot stopped work due to an error\": \"Copilot 因錯誤停工\",\n                    \"View detailed logs\": \"查看詳細日誌\",\n                    \"Copilot encountered an unknown Git error. If the problem persists, please contact GitHub Support. To retry, leave a comment on this pull request asking Copilot to try again.\": \"Copilot 遇到未知的 Git 錯誤。如果問題仍然存在，請聯繫 GitHub 支持。要重試，請在此拉取請求上留言，要求 Copilot 再試一次。\",\n\n                \"Submitting will post a pull request comment\": \"提交後將發佈一個拉取請求評論\",\n\n            // 文件框\n                \"Filter files…\": \"篩選文件…\",\n                    \"Filter options\": \"篩選選項\",\n                    \"File extensions\": \"文件擴展名\",\n                    \"No extension\": \"無擴展名\",\n                    \"Vendored files\": \"引入的文件\",\n                    \"Viewed files\": \"已查看文件\",\n\n                \"Files changed\": \"更改的文件\",\n                \"Copilot is still working. Changes will automatically appear once they have been committed to the branch.\": \"Copilot 仍在工作中。更改將在提交到分支後自動顯示。\",\n\n                \"Expand file tree\": \"展開文件樹\",\n                \"Collapse file tree\": \"摺疊文件樹\",\n                \"Previous file (K)\": \"上一個文件（K）\",\n                \"Next file (J)\": \"下一個文件（J）\",\n                \"Open diff view settings\": \"打開差異視圖設置\",\n                    \"Compact line height\": \"自定義行高\",\n\n                \"Copy file name to clipboard\": \"複製文件名到剪切板\",\n                \"viewed\": \"已查看\",\n                \"Viewed\": \"已查看\",\n                \"Comment on this file\": \"評論此文件\",\n                \"View file\": \"查看文件\",\n                \"Due to the large number of changes in this pull request, only one file is being shown at a time.\": \"由於此拉取請求中更改的文件數量較多，因此僅顯示一個文件。\",\n\n            // 智能體總結頁\n                \"session\": \"任務\",\n                \"sessions\": \"任務\",\n\n                \"premium\": \"高級\",\n                \"request\": \"請求\",\n                \"requests\": \"請求\",\n                \"· Last updated\": \"· 最後更新於\",\n    },\n    \"regexp\":[\n        [/Using results for “([^ ]+)” in ([^ ]+)/, \"使用 $2 中“$1”的結果\"],\n        [/(\\d+) vulnerability detected/, \"檢測到 $1 個漏洞\"],\n        [/Retry with (.+)/, \"使用 $1 重試\"],\n        // 啟用模型\n        [/Enable access to the latest (.+) model from ([^ ]+)./, \"允許訪問 $2 最新的 $1 模型。\"],\n        [/Enable (.+)/, \"啟用 $1\"],\n        [/Learn more about how GitHub Copilot serves (.+)/, \"瞭解更多關於 GitHub Copilot 如何為 $1 提供服務\"],\n        // 管理分享\n        [/(.+) at (\\d{1,2}):(\\d{2}) (AM|PM)/, (match, p1, p2, min, p3) =>{\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n\n            // 運行規則：非12AM照搬，PM數字加12，12AM=0\n            let hour = parseInt(p2, 10);\n            if (p3 === \"PM\" && hour !== 12) {\n                hour += 12;\n            } else if (p3 === \"AM\" && hour === 12) {\n                hour = 0;\n            }\n\n            return `${translatedDate}${hour}:${min}`;\n        }],\n        // 空間\n        [/Total percent used: (\\d+\\%)/, \"總使用率：$1\"],\n        // 智能體\n        [/(\\d+) revisions?/, \"$1 次修訂\"],\n        [/No extension \\((\\d+)\\)/, \"無擴展名($1)\"],\n        [/Expand all lines: (.+)/, \"展開所有行：$1\"],\n        [/Collapse non-diff lines: (.+)/, \"摺疊未更改行：$1\"],\n\n    ],\n    \"title\": {\n        \"static\": {\n            \"Agents · GitHub Copilot\": \"智能體 · GitHub Copilot\",\n            \"New chat · GitHub Copilot\": \"新聊天 · GitHub Copilot\",\n            \"Spaces · GitHub Copilot\": \"空間 · GitHub Copilot\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"github-copilot/code-review-waitlist\"] = {\n    \"static\": {\n        \"Copilot-powered code reviews waitlist\": \"Copilot 驅動的程式碼審查候補名單\",\n\n        \"Join the waitlist for Copilot-powered code reviews\": \"加入 Copilot 驅動程式碼審查候補名單\",\n            \"Get fast AI-powered code feedback in pull requests on GitHub.com and in Visual Studio Code. Jump from your pull request to Copilot Workspace to refine, validate and land suggestions.\": \"在 GitHub.com 和 Visual Studio Code 的拉取請求中獲取由 AI 驅動的快速程式碼反饋。您可以直接從拉取請求跳轉至 Copilot 工作區，對建議進行優化、驗證並最終落實。\",\n\n        \"Join the waitlist\": \"加入等候名單\",\n            \"By signing up for the waitlist you agree to\": \"註冊加入候補名單即表示您同意\",\n            \"the pre-release terms\": \"預發行條款\",\n            \". Signing up does not guarantee access. You will receive an email once you are accepted into the preview.\": \"。註冊並不保證您一定能獲得訪問權限。如果您被納入預覽計劃，我們將通過電子郵件通知您。\",\n\n        \"Admission to the preview of Copilot-powered code reviews is limited. You will receive an email if you are granted access.\": \"預覽使用Copilot驅動的程式碼審查的名額有限。如果您獲得訪問權限，您將收到一封電子郵件通知。\",\n    },\n    \"regexp\":[\n        [/Thank you! ([^ ]+) is now on the waitlist/, \"感謝！$1 已加入候補名單\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"spark\"] = {\n    \"static\": {\n        // spark https://github.com/spark\n            \"Dream it.\": \"夢想它。\",\n            \"See it.\": \"看到它。\",\n            \"Ship it.\": \"交付它。\",\n\n            \"Transform ideas into full-stack intelligent apps in a snap. Publish with a click.\": \"將想法轉化為全棧智能應用，一鍵發佈。\",\n            \"Spark is currently only available to Copilot Pro+ and Enterprise users.\": \"Spark 目前僅適用於 Copilot Pro+ 和企業版用戶。\",\n                \"Upgrade now to access Spark\": \"立即升級以訪問 Spark\",\n\n            \"Create web apps with React and TypeScript to prototype ideas, build tools, and more\": \"使用 React 和 TypeScript 創建 Web 應用，原型化想法，構建工具等\",\n                \"Submit prompt\": \"提交提示詞\",\n                \"Attach image\": \"附上圖片\",\n\n            \"Recent\": \"最近\",\n                \"Favorite this spark\": \"收藏此 spark\",\n                \"Unfavorite this spark\": \"取消收藏此 spark\",\n                \"More Options\": \"更多選項\",\n            \"Favorites\": \"收藏\",\n                \"Nothing to see here… yet.\": \"這裡還沒有什麼可看的。\",\n            \"Last updated\": \"最後更新於\",\n\n            \"uses AI. Check for mistakes.\": \"使用 AI。請檢查錯誤。\",\n            \"Terms of service\": \"服務條款\",\n\n        // https://github.com/spark/<user-name>/<spark-name>\n            \"All sparks\": \"所有 spark\",\n\n            // 頂部提示條\n            \"Live preview is interrupted. Try refreshing the page to reconnect.\": \"實時預覽已中斷。請嘗試刷新頁面重新連接。\",\n            \"Refresh\": \"刷新\",\n\n            // 預覽區\n                \"Hm, something went wrong\": \"嗯，出了點問題\",\n                    \"Runtime error\": \"運行時錯誤\",\n                        \"at\": \"位於\",\n                    \"Autofix error\": \"自動修復錯誤\",\n\n            // 程式碼區\n                \"Read-only\": \"只讀\",\n                \"Cannot edit in read-only editor\": \"不能在只讀編輯器中編輯\",\n                \"to escape the editor.\": \"退出編輯器\",\n                \"Dismiss hint\": \"關閉提示\",\n                \"Styling with Markdown is supported\": \"支持使用 Markdown 進行樣式設置\",\n                \"Collapse file tree\": \"摺疊文件樹\",\n                \"Expand file tree\": \"展開文件樹\",\n                \"Copy file contents\": \"複製文件內容\",\n                \"Display options\": \"顯示選項\",\n                    \"Wrap lines\": \"自動換行\",\n                    \"Hide whitespace\": \"隱藏空白字符\",\n                    \"Hide problems\": \"隱藏問題標記\",\n                    \"Show minimap\": \"顯示縮略圖\",\n\n            // 頂欄\n                \"Action unavailable\": \"無法執行操作\",\n                \"Action unavailable in this mode\": \"在此模式下無法執行操作\",\n                \"Action loading\": \"操作加載中\",\n                \"Select element to edit\": \"選擇要編輯的元素\",\n                \"Refresh preview\": \"刷新預覽\",\n                \"Show mobile view\": \"顯示移動端視圖\",\n                \"Exit mobile view\": \"退出移動端視圖\",\n                \"Publish\": \"發佈\",\n                \"Preview mode\": \"預覽模式\",\n                \"Code mode\": \"程式碼模式\",\n                \"Why not both?\": \"為什麼不兩者兼得呢？\",\n                // 更多操作\n                    \"Open codespace\": \"打開程式碼空間\",\n                    \"Create repository\": \"創建倉庫\",\n                    // 設置\n                        \"Close settings\": \"關閉設置\",\n                        \"Name\": \"名稱\",\n                        \"Your spark will be published as\": \"你的 Spark 將被髮布為\",\n                        \"Description\": \"描述\",\n                        \"Generated by Spark\": \"由 Spark 生成\",\n                        \"Delete spark\": \"刪除 Spark\",\n                        \"Once you delete a spark, there is no going back. Please be certain.\": \"一旦刪除 Spark，就無法恢復。請確認是否確定。\",\n\n            // 左側面板\n                \"Collapse side panel\": \"摺疊側面板\",\n                \"Expand side panel\": \"展開側面板\",\n                \"Iterate\": \"迭代\",\n                    \"What do you want to change?\": \"你想改變什麼？\",\n                    // 提示詞操作\n                    \"Restore\": \"還原\",\n                    \"Expand prompt\": \"展開提示詞\",\n                    \"Collapse prompt\": \"摺疊提示詞\",\n                    \"Copy prompt\": \"複製提示詞\",\n                    \"Manual edit\": \"手動編輯\",\n                    // 錯誤\n                    \"Fix all\": \"修復全部\",\n                    \"At\": \"在\",\n                \"Theme\": \"主題\",\n                    \"Custom theme\": \"自定義主題\",\n                    \"Select a theme\": \"選擇一個主題\",\n                        \"Filter themes\": \"篩選主題\",\n                        \"Aurora Borealis\": \"極光\",\n                        \"Neon Noir\": \"霓虹黑\",\n                        \"Minimalist\": \"極簡\",\n                        \"Cosmic Latte\": \"宇宙拿鐵\",\n                        \"Candy Shop\": \"糖果店\",\n                        \"Neutral\": \"中性\",\n                        \"Golden Hour\": \"黃金時段\",\n                        \"Hacker Terminal\": \"黑客終端\",\n                        \"Neobrutalism\": \"新粗野主義\",\n                        \"High Contrast\": \"高對比度\",\n                        \"No themes found\": \"未找到主題\",\n                        \"Try changing the filter or selecting a different theme.\": \"嘗試更改篩選條件或選擇其他主題。\",\n                    \"Typography\": \"排版\",\n                        \"Sans serif\": \"無襯線\",\n                        \"Serif\": \"襯線\",\n                        \"Monospace\": \"等寬\",\n                        \"Select an item\": \"選擇一項\",\n                        \"Select a font\": \"選擇字體\",\n                    \"Color\": \"顏色\",\n                        \"Accent\": \"強調色\",\n                        \"Primary\": \"主色\",\n                        \"Secondary\": \"次要色\",\n                        \"Base\": \"基礎色\",\n                        \"Muted\": \"柔和色\",\n                        \"Destructive\": \"危險色\",\n                        \"Card\": \"卡片\",\n                        \"Popover\": \"氣泡提示\",\n                        \"Input\": \"輸入框\",\n                        \"Border\": \"邊框\",\n                        \"Ring\": \"聚焦環\",\n                        \"Background\": \"背景\",\n                        \"Text\": \"文字\",\n                        \"Search colors...\": \"搜索顏色...\",\n                            \"slate\": \"石板\",\n                            \"gray\": \"灰色\",\n                            \"zinc\": \"鋅色\",\n                            \"neutral\": \"中性\",\n                            \"stone\": \"岩石\",\n                            \"red\": \"紅色\",\n                            \"orange\": \"橙色\",\n                            \"amber\": \"琥珀\",\n                            \"yellow\": \"黃色\",\n                            \"lime\": \"酸橙\",\n                            \"green\": \"綠色\",\n                            \"emerald\": \"翡翠\",\n                            \"teal\": \"藍綠\",\n                            \"cyan\": \"青色\",\n                            \"sky\": \"天藍\",\n                            \"blue\": \"藍色\",\n                            \"indigo\": \"靛藍\",\n                            \"violet\": \"紫羅蘭\",\n                            \"purple\": \"紫色\",\n                            \"fuchsia\": \"品紅/紫紅\",\n                            \"pink\": \"粉色\",\n                            \"rose\": \"玫瑰\",\n                        \"Show all colors\": \"顯示所有顏色\",\n                        \"Hide colors\": \"隱藏顏色\",\n                    // 外觀\n                        \"Border radius\": \"圓角\",\n                            \"Border radius None\": \"無圓角\",\n                            \"Border radius Small\": \"小圓角\",\n                            \"Border radius Medium\": \"中等圓角\",\n                            \"Border radius Large\": \"大圓角\",\n                            \"Border radius Full\": \"完全圓角\",\n                        \"Spacing\": \"間距\",\n                            \"Spacing None\": \"無間距\",\n                            \"Spacing Small\": \"小間距\",\n                            \"Spacing Medium\": \"中等間距\",\n                \"Data\": \"數據\",\n                    \"Add data storage by asking in the Iterate panel. View and edit the associated tables and data here.\": \"在 迭代 面板中提出需求即可添加數據存儲。你可以在這裡查看和編輯相關的表格與數據。\",\n                    \"rows\": \"行\",\n                    \"Edit this row\": \"編輯此行\",\n                    \"Edit value\": \"編輯值\",\n                    \"Done\": \"完成\",\n                    \"Read only\": \"只讀\",\n                \"Prompts\": \"提示詞\",\n                    \"Add AI capabilities by asking in the Iterate panel. View and edit the prompts powering those features here.\": \"在 Iterate 面板中提出需求即可添加 AI 能力。你可以在這裡查看和編輯驅動這些功能的提示詞。\",\n\n                    \"We couldn't load your data\": \"無法加載你的數據\",\n                        \"Please try again. If the problem persists, try again later.\": \"請重試。如果問題仍然存在，請稍後再試。\",\n                \"Assets\": \"素材\",\n                    \"Upload files\": \"上傳文件\",\n                    \"Upload assets here or in the Iterate panel. Assets support images, documents, audio, and video. Ask in the Iterate panel to add them to your app.\": \"在此處或 迭代 面板中上傳素材。素材支持圖片、文檔、音頻和視頻。在 迭代 面板中提出需求即可將它們添加到你的應用中。\",\n    },\n    \"regexp\": [\n        [/(\\d+) Errors?/, \"$1 個錯誤\"],\n        [/Made (\\d+) changes?/, \"做了 $1 個更改\"],\n        [/(\\d+) rows? • (.+)/, \"$1 行 • $2\"],\n        [/Delete \\((\\d+)\\)/, \"刪除（$1）\"],\n    ],\n};\n\nI18N[\"zh-TW\"][\"sitemap\"] = { // 網站地圖頁，僅匹配公共部分\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"homepage\"][\"static\"],\n    },\n    \"regexp\":[],\n};\n\nI18N[\"zh-TW\"][\"education\"] = { // 教育頁面，申請學生包會用到\n    \"static\": {\n        ...I18N[\"zh-TW\"][\"homepage\"][\"static\"],\n        // 頂欄\n            \"Students\": \"學生\",\n            \"Teachers\": \"教師\",\n            \"Schools\": \"學校\",\n\n        \"GitHub Education\": \"GitHub 教育\",\n        \"Empowering the next generation of developers\": \"增強新一代開發人員的能力\",\n            \"GitHub Education bridges the gap between coding education and a tech career, and is accessible to everyone globally at no cost.\": \"GitHub 教育在編程教育和技術職業之間架起了一座橋樑，全球每個人都可以免費使用。\",\n        \"Join GitHub Education\": \"加入 GitHub 教育\",\n        // 教育包申請 https://education.github.com/pack\n            // 右上角菜單\n                \"Your benefits application\": \"我的福利\",\n                \"Your GitHub.com profile\": \"我的個人資料\",\n                \"Education Docs\": \"教育文檔\",\n                \"Education Support\": \"教育支持\",\n                \"Sign out of GitHub Education\": \"退出 GitHub 教育\",\n            // 頂部提示\n                \"We're still processing your application. Once this is complete you will have access to the student developer pack offers.\": \"我們仍在處理您的申請。一旦處理完畢，您就可以獲得學生開發包優惠。\",\n\n            \"GitHub Student Developer Pack\": \"GitHub 學生開發包\",\n                \"Learn to ship software like a pro.\": \"學習如何像專業人士一樣開發軟體。\",\n                \"There's no substitute for hands-on experience. But for most students, real world tools can be cost-prohibitive. That's why we created the GitHub Student Developer Pack with some of our partners and friends.\": \"沒有替代品可以代替親身實踐的經驗。但對於大多數學生來說，現實世界中的工具可能成本過高。這就是為什麼我們與一些合作伙伴和朋友一起創建了GitHub 學生開發包。\",\n            \"Sign up for Student Developer Pack\": \"獲取學生包\",\n            \"Love the pack? Spread the word\": \"喜歡嗎？分享給朋友！\",\n            // 後續內容完全用不到直接不翻\n\n            // https://education.github.com/discount_requests/application\n                \"Benefits application\": \"優惠\",\n                \"Access free GitHub Education benefits\": \"獲取免費 GitHub 教育福利\",\n                    \"Complete the fields below to unlock tools and resources for your educational journey\": \"填寫以下字段，為您的教育之旅解鎖工具和資源\",\n\n                \"Select your role in education\": \"選擇身份\",\n                    \"Teacher\": \"教師\",\n                    \"Student\": \"學生\",\n                    \"School\": \"學校\",\n\n                    // 學生\n                    \"Enhance your tech skills with real-world tools\": \"利用現實世界中的工具提高您的技能\",\n                        \"STUDENT\": \"學生\",\n                            \"FREE GitHub Pro while you are a student\": \"學生期間免費使用 GitHub 專業版\",\n                            \"Valuable GitHub Student Developer Pack partner offers\": \"寶貴的 GitHub 學生開發包合作伙伴優惠\",\n                            \"GitHub Campus Expert training for qualified applicants\": \"為合格申請者提供 GitHub 校園專家培訓\",\n                        \"To qualify for student benefits, you must:\": \"您必須具備以下條件：\",\n                            \"Have a GitHub account.\": \"持有 GitHub 賬號。\",\n                            \"Be at least 13 years old.\": \"大於 13 歲。\",\n                            \"Be currently enrolled in a degree or diploma granting course of study from a recognized educational institution.\": \"目前就讀於認可教育機構的學位或文憑課程。\",\n                            \"Be able to provide documentation from your school which demonstrates your current student status.\": \"能夠提供學校出具的證明您當前學生身份的文件。\",\n                        \"Before you begin:\": \"在開始之前：\",\n                            \"Check that you are using a\": \"檢查您使用的是\",\n                                \"supported browser\": \"受支持的瀏覽器\",\n                                \", and that location services are not blocked by your browser or platform.\": \"，且您的瀏覽器或平臺未阻止定位服務。\",\n                            \"Complete your GitHub account\": \"在 GitHub 帳戶\",\n                                \"billing information\": \"賬單信息\",\n                                \"with your full legal name as it appears on your academic affiliation documentation. (You do not have to add a payment method.)\": \"中填寫您的法定全名，與您的學歷證明材料上的姓名一致。(無需添加支付方式）。\",\n                            \"Verify\": \"驗證\",\n                                \"your academic email address on your GitHub account, if your school provides one.\": \"您的教育郵箱於 GitHub，如果您的學校提供。\",\n                            \"Secure your GitHub account with\": \"保護您的 GitHub 賬戶安全，使用\",\n                                \"two-factor authentication\": \"雙重身份驗證\",\n                                \". (We recommend using the\": \"。（我們推薦使用\",\n                                \"app.)\": \"。）\",\n                            \"Personalize\": \"個性化\",\n                                \"your public GitHub Profile with your photo, your name, your pronouns, and more.\": \"您的 GitHub 簡介，使用照片、姓名、代詞等。\",\n                            \"Generate a README for your public GitHub Profile,\": \"為您的公共 GitHub 簡介生成 README，\",\n                                \"customize it with your interests\": \"根據您的興趣進行定製\",\n                                \", and publish it for the world to see.\": \"，然後公開。\",\n                        \"Offer availability:\": \"可提供優惠：\",\n                            \"All partner offers are subject to the partner company's terms and conditions and may not be available in all regions.\": \"所有合作伙伴優惠均受合作伙伴公司的條款和條件限制，可能不適用於所有地區。\",\n\n                        \"Application\": \"申請\",\n                            \"Required fields are marked with an asterisk\": \"帶星號的為必填項\",\n                        \"What is the name of your school?\": \"您的學校名稱\",\n                            \"Note:\": \"注：\",\n                            \"If your school is not listed, then enter the full school name and continue. You will be asked to provide further information about your school on the next page.\": \"如果您的學校不在列表中，請輸入學校全名並繼續。下一頁將要求您提供有關貴校的更多信息。\",\n                            \"A minimum of two characters is required to find your school.\": \"查找學校至少需要兩個字符。\",\n                            // 窗口\n                            \"We require applicants of\": \"我們要求\",\n                            \"to use one of these school-issued email addresses to apply:\": \"的申請人使用其中一個學校發佈的電子郵件地址進行申請：\",\n                            \"add and verify your\": \"添加並驗證\",\n                            \"school-issued email address\": \"學校提供的電子郵件地址\",\n                            \"in your account settings – or a contact email if you do not have one. Once your email is verified, refresh this page.\": \"到您的 GitHub 賬戶。一旦您的電子郵件通過驗證，請刷新此頁面。\",\n                            \"Add an email address\": \"添加電子郵件\",\n                            // 驗證通過\n                            \"You have verified the email address\": \"您已在 GitHub 上驗證郵件\",\n                            \"on your GitHub account. That academic domain is associated with the school\": \"。該域名屬於：\",\n                            \"Select this school\": \"選擇此學校\",\n                            \"We chose this school based on your email. If this isn't your school, please\": \"我們根據您的電子郵件選擇了這所學校。如果這不是您的學校，請在賬戶設置中\",\n                            \"add and verify another\": \"添加並驗證其他\",\n                            \"in your account settings - or select another school.\": \"- 或選擇其他學校。\",\n                        \"When you click \\\"Continue\\\" you will be prompted to share your location with us. Providing your current location helps us verify your affiliation with your chosen school.\": \"點擊 “繼續 ”後，系統會提示您與我們共享您的位置。提供您的當前位置有助於我們核實您與所選學校的關聯。\",\n                        \"Continue\": \"繼續\",\n\n                        // 提交歷史\n                            \"You've already submitted\": \"您已提交申請\",  // 後續正則\n\n                            \"approved\": \"批准\",\n                                \"Congrats! Your request for\": \"恭喜！您的申請\",\n                                \"was approved and your benefits will be available\": \"已獲批准，福利將很快發放。\",\n                                \"soon\": \"常見問題\", // 該處鏈接指向 https://github.com/orgs/community/discussions/111352#user-content-how-long-after-ive-been-approved-will-i-receive-my-academic-benefits\n                                \"was approved and your benefits are now available.\": \"已獲批准且福利已發放。\",\n\n                            \"rejected\": \"駁回\",\n                                \"Unfortunately, we weren't able to approve your educational discount request for\": \"很遺憾，我們無法批准您的教育折扣申請：\",\n                                \"What happened?\": \"發生了什麼？\",\n                                    \"Suggested proof to expedite your approval:\": \"建議提供證明，以加快審批：\",\n                                \"Have questions?\": \"有疑問？\",\n                                    \"Please seek help via our\": \"請通過我們的\",\n                                    \"Student Developer Pack Application FAQ\": \"學生開發包申請常見問題\",\n                                    \"or visit the\": \"或訪問\",\n                                    \"GitHub Education Community.\": \"GitHub 教育社區。\",\n\n                            \"pending\": \"排隊\",\n\n                        \"Get help\": \"獲取幫助\",\n                            \"Common questions about applying for your academic discount.\": \"關於申請學術折扣的常見問題。\",\n                        // 學生\n                            \"Learn about GitHub's programs\": \"瞭解 GitHub 計劃\",\n                        // 教師\n                            \"Discover GitHub's resources\": \"探索 GitHub 資源\",\n\n            // https://education.github.com/discount_requests/數字/additional_information\n                \"Upload proof\": \"上傳證明\",\n\n                \"Upload proof of your academic status\": \"上傳學籍證明\",\n                \"We need a little more proof to verify your academic status.\": \"還需要一點證明驗證學籍狀態。\",\n                \"What we need to see:\": \"我們需要查看：\",\n                    \"Your student ID\": \"您的學生證\",\n                        \"Your ID should\": \"您的學生證需要\",\n                        \"include a date\": \"包含日期\",\n                        \"that verifies your current enrollment. Make sure the image is clear and easy to read; if it looks blurry, please take a new photo and upload it again.\": \"，以證明您當前的註冊情況。請確保圖像清晰易讀；如果圖像模糊，請重新拍攝照片並上傳。\",\n                    \"Or another form of proof\": \"或其他證明\",\n                        \"If you don't have a student ID, or it doesn't include a date, you can upload a letter on school letterhead or any documentation\": \"如果您沒有學生證，或者學生證上沒有日期，您可以上傳一封印有學校信箋抬頭的信件或任何能證明您\",\n                        \"with a date\": \"當前註冊日期\",\n                        \"that demonstrates your current enrollment.\": \"的文件。\",\n\n                    \"Please upload proof of your academic status.\": \"請上傳您的學籍證明。\",\n                        \"Snap a picture of your qualifying proof of current academic status using your HD webcam or smartphone camera.\": \"使用高清攝像頭或智能手機攝像頭拍下您當前學歷的合格證明照片。\",\n                        \"Take a picture\": \"拍照\",\n                            \"Take photo\": \"拍照\",\n                            \"Reset\": \"重置\",\n                            \"Error: Could not access your webcam\": \"錯誤：無法訪問您的網絡攝像頭\",\n                            \"camera2 1, facing front\": \"鏡頭2 1，前攝\",\n                            \"camera2 0, facing back\": \"鏡頭2 0，後攝\",\n                            \"Uploading…\": \"上傳中…\",\n                            \"Thanks for uploading your photo. Please complete the form and submit when you're ready.\": \"感謝您上傳照片。請填寫表格並提交。\",\n                            // 未拍照直接提交\n                                \"Please upload proof of your current school affiliation\": \"請上傳您目前所在學校的證明\",\n                                \"Please upload proof of your current school affiliation that is less than 1MB in size\": \"請上傳小於 1MB 的照片\",\n                                \"Binary data can't be blank\": \"二進制數據不能為空\",\n\n                    \"Please note, your request cannot be edited once it has been submitted, so please verify your details for accuracy before sending them to us. After clicking \\\"Process my application\\\", please wait as processing can take several seconds.\": \"請注意，您的申請一經提交便無法編輯，因此在發送給我們之前，請核實您的詳細信息是否準確。點擊 “處理我的申請 ”後，請稍候，因為處理過程可能需要幾秒鐘。\",\n                        \"Process my application\": \"處理申請\",\n                        \"Processing your application\": \"處理中\",\n                        \"Processing information...\": \"處理中…\",\n\n                    // 上傳失敗\n                        \"Your application cannot be reviewed until you fix the following:\": \"您的申請將不被審查直到解決以下問題：\",\n                            \"You must configure your browser and operating system to allow location access. You may not use a VPN. If you believe that our information about your school is incomplete or incorrect, then please select ‘My selected school has incorrect or incomplete information e.g. domains or campus location’ option when submitting a GitHub Education support ticket.\": \"您必須配置您的瀏覽器和操作系統以允許位置訪問。您不得使用VPN。如果您認為我們關於您學校的資料不完整或不正確，請在提交GitHub 教育支持工單時選擇“我選擇的學校信息有誤或不完整，例如域名或校園位置”選項。\",\n                            \"Please use your device camera to submit your academic affiliation documents. If you’re having trouble using your device camera, please allow camera access for the application website on your browser. The steps for this will vary depending on which browser you are using. Information on browsers supported by GitHub can be found\": \"請使用設備攝像頭提交您的學術關係文件。如果您在使用設備攝像頭時遇到困難，請在瀏覽器上允許攝像頭訪問申請網站。具體步驟視您使用的瀏覽器而定。有關 GitHub 支持的瀏覽器信息，請點擊\",\n                                \"here\": \"此處\",\n                                \". You may also try applying from a different computer or mobile device.\": \"。您也可以嘗試換一臺電腦或移動設備申請。\",\n                            \"Please ensure that your academic affiliation document contains your last name exactly as it appears in your\": \"請確保您的學籍文件中的姓氏與\",\n                                \"GitHub billing information\": \"GitHub 賬單信息\",\n                                \". If you have only a single legal name, enter it in both the first and last name fields of your GitHub billing information.\": \"中的姓氏完全一致。如果您只有一個合法姓名，請在 GitHub 賬單信息的姓和名欄中同時輸入。\",\n                            \"The image you selected does not appear to contain your school name. Your complete school name must appear in your document, not only the school logo. You may include multiple documents together. If your official document is not in English then you may photograph the original next to an English translation.\": \"您選擇的圖片似乎不包含您的學校名稱。文件中必須包含完整的校名，而不僅僅是校徽。您可以將多份文件放在一起。如果您的官方文件不是英文的，您可以將原件與英文翻譯件放在一起拍照。\",\n                            \"Please ensure that your academic affiliation document contains your first name exactly as it appears in your\": \"請確保您的學術關係文件中的姓名與\",\n                                //\"GitHub billing information\": \"\",\n                                \". Variations of your name and nicknames are unacceptable.\": \"中的姓名完全一致。請勿使用不同的姓名和暱稱。\",\n                            \"You are unlikely to be verified until you have completed your\": \"在完成\",\n                                \"GitHub user profile\": \"GitHub 用戶資料\",\n                                \"with your full name exactly as it appears in your academic affiliation document. Please do not use a variation of your name or a nickname. Once you have updated your profile information log out and log back into GitHub before re-applying.\": \"之前，您不可能通過驗證。請不要使用姓名的變體或暱稱。更新個人檔案信息後，請退出並重新登錄 GitHub，然後再重新申請。\",\n                            \"The image you captured appears to be a screen display. Please take a clear, live photo of physical documentation confirming your academic enrollment.\": \"您提供的圖片似乎是屏幕顯示內容。請直接拍攝紙質材料以確認您的在學狀態，例如學生證、錄取通知書或官方在學證明等紙質文件的原件照片。\",\n            // https://education.github.com/discount_requests/數字/completed 成功\n                \"Get benefits\": \"獲取福利\",\n\n                \"Thanks for submitting!\": \"感謝提交！\",\n                    \"Be sure to check your email. If you don't hear from us within the hour, you should receive an email from us in less than\": \"請務必查看您的電子郵件。如果您在一小時內沒有收到我們的回覆，您應該會在\",\n                    \"5 days\": \"5 天內\",\n                    \". Have an Octotastic day!\": \"收到我們的電子郵件。祝您度過愉快的一天！\",\n\n            // https://education.github.com/onboardings/new 申請批准後出現\n                \"Welcome to GitHub Education!\": \"歡迎來到 GitHub 教育！\",\n                    \"GitHub Education offers resources and programs to help students achieve their career goals.\": \"GitHub 教育提供各種資源和計劃，幫助學生實現職業目標。\",\n                    \"To get started, please answer two questions so we can add a learning path to your Education dashboard to help you with your goals.\": \"要開始學習，請回答兩個問題，以便我們在您的教育儀表板上添加學習路徑，幫助您實現目標。\",\n\n                \"Question 1 of 2\": \"問題 1/2\",\n                    \"In the next 4-6 months, which of the following are you hoping to accomplish? Select two that apply best.\": \"在未來 4-6 個月內，您希望實現以下哪些目標？請選擇最適合的兩項。\",\n                        \"Understanding how to use GitHub\": \"瞭解如何使用 GitHub\",\n                        \"Refining my skills in a particular topic (coding, gaming, design, big data, artifical intelligence, etc.)\": \"提高我在某一特定領域（編碼、遊戲、設計、大數據、人工智能等）的技能\",\n                        \"Connecting with other students who have similar interests\": \"與其他興趣相投的學生建立聯繫\",\n                        \"Developing career readiness skills\": \"培養職業準備技能\",\n                        \"Two selections are required to continue.\": \"必須選兩項。\",\n                \"Question 2 of 2\": \"問題 2/2\",\n                    \"Which topics are of interest to you? Select all that apply.\": \"您對哪些主題感興趣？請選擇所有適用選項。\",\n                        \"GitHub features and products\": \"GitHub 功能和產品\",\n                        \"Building a professional identity on GitHub\": \"在 GitHub 上打造專業身份\",\n                        \"Understanding emerging technologies in a particular field of interest (web development, gaming, design, data, engineering, robotics, etc.)\": \"瞭解特定興趣領域（網絡開發、遊戲、設計、數據、工程、機器人技術等）的新興技術\",\n                        \"Finding people, projects, and communities to connect with\": \"尋找可以聯繫的人、專案和社區\",\n                        \"Speaking at a conference\": \"在會議上發言\",\n                        \"Gaining skills to start a great career\": \"掌握技能，開始美好的職業生涯\",\n                \"Skip this question\": \"跳過\",\n\n                \"Here's our recommendation!\": \"這是我們的推薦！\",\n                    \"Continue with our recommended learning path for you, or select another one. Based on your selection,\": \"繼續我們為您推薦的學習路徑，或選擇其他路徑。根據您的選擇，\",\n                    \"we will display a learning path on your dashboard\": \"我們將在您的儀表板上顯示學習路徑，\",\n                    \"to help you get started.\": \"幫助您開始學習。\",\n\n                    \"Get Started with GitHub\": \"GitHub 入門\",\n                        \"With this learning path, you will learn how to make your first profile README and find other student repositories.\": \"通過本學習路徑，您將學會如何製作第一個配置文件 README 和查找其他學生資源庫。\",\n                    \"Recommended\": \"推薦\",\n                    \"GitHub Deep Dive\": \"深入瞭解 GitHub\",\n                        \"Go deeper on how to use codespaces and the GitHub flow to create a web application.\": \"深入瞭解如何使用程式碼空間和 GitHub 流程創建網絡應用程式。\",\n                    \"Continue to Dashboard\": \"在儀表板繼續\",\n\n            // https://education.github.com/learner/learn\n                // 頂部提示\n                \"Your onboarding preferences have been saved!\": \"您的入職首選項已保存！\",\n                // 左側\n                    // 左側欄\n                        \"Open Global Navigation Menu\": \"打開全局導航菜單\",\n                            \"Student Developer Pack\": \"學生開發包\",\n\n                            \"Explore More\": \"探索更多\",\n                                \"Education Community\": \"教育社區\",\n                                \"Campus Experts\": \"校園專家\",\n                                \"Education Blog\": \"教育博客\",\n\n                    \"Your request was approved.\": \"您的申請已批准。\",\n                        \"Your benefits will be available soon.\": \"您的福利即將發放。\",\n\n                    \"Learn new skills\": \"學習新技能\",\n                        \"Access learning resources from GitHub Education.\": \"從 GitHub 教育獲取學習資源。\",\n                    \"Find opportunities\": \"尋找機遇\",\n                        \"Power up your skillset with real-world projects.\": \"通過實際專案增強您的技能。\",\n                    \"Get connected\": \"獲得聯繫\",\n                        \"Discover other learners and build your network.\": \"發現其他學習者，建立自己的網絡。\",\n                // 中間\n                    \"Learning path\": \"學習途徑\",\n                        \"Intro to GitHub\": \"GitHub 介紹\",\n                            \"GitHub flow is a lightweight, branch-based workflow. In this Experience you'll learn the basics of the GitHub Flow including creating and making changes to branches within a repository, as well as creating and merging pull requests. The GitHub flow is useful for everyone, not just developers.\": \"GitHub 工作流是一種基於分支的輕量級工作流。在本體驗中，您將學習 GitHub 工作流的基礎知識，包括創建和修改版本庫中的分支，以及創建和合併拉取請求。GitHub 工作流不僅對開發人員有用，對每個人都有用。\",\n                            \"Go to Intro to GitHub\": \"前往 GitHub 介紹\",\n                        \"Primer: Codespaces\": \"入門：程式碼空間\",\n                            \"Wondering how to get started with Codespaces? This Primer makes it easy by giving you the templates, videos and step-by-step resources you need to get you started running, testing, debugging and pushing code using this instant cloud developer environment.\": \"想知道如何開始使用程式碼空間嗎？本入門指南為您提供模板、視頻和分步資源，讓您輕鬆開始運行、測試、調試和推送程式碼。\",\n                            \"Go to Primer: Codespaces\": \"前往入門：程式碼空間\",\n                    \"Not what you were looking for? Check out our\": \"還沒有找到您想要的？請查看我們的\",\n                        \"other learning paths.\": \"其他學習路徑。\",\n\n                    \"Student Developer Pack offers\": \"學生開發包提供\",\n                        \"Your Student Developer Pack will be ready soon!\": \"您的學生開發包即將就緒！\",\n                            \"We will notify you via email when your\": \"我們將通過電子郵件通知，當您可以使用\",\n                                \"Experiences\": \"體驗\",\n                                \"offers\": \"優惠\",\n                                \"become\": \" \",\n                                \"available to you.\": \"時。\",\n                        \"Popular offers you have not explored:\": \"您尚未探索的熱門優惠：\",\n                            \"Explore More Offers\": \"探索更多\",\n                            \"Curated Experiences with popular offers:\": \"精選體驗與熱門優惠：\",\n                // 右側\n                    // 右上角圖標菜單\n                    \"Update your location\": \"更新您的位置\",\n\n                    // 看板\n                    \"Enabling Copilot\": \"啟用 Copilot\",\n                        \"To ensure your free Copilot benefit is enabled, redeem by going to this link.\": \"要確保您的免費 Copilot 優惠已啟用，請訪問此鏈接進行兌換。\",\n\n                    \"Updates in Learn New Skills\": \"學習新技能的更新內容\",\n                        \"No new updates\": \"無更新\",\n\n                    \"Claimed offers\": \"已申請優惠\",\n                        \"Your explored offers failed to load, please refresh the page to see this content.\": \"加載失敗，請刷新頁面以查看此內容。\",\n\n            // https://education.github.com/learner/opportunities\n                \"Community Exchange\": \"社區交流\",\n                    \"Community Exchange is a collection of student repositories for teaching, learning and collaborating.\": \"社區交流是一個用於教學、學習和合作的學生資源庫。\",\n                    \"Go to Community Exchange\": \"前往社區交流\",\n                \"Updates in Find Opportunities\": \"尋找機遇的更新內容\",\n\n            // https://education.github.com/learner/connect\n                \"Events\": \"事件\",\n                    \"View more events\": \"查看更多\",\n                    \"See more\": \"詳情\",\n                \"GitHub Education Live\": \"GitHub 教育直播\",\n                    \"Go to Twitch\": \"前往 Twitch\",\n\n                // 右側\n                    \"Updates in Get Connected\": \"獲得聯繫更新內容\",\n                    \"Campus Expert\": \"校園專家\",\n                        \"Campus Experts are student leaders that strive to build diverse and inclusive technical communities.\": \"校園專家是學生領袖，他們努力建設多元化和包容性的技術社區。\",\n\n                        \"Follow your Expert\": \"關注專家\",\n                        \"Follow student leaders trained by GitHub to get help with hackathons & events\": \"關注由 GitHub 培訓的學生領袖，在黑客馬拉松和活動中獲得幫助\",\n\n                    \"Education blog\": \"教育博客\",\n                        \"View more\": \"查看更多\",\n        // 底部\n            \"Product\": \"產品\",\n    },\n    \"regexp\":[\n        [/(\\d+) requests?/, \"$1 次\"],\n        [/Hi, ([^ ]+)! You were last verified as a on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1) => {\n                const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n                const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n                return `您好，`+ user + `！您最近於${translatedDate}驗證。您現在無需重新驗證。從驗證到享受學業福利之間可能會有一段等待時間。`;\n            // return '您好，' + user + '！您最近於' + year + '年' + monthKey[month] + day + '日驗證。您現在無需重新驗證。從驗證到享受學業福利之間可能會有一段等待時間。';\n        }],\n        [/Hi, ([^ ]+)! You were last verified as a student on (.+). It is not necessary for you to reverify at this time. There may be a wait period between verification and access to academic benefits./, (match, user, p1)=> {\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return `您好，`+ user + `！您最近於${translatedDate}學生驗證。您現在無需重新驗證。從驗證到享受學業福利之間可能會有一段等待時間。`;\n            //return '您好，' + user + '！您最近於' + year + '年' + monthKey[month] + day + '日學生驗證。您現在無需重新驗證。從驗證到享受學業福利之間可能會有一段等待時間。';\n        }],\n        [/(Submitted|Verified since) (.+)/, (match, opt, p1) => { // p1為(.+)\n            var optKey = {\"Submitted\": \"提交於\", \"Verified since\": \"驗證自\",};\n            const dateRegExp = I18N[\"zh-TW\"][\"public\"][\"time-regexp\"];\n            const translatedDate = dateRegExp.reduce((acc, [pattern, replacement]) => acc.replace(pattern, replacement), p1);\n            return optKey[opt] + `${translatedDate}`;\n        }],\n        //[/Verified since (.+)/, \"驗證自 $1\"],\n        [/(\\d+) views?/, \"$1 次觀看\"],\n    ],\n    \"title\": {\n        \"static\": {\n            \"GitHub Education\": \"GitHub 教育\",\n            \"GitHub Student Developer Pack - GitHub Education\": \"GitHub 學生開發者包 - GitHub 教育\",\n            \"Community Exchange - GitHub Education\": \"社區交流 - GitHub 教育\",\n            \"Events - GitHub Education\": \"事件 - GitHub 教育\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"mcp\"] = {\n    \"static\": {\n        \"Connect models to the real world\": \"連接模型至真實世界\",\n            \"Servers and tools from the community that connect models to files, APIs, databases, and more.\": \"來自社區的服務器和工具，可以將模型連接到文件、API、數據庫等。\",\n\n        \"Search MCPs\": \"搜索 MCP\",\n\n        \"All MCP servers\": \"所有 MCP 服務器\",\n            \"Install\": \"安裝\",\n                \"Install in VS Code\": \"安裝到 VS Code\",\n                \"Install in VS Code Insiders\": \"安裝到 VS Code 測試版\",\n\n            \"By\": \"作者\",\n\n        // 具體頁面\n            \"Install MCP server\": \"安裝 MCP 服務器\",\n            \"Contact support\": \"獲取支持\",\n    },\n    \"regexp\": [],\n    \"title\": {\n        \"static\": {\n            \"MCP Registry\": \"MCP 互聯\",\n        },\n    },\n};\n\nI18N[\"zh-TW\"][\"repository/agents\"] = {\n    \"static\": {\n        // 介紹頁面\n        \"Copilot Coding Agent handles routine tasks so you can focus on core work\": \"Copilot 編程智能體處理例行任務，讓您專注於核心工作\",\n            \"Save time by offloading testing, dependency upgrades, migrations and maintenance to agents. Create pull requests from Copilot Chat, CLI, IDEs or assign an Issue to Copilot to get started.\": \"將測試、依賴項升級、遷移和維護等工作交給智能體處理，節省您的時間。您可以通過 Copilot Chat、命令行、IDE 創建拉取請求，或直接將議題分配給 Copilot 來開始使用。\",\n                \"View Copilot Coding Agent capabilities\": \"查看 Copilot 編程智能體功能\",\n\n        // 免費試用提示\n        \"Available on paid plans. Try it with Copilot Pro — free for 30 days.\": \"僅在付費計劃中可用。立即試用 Copilot Pro，享受 30 天免費體驗。\",\n            \"Start free trial\": \"開始免費試用\",\n\n        // 左側Tab\n        \"Created by me\": \"由我創建的\",\n        \"All sessions\": \"所有任務\",\n\n        \"Customize environment\": \"自定義環境\",\n        \"Configure\": \"自定義配置\",\n    },\n};\n"
  },
  {
    "path": "main(greasyfork).user.js",
    "content": "// ==UserScript==\n// @name         GitHub 中文化插件\n// @namespace    https://github.com/maboloshi/github-chinese\n// @description  中文化 GitHub 界面的部分菜单及内容。原作者为楼教主(http://www.52cik.com/)。\n// @copyright    2021, 沙漠之子 (https://maboloshi.github.io/Blog)\n// @icon         https://github.githubassets.com/pinned-octocat.svg\n// @version      1.9.2-2026-03-06\n// @author       沙漠之子\n// @license      GPL-3.0\n// @match        https://github.com/*\n// @match        https://skills.github.com/*\n// @match        https://gist.github.com/*\n// @match        https://www.githubstatus.com/*\n// @require      https://greasyfork.org/scripts/435207-github-%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6-%E4%B8%AD%E6%96%87%E8%AF%8D%E5%BA%93%E8%A7%84%E5%88%99/code/GitHub%20%E4%B8%AD%E6%96%87%E5%8C%96%E6%8F%92%E4%BB%B6%20-%20%E4%B8%AD%E6%96%87%E8%AF%8D%E5%BA%93%E8%A7%84%E5%88%99.js?v1.9.2-2026-03-06\n// @run-at       document-end\n// @grant        GM_xmlhttpRequest\n// @grant        GM_getValue\n// @grant        GM_setValue\n// @grant        GM_registerMenuCommand\n// @grant        GM_unregisterMenuCommand\n// @grant        GM_notification\n// @connect      www.iflyrec.com\n// @supportURL   https://github.com/maboloshi/github-chinese/issues\n// ==/UserScript==\n\n(function (window, document, undefined) {\n    'use strict';\n\n    const lang = I18N.zh ? 'zh' : 'zh-CN'; // 设置默认语言\n    let page;\n    let enable_RegExp = GM_getValue(\"enable_RegExp\", 1);\n\n    /**\n     * watchUpdate 函数：监视页面变化，根据变化的节点进行翻译\n     */\n    function watchUpdate() {\n        // 检测浏览器是否支持 MutationObserver\n        const MutationObserver =\n            window.MutationObserver ||\n            window.WebKitMutationObserver ||\n            window.MozMutationObserver;\n\n        // 获取当前页面的 URL\n        const getCurrentURL = () => location.href;\n        getCurrentURL.previousURL = getCurrentURL();\n\n        // 创建 MutationObserver 实例，监听 DOM 变化\n        const observer = new MutationObserver((mutations, observer) => {\n            const currentURL = getCurrentURL();\n\n            // 如果页面的 URL 发生变化\n            if (currentURL !== getCurrentURL.previousURL) {\n                getCurrentURL.previousURL = currentURL;\n                page = getPage(); // 当页面地址发生变化时，更新全局变量 page\n                console.log(`链接变化 page= ${page}`);\n\n                transTitle(); // 翻译页面标题\n\n                if (page) {\n                    setTimeout(() => {\n                        // 使用 CSS 选择器找到页面上的元素，并将其文本内容替换为预定义的翻译\n                        transBySelector();\n                        if (page === \"repository\") { //仓库简介翻译\n                            transDesc(\".f4.my-3\");\n                        } else if (page === \"gist\") { // Gist 简介翻译\n                            transDesc(\".gist-content [itemprop='about']\");\n                        }\n                    }, 500);\n                }\n            }\n\n            if (page) {\n                // 使用 filter 方法对 mutations 数组进行筛选，\n                // 返回 `节点增加、文本更新 或 属性更改的 mutation` 组成的新数组 filteredMutations。\n                const filteredMutations = mutations.filter(mutation => mutation.addedNodes.length > 0 || mutation.type === 'attributes' || mutation.type === 'characterData');\n\n                // 处理每个变化\n                filteredMutations.forEach(mutation => traverseNode(mutation.target));\n            }\n        });\n\n        // 配置 MutationObserver\n        const config = {\n            characterData: true,\n            subtree: true,\n            childList: true,\n            attributeFilter: ['value', 'placeholder', 'aria-label', 'data-confirm'], // 仅观察特定属性变化\n        };\n\n        // 开始观察 document.body 的变化\n        observer.observe(document.body, config);\n    }\n\n    /**\n     * traverseNode 函数：遍历指定的节点，并对节点进行翻译。\n     * @param {Node} node - 需要遍历的节点。\n     */\n    function traverseNode(node) {\n        // 跳过忽略\n        if (I18N.conf.reIgnoreId.test(node.id) ||\n            I18N.conf.reIgnoreClass.test(node.className) ||\n            I18N.conf.reIgnoreTag.includes(node.tagName) ||\n            (node.getAttribute && I18N.conf.reIgnoreItemprop.test(node.getAttribute(\"itemprop\")))\n        ) {\n            return;\n        }\n\n        if (node.nodeType === Node.ELEMENT_NODE) { // 元素节点处理\n\n            // 翻译时间元素\n            if (\n                [\"RELATIVE-TIME\", \"TIME-AGO\", \"TIME\", \"LOCAL-TIME\"].includes(node.tagName)\n            ) {\n                if (node.shadowRoot) {\n                    transTimeElement(node.shadowRoot);\n                    watchTimeElement(node.shadowRoot);\n                } else {\n                    transTimeElement(node);\n                }\n                return;\n            }\n\n            // 元素节点属性翻译\n            if ([\"INPUT\", \"TEXTAREA\"].includes(node.tagName)) { // 输入框 按钮 文本域\n                if ([\"button\", \"submit\", \"reset\"].includes(node.type)) {\n                    if (node.hasAttribute('data-confirm')) { // 翻译 浏览器 提示对话框\n                        transElement(node, 'data-confirm', true);\n                    }\n                    transElement(node, 'value');\n                } else {\n                    transElement(node, 'placeholder');\n                }\n            } else if (node.tagName === 'BUTTON') {\n                if (node.hasAttribute('aria-label') && /tooltipped/.test(node.className)) {\n                    transElement(node, 'aria-label', true); // 翻译 浏览器 提示对话框\n                }\n                if (node.hasAttribute('title')) {\n                    transElement(node, 'title', true); // 翻译 浏览器 提示对话框\n                }\n                if (node.hasAttribute('data-confirm')) {\n                    transElement(node, 'data-confirm', true); // 翻译 浏览器 提示对话框 ok\n                }\n                if (node.hasAttribute('data-confirm-text')) {\n                    transElement(node, 'data-confirm-text', true); // 翻译 浏览器 提示对话框 ok\n                }\n                if (node.hasAttribute('data-confirm-cancel-text')) {\n                    transElement(node, 'data-confirm-cancel-text', true); // 取消按钮 提醒\n                }\n                if (node.hasAttribute('cancel-confirm-text')) {\n                    transElement(node, 'cancel-confirm-text', true); // 取消按钮 提醒\n                }\n                if (node.hasAttribute('data-disable-with')) { // 按钮等待提示\n                    transElement(node, 'data-disable-with', true);\n                }\n            } else if (node.tagName === 'OPTGROUP') { // 翻译 <optgroup> 的 label 属性\n                transElement(node, 'label');\n            } else if (/tooltipped/.test(node.className)) { // 仅当 元素存在'tooltipped'样式 aria-label 才起效果\n                transElement(node, 'aria-label', true); // 带提示的元素，类似 tooltip 效果的\n            } else if (node.tagName === 'A') {\n                if (node.hasAttribute('title')) {\n                    transElement(node, 'title', true); // 翻译 浏览器 提示对话框\n                }\n                if (node.hasAttribute('data-hovercard-type')) {\n                    return; // 不翻译\n                }\n            }\n\n            let childNodes = node.childNodes;\n            childNodes.forEach(traverseNode); // 遍历子节点\n\n        } else if (node.nodeType === Node.TEXT_NODE) { // 文本节点翻译\n            if (node.length <= 500) { // 修复 许可证编辑框初始化载入内容被翻译\n                transElement(node, 'data');\n            }\n        }\n    }\n\n    /**\n     * getPage 函数：获取当前页面的类型。\n     * @returns {string|boolean} 当前页面的类型，如果无法确定类型，那么返回 false。\n     */\n    function getPage() {\n\n        // 站点，如 gist, developer, help 等，默认主站是 github\n        const siteMapping = {\n            'gist.github.com': 'gist',\n            'www.githubstatus.com': 'status',\n            'skills.github.com': 'skills'\n        };\n        const site = siteMapping[location.hostname] || 'github'; // 站点\n        const pathname = location.pathname; // 当前路径\n\n        // 是否登录\n        const isLogin = document.body.classList.contains(\"logged-in\");\n\n        // 用于确定 个人首页，组织首页，仓库页 然后做判断\n        const analyticsLocation = (document.getElementsByName('analytics-location')[0] || {}).content || '';\n        // 组织页\n        const isOrganization = /\\/<org-login>/.test(analyticsLocation) || /^\\/(?:orgs|organizations)/.test(pathname);\n        // 仓库页\n        const isRepository = /\\/<user-name>\\/<repo-name>/.test(analyticsLocation);\n\n        // 优先匹配 body 的 class\n        let page, t = document.body.className.match(I18N.conf.rePageClass);\n        if (t) {\n            if (t[1] === 'page-profile') {\n                let matchResult = location.search.match(/tab=(\\w+)/);\n                if (matchResult) {\n                    page = 'page-profile/' + matchResult[1];\n                } else {\n                    page = pathname.match(/\\/(stars)/) ? 'page-profile/stars' : 'page-profile';\n                }\n            } else {\n                page = t[1];\n            }\n        } else if (site === 'gist') { // Gist 站点\n            page = 'gist';\n        } else if (site === 'status') {  // GitHub Status 页面\n            page = 'status';\n        } else if (site === 'skills') {  // GitHub Skills 页面\n            page = 'skills';\n        } else if (pathname === '/' && site === 'github') { // github.com 首页\n            page = isLogin ? 'page-dashboard' : 'homepage';\n        } else if (isRepository) { // 仓库页\n            t = pathname.match(I18N.conf.rePagePathRepo);\n            page = t ? 'repository/' + t[1] : 'repository';\n        } else if (isOrganization) { // 组织页\n            t = pathname.match(I18N.conf.rePagePathOrg);\n            page = t ? 'orgs/' + (t[1] || t.slice(-1)[0]) : 'orgs';\n        } else {\n            t = pathname.match(I18N.conf.rePagePath);\n            page = t ? (t[1] || t.slice(-1)[0]) : false; // 取页面 key\n        }\n\n        if (!page || !I18N[lang][page]) {\n            console.log(`请注意对应 page ${page} 词库节点不存在`);\n            page = false;\n        }\n        return page;\n    }\n\n    /**\n     * transTitle 函数：翻译页面标题\n     */\n    function transTitle() {\n        let key = document.title; // 标题文本内容\n        let str = I18N[lang]['title']['static'][key] || '';\n        if (!str) {\n            let res = I18N[lang]['title'].regexp || [];\n            for (let [a, b] of res) {\n                str = key.replace(a, b);\n                if (str !== key) {\n                    break;\n                }\n            }\n        }\n        document.title = str;\n    }\n\n    /**\n     * transTimeElement 函数：翻译时间元素文本内容。\n     * @param {Element} el - 需要翻译的元素。\n     */\n    function transTimeElement(el) {\n        let key = el.childNodes.length > 0 ? el.lastChild.textContent : el.textContent;\n        let res = I18N[lang]['public']['time-regexp']; // 时间正则规则\n\n        for (let [a, b] of res) {\n            let str = key.replace(a, b);\n            if (str !== key) {\n                el.textContent = str;\n                break;\n            }\n        }\n    }\n\n    /**\n     * watchTimeElement 函数：监视时间元素变化, 触发和调用时间元素翻译\n     * @param {Element} el - 需要监视的元素。\n     */\n    function watchTimeElement(el) {\n        const MutationObserver =\n            window.MutationObserver ||\n            window.WebKitMutationObserver ||\n            window.MozMutationObserver;\n\n        new MutationObserver(mutations => {\n            transTimeElement(mutations[0].addedNodes[0]);\n        }).observe(el, {\n            childList: true\n        });\n    }\n\n    /**\n     * transElement 函数：翻译指定元素的文本内容或属性。\n     * @param {Element} el - 需要翻译的元素。\n     * @param {string} field - 需要翻译的文本内容或属性的名称。\n     * @param {boolean} isAttr - 是否需要翻译属性。\n     */\n    function transElement(el, field, isAttr = false) {\n        let text = isAttr ? el.getAttribute(field) : el[field]; // 需要翻译的文本\n        let str = translateText(text); // 翻译后的文本\n\n        // 替换翻译后的内容\n        if (str) {\n            if (!isAttr) {\n                el[field] = str;\n            } else {\n                el.setAttribute(field, str);\n            }\n        }\n    }\n\n    /**\n     * translateText 函数：翻译文本内容。\n     * @param {string} text - 需要翻译的文本内容。\n     * @returns {string|boolean} 翻译后的文本内容，如果没有找到对应的翻译，那么返回 false。\n     */\n    function translateText(text) { // 翻译\n\n        // 内容为空, 空白字符和或数字, 不存在英文字母和符号,. 跳过\n        if (!isNaN(text) || !/[a-zA-Z,.]+/.test(text)) {\n            return false;\n        }\n\n        let _key = text.trim(); // 去除首尾空格的 key\n        let _key_neat = _key.replace(/\\xa0|[\\s]+/g, ' ') // 去除多余空白字符(&nbsp; 空格 换行符)\n\n        let str = fetchTranslatedText(_key_neat); // 翻译已知页面 (局部优先)\n\n        if (str && str !== _key_neat) { // 已知页面翻译完成\n            return text.replace(_key, str); // 替换原字符，保留首尾空白部分\n        }\n\n        return false;\n    }\n\n    /**\n     * fetchTranslatedText 函数：从特定页面的词库中获得翻译文本内容。\n     * @param {string} key - 需要翻译的文本内容。\n     * @returns {string|boolean} 翻译后的文本内容，如果没有找到对应的翻译，那么返回 false。\n     */\n    function fetchTranslatedText(key) {\n\n        // 静态翻译\n        let str = I18N[lang][page]['static'][key] || I18N[lang]['public']['static'][key]; // 默认翻译 公共部分\n\n        if (typeof str === 'string') {\n            return str;\n        }\n\n        // 正则翻译\n        if (enable_RegExp) {\n            let res = (I18N[lang][page].regexp || []).concat(I18N[lang]['public'].regexp || []); // 正则数组\n\n            for (let [a, b] of res) {\n                str = key.replace(a, b);\n                if (str !== key) {\n                    return str;\n                }\n            }\n        }\n\n        return false; // 没有翻译条目\n    }\n\n    /**\n     * transDesc 函数：为指定的元素添加一个翻译按钮，并为该按钮添加点击事件。\n     * @param {string} el - CSS选择器，用于选择需要添加翻译按钮的元素。\n     */\n    function transDesc(el) {\n        // 使用 CSS 选择器选择元素\n        let element = document.querySelector(el);\n\n        // 如果元素不存在 或者 translate-me 元素已存在，那么直接返回\n        if (!element || document.getElementById('translate-me')) {\n            return false;\n        }\n\n        // 在元素后面插入一个翻译按钮\n        const buttonHTML = `<div id='translate-me' style='color: rgb(27, 149, 224); font-size: small; cursor: pointer'>翻译</div>`;\n        element.insertAdjacentHTML('afterend', buttonHTML);\n        let button = element.nextSibling;\n\n        // 为翻译按钮添加点击事件\n        button.addEventListener('click', () => {\n            // 获取元素的文本内容\n            const desc = element.textContent.trim();\n\n            // 如果文本内容为空，那么直接返回\n            if (!desc) {\n                return false;\n            }\n\n            // 调用 translateDescText 函数进行翻译\n            translateDescText(desc, text => {\n                // 翻译完成后，隐藏翻译按钮，并在元素后面插入翻译结果\n                button.style.display = \"none\";\n                const translationHTML = `<span style='font-size: small'>由 <a target='_blank' style='color:rgb(27, 149, 224);' href='https://www.iflyrec.com/html/translate.html'>讯飞听见</a> 翻译👇</span><br/>${text}`;\n                element.insertAdjacentHTML('afterend', translationHTML);\n            });\n        });\n    }\n\n    /**\n     * translateDescText 函数：将指定的文本发送到讯飞的翻译服务进行翻译。\n     * @param {string} text - 需要翻译的文本。\n     * @param {function} callback - 翻译完成后的回调函数，该函数接受一个参数，即翻译后的文本。\n     */\n    function translateDescText(text, callback) {\n        // 使用 GM_xmlhttpRequest 函数发送 HTTP 请求\n        GM_xmlhttpRequest({\n            method: \"POST\", // 请求方法为 POST\n            url: \"https://www.iflyrec.com/TranslationService/v1/textTranslation\", // 请求的 URL\n            headers: { // 请求头\n                'Content-Type': 'application/json',\n                'Origin': 'https://www.iflyrec.com',\n            },\n            data: JSON.stringify({\n                \"from\": \"2\",\n                \"to\": \"1\",\n                \"contents\": [{\n                    \"text\": text,\n                    \"frontBlankLine\": 0\n                }]\n            }), // 请求的数据\n            responseType: \"json\", // 响应的数据类型为 JSON\n            onload: (res) => {\n                try {\n                    const { status, response } = res;\n                    const translatedText = (status === 200) ? response.biz[0].translateResult : \"翻译失败\";\n                    callback(translatedText);\n                } catch (error) {\n                    console.error('翻译失败', error);\n                    callback(\"翻译失败\");\n                }\n            },\n            onerror: (error) => {\n                console.error('网络请求失败', error);\n                callback(\"网络请求失败\");\n            }\n        });\n    }\n\n    /**\n     * transBySelector 函数：通过 CSS 选择器找到页面上的元素，并将其文本内容替换为预定义的翻译。\n     */\n    function transBySelector() {\n        // 获取当前页面的翻译规则，如果没有找到，那么使用公共的翻译规则\n        let res = (I18N[lang][page]?.selector || []).concat(I18N[lang]['public'].selector || []); // 数组\n\n        // 如果找到了翻译规则\n        if (res.length > 0) {\n            // 遍历每个翻译规则\n            for (let [selector, translation] of res) {\n                // 使用 CSS 选择器找到对应的元素\n                let element = document.querySelector(selector)\n                // 如果找到了元素，那么将其文本内容替换为翻译后的文本\n                if (element) {\n                    element.textContent = translation;\n                }\n            }\n        }\n    }\n\n    function registerMenuCommand() {\n        const toggleRegExp = () => {\n            enable_RegExp = !enable_RegExp;\n            GM_setValue(\"enable_RegExp\", enable_RegExp);\n            GM_notification(`已${enable_RegExp ? '开启' : '关闭'}正则功能`);\n            if (enable_RegExp) {\n                location.reload();\n            }\n            GM_unregisterMenuCommand(id);\n            id = GM_registerMenuCommand(`${enable_RegExp ? '关闭' : '开启'}正则功能`, toggleRegExp);\n        };\n\n        let id = GM_registerMenuCommand(`${enable_RegExp ? '关闭' : '开启'}正则功能`, toggleRegExp);\n    }\n\n    /**\n     * init 函数：初始化翻译功能。\n     */\n    function init() {\n        // 获取当前页面的翻译规则\n        page = getPage();\n        console.log(`开始page= ${page}`);\n\n        // 翻译页面标题\n        transTitle();\n\n        if (page) {\n            // 立即翻译页面\n            traverseNode(document.body);\n\n            setTimeout(() => {\n                // 使用 CSS 选择器找到页面上的元素，并将其文本内容替换为预定义的翻译\n                transBySelector();\n                if (page === \"repository\") { //仓库简介翻译\n                    transDesc(\".f4.my-3\");\n                } else if (page === \"gist\") { // Gist 简介翻译\n                    transDesc(\".gist-content [itemprop='about']\");\n                }\n            }, 100);\n        }\n        // 监视页面变化\n        watchUpdate();\n    }\n\n    // 执行初始化\n    registerMenuCommand();\n    init();\n\n})(window, document);\n"
  },
  {
    "path": "main.user.js",
    "content": "// ==UserScript==\n// @name         GitHub 中文化插件\n// @namespace    https://github.com/maboloshi/github-chinese\n// @description  中文化 GitHub 界面的部分菜单及内容。原作者为楼教主(http://www.52cik.com/)。\n// @copyright    2021, 沙漠之子 (https://maboloshi.github.io/Blog)\n// @icon         https://github.githubassets.com/pinned-octocat.svg\n// @version      1.9.3-2026-03-06\n// @author       沙漠之子\n// @license      GPL-3.0\n// @match        https://github.com/*\n// @match        https://skills.github.com/*\n// @match        https://gist.github.com/*\n// @match        https://education.github.com/*\n// @match        https://www.githubstatus.com/*\n// @require      https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/locals.js?v1.9.3-2026-03-06\n// @run-at       document-start\n// @grant        GM_xmlhttpRequest\n// @grant        GM_getValue\n// @grant        GM_setValue\n// @grant        GM_registerMenuCommand\n// @grant        GM_unregisterMenuCommand\n// @grant        GM_notification\n// @connect      fanyi.iflyrec.com\n// @supportURL   https://github.com/maboloshi/github-chinese/issues\n// ==/UserScript==\n\n(function (window, document, undefined) {\n    'use strict';\n\n    /****************** 全局配置区（开发者可修改部分） ******************/\n    const FeatureSet = {\n        enable_RegExp: GM_getValue(\"enable_RegExp\", true),\n        enable_transDesc: GM_getValue(\"enable_transDesc\", true),\n    };\n    const CONFIG = {\n        LANG: 'zh-CN',\n        // 站点域名 -> 类型映射\n        PAGE_MAP: {\n            'gist.github.com': 'gist',\n            'www.githubstatus.com': 'status',\n            'skills.github.com': 'skills',\n            'education.github.com': 'education'\n        },\n        // 需要特殊处理的站点类型\n        SPECIAL_SITES: ['gist', 'status', 'skills', 'education'],\n        // 简介 css 筛选器规则\n        DESC_SELECTORS: {\n            repository: \".f4.my-3\",\n            gist: \".gist-content [itemprop='about']\"\n        },\n        OBSERVER_CONFIG: {\n            childList: true,\n            subtree: true,\n            characterData: true,\n            attributeFilter: ['value', 'placeholder', 'aria-label', 'data-confirm']\n        },\n        // 当前使用引擎（开发者可切换）\n        transEngine: 'iflyrec',\n        // 翻译引擎配置\n        TRANS_ENGINES: {\n            iflyrec: {\n                name: '讯飞听见',\n                url: 'https://fanyi.iflyrec.com/text-translate',\n                url_api: 'https://fanyi.iflyrec.com/TJHZTranslationService/v2/textAutoTranslation',\n                method: 'POST',\n                headers: {\n                    'Content-Type': 'application/json',\n                    'Origin': 'https://fanyi.iflyrec.com'\n                },\n                // 请求体数据结构\n                getRequestData: (text) => ({\n                    from: 2,\n                    to: 1,\n                    type: 1,\n                    contents: [{ text: text }]\n                }),\n                // 响应标识\n                responseIdentifier: 'biz[0]?.sectionResult[0]?.dst',\n            },\n        }\n    };\n\n    let pageConfig = {};\n\n    // 初始化\n    init();\n\n    // 更新页面设置\n    function updatePageConfig(currentPageChangeTrigger) {\n        const newType = detectPageType();\n        if (newType && newType !== pageConfig.currentPageType) {\n            pageConfig = buildPageConfig(newType);\n        }\n        console.log(`【Debug】${currentPageChangeTrigger}触发, 页面类型为 ${pageConfig.currentPageType}`);\n    }\n\n    // 构建页面设置 pageConfig 对象\n    function buildPageConfig(pageType = pageConfig.currentPageType) {\n        return {\n            // 当前页面类型\n            currentPageType: pageType,\n            // 页面标题静态词库\n            titleStaticDict: {\n                ...I18N[CONFIG.LANG].public.title.static,\n                ...(I18N[CONFIG.LANG][pageType]?.title?.static || {})\n            },\n            // 页面标题正则词库\n            titleRegexpRules: [\n                ...I18N[CONFIG.LANG].public.title.regexp,\n                ...(I18N[CONFIG.LANG][pageType]?.title?.regexp || [])\n            ],\n            // 静态词库\n            staticDict: {\n                ...I18N[CONFIG.LANG].public.static,\n                ...(I18N[CONFIG.LANG][pageType]?.static || {})\n            },\n            // 正则词库\n            regexpRules: [\n                ...(I18N[CONFIG.LANG][pageType]?.regexp || []),\n                ...I18N[CONFIG.LANG].public.regexp\n            ],\n            // 忽略突变元素选择器（字符串）\n            ignoreMutationSelectors: [\n                ...I18N.conf.ignoreMutationSelectorPage['*'],\n                ...(I18N.conf.ignoreMutationSelectorPage[pageType] || [])\n            ].join(', '),\n            // 忽略元素选择器规则（字符串）\n            ignoreSelectors: [\n                ...I18N.conf.ignoreSelectorPage['*'],\n                ...(I18N.conf.ignoreSelectorPage[pageType] || [])\n            ].join(', '),\n            // 字符数据监视开启规则（布尔值）\n            characterData: I18N.conf.characterDataPage.includes(pageType),\n            // CSS 选择器规则\n            tranSelectors: [\n                ...(I18N[CONFIG.LANG].public.selector || []),\n                ...(I18N[CONFIG.LANG][pageType]?.selector || [])\n            ],\n        };\n    }\n\n    /**\n     * watchUpdate 函数：监视页面变化，根据变化的节点进行翻译\n     */\n    function watchUpdate() {\n        // 缓存当前页面的 URL\n        let previousURL = window.location.href;\n\n        const handleUrlChange = () => {\n            const currentURL = window.location.href;\n            // 如果页面的 URL 发生变化\n            if (currentURL !== previousURL) {\n                previousURL = currentURL;\n                updatePageConfig(\"DOM变化\");\n            }\n        }\n\n        const processMutations = mutations => {\n            // 平铺突变记录并过滤需要处理的节点（链式操作）\n            // 使用 mutations.flatMap 进行筛选突变:\n            //   1. 针对`节点增加`突变，后期迭代翻译的对象调整为`addedNodes`中记录的新增节点，而不是`target`，此举大幅减少重复迭代翻译\n            //   2. 对于其它`属性`和特定页面`文本节点`突变，仍旧直接处理`target`\n            //   3. 使用`.filter()`筛选丢弃特定页面`特定忽略元素`内突变的节点\n            mutations.flatMap(({ target, addedNodes, type }) => {\n                // 处理子节点添加的情况\n                if (type === 'childList' && addedNodes.length > 0) {\n                    return [...addedNodes]; // 将新增节点转换为数组\n                }\n                // 处理属性和文本内容变更的情况\n                return (type === 'attributes' || (type === 'characterData' && pageConfig.characterData))\n                    ? [target] // 否则，仅处理目标节点\n                    : [];\n            })\n            // 过滤需要忽略的突变节点\n            .filter(node =>\n                // 剔除节点元素所在 DOM 树中匹配忽略选择器\n                !(node.closest\n                  ? node.closest(pageConfig.ignoreMutationSelectors)\n                  : node.parentElement?.closest(pageConfig.ignoreMutationSelectors)\n                )\n            )\n            // 处理每个变化\n            .forEach(node =>\n                // 递归遍历节点树进行处理\n                traverseNode(node)\n            );\n        }\n\n        // 监听 document.body 下 DOM 变化，用于处理节点变化\n        new MutationObserver(mutations => {\n            handleUrlChange();\n            if (pageConfig.currentPageType) processMutations(mutations);\n        }).observe(document.body, CONFIG.OBSERVER_CONFIG);\n    }\n\n    /**\n     * traverseNode 函数：遍历指定的节点，并对节点进行翻译。\n     * @param {Node} node - 需要遍历的节点。\n     */\n    function traverseNode(rootNode) {\n        const start = performance.now();\n\n        const handleTextNode = node => {\n            if (node.length > 500) return;\n            transElement(node, 'data');\n        }\n\n        // 如果 rootNode 是文本节点，直接处理\n        if (rootNode.nodeType === Node.TEXT_NODE) {\n            handleTextNode(rootNode);\n            return; // 文本节点没有子节点，直接返回\n        }\n\n        const treeWalker = document.createTreeWalker(\n            rootNode,\n            NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_TEXT,\n            node =>\n                // 跳过忽略的节点\n                node.matches?.(pageConfig.ignoreSelectors)\n                ? NodeFilter.FILTER_REJECT\n                : NodeFilter.FILTER_ACCEPT,\n        );\n\n        const handleElement = node => {\n            // 处理不同标签的元素属性翻译\n            switch (node.tagName) {\n                case \"RELATIVE-TIME\": // 翻译时间元素\n                    transTimeElement(node.shadowRoot);\n                    return;\n\n                case \"INPUT\":\n                case \"TEXTAREA\": // 输入框 按钮 文本域\n                    if (['button', 'submit', 'reset'].includes(node.type)) {\n                        transElement(node.dataset, 'confirm'); // 翻译 浏览器 提示对话框\n                        transElement(node, 'value');\n                    } else {\n                        transElement(node, 'placeholder');\n                    }\n                    break;\n\n                case \"OPTGROUP\":\n                    transElement(node, 'label'); // 翻译 <optgroup> 的 label 属性\n                    break;\n\n                case \"BUTTON\":\n                    transElement(node, 'title'); // 翻译 浏览器 提示对话框\n                    transElement(node.dataset, 'confirm'); // 翻译 浏览器 提示对话框 ok\n                    transElement(node.dataset, 'confirmText'); // 翻译 浏览器 提示对话框 ok\n                    transElement(node.dataset, 'confirmCancelText'); // 取消按钮 提醒\n                    transElement(node, 'cancelConfirmText'); // 取消按钮 提醒\n                    transElement(node.dataset, 'disableWith'); // 按钮等待提示\n\n                case \"A\":\n                case \"SPAN\":\n                    transElement(node, 'title'); // title 属性\n                    transElement(node.dataset, 'visibleText'); // 翻译 浏览器 提示对话框 ok\n\n                default:\n                    // 仅当 元素存在'tooltipped'样式 aria-label 才起效果\n                    if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel'); // 带提示的元素，类似 tooltip 效果的\n            }\n        }\n\n        // 预绑定处理函数提升性能\n        const handlers = {\n            [Node.ELEMENT_NODE]: handleElement,\n            [Node.TEXT_NODE]: handleTextNode\n        };\n\n        let currentNode;\n        while ((currentNode = treeWalker.nextNode())) {\n            handlers[currentNode.nodeType]?.(currentNode);\n        }\n\n        const duration = performance.now() - start;\n        if (duration > 10) {\n            // console.warn(`【Debug】节点遍历耗时: ${duration.toFixed(2)}ms`, rootNode);\n            console.log(`节点遍历耗时: ${duration.toFixed(2)}ms`);\n        }\n    }\n\n    /**\n     * detectPageType 函数：检测当前页面类型，基于URL、元素类名和meta信息。\n     * @returns {string|boolean} 页面的类型，如'repository'、'dashboard'等，如果无法确定类型，那么返回 false。\n     */\n    function detectPageType() {\n        const url = new URL(window.location.href);\n        const { PAGE_MAP, SPECIAL_SITES } = CONFIG;\n        const { hostname, pathname } = url;\n\n        // 基础配置 ===============================================\n        const site = PAGE_MAP[hostname] || 'github'; // 通过站点映射获取基础类型\n        const isLogin = document.body.classList.contains(\"logged-in\");\n        const metaLocation = document.head.querySelector('meta[name=\"analytics-location\"]')?.content || '';\n\n        // 页面特征检测 ============================================\n        const isSession = document.body.classList.contains(\"session-authentication\");\n        const isHomepage = pathname === '/' && site === 'github';\n        const isProfile = document.body.classList.contains(\"page-profile\") || metaLocation === '/<user-name>';\n        const isRepository = /\\/<user-name>\\/<repo-name>/.test(metaLocation);\n        const isOrganization = /\\/<org-login>/.test(metaLocation) || /^\\/(?:orgs|organizations)/.test(pathname);\n\n        // 正则配置 ================================================\n        const { rePagePathRepo, rePagePathOrg, rePagePath } = I18N.conf;\n\n        // 核心判断逻辑 ============================================\n        let pageType;\n        switch (true) { // 使用 switch(true) 模式处理多条件分支\n            // 1. 登录相关页面\n            case isSession:\n                pageType = 'session-authentication';\n                break;\n\n            // 2. 特殊站点类型（gist/status/skills/education）\n            case SPECIAL_SITES.includes(site):\n                pageType = site;\n                break;\n\n            // 3. 个人资料页\n            case isProfile:\n                const tabParam = new URLSearchParams(url.search).get('tab');\n                pageType = pathname.includes('/stars') ? 'page-profile/stars'\n                         : tabParam ? `page-profile/${tabParam}`\n                         : 'page-profile';\n                break;\n\n            // 4. 首页/仪表盘\n            case isHomepage:\n                pageType = isLogin ? 'dashboard' : 'homepage';\n                break;\n\n            // 5. 代码仓库页\n            case isRepository:\n                const repoMatch = pathname.match(rePagePathRepo);\n                pageType = repoMatch ? `repository/${repoMatch[1]}` : 'repository';\n                break;\n\n            // 6. 组织页面\n            case isOrganization:\n                const orgMatch = pathname.match(rePagePathOrg);\n                pageType = orgMatch ? `orgs/${orgMatch[1] || orgMatch.slice(-1)[0]}` : 'orgs';\n                break;\n\n            // 7. 默认处理逻辑\n            default:\n                const pathMatch = pathname.match(rePagePath);\n                pageType = pathMatch ? (pathMatch[1] || pathMatch.slice(-1)[0]) : false;\n        }\n\n        console.log(`【Debug】pathname = ${pathname}, site = ${site}, isLogin = ${isLogin}, analyticsLocation = ${metaLocation}, isOrganization = ${isOrganization}, isRepository = ${isRepository}, isProfile = ${isProfile}, isSession = ${isSession}`)\n\n        // 词库校验 ================================================\n        if (pageType === false || !I18N[CONFIG.LANG]?.[pageType]) {\n            console.warn(`[i18n] 页面类型未匹配或词库缺失: ${pageType}`);\n            return false; // 明确返回 false 表示异常\n        }\n\n        return pageType;\n    }\n\n    /**\n     * transTitle 函数：翻译页面标题\n     */\n    function transTitle() {\n        const text = document.title; // 获取标题文本内容\n        let translatedText = pageConfig.titleStaticDict[text] || '';\n        if (!translatedText) {\n            for (const [pattern, replacement] of pageConfig.titleRegexpRules) {\n                translatedText = text.replace(pattern, replacement);\n                if (translatedText !== text) break;\n            }\n        }\n        if (translatedText) {\n            document.title = translatedText;\n        }\n    }\n\n    /**\n     * transTimeElement 函数：翻译时间元素文本内容。\n     * @param {Element} el - 需要翻译的元素。\n     */\n    function transTimeElement(el) {\n        const text = el.childNodes.length > 0 ? el.lastChild.textContent : el.textContent;\n        const translatedText = text.replace(/^on/, \"\");\n        if (translatedText !== text) {\n            el.textContent = translatedText;\n        }\n    }\n\n    /**\n     * transElement 函数：翻译指定元素的文本内容或属性。\n     * @param {Element|DOMStringMap} el - 需要翻译的元素或元素的数据集 (node.dataset)。\n     * @param {string} field - 需要翻译的属性名称或文本内容字段。\n     */\n    function transElement(el, field) {\n        const text = el[field]; // 获取需要翻译的文本\n        if (!text) return false; // 当 text 为空时，退出函数\n\n        const translatedText = transText(text); // 翻译后的文本\n        if (translatedText) {\n            el[field] = translatedText; // 替换翻译后的内容\n        }\n    }\n\n    /**\n     * transText 函数：翻译文本内容。\n     * @param {string} text - 需要翻译的文本内容。\n     * @returns {string|boolean} 翻译后的文本内容，如果没有找到对应的翻译，那么返回 false。\n     */\n    function transText(text) {\n        // 判断是否需要跳过翻译\n        //  1. 检查内容是否为空或者仅包含空白字符或数字。\n        //  2. 检查内容是否仅包含中文字符。\n        //  3. 检查内容是否不包含英文字母和符号。\n        const shouldSkip = text => /^[\\s0-9]*$/.test(text) || /^[\\u4e00-\\u9fa5]+$/.test(text) || !/[a-zA-Z,.]/.test(text);\n        if (shouldSkip(text)) return false;\n\n        // 清理文本内容\n        const trimmedText = text.trim(); // 去除首尾空格\n        const cleanedText = trimmedText.replace(/\\xa0|[\\s]+/g, ' '); // 去除多余空白字符（包括 &nbsp; 空格 换行符）\n\n        // 尝试获取翻译结果\n        const translatedText = fetchTranslatedText(cleanedText);\n\n        // 如果找到翻译并且不与清理后的文本相同，则返回替换后的结果\n        if (translatedText && translatedText !== cleanedText) {\n            return text.replace(trimmedText, translatedText); // 替换原字符，保留首尾空白部分\n        }\n\n        return false;\n    }\n\n    /**\n     * fetchTranslatedText 函数：从特定页面的词库中获得翻译文本内容。\n     * @param {string} text - 需要翻译的文本内容。\n     * @returns {string|boolean} 翻译后的文本内容，如果没有找到对应的翻译，那么返回 false。\n     */\n    function fetchTranslatedText(text) {\n\n        // 静态翻译\n        let translatedText = pageConfig.staticDict[text]; // 默认翻译 公共部分\n\n        if (typeof translatedText === 'string') return translatedText;\n\n        // 正则翻译\n        if (FeatureSet.enable_RegExp) {\n            for (const [pattern, replacement] of pageConfig.regexpRules) {\n                translatedText = text.replace(pattern, replacement);\n                if (translatedText !== text) return translatedText;\n            }\n        }\n\n        return false; // 没有翻译条目\n    }\n\n    /**\n     * transDesc 函数：为指定的元素添加一个翻译按钮，并为该按钮添加点击事件。\n     * @param {string} selector - CSS选择器，用于选择需要添加翻译按钮的元素。\n     */\n    function transDesc(selector) {\n        // 使用 CSS 选择器选择元素\n        const element = document.querySelector(selector);\n\n        // 如果元素不存在 或者 translate-me 元素已存在，那么直接返回\n        if (!element || element.nextElementSibling?.id === 'translate-me') return;\n\n        // 在元素后面插入一个翻译按钮\n        const button = document.createElement('div');\n        button.id = 'translate-me';\n        button.style.cssText = 'color: #1b95e0; font-size: small; cursor: pointer;';\n        button.textContent = '翻译';\n        element.after(button);\n\n        // 为翻译按钮添加点击事件\n        button.addEventListener('click', async() => {\n            if (button.disabled) return;\n            button.disabled = true;\n            try {\n                const descText = element.textContent.trim();\n                if (!descText) return;\n\n                // 执行翻译\n                const translatedText = await requestRemoteTranslation(descText);\n\n                // 安全创建结果元素\n                const { name, url } = CONFIG.TRANS_ENGINES[CONFIG.transEngine];\n                const resultContainer = document.createElement('div');\n                resultContainer.innerHTML = `\n                    <span style='font-size: small'>\n                        由 <a target='_blank' style='color:#1b95e0;' href=${url}>${name}</a> 翻译👇\n                    </span>\n                    <br/>\n                `;\n                // 安全插入文本内容\n                const textNode = document.createTextNode(translatedText);\n                resultContainer.appendChild(textNode);\n\n                button.remove();\n                element.after(resultContainer);\n            } finally {\n                button.disabled = false;\n            }\n        });\n    }\n\n    /**\n     * getNestedProperty 函数：获取嵌套属性的安全函数\n     * @param {Object} obj - 需要查询的对象\n     * @param {string} path - 属性路径，例如 'biz[0].sectionResult[0].dst'\n     * @returns {*} - 返回嵌套属性的值\n     */\n    function getNestedProperty(obj, path) {\n        return path.split('.').reduce((acc, part) => {\n            const match = part.match(/(\\w+)(?:\\[(\\d+)\\])?/);\n            if (!match) return undefined;\n            const key = match[1];\n            const index = match[2];\n            if (acc && acc[key] !== undefined) {\n                return index !== undefined ? acc[key][index] : acc[key];\n            }\n            return undefined;\n        }, obj);\n    }\n\n    /**\n     * requestRemoteTranslation 函数：将指定的文本发送到设定的翻译引擎进行翻译。\n     * @param {string} text - 需要翻译的文本。\n     */\n    async function requestRemoteTranslation(text) {\n        return new Promise((resolve) => {\n            const { url_api, method, headers, getRequestData, responseIdentifier } = CONFIG.TRANS_ENGINES[CONFIG.transEngine];\n            // 构建请求数据\n            const requestData = getRequestData(text);\n\n            // 使用 GM_xmlhttpRequest 函数发送 HTTP 请求\n            GM_xmlhttpRequest({\n                method: method,\n                url: url_api, // 请求的 URL\n                headers: headers,\n                data: method === 'POST' ? JSON.stringify(requestData) : null,\n                params: method === 'GET' ? requestData : null, // For GET requests\n                onload: (res) => {\n                    try {\n                        const result = JSON.parse(res.responseText);\n                        console.log(result);\n                        const translatedText = getNestedProperty(result, responseIdentifier) || '翻译失败';\n                        resolve(translatedText);\n                    } catch (err) {\n                        console.error('翻译失败:', err);\n                        resolve(`翻译失败（${err.type}）`);\n                    }\n                },\n                onerror: (err) => {\n                    console.error('翻译请求失败:', err);\n                    resolve(`翻译失败（${err.type}）`);\n                }\n            });\n        });\n    }\n\n    /**\n     * transBySelector 函数：通过 CSS 选择器找到页面上的元素，并将其文本内容替换为预定义的翻译。\n     */\n    function transBySelector() {\n        // 遍历每个翻译规则\n        pageConfig.tranSelectors?.forEach(([selector, translatedText]) => {\n            // 使用 CSS 选择器找到对应的元素\n            const element = document.querySelector(selector);\n            // 如果找到了元素，那么将其文本内容替换为翻译后的文本\n            if (element) {\n                element.textContent = translatedText;\n            }\n        })\n    }\n\n    /**\n     * registerMenuCommand 函数：注册菜单。\n     */\n    function registerMenuCommand() {\n        const createMenuCommand = (config) => {\n            const { label, key, callback } = config;\n            let menuId;\n\n            const getMenuLabel = (label, isEnabled) =>\n                `${isEnabled ? \"禁用\" : \"启用\"} ${label}`;\n\n            const toggle = () => {\n                const newFeatureState = !FeatureSet[key];\n                GM_setValue(key, newFeatureState);\n                FeatureSet[key] = newFeatureState;\n                GM_notification(`${label}已${newFeatureState ? '启用' : '禁用'}`);\n\n                // 调用回调函数\n                if (callback) callback(newFeatureState);\n\n                // 更新菜单命令的标签\n                GM_unregisterMenuCommand(menuId);\n                menuId = GM_registerMenuCommand(\n                    getMenuLabel(label, newFeatureState),\n                    toggle\n                );\n            };\n\n            // 初始注册菜单命令\n            menuId = GM_registerMenuCommand(\n                getMenuLabel(label, FeatureSet[key]),\n                toggle\n            );\n        };\n\n        const menuConfigs = [\n            {\n                label: \"正则功能\",\n                key: \"enable_RegExp\",\n                callback: newFeatureState => {\n                    if (newFeatureState) traverseNode(document.body);\n                }\n            },\n            {\n                label: \"描述翻译\",\n                key: \"enable_transDesc\",\n                callback: newFeatureState => {\n                    if (newFeatureState && CONFIG.DESC_SELECTORS[pageConfig.currentPageType]) {\n                        transDesc(CONFIG.DESC_SELECTORS[pageConfig.currentPageType]);\n                    } else {\n                        document.getElementById('translate-me')?.remove();\n                    }\n                }\n            }\n        ];\n\n        // 注册所有菜单项\n        menuConfigs.forEach(config => createMenuCommand(config));\n    };\n\n    /**\n     * init 函数：初始化翻译功能。\n     */\n    function init() {\n        if (typeof I18N === 'undefined') {\n            alert('GitHub 汉化插件：词库文件 locals.js 未加载，脚本无法运行！');\n        // 也可以选择 return 或 throw new Error\n        } else {\n            console.log(`词库文件 locals.js 已加载`);\n        }\n        // 设置中文环境\n        document.documentElement.lang = CONFIG.LANG;\n\n        // 监测 HTML Lang 值, 设置中文环境\n        new MutationObserver(() => {\n            if (document.documentElement.lang === \"en\") {\n                document.documentElement.lang = CONFIG.LANG;\n            }\n        }).observe(document.documentElement, { attributeFilter: ['lang'] });\n\n        // 监听 Turbo 完成事件（延迟翻译）\n        document.addEventListener('turbo:load', () => {\n            if (!pageConfig.currentPageType) return;\n\n            transTitle(); // 翻译页面标题\n            transBySelector();\n\n            if (FeatureSet.enable_transDesc && CONFIG.DESC_SELECTORS[pageConfig.currentPageType]) {\n                transDesc(CONFIG.DESC_SELECTORS[pageConfig.currentPageType]);\n            }\n        });\n\n        // 初始化菜单\n        registerMenuCommand();\n\n\n        // 首次页面翻译\n        window.addEventListener('DOMContentLoaded', () => {\n            // 获取当前页面的翻译规则\n            updatePageConfig('首次载入');\n            if (pageConfig.currentPageType) traverseNode(document.body);\n\n            // 监视页面变化\n            watchUpdate();\n        });\n    }\n\n})(window, document);\n"
  },
  {
    "path": "main_zh-TW.user.js",
    "content": "// ==UserScript==\n// @name         GitHub 中文化插件（繁體版）\n// @namespace    https://github.com/maboloshi/github-chinese\n// @description  中文化 GitHub 界面的部分菜單及內容。原作者為樓教主(http://www.52cik.com/)。\n// @copyright    2021, 沙漠之子 (https://maboloshi.github.io/Blog)\n// @icon         https://github.githubassets.com/pinned-octocat.svg\n// @version      1.9.3-2026-03-06\n// @author       沙漠之子\n// @license      GPL-3.0\n// @match        https://github.com/*\n// @match        https://skills.github.com/*\n// @match        https://gist.github.com/*\n// @match        https://education.github.com/*\n// @match        https://www.githubstatus.com/*\n// @require      https://raw.githubusercontent.com/maboloshi/github-chinese/gh-pages/locals_zh-TW.js?v1.9.3-2026-03-06\n// @run-at       document-start\n// @grant        GM_xmlhttpRequest\n// @grant        GM_getValue\n// @grant        GM_setValue\n// @grant        GM_registerMenuCommand\n// @grant        GM_unregisterMenuCommand\n// @grant        GM_notification\n// @connect      fanyi.iflyrec.com\n// @supportURL   https://github.com/maboloshi/github-chinese/issues\n// ==/UserScript==\n\n(function (window, document, undefined) {\n    'use strict';\n\n    const lang = 'zh-TW'; // 設置默認語言\n    let enable_RegExp = GM_getValue(\"enable_RegExp\", 1),\n        page = false,\n        cachedPage = null,\n        characterData = null,\n        ignoreMutationSelectors = [],\n        ignoreSelectors = [],\n        tranSelectors = [],\n        regexpRules = [];\n\n    function updateConfig(page) {\n        if (cachedPage !== page && page) {\n            cachedPage = page;\n\n            const { characterDataPage, ignoreMutationSelectorPage, ignoreSelectorPage } = I18N.conf;\n            characterData = characterDataPage.includes(page);\n            // 忽略突變元素選擇器\n            ignoreMutationSelectors = ignoreMutationSelectorPage['*'].concat(ignoreMutationSelectorPage[page] || []);\n            // 忽略元素選擇器\n            ignoreSelectors = ignoreSelectorPage['*'].concat(ignoreSelectorPage[page] || []);\n            // 通過 CSS 選擇器翻譯的規則\n            tranSelectors = (I18N[lang][page]?.selector || []).concat(I18N[lang]['public'].selector || []);\n            // 正則詞條\n            regexpRules = (I18N[lang][page].regexp || []).concat(I18N[lang]['public'].regexp || []);\n        }\n    }\n\n    function initPage() {\n        const page = getPage();\n        updateConfig(page);\n        return page;\n    }\n\n    /**\n     * watchUpdate 函數：監視頁面變化，根據變化的節點進行翻譯\n     */\n    function watchUpdate() {\n        // 檢測瀏覽器是否支持 MutationObserver\n        const MutationObserver =\n            window.MutationObserver ||\n            window.WebKitMutationObserver ||\n            window.MozMutationObserver;\n\n        // 緩存當前頁面的 URL\n        let previousURL = location.href;\n\n        // 監聽 document.body 下 DOM 變化，用於處理節點變化\n        new MutationObserver(mutations => {\n            const currentURL = location.href;\n\n            // 如果頁面的 URL 發生變化\n            if (currentURL !== previousURL) {\n                previousURL = currentURL;\n                page = initPage();\n                console.log(`DOM變化觸發: 鏈接變化 page= ${page}`);\n            }\n\n            if (page) {\n\n                // 使用 mutations.flatMap 進行篩選突變:\n                //   1. 針對`節點增加`突變，後期叠代翻譯的對象調整為`addedNodes`中記錄的新增節點，而不是`target`，此舉大幅減少重復叠代翻譯\n                //   2. 對於其它`屬性`和特定頁面`文本節點`突變，仍舊直接處理`target`\n                //   3. 使用`nodes.filter()`篩選丟棄特定頁面`特定忽略元素`內突變的節點\n                const filteredMutations = mutations.flatMap(({ target, addedNodes, type }) => {\n                    let nodes = [];\n                    if (type === 'childList' && addedNodes.length > 0) {\n                        nodes = Array.from(addedNodes); // `節點增加`，將`addedNodes`轉換為數組\n                    } else if (type === 'attributes' || (characterData && type === 'characterData')) {\n                        nodes = [target]; // 否則，僅處理目標節點\n                    }\n\n                    // 對每個節點進行篩選，忽略特定選擇器\n                    return nodes.filter(node =>\n                        !ignoreMutationSelectors.some(selector => node.parentElement?.closest(selector))\n                    );\n                });\n\n                // 處理每個變化\n                filteredMutations.forEach(node => traverseNode(node));\n            }\n        }).observe(document.body, {\n            characterData: true,\n            subtree: true,\n            childList: true,\n            attributeFilter: ['value', 'placeholder', 'aria-label', 'data-confirm', 'data-visible-text'], // 僅觀察特定屬性變化\n        });\n    }\n\n    /**\n     * traverseNode 函數：遍歷指定的節點，並對節點進行翻譯。\n     * @param {Node} node - 需要遍歷的節點。\n     */\n    function traverseNode(node) {\n        // 跳過忽略\n        const skipNode = node => ignoreSelectors.some(selector => node.matches?.(selector));\n        if (skipNode(node)) return;\n\n        if (node.nodeType === Node.ELEMENT_NODE) { // 元素節點處理\n\n            // 處理不同標簽的元素屬性翻譯\n            switch (node.tagName) {\n                case \"RELATIVE-TIME\": // 翻譯時間元素\n                    transTimeElement(node.shadowRoot);\n                    watchTimeElement(node.shadowRoot);\n                    return;\n\n                case \"INPUT\":\n                case \"TEXTAREA\": // 輸入框 按鈕 文本域\n                    if (['button', 'submit', 'reset'].includes(node.type)) {\n                        transElement(node.dataset, 'confirm'); // 翻譯 瀏覽器 提示對話框\n                        transElement(node, 'value');\n                    } else {\n                        transElement(node, 'placeholder');\n                    }\n                    break;\n\n                case \"BUTTON\":\n                    if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel'); // 翻譯 瀏覽器 提示對話框\n                    transElement(node, 'title'); // 翻譯 瀏覽器 提示對話框\n                    transElement(node.dataset, 'confirm'); // 翻譯 瀏覽器 提示對話框 ok\n                    transElement(node.dataset, 'confirmText'); // 翻譯 瀏覽器 提示對話框 ok\n                    transElement(node.dataset, 'confirmCancelText'); // 取消按鈕 提醒\n                    transElement(node, 'cancelConfirmText'); // 取消按鈕 提醒\n                    transElement(node.dataset, 'disableWith'); // 按鈕等待提示\n                    break;\n\n                case \"OPTGROUP\":\n                    transElement(node, 'label'); // 翻譯 <optgroup> 的 label 屬性\n                    break;\n\n                case \"A\":\n                    transElement(node, 'title'); // title 屬性\n                    transElement(node, 'ariaLabel'); // aria-label 屬性\n                    break;\n\n                case \"SPAN\":\n                    transElement(node, 'title'); // title 屬性\n                    if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel');\n                    transElement(node.dataset, 'visibleText'); // 按鈕提示\n                    break;\n\n                default:\n                    // 僅當 元素存在'tooltipped'樣式 aria-label 才起效果\n                    if (/tooltipped/.test(node.className)) transElement(node, 'ariaLabel'); // 帶提示的元素，類似 tooltip 效果的\n            }\n\n            node.childNodes.forEach(child => traverseNode(child)); // 遍歷子節點\n\n        } else if (node.nodeType === Node.TEXT_NODE && node.length <= 500) { // 文本節點翻譯\n            transElement(node, 'data');\n        }\n    }\n\n    /**\n     * getPage 函數：獲取頁面的類型。\n     * @param {URL object} URL - 需要分析的 URL。\n     * @returns {string|boolean} 頁面的類型，如果無法確定類型，那麽返回 false。\n     */\n    function getPage(url = window.location) {\n        // 站點映射\n        const siteMapping = {\n            'gist.github.com': 'gist',\n            'www.githubstatus.com': 'status',\n            'skills.github.com': 'skills',\n            'education.github.com': 'education',\n        };\n        const site = siteMapping[url.hostname] || 'github';\n        const pathname = url.pathname;\n\n        // 是否登錄\n        const isLogin = document.body.classList.contains(\"logged-in\");\n        // 獲取 analytics-location\n        const analyticsLocation = document.head.querySelector('meta[name=\"analytics-location\"]')?.content || '';\n\n        // 判斷頁面類型\n        const isOrganization = /\\/<org-login>/.test(analyticsLocation) || /^\\/(?:orgs|organizations)/.test(pathname);\n        const isRepository = /\\/<user-name>\\/<repo-name>/.test(analyticsLocation);\n        const isProfile = document.body.classList.contains(\"page-profile\") || analyticsLocation === '/<user-name>';\n        const isSession = document.body.classList.contains(\"session-authentication\");\n\n        const { rePagePathRepo, rePagePathOrg, rePagePath } = I18N.conf;\n        let t, page = false;\n\n        if (isSession) {\n            page = 'session-authentication';\n        } else if (site === 'gist' || site === 'status' || site === 'skills' || site === 'education') {\n            page = site;\n        } else if (isProfile) {\n            t = url.search.match(/tab=([^&]+)/);\n            page = t ? 'page-profile/' + t[1] : pathname.includes('/stars') ? 'page-profile/stars' : 'page-profile';\n        } else if (pathname === '/' && site === 'github') {\n            page = isLogin ? 'page-dashboard' : 'homepage';\n        } else if (isRepository) {\n            t = pathname.match(rePagePathRepo);\n            page = t ? 'repository/' + t[1] : 'repository';\n        } else if (isOrganization) {\n            t = pathname.match(rePagePathOrg);\n            page = t ? 'orgs/' + (t[1] || t.slice(-1)[0]) : 'orgs';\n        } else {\n            t = pathname.match(rePagePath);\n            page = t ? (t[1] || t.slice(-1)[0]) : false;\n        }\n\n        if (!page || !I18N[lang][page]) {\n            console.log(`請註意對應 page ${page} 詞庫節點不存在`);\n            page = false;\n        }\n        return page;\n    }\n\n    /**\n     * transTitle 函數：翻譯頁面標題\n     */\n    function transTitle() {\n        const text = document.title; // 標題文本內容\n        let translatedText = I18N[lang]['title']['static'][text] || '';\n        if (!translatedText) {\n            const res = I18N[lang]['title'].regexp || [];\n            for (let [a, b] of res) {\n                translatedText = text.replace(a, b);\n                if (translatedText !== text) break;\n            }\n        }\n        document.title = translatedText;\n    }\n\n    /**\n     * transTimeElement 函數：翻譯時間元素文本內容。\n     * @param {Element} el - 需要翻譯的元素。\n     */\n    function transTimeElement(el) {\n        const text = el.childNodes.length > 0 ? el.lastChild.textContent : el.textContent;\n        const translatedText = text.replace(/^on/, \"\");\n        if (translatedText !== text) {\n            el.textContent = translatedText;\n        }\n    }\n\n    /**\n     * watchTimeElement 函數：監視時間元素變化, 觸發和調用時間元素翻譯\n     * @param {Element} el - 需要監視的元素。\n     */\n    function watchTimeElement(el) {\n        const MutationObserver =\n            window.MutationObserver ||\n            window.WebKitMutationObserver ||\n            window.MozMutationObserver;\n\n        new MutationObserver(mutations => {\n            transTimeElement(mutations[0].addedNodes[0]);\n        }).observe(el, {\n            childList: true\n        });\n    }\n\n    /**\n     * transElement 函數：翻譯指定元素的文本內容或屬性。\n     * @param {Element|DOMStringMap} el - 需要翻譯的元素或元素的數據集 (node.dataset)。\n     * @param {string} field - 需要翻譯的屬性名稱或文本內容字段。\n     */\n    function transElement(el, field) {\n        const text = el[field]; // 獲取需要翻譯的文本\n        if (!text) return false; // 當 text 為空時，退出函數\n\n        const translatedText = transText(text); // 翻譯後的文本\n        if (translatedText) {\n            el[field] = translatedText; // 替換翻譯後的內容\n        }\n    }\n\n    /**\n     * transText 函數：翻譯文本內容。\n     * @param {string} text - 需要翻譯的文本內容。\n     * @returns {string|boolean} 翻譯後的文本內容，如果沒有找到對應的翻譯，那麽返回 false。\n     */\n    function transText(text) {\n        // 判斷是否需要跳過翻譯\n        //  1. 檢查內容是否為空或者僅包含空白字符或數字。\n        //  2. 檢查內容是否僅包含中文字符。\n        //  3. 檢查內容是否不包含英文字母和符號。\n        const shouldSkip = text => /^[\\s0-9]*$/.test(text) || /^[\\u4e00-\\u9fa5]+$/.test(text) || !/[a-zA-Z,.]/.test(text);\n        if (shouldSkip(text)) return false;\n\n        // 清理文本內容\n        const trimmedText = text.trim(); // 去除首尾空格\n        const cleanedText = trimmedText.replace(/\\xa0|[\\s]+/g, ' '); // 去除多余空白字符（包括 &nbsp; 空格 換行符）\n\n        // 嘗試獲取翻譯結果\n        const translatedText = fetchTranslatedText(cleanedText);\n\n        // 如果找到翻譯並且不與清理後的文本相同，則返回替換後的結果\n        if (translatedText && translatedText !== cleanedText) {\n            return text.replace(trimmedText, translatedText); // 替換原字符，保留首尾空白部分\n        }\n\n        return false;\n    }\n\n    /**\n     * fetchTranslatedText 函數：從特定頁面的詞庫中獲得翻譯文本內容。\n     * @param {string} text - 需要翻譯的文本內容。\n     * @returns {string|boolean} 翻譯後的文本內容，如果沒有找到對應的翻譯，那麽返回 false。\n     */\n    function fetchTranslatedText(text) {\n\n        // 靜態翻譯\n        let translatedText = I18N[lang][page]['static'][text] || I18N[lang]['public']['static'][text]; // 默認翻譯 公共部分\n\n        if (typeof translatedText === 'string') {\n            return translatedText;\n        }\n\n        // 正則翻譯\n        if (enable_RegExp) {\n            for (let [a, b] of regexpRules) {\n                translatedText = text.replace(a, b);\n                if (translatedText !== text) {\n                    return translatedText;\n                }\n            }\n        }\n\n        return false; // 沒有翻譯條目\n    }\n\n    /**\n     * transDesc 函數：為指定的元素添加一個翻譯按鈕，並為該按鈕添加點擊事件。\n     * @param {string} selector - CSS選擇器，用於選擇需要添加翻譯按鈕的元素。\n     */\n    function transDesc(selector) {\n        // 使用 CSS 選擇器選擇元素\n        const element = document.querySelector(selector);\n\n        // 如果元素不存在 或者 translate-me 元素已存在，那麽直接返回\n        if (!element || document.getElementById('translate-me')) return false;\n\n        // 在元素後面插入一個翻譯按鈕\n        const buttonHTML = `<div id='translate-me' style='color: rgb(27, 149, 224); font-size: small; cursor: pointer'>翻譯</div>`;\n        element.insertAdjacentHTML('afterend', buttonHTML);\n        const button = element.nextSibling;\n\n        // 為翻譯按鈕添加點擊事件\n        button.addEventListener('click', () => {\n            // 獲取元素的文本內容\n            const descText = element.textContent.trim();\n\n            // 如果文本內容為空，那麽直接返回\n            if (!descText) return false;\n\n            // 調用 transDescText 函數進行翻譯\n            transDescText(descText, translatedText => {\n                // 翻譯完成後，隱藏翻譯按鈕，並在元素後面插入翻譯結果\n                button.style.display = \"none\";\n                const translatedHTML = `<span style='font-size: small'>由 <a target='_blank' style='color:rgb(27, 149, 224);' href='https://fanyi.iflyrec.com/text-translate'>訊飛聽見</a> 翻譯👇</span><br/>${translatedText}`;\n                element.insertAdjacentHTML('afterend', translatedHTML);\n            });\n        });\n    }\n\n    /**\n     * transDescText 函數：將指定的文本發送到訊飛的翻譯服務進行翻譯。\n     * @param {string} text - 需要翻譯的文本。\n     * @param {function} callback - 翻譯完成後的回調函數，該函數接受一個參數，即翻譯後的文本。\n     */\n    function transDescText(text, callback) {\n        // 使用 GM_xmlhttpRequest 函數發送 HTTP 請求\n        GM_xmlhttpRequest({\n            method: \"POST\", // 請求方法為 POST\n            url: \"https://fanyi.iflyrec.com/TJHZTranslationService/v2/textAutoTranslation\", // 請求的 URL\n            headers: { // 請求頭\n                'Content-Type': 'application/json',\n                'Origin': 'https://fanyi.iflyrec.com',\n            },\n            data: JSON.stringify({\n                \"from\": 2,\n                \"to\": 1,\n                \"type\": 1,\n                \"contents\": [{\n                    \"text\": text\n                }]\n            }), // 請求的數據\n            responseType: \"json\", // 響應的數據類型為 JSON\n            onload: (res) => {\n                try {\n                    const { status, response } = res;\n                    const translatedText = (status === 200) ? response.biz[0].sectionResult[0].dst : \"翻譯失敗\";\n                    callback(translatedText);\n                } catch (error) {\n                    console.error('翻譯失敗', error);\n                    callback(\"翻譯失敗\");\n                }\n            },\n            onerror: (error) => {\n                console.error('網絡請求失敗', error);\n                callback(\"網絡請求失敗\");\n            }\n        });\n    }\n\n    /**\n     * transBySelector 函數：通過 CSS 選擇器找到頁面上的元素，並將其文本內容替換為預定義的翻譯。\n     */\n    function transBySelector() {\n        if (tranSelectors.length > 0) {\n            // 遍歷每個翻譯規則\n            for (let [selector, translatedText] of tranSelectors) {\n                // 使用 CSS 選擇器找到對應的元素\n                const element = document.querySelector(selector);\n                // 如果找到了元素，那麽將其文本內容替換為翻譯後的文本\n                if (element) {\n                    element.textContent = translatedText;\n                }\n            }\n        }\n    }\n\n    /**\n     * registerMenuCommand 函數：註冊菜單。\n     */\n    function registerMenuCommand() {\n        const toggleRegExp = () => {\n            enable_RegExp = !enable_RegExp;\n            GM_setValue(\"enable_RegExp\", enable_RegExp);\n            GM_notification(`已${enable_RegExp ? '開啟' : '關閉'}正則功能`);\n            if (enable_RegExp) {\n                location.reload();\n            }\n            GM_unregisterMenuCommand(id);\n            id = GM_registerMenuCommand(`${enable_RegExp ? '關閉' : '開啟'}正則功能`, toggleRegExp);\n        };\n\n        let id = GM_registerMenuCommand(`${enable_RegExp ? '關閉' : '開啟'}正則功能`, toggleRegExp);\n    }\n\n    /**\n     * init 函數：初始化翻譯功能。\n     */\n    function init() {\n        // 獲取當前頁面的翻譯規則\n        page = initPage();\n        console.log(`開始page= ${page}`);\n\n        if (page) traverseNode(document.body);\n\n        // 監視頁面變化\n        watchUpdate();\n    }\n\n    // 設置中文環境\n    document.documentElement.lang = lang;\n\n    // 監測 HTML Lang 值, 設置中文環境\n    new MutationObserver(mutations => {\n        if (document.documentElement.lang === \"en\") {\n            document.documentElement.lang = lang;\n        }\n    }).observe(document.documentElement, {\n        attributeFilter: ['lang']\n    });\n\n    // 監聽 Turbo 完成事件\n    document.addEventListener('turbo:load', () => {\n        if (page) {\n            transTitle(); // 翻譯頁面標題\n            transBySelector();\n            if (page === \"repository\") { //倉庫簡介翻譯\n                transDesc(\".f4.my-3\");\n            } else if (page === \"gist\") { // Gist 簡介翻譯\n                transDesc(\".gist-content [itemprop='about']\");\n            }\n        }\n    });\n\n    // 初始化菜單\n    registerMenuCommand();\n\n    // 在頁面初始加載完成時執行\n    window.addEventListener('DOMContentLoaded', init);\n\n})(window, document);\n"
  },
  {
    "path": "script/ci_commit_with_signature.sh",
    "content": "#!/bin/bash\n\nwhile getopts \":T:R:B:P:F:D:h:b:\" opt; do\n    case $opt in\n        T)\n            # 通过 GitHub GraphQL API 进行身份验证的 TOKEN\n            # TOKEN for authentication via the GitHub GraphQL API\n            TOKEN=$OPTARG\n            ;;\n        R)\n            # GitHub GraphQL API 请求带有所有者的远程仓库名称\n            # Remote repository name with owner requested by the GitHub GraphQL API\n            repoNwo=$OPTARG\n            ;;\n        B)\n            # GitHub GraphQL API 请求的远程仓库目标分支名称\n            # The name of the target branch of the remote repository requested by the GitHub GraphQL API\n            branch=$OPTARG\n            ;;\n        P)\n            # 远程仓库目标分支上最后一次提交的 SHA。\n            # 它也是即将创建的提交的父提交的 SHA。\n            # The SHA of the last commit on the target branch of the remote repository.\n            # It is also the SHA of the parent commit of the commit about to be created.\n            parentSHA=$OPTARG\n            ;;\n        F)\n            # 通过 GitHub GraphQL API 提交, 新增或修改的文件的路径（相对于存储库根）的数组\n            # Array of paths (relative to the repository root) to new or modified files for commits via the GitHub GraphQL API\n            IFS=', ' read -ra changed_files <<< \"${OPTARG:-}\"\n            # 使用逗号和或空格作为分隔符，将参数分割为数组，默认值为空字符串\n            # Split parameters into arrays using commas and or spaces as separators, defaults to empty string\n            ;;\n        D)\n            # 通过 GitHub GraphQL API 提交, 删除的文件的路径（相对于存储库根）的数组\n            # Array of paths (relative to the repository root) to deleted files for commits via the GitHub GraphQL API\n            IFS=', ' read -ra deleted_files <<< \"${OPTARG:-}\"\n            ;;\n        h)\n            # 通过 GitHub GraphQL API 提交的提交消息标题行\n            # Commit message head line committed via GitHub GraphQL API\n            message_headline=$OPTARG\n            ;;\n        b)\n            # 通过 GitHub GraphQL API 提交的提交消息正文\n            # Commit message body committed via GitHub GraphQL API\n            message_body=$OPTARG\n            ;;\n        \\?)\n           echo \"无效的选项: -$OPTARG\" >&2\n           exit 1\n           ;;\n    esac\ndone\n\nif [[ -z $TOKEN ]]; then\n  TOKEN=$GITHUB_TOKEN\nfi\n\nif [[ -z $GITHUB_API_URL ]]; then\n  GITHUB_API_URL=\"https://api.github.com\"\nfi\n\nfunction set_dco_signature {\n    if [[ $TOKEN == ghp_* ]]; then\n        # https://github.blog/2021-04-05-behind-githubs-new-authentication-token-formats/\n        # 'ghp_'开头的是 GitHub 个人访问令牌\n        # What starts with 'ghp_' is the GitHub personal access token\n\n        res=$(curl -s -H \"Authorization: token $TOKEN\" \"$GITHUB_API_URL/user\" 2>/dev/null || echo '{\"login\":\"gh-actions\",\"id\":0}')\n    else\n        bot=\"${APP_SLUG:-github-actions}[bot]\"\n        res=$(curl -sg -H \"Authorization: token $TOKEN\" \"$GITHUB_API_URL/users/${bot}\" 2>/dev/null || echo '{\"login\":\"gh-actions\",\"id\":0}')\n    fi\n\n    login=$(jq -r .login <<< \"$res\")\n    name=$(jq -r '.name // empty' <<< \"$res\")\n    id=$(jq -r .id <<< \"$res\")\n    echo \"Signed-off-by: ${name:-$login} <$id+$login@users.noreply.github.com>\"\n}\n\nmessage_body=\"${message_body:+$message_body\\n}$(set_dco_signature)\"\n\n# 处理文件修改并构建 fileChanges 部分中 additions 的 JSON 字符串\n# Process the file changes and build the JSON string of `additions` in the `fileChanges` section\nchanged_files_json=\"\"\nfor file_path in \"${changed_files[@]}\"; do\n    changed_files_json+=\"{\n            \\\"path\\\": \\\"$file_path\\\",\n            \\\"contents\\\": \\\"$(base64 < \"$file_path\")\\\"\n          },\n          \"\ndone\nchanged_files_json=\"${changed_files_json%,\n          }\"  # 移除最后一个逗号及换行符和空格\n              # Remove last comma and line breaks and spaces\n\n# 处理文件删除并构建 fileChanges 部分中 deletions 的 JSON 字符串\n# Process the file deletions and build the JSON string of `deletions` in the `fileChanges` section\ndeleted_files_json=\"\"\nfor file_path in \"${deleted_files[@]}\"; do\n    deleted_files_json+=\"{\n            \\\"path\\\": \\\"$file_path\\\",\n          },\n          \"\ndone\ndeleted_files_json=\"${deleted_files_json%,\n          }\"  # 移除最后一个逗号及换行符和空格\n              # Remove last comma and line breaks and spaces\n\n# 构建 GraphQL 请求的 JSON 字符串\n# Construct JSON string for GraphQL request\ngraphql_request='{\n  \"query\": \"mutation ($input: CreateCommitOnBranchInput!) {\n    createCommitOnBranch(input: $input) {\n      commit {\n        oid,\n        url\n      }\n    }\n  }\",\n  \"variables\": {\n    \"input\": {\n      \"branch\": {\n        \"repositoryNameWithOwner\": \"'\"$repoNwo\"'\",\n        \"branchName\": \"'\"$branch\"'\"\n      },\n      \"message\": {\n        \"headline\": \"'\"$message_headline\"'\",\n        \"body\": \"'\"$message_body\"'\"\n      },\n      \"fileChanges\": {\n        \"additions\": [\n          '\"$changed_files_json\"'\n        ],\n        \"deletions\": [\n          '\"$deleted_files_json\"'\n        ]\n      },\n      \"expectedHeadOid\": \"'\"$parentSHA\"'\"\n    }\n  }\n}'\n\n# 将请求数据写入 request.json 文件\n# Write the request data to the `request.json` file\necho \"$graphql_request\" > request.json\n\n# 发送 GraphQL 请求并解析结果\n# Send GraphQL requests and parse the results\nif [[ -z $GITHUB_GRAPHQL_URL ]]; then\n  GITHUB_GRAPHQL_URL=\"https://api.github.com/graphql\"\nfi\n\nresponse=$(curl \"$GITHUB_GRAPHQL_URL\" --silent \\\n  --write-out '%{stderr}HTTP status: %{response_code}\\n\\n' \\\n  -H \"Authorization: bearer $TOKEN\" \\\n  --data @request.json)\n\n# Print the results\njq -r '\n    if .data?.createCommitOnBranch?.commit?.url then\n        \"✅ 请求成功，SHA: \\(.data.createCommitOnBranch.commit.oid)\\nURL: \\(.data.createCommitOnBranch.commit.url)\"\n    else\n        if .errors then\n            \"❌ 错误列表:\\n\" + ([.errors[].message] | join(\"\\n- \"))\n        else\n            \"⚠️ 未知响应格式: \\(.)\"\n        end\n    end' <<< \"$response\"\n"
  },
  {
    "path": "script/rd.py",
    "content": "import re\n\ndef remove_duplicates(file_path):\n    # 读取文件内容\n    with open(file_path, 'r', encoding='utf-8') as file:\n        content = file.read()\n\n    # 匹配所有 \"static\" 部分\n    static_matches = re.finditer(r'\"static\": \\{([\\s\\S]*?)\\}', content)\n    if not static_matches:\n        print('未找到 \"static\" 部分。')\n        return\n\n    new_content = content  # 用于存储整体替换后的内容\n    for match in static_matches:\n        static_content = match.group(1)\n        lines = static_content.split('\\n')\n\n        seen = set()  # 用于存储已出现的键名\n        unique_lines = []  # 存储去重后的行\n\n        # 遍历每一行，检查重复\n        for line in lines:\n            stripped_line = line.strip()\n            if stripped_line and not stripped_line.startswith('//'):  # 排除注释和空行\n                key_match = re.match(r'\"(.*?)\":', stripped_line)  # 提取键名\n                if key_match:\n                    key = key_match.group(1)\n                    if key in seen:\n                        print(f'重复项：{key}')\n                        continue\n                    seen.add(key)\n            unique_lines.append(line)  # 保留非重复项、注释和空行\n\n        # 将去重后的内容重新组装\n        unique_content = '\\n'.join(unique_lines)\n        new_content = new_content.replace(static_content, unique_content)\n\n    # 写入去重后的文件\n    with open(file_path, 'w', encoding='utf-8') as file:\n        file.write(new_content)\n    print('所有重复项已移除并保存至文件。')\n\n\nif __name__ == \"__main__\":\n    # 文件路径\n    file_path = './locals.js'  # 替换为你的文件路径\n    remove_duplicates(file_path)"
  },
  {
    "path": "script/t2s-convert.pl",
    "content": "#!/usr/bin/perl\nuse strict;\nuse warnings;\nuse utf8;\nuse open ':std', ':encoding(UTF-8)';\nuse Getopt::Long;\nuse Cwd qw(abs_path);\nuse File::Copy qw(move);\n\n# 配置参数\nmy %opt = (\n    rules     => 't2s_rules.conf', # 默认规则文件\n    backup    => 0,                # 是否备份\n    verbose   => 0,                # 显示详细信息\n    encoding  => 'UTF-8',          # 文件编码\n    output    => undef,           # 输出目录或文件\n\n);\nGetOptions(\n    'r|rules=s'    => \\$opt{rules},\n    'b|backup'     => \\$opt{backup},\n    'v|verbose'    => \\$opt{verbose},\n    'e|encoding=s' => \\$opt{encoding},\n    'o|output=s'   => \\$opt{output},\n    'h|help'       => sub { usage() },\n) or usage(1);\n\n# 参数校验\nusage(1) unless @ARGV;\n-e $opt{rules} or die \"[ERROR] 规则文件 '$opt{rules}' 不存在\\n\";\n\n# 预加载规则\nmy @rules;\nload_rules($opt{rules}, \\@rules);\n\n# 处理文件\nforeach my $file (@ARGV) {\n    convert_file($file, \\@rules);\n}\n\n#=============== 子函数 ================\nsub load_rules {\n    my ($rule_file, $rules_ref) = @_;\n\n    open(my $fh, '<:encoding(UTF-8)', $rule_file)\n        or die \"[ERROR] 无法打开规则文件 '$rule_file': $!\\n\";\n\n    while (<$fh>) {\n        chomp;\n        next if /^\\s*#/ || /^\\s*$/;  # 跳过注释和空行\n\n        # 解析规则行（支持2+空格对齐和REGEX:标记）\n        my ($is_regex, $pattern, $replacement) = parse_rule_line($_);\n\n        # 编译正则表达式\n        my $compiled = $is_regex ? qr/$pattern/ : qr/\\Q$pattern\\E/;\n        push @$rules_ref, {\n            pattern => $compiled,\n            replace => $replacement,\n            raw     => $_\n        };\n\n        print \"[RULE] 已加载: $_\\n\" if $opt{verbose};\n    }\n    close $fh;\n}\n\nsub parse_rule_line {\n    my ($line) = @_;\n\n    my $is_regex = ($line =~ s/^REGEX://) ? 1 : 0; # 识别正则表达式标记\n    my ($p, $r) = split(/\\s{2,}/, $line, 2);       # 提取参数，支持2+空格分隔\n\n    unless (defined $p && defined $r) {\n        my $type = $is_regex ? '（REGEX）' : '';\n        die \"[ERROR] 规则格式错误$type: '$line'\\n\";\n    }\n\n    # 正则语法检测\n    if ($is_regex) {\n        eval { qr/$p/ };\n        if ($@) {\n            die \"[ERROR] 无效的正则表达式 '$p': $@\\n\";\n        }\n    }\n\n    return ($is_regex, $p, $r);\n}\n\nsub convert_file {\n    my ($file, $rules_ref) = @_;\n\n    # 备份处理\n    my $bak_file = \"$file.bak\";\n    if ($opt{backup} && !-e $bak_file) {\n        move ($file, $bak_file)\n            or die \"[ERROR] 备份失败: 无法将 '$file' 备份为 '$bak_file': $!\\n\";\n    }\n\n    my $input_file = ($opt{backup} && -e $bak_file) ? $bak_file : $file;\n    open(my $in, '<:encoding('.$opt{encoding}.')', $input_file)\n        or die \"[ERROR] 无法读取文件 '$input_file': $!\\n\";\n    open(my $out, '>:encoding('.$opt{encoding}.')', \"$file.tmp\")\n        or die \"[ERROR] 无法创建临时文件 '$file.tmp': $!\\n\";\n\n    # 逐行处理\n    my $count = 0;\n    while (<$in>) {\n        my $origin = $_;\n        foreach my $rule (@$rules_ref) {\n            s/$rule->{pattern}/$rule->{replace}/g;\n        }\n        print $out $_;\n        $count += 1;\n        print \"已处理 $count 行\\r\" if $opt{verbose} && $count % 100 == 0;\n    }\n\n    close $in;\n    close $out;\n\n    # 文件输出处理\n    my $out_path;\n    if (defined $opt{output}) {\n        if (-d $opt{output}) {\n            my $basename = $file;\n            $basename =~ s|.*/||;\n            $out_path = \"$opt{output}/$basename\";\n        } else {\n            $out_path = $opt{output};\n        }\n    } else {\n        $out_path = $file;\n    }\n\n    move(\"$file.tmp\", $out_path)\n        or die \"[ERROR] 无法将临时文件 '$file.tmp' 移动为 '$out_path': $!\\n\";\n\n    unlink $bak_file unless $opt{backup};\n\n    print \"\\n[OK] 已转换 $file (共 $count 行)\\n\" if $opt{verbose};\n    print \"[OK] 已输出到 $out_path\\n\" if $opt{verbose};\n}\n\nsub usage {\n    print <<\"END_USAGE\";\n简繁转换脚本 v2.0\n用法: $0 [选项] 文件1 文件2...\n\n选项:\n  -r, --rules=FILE    规则配置文件 (默认: $opt{rules})\n  -b, --backup        保留原始文件备份 (.bak)\n  -e, --encoding=ENC  文件编码 (默认: $opt{encoding})\n  -o, --output=PATH   输出文件路径或目录\n  -v, --verbose       显示详细处理信息\n  -h, --help          显示此帮助信息\n\n规则文件格式:\n  普通替换: 原文本[2+空格]替换文本\n  正则替换: REGEX:模式[2+空格]替换文本\n\n示例:\n  $0 -v -b locals_zh-TW.js\n  $0 -v -o ../locals_zh-TW.js\n  $0 -r custom_rules.conf *.js\nEND_USAGE\n    exit($_[0] || 0);\n;\n}\n"
  },
  {
    "path": "t2s_rules.conf",
    "content": "# 格式说明：\n# 普通替换：源文本(2+空格)目标文本\n# 正则替换：REGEX:模式(2+空格)替换文本\nzh-CN       zh-TW\n隻讀        只讀\n隻影響      只影響\n隻是        只是\n復刻        複刻\n軟件        軟體\n代碼        程式碼\n程序        程式\n項目        專案\n併合並      並合併\n合並        合併\n復雜        複雜\n提交併      提交並\n髮送        發送\nREGEX:(?<!合)併為  並為\n幹浄        乾浄\n併發        並發\n要求籤名    要求簽名\n"
  }
]