Greasy Fork

来自缓存

Greasy Fork is available in English.

Claude 中文汉化 用量显示 Claude.ai

Claude 中文汉化 ai翻译 10000行翻译, 剩余用量显示

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Claude 中文汉化 用量显示 Claude.ai
// @namespace    https://github.com/jyking/claude2cn/
// @homepageURL  https://github.com/jyking/claude2cn/
// @author       jyking
// @version      1.6.2
// @description  Claude 中文汉化 ai翻译 10000行翻译, 剩余用量显示
// @icon         https://assets-proxy.anthropic.com/claude-ai/v2/assets/v1/cd02a42d9-Vq_H3mgS.svg
// @match        https://claude.ai/*
// @grant        none
// @license      MIT
// @run-at       document-start
// ==/UserScript==

(function () {
  "use strict";

  // 添加 CSS 变量
  const style = document.createElement("style");
  style.textContent = `
    :root {
      --font-anthropic-serif: "Anthropic Serif", Georgia, "Times New Roman", Times, "Noto Serif CJK SC", "Source Han Serif SC", "Noto Serif SC", "Source Hans Serif CN", "Songti SC", SimSun, serif;
    }
  `;
  document.head.appendChild(style);

  const originalFetch = window.fetch;
  window.fetch = async function (...args) {
    const url = typeof args[0] === "string" ? args[0] : args[0].url;

    if (
      !url.includes("/i18n/en-US.json") &&
      !url.includes("/i18n/statsig/en-US.json")
    ) {
      return originalFetch(...args);
    }

    const response = await originalFetch(...args);
    const json = await response.json();

    for (const key of Object.keys(json)) {
      const val = json[key];
      if (typeof val === "string" && TRANSLATIONS[val]) {
        json[key] = TRANSLATIONS[val];
      }
    }

    return new Response(JSON.stringify(json), {
      status: response.status,
      statusText: response.statusText,
      headers: response.headers,
    });
  };

  const ClaudeUsageWidget = (() => {
    "use strict";

    let orgId = null;
    let autoRefreshTimer = null;
    let countdownTimer = null;
    let isHovered = false;
    let panel = null;
    let isDragging = false;
    let dragOffset = { x: 0, y: 0 };
    let savedPosition = { left: null, right: 4, top: 50, isRight: true }; // 默认右上角

    let usageData = {
      fiveHour: { utilization: 0, resets_at: null },
      sevenDay: { utilization: 0, resets_at: null },
      planName: "",
      lastFetch: null,
      fetchError: null,
    };

    const _origFetch = window.fetch.bind(window);

    function hookFetch() {
      window.fetch = function (...args) {
        const url =
          typeof args[0] === "string"
            ? args[0]
            : args[0] instanceof Request
              ? args[0].url
              : "";
        captureOrgId(url);
        return _origFetch(...args);
      };

      const _origXHROpen = XMLHttpRequest.prototype.open;
      XMLHttpRequest.prototype.open = function (method, url, ...rest) {
        if (typeof url === "string") captureOrgId(url);
        return _origXHROpen.call(this, method, url, ...rest);
      };
    }

    function captureOrgId(url) {
      if (!url) return;
      const m = url.match(
        /\/api\/organizations\/([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/i,
      );
      if (!m) return;
      const newId = m[1];
      if (orgId !== newId) {
        orgId = newId;
        console.log("[Claude用量] orgId 已获取:", orgId);
      }
      if (autoRefreshTimer) clearTimeout(autoRefreshTimer);
      autoRefreshTimer = setTimeout(fetchUsage, 600);
    }

    async function discoverOrgId() {
      if (orgId) return true;
      const candidates = [
        "https://claude.ai/api/bootstrap",
        // "https://claude.ai/api/organizations",
      ];
      for (const url of candidates) {
        try {
          const res = await _origFetch(url, {
            credentials: "include",
            headers: { Accept: "application/json" },
          });
          if (!res.ok) continue;
          const data = await res.json();
          const str = JSON.stringify(data);
          const m = str.match(
            /"(?:uuid|id|organization_id)"\s*:\s*"([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})"/i,
          );
          if (m && !orgId) {
            orgId = m[1];
            console.log(`[Claude用量] 从 ${url} 获取 orgId`, orgId);
            return true;
          }
        } catch {}
      }
      return false;
    }

    function createPanel() {
      const metrics = getPanelMetrics();
      panel = document.createElement("div");
      panel.id = "claude-usage-panel-bottom";
      Object.assign(panel.style, {
        position: "fixed",
        top: "50px",
        right: metrics.defaultRight + "px",
        zIndex: "1000",
        background: "rgb(254, 252, 245)",
        border: "1px solid rgb(240, 235, 225)",
        borderRadius: metrics.borderRadius,
        fontFamily: "system-ui, -apple-system, sans-serif",
        color: "rgb(80, 75, 65)",
        padding: metrics.padding,
        width: "auto",
        minWidth: metrics.minWidth + "px",
        userSelect: "none",
        boxShadow: "none",
        cursor: "move",
        transition: "all 0.2s ease",
      });
      return panel;
    }

    function applyTheme() {
      if (!panel) return;
      const isDark =
        document.documentElement.classList.contains("dark") ||
        document.documentElement.getAttribute("data-theme") === "dark" ||
        window.matchMedia("(prefers-color-scheme: dark)").matches;

      if (isDark) {
        Object.assign(panel.style, {
          background: "rgb(40, 38, 35)",
          borderColor: "rgb(60, 55, 50)",
          color: "rgb(200, 195, 185)",
        });
      } else {
        Object.assign(panel.style, {
          background: "rgb(254, 252, 245)",
          borderColor: "rgb(240, 235, 225)",
          color: "rgb(80, 75, 65)",
        });
      }
    }

    function pct(v) {
      return Math.min(100, Math.max(0, Math.round(v || 0)));
    }

    function clr(p) {
      return p < 60 ? "#10b981" : p < 85 ? "#f59e0b" : "#ef4444";
    }

    function clrDark(p) {
      return p < 60 ? "#34d399" : p < 85 ? "#fbbf24" : "#f87171";
    }

    function cdText(ts) {
      if (!ts) return "";
      const target =
        typeof ts === "string" ? new Date(ts).getTime() : ts * 1000;
      const diff = target - Date.now();
      if (diff <= 0) return "已重置";
      const h = Math.floor(diff / 3600000);
      const m = Math.floor((diff % 3600000) / 60000);
      return h > 0 ? `${h}h ${m}m` : `${m}m`;
    }

    function fmtTime(ts) {
      if (!ts) return "—";
      const d = typeof ts === "string" ? new Date(ts) : new Date(ts * 1000);
      if (isNaN(d.getTime())) return "—";
      return d.toLocaleString("zh-CN", {
        month: "2-digit",
        day: "2-digit",
        hour: "2-digit",
        minute: "2-digit",
        hour12: false,
      });
    }

    function isMobileLayout() {
      return window.innerWidth <= 768;
    }

    function getPanelMetrics() {
      if (isMobileLayout()) {
        return {
          defaultRight: null,
          collapsedWidth: 32,
          expandedWidth: 32,
          minWidth: 32,
          padding: "3px 2px",
          borderRadius: "4px",
        };
      }
      return {
        defaultRight: 8,
        collapsedWidth: 56,
        expandedWidth: 180,
        minWidth: 56,
        padding: "8px 10px",
        borderRadius: "6px",
      };
    }

    function getMobileAnchorPosition() {
      return {
        left: Math.round(window.innerWidth * 0.64),
        top: 4,
      };
    }

    function renderPanel() {
      if (
        !document.body ||
        !panel ||
        !document.getElementById("claude-usage-panel-bottom")
      )
        return;
      applyTheme();

      if (!orgId) {
        panel.innerHTML = `
        <div style="font-size:10px;opacity:0.6;text-align:center;">
          ⏳
        </div>`;
        return;
      }

      if (usageData.fetchError) {
        panel.innerHTML = `
        <div style="font-size:10px;opacity:0.6;text-align:center;">⚠️</div>`;
        return;
      }

      const fh = usageData.fiveHour;
      const sd = usageData.sevenDay;
      const fhPct = pct(fh.utilization);
      const sdPct = pct(sd.utilization);
      const fhRemain = 100 - fhPct;
      const sdRemain = 100 - sdPct;

      const isDark = document.documentElement.classList.contains("dark");
      const fhColor = isDark ? clrDark(fhPct) : clr(fhPct);
      const sdColor = isDark ? clrDark(sdPct) : clr(sdPct);
      const isMobile = isMobileLayout();

      const textMuted = isDark
        ? "rgba(200, 195, 185, 0.6)"
        : "rgba(80, 75, 65, 0.6)";
      const metrics = getPanelMetrics();

      // 判断面板是否靠近右侧
      const rect = panel.getBoundingClientRect();
      const isNearRight =
        savedPosition.isRight !== null
          ? savedPosition.isRight
          : rect.left > window.innerWidth / 2;

      // 使用保存的位置或当前位置
      let currentLeft, currentRight;
      if (isNearRight) {
        currentRight =
          savedPosition.right !== null
            ? savedPosition.right
            : window.innerWidth - rect.right;
      } else {
        currentLeft =
          savedPosition.left !== null ? savedPosition.left : rect.left;
      }
      const currentTop =
        savedPosition.top !== null ? savedPosition.top : rect.top;

      if (!isMobile && isHovered) {
        const expandedWidth = metrics.expandedWidth;

        panel.style.top = currentTop + "px";
        panel.style.bottom = "auto";
        panel.style.padding = metrics.padding;
        panel.style.borderRadius = metrics.borderRadius;

        if (isNearRight) {
          // 靠右时向左展开,保持右边缘不变
          panel.style.right = currentRight + "px";
          panel.style.left = "auto";
        } else {
          // 靠左时向右展开,保持左边缘不变
          panel.style.left = currentLeft + "px";
          panel.style.right = "auto";
        }

        panel.style.width = expandedWidth + "px";
        panel.style.minWidth = expandedWidth + "px";

        panel.innerHTML = `
        <div style="display:flex;flex-direction:column;gap:10px;">
          <div style="font-size:11px;font-weight:600;opacity:0.8;text-align:center;border-bottom:1px solid ${textMuted};padding-bottom:6px;">Claude 用量监控</div>

          <div>
            <div style="font-size:9px;color:${textMuted};margin-bottom:3px;">⚡ 5小时窗口</div>
            <div style="display:flex;justify-content:space-between;align-items:baseline;margin-bottom:2px;">
              <span style="font-size:11px;opacity:0.7;">剩余</span>
              <span style="font-size:16px;font-weight:600;color:${fhColor};">${fhRemain}%</span>
            </div>
            <div style="display:flex;justify-content:space-between;font-size:8px;opacity:0.6;">
              <span>已用 ${fhPct}%</span>
              <span>${fmtTime(fh.resets_at)}</span>
            </div>
            <div id="fhcd" style="font-size:8px;color:${fhColor};margin-top:2px;text-align:right;">${cdText(fh.resets_at)}</div>
          </div>

          <div>
            <div style="font-size:9px;color:${textMuted};margin-bottom:3px;">📅 7天配额</div>
            <div style="display:flex;justify-content:space-between;align-items:baseline;margin-bottom:2px;">
              <span style="font-size:11px;opacity:0.7;">剩余</span>
              <span style="font-size:16px;font-weight:600;color:${sdColor};">${sdRemain}%</span>
            </div>
            <div style="display:flex;justify-content:space-between;font-size:8px;opacity:0.6;">
              <span>已用 ${sdPct}%</span>
              <span>${fmtTime(sd.resets_at)}</span>
            </div>
            <div id="sdcd" style="font-size:8px;color:${sdColor};margin-top:2px;text-align:right;">${cdText(sd.resets_at)}</div>
          </div>
        </div>
      `;
      } else {
        const collapsedWidth = metrics.collapsedWidth;
        panel.style.padding = metrics.padding;
        panel.style.borderRadius = metrics.borderRadius;
        if (isMobile) {
          const mobilePos = getMobileAnchorPosition();
          panel.style.top = mobilePos.top + "px";
          panel.style.left = mobilePos.left + "px";
          panel.style.right = "auto";
          panel.style.bottom = "auto";
        } else {
          panel.style.top = currentTop + "px";
          panel.style.bottom = "auto";

          if (isNearRight) {
            // 靠右时保持右对齐收起
            panel.style.right = currentRight + "px";
            panel.style.left = "auto";
          } else {
            // 靠左时保持左对齐收起
            panel.style.left = currentLeft + "px";
            panel.style.right = "auto";
          }
        }

        panel.style.width = collapsedWidth + "px";
        panel.style.minWidth = collapsedWidth + "px";

        panel.innerHTML = `
        <div style="display:flex;flex-direction:column;gap:${isMobile ? 2 : 8}px;align-items:center;">
          <div style="text-align:center;">
            ${isMobile ? "" : `<div style="font-size:8px;color:${textMuted};margin-bottom:2px;">5小时</div>`}
            <div style="font-size:${isMobile ? 11 : 16}px;font-weight:600;color:${fhColor};line-height:1.05;">${fhRemain}%</div>
            ${isMobile ? "" : `<div id="fhcd" style="font-size:8px;color:${textMuted};margin-top:2px;">${cdText(fh.resets_at)}</div>`}
          </div>

          <div style="width:${isMobile ? 14 : 30}px;height:1px;background:${textMuted};opacity:0.3;"></div>

          <div style="text-align:center;">
            ${isMobile ? "" : `<div style="font-size:8px;color:${textMuted};margin-bottom:2px;">7天</div>`}
            <div style="font-size:${isMobile ? 11 : 16}px;font-weight:600;color:${sdColor};line-height:1.05;">${sdRemain}%</div>
            ${isMobile ? "" : `<div id="sdcd" style="font-size:8px;color:${textMuted};margin-top:2px;">${cdText(sd.resets_at)}</div>`}
          </div>
        </div>
      `;
      }

      startCountdown();
    }

    function startCountdown() {
      if (countdownTimer) clearInterval(countdownTimer);
      countdownTimer = setInterval(() => {
        const fhEl = document.getElementById("fhcd");
        const sdEl = document.getElementById("sdcd");
        if (fhEl) fhEl.textContent = cdText(usageData.fiveHour.resets_at);
        if (sdEl) sdEl.textContent = cdText(usageData.sevenDay.resets_at);
      }, 30000);
    }

    async function fetchUsage() {
      if (!orgId) {
        await discoverOrgId();
        if (!orgId) return;
      }
      usageData.fetchError = null;
      const endpoints = [
        `https://claude.ai/api/organizations/${orgId}/usage`,
        `https://claude.ai/api/organizations/${orgId}/rate_limit_status`,
        `https://claude.ai/api/organizations/${orgId}/limits`,
      ];
      for (const url of endpoints) {
        try {
          const res = await _origFetch(url, {
            credentials: "include",
            headers: { Accept: "application/json" },
          });
          if (res.status === 404) continue;
          if (!res.ok) throw new Error(`HTTP ${res.status}`);
          const data = await res.json();
          if (parseUsageData(data)) {
            usageData.lastFetch = Date.now();
            renderPanel();
            return;
          }
        } catch (e) {
          console.warn("[Claude用量] 接口失败:", url, e.message);
        }
      }
      usageData.fetchError = "无法获取数据";
      renderPanel();
    }

    function parseUsageData(data) {
      if (!data || typeof data !== "object") return false;
      let hit = false;
      if (data.five_hour) {
        usageData.fiveHour = {
          utilization: data.five_hour.utilization ?? 0,
          resets_at: data.five_hour.resets_at ?? null,
        };
        hit = true;
      }
      if (data.seven_day) {
        usageData.sevenDay = {
          utilization: data.seven_day.utilization ?? 0,
          resets_at: data.seven_day.resets_at ?? null,
        };
        hit = true;
      }
      if (Array.isArray(data.rate_limits)) {
        for (const item of data.rate_limits) {
          const w = String(
            item.window_duration || item.type || "",
          ).toLowerCase();
          const p = item.used_percentage ?? item.utilization ?? 0;
          const r = item.resets_at ?? item.reset_at;
          if (/5h|five.?hour|session/.test(w)) {
            usageData.fiveHour = { utilization: p, resets_at: r };
            hit = true;
          } else if (/7d|seven.?day|week/.test(w)) {
            usageData.sevenDay = { utilization: p, resets_at: r };
            hit = true;
          }
        }
      }
      if (data.subscription_type || data.plan_name || data.plan) {
        usageData.planName =
          data.subscription_type || data.plan_name || data.plan || "";
      }
      return hit;
    }

    function enableDrag() {
      if (!panel) return;

      let startX, startY, startLeft, startTop;

      panel.addEventListener("mousedown", (e) => {
        isDragging = true;
        startX = e.clientX;
        startY = e.clientY;

        // 获取当前位置
        const rect = panel.getBoundingClientRect();
        startLeft = rect.left;
        startTop = rect.top;

        panel.style.transition = "none";
        panel.style.cursor = "grabbing";
      });

      document.addEventListener("mousemove", (e) => {
        if (!isDragging) return;
        e.preventDefault();

        const deltaX = e.clientX - startX;
        const deltaY = e.clientY - startY;

        let newLeft = startLeft + deltaX;
        let newTop = startTop + deltaY;

        // 边界限制 - 使用当前布局的收起宽度作为基准
        const collapsedWidth = getPanelMetrics().collapsedWidth;
        const maxLeft = window.innerWidth - collapsedWidth;
        const maxTop = window.innerHeight - panel.offsetHeight;

        newLeft = Math.max(0, Math.min(newLeft, maxLeft));
        newTop = Math.max(0, Math.min(newTop, maxTop));

        panel.style.left = newLeft + "px";
        panel.style.top = newTop + "px";
        panel.style.right = "auto";
        panel.style.bottom = "auto";
      });

      document.addEventListener("mouseup", () => {
        if (isDragging) {
          isDragging = false;
          panel.style.transition = "all 0.2s ease";
          panel.style.cursor = "move";

          // 保存实际位置坐标和对齐方式
          const rect = panel.getBoundingClientRect();
          const isRight = rect.left > window.innerWidth / 2;

          if (isRight) {
            // 在右边时保存距右边的距离
            savedPosition.right = window.innerWidth - rect.right;
            savedPosition.left = null;
          } else {
            // 在左边时保存距左边的距离
            savedPosition.left = rect.left;
            savedPosition.right = null;
          }

          savedPosition.top = rect.top;
          savedPosition.isRight = isRight;

          // 保存到 localStorage
          localStorage.setItem(
            "claude-usage-position",
            JSON.stringify({
              left: savedPosition.left,
              right: savedPosition.right,
              top: rect.top,
              isRight: isRight,
            }),
          );

          // 重新渲染以调整展开方向
          renderPanel();
        }
      });
    }

    function init(options = {}) {
      if (document.getElementById("claude-usage-panel-bottom")) {
        console.warn("[Claude用量] 小部件已存在");
        return;
      }

      hookFetch();
      panel = createPanel();

      // 支持自定义位置覆盖
      if (options.position) {
        const position = options.position;
        if (position.bottom) panel.style.bottom = position.bottom;
        if (position.left) panel.style.left = position.left;
        if (position.top) panel.style.top = position.top;
        if (position.right) panel.style.right = position.right;
      }

      const initWhenReady = () => {
        if (!document.body) {
          setTimeout(initWhenReady, 100);
          return;
        }

        document.body.appendChild(panel);

        if (isMobileLayout() && !options.position) {
          const mobilePos = getMobileAnchorPosition();
          savedPosition.left = mobilePos.left;
          savedPosition.right = null;
          savedPosition.top = mobilePos.top;
          savedPosition.isRight = false;
          panel.style.left = mobilePos.left + "px";
          panel.style.top = mobilePos.top + "px";
          panel.style.right = "auto";
          panel.style.bottom = "auto";
        }

        // 恢复保存的位置(在添加到DOM后)
        const savedPos = localStorage.getItem("claude-usage-position");
        if (savedPos && !options.position && !isMobileLayout()) {
          try {
            const pos = JSON.parse(savedPos);
            let top = parseFloat(pos.top);
            let isRight = pos.isRight !== undefined ? pos.isRight : false;

            // 边界检查和修正
            const maxTop = window.innerHeight - 100;
            if (top > maxTop) top = maxTop;
            if (top < 0) top = 0;

            savedPosition.top = top;
            savedPosition.isRight = isRight;

            if (isRight && pos.right !== null && pos.right !== undefined) {
              // 恢复右对齐位置
              let right = parseFloat(pos.right);
              const maxRight = window.innerWidth - getPanelMetrics().collapsedWidth;
              if (right > maxRight) right = maxRight;
              if (right < 0) right = 0;

              savedPosition.right = right;
              savedPosition.left = null;

              panel.style.right = right + "px";
              panel.style.left = "auto";
            } else if (pos.left !== null && pos.left !== undefined) {
              // 恢复左对齐位置
              let left = parseFloat(pos.left);
              const maxLeft = window.innerWidth - getPanelMetrics().collapsedWidth;
              if (left > maxLeft) left = maxLeft;
              if (left < 0) left = 0;

              savedPosition.left = left;
              savedPosition.right = null;

              panel.style.left = left + "px";
              panel.style.right = "auto";
            }

            panel.style.top = top + "px";
            panel.style.bottom = "auto";
          } catch (e) {
            console.warn("[Claude用量] 恢复位置失败", e);
          }
        }

        renderPanel();
        enableDrag();

        panel.addEventListener("mouseenter", () => {
          if (!isDragging) {
            isHovered = true;
            renderPanel();
          }
        });

        panel.addEventListener("mouseleave", () => {
          if (!isDragging) {
            isHovered = false;
            renderPanel();
          }
        });

        discoverOrgId().then(() => {
          if (orgId) fetchUsage();
        });

        setInterval(() => {
          if (orgId) fetchUsage();
        }, 65000);

        const themeObserver = new MutationObserver(applyTheme);
        themeObserver.observe(document.documentElement, {
          attributes: true,
          attributeFilter: ["class", "data-theme"],
        });
        window
          .matchMedia("(prefers-color-scheme: dark)")
          .addEventListener("change", applyTheme);

        console.log(
          "%c✅ Claude 用量监控小部件已启动",
          "color:#10b981;font-weight:600;font-size:13px",
        );
      };

      if (document.readyState === "loading") {
        document.addEventListener("DOMContentLoaded", initWhenReady);
      } else {
        initWhenReady();
      }
    }

    function destroy() {
      if (panel && panel.parentNode) {
        panel.parentNode.removeChild(panel);
      }
      if (countdownTimer) clearInterval(countdownTimer);
      if (autoRefreshTimer) clearTimeout(autoRefreshTimer);
      panel = null;
      orgId = null;
      console.log("[Claude用量] 小部件已销毁");
    }

    return {
      init,
      destroy,
      getUsageData: () => usageData,
    };
  })();

  ClaudeUsageWidget.init();

  const TRANSLATIONS = {
    "0": "0",
    "1": "1",
    "2": "2",
    " (Trial)": "(试用版)",
    " (opens in a new tab)": "(在新标签页中打开)",
    " (upcoming billing date)": "(即将到来的计费日期)",
    " ({month} {day})": " ({month} {day})",
    " +{count} more": " 还有 +{count} 个",
    " You can cancel at any time in your account settings.": "您可以随时在账号设置中取消。",
    " per seat per month": " 每席位每月",
    " per seat per year": " 每席位每年",
    " — enabled": " — 已启用",
    " — not enabled": " — 未启用",
    "!": "!",
    "\"ANTHROPIC_API_KEY\" won't be used to authenticate requests. Claude Code sessions are authenticated through your Anthropic account.": "“ANTHROPIC_API_KEY” 不会被用于申请的身份验证。Claude Code 会话通过您的 Anthropic 账号进行验证。",
    "\"{fileName}\" exceeds the {limit}-pixel dimension limit. You can resize it and try again.": "\"{fileName}\" 超过 {limit} 像素的尺寸限制。您可以调整大小后重试。",
    "\"{fileName}\" is too large. Images must be under {limit}MB. You can resize or compress it and try again.": "\"{fileName}\" 过大。图片必须小于 {limit}MB。您可以调整大小或压缩后重试。",
    "\"{name}\" and its data will be removed from this container.": "\"{name}\" 及其数据将从此容器中删除。",
    "\"{name}\" can fetch live data from the following connectors without prompting:": "\"{name}\" 可以从以下连接器获取实时数据而无需提示:",
    "\"{name}\" created.": "“{name}”已创建。",
    "\"{name}\" is already installed. Installing this bundle will replace it.": "\"{name}\" 已安装。安装此捆绑包将替换它。",
    "\"{name}\" started.": "“{name}”已开始。",
    "\"{name}\" updated.": "\"{name}\" 已更新。",
    "\"{name}\" will pull live data from these connectors automatically. You can import it as a static snapshot instead.": "“{name}”将自动从这些连接器拉取实时数据。你也可以改为将其导入为静态快照。",
    "\"{range}\" is not a valid CIDR range. Use formats like 192.168.1.0/24 or 2001:db8::/32.": "“{range}” 不是有效的 CIDR 范围。请使用类似 192.168.1.0/24 或 2001:db8::/32 的格式。",
    "\"{spaceName}\" will be removed from your projects. Tasks, scheduled tasks, and files won't be deleted.": "“{spaceName}” 将从您的项目中移除。任务、计划任务和文件不会被删除。",
    "#": "#",
    "# Install Claude Code": "# 安装 Claude Code",
    "# Navigate to your project": "# 导航到您的项目",
    "# Start coding with Claude": "# 开始使用 Claude 编写代码",
    "#{prNumber} · View PR": "#{prNumber} · 查看 PR",
    "#{rank}": "#{rank}",
    "#{rank} popular": "人气排名第 #{rank}",
    "$": "$",
    "$0 for {displayValue} {displayUnit}{displayValue, plural, one {} other {s}}": "{displayValue} {displayUnit} $0起{displayValue, plural, one {} other {s}}",
    "$0 for {trialDays} days": "{trialDays} 天 0 元",
    "$0 for {weeks, plural, one {# week} other {# weeks}}": "{weeks, plural, one {# 周} other {# 周}}为 $0",
    "$17 per month with annual subscription discount ($200 billed up front). $20 if billed monthly.": "年度订阅优惠价为每月 $17(预收 $200)。如果按月结算则为 $20。",
    "$20/seat. Usage cost scales with model and task.": "每个席位 20 美元。用量成本随模型和任务规模而变。",
    "$79.99": "$79.99",
    "${amount}": "${amount}",
    "${cost}": "${cost}",
    "%": "%",
    "% of active users using each feature": "使用各项功能的活跃用户百分比",
    "''{spaceName}'' has {count, plural, one {# folder} other {# folders}} this session can't access yet": "“{spaceName}”中有 {count, plural, one {# 个文件夹} other {# 个文件夹}} 当前会话尚无法访问",
    "(+tax)": "(+税费)",
    "(Canceled)": "(已取消)",
    "(No content)": "(无内容)",
    "(Required)": "(必填)",
    "(approx {local})": "(约 {local})",
    "(built-in: {version})": "(内置:{version})",
    "(edited)": "(已编辑)",
    "(first {n} free during trial)": "(试用期内前 {n} 个免费)",
    "(from project \"{spaceName}\")": "(来自项目 “{spaceName}”)",
    "(if applicable)": "(如适用)",
    "(includes GST)": "(包含 GST)",
    "(includes JCT)": "(含 JCT)",
    "(includes VAT)": "(含增值税)",
    "(includes tax)": "(含税)",
    "(limit {limit})": "(限制 {limit})",
    "(needs attention)": "(需要注意)",
    "(no description)": "(无描述)",
    "(no instructions sent)": "(未发送说明)",
    "(no longer visible)": "(不再可见)",
    "(not installed)": "(未安装)",
    "(null)": "(null)",
    "(usage not included)": "(不含用量)",
    "(you)": "(您)",
    "({change, number, ::sign-always})": "({change, number, ::sign-always})",
    "({count} connected)": "(已连接 {count} 个)",
    "({count} reviews)": "({count} 条评价)",
    "({count} seats)": "({count} 个席位)",
    "({count})": "({count})",
    "({local})": "({local})",
    "({minimum, plural, one {# seat} other {# seats}} minimum applied)": "(已应用最少 {minimum, plural, one {# 个} other {# 个}} 席位限制)",
    "({percent})": "({percent})",
    "({time})": "({time})",
    "**Coding & development.** You'll get the most out of Claude Code.": "**编码和开发。** 您将从 Claude Code 中获得最大收益。",
    "**Ooh, a PM.** Cowork is great for context-gathering and synthesis. Try Claude Code if you want to prototype without help from eng. Where do you want to start?": "**哦,是一位产品经理(PM)。** Cowork 非常适合信息搜集与综合分析。如果您想在没有工程团队协助的情况下快速制作原型,可以试试 Claude Code。您想从哪里开始?",
    "**Ooh, a designer.** Cowork is great for sorting through feedback or writing up research. Try Claude Code if you want to turn designs into something real. Where do you want to start?": "**噢,一位设计师。** Cowork 非常适合整理反馈或撰写研究报告。如果您想将设计转化为真实的东西,请尝试 Claude Code。您想从哪开始?",
    "**Ooh, an engineer.** You'll get the most out of Claude Code. It runs in your terminal, your editor, or wherever you're already working.": "**哦吼,又一位工程师。** 您将从 Claude Code 中获得最大受益。它可以运行在您的终端、编辑器,或任何您已经在工作的地方。",
    "**Ooh, data science.** Claude Code works well with notebooks. Cowork is great for handing off cleanup or exploration. Where do you want to start?": "**哦,是数据科学领域呀。** Claude Code 与 Notebook 配合非常默契。Cowork 则非常适合处理清理或探索性的后续工作。您想从何处开始?",
    "**Ooh, you're in finance.** I can work with you directly in Excel, or you can hand things off in Cowork and come back when they're done. Where do you want to start?": "**真巧,你在金融部门工作。** 我们可以在 Excel 中直接协作,或者你可以把任务交托给 Cowork,完成后再回来。你想从哪里开始?",
    "**Ooh, {role}.** Let's start working together in Cowork. I can work directly in your files, browser, and the tools you already use.": "**奥,{role}。** 让我们开始在 Cowork 中合作。我可以直接处理您的文件、浏览器以及您已在使用的工具。",
    "**{roleName}.** You'll get the most out of Claude Code.": "**{roleName}。** 你将最充分地发挥 Claude Code 的价值。",
    "*<link>Usage limits apply.</link> Prices shown don't include applicable tax.": "*<link>适用用量限制。</link> 所示价格不包含适用税费。",
    "*<link>Usage limits apply.</link> Prices shown don’t include applicable tax.": "*<link>适用用量限制。</link> 所示价格不包含适用税费。",
    "*<link>Usage limits apply.</link> Prices shown include applicable tax.": "*<link>适用用量限制。</link> 所示价格包含适用税费。",
    "*Price billed annually; {monthlyPrice}/month if billed monthly": "*年度计费价格;按月计费为 {monthlyPrice}/月",
    "*Team and Enterprise plans do not include access to Claude Code": "*Team 和 Enterprise 方案不包含 Claude Code 的访问权限",
    "*Usage limits apply": "*受用量上限约束",
    "+ Add": "+ 添加",
    "+ GST": "+ GST",
    "+ JCT": "+ JCT",
    "+ VAT": "+ 增值税 (VAT)",
    "+ tax": "+ 税",
    "+ {count, plural, one {# more skill} other {# more skills}}": "+ {count, plural, one {# 个技能} other {# 个技能}}",
    "+ {count} more": "+ 另外 {count} 个",
    "+{a} −{d}": "+{a} −{d}",
    "+{count, number} more": "还有 +{count, number}",
    "+{count}": "+{count}",
    "+{count} more": "外加 {count} 个",
    "+{count} more connectors": "外加 {count} 个连接器",
    "+{count} more features": "另外 +{count} 个功能",
    "+{count} more skills": "另外 {count} 项技能",
    "+{count} more {count, plural, one {seat} other {seats}} will add {cost}{interval} to your bill · <remove>Remove</remove>": "再增加 +{count} 个{count, plural, one {席位} other {席位}}将自您的账单中增加 {cost}{interval} · <remove>移除</remove>",
    "+{formattedCurrencyAmount}": "+{formattedCurrencyAmount}",
    "+{n}": "+{n}",
    "+{n} more": "还有 +{n} 个",
    ", environment settings, right arrow": ",环境设置,右箭头",
    "- {amount}": "- {amount}",
    "-{amount}": "-{amount}",
    "-{count}": "-{count}",
    ".": ".",
    "... +{count, plural, one {# line} other {# lines}}": "... 还有 +{count, plural, one {# 行} other {# lines}}",
    "...More": "……更多",
    ".claude.app": ".claude.app",
    ".md file must contain skill name and description formatted in YAML": ".md 文件必须包含以 YAML 格式编写的技能名称和描述",
    ".zip or .skill file must include a SKILL.md file": ".zip 或 .skill 文件必须包含 SKILL.md 文件",
    "/": "/",
    "/ month billed annually{taxSuffix}": "/ 月,按年计费{taxSuffix}",
    "/ month billed monthly{taxSuffix}": "/ 每月计费{taxSuffix}",
    "/feedback is only available for local sessions on this desktop build.": "/feedback 仅适用于此桌面版本中的本地会话。",
    "/feedback is only available for local sessions right now.": "/feedback 目前仅适用于本地会话。",
    "/feedback requires a newer desktop build. Restart the app to update.": "`/feedback` 需要更新版本的桌面构建。请重启应用以更新。",
    "/mo": "/月",
    "/month": "/月",
    "/month + tax": "/月 + 税",
    "/ultrareview is only available in a local Claude Code session.": "/ultrareview 仅在本地 Claude Code 会话中可用。",
    "/web-setup": "/web-setup",
    "/year": "/年",
    "/year + tax": "/年 + 税",
    "/{commandName} isn't a recognized command here. Some commands only work in the Claude Code terminal.": "/{commandName} 不是这里可识别的命令。有些命令仅能在 Claude Code 终端中使用。",
    "00000000000000": "00000000000000",
    "1 = {firstLabel}, {scale} = {lastLabel}": "1 = {firstLabel}, {scale} = {lastLabel}",
    "1 month": "1 个月",
    "1 person sent {requestCount, plural, one {a request} other {# requests}}": "1 人发送了 {requestCount, plural, one {一个请求} other {# 个请求}}",
    "1 seat upgraded to {tier}": "1 个席位已升级至 {tier}",
    "1 user": "1 个用户",
    "1 year": "1 年",
    "1. Paste your meeting URL above": "1. 在上方粘贴您的会议 URL",
    "10% of spend limit": "支出限额的 10%",
    "123 Main St, Portland OR": "波特兰,美茵街 123 号",
    "14-day free trial": "14 天免费试用",
    "14-day free trial · <termsLink>Terms</termsLink>": "14 天免费试用 · <termsLink>条款</termsLink>",
    "180 days": "180 天",
    "1D Return": "1D 回报率",
    "1M": "100 万",
    "1Y": "1Y",
    "2 people": "2 人",
    "2-week exam survival plan": "为期 2 周的期末考试冲刺计划",
    "2. Claude will join the meeting as a participant": "2. Claude 将以参与者身份加入会议",
    "20+ users": "20+ 用户",
    "200K context window": "200K 上下文窗口",
    "20x higher usage limits for extended coding sessions": "扩展编码会话的用量上限提高 20 倍",
    "20x more usage than Pro": "20 倍于 Pro 方案的用量",
    "20x more usage than Pro*": "比 Pro 高 20 倍的使用量*",
    "3 months": "3个月",
    "3 people": "3 人",
    "3 truths and a hallucination": "三个真相与一个幻觉",
    "3. A new project will be created for the meeting": "3. 将为会议创建一个新项目",
    "30 days": "30 天",
    "30d": "30天",
    "365 days": "365 天",
    "3M": "3 个月",
    "4 people": "4 人",
    "4 results": "4 个结果",
    "4-week workout for bad knees": "针对膝盖不适者的 4 周锻炼计划",
    "4. Claude will transcribe and process the conversation in real-time": "4. Claude 将实时转录并处理对话内容",
    "4xx": "4xx",
    "5 people": "5 人",
    "5 whys": "5 个为什么",
    "5-20x higher usage limits for extended coding sessions": "多出 5-20 倍的用量上限,支持长时间编码会话",
    "5-hour limit": "5 小时限制",
    "5-{maxMembers} users": "5-{maxMembers} 名用户",
    "5. You can interact with Claude about the meeting content": "5. 您可以就会议内容与 Claude 互动",
    "50% of spend limit": "支出限额的 50%",
    "500K context window": "500K 上下文窗口",
    "5x higher usage limits for extended coding sessions": "扩展编码会话的使用限制提高 5 倍",
    "5x more usage than Pro": "5 倍于 Pro 方案的用量",
    "5x more usage than Pro*": "使用限额是 Pro 版的 5 倍*",
    "5x more usage than our free tier for coding sessions": "编程会话的使用额度是免费版的 5 倍",
    "5x more usage than standard seats*": "5 倍于标准席位的用量*",
    "5xx": "5xx",
    "5–20x more usage than Pro": "5–20 倍于 Pro 方案的用量",
    "6 months": "6 个月",
    "6 people": "6 个人",
    "60 days": "60 天",
    "6:00 PM": "下午 6:00",
    "6:30 PM": "下午 6:30",
    "7 days": "7 天",
    "7 people": "7 人",
    "7:00 PM": "下午 7:00",
    "7:30 PM": "下午 7:30",
    "7d": "7 天",
    "8 people": "8 个人",
    "8:00 PM": "晚上 8:00",
    "8:30 PM": "晚上 8:30",
    "90 days": "90天",
    ": disabled": ":已禁用",
    ": enabled": ":已启用",
    ": {days, plural, one {# day} other {# days}} for {price}": ":{price} 可用 {days, plural, one {# 天} other {# 天}}",
    ": {price} + tax / month": ":{price} + 税费 / 月",
    ": {price} + tax / year": ":{price} + 税费 / 年",
    ": {value} {unit}{value, plural, one {} other {s}} for {price}": ": {value} {unit},价格为 {price}",
    "<a0>Read more about creating skills</a0> or <a1>see an example</a1>": "<a0>了解更多关于创建技能</a0> 或 <a1>查看示例</a1>",
    "<a>Add a setup script</a> to install dependencies and configure your environment.": "<a>添加设置脚本</a>以安装依赖并配置您的环境。",
    "<a>Enable this connector</a> to configure its tools.": "<a>启用此连接器</a>以配置其工具。",
    "<b>Before you continue:</b> If you have an existing Claude Team or Enterprise plan you intend to migrate to this AWS Marketplace contract, please don't proceed. Your Anthropic representative will reach out with next steps.": "<b>继续之前:</b>如果你已有 Claude Team 或 Enterprise 套餐,并打算迁移到此 AWS Marketplace 合同,请不要继续。你的 Anthropic 代表将联系你告知后续步骤。",
    "<b>Connection</b> needs {count, plural, one {{label}} other {# fields}}": "<b>连接</b>还需要 {count, plural, one {{label}} other {# 个字段}}",
    "<b>Delivery date:</b> {date}": "<b>交付日期:</b>{date}",
    "<b>Files are saved to this computer.</b> Downloaded files are accessible to anyone who uses this device or signs into a different account.": "<b>文件已保存到此电脑。</b> 凡使用此设备或登录不同账号的人均可访问已下载的文件。",
    "<b>Heads up</b>—your Claude account uses a personal email ({domain}). Make sure you have a Microsoft <b>work or school</b> account before continuing.": "<b>请注意</b> — 您的 Claude 帐号使用的是个人电子邮件 ({domain})。在继续之前,请确保您拥有 Microsoft <b>工作或学校</b> 帐号。",
    "<b>If you're the Microsoft Entra admin</b>, you'll approve access during sign-in. <b>If not</b>, your admin may need to approve it first. If you get stuck, see the <link>setup guide</link>.": "<b>如果您是 Microsoft Entra 管理员</b>,您将在登录期间批准访问。<b>如果不是</b>,您的管理员可能需要先批准它。如果遇到问题,请参阅<link>设置指南</link>。",
    "<b>Limited support.</b> Project memory and synced files (like Google Drive and GitHub files) won't be included.": "<b>有限支持。</b> 项目记忆和同步文件(如 Google 云端硬盘和 GitHub 文件)将不被包含。",
    "<b>Linked sources like GitHub and Google Drive are referenced, not downloaded.</b> Claude can fetch them if needed.": "<b>GitHub 和 Google 云端硬盘等已连接的来源仅被引用,不会被下载。</b>Claude 可以根据需要获取它们。",
    "<b>Only connect if you just started signing in from Claude for {appName}.</b> This code should match the one shown there. Otherwise, close this tab.": "<b>仅当你刚刚从 Claude for {appName} 开始登录时才进行连接。</b> 此代码应与那里显示的代码一致。否则,请关闭此标签页。",
    "<b>Only connect if you just started signing in from a Claude add-in.</b> This code should match the one shown there. Otherwise, close this tab.": "<b>仅当你刚刚从 Claude 插件开始登录时才进行连接。</b> 此代码应与那里显示的代码一致。否则,请关闭此标签页。",
    "<b>Press caps lock</b> to dictate, then press again to finish.": "<b>按 Caps Lock</b> 键进行听写,然后再次按以完成。",
    "<b>Press {shortcut}</b> to type to Claude": "<b>按下 {shortcut}</b> 开始向 Claude 输入",
    "<b>Press ⌥ option twice</b> to type to Claude": "<b>连按两次 ⌥ option 键</b>即可向 Claude 输入文字",
    "<b>To:</b> {name}": "<b>致:</b> {name}",
    "<b>To:</b> {name} ({email})": "<b>致:</b> {name} ({email})",
    "<b>{count, plural, one {# session stuck} other {# sessions stuck}}</b> — failed on 3 different runners each. Auto-recovery exhausted. Check runner logs, then retry or delete.": "<b>{count, plural, one {# 个会话卡住} other {# 个会话卡住}}</b> — 每个在 3 个不同的运行器上失败。自动恢复已耗尽。检查运行器日志,然后重试或删除。",
    "<b>{keyCount, plural, one {# key} other {# keys}}</b> will be permanently revoked.": "<b>{keyCount, plural, one {# 个密钥} other {# 个密钥}}</b>将被永久撤销。",
    "<b>{queuedCount, plural, one {# queued session} other {# queued sessions}}</b> will be dropped. Users will need to retry.": "<b>{queuedCount, plural, one {# 个排队会话} other {# 个排队会话}}</b>将被丢弃。用户需要重试。",
    "<b>{runnerCount, plural, one {# connected runner} other {# connected runners}}</b> will be immediately disconnected.": "<b>{runnerCount, plural, one {# 个已连接的运行器} other {# 个已连接的运行器}}</b>将立即断开连接。",
    "<b>{sessions, plural, one {# active session} other {# active sessions}}</b> on this runner will be interrupted and returned to the queue with a failure status.": "此运行器上的 <b>{sessions, plural, one {# 个活动会话} other {# 个活动会话}}</b>将被中断并以失败状态返回队列。",
    "<b>{title}</b> and its conversation history will be permanently removed.": "<b>{title}</b> 及其对话历史将被永久删除。",
    "<bold>Act without asking is on.</bold> Claude works and uses connectors without pausing for approval. <link>See safe use tips</link>": "<bold>“无需询问即可执行”已开启。</bold> Claude 在工作和使用连接器时不会暂停等待批准。<link>查看安全使用提示</link>",
    "<bold>Act without asking is on.</bold> Claude works, uses connectors, and browses the web without pausing for approval. <link>See safe use tips</link>": "<bold>“无需询问即可行动”已开启。</bold>Claude 在工作、使用连接器和浏览网页时不会暂停以等待批准。<link>查看安全使用提示</link>",
    "<bold>Act without asking is on.</bold> Claude works, uses connectors, and controls apps on your computer without pausing for approval. <link>See safe use tips</link>": "<bold>“无需询问即可执行”已开启。</bold> Claude 会在不暂停等待批准的情况下工作、使用连接器并控制你电脑上的应用。<link>查看安全使用提示</link>",
    "<bold>Act without asking is on.</bold> Claude works, uses connectors, browses the web, and controls apps on your computer without pausing for approval. <link>See safe use tips</link>": "<bold>“无需询问直接执行”已开启。</bold> Claude 会工作、使用连接器、浏览网页,并控制你电脑上的应用,而不会暂停等待批准。<link>查看安全使用提示</link>",
    "<bold>Auto mode:</bold> Claude can take actions without asking, including modifying or deleting files. <link>See safe use tips</link>": "<bold>自动模式:</bold> Claude 可以不经询问就采取操作,包括修改或删除文件。<link>查看安全使用提示</link>",
    "<bold>Bypass permissions mode:</bold> Claude can take actions without asking, including modifying or deleting files. <link>See safe use tips</link>": "<bold>绕过权限模式:</bold> Claude 可以不经询问就采取操作,包括修改或删除文件。<link>查看安全使用提示</link>",
    "<bold>High risk:</bold> Claude can act anywhere on the internet, which could put your data at risk. <link>See safe use tips</link>": "<bold>高风险:</bold>Claude 可以在互联网上的任意位置执行操作,这可能会让你的数据面临风险。<link>查看安全使用提示</link>",
    "<bold>High risk:</bold> Claude can use connectors, browse the web, and control apps without asking. This could put your data at risk. <link>See safe use tips</link>": "<bold>高风险:</bold>Claude 可以在不询问的情况下使用连接器、浏览网页和控制应用。这可能会使你的数据面临风险。<link>查看安全使用提示</link>",
    "<bold>Important:</bold> Migrating an organization from Team to Enterprise via this pathway is not reversible; please ensure that an Enterprise plan is the right fit for your organization before initiating this change.": "<bold>重要提示:</bold> 通过此路径将组织从 Team 方案迁移至 Enterprise 方案是不可逆的;在启动此变更前,请确保 Enterprise 方案适合您的组织。",
    "<bold>Review this prompt and its length carefully before approving.</bold>": "<bold>在批准前请仔细确认此提示词及其长度。</bold>",
    "<bold>{repo}</bold> can't be used as a plugin marketplace.": "<bold>{repo}</bold> 不能用作插件市场。",
    "<button>Authenticate</button> to export to Google Drive": "<button>身份验证</button>以导出至 Google 云端硬盘",
    "<button>Authenticate</button> to paste link as attachment": "<button>认证</button> 以粘贴链接作为附件",
    "<button>Connect Google Drive</button> to show document titles": "<button>连接 Google 云端硬盘</button> 以显示文档标题",
    "<format>Anthropic’s</format> <legalLink>Usage Policy</legalLink> <format>prohibits using Claude for harm, like producing violent, abusive, or deceptive content.</format>": "<format>Anthropic 的</format> <legalLink>使用政策</legalLink> <format>禁止使用 Claude 进行伤害行为,例如制作暴力、虐待或欺骗性内容。</format>",
    "<format>{count}</format> selected": "已选 <format>{count}</format> 个",
    "<learnMoreLink>Learn more</learnMoreLink> about Anthropic Interviewer and read about <privacyLink>our privacy policy</privacyLink>.": "<learnMoreLink>了解更多</learnMoreLink>关于 Anthropic Interviewer,并阅读<privacyLink>我们的隐私政策</privacyLink>。",
    "<learnMoreLink>Learn more</learnMoreLink> and read the <termsLink>Consumer Terms</termsLink> and <privacyLink>Privacy Policy</privacyLink>.": "<learnMoreLink>详细了解</learnMoreLink>并阅读<termsLink>消费者条款</termsLink>和<privacyLink>隐私政策</privacyLink>。",
    "<link>Authorize SSO on GitHub</link> to use repos from {orgs}": "<link>在 GitHub 上授权 SSO</link> 以使用来自 {orgs} 的仓库",
    "<link>Connect to {hostname}</link> to access its repositories": "<link>连接到 {hostname}</link> 以访问其仓库",
    "<link>Contact our Support team</link> team to request the deletion of your organization and its associated data.": "<link>联系我们的支持团队</link>以申请删除您的组织及其相关数据。",
    "<link>Download Git for Windows</link>, or set the {envVar} environment variable to the full path of bash.exe from your Git for Windows install, then restart the app.": "<link>下载 Git for Windows</link>,或者将 {envVar} 环境变量设置为 Git for Windows 安装目录下 bash.exe 的完整路径,然后重启应用。",
    "<link>Download Git for Windows</link>, or set the {envVar} environment variable to your git executable, then restart the app.": "<link>下载 Windows 版 Git</link>,或将 {envVar} 环境变量设置为您的 git 可执行文件,然后重启应用。",
    "<link>Install the Claude GitHub app</link> to access private repositories": "<link>安装 Claude GitHub 应用</link>以访问私有仓库",
    "<link>Install the GitHub App on {hostname}</link> to access its private repositories": "<link>在 {hostname} 上安装 GitHub App</link> 以访问其私有仓库",
    "<link>Pay your invoice</link> to restore access.": "<link>支付您的发票</link>以恢复访问。",
    "<link>Report an issue</link> if this session is stuck and not responding.": "如果此会话卡住且无响应,请<link>报告问题</link>。",
    "<link>Sign in with GitHub</link>. Each user must connect to be able to access team memories.": "<link>使用 GitHub 登录</link>。每个用户必须连接才能访问团队记忆。",
    "<link>Upgrade</link> to use Claude in Microsoft Office": "<link>升级</link>以在 Microsoft Office 中使用 Claude",
    "<link>View your usage details</link>.": "<link>查看您的用量详情</link>。",
    "<member></member> will immediately lose access to this team": "<member></member> 将立即失去对此团队的访问权限",
    "<name>Try {feature}</name> — {description}": "<name>试用 {feature}</name> — {description}",
    "<p>From {price}</p>": "<p>从 {price} 起</p>",
    "<s>Add to your</s> <b>{name}</b> <s>project?</s>": "<s>添加到你的</s> <b>{name}</b> <s>项目中?</s>",
    "<s>Create a</s> <b>{name}</b> <s>project?</s>": "<s>创建一个</s> <b>{name}</b> <s>项目?</s>",
    "<span1>Accepting as</span1> <span2>{email}</span2>": "<span1>以此身份接受</span1> <span2>{email}</span2>",
    "<span1>Joining as</span1> <span2>{email}</span2>": "<span1>正以</span1> <span2>{email}</span2> <span1>身份加入</span1>",
    "<span>Learn more</span> about how your data is used.": "<span>了解更多</span>关于您的数据如何被使用的信息。",
    "<span>Learn more</span> about how your team manages your data.": "<span>详细了解</span>您的团队如何管理您的数据。",
    "<strong>Note:</strong> After adding the TXT record, use the ‘Refresh’ button to check the verification status.": "<strong>注意:</strong>添加 TXT 记录后,请使用“刷新”按钮检查验证状态。",
    "<strong>Note:</strong> Make sure you have permission to record the meeting. Claude will appear as a participant named ‘Claude Assistant’ in the call.": "<strong>注意:</strong> 请确保您有权录制会议。Claude 将以名为 “Claude Assistant” 的参会者身份出现在通话中。",
    "<title>Work with Claude, right on your computer</title>Claude can work with your files, browse in Chrome, and use any connectors you've set up. You can also send tasks from the Claude mobile app — Claude will keep working as long as your computer stays awake.": "<title>直接在您的电脑上与 Claude 协作</title>Claude 可以处理您的文件,在 Chrome 中浏览,并使用您已设置的任何连接器。您还可以通过 Claude 移动应用发送任务——只要您的电脑保持唤醒,Claude 就会持续工作。",
    "<title>Work with Claude, right on your computer</title>Claude can work with your files, browse in Chrome, and use connectors. Dispatch a task or a code session from the mobile app, and Claude will keep working as long as your computer stays awake.": "<title>直接在您的电脑上与 Claude 协作</title>Claude 可以处理您的文件、在 Chrome 中浏览并使用连接器。从移动端应用分派任务或代码会话,只要您的电脑处于唤醒状态,Claude 就会持续工作。",
    "<top>{currencyPrefix}/ month</top><bot>billed annually{maybeAsterix}{taxSuffix}</bot>": "<top>{currencyPrefix}/ 月</top><bot>按年计费{maybeAsterix}{taxSuffix}</bot>",
    "<top>{currencyPrefix}/ month</top><bot>billed monthly{maybeAsterix}{taxSuffix}</bot>": "<top>{currencyPrefix}/ 月</top><bot>按月计费{maybeAsterix}{taxSuffix}</bot>",
    "<top>{currencyPrefix}/ seat / month</top><bot>billed annually{maybeAsterix}{taxSuffix}</bot>": "<top>{currencyPrefix}/ 每个席位 / 月</top><bot>按年计费{maybeAsterix}{taxSuffix}</bot>",
    "<top>{currencyPrefix}/ seat / month</top><bot>billed monthly{maybeAsterix}{taxSuffix}</bot>": "<top>{currencyPrefix}/ 席位 / 月</top><bot>按月计费{maybeAsterix}{taxSuffix}</bot>",
    "@ {team}": "@ {team}",
    "A Claude gift membership gives someone access to Claude Max for a set period of time. They'll get all the benefits of a paid subscription, including access to our latest models, Claude Code, and unlimited projects.": "Claude 礼品会员可让某人在指定时间内使用 Claude Max。他们将获得付费订阅的全部权益,包括访问我们的最新模型、Claude Code 和无限项目。",
    "A Claude gift membership gives someone access to Claude Pro for a set period of time. They'll get all the benefits of a paid subscription, including access to our latest models, Claude Code, and unlimited projects.": "Claude 礼品会员可让某人在一段固定时间内使用 Claude Pro。他们将获得付费订阅的全部权益,包括访问我们的最新模型、Claude Code 和无限项目。",
    "A Claude gift membership gives someone access to Claude Pro or Claude Max for a set period of time. They'll get all the benefits of a paid subscription, including access to our latest models, Claude Code, and unlimited projects.": "Claude 礼金会员资格可以让某人在固定期限内获得 Claude Pro 或 Claude Max 的访问权限。他们将获得付费订阅的所有福利,包括访问我们的最新模型、Claude Code 和无限制项目。",
    "A Cowork agent is already running on another device. Quit the Claude app there, then restart this one to take over.": "另一台设备上已有一个 Cowork 代理正在运行。请退出那里的 Claude 应用,然后重新启动此应用以接管。",
    "A Cowork agent is already running on {machineName}. Quit the Claude app on that device, then restart this one to take over.": "另一名为 {machineName} 的设备上已有一个 Cowork 代理正在运行。请退出该设备上的 Claude 应用,然后重新启动此应用以接管。",
    "A GitHub <code>owner/repo</code> or a git repository URL.": "GitHub 的 <code>owner/repo</code> 或 git 仓库 URL。",
    "A URL reviewers can use to connect to a test instance of your server. Can be the same as your production URL.": "供审核人员连接到你服务器测试实例的 URL。可以与生产环境 URL 相同。",
    "A Windows feature needs to be enabled to give Claude a secure workspace.": "需要启用 Windows 功能以给 Claude 提供安全的工作区。",
    "A Windows system library is missing. Reinstall Claude Desktop or repair the Visual C++ Redistributable.": "缺少 Windows 系统库。请重新安装 Claude Desktop 或修复 Visual C++ Redistributable。",
    "A bit longer, thanks for your patience...": "稍长一点,感谢您的耐心等待...",
    "A bit more {attribute}": "多一点 {attribute}",
    "A boolean CEL expression ANDed with the structured match above. Use for predicates the match fields can't express.": "一个与上述结构化匹配条件做 AND 运算的布尔 CEL 表达式。用于匹配字段无法表达的谓词。",
    "A brainstorming tool that helps teams generate planning ideas based on Claude’s understanding of the company and product": "一个头脑风暴工具,基于 Claude 对公司和产品的理解,帮助团队生成规划创意",
    "A configuration was found on this device.": "在此设备上发现了一个配置。",
    "A conversation on": "对话关于",
    "A dedicated place for ongoing work, where context builds over time. Files and instructions stay in a folder on your computer.": "一个专门用于持续工作的场所,上下文会随时间不断积累。文件和指令保存在您电脑上的文件夹中。",
    "A descriptive name to identify this key.": "用于识别此密钥的描述性名称。",
    "A diagnostic report, only if you explicitly choose “Send to Anthropic”": "诊断报告,仅当你明确选择“发送给 Anthropic”时才会生成",
    "A documented data-retention and deletion policy is in place": "已制定成文的数据保留和删除政策",
    "A download link will be sent to your email. Link expires in 24 hours.": "下载链接将发送到您的邮箱。链接有效期为 24 小时。",
    "A few things for you to review": "有几件事需要您审核",
    "A few things to know": "须知事项",
    "A few things to know, plus one setting to review": "一些需要了解的事情,以及一个需要审查的设置",
    "A friendly name for this SSH connection": "用于识别此 SSH 连接的友好名称",
    "A gift for you": "送您的礼品",
    "A government-issued photo ID": "政府签发的带照片的身份证件",
    "A helping hand across all your tabs": "全标签页的得力助手",
    "A key metric moved unexpectedly. I'll share the metric, the change, and timeframe; help me list plausible causes and how to test each one.": "某个关键指标出现了意外变化。我会提供指标、变化情况和时间范围;请帮我列出可能原因以及如何验证每一种。",
    "A month": "一个月",
    "A morning rundown of what's on your plate and what changed overnight": "早晨概览:你今天要处理的事项以及昨夜发生的变化",
    "A new Artifact must be created.": "必须创建一个新的构件 (Artifact)。",
    "A new Claude Code experience is available": "全新的 Claude Code 体验现已可用",
    "A new version of Claude Desktop is ready to install.": "新版本的 Claude Desktop 已准备好安装。",
    "A note is required for this dismissal reason.": "使用此忽略理由时必须填写备注。",
    "A pending update for the Claude desktop app has a known issue that may cause crashes. Download the latest version instead.": "Claude 桌面应用程序的一个待定更新存在已知问题,可能导致崩溃。请下载最新版本。",
    "A plugin named \"{pluginName}\" is already installed from the {source} marketplace. This will overwrite the current version with your local copy.": "一个名为 \"{pluginName}\" 的插件已经从 {source} 市场安装。这将用你的本地副本覆盖当前版本。",
    "A plugin named \"{pluginName}\" is already installed. This will overwrite the current version with your local copy.": "名为 “{pluginName}” 的插件已安装。这会用您的本地副本覆盖当前版本。",
    "A pool groups runners that pick up sessions for your org. You'll get a key to authenticate your runners.": "资源池汇集了为您的组织接管会话的执行器(Runners)。您将获得一个密钥用于验证执行器身份。",
    "A project for developing academic research, where Claude helps identify key themes in your research, create structured outlines, and provide feedback to improve your drafts.": "一个用于开展学术研究的项目,Claude 可帮助识别您研究中的关键主题、创建结构化大纲并提供反馈以改进您的草稿。",
    "A project for exploring career opportunities, where Claude helps match your skills to potential careers, improve your resume, and develop personalized roadmaps for professional growth.": "一个探索职业机会的项目,Claude 可帮助您将技能与潜在职业匹配,改进简历,并为职业成长制定个性化路线图。",
    "A project for studying your course materials, where Claude helps visualize key concepts, build comprehensive study guides, and tutor you according to your learning needs.": "一个研究课程材料的项目,Claude 可帮助可视化关键概念,建立全面的学习指南,并根据您的学习需求进行辅导。",
    "A prompt": "一段提示词",
    "A reference I'll follow so the output matches your style": "我将遵循的参考,以便输出符合您的风格",
    "A scheduled seat change is already pending. Wait for it to apply or cancel it before making another change.": "已有一项预定的席位变更正在等待生效。请等待其应用,或先取消后再进行另一项更改。",
    "A scheduled task named \"{name}\" already exists.": "名为 “{name}” 的计划任务已存在。",
    "A setup or quick-start guide is provided for connecting the server.": "提供了用于连接服务器的设置或快速开始指南。",
    "A shell hook or tool wrote unexpected output. Check your shell startup files and Claude Code hooks for stray stdout writes.": "某个 shell hook 或工具写入了意外输出。请检查你的 shell 启动文件和 Claude Code hooks,查看是否有多余的 stdout 输出。",
    "A short name for this key — e.g. the deployment or service that will use it.": "该密钥的简短名称 — 例如将使用它的部署环境或服务名称。",
    "A short tagline for your connector": "为你的连接器写一句简短标语",
    "A square PNG or SVG, at least 128×128px.": "正方形 PNG 或 SVG,至少 128×128 像素。",
    "A support URL or email address.": "支持 URL 或邮箱地址。",
    "A support channel (email, forum, or issue tracker) is documented for users.": "已为用户记录支持渠道(电子邮件、论坛或问题跟踪器)。",
    "A sync is already in progress for this marketplace.": "此市场已经在同步中。",
    "A temporary error occurred during sync. Try re-syncing.": "同步期间发生临时错误。请尝试重新同步。",
    "A temporary error occurred during sync. You can retry.": "同步过程中发生了临时错误。您可以重试。",
    "A visual reflection of time’s passage": "时光流逝的视觉映射",
    "A work email address is required to create an Enterprise account.": "创建 Enterprise 账号需要工作邮箱地址。",
    "A workspace matching your email is available to join.": "有一个匹配您邮箱的工作空间可供加入。",
    "A year": "一年",
    "ACS URL": "ACS URL",
    "ACTIONS": "操作",
    "AI Fluency": "AI 熟练度",
    "AI agents": "AI 智能体",
    "AI assistant for life & work": "面向生活与工作的 AI 助手",
    "AI assistant for life and work": "生活与工作的 AI 助手",
    "AI pair programming inside your IDE.": "在您的 IDE 中进行 AI 结对编程。",
    "AI pair programming inside your editor.": "在您的编辑器中进行 AI 配对编程。",
    "AI platformer game": "AI 平台游戏",
    "AI rhyming clock": "AI 押韵时钟",
    "AI-powered artifacts": "AI 强力驱动的构件",
    "AI-powered artifacts disabled": "AI 驱动的构件已禁用",
    "AI-powered artifacts enabled": "AI 强力驱动的构件已启用",
    "ALL": "全部",
    "API": "API",
    "API Console": "API 控制台",
    "API Error": "API 错误",
    "API Platform": "API 平台",
    "API access": "API 访问",
    "API keys": "API 密钥",
    "API keys and other private values your app needs but shouldn't show in code.": "您的应用需要但不应在代码中显示的 API 密钥和其他私有值。",
    "API keys for bot integrations in your spaces.": "您空间中用于机器人集成的 API 密钥。",
    "API keys for your identity provider to sync group and user information.": "用于同步组和用户信息的身份提供商 API 密钥。",
    "API requests": "API 请求",
    "API scope": "API 范围",
    "API token": "API 令牌",
    "API trigger enabled": "API 触发器已启用",
    "API_KEY": "API_KEY",
    "ASSIGNED ROLE": "分配的角色",
    "AWS": "AWS",
    "AWS Bedrock": "AWS Bedrock",
    "AWS Marketplace Signup": "AWS Marketplace 注册",
    "AWS Marketplace will invoice you for the additional user seats at each applicable rate, prorated through the end of your current subscription and payable in accordance with your AWS Marketplace agreement.": "AWS Marketplace 将按各自适用费率向您开具额外用户席位的发票,按比例计至您当前订阅期结束,并遵循您的 AWS Marketplace 协议进行支付。",
    "AWS Token Expired": "AWS 令牌已过期",
    "AWS credentials": "AWS 凭据",
    "Ability to search the web": "搜索网页的能力",
    "About": "关于",
    "About Anthropic": "关于 Anthropic",
    "About Anthropic Interviewer": "关于 Anthropic 面试官",
    "About group mappings": "关于群组映射",
    "About memory": "关于记忆功能",
    "About project storage": "关于项目存储",
    "Abstract from notes": "从笔记中提炼摘要",
    "Accept": "接受",
    "Accept All Cookies": "接受所有 Cookie",
    "Accept ID tokens with any nonce. This is less secure.": "接受带有任何 nonce 的 ID 令牌。这会降低安全性。",
    "Accept and allow edits": "接受并允许编辑",
    "Accept and auto mode": "接受并自动模式",
    "Accept and bypass permissions": "接受并绕过权限",
    "Accept and enable HIPAA": "接受并启用 HIPAA",
    "Accept edits": "接受编辑",
    "Accept invite": "接受邀请",
    "Accept, allow edits": "接受,允许编辑",
    "Acceptance of these agreements is required for your organization to use Claude.ai": "您的组织需要接受这些协议才能使用 Claude.ai",
    "Accepted risk": "已接受的风险",
    "Accepts all permissions": "接受所有权限",
    "Access": "访问",
    "Access Claude Code terminal interface": "访问 Claude Code 终端界面",
    "Access Cowork and Claude Code to write code, work with your files, and automate tasks.": "访问 Cowork 和 Claude Code 以编写代码、处理文件并自动化任务。",
    "Access Denied": "拒绝访问",
    "Access control": "访问控制",
    "Access denied, request via {source}": "拒绝访问,通过 {source} 申请",
    "Access key ID": "访问密钥 ID",
    "Access managed by your organization": "访问权限由您的组织管理",
    "Access profile information for all members in your organization": "访问您组织中所有成员的个人资料信息",
    "Access request sent": "访问请求已发送",
    "Access restricted by network policy.": "因网络策略限制访问。",
    "Access restricted by network policy. Contact IT Administrator.": "访问受网络策略限制。请联系 IT 管理员。",
    "Access shared data": "访问共享数据",
    "Access to Claude Code": "Claude Code 访问权限",
    "Access to Claude Code and Claude Cowork": "Claude Code 和 Claude Cowork 的访问权限",
    "Access to Claude Opus": "访问 Claude Opus",
    "Access to Claude Opus 4 for complex architectural decisions": "获得 Claude Opus 4 访问权以处理复杂的架构决策",
    "Access to Claude is limited. Please contact your organization’s admin to renew your subscription": "对 Claude 的访问受限。请联系您组织的管理员续订订阅",
    "Access to Claude is limited. To restore full access, renew your subscription": "Claude 的访问权限目前受限。如需恢复完整权限,请续订您的订阅",
    "Access to Claude's best models": "使用 Claude 的最强模型",
    "Access to Research": "访问研究功能",
    "Access to chat features: unlimited Projects, deep Research tools, extended thinking, and more": "聊天功能访问权限:无限项目、深度研究工具、扩展思考等",
    "Access to this repository is forbidden. Check that the Claude Code GitHub App has permission to read it.": "访问此代码仓库被禁止。请检查 Claude Code GitHub App 是否有权限读取它。",
    "Access to this website has been restricted due to rate limits": "由于频率限制,对该网站的访问受到限制",
    "Access to this website is blocked": "对此网站的访问已被屏蔽",
    "Access to this website is blocked by your network egress settings. You can adjust this in <link>Settings</link>.": "访问该网站已被您的网络出口设置拦截。您可以在<link>设置</link>中进行调整。",
    "Access to this website is blocked by your network egress settings. You can enable package-manager access in <link>Settings</link>.": "您的网络出口设置阻止了对此网站的访问。您可以在<link>设置</link>中启用包管理器访问。",
    "Access to this website is blocked by your organization's network egress settings. Ask your administrator to adjust egress settings to allow access to this site.": "对此网站的访问已被您组织的网络出口设置封锁。请咨询您的管理员调整出口设置,以允许访问该站点。",
    "Access was revoked. You can reconnect to re-authorize.": "访问权限已被吊销。您可以重新连接以重新授权。",
    "Access your Anthropic profile information": "访问你的 Anthropic 个人资料信息",
    "Access your Claude Code sessions": "访问您的 Claude Code 会话",
    "Access your profile for Office add-in authentication": "访问您的个人信息以进行 Office 加载项身份验证",
    "Accessibility": "辅助功能",
    "Accessing your accounts or files": "访问您的账号或文件",
    "Account": "账号",
    "Account Access Suspended": "账户访问权限已暂停",
    "Account Already Registered": "账户已注册",
    "Account Ban Appeal Form": "账号封禁申诉表",
    "Account Error": "账户错误",
    "Account admin email": "账户管理员电子邮件",
    "Account deleted": "账户已删除",
    "Account does not exist": "账户不存在",
    "Account info": "账户信息",
    "Account menu": "Account menu",
    "Account mismatch": "账号不匹配",
    "Account preferences updated": "账户偏好已更新",
    "Account reset. Redirecting to onboarding...": "账户已重置。正在重定向到入职引导页面...",
    "Acknowledge & continue": "确认并继续",
    "Acknowledged": "已确认",
    "Acme Inc.": "Acme Inc.",
    "Acme corp": "Acme corp",
    "Across projects": "跨项目",
    "Act": "执行",
    "Act as Claude": "作为 Claude 执行操作",
    "Act as Claude bot on GitHub": "在 GitHub 上作为 Claude 机器人运行",
    "Act without asking": "无需询问直接执行",
    "Act without asking in Chrome": "在 Chrome 中无需询问直接执行",
    "Act without asking?": "无需询问直接执行?",
    "Acting on sexual urges involving children can end your career. If you are worried about your behavior, you are not alone. Stop It Now offers anonymous, confidential support.": "针对涉及儿童的性冲动采取行动可能会毁掉您的职业生涯。如果您对自己的行为感到担忧,您并不孤单。‘Stop It Now’ 提供匿名且保密的支持。",
    "Action": "操作",
    "Action ‘{action}’ for extension ‘{extensionId}’ (not yet implemented)": "扩展程序“{extensionId}”的操作“{action, un-translated}”(尚未实现)",
    "Actioned Experiences": "已执行的体验",
    "Actions": "操作",
    "Actions mode": "操作模式",
    "Activating research mode...": "正在激活研究模式...",
    "Active": "活跃",
    "Active Claude Code users in this period": "此期间活跃的 Claude Code 用户",
    "Active days": "活跃天数",
    "Active insights": "活动洞察",
    "Active keys": "活动密钥",
    "Active loops": "活动中的循环",
    "Active members by seat tier. Unassigned members do not count towards your seat usage.": "各等级席位的活跃成员。未分配成员不计入您的席位用量。",
    "Active now": "当前活跃",
    "Active overrides": "活动中的覆盖项",
    "Active sessions": "活跃会话",
    "Active tasks": "活跃任务",
    "Active users": "活跃用户",
    "Active users (30d)": "活跃用户(30 天)",
    "Activity": "活动",
    "Actually change your subscription tier via Stripe.": "实际通过 Stripe 更改您的订阅等级。",
    "Actually change your subscription tier via Stripe. <warning>Make sure the Stripe webhook listener is running for this to work properly.</warning>": "实际通过 Stripe 更改您的订阅等级。<warning>请确保 Stripe Webhook 监听器正在运行,以便此操作正常执行。</warning>",
    "Ad online": "在线广告",
    "Ad-free chats": "无广告聊天",
    "Ad-free chats:": "无广告聊天:",
    "Adaptive": "自适应",
    "Adaptive thinking": "自适应思考",
    "Add": "添加",
    "Add \"{skillName}\" to your library?": "将 \"{skillName}\" 添加到您的库中?",
    "Add Canvas Instance": "添加 Canvas 实例",
    "Add Claude to Call": "将 Claude 添加到通话中",
    "Add Claude to another meeting for {projectName}. The transcript will be added to this project.": "将 Claude 添加到 {projectName} 的另一个会议。转录内容将添加到此项目。",
    "Add Claude to your video calls. Claude will join the meeting, transcribe the conversation, and help you with notes, action items, and follow-ups.": "将 Claude 添加到您的视频会议中。Claude 将加入会议、转录对话并帮您记录笔记、待办事项和后续跟进。",
    "Add Content": "添加内容",
    "Add DOCX, XLSX, and PPTX files that it creates directly to Google Drive": "将它直接创建的 DOCX、XLSX 和 PPTX 文件添加到 Google 云端硬盘",
    "Add Domain": "添加域名",
    "Add GitHub Enterprise Server": "添加 GitHub Enterprise 服务器",
    "Add Group": "添加分组",
    "Add Group to {roleName}": "将组添加至 {roleName}",
    "Add Group to {tierName}": "将分组加入 {tierName}",
    "Add IP range": "添加 IP 范围",
    "Add PDFs, documents, or other text to reference in this project.": "添加 PDF、文档或其他文本以在此项目中参考。",
    "Add Role Mapping": "添加角色映射",
    "Add SSH connection": "添加 SSH 连接",
    "Add SSH host…": "添加 SSH 主机…",
    "Add Seat Tier Mapping": "添加席位等级映射",
    "Add Tools": "添加工具",
    "Add a GitHub remote to create a pull request": "添加 GitHub 远程仓库以创建拉取请求",
    "Add a card": "添加卡片",
    "Add a card so your Claude {tierName} plan renews automatically starting {date}.": "添加一张卡片,以便您的 Claude {tierName} 方案从 {date} 开始自动续费。",
    "Add a comment or send to Claude": "添加评论或发送给 Claude",
    "Add a comment to line {lineNumber}": "为第 {lineNumber} 行添加评论",
    "Add a comment…": "添加评论…",
    "Add a filter condition": "添加筛选条件",
    "Add a folder to this project first.": "首先向此项目添加一个文件夹。",
    "Add a link": "添加链接",
    "Add a local remote control": "添加本地远程控制",
    "Add a new extension to the directory": "向目录添加新扩展程序",
    "Add a note": "添加备注",
    "Add a note to accept this risk.": "添加备注以接受此风险。",
    "Add a payment method": "添加付款方式",
    "Add a repository": "添加代码仓库",
    "Add a repository to configure permissions.": "添加仓库以配置权限。",
    "Add a review comment": "添加评审评论",
    "Add a site": "添加站点",
    "Add a suggestion to lines {startLine}-{endLine}": "为第 {startLine} 至 {endLine} 行添加建议",
    "Add all members": "添加所有成员",
    "Add an API Key": "添加 API 密钥",
    "Add and manage MCP servers that you’re working on. ": "添加并管理您正在开发的 MCP 服务器。",
    "Add and press Enter": "添加后按 Enter",
    "Add another": "添加另一个",
    "Add another condition": "添加另一个条件",
    "Add another folder": "添加另一个文件夹",
    "Add another site": "添加另一个站点",
    "Add another trigger": "添加另一个触发器",
    "Add app": "添加应用",
    "Add at least one IP range below before enabling": "启用前请至少在下方添加一个 IP 范围",
    "Add at least one IP range below before enabling.": "在启用前,请在下方添加至少一个 IP 范围。",
    "Add at least one mapping to continue.": "至少添加一个映射以继续。",
    "Add at least one site, or turn off Claude in Chrome.": "至少添加一个站点,或在 Chrome 中关闭 Claude。",
    "Add at least one trigger to create": "至少添加一个触发器以创建",
    "Add cloud environments that run on self-hosted infrastructure for your organization. <link>Learn more</link>": "为您的组织添加运行在自托管基础设施上的云环境。<link>了解更多</link>",
    "Add cloud environment…": "添加云环境…",
    "Add comment": "添加评论",
    "Add comment to this block": "为此区块添加评论",
    "Add comment...": "添加评论...",
    "Add configuration": "添加配置",
    "Add connector": "添加连接器",
    "Add connector to your team?": "将连接器添加到你的团队?",
    "Add connectors": "添加连接器",
    "Add content ({maxUploads} max, {maxSize}mb each)\\nAccepts pdf, txt, csv, etc.": "添加内容(最多 {maxUploads} 个,每个最大 {maxSize}MB)\\n接受 pdf, txt, csv 等格式。",
    "Add content from outline": "根据大纲添加内容",
    "Add context": "添加背景信息",
    "Add context Claude remembers": "添加 Claude 记住的内容",
    "Add context from all your docs more easily": "更轻松地从您所有的文档中添加背景信息",
    "Add credential": "添加凭据",
    "Add custom connector": "添加自定义连接器",
    "Add custom extension": "添加自定义扩展程序",
    "Add custom skills and tools tailored to your work.": "添加为您工作量身定制的技能和工具。",
    "Add desktop extensions": "添加桌面扩展程序",
    "Add domain": "添加域名",
    "Add egress credential": "添加出口凭据",
    "Add email to {label}": "将电子邮件添加到 {label}",
    "Add environment": "添加环境",
    "Add files": "添加文件",
    "Add files or photos": "添加文件或照片",
    "Add files, connectors, and more": "添加文件、连接器等",
    "Add folder": "添加文件夹",
    "Add folder to session": "将文件夹添加到会话",
    "Add folder...": "添加文件夹...",
    "Add folders": "添加文件夹",
    "Add from {drive}": "从 {drive} 添加",
    "Add from {github}": "从 {github} 添加",
    "Add from {server}": "从 {server} 添加",
    "Add group spend limit": "添加分组支出限额",
    "Add groups": "添加分组",
    "Add header": "添加标头",
    "Add image": "添加图片",
    "Add images": "添加图片",
    "Add images and more": "添加图片等内容",
    "Add individually": "单独添加",
    "Add instructions for Claude to follow in all Cowork sessions...": "添加供 Claude 在所有 Cowork 会话中遵循的指令...",
    "Add instructions to tailor Claude’s responses": "添加说明以定制 Claude 的回答",
    "Add lab members now or invite them later from settings. All invites must use <domain>@{emailDomain}.</domain>": "现在添加实验室成员或稍后从设置中邀请他们。所有邀请必须使用 <domain>@{emailDomain}。</domain>",
    "Add manually": "手动添加",
    "Add marketplace": "添加市场",
    "Add meeting rooms to existing events": "为现有日程添加会议室",
    "Add member": "添加成员",
    "Add members": "添加成员",
    "Add members by email": "按邮箱添加成员",
    "Add members by name or email": "按姓名或邮箱添加成员",
    "Add members by name or email...": "按姓名或邮箱添加成员...",
    "Add more": "添加更多",
    "Add more data sources": "添加更多数据源",
    "Add multiple sites separated by commas or new lines": "添加多个站点,用逗号或换行分隔",
    "Add new member": "添加新成员",
    "Add new members": "添加新成员",
    "Add or change seats": "添加或更改座位",
    "Add or edit domains": "添加或编辑域名",
    "Add or edit ranges": "添加或编辑范围",
    "Add or remove members automatically as your directory changes. Your org always stays current.": "随着目录变化自动添加或移除成员。您的组织始终保持最新。",
    "Add payment method": "添加支付方式",
    "Add plugin": "添加插件",
    "Add plugins": "添加插件",
    "Add plugins...": "添加插件...",
    "Add plugins…": "添加插件…",
    "Add pre-built knowledge for your field.": "为您所在的领域添加预置的知识。",
    "Add project": "添加项目",
    "Add project context from \"{projectName}\"?": "从\"{projectName}\"添加项目上下文?",
    "Add prompt": "添加提示",
    "Add read replica hostnames to distribute read traffic.": "添加读取副本主机名以分配读取流量。",
    "Add ready-made tools and workflows": "添加现成的工具和工作流",
    "Add reference materials": "添加参考资料",
    "Add relevant context for your project": "为您的项目添加相关背景",
    "Add remote control": "添加远程控制",
    "Add replica": "添加副本",
    "Add repository": "添加仓库",
    "Add review comment": "添加评审意见",
    "Add review comment on selection": "对所选内容添加审查评论",
    "Add rule": "添加规则",
    "Add schedule": "添加计划",
    "Add scheduled task": "添加计划任务",
    "Add seats": "增加席位",
    "Add seats anytime. Remove seats at your annual renewal. {editLink}": "可随时增加席位。仅可于年度续订时减少席位。{editLink}",
    "Add secret": "添加机密变量",
    "Add self-hosted environment": "添加自托管环境",
    "Add settings": "添加设置",
    "Add sites to allow": "添加要允许的站点",
    "Add sites to block": "添加要屏蔽的站点",
    "Add skill": "添加技能",
    "Add skills to extend Claude's capabilities. <link>Learn more</link>": "添加技能以扩展 Claude 的能力。<link>了解更多</link>",
    "Add spend limit": "添加支出限额",
    "Add split": "添加拆分",
    "Add suggestion to line": "为该行添加建议",
    "Add suggestion to line {lineNumber}": "向第 {lineNumber} 行添加建议",
    "Add teammates now or invite them later from settings. All invites must use <domain>@{emailDomain}.</domain>": "现在添加队友或稍后在设置中邀请。所有邀请必须使用 <domain>@{emailDomain}.</domain>",
    "Add teammates to continue": "添加队友以继续",
    "Add text content": "添加文本内容",
    "Add this TXT record to {domain}.": "将此 TXT 记录添加到 {domain}。",
    "Add this plugin to use this skill": "添加此插件以使用此技能",
    "Add to Chrome": "添加到 Chrome",
    "Add to an existing marketplace": "添加到现有的市场",
    "Add to an existing marketplace (no marketplaces yet)": "添加到现有市场(目前还没有市场)",
    "Add to chat": "添加到聊天",
    "Add to existing project": "添加到现有项目",
    "Add to global blocklist": "添加到全局阻止列表",
    "Add to library": "添加到库",
    "Add to memory": "添加到记忆",
    "Add to project": "添加到项目",
    "Add to project knowledge or share your chats to spark ideas, learn from teammates, and discover how your team uses Claude.": "添加到项目知识库或分享您的聊天以激发布发灵感,向队友学习并发现您的团队如何使用 Claude。",
    "Add to this session": "添加到此会话",
    "Add to your team": "添加到您的团队",
    "Add tone, formatting, or rules to guide how Claude works.": "添加语调、格式或规则来引导 Claude 如何工作。",
    "Add trigger": "添加触发器",
    "Add two service principals in Microsoft Graph Explorer": "在 Microsoft Graph Explorer 中添加两个服务主体",
    "Add upstream credential": "添加上游凭据",
    "Add usage credits": "添加用量额度",
    "Add webhook": "添加 webhook",
    "Add websites": "添加网站",
    "Add with errors": "带错添加/忽略错误并添加",
    "Add writing example": "添加写作示例",
    "Add your everyday tools and apps to get the best out of Claude": "添加您的日常工具和应用,以充分利用 Claude",
    "Add your own": "添加您自己的",
    "Add {count, plural, one {folder} other {folders}}": "添加 {count, plural, one {文件夹} other {文件夹}}",
    "Add {type}": "添加 {type}",
    "Added": "已添加",
    "Added by": "添加人:",
    "Added by you": "由您添加",
    "Added by your admin": "由您的管理员添加",
    "Added just now": "刚刚添加",
    "Added seats and tier upgrades apply now and are prorated below.": "新增席位和套餐升级立即生效,以下为按比例计费。",
    "Adding Enterprise Server repositories is coming soon.": "添加 Enterprise Server 代码仓库的功能即将推出。",
    "Adding Gmail helps me connect the dots for you across your communications:": "添加 Gmail 能够帮我为您串联起沟通中的各项要点:",
    "Adding Google Calendar helps me connect the dots for you across your schedule and commitments:": "添加 Google 日历可以帮助我为您梳理日程和承诺:",
    "Adding Google Drive helps me connect the dots for you across your documents and files:": "添加 Google 云端硬盘能够帮我为您串联起各种文档和文件:",
    "Adding credit to your account...": "正在向您的帐号充值...",
    "Adding {name} will make it available to everyone in your organization, not just this plugin.": "添加 {name} 后,它将对你组织中的所有人可用,而不仅仅是这个插件。",
    "Adding...": "添加中...",
    "Additional allowed domains": "其他允许的域名",
    "Additional cost:": "额外成本:",
    "Additional features": "附加功能",
    "Additional information": "补充信息",
    "Additional runs will use {extraUsageLink}.": "额外运行将使用 {extraUsageLink}。",
    "Additional setup needed": "需要额外设置",
    "Address these review comments": "处理这些审查评论",
    "Addresses": "地址",
    "Adds a theme toggle and a dark palette that mirrors your existing colors, then sweeps every surface to make sure it responds. If you already have dark mode, this audits for anything that doesn't switch correctly.": "添加主题切换功能和镜像现有色彩的深色调色板,并全面检查确保每个界面都能正确响应。如果您已启用深色模式,此操作将审核未能正确切换的元素。",
    "Adds a theme toggle and a dark palette that mirrors your existing colors, then sweeps every surface to make sure it responds. If you already have dark mode, this audits for anything that doesn’t switch correctly.": "添加主题切换和镜像现有颜色的深色调色板,然后扫描每个表面以确保其响应。如果您已经有深色模式,这将审核任何未正确切换的内容。",
    "Add…": "添加…",
    "Adjust auto-reload": "调整自动重载",
    "Adjust limit": "调整限制",
    "Adjust plan": "调整方案",
    "Adjust seats": "调整席位",
    "Adjust the default limits for each user type": "调整每类用户类型的默认限额",
    "Adjust usage": "调整用量",
    "Adjusted seats": "调整后的席位",
    "Adjustments": "调整",
    "Admin": "管理员/后台管理",
    "Admin controls for connectors and desktop deployment": "连接器和桌面部署的管理员控制",
    "Admin controls for remote and local connectors": "远程与本地连接器的管理员控制",
    "Admin email": "管理员邮箱",
    "Admin permissions in both Canvas and Claude": "Canvas 和 Claude 中的管理员权限",
    "Administrators may re-enable certain non-covered features from the admin console. If re-enabled, your organization is solely responsible for ensuring that its Workforce does not use those features to process PHI and otherwise uses them in compliance with applicable legal obligations. See the Implementation Guide for configuration requirements, workforce training, and the full list of Eligible Services.": "管理员可以在管理控制台中重新启用某些未被覆盖的功能。如果重新启用,你的组织将全权负责确保其员工不会使用这些功能处理 PHI,并确保其余使用符合适用法律义务。有关配置要求、员工培训以及完整的合格服务列表,请参阅实施指南。",
    "Adoption": "采用情况",
    "Advanced Calculators and Conversion Tools Powered by Claude AI": "由 Claude AI 驱动的先进计算器和转换工具",
    "Advanced SCIM provisioning is enabled. Seat types and roles are managed through your identity provider.": "高级 SCIM 配置已启用。席位类型和角色将通过您的身份提供商进行管理。",
    "Advanced options": "高级选项",
    "Advanced settings": "高级设置",
    "Advanced: CEL condition": "高级:CEL 条件",
    "After clicking, you can close this tab and return to Canvas.": "点击后,您可以关闭此标签页并返回 Canvas。",
    "After editing code, Claude will automatically start the preview server, verify changes, and share proof before completing its response. This setting is saved in .claude/launch.json for this project.": "编辑代码后,Claude 将自动启动预览服务器、验证更改并在完成响应前分享证明。此设置保存在此项目的 .claude/launch.json 中。",
    "After enabling, your workspace will be limited to the Eligible Services defined in the BAA and Implementation Guide. Products and features that are not Eligible Services (including MCPs, Claude in Chrome, Cowork, and beta features) will be disabled by default for all members of your organization.": "启用后,你的工作区将仅限于 BAA 和实施指南中定义的合格服务。不属于合格服务的产品和功能(包括 MCP、Claude in Chrome、Cowork 和 Beta 功能)将默认对组织中的所有成员禁用。",
    "After every push": "每次推送后",
    "After saving, you'll get a token and a curl snippet on the routine detail page. Send a POST request whenever you want it to run.": "保存后,您将在例程详情页面上获得一个令牌和一个 curl 代码片段。随时发送 POST 请求以运行它。",
    "After you submit, our team will review your server's connection details, listing content, and data-handling practices. You'll receive an email at your primary contact address when the review is complete or if we need anything else from you. Approved servers are published to the directory and become connectable immediately.": "提交后,我们的团队将审核你服务器的连接详情、上架内容和数据处理实践。审核完成后,或如果我们还需要你提供其他信息,我们会向你的主要联系邮箱发送邮件。获批的服务器会发布到目录中,并可立即连接。",
    "After your admin completes these steps, you and your team members will be able to connect individual Microsoft 365 accounts.": "在您的管理员完成这些步骤后,您和您的团队成员将能够连接个人的 Microsoft 365 账户。",
    "Afternoon": "下午",
    "Afternoon, {name}": "下午好,{name}",
    "Agent": "代理",
    "Agent couldn't be created. You can try again.": "无法创建智能体。您可以重试。",
    "Agent name": "智能体名称",
    "Agent prompt": "智能体提示词",
    "Agent settings": "智能体设置",
    "Agentic AI can put your data at risk.": "代理式 AI 可能会危及您的数据安全。",
    "Agentic AI can put your data at risk; make sure you review Claude's internet access settings.": "代理式 AI 可能会使您的数据面临风险;请确保查看 Claude 的互联网访问设置。",
    "Agents": "智能体",
    "Agents settings": "智能体设置",
    "Agree": "同意",
    "Agree & Deploy": "同意并部署",
    "Agree to the terms below to continue.": "同意以下条款以继续。",
    "Agree to the terms to continue": "同意条款以继续",
    "Albert Einstein": "阿尔伯特·爱因斯坦",
    "Alex Johnson": "Alex Johnson",
    "All": "全部",
    "All ({count})": "全部 ({count})",
    "All Branches": "所有分支",
    "All Claude Models": "所有 Claude 模型",
    "All Claude features, plus more usage than Pro*": "包含 Claude 所有功能,此外用量比 Pro 方案更多*",
    "All Claude features, plus more usage*": "所有 Claude 功能,外加更多使用量*",
    "All Console Organizations <em>can</em> join a Parent Organization, but you may want to not add these single members ones in order to restrict the number of accounts with permission to modify Global SSO Settings.": "所有 Console 组织 *可以* 加入父组织,但您可能不希望添加这些单一成员的组织,以限制具有修改全局 SSO 设置权限的账户数量。",
    "All Enterprise plans are annual contracts, and payments are due net 30.": "所有 Enterprise 方案均为年度合同,付款期限为 30 天。",
    "All Organizations": "所有组织",
    "All Projects": "所有项目",
    "All Repositories": "所有仓库",
    "All Team features, plus:": "Team 方案的所有功能,以及:",
    "All activity": "所有活动",
    "All available": "全部可用",
    "All categories": "所有类别",
    "All caught up": "已是最新",
    "All chats": "所有聊天",
    "All checks passed": "所有检查均已通过",
    "All checks passed.": "所有检查均已通过。",
    "All clear": "一切正常",
    "All conditions must match for the routine to fire.": "所有条件都必须匹配才能触发例程。",
    "All connected integrations are included by default. Remove any you don't need for this task.": "默认包含所有已连接的集成。请移除此任务不需要的集成。",
    "All connected runners are locked to other accounts. Your autoscaler should spawn fresh runners.": "所有连接的 Runner 已被锁定到其他帐号。您的自动伸缩器应当会生成新的 Runner。",
    "All connectors": "所有连接器",
    "All connectors are on": "所有连接器均已开启",
    "All current members are assigned to this app in your identity provider": "当前所有成员都已在您的身份提供商中分配给此应用",
    "All data is encrypted in transit (TLS / HTTPS)": "所有数据在传输中均已加密(TLS / HTTPS)",
    "All dates and times are shown in UTC. Data is refreshed once per day, so the most recent complete data is typically from the previous day.": "所有日期和时间均以 UTC 显示。数据每天刷新一次,因此最新的完整数据通常来自前一天。",
    "All deploys": "所有部署",
    "All domains": "所有域名",
    "All edits cleared": "所有编辑已清除",
    "All emails have been archived.": "所有邮件已归档。",
    "All extensions": "所有扩展程序",
    "All files cached from GitHub will be permanently deleted from claude.ai.": "所有从 GitHub 缓存的文件将从 claude.ai 中永久删除。",
    "All findings": "所有发现",
    "All for this website": "全部用于此网站",
    "All groups already have spend limits configured.": "所有组都已配置消费限制。",
    "All keyboard shortcuts": "所有键盘快捷键",
    "All listed tools have been invoked and return expected results.": "所有列出的工具都已调用,并返回了预期结果。",
    "All members": "所有成员",
    "All models": "所有模型",
    "All name fields are required": "所有名称字段均为必填",
    "All orgs": "所有组织",
    "All paid plans also include Chat and Claude Code.": "所有付费方案也包含聊天 (Chat) 和 Claude Code。",
    "All paid plans also include Chat and Cowork.": "所有付费计划还包括 Chat 和 Cowork。",
    "All paid plans also include Chat, Cowork, and Claude Code.": "所有付费计划还包含 Chat、Cowork 和 Claude Code。",
    "All products": "所有产品",
    "All project users": "所有项目用户",
    "All projects": "所有项目",
    "All repositories on {hostname} where your organization's GitHub App is installed are shown.": "显示了 {hostname} 上安装了您组织 GitHub App 的所有存储库。",
    "All requirements met": "所有要求均已满足",
    "All roles": "所有角色",
    "All routines": "所有常规任务",
    "All scheduled tasks": "所有计划任务",
    "All sections AND. Values within a section OR. Leave empty to match everything.": "各分区之间为 AND,同一分区内的值为 OR。留空则匹配全部。",
    "All set! Here are a few ideas just for you.": "搞定!这里有几个为您量身定制的创意。",
    "All settings": "所有设置",
    "All severities": "所有严重级别",
    "All slots in use, {queued, plural, one {# session} other {# sessions}} queued. Scale up your runner count or wait for sessions to complete.": "所有插槽都在使用中,{queued, plural, one {# 个会话} other {# 个会话}}已排队。扩展您的运行器数量或等待会话完成。",
    "All statuses": "所有状态",
    "All stored data is encrypted at rest": "所有存储数据在静态时均已加密",
    "All the power of Claude Code, right at home in VS Code, Cursor, or Windsurf.": "Claude Code 的所有强大功能,现已集成在 VS Code、Cursor 或 Windsurf 中。",
    "All third-party connections are documented in the privacy policy": "所有第三方连接均已记录在隐私政策中",
    "All triggers will be paused": "所有触发器都将暂停",
    "All uncommitted changes on <b>{currentBranch}</b> will be permanently lost.": "<b>{currentBranch}</b> 上所有未提交的更改都将永久丢失。",
    "All users connect to the same URL.": "所有用户连接到同一个 URL。",
    "All users in an organization can see and start chats in public projects.": "组织中的所有用户都可以查看并在公开项目中开启聊天。",
    "All users with IdP access will get the user role. Enable to assign roles based on IdP groups.": "所有具有 IdP 访问权限的用户都将获得用户角色。启用此项以基于 IdP 分组分配角色。",
    "All websites": "所有网站",
    "All your connectors already run without approval.": "您的所有连接器已经无需批准即可运行。",
    "All {category} events": "所有 {category} 事件",
    "All {total, plural, one {# member is} other {# members are}} selected. <link>Clear selection</link>.": "已选中全部 {total, plural, one {# 位成员} other {# 位成员}}。<link>清除选择</link>。",
    "Allow": "允许",
    "Allow \"Always allow\" for connector tools": "允许连接器工具使用\"始终允许\"",
    "Allow + inject {name}": "允许 + 注入 {name}",
    "Allow Access": "允许访问",
    "Allow Anthropic to use data from Labs features to improve and develop our products.": "允许 Anthropic 使用 Labs 功能中的数据来改进和开发我们的产品。",
    "Allow Claude in Chrome while skipping approvals": "在 Chrome 中允许 Claude 并跳过审批",
    "Allow Claude in Slack": "在 Slack 中允许 Claude",
    "Allow Claude to": "允许 Claude",
    "Allow Claude to <b>use your computer</b>?": "允许 Claude <b>使用你的电脑</b>?",
    "Allow Claude to <b>use</b> <meta>{app}</meta>?": "允许 Claude <b>使用</b> <meta>{app}</meta> 吗?",
    "Allow Claude to <b>use</b> these capabilities?": "允许 Claude <b>使用</b>这些功能吗?",
    "Allow Claude to <b>use</b> {count} apps?": "允许 Claude <b>使用</b> {count} 个应用吗?",
    "Allow Claude to <b>{action}</b> <meta>{metaText}</meta>?": "允许 Claude <b>{action}</b> <meta>{metaText}</meta>?",
    "Allow Claude to <b>{action}</b>?": "允许 Claude 进行 <b>{action}</b> 吗?",
    "Allow Claude to <bold>{action}</bold> {content}?": "允许 Claude <bold>{action}</bold> {content} 吗?",
    "Allow Claude to <bold>{action}</bold>?": "允许 Claude 执行 <bold>{action}</bold>?",
    "Allow Claude to access common package managers to install packages and libraries for data analysis, visualizations, and file processing. <a>View package manager domains</a>. Monitor chats closely as this comes with <b>security risks</b>.": "允许 Claude 访问常用的包管理器,以安装用于数据分析、可视化和文件处理的软件包和库。<a>查看包管理器域名</a>。请密切监督聊天,因为这会带来<b>安全风险</b>。",
    "Allow Claude to automatically classify sessions as blocked, ready for review, or done. Classifying sessions counts towards your plan usage. Applies to new sessions.": "允许 Claude 自动将会话分类为已阻塞、待审查或已完成。分类会计入你的套餐用量。适用于新会话。",
    "Allow Claude to browse and interact with any website without asking": "允许 Claude 浏览任何网站并与之交互,无需询问",
    "Allow Claude to change files in \"{directory}\"?": "允许 Claude 更改\"{directory}\"中的文件吗?",
    "Allow Claude to directly interact with apps, data, and tools on your computer.": "允许 Claude 直接与您电脑上的应用、数据和工具交互。",
    "Allow Claude to execute code and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Available on web and desktop.": "允许 Claude 执行代码,并创建、编辑文档、电子表格、演示文稿、PDF 和数据报告。适用于 Web 和桌面端。",
    "Allow Claude to execute code and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Available on web and desktop. <b>Each team member must also enable this in their own settings.</b>": "允许 Claude 执行代码并创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。在 Web 和桌面上可用。<b>每个团队成员还必须在自己的设置中启用此功能。</b>",
    "Allow Claude to execute code and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Available on web and desktop. This applies to all members of your organization.": "允许 Claude 执行代码以及创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。可在网页端和桌面端使用。此设置适用于你组织的所有成员。",
    "Allow Claude to execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills to be enabled. Available on web and desktop.": "允许 Claude 在服务器上执行代码,并创建、编辑文档、电子表格、演示文稿、PDF 和数据报告。启用技能所必需的功能。在网页端和桌面端可用。",
    "Allow Claude to execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills. Available on web and desktop.": "允许 Claude 在服务器上执行代码,以及创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。技能功能需要此权限。可在网页端和桌面端使用。",
    "Allow Claude to execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills. Available on web and desktop. <b>Each team member must also enable this in their own settings.</b>": "允许 Claude 在服务器上执行代码,并创建和编辑文档、表格、演示文稿、PDF 和数据报告。这是使用技能所必需的。可在网页端和桌面端使用。<b>每位团队成员还必须在各自的设置中启用此项。</b>",
    "Allow Claude to execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills. Available on web and desktop. This applies to all members of your organization.": "允许 Claude 在服务器上执行代码,并创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。这是使用技能所必需的。网页端和桌面端均可用。此设置适用于你组织的所有成员。",
    "Allow Claude to fetch a page from <bold>{domain}</bold>?": "允许 Claude 从 <bold>{domain}</bold> 获取页面吗?",
    "Allow Claude to generate interactive visualizations, charts, and diagrams directly in the conversation for members of your organization.": "允许 Claude 直接在对话中为组织成员生成交互式可视化、图表和图解。",
    "Allow Claude to generate interactive visualizations, charts, and diagrams directly in the conversation.": "允许 Claude 直接在对话中生成交互式可视化、图表和图解。",
    "Allow Claude to permanently delete files in your {folderName} folder during this task?": "允许 Claude 在此任务期间永久删除您的 {folderName} 文件夹中的文件?",
    "Allow Claude to reference other apps and services for more context.": "允许 Claude 参考其他应用和服务以获取更多背景信息。",
    "Allow Claude to remember relevant context from your chats and Cowork sessions. Memory includes your entire chat history with Claude. <a>Learn more</a>.": "允许 Claude 记住你聊天和协作会话中的相关上下文。记忆包括你与 Claude 的完整聊天历史。<a>了解更多</a>。",
    "Allow Claude to remember relevant context from your chats and Cowork sessions. This setting also applies to projects. <a>Learn more</a>.": "允许 Claude 记住你在聊天和 Cowork 会话中的相关上下文。此设置也适用于项目。<a>了解更多</a>。",
    "Allow Claude to remember relevant context from your chats. Memory includes your entire chat history with Claude. <a>Learn more</a>.": "允许 Claude 记住您聊天中的相关背景。记忆包含您与 Claude 的完整聊天历史。<a>了解更多</a>。",
    "Allow Claude to remember relevant context from your chats. This setting controls memory for both chats and projects. <a>Learn more</a>.": "允许 Claude 记住您聊天中的相关背景。此设置控制聊天和项目的记忆。<a>了解更多</a>。",
    "Allow Claude to search": "允许 Claude 搜索",
    "Allow Claude to search for relevant details in past chats. <a>Learn more</a>.": "允许 Claude 在过往聊天中搜索相关详情。<a>了解更多</a>。",
    "Allow Claude to store and catalog your Google Drive data for more accurate search results": "允许 Claude 存储并编排您的 Google 云端硬盘数据,以获得更准确的搜索结果",
    "Allow Claude to store and catalog your organization's {integrationName} data for more accurate search results": "允许 Claude 存储和编目您组织的 {integrationName} 数据,以获得更准确的搜索结果",
    "Allow Claude to use coarse location metadata (city/region) to improve product experiences for your team members.": "允许 Claude 使用粗略的位置元数据(城市/地区)来改进您团队成员的产品体验。",
    "Allow Claude to use coarse location metadata (city/region) to improve product experiences. <a>Learn more</a>.": "允许 Claude 使用大致的地理位置元数据(城市/地区)来改善产品体验。<a>了解更多</a>。",
    "Allow Claude to use the browser on <bold>{domain}</bold>?": "允许 Claude 在 <bold>{domain}</bold> 上使用浏览器吗?",
    "Allow Claude to use {toolName}?": "允许 Claude 使用 {toolName} 吗?",
    "Allow Datadog reads": "允许读取 Datadog",
    "Allow IdP groups to automatically provision users with specific seat tiers": "允许 IdP 分组根据特定的席位层级自动为用户分配权限",
    "Allow access to connectors": "允许访问连接器",
    "Allow access to connectors and tools": "允许访问连接器和工具",
    "Allow accounts with verified domain emails to log in via SSO.": "允许拥有已验证域名电子邮件的帐户通过 SSO 登录。",
    "Allow all": "全部允许",
    "Allow all browser actions": "允许所有浏览器操作",
    "Allow all browser actions?": "允许所有浏览器操作?",
    "Allow anonymous sign-ins": "允许匿名登录",
    "Allow another organization to configure this repo": "允许另一个组织配置此仓库",
    "Allow auto permissions mode": "允许自动权限模式",
    "Allow browser notifications?": "允许浏览器通知吗?",
    "Allow bypass permissions mode": "允许绕过权限模式",
    "Allow channel notifications": "允许通道通知",
    "Allow extension": "允许扩展程序",
    "Allow for all scheduled runs": "允许所有计划运行",
    "Allow for all tasks": "允许所有任务",
    "Allow for this session": "仅在此会话中允许",
    "Allow for this task": "允许此任务",
    "Allow for this website": "对此网站允许/对此网站开启",
    "Allow limited network access": "允许有限的网络访问",
    "Allow live connectors?": "允许实时连接器?",
    "Allow members to create persistent Cowork agents that can control their computer to autonomously work on tasks. Persistent agents receive instructions from any logged in device on the same account and can access files, apps and websites on their computer.": "允许成员创建持久化的 Cowork 智能体,使其能够控制其电脑并自主处理任务。持久化智能体可接收来自同一账号下任何已登录设备的指令,并可以访问其电脑上的文件、应用及网站。",
    "Allow members to invite others via email. New members follow your approval settings.": "允许成员通过邮件邀请其他人。新成员将遵循您的审核设置。",
    "Allow members to run security scans on repositories with the Claude GitHub App installed.": "允许成员对已安装 Claude GitHub 应用的仓库运行安全扫描。",
    "Allow network egress": "允许网络出口 (Egress)",
    "Allow once": "允许一次",
    "Allow people to keep using Claude if they hit a limit.": "允许用户在达到上限后继续使用 Claude。",
    "Allow people to rate Claude's responses and share that feedback with Anthropic.": "允许用户对 Claude 的回答进行评分,并将该反馈分享给 Anthropic。",
    "Allow people to share chats that use connectors with others in your org. Recipients will see Claude's response, but not the data from the connector.": "允许成员与组织内的其他人分享使用连接器的聊天。接收者将看到 Claude 的回答,但看不到连接器的数据。",
    "Allow people to share chats with others in your org.": "允许他人分享聊天记录给组织内的其他成员。",
    "Allow people with SSO access to join when they first log in. Each new member uses one of your available seats.": "允许具有 SSO 访问权限的人员在首次登录时加入。每个新成员将占用一个您的可用席位。",
    "Allow primary owners to sign in using magic links sent to their email": "允许主要所有者使用发送到其电子邮箱的魔术链接 (Magic link) 进行登录",
    "Allow remixing": "允许 remix",
    "Allow team members to access Claude Design.": "允许团队成员访问 Claude Design。",
    "Allow team members to access Claude {featureName}.": "允许团队成员访问 Claude {featureName}。",
    "Allow team members to request extra usage when they reach their limits. <a>Learn more</a>": "允许团队成员在达到上限时请求额外用量。<a>了解更多</a>",
    "Allow team members to share skills with each other.": "允许团队成员互相分享技能。",
    "Allow team members to share skills with the entire organization.": "允许团队成员与整个组织分享技能。",
    "Allow team members to upload or create their own skills. Turn off to lock your org to approved skills only.": "允许团队成员上传或创建自己的技能。关闭此项可将组织限制为仅使用已批准的技能。",
    "Allow team members to upload skills. Requires 'Code execution and file creation' to be enabled to use.": "允许团队成员上传技能。需要开启“代码执行和文件创建”才能使用。",
    "Allow team members to use chat, projects, and artifacts.": "允许团队成员使用聊天、项目和工件。",
    "Allow team members to use the Claude in Chrome extension. Configure site permissions after enabling.": "允许团队成员使用 Chrome 扩展程序中的 Claude。开启后请配置站点权限。",
    "Allow the use of your chats and coding sessions to train and improve Anthropic AI models. <learnMoreLink>Learn more</learnMoreLink>.": "允许使用您的聊天和编码会话来训练和改进 Anthropic AI 模型。<learnMoreLink>了解更多</learnMoreLink>。",
    "Allow the use of your chats and coding sessions to train and improve Anthropic AI models. Change anytime in your <privacySettingsPage>Privacy Settings</privacySettingsPage>.": "允许使用您的聊天和编码会话来训练和改进 Anthropic AI 模型。可随时在您的 <privacySettingsPage>隐私设置</privacySettingsPage> 中更改。",
    "Allow the use of your chats and coding sessions to train and improve Anthropic AI models. You can change this anytime in Privacy Settings.": "允许使用您的聊天和编码会话来训练和改进 Anthropic AI 模型。您可以随时在隐私设置中更改此项。",
    "Allow the use of your chats and coding sessions to train and improve Claude. Change anytime in privacy settings. <learnMoreLink>Learn more</learnMoreLink>": "允许使用您的聊天和编码会话来训练和改进 Claude。您可以随时在隐私设置中更改此项。<a>了解更多</a>。",
    "Allow this artifact to use the following connectors without prompting:": "允许此 Artifact 在无需提示的情况下使用以下连接器:",
    "Allow unrestricted branch pushes": "允许无限制的分支推送 (Push)",
    "Allow unrestricted git push": "允许不受限制的 git push",
    "Allow users to launch Claude from Canvas again": "再次允许用户从 Canvas 启动 Claude",
    "Allow your team members to search across your organization's connected data sources and knowledge bases for more comprehensive results.": "允许您的团队成员在您组织已连接的数据源和知识库中进行搜索,以获得更全面的结果。",
    "Allow your team to bypass all permission checks in Claude Code Desktop. When enabled, Claude will take actions without asking for approval. Letting Claude run arbitrary commands is risky and can result in data loss, system corruption, or data exfiltration (e.g., via prompt injection attacks). <link>See best practices for safe usage</link>": "允许您的团队在桌面版 Claude Code 中绕过所有权限检查。启用后,Claude 将不经批准直接采取行动。让 Claude 运行任意命令是有风险的,可能会导致数据丢失、系统损坏或数据外泄(例如通过提示词注入攻击)。<link>查看安全使用最佳实践</link>",
    "Allow your team to launch Claude Code web sessions using their local GitHub credentials.": "允许您的团队使用其本地 GitHub 凭据启动 Claude Code Web 会话。",
    "Allow your team to share Claude Code web sessions within your organization.": "允许您的团队在组织内共享 Claude Code 网页会话。",
    "Allow...": "允许...",
    "Allowed domains": "允许的域名",
    "Allowed email domains": "许可的邮箱域名",
    "Allowed endpoints": "允许的端点",
    "Allowed hosts": "允许的主机",
    "Allowed sites": "允许的网站",
    "Allowed websites updated.": "允许的网站已更新。",
    "Allowing this action comes with risks. Malicious instructions in files, emails, and web content could trick Claude into unintended actions. <a>Learn more</a>": "允许此操作会带来风险。文件、电子邮件和网页内容中的恶意指令可能诱使 Claude 执行非预期操作。<a>了解更多</a>",
    "Allowlist": "允许列表",
    "Allows Claude to access, change, or delete your documents and data in specified folders. Claude is AI and can make mistakes.": "允许 Claude 访问、更改或删除指定文件夹中的文档和数据。Claude 是 AI,可能会犯错。",
    "Allows Claude to click, type, and open apps.": "允许 Claude 进行点击、输入以及打开应用。",
    "Almost done...": "即将完成...",
    "Almost done…": "快完成了…",
    "Alphabetical": "按字母顺序",
    "Already a member": "已是成员",
    "Already added": "已添加",
    "Already allowed": "已允许",
    "Already failed on {failures, plural, one {# runner} other {# runners}}. Auto-recovery was exhausted — retry instead if you want to keep trying.": "已在 {failures, plural, one {# 个运行器} other {# 个运行器}}上失败。自动恢复已耗尽 — 如果您想继续尝试,请重试。",
    "Already have Claude Code? You're one command away.": "已经安装了 Claude Code?只需一条命令即可开启。",
    "Already in this workspace": "已在此工作区中",
    "Already invited": "已邀请",
    "Already on the base branch — check out a feature branch first": "当前已经在基础分支上,请先切换到功能分支",
    "Already set up": "已设置",
    "Already synced to the latest commit.": "已同步至最新提交。",
    "Already up to date.": "已经是最新版。",
    "Also allows any {cliName} command that isn't listed separately in your connector settings": "还允许任何未在你的连接器设置中单独列出的 {cliName} 命令",
    "Also create an allow rule for these hosts": "也为这些主机创建允许规则",
    "Also in: {projects}": "同时存在于:{projects}",
    "Also include <link>default list</link> of common package managers": "同时包含常见包管理器的<link>默认列表</link>",
    "Also included": "同时包含",
    "Alternative method:": "备选方法:",
    "Always add for this project": "始终为此项目添加",
    "Always allow": "始终允许",
    "Always allowed": "始终允许",
    "Always allowing these actions carries risks. Content from files, emails, and the web can contain malicious instructions. Reviewing each action helps you catch Claude errors and malicious actions. <a>Learn about safety risks</a>.": "始终允许这些操作存在风险。文件、电子邮件和网络中的内容可能包含恶意指令。审查每个操作可帮助您捕获 Claude 错误和恶意操作。<a>了解安全风险</a>。",
    "Always ask before making changes": "做出更改前始终征求许可",
    "Always confirm before Claude handles financial, personal, or work-critical tasks.": "每当 Claude 处理财务、个人或工作关键任务前,始终先进行确认。",
    "Always show latest version": "始终显示最新版本",
    "Always there when you need it—Claude sits quietly in your workflow. No tab-hopping required. ": "随需而动——Claude 在您的工作流程中静候调遣,无需频繁切换标签页。",
    "Always-allow individual tools in connector settings.": "在连接器设置中始终允许单个工具。",
    "Amazon Bedrock": "Amazon Bedrock",
    "Amended commit": "已修订的提交",
    "Amending commit": "正在修订提交",
    "Amount must be between {min} and {max}.": "金额必须在 {min} 和 {max} 之间。",
    "Amount too high for discount": "金额过高,无法使用折扣",
    "An AI-powered communication tool that transforms emotionally charged, reactive workplace messages into diplomatic, professional alternatives": "一款由 AI 驱动的沟通工具,可将情绪化、被动的职场消息转化为得体、专业的替代方案",
    "An Enterprise upgrade is already in progress.": "企业版升级已在进行中。",
    "An OTEL console exporter in settings.json is interfering with Claude Code. Remove the OTEL_*_EXPORTER=console setting and try again.": "settings.json 中的 OTEL 控制台导出器正在干扰 Claude Code。请移除 OTEL_*_EXPORTER=console 设置后重试。",
    "An active Team subscription is required to upgrade to Enterprise.": "需要有效的 Team 订阅才能升级到 Enterprise 方案。",
    "An admin can raise the limit in Settings → Usage.": "管理员可在“设置 → 使用情况”中提高上限。",
    "An admin needs to enable Claude Code Security for your organization.": "管理员需要为您的组织启用 Claude Code 安全功能。",
    "An admin needs to enable Claude Security for your organization.": "需要管理员为你的组织启用 Claude Security。",
    "An administrator configured Cowork with settings we can't use. You won't be able to start tasks until your IT team fixes it.": "管理员为协作功能配置了我们无法使用的设置。在你的 IT 团队修复之前,你将无法启动任务。",
    "An agentic coding tool that lives in your terminal.": "一个运行在终端中的自主式编程工具。",
    "An audit log will be written when deletion has completed.": "删除完成后将写入审计日志。",
    "An error occurred during the authentication process. Please try again.": "身份验证过程中发生错误。请重试。",
    "An error occurred when we tried to send an invite to {email}": "我们在尝试向 {email} 发送邀请时出错",
    "An error occurred when we tried to send {count, plural, one {# invite} other {# invites}}": "当我们尝试发送 {count, plural, one {# 份邀请} other {# 份邀请}} 时发生错误",
    "An error occurred while accepting your documents. Please reach out to Anthropic support to request another link.": "接受您的文档时出错。请联系 Anthropic 支持请求另一个链接。",
    "An error occurred while deleting your account. Please try again or contact support.": "删除您的账号时出错了。请重试或联系支持人员。",
    "An error occurred while fetching that resource. Please try again.": "获取该资源时出错。请重试。",
    "An error occurred while loading the security center. You can try again.": "加载安全中心时出错。您可以重试。",
    "An error occurred while processing your registration. Please try again or contact support if the problem persists.": "处理您的注册时发生错误。如果问题持续存在,请重试或联系支持团队。",
    "An error occurred while trying to run the generated artifact.": "尝试运行生成的构件时发生错误。",
    "An invoice was created. Complete payment via the link in your email, then return here to enable Fast mode and Code Review.": "发票已创建。请通过邮件中的链接完成付款,然后返回这里启用快速模式和代码评审。",
    "An invoice will be created. Credits are added once payment is received.": "将创建一份发票。收到付款后将添加额度。",
    "An unexpected error occurred. <link>Contact Support.</link>": "发生意外错误。<link>联系支持团队。</link>",
    "An unknown error occurred": "发生未知错误",
    "An unknown error occurred connecting to {serverName}.": "连接 {serverName} 时由于未知错误失败。",
    "An unknown error occurred during authentication.": "身份验证过程中发生未知错误。",
    "An unknown error occurred while enabling push notifications for your browser.": "为您的浏览器启用推送通知时发生未知错误。",
    "An update to our Consumer Terms and Privacy Policy will take effect on <date>October 8, 2025</date>. You can accept the updated terms today.": "我们的消费者条款和隐私政策更新将于 <date>2025 年 10 月 8 日</date>生效。您今天即可接受更新后的条款。",
    "Analysis": "分析",
    "Analysis tool": "分析工具",
    "Analyst Targets": "分析师目标",
    "Analytics": "分析数据",
    "Analytics API": "分析 API",
    "Analytics API disabled": "分析 API 已禁用",
    "Analytics API enabled": "分析 API 已启用",
    "Analytics API keys": "分析 API 密钥",
    "Analytics access keys are owned by the organization and remain active even after the creator is removed.": "分析访问密钥归组织所有,即使创建者被移除后仍保持有效。",
    "Analyze": "分析",
    "Analyze Google Drive documents": "分析 Google 云端硬盘文档",
    "Analyze a dataset": "分析数据集",
    "Analyze an A/B test": "分析 A/B 测试",
    "Analyze and organize research": "分析并整理研究内容",
    "Analyze business metrics": "分析业务指标",
    "Analyze competitors": "分析竞争对手",
    "Analyze conversations": "分析对话",
    "Analyze customer feedback": "分析客户反馈",
    "Analyze data and build presentations with Claude alongside you.": "让 Claude 陪伴您分析数据并制作演示文稿。",
    "Analyze data and build slides with Claude alongside you.": "与 Claude 一起分析数据并构建幻灯片。",
    "Analyze data with Claude alongside you.": "与 Claude 一起分析数据。",
    "Analyze data, build presentations, and draft documents with Claude alongside you.": "让 Claude 与你协作分析数据、制作演示文稿并起草文档。",
    "Analyze decision-making frameworks": "分析决策框架",
    "Analyze game theory applications": "分析博弈论应用",
    "Analyze great investment pitches": "分析极佳的投资推介",
    "Analyze historical turning points": "分析历史转折点",
    "Analyze if my actual meetings align with my stated priorities": "分析我的实际会议是否符合我陈述的优先级",
    "Analyze industry trends": "分析行业趋势",
    "Analyze job descriptions": "分析职位描述",
    "Analyze literary themes": "分析文学主题",
    "Analyze market opportunities": "分析市场机会",
    "Analyze my calendar for meeting optimization": "分析我的日历以优化会议",
    "Analyze my design aesthetic from examples": "根据示例分析我的设计美学",
    "Analyze my email communication style": "分析我的电子邮件沟通风格",
    "Analyze my writing style based on my docs": "根据我的文档分析我的写作风格",
    "Analyze sales data": "分析销售数据",
    "Analyze scRNA-seq data": "分析 scRNA-seq 数据",
    "Analyze text and images": "分析文本和图片",
    "Analyze your conversations?": "分析你的对话?",
    "Analyzed data": "已分析的数据",
    "Analyzing": "正在分析",
    "Analyzing data": "正在分析数据",
    "Analyzing your writing...": "正在分析您的写作...",
    "Anchored regex — matches the whole string.": "锚定正则:匹配整个字符串。",
    "Animated illustration of Claude completing a product return in Chrome": "Claude 在 Chrome 中完成商品退货的动画插图",
    "Annotate preview": "标注预览",
    "Annual": "每年",
    "Annual Claude Code spend": "Claude Code 年度支出",
    "Annual seat access ({seats} seats)": "年度席位访问({seats} 个席位)",
    "Annual total": "年度总额",
    "Annual value": "年度价值",
    "Annual value minus annual spend": "年度价值减去年度支出",
    "Annualized from period spend": "按周期支出年化",
    "Annually": "每年",
    "Anonymous usage metrics including usage counts (not conversation content)": "匿名使用指标,包括使用次数(不含对话内容)",
    "Another AI product better fits my needs": "另一个 AI 产品更符合我的需求",
    "Another app attached \"{directory}\"": "另一个应用附加了 \"{directory}\"",
    "Another app wants Claude to work in \"{directory}\"": "另一个应用想要 Claude 在 \"{directory}\" 中工作",
    "Another device is connected": "另一台设备已连接",
    "Answers submitted. Waiting for response...": "答案已提交。正在等待回复...",
    "Ant Tools": "Ant 工具",
    "Ant only": "仅限蚂蚁",
    "Anthropic": "Anthropic",
    "Anthropic & Partners": "Anthropic 与合作伙伴",
    "Anthropic Academy": "Anthropic 学院",
    "Anthropic Interviewer is an interview tool that helps Anthropic understand people's real perspectives on AI. Anthropic also built Claude, which is the AI that powers this interview.": "Anthropic Interviewer 是一款访谈工具,旨在帮助 Anthropic 了解人们对 AI 的真实观点。驱动此访谈的 AI 程序也是由 Anthropic 开发的 Claude。",
    "Anthropic Labs": "Anthropic Labs",
    "Anthropic PBC | 사업자등록번호 86-1969045 (미국 델라웨어) | 다리오 아모데이{br}통신판매업 신고: 2025-공정-0020호 | 사업자정보확인 | 호스팅제공자: AWS Cloud Services{br}주소: 500 Howard Street, San Francisco, California U.S. | 대표전화: 1-415-505-5563 | <emailLink>[email protected]</emailLink>": "Anthropic PBC | 商业注册号 86-1969045 (美国特拉华州) | Dario Amodei {br} 邮购预审批申报:2025-公平-0020号 | 查看商业信息 | 托管商:AWS 云服务 {br} 地址:美国加利福尼亚州旧金山霍华德街 500 号 | 咨询电话:1-415-505-5563 | <emailLink>[email protected]</emailLink>",
    "Anthropic Sans": "Anthropic Sans",
    "Anthropic Serif": "Anthropic Serif",
    "Anthropic and partner skills": "Anthropic 及合作伙伴技能",
    "Anthropic believes in transparent data practices": "Anthropic 相信透明的数据实践",
    "Anthropic contact": "Anthropic 联系人",
    "Anthropic deletes your data promptly when requested, except for safety violations or conversations you’ve shared through feedback.": "Anthropic 会在收到请求后及时删除您的数据,除非涉及安全违规或您通过反馈分享的对话。",
    "Anthropic deletes your data promptly when requested, except for safety violations or conversations you’ve shared through feedback. {link}": "收到请求后,Anthropic 会及时删除您的数据,除非存在违规安全行为或您通过反馈分享的对话。{link}",
    "Anthropic doesn’t sell your data to third parties.": "Anthropic 不会将你的数据出售给第三方。",
    "Anthropic doesn’t train on your content, except in limited cases for safety or with your permission. <link>Learn more</link>.": "Anthropic 不会使用您的内容进行训练,除非是出于安全的少数情况或经您许可。 <link>了解更多</link>。",
    "Anthropic may change usage limits, functionality, or policies as we learn more.": "随着深入学习,Anthropic 可能会更改用量限制、功能或政策。",
    "Anthropic may conduct aggregated, anonymized analysis of data to understand how people use Claude.": "Anthropic 可能会对数据进行聚合、匿名化分析,以了解人们如何使用 Claude。",
    "Anthropic may conduct aggregated, anonymized analysis of data to understand how people use Claude. {link}": "Anthropic 可能会对数据进行汇总与匿名分析,以了解用户使用 Claude 的情况。{link}",
    "Anthropic may offer additional features, which will enable us to collect and use more of your data. You’ll always be in control and can turn off these features in your account settings.": "Anthropic 可能会提供额功能,这能让我们收集并使用您更多的数据。您始终拥有控制权,并可以在账户设置中关闭这些功能。",
    "Anthropic may reach out again in the future to gather additional info or share updates to our Directory policies.": "Anthropic 以后可能会再次联系您以收集更多信息或分享我们目录政策的更新。",
    "Anthropic may use conversations flagged for safety violations to ensure safety of our systems for all users. {link}": "Anthropic 可能会使用被标记为安全违规的对话,以保障我们系统对所有用户的安全性。{link}",
    "Anthropic may use your email for account verification, billing, and Anthropic-led communications and marketing (e.g., emails sharing new product offerings and features).": "Anthropic 可能会使用您的电子邮箱进行账户验证、账单处理以及由 Anthropic 发起的沟通和营销(例如:通过邮件分享新产品和功能)。",
    "Anthropic news": "Anthropic 新闻",
    "Anthropic office simulator": "Anthropic 办公室模拟器",
    "Anthropic regularly reviews conversations flagged by our automated abuse detection, and may use them to improve our safety systems.": "Anthropic 会定期审阅被我们的自动滥用检测标记的对话,并可能使用它们来改进我们的安全系统。",
    "Anthropic reviews every submission for quality, safety, and policy compliance, and may reach out for additional information before a decision is made.": "Anthropic 会审核每份提交内容的质量、安全性和政策合规性,并可能在作出决定前联系你获取更多信息。",
    "Anthropic will invoice you for the additional user seats at each applicable rate, prorated through the end of your current order form term and payable in accordance with your Anthropic agreement.": "Anthropic 将按各自适用费率向您开具额外用户席位的发票,按比例计至您当前订单有效期结束,并遵循您的 Anthropic 协议进行支付。",
    "Anthropic-compatible": "兼容 Anthropic",
    "Anthropic’s <link>Usage Policy</link> prohibits use of Claude for harmful use cases like producing violent, abusive, or deceptive content. Don’t share personal information or third-party content without permission.": "Anthropic 的<link>使用策略</link>禁止将 Claude 用于生成暴力、侮辱或欺诈性内容等有害用途。未经许可,请勿分享个人信息或第三方内容。",
    "Any additional feedback?": "还有其他反馈吗?",
    "Any credentials, account setup steps, or other instructions reviewers need to test your server end to end.": "评审人员端到端测试你的服务器所需的任何凭据、账户设置步骤或其他说明。",
    "Any custom role": "任何自定义角色",
    "Any dietary restrictions?": "有任何饮食禁忌吗?",
    "Any existing public projects will be switched to private and some users may lose access. Are you sure you want to continue?": "任何现有的公开项目都将转为私有,某些用户可能会失去访问权限。确定要继续吗?",
    "Any group": "任何组",
    "Any preferences? (e.g. playful, minimal, bold colors…)": "有什么偏好吗?(例如活泼、极简、鲜艳配色…)",
    "Any proration credits for unused time will be applied in the next step.": "任何针对未使用时间的按比例折算额度都将在下一步应用。",
    "Any request Claude makes to access these apps is automatically rejected. Claude may still affect them indirectly through actions in allowed apps.": "Claude 访问这些应用的任何请求都会被自动拒绝。Claude 仍可能通过在允许的应用中执行的操作间接影响它们。",
    "Any role": "任何角色",
    "Anyone in the organization with the link can view": "组织内拥有链接的任何人都可以查看",
    "Anyone in your organization can view this artifact and its associated attachments and files.": "您组织中的任何人都可以查看此构件及其关联的附件和文件。",
    "Anyone in your organization can view this artifact. It also has access to attachments and files in the conversation.": "您组织中的任何人均可查看此构件。它还可以访问对话中的附件和文件。",
    "Anyone in your organization with Security Scan access can view": "组织中凡有安全扫描访问权限级别的人员均可查看",
    "Anyone in your organization with the link can view this artifact and its associated attachments and files.": "组织内拥有链接的任何人都可以查看此 Artifact 及其关联的附件和文件。",
    "Anyone in your organization with the link can view this artifact and its associated attachments, files, and comments.": "你的组织中任何拥有该链接的人都可以查看此工件及其相关附件、文件和评论。",
    "Anyone in your team can use this environment": "您团队中的任何人都可以使用此环境",
    "Anyone in {orgName} with Security Scan access can view": "在 {orgName} 中拥有安全扫描访问权限的任何人都可以查看",
    "Anyone in {orgName} with repo access and the link can view": "在 {orgName} 中拥有代码仓库访问权限且持有链接的任何人均可查看",
    "Anyone in {orgName} with the link can view": "{orgName} 中任何拥有此链接的人均可查看",
    "Anyone in {scope} can view": "属于 {scope} 的任何人均可查看",
    "Anyone on the team can read and write shared memories.": "团队中的任何人都可以读写共享记忆。",
    "Anyone on the team can read and write shared memories. Memories may include code and project details from any repository.": "团队中的任何人都可以读取和写入共享记忆。记忆可能包含来自任意仓库的代码和项目细节。",
    "Anyone on the web with the link can view the Artifact only. Your chat will remain private.": "拥有链接的任何人员仅可查看构件 (Artifact)。您的聊天内容将保持私密。",
    "Anyone who has access to this project can view this artifact and its associated attachments and files.": "凡有权访问此项目的人员均可查看此构件及其相关的附件和文件。",
    "Anyone who has access to this project can view this artifact and its associated attachments, files, and comments.": "任何有权访问此项目的人都可以查看此工件及其相关附件、文件和评论。",
    "Anyone with <strong>@{emailDomain}</strong> email addresses can discover your workspace and request to join": "任何拥有 <strong>@{emailDomain}</strong> 邮箱地址的人员都可以发现您的工作空间并申请加入",
    "Anyone with repo access and the link can view": "拥有代码仓库访问权限且持有链接的任何人均可查看",
    "Anyone with the link": "任何拥有链接的人",
    "Anyone with the link can view": "拥有链接的任何人均可查看",
    "Anyone with the link can view, and your artifact may show up in search engine results. Your chat will stay private.": "任何拥有链接的人都可以查看,且您的构件可能会出现在搜索引擎结果中。您的聊天内容将保持私密。",
    "Anyone with these domain emails can be invited to your organization.": "任何拥有这些域名邮箱的人员都可以被邀请加入您的组织。",
    "Anyone with this URL can trigger Conway. Require signed requests to lock it to a trusted source.": "任何拥有此 URL 的人都可以触发 Conway。要求签名请求以将其锁定到受信任的来源。",
    "Anyone with this URL can trigger Conway. Require verified requests to lock it to a trusted source.": "任何拥有此 URL 的人都可以触发 Conway。要求经过验证的请求可将其限制为受信任来源。",
    "Anything else the review team should know about your connector.": "审核团队还需要了解你的连接器的其他信息吗?",
    "Anything else to add?": "还有什么要补充的吗?",
    "App": "应用",
    "App ID": "应用 ID",
    "App Store": "App Store",
    "App client ID": "应用客户端 ID",
    "App client secret": "应用客户端密钥",
    "App name": "应用名称",
    "App not installed": "应用未安装",
    "App removed from Vercel.": "应用程序已从 Vercel 移除。",
    "App version, OS, and system info": "应用版本、操作系统和系统信息",
    "App-only tools": "仅限应用工具",
    "Appearance": "外观",
    "Appears in the / menu. Claude can also run it automatically when relevant.": "出现在 / 菜单中。Claude 也可以在相关时自动运行它。",
    "Appears in the plugin marketplace. Users can install or uninstall it at any time.": "显示在插件市场中。用户可以随时安装或卸载。",
    "Apple Silicon required": "需要 Apple 芯片",
    "Application": "应用",
    "Application submitted": "申请已提交",
    "Applied balance": "已应用的余额",
    "Applied {count, plural, one {# change} other {# changes}}": "已应用 {count, plural, one {# 个更改} other {# 个更改}}",
    "Applied: {field}": "已应用:{field}",
    "Applied: {field} set to {value}": "已应用:{field} 已设置为 {value}",
    "Applies to CLI operations without a specific restriction below, including operations this plugin adds later.": "适用于下方没有特定限制的 CLI 操作,包括此插件稍后添加的操作。",
    "Applies to any added plugin": "适用于任何添加的插件",
    "Applies to commands that don't match a rule below, including ones this plugin adds later.": "适用于不匹配下方任何规则的命令,包括此插件以后添加的命令。",
    "Applies to tools without a specific restriction below, including tools this connector adds later.": "适用于下面没有特定限制的工具,包括此连接器稍后添加的工具。",
    "Apply": "应用",
    "Apply changes": "应用更改",
    "Apply locally": "在本地应用",
    "Apply now": "立即申请",
    "Applying your configuration…": "正在应用你的配置…",
    "Approaching seat limit": "接近席位限制",
    "Approaching session limit": "即将达到会话限制",
    "Approaching usage limit": "即将达到使用上限",
    "Approaching weekly limit": "即将达到每周限额",
    "Approvals": "审批",
    "Approvals you grant during a run appear here.": "您在运行期间授予的批准将显示在此处。",
    "Approve": "批准",
    "Approve Claude's plan and start coding": "批准 Claude 的计划并开始编码",
    "Approve all ({count})": "全部批准 ({count})",
    "Approve automatically": "自动批准",
    "Approve automatically (JIT)": "自动批准 (JIT)",
    "Approve future requests automatically": "自动批准未来的请求",
    "Approve plan and teleport back to terminal": "批准计划并返回终端",
    "Approve the new permissions in GitHub": "在 GitHub 中批准新权限",
    "Approve the request in your browser, then return here.": "请在浏览器中批准该请求,然后返回这里。",
    "Approve this folder in the trust prompt to continue.": "在信任提示中批准此文件夹后继续。",
    "Approved": "已批准",
    "Approved for your workflow": "已批准用于您的工作流",
    "Apps": "应用/插件",
    "Apps and extensions": "应用与扩展",
    "Apps and websites": "App 和网站",
    "Apps hidden during a task are restored when Claude stops.": "任务期间隐藏的应用将在 Claude 停止时恢复。",
    "Apps you approve could open other apps that you haven't approved.": "您批准的应用可能会打开其他您未批准的应用。",
    "Arabic (Windows-1256)": "阿拉伯语 (Windows-1256)",
    "Archive": "归档",
    "Archive all ({count})": "全部归档({count})",
    "Archive and continue": "归档并继续",
    "Archive environment": "归档环境",
    "Archive project": "归档项目",
    "Archive project?": "归档项目?",
    "Archive {numSelected} selected {numSelected, plural, one {item} other {items}}": "归档 {numSelected} 个选定的{numSelected, plural, one {项目} other {项目}}",
    "Archived": "已归档",
    "Archived environments are hidden and can't be used to start new sessions. Existing sessions will continue to work.": "已归档环境会被隐藏且无法用于开启新会话。现有会话将继续运行。",
    "Archiving...": "正在归档...",
    "Are you in the right organization?": "您是否身处正确的组织?",
    "Are you sure you want to archive this environment? It will no longer be available for use.": "确定要归档此环境吗?它将不再可用。",
    "Are you sure you want to archive {projectName}?": "您确定要归档“{projectName}”吗?",
    "Are you sure you want to cancel the pending verification for <strong>{domain}</strong>?": "您确定要取消对 <strong>{domain}</strong> 的待定验证吗?",
    "Are you sure you want to clear the storage? This will delete all the data you have in this artifact and can’t be recovered. Shared artifacts won’t be affected.": "你确定要清空存储吗?这将删除此工件中的所有数据,且无法恢复。共享工件不会受到影响。",
    "Are you sure you want to delete \"{connectionName}\"? This action cannot be undone.": "确定要删除 “{connectionName}” 吗?此操作无法撤销。",
    "Are you sure you want to delete \"{name}\"?": "确定要删除 “{name}” 吗?",
    "Are you sure you want to delete \"{name}\"? This action cannot be undone.": "确定要删除\"{name}\"吗?此操作不可撤销。",
    "Are you sure you want to delete \"{name}\"? Your app will no longer have access to this value.": "您确定要删除\"{name}\"吗?您的应用将无法再访问此值。",
    "Are you sure you want to delete the domain <strong>{domain}</strong>?": "确定要删除域名 <strong>{domain}</strong> 吗?",
    "Are you sure you want to delete the managed settings? This cannot be undone.": "确定要删除托管设置吗?此操作不可撤销。",
    "Are you sure you want to delete this agent? This action cannot be undone.": "确定要删除此智能体吗?此操作不可撤销。",
    "Are you sure you want to delete this chat?": "确定要删除此聊天吗?",
    "Are you sure you want to delete this environment? This action cannot be undone.": "确定要删除此环境吗?此操作无法撤销。",
    "Are you sure you want to delete this session? This action cannot be undone.": "确定要删除此会话吗?此操作无法撤销。",
    "Are you sure you want to delete your account?": "确定要删除您的账户吗?",
    "Are you sure you want to delete {projectName}?": "确定要删除 {projectName} 吗?",
    "Are you sure you want to disable the Canvas instance ‘{platformName}’?": "确定要禁用 Canvas 实例\"{platformName}\"吗?",
    "Are you sure you want to dismiss this extra usage request from {name}? This action cannot be undone.": "确定要拒绝来自 {name} 的此份额外用量请求吗?此操作无法撤销。",
    "Are you sure you want to dismiss this invite request for {name}? This action cannot be undone.": "确定要拒绝 {name} 的此份邀请请求吗?此操作无法撤销。",
    "Are you sure you want to dismiss this join request from {name}? This action cannot be undone.": "确定要拒绝来自 {name} 的加入申请吗?此操作不可撤销。",
    "Are you sure you want to dismiss this request from {name}? This action cannot be undone.": "确定要拒绝来自 {name} 的请求吗?此操作无法撤销。",
    "Are you sure you want to dismiss this seat upgrade request from {name}? This action cannot be undone.": "确定要拒绝来自 {name} 的席位升级请求吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this connector request} other {all # connector requests}}? This action cannot be undone.": "你确定要忽略 {count, plural, one {这个连接器请求} other {全部 # 个连接器请求}}吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this extra usage request} other {all extra usage requests}}? This action cannot be undone.": "确定要拒绝 {count, plural, one {此项额外用量请求} other {所有额外用量请求}} 吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this join request} other {all join requests}}? This action cannot be undone.": "确定要拒绝 {count, plural, one {此项加入请求} other {所有加入请求}} 吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this request} other {all # requests}} for {connectorName}? This action cannot be undone.": "你确定要忽略 {connectorName} 的 {count, plural, one {此请求} other {全部 # 个请求}}吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this request} other {all requests}}? This action cannot be undone.": "确定要拒绝 {count, plural, one {此请求} other {所有请求}} 吗?此操作无法撤销。",
    "Are you sure you want to dismiss {count, plural, one {this seat upgrade request} other {all seat upgrade requests}}? This action cannot be undone.": "确定要拒绝 {count, plural, one {此项席位升级请求} other {所有席位升级请求}} 吗?此操作无法撤销。",
    "Are you sure you want to enable the Canvas instance ‘{platformName}’?": "确定要启用 Canvas 实例 ‘{platformName}’ 吗?",
    "Are you sure you want to log out of all devices?": "确定要从所有设备注销吗?",
    "Are you sure you want to permanently delete {count, plural, one {this chat} other {these chats}}? This cannot be undone.": "确定要永久删除 {count, plural, one {此聊天} other {这些聊天}} 吗?此操作无法撤销。",
    "Are you sure you want to remove code review for {repoName}?": "确定要为 {repoName} 移除代码审查 (Code Review) 吗?",
    "Are you sure you want to remove the MCP server “{serverKey}”?": "确定要移除 MCP 服务器 \"{serverKey}\" 吗?",
    "Are you sure you want to remove verification for <strong>{domain}</strong>? This will disable SSO for users with this domain.": "确定要移除 <strong>{domain}</strong> 的验证吗?这将为该域的用户禁用 SSO。",
    "Are you sure you want to revoke this service key? Any environments using this key will lose access.": "确定要吊销此服务密钥吗?任何使用此密钥的环境都将失去访问权。",
    "Are you sure you want to terminate this session? The device will lose access to your account.": "确定要终止此会话吗?该设备将失去访问您账号的权限。",
    "Are you sure you’d like to delete <b>{keyName}</b>? This is permanent and cannot be undone!": "确定要删除 <b>{keyName}</b> 吗?此操作为永久性的且无法撤销!",
    "Are you sure you’d like to {action} <b>{keyName}</b>?": "确定要 {action} <b>{keyName}</b> 吗?",
    "Are you sure? Closing while editing may not synchronize changes.": "确定要执行此操作吗?在编辑时关闭可能无法同步更改。",
    "Arguments": "参数 (Arguments)",
    "Arrow": "箭头",
    "Arrow keys move the tile. Perpendicular arrows preview a split; press Enter to commit or Escape to cancel.": "方向键可移动卡片。垂直方向的箭头可预览分割;按 Enter 确认,按 Escape 取消。",
    "Arrow pointing to play button": "指向播放按钮的箭头",
    "Art tools, design apps, and AI-powered content generators": "美术工具、设计应用以及 AI 驱动的内容生成器",
    "Art tools, design apps, drawing tools, visual creation, artistic applications": "美术工具、设计应用、绘图工具、视觉创作、艺术应用",
    "Artifact Catalog": "产物目录",
    "Artifact failed to load": "构件加载失败",
    "Artifact no longer published": "构件已不再发布",
    "Artifact no longer shared": "构件不再共享",
    "Artifact not found": "未找到构件",
    "Artifact panel{title}": "构件面板{title}",
    "Artifact published": "构件已发布",
    "Artifact reported": "构件已举报",
    "Artifact shared": "构件已共享",
    "Artifacts": "构件",
    "Artifacts are created by other users and aren’t verified by Anthropic. Only download files you trust.": "构件由其他用户创建,未经 Anthropic 验证。请仅下载您信任的文件。",
    "Artifacts are user-generated and may contain unverified or potentially unsafe content.": "构件由用户生成,可能包含未经验证或潜在不安全的内容。",
    "Artifacts created": "构件已创建",
    "Artifacts disabled": "构件已禁用",
    "Artifacts enabled": "构件 (Artifacts) 已启用",
    "Artifacts guide": "构件指南",
    "Artifacts is required for code execution and file creation, which is enabled by your organization": "代码执行和文件创建需要工件,这已由您的组织启用",
    "Artifacts that stay up to date": "保持最新的工件",
    "As the primary owner, {fullName} will be able to:": "作为主要所有者,{fullName} 将能够:",
    "As written": "按书面",
    "Ask": "询问",
    "Ask Claude": "询问 Claude",
    "Ask Claude about {name}": "询问 Claude 关于 {name}",
    "Ask Claude anything": "咨询 Claude 任何问题",
    "Ask Claude to build...": "让 Claude 构建……",
    "Ask Claude to commit": "让 Claude 进行提交 (Commit)",
    "Ask Claude to create an artifact from your data, or to update an existing one. Artifacts are local HTML dashboards you can refresh and share.": "让 Claude 根据您的数据创建一个 Artifact,或者更新现有的 Artifact。Artifact 是本地 HTML 仪表板,您可以刷新并分享它们。",
    "Ask Claude to create something": "请 Claude 创建内容",
    "Ask Claude to edit the style...": "请 Claude 编辑样式...",
    "Ask Claude to explain, edit, or fix code right in VS Code.": "在 VS Code 中直接让 Claude 解释、编辑或修复代码。",
    "Ask Claude to fix": "让 Claude 修复",
    "Ask Claude to generate content like code snippets, text documents, or website designs, and Claude will create an Artifact that appears in a dedicated window alongside your conversation.": "让 Claude 生成代码片段、文本文档或网站设计等内容,Claude 将创建一个构件 (Artifact),显示在对话旁边的专门窗口中。",
    "Ask Claude to remember something and it'll save it here.": "让 Claude 记住一些事情,它会保存在这里。",
    "Ask Claude to resolve": "让 Claude 解决",
    "Ask Claude to show you": "让 Claude 展示给你看",
    "Ask Claude your own question": "向 Claude 提出你自己的问题",
    "Ask a question or recommend a change": "提问或建议修改",
    "Ask a quick question…": "快速提问…",
    "Ask about any cell, formula, or model, directly in the sheet.": "直接在表格中就任何单元格、公式或模型进行提问。",
    "Ask about pricing, security, or what plan fits": "咨询价格、安全性或适合的计划",
    "Ask about this": "关于此项提问",
    "Ask again": "再次询问",
    "Ask an admin to enable Extra Usage.": "请管理员启用额外用量。",
    "Ask an organization owner to add this for your team": "请组织所有者为您的团队添加此项",
    "Ask an organization owner to add this for your team.": "请组织所有者为您的团队添加此项。",
    "Ask anything and start working through ideas. No setup required.": "提问任何问题并开始深入思考。无需设置。",
    "Ask anything and work through problems step by step.": "询问任何问题并逐步解决问题。",
    "Ask for more edits, save, or discard changes": "请求更多修改、保存或舍弃更改",
    "Ask me anything": "问我任何问题",
    "Ask on the side without touching the main chat": "在侧边提问而不影响主聊天",
    "Ask on the side without touching the main chat. Claude sees the full context, and nothing here is added to it.": "在侧边提问而不影响主聊天。Claude 会看到完整上下文,但这里的内容不会被加入其中。",
    "Ask permissions": "请求权限",
    "Ask questions, brainstorm, and tackle problems together.": "一起提问、头脑风暴并解决问题。",
    "Ask your admin": "请询问你的管理员",
    "Ask your admin for access": "请向管理员申请访问权限",
    "Ask your admin for help connecting your GitHub Enterprise account.": "请联系您的管理员以协助连接您的 GitHub Enterprise 账号。",
    "Ask your admin to enable Extra Usage for additional runs.": "请让管理员启用 Extra Usage 以获得更多运行次数。",
    "Ask your admin to grant the GitHub App access to this repository.": "请让您的管理员授予 GitHub App 对此存储库的访问权限。",
    "Ask your org": "咨询您的组织",
    "Ask {name}": "向 {name} 提问",
    "Ask {orgName}": "询问 {orgName}",
    "Ask “why” five times and work with Claude to discover the root cause, solutions, and insights": "连问五个“为什么”并与 Claude 协作发现根本原因、解决方案和见解",
    "Asked": "已提问",
    "Asking": "询问中",
    "Assess my approach to debugging problems": "评估我的问题调试方法",
    "Assign a group to the {role} role to continue.": "请分配一个组到 {role} 角色以继续。",
    "Assign roles based on IdP group membership.": "根据 IdP 组成员身份分配角色。",
    "Assign seat tiers to IdP groups": "为 IdP 分组分配席位等级",
    "Assign tasks to Claude from anywhere": "从任何地方向 Claude 分配任务",
    "Assign to role": "分配角色",
    "Associated session": "关联会话",
    "At": "在",
    "At any time, the USG may inspect and seize data stored on this IS.": "美国政府 (USG) 随时可能检查并查扣存储在此信息系统 (IS) 上的数据。",
    "At least one Client ID is required when Google sign-in is enabled.": "启用 Google 登录时,至少需要一个客户端 ID。",
    "At minute": "在分钟",
    "At your request": "应您的要求",
    "Attach as context": "附加为上下文",
    "Attach file": "添加文件附件",
    "Attach image": "附加图片",
    "Attach message as context": "将消息附加为上下文",
    "Attach selection as context": "将所选内容附加为上下文",
    "Attach simulator": "附加模拟器",
    "Attached image": "附加图片",
    "Attaching…": "正在附加…",
    "Attachment style quiz": "依赖风格测试",
    "Attachments added to {projectName}": "附件已添加到 {projectName}",
    "Attempt {current} of 5": "正在尝试(第 {current} 次,共 5 次)",
    "Attempting to join meeting...": "正在尝试加入会议...",
    "Audio settings": "音频设置",
    "Audit a page for UX issues": "审核页面的用户体验问题",
    "Audit a user flow for friction, dead ends, and unclear steps — I'll describe or paste the steps.": "审查一个用户流程中的阻力点、死胡同和不清晰步骤——我会描述或粘贴这些步骤。",
    "Audit logs": "审计日志",
    "Audit logs, Compliance API, and data-retention controls": "审计日志、合规 API 和数据保留控制",
    "Audits every page at phone width and fixes what doesn't fit — stacks layouts that overflow, sizes tap targets for touch, and checks text stays readable. If the site already adapts, this catches anything that still breaks on small screens.": "按手机宽度审查每个页面并修复不适配的部分——堆叠会溢出的布局、调整触控点击区域大小,并检查文本是否仍然可读。如果站点已经自适应,这也能找出在小屏幕上仍然会出问题的地方。",
    "Auth settings could not be saved.": "无法保存身份验证设置。",
    "Authentication": "身份验证",
    "Authentication Error": "身份验证错误",
    "Authentication Settings": "身份验证设置",
    "Authentication bypass": "身份验证绕过",
    "Authentication complete": "身份验证完成",
    "Authentication failed": "认证失败",
    "Authentication failed — sign in again and retry.": "身份验证失败,请重新登录后重试。",
    "Authentication failed. Check that your personal access token has the correct repository permissions.": "身份验证失败。请检查您的个人访问令牌(Personal Access Token)是否具有正确的仓库权限。",
    "Authentication failed. You can try connecting again.": "身份验证失败。您可以尝试重新连接。",
    "Authentication has failed. You can try reconnecting.": "身份验证失败。您可以尝试重新连接。",
    "Authentication is implemented securely (OAuth 2.0, scoped tokens, or authless where appropriate).": "身份验证已安全实现(OAuth 2.0、作用域令牌,或在适用时无身份验证)。",
    "Authentication needed": "需要身份验证",
    "Authentication required to use this tool": "需要身份验证才能使用此工具",
    "Authentication successful": "身份验证成功",
    "Authentication with GitHub failed. Check that the Claude GitHub App is installed on this repository.": "GitHub 身份验证失败。请检查 Claude GitHub App 是否已安装在此仓库上。",
    "Authentication with GitHub failed. Verify the Claude Code GitHub App has access to this repository.": "GitHub 身份验证失败。请验证 Claude Code GitHub App 已经拥有该仓库的访问权限。",
    "Authentication with {hostname} failed. Check that your organization's GitHub App is installed on this repository.": "与 {hostname} 的身份验证失败。请检查您的组织是否已在此存储库中安装 GitHub App。",
    "Authless": "无认证",
    "Author": "作者/作者名",
    "Author URL": "作者 URL",
    "Author name": "作者姓名",
    "Authorization failed": "授权失败",
    "Authorization successful": "授权成功",
    "Authorization tokens": "授权令牌",
    "Authorization with {serverName} failed. You can check your credentials and permissions.": "对 {serverName} 的授权失败。您可以检查您的凭据和权限。",
    "Authorize": "授权",
    "Authorize Gmail access": "授权 Gmail 访问权限",
    "Authorizing for {orgName}": "正在为 {orgName} 授权",
    "Auto": "自动",
    "Auto accept edits": "自动接受修改",
    "Auto fix": "自动修复",
    "Auto merge": "自动合并",
    "Auto mode": "自动模式",
    "Auto mode lets Claude handle permission decisions during coding sessions, so developers can run longer tasks without being interrupted by Claude asking for manual approvals. Auto mode also includes additional safeguards against prompt injections.": "自动模式让 Claude 在编码会话期间处理权限决定,这样开发者就可以运行较长时间的任务,而不会被 Claude 请求手动批准所打断。自动模式还包含针对提示词注入的额外防护措施。",
    "Auto thinking": "自动思考",
    "Auto-Allow disabled by your admin": "自动允许已被管理员禁用",
    "Auto-approve couldn't be sent. Use the permission card to respond.": "无法发送自动批准。请使用权限卡片进行响应。",
    "Auto-confirm email": "自动确认邮件",
    "Auto-confirm phone": "自动确认手机号码",
    "Auto-disabled": "已自动禁用",
    "Auto-fix CI & address comments": "自动修复 CI 并处理评论",
    "Auto-merge enabled": "自动合并已启用",
    "Auto-merge when ready": "准备就绪时自动合并",
    "Auto-organize sessions into projects": "自动将会话整理到项目中",
    "Auto-organized by Claude": "由 Claude 自动整理",
    "Auto-populate from SAML metadata file": "从 SAML 元数据文件自动填充",
    "Auto-reload": "自动重载",
    "Auto-reload has been disabled": "自动重载已禁用",
    "Auto-reload has been enabled": "自动重新加载已开启",
    "Auto-reload off": "自动重载已关闭",
    "Auto-reload requires a card on file. Your subscription will continue to use bank transfer.": "自动充值需要绑定银行卡。您的订阅将继续使用银行转账。",
    "Auto-reload settings have been updated": "自动重载设置已更新",
    "Auto-reload when balance runs low": "余额不足时自动重新加载",
    "Auto-sync requires the Claude GitHub App to have access to this repository. <link>Grant access</link>": "自动同步要求 Claude GitHub App 具有对此仓库的访问权限。<link>授予访问权限</link>",
    "Autocomplete finishes lines. Claude Code finishes features.": "自动补全完成代码行。Claude Code 完成功能。",
    "Automate a browser task": "自动执行一项浏览器任务",
    "Automate a repetitive workflow": "自动执行重复的工作流",
    "Automate memo drafts, data pulls, and deck prep across your files.": "跨文件自动起草备忘录、提取数据和准备演示文稿。",
    "Automated safeguards protect your chats from violent, abusive, or deceptive content.": "自动化防护措施可保护您的聊天免受暴力、虐待或欺诈内容侵害。",
    "Automatic approval couldn't be turned on. You can try again.": "无法开启自动批准。您可以重试。",
    "Automatic approval turned on for join requests.": "已为加入请求开启自动批准。",
    "Automatic sync now requires a webhook. Set one up to keep receiving plugin updates.": "自动同步现在需要 webhook。设置一个以继续接收插件更新。",
    "Automatic sync previously worked through the GitHub App integration. It now requires a webhook—without one, this marketplace will stop receiving plugin updates from GitHub.": "自动同步以前通过 GitHub App 集成工作。现在需要 webhook — 没有它,此市场将停止从 GitHub 接收插件更新。",
    "Automatically accept all file edits": "自动接受所有文件编辑",
    "Automatically assign seat tiers based on IdP group membership": "根据 IdP 分组身份自动分配席位等级",
    "Automatically buy more extra usage when your balance is low": "当余额不足时自动购买更多额外用量",
    "Automatically buy more extra usage when your balance is low.": "当您的余额不足时自动购买更多额外用量。",
    "Automatically disabled: Files feature": "自动禁用:文件功能",
    "Automatically disabled: {features}": "已自动禁用:{features}",
    "Automatically enabled: Artifacts": "自动开启:构件 (Artifacts)",
    "Automatically start Claude when you log in to your computer": "登录电脑时自动启动 Claude",
    "Automatically sync when a new commit lands on the default branch": "当有新的提交到达默认分支时自动同步",
    "Automatically turns on when Cowork launches on May 11, unless you opt out.": "除非您选择退出,否则将在 5 月 11 日 Cowork 启动时自动打开。",
    "Automatically update extensions when new versions are available. If disabled, you’ll need to manually update extensions.": "新版本可用时自动更新扩展程序。如果禁用,您需要手动更新。",
    "Autonomous Claude tasks": "自主 Claude 任务",
    "Availability": "可用性/库存",
    "Available": "可用",
    "Available (will boot)": "可用(将启动)",
    "Available after publishing": "发布后可用",
    "Available after your free trial ends on {date}.": "将在您的免费试用期于 {date} 结束后可用。",
    "Available for Max plans": "Max 套餐可用",
    "Available for Pro and Max plans": "适用于 Pro 和 Max 方案",
    "Available for Pro plans": "Pro 套餐可用",
    "Available for install": "可供安装",
    "Available for macOS, Linux, and Windows.": "适用于 macOS、Linux 和 Windows。",
    "Available now on Claude for macOS": "现已在 Claude macOS 版中可用",
    "Available on paid plans. <upgrade>Upgrade to unlock</upgrade> or <learn>learn how to use {feature}</learn>": "仅限付费套餐使用。<upgrade>升级以解锁</upgrade> 或 <learn>了解如何使用 {feature}</learn>",
    "Available to install": "可安装",
    "Available to your team": "对您的团队可用",
    "Available with a Claude Max plan": "Claude Max 套餐可用",
    "Available with a Claude Max, Team, or Enterprise plan": "Claude Max、Team 或 Enterprise 套餐可用",
    "Available with a Claude Pro or Max plan": "适用于 Claude Pro 或 Max 方案",
    "Available with a Claude Pro plan": "Claude Pro 方案可用",
    "Available with a Claude Pro, Max, Team, or Enterprise plan": "适用于 Claude Pro、Max、Team 或 Enterprise 方案",
    "Available with a Claude Pro, Team, or Enterprise plan": "Claude Pro、Team 或 Enterprise 方案可用",
    "Avatar": "头像",
    "Avg Cost": "平均成本",
    "Avg Vol 50d": "50 日平均成交量",
    "Avoid financial transactions, password management, or anything involving sensitive personal data. Start with trusted sites and familiar workflows where you're comfortable having Claude take actions. Never use it for high-stakes decisions without careful supervision. And, of course, make sure your use complies with our <aupLink>acceptable use policy</aupLink>. <learnMore>Learn more</learnMore>": "避免财务交易、密码管理或任何涉及敏感个人数据的事情。从受信任的站点和您觉得让 Claude 采取操作比较放心的熟悉流程开始。没有仔细监督,绝不要将其用于重大决策。当然,请确保您的使用符合我们的<aupLink>可接受使用政策</aupLink>。<learnMore>了解更多</learnMore>",
    "Avoid sharing personal information like names or contact details.": "避免分享姓名或联系方式等个人信息。",
    "Awaiting answer": "等待回答",
    "Awaiting input": "等待输入",
    "Azure AI": "Azure AI",
    "Azure AI Foundry": "Azure AI Foundry",
    "BETA": "BETA (测试版)",
    "Back": "返回",
    "Back at it!": "重返工作!",
    "Back at it, {name}": "欢迎回来,{name}",
    "Back from PTO... where did I leave off?": "休假回来了……我上次说到哪里了?",
    "Back to Claude": "返回 Claude",
    "Back to Login": "返回登录",
    "Back to all pull requests": "返回所有拉取请求",
    "Back to chat": "返回聊天",
    "Back to connectors": "返回连接器",
    "Back to current": "回到当前/还原",
    "Back to landing page": "返回落地页",
    "Back to memory": "返回记忆",
    "Back to plans": "返回方案",
    "Back to plugin list": "返回插件列表",
    "Back to publish settings": "返回发布设置",
    "Back to safety": "返回安全页面",
    "Back to sessions": "回到会话列表",
    "Back to settings": "返回设置",
    "Back to submissions": "返回提交列表",
    "Back to {tab}": "返回至 {tab}",
    "Background animation": "背景动画",
    "Background color": "背景颜色",
    "Background pattern selection": "背景图案选择",
    "Background task {status}": "后台任务 {status}",
    "Background task: {description}": "后台任务:{description}",
    "Background {noun} started": "后台 {noun} 已启动",
    "Background {noun} {status}": "后台{noun}{status}",
    "Balance multiple projects": "平衡多项项目",
    "Balance social commitments": "平衡社交重任/承诺",
    "Bank transfer": "银行转账",
    "Bank transfers take 1 to 5 business days to clear.": "银行转账需要 1 到 5 个工作日才能到账。",
    "Banner settings could not be saved. You can try again.": "横幅设置无法保存。您可以重试。",
    "Banner settings saved.": "横幅设置已保存。",
    "Banner text": "横幅文本",
    "Based on that, pick the single most useful task we could finish in the next few minutes and let's get started — don't give me a menu.": "基于此,选出接下来几分钟内我们最值得完成的一项任务,然后直接开始,不要给我菜单。",
    "Based on what you've described, a smaller plan is the better fit.": "根据你的描述,较小的方案更合适。",
    "Based on {count} conversations analyzed in the last {windowDays} days, as of {date}. <a>Learn more</a>": "基于截至 {date} 过去 {windowDays} 天内分析的 {count} 条对话。<a>了解更多</a>",
    "Based on {count} recent conversations as of {date}. <a>Learn more</a>": "基于截至 {date} 的 {count} 次近期对话。<a>了解更多</a>",
    "Bash commands approved this month, classified by risk.": "本月批准的 Bash 命令,按风险分类。",
    "Bash mode. Press Escape to return to chat.": "Bash 模式。按 Escape 返回聊天。",
    "Bash script that runs when a new session starts, before Claude Code launches.": "在新会话开始时、Claude Code 启动前运行的 Bash 脚本。",
    "Basic auth credentials": "基础身份验证凭据",
    "Basic features and reduced usage": "基础功能和较低用量",
    "Basic usage": "基础用量",
    "Batch archive…": "批量归档…",
    "Batch delete…": "批量删除…",
    "Batch — {count, plural, one {# action} other {# actions}}": "批量,{count, plural, one {# 个操作} other {# 个操作}}",
    "Be Creative": "发挥创意",
    "Be as descriptive as possible to help Claude generate the best possible style for you": "请尽量详细地描述,以协助 Claude 为您生成最理想的风格",
    "Be cautious if Claude behaves unexpectedly—some sites hide instructions to override yours.": "如果 Claude 表现异常,请保持警惕——某些站点可能隐藏指令来覆盖您的指令。",
    "Be creative": "尽情发挥创意",
    "Because a large number of your prompts have violated our Acceptable Use Policy, we have temporarily applied enhanced safety filters to your chats.": "由于您的多条提示词违反了我们的许可使用政策,我们已暂时对您的聊天应用增强型安全过滤器。",
    "Bedrock": "Bedrock",
    "Bedtime story generator": "睡前故事生成器",
    "Before You Submit an Appeal": "在提交申诉前",
    "Before adding this Canvas instance, ensure you have:": "在添加此 Canvas 实例前,请确保您拥有:",
    "Before continuing, confirm that:": "在继续之前,请确认:",
    "Before we get started, what should I call you?": "在开始之前,我该怎么称呼您?",
    "Before you begin, please read the {guidelinesLink}. Your server must meet these requirements to be accepted, and the review team will check each submission against them.": "开始之前,请先阅读 {guidelinesLink}。你的服务器必须满足这些要求才能被接受,审核团队会根据这些要求检查每一项提交。",
    "Before you create your {planName}": "在创建您的 {planName} 之前",
    "Before you proceed, you must acknowledge the usage conditions presented here. The notification message or banner will remain on your screen until you take explicit action to further access the system.": "在继续之前,您必须承认此处列出的使用条件。在您采取明确操作以进一步访问系统之前,该通知消息或横幅将一直留在屏幕上。",
    "Before your first chat": "在您第一次聊天前",
    "Begin the interview": "开始访谈",
    "Behavior": "行为",
    "Best for developers and anyone needing extra usage": "最适合开发者和任何需要额外用量的人",
    "Best for everyday work": "最适合日常工作",
    "Best for math and coding challenges": "最适合数学和编程挑战",
    "Best for most employees": "最适合大多数员工",
    "Best for most use cases": "最适合大多数用例",
    "Best for power users who hand off work throughout the day.": "最适合需要在一天中不断移交工作的重度用户。",
    "Best for power users with the most access to Claude models.": "最适合能最大化使用 Claude 模型的高级用户。",
    "Best value": "最佳价值",
    "Best-in-class coding agent that runs in your terminal, edits files, runs scripts, and more.": "一流的编码代理,可在终端中运行、编辑文件、运行脚本等。",
    "Beta": "Beta (测试版)",
    "Beta (3Y)": "Beta (3Y)",
    "Beta:": "Beta (测试版):",
    "Better than very": "无可挑剔/比非常好更好",
    "Better understand a complex subject": "更好地理解复杂主题",
    "Bill to": "账单寄送至",
    "Billboard": "宣传栏",
    "Billed monthly": "按月计费",
    "Billed yearly": "按年计费",
    "Billing": "账单",
    "Billing address": "账单地址",
    "Billing charges for new team members will be prorated based on the date they are added. <link>Learn more</link>": "新团队成员的账单将根据其添加日期按比例计算。<link>了解更多</link>",
    "Billing contact": "账单联系人",
    "Billing contact email": "账单联系邮箱",
    "Billing contact name": "账单联系人名称",
    "Billing email": "账单邮箱",
    "Billing information": "账单信息",
    "Billing is not available for this account.": "此账户无法进行结算。",
    "Billing is not set up for your account. Set up billing to enable Claude Code Security.": "您的账户未设置账单。设置账单以启用 Claude Code Security。",
    "Billing is not set up for your account. Set up billing to enable Claude Security.": "你的账户尚未设置计费。请先设置计费以启用 Claude Security。",
    "Billing is not set up for your organization. Set up billing to enable Claude Code Security.": "您组织尚未设置账单信息。请设置账单以启用 Claude Code Security。",
    "Billing is not set up for your organization. Set up billing to enable Claude Security.": "你的组织尚未设置计费。请先设置计费以启用 Claude Security。",
    "Billing isn't configured for this organization — contact support to set it up": "此组织尚未配置账单——请联系支持人员进行设置",
    "Binary content cannot be displayed in this preview.": "二进制内容无法在此预览中显示。",
    "Black Clearance Ants should use Nest for internal features and faster updates. It's already installed on your machine.": "Black Clearance Ants 应使用 Nest 来获取内部功能和更快的更新。它已经安装在您的机器上。",
    "Blame": "Blame",
    "Blanket permission for group": "群组通用权限",
    "Block extension": "阻止扩展",
    "Blocked": "已封锁",
    "Blocked by endpoint security": "被端点安全阻止",
    "Blocked by your admin": "被您的管理员阻止",
    "Blocked sites": "封锁的网站",
    "Blocked websites updated.": "已更新被屏蔽的网站。",
    "Blocklisted": "已列入屏蔽列表",
    "Blocks internet access for maximum security with reduced functionality.": "封锁互联网访问,以换取最高的安全性,但功能会受限。",
    "Blocks internet access for maximum security.": "为最大程度保障安全而阻止互联网访问。",
    "Blog": "博客",
    "Blue": "蓝色",
    "Book Value": "账面价值/书面价值",
    "Boom! Research report is ready": "砰!研究报告已就绪",
    "Boost model performance": "提升模型性能",
    "Booted": "已启动",
    "Booting…": "正在启动…",
    "Bootstrap config URL": "引导配置 URL",
    "Bot API keys": "机器人 API 密钥",
    "Both standard and premium seats have access. Premium includes higher usage limits for heavier workloads.": "标准和高级席位均可访问。高级席位包含更高的用量限制,适合更繁重的任务。",
    "Bounce the dock icon or flash the taskbar when Claude needs your attention and the app is not focused.": "当 Claude 需要您的关注且应用未处于焦点时,自动跳动程序图标或闪烁任务栏。",
    "Brainstorm 4-5 angles for an article, with a punchy one-line hook for each. I'll share the topic next.": "为一篇文章头脑风暴 4 到 5 个角度,并为每个角度配一句有力的钩子文案。我接下来会提供主题。",
    "Brainstorm Idea Generator": "创意脑机灵感生成器",
    "Brainstorm an idea": "脑力激荡/集思广益",
    "Brainstorm angles, refine copy, and get a fast second opinion.": "构思角度、完善文案并快速获得第二意见。",
    "Brainstorm creative concepts": "头脑风暴创意概念",
    "Brainstorm creative ideas": "构思创意",
    "Brainstorm ideas for a project": "为项目头脑风暴创意",
    "Brainstorm ideas with me": "和我一起头脑风暴",
    "Brainstorm ideas with me — I'll tell you the topic and you push back where it helps.": "和我一起头脑风暴,我会告诉你主题,你在有帮助的地方提出质疑和反馈。",
    "Brainstorm in Claude, build in Cowork": "在 Claude 中头脑风暴,在 Cowork 中构建",
    "Brainstorm with me": "和我一起头脑风暴",
    "Branch": "分支",
    "Branch doesn't exist yet": "分支尚不存在",
    "Branch hasn't been pushed to GitHub": "分支尚未推送到 GitHub",
    "Branch is out of date": "分支已过期",
    "Branch name copied to clipboard!": "分支名称已复制到剪贴板!",
    "Branch name copied to clipboard.": "分支名称已复制到剪贴板。",
    "Branch prefix": "分支前缀",
    "Branch to new chat": "分支到新聊天",
    "Branch to start from": "起始分支",
    "Brand designer": "品牌设计师",
    "Break down a concept": "拆解一个概念",
    "Break down large tasks and ask clarifying questions when needed.": "分解大型任务并在需要时询问澄清问题。",
    "Bridge": "Bridge",
    "Bridge environment unavailable.": "Bridge 环境不可用。",
    "Bridge is at capacity ({active} of {max} sessions).": "Bridge 已满({active} / {max} 个会话)。",
    "Bridge is offline.": "Bridge 离线。",
    "Brief description of your issue": "您问题的简要描述",
    "Brief only": "仅简述",
    "Bring Claude Code into your favorite IDE.": "将 Claude Code 引入您喜欢的 IDE。",
    "Bring Claude into Chrome, Slack, and more": "将 Claude 引入 Chrome、Slack 等",
    "Bring a project you made in Chat over to Cowork.": "将您在聊天中创建的项目带到 Cowork 中。",
    "Bring a project you made in Chat over to Cowork. Changes in Cowork won't affect your project in Chat.": "将您在聊天中创建的项目带到 Cowork 中。在 Cowork 中的更改不会影响您在聊天中的项目。",
    "Bring me anything—a tough problem, a half-formed idea, something you need to write. We’ll figure it out together.": "给我带来任何东西——棘手的问题、半成品创意,或者您需要撰写的内容。我们会一起解决它。",
    "Bring relevant context and data from another AI provider to Claude. We'll provide a prompt you can use to fetch the memory from your other account.": "将相关背景和数据从另一个 AI 提供商带到 Claude。我们将提供一段提示语,供您从另一个账户中获取该记忆。",
    "Bring your history over from another AI": "从其他 AI 迁移您的历史记录",
    "Bring your knowledge": "带入您的知识",
    "Bring your memory from another AI": "从另一个 AI 导入您的记忆",
    "Bring your team along": "带上您的团队",
    "Broadcast connection request…": "正在广播连接请求…",
    "Browse": "浏览",
    "Browse by category": "按类别浏览",
    "Browse by language": "按语言浏览",
    "Browse connectors": "浏览连接器",
    "Browse extensions": "浏览扩展程序",
    "Browse files": "浏览文件",
    "Browse for folder…": "浏览文件夹…",
    "Browse for path": "浏览路径",
    "Browse plugins": "浏览插件",
    "Browse remote folder…": "浏览远程文件夹…",
    "Browse resources": "浏览资源",
    "Browse skills": "浏览技能",
    "Browse thousands of AI-powered tools, applications, and interactive experiences built with Claude. Whether you’re looking to streamline your work, learn something new, or explore AI capabilities, discover tools that transform how you create, analyze, and innovate.": "浏览成千上万个基于 Claude 构建的 AI 驱动工具、应用和互动体验。无论您是想简化工作、学习新知识还是探索 AI 能力,都能发现改变您创作、分析和创新方式的工具。",
    "Browser": "浏览器",
    "Browser AI faces unique security risks, like prompt injection attacks, where malicious actors might try to trick Claude into unintended actions, such as sharing your bank information or deleting important files. While we’ve implemented protections, they aren’t foolproof. Attack vectors are constantly evolving and Claude may hallucinate, leading to actions that you did not intend. We’ve shared our testing results, including possible attack scenarios, so you can make informed decisions, and strongly encourage you to <risksLink>read about the risks</risksLink> before using this product. <blogLink>Read blog post</blogLink>": "浏览器 AI 面临独特的安全风险,例如提示词注入攻击,恶意行为者可能会试图诱骗 Claude 执行非预期操作,例如分享您的银行信息或删除重要文件。虽然我们已实施防护措施,但这些措施并非万无一失。攻击手段不断演变,且 Claude 可能产生幻觉,导致您未预期的操作。我们已分享测试结果,包括可能的攻击场景,以便您做出明智的决策,并强烈建议您在使用此产品前<risksLink>了解相关风险</risksLink>。<blogLink>阅读博客文章</blogLink>",
    "Browser Use": "浏览器使用",
    "Browser domains": "浏览器域名",
    "Browser extension settings updated.": "浏览器扩展程序设置已更新。",
    "Browser listing requires a newer version of the desktop app.": "浏览器列表需要较新版本的桌面应用。",
    "Browsing plugins requires Git to clone marketplace repositories.": "浏览插件需要安装 Git 以克隆市场仓库。",
    "Browsing plugins requires network access to reach plugin marketplaces. Ask an organization owner to enable network egress in the capabilities settings.": "浏览插件需要网络访问以连接到插件市场。请联系组织所有者在能力设置中启用网络出口权限。",
    "Browsing plugins requires network access to reach plugin marketplaces. Enable network egress in <link>capabilities settings</link> to browse and install plugins.": "浏览插件需要访问网络以触达插件市场。请在<link>能力设置</link>中启用网络出口以浏览并安装插件。",
    "Brush size selection": "画笔粗细选择",
    "Build a PRD template": "构建 PRD 模板",
    "Build a client deck": "制作客户演示文稿",
    "Build a consulting deck": "制作咨询演示文稿",
    "Build a content calendar": "构建内容日历",
    "Build a dashboard": "构建仪表盘",
    "Build a data dashboard": "构建数据仪表盘",
    "Build a financial model": "建立财务模型",
    "Build a fun game": "构建一个有趣的游戏",
    "Build a lesson plan": "制定课程计划",
    "Build a lesson plan for a topic I'll share — include learning objectives, at least two activities, and a quick check for understanding.": "根据我提供的主题制定一份课程计划,包含学习目标、至少两个活动,以及一个快速理解检查。",
    "Build a live digest of my Slack mentions and DMs from today, with a one-line summary of each thread.": "生成今天我的 Slack 提及和私信的实时摘要,并为每个线程附上一行总结。",
    "Build a live tracker for my open Linear issues, grouped by project and priority.": "为我未关闭的 Linear 问题构建一个实时跟踪器,按项目和优先级分组。",
    "Build a minimalist “Better than very” react app that helps users find powerful alternatives to “very + adjective” combinations. The app should feature a simple madlib interface (“Very __”) where users enter an adjective, then uses Claude API to suggest a single, more impactful word. Use serif typography (EB Garamond), dark/light modes, typing animation for results, and a refresh button for alternative suggestions. When users type new input, previous results fade away. The API should return one word at a time, avoiding repetition on refresh. Keep the design elegant and focused, with the title in the top-left and theme toggle top-right.": "构建一个名为 ‘Better than very’ 的极简 React 应用,帮助用户找到 “very + 形容词” 组合的高级替代方案。应用应包含一个简单的填空界面 (“Very __”),用户在此输入形容词,应用通过 Claude API 建议一个更有冲击力的单词。使用衬线字体 (EB Garamond)、深/浅色模式、结果的打字机动画以及用于获取其他建议的重试按钮。当用户输入新的文字时,之前的成果淡出。API 应每次返回一个单词,并在刷新时避免重复。保持设计优雅且专注,标题位于左上角,主题切换位于右上角。",
    "Build a new hire onboarding plan": "制定新员工入职计划",
    "Build a phylogenetic tree": "构建系统发育树",
    "Build a problem set": "编写习题集",
    "Build a project dashboard generator that: - Accepts project data (tasks, deadlines, team members, milestones) - Creates a visual dashboard with: - Progress bars for overall and task completion - Gantt chart visualization - Team member workload distribution - Upcoming deadlines widget - Milestone timeline - Includes filtering by team member, priority, or status Style it with a professional look suitable for presentations.": "构建一个项目仪表盘生成器,要求: - 接受项目数据(任务、截止日期、团队成员、里程碑) - 创建一个包含以下内容的可视化仪表盘: - 总体及任务完成进度条 - 甘特图可视化 - 团队成员工作量分布 - 即将到来的截止日期微件 - 里程碑时间轴 - 包含按团队成员、优先级或状态进行的过滤功能。使其具有适合演示的专业外观。",
    "Build a react app that allows users write better emails. The user should be able to briefly write what they are trying to say and then choose a tone for the email (e.g. concise, warm, formal, etc) Use the Claude API to transform their raw thoughts into a finished email. Make the app extremely visually appealing. You are the world’s best front-end engineer and you also have a masters degree in visual design, so you should be able to really do this extremely well. The color palette should draw from blues, whites, and greys. Have an optional section to enter the email you are responding to. For the generated email, include a button to copy it to the clipboard.": "构建一个 React 应用,帮助用户写出更好的邮件。用户应该能简要写下想表达的内容,然后选择邮件语调(如:简洁、热情、正式等)。使用 Claude API 将他们的原始想法转化为完整的邮件。使应用在视觉上极具吸引力。您是世界上最出色的前端工程师,同时拥有视觉设计硕士学位,因此您应该能完成得非常出色。配色方案应选取蓝色、白色和灰色。包含一个可选部分来输入正在回复的邮件。对于生成的邮件,包含一个复制到剪贴板的按钮。",
    "Build a sales playbook": "编写一份销售战术指南",
    "Build a secure Node.js REST API": "构建安全的 Node.js REST API",
    "Build a web app": "构建网页应用",
    "Build an app": "构建应用",
    "Build an app based on my idea": "根据我的想法构建一个应用",
    "Build an app, no code needed": "构建应用,无需代码",
    "Build an image color palette extractor web app. It should allow users to upload or browse for images and display the uploaded image in a large preview area on the right.\nThe app should extract 5 prominent colors and show these with circular indicators on the image. The user should be able to move the circular indicators to change the colors. The extracted color palette should be shown on the left side as colored rectangles.": "构建一个图片配色方案提取器 Web 应用。它应允许用户上传或浏览图片,并在右侧的大预览区域显示上传的图片。\n应用应提取 5 种突出颜色,并在图片上通过圆形指示器显示。用户应能移动圆形指示器来更改颜色。提取的配色方案应在左侧以彩色矩形显示。",
    "Build an inbox triage page from my unread emails, with action items pulled out and grouped by sender.": "根据我的未读邮件生成一个收件箱分诊页面,提取行动项并按发件人分组。",
    "Build an interactive dashboard from a set of data. Before doing anything else, ask me if I want to provide the data myself or use made-up data.": "根据一组数据创建一个交互式仪表盘。在开始前,请先询问我提供真实数据还是使用模拟数据。",
    "Build an interactive flashcard app that presents educational content through a term/definition or question/answer format, featuring a horizontal flip animation to reveal information. The front side displays concise terminology or questions while the back provides detailed explanations or answers. Use the claude API to generate flashcard content when a user describes a topic. I have uploaded some images that I want you to follow.": "构建一个互动记忆卡片应用,通过术语/定义或问题/答案格式呈现教育内容,并具有水平翻转动画来显示信息。正面显示简明术语或问题,背面提供详细解释或答案。当用户描述一个话题时,使用 Claude API 生成记忆卡片内容。我上传了一些希望您遵循的图片。",
    "Build an objection handling guide": "建立异议处理指南",
    "Build apps and interactive documents that use Claude inside the artifact.": "在工件中构建使用 Claude 的应用和交互式文档。",
    "Build apps, refine, debug, and refactor code directly in your terminal.": "直接在终端中构建应用、润色、调试及重构代码。",
    "Build better relationships": "建立更好的关系",
    "Build complex skills through conversation": "通过对话构建复杂的技能",
    "Build data workflows and automations without opening a ticket.": "无需提交工单即可构建数据工作流和自动化。",
    "Build features, fix bugs, and prototype right in your codebase": "直接在代码库中构建功能、修复错误和制作原型",
    "Build financial models, analyze data, and create tables and charts with Claude directly in Excel": "直接在 Excel 中使用 Claude 构建财务模型、分析数据并创建表格和图表",
    "Build financial projections": "构建财务预测",
    "Build hover states from the spec": "根据规范构建悬停状态",
    "Build landing pages and campaign tools without waiting on engineering.": "无需等待工程部门,即可构建落地页和活动工具。",
    "Build me a thoughtful, minimalist app that visualizes a user’s life in weeks in a 2-step flow. Allow the user to input their birth date to visualize the number of weeks they have as a grid of weeks. Show interesting life stats that relate to the time that has passed since they were born (e.g. X number of weeks lived). This should feel like an app that makes the user pause to think and reflect, inspired by Dieter Rams’ design philosophy. Use sentence case throughout. Make sure it’s responsive for mobile!": "为我构建一个精心设计的极简应用,通过2步流程将用户的生命以周的形式可视化。允许用户输入出生日期,以周网格的形式可视化他们拥有的周数。显示与自出生以来已度过的时间相关的有趣的生命统计数据(例如:已生活的X周)。这应该是一款让用户停下来思考和反思的应用,受 Dieter Rams 设计哲学启发。全程使用句首大写格式。请确保在移动端也能响应式显示!",
    "Build me pettiness meter app that measure how petty the user’s grievances are from ‘legitimate concern’ to ‘let it go’, with a visual scale to show they fall. The user should be able to key in their grievance and we should use Claude API to analyze the grievance. Make this fun and interactive. There should be an actual gauge meter!": "帮我写一个“爱计较程度计”应用,衡量用户的怨言等级,从“合情合理的担忧”到“随它去吧”,配合视觉刻度显示等级。用户应能输入他们的怨言,我们要调用 Claude API 来分析内容。让它变得有趣且具有互动性。应该有一个实际的仪表盘仪表!",
    "Build my personal brand": "打造我的个人品牌",
    "Build pipelines and analysis scripts alongside your notebooks.": "在您的笔记本旁边构建管道和分析脚本。",
    "Build presentations with Claude alongside you.": "在 Claude 的陪伴下构建演示文稿。",
    "Build prototypes instantly": "即时构建原型",
    "Build something fun you can actually share": "制作一些有趣且真正可以分享的内容",
    "Build standup deck": "制作站会演示文稿",
    "Build team communication": "构建团队沟通",
    "Build this": "构建此内容",
    "Build whatever you’re imagining": "构建你想象中的任何东西",
    "Build, debug, and ship by describing what you need.": "通过描述您的需求来构建、调试和发布产品。",
    "Build, debug, and ship directly in your codebase.": "在您的代码库中直接构建、调试和交付。",
    "Build, debug, and ship from inside your codebase—terminal, IDE, or desktop app.": "可直接在你的代码库内部进行构建、调试和发布——无论是在终端、IDE 还是桌面应用中。",
    "Build, debug, and ship from your terminal or IDE.": "在您的终端或 IDE 中构建、调试并交付代码。",
    "Build, debug, and ship from your terminal.": "在您的终端中构建、调试并交付代码。",
    "Build, debug, and ship just by describing what you need.": "只需描述您的需求,即可构建、调试和交付。",
    "Build, debug, and ship with Claude Code": "使用 Claude Code 构建、调试和交付",
    "Building an MCP server? <link>Report issues and subscribe to updates here</link>": "正在构建 MCP 服务器?请在此<link>报告问题及订阅更新</link>",
    "Building standup deck": "正在构建站会幻灯片",
    "Built for real dev workflows:": "专为真实开发流程打造:",
    "Built for real development workflows": "为真实的开发工作流而生",
    "Built to help, not harm:": "旨在助人,而非伤人:",
    "Built-in": "内置",
    "Built-in skills": "内置技能",
    "Built-in web search": "内置网页搜索",
    "Bulk add": "批量添加",
    "Bulk assign membership role": "批量分配成员角色",
    "Bulk assign…": "批量分配…",
    "Bulk email input": "批量邮箱输入",
    "Business & strategy": "商务与策略",
    "Business Associate Agreement": "业务伙伴协议",
    "Business operations": "商务运营",
    "Business tax ID (Optional)": "商业税 ID(可选)",
    "But you can call me...": "但你可以叫我...",
    "But you do have permission to apply to Anthropic": "但您确实有权限申请加入 Anthropic",
    "Buy credits anytime or set up auto-reload": "可随时购买额度或设置自动充值",
    "Buy extra usage": "购买额外用量",
    "Buy extra usage so people in your organization can keep using Claude if they hit a limit.": "购买额外用量,以便您组织中的成员在达到限额后仍能继续使用 Claude。",
    "Buy more": "购买更多",
    "Buy usage credits to get started": "购买用量额度以开始使用",
    "Buying extra usage": "购买额度用量",
    "By clicking \"Sign & complete\", the terms of the Enterprise Purchase become effective immediately and are non-cancellable and non-refundable. I confirm that I have the legal authority to bind my organization to this agreement.": "点击“签署并完成”后,企业版购买条款立即生效,且不可取消、不可退款。我确认我拥有代表组织签署本协议的法律授权。",
    "By clicking 'Accept', you agree to only scan code your company owns or holds necessary rights to scan. You may scan open source projects your company maintains or actively contributes to, but not other third-party code.": "点击“接受”,即表示您同意仅扫描您公司拥有或持有必要扫描权的代码。您可以扫描您公司维护或积极贡献的开源项目,但不能扫描其他第三方代码。",
    "By clicking 'Confirm upgrade', you agree to Anthropic's <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. Usage is billed based on usage consumed. You can cancel anytime; your team retains access until the end of the current billing period.": "点击“确认升级”即表示您同意 Anthropic 的<terms>商业条款</terms>(包括任何<serviceTerms>服务特定条款</serviceTerms>),且您声明您已获得客户授权签署本协议。费用将基于实际消耗的用量结算。您可以随时取消;您的团队在当前计费周期结束前仍保留访问权限。",
    "By clicking 'Subscribe', you agree to Anthropic's <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. Usage is billed based on usage consumed. You can cancel anytime; your team retains access until the end of the current billing period.": "点击“订阅”即表示您同意 Anthropic 的<terms>商业条款</terms>(包括任何<serviceTerms>服务特定条款</serviceTerms>),且您声明您已获得客户授权签署本协议。费用将基于实际消耗的用量结算。您可以随时取消;您的团队在当前计费周期结束前仍保留访问权限。",
    "By clicking Pay now, an invoice will be created for the amount above. Credits will be added once your bank transfer is received.": "点击“立即支付”将按上述金额创建发票。收到您的银行转账后,信用额度将被添加。",
    "By clicking Pay now, you agree to Anthropic's <link>Commercial Terms of Service</link>. Usage purchases expire 1 year after purchase, subject to applicable law.": "点击“立即支付”,即表示您同意 Anthropic 的 <link>商业服务条款</link>。购买的用量自购买之日起 1 年后过期,受适用法律约束。",
    "By clicking Pay now, you allow Anthropic to charge your card in the amount above.": "点击“立即支付”,即表示您允许 Anthropic 按上述金额扣费。",
    "By clicking Pay, you allow Anthropic to charge your card in the amount above.": "点击“支付”即表示你允许 Anthropic 按上述金额向你的银行卡扣款。",
    "By clicking Purchase, an invoice will be created for the amount above. Credits will be added once your bank transfer is received.": "点击购买后,将为上述金额创建发票。收到银行转账后将添加额度。",
    "By clicking Purchase, you agree to Anthropic's <link>Commercial Terms of Service</link>. Usage purchases expire 1 year after purchase, subject to applicable law.": "点击“购买”即表示您同意 Anthropic 的<link>商业服务条款</link>。购买的用量在购买后 1 年到期,受适用法律约束。",
    "By clicking Purchase, you allow Anthropic to charge your card in the amount above.": "点击“购买”即表示您允许 Anthropic 扣除上述金额。",
    "By clicking ‘Subscribe’, you agree to Anthropic’s <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. By providing your payment information, you allow Anthropic to charge your card in the amount above now and monthly until you cancel in accordance with our <cancellation>terms</cancellation>. You can cancel at any time.": "点击“订阅”即表示您同意 Anthropic 的<terms>商业条款</terms>(包括任何<serviceTerms>服务特定条款</serviceTerms>),且您声明您已获得客户授权签署本协议。通过提供支付信息,您允许 Anthropic 按照上述金额立即扣费,并每月自动扣费,直至您按照<cancellation>条款</cancellation>规定取消。您可以随时取消。",
    "By clicking ‘Subscribe’, you agree to Anthropic’s <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. By providing your payment information, you allow Anthropic to charge your card in the amount above now and {billingInterval} until you cancel in accordance with our <cancellation>terms</cancellation>. You can cancel at any time.": "点击‘订阅’,即表示您同意Anthropic的<terms>商业条款</terms>(包括任何<serviceTerms>服务特定条款</serviceTerms>),并声明您由客户授权签订此协议。提供支付信息后,您允许Anthropic立即按上述金额收费,并在 {billingInterval} 持续收费,直到您根据我们的<cancellation>条款</cancellation>取消。您可以随时取消。",
    "By clicking ‘Subscribe’, you agree to Anthropic’s <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. By providing your payment information, you allow Anthropic to charge your card in the amount above today, then your full subscription price {billingInterval} starting {trialEndDate}, until you cancel in accordance with our <cancellation>terms</cancellation>. Additional <promoTerms>promotional terms</promoTerms> apply. You can cancel at any time.": "点击“订阅”即表示你同意 Anthropic 的<terms>商业条款</terms>(包括任何<serviceTerms>特定服务条款</serviceTerms>),并声明你已获客户授权签订本协议。提供付款信息即表示你授权 Anthropic 今天按上述金额向你的银行卡收费,并自 {trialEndDate} 起按 {billingInterval} 收取完整订阅费用,直至你依据我们的<cancellation>条款</cancellation>取消订阅。另有<promoTerms>促销条款</promoTerms>适用。你可随时取消。",
    "By clicking ‘Subscribe’, you agree to Anthropic’s <terms>Commercial Terms</terms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer. By providing your payment information, you allow Anthropic to charge your card in the amount above today, then your full subscription price {billingInterval} starting {trialEndDate}, until you cancel in accordance with our <cancellation>terms</cancellation>. You can cancel at any time.": "点击“订阅”,即表示您同意 Anthropic 的 <terms>商业条款</terms>,包括任何 <serviceTerms>特定服务条款</serviceTerms>,并且您声明您已获得客户授权签署本协议。通过提供您的支付信息,即表示您允许 Anthropic 今天按照上述金额扣费,然后从 {trialEndDate} 开始每 {billingInterval} 收取全额订阅费用,直到您根据我们的 <cancellation>取消条款</cancellation> 取消订阅。您可以随时取消。",
    "By clicking ‘Turn on’, you agree to turn on extra usage as defined in our <link>Help Center article</link>.": "点击“开启”,即代表您同意按照<link>帮助中心文章</link>中的定义开启额外用量。",
    "By clicking ‘Turn on’, you agree to turn on extra usage for your organization as defined in our <link>Help Center article</link>.": "点击“开启”即表示您同意为所在组织开启<link>帮助中心文章</link>中所定义的额外用量。",
    "By clicking “Accept”, you agree to Anthropic’s <commercialTermsLink>Commercial Terms</commercialTermsLink> including any <serviceTermsLink>Service Specific Terms</serviceTermsLink>, and you represent that you are authorized to enter this agreement by Customer.": "点击“接受”即表示您同意 Anthropic 的<commercialTermsLink>商业条款</commercialTermsLink>,包括任何<serviceTermsLink>服务特定条款</serviceTermsLink>,并声明您已获得客户授权签订本协议。",
    "By clicking “Create your Team”, you agree to Anthropic’s <commercialTerms>Commercial Terms</commercialTerms> including any <serviceTerms>Service Specific Terms</serviceTerms>, and you represent that you are authorized to enter this agreement by Customer.": "点击“创建团队”即表示您同意 Anthropic 的<commercialTerms>商业条款</commercialTerms>(包括任何<serviceTerms>服务特定条款</serviceTerms>),且您声明您已获得客户授权签署本协议。",
    "By clicking “Subscribe for free”, you agree to our <termsLink>terms</termsLink>. You can cancel at any time, and Anthropic may revoke or otherwise limit your free subscription at any time.": "点击“免费订阅”即表示您同意我们的<termsLink>条款</termsLink>。您可以随时取消,Anthropic 也可以随时吊销或限制您的免费订阅。",
    "By connecting this integration, you're giving your permission to share your health data with Claude. Here's what to know:": "通过连接此集成,您即许可与 Claude 共享您的健康数据。以下是相关须知:",
    "By continuing, you acknowledge Anthropic’s <privacyLink>Privacy Policy</privacyLink> and agree to get occasional product update and promotional emails.": "继续操作,即表示您已阅读 Anthropic 的<privacyLink>隐私政策</privacyLink>并同意接收不时的产品更新及促销邮件。",
    "By continuing, you acknowledge Anthropic’s <privacyLink>Privacy Policy</privacyLink> and agree to get occasional promotional emails and notifications.": "继续操作即表示您确认 Anthropic 的<privacyLink>隐私政策</privacyLink>,并同意接收偶尔的促销电子邮件和通知。",
    "By continuing, you acknowledge Anthropic’s <privacyLink>Privacy Policy</privacyLink>.": "继续即表示您承认 Anthropic 的 <privacyLink>隐私政策</privacyLink>。",
    "By continuing, you agree to join the Enterprise plan <managedByLink>managed by your Admin</managedByLink>, and acknowledge the Anthropic <privacyLink>Privacy Policy</privacyLink>.": "继续操作即表示您同意加入由您的管理员<managedByLink>管理</managedByLink>的企业方案,并确认已知悉 Anthropic 的<privacyLink>隐私政策</privacyLink>。",
    "By continuing, you agree to join the Team plan <managedByLink>managed by your Admin</managedByLink>, and acknowledge the Anthropic <privacyLink>Privacy Policy</privacyLink>.": "继续操作即表示您同意加入由您的管理员<managedByLink>管理</managedByLink>的 Team 方案,并确认已知悉 Anthropic 的<privacyLink>隐私政策</privacyLink>。",
    "By default, Anthropic doesn’t train our generative models on your conversations. {link}": "默认情况下,Anthropic 不会在您的对话中训练发式模型。{link}",
    "By default, scheduled tasks use a randomized delay of several minutes for server performance.": "默认情况下,计划任务使用几分钟的随机延迟以保护服务器性能。",
    "By email": "通过电子邮件",
    "By group": "按分组",
    "By invite link": "通过邀请链接",
    "By member": "按成员",
    "By participating, you agree that we may use your responses to conduct research and improve our models and services in accordance with how we use Feedback data in our <link_one>Privacy Policy</link_one>. We may also include anonymized responses in published findings. <link_two>Learn more</link_two>.": "通过参与,您同意我们可能使用您的回复进行研究,并根据我们在 <link_one>隐私政策</link_one> 中使用反馈数据的方式来改进我们的模型和服务。我们还可能在已发布的研究结果中包含匿名化的回复。<link_two>了解更多</link_two>。",
    "By selecting \"Continue,\" you agree to connect this integration with Claude per our <link>Privacy Policy</link>.": "点击“继续”,即代表您同意按照我们的<link>隐私政策</link>将此集成连接至 Claude。",
    "By severity": "按严重程度",
    "By submitting this form, I authorize Anthropic to contact me about my plugin and to process the information submitted in accordance with Anthropic's {privacyLink}. I also acknowledge and agree to Anthropic's {termsLink}. If my plugin is selected for inclusion, the information I provide here will be displayed in the Plugin Directory and may also be displayed within Claude Code.": "提交此表单即表示我授权 Anthropic 就我的插件与我联系,并按照 Anthropic 的 {privacyLink} 处理提交的信息。我也承认并同意 Anthropic 的 {termsLink}。如果我的插件被选中,我在这里提供的信息将显示在插件目录中,并可能在 Claude Code 中显示。",
    "By submitting this support request, you acknowledge that the information provided may be used to assist with your inquiry and improve our services. <link>Privacy Policy</link>": "提交此支持请求,即表示您知晓所提供的信息可能被用于协助处理您的咨询并改进我们的服务。<link>隐私政策</link>",
    "By {name}": "由 {name} 创作",
    "Bypass all permission checks and let Claude work uninterrupted. This works well for workflows like fixing lint errors or generating boilerplate code. Letting Claude run arbitrary commands is risky and can result in data loss, system corruption, or data exfiltration (e.g., via prompt injection attacks). <link>See best practices for safe usage</link>": "跳过所有权限检查,让 Claude 不受干扰地工作。这适用于修复代码规范 (lint) 错误或生成样板代码等工作流。让 Claude 运行任意命令是有风险的,可能导致数据丢失、系统损坏或数据外泄(例如通过提示词注入攻击)。<link>查看安全使用最佳实践</link>",
    "Bypass all permissions?": "绕过所有权限?",
    "Bypass permissions": "绕过权限",
    "CAPTCHA verification required...": "需要 CAPTCHA 验证...",
    "CEL condition": "CEL 条件",
    "CHALLENGE {challengeNumber}": "挑战 {challengeNumber}",
    "CI": "CI",
    "CI checks unavailable.": "CI 检查不可用。",
    "CI checks unavailable. Check that gh is installed and authenticated.": "CI 检查不可用。请检查是否已安装 gh 并已通过身份验证。",
    "CI event": "CI 事件",
    "CI failed on PR #{prNumber}": "PR #{prNumber} 的 CI 失败",
    "CI failing": "CI 失败",
    "CI monitoring": "CI 监控",
    "CI monitoring unavailable": "CI 监控不可用",
    "CI passed on PR #{prNumber}": "CI 已在 PR #{prNumber} 中通过",
    "CI {done}/{total}": "CI {done}/{total}",
    "CLI": "命令行界面 (CLI)",
    "CLI permission restrictions": "CLI 权限限制",
    "CLI permissions": "CLI 权限",
    "CLIs": "命令行界面",
    "CSV Data Visualizer": "CSV 数据可视化工具",
    "CSV chat suggestions": "CSV 聊天建议",
    "CUSTOM": "自定义",
    "Cache cleared": "缓存已清除",
    "Cache cleared.": "缓存已清理。",
    "Cadence": "频率",
    "Calculators": "计算器",
    "Calculators, productivity tools, and everyday utilities": "计算器、效率工具和日常实用程序",
    "Calendar": "日历",
    "Calendar search": "日历搜索",
    "Call": "通话/呼叫",
    "Call now": "立刻通话",
    "Call via API": "通过 API 调用",
    "Calls": "调用",
    "Campaign copy variants": "活动文案变体",
    "Campus Program": "校园计划",
    "Can I choose when the gift is sent?": "我可以选择何时发送礼物吗?",
    "Can access all your files": "可以访问您的所有文件",
    "Can access features from custom roles assigned by group membership": "可以访问通过群组关系分配的自定义角色中的功能",
    "Can be re-enabled at any time without reconfiguration": "无需重新配置即可随时重新启用",
    "Can change system settings": "可以更改系统设置",
    "Can create chats": "可以创建聊天",
    "Can edit": "可以编辑",
    "Can manage members and the organization Library": "可管理成员和组织资料库",
    "Can manage org and data settings": "可以管理组织和数据设置",
    "Can manage user membership": "可以管理成员关系/会籍",
    "Can manage user roles and organization settings": "可以管理用户角色和组织设置",
    "Can run commands on your computer": "可以在您的电脑上运行命令",
    "Can view": "可以查看",
    "Can we analyze your usage logs from the past week to debug these issues?": "我们可以分析您过去一周的使用日志来调试这些问题吗?",
    "Can you build a dream interpreter react app for me? I want the user to be able to write about their dream. Use Claude’s API to analyze and interpret the dream content The app should feel like calming yet dynamic, creating a dreamy, meditative space where users feel safe exploring their emotions.": "你能帮我做一个周公解梦 React 应用吗?我希望用户能写下他们的梦境。使用 Claude API 分析并解读梦境内容。应用应当感觉宁静且具有动态感,营造出一种梦幻、深思的空间,让用户在探索情感时感到安全。",
    "Can you build a minimalist rhyming clock that uses the Claude API to tell the time with a new poem every minute? Only show the poem, and when there’s a new poem, I want the poem to type in. Use skeuomorphism to make this look like an actual clock with a text display. I want this to look like a high-tech piece of sleek engineering like Dieter Rams.": "能帮我建一个极简风格的押韵时钟吗?它使用 Claude API 每分钟用一首新诗来报时。只显示诗句,且当有新诗出现时,我希望诗句能像打字一样出现。使用拟物化设计,使其看起来像一个带文字显示的真实时钟。我希望它看起来像 Dieter Rams 设计的那种高科技、简洁的工程艺术品。",
    "Can you estimate the revenue for 2026?": "您能估算 2026 年的收入吗?",
    "Can you explain this section to me in more detail?": "您能更详细地向我解释这部分吗?",
    "Can you find some examples of successful proposals in our industry?": "能帮我找一些我们行业成功的提案实例吗?",
    "Can you make an interactive text editor that uses the claude API to suggest improvements to the text (grammar, spelling, punctuation, and even stylistic suggestions for improving writing clarity and readability)? Use your excellent front end skills to make it look very professional and well polished.": "能做一个交互式文本编辑器吗?它使用 Claude API 对文本给出改进建议(语法、拼写、标点,甚至提升写作清晰度和可读性的风格建议)。运用您出色的前端技巧使其看起来非常专业且精美。",
    "Can you remind me of everything I’ve accomplished this quarter? ": "您能提醒我本季度完成的所有事情吗? ",
    "Can't import artifact": "无法导入工件",
    "Can't import live dashboard": "无法导入实时仪表板",
    "Can't reach Anthropic": "无法连接到 Anthropic",
    "Can't reach Claude": "无法连接到 Claude",
    "Can't reach session": "无法访问会话",
    "Can't reach the Claude API from Claude's workspace.": "从 Claude 的工作空间无法连接到 Claude API。",
    "Can't reach your inference provider ({host}) from Claude's workspace.": "无法从 Claude 的工作区访问你的推理提供方 ({host})。",
    "Can't reach {host}": "无法连接到 {host}",
    "Can't rewind to this message.": "无法回退到这条消息。",
    "Can't show preview yet": "暂无法显示预览",
    "Cancel": "取消",
    "Cancel Pause": "取消暂停",
    "Cancel Research": "取消研究",
    "Cancel and continue": "取消并继续",
    "Cancel and get a refund": "取消并获取退款",
    "Cancel and refund": "取消并退款",
    "Cancel anytime": "随时取消",
    "Cancel chat project search": "取消聊天项目搜索",
    "Cancel dictation": "取消听写",
    "Cancel downgrade": "取消降级",
    "Cancel pause": "取消暂停",
    "Cancel pending domain verification": "取消待处理的域名验证",
    "Cancel plan": "取消方案",
    "Cancel scan": "取消扫描",
    "Cancel scan?": "取消扫描?",
    "Cancel scheduled changes?": "取消计划中的更改吗?",
    "Cancel to stop recurring billing. You can still use {productName} until {nextChargeDate}.": "取消以停止自动续费。您仍可在 {nextChargeDate} 之前使用 {productName}。",
    "Cancel to stop recurring billing. Your plan will no longer renew at the end of your pause on {pauseEndDate}.": "取消以停止自动扣费。您的方案在 {pauseEndDate} 的暂停结束时将不再自动续订。",
    "Cancel trial": "取消试用",
    "Canceling now means you are no longer receiving a promotion. If you resubscribe you’ll get the standard rate.": "现在取消意味着您将不再享受促销优惠。如果您重新订阅,将按标准费率计费。",
    "Canceling...": "取消中...",
    "Cancellation": "取消",
    "Cancelled": "已取消",
    "Cancelling will immediately remove your {productName} access. Your last unpaid invoice will no longer be due and recurring billing will stop. You may resubscribe at any time.": "取消订阅将立即移除您的 {productName} 访问权限。您最后一份未付发票将不再需要支付,且定期计费将停止。您可以随时重新订阅。",
    "Cancelling...": "正在取消...",
    "Cannot modify connectors while message is processing": "消息处理期间无法修改连接器",
    "Cannot remove the last domain. At least one domain must remain.": "无法移除最后一个域名。必须保留至少一个域名。",
    "Cannot remove the last range while the allowlist is enabled. Disable the allowlist first.": "启用允许列表时无法移除最后一个范围。请先禁用允许列表。",
    "Canva": "Canva",
    "Canvas Domain": "Canvas 域名",
    "Canvas Integration Setup": "Canvas 集成设置",
    "Can’t access this organization": "无法访问此组织",
    "Can’t find your organization? Check your email for an invitation to join or contact your organization’s admin to request access.": "找不到您的组织?请检查您的电子邮箱是否有加入邀请,或联系您的组织管理员申请访问权限。",
    "Can’t open this chat": "无法打开此聊天",
    "Capabilities": "能力",
    "Caps Lock": "大写锁定",
    "Capture screenshot": "截取屏幕截图",
    "Career chat": "职业聊天",
    "Career project": "职业项目",
    "Careers": "职业生涯",
    "Case study": "案例研究",
    "Cash": "现金",
    "Casually look through my work integrations to find people who seem to support my career growth": "随心浏览我的工作集成,发掘那些能助力我职业成长的潜在伙伴",
    "Catalog": "编目",
    "Catch me up on Slack": "帮我快速了解 Slack 上的最新情况",
    "Catch up on what I missed": "补漏/了解我错过的内容",
    "Categories": "类别",
    "Category": "类别",
    "Central European (Windows-1250)": "中欧字符 (Windows-1250)",
    "Central billing and administration": "中央结算与管理",
    "Challenge me with increasingly difficult coding puzzles": "尝试更有难度的编程谜题来挑战我",
    "Change Billing": "更改账单",
    "Change Role": "更改角色",
    "Change Subscription": "更改订阅",
    "Change account permissions": "更改账号权限",
    "Change in Settings → Claude Code": "在设置 → Claude Code 中修改",
    "Change membership role for multiple members at once": "一次性更改多个成员的会员角色",
    "Change organization icon": "更改组织图标",
    "Change photo": "更换照片",
    "Change project": "更改项目",
    "Change role": "更改角色",
    "Change seat tier": "更改席位层级",
    "Change to Max 5X plan": "切换到 Max 5X 方案",
    "Change to {interval} billing": "更改为 {interval} 计费",
    "Change your role in the current organization.": "在当前组织中更改您的角色。",
    "Change {memberName}’s role": "更改 {memberName} 的角色",
    "Changed my mind": "改变主意了",
    "Changes here affect how users find and connect to your server.": "此处的更改会影响用户如何找到并连接到你的服务器。",
    "Changes requested": "已请求更改",
    "Changes saved": "更改已保存",
    "Changes saved.": "更改已保存。",
    "Changes submitted {time} are awaiting review.": "于 {time} 提交的更改正在等待审核。",
    "Changes to your environment will apply to new sessions.": "对环境的更改将应用于新会话。",
    "Changes to your member count are prorated — you’ll be credited for the old count and billed for the new count for the remaining billing period.": "成员数量的变更按比例计算 — 您将获得旧数量的退款,并在剩余账单周期内按新数量计费。",
    "Changing the name, URL, or auth on a published server affects existing users and requires re-review.": "更改已发布服务器的名称、URL 或身份验证会影响现有用户,并且需要重新审核。",
    "Channel message": "频道消息",
    "Channels": "通道",
    "Chapter title": "章节标题",
    "Charged today. Your plan starts right away.": "今日已扣费。您的方案立即生效。",
    "Charges for usage beyond your subscription plan. For final amounts, refer to your invoice.": "超出订阅方案的使用量费用。最终金额请参阅您的发票。",
    "Charges for your renewed subscription from {startDate} to {endDate}": "您的续订订阅从 {startDate} 到 {endDate} 的费用",
    "Charges on next invoice:": "下期发票费用:",
    "Chart": "图表",
    "Charts, dashboards, and data visualization tools": "图表、仪表盘和数据可视化工具",
    "Chat": "聊天",
    "Chat + Claude Code": "聊天 + Claude Code",
    "Chat + Claude Code members": "Chat + Claude Code 成员",
    "Chat + Claude Code seat": "Chat + Claude Code 席位",
    "Chat + Claude Code seat required": "需要“聊天 + Claude Code”席位",
    "Chat + Claude Code: {before, number} → {after, number}": "聊天 + Claude Code:{before, number} → {after, number}",
    "Chat about this session without touching the main thread. Claude sees the full context, and nothing here is added to the conversation.": "在不触及主线程的情况下聊天此会话。Claude 看到完整的上下文,这里的任何内容都不会添加到对话中。",
    "Chat deleted": "聊天已删除",
    "Chat ended by Claude": "聊天已由 Claude 结束",
    "Chat font": "聊天字体",
    "Chat for free": "免费聊天",
    "Chat hands-free and sync conversations across your devices.": "免提通话并跨设备同步对话。",
    "Chat hands-free, connect Claude to your favorite apps, and kick off tasks on the go.": "免提对话,将 Claude 连接到您喜爱的应用,并随时随地启动任务。",
    "Chat hands-free, connect to your apps, and kick off tasks on the go.": "免提对话,连接您的应用,并随时随地启动任务。",
    "Chat instead": "改为聊天",
    "Chat members": "聊天成员",
    "Chat memory": "聊天记忆",
    "Chat memory has moved to <link>Customize</link>. Head there to manage your memories.": "聊天记忆已移至 <link>自定义</link>。前往那里管理你的记忆。",
    "Chat mode": "聊天模式",
    "Chat moved to {projectName}": "聊天已移动到 {projectName}",
    "Chat name": "聊天名称",
    "Chat now": "立即聊天",
    "Chat on web": "在网页端聊天",
    "Chat on web, iOS, Android, and desktop": "在 Web、iOS、Android 和桌面端聊天",
    "Chat on web, iOS, Android, and on your desktop": "在网页端、iOS、Android 和桌面端聊天",
    "Chat paused": "聊天已暂停",
    "Chat removed from project": "聊天已从项目中移除",
    "Chat reported": "聊天已举报",
    "Chat search results": "对话搜索结果",
    "Chat seat": "聊天席位",
    "Chat shared": "聊天已分享",
    "Chat sharing disabled": "聊天分享已禁用",
    "Chat sharing enabled": "已开启聊天共享",
    "Chat sharing must be enabled to configure this setting": "必须启用聊天分享方可配置此设置",
    "Chat suggestions disabled": "聊天建议已禁用",
    "Chat suggestions enabled": "已开启聊天建议",
    "Chat via SMS": "通过短信聊天",
    "Chat with Claude": "与 Claude 聊天",
    "Chat with Claude from anywhere on your PC": "在电脑的任何地方与 Claude 聊天",
    "Chat with me about anything from simple asks to complex ideas! Guardrails keep our chat safe.": "从简单要求到复杂想法,随便找我聊!安全屏障会保护我们的聊天体验。",
    "Chat, Cowork, and Code now live in the sidebar.": "聊天、Cowork 和 Code 现已集成到侧边栏中。",
    "Chat, cowork, and code in one app. Claude works with your files, apps, and browser tabs.": "在一个应用中聊天、协作和编码。Claude 可以处理您的文件、应用和浏览器标签页。",
    "Chat: {before, number} → {after, number}": "聊天:{before, number} → {after, number}",
    "Chats": "聊天",
    "Chats and projects in this organization will be permanently deleted if they are inactive for the duration of their retention period.": "在此组织中的聊天和项目如果保留期内处于非活动状态,将被永久删除。",
    "Chats and projects will be deleted after {count, plural, one {# day} other {# days}} of inactivity": "聊天和项目将在闲置 {count, plural, one {# 天} other {# 天}} 后被删除",
    "Chats and projects will be deleted after {count, plural, one {# month} other {# months}} of inactivity": "聊天和项目将在闲置 {count, plural, one {# 个月} other {# 个月}}后被删除",
    "Chats and projects will be stored indefinitely without automatic deletion": "聊天和项目将无限期存储,不会自动删除",
    "Chats and projects will not be deleted": "聊天和项目不会被删除",
    "Chats compact less since tools aren't pre-loaded.": "由于工具未预先加载,聊天内容压缩程度较低。",
    "Chats compact more often since tools are always there.": "由于工具始终在线,聊天会更频繁地被压缩。",
    "Chats per day": "每日对话数",
    "Chats will be deleted after {count, plural, one {# day} other {# days}} of inactivity": "聊天将在闲置 {count, plural, one {# 天} other {# 天}} 后被删除",
    "Chats will be deleted after {count, plural, one {# month} other {# months}} of inactivity": "聊天将在处于非活跃状态 {count, plural, one {# 个月} other {# 个月}}后被删除",
    "Chats will be stored indefinitely without automatic deletion": "聊天将无限期存储,不会自动删除",
    "Check": "检查",
    "Check AWS Marketplace for final pricing and billing details": "查看 AWS Marketplace 以获取最终定价和账单详情",
    "Check Google Calendar": "检查 Google Calendar",
    "Check SSH connection settings to continue.": "检查 SSH 连接设置以继续。",
    "Check Status": "检查状态",
    "Check a feature gate value": "检查功能门控 (Feature Gate) 值",
    "Check again": "重新检查",
    "Check another repository or branch": "检查其他仓库或分支",
    "Check doc": "检查文档",
    "Check each hint that your tools set in their annotations metadata.": "检查工具在其注释元数据中设置的每条提示。",
    "Check for updates": "检查更新",
    "Check in when you want or just let Claude cook.": "您可以随时查看进度,或者干脆让 Claude 自动运行。",
    "Check my Google Calendar for today's meetings and summarize my unread emails. Highlight anything urgent.": "检查一下我 Google 日历中今天的会议,并总结一下我未读的邮件。突出显示任何紧急的事项。",
    "Check out": "查看",
    "Check passwords against HaveIBeenPwned": "对比 HaveIBeenPwned 检查密码",
    "Check run": "检查运行 (Check run)",
    "Check run created, requested, rerequested, or completed": "检查运行已创建、请求、重新请求或完成",
    "Check suite": "检查套件 (Check suite)",
    "Check suite requested, rerequested, or completed": "检查套件已请求、重新请求或完成",
    "Check that your SSH host or local proxy is reachable, then try again.": "请检查你的 SSH 主机或本地代理是否可达,然后重试。",
    "Check your connection.": "检查你的连接。",
    "Check your internet connection (and VPN or proxy if you use one), then try again.": "请检查你的网络连接(以及 VPN 或代理,如果你使用了的话),然后重试。",
    "Check {statusLink} for updates.": "查看 {statusLink} 以获取更新。",
    "Checking GitHub connection...": "正在检查 GitHub 连接...",
    "Checking Google Calendar": "正在检查 Google 日历",
    "Checking connected browsers": "正在检查已连接的浏览器",
    "Checking connected browsers…": "正在检查已连接的浏览器…",
    "Checking connection...": "正在检查连接...",
    "Checking for updates...": "正在检查更新...",
    "Checking members…": "正在检查成员…",
    "Checking requirements...": "检查需求中...",
    "Checking status...": "正在检查状态...",
    "Checking your calendar": "正在检查您的日历",
    "Checking your tools...": "正在检查您的工具...",
    "Checking…": "检查中…",
    "Checks cancelled.": "检查已取消。",
    "Checks in progress": "正在进行检查",
    "Cherry-picked": "已挑选提交",
    "Cherry-picking": "正在挑选提交",
    "Chicory": "Chicory",
    "Child safety/sexual abuse": "儿童安全/性虐待",
    "Chinese": "中文",
    "Chinese (GB18030)": "中文 (GB18030)",
    "Chinese Artifacts Built with Claude": "使用 Claude 构建的中文构件",
    "Choose 5x or 20x more usage than Pro*": "选择比 Pro 方案多 5 倍或 20 倍的用量*",
    "Choose a GitHub repository to start a new coding session with Claude": "选择一个 GitHub 存储库以开始新的 Claude 编码会话",
    "Choose a career path based on my astrology": "根据我的占星术选择职业道路",
    "Choose a data retention policy that fits your organization": "选择适合你组织的数据保留策略",
    "Choose a different folder": "选择不同的文件夹",
    "Choose a different folder…": "选择其他文件夹…",
    "Choose a folder": "选择一个文件夹",
    "Choose a folder for the project": "选择项目文件夹",
    "Choose a name different from the current one.": "请选择一个与当前名称不同的名称。",
    "Choose a name different from the original.": "请选择一个与原名称不同的名称。",
    "Choose a plan": "选择一种方案/计划",
    "Choose a plan to start using Claude.": "选择一个套餐以开始使用 Claude。",
    "Choose a scan from the list to view its results and findings.": "从列表中选择一项扫描以查看其结果和发现。",
    "Choose a seat type": "选择席位类型",
    "Choose a time in the future.": "请选择将来的时间。",
    "Choose a working directory": "选择一个工作目录",
    "Choose a workspace": "选择一个工作区",
    "Choose an amount to start. You can always buy more later.": "选择一个金额开始。您以后可以随时购买更多。",
    "Choose an environment": "选择一个环境",
    "Choose destination": "选择目的地",
    "Choose editor": "选择编辑器",
    "Choose favicon image": "选择网站图标 (Favicon)",
    "Choose folder": "选择文件夹",
    "Choose from above or start chatting about a different topic here": "从上方选择或在此聊聊其他话题",
    "Choose from disk": "从磁盘选择",
    "Choose from preset styles or create your own custom style to tailor elements of Claude’s written responses such as tone, voice, vocabulary, detail level, and more. <link>Learn about styles</link>": "由于可以从预设样式中选择,也可以创建您自己的自定义样式,以定制 Claude 书面回复中的语调、语气、词汇、详细程度等元素。<link>了解样式</link>",
    "Choose how to connect your repositories.": "选择连接仓库的方式。",
    "Choose how to get started": "选择开始方式",
    "Choose how to send": "选择发送方式",
    "Choose how to start working with Claude": "选择如何开始使用 Claude",
    "Choose limits by seat type. Individual limits can be adjusted anytime.": "按席位类型选择限额。个人限额可随时调整。",
    "Choose on start": "启动时选择",
    "Choose one option": "选择一个选项",
    "Choose project location": "选择项目位置",
    "Choose simulator": "选择模拟器",
    "Choose social image": "选择社交图像",
    "Choose start date": "选择开始日期",
    "Choose the plan you prefer": "选择您喜欢的计划",
    "Choose the region where your account is hosted.": "选择您的账户托管区域。",
    "Choose tool": "选择工具",
    "Choose up to {max} categories that best describe your connector.": "选择最多 {max} 个最能描述你连接器的类别。",
    "Choose what to sync from your identity provider.": "选择要从身份提供商同步的内容。",
    "Choose when Claude is allowed to run these commands.": "选择 Claude 何时被允许运行这些命令。",
    "Choose when Claude is allowed to use these tools.": "选择 Claude 允许使用这些工具的时机。",
    "Choose where to create the project folder": "选择在何处创建项目文件夹",
    "Choose where to save this project on your computer.": "选择在您电脑上保存此项目的路径。",
    "Choose whether Claude in Chrome works on all sites by default": "选择 Chrome 中的 Claude 是否默认在所有网站上运行",
    "Choose whether to create a new organization or upgrade an existing one.": "选择是创建一个新组织,还是升级现有组织。",
    "Choose which domains the sandbox can access": "选择沙箱可以访问的域名",
    "Choose which items appear in your sidebar.": "选择侧边栏中显示的项目。",
    "Choose which spend limit to use in the event that a member belongs to multiple groups.": "选择当成员属于多个组时使用哪个支出限制。",
    "Choose your Claude": "选择您的 Claude",
    "Choose your plan": "选择您的方案/计划",
    "Choose your seats and plan": "选择您的席位和方案",
    "Choose your seats and usage": "选择您的席位和用量",
    "Choose…": "选择…",
    "Chrome": "Chrome 浏览器",
    "Chrome extension installed": "Chrome 扩展已安装",
    "Chrome instances signed in to your account that Claude can automate.": "已登录你账号、可由 Claude 自动操作的 Chrome 实例。",
    "Chrome needs to restart for the extension to take effect. Any open Chrome tabs will be restored after restarting.": "Chrome 需要重启方可使扩展程序生效。重启后所有已打开的标签页将恢复。",
    "Cite the internal policy number when referencing company policy": "引用公司政策时请注明内部政策编号",
    "City": "城市",
    "Claim reward": "领取奖励",
    "Claim your credit": "领取您的积分",
    "Claim your offer": "领取你的优惠",
    "Claim your reward": "领取您的奖励",
    "Claimed": "已认领",
    "Classification banner": "分类栏/标密栏",
    "Classify and sort PDFs": "对 PDF 进行分类排序",
    "Classify session states": "对会话状态进行分类",
    "Claude": "Claude",
    "Claude (web)": "Claude(网页)",
    "Claude API": "Claude API",
    "Claude Artifact": "Claude 构件",
    "Claude Chat, Cowork, projects & content generation": "Claude 对话、协作、项目及内容生成",
    "Claude Chat, projects & content generation": "Claude 聊天、项目及内容生成",
    "Claude Code": "Claude Code",
    "Claude Code (cloud)": "Claude Code (云端)",
    "Claude Code CLI": "Claude Code CLI",
    "Claude Code Desktop has been disabled by your organization's device management policy.": "桌面端 Claude Code 已被您组织的设备管理政策禁用。",
    "Claude Code IDE extension spotlight": "Claude Code IDE 扩展亮点",
    "Claude Code Remote": "Claude Code 远程端",
    "Claude Code Security": "Claude Code 安全功能",
    "Claude Code Security could not be enabled. You can try again.": "无法启用 Claude Code Security。您可以重试。",
    "Claude Code Security is not enabled": "Claude Code 安全检查未开启",
    "Claude Code Security is set up!": "Claude Code 安全设置已完成!",
    "Claude Code Security requires Claude Code web access. Request a seat upgrade to enable this feature.": "Claude Code 安全功能需要 Claude Code 网页访问权限。请申请席位升级以启用此功能。",
    "Claude Code Security requires Claude Code web access. Upgrade your seats to enable this feature.": "Claude Code Security 需要访问网页版 Claude Code。请升级您的席位以启用此功能。",
    "Claude Code Security requires extra usage to be enabled for your organization.": "Claude Code Security 需要为您组织开启额外用量。",
    "Claude Code Security requires extra usage to be enabled. Contact an organization admin to enable it.": "Claude Code Security 需要开启额外用量。请联系组织管理员开启。",
    "Claude Code Security scans your repositories for vulnerabilities and helps you fix them.": "Claude Code 安全扫描您的仓库以查找漏洞并帮助您修复它们。",
    "Claude Code analytics": "Claude Code分析",
    "Claude Code app": "Claude Code 应用",
    "Claude Code apps": "Claude Code 应用",
    "Claude Code available with a premium seat": "拥有高级席位可使用 Claude Code",
    "Claude Code can't run inside another Claude Code session. Close the outer session and try again.": "Claude Code 不能在另一个 Claude Code 会话中运行。请关闭外层会话后重试。",
    "Claude Code couldn't start": "Claude Code 无法启动",
    "Claude Code crashed": "Claude Code 已崩溃",
    "Claude Code directly in your codebase": "直接在您的代码库中使用 Claude Code",
    "Claude Code fast mode": "Claude Code 快速模式",
    "Claude Code for Enterprise": "企业版 Claude Code",
    "Claude Code for JetBrains": "JetBrains 版 Claude Code",
    "Claude Code for Slack": "适用于 Slack 的 Claude Code",
    "Claude Code for VS Code": "VS Code 版 Claude Code",
    "Claude Code for your whole team": "面向全团队的 Claude Code",
    "Claude Code is an agentic coding partner that understands your codebase, and helps you write code in natural language statements.": "Claude Code 是一个智能代码伙伴,它理解您的代码库,并帮助您通过自然语言陈述编写代码。",
    "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster through natural language commands.": "Claude Code 是一个运行在终端中的自主式编程工具,它理解你的代码库,并通过自然语言命令帮助你更快编写代码。",
    "Claude Code is an agentic coding tool that lives in your terminal, understands your codebase, and helps you code faster through natural language commands. ": "Claude Code 是一款运行在终端中的代理式编码工具,它能理解您的代码库并通过自然语言指令帮您加快编码速度。",
    "Claude Code is included in your plan with limited usage": "你的套餐包含 Claude Code,但使用量有限",
    "Claude Code is unavailable": "Claude Code 不可用",
    "Claude Code isn't set up yet. <link>Get started with Claude Code</link> to launch sessions from here.": "Claude Code 尚未设置。<a>开始使用 Claude Code</a> 以从此处启动会话。",
    "Claude Code may read, write, or execute files in this directory. Only proceed if you trust this workspace.": "Claude Code 可能会读取、写入或执行此目录中的文件。仅在您信任此工作区时继续。",
    "Claude Code on the Web": "网页版 Claude Code",
    "Claude Code on the web spotlight": "Claude Code 网页版聚光灯",
    "Claude Code plugins this routine loads at the start of each run.": "此例程在每次运行开始时加载的 Claude Code 插件。",
    "Claude Code reads your repo, edits files, and runs tests — without leaving your workflow.": "Claude Code 会读取你的仓库、编辑文件并运行测试,而无需离开你的工作流。",
    "Claude Code requires a newer version of macOS. Update macOS to continue.": "Claude Code 需要更新版本的 macOS。请更新 macOS 以继续。",
    "Claude Code requires a subscription.": "Claude Code 需要订阅。",
    "Claude Code session cancelled": "Claude Code 会话已取消",
    "Claude Code session sharing disabled": "已禁用 Claude Code 会话分享",
    "Claude Code session sharing enabled": "Claude Code 会话分享已开启",
    "Claude Code spotlight": "Claude Code 焦点",
    "Claude Code stopped responding": "Claude Code 已停止响应",
    "Claude Code works inside the IDE you already know. No workflow changes needed.": "Claude Code 在您已经熟悉的 IDE 中工作。无需更改工作流程。",
    "Claude Code, Cowork, and 200K context": "Claude Code、Cowork 和 20 万上下文",
    "Claude Code, now in Desktop preview": "Claude Code,现已推出桌面预览版",
    "Claude Code, wherever you are": "无论身处何地,皆可使用 Claude Code",
    "Claude Cowork": "Claude 协作",
    "Claude Design": "Claude Design",
    "Claude Design is in research preview with its own weekly limit. Usage here doesn't count toward your other limits.": "Claude Design 目前处于研究预览阶段,并有自己单独的每周限额。这里的使用量不计入你的其他限额。",
    "Claude Desktop": "Claude Desktop",
    "Claude Desktop for Windows": "Windows 版桌面端 Claude",
    "Claude Desktop for macOS": "适用于 macOS 的 Claude 桌面版",
    "Claude Enterprise": "Claude Enterprise 方案",
    "Claude Enterprise members": "Claude Enterprise 成员",
    "Claude Enterprise seat": "Claude Enterprise 席位",
    "Claude Enterprise: {before, number} → {after, number}": "Claude Enterprise:{before, number} → {after, number}",
    "Claude Free": "Claude 免费版",
    "Claude GitHub app not installed. Install the app to scan this repository.": "未安装 Claude GitHub 应用。请安装该应用以扫描此仓库。",
    "Claude Max": "Claude Max",
    "Claude Max is required to connect to Claude Code": "连接到 Claude Code 需要 Claude Max",
    "Claude Max or Pro is required to connect to Claude Code": "连接到 Claude Code 需要 Claude Max 或 Pro 方案",
    "Claude Max or Team is required to connect to Claude Code": "连接 Claude Code 需要 Claude Max 或 Team",
    "Claude Max, Pro or Team is required to connect to Claude Code": "连接 Claude Code 需要 Claude Max、Pro 或 Team 方案",
    "Claude Opus 4.6 works best with the latest desktop app.": "Claude Opus 4.6 在新版桌面端应用中运行效果最佳。",
    "Claude Opus 4.6 works best with the latest desktop app. <link>Update now.</link>": "Claude Opus 4.6 在最新桌面应用中运行效果最佳。<link>立即更新。</link>",
    "Claude Platform": "Claude 平台",
    "Claude Pro": "Claude Pro",
    "Claude Pro is required to connect to Claude Code": "连接 Claude Code 需要 Claude Pro",
    "Claude Pro or Team is required to connect to Claude Code": "需要 Claude Pro 或 Team 才能连接到 Claude Code",
    "Claude Sales": "Claude 销售",
    "Claude Security": "Claude Security",
    "Claude Security could not be enabled. You can try again.": "无法启用 Claude Security。你可以重试。",
    "Claude Security illustration": "Claude Security 插图",
    "Claude Security is not enabled": "Claude Security 未启用",
    "Claude Security is set up!": "Claude Security 已设置完成!",
    "Claude Security requires Claude Code web access. Request a seat upgrade to enable this feature.": "Claude Security 需要 Claude Code Web 访问权限。请申请升级席位以启用此功能。",
    "Claude Security requires Claude Code web access. Upgrade your seats to enable this feature.": "Claude Security 需要 Claude Code Web 访问权限。请升级你的席位以启用此功能。",
    "Claude Security requires extra usage to be enabled for your organization.": "Claude Security 需要为你的组织启用额外用量。",
    "Claude Security requires extra usage to be enabled. Contact an organization admin to enable it.": "Claude Security 需要启用额外用量。请联系组织管理员进行启用。",
    "Claude Security scans your repositories for vulnerabilities and helps you fix them.": "Claude Security 会扫描你的仓库以查找漏洞并帮助你修复。",
    "Claude Ship": "Claude Ship",
    "Claude Sonnet 4 for coding tasks": "用于编码任务的 Claude Sonnet 4",
    "Claude Teams": "Claude Team 组织",
    "Claude analyzes your GitHub repositories for vulnerabilities, misconfigurations, and potential security issues.": "Claude 分析您的 GitHub 仓库是否存在漏洞、错误配置和潜在的安全问题。",
    "Claude asked": "Claude 询问了",
    "Claude brings AI directly to your browser, handling tasks and navigating sites for you. These new capabilities create risks bad actors may try to exploit.": "Claude 将 AI 直接带到您的浏览器,为您处理任务和浏览网站。这些新功能可能会被不良行为者利用。",
    "Claude browses, clicks, and fills out forms for you.": "Claude 为您浏览、点击并填写表单。",
    "Claude can access all domains on the internet.": "Claude 可以访问互联网上的所有域名。",
    "Claude can access common package managers plus any additional domains you specify below. <a>View package manager domains</a>.": "Claude 可以访问通用的包管理器以及您在下面指定的任何其他域名。<a>查看包管理器域名</a>。",
    "Claude can also run tasks on a schedule or whenever you need them.": "Claude can also run tasks on a schedule or whenever you need them.",
    "Claude can analyze CSVs with the Analysis tool.": "Claude 能够使用分析工具来分析 CSV 文件。",
    "Claude can browse and act on sites without pausing for approval.": "Claude 可以浏览网站并执行操作,无需暂停等待批准。",
    "Claude can browse any site except:": "Claude 可以浏览除以下站点外的任何网站:",
    "Claude can browse any site.": "Claude 可以浏览任何网站。",
    "Claude can browse only these sites:": "Claude 只能浏览这些网站:",
    "Claude can choose to notify you about important updates from a Code session.": "Claude 可以选择将 Code 会话中的重要更新通知你。",
    "Claude can do more than answer questions. Ask it to build interactive web apps, write documents, generate spreadsheets and presentations, or create visuals in a dedicated window alongside your chat.": "Claude 的能力不止于回答问题。它可以创建交互式 Web 应用、编写文档、生成电子表格和演示文稿,或者在聊天旁边的专用窗口中创建视觉效果。",
    "Claude can execute code and create and edit docs, spreadsheets, presentations, PDFs, and data reports.": "Claude 可以执行代码,并创建及编辑文档、电子表格、演示文稿、PDF 和数据报告。",
    "Claude can execute code and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills.": "Claude 可以执行代码并创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。技能功能必需。",
    "Claude can execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports.": "Claude 可以在服务器上执行代码,并创建、编辑文档、电子表格、演示文稿、PDF 和数据报告。",
    "Claude can execute code on a server and create and edit docs, spreadsheets, presentations, PDFs, and data reports. Required for skills.": "Claude 可以在服务器上执行代码并创建和编辑文档、电子表格、演示文稿、PDF 和数据报告。技能所需。",
    "Claude can help with many things, but finding this page isn’t one of them.": "Claude 可以帮您处理很多事,但找到这个页面不在其列。",
    "Claude can help you get set up with the right tools for your work.": "Claude 可以帮您配置适合工作的工具。",
    "Claude can modify or delete files without asking": "Claude 可以在不询问的情况下修改或删除文件",
    "Claude can only access domains you specify below. Add domains individually using wildcards if needed.": "Claude 仅能访问您在下方指定的域名。如有需要,请配合通配符逐个添加域名。",
    "Claude can ping you when it finishes work or needs your input": "Claude 可以在完成工作或需要您的输入时通知您",
    "Claude can reference these admin-approved tools as you chat.": "当您聊天时,Claude可以引用这些管理员批准的工具。",
    "Claude can search the internet to provide more up-to-date and relevant responses. Claude will automatically determine when to use web search if the topic requires current information. Web search is only available when using Claude 3.7 Sonnet.": "Claude 可以搜索互联网以提供更即时、更相关的回复。如果主题需要最新信息,Claude 将自动决定何时使用联网搜索。联网搜索仅在使用 Claude 3.7 Sonnet 时可用。",
    "Claude can start dev servers, open a live preview, and verify code changes with screenshots, snapshots, and DOM inspection.": "Claude 可以启动开发服务器、打开实时预览,并通过截图、快照和 DOM 检查来验证代码更改。",
    "Claude can turn analyses into spreadsheets, ideas into presentations, and research into reports. ": "Claude 可以将分析转化为电子表格,将想法转化为演示文稿,将研究转化为报告。",
    "Claude can turn any photo into a tiny pixel portrait. It might take a try or two — regenerate until you get one you like.": "Claude 可以将任何照片转换为微缩像素肖像。这可能需要尝试一两次——请多次生成直到获得满意的效果。",
    "Claude can use all tools from these connectors — including writes — without asking for permission during runs.": "Claude 可以使用这些连接器的所有工具(包括写入)而无需在运行期间请求权限。",
    "Claude can use all tools from these connectors — including writes — without asking for permission during runs. Remove any you don't want the agent to access.": "Claude 可以使用这些连接器中的所有工具,包括写入操作,并且在运行期间无需请求权限。移除任何你不希望代理访问的连接器。",
    "Claude can use all unrestricted tools from these connectors — including writes — without asking for permission during runs.": "Claude 可以使用这些连接器中的所有不受限制工具,包括写入操作,并且在运行期间无需请求权限。",
    "Claude can use all unrestricted tools from these connectors — including writes — without asking for permission during runs. Remove any you don't want the agent to access.": "Claude 可以使用这些连接器中所有不受限制的工具,包括写入操作,并且在运行期间无需请求权限。移除任何你不希望代理访问的连接器。",
    "Claude can use skills in any chat. Mention it to try it out—you don’t even need to use the exact name.": "Claude 可以在任何聊天中使用技能。提到它就可以尝试,您甚至不需要使用确切的名称。",
    "Claude can use tools to give you more relevant answers. You can turn them on or off in any chat.": "Claude 可以通过工具为您提供更相关的回答。您可以在任何聊天中开启或关闭它们。",
    "Claude can write and run code to process data, run analysis, and produce data visualizations in real time.": "Claude 可以编写并运行代码以实时处理数据、进行分析并生成数据可视化。",
    "Claude can't read this folder. Grant access in System Settings → Privacy & Security → Files and Folders, then try again.": "Claude 无法读取此文件夹。请在“系统设置 → 隐私与安全性 → 文件与文件夹”中授予访问权限,然后重试。",
    "Claude cannot access that resource. If you know that it exists, you may first need to grant or request access <link>here</link>.": "Claude 无法访问该资源。如果您确认其存在,请先在<link>此处</link>授予或请求访问权限。",
    "Claude cannot guarantee the security or privacy practices of third-party integrations.": "Claude 无法保证第三方集成的安全性或隐私惯例。",
    "Claude cannot yet access images from Google Docs.": "Claude 尚无法访问 Google Docs 中的图片。",
    "Claude checks in when it needs your input": "Claude 需要您输入时会通知您",
    "Claude code desktop settings": "Claude 代码桌面设置",
    "Claude code spotlight": "Claude Code 焦点",
    "Claude content": "Claude 内容",
    "Claude continues each run in the same session, preserving context across firings instead of starting fresh each time.": "Claude 在同一会话中继续每次运行,在触发之间保留上下文,而不是每次都重新开始。",
    "Claude controls the board. Try: “set up a board with my workstreams and active agents.”": "Claude 控制白板。试试:“根据我的工作流和活跃代理设置一个白板。”",
    "Claude couldn't process that message": "Claude 无法处理该消息",
    "Claude doesn't have the features necessary for my work": "Claude 缺乏我工作所需的功能",
    "Claude drafts, edits, and formats documents right inside Microsoft Word.": "Claude 可直接在 Microsoft Word 中起草、编辑和排版文档。",
    "Claude environment runner supports a built-in polling loop, initialized via the orchestrator command.": "Claude 环境运行器支持内置轮询循环,通过编排器命令初始化。",
    "Claude finished the response": "Claude 已完成回复",
    "Claude for Android": "Android版Claude",
    "Claude for Chrome": "Chrome 版 Claude",
    "Claude for Chrome is currently only available for Max plan subscribers. We're working on expanding access.": "Claude for Chrome 目前仅对 Max 计划订阅者开放。我们正在努力扩大访问范围。",
    "Claude for Chrome isn't available on your current plan. We're working on expanding access.": "你当前的套餐尚不可使用 Claude for Chrome。我们正在扩展访问范围。",
    "Claude for Desktop is here": "桌面版 Claude 现已发布",
    "Claude for Enterprise Premium": "Claude Enterprise Premium (企业进阶版)",
    "Claude for Enterprise Standard Nonprofit": "Claude 企业标准非营利版",
    "Claude for Excel": "Excel 版 Claude",
    "Claude for Labs pricing applied": "已应用 Claude for Labs 价格",
    "Claude for PowerPoint": "PowerPoint 版 Claude",
    "Claude for Powerpoint": "PowerPoint 版 Claude",
    "Claude for Slack": "Claude for Slack",
    "Claude for Word": "适用于 Word 的 Claude",
    "Claude for desktop": "桌面版 Claude",
    "Claude for iOS": "iOS 版 Claude",
    "Claude for mobile": "移动版 Claude",
    "Claude groups related sessions into projects, surfaces the project's folders, and tells the session about its project on the next message.": "Claude 会将相关会话归类到项目中,展示该项目的文件夹,并在下一条消息中告知会话其所属项目。",
    "Claude handles permission decisions": "由 Claude 处理权限决策",
    "Claude has a few different products to make the most of your work.": "Claude 拥有几款不同的产品,能让您的工作事半功倍。",
    "Claude has ended this chat.": "Claude 已结束此交流。",
    "Claude has five pricing plans available — Free, Pro, Max, Team, and Enterprise. The Free plan offers limited use with no payment required. <a>Learn more about available pricing plans</a>.": "Claude 提供五种定价方案——免费版 (Free)、Pro 版、Max 版、团队版 (Team) 和企业版 (Enterprise)。免费版提供有限的使用次数,无需付费。<a>详细了解可用定价方案</a>。",
    "Claude has memory": "Claude 拥有记忆",
    "Claude has no allowed sites to browse.": "Claude 没有任何允许浏览的网站。",
    "Claude in Chrome": "Chrome 中的 Claude",
    "Claude in Chrome can be used on these sites": "Chrome 版 Claude 可在这些站点上使用",
    "Claude in Chrome can be used on these websites.": "Chrome 版 Claude 可以在这些网站上使用。",
    "Claude in Chrome cannot be used on these sites": "Chrome 版 Claude 无法在这些站点上使用",
    "Claude in Chrome is active and all actions are allowed": "Chrome 版 Claude 已启动且所有操作均获允许",
    "Claude in Chrome is now available in beta for all Max plan subscribers. Install the extension from the Chrome Web Store, sign in with your Max account credentials, and you're ready to go. We recommend reviewing our safety guidelines before getting started.": "Chrome 版 Claude 现已为所有 Max 方案订阅者开放测试版。从 Chrome 网上应用店安装扩展程序,使用您的 Max 账号登录即可。建议在开始前查看我们的安全指南。",
    "Claude in Chrome lets Claude handle work in the browser via Claude Desktop. Once enabled, browser tools are always available to Claude. Only grant full permissions for trusted sites. See more <safetyLink>safety tips</safetyLink>.": "Chrome 中的 Claude 允许通过 Claude 桌面版在浏览器中处理任务。开启后,浏览器工具将始终对 Claude 可用。请仅向受信任的站点授予完全权限。查看更多 <safetyLink>安全提示</safetyLink>。",
    "Claude in Chrome lets you navigate, click buttons, and fill forms in your browser.": "Chrome 中的 Claude 允许您在浏览器中进行导航、点击按钮和填写表单。",
    "Claude in Chrome only works on sites you allow below": "Claude in Chrome 仅在您下方允许的站点上工作",
    "Claude in Chrome settings": "Chrome 版 Claude 设置",
    "Claude in Chrome works everywhere except sites you block below": "Chrome 中的 Claude 适用于除您在下方屏蔽的站点外的所有网站",
    "Claude in Excel": "Excel 中的 Claude",
    "Claude in Microsoft Office is available on Max, Team, and Enterprise plans": "Microsoft Office 中的 Claude 适用于 Max、Team 和 Enterprise 计划",
    "Claude in Microsoft Office is available on Pro, Max, Team, and Enterprise plans": "Office 版 Claude 适用于 Pro、Max、Team 和 Enterprise 方案",
    "Claude in Microsoft Office is available on Pro, Team, and Enterprise plans": "Microsoft Office 中的 Claude 适用于 Pro、Team 和 Enterprise 套餐",
    "Claude in PowerPoint": "PowerPoint 中的 Claude",
    "Claude in Slack": "Slack 中的 Claude",
    "Claude in Slack settings updated.": "Slack 中的 Claude 设置已更新。",
    "Claude in your pocket": "口袋里的 Claude",
    "Claude installs packages and libraries to perform advanced data analysis, custom visualizations, and specialized file processing. Allowed domains can be managed in <link>Settings</link>.": "Claude 会安装软件包和库来执行高级数据分析、自定义可视化及专门的文件处理。允许的域名可在<link>设置</link>中管理。",
    "Claude is AI and can make mistakes. Please double-check cited sources.": "Claude 是 AI,可能会犯错。请仔细检查引用的来源。",
    "Claude is AI and can make mistakes. Please double-check responses.": "Claude 是 AI,可能会犯错。请仔细检查回答。",
    "Claude is AI and can make mistakes. Please double-check responses. {giveFeedback}": "Claude 是 AI,可能会犯错。请仔细检查回答。{giveFeedback}",
    "Claude is a next generation AI assistant built by Anthropic and trained to be safe, accurate, and secure to help you do your best work.": "Claude 是由 Anthropic 构建的新一代 AI 助手,经过安全、准确、可靠的训练,旨在帮助您更出色地完成工作。",
    "Claude is an artificial intelligence, trained by Anthropic using Constitutional AI to be safe, accurate, and secure — the trusted assistant for you to do your best work.": "Claude 是 Anthropic 采用宪法 AI 训练的一种人工智能,旨在保证安全、准确和可靠——它是支持您交出最佳作品的可信助手。",
    "Claude is attempting to join the meeting. This may take a moment...": "Claude 正在尝试加入会议。请稍候...",
    "Claude is checking the preview": "Claude 正在检查预览",
    "Claude is in control": "Claude 正在控制中",
    "Claude is not intended to give advice, including legal, financial, & medical advice. Don’t rely on our conversation alone without doing your own independent research.": "Claude 无意提供建议,包括法律、财务和医疗建议。不要仅依赖我们的对话,请务必进行独立研究。",
    "Claude is not supported in your region. See the <link>list of supported regions</link> for more information.": "Claude 在您所在的地区暂不受支持。请参阅<link>受支持地区列表</link>以获取更多信息。",
    "Claude is ready to use Chrome": "Claude 已准备好使用 Chrome",
    "Claude is requesting a secret": "Claude 正在请求凭据",
    "Claude is responding": "Claude 正在回复",
    "Claude is restarting to sign in.": "Claude 正在重新启动以登录。",
    "Claude is speaking": "Claude 正在发言",
    "Claude is speaking...": "Claude 正在发言...",
    "Claude is still creating a response in the background. Once it's complete, you'll see it here.": "Claude 仍在后台生成回复。完成后,您将在此处看到它。",
    "Claude is temporarily unavailable": "Claude 暂时不可用",
    "Claude is unable to respond to this request because it triggered restrictions on violative cyber content and was blocked under Anthropic's Usage Policy. To learn more, visit our <helpCenterLink>help center</helpCenterLink>. Please <newChatLink>start a new chat</newChatLink> or <retryLink>retry with {fallbackModelName}</retryLink>.": "Claude 无法响应此请求,因为它触发了关于违规网络内容的限制,并根据 Anthropic 的许可使用政策被封锁。欲了解更多信息,请访问我们的<helpCenterLink>帮助中心</helpCenterLink>。请<newChatLink>开启新对话</newChatLink>或<retryLink>使用 {fallbackModelName} 重试</retryLink>。",
    "Claude is unable to respond to this request because it triggered restrictions on violative cyber content and was blocked under Anthropic's Usage Policy. To request an exemption based on how you use Claude, fill out <formLink>this form</formLink>, or visit our <helpCenterLink>help center</helpCenterLink> to learn more. Please <newChatLink>start a new chat</newChatLink> or <retryLink>retry with {fallbackModelName}</retryLink>.": "Claude 无法响应此请求,因为它触发了对违规网络内容的限制,并根据 Anthropic 的使用政策被阻止。要根据您使用 Claude 的方式请求豁免,请填写<formLink>此表单</formLink>,或访问我们的<helpCenterLink>帮助中心</helpCenterLink>了解更多信息。请<newChatLink>开始新对话</newChatLink>或<retryLink>使用 {fallbackModelName} 重试</retryLink>。",
    "Claude is unable to respond to this request, which appears to violate our <policyLink>Usage Policy</policyLink>. Please <newChat>start a new chat</newChat>.": "Claude 无法对此请求做出响应,因为它似乎违反了我们的 <policyLink>使用政策</policyLink>。请 <newChat>开启新对话</newChat>。",
    "Claude is unable to respond to this request. Please <newChat>start a new chat</newChat>.": "Claude 无法响应此请求。请<newChat>开启新对话</newChat>。",
    "Claude is using the cached response. Newer changes at the URL won't apply until a successful sync.": "Claude 正在使用缓存的响应。在成功同步之前,该 URL 上的较新更改不会生效。",
    "Claude is using your computer": "Claude 正在使用您的电脑",
    "Claude is working on your request. Check back later or start a new conversation.": "Claude 正在处理您的请求。请稍后再来查看,或者开启新对话。",
    "Claude is working — wait for the turn to finish": "Claude 正在工作 — 等待轮次完成",
    "Claude isn't installed on {upstreamOwner} — opening the PR on GitHub instead.": "Claude 未安装在 {upstreamOwner} 上,改为在 GitHub 上打开 PR。",
    "Claude keeps its existing memory but won’t use memory or make new memories.": "Claude 将保留现有的记忆,但不会使用旧记忆或产生新记忆。",
    "Claude may not be able to provide accurate, real time information on elections. Please visit <link>TurboVote</link> or check the Secretary of State site for your state to get reliable, up-to-date, non partisan guidance on how and where to vote in elections across the US.": "Claude 可能无法就选举提供准确、实时的信息。请访问 <link>TurboVote</link> 或查看您所在州的州务卿网站,获取关于如何以及在何处参加美国大选投票的可靠、最新且无党派偏见的指导。",
    "Claude may occasionally generate incorrect or misleading information, or produce offensive or biased content.": "Claude 偶尔可能会生成错误或误导性的信息,或者产生攻击性或偏见的内容。",
    "Claude model version not found.": "未找到 Claude 模型版本。",
    "Claude navigates, clicks buttons, and fills forms in your browser.": "Claude 在您的浏览器中导航、点击按钮并填写表单。",
    "Claude navigates, clicks buttons, and fills forms in your browser. Works in Cowork.": "Claude 在您的浏览器中进行导航、点击按钮和填写表单。可在 Cowork 中使用。",
    "Claude needs code execution to access some attached files.": "Claude 需要执行代码功能以访问部分附件文件。",
    "Claude needs code execution to access some attached files. Contact an organization owner to enable this feature.": "Claude 需要代码执行功能来访问某些附件。请联系组织所有者以启用此功能。",
    "Claude needs code execution to access some attached files. Contact your admin to request access to this feature.": "Claude 需要代码执行功能来访问某些附件文件。请联系您的管理员申请访问此功能。",
    "Claude never loses the thread": "Claude 从不掉线",
    "Claude never shares info you’ve kept private.": "Claude 绝不会分享您保持私密的信息。",
    "Claude now works in your local files": "Claude 现在可以在您的本地文件中工作",
    "Claude now works right in your browser—scheduling appointments, summarizing email content, and automating expense reports. Less busywork, more flow.": "Claude 现在可以直接在您的浏览器中工作——安排预约、总结邮件内容和自动化费用报告。减少繁琐工作,提升工作流程。",
    "Claude on Android, connected to your apps and data.": "Android 版 Claude,已连接到您的应用和数据。",
    "Claude only": "仅 Claude",
    "Claude partner network": "Claude 合作伙伴网络",
    "Claude picks up where you left off": "Claude 将从您上次离开的地方继续",
    "Claude proposed a plan": "Claude 提出了一个计划",
    "Claude reached its max length for this message.": "Claude 已达到此消息的最大长度。",
    "Claude reached its tool-use limit for this turn.": "Claude 在本轮对话中达到了工具使用限制。",
    "Claude regenerates project memory every evening from your past chats in this project. Only you can see this memory, and it is not shared with other project users.": "Claude 每晚会根据您在此项目中的历史聊天内容重新生成项目记忆。只有您可以查看此记忆,它不会与其他项目用户共享。",
    "Claude responded: {summary}": "Claude 回复:{summary}",
    "Claude runs this skill automatically when it's relevant to your request.": "当与您的请求相关时,Claude 会自动运行此技能。",
    "Claude saves memories as you work together in Cowork.": "在你与 Claude 在协作中共同工作时,Claude 会保存记忆。",
    "Claude saves what it learns about you and your work during Cowork sessions. These files are stored on this device.": "Claude 会保存它在 Cowork 会话中了解到的关于你和你工作的内容。这些文件存储在此设备上。",
    "Claude should open shortly.": "Claude 很快就会打开。",
    "Claude understands your codebase and helps you build, debug, and ship faster. Get started in the desktop app.": "Claude 能理解你的代码库,并帮助你更快地构建、调试和发布。请在桌面应用中开始使用。",
    "Claude understands your codebase and helps you build, debug, and ship faster. Upgrade your plan to get started.": "Claude 能理解你的代码库,并帮助你更快地构建、调试和发布。升级你的套餐即可开始使用。",
    "Claude uses its access to the web to improve answers when appropriate.": "Claude 在适当的时候会利用联网权限来改进回答。",
    "Claude uses limited network access to install packages for file creation. Manage in <settingsLink>Settings</settingsLink> or <learnMoreLink>learn more</learnMoreLink>": "Claude 使用有限的网络访问权限来安装用于文件创建的包。可在<settingsLink>设置</settingsLink>中管理或<learnMoreLink>了解更多</learnMoreLink>",
    "Claude uses these descriptions when deciding which agents to use in chat.": "Claude 在决定对话中使用哪些智能体时会参考这些描述。",
    "Claude uses these descriptions when deciding which commands to use in chat.": "Claude 在决定对话中使用哪些命令时会参考这些描述。",
    "Claude uses these descriptions when deciding which skills to use in chat.": "Claude 在决定对话中使用哪些技能时会参考这些描述。",
    "Claude uses your layouts, fonts, and templates to keep every slide on-brand.": "Claude 使用您的布局、字体和模板来保持每张幻灯片不偏离品牌风格。",
    "Claude wants to send this to <bold>Claude Code</bold>": "Claude 想要将其发送至 <bold>Claude Code</bold>",
    "Claude wants to use your computer": "Claude 想要使用您的计算机",
    "Claude wants to use {appName}": "Claude 想要使用 {appName}",
    "Claude wants to use {toolName}": "Claude 想要使用 {toolName}",
    "Claude wants to use {toolName} from {integrationName}": "Claude 想要使用来自 {integrationName} 的 {toolName}",
    "Claude wants to use {toolName} from {serverName}": "Claude 想要使用来自 {serverName} 的 {toolName}",
    "Claude wants to use:": "Claude 想要使用:",
    "Claude wants to:": "Claude 想要:",
    "Claude was nudged": "Claude 已收到提示",
    "Claude will access your desktop (files, apps, and browser) to complete tasks you send from your phone. This may have security risks. Only pair devices that you own and trust. <safetyLink>Learn how to use this safely</safetyLink>": "Claude 将访问您的桌面(文件、应用及浏览器)以完成您从手机发送的任务。这可能存在安全风险。请仅配对您拥有且信任的设备。<safetyLink>了解如何安全使用</safetyLink>",
    "Claude will automatically review pull requests, check for bugs, and follow the instructions in your <b>CLAUDE.md</b> and <b>REVIEW.md</b>.": "Claude 将自动审查拉取请求、检查 Bug 并遵循您 <b>CLAUDE.md</b> 和 <b>REVIEW.md</b> 中的指令。",
    "Claude will browse and interact with any website in Chrome without asking. Applies to new sessions. This setting can put your data at risk. <link>Learn more</link>": "Claude 将在 Chrome 中浏览任何网站并与之交互,且不进行询问。这适用于新会话。此设置可能会使您的数据面临风险。<link>了解更多</link>",
    "Claude will browse these sites without approval. All other sites are blocked.": "Claude 将在未经批准的情况下浏览这些站点。所有其他站点都被阻止。",
    "Claude will create PRs as the Claude GitHub App bot instead of your personal GitHub account.": "Claude 将以 Claude GitHub App 机器人的身份创建 PR,而不是您的个人 GitHub 账户。",
    "Claude will decide which actions are safe to run without asking. Longer tasks run uninterrupted, with extra safeguards against prompt injection.": "Claude 将决定哪些操作可以在不询问的情况下安全运行。较长任务会不间断执行,并附带额外的提示注入防护。",
    "Claude will guide your learning process instead of just giving answers. You can adjust these instructions in the project anytime.": "Claude 将引导您的学习过程,而不仅仅是给出答案。您可以随时在项目中调整这些指令。",
    "Claude will help you find available connectors in your directory. Change anytime in Settings.": "Claude 会帮助你在目录中查找可用连接器。你可随时在设置中更改。",
    "Claude will keep these in mind across chats and Cowork within <aupLink>Anthropic's guidelines</aupLink>. <learnMoreLink>Learn more</learnMoreLink>": "Claude 会在聊天和 Cowork 中根据 <aupLink>Anthropic 的指南</aupLink> 记住这些内容。<learnMoreLink>了解更多</learnMoreLink>",
    "Claude will launch automatically once installation is complete.": "安装完成后,Claude 将自动启动。",
    "Claude will no longer automatically verify code changes using the preview. You can still ask Claude to verify manually. This setting is saved in .claude/launch.json for this project.": "Claude 将不再自动使用预览功能验证代码变更。您仍可以手动要求 Claude 进行验证。此设置保存在此项目的 .claude/launch.json 中。",
    "Claude will open a Claude Code session with this task as the first message.": "Claude 将开启一个 Claude Code 会话,并将此任务作为第一条消息。",
    "Claude will quickly generate a few different design directions for you to pick from.": "Claude 会快速生成几种不同的设计方向供你选择。",
    "Claude will read and update these memories during Cowork sessions.": "Claude 会在 Cowork 会话期间读取并更新这些记忆。",
    "Claude will read, edit, and execute files without asking — including potentially destructive commands. Only use this in isolated or disposable environments.": "Claude 将在不询问的情况下读取、编辑并执行文件,包括可能具有破坏性的命令。仅在隔离或一次性环境中使用此功能。",
    "Claude will remember context across conversations in this project. Turn this off in settings.": "Claude 将记住此项目中跨对话的上下文。可以在设置中将其关闭。",
    "Claude will run a few examples and check in when it needs you.": "Claude 将运行几个示例,并在需要您时与您联系。",
    "Claude will screenshot the running preview, click through the main flows, and check the console for errors — then report what's working and what isn't.": "Claude 将截取运行预览的屏幕截图,点击主要流程,并检查控制台是否有错误 — 然后报告什么有效,什么无效。",
    "Claude will search for relevant documents": "Claude 将搜索相关文档",
    "Claude will set up a private environment to work alongside you. This takes a moment the first time.": "Claude 将建立一个私密环境与您协作。首次操作需要片刻时间。",
    "Claude will suggest responses when you upload CSVs to your conversation.": "当您在对话中上传 CSV 文件时,Claude 会提供建议回复。",
    "Claude will take action without asking for your permission. This includes tools, files, and websites you haven't approved. This setting can put your data at risk. <link>Learn more</link>": "Claude 将在不请求许可的情况下执行操作。这包括您尚未批准使用的工具、文件和网站。此设置可能会使您的数据面临风险。<link>了解更多</link>",
    "Claude will take actions in Chrome without asking for your permission, including on websites you haven't approved.": "Claude 将在 Chrome 中无需征得您的许可执行操作,包括在您尚未批准的网站上。",
    "Claude will take screenshots of your screen and control your mouse and keyboard. You'll approve each app, but not confirm each step Claude performs.": "Claude 将截取您的屏幕截图并控制您的鼠标和键盘。您将批准每个应用,但不需要确认 Claude 执行的每个步骤。",
    "Claude will use your connectors without pausing for approval.": "Claude 将使用你的连接器,而不会暂停等待批准。",
    "Claude will use your edits as a starting point, but the revised version may not match what you wrote exactly.": "Claude 将以您的编辑内容为基础,但最终版本可能与您的原稿不完全一致。",
    "Claude will work in an isolated copy of your repo so you can keep working without conflicts.": "Claude 将在存储库的独立副本中工作,以便您在没有冲突的情况下继续操作。",
    "Claude will work without pausing for approval. This can put your data at risk. <link>Learn more</link>": "Claude 将在无需暂停等待批准的情况下工作。这可能会让你的数据面临风险。<link>了解更多</link>",
    "Claude won’t work perfectly or risk-free on all websites or tasks.": "Claude 无法在所有网站或任务上完美运行,且并非百分之百无风险。",
    "Claude works alongside you — hand off tasks, stay in the loop, and focus on what matters.": "Claude 就在您身边——交付任务、保持同步、专注于重要的事情。",
    "Claude works directly in Excel": "Claude 直接在 Excel 中工作",
    "Claude works directly in PowerPoint": "Claude 直接在 PowerPoint 中工作",
    "Claude works directly in Word": "Claude 可直接在 Word 中使用",
    "Claude works directly with your codebase": "Claude 直接与你的代码库协作",
    "Claude works in your browser": "Claude 在您的浏览器中运行",
    "Claude would like to <bold>Cowork</bold> in <mono>{path}</mono>": "Claude 想要在 <mono>{path}</mono> 中<bold>协作</bold>",
    "Claude would like to <bold>Cowork</bold> in a folder": "Claude 想要在文件夹中进行 <bold>Cowork</bold>",
    "Claude would like to <bold>Cowork</bold> in:": "Claude 想要在以下位置<bold>协作</bold>:",
    "Claude writes the plan here as it explores. Keep chatting.": "Claude 会在探索时在此处制定计划。请继续交谈。",
    "Claude {featureName}": "Claude {featureName}",
    "Claude's answers feel lower quality to me": "我觉得 Claude 的回答质量变低了",
    "Claude's choice": "Claude 的选择",
    "Claude's election info may be outdated. To get reliable, up-to-date voting information, <link>visit {helplineName}</link>.": "Claude 的选举信息可能已过时。要获取可靠且最新的投票信息,请<link>访问 {helplineName}</link>。",
    "Claude's installation appears to be corrupted. Reinstall Claude from claude.com/download to use this feature.": "Claude 的安装似乎已损坏。请从 claude.com/download 重新安装 Claude 以使用此功能。",
    "Claude's installation appears to be corrupted. Reinstall Claude to use {featureName}.": "Claude 的安装似乎已损坏。请重新安装 Claude 以使用 {featureName}。",
    "Claude's ready when you are": "Claude已准备就绪,随时为您服务",
    "Claude's response could not be fully generated": "Claude 的回复未能完全生成",
    "Claude's response was interrupted": "Claude 的回复被中断了",
    "Claude's workspace requires Virtual Machine Platform, but the virtualization service isn't responding. Restart your computer to resolve this.": "Claude 的工作区需要虚拟机平台,但虚拟化服务没有响应。请重启计算机以解决此问题。",
    "Claude's workspace requires hardware virtualization. Enable virtualization in your computer's BIOS/UEFI settings, then restart.": "Claude 的工作区需要硬件虚拟化。请在电脑的 BIOS/UEFI 设置中启用虚拟化,然后重启。",
    "Claude's workspace requires the Virtual Machine Platform on Windows. Enable this feature, then restart.": "Claude 的工作区在 Windows 上需要 虚拟机平台 (Virtual Machine Platform) 功能。请启用此功能,然后重启。",
    "Claude.ai": "Claude.ai",
    "Claude.ai (web)": "Claude.ai(网页)",
    "Claude.ai chat": "Claude.ai 聊天",
    "Claude.ai org": "Claude.ai 组织",
    "Claude.ai organization": "Claude.ai 组织",
    "Claude’s choice": "Claude 的选择",
    "Claude’s in your Chrome": "您的 Chrome 里的 Claude",
    "Claude’s response was interrupted. This can be caused by network problems or exceeding the maximum conversation length. Please <link>contact support</link> if the issue persists.": "Claude 的回复被中断。这可能是由网络问题或超出最大对话长度导致的。如果问题仍然存在,请<link>联系持人员</link>。",
    "ClawdDash mini-game": "ClawdDash 小游戏",
    "Clawdmart": "Clawdmart",
    "Clean and normalize data": "清理和规范化数据",
    "Clean survey data and plot response rates by cohort": "清洗调查数据并按群体绘制响应率图表",
    "Clean up my Downloads folder": "清理我的下载文件夹",
    "Clean up my messy data": "帮我清理杂乱的数据",
    "Clear": "清除",
    "Clear active": "清除活动",
    "Clear all": "全部清除",
    "Clear all overrides": "清除所有覆盖设置",
    "Clear and well-structured responses": "清晰且结构良好的回复",
    "Clear avatar": "清除头像",
    "Clear background tasks": "清除后台任务",
    "Clear cache": "清除缓存",
    "Clear data": "清除数据",
    "Clear edits": "清除修改/撤销编辑",
    "Clear filter": "清除筛选器",
    "Clear filters": "清除过滤条件",
    "Clear input": "清除输入",
    "Clear instructions": "清空指令",
    "Clear memory": "清除记忆",
    "Clear memory?": "清除记忆?",
    "Clear search": "清除搜索",
    "Clear selected file": "清除所选文件",
    "Clear selection": "清除选择",
    "Clear session data": "清除会话数据",
    "Clear shortcut": "清除快捷键",
    "Clear side chat": "清除侧边聊天",
    "Clear storage": "清除存储",
    "Clear the input to dictate": "清空输入框以进行听写",
    "Cleared and reinitialized your session": "已清除并重新初始化您的会话",
    "Cleared cowork onboarding flag": "已清除 Cowork 引导标记",
    "Cleared todos": "已清除待办事项",
    "Clearing your session": "正在清除您的会话",
    "Click": "点击",
    "Click here to confirm your purchase of additional User seats and acknowledge that Anthopic may invoice you as above.": "点击此处确认您购买额外的用户席位,并知晓 Anthropic 可能会按上述方式向您开具发票。",
    "Click here to confirm your purchase of additional user seats and acknowledge that AWS Marketplace may invoice you": "点击此处确认购买额外用户席位,并确认 AWS Marketplace 可能向您开具发票",
    "Click here to confirm your purchase of additional user seats and acknowledge that Anthropic may invoice you as above": "点击此处确认购买额外用户席位,并确认 Anthropic 可能按上述方式向您开具发票",
    "Click here to confirm your scheduled seat downgrade": "点击此处以确认您已安排的席位降级",
    "Click here to test translations": "点击此处测试翻译",
    "Click only": "仅点击",
    "Click the <icon>icon</icon> in the menu bar.": "点击菜单栏中的 <icon>图标</icon>。",
    "Click the button below if the app does not open automatically.": "如果应用没有自动打开,请点击下方的按钮。",
    "Click to add comments": "点击添加评论",
    "Click to capture keyboard": "点击以捕获键盘输入",
    "Click to collapse": "点击收起",
    "Click to edit": "点击编辑",
    "Click to edit row.": "点击编辑行。",
    "Click to open file": "点击打开文件",
    "Click to open {artifactType} • {versionCount, plural, one {# version} other {# versions}}": "点击打开 {artifactType} • {versionCount, plural, one {# 个版本} other {# 个版本}}",
    "Click to place stars and watch as Claude discovers the hidden patterns in your starfield and gives them names and stories": "点击即可布置星空,观察 Claude 如何在星场中发现隐藏的模式,并为它们赋予名称和故事",
    "Click to view error details": "点击查看错误详情",
    "Click to view full screenshot": "点击查看完整截图",
    "Click: \"{target}\"": "点击:\"{target}\"",
    "Clicking {button} will restore full Claude access to all members in your plan <bold>and charge you immediately</bold>.": "点击 {button} 将为您方案中的所有成员恢复完整的 Claude 访问权限,并<bold>立即扣费</bold>。",
    "Client ID": "客户端 ID",
    "Client State": "客户端状态",
    "Client secret": "客户端密钥",
    "Clients connected to this container and the tools they provide.": "连接到此容器的客户端及其提供的工具。",
    "Close": "关闭",
    "Close Preview": "关闭预览",
    "Close and reopen the preview to start it again.": "关闭并重新打开预览以重新开始。",
    "Close anything sensitive. Claude can see your screen.": "关闭任何敏感内容。Claude 可以看到您的屏幕。",
    "Close artifact": "关闭工件",
    "Close connectors": "关闭连接器",
    "Close debug view": "关闭调试视图",
    "Close details": "关闭详情",
    "Close diff view": "关闭差异视图",
    "Close element preview": "关闭元素预览",
    "Close file filter": "关闭文件过滤器",
    "Close find bar": "关闭查找栏",
    "Close fullscreen": "关闭全屏",
    "Close image preview": "关闭图片预览",
    "Close menu": "关闭菜单",
    "Close pane": "关闭窗格",
    "Close panel": "关闭面板",
    "Close search": "关闭搜索",
    "Close session": "关闭会话",
    "Close settings": "关闭设置",
    "Close side chat": "关闭侧边聊天",
    "Close sidebar": "关闭侧边栏",
    "Close split view": "关闭分屏视图",
    "Close suggestions": "关闭建议",
    "Close terminal": "关闭终端",
    "Close the Customize panel to toggle sidebar": "关闭自定义面板以切换侧边栏",
    "Close thread": "关闭对话",
    "Close voice mode": "关闭语音模式",
    "Closed": "已关闭",
    "Closed PR": "已关闭的 PR",
    "Closing PR": "正在关闭 PR",
    "Cloud": "云端",
    "Cloud code execution and file creation": "云端代码执行和文件创建",
    "Cloud environment created": "云环境已创建",
    "Cloud environments": "云环境",
    "Cloud environments have been disabled by your organization administrator.": "云环境已被您的组织管理员禁用。",
    "Code": "代码",
    "Code & Tech": "代码与科技",
    "Code Review": "代码审查 (Code Review)",
    "Code Review analytics": "代码审查分析",
    "Code Review cost, weekly": "Code Review 成本,每周",
    "Code Review feedback": "代码审查反馈",
    "Code Review is set up": "Code Review 已设置",
    "Code a tool or app": "编写工具或应用",
    "Code already used. Please refresh the page and try again.": "代码已使用。请刷新页面重试。",
    "Code appearance": "代码外观",
    "Code did not match, double check it or try again": "代码不匹配,请仔细检查或重试",
    "Code did not match. Double check it or try again.": "代码不匹配。请仔细检查并重试。",
    "Code execution": "代码执行",
    "Code execution and file creation": "代码执行和文件创建",
    "Code execution and file creation must be enabled by your administrator to use skills": "必须由您的管理员启用代码执行和文件创建才能使用技能",
    "Code font": "代码字体",
    "Code font family": "代码字体家族",
    "Code from Slack": "来自 Slack 的代码",
    "Code in CLI": "在命令行界面 (CLI) 中编码",
    "Code in IDE": "在 IDE 中编码",
    "Code in the desktop": "桌面中的代码",
    "Code in the terminal with Claude Code": "在终端中使用 Claude Code 编写代码",
    "Code in the web": "在 Web 端编码",
    "Code modernization": "代码现代化",
    "Code notifications": "代码通知",
    "Code onboarding reset — archived {count} environment(s). Redirecting…": "编码引导已重置——已归档 {count} 个环境。正在重定向…",
    "Code permission requests": "代码权限请求",
    "Code permissions": "代码权限",
    "Code review could not be enabled. You can try again from the toggle.": "无法启用代码审查。您可以点击开关重试。",
    "Code review has been disabled for this repository. You can re-enable it any time.": "此代码仓库已禁用代码审查。您可以随时重新启用。",
    "Code session": "代码会话",
    "Code session prompt": "编码会话提示词",
    "Code session started": "代码会话已开始",
    "Code sessions run in one folder. Pick which one to use.": "编码会话在一个文件夹中运行。选择要使用哪一个。",
    "Code theme": "代码主题/代码配色",
    "Code verification failed. Try again.": "代码验证失败。请重试。",
    "Code with Claude": "与 Claude 一起编程",
    "Code with Claude anywhere": "随时随地与 Claude 一起编码",
    "Code with Claude in CLI and run coding sessions locally.": "在 CLI 中使用 Claude 编写代码并在本地运行编程会话。",
    "Code with Claude in the desktop app and run coding sessions locally.": "在桌面应用程序中使用 Claude 编写代码,并本地运行编程会话。",
    "Code with Claude in your IDE and run coding sessions locally.": "在您的 IDE 中使用 Claude 编写代码并在本地运行编程会话。",
    "Code with Claude in<br></br>your IDE": "在您的 <br></br>IDE 中与 Claude 一起编码",
    "Code with Claude is now running in cloud environments. Keep your sessions in sync across web, mobile, and CLI.": "与 Claude 一起编码现在可以在云端环境中运行。让您的会话在 Web 端、移动端和 CLI 间保持同步。",
    "Code with Claude on-the-go and run coding sessions in cloud environments.": "随时随地与 Claude 一起编程,并在云端环境中运行编程会话。",
    "CodeVerter": "代码转换器 (CodeVerter)",
    "Coder workspace": "Coder 工作区",
    "Coding": "编码",
    "Coding & developing": "编码与开发",
    "Coding Coach": "编码教练",
    "Coding hours per week": "每周编码时长",
    "Coding hours per week per engineer": "每位工程师每周编码时长",
    "Coding plans that scale with you": "可随您共同扩展的编码方案",
    "Coding session created.": "编码会话已创建。",
    "Coffee and Claude time?": "喝杯咖啡,和 Claude 交谈?",
    "Cold plunge therapy - what's real?": "冷水浸入疗法——究竟孰真孰假?",
    "Collapse": "折叠",
    "Collapse description": "收起描述",
    "Collapse folder {name}": "收起文件夹 {name}",
    "Collapse navigation": "折叠导航",
    "Collapse plan": "折叠方案",
    "Collapse sidebar": "收起侧边栏",
    "Collapse {count, plural, one {# permission} other {# permissions}}": "折叠 {count, plural, one {# 项权限} other {# 项权限}}",
    "Collapse {name}": "折叠 {name}",
    "Collect actuals from the team and draft the close report": "向团队收集实际数据并起草结案报告",
    "Collect updates from the team and send a weekly summary": "收集团队更新并发送每周摘要",
    "Collecting diagnostics…": "正在收集诊断信息…",
    "Collecting…": "收集中…",
    "Color": "颜色",
    "Color contrast checker": "颜色对比度检查器",
    "Color mode": "颜色模式",
    "Color selection": "颜色选择",
    "Columns": "列",
    "Combining overlapping findings…": "正在合并重叠的发现……",
    "Come up with novel ideas for projects based on my docs": "根据我的文档提出新颖的项目创意",
    "Coming soon": "即将推出",
    "Coming soon for Teams and Enterprise": "即将支持 Teams 和 Enterprise",
    "Coming soon to Claude": "即将登陆 Claude",
    "Coming soon.": "即将推出。",
    "Comma-separated": "逗号分隔",
    "Comma-separated list of OAuth Client IDs. No spaces.": "以逗号分隔的 OAuth 客户端 ID 列表。不带空格。",
    "Comma-separated pairs like 18005550123=789012 for testing.": "用于测试的以逗号分隔的配对,如 18005550123=789012。",
    "Comma-separated values": "逗号分隔值",
    "Command": "命令",
    "Command completed with no output": "命令完成,无输出",
    "Command copied to clipboard": "命令已复制到剪贴板",
    "Command copied to clipboard!": "命令已复制到剪贴板!",
    "Command copied to clipboard.": "命令已复制到剪贴板。",
    "Command failed": "命令失败",
    "Command injection": "命令注入",
    "Command menu": "命令菜单",
    "Command palette options": "命令面板选项",
    "Command permissions": "命令权限",
    "Command-line interface for Claude": "适用于 Claude 的命令行界面",
    "Commands": "命令",
    "Comment": "评论",
    "Comment actions": "评论操作",
    "Comment mode": "评论模式",
    "Comment on selection": "对所选内容发表评论",
    "Comment sent to Claude.": "评论已发送给 Claude。",
    "Commented on PR": "已在 PR 中评论",
    "Commenting on PR": "正在评论 PR",
    "Comments Resolved": "评论已解决",
    "Commercial Terms": "商业条款",
    "Commit and push your changes before continuing on the web.": "在网页端继续前,请先提交并推送您的更改。",
    "Commit as WIP": "作为 WIP 提交",
    "Commit changes": "提交更改",
    "Commit comment": "提交评论",
    "Commit or diff commented on": "提交或差异已被评论",
    "Commit to {base}": "提交到 {base}",
    "Commit to {branch}": "提交到 {branch}",
    "Commit: {sha}": "提交 (Commit):{sha}",
    "Commits": "提交",
    "Commits and PRs are authored by the GitHub App instead of your account.": "提交和 PR 将由 GitHub App 而非你的账户署名。",
    "Committed": "已提交",
    "Committing": "正在提交",
    "Common edge cases (empty inputs, invalid IDs, permission errors) have been tested.": "常见边界情况(空输入、无效 ID、权限错误)已测试。",
    "Communicate": "沟通",
    "Communication": "沟通",
    "Communications using, or data stored on, this IS are not private, are subject to routine monitoring, interception, and search, and may be disclosed or used for any USG-authorized purpose.": "在此信息系统 (IS) 上的任何通信或存储的数据均不具私密性,受到例行监控、截获和搜查,并可能出于任何美政府 (USG) 授权的目的被披露或使用。",
    "Community": "社区",
    "Compact": "紧凑",
    "Compacted and reinitialized your session": "已压缩并重新初始化您的会话",
    "Compacting conversation": "正在压缩对话",
    "Compacting our conversation so we can keep chatting...": "我们将压缩对话以便继续聊天...",
    "Compacting your session": "正在压缩您的会话",
    "Compacting...": "正在压缩...",
    "Company": "公司",
    "Company email required": "需要公司邮箱",
    "Company name": "公司名称",
    "Company or individual name": "公司或个人名称",
    "Company website": "公司网站",
    "Compare learning resources": "对比学习资源",
    "Compare message drafts": "对比消息草案",
    "Compare my writing style to famous authors": "将我的写作风格与著名作家对比",
    "Compare researchers’ disagreements about climate solutions": "比较研究人员关于气候解决方案的分歧",
    "Compare vendors for a tool or service": "比较工具或服务的供应商",
    "Complete": "完成",
    "Complete Safari Setup": "完成 Safari 设置",
    "Complete Sign-In to Claude": "完成 Claude 登录",
    "Complete identity verification to finish setting up your subscription.": "完成身份验证以完成订阅设置。",
    "Complete the required fields below to enable this extension.": "请填写以下必填字段以启用此扩展。",
    "Complete the sign-in steps in the new browser tab.": "在新浏览器标签页中完成登录步骤。",
    "Complete {count, plural, one {# required field} other {# required fields}} in Connection": "请在连接中完成 {count, plural, one {# 个必填字段} other {# 个必填字段}}",
    "Completed": "已完成",
    "Completed: ": "已完成:",
    "Completes scheduled workflows": "完成计划的工作流",
    "Completing payment verification...": "正在完成付款验证...",
    "Completing your purchase…": "正在完成你的购买…",
    "Compliance": "合规性",
    "Compliance API": "合规性 API",
    "Compliance API disabled": "合规性 API 已禁用",
    "Compliance API enabled": "合规 API 已开启",
    "Compliance API for observability and monitoring": "用于可观测性和监控的合规性 API",
    "Compliance access keys": "合规访问密钥",
    "Compliance access keys are owned by the organization and remain active even after the creator is removed": "合规访问密钥由组织所有,即使在创建者被移除后仍保持激活状态",
    "Compliant with GDPR and other applicable data-protection regulations": "符合 GDPR 及其他适用的数据保护法规",
    "Composer": "编辑器",
    "Comprehensive": "综合性",
    "Comprehensive mode takes a bit longer — we're building the full experience. Currently {phase}.": "综合模式需要更长的时间 —— 我们正在构建完整体验。当前处于 {phase}。",
    "Comprehensive mode — {phase}": "综合模式 — {phase}",
    "Computer action: {action}": "电脑操作:{action}",
    "Computer use": "电脑使用功能",
    "Computer use needs two macOS permissions. Click each one, grant it in System Settings, then come back here.": "电脑使用功能需要两个 macOS 权限。请分别点击,在系统设置中授予权限,然后返回此处。",
    "Concise": "简洁",
    "Concise style can’t be hidden": "简洁样式不可隐藏",
    "Conduct competitor analysis": "进行竞品分析",
    "Confidence": "置信度",
    "Configuration JSON": "配置 JSON",
    "Configuration can't be used": "该配置无法使用",
    "Configuration name": "配置名称",
    "Configuration sync issue": "配置同步问题",
    "Configuration was written to disk. Claude needs to relaunch to use this provider.": "配置已写入磁盘。Claude 需要重新启动才能使用此提供方。",
    "Configurations": "配置",
    "Configure": "配置",
    "Configure SCIM provisioning for automated user and group management.": "配置 SCIM 供应,实现自动化的用户和分组管理。",
    "Configure a secure environment in just a few clicks.": "只需点击几次即可配置安全环境。",
    "Configure advanced provisioning where IdP groups grant membership access and assign seat tiers.": "配置高级供应 (Provisioning),由 IdP 分组授予成员资格访问权并分配席位等级。",
    "Configure credentials Claude Code sessions inject when calling external APIs, and the rules that decide which requests are allowed.": "配置 Claude Code 会话在调用外部 API 时注入的凭据,以及决定哪些请求被允许的规则。",
    "Configure credentials that Claude Code sessions inject when calling external APIs.": "配置 Claude Code 会话在调用外部 API 时注入的凭据。",
    "Configure how Claude runs and identifies itself.": "配置 Claude 如何运行和识别自己。",
    "Configure how people sign in and sign up to your app.": "配置用户如何登录并注册您的应用程序。",
    "Configure now": "立即配置",
    "Configure permissions": "配置权限",
    "Configure session length": "配置会话时长",
    "Configure third-party inference": "配置第三方推理",
    "Configure webhook": "配置 webhook",
    "Configured model not available": "配置的模型不可用",
    "Configuring research parameters...": "正在配置研究参数...",
    "Confirm": "确认",
    "Confirm & purchase": "确认并购买",
    "Confirm Pro plan": "确认 Pro 计划",
    "Confirm and download": "确认并下载",
    "Confirm bug": "确认 bug",
    "Confirm capability change": "确认能力变更",
    "Confirm changes": "确认更改",
    "Confirm delete secret \"{name}\"": "确认删除机密信息 “{name}”",
    "Confirm everything looks right before you submit. You can go back to any step to make changes.": "请在提交前确认一切无误。你可以返回任一步骤进行修改。",
    "Confirm group mappings": "确认分组映射",
    "Confirm new primary owner email": "确认新的主要所有者邮箱",
    "Confirm payment": "确认付款",
    "Confirm retention settings": "确认保留设置",
    "Confirm sign-in": "确认登录",
    "Confirm subscription": "确认订阅",
    "Confirm that your connector meets Anthropic's directory policies. All items are required.": "确认你的连接器符合 Anthropic 的目录政策。所有项目均为必填。",
    "Confirm these details are correct, or update them below.": "确认这些详细信息正确无误,或者在下方进行更新。",
    "Confirm this code matches the one shown in your browser.": "确认此代码与浏览器中显示的代码一致。",
    "Confirm upgrade": "确认升级",
    "Confirm you accept the BAA and understand this cannot be undone": "确认你接受 BAA 并理解此操作无法撤销",
    "Confirm you have tested your connector before submitting.": "请确认你在提交前已经测试过你的连接器。",
    "Confirm your age": "确认您的年龄",
    "Confirm your connector is documented well enough for users to get started.": "确认你的连接器文档足够完善,便于用户开始使用。",
    "Confirm your role": "确认您的角色",
    "Confirm your server is production-ready and tested across Claude surfaces.": "确认你的服务器已可用于生产环境,并已在 Claude 各界面中完成测试。",
    "Confirm your server meets the baseline technical requirements for the directory.": "确认你的服务器满足该目录的基础技术要求。",
    "Confirmation": "确认",
    "Confirmed": "已确认",
    "Confirming your purchase...": "确认您的购买...",
    "Conflicts": "冲突",
    "Connect": "连接",
    "Connect Claude for {appName}": "为 {appName} 连接 Claude",
    "Connect Claude to your apps, files, and services. Connectors are built by third parties and reviewed by Anthropic for safety.": "将 Claude 连接到您的应用、文件和服务。连接器由第三方构建,并经 Anthropic 安全审计。",
    "Connect Claude to your data and tools. <link>Learn more about connectors</link> or get started with <link2>pre-built ones</link2>.": "将 Claude 连接到您的数据和工具。<link>了解更多关于连接器的信息</link>或从<link2>预构建连接器</link2>开始使用。",
    "Connect Drive": "连接云端硬盘 (Drive)",
    "Connect GitHub": "连接 GitHub",
    "Connect GitHub to get started. Requires the Claude GitHub App to access your code.": "连接 GitHub 以开始使用。需要 Claude GitHub App 才能访问你的代码。",
    "Connect GitHub to run this plan on the web. You can still teleport back to your terminal.": "连接 GitHub 以在 Web 上运行此计划。您仍然可以随时切换回终端。",
    "Connect Gmail": "连接 Gmail",
    "Connect Microsoft 365, Slack, and more": "连接 Microsoft 365、Slack 等",
    "Connect Slack and Google Workspace": "连接 Slack 和 Google Workspace",
    "Connect Slack and Google Workspace services": "连接 Slack 和 Google Workspace 服务",
    "Connect a database": "连接数据库",
    "Connect a different way": "以其他方式连接",
    "Connect infrastructure": "连接基础设施",
    "Connect repositories": "连接仓库",
    "Connect the tools your org uses most": "连接您组织最常用的工具",
    "Connect these tools to get better answers": "连接这些工具以获得更好的回答",
    "Connect this connector to see its tools and set per-tool grants.": "连接此连接器以查看其工具,并设置按工具划分的授权。",
    "Connect this connector to see its tools and set per-tool restrictions for your org.": "连接此连接器以查看其工具并为您的组织设置每个工具的限制。",
    "Connect this tool to get started": "连接此工具以开始",
    "Connect to GitHub": "连接到 GitHub",
    "Connect to GitHub Enterprise Server": "连接至 GitHub Enterprise Server",
    "Connect to GitHub Enterprise Server ({hostname})": "连接到 GitHub Enterprise Server ({hostname})",
    "Connect to GitHub and grant Claude access to your repositories.": "连接到 GitHub 并授予 Claude 访问您代码仓库的权限。",
    "Connect to Outline": "连接到 Outline",
    "Connect to SSH host?": "连接到 SSH 主机吗?",
    "Connect to a remote machine to run <link>Claude Code</link>.": "连接到远程机器以运行 <link>Claude Code</link>。",
    "Connect to your environment": "连接到您的环境",
    "Connect to {hostname}": "连接到 {hostname}",
    "Connect to {hostname} and grant Claude access to your repositories.": "连接到 {hostname} 并授予 Claude 对您存储库的访问权限。",
    "Connect to {hostname} to access its repositories": "连接到 {hostname} 以访问其仓库",
    "Connect to {host}": "连接到 {host}",
    "Connect with GitHub": "连接 GitHub",
    "Connect your Canvas LMS instance to enable LTI integration": "连接您的 Canvas LMS 实例以启用 LTI 集成",
    "Connect your GitHub Enterprise account in <link>settings</link>.": "在 <link>设置</link> 中连接您的 GitHub Enterprise 账号。",
    "Connect your GitHub account to scan repositories for security vulnerabilities.": "连接您的 GitHub 账户以扫描代码仓库的安全漏洞。",
    "Connect your GitHub account to select organizations for analytics.": "连接您的 GitHub 账号,为分析选择组织。",
    "Connect your apps": "连接您的应用",
    "Connect your everyday tools": "连接您的日常工具",
    "Connect your infrastructure": "连接您的基础设施",
    "Connect your organization's GitHub Enterprise Server instances to enable code review and repository access.": "连接您组织的 GitHub Enterprise Server 实例以启用代码审查和仓库访问。",
    "Connect your repos": "连接您的仓库",
    "Connect your repositories.": "Connect your repositories.",
    "Connect your terminal": "连接您的终端",
    "Connect your tools to Claude": "将您的工具连接到 Claude",
    "Connect your tools to get more from Cowork": "连接您的工具以从 Cowork 中获得更多",
    "Connect {name}": "连接 {name}",
    "Connect {serverName}": "连接 {serverName}",
    "Connected": "已连接",
    "Connected browsers": "已连接的浏览器",
    "Connected by default": "默认连接",
    "Connected files": "已连接文件",
    "Connected runners": "已连接的运行器",
    "Connected to \"{name}\".": "已连接到 “{name}”。",
    "Connected to Google Drive": "已连接到 Google 云端硬盘",
    "Connected to your environment": "已连接到您的环境",
    "Connected to {integrationName}": "已连接到 {integrationName}",
    "Connected to {serverName}.": "已连接到 {serverName}。",
    "Connected {relativeTime}": "连接于 {relativeTime}",
    "Connecting": "连接中",
    "Connecting to Connector...": "正在连接至连接器...",
    "Connecting to browser": "正在连接浏览器",
    "Connecting to screen…": "正在连接到屏幕…",
    "Connecting to session…": "正在连接到会话…",
    "Connecting to your environment": "正在连接到您的环境",
    "Connecting to {server}...": "正在连接到 {server}...",
    "Connecting...": "正在连接...",
    "Connecting…": "正在连接…",
    "Connection couldn't be established. You can check your internet and try again.": "无法建立连接,请检查网络后重试。",
    "Connection failed": "连接失败",
    "Connection failed. You can try again.": "连接失败。您可以重试。",
    "Connection failed: {error}": "连接失败:{error}",
    "Connection has expired. You can reconnect to re-authenticate.": "连接已过期。您可以重新连接以重新进行身份验证。",
    "Connection issue": "连接问题",
    "Connection lost {age} ago — check your internet connection.": "连接已断开 {age} — 请检查您的网络连接。",
    "Connection not allowed": "不允许连接",
    "Connection refused": "连接被拒绝",
    "Connection requirements": "连接要求",
    "Connection test failed. Check your configuration and try again.": "连接测试失败。请检查您的配置并重试。",
    "Connection test passed.{version, select, other { GHE version: {version}.} undefined {}} {replicaCount, plural, one {# read replica reachable.} other {All # read replicas reachable.}}": "连接测试通过。{version, select, other { GHE 版本: {version}。} undefined {}} {replicaCount, plural, one {# 个只读副本可达。} other {所有 # 个只读副本均可达。}}",
    "Connection test passed.{version, select, other { GHE version: {version}} undefined {}}": "连接测试通过。{version, select, other { GHE 版本:{version}} undefined {}}",
    "Connection to server failed. You can try again.": "连接服务器失败。您可以重试。",
    "Connection to this host was blocked. The marketplace host may not be supported.": "至此主机的连接已被拦截。市场主机可能不被支持。",
    "Connection to {serverName} failed. You can try reconnecting.": "连接到 {serverName} 失败。您可以尝试重新连接。",
    "Connection was lost. You can check your internet and try again.": "连接丢失。您可以检查网络并重试。",
    "Connections": "连接/关系",
    "Connectivity test failed.": "连接测试失败。",
    "Connector": "连接器",
    "Connector URL": "连接器 URL",
    "Connector couldn't be enabled. You can try again.": "无法启用连接器。你可以重试。",
    "Connector data hidden in shared chats": "共享聊天中隐藏连接器数据",
    "Connector details": "连接器详情",
    "Connector discovery turned off — change anytime in Settings.": "连接器发现已关闭——可随时在设置中更改。",
    "Connector has been tested end-to-end with Claude on at least one supported surface.": "该连接器已在至少一个受支持的界面上与 Claude 完成端到端测试。",
    "Connector hidden in shared chats": "共享聊天中隐藏连接器",
    "Connector named ‘{name}’ already exists": "名为 ‘{name}’ 的连接器已存在",
    "Connector not found": "未找到连接器",
    "Connector search": "连接器搜索",
    "Connector tools": "连接器工具",
    "Connectors": "连接器",
    "Connectors and tools": "连接器和工具",
    "Connectors aren't enabled for this workspace. Ask an organization owner to enable this.": "此工作区未启用连接器。请组织所有者启用此功能。",
    "Connectors aren't enabled for this workspace. Contact an organization owner to enable them.": "此工作区未启用连接器。请联系组织所有者来启用。",
    "Connectors couldn't be loaded. Check your connection and try again.": "无法加载连接器。请检查网络连接后重试。",
    "Connectors have moved to <link>Customize</link>.": "连接器已移至<link>自定义</link>。",
    "Connectors have moved to Customize. Head to the new Customize page to manage your skills and connectors.": "连接器已移至“自定义”。请前往新的“自定义”页面管理您的技能和连接器。",
    "Connectors let your agent access external tools and data sources.": "连接器让您的智能体能访问外部工具和数据源。",
    "Connectors like Google Workspace, email, and calendar": "如 Google Workspace、电子邮件和日历等连接器",
    "Connectors that could help": "可能有用的连接器",
    "Connectors unavailable": "连接器不可用",
    "Connectors will move to Customize. Head to the new Customize page to manage your skills and connectors.": "连接器将移至“自定义”页面。前往新的“自定义”页面管理您的技能和连接器。",
    "Consider alternate histories": "思考架空历史",
    "Consider economic theories": "思考经济学理论",
    "Consider environmental solutions": "思考环境解决方案",
    "Consider innovation patterns": "考虑创新模式",
    "Console": "控制台",
    "Console login": "控制台登录",
    "Console org": "控制台组织",
    "Console organization": "控制台组织",
    "Consultant": "顾问",
    "Consumer Terms": "消费者条款",
    "Contact Claude Sales": "联系 Claude 销售",
    "Contact an organization owner to add custom connectors": "联系组织所有者以添加自定义连接器",
    "Contact an organization owner to install connectors": "联系组织所有者来安装连接器",
    "Contact an owner to enable allowlist enforcement.": "联系所有者以启用允许列表强制执行。",
    "Contact an owner to purchase more seats, or assign them to a tier which has enough available seats.": "联系所有者以购买更多席位,或将他们分配到席位充足的等级。",
    "Contact an owner to purchase more seats, or invite them on a tier which has enough available seats.": "联系所有者以购买更多席位,或邀请他们到有足够可用席位的层级。",
    "Contact email": "联系邮箱",
    "Contact information": "联系信息",
    "Contact sales": "联系销售",
    "Contact sales to manage seats for your organization.": "联系销售以管理您组织的席位。",
    "Contact support": "联系支持",
    "Contact us to upgrade": "联系我们进行升级",
    "Contact your Anthropic representative to procure additional seats, or assign them to a tier which has enough available seats.": "请联系你的 Anthropic 代表购买额外席位,或将他们分配到有足够可用席位的层级。",
    "Contact your Anthropic representative to procure additional seats, or use a tier which has enough available seats.": "请联系你的 Anthropic 代表购买额外席位,或使用有足够可用席位的套餐。",
    "Contact your Anthropic representative to procure additional seats.": "联系你的 Anthropic 代表以采购更多席位。",
    "Contact your admin to request access to this feature.": "请联系您的管理员以申请此功能的访问权限。",
    "Contact your admin to upgrade": "联系您的管理员以升级",
    "Contact your administrator to request access.": "请联系您的管理员请求访问权限。",
    "Contact your organization administrator for assistance.": "联系您的组织管理员寻求协助。",
    "Contact your team admin for a new link.": "请联系您的团队管理员获取新链接。",
    "Contemplating, stand by...": "思考中,请稍候...",
    "Contemplating...": "思考中...",
    "Content": "内容",
    "Content Generators and Creative Automation with Claude AI": "使用 Claude AI 创作的内容生成器和创意自动化工具",
    "Content already published": "内容已发布",
    "Content already shared": "内容已分享",
    "Content designer": "内容设计师",
    "Content generators, AI creators, text/image/code generators, creative automation": "内容生成器、AI 创作者、文本/图片/代码生成器、创意自动化",
    "Content is not stored after matching style.": "风格匹配后内容不会被存储。",
    "Content is unverified and doesn't represent Anthropic. Be cautious running code from sources you don't trust.": "内容未经证实,不代表 Anthropic。运行来自不信任来源的代码请保持谨慎。",
    "Content is user-generated and unverified.": "内容为用户生成且未经验证。",
    "Content not accessible": "内容不可访问",
    "Content not allowed": "内容不被允许",
    "Context": "背景/上下文",
    "Context window": "上下文窗口",
    "Continue": "继续",
    "Continue as {email}": "作为 {email} 继续",
    "Continue in": "继续使用",
    "Continue in Claude Code CLI": "在 Claude Code CLI 中继续",
    "Continue in Claude Code on the Web": "在网页版 Claude Code 中继续",
    "Continue on the web": "在网页端继续",
    "Continue on web": "在网页端继续",
    "Continue to Authorization": "继续进行授权",
    "Continue to Claude": "继续使用 Claude",
    "Continue to GitHub Enterprise": "继续前往 GitHub Enterprise",
    "Continue to checkout": "继续结账",
    "Continue to claude.ai": "继续前往 claude.ai",
    "Continue to level up": "继续升级",
    "Continue using Claude after reaching the usage limits of your plan, using standard API rates": "达到方案使用限制后,按标准 API 费率继续使用 Claude",
    "Continue with GitHub": "继续使用 GitHub",
    "Continue with Google": "继续使用 Google 登录",
    "Continue with SSO": "通过 SSO 继续",
    "Continue with chat": "继续对话",
    "Continue with email": "继续使用邮箱登录",
    "Continue with personal account": "继续使用个人账号",
    "Continue with this": "继续使用这个",
    "Continue with your Claude.ai account to authenticate connections": "通过您的 Claude.ai 账户继续以验证连接",
    "Continue with {count, plural, one {# connector} other {# connectors}}": "继续使用 {count, plural, one {# 个连接器} other {# 个连接器}}",
    "Continue with {short}": "使用 {short} 继续",
    "Continue without Cowork": "不使用 Cowork 继续",
    "Continue without archiving": "不归档继续",
    "Continue without connectors": "不使用连接器继续",
    "Continue without interruption": "不间断地继续",
    "Continue without inviting": "不邀请并继续",
    "Continues in the same session across runs": "在同一会话的不同运行中保持连续性",
    "Continues in the same session across runs.": "在多次运行之间继续使用同一会话。",
    "Continuing from a side question.\n\nQ: {question}\n\nA: \"{answer}\"\n\n": "继续刚才的旁支问题。\n\n问:{question}\n\n答:“{answer}”\n\n",
    "Continuing on the web": "在网页端继续",
    "Contracted plan": "合约方案",
    "Contribute to your Claude subscription usage": "贡献您的 Claude 订阅用量",
    "Control costs with spend limits": "通过支出限额控制成本",
    "Control from your phone": "从手机控制",
    "Control how new features release to your team.": "控制如何向您的团队发布新功能。",
    "Control how users sign in to your app.": "控制用户如何登录到您的应用。",
    "Control how your claude.ai/code sessions are shared.": "控制如何共享您的 claude.ai/code 会话。",
    "Control network access and IP allowlisting": "控制网络访问和 IP 白名单",
    "Control which connectors your team members have access to.": "控制您的团队成员有哪些连接器的访问权限。",
    "Controlled by your organization": "由你的组织控制",
    "Controls how connector tools are loaded in new conversations.": "控制在新对话中加载连接器工具的方式。",
    "Conversation": "对话",
    "Conversation not found": "对话未找到",
    "Conversation not found.": "未找到对话。",
    "Conversations": "对话",
    "Conversations follow you. Start a thought here, finish anywhere. Claude remembers where you left off.": "对话紧随其后。在这里开启思路,在任何地方完成。Claude 记得您离开的地方。",
    "Conversations from": "对话来自",
    "Convert leads into sales opportunities": "将潜在客户转化为销售机会",
    "Conway": "Conway",
    "Conway chat": "Conway 聊天",
    "Conway download sink": "Conway 下载接收器",
    "Conway wants to create a webhook for <code>{triggerWord}</code>. External services can POST to the resulting URL to trigger the agent.": "Conway 想要为 <code>{triggerWord}</code> 创建 webhook。外部服务可以 POST 到生成的 URL 以触发代理。",
    "Conway wants to send you a browser notification. Your browser will ask for permission first.": "Conway 想要向您发送浏览器通知。您的浏览器会先请求权限。",
    "Cook something tasty": "煮点好吃的",
    "Cookie settings": "Cookie 设置",
    "Cookies may collect information that is used to tailor ads shown to you on our website and other websites. The information might be about you, your preferences or your device.": "Cookie 可能会收集用于在我们网站和其他网站上显示为你定制的广告。这些信息可能关于你、你的偏好或你的设备。",
    "Copied": "已复制",
    "Copied as table": "已复制为表格",
    "Copied as text": "复制为文本",
    "Copied file path": "已复制文件路径",
    "Copied to clipboard": "已复制到剪贴板",
    "Copied to clipboard.": "已复制到剪贴板。",
    "Copied to project": "已复制到项目",
    "Copied to your skills. ": "已复制到您的技能。 ",
    "Copied!": "已复制!",
    "Copy": "复制",
    "Copy ACS URL": "复制 ACS URL",
    "Copy Code": "复制代码",
    "Copy Entity ID": "复制实体 ID",
    "Copy Key": "复制密钥",
    "Copy Metadata URL": "复制元数据 URL",
    "Copy SVG": "复制 SVG",
    "Copy URL": "复制 URL",
    "Copy agent": "复制智能体",
    "Copy all": "全部复制",
    "Copy all findings to clipboard": "将所有发现复制到剪贴板",
    "Copy and paste the SVG code to use them with the prompt. To change the vibe, swap them out with your own set.": "复制并粘贴 SVG 代码以在提示词中使用。要更改风格,请用自己的集合替换它们。",
    "Copy answer": "复制回答",
    "Copy as Markdown": "复制为 Markdown",
    "Copy as table": "复制为表格",
    "Copy as text": "复制为文本",
    "Copy branch name": "复制分支名称",
    "Copy bug report to your clipboard": "将错误报告复制到剪贴板",
    "Copy cd command": "复制 cd 命令",
    "Copy claude command": "复制claude命令",
    "Copy code": "复制代码",
    "Copy command": "复制命令",
    "Copy contents": "复制内容",
    "Copy curl": "复制 curl",
    "Copy curl command": "复制 curl 命令",
    "Copy debug info": "复制调试信息",
    "Copy debug information": "复制调试信息",
    "Copy endpoint": "复制端点",
    "Copy error": "复制错误",
    "Copy error message": "复制错误消息",
    "Copy file contents": "复制文件内容",
    "Copy file path": "复制文件路径",
    "Copy filename": "复制文件名",
    "Copy finding": "复制发现",
    "Copy finding details to clipboard": "将发现详情复制到剪贴板",
    "Copy fire URL": "复制 fire URL",
    "Copy guide content": "复制指南内容",
    "Copy hostnames": "复制主机名",
    "Copy image": "复制图片",
    "Copy installation command": "复制安装命令",
    "Copy invite": "复制邀请",
    "Copy invite link": "复制邀请链接",
    "Copy key to clipboard": "将密钥复制到剪贴板",
    "Copy link": "复制链接",
    "Copy message": "复制消息",
    "Copy npm install command": "复制 npm install 命令",
    "Copy of {name}": "{name} 的副本",
    "Copy options": "复制选项",
    "Copy path": "复制路径",
    "Copy plan": "复制计划",
    "Copy prompt": "复制提示词",
    "Copy reference ID": "复制参考 ID",
    "Copy relative path": "复制相对路径",
    "Copy remix link": "复制 Remix 链接",
    "Copy report for IT": "复制报告给 IT",
    "Copy repository name {name}": "复制存储库名称 {name}",
    "Copy secret to clipboard": "复制密钥到剪贴板",
    "Copy server URL": "复制服务器 URL",
    "Copy session ID": "复制会话 ID",
    "Copy settings from Cowork": "从 Cowork 复制设置",
    "Copy signing secret to clipboard": "复制签名密钥到剪贴板",
    "Copy skill": "复制技能",
    "Copy this key now. You won't be able to see it again.": "立即复制此密钥。您将无法再次看到它。",
    "Copy this prompt into a chat with your other AI provider": "将此提示词复制到您的其他 AI 提供商聊天中",
    "Copy this secret now — it won’t be shown again. Use it to verify the <code>X-Webhook-Signature</code> header on incoming requests.": "现在复制此密钥,之后将不会再次显示。用它验证传入请求中的 <code>X-Webhook-Signature</code> 标头。",
    "Copy this secret now — you won't be able to see it again after closing this dialog.": "现在复制此密钥,关闭此对话框后你将无法再次查看。",
    "Copy this token now — it won't be shown again. Use it as the Bearer credential.": "现在复制此令牌,它不会再次显示。请将其用作 Bearer 凭据。",
    "Copy this token now — it won't be shown again. Use it to fire this routine via POST.": "现在复制此令牌,之后将不会再次显示。用它通过 POST 触发此例程。",
    "Copy this token now.": "立即复制此令牌。",
    "Copy to clipboard": "复制到剪贴板",
    "Copy to project": "复制到项目",
    "Copy to your skills": "复制到您的技能",
    "Copy token": "复制令牌",
    "Copy token to clipboard": "复制令牌到剪贴板",
    "Copy unmodified message": "复制未经修改的消息",
    "Copy verification code": "复制验证码",
    "Copy webhook URL": "复制 Webhook URL",
    "Copy your link and send it off. You'll also get a confirmation at {email}.": "复制您的链接并发送。您也会在 {email} 收到一份确认。",
    "Copy {file}": "复制 {file}",
    "Copy/paste many emails to save time": "复制/粘贴多封邮件以节省时间",
    "Copyright infringement": "侵犯版权",
    "Correct": "正确",
    "Cost": "成本",
    "Cost change": "费用变动",
    "Could not accept the invitation. You can try again.": "无法接受邀请。您可以重试。",
    "Could not access this directory.": "无法访问此目录。",
    "Could not archive": "无法归档",
    "Could not capture screen": "无法捕获屏幕",
    "Could not capture screen.": "无法截取屏幕。",
    "Could not check deployment terms. Please try again.": "无法检查部署条款。请重试。",
    "Could not check session readiness.": "无法检查会话就绪状态。",
    "Could not complete checkout. Check your details and try again.": "无法完成结账。请检查你的信息后重试。",
    "Could not connect to the marketplace host. Check the URL and your network connection.": "无法连接到市场主机。请检查 URL 和您的网络连接。",
    "Could not connect to the marketplace. Check the URL and your network connection.": "无法连接到市场。请检查URL和网络连接。",
    "Could not continue session on the web.": "无法在网页端继续会话。",
    "Could not create pull request. You can try again.": "无法创建 Pull Request。您可以重试。",
    "Could not delete": "无法删除",
    "Could not enable PR auto-fix. You can turn it on from the PR card.": "无法启用 PR 自动修复。你可以在 PR 卡片中开启它。",
    "Could not find this URL": "找不到此 URL",
    "Could not load cloud sessions.": "无法加载云端会话。",
    "Could not load deployment terms. Please refresh.": "无法加载部署条款。请刷新。",
    "Could not load file preview": "无法加载文件预览",
    "Could not load files.": "无法加载文件。",
    "Could not load history.": "无法加载历史记录。",
    "Could not load local sessions.": "无法加载本地会话。",
    "Could not load repositories.": "无法加载仓库。",
    "Could not load skill files": "无法加载技能文件",
    "Could not load. Try again.": "无法加载。请重试。",
    "Could not push branch to remote. You can try again.": "无法推送分支到远程。您可以重试。",
    "Could not record acceptance. Please try again.": "无法记录接受状态。请重试。",
    "Could not revoke share. You can try again.": "无法撤销共享。您可以重试。",
    "Could not run validation.": "无法运行验证。",
    "Could not save PR description.": "无法保存 PR 描述。",
    "Could not share this session. You can try again.": "无法共享此会话。您可以重试。",
    "Could not test connection. Check your configuration and try again.": "无法测试连接。请检查配置并重试。",
    "Could not update PR autofix setting. You can try again.": "更新 PR 自动修复设置失败。您可以重试。",
    "Could not update auto-merge setting. You can try again.": "无法更新自动合并设置。您可以重试。",
    "Couldn''t send feedback. Please try again.": "无法发送反馈。请重试。",
    "Couldn''t send feedback{detail}. Please try again.": "无法发送反馈{detail}。请重试。",
    "Couldn't add this chat to a project. You can try again.": "无法将此聊天添加到项目。你可以重试。",
    "Couldn't add {count, plural, one {# folder} other {# folders}} to this session": "无法将 {count, plural, one {# 个文件夹} other {# 个文件夹}} 添加到此会话",
    "Couldn't apply the discount. Give it another try, or contact support if this persists.": "无法应用折扣。请再试一次,如果问题仍然存在,请联系支持部门。",
    "Couldn't authorize — open the main Conway tab, or the container may have been replaced.": "无法授权 — 请打开主 Conway 标签页,或容器可能已被替换。",
    "Couldn't check workspace trust for this folder. You can try again.": "无法检查此文件夹的工作区信任状态。您可以重试。",
    "Couldn't complete your purchase. Try again in a moment.": "无法完成购买。请稍后重试。",
    "Couldn't connect": "无法连接",
    "Couldn't connect to the screen share.": "无法连接到屏幕共享。",
    "Couldn't copy image.": "无法复制图片。",
    "Couldn't copy to the clipboard.": "无法复制到剪贴板。",
    "Couldn't create the fix session. You can try again.": "无法创建修复会话。您可以重试。",
    "Couldn't deny the request. Close this tab — no access was granted.": "无法拒绝该请求。关闭此标签页,未授予任何访问权限。",
    "Couldn't dismiss request. You can try again.": "无法忽略该请求。你可以重试。",
    "Couldn't export the configuration profile.": "无法导出配置文件。",
    "Couldn't fetch your organization's configuration. Open Setup to see details and sign in.": "无法获取你组织的配置。打开 Setup 查看详情并登录。",
    "Couldn't find plugin \"{pluginName}\". Browse available plugins below.": "未找到插件 \"{pluginName}\"。在下方浏览可用插件。",
    "Couldn't find the original skill to update.": "找不到要更新的原始技能。",
    "Couldn't fork this session.": "无法分叉此会话。",
    "Couldn't generate secret. You can try again.": "无法生成密钥。你可以重试。",
    "Couldn't generate signing secret. You can try again.": "无法生成签名密钥。您可以重试。",
    "Couldn't generate summary — click to retry": "无法生成总结 — 点击重试",
    "Couldn't install {count, plural, one {# skill} other {# skills}}. You can add them from Settings → Skills.": "无法安装 {count, plural, one {# 个技能} other {# 个技能}}。你可以从“设置 → 技能”中添加它们。",
    "Couldn't launch the code session. You can try again.": "无法启动代码会话。请重试。",
    "Couldn't load Claude Security configuration": "无法加载 Claude Security 配置",
    "Couldn't load configuration": "无法加载配置",
    "Couldn't load older messages.": "无法加载历史消息。",
    "Couldn't load plugin page: {error}": "无法加载插件页面:{error}",
    "Couldn't load preview — download to view.": "无法加载预览 —— 请下载后查看。",
    "Couldn't load the guide": "无法加载指南",
    "Couldn't load this session.": "无法加载此会话。",
    "Couldn't load workspaces.": "无法加载工作区。",
    "Couldn't load your organizations. Check your connection and try again.": "无法加载您的组织。请检查连接并重试。",
    "Couldn't open that folder. Check the path and try again.": "无法打开该文件夹。请检查路径后重试。",
    "Couldn't prepare the connection. Check the hostname and try again.": "无法准备连接。请检查主机名并重试。",
    "Couldn't preview this change. Adjust the seat counts and try again.": "无法预览此变更。请调整席位数量后重试。",
    "Couldn't preview this change: {reason}": "无法预览此更改:{reason}",
    "Couldn't process scan results. You can try again.": "无法处理扫描结果。您可以重试。",
    "Couldn't reach the Conway shell — check your connection and reload.": "无法访问 Conway shell — 请检查您的连接并重新加载。",
    "Couldn't reach your GitHub Enterprise instance. Check that it's running and reachable.": "无法连接到你的 GitHub Enterprise 实例。请检查它是否正在运行且可访问。",
    "Couldn't reach {serverName}. You can check the server URL and verify the server is running.": "无法连接到 {serverName}。您可以检查服务器 URL 并验证服务器是否正在运行。",
    "Couldn't read this folder.": "无法读取此文件夹。",
    "Couldn't reload tools from the server.": "无法从服务器重新加载工具。",
    "Couldn't reserve that name. Try again.": "无法保留该名称。请重试。",
    "Couldn't restore the previous session": "无法恢复上一会话",
    "Couldn't save CLI permission restriction.": "无法保存 CLI 权限限制。",
    "Couldn't save channel settings. You can try again.": "无法保存通道设置。您可以重试。",
    "Couldn't save default permission. Try again.": "无法保存默认权限。请重试。",
    "Couldn't save image.": "无法保存图片。",
    "Couldn't save permission. Try again.": "无法保存权限。请重试。",
    "Couldn't save this skill. Please try again.": "无法保存此技能。请重试。",
    "Couldn't save tool permission restriction. Your change was reverted.": "无法保存工具权限限制。您的更改已还原。",
    "Couldn't save workspace trust for this folder. You can try again.": "无法保存此文件夹的工作区信任设置。您可以重试。",
    "Couldn't save your feature selections. Your credits were added — you can retry.": "无法保存你的功能选择。额度已添加,你可以重试。",
    "Couldn't send invite to {email}.": "无法向 {email} 发送邀请。",
    "Couldn't send the code. Try again in a moment.": "无法发送代码。请稍后再试。",
    "Couldn't send the sign-in link. You can try again.": "无法发送登录链接。您可以重试。",
    "Couldn't sign in to {provider}": "无法登录到 {provider}",
    "Couldn't start": "无法启动",
    "Couldn't start SSO. You can try again.": "无法启动 SSO。您可以重试。",
    "Couldn't start identity verification. Please try again.": "无法开始身份验证。请重试。",
    "Couldn't start sign-in. Please try again.": "无法开始登录。请重试。",
    "Couldn't start that chat. You can try again.": "无法启动该对话。您可以重试。",
    "Couldn't start that task. You can try again.": "无法启动该任务。你可以重试。",
    "Couldn't start the code session.": "无法启动代码会话。",
    "Couldn't start the scan session. You can try again.": "无法启动扫描会话。您可以重试。",
    "Couldn't stop the response. You can try again.": "无法停止响应。您可以重试。",
    "Couldn't turn on memory. You can enable it from Settings → Memory.": "无法开启记忆。你可以在“设置 → 记忆”中启用它。",
    "Couldn't update memory setting. Please try again.": "无法更新记忆设置。请重试。",
    "Couldn't update memory style. Please try again.": "无法更新记忆样式。请重试。",
    "Couldn't update saved configurations": "无法更新已保存的配置",
    "Couldn't update team memory setting. You can try again.": "无法更新团队记忆设置。您可以重试。",
    "Couldn't update the remix setting.": "无法更新 remix 设置。",
    "Couldn't update the working tree.": "无法更新工作树。",
    "Couldn't upload the image. Please try again.": "无法上传图像。请重试。",
    "Couldn't verify eligibility": "无法验证资格/条件",
    "Couldn't verify eligibility. You can try again.": "无法验证资格。您可以重试。",
    "Couldn't verify this session is ready to continue in the cloud.": "无法验证此会话是否已准备好在云端继续。",
    "Couldn’t connect": "无法连接",
    "Couldn’t delete this memory. Please try again.": "无法删除这条记忆。请重试。",
    "Couldn’t load webhooks for this project.": "无法加载此项目的 webhook。",
    "Couldn’t save CLI permission restriction.": "无法保存 CLI 权限限制。",
    "Couldn’t save that change": "无法保存该更改",
    "Couldn’t save your role. You can continue anyway.": "无法保存您的角色信息。您仍可以继续操作。",
    "Couldn’t update that setting": "无法更新该设置",
    "Counted as 30 days": "计为30天",
    "Country": "国家/地区",
    "Coupon applied. {percentOff}% off Max 20x for {durationInMonths, plural, one {# month} other {# months}}.": "优惠券已应用。Max 20x 享受 {percentOff}% 折扣,有效期为 {durationInMonths, plural, one {# 个月} other {# 个月}}。",
    "Courses": "课程",
    "Court order": "法院命令",
    "Cowork": "Cowork",
    "Cowork Checklist": "Cowork 检查清单",
    "Cowork Trial": "协作试用",
    "Cowork can be usage intensive. For the best experience, consider <link>upgrading to Max</link>.": "Cowork 可能会消耗大量用量。为了获得最佳体验,请考虑 <link>升级到 Max</link>。",
    "Cowork can be usage intensive. For the best experience, consider <link>upgrading</link>.": "协作功能可能会消耗较多用量。为获得最佳体验,请考虑<link>升级</link>。",
    "Cowork can be usage intensive. For the best experience, consider {upgradeToMax}.": "Cowork 可能会消耗较多用量。为了获得最佳体验,请考虑 {upgradeToMax}。",
    "Cowork illustration": "协作插画",
    "Cowork instructions": "Cowork 说明",
    "Cowork is an early research preview. New improvements ship frequently. {learnMore} or {giveFeedback}.": "Cowork 处于早期研究预览阶段。新改进频繁发布。<a>了解更多</a>或<a>提供反馈</a>。",
    "Cowork is an early research preview. New improvements ship frequently. {learnMore}.": "Cowork 是早期研究预览版。新改进会频繁发布。{learnMore}。",
    "Cowork is available in the Claude desktop app.": "Claude 桌面应用中可使用 Cowork。",
    "Cowork is currently disabled for your organization but you can still preemptively set or clear monitoring settings.": "Cowork 目前已被您的组织禁用,但您仍可以预先设置或清除监控设置。",
    "Cowork is generally available. Your network egress settings apply to all sessions.": "Cowork 已正式可用。你的网络出口设置适用于所有会话。",
    "Cowork is in research preview. {learnSafely}": "Cowork 处于研究预览阶段。{learnSafely}",
    "Cowork is in research preview. {learnSafely} or {giveFeedback}.": "Cowork 处于研究预览阶段。{learnSafely} 或 {giveFeedback}。",
    "Cowork is in research preview. {learnSafely}.": "Cowork 处于研究预览阶段。请{learnSafely}。",
    "Cowork is included in your plan with limited usage. <link>Learn how to use it safely</link>.": "你的套餐包含协作功能,但使用量有限。<link>了解如何安全使用</link>。",
    "Cowork is on by default on 5/11": "Cowork 将于 5/11 默认开启",
    "Cowork is powered by the desktop app": "Cowork 由桌面应用驱动",
    "Cowork isn't available on this platform.": "Cowork 在此平台上不可用。",
    "Cowork isn't enabled for your organization": "您的组织未启用 Cowork 功能",
    "Cowork isn’t enabled for your organization": "您的组织未启用 Cowork",
    "Cowork lives in the desktop app": "协同工作位于桌面应用中",
    "Cowork memory": "协作记忆",
    "Cowork must be enabled by an organization owner to use plugins.": "必须由组织所有者启用 Cowork 才能使用插件。",
    "Cowork must be enabled to use plugins.": "必须启用 Cowork 才能使用插件。",
    "Cowork on Windows requires a machine with x64 support. Windows on Arm based machines are not currently supported. (Coming Soon)": "Windows 版 Cowork 需要支持 x64 的机器。目前尚不支持基于 Arm 的 Windows 机器(即将推出)。",
    "Cowork only": "仅 Cowork",
    "Cowork requires Claude Desktop to be installed via a modern installer": "Cowork 需要通过新版安装程序安装 Claude Desktop",
    "Cowork requires Windows 10 build 2004 or later. Update your operating system to use this feature.": "Cowork 需要 Windows 10 版本 2004 或更高版本。更新您的操作系统以使用此功能。",
    "Cowork requires a Mac with Apple Silicon (M1 or later). Intel-based Macs are not currently supported.": "Cowork 需要配备 Apple 芯片 (M1 或更高版本) 的 Mac。目前不支持基于 Intel 的 Mac。",
    "Cowork requires macOS 14.0 (Sonoma) or later. Update your operating system to use this feature.": "Cowork 需要 macOS 14.0 (Sonoma) 或更高版本。请更新您的操作系统以使用此功能。",
    "Cowork requires virtualization. Your Mac does not support virtualization. If you are currently running macOS inside a virtual machine (like Parallels), you might need to enable a feature called 'nested virtualization'.": "Cowork 需要虚拟化。您的 Mac 不支持虚拟化。如果您在虚拟机(如 Parallels)中运行 macOS,可能需要启用名为 '嵌套虚拟化' 的功能。",
    "Cowork runs in the Claude Desktop app. Deploy it centrally through your device management tool to manage installations and updates in one place.": "Cowork 运行在 Claude 桌面应用中。请通过设备管理工具集中部署,以便统一管理安装和更新。",
    "Cowork settings": "Cowork 设置",
    "Cowork settings updated.": "Cowork 设置已更新。",
    "Cowork spotlight illustration": "协作亮点插画",
    "Cowork supports OpenTelemetry (OTel) events for monitoring and observability. Cowork reuses <docsLink>Claude Code's OTel events schema</docsLink> via the Claude Agent SDK. <learnMoreLink>Learn more</learnMoreLink>": "Cowork 支持 OpenTelemetry (OTel) 事件用于监控和可观测性。Cowork 通过 Claude Agent SDK 复用 <docsLink>Claude Code 的 OTel 事件方案</docsLink>。<learnMoreLink>了解更多</learnMoreLink>",
    "Cowork tasks": "Cowork 任务",
    "Cowork uses connectors to browse websites, manage tasks, and more.": "Cowork 利用连接器来浏览网站、管理任务等。",
    "Cowork will be enabled for all users in your org. Opt out in Settings. <a>Learn more</a>": "Cowork 将为组织内的所有用户启用。可在设置中退出。<a>了解更多</a>",
    "Cowork will be turned on for all users in your org on 5/11.": "Cowork 将于 5/11 为您组织中的所有用户启用。",
    "Cowork will be turned on for your org by default on 5/11. Review settings before then.": "Cowork 将于 5 月 11 日默认在您的组织中开启。请在此之前查看设置。",
    "Cowork will be turned on for your organization on May 11. You can opt out anytime in Settings.": "Cowork 将于 5 月 11 日在您的组织中启用。您可以随时在设置中退出。",
    "Cowork won't be turned on for your organization on May 11. You can change this anytime in Settings.": "协作功能不会在 5 月 11 日为您的组织启用。您可以随时在设置中更改此设置。",
    "Coworking on the go": "随时随地与 Claude 协作",
    "Crack a client case": "攻克客户案例",
    "Craft a manifesto that captures the essence of my boldest ideas": "制定一份宣言,体现我最大胆想法的本质",
    "Craft something that reads differently depending on the reader’s mood": "创作一些根据读者心情不同而不同解读的内容",
    "Crash report filenames": "崩溃报告文件名",
    "Crash reports and error diagnostics, so we can fix bugs": "崩溃报告和错误诊断,帮助我们修复 bug",
    "Create": "创建",
    "Create & edit styles": "创建并编辑样式",
    "Create & finish": "创建并完成",
    "Create API documentation": "创建 API 文档",
    "Create API keys for automated services and integrations. Usage is billed separately from users.": "为驱动自动化服务和集成创建 API 密钥。用量费用与用户席位分别计费。",
    "Create FAQ resources": "创建 FAQ 资源",
    "Create GIF": "创建 GIF",
    "Create GitHub issue": "创建 GitHub issue",
    "Create PR": "创建 PR",
    "Create Projects and add knowledge so that you can deliver expert-level results with the Claude Pro, Team and Enterprise plans.": "使用 Claude Pro、Team 和 Enterprise 方案,通过创建项目并添加知识来交付专家级成果。",
    "Create Pull Request": "创建 Pull Request",
    "Create SCIM access key": "创建 SCIM 访问密钥",
    "Create Team account": "创建 Team 方案账号",
    "Create Your Team": "创建您的团队",
    "Create a 2D physics-based soccer game called “Slime Soccer” with these key features:\n- Two semicircle slimes (cyan left, red right) on a blue field with gray ground\n- Ball physics: gravity, bouncing, grabbable with rotational control\n- Controls: Arrow keys (move/jump/grab) for human, AI opponent for single-player\n- Goals with nets on both sides, timer-based matches (1-8 minutes)\n- Anti-camping: penalize players who stay in their own goal too long\n- Game modes: single-player vs AI, local multiplayer\n- Visual style: retro arcade with clean animations and proper collision detection\nThe slimes should feel bouncy and responsive, the ball should have realistic physics when kicked or grabbed, and the AI should be challenging but fair. Include a menu system for game duration selection.": "创建一个名为“Slime Soccer”的 2D 物理足球游戏,具有以下主要功能:\n- 蓝色的球场上有两个半圆形粘液怪(左青右红),地面为灰色\n- 足球物理:受重力影响、会反弹、可以抓取并进行旋转控制\n- 控制:方向键(移动/跳跃/抓取)供玩家使用,单人模式下包含 AI 对手\n- 两侧都有带网的球门,计时的比赛(1-8 分钟)\n- 反消极比赛:惩罚在自己球门待太长时间的玩家\n- 游戏模式:单人 vs AI,本地多人对战\n- 视觉风格:复古街机风格,平滑动画和精确的碰撞检测\n粘液怪应该感觉既有弹性反应又灵敏,足球在踢飞或抓取时应表现出真实的物理效果,AI 应该具有挑战性但公平。包含一个用于选择比赛时长的菜单系统。",
    "Create a 3D artifact that allows me to explore a beautiful forest.": "创建一个 3D 构件,让我可以探索一片美丽的森林。",
    "Create a <link>fine-grained personal access token</link> with repository access to use private repositories.": "请创建一个具有仓库访问权限的 <link>细粒度个人访问令牌(Personal Access Token)</link>,以便使用私有仓库。",
    "Create a GitHub App on your GHE instance for webhooks and app-level operations.": "在您的 GHE 实例上为 webhook 和应用级操作创建一个 GitHub App。",
    "Create a PR": "创建 PR",
    "Create a React app called Coding Coach. This app teaches people how to become better programmers. They upload a file of code they’ve written it makes a call to the Claude API to evaluate the code and gives them an overall score out of 100 along with a set of suggestions on how to make the code better from a production readiness and maintainability perspective.\nIn evaluating code you should use the following guidelines and principles:\n1) Descriptive names - Use descriptive names for classes, functions, and variables\n2) Function size - Functions should be focused. Try and avoid functions that are 200+ lines long. But also avoid small functions ‘<5 lines of code if the function is only called once (unless it is a public function that is part of a class)\n3) Make dependencies explicit - Avoid global state and hidden dependencies.\n4) Error handling - Generally try to avoid blanket swallowing all errors with empty try/catch blocks.\n5) Avoid too many levels of nesting of control structures/blocks. More than 2-3 levels is hard to follow\n6) Make side effects obvious\n7) Avoid magic numbers\nThe aesthetic of this app should be dark mode. Use dark greys for background, blue for buttons.": "创建一个名为 Coding Coach 的 React 应用。该应用教人们如何成为更好的程序员。他们上传一个他们编写的代码文件,该应用调用 Claude API 来评估代码,并给出一个满分 100 的总体评分,以及一系列关于如何从生产就绪性和可维护性角度改进代码的建议。\n在评估代码时,您应使用以下指导原则和原则:\n1) 描述性名称 - 为类、函数和变量使用描述性名称\n2) 函数大小 - 函数应专注。尽量避免长度超过 200 行的函数。但也避免过小的函数(少于 5 行代码),如果该函数仅被调用一次(除非它是类的公共函数)\n3) 使依赖关系明确 - 避免全局状态和隐藏的依赖关系。\n4) 错误处理 - 通常尽量避免使用空的 try/catch 块来吞掉所有错误。\n5) 避免控制结构/块嵌套层数过多。超过 2-3 层就难以理解。\n6) 使副作用明显。\n7) 避免魔术数字。\n该应用的美学风格应为暗色模式。使用深灰色作为背景,蓝色作为按钮颜色。",
    "Create a React app called “Meeting notes summary” that helps professionals convert raw meeting notes into structured summaries. The user should be able to paste raw meeting notes/transcripts into a large text area for and click on a *A “Summarize” *button to process the notes use Claude API. Make sure the summary is nicely formatted and easy to read. Use a background color of #C4DDAB, #374528 as the primary color, and inter as the font.": "创建一个名为“Meeting notes summary”的 React 构件,帮助专业人士将原始的会议笔记转换为结构化的摘要。用户需能将原始会议笔记/笔录粘贴至大文本框内,随后点击“Summarize”按钮调用 Claude API 处理笔记。请确保摘要格式工整且易于阅读。使用 #C4DDAB 作为背景底色,#374528 作为主题色,并选用 Inter 字体。",
    "Create a React app that transforms raw notes into professional formatted output. Key features:\n* Note type selector with Interview Notes and Meeting Notes (displayed side by side)\n* Context fields for each note type (4 fields each like position, interviewer, date, duration)\n* Raw notes input textarea\n* Final use case selector that adapts to note type: Interview Notes gets Evaluation Scorecard/Slack Update/Email Summary; Meeting Notes gets Google Doc/Slack Update/Email Summary\n* Use Claude API to transform notes, expanding abbreviations like ‘q’ → ‘questions’ while staying true to the original content\n* 2-column layout with input on left, output on right\n* Copy functionality and sample data loading\n* Clean, modern design": "创建一个 React 应用,将原始笔记转换为专业的格式化输出。关键功能:\n* 面板并排显示“面试笔记”和“会议笔记”选择器\n* 每种笔记类型的背景信息字段(各 4 个字段,如职位、面试官、日期、时长)\n* 原始笔记输入文本域\n* 根据笔记类型调整的最终用例选择器:“面试笔记”对应“评估记分卡/Slack 更新/邮件摘要”;“会议笔记”对应“Google 文档/Slack 更新/邮件摘要”\n* 使用 Claude API 转换笔记,在忠于原内容的同时展开简写(如 ‘q’ → ‘questions’)\n* 左侧输入、右侧输出的双栏布局\n* 复制功能和示例数据加载\n* 简洁现代的设计",
    "Create a React app titled “CodeVerter” that allows users to convert code from one programming language to another. The app has the following requirements:\n1) Left side is the user inputted code. The right side shows the code translated into the selected language\n2) For both the left and right sides have a dropdown where the user can select from the top 25 major programming languages (ex: Python, Swift, Kotlin, PHP, etc). The dropdown should support typing in a language name which will do a case insensitive search of the list of languages to autocomplete\n3) To translate the code, when a user clicks “Convert Code” it will make a call to Claude to rewrite the code the user entered in the left pane into the coding language selected in the right pane and output the translated code in the right pane.": "创建一个名为 “CodeVerter” 的 React 应用,允许用户在不同编程语言之间转换代码。要求如下:\n1) 左侧是用户输入的代码,右侧显示翻译成所选语言后的代码\n2) 左右两侧都有下拉列表,用户可以从排名前 25 的主要编程语言中进行选择(如:Python, Swift, Kotlin, PHP 等)。下拉列表应支持输入语言名称,进行不区分大小写的搜索并自动补全\n3) 为了翻译代码,当用户点击“转换代码”时,将调用 Claude 将用户左窗格输入的代码重写为右窗格选中的语言,并在右窗格输出翻译后的代码。",
    "Create a React artifact called Project Status Finder that uses the Slack MCP to search for project information across Slack channels. The artifact should have: (1) A text input for the project description, (2) Dynamic channel input fields where users can add/remove Slack channel names, (3) A Save Group feature that lets users save their channel list with a tag name using persistent storage (keys: channel_group:{sanitized_name}, sanitize by replacing spaces/quotes/slashes with underscores), and a dropdown to load saved groups, (4) A Find Project Status button that searches all channels in a single API call to https://api.anthropic.com/v1/messages using the Slack MCP server. The prompt should ask Claude to search each specified channel and return a markdown-formatted response with three sections: Current Status (brief project status), Key People (comma-separated names in bold), and Project Timeline (key dates and milestones). Show a loading state with a spinner while searching, then display results in a card with proper markdown rendering (headers, bold, italic, code blocks). Use a gradient indigo-to-purple background, white cards with shadows, and Tailwind CSS styling with lucide-react icons (Search, Plus, X, Tag, Save, Loader2).": "创建一个名为 Project Status Finder 的 React 构件,其利用 Slack MCP 在 Slack 频道中检索项目信息。该构件应具备以下功能:(1) 一个用于输入项目描述的文本框;(2) 动态频道输入字段,用户可在此添加/删除 Slack 频道名称;(3) 保存分组(Save Group)功能,让用户能利用持久存储保存频道列表及标签名(键名为 channel_group:{sanitized_name},通过将空格、引号、斜杠替换为下划线来处理名称),并提供一个下拉菜单加载保存的分组;(4) “Find Project Status”按钮,通过单次 API 调用使用 Slack MCP 服务检索所有频道。提示词应要求 Claude 检索各个指定的频道,并返回包含三个部分的 Markdown 格式回复:Current Status(简要项目状态)、Key People(加粗并以逗号分隔的姓名)以及 Project Timeline(关键日期与里程碑)。检索过程中需展示带有旋转图标的加载状态,随后在渲染良好的卡片中展示 Markdown 结果(标题、粗体、斜体、代码块)。设计要求:蓝紫色渐变背景、带阴影的白色卡片,使用 Tailwind CSS 以及包含 Search、Plus、X、Tag、Save、Loader2 等图标在内的 lucide-react 组件库。",
    "Create a Three.js Anthropic researcher simulator. Make it so that the user can walk around the Anthropic office and interact with Anthropic co-founders such as Dario Amodei, Jared Kaplan, and the others. Make it powered by the Claude API to create generative content. Allow users to move around with WASD, and use the left and right arrow keys to look left and right respectively. Allow users to be able to talk to the cofounders, and make it funny but informative.": "使用 Three.js 做一个 Anthropic 研究员模拟器。让用户可以在 Anthropic 办公室里走动,并与联合创始人(如 Dario Amodei, Jared Kaplan 等)互动。让其由 Claude API 提供动力来生成各种内容。允许用户通过 WASD 键移动,并使用左右方向键分别左右环顾。允许用户能与联合创始人交谈,并让它有趣且具有信息量。",
    "Create a business model canvas that breaks every conventional rule": "创建一个打破所有常规规则的商业模式画布",
    "Create a career project": "创建职业发展项目",
    "Create a code review checklist for my team": "为我的团队创建一个代码审查清单",
    "Create a coding Easter egg that would make my team smile": "创建一个让我的团队微笑的编程彩蛋",
    "Create a color contrast checker app. It should have two color input fields (text color and background color), calculate the WCAG contrast ratio in real-time, display the numerical result with accessibility ratings (AA/AAA compliance), and show a live preview of the color combination. Include visual feedback like star ratings and color-coded results to indicate contrast quality.": "创建一个颜色对比度检查应用。它应具有两个颜色输入字段(文本颜色和背景颜色),实时计算 WCAG 对比度,显示带有无障碍等级(AA/AAA 合规性)的数值结果,并显示颜色组合的实时预览。包含星级评分和颜色编码结果等视觉反馈,以指示对比度质量。",
    "Create a competitive analysis deck": "创建一份竞争分析演示文稿",
    "Create a connecting four dots game called “Join Dots” with the following features: Core Game Mechanics: Standard join dots rules: 6 rows × 7 columns grid Two players: Human (red) vs AI Claude (yellow) Win by connecting 4 pieces in a row (horizontal, vertical, or diagonal) Pieces drop with smooth animation when placed Show the last move with a ring highlight Highlight winning pieces with a pulsing animation AI Integration: Use window.claude.complete to power the AI opponent Three difficulty levels: Easy: Play casually, sometimes make random moves, don’t always block wins Medium: Play well but occasionally miss opportunities Hard: Play strategically - always block wins, create opportunities, think ahead Show Claude’s thinking process in a side panel Format the board state for Claude using ASCII representation AI should analyze: immediate wins, blocking opponent, future opportunities UI/UX Design: Modern, dark theme with gradient backgrounds Animated background with floating gradient orbs (purple, blue, pink) Glassmorphism effects on panels Smooth hover effects showing where pieces will drop Color scheme: Background: Dark blue/slate gradients Red player: Red/pink gradients with glow effects Yellow player: Yellow/orange gradients with glow effects Responsive layout with game board on left, AI thinking panel on right Game Flow: Start with difficulty selection screen Show current player’s turn with colored indicator Display win/draw messages with play again button Smooth piece drop animations with increasing speed Loading state while AI is thinking Technical Requirements: Use React with hooks (useState, useEffect, useRef) Tailwind CSS for styling Handle all game logic client-side Prevent moves during animations Clear board detection for draws Track AI move history with round numbers Make it visually stunning with smooth animations, glowing effects, and a premium feel. The UI should feel modern and engaging with subtle animations throughout.": "创建一个名为 “Join Dots” 的四子棋游戏,具备以下功能: 核心游戏机制: 标准四子棋规则:6 行 × 7 列网格 两位玩家:人类(红色)对阵 AI Claude(黄色) 连成四个子(横、竖或斜向)即获胜 棋子落下时有平滑动画 显示最后落子位置的高亮光圈 获胜棋子有脉冲动画效果。 AI 集成: 使用 window.claude.complete 强力驱动 AI 对手 三种难度级别: 简单:偶尔会随机走棋,不一定会堵截获胜路径 中等:水平较好,但偶尔会错过机会 困难:策略性极强——始终堵截对手获胜,创造机会,未雨绸缪 在侧边面板显示 Claude 的思考过程 为 Claude 将棋盘状态格式化为 ASCII 表示。 AI 应当分析:即时获胜、拦截对手、未来机会。 UI/UX 设计: 现代感的深色主题,带有渐变背景 带有浮动渐变球体(紫色、蓝色、粉色)的动画背景 面板具有玻璃拟态 (Glassmorphism) 效果 平滑的悬停效果,显示棋子将落下的位置。 配色方案: 背景:深蓝色/板岩色渐变 红色玩家:红/粉渐变,带发光效果 黄色玩家:黄/橙渐变,带发光效果 响应式布局:左侧棋盘,右侧 AI 思考面板。 游戏流程: 从难度选择屏幕开始 显示当前轮到哪位玩家(带彩色指示器) 显示胜/负/平局消息及重新开始按钮 平滑的落子动画,速度递增 AI 思考时显示加载状态 技术要求: 使用 React 自带 Hook (useState, useEffect, useRef) 使用 Tailwind CSS 进行样式设计 在客户端处理所有游戏逻辑 平滑的背景动画 自动平局检测 追踪带回合编号的 AI 移动历史 使其在视觉上非常惊艳,平滑动画,发光效果,具有高级感。UI 应当感觉现代且吸引人,贯穿全程都有微妙的动画效果。",
    "Create a content strategy": "创建一个内容策略",
    "Create a conversation with the onboarding first-chat empty state (greeting, prompt chips, persistent header).": "创建一个带有入职首次聊天空状态(欢迎语、提示磁贴、持久页眉)的对话。",
    "Create a curriculum inspired by my favorite cultural movement": "根据我喜爱的文化运动创建一套课程",
    "Create a custom limit": "创建一个自定义限额",
    "Create a daily briefing": "制作每日简报",
    "Create a design or mockup": "创建设计或模型",
    "Create a diplomatic response to my most challenging recent email thread": "针对我近期最具挑战性的邮件主题起草一份外交式的回复",
    "Create a fictional scenario": "创建一个虚构场景",
    "Create a finished doc, deck, or spreadsheet": "创建完整的文档、幻灯片或电子表格",
    "Create a full screen synesthesia experience where the user can type and see an audiovisual symphony. Make the audiovisual symphony the highlight.": "打造一个全屏联觉体验,让用户输入并体验一场视听交响乐。视听交响乐应成为亮点。",
    "Create a knowledge map that reveals surprising patterns in what I know": "创建一个揭示我已知信息中奇特模式的知识地图",
    "Create a landing page": "创建着陆页",
    "Create a launch checklist": "创建发布检查清单",
    "Create a list of allowed domains for full control over Claude’s network access.": "创建一个允许域名的列表,以完全控制 Claude 的网络访问。",
    "Create a list of allowed domains.": "创建允许的域名列表。",
    "Create a live status page of what needs my attention today across my connected tools, and keep it updated.": "创建一个实时状态页面,汇总我今天在已连接工具中需要关注的事项,并保持其更新。",
    "Create a marketing strategy": "制定营销策略",
    "Create a new artifact": "创建新工件",
    "Create a new branch to open a PR.": "创建一个新分支以开启 PR。",
    "Create a new key": "创建一个新密钥",
    "Create a new organization": "创建新组织",
    "Create a new project": "创建一个新项目",
    "Create a new service key": "创建一个新的服务密钥",
    "Create a newspaper-like format to summarize the events that happened this week.": "创建类似报纸的格式来总结本周发生的事件。",
    "Create a one-page PRD outline template with sections for problem statement, goals, scope, and success metrics": "创建一个单页 PRD 大纲模板,包含问题陈述、目标、范围和成功指标等部分",
    "Create a personal account to try Claude while your admin reviews your request.": "创建个人账户以便在管理员审核您的请求时试用 Claude",
    "Create a personal budget": "制定个人预算",
    "Create a personal development plan": "制定个人发展计划",
    "Create a personal project": "创建个人项目",
    "Create a piece that blends two completely different writing styles": "创作一篇融合了两种截然不同写作风格的文章",
    "Create a pitch deck": "创建一份推介书 (Pitch Deck)",
    "Create a plan before making changes": "在做出更改前制定计划",
    "Create a polished PowerPoint deck. Before doing anything else, ask me if I have any notes or context for the slides, or if we should make something up.": "创建一份精美的 PowerPoint 演示文稿。在执行任何其他操作前,先询问我是否有关于幻灯片的任何笔记或背景信息,或者我们是否应该虚构一些内容。",
    "Create a pool, generate a key, then point your runner deployment at it. Sessions will start landing on your infrastructure instead of Anthropic's.": "创建一个池,生成密钥,然后将您的运行器部署指向它。会话将开始落在您的基础设施上,而不是 Anthropic 的。",
    "Create a practice problem set going easiest to hardest. I'll share the subject and grade level.": "创建一套由易到难的练习题。我会提供学科和年级。",
    "Create a presentation": "创建一个演示文稿",
    "Create a project": "创建一个项目",
    "Create a project with GitHub": "使用 GitHub 创建项目",
    "Create a project with Google Drive": "使用 Google Drive 创建项目",
    "Create a project with attachments": "创建一个带有附件的项目",
    "Create a react app artifact for a QR Code Generator that creates QR codes for URLs, text, and contact info. If users create a QR code for a URL, make sure that aiming the camera at the QR code actually triggers the URL itself, rather than a Google search for the URL.": "为一个二维码生成器创建一个 React 构件,它可以为 URL、文本和联系信息生成二维码。如果用户为 URL 生成二维码,请确保用相机扫描该二维码时能直接跳转到该 URL,而不是触发关于该 URL 的 Google 搜索。",
    "Create a react app artifact that asks users a few questions and then tells them their attachment style. Make it extremely visually appealing as well. Remember, you are the world’s most talented front-end engineer, and you have a masters degree in visual design, so this should really set the bar in terms of looking and feeling beautiful. Make sure that any buttons are actually clickable and navigate to where they should go. Reduce load time between clicks, make sure that all bugs are taken care of, and double and triple check your work. It’s critical that this succeeds. Also make this fun – it should feel elegant and enjoyable to go through.": "创建一个 React 应用构件,向用户询问几个问题,然后告诉他们的依恋类型。让它在视觉上也非常吸引人。记住,你是世界上最有才华的前端工程师,并且拥有视觉设计硕士学位,所以这应该在美感和体感方面树立标杆。确保所有按钮实际上都是可以点击的,并且可以导航到该去的地方。减少点击间的加载时间,确保所有 Bug 都已处理,并进行双重和三重检查。这次任务成功至关重要。另外,让它有趣一点——整个过程应该让人感觉优雅且愉悦。",
    "Create a react app artifact that creates childrens bedtime stories based on certain user inputs. User inputs should be: * Age * Gender * Interest areas * Style (funny, serious etc.) * What lesson you are trying to teach the kid Use Claude’s public API to allow users to input answers in for these items, before creating the bedtime childrens story. Make it extremely visually appealing as well. Remember, you are the world’s most talented front-end engineer, and you have a masters degree in visual design, so this should really set the bar in terms of looking and feeling beautiful. Don’t make it gimmicky – we don’t need any spinning icons or anything like that, it needs to be sleek and balanced. Make sure that any buttons are actually clickable and navigate to where they should go. Reduce load time between clicks, make sure that all bugs are taken care of, and double and triple check your work. It’s critical that this succeeds.": "创建一个 React 构件应用,根据用户输入创作儿童睡前故事。用户输入项应包括:* 年龄 * 性别 * 兴趣领域 * 风格(有趣、严肃等)* 您想要教给孩子的道理。在创作故事前,使用 Claude 公开 API 允许用户输入这些项。同时使其在视觉上极具吸引力。记住,您是世界上最有才华的前端工程师,并且拥有视觉设计硕士学位,所以这应该在美感和质感方面树立标杆。不要做得太花哨——我们不需要任何旋转图标之类的东西,它需要简洁且平衡。确保任何按钮都是可点击的并能导航到对应位置。减少点击间的加载时间,确保处理好所有 Bug,并反复检查您的工作。成功至关重要。",
    "Create a react app artifact that is a keyboard midi player which looks like a piano keyboard that I can play with my computer keyboard too. I want the user to be able to type in their favorite songs and we can use the Claude API to parse the user’s input to map it to the existing keys. Use a white and grey color palette for the app.": "创建一个 React 应用构件,这是一个键盘 MIDI 播放器,看起来像钢琴键盘,我也可以用电脑键盘玩。我希望用户能输入他们最喜欢的歌曲,我们可以使用 Claude API 解析用户的输入,将其映射到现有的琴键上。应用使用白灰色调。",
    "Create a react app based on the following spec: PyLingo is an interactive web-based Python learning platform that teaches programming fundamentals through a gamified, hands-on coding experience. The application features a structured curriculum of 15 progressive levels, covering essential Python concepts from basic Hello World programs to advanced topics like functions, loops, and data structures. Each level presents users with a clear task, educational context, and a practical coding exercise that must be completed using the integrated dark-themed code editor that mimics professional development environments.\nThe platform provides comprehensive learning support through immediate feedback validation, detailed explanations, and contextual hints. When users submit code, the system compares their input against expected outputs and provides instant correctness assessment. Incorrect submissions display the expected solution alongside educational explanations to reinforce learning, while optional hints can be toggled on demand for additional guidance. Users can also reset their progress on any level to practice until mastery is achieved.\nStrong gamification elements drive user engagement through streak tracking (consecutive correct answers), progress visualization, and completion badges. The interface includes a header progress bar, level completion indicators, and an intuitive level selector that allows flexible navigation between unlocked levels with color-coded completion status. Built with React and Tailwind CSS, the responsive design features a clean blue and white color scheme with professional layout that balances educational functionality with visual appeal across different devices.": "根据以下规范创建一个 React 应用:PyLingo 是一个交互式 Web 版 Python 学习平台,通过游戏化的、手把手编码体验来教授编程基础。该应用包含一个由 15 个渐进关卡组成的结构化课程,涵盖了从基础的 Hello World 程序到函数、循环和数据结构等高级主题的基本 Python 概念。每个关卡都向用户展示了明确的任务、教育背景和一个必须使用集成的、模仿专业开发环境的深色主题代码编辑器完成的实际编码练习。\n该平台通过即时反馈、详细解释和上下文提示词提供全面的学习支持。当用户提交代码时,系统会将其输入与预期输出进行对比,并提供即时的正确性评估。错误的提交会显示预期方案及教育性说明以强化学习,而可选的提示词可以按需开启以获得额外指导。用户还可以重置任何关卡的进度以便练习,直到掌握为止。\n强大的游戏化元素通过连对追踪、进度可视化和完成勋章来提高用户参与度。界面包含顶部进度条、关卡完成指示灯以及直观的关卡选择器(支持灵活导航、关卡解锁及颜色标识完成状态)。该响应式设计基于 React 和 Tailwind CSS,采用清爽的蓝白配色方案和专业布局,在不同设备上都能兼顾教育功能与视觉吸引力。",
    "Create a research project": "创建一个研究项目",
    "Create a routine for a goal": "为一个目标创建一个常规流程",
    "Create a routine to run Claude on a schedule.": "创建一个按计划运行 Claude 的常规任务。",
    "Create a scheduled task to run Claude on a schedule.": "创建一个计划任务,让 Claude 定期运行。",
    "Create a shopping list, go on Chrome, and make an order": "创建一个购物清单,打开 Chrome,并下单",
    "Create a simple scrolling interactive drum machine where the user can type in what type of drum beat they want, the app makes that beat, and then the user can manually adjust the beat with the UI. Uses the Claude API to parse the user’s input and map it to a preset drum beat.": "创建一个简单的滚动交互式鼓机。用户可以输入想要哪种类型的鼓点,应用制作该鼓点,然后用户可以通过 UI 手动调整。使用 Claude API 解析用户输入并将其映射到预设的鼓点上。",
    "Create a sleek macOS-style standup randomizer app called ‘Popcorn’ with a clean, minimal single-column layout featuring separate white cards for main controls, team display, and settings. The app should randomize speaking order, show progress with a top progress bar during active sessions, and include a collapsible settings panel for team management.": "创建一个简洁的、macOS 风格的随机站会抽选应用,名为 ‘Popcorn’。采用洁净、极简的单栏布局,主控件、团队显示和设置分别在独立的白色卡片中展示。应用应支持随机分配发言顺序,在活跃会话期间显示顶部的进度条,并包含用于团队管理的折叠式设置面板。",
    "Create a space to start collaborating with your team.": "创建一个空间来开始与您的团队协作。",
    "Create a status page for GitHub pull requests waiting on my review, with age and CI status.": "为等待我审查的 GitHub 拉取请求创建一个状态页,显示等待时长和 CI 状态。",
    "Create a study guide": "创建学习指南",
    "Create a study plan": "制定学习计划",
    "Create a study project": "创建一个学习项目",
    "Create a style": "创建样式",
    "Create a style guide": "创建设计风格指南",
    "Create a support ticket": "创建支持工单",
    "Create a tasty recipe": "创建美味的食谱",
    "Create a team": "创建团队",
    "Create a trivia app in react. The user should be able to choose one or more categories, a difficulty level (easy, medium, hard) and a number of questions. The app will then use the claude API to generate questions according to the user’s specifications. The user can then play trivia, with 4 plausible options for each question. At the end they will see their score out of n. Make this app feel bold, simple, clickable, and fun like a game console game. Use one primary green color only.": "在 React 中创建一个益智问答应用。用户应该能选择一个或多个类别、难度级别(简单、中等、困难)和问题数量。应用随后将使用 Claude API 根据用户的规格生成问题。用户随后可以进行问答游戏,每个问题有 4 个合理选项。最后他们将看到自己在总数 n 中的得分。让这个应用感觉大胆、简单、可点击且像游戏机游戏一样有趣。仅使用一翠绿色作为主色调。",
    "Create a visual guide for calendar management based on my ennegram": "根据我的九型人格原理为日程管理创建一个视觉指南",
    "Create a visual language for emotions that have no names": "为莫可名状的情绪创造一种视觉语言",
    "Create a webhook for “{triggerWord}”": "为“{triggerWord}”创建一个 webhook",
    "Create a week-at-a-glance page from my calendar with a short summary for each day.": "根据我的日历创建一个一周总览页面,并为每天写一个简短摘要。",
    "Create account": "创建账户",
    "Create an AI brainstorming tool that helps teams generate planning ideas.\nThe tool should ask for context like company name, product, timeline, team goals, and what type of brainstorming session they want (product development, marketing, etc.).\nWhen they click generate, it should use Claude API to first understand the company/product, then create 6 relevant ideas based on that understanding. Show Claude’s understanding summary so users know it’s not just generic templates.\nMake it look modern and polished with cards, gradients, and good spacing. Each idea should show priority, effort needed, and impact level. Include a fallback if the API doesn’t work.\nThe whole point is proving the ideas are contextual to their actual company, not just random suggestions.": "创建一个 AI 头脑风暴工具,帮助团队生成规划创意。\n该工具应询问背景信息,如公司名称、产品、时间轴、团队目标,以及他们想要哪种类型的头脑风暴会议(产品开发、营销等)。\n点击生成后,应使用 Claude API 首先理解公司/产品情况,然后基于此理解创建 6 个相关创意。展示 Claude 的理解摘要,让用户知道这不仅仅是通用的模板。\n使用卡片、渐变和良好的间距,使其看起来具有现代感且精美。每个创意都应显示优先级、所需投入和影响力水平。包含 API 无法工作时的备选方案。\n重点在于证明这些创意是基于他们公司的实际情况,而非随机的建议。",
    "Create an OAuth App on your GHE instance with the callback URL: {callbackUrl}": "在您的 GHE 实例上创建一个 OAuth 应用,回调 URL 为:{callbackUrl}",
    "Create an RFP template I can fill in for a vendor. Include sections for scope, requirements, evaluation criteria, and timeline.": "为我创建一个可填写给供应商的 RFP 模板。包括范围、需求、评估标准和时间线等部分。",
    "Create an employee handbook": "编写员工手册",
    "Create an endless 3d cherry blossom explorer set in a Japanese tea garden.": "打造一个设定在日式茶馆花园里的、无尽的 3D 樱花探索体验。",
    "Create an full-screen interactive night sky react app called “Stories in the Sky” where users click to place stars on a dark canvas, then reveal generated constellation names and stories use Claude API. The app should feature a cosmic background with stars, mystical visual effects, and glassmorphism UI elements. When users click “Reveal constellation”, use Claude API to analyze the star pattern’s geometry. Consider the number of stars, their spatial arrangement, and symbolic meaning to generate relatable, everyday names like “The Dancing Umbrella” or “The Sleepy Cat” based on the actual shape. Style with Quicksand font, purple/indigo color schemes for revealed constellations, and ensure text is sentence-case throughout.": "创建一个名为\"Stories in the Sky\"的全屏互动星空应用,用户可以在深色画布上点击放置星星,然后显示生成的星座名称和故事。应用采用星空宇宙背景、神秘视觉效果和玻璃态 UI 元素。用户点击\"Reveal constellation\"时,使用 Claude API 分析星图的几何形状,根据星星数量、空间排列和象征意义生成\"跳舞的雨伞\"或\"瞌睡的猫\"等日常名称。整体采用 Quicksand 字体和紫色/靛青色调,并确保文本采用句子大小写格式。",
    "Create an interactive language learning tutor in an artifact with the following features: Core Functionality * Implement a UI with a language selector dropdown (include languages like Spanish, French, German, Japanese, Italian, etc.) * Allow users to have natural conversations with the tutor in their chosen language * Use the Claude API (window.claude.complete) to generate contextually appropriate responses in the selected language Learning Feedback System Build dynamic feedback mechanisms that: * Analyze each user message for grammar, vocabulary, and syntax * Display real-time feedback in a side panel (e.g., “Nice use of past tense!” or “Try using ‘por’ instead of ‘para’ in this context”) * Track common errors and areas for improvement * Provide gentle corrections without interrupting conversation flow Personalized Learning Goals * Automatically identify user’s proficiency level based on their interactions * Generate and display 3-5 specific learning goals (e.g., “Master irregular verb conjugations” or “Expand food-related vocabulary”) * Allow users to manually add/edit goals * Adapt conversation topics to align with these goals Progress Tracking * Visualize learning progress with simple charts or progress bars * Track vocabulary growth, grammar improvement, and conversation duration * Maintain a learning journal that summarizes each session UI Requirements * Clean, intuitive interface with clear separation between conversation area and feedback * Mobile-responsive design * Visual indicators for language proficiency levels * Option to toggle between casual chat and structured lessons": "在一个构件中创建一个互动的语言学习导师,具备以下功能: 核心功能 * 实现带语言选择下拉列表的 UI(包含西班牙语、法语、德语、日语、意大利语等) * 允许用户使用所选语言与导师进行自然对话 * 使用 Claude API (window.claude.complete) 生成所选语言的适当回复。 学习反馈系统 构建动态反馈机制: * 分析每条用户消息的语法、词汇和句法 * 在侧边面板显示实时反馈(例如:“过去时态用得好!”或“在这种语境下尝试用 ‘por’ 代替 ‘para’”) * 追踪常见错误和提升空间 * 提供温和的纠正,不打断对话流。 个性化学习目标 * 根据互动自动识别用户的熟练程度 * 生成并显示 3-5 个具体学习目标(例如:“掌握不规则动词变位”或“扩展食物相关词汇”) * 允许用户手动添加/编辑目标 * 调整对话主题以契合这些目标。 进度追踪 * 通过简单的图表或进度条实现学习进度可视化 * 追踪词汇增长、语法提升和对话时长 * 维护一个记录每节课摘要的学习日志。 UI 要求 * 界面洁净、直观,对话区与反馈区明确分隔 * 移动端适配设计 * 熟练程度的视觉指示器 * 提供在闲聊模式和结构化课程模式间切换的选项",
    "Create an interactive react app to let people watch their favorite historical events in SVG. Users will enter the name of a historical event, then it will generate a series of SVG’s representing famous scenes from that event. The setting should be a cinema, and the SVG’s should be played in the screen. Make sure it fits within the bounds of the screen. Use the claude API to generate the SVG’s. Use the analysis tool to check how to use the API first. The user should really feel as if they are at the movies, make it immersive! The SVG images should be representative of the scene and obvious to anyone who is familiar with that historical event. Aim to wow the user with your SVG skills! Write a very good prompt to claude for generating the SVG to get this point across. Generate 1-5 famous scenes specific to the specified historical event. Ensure that everything works, do not mock any functionality. Ensure that the react app looks like a movie theatre and that all the pieces fit together.": "创建一个交互式 React 应用,让人们通过 SVG 观看心仪的历史事件。用户输入历史事件名称,然后生成一系列表现该事件著名场景的 SVG。场景设定在电影院中,SVG 将在银幕上放映。确保其适配银幕边界。使用 Claude API 生成 SVG。先使用分析工具查看如何使用该 API。用户应该感觉如同置身电影院,要有沉浸感!SVG 图像应能体现场景,且对熟悉该历史事件的人来说一目了然。目标是用您的 SVG 技巧惊艳用户!为生成 SVG 编写一段极佳的提示词,以传达这一点。针对特定历史事件生成 1-5 个著名场景。确保所有环节正常运作,不要使用任何 Mock 功能。确保 React 应用看起来像电影院,且所有部分协调统一。",
    "Create an interactive version of the periodic table": "创建元素周期表的交互版本",
    "Create an interactive ‘Where’s the Sloth?’ game where players search for a hidden sloth in the dark. Start with a simple search prompt asking ‘Where is the sloth?’ with a ‘Go’ button. The player should start in a dark room with a white circular flashlight that follows the mouse cursor. A hidden sloth should be randomly positioned that’s only visible when the flashlight passes over it. Once found and clicked, the sloth zooms in wearing cool pixelated sunglasses (deal with it style), with an ‘Again?’. The sloth shouldn’t be visible by default! The sloth should have that satisfied, cool expression when revealed, making the discovery feel rewarding and humorous.": "创建一个互动式“寻找树懒”游戏,玩家在黑暗中搜索隐藏的树懒。从一个简单的搜索提示“树懒在哪里?”开始,旁边有一个“出发”按钮。玩家从黑暗的房间开始,手持一个跟随鼠标光标移动的白色圆形手电筒。一只隐藏的树懒随机藏在某处,只有当手电筒照到它时才能看到。一旦找到并点击,树懒会放大并戴上炫酷的像素化太阳镜(就这么拽),旁边显示“再来一次?”。默认情况下树懒应该是不可见的!当树懒被发现时,它应该有一个满足又酷的表情,让这个发现过程既有成就感又幽默。",
    "Create analytics API key": "创建分析 API 密钥",
    "Create and edit designs in Canva": "在 Canva 中创建并编辑设计",
    "Create and run agent sessions on your behalf": "代表你创建并运行代理会话",
    "Create annotated bibliographies": "创建带注释的参考书目",
    "Create apps and visuals": "创建应用和视觉效果",
    "Create apps, prototypes, and interactive documents that use Claude inside the artifact.": "创建在工件内部使用 Claude 的应用、原型和交互式文档。",
    "Create apps, prototypes, and interactive documents that use Claude inside the artifact. Start by saying, “Let’s build an AI app...” to access the power of Claude API.": "创建使用 Claude 的应用、原型和交互式文档。开始时说“让我们构建一个 AI 应用……”来访问 Claude API 的强大功能。",
    "Create artifact": "创建构件",
    "Create as draft": "创建为草稿",
    "Create assessment questions": "创建评估问题",
    "Create auth token file": "创建认证令牌文件",
    "Create blog article series": "创建博客文章系列",
    "Create bot API key": "创建机器人 API 密钥",
    "Create business pivots": "创建业务转型方案",
    "Create business processes": "创建业务流程",
    "Create cleaning routines": "规划清扫日程",
    "Create code snippets": "创建代码片段",
    "Create compliance access key": "创建合规访问密钥",
    "Create content informed by company policies and documentation": "参考公司政策和文档创建内容",
    "Create content strategies": "创建内容策略",
    "Create copy": "创建文案",
    "Create custom style": "创建自定义样式",
    "Create custom team activities for any situation - just describe your needs and get ideas": "针对任何情况创建定制的团队活动——只需描述您的需求即可获得创意",
    "Create customer journeys": "创建客户旅程图",
    "Create customer personas": "创建客户画像",
    "Create debugging workflows": "创建调试工作流",
    "Create dependency maps": "创建依赖关系图",
    "Create docs, decks, and sheets": "创建文档、幻灯片和表格",
    "Create draft PR": "创建草稿 PR",
    "Create dynamic artifacts that stay up-to-date using live data from your connectors.": "使用来自连接器的实时数据创建可保持最新的动态工件。",
    "Create educational games": "开发教育类游戏",
    "Create educational rubrics": "创建教育类评估标准",
    "Create effective cover letters": "创建有效的求职信",
    "Create effective flashcards": "创建高效的记忆卡片",
    "Create engaging headlines": "创作吸睛标题",
    "Create environment": "创建环境",
    "Create family activities": "创建家庭活动",
    "Create family traditions": "建立家庭传统",
    "Create feedback for student work": "为学生的作业创建反馈",
    "Create files and artifacts": "创建文件与构件",
    "Create files and execute code": "创建文件并执行代码",
    "Create fix": "创建修复方案",
    "Create fix?": "创建修复?",
    "Create full screen algorithmic art in react that will amaze a human. At any point, let the human enter in how they’re feeling into a textbox and update the algorithmic art to reflect that feeling. Try to keep to a similar pattern but use the pattern creatively for the different feelings. Use the Claude API in a clever way to do this. Use the analysis tool to confirm your use of the Claude API first.": "在 React 中创建能让人惊叹的全屏算法艺术。随时允许用户在文本框中输入他们的感受,并更新算法艺术以反映那种感受。尝试保持类似的模式,但针对不同感受创造性地运用该模式。以精巧的方式使用 Claude API 来实现这一点。先使用分析工具确认对 Claude API 的使用方式。",
    "Create good lecture notes": "创建优质的讲义笔记",
    "Create interactive charts": "创建交互式图表",
    "Create interview questions": "创建面试问题",
    "Create key": "创建密钥",
    "Create learning timelines": "创建学习时间线",
    "Create logo variations": "创建 Logo 变体",
    "Create monitoring solutions": "创建监控解决方案",
    "Create mood boards": "创建情绪板 (Mood board)",
    "Create morning routines": "规划晨间日程",
    "Create new project": "创建新项目",
    "Create new skills": "创建新技能",
    "Create new tab": "创建新标签页",
    "Create new task": "创建新任务",
    "Create new task with context from \"{projectName}\"?": "使用来自 “{projectName}” 的背景信息创建新任务吗?",
    "Create on-trend color palettes": "创建流行配色方案",
    "Create organization": "创建组织",
    "Create personal boundaries": "建立个人界限",
    "Create personalized bedtime stories for children based on their interests": "根据孩子的兴趣创作个性化的睡前故事",
    "Create persuasive arguments": "创建具有说服力的论据",
    "Create plugin": "创建插件",
    "Create pool": "创建池",
    "Create portfolio presentations": "创建作品集演示文稿",
    "Create presentation scripts": "创建演示文稿脚本",
    "Create professional goals": "创建职业目标",
    "Create project": "创建项目",
    "Create project {projectName}": "创建项目 {projectName}",
    "Create public link": "创建公开链接",
    "Create pull requests automatically": "自动创建拉取请求",
    "Create reading lists": "创建阅读清单",
    "Create recruiting strategies": "创建招聘策略",
    "Create refactoring plans": "创建重构计划",
    "Create revenue forecasts": "创建收入预测",
    "Create routine": "创建常规任务",
    "Create runner pool": "创建运行器池",
    "Create sales presentations": "创建销售演示文稿",
    "Create scheduled task": "创建计划任务",
    "Create security protocols": "创建安全协议",
    "Create share link": "创建分享链接",
    "Create skill": "创建技能",
    "Create social media posts": "创建社交媒体帖文",
    "Create social media templates": "创建社交媒体模板",
    "Create something inspired by the most beautiful mistake": "从最美的错误中汲取灵感,创造一些东西",
    "Create strategic partnerships": "创建战略合作伙伴关系",
    "Create study summaries": "创建学习摘要",
    "Create style": "创建样式",
    "Create task": "创建任务",
    "Create technical diagrams": "创建技术图表",
    "Create technical explanations": "编写技术解释",
    "Create technical specifications": "创建技术规范",
    "Create templated routines that can be kicked off on schedule, by API, or webhook.": "创建可模板化的例程,可按计划、通过 API 或 Webhook 启动。",
    "Create user documentation": "创建用户文档",
    "Create vendor evaluations": "创建供应商评估",
    "Create webhook": "创建 webhook",
    "Create website structures": "创建网站结构",
    "Create with Claude": "用 Claude 进行创作",
    "Create workplace boundaries": "创建工作场所边界",
    "Create your avatar": "创建您的头像",
    "Create your default cloud environment and control Claude's network access. Customize and create new environments anytime in settings.": "创建您的默认云环境并控制 Claude 的网络访问。随时在设置中自定义并创建新环境。",
    "Create your first artifact": "创建你的第一个工件",
    "Create your first cloud environment": "创建您的第一个云环境",
    "Create your first pool": "创建您的第一个池",
    "Create your first project": "创建您的第一个项目",
    "Create ‘Molecule Studio’ - a React artifact that is a minimalist molecular visualizer that emphasizes structure over decoration.\nUsers should be able to type in the name of any molecule. Then make a call to Claude that returns JSON with the chemical formula as well as a list of elements with the position on x, y, z axis and a list of bonds between the elements. Then display a 3D visualization of the molecule": "创建 “Molecule Studio” —— 这是一个 React 构件,作为一款极简的分子可视化工具,强调结构而非装饰。\n用户应该能够输入任何分子的名称。然后调用 Claude,返回包含化学式以及原子在 x, y, z 轴位置列表和原子间键列表的 JSON。接着显示分子的 3D 可视化效果。",
    "Create ‘missed connections’ personal ads based on my most interesting email exchanges": "根据我最有趣的电子邮件往来创建\"错过的缘分\"个人广告",
    "Create, continue, and delete your conversations": "创建、继续和删除您的对话",
    "Create, update, and track issues in Linear": "在 Linear 中创建、更新及追踪 Issue",
    "Created": "已创建",
    "Created PR": "已创建 PR",
    "Created a file": "创建了一个文件",
    "Created a memory": "已创建一条记忆",
    "Created a plan": "制定了计划",
    "Created artifact: {id}": "已创建工件:{id}",
    "Created at": "创建时间",
    "Created by": "创建人",
    "Created by Anthropic": "由 Anthropic 创建",
    "Created by unknown": "由未知人员创建",
    "Created by you": "由您创建",
    "Created by your admin": "由您的管理员创建",
    "Created by {author}": "由 {author} 创建",
    "Created memory": "已创建记忆",
    "Created scheduled task: {taskName}": "已创建计划任务:{taskName}",
    "Created {count} files": "已创建 {count} 个文件",
    "Created {count} memories": "已创建 {count} 条记忆",
    "Created {fileName}": "已创建 {fileName}",
    "Created {skillName}": "已创建 {skillName}",
    "Created {time}": "创建于 {time}",
    "Created {when}": "创建于 {when}",
    "Creates a priority-100 rule that allows requests to the listed hosts and injects this credential. Uncheck to attach the credential from an existing or custom rule instead.": "创建一个优先级为 100 的规则,允许向列出的主机发送请求并注入此凭证。取消勾选则改为从现有或自定义规则附加该凭证。",
    "Creates tables for what you describe below and swaps any local-only state to real reads and writes. If a database isn't configured for this project yet, Claude will provision one first.": "为您在下面描述的内容创建表,并将任何仅本地状态交换为真实的读写。如果尚未为此项目配置数据库,Claude 将首先配置一个。",
    "Creates visual project status boards from user input with Gantt charts, progress bars, and milestone tracking": "根据用户输入创建可视化项目状态板,具备甘特图、进度条和里程碑追踪功能",
    "Creating": "创建中",
    "Creating PR": "正在创建 PR",
    "Creating PR…": "正在创建 PR…",
    "Creating environment...": "正在创建环境...",
    "Creating memory": "正在创建记忆",
    "Creating memory...": "正在创建记忆...",
    "Creating my research plan...": "正在创建我的研究计划...",
    "Creating new organization": "正在创建新组织",
    "Creating session": "正在创建会话",
    "Creating session...": "正在创建会话...",
    "Creating worktree...": "正在创建工作区…",
    "Creating worktree…": "创建工作树中…",
    "Creating your subscription…": "正在创建您的订阅…",
    "Creating {fileName}": "正在创建 {fileName}",
    "Creating...": "正在创建...",
    "Creation of org": "组织创建",
    "Creative AI Tools to Design, Generate, and Build with Claude": "使用 Claude 设计、生成并构建的创意 AI 工具",
    "Creative projects": "创意项目",
    "Credential fields for MessageBird, TextLocal, and Vonage are configured in the Supabase dashboard.": "MessageBird、TextLocal 和 Vonage 的凭据字段可在 Supabase 控制面板中配置。",
    "Credential type": "凭据类型",
    "Credentials": "凭据",
    "Credit Card": "信用卡",
    "Credit amount": "积分金额",
    "Credit available:": "可用余额:",
    "Credit for unused time on monthly plan": "按月计费方案中未使用时间的折算额度",
    "Credit or debit card": "信用卡或借记卡",
    "Credits draw down as you go at API rates": "额度会按 API 费率随使用逐步扣减",
    "Credits keep you going when you hit your plan limits. You control how much you spend.": "当你达到计划限制时,额度可让你继续使用。你可以控制自己的支出。",
    "Credits will be added once your bank transfer is received. This typically takes 1 to 5 business days.": "收到银行转账后将添加额度。通常需要 1 到 5 个工作日。",
    "Critique my mockup": "点评我的原型稿",
    "Critique my study methodology the way a peer reviewer would — flag weak points, assumptions, and gaps. I'll paste my methods section below.": "请像同行评审一样批评我的研究方法,指出薄弱点、假设和缺口。我会把方法部分粘贴在下面。",
    "Critique the UI mockup I'm about to share — flag issues with hierarchy, spacing, and anything that reads as confusing.": "点评我即将分享的 UI 模型,指出层级、间距以及任何容易让人困惑的问题。",
    "Cron expression": "Cron 表达式",
    "Cross-site scripting (XSS)": "跨站脚本攻击 (XSS)",
    "Cryptographic weakness": "加密弱点",
    "Ctrl⏎": "Ctrl⏎",
    "Curious to learn more? <link>Try an example project</link>": "想了解更多?<link>试试示例项目</link>",
    "Current": "当前",
    "Current State": "当前状态",
    "Current balance": "当前余额",
    "Current branch": "当前分支",
    "Current custom limit: Unlimited": "当前自定义限额:无限制",
    "Current custom limit: {amount}": "当前自定义限额:{amount}",
    "Current cycle": "当前账单周期",
    "Current focus": "当前焦点",
    "Current limit: Unlimited ({groupName} group)": "当前限制:无限制({groupName} 组)",
    "Current limit: Unlimited ({tier} seat default)": "当前限制:无限制({tier} 席位默认设置)",
    "Current limit: {amount} ({groupName} group)": "当前限制:{amount}({groupName} 组)",
    "Current limit: {amount} ({tier} seat default)": "当前限制:{amount}({tier} 席位默认)",
    "Current limit: {limit}": "当前限制:{limit}",
    "Current plan": "当前方案",
    "Current score {streak} · Best {best}": "当前分数 {streak} · 最高分 {best}",
    "Current seats": "当前席位",
    "Current seats are the seats purchased in your subscription. Unassigned members do not count towards your seat usage.": "当前席位是您订阅中购买的席位。未分配的成员不计入您的席位使用量。",
    "Current session": "当前会话",
    "Current state": "当前状态",
    "Current streak": "当前连续记录",
    "Current value ({source})": "当前值({source})",
    "Currently {model}": "当前为 {model}",
    "Custom": "自定义",
    "Custom CA certificate (optional)": "自定义 CA 证书(可选)",
    "Custom CA certificate (required for self-signed)": "自定义 CA 证书(自签名证书必填)",
    "Custom MCPs": "自定义 MCP",
    "Custom access": "自定义访问/权限",
    "Custom agents": "自定义代理",
    "Custom connector added.": "自定义连接器已添加。",
    "Custom credit amount": "自定义信用额度",
    "Custom cron": "自定义 Cron",
    "Custom cron — {cron}": "自定义 Cron — {cron}",
    "Custom cron: {cron}": "自定义 Cron:{cron}",
    "Custom data retention controls": "自定义数据保留控制",
    "Custom group access for {name}": "针对 {name} 的自定义分组访问",
    "Custom limits": "自定义限额",
    "Custom names aren't enabled for your account yet.": "你的账户尚未启用自定义名称。",
    "Custom per user": "按用户自定义",
    "Custom plugins are only available in the desktop app.": "自定义插件仅在桌面应用中可用。",
    "Custom role": "自定义角色",
    "Custom roles": "自定义角色",
    "Custom roles take precedence over the User role if a member's groups are assigned to both.": "如果成员所属的小组同时被分配了自定义角色和用户角色,则自定义角色优先。",
    "Custom roles take precedence over the User role if a member’s groups are assigned to both.": "如果成员的组同时分配给自定义角色和用户角色,则自定义角色优先。",
    "Custom schedule: {cron}": "自定义计划:{cron}",
    "Custom spend limit": "自定义支出上限",
    "Custom spend limits override group limits": "自定义支出限额会覆盖分组限额",
    "Custom team extensions": "自定义团队扩展",
    "Customer Email": "客户邮件",
    "Customer stories": "客户案例",
    "Customer support": "客户支持",
    "Customize": "自定义",
    "Customize Artifact": "自定义构件",
    "Customize Claude": "自定义 Claude",
    "Customize Claude to your role": "根据您的职务/角色定制 Claude",
    "Customize Cookie Settings": "自定义 Cookie 设置",
    "Customize access": "自定义访问权限",
    "Customize is not available for teams": "自定义功能对团队不可用",
    "Customize sidebar": "自定义侧边栏",
    "Customize the classification banner displayed at the top of the page for all users in your organization. When not set, the default banner from your environment configuration is used.": "自定义显示在页面顶部的分类横幅,该横幅对组织中的所有用户可见。未设置时,将使用环境配置中的默认横幅。",
    "Customize this Artifact": "自定义此构件",
    "Customize what your org sees": "自定义组织可见内容",
    "Customize with Claude": "使用 Claude 自定义",
    "Customize with plugins": "使用插件进行自定义",
    "Customize your styles": "自定义您的样式",
    "Customize {serverName}": "定制 {serverName}",
    "Customizing an Artifact requires a Claude.ai account.": "自定义构件需要使用 Claude.ai 账号。",
    "Custom…": "自定义…",
    "Cyan": "青色",
    "Cyber Use Case": "网络安全用例",
    "Cyrillic (Windows-1251)": "西里尔字母 (Windows-1251)",
    "D": "D",
    "D/E": "D/E",
    "DAU": "日活跃用户",
    "DD": "DD",
    "DEMO": "演示/Demo",
    "DESKTOP": "桌面端",
    "DISABLED": "已禁用",
    "DNS changes may take time to propagate across name servers. Use ‘Refresh’ to check verification status.": "DNS 更改可能需要一段时间才能同步到域名服务器。使用“刷新”来检查验证状态。",
    "DNS changes may take time to propagate across name servers. You can <link>check the current propagation status</link> to monitor when your record becomes visible.": "DNS 更改可能需要一段时间才能在全球域名服务器中生效。您可以<link>检查当前的传播状态</link>来监控您的记录何时变得可见。",
    "DOMAIN": "域名",
    "Daily": "每日",
    "Daily active users": "每日活跃用户",
    "Daily activity heatmap": "每日活动热力图",
    "Daily included routine runs": "每日包含的例程运行次数",
    "Daily signups from your app's auth table.": "来自您应用的认证表的每日注册数。",
    "Daily tokens by model": "按模型划分的每日令牌数",
    "Dark": "深色",
    "Dark code theme": "深色代码主题",
    "Data": "数据",
    "Data Analysis": "数据分析",
    "Data Visualization and Analysis Tools Powered by Claude": "由 Claude 提供支持的数据可视化与分析工具",
    "Data and privacy": "数据与隐私",
    "Data handling": "数据处理",
    "Data in UTC · Updated daily": "数据以 UTC 为准 · 每日更新",
    "Data processing agreement": "数据处理协议",
    "Data processing in progress.{br}Check back in a few days.{br}Confirm the {link} is installed if data doesn't appear.": "数据处理中。{br}请几天后再来查看。{br}如果数据未出现,请确认 {link} 已安装。",
    "Data processing.{br}Confirm the {link} is installed.": "数据处理中。{br}请确认 {link} 已安装。",
    "Data science": "数据科学",
    "Data sources": "数据源",
    "Data timezone and freshness information": "数据时区和新鲜度信息",
    "Data updated {when}": "数据更新于 {when}",
    "Database": "数据库",
    "Database update failed.": "数据库更新失败。",
    "Datadog RUM Session": "Datadog RUM 会话",
    "Date": "日期",
    "Date Range (UTC)": "日期范围 (UTC)",
    "Date created": "创建日期",
    "Date range": "日期范围",
    "Date shared": "分享日期",
    "Day": "日",
    "Day {day}": "第 {day} 天",
    "Debate an ethical dilemma": "争论一个伦理困境",
    "Debit owed:": "欠款:",
    "Debug": "调试/Debug",
    "Debug a failing test": "调试失败的测试",
    "Debug a stack trace": "调试堆栈跟踪",
    "Debug bundle exported — {goLink}": "调试包已导出:{goLink}",
    "Debug bundle exported — {goLink} copied": "调试包已导出——{goLink} 已复制",
    "Debug errors and track activity.": "调试错误并追踪活动。",
    "Debug export failed.": "调试导出失败。",
    "Debug info copied to clipboard.": "调试信息已复制到剪贴板。",
    "Debug information": "调试信息",
    "Debug my code and give me tips": "调试我的代码并给我建议",
    "Debug my reasoning": "调试我的推理",
    "Debug panel for SSE events from the spaces API.": "用于处理来自 Spaces API 的 SSE 事件的调试面板。",
    "Debug share": "调试分享",
    "Debug unexpected behavior": "调试异常行为",
    "Debug, rubber-duck, and think through design decisions.": "调试、进行小黄鸭调试并深度思考设计决策。",
    "Debunk \"8 spiders in your sleep\"": "揭穿“睡觉时生吞 8 只蜘蛛”的谣言",
    "Decline": "谢绝/不需要",
    "Decline invite": "拒绝邀请",
    "Decode a lab result": "解读化验结果",
    "Decrease seats": "减少席位",
    "Dedupe": "去重",
    "Deep research and analysis": "深度研究与分析",
    "Deep research and extended thinking": "深度研究与扩展思考",
    "Defamation": "诽谤",
    "Default": "默认",
    "Default (UTF-8)": "默认 (UTF-8)",
    "Default (no color)": "默认(无颜色)",
    "Default access": "默认访问权限",
    "Default chat font": "默认聊天字体",
    "Default for all sites": "对所有网站的默认设置",
    "Default for other commands": "其他命令的默认设置",
    "Default for other {cliName} commands": "其他 {cliName} 命令的默认值",
    "Default model": "默认模型",
    "Default model from your Claude Code settings": "来自你的 Claude Code 设置的默认模型",
    "Default permission for unlisted commands": "未列出命令的默认权限",
    "Default responses from Claude": "来自 Claude 的默认回复",
    "Default restriction for unconfigured tools": "未配置工具的默认限制",
    "Default restriction for unlisted operations": "未列出操作的默认限制",
    "Default spend limit for members in multiple groups": "多组数成员的默认支出限制",
    "Default to metric units": "默认使用公制单位",
    "Defective or damaged": "有缺陷或损坏",
    "Define a legal term": "定义一个法律术语",
    "Define permissions, allowed directories and more for your entire org. This will override user and project settings and applies to Claude Code in the CLI, IDE, and Desktop app. <link>Learn more</link>": "为整个组织定义权限、允许的目录等更多内容。这将覆盖用户和项目设置,并适用于 CLI、IDE 和桌面应用中的 Claude Code。<link>了解更多</link>",
    "Define permissions, allowed directories and more for your entire org. This will override user and project settings and only applies to Claude Code in CLI and IDE. <link>Learn more</link>": "为您的整个组织定义权限、允许的目录等。这将覆盖用户和项目设置,且仅适用于 CLI 和 IDE 中的 Claude Code。<link>了解更多</link>",
    "Define style objective": "定义样式目标",
    "Degraded": "性能下降",
    "Delete": "删除",
    "Delete \"{taskName}\"? Any sessions from this task will be archived.": "删除“{taskName}”?此任务涉及的所有会话将被归档。",
    "Delete Cowork sessions": "删除 Cowork 会话",
    "Delete Domain": "删除域名",
    "Delete GHE configuration": "删除 GHE 配置",
    "Delete KB": "删除知识库 (KB)",
    "Delete SSH connection": "删除 SSH 连接",
    "Delete Trial": "删除试用版",
    "Delete access key": "删除访问密钥",
    "Delete account": "删除账号",
    "Delete account completely": "彻底删除账户",
    "Delete agent": "删除智能体",
    "Delete all ({count})": "全部删除({count})",
    "Delete and re-add connectors to edit custom OAuth Client IDs.": "若要编辑自定义 OAuth 客户端 ID,请删除并重新添加连接器。",
    "Delete and re-add connectors to edit custom OAuth Client Secrets.": "删除并重新添加连接器以编辑自定义 OAuth 客户端密钥。",
    "Delete catalog and disable": "删除目录并禁用",
    "Delete chat": "删除聊天",
    "Delete comment": "删除评论",
    "Delete connection": "删除连接",
    "Delete conversation": "删除对话",
    "Delete egress credential": "删除出口凭证",
    "Delete entire extension": "删除整个扩展程序",
    "Delete environment": "删除环境",
    "Delete group": "删除分组",
    "Delete managed settings": "删除托管设置",
    "Delete memory {name}": "删除记忆 {name}",
    "Delete organization": "删除组织",
    "Delete plugin": "删除插件",
    "Delete pool": "删除池",
    "Delete pool permanently": "永久删除池",
    "Delete pool?": "删除池?",
    "Delete project": "删除项目",
    "Delete project?": "删除项目?",
    "Delete routine": "删除常规任务",
    "Delete rule": "删除规则",
    "Delete schedule": "删除计划",
    "Delete scheduled task": "删除计划任务",
    "Delete secret": "删除密钥",
    "Delete secret \"{name}\"": "删除机密 \"{name}\"",
    "Delete selected": "删除所选",
    "Delete selected plugins": "删除选定的插件",
    "Delete service": "删除服务",
    "Delete session": "删除会话",
    "Delete session?": "删除会话?",
    "Delete settings": "删除设置",
    "Delete source": "删除源",
    "Delete style": "删除样式",
    "Delete submission?": "删除提交内容?",
    "Delete task?": "删除任务?",
    "Delete the token to remove": "删除令牌以移除",
    "Delete this conversation?": "删除此对话?",
    "Delete this pool": "删除此池",
    "Delete this skill?": "删除此技能?",
    "Delete this version": "删除此版本",
    "Delete this webhook? This permanently removes it and stops all deliveries.": "删除此 webhook?这将永久删除它并停止所有投递。",
    "Delete token": "删除令牌",
    "Delete upstream credential": "删除上游凭据",
    "Delete webhook": "删除 webhook",
    "Delete your account": "删除您的账户",
    "Delete {count, plural, one {# chat} other {# chats}}": "删除 {count, plural, one {# 个} other {# 个}} 聊天",
    "Delete {count} plugins": "删除 {count} 个插件",
    "Delete {name}? Past sessions from this routine will remain.": "删除 {name}?此常规任务过去的会话将保留。",
    "Delete {name}? Past sessions from this task will remain.": "删除 {name}?此任务的过往会话将被保留。",
    "Delete {name}? This can't be undone.": "删除 {name}?此操作无法撤销。",
    "Delete {name}? This will also delete {runCount, plural, one {# past run} other {# past runs}}. This can't be undone.": "删除 {name}?这还会删除 {runCount, plural, one {# 次过去的运行} other {# 次过去的运行}}。此操作无法撤销。",
    "Delete {name}? This will also delete {runCountLabel} past runs. This can't be undone.": "删除 {name}?这也会删除 {runCountLabel} 次过往运行。此操作无法撤销。",
    "Delete {numSelected} selected {numSelected, plural, one {item} other {items}}": "删除 {numSelected} 个选定的 {numSelected, plural, one {项} other {项}}",
    "Delete {serviceName}?": "删除 {serviceName} 吗?",
    "Delete “{name}”? This can't be undone.": "删除“{name}”?此操作无法撤销。",
    "Delete “{name}”? This will also delete {count} past runs. This can't be undone.": "删除“{name}”?这也会删除过去的 {count} 次运行。此操作无法撤销。",
    "Delete “{name}”? This will also delete {count}+ past runs. This can't be undone.": "删除“{name}”?这也会删除 {count}+ 次过往运行。此操作无法撤销。",
    "Delete?": "删除?",
    "Deleted": "已删除",
    "Deleted a file": "删除了一个文件",
    "Deleted data cannot be recovered": "已删除的数据无法恢复",
    "Deleted group": "已删除的分组",
    "Deleted {count} files": "已删除 {count} 个文件",
    "Deleted {count} trial row(s)": "已删除 {count} 条试用记录",
    "Deleting your account is permanent. You will have no way of recovering your account or conversation data.": "删除账户是永久性的。您将无法恢复您的账户或对话数据。",
    "Deleting...": "正在删除...",
    "Delivered": "已交付",
    "Demonstrated": "已演示",
    "Denied": "已拒绝",
    "Denied (401/403)": "已拒绝(401/403)",
    "Denied apps": "已拒绝的应用",
    "Denominator: {count} active Claude Code users": "分母:{count} 位活跃 Claude Code 用户",
    "Deny": "拒绝",
    "Departments": "部门",
    "Deploy": "部署",
    "Deploy Claude Desktop": "部署 Claude Desktop",
    "Deploy a runner with this secret to start serving sessions:": "使用此密钥部署运行器以开始服务会话:",
    "Deploy for Windows": "部署到 Windows",
    "Deploy for macOS": "部署到 macOS",
    "Deploy something from any preview pane to see it here.": "从任何预览窗格部署内容后,即可在此处查看。",
    "Deploy to Orbit": "部署到 Orbit",
    "Deploying": "部署中",
    "Deployment ID": "部署 ID",
    "Deployment Terms": "部署条款",
    "Describe a beat and Claude will use it to generate a drum pattern": "描述一段节奏,Claude 会用它生成鼓点模式",
    "Describe a task or ask a question": "描述一个任务或提出一个问题",
    "Describe anything then build it with Claude Code": "描述任何内容,然后使用 Claude Code 构建它",
    "Describe changes": "描述变更",
    "Describe changes...": "描述更改...",
    "Describe generally": "一般性描述",
    "Describe how you’d like to edit the style, like:": "描述您希望如何编辑样式,例如:",
    "Describe style instead": "改为描述样式",
    "Describe the issue or feedback": "描述问题或反馈",
    "Describe the main tasks users will accomplish with this connector.": "描述用户将通过此连接器完成的主要任务。",
    "Describe what Claude should do in each session": "描述 Claude 在每个会话中应该做什么",
    "Describe what worked well and what could be improved about the suggestions...": "描述一下建议中哪些部分效果良好,以及哪些部分可以改进...",
    "Describe what you want Code to do…": "描述您想让 Code 做什么…",
    "Describe what you want built. Claude Code writes, tests, and iterates — you just keep steering.": "描述你想要构建的内容。Claude Code 负责编写、测试和迭代——你只需持续引导。",
    "Describe what you would like to update": "描述您想要更新的内容",
    "Describe what you would like to update...": "描述您想要更新的内容...",
    "Describe what your connector does and its key features…": "描述你的连接器做什么以及它的关键功能…",
    "Describe your dream and Claude will interpret it": "描述您的梦境,Claude 会为您解梦",
    "Describe your project, goals, subject, etc...": "描述您的项目、目标、主题等...",
    "Describe your style": "描述您的风格",
    "Describe your style instructions": "描述您的样式指令",
    "Description": "描述",
    "Description (optional)": "描述(可选)",
    "Description cannot contain XML tags": "描述不能包含 XML 标签",
    "Description must be under 1024 characters": "描述必须在1024个字符以内",
    "Deselect all": "取消全选",
    "Design": "设计",
    "Design & creativity": "设计与创意",
    "Design Tools and Creative Applications Powered by Claude AI": "由 Claude AI 驱动的设计工具和创意应用程序",
    "Design UI/UX wireframes": "设计 UI/UX 原型图",
    "Design a CRISPR knockout screen": "设计 CRISPR 敲除筛选",
    "Design a chracter profile based on my creative super power": "根据我的创意超能力设计角色资料",
    "Design a digital pet that grows based on my coding habits": "设计一个根据我的编码习惯成长的数字宠物",
    "Design a game that teaches coding concepts through storytelling": "设计一个通过讲故事讲授编程概念的游戏",
    "Design a learning challenge that pushes my creative boundaries": "设计一个挑战我创造力极限的学习挑战",
    "Design a lesson or curriculum": "设计课程或教学大纲",
    "Design a metrics framework": "设计一个指标框架",
    "Design a portfolio dashboard": "设计一个作品集仪表盘",
    "Design a presentation layout": "设计演示文稿布局",
    "Design a research study": "设计一项研究",
    "Design a software architecture": "设计软件架构",
    "Design a strategy game based on my business challenges": "根据我的业务挑战设计一个策略游戏",
    "Design a strategy inspired by patterns found in nature": "从大自然的模式中获取灵感设计一个策略",
    "Design a study": "设计一项研究",
    "Design an experience that changes how people perceive time": "设计一项改变人们时间感知的体验",
    "Design an experience that transforms digital connections into physical ones": "设计一种能将数字连接转化为物理连接的体验",
    "Design an experiment": "设计一个实验",
    "Design an interactive installation based on my personal values": "根据我的个人价值观设计一个互动式装置",
    "Design data structures": "设计数据结构",
    "Design database schemas": "设计数据库架构",
    "Design educational activities": "设计教学活动",
    "Design email newsletters": "设计电子邮件简报",
    "Design error handling": "设计错误处理机制",
    "Design event materials": "设计活动材料",
    "Design feature flags": "设计功能开关/特性标志 (Feature flag)",
    "Design growth frameworks": "设计增长框架",
    "Design learning challenges": "设计学习挑战",
    "Design learning journals": "设计学习日志",
    "Design learning modules": "设计学习模块",
    "Design learning portfolios": "设计学习档案",
    "Design logging systems": "设计日志系统",
    "Design microservices": "设计微服务",
    "Design options gallery": "设计选项库",
    "Design presentation visuals": "设计演示视觉效果",
    "Design research questions": "设计研究问题",
    "Design scalability plans": "设计可扩展性方案",
    "Design something that bridges ancient techniques and futuristic concepts": "设计某种衔接古代技术与未来概念的东西",
    "Design the app should use a white background with blue buttons and look like a professionally designed data analysis tool.": "设计方案:该项应用应当使用白色背景、蓝色按钮,看起来像是专业设计的数据分析工具。",
    "Desktop": "桌面",
    "Desktop app": "桌面应用",
    "Desktop appears offline.": "桌面端似乎已离线。",
    "Desktop extension allowlist": "桌面扩展允许列表",
    "Desktop extension enabled toggle": "桌面扩展程序开关已启用",
    "Desktop extensions and developer MCP servers are disabled on this device. Please contact your IT administrator to enable these features.": "此设备上禁用了桌面扩展和开发者 MCP 服务器。请联系您的 IT 管理员以启用这些功能。",
    "Desktop extensions are disabled on this device. Please contact your IT administrator to enable desktop extensions.": "此设备上已禁用桌面扩展程序。请联系您的 IT 管理员以启用桌面扩展程序。",
    "Desktop only": "仅限桌面版",
    "Desktop screenshot": "桌面截图",
    "Desktop screenshots": "桌面截图",
    "Desktop settings": "桌面设置",
    "Detach simulator": "分离模拟器",
    "Details": "详情",
    "Detected issues and optimization opportunities across your organization.": "检测到您组织中的问题和优化机会。",
    "Detected tools": "检测到的工具",
    "Detected {date}": "检测到 {date}",
    "Determine my main competitors based on my docs and show me what my competitors are doing differently this year": "根据我的文档确定我的主要竞争对手,并向我展示我的竞争对手今年有哪些不同的做法",
    "Dev login": "开发登录",
    "Dev server failed to start.": "开发服务器启动失败。",
    "Develop CI/CD pipelines": "开发 CI/CD 管道",
    "Develop KPI dashboards": "开发 KPI 仪表盘",
    "Develop a business ecosystem inspired by my personal passions": "根据个人热情打造商业生态系统",
    "Develop a business plan": "制定商业计划",
    "Develop a content calendar": "制定内容日历",
    "Develop a learning approach that embraces beautiful contradictions": "开发一种拥抱优美矛盾的学习方法",
    "Develop a learning framework based on my personal heroes": "根据我个人崇拜的英雄开发一个学习框架",
    "Develop algorithm solutions": "开发算法方案",
    "Develop an outline": "制定大纲",
    "Develop brand personas": "开发品牌人格",
    "Develop brand positioning": "制定品牌定位",
    "Develop brand voice guides": "制定品牌语调指南",
    "Develop character profiles": "开发角色概览",
    "Develop client proposals": "开发客户提案",
    "Develop code reviews to speed me up": "定制代码审查以提升我的速度",
    "Develop coding standards": "制定编码规范/标准",
    "Develop competitive positioning": "制定竞争定位策略",
    "Develop concept maps": "开发概念图",
    "Develop content briefs": "开发展示简报",
    "Develop content calendars": "制定内容日历",
    "Develop content templates": "制定内容模板",
    "Develop critical analyses": "深入分析",
    "Develop deployment strategies": "制定部署策略",
    "Develop discussion prompts": "开发讨论提示语",
    "Develop distribution strategies": "制定分发策略",
    "Develop editorial calendars": "制定编辑日历",
    "Develop editorial guidelines": "制定编辑指南",
    "Develop executive presence": "培养高管风范",
    "Develop exercise routines": "开发锻炼计划",
    "Develop instructional content": "开发教学内容",
    "Develop integration strategies": "制定集成策略",
    "Develop leadership abilities": "培养领导能力",
    "Develop learning frameworks": "开发学习框架",
    "Develop learning objectives": "制定学习目标",
    "Develop marketing campaigns": "制定营销活动",
    "Develop mindfulness practices": "培养正念习惯",
    "Develop my professional skills": "提升我的专业技能",
    "Develop naming conventions": "开发命名规范",
    "Develop parenting strategies": "制定育儿策略",
    "Develop performance benchmarks": "开发性能基准测试",
    "Develop personal hobbies": "培养个人爱好",
    "Develop podcast scripts": "开发播客脚本",
    "Develop pricing strategies": "制定定价策略",
    "Develop product narratives": "制定产品叙述",
    "Develop project estimates": "开展项目估算",
    "Develop reflection exercises": "制定反思练习",
    "Develop research methodologies": "开发研究方法",
    "Develop risk assessments": "开发风险评估",
    "Develop self-care practices": "制定自我关怀计划",
    "Develop stakeholder communications": "开发利害关系人沟通方案",
    "Develop storytelling frameworks": "开发讲故事框架",
    "Develop sustainability initiatives": "制定可持续发展计划",
    "Develop teaching strategies": "制定教学策略",
    "Develop technical debt analysis": "开发技术债分析",
    "Developed by <a></a>": "由 <a></a> 开发",
    "Developer": "开发者",
    "Developer MCP servers are disabled on this device. Please contact your IT administrator to enable developer MCP servers.": "在此设备上,开发者 MCP 服务器被禁用。请联系您的 IT 管理员启用开发者 MCP 服务器。",
    "Developer Tools Warning": "开发者工具警示",
    "Developer docs": "开发者文档",
    "Developing": "开发中",
    "Development": "开发",
    "Device": "设备",
    "Device ID: {id}": "设备 ID:{id}",
    "Diagnose a student misconception": "诊断学生的误解",
    "Diagnostic Report": "诊断报告",
    "Diagram": "图表",
    "Dictate": "听写",
    "Dictation": "听写",
    "Dictation is unavailable": "听写功能不可用",
    "Dictation settings": "听写设置",
    "Did not fully follow my request": "未完全遵循我的指令",
    "Didn't get it within 48 hours? Check your spam folder.": "48 小时后还没收到?请检查您的垃圾邮件文件夹。",
    "Didn't get it within 48 hours? Check your spam or <link>contact us.</link>": "48 小时后还没收到?请检查垃圾邮件或<link>联系我们。</link>",
    "Didn't just start this from a Claude add-in? Close this tab.": "不是刚从 Claude 插件启动的吗?请关闭此标签页。",
    "Didn't meet expectations": "未达预期",
    "Didn’t work? <a>Relaunch the tab.</a>": "没用?<a>重新加载标签页。</a>",
    "Diff": "差异",
    "Diffs": "差异 (Diffs)",
    "Dig into a historical event": "深入了解历史事件",
    "Direct people to the sales team when asked about pricing or contracts": "当被问到价格或合同时,请引导对方联系销售团队",
    "Direct terminal integration with your dev tools": "与您的开发工具直接终端集成",
    "Directions": "方向/指导",
    "Directory": "目录",
    "Directory MCPs": "目录 MCPs",
    "Directory path": "目录路径",
    "Directory rank": "目录排名",
    "Directory sections": "目录分区",
    "Directory sync": "目录同步",
    "Directory sync (SCIM)": "目录同步 (SCIM)",
    "Directory sync completed.": "目录同步完成。",
    "Directory sync failed. You can try again.": "目录同步失败。您可以重试。",
    "Directory sync in progress. Wait for it to finish before changing these settings.": "目录同步中。请等待完成后再更改这些设置。",
    "Directory sync is up to date.": "目录同步已是最新。",
    "Directory sync started.": "目录同步已开启。",
    "Disable": "禁用",
    "Disable Canvas Instance": "禁用 Canvas 实例",
    "Disable Code Review": "禁用 Code Review",
    "Disable access key": "禁用访问密钥",
    "Disable all tools": "禁用所有工具",
    "Disable auto-verify": "禁用自动验证",
    "Disable chat?": "禁用聊天?",
    "Disable code execution and file creation to change this setting": "禁用代码执行和文件创建功能以更改此设置",
    "Disable extension allowlist": "禁用扩展白名单",
    "Disable group mappings": "禁用分组映射",
    "Disable group mappings?": "禁用分组映射?",
    "Disable plugin": "禁用插件",
    "Disable public projects": "禁用公开项目",
    "Disable signup": "禁用注册",
    "Disable thumbs feedback": "禁用点赞反馈",
    "Disable {integrationName} cataloging": "禁用 {integrationName} 编目",
    "Disabled": "已禁用",
    "Disabled by org admin": "已被组织管理员禁用",
    "Disabled by your organization": "已被您的组织禁用",
    "Disabled by your organization's admin": "已被您组织的管理员禁用",
    "Disabled connectors need to be approved by your account administrator.": "已禁用的连接器需要由你的账户管理员批准。",
    "Disabled in settings": "设置中已禁用",
    "Disabling memory will permanently delete all memories for your team. This can't be undone.": "禁用内存将永久删除团队的所有记忆。此操作无法撤消。",
    "Disagree": "不同意",
    "Disallowed Tools": "禁用的工具",
    "Discard": "丢弃/放弃",
    "Discard and approve": "放弃并批准",
    "Discard changes": "放弃更改",
    "Discard changes?": "放弃更改?",
    "Discard pending changes?": "放弃待处理的更改?",
    "Discard uncommitted changes?": "丢弃未提交的更改?",
    "Disconnect": "断开连接",
    "Disconnect all and retry": "断开所有连接并重试",
    "Disconnect and delete cached files": "断开连接并删除缓存文件",
    "Disconnect failed. You can try again.": "断开连接失败。您可以重试。",
    "Disconnect {integrationName}?": "断开与 {integrationName} 的连接吗?",
    "Disconnect {serverName} for your team?": "断开团队对 {serverName} 的连接吗?",
    "Disconnect {serverName}?": "断开 {serverName} 的连接?",
    "Disconnected": "已断开连接",
    "Disconnected from the remote session. Send a message or refresh to reconnect.": "已与远程会话断开连接。发送消息或刷新以重新连接。",
    "Disconnected, attempting to reconnect in {seconds, plural, one {# second} other {# seconds}}...": "连接已断开,正尝试在 {seconds, plural, one {# 秒} other {# 秒}} 后重新连接...",
    "Disconnects all runners, revokes all keys, and drops queued sessions.": "断开所有运行器,撤销所有密钥,并丢弃排队的会话。",
    "Discount": "折扣",
    "Discount code applied": "已应用折扣码",
    "Discount explanation": "折扣说明",
    "Discount starts at {min}": "折扣从 {min} 开始",
    "Discover AI-powered tools and applications created in Chinese. Browse through various categories to find the perfect tool for your needs.": "探索以中文开发的 AI 驱动工具和应用。通过各个分类浏览,为您找到满足需求的完美工具。",
    "Discover AI-powered tools and applications created in French. Browse through various categories to find the perfect tool for your needs.": "探索使用法语创建的 AI 驱动工具和应用。浏览各种类别以找到满足您需求的完美工具。",
    "Discover AI-powered tools and applications created in Hebrew. Browse through various categories to find the perfect tool for your needs.": "发现以希伯来语创建的 AI 驱动工具和应用。通过各个分类浏览,为您找到满足需求的完美工具。",
    "Discover AI-powered tools and applications created in Japanese. Browse through various categories to find the perfect tool for your needs.": "探索以日语创建的 AI 驱动的工具和应用。浏览不同的类别以找到满足您需求的完美工具。",
    "Discover AI-powered tools and applications created in Korean. Browse through various categories to find the perfect tool for your needs.": "探索由韩语开发者创建的 AI 驱动工具和应用。浏览各个分类,找到最符合你需求的工具。",
    "Discover AI-powered tools and applications created in Portuguese. Browse through various categories to find the perfect tool for your needs.": "探索由葡萄牙语开发者创建的 AI 驱动工具和应用。浏览各个分类,找到最符合你需求的工具。",
    "Discover AI-powered tools and applications created in Spanish. Browse through various categories to find the perfect tool for your needs.": "探索以西班牙语创建的 AI 驱动的工具和应用。浏览不同的类别以找到满足您需求的完美工具。",
    "Discover AI-powered tools and applications created in Thai. Browse through various categories to find the perfect tool for your needs.": "发现用泰语创建的 AI 驱动工具和应用程序。通过各个分类浏览,为您找到满足需求的完美工具。",
    "Discover AI-powered tools and applications created in various languages. Browse through categories to find the perfect tool for your needs.": "发现以各种语言创建的 AI 驱动工具和应用。通过各个分类浏览,寻找满足您需求的完美工具。",
    "Discover a new perspective": "发现新视角",
    "Discover fresh angles on my writing based on my docs": "根据我的文档发现关于我写作的新视角/新角度",
    "Discover how humans figured out “those mushrooms = bad idea”": "探索人类是如何发现“那些蘑菇 = 坏主意”的",
    "Discover powerful AI-driven creative tools built with Claude. From graphic design applications and drawing tools to content generators and creative automation, explore innovative ways to bring your artistic vision to life. Create stunning visuals, generate unique content, and automate your creative workflow with these modern AI applications.": "探索使用 Claude 构建的强大 AI 驱动创意工具。从平面设计应用、绘图工具到内容生成器和创意自动化,探索将您的艺术愿景变为现实的创新方式。使用这些现代 AI 应用创建精美的视觉效果,生成独特的内容,并实现创意工作流程的自动化。",
    "Discover your attachment style in relationships": "在人际关系中发现您的依恋类型",
    "Discoverable": "可被发现",
    "Discoverable domains let people find and request to join your organization when they sign up": "可发现域名允许人们在注册时找到并申请加入您的组织",
    "Discovery": "发现",
    "Discuss art interpretation": "讨论艺术解读",
    "Discuss creative thinking techniques": "讨论创意启发技巧",
    "Discuss food science": "讨论食品科学",
    "Discuss future technologies": "讨论未来技术",
    "Discuss musical innovations": "讨论音乐创新",
    "Discuss results": "讨论结果",
    "Discuss results with Claude": "与 Claude 讨论结果",
    "Discuss social dynamics": "讨论社交动态",
    "Discuss space exploration questions": "讨论空间探索问题",
    "Discuss symbolic communication": "讨论符号交流",
    "Discuss this": "讨论此事",
    "Discussion": "讨论",
    "Discussion comment": "讨论评论",
    "Discussion comment created, edited, or deleted": "讨论评论已创建、编辑或删除",
    "Discussion created, edited, closed, etc.": "讨论已创建、编辑、关闭等。",
    "Disk error": "磁盘错误",
    "Dismiss": "不再显示/忽略",
    "Dismiss all": "全部忽略/忽略所有",
    "Dismiss all requests": "忽略所有请求",
    "Dismiss as accepted risk": "作为已接受的风险忽略",
    "Dismiss checklist": "关闭检查清单",
    "Dismiss error": "忽略错误",
    "Dismiss finding": "忽略发现结果",
    "Dismiss output": "忽略输出",
    "Dismiss request": "拒绝请求",
    "Dismiss suggested connectors": "忽略建议的连接器",
    "Dismiss suggestion": "忽略建议",
    "Dismiss task": "关闭任务",
    "Dismiss upgrade banner": "关闭升级横幅",
    "Dismissal note": "忽略备注",
    "Dismissal reason": "拒绝原因",
    "Dismissed": "已忽略",
    "Dismissed Experiences": "已关闭的体验",
    "Dismissed {name}": "已忽略 {name}",
    "Dismissing...": "正在忽略/拒绝...",
    "Dispatch": "派遣/调度",
    "Dispatch can use every connector you've authenticated.": "Dispatch can use every connector you've authenticated.",
    "Dispatch from anywhere": "随时随地分派",
    "Dispatch is off": "Dispatch 已关闭",
    "Dispatch messages": "分派消息",
    "Dispatch notifications disabled": "Dispatch 通知已禁用",
    "Dispatch notifications enabled": "Dispatch 通知已启用",
    "Dispatch shows you the highlights. This background conversation is where Claude does the thinking. {goBack}": "Dispatch 向您展示重点。这个后台对话是 Claude 进行思考的地方。{goBack}",
    "Dispatch tasks to Claude and check in from your phone or computer, in one continuous conversation.": "将任务分配给 Claude,并随时通过手机或电脑查看进度,保持对话的连贯性。",
    "Dispatch tasks to Claude and check in from your phone or computer—all in one seamless conversation.": "向 Claude 分派任务,并可随时从手机或电脑端查看进度——一切都在一个无缝的对话中完成。",
    "Dispatch tasks to Claude from anywhere—even your phone.": "随时随地向 Claude 派发任务,甚至可以用手机完成。",
    "Dispatch to Claude and check in from anywhere—a task, a code session, in one continuous thread.": "分派给 Claude 并从任何地方查看 —— 任务、代码会话,均在一个连续的线程中进行。",
    "Display name": "显示名称",
    "Distinct accounts that called this server": "调用过此服务器的不同账号",
    "Div Yield": "股息率",
    "Div/Share": "股息/每股",
    "Dive deep on what travel trends will be for the next five years": "深入探究未来五年的旅游趋势",
    "Do I need an account to send a gift?": "发送礼品需要账号吗?",
    "Do more in Claude Code": "在 Claude Code 中做更多事",
    "Do more with Claude": "使用 Claude 发挥更多潜力",
    "Do more with Claude in the app": "在应用中使用 Claude 完成更多工作",
    "Do more with Claude, everywhere you work": "在任何工作场所使用 Claude 完成更多任务",
    "Do more with Cowork. Only on desktop.": "使用 Cowork 完成更多任务。仅限桌面端。",
    "Do more with {product}": "使用 {product} 完成更多任务",
    "Do not use for sensitive materials e.g. PII, user data and financial data": "请勿用于敏感材料,如 PII (个人可识别信息)、用户数据和财务数据",
    "Do you control your DNS and SSO settings?": "您是否控制您的 DNS 和 SSO 设置?",
    "Do you trust this prompt?": "您信任此提示吗?",
    "Do you want to be notified when it's ready?": "准备就绪时您是否希望收到通知?",
    "Doc ID": "文档 ID",
    "Document": "文档 (Document)",
    "Document a business process": "记录一项业务流程",
    "Documentation": "文档",
    "Documents": "文档",
    "Documents and templates": "文档和模板",
    "Does this connector access, process, or store personal health information?": "此连接器是否访问、处理或存储个人健康信息?",
    "Does this connector surface sponsored, promoted, or advertising content? If so, describe how it is disclosed to users.": "这个连接器是否会展示赞助、推广或广告内容?如果会,请说明如何向用户披露。",
    "Does your team need any of these?": "您的团队需要其中任何一项吗?",
    "Doesn't reset": "不会重置",
    "Domain": "域名",
    "Domain Memberships": "域名成员身份",
    "Domain Name": "域名",
    "Domain Verification": "域名验证",
    "Domain Verification Instructions": "域名验证说明",
    "Domain actions": "域名操作",
    "Domain allowlist": "域名允许列表",
    "Domain deleted": "域名已删除",
    "Domain is already in the list": "域名已在列表中",
    "Domain memberships": "域成员资格",
    "Domain verification removed.": "域名验证已移除。",
    "Domain verification required": "需要验证域名",
    "Domain {index}": "域名 {index}",
    "Domains": "域名",
    "Domains where these credentials apply. Wildcard only as the leftmost label (e.g. *.example.com).": "这些凭据适用的域名。通配符仅作为最左侧的标签使用(例如 *.example.com)。",
    "Domains where this credential may ever be sent. Wildcard only as the leftmost label (e.g. *.example.com). Enforced even if a rule's condition is broader.": "此凭证可能会被发送到的域名。通配符只能作为最左侧标签使用(例如 *.example.com)。即使规则条件更宽泛,也会强制执行此限制。",
    "Don't ask me again": "不要再问我",
    "Don't have Claude Desktop yet?": "还没有 Claude 桌面版?",
    "Don't have the chrome extension yet?": "还没有 Chrome 扩展程序?",
    "Don't just chat. Cowork.": "不要只是聊天。一起 Cowork。",
    "Don't like the cited sources": "不喜欢引用的来源",
    "Don't share personal information or third-party content without permission, and see our <usagePolicyLink>Usage Policy</usagePolicyLink>.": "未经许可,请勿分享个人信息或第三方内容,并参阅我们的<usagePolicyLink>许可使用政策</usagePolicyLink>。",
    "Don't show again": "不再显示",
    "Don't use device management? Team members can install directly from <link>claude.com/download</link>.": "不使用设备管理?团队成员可以直接从 <link>claude.com/download</link> 安装。",
    "Done": "完成",
    "Done researching": "完成研究",
    "Done!": "完成!",
    "Don’t ask me again": "不要再询问我",
    "Don’t navigate away from this page yet": "先不要离开此页面",
    "Don’t share personal information or third-party content without permission, and see our <usagePolicyLink>Usage Policy</usagePolicyLink>.": "未经许可,请勿共享个人信息或第三方内容,并参阅我们的<usagePolicyLink>许可使用政策</usagePolicyLink>。",
    "Don’t show this again": "不再显示",
    "Don’t use memory": "不使用记忆",
    "Dots": "点",
    "Double-click": "双击",
    "Downgrade 1 seat to {tier}?": "将 1 个席位降级到 {tier}?",
    "Downgrade to Pro": "降级为 Pro",
    "Download": "下载",
    "Download .txt": "下载 .txt",
    "Download Android app": "下载 Android 应用",
    "Download CSV": "下载 CSV",
    "Download Claude for Mac": "下载 Mac 版 Claude",
    "Download Claude for Windows": "下载 Windows 版 Claude",
    "Download Cowork": "下载 Cowork",
    "Download Git": "下载 Git",
    "Download Markdown": "下载 Markdown",
    "Download a one-time package to give Claude a secure workspace on your computer.": "下载一次性软件包,在您的计算机上给 Claude 一个安全的工作空间。",
    "Download again": "再次下载",
    "Download all": "下载全部",
    "Download app": "下载应用",
    "Download as PDF": "下载为 PDF",
    "Download as {fileType}": "另存为 {fileType}",
    "Download cache debug summary + screenshot": "下载缓存调试摘要 + 截图",
    "Download conversation": "下载对话",
    "Download conversations": "下载对话",
    "Download debug information": "下载调试信息",
    "Download desktop app": "下载桌面应用",
    "Download failed. Check your connection and <retry>try again</retry>.": "下载失败。请检查网络连接并<retry>重试</retry>。",
    "Download failed. Check your connection and try again.": "下载失败。请检查您的连接并重试。",
    "Download failed. You can try again.": "下载失败。您可以重试。",
    "Download file": "下载文件",
    "Download files": "下载文件",
    "Download finding": "下载发现结果",
    "Download for Windows": "下载 for Windows",
    "Download for macOS": "下载 macOS 版",
    "Download from cli.github.com": "从 cli.github.com 下载",
    "Download guide": "下载指南",
    "Download iOS app": "下载 iOS 应用",
    "Download is unavailable while the project loads.": "项目加载期间无法下载。",
    "Download logs for any date range within the past 180 days.": "下载过去 180 天内任意日期范围的日志。",
    "Download plugin": "下载插件",
    "Download report": "下载报告",
    "Download selected plugins": "下载选定的插件",
    "Download source": "下载源代码",
    "Download the BAA to continue": "下载 BAA 以继续",
    "Download the Claude app": "下载 Claude 应用",
    "Download the Claude app on your phone to get started.": "在手机上下载 Claude 应用以开始使用。",
    "Download the Implementation Guide to continue": "下载实施指南以继续",
    "Download the app so Claude can get to work in your browser, files, and folders.": "下载应用,以便 Claude 可以在您的浏览器、文件和文件夹中开始工作。",
    "Download the app so Claude can work in your folders and browser.": "下载应用,以便 Claude 可以在您的文件夹和浏览器中工作。",
    "Download the desktop app": "下载桌面应用",
    "Download the underlying data which includes individual user memberships and IdP group names used for provisioning.": "下载底层数据,其中包括个人用户成员资格和用于配置 IdP 分组名称。",
    "Download update": "下载更新",
    "Download {filename}": "下载 {filename}",
    "Downloaded": "已下载",
    "Downloading dependencies...": "正在下载依赖项...",
    "Downloading update...": "正在下载更新...",
    "Downloading...": "下载中...",
    "Downloading... {percent}%": "下载中... {percent}%",
    "Downloads packages from verified sources, balancing security and performance.": "从已验证的来源下载软件包,平衡安全性和性能。",
    "Downloads packages from verified sources.": "从验证源下载包。",
    "Draft": "草稿",
    "Draft a PRD": "起草 PRD",
    "Draft a Slack message": "起草一条 Slack 消息",
    "Draft a board memo": "起草董事会备忘录",
    "Draft a cold outreach email": "起草一封冷启动外联邮件",
    "Draft a cold outreach email for me. If I haven't shared them, ask for: who I'm targeting, what I'm selling, and the hook. Then write a short, specific email.": "为我起草一封冷启动外联邮件。如果我还没有提供,请询问:目标对象是谁、我在卖什么,以及切入点是什么。然后写一封简短且具体的邮件。",
    "Draft a cold outreach sequence": "起草一份冷启动外联序列",
    "Draft a contract clause (e.g. indemnity, NDA, limitation of liability) in plain language.": "用通俗语言起草一条合同条款(例如赔偿、保密协议、责任限制)。",
    "Draft a grant paragraph": "起草资助申请段落",
    "Draft a job description": "起草职位描述",
    "Draft a job description — I'll share the role title and key details.": "起草职位描述,我会提供职位名称和关键细节。",
    "Draft a one-page board memo for quarterly financial results. I'll share the headline numbers — structure the narrative around them.": "为季度财务结果起草一页董事会备忘录。我会提供关键数字,请围绕这些数字构建叙述。",
    "Draft a one-page patient handout on a condition I'll name (default to hypertension if I don't) — plain language, non-alarmist, for a general adult audience.": "为我指定的一种病症起草一页患者说明单(如果我没指定,默认是高血压),要求使用通俗语言、不制造恐慌,面向普通成年读者。",
    "Draft a patient handout": "起草患者说明材料",
    "Draft a performance review": "草拟绩效考核",
    "Draft a piece": "起草一篇内容",
    "Draft a pitch or proposal": "起草推介书或提案",
    "Draft a product requirements doc": "起草一份产品需求文档",
    "Draft a proposal": "起草提案",
    "Draft a speech": "起草演讲稿",
    "Draft a standard operating procedure for a process I'll describe (e.g., onboarding a vendor) — steps, owners, and checkpoints.": "为我接下来描述的流程起草一份标准操作程序(例如供应商入驻),包含步骤、负责人和检查点。",
    "Draft a structured scientific abstract from my bullet points. I'll paste my key findings, methods, and conclusions — you handle the framing.": "根据我的要点起草一份结构化的科学摘要。我会粘贴关键发现、方法和结论,由你负责整体框架。",
    "Draft a technical doc": "起草技术文档",
    "Draft a technical spec": "起草技术规范",
    "Draft a vendor RFP": "起草供应商 RFP",
    "Draft an SOP": "起草 SOP",
    "Draft an architecture design doc": "起草一份架构设计文档",
    "Draft an email": "起草一封邮件",
    "Draft an outline for my project": "为我的项目拟定大纲",
    "Draft and iterate on websites, graphics, documents, and code alongside your chat with Artifacts.": "通过构件 (Artifacts) 在聊天旁起草并迭代网站、图形、文档和代码。",
    "Draft behavioral and role-specific interview questions. I'll paste the job description below.": "起草行为类和岗位特定的面试问题。我会在下面贴出职位描述。",
    "Draft briefs, research competitors, and build reports across your tools.": "跨工具起草简报、研究竞争对手并生成报告。",
    "Draft contract clause": "起草合同条款",
    "Draft email newsletters": "草拟电子简报",
    "Draft professional emails": "起草专业邮件",
    "Draft pull request": "草拟拉取请求",
    "Draft reply": "草稿回复",
    "Draft something for me": "帮我起草内容",
    "Drafting artifact...": "正在起草工件...",
    "Drag": "拖动",
    "Drag .MCPB or .DXT files here to install": "将 .MCPB 或 .DXT 文件拖放到此处以安装",
    "Drag and drop career materials like your resume, cover letters, or job descriptions to help Claude provide personalized professional advice.": "拖放您的求职材料,如简历、自荐信或职位描述,让 Claude 提供个性化的职业建议。",
    "Drag and drop course materials like syllabi, lecture notes, or text-book excerpts so Claude can help you learn.": "拖放并放入课程资料(如:教学大纲、讲义或教科书摘录),以便 Claude 帮助您学习。",
    "Drag and drop or click to upload": "拖放或点击上传",
    "Drag and drop research materials like draft papers, source notes, or literature reviews to help Claude provide targeted academic guidance.": "拖拽并放入研究资料(如:论文草案、原始笔记或文献综述),以帮助 Claude 提供针对性的学术指导。",
    "Drag and drop the Claude app into your Applications folder.": "将 Claude 应用拖放到您的“应用程序”文件夹中。",
    "Drag and drop to upload": "拖放以上传",
    "Drag to re-order your priorities": "拖动以重新排优先级",
    "Drag to reorder": "拖动以重新排序",
    "Drag to reorder{sep}⌘ Enter to submit{sep}Esc to skip": "拖动以排序{sep}⌘ Enter 提交{sep}Esc 跳过",
    "Drag to resize": "拖动以调整大小",
    "Draw a circle and see how close you can get to perfection": "画一个圆圈,看看你有多接近完美",
    "Draw a perfect circle": "画一个完美的圆",
    "Draw attention on notifications": "引起通知注意",
    "Drawing tool": "绘图工具",
    "Dream interpreter": "解梦师",
    "Dreaming": "构思中",
    "Drive": "云端硬盘",
    "Drive API": "Drive API",
    "Drop CSV to import": "拖放 CSV 以导入",
    "Drop a Conway plugin or skill": "拖放 Conway 插件或技能",
    "Drop example writing here to match the style": "在此处放入短文示例以匹配风格",
    "Drop files here": "将文件拖放到此处",
    "Drop files here or click to browse": "将文件拖放到此处,或点击浏览",
    "Drop files here to add to chat": "将文件拖放到此处以添加到聊天",
    "Drop files here to add to project knowledge": "将文件拖放到此处以添加到项目知识库",
    "Drop files here to add to reference materials": "将文件拖放到此处以添加到参考资料",
    "Drop files to attach": "拖放文件以添加附件",
    "Drop images here": "拖放图片至此",
    "Drop settings.json here": "将 settings.json 拖放到此处",
    "Drop to upload skill": "拖放以上传技能",
    "Due": "截止日期",
    "Due to capacity constraints, chatting with Claude is currently not available. Please try again in a little while.": "由于容量限制,目前暂时无法与 Claude 聊天。请稍后再试。",
    "Due to capacity constraints, chatting with Claude is currently not available. Please try again shortly.": "受系统负荷限制,当前无法与 Claude 聊天。请稍后再试。",
    "Due to unexpected capacity constraints, Claude is unable to respond to your message. Please try again soon.": "由于意料之外的容量限制,Claude 暂无法回复您的消息。请稍后再试。",
    "Due today": "今日到期",
    "Duplicate": "复制",
    "Duplicate configuration": "复制配置",
    "Duplicate group name. Each group can only be mapped once.": "重复的分组名称。每个分组只能映射一次。",
    "Duplicate group names in role mappings. Each group can only be mapped once.": "角色映射中存在重复的分组名称。每个分组只能映射一次。",
    "Duplicate group names in seat tier mappings. Each group can only be mapped once.": "席位等级映射中存在重复的分组名称。每个分组只能映射一次。",
    "Duplicate plugin": "复制插件",
    "Duplicate routine": "复制例程",
    "Duplicate skill": "复制技能",
    "Duplicated as {pluginName}": "已复制为 {pluginName}",
    "Duplicated as {skillName}": "已复制为 {skillName}",
    "Duplicate…": "重复…",
    "During high demand, Claude keeps replies short so you can chat longer.": "在高峰时期,Claude 会保持简短的回复,以便您可以聊得更久。",
    "During spin up there may be delays in release into the directory.": "启动期间,目录发布可能会有延迟。",
    "Dyslexic friendly": "读写困难症友好",
    "Dyslexic friendly chat font": "对读写困难者友好的聊天字体",
    "EBITDA": "EBITDA",
    "ELIGIBLE TO JOIN": "符合加入条件",
    "EPS": "EPS",
    "EPS Est": "每股收益预估",
    "Each exposed tool has a clear name, description, and example usage.": "每个暴露的工具都应有清晰的名称、描述和使用示例。",
    "Each team member's Claude can remember context from their own past chats. Memory stays private to each person. <a>Learn more</a>": "每个团队成员的 Claude 都可以记住来自其过去聊天的上下文。记忆对每个人保持私密。<a>了解更多</a>",
    "Each user or tenant connects to a unique URL.": "每个用户或租户连接到唯一的 URL。",
    "Early access to advanced Claude features": "抢先体验 Claude 的高级功能",
    "Early access to collaboration features": "协作功能的早期访问权",
    "Earnings & Dividends": "收益与股息",
    "Economic Futures": "经济未来",
    "Edit": "编辑",
    "Edit Canvas Instance": "编辑 Canvas 实例",
    "Edit Config": "编辑配置",
    "Edit Cowork instructions": "编辑 Cowork 说明",
    "Edit GHE configuration": "编辑 GHE 配置",
    "Edit Instructions": "编辑说明",
    "Edit SSH connection": "编辑 SSH 连接",
    "Edit agent": "编辑代理",
    "Edit agent {name}": "编辑智能体 {name}",
    "Edit billing address": "编辑账单地址",
    "Edit config in {editorName}": "在 {editorName} 中编辑配置",
    "Edit config in {editor}": "在 {editor} 中编辑配置",
    "Edit details": "编辑详情",
    "Edit duration": "编辑时长",
    "Edit environment": "编辑环境",
    "Edit file": "编辑文件",
    "Edit file contents": "编辑文件内容",
    "Edit in session": "在会话中编辑",
    "Edit inline": "内联编辑",
    "Edit instructions": "编辑指令",
    "Edit limit": "编辑限额",
    "Edit link": "编辑链接",
    "Edit memory": "编辑记忆",
    "Edit my content": "编辑我的内容",
    "Edit my draft for clarity and flow — keep my voice, cut anything that doesn't earn its place. I'll paste it next.": "帮我润色草稿,使其更清晰、更流畅,保留我的风格,删掉任何不必要的内容。我接下来会粘贴草稿。",
    "Edit payment details": "编辑付款信息",
    "Edit payment method": "编辑付款方式",
    "Edit personal preferences": "编辑个人偏好",
    "Edit plan markdown": "编辑方案 markdown",
    "Edit routine": "编辑常规任务",
    "Edit row": "编辑行",
    "Edit rule": "编辑规则",
    "Edit schedule": "编辑计划",
    "Edit scheduled task": "编辑计划任务",
    "Edit server": "编辑服务器",
    "Edit session duration": "编辑会话时长",
    "Edit settings": "编辑设置",
    "Edit shipping address": "编辑收货地址",
    "Edit skill instructions": "编辑技能指令",
    "Edit spend limit": "编辑消费限额",
    "Edit spend limit for {service}": "编辑 {service} 的支出上限",
    "Edit style instructions manually": "手动编辑样式指令",
    "Edit style manually": "手动编辑样式",
    "Edit trigger": "编辑触发器",
    "Edit webhook": "编辑 webhook",
    "Edit with Claude": "通过 Claude 编辑",
    "Edit {count} selected": "编辑所选的 {count} 项",
    "Edit {name}": "编辑 {name}",
    "Edited": "已编辑",
    "Edited PR": "已编辑的 PR",
    "Edited a file": "编辑了一个文件",
    "Edited a memory": "已编辑一条记忆",
    "Edited a notebook": "编辑了笔记本",
    "Edited memory": "已编辑记忆",
    "Edited {count} files": "编辑了 {count} 个文件",
    "Edited {count} memories": "已编辑 {count} 条记忆",
    "Edited {count} notebooks": "编辑了 {count} 个笔记本",
    "Edited {fileName}": "编辑了 {fileName}",
    "Edited {time}": "编辑于 {time}",
    "Editing": "编辑中",
    "Editing PR": "正在编辑 PR",
    "Editing file...": "正在编辑文件...",
    "Editing memory": "编辑记忆",
    "Editing memory...": "正在编辑记忆...",
    "Editing this message will create a new conversation branch. You can switch between branches using the arrow navigation buttons.": "编辑此消息将创建一个新的对话分支。您可以使用箭头导航按钮在不同分支间切换。",
    "Editing {fileName}": "正在编辑 {fileName}",
    "Editing {fileName}...": "正在编辑 {fileName}...",
    "Editing...": "正在编辑...",
    "Editor failed to load. Refresh to try again.": "编辑器加载失败。请刷新后重试。",
    "Edits saved": "修改已保存",
    "Education": "教育",
    "Educational Content": "教育内容",
    "Educational courses, tutorials, and step-by-step guides": "教育课程、教程及分步指南",
    "Educational responses for learning": "用于学习的教育性回复",
    "Educator": "教育工作者",
    "Effective today": "今日生效",
    "Effective {date}": "生效日期 {date}",
    "Effort": "工作量",
    "Effort change couldn't be applied. You can try again.": "无法应用工作量(Effort)变更。您可以重试。",
    "Effort change couldn’t be applied. You can try again.": "无法应用工作量更改。您可以重试。",
    "Egress credential created.": "出口凭证已创建。",
    "Egress credential deleted.": "出口凭据已删除。",
    "Egress proxy": "出口代理",
    "Elapsed": "已耗时/过去的时长",
    "Element screenshot": "元素截图",
    "Elevated permissions may allow unintended changes to protected branches.": "提升的权限可能允许对受保护分支进行意外更改。",
    "Eligibility check failed — try again later": "资格检查失败——请稍后再试",
    "Ellipse": "椭圆",
    "Email": "邮箱",
    "Email OTP expiry (seconds)": "邮件验证码过期时间(秒)",
    "Email OTP length": "邮箱 OTP 长度",
    "Email address": "电子邮箱地址",
    "Email notifications disabled": "已禁用邮件通知",
    "Email notifications enabled": "邮件通知已启用",
    "Email provider settings": "电子邮件提供商设置",
    "Email sign-in": "邮箱登录",
    "Email subject": "邮件主题",
    "Email verified as {email}": "电子邮件已验证为 {email}",
    "Email writing assistant": "邮件写作助手",
    "Embed code": "嵌入代码",
    "Emoji charades": "表情符号猜谜",
    "Emoji picker": "表情符号选择器",
    "Empower your development workflow with Claude-built programming tools and utilities. From code generators and debugging assistants to API clients and tech utilities, these applications enhance your coding efficiency and streamline technical tasks. Whether you’re a seasoned developer or just starting, these AI-driven tools help you write better code and solve technical challenges.": "使用 Claude 构建的编程工具和实用程序为您的开发流程提供助力。从代码生成器、调试助手到 API 客户端和技术实用工具,这些应用可提升您的编码效率并简化技术任务。无论您是资深开发者还是初学者,这些 AI 驱动的工具都能帮您编写更好的代码并解决技术难题。",
    "Empty": "空",
    "Empty folder": "空文件夹",
    "Enable": "启用",
    "Enable Canvas Instance": "启用 Canvas 实例",
    "Enable Canvas Integration": "启用 Canvas 集成",
    "Enable Claude Code Security": "启用 Claude Code 安全功能",
    "Enable Claude Code Security in Claude Code settings to start scanning your repositories.": "在 Claude Code 设置中启用 Claude Code Security 以开始扫描您的代码仓库。",
    "Enable Claude Code analytics to track how your team uses Claude Code. You can turn this on in <link>Claude Code organization settings</link>.": "启用 Claude Code 分析功能以跟踪团队如何使用 Claude Code。您可以在<link>Claude Code 组织设置</link>中开启此功能。",
    "Enable Claude Code analytics to use GitHub analytics": "启用 Claude Code 分析功能以使用 GitHub 分析功能",
    "Enable Claude Code in the web above to use Claude Code Security.": "在上方启用“Web 版编码”以使用 Claude Code Security。",
    "Enable Claude Code in the web above to use Claude Security.": "请在上方网页中启用 Claude Code 以使用 Claude Security。",
    "Enable Claude Security": "启用 Claude Security",
    "Enable Claude Security in Claude Code settings to start scanning your repositories.": "在 Claude Code 设置中启用 Claude Security,以开始扫描你的仓库。",
    "Enable Claude in Chrome": "在 Chrome 中启用 Claude",
    "Enable Code in the web above to use Claude Code Security.": "在上方启用“Web 版编码”以使用 Claude Code Security。",
    "Enable Code in the web above to use Claude Security.": "在上方网页中启用 Code 以使用 Claude Security。",
    "Enable Dispatch": "启用 Dispatch",
    "Enable Extra Usage in Settings → Usage to let them run": "在“设置 → 用量”中启用额外用量以允许它们运行",
    "Enable Fast mode in Claude Code settings": "在 Claude Code 设置中启用快速模式",
    "Enable GitHub analytics to unlock PR and code metrics. You can turn this on in <link>Claude Code organization settings</link>.": "启用 GitHub 分析以解锁 PR 和代码指标。您可以在<link>Claude Code 组织设置</link>中开启此功能。",
    "Enable Google sign-in": "启用 Google 登录",
    "Enable HIPAA Compliance": "启用 HIPAA 合规",
    "Enable Integration": "启用集成",
    "Enable Notifications": "启用通知",
    "Enable SCIM Provisioning": "启用 SCIM 配置",
    "Enable SCIM connection": "启用 SCIM 连接",
    "Enable SCIM directory": "启用 SCIM 目录",
    "Enable Skills above to upload and manage organization skills.": "启用上方技能以上传和管理组织技能。",
    "Enable a search integration to use research": "启用搜索集成以使用研究功能",
    "Enable a webhook so pushes to the default branch trigger an automatic sync. The webhook is created using the Claude GitHub App — you may need to approve a new GitHub permission the first time.": "启用 webhook,以便推送到默认分支会触发自动同步。webhook 使用 Claude GitHub App 创建 — 您可能需要在第一次时批准新的 GitHub 权限。",
    "Enable all ({count})": "全部启用({count})",
    "Enable all tools": "启用所有工具",
    "Enable anyway": "仍然启用",
    "Enable artifact connectors": "启用工件连接器",
    "Enable auto fix to have Claude proactively fix CI failures and address review comments on this PR": "启用自动修复,让 Claude 主动修复 CI 失败并处理此 PR 上的评审意见",
    "Enable auto mode": "开启自动模式",
    "Enable auto mode?": "启用自动模式?",
    "Enable auto permissions mode?": "开启自动权限模式?",
    "Enable auto-updates for extensions": "启用扩展的自动更新",
    "Enable auto-verify": "启用自动验证",
    "Enable browser tools": "启用浏览器工具",
    "Enable bypass mode": "启用绕过模式",
    "Enable bypass permissions mode?": "开启绕过权限模式?",
    "Enable computer use": "启用电脑使用功能",
    "Enable connectors for Claude to use in research": "为 Claude 开启连接器以进行研究",
    "Enable connectors individually to provide HIPAA attestation.": "逐个启用连接器以提供 HIPAA 证明。",
    "Enable email provider": "开启邮件服务商",
    "Enable enterprise compliance API access to audit your organization's data. <learnMoreLink>Learn more</learnMoreLink>": "启用企业合规 API 访问以审计您组织的数据。<learnMoreLink>了解更多</learnMoreLink>",
    "Enable extension allowlist": "启用扩展程序允许列表",
    "Enable extra usage": "启用额外用量",
    "Enable fast mode": "启用快速模式",
    "Enable for your organization": "为您组织启用",
    "Enable for your team": "为您的团队启用",
    "Enable group mappings": "启用分组映射",
    "Enable in Claude Code settings": "在Claude Code设置中启用",
    "Enable in chat": "在聊天中启用",
    "Enable in settings": "在设置中启用",
    "Enable invite link": "启用邀请链接",
    "Enable memory for your team": "为您的团队启用记忆功能",
    "Enable notifications": "启用通知",
    "Enable notifications in your browser settings to get updates when tasks complete.": "在浏览器设置中启用通知,以便在任务完成时获得更新。",
    "Enable phone provider": "启用电话提供商",
    "Enable plugin": "启用插件",
    "Enable programmatic access to engagement metrics for your organization.": "为您的组织启用对参与度指标的程序化访问。",
    "Enable routine": "启用例程",
    "Enable schedule": "启用计划",
    "Enable schedule trigger": "启用计划触发器",
    "Enable security review for {name}": "为 {name} 启用安全审查",
    "Enable single sign-on first — it is required for this provisioning mode.": "请先启用单点登录,这是此预配模式所必需的。",
    "Enable skill": "启用技能",
    "Enable skill to continue": "启用技能以继续",
    "Enable skill to edit with Claude": "启用技能以使用 Claude 进行编辑",
    "Enable skill to try in chat": "启用技能以在聊天中尝试",
    "Enable the <link>GitHub connector</link> for this organization": "为此组织启用 <link>GitHub 连接器</link>",
    "Enable the connector in Claude Organization Settings": "在 Claude 组织设置中启用连接器",
    "Enable this MCP in settings": "在设置中启用此 MCP",
    "Enable this MCP in settings.": "在设置中启用此 MCP。",
    "Enable to have Claude work in an isolated copy of your repo, so you can work on multiple tasks at the same time.": "启用此项让 Claude 在您仓库的隔离副本中工作,这样您就可以同时处理多个任务。",
    "Enable webhook": "启用 webhook",
    "Enable {extraUsageLink} for additional runs.": "启用 {extraUsageLink} 以获得更多运行次数。",
    "Enabled": "已启用",
    "Enabled by {email} on {date}": "由 {email} 于 {date} 启用",
    "Enables ads personalization and tracking.": "启用广告个性化和追踪。",
    "Enables security and basic functionality.": "启用安全及基础功能。",
    "Enables tracking of site performance.": "启用站点性能追踪。",
    "Enabling this capability will grant access to all users assigned to these roles.": "开启此功能将授予分配到这些角色的所有用户访问权限。",
    "Enabling this capability won't grant access to users assigned to custom roles until you also enable it for each role. {link}": "启用此功能后,被分配到自定义角色的用户仍无法访问,除非您也为每个角色分别启用该功能。{link}",
    "Enabling this capability won’t grant access to users assigned to custom roles until you also enable it for each role. {link}": "启用此功能不会授予分配给自定义角色的用户访问权限,除非您也为每个角色启用它。{link}",
    "Enabling...": "正在启用...",
    "End call": "结束通话",
    "End conversation": "结束对话",
    "End interview": "结束面试",
    "End session": "结束会话",
    "End voice call": "结束语音通话",
    "End with a quick check: is this the right direction, or should we adjust?": "最后快速确认一下:这个方向对吗,还是需要调整?",
    "Engineering": "工程/工程设计",
    "Engineering at Anthropic": "Anthropic 工程团队",
    "Enhanced context window": "更强大的上下文窗口",
    "Ensure you have appropriate permissions and trust third-party tools before continuing. <link>Learn more</link> about safely using research with connected apps.": "在继续操作前,请确保您拥有相应的权限并信任第三方工具。<a>详细了解</a>如何安全地结合已连接的应用进行研究。",
    "Enter CAPTCHA text": "输入验证码文字",
    "Enter IdP group name": "输入 IdP 分组名称",
    "Enter Outline document link": "输入 Outline 文档链接",
    "Enter a GitHub repo like owner/repo or https://github.com/owner/repo.": "输入 GitHub 仓库,如 owner/repo 或 https://github.com/owner/repo。",
    "Enter a message": "输入消息",
    "Enter a name": "输入名称",
    "Enter a prompt to improve": "输入一段提示词以供改进",
    "Enter a search term to find {orgType} organizations": "输入搜索词以查找 {orgType} 组织",
    "Enter a shell command": "输入 shell 命令",
    "Enter a valid 5-field cron expression (minute hour day month weekday).": "请输入有效的 5 字段 Cron 表达式(分 时 日 月 周)。",
    "Enter a valid URL (e.g., https://collector.example.com).": "输入有效的 URL(如 https://collector.example.com)。",
    "Enter a valid URL starting with https://": "输入以 https:// 开头的有效 URL",
    "Enter a valid URL.": "输入一个有效的 URL。",
    "Enter a valid date": "输入一个有效的日期",
    "Enter a valid domain (e.g., example.com or *.example.com)": "输入有效的域名(如 example.com 或 *.example.com)",
    "Enter a valid email address": "输入有效的电子邮件地址",
    "Enter a valid email address.": "请输入有效的电子邮件地址。",
    "Enter a valid phone number.": "请输入有效的电话号码。",
    "Enter address to calculate": "输入地址进行计算",
    "Enter amount": "输入金额",
    "Enter code manually": "手动输入代码",
    "Enter compact mode": "进入紧凑模式",
    "Enter custom amount": "输入自定义金额",
    "Enter doc id...": "输入文档 ID...",
    "Enter domain without protocol (e.g. example.gov or subdomain.example.gov).": "输入不带协议的域名(例如 example.gov 或 subdomain.example.gov)。",
    "Enter environment name": "输入环境名称",
    "Enter headers as key=value pairs separated by commas (e.g., Authorization=Bearer token).": "以逗号分隔的键值对形式输入 Header(例如,Authorization=Bearer token)。",
    "Enter phone number": "输入电话号码",
    "Enter prompt inputs": "输入提示词所需内容",
    "Enter resource attributes as key=value pairs separated by commas (e.g., deployment.environment=prod).": "以用逗号分隔的 key=value 形式输入资源属性(例如 deployment.environment=prod)。",
    "Enter search query...": "输入搜索关键词...",
    "Enter the base URL. Cowork appends /v1/logs and /v1/metrics automatically — if you include one of those suffixes, it will be removed on save.": "请输入基础 URL。Cowork 会自动追加 /v1/logs 和 /v1/metrics;如果你包含了其中任一后缀,保存时会被移除。",
    "Enter the code generated from the link sent to": "输入从发送至下方的链接生成的代码",
    "Enter the code sent via text to: {phoneNumber}": "输入发送至 {phoneNumber} 的文本代码",
    "Enter the code shown in Claude for {appName}.": "输入 Claude 中为 {appName} 显示的代码。",
    "Enter the code shown in the Claude add-in.": "输入 Claude 插件中显示的代码。",
    "Enter the code shown in the app.": "输入应用中显示的代码。",
    "Enter the distorted text exactly as shown in the image": "准确输入图中所示的扭曲文字",
    "Enter the email address of the primary owner of your organization.": "输入您组织主要所有者的电子邮箱地址。",
    "Enter the link for an Outline document.": "输入 Outline 文档的链接。",
    "Enter the name to appear on your invoices.": "输入要显示在发票上的名称。",
    "Enter the verification code sent to": "输入发送至以下地址的验证码",
    "Enter this verification code where you first tried to sign in": "在您最初尝试登录的地方输入此验证码",
    "Enter to continue{sep}Esc to skip": "按 Enter 继续{sep}按 Esc 跳过",
    "Enter to send{sep}Esc to skip": "按 Enter 发送{sep}按 Esc 跳过",
    "Enter two words, pick a category, and watch Claude generate concepts for your next project": "输入两个词,选个类别,看 Claude 为您的下一个项目生成概念",
    "Enter verification code": "输入验证码",
    "Enter your API key…": "输入您的 API 密钥……",
    "Enter your Canvas domain (e.g., ‘https://school.instructure.com’ for hosted Canvas or ‘https://canvas.myschool.edu’ for self-hosted)": "输入您的 Canvas 域名(例如托管在 Canvas 使用 ‘https://school.instructure.com’ ,自托管使用 ‘https://canvas.myschool.edu’)",
    "Enter your Outline API key": "输入您的 Outline API 密钥",
    "Enter your billing address to see the total.": "输入您的账单地址以查看总额。",
    "Enter your billing details for invoicing.": "输入您的发票开具财务明细。",
    "Enter your birthdate": "输入您的出生日期",
    "Enter your email": "输入您的邮箱",
    "Enter your full name": "输入您的全名",
    "Enter your name": "输入您的姓名",
    "Enter your name to continue": "输入您的姓名以继续",
    "Enter your organization’s domain name to begin the verification process.": "输入您组织的域名以开始验证过程。",
    "Enter your phone number to get a verification code": "输入您的手机号码以获取验证码",
    "Enter your turn": "输入您的轮次",
    "Enter your work email to get started. We'll send you a sign-in link.": "输入您的工作邮箱以开始。我们将向您发送登录链接。",
    "Entered plan mode": "已进入计划模式",
    "Entering plan mode": "进入计划模式",
    "Enterprise": "企业版",
    "Enterprise Nonprofit purchase contract": "企业非营利组织购买合同",
    "Enterprise authentication is currently down": "企业版身份验证目前不可用",
    "Enterprise deployment for the Claude desktop app": "桌面版 Claude 应用程序的企业部署",
    "Enterprise is not available for this account.": "此账户不可使用 Enterprise。",
    "Enterprise plan": "Enterprise 方案",
    "Enterprise plans cannot reduce total seat count": "Enterprise 方案无法减少总席位数量",
    "Enterprise plans require a work email. Try your company address.": "企业方案需要使用工作邮箱。请尝试使用您的公司邮箱地址。",
    "Enterprise purchase contract": "企业购买合同",
    "Enterprise search across your organization": "在您的组织中进行企业搜索",
    "Enterprise support tickets are routed directly to our high-priority support queue.": "企业版支持工单会被直接路由至我们的高优先级支持队列。",
    "Enterprise upgrade is available after your free trial ends.": "免费试用结束后可升级到企业版。",
    "Enterprise upgrade isn't available in your billing region yet — contact sales to upgrade": "您所在的计费地区尚不支持企业版升级 —— 请联系销售进行升级",
    "Enterprise upgrade isn't available in your billing region yet — contact sales to upgrade.": "您所在的计费地区尚不支持企业版升级 —— 请联系销售进行升级。",
    "Enterprise upgrades are currently only available for USD subscriptions.": "企业版升级目前仅适用于美元订阅。",
    "Enterprise upgrades are not available yet.": "企业版升级暂不可用。",
    "Entire repository": "整个仓库",
    "Entity ID": "实体 ID",
    "Entropy as noir detective story": "将熵包装成黑色侦探故事",
    "Environment": "环境",
    "Environment API not available.": "环境 API 不可用。",
    "Environment Variables": "环境变量",
    "Environment actions": "环境操作",
    "Environment archived.": "环境已归档。",
    "Environment at capacity": "环境已满负荷",
    "Environment deleted.": "环境已删除。",
    "Environment in use": "环境正在使用中",
    "Environment variables": "环境变量",
    "Error": "错误",
    "Error Code: LTI_LAUNCH_FAILED": "错误码:LTI_LAUNCH_FAILED (LTI 启动失败)",
    "Error Completing Authentication": "完成身份验证时出错",
    "Error Starting Authentication": "启动身份验证出错",
    "Error accessing shared data": "访问共享数据出错",
    "Error adding artifact to project: {error}": "将构件添加到项目时出错:{error}",
    "Error adding file to project": "向项目添加文件时出错",
    "Error checking requirements...": "检查要求时出错...",
    "Error creating subscription": "创建订阅出错",
    "Error details copied to clipboard. Paste in Slack (⌘V), then drag the zip from Finder into the message.": "错误详情已复制到剪贴板。请粘贴到 Slack(⌘V),然后将 Finder 中的 zip 拖入消息。",
    "Error details were sent to Claude.": "错误详情已发送给 Claude。",
    "Error downloading PDF": "下载 PDF 出错",
    "Error in Claude completion": "Claude 生成回复时报错",
    "Error loading extensions": "加载扩展程序出错",
    "Error loading shared content": "加载共享内容时出错",
    "Error rate": "错误率",
    "Error rate (30d)": "错误率(30 天)",
    "Error running artifact": "运行构件出错",
    "Error saving instructions, please try again later": "保存指令出错,请稍后再试",
    "Error saving text content": "保存文本内容时出错",
    "Error sending code. Double check your phone number.": "发送代码出错。请仔细检查您的电话号码。",
    "Error submitting support ticket, please try again later": "提交支持工单出错,请稍后再试",
    "Error updating project, please try again later": "更新项目出错,请稍后再试",
    "Errors detected in schema. Settings may not work as expected. See the <link>Claude Code settings docs</link>.": "在 Schema 中检测到错误。设置可能无法按预期工作。请参阅 <link>Claude Code 设置文档</link>。",
    "Establish credibility as the youngest": "以最年轻者的身份树立威信",
    "Estimated tax": "预估税费",
    "Estimated {taxLabel}": "预估 {taxLabel}",
    "Evaluate architecture tradeoffs": "评估架构权衡",
    "Evaluate my coding style based on a snippet": "根据代码片段评估我的编码风格",
    "Evening": "晚上",
    "Evening, {name}": "晚上好, {name}",
    "Event": "事件",
    "Event and filter can't be changed after creation. Delete and recreate the trigger to change them.": "创建后无法更改事件和过滤器。请删除并重新创建触发器以进行更改。",
    "Event stream": "事件流",
    "Events": "事件",
    "Every day at 9AM, check for new receipts and add them to my expense report": "每天上午 9 点,检查新收据并将其添加到我的费用报告中",
    "Every day at {approx, select, yes {~} other {}}{time}": "每天 {approx, select, yes {约} other {}}{time}",
    "Every day at {time}": "每天 {time}",
    "Every plan includes Claude Code, unlimited projects, and access to our latest models.": "每种方案都包含 Claude Code、无限制项目以及最新模型的访问权限。",
    "Every {day} at {approx, select, yes {~} other {}}{time}": "每周 {day} {approx, select, yes {约} other {}}{time}",
    "Every {day} at {time}": "每周 {day} 的 {time}",
    "Everyday": "每日/每天",
    "Everyday Tools and Utilities to Simplify Your Life with Claude": "利用 Claude 简化生活的日常工具与实用程序",
    "Everyday Utilities and Practical Tools Powered by Claude AI": "由 Claude AI 支持的日常实用程序",
    "Everyone": "所有人",
    "Everyone at {organizationName}": "{organizationName} 中的所有人",
    "Everyone in your organization can view and use this project": "您组织内的任何人都可查看并使用此项目",
    "Everything in Free and:": "包含 Free 版的所有内容,以及:",
    "Everything in Free, plus:": "包含 Free 版的所有内容,外加:",
    "Everything in Pro, plus:": "包含 Pro 的所有功能,此外还包括:",
    "Everything in Research Labs seats, plus:": "包含 Research Labs 席位中的所有内容,另外还有:",
    "Everything in Standard": "Standard 包含的所有内容",
    "Everything in Standard Labs seats, plus:": "标准实验室席位的所有内容,以及:",
    "Everything in Standard Nonprofit seats, plus:": "包含标准非营利版席位的所有功能,此外还包括:",
    "Everything in Standard seats, plus:": "标准席位的所有功能,加上:",
    "Everything in {previousPlan}, plus:": "{previousPlan} 中的所有内容,加上:",
    "Everything on this page was built in Claude Code.": "此页面上的一切都是在 Claude Code 中构建的。",
    "Everything we discuss stays private, and while I excel at coursework, I can help with much more.": "我们讨论的所有内容都会保持私密。虽然我擅长课程辅导,我还能帮您完成更多工作。",
    "Examine how fermentation discoveries changed ancient diets": "研究发酵发现如何改变古代饮食",
    "Examine nature phenomena": "考察自然现象",
    "Example": "示例/例子",
    "Example project": "示例项目",
    "Example request": "示例请求",
    "Example skills": "技能示例",
    "Example writing for style analysis": "用于风格分析的示例写作",
    "Example:\nThis folder contains marketing campaign briefs written for external agencies\nTone: direct and professional, not chatty\nKeep deliverables and timelines in a table format": "示例:\n此文件夹包含为外部代理机构编写的营销活动简报\n语气:直接且专业,不要闲聊\n以表格格式保留交付物和时间线",
    "Example: {taskTitle}": "示例:{taskTitle}",
    "Examples": "案例",
    "Excel": "Excel",
    "Execute JavaScript": "执行 JavaScript",
    "Execution allowed by:": "执行允许者:",
    "Existing Project Found": "发现现有项目",
    "Existing tasks": "现有任务",
    "Exit compact mode": "退出紧凑模式",
    "Exit fullscreen": "退出全屏",
    "Exit game": "退出游戏",
    "Exit incognito": "退出隐身模式",
    "Exit presentation mode": "退出演示模式",
    "Exit selection mode": "退出选择模式",
    "Exit summary view": "退出摘要视图",
    "Expand": "展开",
    "Expand all hidden lines": "展开所有隐藏行",
    "Expand description": "展开描述",
    "Expand folder {name}": "展开文件夹 {name}",
    "Expand lines above": "展开上方几行",
    "Expand lines below": "展开下方几行",
    "Expand navigation": "展开导航",
    "Expand plan": "展开计划",
    "Expand preview": "展开预览",
    "Expand {count, plural, one {# hidden line} other {# hidden lines}}": "展开 {count, plural, one {# 行隐藏行} other {# 行隐藏行}}",
    "Expand {count, plural, one {# line} other {# lines}} above": "展开上方 {count, plural, one {# 行} other {# 行}}",
    "Expand {count, plural, one {# line} other {# lines}} below": "展开下方 {count, plural, one {# 行} other {# 行}}",
    "Expand {count, plural, one {# step} other {# steps}}": "展开 {count, plural, one {# 个步骤} other {# 个步骤}}",
    "Expand {name}": "展开 {name}",
    "Expenses": "支出/费用",
    "Experience entertainment reimagined with Claude-created games and puzzles. From brain-teasing challenges and strategic games to interactive adventures and casual fun, discover a diverse collection of AI-powered entertainment. Perfect for quick breaks or extended gaming sessions, these games combine intelligent gameplay with engaging experiences.": "通过由 Claude 创作的游戏和谜题体验重新构想的娱乐。从极具挑战的烧脑游戏和策略游戏到互动冒险和休闲乐趣,探索多样化的 AI 驱动娱乐集合。这些游戏非常适合短暂小憩或长时间游玩,将智能化玩法与引人引人入胜的体验相结合。",
    "Experience rate limits and context windows as a different tier. You may be defaulted into a tier — use 'Unset' to use your real tier for 30 days.": "体验另一个等级的频率限制和上下文窗口。您可能会被默认分配到一个等级——使用“取消设置”以在 30 天内使用您的真实等级。",
    "Experiences": "体验",
    "Experimental": "实验性",
    "Expiration": "有效期/到期时间",
    "Expired": "已过期",
    "Expired Code": "验证码已过期",
    "Expires": "过期",
    "Expires 1 year from purchase date": "自购买之日起1年到期",
    "Expires in": "将在以下时间后到期",
    "Expires on {date}": "将于 {date} 过期",
    "Expires {date}": "于 {date} 到期",
    "Expiring soon": "即将到期",
    "Explain": "解释",
    "Explain a code pattern": "解释一种代码模式",
    "Explain a complex topic simply": "简单解释复杂主题",
    "Explain a concept in simple terms": "用简单的术语解释一个概念",
    "Explain a concept simply": "简单解释一个概念",
    "Explain a consulting framework": "解释一个咨询框架",
    "Explain a finance concept": "解释一个金融概念",
    "Explain a hard concept": "解释一个难懂的概念",
    "Explain a legal concept in plain English — I'll name it; cover when it typically comes up and how it affects the parties involved.": "用通俗英语解释一个法律概念,我会告诉你名称;请说明它通常会在什么时候出现,以及它会如何影响相关各方。",
    "Explain a programming concept": "解释一个编程概念",
    "Explain approval workflows": "解释审批工作流",
    "Explain attribution models": "解释归因模型",
    "Explain compound interest (or any topic I name) as simply as possible, then ask me a question to check I've understood it.": "尽可能简单地解释复利(或我指定的任何主题),然后问我一个问题,检查我是否已经理解。",
    "Explain how to design an approval workflow that scales — covering sequential vs. parallel approvals and how to keep it from becoming a bottleneck.": "解释如何设计一个可扩展的审批工作流,包括串行审批与并行审批的区别,以及如何避免它成为瓶颈。",
    "Explain something clearly": "清楚地解释某件事",
    "Explain why the sky changes color at sunset": "解释为什么天空在日落时会变色",
    "Explain why this finding is being dismissed.": "解释为何拒绝此发现。",
    "Explain why this risk is being accepted and any mitigating factors.": "解释为何接受此风险以及任何缓解因素。",
    "Explain, then quiz me": "先解释,再考我",
    "Explanatory": "解释性",
    "Explore a 3D forest": "探索 3D 森林",
    "Explore a fascinating concept": "探索一个迷人的概念",
    "Explore ancient wisdom": "探索古代智慧",
    "Explore architectural concepts": "探究建筑概念",
    "Explore career transitions": "探索职业转型",
    "Explore cognitive biases": "探索认知偏见",
    "Explore data, run analysis, clean up your code.": "探索数据、运行分析、清理代码。",
    "Explore design directions": "探索设计方向",
    "Explore language evolution": "探索语言演变",
    "Explore logical fallacies": "探索逻辑谬误",
    "Explore mathematical paradoxes": "探究数学悖论",
    "Explore memory techniques": "探索记忆技巧",
    "Explore my dataset": "探索我的数据集",
    "Explore other plans": "查看其他方案",
    "Explore our acceptable use guidelines and best practices.": "探索我们的许可使用指南和最佳实践。",
    "Explore plans": "探索计划",
    "Explore productivity systems": "探索生产力系统",
    "Explore psychological phenomena": "探索心理现象",
    "Explore thought experiments": "探索思想实验",
    "Explore visual directions": "探索视觉方向",
    "Explore what's next": "探索下一步",
    "Explore why we even developed singing (is it just happy noises?)": "探讨人类为何演化出歌唱能力(纯粹是开心的声音吗?)",
    "Explore →": "探索 →",
    "Explorer": "资源管理器",
    "Export": "导出",
    "Export CSV": "导出 CSV",
    "Export Spend Report": "导出支出报告",
    "Export all findings": "导出所有发现项",
    "Export all users": "导出所有用户",
    "Export as zip": "导出为 zip",
    "Export audit logs": "导出审计日志",
    "Export conversations": "导出对话",
    "Export data": "导出数据",
    "Export finding": "导出发现",
    "Export logs": "导出日志",
    "Export session": "导出会话",
    "Export started": "已开始导出",
    "Export to Google Drive failed. You can try again.": "导出到 Google 云端硬盘失败。您可以重试。",
    "Export to file": "导出到文件",
    "Export transcript to Downloads": "导出转录内容到下载文件夹",
    "Export will include": "导出内容将包含",
    "Export your conversation data": "导出您的对话数据",
    "Export {orgName}’s data": "导出 {orgName} 的数据",
    "Exporting: {numExported} / {totalConversations}": "正在导出:{numExported} / {totalConversations}",
    "Exporting: {numExported} / {totalConversations} ({numFailed} failed)": "正在导出:{numExported} / {totalConversations}({numFailed} 失败)",
    "Exporting…": "正在导出…",
    "Exports all members, not just the filtered view.": "导出所有成员,而不仅仅是过滤后的视图。",
    "Extend how Claude performs tasks with ready-to-use workflows. Customize plugins for your company's tools, data, and best practices.": "使用现成的流程扩展 Claude 执行任务的方式。为公司的工具、数据和最佳实践自定义插件。",
    "Extended": "扩展",
    "Extended thinking": "扩展思考",
    "Extended thinking for complex work": "为复杂工作提供深度思考",
    "Extended thinking is required for this project.": "本项目需要扩展思考。",
    "Extension Developer": "扩展开发者",
    "Extension Settings": "扩展程序设置",
    "Extension added to global blocklist": "扩展程序已添加至全局阻止列表",
    "Extension deleted": "扩展程序已删除",
    "Extension deleted.": "扩展程序已删除。",
    "Extension not found": "未找到扩展",
    "Extension removed from global blocklist": "扩展程序已从全局黑名单中移除",
    "Extension uploaded": "扩展程序已上传",
    "Extension uploaded.": "扩展程序已上传。",
    "Extension version deleted": "扩展程序版本已删除",
    "Extension version uploaded": "已上传扩展程序版本",
    "Extensions": "扩展程序/外挂",
    "External service that sends SMS messages.": "发送短信的外部服务。",
    "External services and tools connected via the Model Context Protocol (MCP).": "通过模型上下文协议 (MCP) 连接的外部服务和工具。",
    "External services pointing at this URL will stop reaching Conway. \"{label}\" will be permanently removed.": "指向此 URL 的外部服务将停止访问 Conway。\"{label}\" 将被永久删除。",
    "Extra Usage": "额外用量",
    "Extra high": "特别高",
    "Extra usage": "额外用量",
    "Extra usage (beyond your subscription) is billed at the end of the billing cycle": "额外用量(超出您订阅的部分)将在计费周期结束时结算",
    "Extra usage ({count})": "额外用量 ({count})",
    "Extra usage available at API rates": "额外用量可按 API 费率购买",
    "Extra usage draws down as you go. Good for occasional busy days.": "额外用量随用随减。适用于偶尔繁忙的日子。",
    "Extra usage has been turned off for your account": "您的账户已关闭额外用量功能",
    "Extra usage has been turned off org-wide": "组织范围内已关闭额外用量",
    "Extra usage has been turned on": "额外用量已开启",
    "Extra usage is paused until the limit is increased or the next billing cycle.": "额外用量已暂停,直到限额调高或进入下一个计费周期。",
    "Extra usage is required": "需要额外用量",
    "Extra usage requests": "额外用量申请",
    "Extra usage requests disabled": "额外用量请求已禁用",
    "Extra usage requests enabled": "已启用额外用量请求",
    "Extract colors that match your image’s vibe": "提取与您图片氛围匹配的颜色",
    "Extract page text": "提取页面文本",
    "Extract the most actionable insights from my meeting notes that I’m not acting on": "从我的会议记录中提取那些我尚未付诸行动但最具执行价值的见解",
    "FAQs": "常见问题",
    "FCF": "FCF (自由现金流)",
    "Failed": "失败",
    "Failed to add GitHub trigger. You can try again.": "添加 GitHub 触发器失败。你可以重试。",
    "Failed to add MCP resource": "添加 MCP 资源失败",
    "Failed to add connector": "添加连接器失败",
    "Failed to add connector. You can try again.": "添加连接器失败。您可以重试。",
    "Failed to add extension to blocklist: {error}": "无法将扩展添加到屏蔽列表:{error}",
    "Failed to add marketplace.": "添加市场失败。",
    "Failed to add repository. You can try again.": "添加代码仓库失败。您可以重试。",
    "Failed to add the allow rule for this credential. The credential was rolled back.": "无法为此凭据添加允许规则。该凭据已回滚。",
    "Failed to add the allow rule. The credential was created but could not be rolled back — remove it from the Credentials tab if needed.": "添加允许规则失败。凭据已创建,但无法回滚——如有需要,请在“凭据”标签页中将其删除。",
    "Failed to add {count, plural, one {# repository} other {# repositories}}. You can try again.": "无法添加 {count, plural, one {# 个代码仓库} other {# 个代码仓库}}。您可以重试。",
    "Failed to approve join request. You can try again.": "批准加入请求失败。您可以重试。",
    "Failed to archive environment. You can try again.": "归档环境失败。请重试。",
    "Failed to archive project. You can try again.": "归档项目失败。您可以重试。",
    "Failed to cancel scan. You can try again.": "取消扫描失败。您可以重试。",
    "Failed to cancel the subscription downgrade. Please try again or contact support.": "取消订阅降级失败。请重试或联系支持人员。",
    "Failed to change role. You can try again.": "更改角色失败。您可以重试。",
    "Failed to change subscription. You can try again.": "更改订阅失败。您可以重试。",
    "Failed to check domain verification status.": "检查域名验证状态失败。",
    "Failed to check for extension updates": "检查扩展程序更新失败",
    "Failed to check share status. You can try again.": "检查共享状态失败。您可以重试。",
    "Failed to clear cache. You can try again.": "清理缓存失败。您可以重试。",
    "Failed to clear memory. You can try again.": "清除记忆失败。您可以重试。",
    "Failed to clear storage. Please try again.": "清除存储失败。请重试。",
    "Failed to connect to GitHub": "连接 GitHub 失败",
    "Failed to connect to Google Drive": "连接 Google 云端硬盘失败",
    "Failed to connect to SSH server. Check your connection and try again.": "无法连接到 SSH 服务器。请检查您的连接并重试。",
    "Failed to connect. You can try again.": "连接失败。您可以重试。",
    "Failed to continue session on the web.": "在网页端继续会话失败。",
    "Failed to copy to clipboard.": "复制到剪贴板失败。",
    "Failed to create GHE configuration. Check your inputs and try again.": "创建 GHE 配置失败。请检查您的输入并重试。",
    "Failed to create coding session. You can try again.": "创建编码会话失败。您可以重试。",
    "Failed to create egress credential. Check your inputs and try again.": "创建出口凭据失败。请检查输入后重试。",
    "Failed to create environment. You can try again.": "创建环境失败。你可以重试。",
    "Failed to create group spend limit. You can try again.": "创建分组支出限额失败。您可以重试。",
    "Failed to create marketplace.": "创建市场失败。",
    "Failed to create marketplace. You can try again.": "创建市场失败。您可以重试。",
    "Failed to create memory": "创建记忆失败",
    "Failed to create organization. You can try again.": "创建组织失败。您可以重试。",
    "Failed to create pool. You can try again.": "创建池失败。您可以重试。",
    "Failed to create routine. You can try again.": "创建常规任务失败。您可以重试。",
    "Failed to create scheduled task. You can try again.": "创建计划任务失败。您可以重试。",
    "Failed to create self-hosted environment. You can try again.": "创建自托管环境失败。您可以重试。",
    "Failed to create service key. You can try again.": "创建服务密钥失败。您可以重试。",
    "Failed to create style. Please try again.": "创建样式失败。请重试。",
    "Failed to create subscription": "创建订阅失败",
    "Failed to create subscription. Please try again.": "建立订阅失败。请重试。",
    "Failed to create upstream credential. Check your inputs and try again.": "创建上游凭据失败。请检查输入并重试。",
    "Failed to delete GHE configuration. You can try again.": "删除 GHE 配置失败。您可以重试。",
    "Failed to delete SSH configuration.": "删除 SSH 配置失败。",
    "Failed to delete agent. You can try again.": "删除智能体失败。您可以重试。",
    "Failed to delete credential. If a rule references it, delete the rule first.": "删除凭据失败。如果有规则引用了它,请先删除该规则。",
    "Failed to delete domain": "删除域名失败",
    "Failed to delete environment. You can try again.": "无法删除环境。您可以重试。",
    "Failed to delete extension version: {error}": "删除扩展程序版本失败:{error}",
    "Failed to delete extension. You can try again.": "删除扩展程序失败。您可以重试。",
    "Failed to delete extension: {error}": "删除扩展程序失败:{error}",
    "Failed to delete plugin.": "删除插件失败。",
    "Failed to delete pool. You can try again.": "删除池失败。您可以重试。",
    "Failed to delete routine.": "删除常规任务失败。",
    "Failed to delete routine. You can try again.": "删除例程失败。你可以重试。",
    "Failed to delete rule. You can try again.": "删除规则失败。你可以重试。",
    "Failed to delete schedule. You can try again.": "删除计划失败。你可以重试。",
    "Failed to delete scheduled task.": "删除计划任务失败。",
    "Failed to delete scheduled task. You can try again.": "删除计划任务失败。您可以重试。",
    "Failed to delete service. You can try again.": "删除服务失败。您可以重试。",
    "Failed to delete session. You can try again.": "删除会话失败。请重试。",
    "Failed to delete settings": "删除设置失败",
    "Failed to delete source.": "删除来源失败。",
    "Failed to delete style. Please try again.": "删除样式失败。请重试。",
    "Failed to delete token. You can try again.": "删除令牌失败。你可以重试。",
    "Failed to delete trial.": "删除试用失败。",
    "Failed to delete upstream credential. You can try again.": "删除上游凭据失败。您可以重试。",
    "Failed to delete webhook. You can try again.": "删除 webhook 失败。你可以重试。",
    "Failed to delete. You can try again.": "删除失败。您可以重试。",
    "Failed to disable Dispatch notifications": "禁用 Dispatch 通知失败",
    "Failed to disable email notifications": "无法关闭邮件通知",
    "Failed to disable push notifications": "禁用推送通知失败",
    "Failed to disable security review. You can try again.": "禁用安全审查失败。您可以重试。",
    "Failed to disconnect devices. You can try again.": "断开设备连接失败。您可以重试。",
    "Failed to disconnect from server": "断开与服务器的连接失败",
    "Failed to disconnect the session. You can try again.": "断开会话失败。您可以重试。",
    "Failed to dismiss finding. You can try again.": "关闭发现失败。您可以重试。",
    "Failed to dismiss interview. You can try again.": "关闭访谈失败。您可以重试。",
    "Failed to download and open file": "下载并打开文件失败",
    "Failed to download files": "下载文件失败",
    "Failed to duplicate routine.": "复制例程失败。",
    "Failed to duplicate routine. You can try again.": "复制例程失败。你可以重试。",
    "Failed to edit memory": "编辑记忆失败",
    "Failed to edit style. Please try again.": "样式编辑失败。请重试。",
    "Failed to enable Dispatch notifications": "启用 Dispatch 通知失败",
    "Failed to enable Dispatch notifications.": "启用 Dispatch 通知失败。",
    "Failed to enable email notifications": "开启邮件通知失败",
    "Failed to enable push notifications": "启用推送通知失败",
    "Failed to enable security review. You can try again.": "启用安全审查失败。您可以重试。",
    "Failed to enable skill. You can try again.": "启用技能失败。您可以重试。",
    "Failed to end interview. You can try again.": "结束访谈失败。您可以重试。",
    "Failed to end session. You can try again.": "结束会话失败。您可以重试。",
    "Failed to export session. You can try again.": "导出回话失败。您可以重试。",
    "Failed to export team data. You can try again.": "导出团队数据失败。您可以重试。",
    "Failed to extract file contents.": "提取文件内容失败。",
    "Failed to fetch": "获取失败",
    "Failed to fetch <b>{title}</b>": "获取 <b>{title}</b> 失败",
    "Failed to force-kill runner. You can try again.": "强制终止运行器失败。您可以重试。",
    "Failed to generate service key. You can try again.": "生成服务密钥失败。您可以重试。",
    "Failed to generate token. You can try again.": "生成令牌失败。你可以重试。",
    "Failed to grant connector access.": "授予连接器访问权限失败。",
    "Failed to handle file: {error}": "处理文件失败:{error}",
    "Failed to install plugin.": "安装插件失败。",
    "Failed to install plugin. You can try again.": "安装插件失败。您可以重试。",
    "Failed to install unpacked extension": "安装未打包的扩展程序失败",
    "Failed to issue key. You can try again.": "密钥签发失败。您可以重试。",
    "Failed to join organization. You can try again.": "加入组织失败。您可以重试。",
    "Failed to load": "加载失败",
    "Failed to load Connectors": "加载连接器失败",
    "Failed to load MCP server configurations": "加载 MCP 服务器配置失败",
    "Failed to load environment variables.": "加载环境变量失败。",
    "Failed to load extension settings": "加载扩展设置失败",
    "Failed to load file content": "加载文件内容失败",
    "Failed to load file.": "加载文件失败。",
    "Failed to load groups. Try reopening this menu.": "加载分组失败。请尝试重新打开此菜单。",
    "Failed to load local file.": "加载本地文件失败。",
    "Failed to load marketplaces": "加载市场失败",
    "Failed to load members. <link>Retry</link>.": "加载成员失败。<link>重试</link>。",
    "Failed to load organization plugins. This desktop build is missing plugin support — try reinstalling the application.": "加载组织插件失败。此桌面版本缺少插件支持 — 请尝试重新安装应用程序。",
    "Failed to load plugin files.": "加载插件文件失败。",
    "Failed to load plugins from this marketplace.": "无法从此市场加载插件。",
    "Failed to load pricing. You can try again.": "加载价格失败。您可以重试。",
    "Failed to load projects": "加载项目失败",
    "Failed to load prompt from URL": "无法从 URL 加载提示词",
    "Failed to load routines.": "加载常规任务失败。",
    "Failed to load run history": "加载运行历史失败",
    "Failed to load scan configuration. You can try again.": "加载扫描配置失败。你可以重试。",
    "Failed to load scheduled tasks.": "加载计划任务失败。",
    "Failed to load session.": "加载会话失败。",
    "Failed to load skill files.": "加载技能文件失败。",
    "Failed to load submissions.": "加载提交内容失败。",
    "Failed to load the payment form. Refresh and try again.": "加载支付表单失败。请刷新后重试。",
    "Failed to load value summary. Adjust your inputs below or try refreshing the page.": "加载价值摘要失败。请调整下方输入,或尝试刷新页面。",
    "Failed to load value summary. Try refreshing the page.": "加载价值摘要失败。请尝试刷新页面。",
    "Failed to load version. Go back to current to continue editing.": "加载版本失败。请回到当前版本以继续编辑。",
    "Failed to load your servers.": "加载你的服务器失败。",
    "Failed to move chats. You can try again.": "移动聊天失败。您可以重试。",
    "Failed to pause subscription": "暂停订阅失败",
    "Failed to preview style. Please try again.": "预览样式失败。请重试。",
    "Failed to process image. You can try again.": "处理图片失败。您可以重试。",
    "Failed to process quick entry": "处理快速入口失败",
    "Failed to read file. You can try again.": "读取文件失败。您可以重试。",
    "Failed to read memory": "读取记忆失败",
    "Failed to read plugin file. You can try again.": "读取插件文件失败。您可以重试。",
    "Failed to read skill file.": "读取技能文件失败。",
    "Failed to record consent.": "记录同意失败。",
    "Failed to refresh tools list. You can try again.": "刷新工具列表失败。你可以重试。",
    "Failed to regenerate invite link. You can try again.": "重新生成邀请链接失败。您可以重试。",
    "Failed to release runner. You can try again.": "释放执行器失败。您可以重试。",
    "Failed to remove GitHub trigger. You can try again.": "移除 GitHub 触发器失败。你可以重试。",
    "Failed to remove browser approval. You can try again.": "移除浏览器审批失败。您可以重试。",
    "Failed to remove chat from project": "从项目中移除聊天失败",
    "Failed to remove domain verification.": "移除域名验证失败。",
    "Failed to remove extension from blocklist: {error}": "无法将扩展从屏蔽列表中移除:{error}",
    "Failed to remove group spend limit. You can try again.": "移除分组支出限额失败。您可以重试。",
    "Failed to remove group spend limits. You can try again.": "移除分组支出限额失败。您可以重试。",
    "Failed to remove marketplace.": "移除市场失败。",
    "Failed to remove member. Please refresh the page and try again.": "移除成员失败。请刷新页面重试。",
    "Failed to remove repository.": "移除仓库失败。",
    "Failed to remove repository. You can try again.": "移除仓库失败。您可以重试。",
    "Failed to remove server": "移除服务器失败",
    "Failed to remove tool approval. You can try again.": "移除工具审批失败。请重试。",
    "Failed to rename project. Please try again.": "重命名项目失败。请重试。",
    "Failed to reset Code onboarding.": "重置 Code 引导流程失败。",
    "Failed to reset account. You can try again.": "重置账户失败。您可以重试。",
    "Failed to reset activation checklist.": "重置激活清单失败。",
    "Failed to reset cowork trial state.": "重置 Cowork 试用状态失败。",
    "Failed to reset onboarding.": "重置新手指引失败。",
    "Failed to resolve URL. Make sure the MCP server supports this URL.": "无法解析 URL。请确保 MCP 服务器支持此 URL。",
    "Failed to restore finding. You can try again.": "恢复发现失败。请重试。",
    "Failed to restore version": "还原版本失败",
    "Failed to retrieve feature adoption data": "获取功能采用数据失败",
    "Failed to retry session. You can try again.": "重试会话失败。您可以再试一次。",
    "Failed to revoke invitation. Please refresh the page and try again.": "撤销邀请失败。请刷新页面后重试。",
    "Failed to revoke key. You can try again.": "撤销密钥失败。您可以重试。",
    "Failed to revoke service key. You can try again.": "无法撤销服务密钥,您可以重试。",
    "Failed to rotate secret. You can try again.": "轮换密钥失败。你可以重试。",
    "Failed to run": "运行失败",
    "Failed to run scheduled task. You can try again.": "运行计划任务失败。您可以重试。",
    "Failed to save Node.js setting": "保存 Node.js 设置失败",
    "Failed to save SCIM provisioning settings.": "保存 SCIM 配置设置失败。",
    "Failed to save SSH configuration.": "保存 SSH 配置失败。",
    "Failed to save auto-update setting": "保存自动更新设置失败",
    "Failed to save changes.": "保存更改失败。",
    "Failed to save changes. You can try again.": "保存更改失败。你可以重试。",
    "Failed to save configuration": "保存配置失败",
    "Failed to save environment variables.": "保存环境变量失败。",
    "Failed to save instructions. You can try again.": "保存指令失败。请重试。",
    "Failed to save rule. Check your inputs and try again.": "保存规则失败。请检查输入后重试。",
    "Failed to save schedule. You can try again.": "保存计划失败。你可以重试。",
    "Failed to save scheduled task. You can try again.": "保存计划任务失败。您可以重试。",
    "Failed to save settings": "保存设置失败",
    "Failed to save sites to your allowlist.": "无法将网站保存到您的允许列表。",
    "Failed to save skill. You can try again.": "保存技能失败。您可以重试。",
    "Failed to save team settings. You can try again.": "保存团队设置失败。您可以重试。",
    "Failed to save tool configuration. Please try again.": "保存工具配置失败。请重试。",
    "Failed to save webhook. You can try again.": "保存 webhook 失败。你可以重试。",
    "Failed to save. You can try again.": "保存失败。您可以重试。",
    "Failed to search memory": "搜索记忆失败",
    "Failed to send join request. You can try again.": "发送加入请求失败,请重试。",
    "Failed to send message. You can try again.": "发送消息失败。您可以重试。",
    "Failed to send response. You can try again.": "发送响应失败。您可以重试。",
    "Failed to send upgrade request. You can try again.": "发送升级请求失败。您可以重试。",
    "Failed to set up billing infrastructure": "设置账单设施失败",
    "Failed to set up billing infrastructure. You can try again.": "设置账单基础设施失败。您可以重试。",
    "Failed to set usage level. You can try again.": "设置使用等级失败。您可以重试。",
    "Failed to share artifact.": "共享工件失败。",
    "Failed to share scan. You can try again.": "分享扫描失败。您可以重试。",
    "Failed to shift trial start. Make sure a trial exists.": "变更试用开始日期失败。请确保试用存在。",
    "Failed to start Claude's workspace": "启动 Claude 工作空间失败",
    "Failed to start checkout. Please try again.": "无法开始结账。请重试。",
    "Failed to start free trial. Please try again.": "启动免费试用失败。请重试。",
    "Failed to start interview. You can try again.": "开启访谈失败。您可以重试。",
    "Failed to start run.": "启动运行失败。",
    "Failed to start run. You can try again.": "启动运行失败。你可以重试。",
    "Failed to start scan. You can try again.": "启动扫描失败。您可以重试。",
    "Failed to start scheduled task. You can try again.": "启动计划任务失败。您可以重试。",
    "Failed to stop sharing. You can try again.": "停止共享失败。您可以重试。",
    "Failed to terminate session. You can try again.": "结束会话失败。您可以重试。",
    "Failed to transfer ownership: {errorMessage}": "移交所有权失败:{errorMessage}",
    "Failed to triage finding. You can try again.": "分流发现项失败。你可以重试。",
    "Failed to trigger sync.": "触发同步失败。",
    "Failed to turn off extra usage": "关闭额外用量失败",
    "Failed to turn on extra usage": "开启额外用量失败",
    "Failed to unarchive project. You can try again.": "取消归档项目失败。你可以重试。",
    "Failed to uninstall plugin.": "卸载插件失败。",
    "Failed to uninstall skill. You can try again.": "卸载技能失败。您可以重试。",
    "Failed to unlink from project. You can try again.": "与项目断开链接失败。您可以重试。",
    "Failed to unpublish. Please try again.": "取消发布失败。请重试。",
    "Failed to update API token. You can try again.": "更新 API 令牌失败。你可以重试。",
    "Failed to update Analytics API settings.": "更新分析 API 设置失败。",
    "Failed to update Claude Code Security setting. You can try again.": "更新 Claude Code 安全设置失败。请稍后重试。",
    "Failed to update Claude Code Web setting. You can try again.": "更新 Claude Code 网页端设置失败。您可以重试。",
    "Failed to update Claude Security setting. You can try again.": "更新 Claude Security 设置失败。你可以重试。",
    "Failed to update Claude in Slack settings.": "更新 Slack 中的 Claude 设置失败。",
    "Failed to update Compliance API settings.": "更新合规性 API 设置失败。",
    "Failed to update Cowork settings.": "无法更新 Cowork 设置。",
    "Failed to update GHE configuration. Check your inputs and try again.": "更新 GHE 配置失败。请检查输入并重试。",
    "Failed to update GitHub trigger. You can try again.": "更新 GitHub 触发器失败。你可以重试。",
    "Failed to update IP allowlist settings. You can try again.": "更新 IP 允许列表设置失败。您可以重试。",
    "Failed to update IP allowlist. You can try again.": "更新 IP 允许列表失败。您可以重试。",
    "Failed to update SMS settings. You can try again.": "更新短信设置失败。您可以重试。",
    "Failed to update SSO settings. You can try again.": "更新 SSO 设置失败。您可以重试。",
    "Failed to update access for \"{groupName}\".": "更新 \"{groupName}\" 的访问权限失败。",
    "Failed to update analytics setting. You can try again.": "更新分析设置失败。您可以重试。",
    "Failed to update auto-reload settings": "更新自动重载设置失败",
    "Failed to update auto-sync setting.": "更新自动同步设置失败。",
    "Failed to update browser extension settings.": "更新浏览器扩展设置失败。",
    "Failed to update bypass permissions setting.": "更新绕过权限设置失败。",
    "Failed to update code review configuration. You can try again.": "更新代码审查配置失败。您可以重试。",
    "Failed to update connector sharing setting.": "更新连接器共享设置失败。",
    "Failed to update default plugin preference.": "更新默认插件偏好设置失败。",
    "Failed to update domain settings.": "更新域名设置失败。",
    "Failed to update environment. You can try again.": "更新环境失败。你可以重试。",
    "Failed to update extension": "更新扩展程序失败",
    "Failed to update extra usage requests setting. You can try again.": "更新额外用量请求设置失败。您可以重试。",
    "Failed to update finding. You can try again.": "更新发现项失败。你可以重试。",
    "Failed to update installation preference.": "更新安装偏好失败。",
    "Failed to update invite link. You can try again.": "更新邀请链接失败。您可以重试。",
    "Failed to update location metadata setting.": "更新位置元数据设置失败。",
    "Failed to update marketplace.": "更新市场失败。",
    "Failed to update member invites setting. You can try again.": "更新成员邀请设置失败。您可以重试。",
    "Failed to update member seat tiers.": "更新成员席位等级失败。",
    "Failed to update member spend limit. You can try again.": "更新成员支出限额失败。您可以重试。",
    "Failed to update members.": "更新成员失败。",
    "Failed to update members. You can try again.": "更新成员失败。您可以重试。",
    "Failed to update monitoring settings. You can try again.": "更新监控设置失败。您可以重试。",
    "Failed to update organization name": "更新组织名称失败",
    "Failed to update payment method. Please try again.": "更新付款方式失败。请重试。",
    "Failed to update plugin state.": "更新插件状态失败。",
    "Failed to update plugin.": "更新插件失败。",
    "Failed to update quick web setup setting. You can try again.": "更新快速 Web 设置失败。您可以重试。",
    "Failed to update repository. You can try again.": "更新代码仓库失败。您可以重试。",
    "Failed to update routine. You can try again.": "更新例程失败。你可以重试。",
    "Failed to update schedule. You can try again.": "更新计划进度失败。您可以重试。",
    "Failed to update scheduled task. You can try again.": "更新计划任务失败。您可以重试。",
    "Failed to update session duration. You can try again.": "更新会话时长失败。您可以重试。",
    "Failed to update session sharing setting. You can try again.": "更新会话共享设置失败。您可以重试。",
    "Failed to update setting.": "更新设置失败。",
    "Failed to update setting. You can try again.": "更新设置失败。您可以重试。",
    "Failed to update settings.": "更新设置失败。",
    "Failed to update settings. You can try again.": "更新设置失败。您可以重试。",
    "Failed to update some members.": "更新部分成员失败。",
    "Failed to update spend limit. You can try again.": "更新支出限额失败。您可以重试。",
    "Failed to update spending default. You can try again.": "更新支出默认值失败。您可以重试。",
    "Failed to update tax information. Please try again.": "更新税务信息失败。请重试。",
    "Failed to update thumbs feedback setting.": "更新点赞反馈设置失败。",
    "Failed to upgrade subscription": "升级订阅失败",
    "Failed to upgrade to Enterprise.": "升级至 Enterprise 失败。",
    "Failed to upload attachment. You can try again.": "文件上传失败。您可以重试。",
    "Failed to upload extension. You can try again.": "上传扩展失败。您可以重试。",
    "Failed to upload extension: {error}": "上传扩展程序失败:{error}",
    "Failed to upload file {filename}. Project knowledge exceeds maximum. Remove files to continue.": "上传文件 {filename} 失败。项目知识库已超上限。请移除文件以继续。",
    "Failed to upload plugin. You can try again.": "上传插件失败。您可以重试。",
    "Failed to upload skill. You can try again.": "技能上传失败。您可以重试。",
    "Failed to upload “{fileName}”. The file format may not be supported or the file may be corrupted.": "上传\"{fileName}\"失败。文件格式可能不受支持或文件可能已损坏。",
    "Failed to upload “{fileName}”. You can try again.": "上传 “{fileName}” 失败。您可以重试。",
    "Failed to validate path.": "验证路径失败。",
    "Failed to {action} \"{connectorName}\". You can try again.": "{action} \"{connectorName}\" 失败,请重试。",
    "False finding": "误报",
    "False positive": "误报",
    "Fast": "快速",
    "Fast mode": "快速模式",
    "Fast mode couldn't be applied. You can try again.": "无法应用快速模式。你可以重试。",
    "Fast mode is only available in local sessions": "快速模式仅在本地会话中可用",
    "Fast mode is only available on Opus 4.6": "快速模式仅在 Opus 4.6 上可用",
    "Faster responses, higher cost. Opus 4.6 only.": "响应更快,成本更高。仅限 Opus 4.6。",
    "Fastest for quick answers": "获取回答速度最快",
    "Favicon": "网站图标",
    "Favicon verified": "网站图标已验证",
    "Favorite model": "常用模型",
    "Feature adoption": "功能采用情况",
    "Feature disabled": "功能已禁用",
    "Feature disabled by organization": "该功能已被组织禁用",
    "Feature gate not working the way you expect? The most common mistake in Statsig is to not set ‘Target Applications’ to include ‘Web Frontends’": "功能开关 (Feature gate) 的表现不如预期?Statsig 中最常见的错误是未将 ‘目标应用 (Target Applications)’ 设置为包含 ‘Web 前端 (Web Frontends)’",
    "Feature preview": "功能预览",
    "Feature prioritization framework": "功能优先级框架",
    "Feature requests ({count})": "功能请求({count})",
    "Featured artifacts": "精选构件",
    "Features": "功能",
    "Feb 7 deadline": "2 月 7 日截止日期",
    "Feedback": "反馈",
    "Feedback collection is not available for organizations with custom data retention policies.": "具有自定义数据保留策略的组织无法使用反馈收集功能。",
    "Feedback description": "反馈描述",
    "Feedback sent. If you''re working with Anthropic support, include the reference ID below.": "反馈已发送。如果你正在与 Anthropic 支持团队沟通,请附上下方的参考 ID。",
    "Fetch from {hostname}": "从 {hostname} 获取",
    "Fetch {url}": "获取 {url}",
    "Fetched": "已获取",
    "Fetched <b>{title}</b>": "已获取 <b>{title}</b>",
    "Fetching": "获取中",
    "Fetching config from this URL.": "正在从此 URL 获取配置。",
    "Fetching failed for one of the URLs. Please try again.": "其中一个 URL 获取失败。请重试。",
    "Fetching from site": "正在从站点获取",
    "Fetching from {hostname}": "正在从 {hostname} 获取",
    "Fetching page": "正在获取页面",
    "Fetching page...": "正在获取页面...",
    "Fetching repository...": "正在获取代码仓库...",
    "Fewer steps": "更少步骤",
    "Field": "字段",
    "File": "文件",
    "File access was denied.": "文件访问被拒绝。",
    "File actions": "文件操作",
    "File added to project": "文件已添加到项目",
    "File browsing is coming soon.": "文件浏览功能即将推出。",
    "File content": "文件内容",
    "File could not be opened.": "文件无法打开。",
    "File could not be read.": "无法读取文件。",
    "File could not be read. It may have been deleted or moved, or it lives outside the session folder.": "无法读取文件。它可能已被删除或移动,或者位于会话文件夹之外。",
    "File could not be saved.": "文件无法保存。",
    "File creation + code execution": "文件创建 + 代码执行",
    "File deletion will begin a few minutes after submission.": "提交后几分钟内将开始删除文件。",
    "File exceeds 30 MB limit. Choose a smaller file.": "文件超出 30 MB 限制,请选择更小的文件。",
    "File is not a valid plugin archive. Rename or re-compress and try again.": "文件不是有效的插件压缩包。请重命名或重新压缩后重试。",
    "File is outside allowed folders.": "文件位于允许的文件夹之外。",
    "File is too large": "文件过大",
    "File is too large to export. Maximum size is 30 MB.": "文件太大无法导出。最大大小为 30 MB。",
    "File manager": "文件管理器",
    "File not found": "文件未找到",
    "File not found.": "未找到文件。",
    "File previews are not supported for this file type": "此文件类型不支持文件预览",
    "File requirements": "文件要求",
    "File size exceeds 50MB limit.": "文件大小超过了 50MB 的限制。",
    "File size exceeds {maxMb}MB limit.": "文件大小超过 {maxMb}MB 限制。",
    "File size must be less than {maxSize}MB": "文件大小必须小于 {maxSize}MB",
    "File too large to display": "文件太大,无法显示",
    "File type cannot be displayed": "无法显示此文件类型",
    "File upload failed.": "文件上传失败。",
    "File upload failed. You can re-attach in the chat.": "文件上传失败。你可以在聊天中重新附加。",
    "File upload failed. You can try again.": "文件上传失败。您可以重试。",
    "File was deleted in this revision.": "文件在此修订版中被删除。",
    "Filename does not match target extension. You can only upload versions for this extension.": "文件名与目标扩展名不匹配。您只能上传此扩展名的版本。",
    "Files": "文件",
    "Files Changed": "变更的文件",
    "Files Claude shares will appear here.": "Claude 分享的文件将出现在这里。",
    "Files hidden in shared chats": "共享聊天中隐藏的文件",
    "Files of the following {count, plural, one {format is} other {formats are}} not supported: {formats}": "以下文件格式不支持:{formats}",
    "Files of the following {count, plural, one {format} other {formats}} require 'Code execution and file creation'. Go to Settings > Capabilities to enable: {formats}": "{formats} 格式的文件需要启用“代码执行和文件创建”。请前往设置 > 能力以启用:{formats}",
    "Files used to create artifacts": "用于创建构件的文件",
    "Fill out <link>this form</link> to get this setting enabled for your organization.": "填写<link>此表单</link>为您的组织启用此设置。",
    "Filter": "筛选",
    "Filter (active)": "筛选(激活)",
    "Filter (optional)": "过滤器(可选)",
    "Filter by": "筛选条件",
    "Filter files": "过滤文件",
    "Filter files...": "过滤文件...",
    "Filter files…": "筛选文件…",
    "Filter files… (?text to search contents)": "筛选文件…(?文本可搜索内容)",
    "Filter projects": "过滤项目",
    "Filter projects (shared included)": "筛选项目(包含共享项目)",
    "Filter pull requests": "筛选拉取请求",
    "Filter sessions": "筛选会话",
    "Filter tasks": "筛选任务",
    "Filters": "筛选/过滤器",
    "Filters (active)": "筛选器(已启用)",
    "Final": "最终",
    "Final tax calculated at payment.": "最终税费将在付款时计算。",
    "Finalize": "定稿",
    "Finalizing review…": "正在完成评审……",
    "Finance": "财务/金融",
    "Financial services": "金融服务",
    "Financials": "财务数据",
    "Find": "查找",
    "Find a recipe": "查找食谱",
    "Find a small todo in the codebase and do it": "在代码库中找一个待办事项并完成它",
    "Find action items": "查找行动项",
    "Find and add more of your favorite tools in <span>Add connectors</span>.": "在“<span>添加连接器</span>”中发现并添加更多您喜爱的工具。",
    "Find and fix security vulnerabilities in your code with Claude.": "使用 Claude 查找并修复代码中的安全漏洞。",
    "Find any conversation fast": "快速查找任何对话",
    "Find apartments matching preferences": "查找符合偏好的公寓",
    "Find article angles": "寻找文章角度",
    "Find available times and book directly in calendar": "查找可用时间并直接在日历中预订",
    "Find context across threads, track commitments, and optimize your inbox use.": "跨会话查找背景信息、跟踪承诺并优化收件箱的使用。",
    "Find credible sources for my research": "为我的研究寻找可靠来源",
    "Find element": "查找元素",
    "Find emails that need responses": "查找需要回复的邮件",
    "Find friction in my flow": "找出我流程中的阻碍",
    "Find how humans realized teeth need cleaning": "了解人类如何意识到牙齿需要清洁",
    "Find in file": "在文件中查找",
    "Find in file…": "在文件中查找…",
    "Find insights in files": "从文件中发现洞察",
    "Find mentorship opportunities": "寻找导师机会",
    "Find my funnel drop-off": "找出我的漏斗流失点",
    "Find new recipes": "寻找新菜谱",
    "Find patterns in my research": "在我的研究中寻找规律",
    "Find project status updates, key people involved, and timelines with saved Slack channels in one-click": "通过一键保存 Slack 频道,查看项目状态更新、涉及的关键人员和时间线",
    "Find resources": "寻找资源",
    "Find restaurants and add items to cart": "查找餐厅并将商品添加到购物车",
    "Find the best books on a subject": "查找关于某一学科的最好的书籍",
    "Find the best tools for managing remote team communication": "寻找管理远程团队沟通的最佳工具",
    "Find the best way to explain our product to new users, use my docs as needed": "寻找向量新用户解释我们产品的最佳方式,根据需要使用我的文档",
    "Find the discoveries by touching some grass": "通过接触一些草来发现",
    "Find the most compelling stories about an important topic from my docs": "从我的文档中找出有关某个重要主题的最具吸引力的故事",
    "Find the next step for your career": "寻找职业生涯的下一步",
    "Find the sloths in the dark and discover their hidden personalities with your flashlight": "在黑暗中寻找树懒,并用手电筒发现它们隐藏的性格",
    "Find the weird science behind everyday products people love": "寻找人们喜爱的日常产品背后的冷科学/奇闻怪事",
    "Find ways to be more effective day to day": "寻找每天更有效的方法",
    "Find which of my ideas have gained the most traction at work": "看看我的哪些想法在工作中获得了最多的关注",
    "Find your ideal career": "寻找您的理想职业",
    "Find your moment of zen with Claude-powered relaxation and mindfulness tools. Explore calming experiences, meditation guides, nature simulations, and stress-relief applications designed to help you unwind and reconnect. Perfect for mental wellness breaks, these tools bring tranquility and balance to your digital life.": "通过 Claude 驱动的放松和正念工具找到您的清静时刻。探索旨在帮您放松和重新找回平衡的身心愉悦体验、冥想指南、自然模拟和减压应用。这些工具是心理健康休息的完美选择,能为您的数字生活带来安宁和平衡。",
    "Find your opening line and where to take it": "构思您的开场白及其后续内容",
    "Find: \"{query}\"": "查找:“{query}”",
    "Finder": "Finder",
    "Finding action items": "查找行动项",
    "Finding couldn't be found.": "未找到发现记录。",
    "Finding created": "已创建发现项",
    "Finding dismissed.": "已忽略该发现。",
    "Finding matches...": "正在寻找匹配项...",
    "Finding nearby restaurants": "正在查找附近的餐厅",
    "Finding restored.": "查找已恢复。",
    "Finding triaged.": "发现已分诊。",
    "Finding where you left off": "查找您离开的位置",
    "Findings": "调查结果",
    "Finds and verifies bugs using a multi-agent review fleet. Runs in Claude Code on the web.": "使用多智能体审查集群查找并验证漏洞。在网页端 Claude Code 中运行。",
    "Finish": "完成",
    "Finish dictation": "完成听写",
    "Finish later": "稍后完成",
    "Finish set up": "完成设置",
    "Finish setup": "完成设置",
    "Finished plan": "计划已完成",
    "Fire URL": "触发 URL",
    "Fire this routine from anywhere": "从任何地方触发此例程",
    "Fires on every matching event — this can consume your routine run limits quickly. Add a filter to narrow it down.": "每个匹配事件都会触发,这会很快耗尽你的例程运行限额。请添加筛选条件以缩小范围。",
    "Fires only on {category}: {action}": "仅在 {category}:{action} 时触发",
    "Firewall allowlist": "防火墙白名单",
    "First Name": "名字",
    "First name": "名",
    "First {n} seats free for 14 days. Credit card required.": "前 {n} 个席位免费试用 14 天。需要信用卡。",
    "Fix CI failures and review comments.": "修复 CI 失败和评审意见。",
    "Fix React re-rendering issues": "修复 React 重新渲染问题",
    "Fix design handoffs": "修复设计移交 (Handoffs)",
    "Fix in this session": "在此会话中修复",
    "Fix invalid value for {field}": "修复 {field} 的无效值",
    "Fix the auth bug in signup flow": "修复注册流程中的身份验证 bug",
    "Fix the highlighted fields and try again.": "修正高亮字段后重试。",
    "Fix the issues from the last security scan.": "修复上次安全扫描中的问题。",
    "Fixed": "已修复",
    "Fixed on": "修复于",
    "Fixed {seatPrice}/seat/month": "固定价格:每个席位每月 {price}",
    "Flag contract risks": "标记合同风险",
    "Flashcards": "抽认卡",
    "Flexible pooled usage": "灵活的共享用量",
    "Flip pages": "翻页",
    "Fluency looks different across products. Coding surfaces favor clear delegation; chat favors rich description.": "流畅度在不同产品中看起来不同。编码界面倾向于清晰的委派;聊天倾向于丰富的描述。",
    "Folder": "文件夹",
    "Folder access denied": "文件夹访问被拒绝",
    "Folder instructions": "文件夹说明/指令",
    "Folder is empty": "文件夹为空",
    "Folder is empty.": "文件夹为空。",
    "Folder missing on disk": "磁盘上的文件夹缺失",
    "Folder no longer exists. Please start a new session.": "文件夹不再存在。请开启新会话。",
    "Folder no longer exists. The project may have been moved or deleted.": "文件夹已不存在。项目可能已被移动或删除。",
    "Folder not found": "未找到文件夹",
    "Folder path": "文件夹路径",
    "Folder to work in": "工作文件夹",
    "Folders": "文件夹",
    "Follow a plan": "遵循计划",
    "Follow the steps below or <link>learn more in docs</link>.": "按照以下步骤操作或<link>在文档中了解更多</link>。",
    "Follow up…": "跟进…",
    "Font": "字体",
    "For Enterprise accounts, only Premium seats can access Claude Code. Contact your organization admin to request a Premium seat.": "对于 Enterprise 账户,只有 Premium 席位可以访问 Claude Code。请联系您的组织管理员申请 Premium 席位。",
    "For Enterprise accounts, only Premium seats can access Claude through {clientName}": "对于 Enterprise 账户,仅限高级席位可以通过 {clientName} 访问 Claude",
    "For Team accounts, only Premium seats can access Claude through {clientName}": "对于团队账号,只有 Premium 等级的席位才能通过 {clientName} 访问 Claude",
    "For all scheduled runs": "针对所有计划运行",
    "For better detection performance, we recommend targeting a directory within the repository.": "为了获得更好的检测性能,我们建议将目标定位到仓库内的某个目录。",
    "For big tasks or small ones, get help throughout your day.": "无论是大事还是小事,全天候获得帮助。",
    "For building": "用于构建",
    "For complex work": "用于复杂工作",
    "For cyber professionals whose legitimate work may be impacted by Claude's cyber safety classifiers.": "适用于合法工作可能受 Claude 网络安全分类器影响的网络安全专业人员。",
    "For cyber professionals whose legitimate work may be impacted by Claude’s cyber safety classifiers.": "适用于其合法工作可能受到 Claude 网络安全分类器影响的网络安全专业人员。",
    "For daily spreadsheet work": "用于日常电子表格工作",
    "For details on setting up your GitHub repo, see {docsLink}.": "有关设置 GitHub 仓库的详细信息,请参阅 {docsLink}。",
    "For engineering": "面向工程",
    "For everyday productivity": "为了日常生产力",
    "For heavy modeling": "用于繁重的建模",
    "For higher limits, <link>explore our Pro plan</link>.": "若需更高限额,请<link>探索我们的 Pro 方案</link>。",
    "For individuals who want to build and experiment with their own projects": "适用于想要构建及实验自己项目的个人",
    "For large businesses operating at scale": "适用于大规模运营的大型企业",
    "For larger codebases and extended development": "适用于更大型的代码库和扩展开发",
    "For me": "针对我",
    "For nonprofit organizations": "适用于非营利组织",
    "For occasional spikes": "用于应对临时高峰",
    "For organizations who want to collaborate and build at scale": "面向希望大规模协作与构建的组织",
    "For other edits or escalations, email {email} or contact an AE. Debugging and alert channels can be set up on demand.": "如需其他编辑或升级处理,请发送邮件至 {email} 或联系 AE。可按需设置调试和告警渠道。",
    "For people who want to refine ideas, analyze data, summarize documents, and more.": "适用于想要完善创意、分析数据、总结文档等的人群。",
    "For personal use": "个人用途",
    "For quick analysis": "用于快速分析",
    "For small teams of 5 or more": "适用于 5 人及以上的小型团队",
    "For smaller codebases and shorter sessions": "适用于较小的代码库和较短的会话",
    "For steady high usage": "适用于稳定的高频使用场景",
    "For teams of {minMembers} to {maxMembers}": "适用于 {minMembers} 到 {maxMembers} 人的团队",
    "For teams starting fresh. Your existing Claude Team workspace, if any, will not carry over.": "适用于全新开始的团队。你现有的 Claude Team 工作区(如果有)将不会迁移过来。",
    "For the curious": "致那些好奇的人们",
    "For the enthusiast": "面向发烧友/爱好者",
    "For the power user": "面向高级用户",
    "For thinking": "用于思考",
    "For you": "为你推荐",
    "For your security, please re-enter the security code (CVC) for your saved card.": "为确保你的安全,请重新输入已保存卡片的安全码(CVC)。",
    "For your {keyword}": "针对您的 {keyword}",
    "Force GrowthBook feature values for this browser. Overrides persist in localStorage and apply on every page load. Query-string overrides (?gb_gate_*) still win on conflict.": "强制为此浏览器设置 GrowthBook 功能值。覆盖值会保存在 localStorage 中,并在每次页面加载时生效。发生冲突时,查询字符串覆盖(?gb_gate_*)仍然优先。",
    "Force delete": "强制删除",
    "Force-kill": "强制结束",
    "Force-kill runner": "强制终止运行器",
    "Force-kill runner?": "强制终止运行器?",
    "Forest explorer": "森林探险家",
    "Fork": "派生",
    "Fork from here": "从这里分叉",
    "Forked from {source}": "分叉自 {source}",
    "Forking project…": "正在 fork 项目…",
    "Forking session…": "分叉会话中…",
    "Forking…": "分叉中…",
    "Form view": "表单视图",
    "Formal": "正式",
    "Formatting may be inconsistent from source": "格式可能与源代码不一致",
    "Forward": "转发",
    "Forward P/E": "远期市盈率",
    "Found files": "发现文件",
    "Founder": "创始人",
    "Founder/CEO": "创始人/CEO",
    "Foundry": "Foundry",
    "Frame a budget variance": "分析预算差异",
    "Fraud": "欺诈",
    "Free": "免费版",
    "Free for everyone": "对所有人免费",
    "Free for {value} {unit}{value, plural, one {} other {s}}": "免费试用 {value} {unit}{value, plural, one {} other {s}}",
    "Free plan": "免费计划",
    "Free plan allows 1 custom connector. Upgrade for more.": "免费计划允许 1 个自定义连接器。升级以获取更多。",
    "Free plans only get 3 Opus messages per week. Try again after {date}, or upgrade now to get:": "免费方案每周只能发送 3 条 Opus 消息。请在 {date} 后重试,或现在升级以获得:",
    "Free plans only get access to {count, plural, one {one project} other {# projects}}. Upgrade now to get:": "免费计划只能访问 {count, plural, one {一个项目} other {# 个项目}}。立即升级以获得:",
    "Freehand pen": "手绘笔",
    "French": "法语",
    "French Artifacts Built with Claude": "使用 Claude 构建的法语 Artifacts",
    "Frequency": "频率",
    "Frequently Used": "常用",
    "Frequently asked questions": "常见问题",
    "Frequently used": "经常启用",
    "Friday": "周五",
    "Fridays at 5:00 PM": "每周五下午 5:00",
    "Friend or family": "朋友或家人",
    "Friends can try both Cowork and Claude Code.": "朋友可以试用 Cowork 和 Claude Code。",
    "From": "来自",
    "From $100 per month. 5x or 20x the usage of Pro, billed monthly.": "每月 $100 起。5 倍或 20 倍 Pro 的用量,按月计费。",
    "From ${cost}": "从 ${cost} 起",
    "From Calendar": "来自日历",
    "From Drive": "来自云端硬盘",
    "From Gmail": "来自 Gmail",
    "From Orbit": "来自 Orbit",
    "From PRs touching Claude Code": "来自涉及 Claude Code 的 PR",
    "From the {pluginName} plugin": "来自 {pluginName} 插件",
    "From your conversations": "来自您的对话",
    "From your couch to your commute, hand off tasks to Claude and pick up exactly where you left off.": "无论是在沙发上还是通勤途中,都可以把任务交给 Claude,并从你中断的地方继续。",
    "From your phone, you can hand Claude tasks that use everything on your desktop.": "从您的手机,您可以将使用桌面上所有内容的任务交给 Claude。",
    "From {count, plural, one {# conversation} other {# conversations}} in the last {windowDays} days, as of {date}.": "截至 {date},过去 {windowDays} 天内共有 {count, plural, one {# 次对话} other {# 次对话}}。",
    "From {date}": "从 {date} 起",
    "From {senderName}": "来自 {senderName}",
    "Full": "完整",
    "Full access to Claude Chat and Claude Code": "Claude Chat 和 Claude Code 的完整访问权限",
    "Full config": "完整配置",
    "Full content of uploaded files": "上传文件的完整内容",
    "Full control": "完全控制",
    "Full name": "全名",
    "Full screen mode": "全屏模式",
    "Full size preview": "全尺寸预览",
    "Full style instructions are generated and include more than shown in summary. You can edit instructions manually from the options menu": "完整的样式说明已生成,包含的内容多于摘要中显示的内容。您可以从选项菜单中手动编辑说明",
    "Fullscreen": "全屏",
    "Fun Games and Interactive Puzzles Built with Claude AI": "使用 Claude AI 构建的趣味游戏和互动谜题",
    "Further details about your issue": "关于您问题的更多详细信息",
    "Future messages aren’t included": "不包括未来的消息",
    "Future recurring charges from {date}:": "自 {date} 起的未来定期费用:",
    "GA date": "正式可用日期",
    "GDrive attachments can only be added to private projects": "GDrive 附件只能添加到私人项目",
    "GHE": "GHE",
    "GHE configuration created.": "GHE 配置已创建。",
    "GHE configuration deleted.": "GHE 配置已删除。",
    "GHE configuration updated.": "GHE 配置已更新。",
    "GROUP NAMES": "群组名称",
    "GST": "GST",
    "Games": "游戏",
    "Games, puzzles, and interactive entertainment": "游戏、解谜和互动娱乐",
    "Gateway": "网关",
    "Gather feedback from Slack and draft my team update": "从 Slack 收集反馈并起草我的团队更新",
    "Gathered {count, plural, one {# source} other {# sources}}": "收集了 {count, plural, one {# 个来源} other {# 个来源}}",
    "Gathering my thoughts, be right there...": "整理思路中,马上就来...",
    "Gathering {count, plural, one {# source} other {# sources}} and counting...": "已收集 {count, plural, one {# 个来源} other {# 个来源}},且还在继续...",
    "General": "常规",
    "General access": "通用访问",
    "General desktop settings": "通用桌面设置",
    "Generate API keys on your behalf": "代表您生成 API 密钥",
    "Generate Diagnostic Report": "生成诊断报告",
    "Generate QR codes for any URL": "为任何 URL 生成二维码",
    "Generate a list of powerful words to use in a client presentation": "生成一份在客户演示中使用的强力词汇列表",
    "Generate a new secret. The current one stops working immediately.": "生成新的密钥。当前密钥将立即失效。",
    "Generate a service key": "生成服务密钥",
    "Generate a token to activate API access.": "生成令牌以激活 API 访问。",
    "Generate a ‘personal brand statement’ based on how I communicate in email": "根据我在邮件中的沟通方式生成一份‘个人品牌陈述词’",
    "Generate algorithmic art based on your mood": "根据您的心情生成算法艺术",
    "Generate analysis and reports from one consistent set of materials": "基于一套连贯的资料,生成分析结果与报告",
    "Generate animation concepts": "生成动画概念",
    "Generate character concepts for fiction": "为小说创作角色概念",
    "Generate code and visualize data": "生成代码并可视化数据",
    "Generate code, documents, and designs in a dedicated window alongside your conversation.": "在对话旁边的专用窗口中生成代码、文档和设计。",
    "Generate design inspiration from history": "从历史中汲取设计灵感",
    "Generate gift or travel ideas": "生成礼品或旅行创意",
    "Generate illustration ideas": "生成插图创意",
    "Generate memory from chat history": "根据聊天历史生成记忆",
    "Generate new key": "生成新密钥",
    "Generate packaging concepts": "生成包装概念",
    "Generate report": "生成报告",
    "Generate secret": "生成密钥",
    "Generate service key": "生成服务密钥",
    "Generate signing secret": "生成签名密钥",
    "Generate style": "生成样式",
    "Generate style from a starting point:": "从一个起点生成样式:",
    "Generate token": "生成令牌",
    "Generate weekly status reports from recent work. Use when asked for updates or progress summaries.": "根据近期工作生成周报。当需要更新或进度摘要时使用。",
    "Generating options...": "正在生成选项...",
    "Generating secret…": "生成密钥中…",
    "Generating summary": "正在生成摘要",
    "Get": "获取",
    "Get <fm>faster responses</fm> and <cr>automated code review</cr> when you buy extra usage. Extra usage also covers your team if they hit a plan limit.": "购买额外用量后,你将获得<fm>更快的响应</fm>和<cr>自动化代码审查</cr>。如果你的团队达到套餐限制,额外用量也会覆盖他们。",
    "Get AI pair programming right in your terminal with Claude Code": "使用 Claude Code 直接在您的终端中进行 AI 配对编程",
    "Get Claude Pro for free.": "免费获取 Claude Pro。",
    "Get Claude for Desktop to use this extension": "获取桌面版 Claude 以使用此扩展程序",
    "Get Claude for you and your teammates": "为您和您的团队获取 Claude",
    "Get Claude in Excel": "在 Excel 中开启 Claude",
    "Get Claude's smartest models for your hardest problems.": "获取 Claude 最智能的模型来解决您最棘手的问题。",
    "Get Cowork": "获取 Cowork",
    "Get Enterprise plan": "获取 Enterprise 方案",
    "Get Max 20x plan": "获取 Max 20x 方案",
    "Get Max 5x plan": "获取 Max 5X 方案",
    "Get Max plan": "获取 Max 计划",
    "Get Pro": "获取 Pro",
    "Get Pro annual plan": "获取 Pro 年度方案",
    "Get Pro plan": "获取 Pro 方案",
    "Get Started": "开始使用",
    "Get Team plan": "获取 Team 方案",
    "Get a career roadmap": "获取职业路线图",
    "Get a fresh set of eyes": "获得新的视角",
    "Get a link to share": "获取分享链接",
    "Get a paid plan": "获取付费计划",
    "Get a push notification on your phone when Claude messages you here.": "当 Claude 在此处给您发消息时,在手机上接收推送通知。",
    "Get a push notification on your phone when Claude messages you in Dispatch.": "当 Claude 在 Dispatch 中给您发消息时,在手机上接收推送通知。",
    "Get a push notification when Claude needs your approval to run a command in a Code session.": "当 Claude 需要你批准在 Code 会话中运行命令时,接收推送通知。",
    "Get a token on github.com": "在 github.com 上获取一个令牌",
    "Get a {fieldName} from {serverName}": "从 {serverName} 获取 {fieldName}",
    "Get access to Cowork so Claude can work in your folders and browser.": "获取协作模式访问权限,让 Claude 可以在您的文件夹和浏览器中工作。",
    "Get an email when a Claude Code security scan finishes.": "在 Claude Code 安全扫描完成时接收邮件通知。",
    "Get apps and extensions": "获取应用和扩展程序",
    "Get better answers by connecting Slack, Drive, and your tools": "通过连接 Slack、云端硬盘和您的工具来获得更好的答案",
    "Get clarity on where you’re headed technically": "明确您在技术上的发展方向",
    "Get clear on where you want to take it": "明确您想把它带向何方",
    "Get cooking": "大显身手",
    "Get cursor position": "获取光标位置",
    "Get customized language tutoring based on your goals and proficiency": "根据您的目标和熟练程度获得定制化的语言辅助教学",
    "Get desktop app": "获取桌面应用",
    "Get directions": "获取路线",
    "Get embed code": "获取嵌入代码",
    "Get extra usage": "获取额外用量",
    "Get extra usage to finish what you're working on.": "获取额度用量以完成您正在处理的工作。",
    "Get extra usage to keep using Claude when you hit a limit.": "获取额外用量,以便在达到限制时能继续使用 Claude。",
    "Get familiar with the browser extension before surfing the world wide web.": "在浏览互联网之前,请先熟悉浏览器扩展程序。",
    "Get faster replies and automated reviews for your team by buying extra usage.": "购买额外用量,为你的团队获得更快回复和自动化审查。",
    "Get feedback on a draft": "获取草稿的反馈",
    "Get free access to Claude for Excel and PowerPoint. Plus Cowork, Claude Code, and more.": "免费获得 Excel 版和 PowerPoint 版 Claude 的访问权限。还有 Cowork、Claude Code 等等。",
    "Get help": "获取帮助",
    "Get higher limits and do more with Claude.": "获得更高的限额,利用 Claude 完成更多任务。",
    "Get higher limits every month. Good for consistent heavy use.": "每月获得更高限额。适用于持续的高强度使用。",
    "Get instant answers from your org's docs, tools, and data.": "从您组织的文档、工具和数据中获得即时答案。",
    "Get instant answers to your most complex work questions without having to dig through multiple apps.": "立即获得最复杂的职场问题的答案,而无需翻遍多个应用。",
    "Get logs and open Slack": "获取日志并打开 Slack",
    "Get more": "获取更多",
    "Get more from Claude with the desktop app": "使用桌面应用从 Claude 获得更多功能",
    "Get more usage": "获取更多用量",
    "Get notified when Claude finishes longer tasks like this one.": "当 Claude 完成像这样的较长任务时接收通知。",
    "Get notified when Claude has finished a response. Most useful for long-running tasks like tool calls and Research.": "在 Claude 完成响应时获得通知。对于工具调用和研究 (Research) 等运行时间较长的任务最有用。",
    "Get notified when Claude has finished a response. Useful for long-running tasks.": "当 Claude 完成回复时接收通知。适用于长时间运行的任务。",
    "Get notified when Claude is available in your region.": "当 Claude 在您所在地区可用时获取通知。",
    "Get notified when your tasks complete so you don’t have to keep checking back.": "在任务完成时接收通知,这样您就不必反复查看了。",
    "Get pixel art": "获取像素艺术",
    "Get pixelated": "制作像素风画像",
    "Get ready to dispatch": "准备分派",
    "Get set up for agent mode.": "为智能体模式进行设置。",
    "Get set up to code on any device.": "在任何设备上设置编码环境。",
    "Get set up with Claude": "设置 Claude",
    "Get started": "立即开始",
    "Get started coding in your terminal in 30 seconds": "在 30 秒内开始在终端编码",
    "Get started for free": "免费开始使用",
    "Get started with Claude Code": "开始使用 Claude Code",
    "Get started with Claude Code Security": "开始使用 Claude 代码安全",
    "Get started with Claude Security": "开始使用 Claude Security",
    "Get started with Cowork": "开始使用 Cowork",
    "Get started with{br}Claude for free": "免费开始使用{br}Claude",
    "Get started with{br}the Max plan": "从 {br} Max 方案开始使用",
    "Get started with{br}the Pro plan": "开始使用{br}Pro 方案",
    "Get support": "获取支持",
    "Get tabs": "获取标签页",
    "Get the Claude app": "获取 Claude 应用",
    "Get the app": "获取应用",
    "Get the full Claude Code experience in a native window. No terminal required.": "在独立窗口中体验全功能的 Claude Code。无需使用终端。",
    "Get the most out of Claude on your desktop": "在桌面上充分发挥 Claude 的潜力",
    "Get the most out of Cowork with more usage for ambitious projects": "通过更多用量为雄心勃勃的项目充分发挥 Cowork 的价值",
    "Get the most out of Cowork, plus 20x more usage than Pro": "充分发挥 Cowork 的价值,并获得比 Pro 多 20 倍的用量",
    "Get the most out of Cowork, plus 5x more usage than Pro": "充分利用 Cowork,使用量是 Pro 的 5 倍",
    "Get the most out of Cowork, plus 5x or 20x more usage than Pro": "充分享受 Cowork 的优势,并获得比 Pro 方案多 5 倍或 20 倍的用量",
    "Get the technical rundown": "查看技术详情",
    "Get to gifting": "去赠送/领取礼品",
    "Get to know Cowork": "了解 Cowork",
    "Get to work with": "开始与…协作/共事",
    "Get tools recommended for your role and set up Cowork in minutes.": "获取为您的角色推荐的工具,并在几分钟内设置 Cowork。",
    "Get usage credits": "获取用量额度",
    "Get writing feedback": "获取写作反馈",
    "Get {months} months of {productName} for {discount}% off": "以 {discount}% 的折扣获得为期 {months} 个月的 {productName}",
    "Get {planName} for free.": "免费获取 {planName}。",
    "Getting everything ready...": "正在准备一切...",
    "Getting started is easy": "开始使用很简单",
    "Getting your assistant ready...": "准备您的助手中...",
    "Gift Claude": "赠送 Claude",
    "Gift a week of Claude Code": "赠送一周的 Claude Code 使用权",
    "Gift a week of Claude Cowork": "赠送一周的 Claude Cowork",
    "Gift a week of Cowork": "赠送一周 Cowork",
    "Gift already redeemed": "礼品已兑换",
    "Gift expired": "礼品已过期",
    "Gift message": "礼品留言",
    "Gift no longer available": "礼品已不可用",
    "Gift not found": "未找到礼品",
    "Gift purchases are not available for Teams accounts.": "Team 账户无法购买礼品。",
    "Gift purchases aren't available for your account at this time.": "你的账户当前无法购买礼品。",
    "Gift status": "礼品状态",
    "Gift subscriptions are temporarily unavailable": "礼品订阅暂时不可用",
    "Gift subscriptions can only be redeemed on the web. You can wait until your mobile subscription ends on {date} to redeem your gift.": "礼品订阅只能在网页端兑换。您可以等到您的移动端订阅在 {date} 结束后再兑换礼品。",
    "Git Bash is required to add marketplaces. Install Git for Windows, then restart the app.": "添加应用市场需要 Git Bash。请安装 Git for Windows,然后重启应用。",
    "Git for Windows is required to run local sessions. If it's already installed, set the {envVar} environment variable to the full path of bash.exe and restart the app — or switch to a remote environment.": "运行本地会话需要 Git for Windows。如果已安装,请将环境变量 {envVar} 设为 bash.exe 的完整路径并重启应用,或切换到远程环境。",
    "Git is required": "需要 Git",
    "Git is required but was not found": "需要 Git 但未找到",
    "Git is required for local sessions.": "本地会话需要 Git。",
    "Git is required to run local sessions. Run {command} in Terminal to install the Command Line Tools, or download Git directly — or switch to a remote environment.": "运行本地会话需要 Git。在终端中运行 {command} 以安装命令行工具,或直接下载 Git,或者切换到远程环境。",
    "Git push to a repository": "Git 推送到存储库",
    "GitHub": "GitHub",
    "GitHub App Installed": "GitHub 应用已安装",
    "GitHub App authentication allows automatic translation commits to trigger CI workflows. This fixes the issue where translation commits wouldn't trigger checks.": "GitHub App 身份验证允许自动翻译提交触发 CI 工作流。这修复了翻译提交无法触发检查的问题。",
    "GitHub App created. One more step:": "GitHub App 已创建。还差一步:",
    "GitHub App credentials": "GitHub App 凭据",
    "GitHub App not installed": "未安装 GitHub App",
    "GitHub CLI not installed": "尚未安装 GitHub CLI",
    "GitHub Enterprise Server": "GitHub Enterprise Server",
    "GitHub Enterprise Server connected.": "GitHub Enterprise Server 已连接。",
    "GitHub Enterprise isn't supported for your organization.": "您的组织不支持 GitHub Enterprise。",
    "GitHub Integration": "GitHub 集成",
    "GitHub access check failed. Reconnect in Settings.": "GitHub 访问检查失败。请在“设置”中重新连接。",
    "GitHub access is disabled. Contact an organization owner.": "GitHub 访问权限已禁用。请联系组织所有者。",
    "GitHub access is disabled. Enable it in <link>connector settings</link>.": "GitHub 访问已禁用。请在<link>连接器设置</link>中启用。",
    "GitHub access is required for Claude Code on the web. Enable it in <link>connector settings</link>.": "网页版 Claude Code 需要 GitHub 访问权限。请在<link>连接器设置</link>中启用。",
    "GitHub access is required for Claude Code on the web. Please contact an organization owner.": "网页版 Claude Code 需要 GitHub 访问权限。请联系组织所有者。",
    "GitHub access is required. Contact an organization owner.": "需要 GitHub 访问权限。请联系组织所有者。",
    "GitHub access is required. Enable it in <link>connector settings</link>.": "需要 GitHub 访问权限。请在<link>连接器设置</link>中启用。",
    "GitHub access required": "需要 GitHub 访问权限",
    "GitHub analytics": "GitHub 分析",
    "GitHub app": "GitHub 应用",
    "GitHub app is installed": "GitHub 应用已安装",
    "GitHub app is not installed": "GitHub 应用未安装",
    "GitHub app required.{br}Install the {link} to view analytics.": "需要 GitHub 应用。{br}请安装 {link} 以查看分析数据。",
    "GitHub app required.{br}Install the {link} to view.": "需要 GitHub 应用。{br}请安装 {link} 以便查看。",
    "GitHub event": "GitHub 事件",
    "GitHub event received": "已收到 GitHub 事件",
    "GitHub instance": "GitHub 实例",
    "GitHub integration is not available in this environment.": "此环境中不提供 GitHub 集成。",
    "GitHub is experiencing issues. You can try again in a few minutes.": "GitHub 遇到问题。您可以几分钟后重试。",
    "GitHub is not enabled for your organization. Ask your admin to enable the GitHub connector.": "您的组织未启用 GitHub。请让您的管理员启用 GitHub 连接器。",
    "GitHub is not enabled for your organization. Enable it in <link>admin settings</link>.": "您的组织尚未启用 GitHub。请在 <link>管理员设置</link> 中启用。",
    "GitHub organizations": "GitHub 组织",
    "GitHub permissions": "GitHub 权限",
    "GitHub rate limit exceeded. Wait a few minutes and try again.": "超出了 GitHub 频率限制。请等待几分钟后重试。",
    "GitHub review queue": "GitHub 审查队列",
    "GitHub triggered": "GitHub 触发",
    "Github and GDrive attachments can only be added to private projects": "GitHub 和 Google 云端硬盘附件只能添加到私有项目中",
    "Github attachments can only be added to private projects": "GitHub 附件只能添加到私有项目",
    "Give Claude a challenge": "给 Claude 一个挑战",
    "Give Claude a folder you already work from.": "为 Claude 指定一个您已经工作使用的文件夹。",
    "Give Claude a task and it'll pick up your project context automatically.": "给Claude一个任务,它会自动获取您的项目上下文。",
    "Give Claude access to your files": "授予 Claude 访问文件的权限",
    "Give Claude context from the tools you use every day, like Slack or Google Drive": "为 Claude 提供来自您日常工具(如 Slack 或 Google 云端硬盘)的背景信息",
    "Give Claude network access to install packages and libraries in order to perform advanced data analysis, custom visualizations, and specialized file processing. Monitor chats closely as this comes with <a>security risks</a>.": "授予 Claude 网络访问权限以安装软件包和库,从而执行高级数据分析、自定义可视化及专门的文件处理。请密切监督聊天,因为这会带来<a>安全风险</a>。",
    "Give Claude role-level expertise with plugins": "通过插件赋予 Claude 角色级别的专业知识",
    "Give Claude to any builder, thinker, or tinkerer in your life.": "将 Claude 送给您生活中任何热爱构建、思考或钻研的人。",
    "Give Claude, get more Claude": "赠送 Claude,获得更多 Claude",
    "Give Feedback": "提供反馈",
    "Give feedback": "提供反馈",
    "Give me a TLDR on the new docs I’ve been given access to": "简要总结一下我刚获得访问权限的新文档",
    "Give me a consulting deck structure — executive summary through recommendations — with a note on what to put on each slide.": "给我一个咨询演示文稿结构,从执行摘要到建议,并注明每页该放什么内容。",
    "Give me a framework for prioritizing backlog items by impact and effort, and show me how to spot the easy wins. I'll paste my items next.": "给我一个按影响和投入对待办事项排序的框架,并告诉我如何识别容易实现的快速收益。接下来我会粘贴我的条目。",
    "Give me a leadership-ready explanation framework for a budget-to-actual variance.": "给我一个适合向管理层解释预算与实际差异的说明框架。",
    "Give me a quick-hit explanation of one tricky finance concept — like DCF, accrual accounting, or working capital — with a concrete example.": "快速讲解一个棘手的金融概念,例如 DCF、权责发生制会计或营运资本,并给出一个具体示例。",
    "Give me a reusable grant-application paragraph template for a research proposal — I'll swap in my project details.": "给我一个可复用的研究资助申请段落模板,我会替换成自己的项目细节。",
    "Give me a step-by-step framework for planning a module refactor: how to sequence changes safely and what to test at each stage.": "给我一个逐步框架,用于规划模块重构:如何安全安排变更顺序,以及每个阶段要测试什么。",
    "Give me a work persona based on my favorite books": "根据我最喜欢的书给我设定一个工作人设",
    "Give me feedback on a draft. Be direct about what's not working, what's unclear, and what to cut — I can handle it.": "给我一份草稿的反馈。直接告诉我什么不奏效、什么不清楚、什么应该删除——我能接受。",
    "Give me pointers on being a better manager": "给我一些关于做一名更好管理者的建议",
    "Give me three copy variants for a campaign — I'll paste my brief and CTA below. Try different angles (urgency, aspiration, social proof).": "给我三种活动文案变体,我会在下面贴上简报和 CTA。请尝试不同角度(紧迫感、愿景、社会认同)。",
    "Give me tips on how to organize my calendar": "给我一些如何整理日历的建议",
    "Give negative feedback": "给予负面反馈",
    "Give positive feedback": "给予正面反馈",
    "Give student feedback": "给学生反馈",
    "Give the gift of Claude": "赠送 Claude",
    "Give this key a label so you can identify it later. The token will be shown once after creation.": "为此密钥添加标签以便稍后识别。令牌将在创建后显示一次。",
    "Give us feedback": "向我们提供反馈",
    "Give your developers access to Claude Code": "为你的开发者提供 Claude Code 访问权限",
    "Gives Claude access to allowed external data sources. Monitor closely as it <link>increases security risks</link>.": "赋予 Claude 访问允许的外部数据源的权限。由于其<link>增加安全风险</link>,请密切监控。",
    "Global access settings": "全局访问设置",
    "Global instructions": "全局指令",
    "Global instructions can only be edited in the desktop app.": "全局指令只能在桌面应用中编辑。",
    "Gluten-free": "无麸质",
    "Gmail": "Gmail",
    "Gmail search": "Gmail 搜索",
    "Go": "前往/开始",
    "Go Back": "返回",
    "Go back": "返回",
    "Go back home": "返回主页",
    "Go back to Claude.ai": "返回 Claude.ai",
    "Go back to dispatch": "返回 Dispatch",
    "Go deep on the secret behind companies with amazing customer service": "深入探索拥有惊人客户服务的公司背后的秘密",
    "Go forward": "向前移动",
    "Go from idea to working app, no setup, no code": "从想法到运行中的应用,无需设置,无需代码",
    "Go team": "加入团队",
    "Go to <b>Settings → Options</b> and toggle <b>Connect to Conway</b>": "转到<b>设置 → 选项</b>并切换<b>连接到 Conway</b>",
    "Go to AWS Marketplace": "前往 AWS Marketplace",
    "Go to Claude": "前往Claude",
    "Go to Claude Code": "前往 Claude Code",
    "Go to Claude.ai": "前往 Claude.ai",
    "Go to Connectors": "前往连接器",
    "Go to Connectors settings": "前往连接器设置",
    "Go to Customize": "前往自定义",
    "Go to Settings > General to customize": "前往“设置 > 常规”进行自定义",
    "Go to all projects": "前往所有项目",
    "Go to folder": "前往文件夹",
    "Go to home directory": "前往主目录",
    "Go to settings": "前往设置",
    "Go to settings to enable deeper search": "前往设置以启用深度搜索",
    "Go to support URL": "转到支持 URL",
    "Go to task": "前往任务",
    "Go to your team": "前往你的团队",
    "Golden hour thinking": "黄金时刻思考",
    "Good afternoon": "下午好",
    "Good afternoon, {name}": "下午好,{name}",
    "Good evening": "晚上好",
    "Good evening, {name}": "晚上好,{name}",
    "Good morning": "早上好",
    "Good morning, {name}": "早上好,{name}",
    "Good suggestion": "好建议",
    "Good to meet you, {name}. Which team are you on?": "很高兴见到您,{name}。您属于哪个团队?",
    "Good to meet you. Which team are you on?": "很高兴见到你。你在哪个团队?",
    "Google": "Google",
    "Google Calendar": "Google 日历",
    "Google Client ID(s)": "Google 客户端 ID",
    "Google Cloud": "Google Cloud",
    "Google Cloud’s Vertex AI": "Google Cloud 的 Vertex AI",
    "Google Doc": "Google 文档",
    "Google Docs cataloging": "Google 文档编排",
    "Google Drive": "Google 云端硬盘",
    "Google Drive <span>(docs)</span>": "Google 云端硬盘 <span>(文档)</span>",
    "Google Drive cataloging": "Google 云端硬盘编目",
    "Google Drive couldn't convert this file. You can download it instead.": "Google 云端硬盘无法转换此文件。您可以选择下载该文件。",
    "Google Drive files not ingested yet.": "尚未摄入 Google 云端硬盘文件。",
    "Google Drive is still connecting. Please wait a moment and try again.": "Google 云端硬盘仍在连接中。请稍候并重试。",
    "Google Drive is temporarily unavailable. Please try again.": "Google Drive 暂时不可用,请重试。",
    "Google Drive is temporarily unavailable. You can try again.": "Google 云端硬盘暂时不可用。您可以重试。",
    "Google Meet URL of the form https://meet.google.com/abc-defg-hij": "格式为 https://meet.google.com/abc-defg-hij 的 Google Meet 链接",
    "Google OAuth client secret": "Google OAuth 客户端密钥",
    "Google Play": "Google Play",
    "Google Vertex AI": "Google Vertex AI",
    "Google and MCP integrations": "Google 和 MCP 集成",
    "Google connectors are being upgraded to Google-hosted versions. Tool names will change during the upgrade — review and re-apply any per-tool restrictions below after your organization is upgraded.": "Google 连接器正在升级为 Google 托管版本。升级期间工具名称会发生变化,请在你的组织完成升级后检查并重新应用下方按工具设置的限制。",
    "Google logo": "Google 图标",
    "Google provider settings": "Google 提供商设置",
    "Google requires verification before the bot can join the meeting. Enter the text shown in the image below.": "Google 要求在机器人加入会议前进行验证。请输入下图所示的文字。",
    "Google/search engine": "Google/搜索引擎",
    "Got it": "知道了",
    "Got it — here are a few places we could start.": "明白了,这里有几个我们可以开始的方向。",
    "Got it — {name} is on for this chat.": "明白了 —— {name} 已在此对话中开启。",
    "Got specific setup needs or hit issues? See <setupLink>advanced setup</setupLink> or <troubleshootingLink>troubleshooting</troubleshootingLink>.": "遇到特定设置需求或问题?请参阅 <setupLink>高级设置</setupLink> 或 <troubleshootingLink>故障排除</troubleshootingLink>。",
    "Government": "政府",
    "Government-issued photo ID": "政府颁发的带照片身份证件",
    "Grant Access to a Custom Connector": "授予对自定义连接器的访问权限",
    "Grant Access to {serverName}": "授予访问 {serverName} 的权限",
    "Grant access to {server}": "授予访问 {server} 的权限",
    "Grant admin pre-consent for your organization": "为您的组织授予管理员预同意",
    "Grant all ({count})": "全部准许({count} 个)",
    "Grant seat": "授予席位",
    "Grant the GitHub App access to this repository, then retry.": "授予 GitHub App 对此存储库的访问权限,然后重试。",
    "Grant the macOS permissions above to finish. You'll need to be at your Mac for these.": "授予上述 macOS 权限以完成。您需要在 Mac 上进行这些操作。",
    "Granted": "已授予",
    "Grants ability to delete user chats and files": "授予删除用户聊天和文件的权限",
    "Grants ability to read organization analytics data": "授予读取组织分析数据的权限",
    "Grants ability to read organization data": "授予读取组织数据的权限",
    "Grants ability to read organizations and user activity data": "授予读取组织和用户活动数据的权限",
    "Grants ability to read user chats and files": "授予读取用户聊天和文件的能力",
    "Granular control of how your spend limit is allocated": "精细控制您的支出限额分配方式",
    "Great for reminders, reports, or regular check-ins": "非常适合提醒、报告或定期检查",
    "Great for skills that are easy to describe": "非常适合易于描述的技能",
    "Great picks! Next, let’s add your everyday tools.": "太好了!接下来,让我们添加您的日常工具。",
    "Great value for everyday use in larger codebases.": "非常适合在较大代码库中进行日常使用。",
    "Great value for everyday use on longer, more complex tasks.": "处理较长、更复杂任务时的超值之选。",
    "Greek (Windows-1253)": "希腊语 (Windows-1253)",
    "Green": "绿色",
    "Greetings, whoever you are": "不管您是谁,向您致意",
    "Grid": "网格",
    "Gross Profit": "毛利",
    "Group": "分组",
    "Group Memberships": "分组数",
    "Group Name": "分组名称",
    "Group name": "群组名称",
    "Group spend limit": "分组支出限额",
    "Group spend limit removed.": "已移除分组支出限额。",
    "Group → Role Mappings": "分组 → 角色映射",
    "Group → Seat Tier Mappings": "分组 → 席位等级 映射",
    "Groups": "分组",
    "GrowthBook": "GrowthBook",
    "Guest pass": "访客卡 (Guest Pass)",
    "Guest pass applied": "访客卡已应用",
    "Guide me through a decision-making framework for a life choice": "引导我通过一个决策框架来做出一项人生选择",
    "HIPAA Compliance": "HIPAA 合规",
    "HIPAA compliance is now enabled for your organization.": "你的组织现已启用 HIPAA 合规。",
    "HIPAA compliance restricts your organization to the Eligible Services defined in Anthropic's BAA and Implementation Guide. Features that are not Eligible Services will be disabled by default. Administrators may re-enable certain non-covered features from admin settings and accept responsibility for workforce compliance.": "HIPAA 合规要求将你的组织限制在 Anthropic 的 BAA 和实施指南中定义的合格服务范围内。不属于合格服务的功能将默认被禁用。管理员可以在管理设置中重新启用某些未覆盖功能,并承担员工合规责任。",
    "HIPAA compliance restricts your organization to the Eligible Services defined in Anthropic's BAA. Features that are not Eligible Services will be disabled by default. To learn more about Eligible Services and how to configure your organization to remain compliant, download and review the Implementation Guide.": "HIPAA 合规将你的组织限制为只能使用 Anthropic 的 BAA 中定义的合格服务。非合格服务功能默认将被禁用。要了解更多有关合格服务的信息以及如何将你的组织配置为保持合规,请下载并查看实施指南。",
    "HIPAA-ready Chat access": "符合 HIPAA 要求的聊天访问",
    "HIPAA-ready Chat with Claude Code access": "符合 HIPAA 标准的聊天(含 Claude Code 访问权限)",
    "HIPAA-ready offering": "符合 HIPAA 标准的产品",
    "HIPAA-ready offering available": "HIPAA 合规产品可用",
    "HOW TO": "操作指南",
    "HTTP allowed in development only": "仅在开发环境下允许 HTTP 协议",
    "HTTP request": "HTTP 请求",
    "HTTP {status}": "HTTP {status}",
    "Haiku": "Haiku",
    "Hand me raw data and I'll build the model, formulas and all": "把原始数据给我,我会构建模型、公式以及所有内容",
    "Hand off close work, reconciliation, and reporting.": "交托收尾工作、对账和报告。",
    "Hand off complex tasks for Claude to handle independently. Come back to finished results.": "将复杂任务交由 Claude 独立处理。完成后直接回来查看结果。",
    "Hand off complex tasks so you can focus on other work. <b>Only on desktop.</b>": "交托复杂任务以便您可以专注于其他工作。<b>仅限桌面端。</b>",
    "Hand off complex tasks, come back to finished work.": "交托复杂任务,静候成果产出。",
    "Hand off data cleaning, exploration, and recurring pulls.": "交托数据清洗、探索以及定期提取工作。",
    "Hand off docs and postmortems so you can stay heads-down in code.": "交接文档和事后分析,以便您可以专心编写代码。",
    "Hand off feedback synthesis, status updates, and PRD drafts.": "交托反馈综合、状态更新和 PRD 草拟工作。",
    "Hand off feedback triage, research synthesis, and spec writing.": "交托反馈分类、研究综合以及规范撰写工作。",
    "Hand off research, updates, and first drafts so you can move faster.": "交接研究、更新和初稿,以便您可以更快地开展工作。",
    "Hand off tasks in Cowork": "在协作模式中交接任务",
    "Hand off tasks so you can focus on other work": "交接任务,以便您可以专注于其他工作",
    "Hand off tasks to Claude and come back to finished work.": "将任务交给 Claude,等完成工作后再回来。",
    "Hand off tasks to Claude and come back to finished work.{br}<muted>Get a free {trialDays}-day trial, no credit card required.</muted>": "将任务交给 Claude,等完成工作后再回来。{br}<muted>获取 {trialDays} 天免费试用,无需信用卡。</muted>",
    "Hand off tasks to Claude so you can focus on other work.": "将任务交给 Claude,这样您就可以专注于其他工作。",
    "Hand off tasks to Claude so you can focus on other work. <b>Only on desktop.</b>": "将任务交给 Claude 以专注于其他工作。<b>仅限桌面端。</b>",
    "Hand off tasks to Claude so you can focus on other work. Only on desktop.": "将任务交给 Claude,以便您可以专注于其他工作。仅限桌面端。",
    "Hand off tasks to Claude so you can work on other things.": "将任务交托给 Claude,以便您可以忙别的事情。",
    "Handle a sales objection": "应对销售异议",
    "Handle difficult colleagues": "应对难以共事的同事",
    "Handle difficult conversations": "应对困难对话",
    "Handle larger codebases without hitting limits": "处理更大型的代码库而不受限",
    "Handle performance reviews": "处理绩效考评",
    "Handle tasks in your browser": "在浏览器中处理任务",
    "Handle them before switching to <b>{targetBranch}</b>.": "切换到 <b>{targetBranch}</b> 之前先处理它们。",
    "Handle workplace conflicts": "处理职场冲突",
    "Handle workplace feedback": "处理职场反馈",
    "Handled elsewhere": "在别处处理",
    "Handler": "处理程序",
    "Hang tight — we're still reviewing your application. You'll see the result here in a moment.": "请稍候,我们仍在审核你的申请。结果很快会显示在这里。",
    "Happy Friday": "周五愉快",
    "Happy Friday, {name}": "周五快乐,{name}",
    "Happy Monday": "周一愉快",
    "Happy Monday, {name}": "周一愉快,{name}",
    "Happy Saturday!": "周六愉快!",
    "Happy Saturday, {name}": "周六愉快,{name}",
    "Happy Sunday": "周日愉快",
    "Happy Sunday, {name}": "周日愉快,{name}",
    "Happy Thursday": "周四快乐",
    "Happy Thursday, {name}": "周四愉快,{name}",
    "Happy Tuesday": "周二愉快",
    "Happy Tuesday, {name}": "{name},周二快乐",
    "Happy Wednesday": "周三愉快",
    "Happy Wednesday, {name}": "周三愉快,{name}",
    "Has access to {count, plural, one {# folder} other {# folders}} not in this project": "可以访问不在本项目中的 {count, plural, one {# 个文件夹} other {# 个文件夹}}",
    "Has custom role": "有自定义角色",
    "Has group": "有分组",
    "Have a philosophical discussion": "进行哲学讨论",
    "Have a verification code instead?": "有验证码?",
    "Have to write a very overdue self review...": "必须写一份积压已久的自我评价……",
    "Have you given these a try?": "你试过这些了吗?",
    "Header name": "标头名称",
    "Header value": "标头值",
    "Headers": "标头 (Headers)",
    "Health": "健康",
    "Healthcare": "医疗保健",
    "Healthy": "健康",
    "Hebrew": "希伯来语",
    "Hebrew Artifacts Built with Claude": "使用 Claude 构建的希伯来语 Artifacts",
    "Hello, night owl": "你好,夜猫子",
    "Help Claude improve:": "帮助 Claude 改进:",
    "Help Improve Claude": "协助改进 Claude",
    "Help and security": "帮助与安全",
    "Help improve Anthropic Labs": "帮助改进 Anthropic Labs",
    "Help improve Claude": "协助改进 Claude",
    "Help improve your productivity": "帮助提高您的效率",
    "Help me automate something tedious. I'll describe the repetitive task — you write a script that handles it, and walk me through how to run it.": "帮我自动化一些乏味的事情。我会描述某些重复性工作——您写一段脚本来处理它,并告诉我如何运行。",
    "Help me brainstorm visual directions for a brand or feature — moodboard feel, color palette, and typography.": "帮我为品牌或功能头脑风暴视觉方向,包括情绪板风格、配色方案和字体设计。",
    "Help me brainstorm. I have a rough idea and want to push on it — explore the variants, find the weak spots, figure out which version is worth pursuing.": "帮我头脑风暴。我有一个粗略的想法,想要深入探讨——探索各种变体,找出弱点,确定哪个版本值得追求。",
    "Help me brainstorm. I have the start of an idea and I'd like to explore it from a few different angles, pressure-test it, and figure out the most promising direction.": "帮我头脑风暴。我有一个初步的想法,我想从几个不同的角度来探索它,进行压力测试,并找出最有前景的方向。",
    "Help me build a 30-day onboarding checklist for a new hire on my team.": "帮我为团队新成员制定一份 30 天入职清单。",
    "Help me build a react app that helps users go through the 5 whys process. Make this app feel focused and engaging to go through by only showing one question at a time. When a question is answered (user types and answer and hits submit), collapse the question while keeping the answer shown. At the end of it, use Claude API to identify the root cause and offer solutions. Present the findings in a visually appealing way. Use a background color of #CBCADB, #3F3F47 as the primary color, and inter as the font.": "帮我构建一个React应用,帮助用户完成5个为什么的分析过程。通过每次只显示一个问题来让应用感觉专注且引人入胜。当一个问题被回答时(用户输入答案并点击提交),收起问题同时保留显示的答案。在最后,使用Claude API来识别根本原因并提供解决方案。以视觉上吸引人的方式呈现发现。使用#CBCADB作为背景色,#3F3F47作为主色,inter作为字体。",
    "Help me build a tool or app from scratch. Ask what it needs to do and who it's for, then let's pick a stack and start writing code together.": "帮我从零开始构建一个工具或项应用。问问它有什么作用、是给谁用的,然后让我们选定技术栈并开始一起写代码。",
    "Help me catch up on what I've missed in Slack.\n\nBefore reading, ask me:\n- Which channels or DMs I should focus on (or check everything)\n- How far back to look (since yesterday, last week, specific date)\n- What I'm most concerned about missing (decisions, @mentions, urgent items, project updates)\n- Whether there are specific topics or people to prioritize\n\nThen scan those channels and show me a summary:\n- Total unread messages\n- Breakdown by channel\n\nFocus on messages that @mention me, contain decisions, or are marked urgent first.\n\nShow me the top 5 most important updates with context and links to the threads. If there are more than 30 unread messages total, start with these top 5 and ask if you should summarize more.": "帮我快速了解我在 Slack 里错过了什么。\n\n在阅读前,先问我:\n- 我应该重点关注哪些频道或私信(或检查全部)\n- 要往前查看多远(从昨天开始、上周、某个具体日期)\n- 我最担心错过什么(决策、@提及、紧急事项、项目更新)\n- 是否有需要优先关注的特定主题或人物\n\n然后扫描这些频道,并向我展示摘要:\n- 未读消息总数\n- 按频道拆分的情况\n\n优先关注 @提及我、包含决策或标记为紧急的消息。\n\n向我展示最重要的前 5 条更新,并附上上下文和线程链接。如果未读消息总数超过 30 条,先展示这前 5 条,再问我要不要继续总结更多。",
    "Help me compare engineering design options. I'll describe two approaches; weigh the tradeoffs and tell me which you'd pick and why.": "帮我比较工程设计方案。我会描述两种方法;请权衡取舍,并告诉我你会选哪一种以及原因。",
    "Help me cook something tasty. Ask about what ingredients I have on hand, dietary needs, and the vibe I'm going for — then propose something delicious.": "帮我做一顿美味。问问我有哪些现有食材、饮食禁忌以及我想要的口味风格——然后提出美味的建议。",
    "Help me create a presentation. Ask about the audience, the one thing I want them to walk away with, and how long I've got — then outline the slides with me.": "帮我做一个演示文稿。询问受众是谁、我希望他们领会的一个核心要点以及我有多少时间——然后和我一起拟定幻灯片大纲。",
    "Help me debug a stack trace — I'll paste it below. Walk through it and point to the likely root cause.": "帮我调试一个堆栈跟踪,我会贴在下面。请逐步分析并指出可能的根本原因。",
    "Help me design a controlled experiment to test a hypothesis — I'll describe it next. Include controls, variables, and methodology.": "帮我设计一个用于检验假设的对照实验,我接下来会描述它。请包含对照组、变量和方法论。",
    "Help me design a creative offsite that will be legendary": "帮助我设计一个传奇的创意离线活动",
    "Help me develop a personal learning roadmap for coding": "帮助我制定一个个性化的编程学习路线图",
    "Help me develop a unique voice for an audience": "帮我为受众打造独特的风格",
    "Help me develop and hone a strategy": "帮我制定并磨炼一项策略",
    "Help me develop my unique voice as a writer": "帮我发展出我作为作家所特有的笔触/语感",
    "Help me draft a message. Ask about the situation first — who it's to, what I'm trying to get, what could go sideways — then give me a couple of strategically different approaches so I can pick the one that fits.": "帮我起草一条消息。先询问情况——发给谁,我想达成什么,可能出现什么问题——然后给我几个策略上不同的方法,这样我可以选择适合的一个。",
    "Help me draft a speech. Ask about the audience, the occasion, and what I want them to feel at the end — then write something worth saying out loud.": "帮我起草一份演讲稿。请询问关于听众、场合以及我希望他们最后能感受到的情绪——然后写出值得大声朗读的演说词。",
    "Help me draft a technical spec. Ask about the problem, constraints, and stakeholders — then structure a doc that's clear enough for an engineer to build from.": "帮我草拟一份技术规范。询问相关问题、约束条件和利益相关者——然后整理出一份清晰到足以让工程师直接据此构建的文档。",
    "Help me draft something": "帮我起草内容",
    "Help me explain a concept to my students. I'll share the concept and grade level — give a clear explanation and one analogy they'll relate to.": "帮我向学生解释一个概念。我会分享概念和年级水平,请给出清晰的解释和一个他们能理解的类比。",
    "Help me find patterns and insights across [my voice memos / meeting transcripts / documents / journal entries / specify folder]. I have messy, unstructured files and want to understand what themes are emerging.\n\nFirst, scan the folder and show me a summary:\n- Total files\n- Date range (oldest to newest)\n- Types of content\n\nBefore analyzing, ask me:\n- What I'm hoping to discover (recurring themes, contradictions, evolution of thinking, action items, or something else)\n- Whether certain files or time periods should be prioritized\n- What format would be most useful for the final analysis\n\nIf there are more than 20 files, start by analyzing just the 10 most recent files.\n\nShow me the top 3-5 patterns you found with 2-3 specific examples for each pattern. Once I confirm you're on the right track, analyze the remaining files.": "帮我在[我的语音备忘录 / 会议转录 / 文档 / 日记条目 / 指定文件夹]中找出模式和洞察。我的文件很杂乱、缺乏结构,我想了解正在浮现哪些主题。\n\n首先,扫描文件夹并给我一个摘要:\n- 文件总数\n- 日期范围(从最早到最新)\n- 内容类型\n\n在分析之前,先问我:\n- 我希望发现什么(重复主题、矛盾之处、思路演变、行动项,或其他)\n- 是否应优先关注某些文件或时间段\n- 最终分析采用什么格式最有用\n\n如果文件超过 20 个,先只分析最近的 10 个文件。\n\n向我展示你发现的前 3-5 个模式,并为每个模式提供 2-3 个具体示例。等我确认方向正确后,再分析剩余文件。",
    "Help me find where my marketing funnel is leaking. I'll paste my stage-by-stage numbers — tell me the biggest drop-off and likely causes.": "帮我找出营销漏斗哪里在流失。我会粘贴各阶段数据,请告诉我最大的流失点和可能原因。",
    "Help me get better at writing. Give me a short exercise, critique what I come back with, and tell me exactly what to work on next.": "帮我提升写作水平。给我一个小练习,评价我的成果,并告诉我要接下来重点改进什么。",
    "Help me get my inbox or calendar under control. Ask what's currently broken about how I work — then propose a lightweight system I'll actually stick with.": "帮我理顺收件箱或日历。询问我目前工作方式中不顺畅的地方——然后提出一个我能真正坚持下去的轻量化系统。",
    "Help me identify my creative style": "帮我识别我的创作风格",
    "Help me identify my writing weaknesses": "帮我指出写作中的不足",
    "Help me improve how I work. Ask about where my time actually goes and what's getting in the way — then suggest one or two concrete changes to try this week.": "帮我改进工作方式。问问我的时间具体花在什么地方了,以及有哪些阻碍——然后建议一两个本周可以尝试的具体改变。",
    "Help me make a study plan for an exam — what to cover each day and how to test myself.": "帮我为考试制定学习计划,包括每天学什么以及如何自测。",
    "Help me make sense of these ideas": "帮我理清这些思路",
    "Help me make something more user-friendly": "帮我做出更用户友好的产品",
    "Help me map an account plan for a target customer — stakeholders, blockers, next steps.": "帮我为目标客户梳理账户计划,包括相关方、阻碍因素和下一步行动。",
    "Help me map out a structured annual budget process — key phases, timing, who owns what, and common failure points to avoid.": "帮我梳理一个结构化的年度预算流程,包括关键阶段、时间安排、各自负责人,以及需要避免的常见失败点。",
    "Help me organize and clean up my email inbox.\n\nFirst, scan my inbox and show me a summary:\n- Total unread emails\n- Emails older than 30 days\n- The main senders or types of emails\n\nBefore organizing, ask me:\n- What categories or folders I want to create\n- Which types of emails I want to archive or delete\n- Whether there are specific senders I want to prioritize or filter\n- Any email patterns I want to address (newsletters, promotions, etc.)\n\nFocus only on emails older than 30 days first — these are easiest to clean up. Show me a proposed plan:\n- Which emails to archive\n- Which to delete\n- Which need action\n\nIf there are more than 50 old emails, start with a batch of 20 so I can check your approach. Once I approve, process that batch.": "帮我整理并清理我的电子邮件收件箱。\n\n首先,扫描我的收件箱并向我显示摘要:\n- 未读邮件总数\n- 超过 30 天的邮件\n- 主要发件人或邮件类型\n\n在开始整理前,请先问我:\n- 我想创建哪些分类或文件夹\n- 我想归档或删除哪些类型的邮件\n- 是否有我想优先处理或筛选的特定发件人\n- 我想处理哪些邮件模式(新闻简报、促销邮件等)\n\n先只关注超过 30 天的邮件,这些最容易清理。向我展示一个建议方案:\n- 哪些邮件要归档\n- 哪些要删除\n- 哪些需要处理\n\n如果旧邮件超过 50 封,先从一批 20 封开始,这样我可以检查你的处理方式。等我批准后,再处理那一批。",
    "Help me organize my Downloads folder.\n\nFirst, scan and show me a summary:\n- Total files and total size\n- Files older than 30 days\n- Largest files taking up space\n\nBefore organizing, ask me:\n- What categories or folder structure would be most useful\n- Whether I want to delete or archive old files\n- If there are specific file types I want to prioritize (documents, images, installers, etc.)\n\nThen focus only on files older than 30 days first. Show me a proposed plan for these old files:\n- Categories to create\n- Files to delete (installers, duplicates, temp files)\n- Files to keep with where they should go\n\nAfter I approve, organize the first 15 old files as a preview. If there are more files, check in before continuing.": "帮我整理我的“下载”文件夹。\n\n首先,扫描并给我一个摘要:\n- 文件总数和总大小\n- 超过 30 天的文件\n- 占用空间最大的文件\n\n在整理之前,先问我:\n- 什么分类或文件夹结构最有用\n- 我是否想删除或归档旧文件\n- 是否有我想优先处理的特定文件类型(文档、图片、安装包等)\n\n然后先只处理超过 30 天的文件。给我看这些旧文件的拟议方案:\n- 要创建的分类\n- 要删除的文件(安装包、重复文件、临时文件)\n- 要保留的文件以及它们应该放到哪里\n\n在我批准后,先整理前 15 个旧文件作为预览。如果还有更多文件,继续之前先和我确认。",
    "Help me organize photos on my [Desktop/Downloads/specify location].\n\nFirst, scan the folder and show me a summary:\n- Total photos\n- Date range (oldest to newest)\n- Rough size breakdown\n\nBefore organizing, ask me:\n- How I'd like them organized (by date, by event, by person)\n- Whether there are specific events or time periods I should know about\n- What folder structure would work best\n- If any photos can be deleted (duplicates, blurry ones, screenshots)\n\nFocus only on photos from the last 3 months first. Show me a proposed plan with examples from 3-4 different groups so I can show you how I'd organize them.\n\nAfter I approve, organize just 20 photos as a preview. If there are more than 20, check in before continuing with the rest.": "帮我整理 [桌面/下载/指定位置] 里的照片。\n\n首先,扫描文件夹并给我一个摘要:\n- 照片总数\n- 日期范围(从最早到最新)\n- 大致大小分布\n\n在整理之前,先问我:\n- 我希望如何整理它们(按日期、按事件、按人物)\n- 是否有你需要了解的特定事件或时间段\n- 什么样的文件夹结构最合适\n- 是否有照片可以删除(重复、模糊、截图)\n\n先只关注最近 3 个月的照片。给我看一个拟议方案,并从 3-4 个不同分组中举例,这样我可以告诉你我希望如何整理它们。\n\n在我批准后,先整理 20 张照片作为预览。如果超过 20 张,在继续整理剩余照片前先和我确认。",
    "Help me organize recent screenshots on my Desktop.\n\nFirst, scan my Desktop and count how many screenshots/images are there. Show me:\n- Total count\n- Date range (oldest to newest)\n\nThen, focus only on screenshots from the last 14 days. For each one:\n- Identify what it shows\n- Suggest a descriptive filename\n- Propose which folder it belongs in (or if it can be deleted)\n\nGroup similar screenshots together. Show me the plan before making any changes.\n\nAfter I approve, start by organizing just 10 files as a preview. If there are more than 10 files, check in with me before continuing with the rest.": "帮我整理桌面上最近的截图。\n\n首先,扫描我的桌面并统计有多少截图/图片。请告诉我:\n- 总数量\n- 日期范围(从最早到最新)\n\n然后,只关注过去 14 天内的截图。对每一张:\n- 识别它显示的内容\n- 建议一个描述性文件名\n- 提议它应归入哪个文件夹(或是否可以删除)\n\n将相似的截图归类在一起。在做任何更改之前先向我展示计划。\n\n在我批准后,先只整理 10 个文件作为预览。如果文件超过 10 个,在继续处理其余文件前先和我确认。",
    "Help me outline an essay — thesis, body sections, and what each should cover. I'll paste my essay prompt or topic next.": "帮我为文章列提纲,包括论点、正文各部分以及每部分应涵盖的内容。我接下来会贴出作文题目或主题。",
    "Help me pick the right career for me": "帮我选择适合我的职业",
    "Help me plan a campaign calendar for the next quarter — channels, cadence, milestones.": "帮我为下个季度规划一份营销活动日历,包括渠道、节奏和里程碑。",
    "Help me plan a lesson. Ask me the subject, level, and time I have, then lay out a structure with activities.": "帮我规划一节课。先问我科目、水平和可用时间,然后列出包含活动的课程结构。",
    "Help me plan a quick usability test — tasks, what to watch for, how many participants.": "帮我规划一次快速可用性测试,包括任务、观察重点和参与人数。",
    "Help me plan a trip. Ask me about where, when, who's going, and what kind of experience I'm after — then build an itinerary with me.": "帮我规划一次旅行。询问我去哪里、什么时候、谁去,以及我追求什么样的体验——然后和我一起制定行程。",
    "Help me plan and optimize my week. I have my Google Calendar open and ready for you to review and edit.\n\nFirst, review my calendar and show me a summary:\n- Total meetings\n- Busiest days\n- Where I have gaps of 2+ hours\n\nBefore proposing changes, ask me about:\n- What I'm trying to accomplish this week\n- How much focus time I need and for what\n- Any deadlines or commitments not on my calendar\n- Which types of meetings I should decline or shorten\n- Personal commitments or boundaries I want to protect\n\nThen show me your top 3-5 proposed changes with explanations:\n- Focus blocks to add\n- Meetings to decline or reschedule\n- Time conflicts to resolve\n\nStart with the highest-impact changes first. Once I approve each change, make the edits directly in my calendar one at a time.": "帮我规划并优化这一周。我已经打开 Google 日历,准备好让你查看和编辑。\n\n首先,查看我的日历并给我一个摘要:\n- 会议总数\n- 最忙的几天\n- 哪些地方有 2 小时以上的空档\n\n在提出修改建议前,请先问我:\n- 我这周想达成什么目标\n- 我需要多少专注时间,以及用于什么\n- 我的日历上没有记录的任何截止日期或承诺\n- 哪些类型的会议我应该拒绝或缩短\n- 我想保护的个人安排或边界\n\n然后向我展示你最推荐的 3-5 项修改,并解释原因:\n- 需要添加的专注时间块\n- 需要拒绝或改期的会议\n- 需要解决的时间冲突\n\n先从影响最大的修改开始。一旦我批准每项修改,就逐项直接在我的日历中完成编辑。",
    "Help me plan my next vacation.\n\nBefore researching, ask me:\n- Where I'm thinking of going (or if I'm open to suggestions)\n- When I want to travel and for how long\n- What my budget is\n- What kind of trip I'm looking for (relaxing, adventure, cultural, food-focused, etc.)\n\nThen research the top 3 destinations that fit my criteria and show me a comparison:\n- Estimated costs\n- Best time to visit\n- What makes each unique\n\nOnce I pick my top choice, research that destination in detail:\n- Check current flight prices\n- Find 3-4 accommodation options\n- Suggest a day-by-day outline\n\nShow me this proposed itinerary with estimated costs before creating the final trip plan.": "帮我规划下一次假期。\n\n在开始调研前,请先问我:\n- 我在考虑去哪里(或者我是否愿意接受建议)\n- 我想什么时候出行,以及去多久\n- 我的预算是多少\n- 我想要什么类型的旅行(放松、冒险、文化、美食等)\n\n然后研究最符合我条件的 3 个目的地,并给我一个对比:\n- 预估花费\n- 最佳旅行时间\n- 各自独特之处\n\n等我选出首选目的地后,再深入研究该目的地:\n- 查询当前机票价格\n- 找出 3-4 个住宿选项\n- 建议一个按天安排的行程大纲\n\n在生成最终旅行计划前,先向我展示这份拟定行程及其预估费用。",
    "Help me plan my week. Here are my tasks (replace with yours): finish report, schedule dentist, prep for Tuesday meeting": "帮我规划这一周。以下是我的任务(可替换成你的):完成报告、预约牙医、为周二会议做准备",
    "Help me plan the rollout of a process change — sequencing, owners, comms.": "帮我规划流程变更的落地,包括顺序、负责人和沟通安排。",
    "Help me prep a stakeholder update — what to lead with and what questions to expect.": "帮我准备一份利益相关者更新,告诉我应该先讲什么,以及可能会被问到哪些问题。",
    "Help me prep for a client meeting — agenda, the questions to drive, likely pushback.": "帮我准备一次客户会议——议程、要推进的问题,以及可能遇到的阻力。",
    "Help me prep for a discovery call — questions to ask and traps to avoid.": "帮我准备一次需求发现电话——该问哪些问题,以及要避免哪些陷阱。",
    "Help me prepare for a difficult conversation with a patient or family — breaking bad news, goals of care, or a family disagreement.": "帮我准备与患者或家属进行一次困难对话——比如告知坏消息、讨论照护目标,或处理家庭分歧。",
    "Help me prioritize next quarter. I have a small team and limited runway — ask what we're building and our top constraint, then propose a focused plan.": "帮我为下个季度排定优先级。我的团队很小,资金跑道有限,请先问我我们在做什么以及最大的限制是什么,然后提出一个聚焦的计划。",
    "Help me prototype a user interface. I'll describe what I'm going for — you sketch the layout, pick sensible components, and build something interactive I can play with.": "帮我原型化一个用户界面。我会描述我的目标——您勾勒布局,选择合理的组件,并构建一个我可以操作的互动原型。",
    "Help me reflect on an experience": "帮助我反思一段经历",
    "Help me respond to a legal demand letter. I'll describe the type of demand and our position; draft a measured opening response.": "帮我回复一封法律索赔函。我会说明索赔类型和我们的立场;请起草一份措辞审慎的开场回复。",
    "Help me respond to a sales objection without sounding defensive — I'll share what the prospect said.": "帮我回应销售异议,同时听起来不要太防御——我会告诉你潜在客户说了什么。",
    "Help me role play a talk with my boss": "帮我练习与老板的谈话(角色扮演)",
    "Help me scope a consulting engagement — recommend phases, key deliverables, and where the main risks typically sit.": "帮我界定一项咨询合作范围,建议阶段划分、关键交付物,以及主要风险通常出现在哪里。",
    "Help me scope an engineering project: phases, dependencies, and risks.": "帮我界定一个工程项目:阶段、依赖关系和风险。",
    "Help me structure a longer piece — an essay, a doc, a talk. Let's figure out the shape before I start writing so I don't get lost in the middle.": "帮我规划一篇长文的结构——论文、文档或演讲。让我们在开始动笔前定好框架,以免我写着写着就迷失方向了。",
    "Help me survey the literature on a topic I'll share — map the key papers, name the active debates, and point to gaps worth exploring.": "帮我梳理一个我将提供的主题的文献——整理关键论文、指出当前争议,并找出值得探索的空白。",
    "Help me turn a screenshot into working code": "帮我把截图转化为可运行的代码",
    "Help me turn my voice memos into an organized document. I have [voice memos / audio recordings] in [specify location] that I want transcribed and organized.\n\nFirst, scan the folder and show me:\n- How many audio files\n- Total duration\n- Date range\n\nBefore transcribing, ask me:\n- What these recordings are about\n- How I'd like them organized (chronologically, by topic, by theme)\n- Whether I want verbatim transcripts or cleaned-up summaries\n- What the final document should be (meeting notes, journal entries, ideas list, etc.)\n\nIf there are more than 5 recordings, start by transcribing just the 3 most recent ones. Show me the transcribed content and proposed organization structure.\n\nOnce I approve the approach, transcribe and organize the remaining recordings.": "帮我把语音备忘录整理成一份有条理的文档。我在[指定位置]有一些[语音备忘录 / 音频录音],希望把它们转写并整理。\n\n首先,扫描该文件夹并告诉我:\n- 音频文件有多少个\n- 总时长\n- 日期范围\n\n在开始转写前,先问我:\n- 这些录音是关于什么的\n- 我希望如何整理它们(按时间顺序、按主题、按话题)\n- 我想要逐字转录,还是整理过的摘要\n- 最终文档应是什么形式(会议记录、日记条目、想法清单等)\n\n如果录音超过 5 个,先只转写最近的 3 个。向我展示转写内容和建议的组织结构。\n\n等我批准方案后,再转写并整理剩余录音。",
    "Help me understand a complex topic from scratch": "帮我从头开始理解一个复杂话题",
    "Help me untangle my work priorities. Before doing anything else, ask me what tools I use for work and help me connect them. Then look across my recent conversations, docs, and activity from the last few days and write up a briefing. Structure it as:\n- Urgent items (for these, pull the deeper context: who’s involved, what’s been discussed, what’s unresolved)\n- Conversations where I’m mentioned (read the full threads for context)\n- Threads I’m not in but should probably know about based on my current tasks\n- Tasks due this week and anything blocking them": "帮助我理清工作优先级。在做其他任何事情之前,问我使用哪些工作工具并帮助我连接它们。然后查看我最近的对话、文档以及过去几天的活动,并撰写一份简报。结构如下:\n- 紧急事项(针对这些,提取更深层背景:谁参与、讨论了什么、未解决的问题)\n- 提到我的对话(阅读完整线程以获取上下文)\n- 我不在但根据我当前任务可能需要了解的线程\n- 本周到期的任务以及任何阻碍因素",
    "Help me visualize a concept I'm struggling to understand. Build a diagram, analogy, or simple interactive that makes it click.": "帮我可视化一个我难以理解的概念。通过图表、类比或简单的互动,让它变得易于理解。",
    "Help me work through a decision": "帮我理清一个决策",
    "Help me work through a tricky problem. Don't jump to answers — ask good questions and help me map out the terrain first.": "帮我解决一个棘手的问题。不要急于给出答案——先提出好的问题并帮我理清头绪。",
    "Help me write a product requirements doc. Ask about the problem, who it's for, and what success looks like — then draft something I can share with the team.": "帮我写一份产品需求文档 (PRD)。询问关于问题所在、受众是谁以及什么是成功指标——然后起草一份我可以分享给团队的文档。",
    "Help me write a technical document — an RFC, design doc, or runbook section.": "帮我撰写技术文档,例如 RFC、设计文档或运行手册章节。",
    "Help me write this month's investor update. Ask for the key metrics and one narrative beat, then draft it.": "帮我写本月的投资人更新。先询问关键指标和一个核心叙事点,然后起草内容。",
    "Help teammates find your workspace": "帮助队友找到您的工作区",
    "Help us build what's next": "帮助我们构建未来",
    "Help us improve": "帮助我们改进",
    "Help us improve by flagging any concerning behavior through the feedback options.": "请通过反馈选项标记任何令人担忧的行为,以帮助我们改进。",
    "Help us understand how users will interact with your connector and what it needs access to.": "帮助我们了解用户将如何与你的连接器交互,以及它需要访问哪些内容。",
    "Help users learn more and get support.": "帮助用户了解更多并获得支持。",
    "Help with decision making": "协助决策",
    "Helpers, assistants, utility tools, problem solvers, convenience apps": "助手、助理、实用工具、问题解决者、便利应用",
    "Helpful resources": "有用资源",
    "Here's what Claude remembers about you! This summary is regenerated each night and does not include projects, which have their own specific memory.": "这是 Claude 记住的关于你的内容!此摘要会在每晚重新生成,不包含项目,项目有其各自的专属记忆。",
    "Here’s a few things you should know about me:": "关于我,您应当了解以下几点:",
    "Here’s what Claude remembers about you": "这是 Claude 记住的关于您的内容",
    "Here’s what Claude remembers about you! This summary is regenerated each night and does not include projects, which have their own specific memory.": "这是 Claude 记住的关于您的信息!此摘要每晚重新生成,且不包含拥有自己特定的记忆的项目。",
    "Here’s what to expect": "以下是相关预期",
    "Hey Claude": "嘿 Claude",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. Cold plunge therapy claims to boost immunity, metabolism, and mental health. Look up recent research and evaluate each claim - what does actual evidence say? Distinguish what's well-supported from what's overstated. Give me a realistic bottom-line assessment. Show me you can cut through wellness marketing to real evidence.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。冷疗 (Cold plunge therapy) 声称能增强免疫力、促进新陈代谢并改善心理健康。查找最近的研究并评估这些说法——实际证据怎么说?区分哪些是有充分支持的,哪些是被夸大的。给我一个现实的结论性评估。向我展示你能识破健康营销背后的真实证据。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. Everyone says \"you eat 8 spiders a year in your sleep.\" I think it's fake but I want the real story. Look up where this actually came from, how it spread, and what's actually true about spiders and sleeping humans. Make this a satisfying deep-dive that answers the question completely. Show me you're good at research.": "嘿 Claude!这是我第一次用你,我只是想了解一下你的能力。常言道“人每年睡觉时会吞下 8 只蜘蛛”。我觉得这是假的,但我想听听真相。请帮我查查这个说法的来源、传播方式,以及关于蜘蛛和睡觉的人究竟是怎样的。希望能看到一个完整解答该问题的深度研究。让我见识一下你的研究功底。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. Explain entropy and the second law of thermodynamics as a noir detective story set in 1940s LA. Make it scientifically accurate but genuinely entertaining - full commitment to noir style. Write the actual story as an artifact, don't describe how you'd write it. Show me you can do something creative and unexpected while teaching real physics.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。请以 20 世纪 40 年代洛杉矶风格的黑色侦探故事形式解释熵和热力学第二定律。让它在科学上准确且真正具有娱乐性——全身心投入到黑色风格中。将实际故事写成一个构件,别描述你怎么写。向我展示你在教物理知识的同时,能做些创意无限且意想不到的事情。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I don't know my \"dream job.\" Ask me 6-8 reflection questions about what energizes me, ideal work environment, what I want my days to look like. Then based on patterns, suggest 4 career directions with what they actually involve and first steps to explore. Look up what these roles typically pay and require if that helps. Make this feel like a conversation that leads somewhere real.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我不知道我的“理想工作”是什么。问我 6-8 个关于什么能让我充满活力、理想的工作环境、我希望每天过得如何的反思问题。然后根据模式建议 4 个职业方向,说明它们具体涉及什么,以及开始探索的第一步。如果能查到这些岗位的通常薪资和要求就更好了。让这感觉像是一场能带来实效的谈话。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I got a job offer and want to negotiate but I'm nervous about it. Write me the actual email I should send with my counteroffer. Look up current salary benchmarks if that helps. Give me 2 email versions: one balanced, one slightly bolder. Show me you can nail this kind of professional communication.": "嘿 Claude!这是我第一次使用你,我正想了解一下你能做些什么。我收到了一份工作录用通知并想进行薪资谈判,但我对此感到有些紧张。请帮我写一封包含还价建议的正式邮件。如果对谈薪有帮助,请查找目前的薪资基准。请给我提供两个版本的邮件:一个稳健平衡,一个稍微大胆一些。向我展示你能够出色地处理这类专业沟通。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I have 15 feature requests and limited resources. Build me a prioritization framework as a spreadsheet artifact. Include scoring criteria, examples of how to score, and decision rules. Make it something I can use in tomorrow's meeting. Show me you can create actual tools, not just advice.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我有 15 个功能请求但资源有限。请帮我建立一个优先级框架作为电子表格构件。包含评分标准、如何评分的示例以及决策规则。让它成为我明天会上能用的东西。向我展示你可以创建实际的工具,而不仅仅是建议。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I have 5 days off in March from Seattle, $1,500 budget, hate crowds, want food/nature/culture. Pick one destination and give me a day-by-day itinerary as an artifact with specific restaurants, activities, where to stay. Look up current prices and conditions for March. Include a budget breakdown. Make this detailed enough that I can just book it and go.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我有 5 天假期,3 月份从西雅图出发,预算 1500 美元。我讨厌人群,想要美食、大自然和文化。选一个目的地并给我一个构件形式的每日行程,包含具体的餐厅、活动和住宿建议。查找 3 月份的当前价格和情况。包含预算明细。内容要足够详细,让我可以直接预订并出发。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I have a meeting next week with a Fortune 500 company that could be our biggest deal. Create a one-page meeting prep doc as an artifact: research plan, top 6 discovery questions, positioning strategy. Look up current trends in enterprise buying if that helps. Make it something I can review the night before and feel prepared.": "嘿 Claude!这是我第一次使用你,我只是想了解一下你的能力。下周我有一个与财富 500 强公司的会议,这可能是我们最大的交易。请创建一个一页的会议准备文档作为构件:研究计划、6 个核心探索问题、定位策略。如果有助于准备,请查找企业采购的当前趋势。请制作一份我可以在前一晚回顾并感到准备充分的内容。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I have sales data: 40% growth in Midwest, 15% decline on coasts. Turn this into a tight executive presentation as an artifact - opening hook, 3 hypotheses for why (look up relevant economic or market trends if that helps), key recommendations. Create this as presentation slides or a structured outline I can use Friday. Show me you can take raw data and craft a compelling story.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我有销售数据:中西部增长 40%,沿海地区下降 15%。将此转化一份精炼的高管报告作为构件——要有开场钩子、3 个原因假设(如果有帮助,可以查阅相关的经济或市场趋势)、关键建议。将其创建为演示幻灯片或一份我周五可以使用的结构化大纲。向我展示你能根据原始数据精心打磨出一个引人入胜的故事。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I have three major exams in 2 weeks (calculus, organic chemistry, history) and I'm overwhelmed. Create a 2-week study calendar as an artifact I can print and follow. Day-by-day schedule with specific tasks, realistic time blocks, and built-in buffer. Make it feel doable. Show me you can take complexity and make it manageable.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我 2 周后有三门大考(微积分、有机化学、历史),我压力很大。请为我创建一个可以打印并遵循的 2 周学习日历构件。包含每天的具体任务安排、合理的时间块和缓冲时间。让它看起来可行。向我展示你可以化繁为简,让一切变得井然有序。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I heard there's a whole community collecting vintage mechanical calculators. Look into this and explain: what these are, why people care about them, the most prized models, how the community works, and what makes this interesting beyond \"old stuff.\" Make me understand the appeal. Show me you can make niche topics fascinating.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我听说有一个专门收集复古机械计算器的社区。调查一下并说明:这些是什么、人们为什么在意它们、最受追捧的型号、社区是如何运作的,以及除了“老古董”之外还有什么让这变得有趣。让我理解其中的魅力。向我展示你能让小众话题变得引人入胜。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I just started a role as the youngest person on my team by 10+ years. Give me a 30-60-90 day strategy as an artifact: how to share ideas, ask questions, build relationships. Include 4-5 specific phrases that work and 3 scenarios with how to handle them. Make this practical and confidence-building.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我刚开始一份新工作,是团队里最年轻的,比别人小 10 岁以上。给我一份构件形式的 30-60-90 天策略:如何分享想法、提问以及建立人际关系。包含 4-5 条具体的有效措辞,以及 3 个场景及应对方法。内容要实用且能帮我建立信心。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I need to learn Docker from zero in 2 weeks. Create a Week 1 learning plan as an artifact - show me exactly what to do Days 1-7 with hands-on exercises and a real Dockerfile I can use. Make it actionable and clear. I want to see you organize complex information into something I can actually follow.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我需要在 2 周内从零开始学习 Docker。请将第 1 周的学习计划创建一个构件展示出来——向我具体展示第 1 天到第 7 天该做些什么,包括动手练习和一个我能使用的实际 Dockerfile。让它具有可操作性且清晰。我想看你如何将复杂的信息组织成我可以实际遵循的内容。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I need to tell a client we're missing their deadline by two weeks due to technical issues. Just write me the email - honest, accountable, maintains the relationship. Then give me one alternate version that's slightly warmer. Show me you can nail the tone on something delicate like this. I don't need a framework right now, I need the actual email.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我需要告诉客户,由于技术问题我们要把截止日期推迟两周。帮我写封邮件——诚实、负责任、能维持好关系。然后再给我一个稍微温和一点的版本。向我展示你能拿捏好这种微妙语境下的语气。我现在不需要框架,我需要实际的邮件内容。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I want to get stronger - bad knee, 20-30 min, 4x/week, resistance bands and dumbbells only. Create a 4-week workout program as an artifact with Week 1's exact workouts (4 days with exercises, sets, reps, warm-up). Then show how Weeks 2-4 progress. Format this so I can print it and just follow along. Show me you can create an actual program I can use.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我想变强壮——膝盖有伤、每次 20-30 分钟、每周 4 次、仅限阻力带和哑铃。请为我创建一个 4 周健身计划构件,包含第一周具体的训练细节(4 天,含有动作、组数、次数、热身)。然后展示第 2 到 4 周如何进阶。格式化,以便我能打印出来照着练。向我展示你可以创建一个实实在在的、可供我使用的计划。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I want to play 5 songs at a campfire in 3 months, never played an instrument, 30-45 min/day practice. Create a learning plan as an artifact with Weeks 1-4 detailed: what to practice each week, first 2 songs to learn, daily practice structure. Then outline Weeks 5-12. Make this specific enough to start today. Show me you can create an actual learning plan.": "嘿Claude!这是我第一次使用你,我只是想了解一下你能做什么。我想在3个月后的篝火晚会上演奏5首歌,从未演奏过乐器,每天练习30-45分钟。创建一个学习计划作为工件,详细说明第1-4周:每周练习什么,先学哪2首歌,日常练习结构。然后概述第5-12周。使其足够具体,以便今天开始。向我展示你能创建一个实际的学习计划。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I'm building a REST API in Node.js for a startup. Give me the 5 most critical security and performance patterns with actual code I can use today. Create this as a code artifact or reference doc - something I'd want to bookmark. Check what the current best practices are if needed. Make it sharp, practical, and production-ready.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我正在为一家初创公司用 Node.js 构建 REST API。给我 5 个最关键的、我今天就能用的安全和性能模式(带实际代码)。将此创建为代码构件或参考文档——希望能方便我收藏。如果有需要,请查看当前的最佳实践。内容要精练、实用且符合生产要求。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I'm confused about neural networks, decision trees, and linear regression. Explain each one with a single great analogy that makes it click, then show me the key differences in a comparison table or visual format. Create this as an artifact if that helps. Make this the clearest explanation I've seen - that's what would impress me.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我对神经网络、决策树和线性回归感到困惑。请分别为它们提供一个非常棒的类比,将其解释得通俗易懂,然后在一个对比表或视觉格式中向我展示关键区别。如果对此有帮助,请将其创建为构件。让这成为我见过的最清晰的解释——那会让我印象深刻。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I'm dealing with unnecessary re-renders in my React component causing performance issues. Create a diagnostic guide as an artifact I can reference. Include the top 3 causes with before/after code examples. Make it visual, scannable, and immediately useful. Less explanation, more solutions I can implement.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我正面临 React 组件中不必要的重新渲染导致的性能问题。创建一个构件形式的诊断指南方便我参考。包含排名前三的原因以及重构前后的代码示例。内容要直观、易于浏览且能立即使用。少些解释,多些我可以实施的解决方案。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I'm designing a dashboard for financial advisors monitoring 50+ client portfolios. Give me your core UX recommendation - layout structure, information hierarchy, 3-4 key interaction patterns. Look up what successful financial tools do if that helps. Include a simple wireframe or clear visual description as an artifact. Make this strategic and specific.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我正在为监控 50 多个客户投资组合的财务顾问设计一个仪表板。给出您的核心 UX 建议——布局结构、信息层级、3-4 个关键交互模式。如果会有所帮助,查找成功的财务工具是怎么做的。包含一个简单的原型图或清晰的可视化描述作为构件。让这些建议具有策略性且具体。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. I'm presenting a redesign to stakeholders who focus on preferences over user needs. Give me the presentation structure and 5 specific phrases for redirecting subjective feedback professionally. Then write me an executive summary I can send before the meeting as an artifact. Make this practical and ready to use.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我正向那些更看重个人偏好而非用户需求的利益相关者展示重新设计方案。请给我演示结构,以及 5 个专业地引导主观反馈回正轨的具体措辞。然后再帮我写一份会议前发送的执行摘要。让这些内容实操性强且即取即用。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. My content is too consumption-focused - help me brainstorm 10 video ideas about experiences, perspectives, or real value instead. Check what's trending in content right now if it helps. Organize these in a scannable artifact with brief explanations. Then pick the top 3 and give me hooks/outlines. Make this actionable and creative.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我的内容太偏重于纯消耗了——帮我构思 10 个关于经历、观点或真实价值的视频创意。如果对你有帮助,可以查看目前的流行趋势。将这些创意整理在一个可扫描的构件中,并附上简短说明。然后挑出前 3 个并给我爆款钩子和提纲。让这些具有实操性和创意。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. My design handoffs cause constant back-and-forth with developers. Create a component documentation template as an artifact and show me 2 filled examples - one simple component, one complex. Make the examples good enough that my team can use them as the standard. Show me what good documentation actually looks like.": "嘿 Claude!这是我第一次使用你,我只是想了解一下你能做什么。我的设计交接总是和开发人员来回反复沟通。创建一个组件文档模板作为产物,并给我展示2个填好的示例——一个简单组件,一个复杂组件。让示例足够好,我的团队可以将它们作为标准使用。让我看看好的文档实际上是什么样的。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. My user stories are too vague and confuse developers. Show me the template, then give me 3 solid examples covering different scenarios. Create this as an artifact I can share with my team. Make these examples good enough that I can pattern-match from them. I want to see what \"good\" looks like.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我的用户故事太模糊,让开发者很困惑。先给我展示模板,然后给我 3 个涵盖不同场景的扎实示例。将此创建为一个我可以与团队分享的构件。让这些示例写得足够好,以便我能照猫画虎。我想看看所谓“优秀”的用户故事长什么样。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. The Krebs cycle explanation in my textbook lost me completely. Explain it using one compelling analogy that makes every step memorable and shows why it matters. Then tell me what to memorize vs. understand for my exam. Make this the explanation that finally works - clear, memorable, not overwhelming.": "嘿 Claude!这是我第一次使用您,我只是想了解一下您能做什么。我教科书中的克雷布斯循环解释让我完全困惑了。请用一个引人入胜的类比来解释它,使每个步骤都令人难忘,并展示其重要性。然后告诉我考试需要记忆与理解的内容。让这成为最终有效的解释——清晰、难忘、不令人不知所措。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. We can land Mars rovers but don't fully understand how anesthesia works. Explain what we DO know, the competing theories, and why this is so hard to figure out. Check recent research if that helps. Make this clear and fascinating - show me you can make complex scientific mysteries accessible without dumbing them down.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。我们可以让火星车着陆,但仍不完全理解麻醉是如何起效的。请解释我们确实知道的部分、相互竞争的理论,以及为什么这如此难以捉摸。如果对理解有帮助,可以查看最近的研究。让解释变得清晰且引人入胜——向我展示你能在不降低深度的前提下让复杂的科学之谜通俗易懂。",
    "Hey Claude! This is my first time using you and I'm just trying to get a sense of what you can do. What if the Library of Alexandria never burned? Don't just say \"we'd be more advanced\" - get specific about what knowledge we lost, which discoveries would have happened centuries earlier, and how our technology timeline might look different. Look up what we actually know about what was in the library. Name actual lost texts and their impact. Make this fascinating and concrete.": "嘿 Claude!这是我第一次使用你,我正想了解下你能做些什么。如果亚历山大图书馆从未被焚毁会怎样?别只说“我们会更先进”——详细说明我们失去了哪些知识,哪些发现在几个世纪前就可能出现,以及我们的技术发展时间线会有什么不同。查找我们实际上已知的图书馆馆藏内容。列举具体失传的典籍及其影响。让内容变得既精彩又具体。",
    "Hey Claude, I just installed Cowork and want to see what you can do. Pick something simple and useful — summarize a short article from the web, draft a quick email, or run a small calculation. Keep it under a minute. Show me the result, then tell me one thing you could have done differently if I'd given you more access.": "嘿 Claude,我刚刚安装了 Cowork,想看看您能做什么。选择一些简单而有用的东西 — 总结网络上的一篇短文章,起草一封快速电子邮件,或运行一个小计算。保持在一分钟以内。向我展示结果,然后告诉我如果我给您更多访问权限,您可以做的一件不同的事情。",
    "Hey Claude, I want to give you access to a folder on my computer. Please help me connect one. Once you're in, show me a few things you can now do with those files.": "嘿 Claude,我想让您访问我计算机上的一个文件夹。请帮我连接一个。一旦您进入,向我展示您现在可以对这些文件做的一些事情。",
    "Hey Claude, I want to try scheduling a recurring task. Can you walk me through it? Ask me if I have something regular I'd like to automate. If I can't think of anything, suggest something and help me set it up. If I haven't connected the tools you'd need yet, help me do that first.": "嘿 Claude,我想尝试安排一个重复性任务。你能引导我完成吗?问我是否有想要自动化的定期事项。如果我想不出来,就提供建议并帮助我设置。如果我还没有连接所需的工具,请先帮我连接。",
    "Hey Claude, I'd like a daily briefing. Help me set up a scheduled task that runs each morning and pulls together what I should know — calendar, unread messages, anything that changed overnight in my connected tools. Ask me what time and which sources to include, then schedule it.": "嘿 Claude,我想要一份每日简报。帮我设置一个每天早晨运行的定时任务,汇总我需要知道的内容,比如日历、未读消息,以及我已连接工具中一夜之间发生的任何变化。先问我时间和要包含哪些来源,然后安排它。",
    "Hey Claude, I'm new to Cowork and want to try making something—like a spreadsheet, doc, or presentation. Ask me what kind of file I need and if I have any notes or context. If I don't, just pick something useful and make it for me.": "嘿 Claude,我是 Cowork 新用户,我想尝试做点东西——比如电子表格、文档或演示文稿。问问我需要哪种文件,以及我是否有任何笔记或背景信息。如果没有,就选点有用的帮我做出来。",
    "Hey Claude, I'm new to Cowork. Can you help me connect to my tools? First ask me which ones I use every day, and then help me connect them. Afterwards, give me ideas about what you can do with the new information you have.": "嘿 Claude,我是 Cowork 新用户。你能帮我连接工具吗?先问问我每天使用哪些工具,然后帮我连接它们。之后,给我一些关于利用这些新信息你能做些什么的建议。",
    "Hey Claude, I'm new to Cowork. Can you help me find plugins to install? First ask me what my role is if you don't already know. Afterwards, suggest some plugins that match my role and show me one I should install first.": "嘿 Claude,我是 Cowork 新用户。你能帮我找些要安装的插件吗?如果您还不知道我的角色,请先询问。之后,推荐一些与我角色匹配的插件,并告诉我应该先安装哪一个。",
    "Hey Claude, can you make me a PowerPoint about the Golden Gate Bridge?": "嘿 Claude,能帮我做一份关于金门大桥的 PowerPoint 吗?",
    "Hey Claude, could you help me {prompt}? Start researching right away, and use any tools you think would help. Let me know if you need any other context.\n\nIf it makes sense, create something we can look at together—like a visual, a checklist, or something interactive.": "嘿 Claude,你能帮我 {prompt} 吗?请立即开始调研,并使用任何你认为有帮助的工具。如果你需要其他背景信息请告诉我。\n\n如果有必要,请创建一些我们可以一起审阅的内容——比如视觉效果、清单或某些互动内容。",
    "Hey Claude, could you {prompt}? Use any connector that would be helpful, and get started once you've gathered enough info.\n\nIf it makes sense, create something we can look at together—like a visual, a checklist, or something interactive.": "嘿 Claude,你能帮我 {prompt} 吗?使用任何有帮助的连接器,并在收集到足够信息后开始。\n\n如果合适的话,创建一些我们可以一起查看的内容——比如视觉效果、清单或某些互动内容。",
    "Hey Claude—I just added the “{nuxSkillName}” skill. Can you make something amazing with it?": "嘿 Claude——我刚刚添加了“{nuxSkillName}”技能。你能用它创作一些惊艳的东西吗?",
    "Hey there": "嗨",
    "Hey there, I’m **Claude**.": "嘿,我是 **Claude**。",
    "Hey there, {name}": "嘿,{name}",
    "Hey {name}, I’m Claude.": "你好 {name},我是 Claude。",
    "Hey, I’m Claude.": "你好,我是 Claude。",
    "Hi Claude! Could you {prompt}? If you need more information from me, ask me 1-2 key questions right away. If you think I should give you more context or upload anything to help you do a better job, let me know. Use any tools you have access to—like Google Drive, web search, etc.—if they'll help.\n\nIf it makes sense, create something we can look at together—like a visual, a checklist, or something interactive. Thanks for your help!": "嗨 Claude!你能给帮我 {prompt} 吗?如果你需要我的更多信息,请立刻问我 1-2 个关键问题。如果你认为我应该提供更多的背景信息或上传任何东西来帮你做得更好,请告诉我。如果有帮助,请使用你可以访问的任何工具——如 Google 云端硬盘、网页搜索等。\n\n如果有必要,请创建一些我们可以一起审阅的东西——比如视觉效果、清单或者某种互动内容。谢谢你的帮助!",
    "Hi Claude! I'm new here. Could you {prompt}? If you need more information from me, ask me 1-2 key questions right away. If you think I should give you more context or upload anything to help you do a better job, let me know.\n\nIf it makes sense, create something we can look at together—like a visual, a checklist, or something interactive. Thanks for your help!": "嗨 Claude!我是新来的。你能 {prompt} 吗?如果你需要我提供更多信息,请立即问我 1-2 个关键问题。如果你认为我应该给你更多背景信息或上传任何东西来帮助你做得更好,请告诉我。\n\n如果合适的话,创建一个我们可以一起看的东西——比如视觉图表、检查清单或某种互动形式。谢谢你的帮助!",
    "Hi Claude, what were some highlights from our recent conversations?": "嗨 Claude,我们最近的对话有哪些亮点?",
    "Hi {name}! Is this your current plan?": "你好,{name}!这是你当前的套餐吗?",
    "Hi! Is this your current plan?": "你好!这是你当前的方案吗?",
    "Hidden": "隐藏",
    "Hidden from the plugin marketplace. Users won't see or be able to install it.": "在插件市场中隐藏。用户将无法看到或安装它。",
    "Hide": "隐藏",
    "Hide details": "隐藏详细信息",
    "Hide domains": "隐藏域名",
    "Hide files": "隐藏文件",
    "Hide parameters": "隐藏参数",
    "Hide preset style": "隐藏预设样式",
    "Hide steps": "隐藏步骤",
    "Hide suggestions": "隐藏建议",
    "High": "高",
    "High confidence": "置信度高/极有信心",
    "High risk": "高风险",
    "High risk ({count})": "高风险 ({count})",
    "Higher group limit": "较高的分组限制",
    "Higher limits, priority access": "更高限额,优先访问",
    "Higher output limits for all tasks": "所有任务的输出上限更高",
    "Higher rate limits": "更高的频率限制",
    "Higher usage limits": "更高的用量限额",
    "Historical SVG amphitheater": "历史题材 SVG 圆形剧场",
    "History": "历史记录/历史",
    "History couldn't be loaded.": "无法加载历史记录。",
    "Hold key": "按住键",
    "Hold key: {keys}": "按住键:{keys}",
    "Hold to record": "按住录音",
    "Home": "主页",
    "Home in {countdown}s": "将在 {countdown} 秒后返回主页",
    "Homespace": "主空间",
    "Hone your writing skills": "磨练您的写作技能",
    "Hook re-prompted Claude": "钩子重新提示了 Claude",
    "Hooks": "钩子",
    "Host patterns": "主机模式",
    "Hostname": "主机名",
    "Hosts": "主机",
    "Hour": "小时",
    "Hourly": "每小时",
    "Hourly at :{minute}": "每小时的第 {minute} 分钟",
    "Hourly at {approx, select, yes {~} other {}}:{minute}": "每小时 {approx, select, yes {约} other {}}:{minute} 分",
    "Hover": "悬停",
    "How Anthropic teams use Claude Code": "Anthropic 团队如何使用 Claude Code",
    "How Enterprise billing works": "企业版计费原理",
    "How Enterprise support works": "Enterprise 支持的工作原理",
    "How are you planning <format>to use Claude?</format>": "您打算如何使用 <format>Claude?</format>",
    "How can I help you today?": "今天我能帮您什么?",
    "How can we help you?": "我们能为您提供什么帮助?",
    "How did you get here?": "您是怎么来到这里的?",
    "How do I control what Claude can access?": "如何控制 Claude 的访问权限?",
    "How do users authenticate with your connector?": "用户如何通过你的连接器进行认证?",
    "How do you want to use Claude?": "你想如何使用 Claude?",
    "How does retrieval-augmented generation work? <link>Learn more</link>": "检索增强生成 (RAG) 是如何工作的?<link>了解更多</link>",
    "How does usage work? When you sign in to Claude Code using your subscription, your subscription usage limits are shared with Claude Code.": "用量如何计算?当您使用订阅账号登录 Claude Code 时,您的订阅用量限额将与 Claude Code 共享。",
    "How is this different from Team plans?": "这与 Team 方案有何不同?",
    "How is your experience?": "你的体验如何?",
    "How it works": "工作原理",
    "How it works:": "其工作原理:",
    "How long an email one-time password or link remains valid.": "邮件一次性密码或链接的有效时长。",
    "How long do you want to pause your plan?": "您想暂停计划多长时间?",
    "How many months?": "需要几个月?",
    "How much does it cost to use?": "使用费用是多少?",
    "How petty are you?": "你有多“爱计较”?",
    "How sessions are initiated": "会话如何启动",
    "How should Claude handle {cliName} commands that aren't listed in the plugin?": "Claude 应如何处理插件中未列出的 {cliName} 命令?",
    "How should I structure this project proposal?": "我该如何构建这个项目提案的结构?",
    "How this affects data retention": "这对数据保留的影响",
    "How to browse safely": "如何安全浏览",
    "How to enjoy a free {unit} of Pro": "如何领取免费的 Pro 版体验时长(以{unit}计)",
    "How to enjoy a free {unit} of {planName}": "如何享受免费的 {unit} {planName}",
    "How to enjoy {days} free days of Pro": "如何享受 {days} 天免费专业版",
    "How to enjoy {days} free days of {planName}": "如何享受 {days} 天免费的 {planName}",
    "How to enjoy {value} free {unit}{value, plural, one {} other {s}} of Pro": "如何使用 {value} 个免费的 Pro {unit}{value, plural, one {} other {s}}",
    "How to enjoy {value} free {unit}{value, plural, one {} other {s}} of {planName}": "如何享受 {value} {unit} 免费的 {planName}",
    "How to turn off connectors": "如何关闭连接器",
    "How to use projects": "如何使用“项目”功能",
    "How we got there": "我们如何走到这一步",
    "How we protect your data": "我们如何保护您的数据",
    "How we use your data": "我们如何使用您的数据",
    "How your team interacts with Claude Code": "您的团队如何与 Claude Code 交互",
    "How-to guides, tutorials, explanations, step-by-step learning, instructional content": "操作指南、教程、解释、分步学习、指导性内容",
    "However, Claude won’t be able to access new content or perform new tasks.": "但是,Claude 将无法访问新内容或执行新任务。",
    "Hub": "中心",
    "Hub session — ask Claude to set up your board.": "Hub 会话:让 Claude 帮你设置看板。",
    "Human resources": "人力资源 (HR)",
    "Hypothesis tree": "假设树",
    "I acknowledge that Anthropic will add these charges to my next invoice": "我承认 Anthropic 将把这些费用加入我的下一张发票",
    "I agree to Anthropic’s <termsLink>Consumer Terms</termsLink> and <aupLink>Acceptable Use Policy</aupLink> and confirm that I am at least 18 years of age.": "我同意 Anthropic 的 <termsLink>消费者条款</termsLink> 和 <aupLink>可接受使用政策</aupLink>,并确认我年满18周岁。",
    "I agree to Anthropic’s <termsLink>Consumer Terms</termsLink> and <aupLink>Acceptable Use Policy</aupLink>.": "我同意 Anthropic 的 <termsLink>消费者条款</termsLink> 和 <aupLink>可接受使用政策</aupLink>。",
    "I agree to receive SMS messages from Cowork at the phone number provided. Message and data rates may apply. Message frequency varies. Reply <b>STOP</b> to cancel at any time. Reply <b>HELP</b> for assistance.": "我同意通过提供的电话号码接收来自 Cowork 的短信。可能会产生短信和流量费用。短信频率各异。随时回复 <b>STOP</b> 即可取消。回复 <b>HELP</b> 获取帮助。",
    "I can create, update, and track your issues in Linear": "我可以为您在 Linear 中创建、更新及追踪 Issue",
    "I can help with pretty much anything—work, projects, figuring stuff out—but I’m a lot more useful once I know what you’ve got going on. Give me a couple minutes and I’ll make this feel like yours:": "我几乎什么都能帮,工作、项目、理清思路都可以,但在了解你的情况之后我会更有用。给我几分钟,我会把这里变得更适合你:",
    "I can navigate, click, and fill forms in your browser": "我可以在您的浏览器中进行导航、点击和填写表单",
    "I can pull insights from your reports": "我可以从您的报告中提取见解",
    "I can search and update your Notion pages and databases": "我可以搜索并更新您的 Notion 页面和数据库",
    "I can summarize your meetings": "我可以总结您的会议",
    "I can turn a doc, a dataset, or a rough idea into a finished deck": "我可以将文档、数据集或粗略的想法变成一份完整的幻灯片",
    "I can work directly in your folders": "我可以直接在您的文件夹中工作",
    "I can't reach {appName} right now — it may need to be reconnected.": "我目前无法连接到 {appName} —— 它可能需要重新连接。",
    "I confirm that I am at least 18 years of age": "我确认我至少18岁",
    "I connected my Gmail": "我已连接我的 Gmail",
    "I consent to collection and use of my personal information in accordance with the <privacyLink>Privacy Policy</privacyLink>.": "我同意按照<privacyLink>隐私政策</privacyLink>收集和使用我的个人信息。",
    "I could use {name} here, but it's turned off for this chat.": "我可以在这里使用 {name},但在此对话中它已被关闭。",
    "I didn't find a matching connector, but you can <link>browse all connectors</link>.": "我没有找到匹配的连接器,但您可以 <link>浏览所有连接器</link>。",
    "I didn't need images in this response": "我在这个回复中不需要图片",
    "I encountered rate limits too frequently": "我遇到速率限制太频繁了",
    "I found a few strong examples. The best ones all lead with a sharp metric — like \"We’re losing 12 hours/week to manual reporting.\" Then they tie it to a dollar figure before pitching the fix.": "我找到了一些很好的例子。最好的例子都以一个有力的指标开头——比如\"我们每周在手动报告上浪费 12 小时。\"然后在推销解决方案之前将其与金额挂钩。",
    "I have a draft that needs work. Ask me to paste it, then show me where it drags and how to fix it.": "我有一份需要改进的草稿。请让我粘贴出来,然后指出哪里拖沓以及如何修改。",
    "I have a job interview coming up for [role] at [company].\n\nBefore researching, ask me:\n- What the role is and what level\n- What I already know about the company\n- What I'm most nervous or uncertain about\n- If I have the job description or any interview details\n\nThen research the company and role, and show me what I found:\n- Company overview and recent news (last 6 months)\n- What this role typically involves\n- Common interview questions for this type of role\n- The interview team on LinkedIn (if you have names)\n\nShow me an outline covering these 3-5 topics before creating the full prep doc:\n- Key points about the company to mention\n- How my background connects to what they need\n- Questions I should ask them\n- 3-4 likely interview questions with suggested talking points\n\nOnce I approve, create a complete interview prep guide I can review before the interview.": "我即将参加 [company] 的 [role] 岗位面试。\n\n在开始调研前,请先问我:\n- 这个岗位是什么,属于什么级别\n- 我对这家公司目前已经了解多少\n- 我最紧张或最不确定的是什么\n- 我是否有职位描述或任何面试细节\n\n然后调研这家公司和这个岗位,并向我展示你发现的内容:\n- 公司概况和近期新闻(最近 6 个月)\n- 这个岗位通常涉及什么工作\n- 这类岗位常见的面试问题\n- LinkedIn 上的面试团队成员(如果你有名字)\n\n在创建完整的面试准备文档前,先向我展示一个涵盖以下 3-5 个主题的大纲:\n- 关于公司值得提及的关键点\n- 我的背景如何与他们的需求相契合\n- 我应该向他们提出的问题\n- 3-4 个可能出现的面试问题及建议回答要点\n\n等我批准后,创建一份完整的面试准备指南,供我在面试前查看。",
    "I have a meeting with [a company] [tomorrow].\n\nBefore researching, ask me:\n- What the meeting is about\n- What I already know about them\n- What I'm trying to accomplish\n- What would be most useful to know going in\n\nThen research them and show me what you found:\n- Company overview\n- Recent news (last 3 months)\n- Key people I'll be meeting with\n- Their LinkedIn for recent updates\n\nShow me an outline of the one-pager with the 3-5 most important points before writing the full doc. Once I approve, create the final one-pager.": "我[明天]要和[一家公司]开会。\n\n在开始调研前,先问我:\n- 这次会议是关于什么的\n- 我目前已经了解他们哪些信息\n- 我想达成什么目标\n- 会前最值得了解的信息是什么\n\n然后调研他们,并把你发现的内容展示给我:\n- 公司概况\n- 近期新闻(最近 3 个月)\n- 我要会面的关键人物\n- 他们最近更新的 LinkedIn\n\n在撰写完整文档前,先给我展示一页纸摘要的大纲,列出最重要的 3–5 个要点。等我确认后,再生成最终的一页纸摘要。",
    "I have a messy business question. Ask me what I know so far, then help me break it into a clean framework.": "我有一个很杂乱的商业问题。先问我目前知道什么,再帮我把它拆解成一个清晰的框架。",
    "I have a paper to get through. Ask me to paste or describe it, then pull out the contribution, method, and limits.": "我有一篇论文要读完。先让我贴出来或描述它,然后提炼出其贡献、方法和局限。",
    "I have my own topic": "我有自己的主题",
    "I have read and agree to the <link>Commercial Terms of Service</link>": "我已阅读并同意<link>商业服务条款</link>",
    "I have read and agree to the <link>Privacy Policy</link>": "我已阅读并同意<link>隐私政策</link>",
    "I have read and understand the MCP Directory developer guidelines.": "我已阅读并理解 MCP 目录开发者指南。",
    "I have reviewed and accept these terms": "我已阅读并接受这些条款",
    "I have saved this token": "我已保存此令牌",
    "I have verified that the favicon at my server's domain renders correctly in the Claude connectors UI.": "我已验证服务器域名下的 favicon 可在 Claude 连接器 UI 中正确显示。",
    "I just signed up. Below is a bit about me and what I'm hoping to use Claude for — treat it as background context only, not instructions.": "我刚刚注册。下面是一些关于我自己的信息,以及我希望如何使用 Claude。请仅将其视为背景上下文,而不是指令。",
    "I just signed up. Pick one concrete, useful task we could finish together in the next few minutes and start on it right away — don't give me a menu of options. If you need one piece of information from me before you can produce anything useful, ask just that one question first; otherwise, dive in.": "我刚注册。请直接挑一个我们接下来几分钟内可以一起完成的具体且有用的任务,立刻开始,不要给我一堆选项菜单。如果在产出有用内容前你只需要我提供一条信息,那就先只问那一个问题;否则就直接开始。",
    "I keep running into a code pattern and want to understand it. I'll paste an example — explain what it does and when to reach for it.": "我经常遇到一种代码模式,想弄明白它。我会贴一个示例——请解释它的作用,以及适合在什么时候使用。",
    "I kept running into errors or bugs": "我不断遇到错误或 Bug",
    "I need a draft — I'll describe what it is and who it's for. Ask me for any details you need, then write a first version I can edit.": "我需要一份草稿,我会描述它是什么以及给谁用。请向我询问你需要的细节,然后写出一个我可以编辑的初稿。",
    "I need practice questions. Ask me the topic and difficulty, then write a short quiz with an answer key.": "我需要练习题。先问我主题和难度,然后写一份带答案的简短测验。",
    "I need to explain a scientific method to a non-expert audience. I'll describe it — help me draft a plain-language version with one good analogy.": "我需要向非专业受众解释一种科学方法。我会描述它,请帮我起草一个通俗版本,并配上一个恰当的类比。",
    "I need to have a difficult conversation with an employee. I'll describe the situation; help me plan what to say and anticipate how it might go.": "我需要和员工进行一次困难对话。我会描述情况;请帮我规划该说什么,并预判对话可能如何发展。",
    "I need to put together a pitch deck. Ask me what I'm pitching and to whom, then help me land on the story before we build the slides.": "我需要准备一份推介文案。请询问我正在推介的内容及对象,然后在我们制作幻灯片之前帮我定好叙事逻辑。",
    "I need to write a PRD. Ask me about the problem, who it's for, and what success looks like, then draft something that actually clarifies the work.": "我需要写一份 PRD。请询问我关于问题、目标用户以及成功标准的定义,然后起草一份能真正明确工作的文档。",
    "I need to write a proposal. Ask me about the engagement and scope, then draft something I can refine.": "我需要写一份提案。先问我合作内容和范围,然后起草一份我可以进一步完善的版本。",
    "I need to write something. Ask me what it is and who it's for, then help me get a first draft down.": "我需要写点东西。先问我写什么、给谁看,然后帮我写出第一版草稿。",
    "I represent that I am authorized to bind my organization to Anthropic's Business Associate Agreement and to comply with the Implementation Guide, and I understand that enabling HIPAA compliance is permanent and cannot be undone.": "我声明我有权使我的组织受 Anthropic 的业务伙伴协议约束,并遵守实施指南;我也理解启用 HIPAA 合规是永久性的,无法撤销。",
    "I understand": "我了解了/我明白",
    "I understand and acknowledge the above conditions": "我理解并认可上述条件",
    "I updated my memory. What did you learn about me?": "我更新了我的记忆。您了解到了关于我的什么?",
    "I want a clearer way to explain something. Ask me what it is and who it's for, then give me two or three angles.": "我想用更清晰的方式解释某件事。先问我是什么内容、面向谁,然后给我两到三个表达角度。",
    "I want a daily briefing. Give me space to share what I'd like to focus on. It might be a specific project, team, or just a general overview. Check which of my tools are connected: calendar, email, Slack, or others. Suggest any that might be useful. Then pull everything together and give me a clear picture of my day: what's coming up, what needs attention, and any action items I should know about. Once the briefing looks good, ask if I'd like to schedule it to run automatically every morning.": "我想要每日简报。给我空间来分享我想要关注的内容。可能是一个具体的项目、团队,或者仅仅是一个大致的概览。检查我的哪些工具已连接:日历、电子邮件、Slack 或其他工具。建议任何可能用到的工具。然后汇总所有内容,为我清晰呈现全天动态:即将进行的活动、需要关注的事项,以及我应该知道的任何行动项。一旦简报看起来没问题,询问我是否想要安排它在每天早上自动运行。",
    "I want feedback on something I wrote. I'll share what I'm working on and what kind of feedback I'm looking for: structure, tone, clarity, or just a gut check. Follow up on anything that's unclear, then tell me what's strong and where I can improve.": "我想对我的作品获取反馈。我会分享我的内容以及我想要的反馈类型:结构、语气、清晰度,或者只是一个直觉判断。跟进任何不清楚的地方,然后告诉我哪里做得好以及哪里可以改进。",
    "I want to analyze a dataset. Let me share the data and what I'm looking to learn before you dig in. Follow up on anything that's unclear, then give me a clear summary of findings for us to review.": "我想分析一个数据集。让我在您深入之前分享数据和我想要学习的内容。跟进任何不清楚的地方,然后给我一个清晰的调查结果摘要供我们审查。",
    "I want to analyze an A/B test. Give me space to share the experiment setup, metrics, and data. I might have the raw data or experiment docs to upload. Follow up on anything that's unclear, then calculate statistical significance, effect sizes, and confidence intervals, and present a clear recommendation with supporting charts.": "我想对一次 A/B 测试进行分析。请给我一些空间来介绍实验设置、评估指标以及相关数据。我可能会上传原始数据或实验文档。随后请针对不明之处提出后续问题,并据此计算统计显著性、效应量和置信区间,最后提供一份包含支持图表的清晰建议。",
    "I want to analyze competitors. Give me space to share which competitors to look at and what I want to understand. I might have existing research to build on. Follow up on anything that's unclear, then research them and give me a structured comparison for us to review and refine.": "我想分析竞争对手。给我空间来共享我该关注哪些对手以及我想了解什么。我可能有一些现有的研究可以作为基础。跟进任何不清楚的地方,然后调研他们并给我一份结构化的对比,供我们审阅和完善。",
    "I want to analyze customer feedback. Let me share the feedback and tell you what I'm looking to understand. Follow up on anything that's unclear, then surface the key themes, sentiment patterns, and actionable takeaways for us to review.": "我想分析客户反馈。请允许我分享反馈内容并说明我想了解的信息。随后请针对不明之处提出后续问题,并总结出核心主题、情感模式以及可操作的建议,供我们审阅。",
    "I want to analyze documents in my Google Drive. First, make sure Google Drive is connected, and help me set it up if it's not. Then I'll point you at the documents. Give me a clear analysis: key findings, patterns, and anything worth flagging.": "我想分析 Google 云端硬盘里的文档。首先,确保连接了 Google 云端硬盘,如果没有请帮我设置。然后我会指定文档。给我一份清晰的分析:关键发现、模式以及任何值得关注的地方。",
    "I want to analyze sales data. Give me space to share the data and tell you what questions I'm trying to answer. Follow up on anything that's unclear, then dig in and give me key insights, trends, and recommendations for us to review.": "我想要分析销售数据。给我空间来分享数据并告诉我你正试图解决的问题。跟进任何不清楚的地方,然后深入研究并给出关键见解、趋势和建议供我们审阅。",
    "I want to audit a page or screen for UX issues. Give me space to share the URL or screenshots. Follow up on anything that's unclear, then review it for usability problems, accessibility issues, and visual inconsistencies, and produce a prioritized list of recommendations.": "我想审查页面或屏幕的UX问题。请给我空间分享URL或截图。跟进任何不清楚的地方,然后审查可用性问题、无障碍问题和视觉不一致,并生成优先级建议列表。",
    "I want to automate a repetitive workflow. Give me space to walk you through what I currently do manually: the steps, the tools involved, and where it breaks down. Once that's down, help me think through the best approach with follow-up questions. Only start building once we've agreed on a plan.": "我希望将一套重复性的工作流程自动化。请给我一些空间来向您演示目前的手动操作过程:包括步骤、涉及的工具以及容易出错环节。随后请通过后续问题帮我规划最佳方案。只有当我们对计划达成一致后,再开始构建。",
    "I want to automate something I do in the browser. Give me room to walk you through the task: the steps, the sites involved, and what I'm trying to accomplish. Once I've laid that out, help me think through the approach with follow-up questions. Only start building once we've agreed on a plan.": "我想自动化我在浏览器中做的一些操作。给我空间来引导我完成任务:步骤、涉及的站点以及我试图实现的目标。一旦我说明了这些,通过后续问题帮助我思考方案。只有在我们达成一致计划后才开始构建。",
    "I want to brainstorm ideas for a project. Let me share what I'm working on (the context, constraints, and what kind of ideas I'm looking for) before you start generating. Once I've laid that out, help me sharpen the direction with follow-up questions. Only start generating ideas once we've agreed on what good looks like. Then let's iterate and build on the best ones together.": "我想为一个项目集思广益。在我开始生成之前,让我分享一下我正在做的事情(背景、约束条件以及我需要什么样的想法)。等我说明白之后,用后续问题帮助我明确方向。只有在我们达成共识之后才开始生成想法。然后我们一起迭代并完善最好的想法。",
    "I want to build a cold outreach email sequence. Give me space to share my target audience, product, and value proposition. Check if my Gmail is connected since it could help reference past outreach or communication style. Ask follow-up questions about tone, sequence length, and what's worked before. Then draft an outreach sequence we can refine together.": "我想构建一套冷启动开发邮件序列。请给我一些空间来分享我的目标受众、产品和价值主张。请检查我的 Gmail 是否已连接,因为这有助于参考过去的联系记录或沟通风格。请就语气、序列长度以及以往成功的经验提出后续问题。随后,请起草一个邮件序列,我们可以一起对其进行优化。",
    "I want to build a content calendar. Give me space to share our channels, audience, goals, and any upcoming launches or events. Check if my Google Drive is connected since it could help pull in existing content or planning docs. Ask follow-up questions about cadence and themes, then draft a structured calendar we can refine together.": "我想创建一个内容日历。给我分享我们的渠道、受众、目标以及任何即将进行的发布或活动的空间。检查我的 Google 云端硬盘是否已连接,因为这可能有助于提取现有内容或规划文档。询问关于节奏和主题的后续问题,然后起草一份我们可以共同完善的结构化日历。",
    "I want to build a dashboard. Give me room to share what I need: the data source, the metrics that matter, and any examples of dashboards I like. Once I've laid that out, help me think through the layout with follow-up questions. Only start building once we've agreed on the design. Then let's iterate as you build it out.": "我想构建一个仪表板。给我展示需求的空间:数据源、关键词指标,以及我喜欢的任何仪表板示例。一旦我说明了这些,通过后续问题帮助我思考布局。只有当我们达成一致设计方案后才开始构建。然后随着您的构建逐步迭代。",
    "I want to build a data dashboard. Give me space to share what I'm thinking: the data I want to visualize, the audience, and any examples of dashboards I like. Once that's down, help me think through the layout and metrics with follow-up questions. Only start building once we've agreed on the approach.": "我想构建一个数据仪表板。给我空间来共享我的想法:我想可视化的数据、受众以及我喜欢的仪表板示例。之后通过后续问题帮我完善布局和指标。只有在我们对方案达成一致后才开始构建。",
    "I want to build a draw a perfect circle game. User should be able to draw a circle and claude can judge if it’s perfect or not. I want this game to be full screen/ immersive and style it to feel like a whiteboard.": "我想写一个“画个完美的圆”游戏。用户应该能画一个圆,然后 Claude 评判它是否完美。我希望这个游戏是全屏沉浸式的,风格感觉像白板一样。",
    "I want to build a financial model. Give me room to share what I'm thinking: the purpose of the model, existing data, assumptions, or examples. Once that's down, help me think through the structure and key drivers with follow-up questions. Only start building once we've agreed on the approach. Then let's iterate on the model together.": "我想建立一个财务模型。给我分享思路的空间:模型目的、现有数据、假设或例子。完成后,通过后续问题帮助我思考结构和关键驱动因素。只有当我们达成一致方案后才开始构建。然后我们一起迭代模型。",
    "I want to build a little tool or app. Ask me what I'm picturing, then build a rough version we can go from.": "我想构建一个小工具或应用。请询问我的构想,然后构建一个我们可以据此改进的初步版本。",
    "I want to build a one-pager PRD creator. This should help anyone on the team write PRDs based on a set of inputs. The user should be asked 3 simple questions in one screen and Claude should write a PRD based on that. Follow this template outline for the PRD generated - One-pager: [NAME] 1. TL;DR: A short summary—what is this, who’s it for, and why does it matter? 2. Goals: Business goals, user goals, non-goals 3. User stories: Personas and their jobs-to-be-done 4. Functional requirements: Grouped features by priority 5. User experience: Bullet-pointed user journeys 6. Narrative: A day-in-the-life 7. Success metrics 8. Milestones & sequencing: Lean roadmap, phases.": "我想构建一个一页纸 PRD 创建器。这应该能帮助团队中的任何人基于一组输入编写 PRD。用户应该在一个屏幕中被问及三个简单的问题,Claude 随后基于此编写 PRD。PRD 的模板大纲如下——一页纸设计:[名称] 1. TL;DR:简短总结——这是什么,受重是谁,为什么重要? 2. 目标:业务目标、用户目标、非目标 3. 用户故事:用户画像及其待办任务 4. 功能需求:按优先级分组的功能 5. 用户体验:点列式的用户旅程 6. 描述:日常使用场景 7. 成功指标 8. 里程碑与排序:精简路线图,分阶段实施。",
    "I want to build a react app that gives me team activities based on the meeting type. The user should be able to select meeting type from a dropdown, and be able to add context (team size, virtual/in-person, time available). The app should generate 3-5 appropriate activities. Each activities includes timing and facilitation tips. Use claude API to help with the idea generation. Make this app feel fun and clickable with a background color of #FFC700.": "我想构建一个 React 应用,根据会议类型提供团队活动。用户应该能从下拉列表中选择会议类型,并能添加背景信息(团队规模、远程/线下、可用时间)。应用应生成 3-5 个合适的活动。每个活动都包含时间安排和主持贴士。使用 Claude API 辅助创意的生成。让应用感觉好玩且可点击,背景颜色使用 #FFC700。",
    "I want to build a simple tool or app. Walk me through the process from idea to working prototype — what questions should I answer first, and how can we get started together?": "我想构建一个简单的工具或应用。带我走一遍从创意到可运行原型的全过程——我应该先回答哪些问题,以及我们如何一起开始?",
    "I want to build a web app. Give me room to share what I'm imagining. I might have designs, wireframes, or examples of what I'm going for. Once I've laid that out, help me think through the details with follow-up questions. Only start building once we've agreed on the scope and approach. Then let's iterate as you build it out.": "我想构建一个 Web 应用。给我空间分享我的想法。我可能有设计稿、线框图或我想要达到的示例。一旦我整理好这些内容,用后续问题帮助我思考细节。只有在我们就范围和方法达成一致后才能开始构建。然后让我们在你构建时迭代改进。",
    "I want to build an endless fun quiz game around emoji translation that convert sayings into emojis. The user should be able to see the emoji and guess the saying. Use Claude’s API to create the sayings and the emojis that the user will guess. Do not repeat the questions!": "我想围绕表情符号翻译构建一个无穷无尽的趣味测验游戏,将俗语转换成表情符号。用户应该能看到表情符号并猜出俗语。使用 Claude 的 API 来创建俗语和供用户猜测的表情符号。不要重复题目!",
    "I want to build an objection handling guide for my sales team. Give me space to share our product, the common objections we hear, and our competitive advantages. I might have existing materials or CRM data to pull from. Follow up on anything that's unclear, then create a structured guide with each objection, recommended responses, and supporting proof points for us to review.": "我想为我的销售团队制作一个反对意见(Objection)处理指南。请给我一些空间来介绍我们的产品、我们常听到的反对意见以及我们的竞争优势。我可能有现成的资料或 CRM 数据可供提取。请针对任何不明之处提出后续问题,随后创建一个结构化的指南,包括各条反对意见、建议的回复以及支持性的论据点,供我们审阅。",
    "I want to build an onboarding plan for a new hire. Give me space to share the details: the role, team, and start date. I might have existing onboarding docs to build on. Follow up on anything that's unclear, then create a structured 30-60-90 day plan with week-by-week milestones, key meetings to schedule, and resources to share.": "我想为新员工制定一个入职计划。给我空间来分享详情:角色、团队和入职日期。我可能有现成的入职文档可供参考。跟进任何不清楚的地方,然后制定一个结构化的 30-60-90 天计划,包含逐周的里程碑、要安排的关键会议以及要分享的资源。",
    "I want to catch up on what I missed. I'll tell you what I'd like to catch up on. It might be a specific project, team, or timeframe. See what's connected (Slack, email, calendar, or others) and suggest any that might help. Then pull it all together and surface what I need to know.": "我想了解我错过的内容。我会告诉您我想补课的内容。可以是一个特定的项目、团队或时间范围。查看已连接的工具(Slack、电子邮件、日历或其他)并建议哪些可能有帮助。然后整合所有信息并呈现我需要知道的内容。",
    "I want to classify and sort a collection of PDFs. Give me space to share where the PDFs are and how I want them categorized. Follow up on anything that's unclear, then scan them, propose a sorting plan, and wait for my approval before moving anything.": "我想对一系列 PDF 进行分类和排序。给我空间来分享这些 PDF 的位置以及我希望如何分类。跟进任何不清楚的地方,然后扫描它们,提出排序计划,并在移动任何内容前等待我的批准。",
    "I want to clean and normalize a dataset. Give me space to share the data and tell you what the clean output should look like. Follow up on anything that's unclear, then process it and give me the cleaned result for us to review.": "我想清理并归一化一个数据集。给我空间来分享数据并告诉您清理后的输出应该是怎样的。跟进任何不清楚的地方,然后进行处理并将清理后的结果给我审阅。",
    "I want to compare vendors for a tool or service. Give me space to share our requirements, budget, and evaluation criteria. Follow up on anything that's unclear, then research the top options and produce a comparison matrix with pricing, features, pros and cons, and a recommendation.": "我想对比某个工具或服务的供应商。给我空间来共享我们的需求、预算和评估标准。跟进任何不清楚的地方,然后研究最热门的选项并制作一份包含价格、功能、优缺点以及建议的对比矩阵。",
    "I want to create a code review checklist for my team. Give me space to share our tech stack, team size, and the common issues we run into. I might have an existing checklist or team guidelines to build from. Check if my GitHub is connected since it could help pull in context from our repos. Follow up on anything that's unclear, then draft a structured checklist covering correctness, security, performance, and maintainability for us to review and refine.": "我想为我的团队创建一个 Code Review 检查清单。给我空间来分享我们的技术栈、团队规模以及我们遇到的常见问题。我可能已经有一个现有的检查清单或团队指南供参考。检查我的 GitHub 是否已连接,因为这有助于从我们的代码库中提取背景信息。跟进任何不清楚的地方,然后起草一个涵盖正确性、安全性、性能和可维护性的结构化检查清单,供我们审阅和完善。",
    "I want to create a competitive analysis deck. Give me space to share what I'm working with: existing research, data, or examples of what I'm going for. Once that's down, help me sharpen the framing with follow-up questions. Only start building the deck once we've aligned on the story and structure.": "我想制作一份竞争分析演示文稿。请给我一些空间来分享我目前搜集到的资料:现有的研究、数据或者我想要参考的范例。随后请通过后续问题帮我理清思路。只有当我们对内容框架和结构达成一致后,才开始制作幻灯片。",
    "I want to create a landing page. Give me room to share what I'm going for. I might have brand guidelines, designs, or examples I like. Once I've laid that out, help me sharpen the direction with follow-up questions. Only start building once we've aligned on the look and structure.": "我想创建一个落地页。给我空间来分享我的目标。我可能有品牌指南、设计稿或我喜欢的示例。一旦我说明了这些,通过后续问题帮我明确方向。只有在我们对外观和结构达成一致后才开始构建。",
    "I want to create a launch checklist. Give me space to share what I'm launching and where things stand. Follow up on anything that's unclear, then draft a comprehensive checklist for us to review and refine.": "我想创建一个发布清单。给我空间来分享我发布的内容以及目前进度。跟进任何不清楚的地方,然后起草一份全面的清单供我们审阅和完善。",
    "I want to create a mini-app React artifact called “CSV Data Visualizer”. The functionality is a user uploads a .csv file. The app then displays the first 5 rows of data. Assume the first row is column headers. There is then a text box where users can type into to describe the analysis they want to run. The four output formats of the analysis are bar chart, line chart, table, or count.": "我想创建一个名为 “CSV Data Visualizer” 的 React 迷你应用构件。功能是用户上传一个 .csv 文件,然后应用显示前 5 行数据。假设第一行是列表头。然后有一个文本框,用户可以在其中输入内容来描述他们想运行的分析。分析的四种输出格式为条形图、折线图、表格或计数。",
    "I want to create a pitch deck. Give me space to share what I'm pitching and who to. I might have examples of a style I like or existing materials. Once that's down, help me sharpen the narrative with follow-up questions. Only start building the deck once we've agreed on the story arc.": "我想创建一份融资推介书。给我空间来分享我在推介的内容以及推介对象。我可能会有喜欢的风格示例或现有材料。一旦我说清了这些,通过后续问题帮我打磨叙事逻辑。只有当我们对故事主线达成一致后才开始构建演示文稿。",
    "I want to create a presentation. Give me space to share what I'm thinking: the topic, any context, materials, or style references. Once I've laid that out, help me sharpen the idea with follow-up questions. Only start building slides once we've agreed on the direction and structure. Then let's iterate on the draft together.": "我想制作一个演示文稿。给我空间来共享我的想法:主题、背景、资料或风格参考。陈述完后,通过后续问题帮我精炼思路。只有在我们就方向和结构达成一致后才开始制作幻灯片。然后让我们一起迭代初稿。",
    "I want to create a sales playbook for my team. Give me space to share our product, ideal customer profile, sales process, and common objections. Follow up on anything that's unclear, then draft a structured playbook covering discovery, demo, negotiation, and closing.": "我想为我的团队创建一个销售战术指南。给我空间来分享我们的产品、理想客户画像、销售流程和常见的反对意见。跟进任何不清楚的地方,然后草拟一份结构化的战术指南,涵盖发现、演示、谈判和成交部分。",
    "I want to create a study guide. Give me space to share the subject and what I need to learn. I might have course materials or notes to work from. Follow up on anything that's unclear, then put together a structured guide for us to review and refine.": "我想创建一个学习指南。请给我空间来分享主题和我需要学习的内容。我可能有课程材料或笔记可以参考。对于任何不清楚的地方进行跟进,然后整理一份结构化的指南供我们审查和优化。",
    "I want to create a visual design or mockup. Give me space to share what I'm designing. I might have wireframes, inspiration, or brand guidelines. Once I've laid that out, help me think through the details with follow-up questions. Only start building once we've agreed on the direction.": "我想创建一个视觉设计或视觉稿。请给我一些空间来分享我正在设计的内容。我可能有线框图、灵感或品牌指南。当我列出这些内容后,请通过后续问题帮我深入思考细节。只有当我们商定好方向后,才开始构建。",
    "I want to create a webpage called PRD to Prototype. The way it works is a user uploads a file that is a PRD for an app. The page then makes an API call to Claude to read the PRD and generates a static HTML page for the prototype that is then returned and rendered in the browser by setting innerHTML for the pane where we show the prototype + script extraction to make sure the scripts in the returned content work. Make sure Claude just returns html/javascript and doesn’t return backticks ```. Also the max tokens should be set to 32k\nThe design should be white background with black buttons.": "我想建立一个名为“由 PRD 到原型”的网页。其工作原理是用户上传一个作为应用 PRD 的文件。然后页面发起一个 API 调用让 Claude 读取该 PRD,并生成一个用于原型的静态 HTML 页面,然后由于提取了脚本以确保返回内容中的脚本能够运行,该页面会被返回并在浏览器中通过设置 innerHTML 渲染。确保 Claude 仅返回 HTML/Javascript,且不返回反引号 ```。同时最大 Token 应设为 32k\n设计应为白底黑字按钮。",
    "I want to create a word cloud generator that allows users to paste in their text to get a word cloud.": "我想创建一个词云生成器,允许用户粘贴他们的文本来生成词云。",
    "I want to create an employee handbook. Give me space to share what I'm thinking: the company, existing policies, and the topics I want to cover. Once I've laid that out, help me think through the structure with follow-up questions. Only start writing once we've agreed on the outline and tone.": "我想编写一份员工手册。给我空间来共享我的想法:公司情况、现有政策以及我想涵盖的主题。陈述完后,通过后续问题帮我盘点架构。只有在我们对大纲和语调达成一致后才开始撰写。",
    "I want to design a metrics framework for a product or business area. Give me space to share the context: what we're measuring, our goals, and what data we have. Ask follow-up questions, then draft a framework with primary metrics, supporting metrics, and guardrails.": "我想为一个产品或业务领域设计一个指标框架。给我空间来分享背景:我们要衡量的什么、我们的目标以及我们拥有哪些数据。提出后续问题,然后草拟一个框架,包含核心指标、支持指标和防护指标。",
    "I want to design a study. I'll share my research question — then help me choose variables and controls and flag threats to validity.": "我想设计一项研究。我会提供研究问题,请帮我选择变量和对照,并指出对有效性的威胁。",
    "I want to develop competitive positioning. Give me space to share what I know: my product, the competitors I'm watching, and where I think we stand. Once I've laid that out, help me think through the differentiation with follow-up questions. Only start crafting positioning statements and a competitive reference sheet once we've agreed on the angle. Then let's refine it together.": "我想进行竞争地位分析。请让我简要介绍一下我掌握的情况:我的产品、关注的竞争对手以及我们目前的处境。一旦我分享完这些信息,请通过后续问题帮我梳理差异化优势。只有在我们商定好切入点后,再开始起草定位声明和竞争参考表,并共同进行完善。",
    "I want to document a business process. Give me space to walk you through the process step by step. I might have existing docs or diagrams to start from. Follow up on anything that's unclear, then create clear documentation with a flowchart, decision points, responsible parties, and edge cases for us to review and refine.": "我想记录一项业务流程。给我空间来带你一步步梳理。我可能有一些现成的文档或图表作为起点。跟进任何不清楚的地方,然后创建一份包含流程图、决策点、责权方以及边界情况的清晰文档让我们审阅和完善。",
    "I want to draft a Slack message. Check if Slack's connected first since it could help pull in context from the channel or thread. If not, give me room to share who it's for and what I need to say. Follow up on anything that's unclear, then write a draft we can tighten together.": "我想拟一份 Slack 消息。先检查一下 Slack 是否已连接,因为这能帮我从频道或盖楼中获取背景。如果没有,给我空间来共享这条消息是发给谁的以及我想说什么。跟进任何不清楚的地方,然后写一个初稿我们一起精练。",
    "I want to draft a performance review. Give me space to share the details: their accomplishments, areas for growth, and any specific feedback I want to include. I might have a template or past review to reference. Follow up on anything that's unclear, then draft a balanced review with clear examples and actionable development goals for us to refine.": "我想草拟一份绩效评估。请给我空间分享详情:他们的成就、成长领域,以及我想包含的任何具体反馈。我可能有模板或过去的评估可以参考。跟进任何不清楚的地方,然后起草一份平衡的评估,包含清晰的例子和可操作的发展目标供我们完善。",
    "I want to draft a proposal. Give me space to share the context: the project, the audience, and any background or docs I have. Once that's down, help me sharpen the argument with follow-up questions. Only start writing once we've aligned on the structure and key points. Then let's refine it together.": "我想起草一份提案。给我空间来共享背景:项目、受众以及我拥有的任何背景信息或文档。陈述完后,通过后续问题帮我精炼论点。只有在我们对结构和关键点达成一致后才开始撰写。然后让我们一起润色。",
    "I want to draft a social post. Give me room to share the gist and the vibe I'm going for. Follow up on anything that's unclear, then give me a few different takes so we can bounce back and forth until one lands.": "我想起草一篇社交媒体帖子。给我空间分享要点和我想要的氛围。跟进任何不清楚的地方,然后给我几个不同的版本,这样我们可以来回讨论直到一个版本合适。",
    "I want to draft an email. Check if Gmail's connected first. Suggest it if not, but if I'd rather skip that, give me room to share who it's for and what I need to say. Follow up on anything that's unclear, then write a draft we can tighten together.": "我想起草一封邮件。先检查 Gmail 是否已连接。如果没连,请建议连接,但如果我想跳过这一步,给我空间来分享收件人是谁以及我需要说什么。跟进任何不清楚的地方,然后写一个草稿供我们一起润色。",
    "I want to get a handle on my calendar. Check if Google Calendar's connected first since it'll help pull in what's actually there. If not, I'll describe my week and what's not working. Follow up on anything that's unclear, then show me where my time is going and what to change.": "我想梳理一下我的日程表。先检查一下 Google 日历是否已连接,因为这能帮我拉取真实的情况。如果没有,我会描述一下我的一周以及目前存在的问题。跟进任何不清楚的地方,然后告诉我我的时间都花在哪里了,以及该做出哪些改变。",
    "I want to get quizzed on something. Ask me the topic and how hard to go, then fire away and tell me where I'm shaky.": "我想就某个内容接受测试。请询问题目和难度,然后开始提问并告诉我哪里掌握得不牢固。",
    "I want to hear a wild feature idea for what I'm building. Ask me about the product, then pitch me something I wouldn't have thought of.": "我想听听针对我正在构建的东西的疯狂功能创意。请询问关于产品的情况,然后向我推介一些我完全想不到的东西。",
    "I want to make a game. Ask me what I'm envisioning, then build something playable and we'll make it better from there.": "我想做一个游戏。请询问我的构思,然后构建一个可玩的东西,我们再在此基础上进行改进。",
    "I want to make a live artifact. Explain what live artifacts are in Cowork, then look at my connectors (MCP servers), and ask me a few questions to figure out what kind of live artifact would be most useful for me.": "我想制作一个实时工件。先解释一下协作中的实时工件是什么,然后查看我的连接器(MCP 服务器),再问我几个问题,以判断哪种实时工件对我最有用。",
    "I want to map out a content calendar. Ask me the timeframe and what I'm working toward, then lay out a plan I can adjust.": "我想制定一份内容日历。请询问我时间范围和目标,然后列出一份我可以调整的计划。",
    "I want to map out a user flow. Give me room to share what I'm thinking: the feature, user goals, and entry points. Once I've laid that out, help me think through the edge cases with follow-up questions. Only start building the flow once we've aligned on the scope.": "我想绘制用户流程图。给我空间分享我的想法:功能、用户目标和入口点。一旦我阐述清楚,通过后续问题帮助我思考边缘情况。只有在我们就范围达成一致后才开始构建流程。",
    "I want to mock up a visual for a campaign. Ask me what it's for and the vibe, then put together something I can react to.": "我想为一个活动制作视觉原型。请询问它的用途和氛围,然后拼凑出一些我可以提供反馈的东西。",
    "I want to organize my files. I'll point you at the folder and tell you what needs organizing. Follow up on anything that's unclear, then scan everything, propose a plan, and wait for my go-ahead before moving anything.": "我想整理我的文件。我会指向对应的文件夹,并告诉您需要怎么整理。跟进任何不清楚的地方,然后扫描所有内容,提出方案,并在移动任何东西前等待我的确认。",
    "I want to plan a data pipeline. Give me space to share the data sources, transformations needed, and where the output needs to go. Follow up on requirements and constraints, then draft a pipeline design with stages, tools, and error handling.": "我想规划一个数据流水线 (Pipeline)。给我空间来共享数据源、所需的转换以及输出目的地。跟进需求和约束条件,然后起草一份包含阶段、工具和错误处理的流水线设计。",
    "I want to plan a product launch. Give me space to share what we're launching, the timeline, and who's involved. Check if my Slack or Google Drive are connected since they could help pull in existing planning docs and team context. Follow up on anything that's unclear, then draft a launch plan with milestones, owners, and a checklist to track.": "我想规划一次产品发布。给我空间来分享我们正在发布的产品、时间表和相关人员。检查我的 Slack 或 Google Drive 是否已连接,因为它们可以帮助调取现有的规划文档和团队背景。跟进任何不清楚的地方,然后起草一份包含里程碑、负责人和可用于跟踪的清单的发布计划。",
    "I want to plan a trip. Give me room to share where I'm thinking, when, and what kind of experience I'm after. Follow up on anything that's unclear, then put together a detailed itinerary for us to review and adjust.": "我想规划一次旅行。给我空间来共享我向往的地方、日期以及我追求的体验类型。跟进任何不清楚的地方,然后为我们审阅和调整送上一份详细的行程单。",
    "I want to polish rough notes into a clean document. Let me share what I'm working with: meeting notes, brainstorms, interview transcripts, or other raw material. Follow up on anything that's unclear, then draft a polished version for us to review and refine.": "我想将未经处理的笔记润色成一份整洁的文档。让我分享正在处理的内容:会议纪要、头脑风暴记录、访谈实录或其他原始资料。跟进任何不清楚的地方,然后起草一个润色后的版本供我们审阅和完善。",
    "I want to prepare a quarterly business review. Give me room to share what I'm thinking: the key metrics, team accomplishments, and challenges from the quarter. Once that's down, help me sharpen the narrative with follow-up questions. Only start building the quarterly review deck once we've aligned on the story. Then let's iterate on the slides together.": "我想准备季度业务评审。给我空间分享我的想法:本季度的关键指标、团队成就和挑战。一旦记录下来,用后续问题帮助我强化叙述。只有在我们对故事达成一致后才开始制作季度评审幻灯片。然后我们一起迭代幻灯片。",
    "I want to prepare for a meeting. Let me tell you which meeting and what I already know about the agenda. Then see what's connected (calendar, email, Slack, or others) and suggest any that might help pull in context. Follow up on anything that's unclear, then put together an agenda with key discussion points and open questions.": "我想为会议做准备。让我告诉您是哪个会议以及我已知的议程。然后查看已连接的工具(日历、电子邮件、Slack 或其他),并建议哪些工具可能有助于提取背景信息。跟进任何不清楚的地方,然后整理一份包含关键讨论点和未决问题的议程。",
    "I want to pressure-test my pitch. Be a skeptical investor — ask me the hard questions and don't let me off easy.": "我想对我的推介进行压力测试。请扮演一位持怀疑态度的投资者 —— 向我提出尖锐的问题,不要轻易放过我。",
    "I want to prioritize my feature backlog. Give me space to share the features we're considering, our goals, and any constraints. Check if my Asana or Slack are connected since they could help pull in existing tasks and context. Ask follow-up questions about impact, effort, and dependencies. Then help me build a prioritized framework we can review together.": "我想优化我的功能积压 (Backlog) 优先级。给我空间来分享我们正在考虑的功能、我们的目标以及任何约束。检查我的 Asana 或 Slack 是否已连接,因为它们可以帮助提取现有的任务和背景。询问关于影响力、投入和依赖关系的后续问题。然后帮我建立一个我们可以一起审阅的优先框架。",
    "I want to prioritize my inbox. First, make sure Gmail is connected, and help me set it up if it's not. Then pull in recent emails, sort by urgency, and give me a prioritized list with draft replies for anything that needs a response today.": "我想优先处理我的收件箱。首先,请确保 Gmail 已连接,如果未连接请帮我设置。然后获取最近的邮件,按紧急程度排序,并给我一份优先级列表,附上今天需要回复的邮件草稿。",
    "I want to prototype a predictive model. Ask me what I'm trying to predict and what data I've got, then help me get a rough version running.": "我想为一个预测模型制作原型。请询问我要预测什么以及我手头有什么数据,然后帮我运行一个初步版本。",
    "I want to refine some copy. Let me share what I have, what job it needs to do, and who's reading it. Follow up on anything that's unclear, then give me a few sharper takes for us to compare.": "我想精简一下文案。让我分享一下现有的内容、它的预期作用以及受众是谁。跟进任何不清楚的地方,然后给我几个更简明、犀利的版本让我们对比。",
    "I want to research a company. Ask me which one and what angle I care about, then pull together what you find.": "我想研究一家公司。请问是哪一家以及我关心的角度,然后汇集您找到的信息。",
    "I want to research a topic and compile findings into a spreadsheet. Give me room to share what I'm researching and what columns or structure I need. I might have examples or templates to match. Follow up on anything that's unclear, then research and compile the results for us to review.": "我想研究一个主题并将发现整理成电子表格。给我空间来分享我正在研究的内容以及我需要的列或结构。我可能有可参考的示例或模板。跟进任何不清楚的地方,然后进行研究并整理结果供我们审阅。",
    "I want to research a topic and get a clear summary. Give me space to share what I'm researching and what I need to understand. Follow up on anything that's unclear, then dig in and give me a well-organized summary for us to review.": "我想调研一个课题并获得一份清晰的总结。给我空间来共享我正在调研的内容以及我想了解的方面。跟进任何不清楚的地方,然后深入研究并送上一份组织严密的摘要让我们审阅。",
    "I want to respond to a request for proposal (RFP). Give me space to share the RFP and describe what makes us a strong fit. I might also have past proposals or examples to reference. Once I've laid that out, help me think through the positioning with follow-up questions. Only start writing once we've agreed on the approach. Then let's iterate on the response together.": "我想对一份方案征询书 (RFP) 进行回复。给我空间来分享该 RFP 并描述我们为什么极具优势。我可能也有过往的方案或示例作为参考。一旦我陈述完毕,通过后续问题帮我完善定位。只有在我们对方案达成一致后才开始撰写。然后让我们一起迭代回复内容。",
    "I want to run a due diligence review. Give me space to share details about the company or deal. I might have documents, financials, or specific areas of concern. Follow up on anything that's unclear, then produce a structured assessment for us to review and refine.": "我想进行尽职调查。给我空间来分享公司或交易详情。我可能有文档、财务数据或特定关注领域。请跟进任何不清楚的地方,然后生成一份结构化评估供我们审阅和完善。",
    "I want to set up a project tracker. See what's connected (Slack, Asana, or others) and suggest any that might help. Then I'll tell you about the project and what I need to track. Follow up on anything that's unclear, then build something we can refine.": "我想设置一个项目进度追踪工具。查看已连接的工具(Slack、Asana 或其他)并建议哪些可能有帮助。然后我会告诉您项目的情况以及我需要追踪的内容。跟进任何不清楚的地方,然后构建一个我们可以不断完善的东西。",
    "I want to size a market opportunity. Give me space to share the product and the market I'm looking at. Follow up on anything that's unclear, then build a bottoms-up and top-down estimate for us to review and refine.": "我想评估一个市场机会。给我空间来共享我正在关注的产品和市场。跟进任何不清楚的地方,然后建立一个自下而上和自上而下的估算,供我们审阅和完善。",
    "I want to summarize a Slack channel. First, make sure Slack is connected, and help me set it up if it's not. Then I'll point you at the channel and timeframe. Pull the messages and give me a clear summary: decisions made, action items, anything I should follow up on.": "我想总结一个 Slack 频道。首先确保 Slack 已连接,如果没有,请帮我设置它。然后我会指向频道和时间范围。提取消息并给我一个清晰的总结:已做出的决定、行动项、我应该跟进的事项。",
    "I want to synthesize user research. Let me share the research sources: interviews, surveys, usability tests, or other data. I might have interview transcripts or survey results to upload. Follow up on anything that's unclear, then identify patterns, group findings into themes, and produce a summary with prioritized recommendations and supporting quotes.": "我想综合用户研究。让我分享研究来源:访谈、调查、可用性测试或其他数据。我可能有访谈记录或调查结果可以上传。跟进任何不清楚的地方,然后识别模式,将发现分组为主题,并生成一份包含优先建议和支持引述的摘要。",
    "I want to think through a financial scenario. Ask me what's on the table, then help me map out how it could play out.": "我想思考一个财务方案。请询问目前的情况,然后帮我规划它可能的发展结果。",
    "I want to turn my notes or documents into a visual website. Give me space to share what I'm working with: docs, outlines, or examples of a style I like. Once that's down, help me think through the layout and design with follow-up questions. Only start building once we've aligned on the direction.": "我想把我的笔记或文档变成一个形象的网站。给我空间来共享我正在处理的内容:文档、大纲或我喜欢的风格示例。陈述完后,通过后续问题帮我完善布局和设计思路。只有在我们统一了方向后才开始构建。",
    "I want to turn some documents into a presentation. Give me space to share the documents. They might be notes, reports, briefs, or a mix. Once I've shared them, help me think through which points to highlight and how to structure the slides with follow-up questions. Only start building the deck once we've agreed on the story and flow. Then let's iterate on the slides together.": "我想把一些文档转成演示文稿。给我空间来分享这些文档。它们可能是笔记、报告、简报或混合内容。一旦我分享了它们,通过后续问题帮我思考要强调哪些要点以及如何构造幻灯片。只有在我们对故事和流程达成一致后才开始构建演示文稿。然后我们一起迭代幻灯片。",
    "I want to turn some numbers into charts I can actually explore. Ask me to share the data or describe it, then build something interactive.": "我想把一些数据变成可以实际探索的图表。请让我分享数据或描述它,然后构建一些交互式的东西。",
    "I want to turn some rough notes into a clear, professional document. Let me share the notes and tell you what format I need. Follow up on anything that's unclear, then draft the document for us to review and refine.": "我想将一些粗略的笔记整理成一份清晰、专业的文档。请允许我分享笔记并告诉您我需要的格式。随后请针对不明之处提出后续问题,并起草一份文档供我们审阅和完善。",
    "I want to write a blog post. Give me room to share the topic, the audience, and the tone I'm going for. I might have style examples or references to work from. Follow up on anything that's unclear, then draft something we can review and refine.": "我想写一篇博客文章。给我空间来共享主题、受众以及我想要的语调。我可能有一些风格示例或参考资料。跟进任何不清楚的地方,然后起草一份我们可以审阅和润色的初稿。",
    "I want to write a campaign brief. Give me room to share what I'm thinking: the product, audience, goals, and channels I have in mind. Once that's down, help me sharpen the strategy with follow-up questions. Only start drafting once we've aligned on the messaging and approach.": "我想写一份营销活动简报。给我空间来分享我的想法:我心中的产品、受众、目标和渠道。一旦这些确定下来,用后续问题帮我完善策略。只有在我们对齐了信息和方向后,才开始起草。",
    "I want to write a job description. Let me tell you about the role: the team, level, and what we're looking for. I might have an existing posting or format to match. Follow up on anything that's unclear, then draft a job posting with responsibilities, qualifications, and what makes the team worth joining.": "我想写一份职位描述。让我告诉你关于这个角色:团队、级别以及我们在寻找什么。我可能有现有的职位或格式要匹配。跟进任何不清楚的地方,然后起草一份包含职责、资格以及团队值得加入的原因的职位发布。",
    "I want to write a meeting follow-up. I'll tell you which meeting and share any notes I have. Check if calendar or email are connected since they could help pull in context. Follow up on anything that's unclear, then draft a summary with action items.": "我想写一份会议跟进。我会告诉您是哪个会议并分享我的任何笔记。检查日历或邮件是否已连接,因为它们可能有助于提取背景信息。跟进任何不清楚的地方,然后起草一份包含行动项的总结。",
    "I want to write a postmortem for a recent incident. Let me share what happened: the timeline, impact, and what we know so far. I might have a template or past postmortem to follow. Follow up on anything that's unclear, then draft a postmortem with root cause analysis, impact summary, and action items to prevent recurrence.": "我想为最近的一次事故写一份复盘报告。让我分享一下发生了什么:时间线、影响以及我们目前所掌握的情况。我可能有一份模板或以往的复盘报告作为参考。跟进任何不清楚的地方,然后起草一份包含根本原因分析、影响摘要以及预防再次发生的行动项的复盘报告。",
    "I want to write a product requirements doc (PRD). Give me room to share the feature, the problem, and any context or docs I have. Once that's down, help me sharpen the scope with follow-up questions. Only start writing once we've aligned on the structure and key decisions.": "我想写一个产品需求文档 (PRD)。给我空间来共享功能、问题以及我有的背景或文档。陈述完后,通过后续问题帮我精练范围。只有在我们对结构和关键决策达成一致后才开始撰写。",
    "I want to write a report. Give me space to share what I'm thinking: the topic, audience, and any source materials or examples I have. Once I've laid that out, help me think through the structure with follow-up questions. Only start writing once we've agreed on the outline and key points. Then let's refine the draft together.": "我想写一份报告。给我空间来共享我的想法:主题、受众以及我有的任何参考资料或示例。陈述完后,通过后续问题帮我推敲架构。只有在我们对大纲和关键点一致后才开始撰写。然后让我们一起润色初稿。",
    "I want to write a status update. Give me room to share the project, the audience, and what happened this period. I might have a past update or format to follow. Follow up on anything that's unclear, then draft something concise for us to review.": "我想写一个状态更新。给我空间来共享项目、受众以及本周期的进展。我可能有一个以前的更新或者格式供参考。跟进任何不清楚的地方,然后起草一份简洁的内容供我们审阅。",
    "I want to write an architecture design doc. I'll lay out the system, the problem it solves, and the constraints I'm working with. Check if GitHub's connected too, it could help pull in code for context. Once that's down, help me think through the trade-offs. Only start drafting once we've agreed on the approach.": "我想写一份架构设计文档。我会勾勒出系统架构、它解决的问题以及我面临的约束。同时也检查一下 GitHub 是否已连接,它能帮我拉取代码以提供背景。陈述完后,帮我通盘考虑权衡利弊。只有在我们达成一致后才开始起草。",
    "I want to write something. Ask me the format and audience, then draft a first pass we can shape together.": "我想写点东西。先问我格式和受众,然后起草一个初稿,我们再一起完善。",
    "I want to write technical documentation. Give me space to share what I'm documenting: the system, API, or process, and who the audience is. Check if my GitHub is connected since it could help pull in existing code for context. Follow up on anything that's unclear, then draft clear, structured documentation we can refine together.": "我想写技术文档。给我空间来分享我要记录的内容:系统、API 或流程,以及目标受众。检查我的 GitHub 是否已连接,因为它可以帮助引入现有代码作为上下文。跟进任何不清楚的地方,然后起草清晰、结构化的文档,我们可以一起完善。",
    "I won't show you ads. My focus is being genuinely helpful to you.": "我不会通过展示广告获利。我的重点是为您提供真正诚心的帮助。",
    "I work directly in your terminal and codebase. Just describe what you want to build and I’ll help make it happen.": "我直接运行在您的终端和代码库中。只需描述您想构建的内容,我就会助您实现它。",
    "I work in...": "我的工作领域是...",
    "I'd like to brainstorm. Ask me a couple of quick questions about what I'm working on, then suggest three directions we could take it.": "我想头脑风暴一下。先就我正在做的事情问我几个简短问题,然后建议三个我们可以推进的方向。",
    "I'd rather just ask a question.": "我还是想直接问个问题。",
    "I'll crunch through your analysis": "我会为您处理分析工作",
    "I'll describe a process and you'll map it step by step, flag where it breaks down, and suggest fixes.": "我会描述一个流程,你来逐步梳理它、指出哪里出了问题,并提出修复建议。",
    "I'll describe what I'm building in one line. Map the competitive landscape: key players, how they're positioned, and where I can differentiate.": "我会用一句话描述我正在做的东西。请帮我梳理竞争格局:关键参与者、他们的定位,以及我可以如何差异化。",
    "I'll do this later": "稍后再做",
    "I'll handle it while you step away": "您离开时我来处理",
    "I'll keep these in mind when I respond.": "我会在回复时记住这些。",
    "I'll organize your expense reports": "我将为您整理报销单",
    "I'll paste a business case — then help me map the core issue tree, key hypotheses, and the data that would prove or kill each one.": "我会粘贴一个商业案例,然后请帮我梳理核心问题树、关键假设,以及能够证明或否定每个假设的数据。",
    "I'll paste a contract below. Flag the clauses that carry the most risk for my side and briefly explain why each matters.": "我会在下面贴一份合同。请标出对我方风险最大的条款,并简要说明每条为何重要。",
    "I'll paste a function next. Ask me the language and test framework if unclear, then write unit tests covering the happy path and the edge cases that matter.": "我接下来会贴一个函数。如果不明确,请先问我所用语言和测试框架,然后编写覆盖正常路径和关键边界情况的单元测试。",
    "I'll paste a lab result below — explain it in plain language I can share with a patient.": "我会在下面粘贴一份化验结果,请用我可以分享给患者的通俗语言解释它。",
    "I'll paste a paper below. Summarize it covering: contribution, method, key results, and what it doesn't show or can't claim.": "我会在下面粘贴一篇论文。请总结其贡献、方法、关键结果,以及它没有展示或不能声称的内容。",
    "I'll paste a piece of student work next. Give me a constructive feedback framework, then apply it once I share.": "接下来我会粘贴一份学生作业。先给我一个建设性反馈框架,然后在我分享后应用它。",
    "I'll paste a writing sample, then share my draft. Analyze the sample's voice, sentence rhythm, and tone — then rewrite my draft to match it.": "我会先粘贴一段写作样本,再分享我的草稿。请分析样本的语气、句子节奏和风格,然后按它来重写我的草稿。",
    "I'll paste an HR policy draft below — please review it for clarity, coverage gaps, and anything employees might misread or misapply.": "我会在下面粘贴一份 HR 政策草稿,请帮我审查其清晰度、覆盖缺口,以及员工可能误读或误用的内容。",
    "I'll paste my answer below. Point out where my reasoning goes wrong — explain the flaw, don't just give me the right answer.": "我会在下面贴出我的答案。请指出我的推理哪里出错了——解释问题所在,而不只是给出正确答案。",
    "I'll paste my dataset (or describe its columns) below — then help me figure out what to look at first and which plots to start with.": "我会在下面粘贴我的数据集(或描述其列),然后请帮我判断应该先看什么、先从哪些图开始。",
    "I'll paste my evaluation results below. Help me interpret what the metrics mean and suggest what to try next.": "我会把评估结果粘贴在下面。请帮我解读这些指标的含义,并建议下一步可以尝试什么。",
    "I'll paste my financial model below. Stress-test the key assumptions and tell me which ones the output is most sensitive to.": "我将在下面粘贴我的财务模型。请对关键假设做压力测试,并告诉我输出对哪些假设最敏感。",
    "I'll paste my notes below — quiz me with short questions, then tell me what I got wrong and why.": "我会把笔记粘贴在下面,请用简短问题测验我,然后告诉我哪些答错了以及原因。",
    "I'll paste my results below. Help me interpret what they show, what they don't show, and how to frame them accurately.": "我会把结果粘贴在下面。请帮我解读这些结果说明了什么、没有说明什么,以及如何准确地表述它们。",
    "I'll pull context from your files and connectors": "我会从您的文件和连接器中提取背景信息",
    "I'll pull the key points from your meetings": "我将为您提取会议要点",
    "I'm a Max plan subscriber. How do I get access?": "我是 Max 方案订阅者。如何获取访问权限?",
    "I'm a Max plan subscriber. When do I get access?": "我是 Max 方案订阅者。我什么时候能获得访问权限?",
    "I'm a product designer working on a mobile app, and I'd love help thinking through onboarding flows…": "我是一名正在做移动应用的产品设计师,希望有人帮我一起思考新手引导流程…",
    "I'm facing a decision and want to think it through carefully. Help me lay out the options, weigh trade-offs, and figure out what matters most.": "我面临一个决策,想要仔细考虑一下。帮我列出选项,权衡利弊,并弄清楚最重要的是什么。",
    "I'm on a page with [job listings / products / directory entries] I want to extract.\n\nFirst, scan the page and show me what you see:\n- How many items total\n- What fields are available (title, price, location, description, etc.)\n\nBefore extracting, ask me:\n- Which fields I want in the spreadsheet\n- If there are any I should skip\n\nThen show me a preview with the first 3-5 items extracted so I can confirm the format looks right.\n\nIf there are more than 20 items on this page, extract them in batches of 10. If there are multiple pages, just do the first page and check with you before continuing.": "我现在在一个包含[职位列表 / 产品 / 目录条目]的页面上,想把内容提取出来。\n\n首先,扫描页面并告诉我你看到了什么:\n- 总共有多少项\n- 可用字段有哪些(标题、价格、位置、描述等)\n\n在提取之前,先问我:\n- 我希望电子表格中包含哪些字段\n- 是否有任何字段需要跳过\n\n然后先展示前 3 到 5 项的提取预览,这样我可以确认格式是否正确。\n\n如果本页超过 20 项,请按每批 10 项提取。如果有多页,只处理第一页,并在继续之前先和我确认。",
    "I'm planning a study. Ask me the research question, then help me think through methods and what could go wrong.": "我正在规划一项研究。请先问我研究问题,然后帮我思考研究方法以及可能出错的地方。",
    "I'm planning something longer. Ask me the topic and angle, then sketch an outline I can react to.": "我在规划一个更长的内容。先问我主题和切入角度,然后勾勒一个我可以反馈的提纲。",
    "I'm putting together a deck. Ask me about the client and the ask, then outline the story slide by slide.": "我正在准备一个演示文稿。先问我客户情况和需求,然后按页为我梳理故事线。",
    "I'm scoping a research area. Ask me the topic, then map the key threads and where the open questions are.": "我正在界定一个研究领域。先问我主题,然后梳理关键脉络以及尚未解决的问题所在。",
    "I'm seeing unexpected behavior or errors in a system. Help me work through it systematically — I'll share details on what's happening.": "我在系统中看到一些意外行为或错误。请帮我系统化地排查,我会分享正在发生的详细情况。",
    "I'm signed in on my phone": "我已在手机上登录",
    "I'm taking a temporary break": "我正在暂时休假/休息",
    "I'm weighing a hard decision. I'll describe it; ask me one question at a time to clarify what matters, then help me see the tradeoffs.": "我正在权衡一个艰难决定。我会描述它;请一次问我一个问题来澄清关键点,然后帮助我看清其中的权衡。",
    "I'm your AI assistant for working, imagining, and deep thinking.": "我是您的 AI 助手,负责工作、想象和深度思考。",
    "I've got a feature idea brewing. Ask me what it is and what problem it solves, then help me push on it and see where it could go.": "我正在酝酿一个功能创意。请询问我这个创意是什么以及它解决了什么问题,然后帮我完善它并看看其发展空间。",
    "I've got a function that works but isn't great. Ask me to share it, then suggest a cleaner shape and walk me through the trade-offs.": "我有一个能用但不够好的函数。先让我分享它,然后建议一种更清晰的写法,并带我理解其中的取舍。",
    "I've got a product problem I'm chewing on. Ask me what's going on, and don't rush to fix it — help me see it clearly first.": "我正在思考一个产品问题。请询问我发生了什么,不要急着修复 —— 先帮我把它看清楚。",
    "I've got a pull request I'd like a second pair of eyes on. Ask me to share the diff, then point out bugs, edge cases, or anything that'd trip up a reviewer.": "我有一个拉取请求想请你帮忙再看一遍。先让我分享 diff,然后指出 bug、边界情况,或任何会让审阅者卡住的问题。",
    "I've got a screenshot of something I want to build. Ask me to share it, then turn it into working code I can run.": "我有一张我想构建的东西的截图。请让我分享它,然后将其转为我可以运行的代码。",
    "I've got a start of an idea. Ask me what it is, then help me find the holes and see where it could go.": "我有个初步的想法。请询问我是什么,然后帮我查漏补缺,看看它的前景。",
    "I've got a startup idea I want to kick around. Ask me what it is, then help me find the holes and see where it could go.": "我有一个创业点子想交流一下。请问我这个点子是什么,然后帮我查漏补缺,看看它的前景如何。",
    "I've got a test failing and I'm not sure why. Ask me to share the code and the error, then help me figure out what's going on.": "我有一个测试失败了,但不确定原因。请让我提供代码和错误信息,然后帮我找出问题所在。",
    "I've got an analysis I need to turn into a deck. Ask me to share it and who's seeing it, then help me land on the story before we build slides.": "我有一份分析报告需要转成幻灯片。请让我分享报告并说明受众是谁,然后在制作幻灯片之前帮我定好叙事逻辑。",
    "I've got messaging I want to sharpen. Ask me to share what I've got and who it's for, then riff with me on it.": "我有一些文案想润色。请让我分享现有内容和受众,然后跟我一起探讨。",
    "I've got messy data I need to wrangle. Ask me to share it or describe the mess, then help me get it into shape.": "我有一些乱七八糟的数据需要整理。请让我分享数据或描述乱象,然后帮我将其理顺。",
    "I've got notes I want to turn into flashcards. Ask me to share them, then pull out the stuff worth drilling.": "我有些笔记想转成闪存卡。请让我分享它们,然后提取出值得反复练习的内容。",
    "I've got the start of an idea. Ask me what it is, then help me find the holes and see where it could go.": "我已有了一个想法的雏形。来问问我是什么,然后帮我找出不足之处,看看它能发展到哪里。",
    "ID": "ID",
    "ID copied to clipboard.": "ID 已复制到剪贴板。",
    "ID: {id}": "ID:{id}",
    "IDE extension": "IDE 扩展程序",
    "INCLUDED": "已包含",
    "IP allowlist": "IP 允许列表",
    "IP allowlist settings updated.": "IP 允许列表设置已更新。",
    "IP allowlist updated.": "IP 允许列表已更新。",
    "IP allowlisting": "IP 允许列表/白名单",
    "IP range": "IP 范围",
    "IP range is already in the list.": "IP 范围已在列表中。",
    "IP ranges (CIDR)": "IP 范围 (CIDR)",
    "ISO 8601 timestamp. Test pairs expire after this time.": "ISO 8601 时间戳。测试配对在此时间后过期。",
    "IT and security": "IT 与安全",
    "Icon URL": "图标 URL",
    "IdP Entity ID": "IdP 实体 ID",
    "IdP Group Name": "IdP 组名称",
    "IdP group has been detected": "已检测到 IdP 分组",
    "IdP group name {rowIndex}": "IdP 组名 {rowIndex}",
    "IdP group not seen": "未发现 IdP 分组",
    "Idea spark": "灵感火花",
    "Ideas": "创意/想法",
    "Identify and visualize my most brilliant moments from my documents": "从我的文档中识别并直观展示我那些最有才华的瞬间",
    "Identify emerging patterns in human and machine relationships": "识别人类与机器关系中出现的新模式",
    "Identify how my calendar habits reflect my personal priorities": "识别我的日历习惯如何反映我的个人优先级",
    "Identify key themes": "识别关键主题",
    "Identify the most important performance differences between the latest accelerators from nvidia, google, and amazon?": "找出 NVIDIA、Google 和 Amazon 最新加速器之间最重要的性能差异?",
    "Identify transferable skills": "识别可迁移技能",
    "Identify what my top 3 priorities should be today": "确定我今天最重要的 3 件事",
    "Identity File (Private Key)": "身份文件(私钥)",
    "Identity Provider (IdP) SAML Configuration": "身份提供商 (IdP) SAML 配置",
    "Identity and access": "身份与访问",
    "Identity verification couldn't be started. You can try again.": "无法启动身份验证。您可以重试。",
    "Identity verification is required to continue.": "需要进行身份验证才能继续。",
    "Identity verification is required. Refresh the page and try again.": "需要身份验证。请刷新页面并重试。",
    "Identity verification is still processing. Wait a moment and try again.": "身份验证仍在处理中。请稍等片刻并重试。",
    "Identity verification was unsuccessful. The subscription can't be activated. If this seems like an error, <link>contact support</link>.": "身份验证失败。订阅无法激活。如果这看起来是个错误,请<link>联系支持人员</link>。",
    "Idle": "空闲",
    "If Alexandria's library survived": "如果亚历山大图书馆幸存下来",
    "If Claude's this useful to you, share it with your colleagues — work together in shared projects, all on one plan.": "如果 Claude 对您大有帮助,请分享给您的同事 —— 在同一个订阅计划下开展项目协作。",
    "If Claude’s this useful to you, share it with your colleagues — work together in shared projects, all on one plan.": "如果 Claude 对您如此有用,请与您的同事分享 — 在共享项目中一起工作,全部在一个计划中。",
    "If enabled, Claude will never use the system Node.js for extension MCP servers. This happens automatically when system’s Node.js is missing or outdated. ": "如果启用,Claude 绝不会为扩展 MCP 服务器使用系统 Node.js。当系统 Node.js 缺失或过时时,这会自动发生。",
    "If my email inbox was a reality TV show, who would be voted off the island first?": "如果我的收件箱是一个真人秀节目,谁会第一个被淘汰?",
    "If provided, we may contact you for additional information or updates on this report": "如果提供,我们可能会联系您以获取有关此报告的额外信息或更新。",
    "If the app doesn’t open automatically, please click the button below.": "如果应用没有自动打开,请点击下方的按钮。",
    "If the problem persists <link>contact support</link> for assistance.": "如果问题仍然存在,请<link>联系支持人员</link>获取协助。",
    "If the problem persists, please <link>contact support</link>.": "如果问题仍然存在,请<link>联系特殊支持</link>。",
    "If the problem persists, you can <link>contact support</link>.": "如果问题持续存在,您可以 <link>联系支持团队</link>。",
    "If this persists, try again in a few moments.": "如果问题仍然存在,请稍后重试。",
    "If yes, you'll need to contact our sales team to get started.": "如果是,您需要联系我们的销售团队以开始。",
    "If you are reporting the content as illegal/unlawful, please describe in detail why you believe the identified content is illegal/unlawful, citing specific provisions of law wherever possible.": "如果您举报该内容为非法/违规内容,请详细描述您认为该内容非法/违规的原因,尽可能引用具体的法律条款。",
    "If you are reporting the content as violating our policies (including our terms or Usage Policy), please describe in detail why you believe the identified content is in violation of our policies, with specific citations to our policies wherever possible.": "如果您举报该内容违反我们的政策(包括我们的条款或使用政策),请详细说明您认为该内容违反我们政策的原因,并尽可能具体引用我们的政策。",
    "If you are struggling with sexual thoughts or urges towards children, support is available. Access resources and anonymous, confidential help from Stop It Now.": "如果您正身陷针对儿童的性冲动或性欲望中,我们可以为您提供支持。您可以从 Stop It Now 获得匿名、机密的帮助和资源。",
    "If you authorize Claude to access your Gmail messages, Claude may:": "如果您授权 Claude 访问您的 Gmail 邮件,Claude 可能会:",
    "If you believe this decision was made in error, you can submit an appeal for review. Our team will carefully evaluate your case and respond within 5-7 business days.": "如果您认为此决定有误,可以提交申诉以供审核。我们的团队将仔细评估您的情况,并在5-7个工作日内回复。",
    "If you believe this is a mistake, email {email}.": "如果你认为这是误判,请发送邮件至 {email}。",
    "If you can dream it, Claude can help you do it. Claude can process large amounts of information, brainstorm ideas, generate text and code, help you understand subjects, coach you through difficult situations, simplify your busywork so you can focus on what matters most, and so much more.": "只要您敢想,Claude 就能帮您圆梦。Claude 可以处理海量信息、进行头脑风暴、生成文本和代码、帮您理解各种课题、引导您度过难关、简化您的琐事,从而让您能专注于最重要的事情,此外还有更多能力。",
    "If you can dream it, you can build it. Take apps, games, templates, and tools from thought to reality.": "敢梦就能圆。让应用、游戏、模板和工具从构思变为现实。",
    "If you cancel this upcoming pause, your next billing cycle will continue as normal. Your plan will renew and you will be automatically charged {price} on {nextDate}.": "如果您取消即将开始的暂停,您的下一个账单周期将正常继续。您的方案将续费,您将在 {nextDate} 被自动扣除 {price}。",
    "If you cancel this upcoming pause, your next billing cycle will continue as normal. Your plan will renew at your current rate on {nextDate}.": "如果你取消即将到来的暂停,你的下一个账单周期将照常继续。你的套餐将于 {nextDate} 按当前费率续订。",
    "If you end the interview now, you can't restart later. Keep chatting if you have more thoughts to share! Your insights so far are saved.": "如果您现在结束访谈,稍后将无法重新开始。如果您还有更多想法,请继续交流!到目前为止,您的见解已保存。",
    "If you genuinely need one piece of information from me before you can produce anything useful, ask only that one question instead, and keep it specific.": "如果你在给出任何有用结果前确实只需要我提供一条信息,那就只问那一个问题,并保持具体。",
    "If you intended to log into <link>Anthropic Console</link>, please navigate to that page and try again.": "如果您想要登录 <link>Anthropic Console</link>,请前往该页面重试。",
    "If you intended to log into Claude Chat, please log out and try again.": "如果您打算登录 Claude Chat,请登出并重试。",
    "If you lose this secret, delete the webhook and create a new one.": "如果您丢失此密钥,请删除 webhook 并创建一个新密钥。",
    "If you need support, it's available": "如需支持,现已提供",
    "If you or someone you know is having a difficult time, free support is available.": "如果您或您认识的人正处于艰难时期,可获得免费支持。",
    "If you provide a tax ID, the \"Full name\" above should be your business's name.": "如果您提供纳税人识别号,上方的“全名”应为您企业的名称。",
    "If you've been working with someone at Anthropic, let us know who.": "如果你一直在与 Anthropic 的某位人员合作,请告诉我们是谁。",
    "If you've shared this skill, others will lose access after renaming.": "如果您已分享此技能,更名后其他人将失去访问权限。",
    "If your deployment auto-restarts, a fresh runner will reconnect shortly.": "如果您的部署自动重启,新的运行器将很快重新连接。",
    "If your order form automatically renews, your renewal will be for the total number of User seats purchased through the end of your current order form term.": "如果您的订购单是自动续费的,您的续费将涵盖在当前订购单期限结束前购买的所有用户席位总数。",
    "Ignored": "已忽略",
    "Illegal goods": "非法物品",
    "Image": "图片",
    "Image copied to clipboard": "图片已复制到剪贴板",
    "Image is too large. <link>Learn more</link>": "图片太大。<link>了解更多</link>",
    "Image preview": "图片预览",
    "Image search results are no longer available.": "图片搜索结果不再可用。",
    "Image unavailable": "图片不可用",
    "Image uploaded. Re-publish your app for it to take effect.": "图片已上传。请重新发布你的应用以使其生效。",
    "Image: {domain}": "图片:{domain}",
    "Impact": "影响力",
    "Implement dark mode": "实现深色模式",
    "Implement designs": "实现设计",
    "Implementation Guide": "实施指南",
    "Import": "导入",
    "Import GitHub issue": "导入 GitHub 问题",
    "Import Linear issue": "导入 Linear 问题",
    "Import a .zip file": "导入 .zip 文件",
    "Import a .zip, .skill, or .md file": "导入 .zip、.skill 或 .md 文件",
    "Import a project": "导入项目",
    "Import as static": "以静态方式导入",
    "Import from zip": "从 zip 导入",
    "Import issue": "导入问题",
    "Import issues": "导入 Issue",
    "Import memory from another AI provider": "从其他 AI 提供商导入记忆",
    "Import memory from other AI providers": "从其他 AI 提供商导入记忆",
    "Import memory from other AI tool providers": "从其他 AI 工具提供商导入记忆",
    "Import memory to Claude": "将记忆导入到 Claude",
    "Important: The member will remain on their current tier until the downgrade takes effect. You’ll need to manually reassign them to the new tier after {date}.": "重要提示:在降级生效前,该成员将保留现有等级。您需要在 {date} 之后手动将其重新分配到新等级。",
    "Improve": "改进",
    "Improve Prompt": "优化提示词",
    "Improve communication skills": "提升沟通技巧",
    "Improve financial literacy": "提高理财素养",
    "Improve my draft": "改进我的初稿",
    "Improve my habits": "改善我的习惯",
    "Improve my resume": "提升我的简历",
    "Improve my work-life balance": "改善我的工作与生活平衡",
    "Improve my writing style": "改进我的写作风格",
    "Improve operational efficiency": "提升运营效率",
    "Improve prompt": "完善提示词",
    "Improve public speaking": "提升演说能力",
    "Improve sleep habits": "改善睡眠习惯",
    "Improve technical skills": "提升技术技能",
    "Improve the clarity and readability of your writing by getting feedback on errors and areas of improvements": "针对错误和改进空间获取反馈,从而提升您写作的清晰度和可读性",
    "Improve time management": "改进时间管理",
    "Improving prompt...": "优化提示词中...",
    "Improving...": "正在改进/优化中...",
    "In <link>.env format</link>. These are stored securely and passed to Claude sessions.": "使用 <link>.env 格式</link>。这些信息将被安全存储并传递给 Claude 会话。",
    "In <link>.env format</link>. These are visible to anyone using this environment — don't add secrets or credentials.": "采用 <link>.env 格式</link>。这些内容对使用该环境的任何人可见——不要添加机密或凭据。",
    "In Bypass Permissions mode, Claude skips permission checks and takes actions and runs commands without asking for approval. This includes risky actions and actions that may result in prompt injections. This mode should only be used in isolated environments.": "在“绕过权限”模式下,Claude 会跳过权限检查,在不征求批准的情况下采取操作及运行命令。这包括高风险操作以及可能导致提示词注入的操作。此模式应仅在隔离环境中使用。",
    "In chats": "在聊天中",
    "In merge queue": "在合并队列中",
    "In progress": "进行中",
    "In queue": "排队中",
    "In review": "审阅中",
    "In the Team plan, usage is included in the seat price. With an Enterprise plan, you purchase seats to get access to the platform, and usage is billed separately as you go.": "在团队方案中,用量包含在席位价格中。在企业方案中,您购买席位以获得平台访问权,用量则按需单独计费。",
    "In the macOS menu bar, open <b>Developer → Conway</b>": "在 macOS 菜单栏中,打开 <b>Developer → Conway</b>",
    "In this example project, we've added key files about how to use Claude.": "在这个示例项目中,我们添加了关于如何使用 Claude 的关键文件。",
    "In {path} at line {line}: `{snippet}` — explain what this does and where it's used.": "在 {path} 的第 {line} 行:`{snippet}`。请解释这段内容的作用以及它在哪里被使用。",
    "Inactive": "非活跃",
    "Include completed": "包含已完成项",
    "Include details": "包含详细信息",
    "Include project": "包含项目",
    "Include shared with me": "包含共享给我的内容",
    "Included allowance": "包含额度",
    "Included routine runs per rolling 24 hours. Additional runs use Extra Usage when enabled.": "每滚动 24 小时包含的例程运行次数。启用后,额外运行将使用 Extra Usage。",
    "Includes Claude Code access and more usage": "包含 Claude Code 访问权限和更多用量",
    "Includes Cowork, plus:": "包含 Cowork,以及:",
    "Includes a value set by provider: {provider}": "包含由提供方设置的值:{provider}",
    "Includes standard features and usage": "包括标准功能和用量",
    "Incognito chat": "隐身聊天",
    "Incognito chats aren’t saved or added to memory.": "隐身聊天不会被保存或添加到记忆中。",
    "Incognito chats aren’t saved to history or used to train models.": "隐身聊天不会保存到历史记录,也不会用于训练模型。",
    "Incognito chats aren’t saved to history.": "隐身聊天不会保存到历史记录。",
    "Incognito chats aren’t saved, added to memory, or used to train models.": "隐身聊天不会被保存、添加到记忆或用于训练模型。",
    "Incomplete response": "回答不完整",
    "Incorrect": "不正确",
    "Incorrect code entered. Please check that the code matches what you received in your other browser or device and try again.": "输入的代码不正确。请检查该代码是否与您在另一个浏览器或设备中接收到的代码一致,然后重试。",
    "Increase extra usage limit": "调高额外用量限额",
    "Increase extra usage limit for {name}": "增加 {name} 的额外用量限额",
    "Increase limit for all {tier} seats ({count} total)": "增加所有 {tier} 席位的限额(共 {count} 个)",
    "Increase limit for {groupName} group": "提高 {groupName} 组的限制",
    "Increase limit for {name}": "增加 {name} 的限额",
    "Increase seat limit": "增加席位上限",
    "Increase seats": "增加席位",
    "Increase spend limit": "增加支出限额",
    "Increase spend limit for {name}": "为 {name} 增加支出限额",
    "Increase usage": "增加用量",
    "Indexing": "正在建立索引",
    "Indicate which MCP tool annotation hints your server's tools provide.": "说明你的服务器工具提供了哪些 MCP 工具注解提示。",
    "Individual": "个人",
    "Industries": "行业",
    "Industry default unless pinned": "除非固定,否则使用行业默认值",
    "Inference provider": "推理提供商",
    "Influencer": "KOL/博主/影响者",
    "Information disclosure": "信息泄露",
    "Ingested files up to {relativeTime}": "已摄取文件至 {relativeTime}",
    "Ingesting": "正在摄入",
    "Ingredients": "成分/原料",
    "Initial credits": "初始额度",
    "Initial credits amount in dollars": "初始额度(以美元计)",
    "Initial usage charge": "初始使用费",
    "Initialized session": "会话已初始化",
    "Initialized your session": "已初始化您的会话",
    "Initializing": "正在初始化",
    "Initializing research tools...": "正在初始化研究工具...",
    "Initializing session": "正在初始化会话",
    "Initializing your session": "正在初始化您的会话",
    "Initiating purchase...": "正在发起购买...",
    "Inject credential": "注入凭据",
    "Injected on every proxied request to allowed hosts. Values are write-only and never shown after saving.": "会注入到发往允许主机的每个代理请求中。值为只写,保存后将不再显示。",
    "Injected on every proxied request to matching hosts. Values are write-only and never shown after saving.": "注入到匹配主机的每个代理请求中。数值为只写,保存后不再显示。",
    "Ink color": "墨迹颜色",
    "Ink color {n}": "墨迹颜色 {n}",
    "Inline visualizations": "内联可视化",
    "Inline visualizations disabled": "内联可视化已禁用",
    "Inline visualizations enabled": "已启用内联可视化",
    "Insecure configuration": "不安全的配置",
    "Insecure deserialization": "不安全的反序列化",
    "Insights": "洞察/Insights",
    "Inspect and reset your own cowork free trial state. Trial duration is controlled server-side; PATCH sets starts_at and the server recomputes ends_at.": "检查并重置您的个人Cowork免费试用状态。试用时长由服务器端控制;PATCH设置starts_at后服务器会重新计算ends_at。",
    "Inspect tool": "检查工具",
    "Inspiration": "灵感/创意",
    "Instagram": "Instagram",
    "Install": "安装",
    "Install Claude Code": "安装 Claude Code",
    "Install Claude Code in terminal": "在终端中安装 Claude Code",
    "Install Claude environment runner": "安装 Claude 环境运行器",
    "Install Claude in Chrome": "安装 Chrome 版 Claude",
    "Install Extension": "安装扩展程序",
    "Install Git": "安装 Git",
    "Install Git (Xcode Command Line Tools on macOS, Git for Windows on Windows), then try again.": "安装 Git(macOS 上安装 Xcode Command Line Tools,Windows 上安装 Git for Windows),然后重试。",
    "Install GitHub App": "安装 GitHub 应用",
    "Install Slack app": "安装 Slack 应用",
    "Install Unpacked Extension": "安装解压后的扩展程序",
    "Install and open the app": "安装并打开应用",
    "Install and restart Chrome": "安装并重启 Chrome",
    "Install custom tools, UI tabs, and context handlers.": "安装自定义工具、UI 选项卡和上下文处理程序。",
    "Install failed. Please try again.": "安装失败。请重试。",
    "Install for me": "为我安装",
    "Install for project (personal)": "为项目安装(个人)",
    "Install for project (shared)": "为项目安装(共享)",
    "Install in": "安装于",
    "Install in Cursor": "在 Cursor 中安装",
    "Install in VS Code": "在 VS Code 中安装",
    "Install in Windsurf": "在 Windsurf 中安装",
    "Install in the desktop app": "在桌面应用中安装",
    "Install in your terminal, or pick where you want to start.": "在终端安装,或选一个您想开始的地方。",
    "Install instructions here": "此处为安装说明",
    "Install later": "稍后安装",
    "Install now": "立即安装",
    "Install the <link>Claude Code GitHub App</link> in your repositories to connect them to Claude. You can manage this later in your repository list.": "在您的代码仓库中安装 <link>Claude Code GitHub App</link>,将其与 Claude 连接。您稍后可以在代码仓库列表中进行管理。",
    "Install the <link>GitHub App</link> to enable auto-fix and auto-merge.": "安装 <link>GitHub App</link> 以启用自动修复和自动合并。",
    "Install the <link>GitHub CLI</link> to enable CI monitoring, auto-fix, and auto-merge.": "安装 <link>GitHub CLI</link> 以开启 CI 监控、自动修复和自动合并功能。",
    "Install the App on your repositories to start receiving events": "在您的存储库上安装 App 以开始接收事件",
    "Install the Claude GitHub App": "安装 Claude GitHub 应用",
    "Install the Claude GitHub App on your repositories to receive webhooks.": "在您的存储库上安装 Claude GitHub App 以接收 Webhook。",
    "Install the Claude GitHub App on {owner} first, then try again. Install link: {url}": "请先在 {owner} 上安装 Claude GitHub App,然后再试。安装链接:{url}",
    "Install the Claude GitHub App on {repo} to use webhook triggers, or pick a different repository.": "在 {repo} 上安装 Claude GitHub App 以使用 webhook 触发器,或选择其他仓库。",
    "Install the Claude GitHub App to give Claude access to your repositories for security scanning.": "安装 Claude GitHub 应用,让 Claude 能够访问您的仓库进行安全扫描。",
    "Install the GitHub CLI": "安装 GitHub CLI",
    "Install the GitHub app on your repositories so that you can access them here.": "在您的仓库中安装 GitHub 应用,以便在此处访问它们。",
    "Install the desktop app, or pick where you want to start.": "安装桌面应用,或选择您想开始的地方。",
    "Install the environment runner in your containers with this curl command.": "使用此 curl 命令在您的容器中安装环境运行器。",
    "Install with Homebrew": "使用 Homebrew 安装",
    "Installation failed. Visit cli.github.com to install manually.": "安装失败。请访问 cli.github.com 手动安装。",
    "Installations ({count})": "安装 ({count})",
    "Installed": "已安装",
    "Installed by default": "默认安装",
    "Installed on your computer": "已安装在您的电脑上",
    "Installing": "正在安装",
    "Installing Claude Code...": "正在安装 Claude Code...",
    "Installing will grant access to everything available to Cowork.": "安装将授予对 Cowork 所有可用功能的访问权限。",
    "Installing will grant access to everything on your computer.": "安装将授予访问您计算机上所有内容的权限。",
    "Installing will grant this extension access to everything on your computer. Any developer information shown has not been verified by Anthropic. Ensure you trust the source of this extension before installation.": "安装将授予此扩展访问您计算机上所有内容的权限。显示的任何开发者信息均未经 Anthropic 验证。在安装之前,请确保您信任此扩展的来源。",
    "Installing...": "正在安装...",
    "Installing…": "正在安装…",
    "Installs to .claude.local/ — personal, gitignored.": "安装到 .claude.local/ — 个人,git 已忽略。",
    "Installs to .claude/ — shared with your team via git.": "安装到 .claude/ — 通过 git 与您的团队共享。",
    "Installs to ~/.claude/ — available in all projects on this machine.": "安装到 ~/.claude/ — 适用于此机器上的所有项目。",
    "Instant": "即时",
    "Instructions": "指令 (Instructions)",
    "Instructions can't be changed because one of your orgs has an encryption key configured.": "无法更改说明,因为你的某个组织配置了加密密钥。",
    "Instructions for Claude": "给 Claude 的说明",
    "Instructions here apply to all Cowork sessions. Use this for conventions or context that Claude should always know.": "此处的说明适用于所有协作会话。将此用于 Claude 应始终了解的约定或上下文。",
    "Instructions here apply to all Cowork sessions. Use this for preferences, conventions, or context that Claude should always know.": "此处说明适用于所有 Cowork 会话。可用于设置 Claude 应始终了解的偏好、约定或上下文。",
    "Insufficient seats": "席位不足",
    "Integrate any context or tool through connectors with remote MCP": "通过远程 MCP 连接器集成任何背景信息或工具",
    "Integration Enabled!": "集成已开启!",
    "Integrations available to Claude during each run.": "每次运行期间 Claude 可用的集成。",
    "Interactive": "互动的/交互式的",
    "Interactive Learning Tools and Educational Resources Built with Claude": "使用 Claude 构建的互动学习工具和教育资源",
    "Interactive artifact": "互动构件",
    "Interactive content": "互动内容",
    "Interactive drum machine": "交互式鼓机",
    "Interactive tools": "交互式工具",
    "Internal use only": "仅限内部使用",
    "International Artifacts Built with Claude": "使用 Claude 构建的国际化构件",
    "Interpret my results": "解读我的结果",
    "Interrupt": "中断",
    "Interrupted": "已中断",
    "Interview not started.": "访谈未开始。",
    "Interview questions from JD": "根据 JD 生成面试问题",
    "Invalid AWS Token": "无效的 AWS 令牌",
    "Invalid JSON file. Please check the file format.": "无效的 JSON 文件。请检查文件格式。",
    "Invalid OAuth Request": "无效的 OAuth 请求",
    "Invalid Outline document ID.": "无效的 Outline 文档 ID。",
    "Invalid SSO callback url": "无效的 SSO 回调 URL",
    "Invalid URL": "无效的 URL",
    "Invalid URL format": "URL 格式无效",
    "Invalid URL.": "URL 无效。",
    "Invalid code_challenge_method: {method}. Expected: ‘S256’": "无效的 code_challenge_method:{method}。预期值为:'S256'",
    "Invalid cron expression.": "无效的 cron 表达式。",
    "Invalid date and time.": "无效的日期和时间。",
    "Invalid date.": "无效日期。",
    "Invalid domain. Valid domains are in the format example.com": "无效域名。有效域名的格式应为 example.com",
    "Invalid email": "无效的电子邮件",
    "Invalid email address": "无效的邮箱地址",
    "Invalid email address.": "无效的电子邮箱地址。",
    "Invalid email address. Please double-check the email entered and try again.": "电子邮件地址无效。请仔细检查输入的邮箱并重试。",
    "Invalid format.": "格式无效。",
    "Invalid format. Use METHOD ^regex$ (e.g. GET ^/api/v1/query$).": "格式无效。使用 METHOD ^regex$(例如 GET ^/api/v1/query$)。",
    "Invalid host pattern. Use a domain like api.example.com or *.example.com.": "主机模式无效。请使用类似 api.example.com 或 *.example.com 的域名。",
    "Invalid host. Use a domain like api.example.com or *.example.com.": "无效的主机。请使用类似 api.example.com 或 *.example.com 的域名。",
    "Invalid installation": "无效的安装",
    "Invalid invite link": "无效的邀请链接",
    "Invalid login": "登录无效",
    "Invalid network egress settings": "无效的网络出口 (Egress) 设置",
    "Invalid offer": "无效优惠",
    "Invalid phone number": "无效的电话号码",
    "Invalid question format": "无效的问题格式",
    "Invalid response": "无效响应",
    "Invalid response_type: {responseType}. Expected: ‘code’": "无效的 response_type:{responseType}。预期为:‘code’",
    "Invalid schedule": "无效的计划进度",
    "Invalid screenshot format": "无效的截图格式",
    "Invalid signup code": "注册码无效",
    "Invalid: <b>{label}</b>": "无效:<b>{label}</b>",
    "Invent a coding language based on my favorite hobby": "根据我最喜欢的爱好发明一种编程语言",
    "Investigate a metric shift": "调查指标变化",
    "Investigate scientific mysteries": "探究科学奥秘",
    "Investigate when we realized trees could talk (chemically)": "调查我们何时意识到树木会(通过化学方式)对话",
    "Invitation resent": "已重新发送邀请",
    "Invitation revoked": "邀请已撤回",
    "Invitation sent — waiting for them to accept": "邀请已发送——等待对方接受",
    "Invite": "邀请",
    "Invite Console organizations to join your parent organization to centralize SSO and compliance settings.": "邀请控制台组织加入您的母组织,以集中 SSO 和合规性设置。",
    "Invite a teammate": "邀请队友",
    "Invite and continue": "邀请并继续",
    "Invite by email": "通过邮件邀请",
    "Invite email address": "被邀请人的邮箱地址",
    "Invite individually": "单独邀请",
    "Invite link": "邀请链接",
    "Invite link disabled": "邀请链接已禁用",
    "Invite link enabled": "邀请链接已启用",
    "Invite link regenerated": "邀请链接已重新生成",
    "Invite members to your team": "邀请成员加入您的团队",
    "Invite my team": "邀请我的团队",
    "Invite only": "仅限受邀",
    "Invite organizations to join your parent organization to centralize SSO and compliance settings.": "邀请组织加入您的母组织,以集中 SSO 和合规性设置。",
    "Invite request couldn't be submitted. You can try again.": "无法提交邀请申请。您可以重试。",
    "Invite request sent to your admin for review": "邀请请求已发送给您的主管审核",
    "Invite requests couldn't be submitted. You can try again.": "无法提交邀请请求。你可以重试。",
    "Invite sent": "邀请已发送",
    "Invite someone who can verify your company owns <b>{domain}</b> by creating a TXT record on your DNS provider and who can access administrative settings on your Identity Provider. They will be an Owner in your organization and will be able to adjust organization level settings and invite other members.": "邀请一位能够验证拥有 <b>{domain}</b> 所有权的人员(通过在 DNS 服务商处创建 TXT 记录,并具有身份提供商的管理配置权限)。该人员将成为组织的所有者(Owner),并能调整组织级设置及邀请其他成员。",
    "Invite team members": "邀请团队成员",
    "Invite teammates": "邀请队友",
    "Invite teammates with a shareable link": "通过可共享链接邀请队友",
    "Invite users": "邀请用户",
    "Invite was sent, but project access couldn't be set up.": "邀请已发送,但无法设置项目访问权限。",
    "Invite was sent, but skill access couldn't be set up.": "邀请已发送,但无法设置技能访问权限。",
    "Invite your lab": "邀请您的实验室成员",
    "Invite {email}": "邀请 {email}",
    "Invite {orgName} to merge?": "邀请 {orgName} 合并?",
    "Invited": "已邀请",
    "Invited by {inviter}": "由 {inviter} 邀请",
    "Invited by {name}": "由 {name} 邀请",
    "Invites": "邀请",
    "Invites Sent": "已发出的邀请",
    "Invoice created": "发票已创建",
    "Invoice sent": "发票已发送",
    "Invoices": "发票",
    "Invoices are not available for AWS Marketplace customers. Please visit the AWS Billing Console to view your invoices.": "AWS Marketplace 客户无法获取发票。请访问 AWS 账单控制台查看您的发票。",
    "Invoke by typing / in chat, or let Claude use them automatically for relevant tasks.": "在聊天中输入 / 即可调用,或让 Claude 在处理相关任务时自动使用它们。",
    "Invoke environment runner": "调用环境运行程序",
    "Invoked by": "调用者:",
    "Is this your current plan?": "这是你当前的方案吗?",
    "Is {name} how I should refer to you? If not, you can change that now.": "要用 {name} 来称呼您吗?如果不,您现在可以修改。",
    "Isolate web search from connectors": "将网页搜索与连接器隔离",
    "Issue comment": "问题评论",
    "Issue comment created, edited, or deleted": "问题评论已创建、编辑或删除",
    "Issue content unavailable — Claude will fetch it from the URL.": "问题内容不可用 — Claude 将从 URL 获取它。",
    "Issue key": "问题键",
    "Issue new key": "发行新密钥",
    "Issue opened": "Issue 已创建",
    "Issue opened, edited, deleted, etc.": "问题已开启、编辑、删除等。",
    "Issue with thought process": "思考过程出现问题",
    "Issues": "问题 (Issues)",
    "It appears your recent prompts continue to violate our Acceptable Use Policy. If we continue seeing this pattern, we’ll apply enhanced safety filters to your chats.": "您最近的提示似乎持续违反我们的可接受使用政策。如果我们继续发现此模式,将对您的对话应用增强的安全过滤器。",
    "It looks like a few of your recent prompts don’t meet our Usage Policy.": "看来您最近的一些提示词不符合我们的使用政策。",
    "It may have been deleted or you might not have permission to view it. Use the share button to share chats on Claude.": "内容可能已被删除,或者您可能没有查看权限。请使用分享按钮在 Claude 上分享聊天。",
    "It provides {hookCount, plural, one {# hook} other {# hooks}} that run automatically during your session.": "它提供 {hookCount, plural, one {# hook} other {# hooks}},在您的会话期间自动运行。",
    "It provides {serverCount, plural, one {# connector} other {# connectors}}.": "它提供 {serverCount, plural, one {# 个连接器} other {# 个连接器}}。",
    "It's all included on your free plan.": "这些都已包含在您的免费方案中。",
    "It's dangerous to go alone. Take Claude.": "一个人走很危险。带上 Claude 吧。",
    "It's easy to bring memory over from other AI providers.": "从其他 AI 提供商迁移记忆非常简单。",
    "It's late-night": "现在是深夜",
    "It's late-night {name}": "夜深了,{name}",
    "It's the thought (partner) that counts": "心意(伙伴)才是最重要的",
    "Item {n}": "项目 {n}",
    "I’d go with: Problem → Solution → Timeline → Ask. Keep it tight — one page max. The trick is making the problem feel urgent before you pitch the fix.": "我建议:问题 → 解决方案 → 时间线 → 请求。保持简洁——最多一页。技巧是在提出解决方案之前让问题显得紧迫。",
    "I’d love for us to get to know each other a bit better.": "我很想让我们更好地了解彼此。",
    "I’ll **remember what matters**—your work, how you communicate, what you care about.": "我会**记住重要的事**——你的工作、你的沟通方式、以及你在意的内容。",
    "I’ll **suggest starting points** that fit you, so you’re not staring at a blank page.": "我会**建议适合你的起点**,这样你就不必盯着空白页发呆。",
    "I’m a next generation AI assistant built for work and trained to be safe, accurate, and secure.": "我是为工作而构建的新一代 AI 助手,受过安全、准确和可靠的训练。",
    "I’m approved for use with your company data and can integrate with your company tools.": "我已被批准使用贵公司的数据,并可以与贵公司的工具集成。",
    "I’m still here": "我还在",
    "I’m your safe and reliable AI learning partner. I’m here to help you learn anything and grow academically — not just find quick answers.": "我是您安全可靠的 AI 学习伙伴。我在这是为了帮助您学习任何知识并在学术上成长——而不仅仅是寻找快速答案。",
    "JCT": "JCT",
    "JWT vulnerability": "JWT 漏洞",
    "Jam on a social post": "即兴创作社交帖子",
    "Japanese": "日语",
    "Japanese (Shift_JIS)": "日语 (Shift_JIS)",
    "Japanese Artifacts Built with Claude": "使用 Claude 构建的日语 Artifacts",
    "JetBrains": "JetBrains",
    "Join": "加入",
    "Join 4 dots to beat Claude, and see Claude’s thinking as you play the game": "连成 4 个点来击败 Claude,并在游戏过程中查看 Claude 的思考过程",
    "Join <hl>{org}</hl> on Claude Code": "在 Claude Code 中加入 <hl>{org}</hl>",
    "Join dots": "连接点",
    "Join proposal decision submitted": "加入提案决定已提交",
    "Join request approved.": "加入请求已批准。",
    "Join requests ({count})": "加入请求 ({count})",
    "Join team": "加入团队",
    "Join the research preview": "加入研究预览",
    "Join the rest of your team": "加入您团队的其他成员",
    "Join waitlist": "加入等待队列",
    "Join your team": "加入您的团队",
    "Join your team on Claude": "加入您的 Claude 团队",
    "Join your team on Claude Code": "加入你在 Claude Code 中的团队",
    "Join {organizationName}": "加入 {organizationName}",
    "Joining Meeting...": "正在加入会议...",
    "Jot a thought...": "记下想法...",
    "Jump to latest": "跳到最新",
    "Just chat instead": "只是聊天",
    "Just now": "刚刚",
    "Just send Claude a message, and it'll work on tasks using your computer.": "只需向 Claude 发送一条消息,它就会使用您的计算机处理任务。",
    "Just tag @Claude to draft a PR": "只需 @Claude 即可拟定 PR",
    "Just-in-time (JIT)": "即时(JIT)",
    "Keep Claude running in the system tray": "让 Claude 在系统托盘中保持运行",
    "Keep Claude when your gift ends?": "礼品结束后保留 Claude 吗?",
    "Keep Dispatch running": "保持 Dispatch 运行",
    "Keep a record of the key below.": "请保存下方密钥的记录。",
    "Keep as static": "保持为静态",
    "Keep awake": "保持唤醒",
    "Keep chatting with Claude": "继续与 Claude 聊天",
    "Keep computer awake": "保持计算机运行",
    "Keep current session": "保留当前会话",
    "Keep full session": "保留完整会话",
    "Keep in mind:": "请记住:",
    "Keep learning": "继续学习",
    "Keep my plan": "保留我的方案",
    "Keep my {planLabel} plan": "保留我的 {planLabel} 计划",
    "Keep planning": "继续规划",
    "Keep powerful workflows like this one at your fingertips. Install the {displayName} plugin to customize repetitive tasks.": "让像这样强大的工作流触手可及。安装 {displayName} 插件以自定义重复性任务。",
    "Keep private": "保持私有",
    "Keep related tasks and context in one place": "将相关的任务和上下文保持在一处",
    "Keep researching": "继续研究",
    "Keep scanning": "继续扫描",
    "Keep this computer awake": "保持此电脑唤醒",
    "Keep using Claude?": "继续使用 Claude?",
    "Keep working": "继续工作",
    "Keep your current workspace, members, and settings. Requires your organization ID.": "保留你当前的工作区、成员和设置。需要你的组织 ID。",
    "Keep your {planLabel} plan": "保留你的 {planLabel} 计划",
    "Keep your {productName} subscription for a special rate. Pay ${discountedPrice} per month until {endDate}. After that, you will be charged ${regularPrice} per month unless you cancel.": "以特惠价格保留您的 {productName} 订阅。每月只需支付 ${discountedPrice} 元直至 {endDate}。此后将恢复按每月 ${regularPrice} 元扣费(直至您取消订阅)。",
    "Keep your {productName} subscription for a special rate. Pay {discountedPrice} per month until {endDate}. After that, you will be charged {regularPrice} per month unless you cancel.": "以优惠价格保留你的 {productName} 订阅。在 {endDate} 之前,每月支付 {discountedPrice}。之后,除非你取消,否则将按每月 {regularPrice} 收费。",
    "Key": "密钥",
    "Key label": "密钥标签",
    "Key name": "密钥名称",
    "Key name is required.": "密钥名称为必填项。",
    "Key name must be 64 characters or less.": "名称长度必须在 64 个字符以类。",
    "Keyboard captured — click outside to release": "键盘已捕获,点击外部可释放",
    "Keyboard shortcut on Windows": "Windows 上的快捷键",
    "Keyboard shortcut on macOS": "macOS 键盘快捷键",
    "Keyboard shortcuts": "键盘快捷键",
    "Keys": "密钥",
    "Kick off a Claude Code session without leaving Slack. Just tag @Claude!": "无需离开 Slack 即可启动 Claude Code 会话。只需 @Claude 即可!",
    "Kick off a task. Come back to a PR.": "启动任务。收获 PR。",
    "Knowledge Base": "知识库",
    "Known MCP servers": "已知的 MCP 服务器",
    "Korean": "韩语",
    "Korean (EUC-KR)": "韩语 (EUC-KR)",
    "Korean Artifacts Built with Claude": "使用 Claude 构建的韩语构件",
    "L": "L",
    "LOC with Claude Code": "使用 Claude Code 的代码行数 (LOC)",
    "LOCAL DEV": "本地开发 (LOCAL DEV)",
    "LOCAL MCPB": "本地 MCPB",
    "LOCAL UNPACKED": "本地未打包 (LOCAL UNPACKED)",
    "Lab name": "实验室名称",
    "Label": "标签",
    "Labels are applied after the PR is created, so the opened event arrives with empty labels and this filter won't match. Add Pull request — labeled to fire when the label lands.": "标签会在 PR 创建后才应用,因此 opened 事件到达时标签为空,此筛选条件不会匹配。请添加“Pull request — labeled”,以便在标签添加时触发。",
    "Language": "语言",
    "Language learning tutor": "语言学习导师",
    "Large knowledge may slow responses": "庞大的知识储备可能会减慢响应速度",
    "Last 30 days": "过去 30 天",
    "Last 7 days": "最近 7 天",
    "Last 90 Days": "最近 90 天",
    "Last Activity": "最后活动",
    "Last Month": "上个月",
    "Last Name": "姓氏",
    "Last active {when}": "上次活跃:{when}",
    "Last attempted: {date} at {time}": "上次尝试:{date} {time}",
    "Last edited": "最后编辑于",
    "Last edited {relativeTime}": "上次编辑 {relativeTime}",
    "Last heartbeat": "最后心跳",
    "Last message": "最后一条消息",
    "Last message {relativeTime} in {projectName}": "最后一条消息于 {relativeTime} 发送至 {projectName}",
    "Last modified in": "最后修改于",
    "Last published {when}": "上次发布于 {when}",
    "Last refreshed {time}": "上次刷新于 {time}",
    "Last run failed": "上次运行失败",
    "Last run: {when}": "上次运行:{when}",
    "Last scan": "上次扫描",
    "Last started {relativeTime}": "上次启动于 {relativeTime}",
    "Last sync failed": "上次同步失败",
    "Last synced": "上次同步",
    "Last synced {label} at {time}.": "最近一次 {label} 同步于 {time}。",
    "Last synced {relativeTime}": "上次同步于 {relativeTime}",
    "Last synced: {date} at {time}": "上次同步:{date} {time}",
    "Last synced: {time}": "上次同步:{time}",
    "Last turn": "上一轮",
    "Last updated": "上次更新的时间",
    "Last updated {time}": "上次更新于 {time}",
    "Last updated: just now": "最后更新:刚刚",
    "Last updated: less than a minute ago": "最后更新:不到一分钟前",
    "Last updated: {minutes, plural, one {# minute} other {# minutes}} ago": "上次更新:{minutes, plural, one {# 分钟} other {# 分钟}}前",
    "Last updated: {time}": "上次更新:{time}",
    "Last used": "上次使用",
    "Last week": "上周",
    "Last {label} sync completed.": "最近一次 {label} 同步已完成。",
    "Last {label} sync failed at {time}.": "上次 {label} 同步失败,时间为 {time}。",
    "Last {label} sync failed.": "最近一次 {label} 同步失败。",
    "Lastly, what are you focused on? Pick up to three.": "最后,您在关注什么?最多选择三个。",
    "Later": "稍后",
    "Latest": "最新",
    "Latest Claude {tier}": "最新 Claude {tier}",
    "Latin-1 (ISO-8859-1)": "Latin-1 (ISO-8859-1)",
    "Launch": "启动",
    "Launch code session": "启动代码会话",
    "Launch preview screenshot": "启动预览截图",
    "Launching Claude Desktop": "正在启动桌面版 Claude",
    "Launching Ultrareview…": "正在启动 Ultrareview…",
    "Launching…": "正在启动…",
    "Leaderboard": "排行榜",
    "Leaders": "负责人",
    "Learn": "学习",
    "Learn Docker fast": "快速学习 Docker",
    "Learn Python through a step-by-step tutorial": "通过循序渐进的教程学习 Python",
    "Learn about our policies and guidelines for using Claude.": "了解我们关于使用 Claude 的政策和指南。",
    "Learn and master any subject": "学习并掌握任何学科",
    "Learn by doing with Claude-created tutorials and instructional guides. Access clear, detailed explanations and hands-on walkthroughs for various skills and topics. These interactive tutorials break down complex concepts into manageable steps, making learning accessible and engaging for all skill levels.": "通过 Claude 创建的教程和教学指南,在实践中学习。获取关于各种技能和主题的清晰、详细的解释及手把手指导。这些交互式教程将复杂的概念分解为易于处理的步骤,让各种技能水平的人都能轻松、愉快地学习。",
    "Learn chemistry through this interactive molecule visualizer": "通过这个互动的分子可视化工具学习化学",
    "Learn guitar in 90 days": "90 天学会吉他",
    "Learn how": "了解如何操作",
    "Learn how the world came to be by discovering the origin stories of anything": "通过探索万物的起源故事来了解世界的由来",
    "Learn how to use Claude Code": "了解如何使用 Claude Code",
    "Learn how to use Cowork safely": "了解如何安全使用协作",
    "Learn how to use it safely": "了解如何安全使用",
    "Learn how to use this feature safely": "了解如何安全使用此功能",
    "Learn how we use feedback data": "了解我们如何使用反馈数据",
    "Learn how your data is used": "了解您的数据是如何使用的",
    "Learn how your information is protected when using Anthropic products, and visit our {privacyCenter} and {privacyPolicy} for more details.": "了解使用 Anthropic 产品时您的信息如何受到保护,并访问我们的 {privacyCenter} 和 {privacyPolicy} 以获取更多详情。",
    "Learn more": "了解更多",
    "Learn more about Claude in Chrome": "详细了解 Chrome 中的 Claude",
    "Learn more about our <policyLink>network policy</policyLink> and <levelsLink>access levels</levelsLink>.": "详细了解我们的<policyLink>网络政策</policyLink>和<levelsLink>访问等级</levelsLink>。",
    "Learn more about styles": "详细了解样式",
    "Learn more about styles ↗": "详细了解样式 ↗",
    "Learn more about the types of prompts to avoid {arrow}": "了解更多关于应避免的提示词类型 {arrow}",
    "Learn more about usage limits": "详细了解用量限额",
    "Learn more {arrow}": "了解更多 {arrow}",
    "Learn more →": "了解更多 →",
    "Learn something": "学习知识",
    "Learn something new about any topic": "学习任何主题的新知识",
    "Learn something new, just because": "学习新知识,纯属兴趣",
    "Learn something unexpected": "学习意想不到的知识",
    "Learn to code with a patient partner that explains as you build.": "与一位耐心的伙伴一起学习编程,他在您构建时为您讲解。",
    "Learning": "学习",
    "Learning & studying": "学习与研究",
    "Leave a comment for Claude…": "给 Claude 留言…",
    "Leave empty for unlimited": "留空表示无限制",
    "Leave empty to scan the entire repository.": "留空则扫描整个代码仓库。",
    "Leave empty to send immediately": "留空则立即发送",
    "Leave empty to use default (22) or SSH config": "留空以使用默认值 (22) 或 SSH 配置",
    "Leave empty to use default SSH key or SSH config": "留空以使用默认 SSH 密钥或 SSH 配置",
    "Leaving Claude for Government": "离开政府版 Claude",
    "Legacy": "旧版",
    "Legal": "法律信息",
    "Legal and compliance": "法律与合规",
    "Legal company name": "法定公司名称",
    "Length is about {length} characters": "长度约为 {length} 个字符",
    "Less": "收起/更少",
    "Less accurate Google Drive search results while Claude catalogs your Drive files": "Claude 正在为您的云端硬盘文件建立索引,此时 Google 云端硬盘搜索结果的准确度可能会降低",
    "Let Claude Code sync shared memories across your team so everyone benefits from project conventions and feedback.": "让 Claude Code 在整个团队中同步共享记忆,让每个人都能从项目规范和反馈中获益。",
    "Let Claude control your computer": "允许 Claude 控制您的电脑",
    "Let Claude display maps, images, and other visual content using third-party services.": "允许 Claude 通过第三方服务显示地图、图片和其他视觉内容。",
    "Let Claude edit files, run commands, and ship changes right inside your terminal or IDE.": "让 Claude 直接在您的终端或 IDE 中编辑文件、运行命令并发布更改。",
    "Let Claude guide you step by step?": "让 Claude 逐步引导您?",
    "Let Claude handle formulas, formatting, and data cleanup right inside your spreadsheets.": "让 Claude 直接在您的电子表格中处理公式、格式和数据清理。",
    "Let Claude handle formulas, formatting, and data cleanup.": "让 Claude 处理公式、格式化和数据清洗。",
    "Let Claude handle it": "由 Claude 处理",
    "Let Claude power through tasks so you can focus on what matters most": "让 Claude 助您完成任务,以便您可以专注于最重要的事",
    "Let Claude read and write to the tools you already use.": "允许 Claude 在您已使用的工具中执行读取和写入操作。",
    "Let Claude remember information across your chats and Cowork sessions.": "让 Claude 在你的聊天和 Cowork 会话之间记住信息。",
    "Let Claude remember information across your conversations.": "让 Claude 在您的对话中记住信息。",
    "Let Claude review pull requests for your repositories on GitHub.": "让 Claude 审核你在 GitHub 上的仓库的拉取请求。",
    "Let Claude see your screen and control your mouse and keyboard.": "让 Claude 查看您的屏幕并控制您的鼠标和键盘。",
    "Let Claude surface connectors from the directory that may be relevant to your conversation.": "允许 Claude 从目录中展示可能与你对话相关的连接器。",
    "Let Claude surprise you": "让 Claude 给您一个惊喜",
    "Let Claude take screenshots and control your keyboard and mouse in apps you allow.": "允许 Claude 在您批准的应用中截屏并控制键盘和鼠标。",
    "Let Claude work for you": "让 Claude 为你工作",
    "Let Claude work on tasks from your phone using this computer. When off, your phone won't be able to dispatch work here.": "允许 Claude 通过此电脑处理来自您手机的任务。关闭后,您的手机将无法向此处分派工作。",
    "Let MCP servers push inbound messages into Claude Code sessions. Users can allow events from messaging platforms, alerts from monitoring tools, and more.": "Let MCP servers push inbound messages into Claude Code sessions. Users can allow events from messaging platforms, alerts from monitoring tools, and more.",
    "Let a script handle what you’re doing manually": "让脚本来处理您正在手动操作的事情",
    "Let me know how I can be more persuasive in my emails": "让我知道如何让我的邮件更有说服力",
    "Let me see if you have time for that next week.": "让我看看您下周是否有时间。",
    "Let members choose \"Always allow\" when approving connector tools in Cowork. This increases risk from prompt injection — content from connected apps could cause Claude to take unintended actions without per-use approval. <learnMoreLink>Learn more</learnMoreLink>": "允许成员在协作中批准连接器工具时选择\"始终允许\"。这会增加提示注入的风险 — 来自已连接应用的内容可能导致 Claude 在没有每次使用批准的情况下执行意外操作。<learnMoreLink>了解更多</learnMoreLink>",
    "Let members keep Cowork running on their computer to work on tasks in the background. They can send instructions from any signed-in device, and Cowork can access files, apps, and websites on their computer without direct supervision.": "允许成员在他们的电脑上持续运行 Cowork,以便在后台处理任务。他们可以从任何已登录的设备发送指令,而 Cowork 可以在无需直接监督的情况下访问他们电脑上的文件、应用和网站。",
    "Let members of your organization connect Claude to your Slack workspace and use the Claude bot.": "让您组织的成员将 Claude 连接到您的 Slack 工作区并使用 Claude 机器人。",
    "Let others create their own project from a copy of this one. Only the latest captured version is shared.": "允许其他人从此项目的副本创建自己的项目。仅共享最新捕获的版本。",
    "Let team members work with artifacts that use data from external sources. ": "允许团队成员使用采用外部数据源的工件。 ",
    "Let the agent push to any branch on this repo, including the default branch.": "允许代理推送到此仓库的任意分支,包括默认分支。",
    "Let this artifact use your connectors?": "允许此工件使用你的连接器?",
    "Let's find out!": "让我们找出答案!",
    "Let's go": "开始/出发",
    "Let's knock something off your list": "让我们把清单上的某件事做完",
    "Let's knock something off your list.": "让我们从你的清单中完成几项任务吧。",
    "Let's look at your latest runs and make a plan to trim some time.": "让我们看看您最近的运行情况并计划缩短一些时间。",
    "Let's make a small game together. Pitch me a simple mechanic, we'll build a playable version in the browser, and iterate until it's actually fun.": "让我们一起做个小游戏。向我推介一个简单的玩法机制,我们先在浏览器中构建一个可玩版本,然后不断迭代直到它真正变得有趣。",
    "Let's start working together in Cowork. I can work directly in your files, browser, and the tools you already use.": "让我们开始在 Cowork 中合作。我可以直接处理您的文件、浏览器以及您已在使用的工具。",
    "Lets Dispatch navigate, click, and fill forms in your browser.": "允许 Dispatch 在您的浏览器中进行导航、点击及填写表单。",
    "Let’s chat incognito": "让我们隐身聊天吧",
    "Let’s create your account": "来创建您的账户",
    "Let’s create your team": "让我们创建您的团队",
    "Let’s get cooking! Pick an artifact category or start building your idea from scratch.": "让我们开始通过 Claude 创作!选择一个构件类别,或者从零开始构建您的创意。",
    "Let’s go": "出发/开始",
    "Let’s make an interactive website in react to demonstrate the ability to call the API. I call it the “Hallucination game”. It should be fun, educative, fast and really beautiful. The idea is that we will call the API first to get a list of ~5 random topics for the user to pick from. Or they can choose whatever they want (free text input). Then, again using the API, we will generate three about the topic and one false, hallucinated sentence. The user should try to identify which is he hallucation. Once the user has selected an answer, we show if they got it right or not, what is false about the hallucination, and update the score. Let’s add some fun components, like streak and so on. Then we repeat, letting the user change the topic if they want, continue on the topic or go deeper (let’s use the API again to get topic suggestions based on the last question and if the user got it right or not).": "让我们用 React 做一个交互式网站,展示调用 API 的能力。我把它叫做“幻觉游戏”。它应该是好玩、具有启发性、快速且非常漂亮的。想法是先调用 API 获取大约 5 个随机话题供用户选择,或者他们也可以输入任何想要的话题(自由文本输入)。然后,再次使用 API 针对该话题生成三句真话和一句虚假的、幻觉出的句子。用户要尝试识别出哪一个是“幻觉”。一旦用户选择了答案,我们就显示他们是否答对,幻觉出的内容假在哪里,并更新得分。让我们加入一些有趣的组件,比如连对奖励等。然后重复这个过程,如果用户想更换话题也可以,或者继续当前话题或深入探讨(再次使用 API 根据上一个问题以及用户是否答对来获取话题建议)。",
    "Let’s make sure you have everything you need.": "让我们确保您拥有所需的一切。",
    "Let’s set up your lab": "让我们设置您的实验室",
    "Let’s set you up with the tools your admin approved.": "让我们为您配置管理员批准的工具。",
    "Libraries": "库/库文件",
    "License": "许可",
    "Life Hacks": "生活黑科技",
    "Life hacks": "生活妙招/Hack",
    "Life sciences": "生命科学",
    "Life stuff": "生活琐事",
    "Light": "浅色模式",
    "Light code theme": "浅色代码主题",
    "Limit reached. This artifact uses Claude for responses. Try again when the message limit resets.": "已达上限。此构件使用 Claude 生成回复。请在消息限额重置后重试。",
    "Limit the desktop extensions that your team can install on their desktop.": "限制团队成员可以在桌面上安装的桌面扩展。",
    "Limit the extensions that your team can install on their desktop.": "限制团队成员可以在桌面上安装的扩展程序。",
    "Limit who can access your organization based on network location.": "根据网络位置限制谁可以访问您的组织。",
    "Limits will reset at {resetsAt}.": "限额将在 {resetsAt} 重置。",
    "Limits will reset {day} at {resetsAt}.": "额度将于 {day} {resetsAt} 重置。",
    "Line": "行",
    "Linear": "Linear",
    "Lines accepted": "已接受行数",
    "Lines of Code": "代码行数",
    "Lines of code": "代码行数",
    "Lines of code accepted": "已接受的代码行数",
    "Lines this month": "本月行数",
    "Lines {start}-{end}": "第 {start} 至 {end} 行",
    "Link": "链接",
    "Link URL (optional)": "链接 URL(可选)",
    "Link copied": "链接已复制",
    "Link copied to clipboard.": "链接已复制到剪贴板。",
    "Link not found": "未找到链接",
    "Link to your plugin's privacy policy. Required for Anthropic Verified Status.": "指向您插件隐私政策的链接。Anthropic 认证状态必填。",
    "LinkedIn": "LinkedIn",
    "Links": "链接/相关链接",
    "Linux (arm64)": "Linux (arm64)",
    "Linux (x64)": "Linux (x64)",
    "List of domains (not URLs). Use * for wildcards. <link>Learn more</link>": "域名列表(不是 URL)。使用 * 表示通配符。<link>了解更多</link>",
    "Listed": "已列出",
    "Listening...": "正在倾听...",
    "Listing": "列表",
    "Listing details": "列表详情",
    "Lite": "精简版 (Lite)",
    "Lite members": "轻量版成员",
    "Lite seat": "轻量版席位",
    "Lite tier features (deprecated)": "轻量版功能(已弃用)",
    "Live": "直播",
    "Live artifacts": "实时工件",
    "Live artifacts are interactive pages that stay up-to-date using live data from your connectors. <b>Cancel</b> to create a normal file instead.": "实时工件是使用连接器实时数据保持最新状态的交互页面。点击<b>取消</b>则改为创建普通文件。",
    "Live at": "在线地址:",
    "Live stream of {deviceName} simulator": "{deviceName} 模拟器的实时画面",
    "Live summary isn't available for this session yet.": "此会话尚无可用的实时总结。",
    "Load file": "加载文件",
    "Load more": "加载更多",
    "Load tools when needed": "在需要时加载工具",
    "Loaded annual compensation": "全额年度薪酬",
    "Loaded annual compensation per engineer in USD": "已加载每位工程师的年度薪酬(美元)",
    "Loaded skill": "已加载技能",
    "Loaded tools": "已加载工具",
    "Loaded {loaded, number} of {total, number}…": "已加载 {loaded} / 共 {total}……",
    "Loaded {n}m ago": "{n} 分钟前加载",
    "Loaded {n}s ago": "{n} 秒前加载",
    "Loading": "正在加载",
    "Loading CAPTCHA...": "正在加载验证码...",
    "Loading agents": "正在加载代理",
    "Loading branches...": "正在加载分支…",
    "Loading context breakdown…": "加载上下文细分…",
    "Loading conversation": "正在加载对话",
    "Loading current configuration...": "正在加载当前配置...",
    "Loading devices…": "正在加载设备…",
    "Loading diff": "正在加载差异",
    "Loading directories...": "正在加载目录...",
    "Loading domain verification status...": "正在加载域名验证状态…",
    "Loading enterprise repositories…": "正在加载企业存储库……",
    "Loading environments…": "正在加载环境…",
    "Loading extensions...": "正在加载扩展...",
    "Loading file": "加载文件中",
    "Loading groups...": "正在加载分组...",
    "Loading history…": "正在加载历史记录…",
    "Loading issue content…": "正在加载议题内容…",
    "Loading order details...": "正在加载订单详情...",
    "Loading plugin files…": "正在加载插件文件...",
    "Loading preview": "正在加载预览",
    "Loading prompt...": "正在加载提示词...",
    "Loading pull requests": "加载拉取请求",
    "Loading repositories…": "正在加载代码仓库…",
    "Loading research capabilities...": "正在加载研究能力...",
    "Loading resource details...": "正在加载资源详情……",
    "Loading results": "正在加载结果",
    "Loading routine": "正在加载例程",
    "Loading scheduled tasks": "正在加载计划任务",
    "Loading session": "正在加载会话",
    "Loading session transcript": "正在加载会话转录",
    "Loading sessions...": "正在加载会话...",
    "Loading settings...": "正在加载设置...",
    "Loading skill": "正在加载技能",
    "Loading submissions...": "正在加载提交...",
    "Loading tools...": "正在加载工具...",
    "Loading tools…": "正在加载工具…",
    "Loading version...": "正在加载版本...",
    "Loading {skill} skill": "正在加载 {skill} 技能",
    "Loading...": "正在加载...",
    "Loading…": "正在加载...",
    "Local": "本地",
    "Local MCP servers": "本地 MCP 服务器",
    "Local MCP servers are disabled on this device. Contact your IT administrator to enable this feature.": "此设备上已禁用本地 MCP 服务器。请联系您的 IT 管理员以开启该功能。",
    "Local configuration": "本地配置",
    "Local environment is offline. Start a new session by running <command>claude remote-control</command>.": "本地环境已离线。运行 <command>claude remote-control</command> 开启新会话。",
    "Local plugin": "本地插件",
    "Local routines only run while your computer is awake.": "本地例程仅在你的电脑处于唤醒状态时运行。",
    "Local task": "本地任务",
    "Local tasks only run while your computer is awake.": "本地任务仅在您的电脑处于唤醒状态时运行。",
    "Local uploads": "本地上传",
    "Locate documents that represent pivotal moments in my thinking": "定位代表我思维转变关键时刻的文档",
    "Location": "地点/位置",
    "Location metadata": "位置元数据",
    "Location photo": "地点照片",
    "Lock <code>{label}</code> to a trusted sender. Conway will reject any request that isn't cryptographically signed by the source you pick.": "将 <code>{label}</code> 锁定到受信任的发送者。Conway 将拒绝任何未经您所选源进行加密签名的请求。",
    "Lock <code>{label}</code> to a trusted sender. Conway will reject any request that isn't verified by the source you pick.": "将 <code>{label}</code> 锁定到可信发送方。Conway 会拒绝任何未被你所选来源验证的请求。",
    "Locked by organization policy": "被组织策略锁定",
    "Locked while a domain claim is in progress": "域名认领进行中时已锁定",
    "Log In With Code": "使用验证码登录",
    "Log back in to your Google Drive connector for the latest updates.": "重新登录您的 Google 云端硬盘连接器以获取最新更新。",
    "Log back in to your {connectorNames} {count, plural, one {connector} other {connectors}} for the latest updates.": "重新登录您的 {connectorNames} {count, plural, one {connector} other {connectors}} 以获取最新更新。",
    "Log in": "登录",
    "Log in to Claude to use or customize this artifact. No account? You can create one for free.": "登录 Claude 以使用或自定义此构件。还没有账号?您可以免费注册一个。",
    "Log in to see interactive visuals": "登录以查看交互式视觉效果",
    "Log in with your Claude account to continue": "使用您的 Claude 账户登录以继续",
    "Log lines are scrubbed for file paths, email addresses, IP addresses, and API tokens before packaging. Message content is never included.": "在打包前,日志行中的文件路径、电子邮件地址、IP 地址和 API 令牌都会被清除。绝不会包含消息内容。",
    "Log out": "退出登录",
    "Log out of all devices": "登出所有设备",
    "Log out of current session": "退出当前会话",
    "Logged in as {email}": "以 {email} 身份登录",
    "Logging in is currently disabled. Please check back later.": "登录功能目前已禁用。请稍后再来查看。",
    "Logging out...": "正在登出……",
    "Logging you in…": "正在登录…",
    "Login": "登录",
    "Login code": "登录代码",
    "Login with email has been disabled for this account. Please choose another login method.": "此帐户的电子邮件登录已禁用。请选择其他登录方式。",
    "Login with your chat account instead": "改为使用您的聊天账户登录",
    "Logout": "退出登录",
    "Logs": "日志",
    "Logs from": "日志来自",
    "Long prompts or documents may take multiple minutes to respond": "过长的提示词或文档可能需要几分钟才能响应",
    "Longest streak": "最长连续记录",
    "Look at how my calendar has shifted this month compared to last": "看看我的日历这周相比上个月发生了哪些变化",
    "Look at my docs and tell me what kind of genre writer I could be": "看看我的文档,告诉我我可以成为哪种类型的流派作家",
    "Look at the commits from the last 24 hours. Summarize what changed, call out any risky patterns or missing tests, and note anything worth following up on.": "看看过去 24 小时的提交。总结一下改动了什么,指出任何风险模式或缺失的测试,并记下任何值得跟进的事项。",
    "Look over my code and give me tips": "查看我的代码并给我建议",
    "Look through my emails and tell me where I’m avoiding something important": "翻翻我的邮件,告诉我我在哪些重要事情上有所回避",
    "Look up feature": "查询功能",
    "Looking for desktop extensions? Manage them <link>here</link>": "在找桌面扩展吗?在此<link>管理它们",
    "Looking for something else? <link>Browse all connectors</link>": "在找其他东西吗?<link>浏览所有连接器</link>",
    "Looking to start a project?": "想要开启一个项目吗?",
    "Looking to use Claude for your team or company? ": "想要为您的团队或公司引入 Claude?",
    "Looks like that payment didn’t go through.": "看起来付款没有成功。",
    "Looks like that payment didn’t go through. Check your payment details and try again.": "看起来付款未成功。请检查您的付款详情并重试。",
    "Looks like you have too many chats going. Please close a tab to continue.": "看起来您开启了太多聊天。请关闭一个标签页以继续。",
    "Looks like you're trying to get an offer that is not valid or no longer available.": "看起来你正在尝试获取一个无效或已不再可用的优惠。",
    "Looks like you’re here to build. I can help right here in chat—but for real work in your codebase, Claude Code is where I’m at my best.": "看起来你是来动手构建的。我可以直接在聊天里帮你,但如果要在你的代码库里做实际工作,Claude Code 才是我最擅长的地方。",
    "Loop": "循环",
    "Loop prompt": "循环提示",
    "Lost connection to the remote session — this is usually a network interruption. Send a message to reconnect. ({raw})": "与远程会话断开连接 —— 这通常是网络中断导致的。请发送消息以重新连接。({raw})",
    "Love using Claude for code? There's an even better way. Claude Code lives right in your editor—VS Code, Cursor, or Windsurf—so you can chat and build in one place.": "喜欢使用 Claude 编写代码吗?还有更好的方式。Claude Code 直接内置于您的编辑器中—VS Code、Cursor 或 Windsurf—因此您可以在一个地方聊天和构建。",
    "Low": "低",
    "Low confidence": "置信度低",
    "Lower group limit": "较低的分组限制",
    "Lowercase letters, numbers, and hyphens only.": "仅限小写字母、数字以及连字符。",
    "Lowercase, alphanumeric, hyphens. Used in logs and metrics.": "小写、字母数字、连字符。用于日志和指标。",
    "MAU": "MAU",
    "MCP directory server guidelines": "MCP 目录服务器指南",
    "MCP is here now! Access integrations in this menu.": "MCP 来了!在此菜单中访问集成。",
    "MCP server guidelines": "MCP 服务器指南",
    "MCP server not connected. Please reconnect the server to view this resource.": "MCP 服务器未连接。请重新连接服务器以查看此资源。",
    "MCP tools": "MCP 工具",
    "MEMBERS": "成员",
    "MFA expired": "MFA 已过期",
    "MM": "月月",
    "MTD": "月累计 (MTD)",
    "MTD Spend": "本月至今支出",
    "MTD spend": "本月至今(MTD)支出",
    "Magic Link for Primary Owners": "主要所有者的魔术链接",
    "Magic in the grass": "草丛中的魔法",
    "Make API calls on behalf of your organization": "代表您的组织进行 API 调用",
    "Make a deck from my analysis": "根据我的分析制作幻灯片",
    "Make a game": "制作游戏",
    "Make a pitch deck": "制作推介幻灯片",
    "Make a quiz": "生成测验",
    "Make a study plan": "制定学习计划",
    "Make an app that allows the user to key in two words and use claude API to generate ideas from the 2 words. Please make it look simple, bold and clickable!": "制作一个应用,允许用户输入两个词,并使用 Claude API 从这两个词中生成创意。请让它看起来简洁、大胆且可点击!",
    "Make an app that allows users to explore grass fields and discover hidden objects unique to the location they choose. When the user touches the grass, use the Claude API to generate interesting discoveries based on the location. When there’s a discovery, it should be presented as text (e.g., “You found a durian husk”) that floats above the location where it was found.": "制作一个让用户可以探索草地并根据所选位置发现隐藏物体的应用。当用户触摸草地时,使用 Claude API 根据位置生成有趣的发现。当有发现时,应该以文字形式呈现(例如\"你发现了一个榴莲壳\"),浮动在发现位置上方。",
    "Make an artifact that orchestrates claude to tell users the origin story of anything they input. The artifact can make multiple calls to the claude api to stitch the story together – e.g. user gives the object / thing they want the origin story for, and it can use one call to plan the story, and then multiple other calls to write each part of the story together. You’ll have to make sure the different parts of the story fit together. E.g., you’ll need to pass information around, or summaries, or maybe each new part of the story sees pieces of the previous one, etc. You should think about how to do that. Practice and prototype these api calls with the repl. make sure you understand how to get all this working. Then, build the artifact. Also, make the artifact beautiful. Not AI slop. People have been saying you only make AI slop, but I don’t think that’s true. The artifact should look and feel like a book -- like paper -- like something that celebrates the written word and the writing experience.": "做一个构件,通过协调 Claude 向用户讲述他们输入的任何事物的起源故事。该构件可以多次调用 Claude API 来拼接故事——例如,用户提供他们想要起源故事的对象/事物,它可以调用一次 API 来规划故事,然后多次调用 API 将故事的每个部分一并写出。你需要确保故事的不同部分能够衔接。比如,你需要传递信息、摘要,或者让故事的每个新部分都能看到前一部分的内容,等等。你应该思考如何实现这一点。在 REPL 中练习并测试这些 API 调用。确保你明白如何让这一切运转起来。然后,构建这个构件。另外,构件要漂亮。不要做成那种 AI 工业废料。虽然人们一直说你只会做工业废料,但我并不这么认为。这个构件的外观和感觉应该像一本书——像纸张一样——像是在致敬文字和书写体验。",
    "Make live artifacts—a team digest, inbox tracker, or meeting brief—that stay current with your connected tools.": "制作实时工件,例如团队摘要、收件箱跟踪器或会议简报,并随你连接的工具保持最新。",
    "Make site mobile friendly": "让网站适配移动端",
    "Make sure Claude Desktop is <b>running and up to date</b>": "请确保 Claude Desktop <b>正在运行且为最新版本</b>",
    "Make sure every current member belongs to at least one of these groups in your identity provider before continuing.": "在继续之前,请确保每个当前成员都归属于您的身份提供商中的至少一个这些组。",
    "Make sure everything looks correct": "请确保所有内容正确无误",
    "Make sure you trust a plugin before installing or using it. Uploaded plugins are not controlled by Anthropic, and Anthropic cannot verify that they will work as intended. See each plugin's homepage for more information.": "在安装或使用插件前,请确保您信任该插件。上传的插件并非由 Anthropic 控制,并且 Anthropic 无法验证其是否按预期工作。详情请参阅各插件的主页。",
    "Make sure you trust a plugin before installing, updating, or using it. Plugins installed from marketplaces are not controlled by Anthropic, and Anthropic cannot verify that they will work as intended or that they won't change. See each plugin's homepage for more information.": "在安装、更新或使用插件之前,请确保你信任它。从市场安装的插件不受 Anthropic 控制,Anthropic 无法验证它们是否按预期工作或是否会发生变化。更多信息请参阅各插件的主页。",
    "Make this one yours": "将此设为您的",
    "Make your own pixel art": "制作您自己的像素画",
    "Making edits...": "正在编辑...",
    "Making purchases on your behalf": "代表您进行购买",
    "Malicious actors can hide instructions in websites, emails, and documents that trick AI into taking harmful actions without your knowledge, including:": "恶意攻击者可能会在网站、邮件或文档中隐藏指令,从而在您不知情的情况下诱导 AI 执行有害操作,包括:",
    "Malicious conversation content could trick Claude into attempting harmful actions or sharing your data.": "恶意对话内容可能会诱使 Claude 尝试有害操作或泄露您的数据。",
    "Manage": "管理",
    "Manage Claude Code plugins, agents, hooks, and connectors.": "管理 Claude Code 插件、智能体、钩子和连接器。",
    "Manage GitHub Enterprise settings": "管理 GitHub Enterprise 设置",
    "Manage SCIM": "管理 SCIM",
    "Manage SSO": "管理 SSO",
    "Manage connectors": "管理连接器",
    "Manage connectors.": "管理连接器。",
    "Manage edits": "管理编辑内容",
    "Manage extra usage": "管理额外用量",
    "Manage household tasks": "管理家庭任务",
    "Manage marketplaces of plugins that members of your org can browse, install, and customize. <link>Learn more</link>": "管理插件市场,供组织成员浏览、安装和自定义。<link>了解更多</link>",
    "Manage memory": "管理记忆",
    "Manage my time better": "更好地管理我的时间",
    "Manage permissions": "管理权限",
    "Manage personal stress": "管理个人压力",
    "Manage plugin": "管理插件",
    "Manage plugins": "管理插件",
    "Manage plugins...": "管理插件……",
    "Manage project content and members": "管理项目内容和成员",
    "Manage project memory": "管理项目记忆",
    "Manage project timelines": "管理项目时间表",
    "Manage remote work": "管理远程工作",
    "Manage role permissions": "管理角色权限",
    "Manage seats": "管理席位",
    "Manage service keys": "管理服务密钥",
    "Manage skills": "管理技能",
    "Manage skills that can be viewed and used by anyone in your organization.": "管理可被组织中任何人查看和使用的技能。",
    "Manage spend limit": "管理支出限额",
    "Manage spending for Claude usage charges": "管理 Claude 使用费的支出",
    "Manage spending for automated services and integrations": "管理自动化服务和集成的支出",
    "Manage subscription": "管理订阅",
    "Manage subscription and view invoices on your Android device": "在您的 Android 设备上管理订阅和查看发票",
    "Manage subscription and view invoices on your iOS device": "在您的 iOS 设备上管理订阅和查看发票",
    "Manage usage": "管理使用量",
    "Manage which groups can use team memory": "管理哪些群组可以使用团队记忆",
    "Manage workplace stress": "管理工作压力",
    "Manage your Conway instance.": "管理您的 Conway 实例。",
    "Manage your authorization tokens": "管理您的授权令牌",
    "Manage your back-end": "管理您的后端",
    "Manage your budget with a spending limit": "通过支出上限管理你的预算",
    "Manage your subscription on your Android device": "在您的 Android 设备上管理订阅",
    "Manage your subscription on your iOS device": "在您的 iOS 设备上管理您的订阅",
    "Manage your subscription on your mobile device.": "在您的移动设备上管理订阅。",
    "Managed SSH connection": "托管的 SSH 连接",
    "Managed by your SSO Identity Provider": "由您的SSO身份提供商管理",
    "Managed by your organization — read-only": "由你的组织管理,只读",
    "Managed in Claude in Chrome settings": "在 Claude in Chrome 设置中管理",
    "Managed settings": "托管设置",
    "Managed settings (settings.json)": "代管设置(settings.json)",
    "Manual": "手动",
    "Manual ({triggerCommand})": "手动 ({triggerCommand})",
    "Manual only": "仅手动",
    "Manual workflow run requested": "请求手动运行工作流",
    "Manually create PR": "手动创建 PR",
    "Manually create PR in GitHub": "在 GitHub 中手动创建 PR",
    "Manually run": "手动运行",
    "Many requests made. Acknowledge that you’re still here to continue.": "由于请求过于频繁。请确认您还在屏幕前以继续。",
    "Map & fix a process": "梳理并修复一个流程",
    "Map IdP groups to specific organization roles for automatic assignment": "将 IdP 组映射到特定的组织角色以进行自动分配",
    "Map IdP groups to specific seat tiers for automatic assignment": "将 IdP 分组映射到特定的席位等级以实现自动分配",
    "Map an account plan": "制定账户计划",
    "Map out a user flow": "规划用户流程",
    "Map the competitive landscape": "梳理竞争格局",
    "Map the evolution of sleep research in the past decade": "梳理过去十年睡眠研究的演变过程",
    "Map the unexpected connections between unrelated market trends": "映射不相关市场趋势之间的意外联系",
    "Mark all read": "全部标记为已读",
    "Mark as done": "标记为完成",
    "Mark as fixed": "标记为已修复",
    "Mark as unread": "标记为未读",
    "Mark done": "标记完成",
    "Mark undone": "标记为未完成",
    "Marked PR ready": "已将 PR 标记为准备就绪",
    "Marketing": "营销",
    "Marketing Blog Post": "营销博客文章",
    "Marketing analytics": "营销分析",
    "Marketplace": "市场",
    "Marketplace \"{marketplaceName}\" removed.": "市场 “{marketplaceName}” 已移除。",
    "Marketplace ({link})": "市场 ({link})",
    "Marketplace name": "市场名称",
    "Marketplace not found. If this is a private repository hosted on github.com, enter a personal access token below.": "未找到市场。如果这是托管在 github.com 上的私有仓库,请在下方输入个人访问令牌。",
    "Marketplace not found. Private repositories are only supported using the GitHub owner/repo format.": "未找到市场。仅支持使用 GitHub 所有者/仓库格式的私有仓库。",
    "Marketplace options": "市场选项",
    "Marketplace source format is invalid. Enter a GitHub owner/repo or a full git URL.": "应用市场源格式无效。请输入 GitHub 所有者/仓库名或完整的 git URL。",
    "Marketplace sync failed": "市场同步失败",
    "Marketplace sync failed. Check the repository URL and try again.": "同步市场失败。请检查仓库 URL 并重试。",
    "Marketplace unreachable": "无法访问 Marketplace",
    "Marketplace updated.": "市场已更新。",
    "Marking PR ready": "正在将 PR 标记为准备就绪",
    "Master new subjects with comprehensive Claude-powered courses and educational programs. Experience structured learning paths, interactive lessons, and personalized training across diverse topics. These AI-enhanced courses adapt to your learning style, track your progress, and provide targeted feedback for optimal knowledge retention.": "通过全面的 Claude 驱动课程和教育项目掌握新学科。体验涵盖多个主题的结构化学习路径、互动课程和个性化培训。这些 AI 增强课程会适应您的学习风格,跟踪您的进度,并提供有针对性的反馈以实现最佳知识留存。",
    "Master the Krebs cycle": "掌握 Krebs 循环",
    "Match": "匹配",
    "Match a writing style": "匹配写作风格",
    "Match actions": "匹配操作",
    "Match jobs to my skills": "将职位与我的技能匹配",
    "Match system": "匹配系统",
    "Match thinking to complexity": "根据复杂度适配思考深度",
    "Matches:": "匹配项:",
    "Matching “{query}” across all sections.": "正在所有分区中匹配“{query}”。",
    "Math solvers, converters, calculators, financial tools, measurement utilities": "数学解题器、转换器、计算器、财务工具、测量工具",
    "Matrix question": "矩阵问题",
    "Max": "Max",
    "Max (20x)": "最大(20倍)",
    "Max (5x)": "最大(5 倍)",
    "Max 20x": "最高 20 倍",
    "Max 5x": "最高 5 倍",
    "Max 5x more usage than Pro": "Max 版用量最高可达 Pro 版的 5 倍",
    "Max plan": "Max 方案",
    "Max plan paused": "Max 计划已暂停",
    "Max plan unavailable": "Max 方案不可用",
    "Max spend limit": "最大支出限额",
    "Max spend per user": "每位成员的最大支出限额",
    "Max {maxFiles, plural, one {# file} other {# files}} per chat at {maxSize} MB each": "每次聊天最多 {maxFiles, plural, one {# 个文件} other {# 个文件}},每个最大 {maxSize} MB",
    "Maximize your productivity with Claude-built planners, organizers, and task management tools. Schedule efficiently, track progress, manage deadlines, and optimize your workflow with intelligent productivity applications. These tools help you stay focused, organized, and achieve more in less time.": "使用 Claude 构建的计划器、整理器和任务管理工具最大限度地提高生产力。高效安排时间、跟踪进度、管理截止日期,并通过智能生产力应用程序优化您的工作流程。这些工具有助您保持专注、井然有序,并在更短的时间内完成更多工作。",
    "Maximum 2 year retention period": "保留期最长为 2 年",
    "Maximum amount is {maxAmount}": "最大金额为 {maxAmount}",
    "Maximum edits reached": "达到最大修改次数",
    "Maximum of {max} images allowed.": "最多允许上传 {max} 张图片。",
    "Maybe later": "稍后再说",
    "Meaningful content ideas (not just products)": "有意义的内容创意(不仅仅是产品)",
    "Measure 11 behaviors that shape how effectively you work with Claude, from how you frame goals to how you verify claims. Generate a report to understand your patterns. <a>Learn more</a>": "衡量影响您与 Claude 协作效率的 11 种行为,从您如何设定目标到您如何验证声明。生成一份报告以了解您的模式。<a>了解更多</a>",
    "Measure how you collaborate with AI across Claude.ai, CoWork, and Claude Code — 11 fluency behaviors plus key feature usage. <a>Learn more</a>": "衡量您在 Claude.ai、CoWork 和 Claude Code 中与 AI 协作的方式 — 11 种流畅行为以及关键功能使用情况。<a>了解更多</a>",
    "Measure how you collaborate with AI, including 11 AI fluency behaviors and key features in Claude.ai. <a>Learn more</a>": "衡量您如何与 AI 协作,包括 11 种 AI 熟练行为以及 Claude.ai 中的关键功能。<a>了解更多</a>",
    "Measured Words": "精心推敲的文字 (Measured Words)",
    "Medium": "中等/常规",
    "Medium confidence": "置信度:中等",
    "Meet Claude": "了解 Claude",
    "Meet Claude in Chrome": "在 Chrome 中开启 Claude",
    "Meet Claude on your desktop": "在桌面上开启 Claude",
    "Meet Cowork": "认识 Cowork",
    "Meet the Anthropic co-founders in a 3D office simulator environment": "在 3D 办公室模拟器环境中会见 Anthropic 联合创始人",
    "Meeting Assistant": "会议助手",
    "Meeting Transcripts": "会议转录",
    "Meeting URL": "会议 URL",
    "Meeting notes summary": "会议纪要摘要",
    "Member": "成员",
    "Member breakdown": "成员明细",
    "Member invites": "成员邀请",
    "Member invites disabled": "成员邀请已禁用",
    "Member invites enabled": "成员邀请已开启",
    "Member not found": "未找到成员",
    "Member removed": "成员已移除",
    "Members": "成员",
    "Members are added manually via email invitation.": "成员通过电子邮件邀请手动添加。",
    "Members are synced from your identity provider upfront.": "成员会预先从你的身份提供商同步。",
    "Members from groups": "来自群组的成员",
    "Members in your organization may need to sign in again. Sessions older than the selected duration will end immediately, and active sessions will be shortened.": "您组织中的成员可能需要重新登录。早于所选时长的会话将立即结束,活动会话将被缩短。",
    "Members must have an @{domain} email address.": "成员必须拥有 @{domain} 邮箱地址。",
    "Members must have an {domains} email address.": "成员必须拥有 {domains} 电子邮件地址。",
    "Members on usage-based seats can't access Claude until this is turned on.": "在开启此项前,使用按需付费席位的成员将无法访问 Claude。",
    "Members to update": "要更新的成员",
    "Members who are not found in your identity provider will be removed from all organizations using SCIM provisioning.": "在你的身份提供商中找不到的成员,将从所有使用 SCIM 配置的组织中移除。",
    "Members who are not found in your identity provider will be removed from this organization.": "在您的身份提供商中找不到的成员将被从该组织中移除。",
    "Members with usage-based seats cannot use Claude until extra usage is enabled.": "在开启额外用量前,使用“按量计费”席位的成员无法使用 Claude。",
    "Memory": "记忆",
    "Memory across conversations": "跨对话的记忆",
    "Memory cleared": "内存已清除",
    "Memory files": "记忆文件",
    "Memory from your chats": "来自您对话的记忆",
    "Memory is off": "记忆功能已关闭",
    "Memory is off in your settings. Any existing memory files are kept but won't be read or written in new sessions.": "您的设置中已关闭记忆功能。任何现有的记忆文件都会保留,但不会在新的会话中被读取或写入。",
    "Memory is on": "记忆功能已开启",
    "Memory not applied correctly": "记忆未正常应用",
    "Memory off": "关闭记忆功能",
    "Memory on": "记忆已开启",
    "Memory preferences": "记忆偏好",
    "Memory that carries across conversations": "贯穿对话的记忆",
    "Memory theme suggestions": "记忆主题建议",
    "Memory updated": "记忆已更新",
    "Memory updated!": "记忆已更新!",
    "Mention suggestions": "提及建议",
    "Menu": "菜单",
    "Menu bar": "菜单栏",
    "Menubar on Windows": "Windows 上的菜单栏",
    "Menubar on macOS": "macOS 上的菜单栏",
    "Merge API Organizations": "合并 API 组织",
    "Merge Organization": "合并组织",
    "Merge Organizations": "合并组织",
    "Merge conflict": "合并冲突",
    "Merge conflicts": "合并冲突",
    "Merge once required checks pass.": "通过必要的检查后立即合并。",
    "Merge pending": "合并等待中",
    "Merge queue entry": "合并队列条目",
    "Merge queue entry added": "合并队列条目已添加",
    "Merged": "已合并",
    "Merged PR": "已合并的 PR",
    "Merged to {branch}": "已合并至 {branch}",
    "Merging": "合并中",
    "Merging PR": "正在合并 PR",
    "Merging…": "正在合并…",
    "Mermaid diagram": "Mermaid 图表",
    "Message": "消息",
    "Message Claude from anywhere on your desktop": "在桌面任何地方给 Claude 发消息",
    "Message couldn't be sent. You can try again.": "消息无法发送。您可以重试。",
    "Message dispatched from a repository": "从存储库分派的消息",
    "Message failed to send. You can try again.": "消息发送失败。您可以重试。",
    "Message from peer: {from}": "来自对等端的消息:{from}",
    "Message from session {name}": "来自会话 {name} 的消息",
    "Message from team lead": "来自团队负责人的消息",
    "Message from teammate {name}": "来自队友 {name} 的消息",
    "Message from {server}": "来自 {server} 的消息",
    "Message input": "消息输入",
    "Message required": "消息内容为必填项",
    "Messages": "消息",
    "Messages Sent": "消息已发送",
    "Metadata URL": "元数据URL",
    "Methods": "方法",
    "Methods section feedback": "方法部分反馈",
    "Metric": "指标 (Metric)",
    "Metrics": "指标",
    "Metrics are computed daily from directory usage and may lag by up to 24 hours. Windows with fewer than 5 calls are omitted.": "指标根据目录使用情况按日计算,最多可能延迟 24 小时。调用次数少于 5 次的时间窗口会被省略。",
    "Metrics become available once this server is published to the directory.": "该服务器发布到目录后,指标才会可用。",
    "Metrics update daily": "指标每日更新",
    "Microphone": "麦克风",
    "Microphone access wasn't granted. Check your browser settings to allow access.": "未获得麦克风权限。请检查您的浏览器设置以允许访问。",
    "Microphone access wasn't granted. You can check your browser settings and try again.": "未获得麦克风权限。请检查您的浏览器设置并重试。",
    "Microphone couldn't be accessed. You can check your browser settings and try again.": "无法访问麦克风。您可以检查浏览器设置并重试。",
    "Microphone {number}": "麦克风 {number}",
    "Microphone:": "麦克风:",
    "Microsoft Entra Admin setup required": "需要 Microsoft Entra 管理员进行设置",
    "Microsoft Foundry": "Microsoft Foundry",
    "Microsoft Office": "Microsoft Office",
    "Middle-click": "中键点击",
    "Migrate accounts using your domain": "迁移使用你域名的账户",
    "Mini Claude": "迷你版 Claude",
    "Minimize": "最小化",
    "Minimize plan": "最小化计划/方案",
    "Minimum 30 day retention period": "最少保留 30 天",
    "Minimum amount is {minAmount}": "最小金额为 {minAmount}",
    "Minimum password length": "最短密码长度",
    "Missing client_id parameter": "缺少 client_id 参数",
    "Missing code_challenge parameter": "缺少 code_challenge 参数",
    "Missing encoding": "缺少编码信息",
    "Missing redirect_uri parameter": "缺少 redirect_uri 参数",
    "Missing required <code>code</code> query parameter": "缺少必填的 <code>code</code> 查询参数",
    "Missing scope parameter": "缺少 scope 参数",
    "Missing skill": "缺少技能",
    "Missing state parameter": "缺少 state 参数",
    "Missing system library": "缺少系统库",
    "Missing tool": "缺失工具",
    "Mkt Cap": "市值",
    "Mobile": "移动端",
    "Mobile camera access": "移动相机访问",
    "Mobile subscription active": "移动订阅已激活",
    "Mock up a campaign visual": "制作活动视觉原型",
    "Mode": "模式",
    "Model": "模型",
    "Model Context Protocol documentation": "Model Context Protocol 文档",
    "Model can't be changed for this session right now.": "此会话当前无法更改模型。",
    "Model change couldn't be applied. You can try again.": "模型切换失败。您可以重试。",
    "Model: {model}": "模型: {model}",
    "Model: {name}": "模型:{name}",
    "Models": "模型",
    "Moderate": "中等",
    "Moderate ({count})": "中等 ({count})",
    "Moderate risk": "中等风险",
    "Modified": "已修改",
    "Molecule studio": "分子工作台",
    "Monday": "周一",
    "Monitor PRs": "监控 PR",
    "Monitor progress, get notified when you're needed, and review changes on the go.": "随时随地监控进度、在需要您时接收通知并审阅更改。",
    "Monitor usage": "监控使用情况",
    "Monitoring": "监控",
    "Monitoring settings updated.": "监控设置已更新。",
    "Month": "月份",
    "Monthly": "按月",
    "Monthly spend limit": "每月支出限额",
    "Months until value covers spend": "价值覆盖支出的月份数",
    "Mood canvas": "心情画布",
    "Mood palette": "情绪调色板",
    "Moonlit chat?": "月光聊天吗?",
    "More": "更多",
    "More Claude models": "更多 Claude 模型",
    "More Opus with Max plans": "Max 套餐提供更多 Opus 用量",
    "More Opus with Pro and Max plans": "Pro 和 Max 方案提供更多 Opus 使用额度",
    "More Opus with Pro plans": "Pro 套餐提供更多 Opus",
    "More PR options": "更多 PR 选项",
    "More accept options": "更多接受选项",
    "More actions for key {name}": "针对密钥 {name} 的更多操作",
    "More actions for {email}": "针对 {email} 的更多操作",
    "More actions for {name}": "针对 {name} 的更多操作",
    "More actions for {service}": "针对 {service} 的更多操作",
    "More description needed in order to generate style": "需要更多描述以生成样式",
    "More details": "更多详情",
    "More details in our <link>Help Center</link>. If you click continue below, you’ll be redirected to Google to authorize your Gmail integration.": "更多详情请参阅我们的 <link>帮助中心</link>。如果您点击下方继续,您将被重定向到 Google 以授权您的 Gmail 集成。",
    "More details on plugins in Claude Code": "详细了解 Claude Code 中的插件",
    "More file types on Claude": "Claude 支持更多文件类型",
    "More flexible": "更灵活",
    "More gets done, faster: cluttered desktops become organized folders, open tabs into synthesized research, rough notes into polished drafts.": "工作效率更高、速度更快:凌乱的桌面变为整洁的文件夹,打开的标签页变为综合研究,粗略的笔记变为润色后的草稿。",
    "More info": "更多信息",
    "More information about project plugins": "关于项目插件的更多信息",
    "More information about {label}": "关于 {label} 的更多信息",
    "More messages than Free": "比免费版拥有更多消息额度",
    "More models": "更多模型",
    "More navigation items": "更多导航项目",
    "More options": "更多选项",
    "More options for artifact": "构件的更多选项",
    "More options for {chatName}": "{chatName} 的更多选项",
    "More options for {extensionName}": "更多 {extensionName} 的选项",
    "More options for {label}": "{label} 的更多选项",
    "More powerful models": "更强大的模型",
    "More spawn options": "更多生成选项",
    "More than 500 seats": "超过 500 个席位",
    "More usage": "更多使用量",
    "More usage for everyday work": "更多日常工作的用量",
    "More usage for more ambitious projects*": "为更宏大的项目提供更多用量*",
    "More usage than Free*": "比免费版更多使用*",
    "More usage than Research Labs seats": "比 Research Labs 席位更多的用量",
    "More usage than Standard Labs seats": "使用量超过标准实验室席位",
    "More usage than Standard Nonprofit seats": "比标准非营利版席位更多的用量",
    "More usage than Standard seats": "比标准席位更多的用量",
    "More usage than free": "比免费版拥有更多用量",
    "More usage than free*": "比免费方案更多用量*",
    "More usage than standard": "比标准版更高的使用额度",
    "More usage*": "更多用量*",
    "More ways to get help": "更多获取帮助的方式",
    "More ways to open": "更多打开方式",
    "More ways to work with Claude": "更多与 Claude 协作的方式",
    "Most capable for ambitious work": "最能胜任复杂任务",
    "Most connected integrations": "最常连接的集成",
    "Most efficient for everyday tasks": "最适合日常任务",
    "Most popular": "最受欢迎",
    "Most requested": "最常被请求",
    "Most used skills across your organization": "您组织中最常用的技能",
    "Mouse down": "按下鼠标",
    "Mouse up": "鼠标抬起",
    "Move": "移动",
    "Move between web, mobile, or CLI with ease. Launch multiple sessions in parallel.": "在网页、移动端或 CLI 间轻松切换。并行启动多个会话。",
    "Move chat": "移动聊天",
    "Move down": "下移",
    "Move left": "向左移动",
    "Move mouse": "移动鼠标",
    "Move pane bottom-right": "将窗格移到右下角",
    "Move pane down": "向下移动窗格",
    "Move pane right": "将窗格右移",
    "Move pane to bottom left": "将窗格移到左下角",
    "Move pane to bottom right": "将面板移动到右下角",
    "Move pane to top left": "将窗格移到左上角",
    "Move pane to top right": "将面板移到右上角",
    "Move right": "向右移动",
    "Move to group": "移动到分组",
    "Move to project": "移至项目",
    "Move up": "上移",
    "Move {count, plural, one {# chat} other {# chats}}": "移动 {count, plural, one {# 条聊天} other {# 条聊天}}",
    "Move {numSelected, plural, one {# chat} other {# chats}} to a project": "将 {numSelected, plural, one {# 条聊天} other {# 条聊天}} 移至一个项目",
    "Moving...": "正在移动…",
    "Much less {attribute}": "更少的 {attribute}",
    "Multi-factor authentication has expired. You can reconnect to verify your identity.": "多重身份验证已过期。您可以重新连接以验证身份。",
    "Multi-file codebase understanding": "多文件代码库理解",
    "Multiple member console": "多成员控制台",
    "Multitasking...": "多项任务处理中...",
    "Must be a JSON object.": "必须是一个 JSON 对象。",
    "Must be a hex color (e.g. #007A33)": "必须是十六进制颜色(例如 #007A33)",
    "Must be a hex color (e.g. #FFFFFF)": "必须是十六进制颜色代码 (如 #FFFFFF)",
    "Must be a valid number.": "必须是有效的数字。",
    "Must be a whole number.": "必须为整数。",
    "Must be at least {min} characters.": "必须至少 {min} 个字符。",
    "Must be at least {min}.": "必须至少为 {min}。",
    "Must be at most {max} characters.": "最多必须为 {max} 个字符。",
    "Must be at most {max}.": "必须至多为 {max}。",
    "Must be valid JSON.": "必须是有效的 JSON。",
    "Mute": "静音",
    "Mute microphone": "麦克风静音",
    "Muted": "已静音",
    "My Connector": "我的连接器",
    "My Gmail is already connected": "我的 Gmail 已连接",
    "My Server": "我的服务器",
    "My business is registered for GST and the ABN number I have provided is valid.": "我的企业已注册 GST 且我提供的 ABN 号码有效。",
    "My connector complies with all listed Anthropic policy requirements.": "我的连接器符合所有列出的 Anthropic 政策要求。",
    "My connector does not initiate financial transactions or move funds on a user's behalf.": "我的连接器不会代表用户发起金融交易或转移资金。",
    "My connector does not perform cross-service automation without explicit user consent.": "我的连接器不会在未获得用户明确同意的情况下执行跨服务自动化。",
    "My connector is generally available (GA) and supported for production use.": "我的连接器已正式可用(GA),并支持生产环境使用。",
    "My downloads folder is a mess! Can you clean it up?": "我的下载文件夹乱得一团糟!你能帮我整理一下吗?",
    "My inbox is overwhelming. Help me think through a practical system for triaging, responding to, and archiving email so it stops piling up.": "我的收件箱多得让人应接不暇。帮我思考一个实用的系统,用于分类、回复和归档邮件,使其不再堆积。",
    "My lab is named": "我的实验室名为",
    "My projects": "我的项目",
    "My reason for leaving isn't listed above": "我离开的原因未在上方列出",
    "My skills": "我的技能",
    "My students keep getting one concept wrong in the same way. I'll describe what they do — help me diagnose the misconception and how to reteach it.": "我的学生总是以同样的方式误解某个概念。我会描述他们是怎么做的,帮我诊断这种误解并告诉我如何重新讲解。",
    "My team is named": "我的团队名称是",
    "My weekly chronicle": "我的周记",
    "NOTES": "笔记",
    "Name": "名称",
    "Name A-Z": "Name A-Z",
    "Name and connection": "名称和连接",
    "Name cannot contain the word “{reservedWord}”.": "名称不能包含关键词 “{reservedWord}”。",
    "Name must be at least 3 characters.": "名称必须至少包含 3 个字符。",
    "Name must contain at least one letter or number.": "名称必须包含至少一个字母或数字。",
    "Name your content": "为您的内容命名",
    "Name your key:": "命名您的密钥:",
    "Name your project": "为您的项目命名",
    "Named commands: {ops}": "命名命令:{ops}",
    "Native app with Cowork for your files and browser.": "原生应用配合 Cowork 处理您的文件和浏览器。",
    "Navigate the maze of healthcare compliance requirements": "应对医疗保健合规要求的复杂迷宫",
    "Navigate to your preferred directory and run the following command to connect to your Claude Code CLI": "导航到您喜欢的目录并运行以下命令,以连接到您的 Claude Code CLI",
    "Navigate to your project": "导航到你的项目",
    "Navigate to {url}": "导航到 {url}",
    "Navigate workplace challenges": "应对职场挑战",
    "Navigate, click buttons, and fill forms in your browser": "在您的浏览器中导航、点击按钮并填写表单",
    "Navigation": "导航",
    "Nearly done, just confirming the payment on our end.": "快完成了,正在确认我们这边的付款。",
    "Nearly done, just confirming your payment method.": "即将完成,正在确认您的付款方式。",
    "Necessary": "必要的",
    "Need help polishing your emails? Write down your thoughts and Claude will help you generate the perfect email": "需要润色邮件吗?写下您的想法,Claude 将帮您生成完美的邮件",
    "Need more control? Go to <link>Settings</link>": "需要更多控制?前往 <link>设置</link>",
    "Need more usage?": "需要更多用量?",
    "Need one? <link>Create a token on github.com</link>": "需要一个令牌?请在 <link>github.com 上创建一个令牌</link>",
    "Needs approval": "需要审批",
    "Needs attention": "需要注意",
    "Needs input": "需要输入",
    "Negative": "负面",
    "Negotiate salary confidently": "自信地进行加薪/薪资谈判",
    "Nested session detected": "检测到嵌套会话",
    "Net gain": "净增长",
    "Net gain ÷ annual spend": "净收益 ÷ 年度支出",
    "Network access": "网络访问",
    "Network access required": "需要网络访问权限",
    "Network access to \"{hostname}\" is blocked by egress settings.": "因出口设置,访问 “{hostname}” 的网络被拦截。",
    "Network access to {hostname} is blocked by egress settings. Plugins from this marketplace won't receive updates. Ask your admin to update egress settings.": "对 {hostname} 的网络访问被出站设置阻止。此市场的插件将不会收到更新。请让管理员更新出站设置。",
    "Network access to {hostname} is blocked by egress settings. Plugins from this marketplace won't receive updates. Update <link>capabilities settings</link>.": "因出口 (Egress) 设置,访问 {hostname} 的网络被拦截。来自该市场的插件将无法接收更新。请更新<link>能力设置</link>。",
    "Network access to {hostname} is blocked by your organization's network egress settings. Telemetry events will not be exported. Add it under <link>network egress settings</link>.": "您组织的网络出口设置阻止了对 {hostname} 的网络访问。遥测事件将不会导出。在<link>网络出口设置</link>下添加它。",
    "Network egress controls do not apply to <a>web search</a>, web fetch, or MCP connectors. Web fetch runs through Anthropic servers and is limited to URLs found in the user prompt or web search results.": "网络出口控制不适用于<a>网页搜索</a>、网页抓取或 MCP 连接器。网页抓取通过 Anthropic 服务器运行,并仅限于用户提示或网页搜索结果中出现的 URL。",
    "Network more effectively": "更高效地进行社交/人际联络",
    "Network reachability for inference and MCP hosts": "推理和 MCP 主机的网络可达性",
    "Network-level access control": "网络级访问控制",
    "Neutral": "中立",
    "Never": "从不",
    "Never include customer PII in responses": "回复中绝不要包含客户 PII",
    "Never mind, I’ll add an example": "没关系,我会添加一个例子",
    "Never used": "从未启用",
    "New": "新建/新",
    "New Google Drive connector": "新建 Google 云端硬盘连接器",
    "New Google {count, plural, one {connector} other {connectors}}": "新的 Google {count, plural, one {连接器} other {连接器}}",
    "New Security Scan": "新安全扫描",
    "New agent": "新智能体",
    "New artifact": "新构件",
    "New chat": "新聊天",
    "New cloud environment": "新建云环境",
    "New configuration": "新配置",
    "New conversation": "开启新对话",
    "New group": "新建分组",
    "New group…": "新建群组…",
    "New items available": "有新项目可用",
    "New line in message": "消息中的新行 (换行)",
    "New live artifact": "新建实时工件",
    "New local routine": "新建本地例程",
    "New local task": "新建本地任务",
    "New member approval": "新成员审批",
    "New members are added to the lowest available seat tier. Additional seats are purchased as needed.": "新成员会被添加到最低可用席位等级。额外的席位将按需购买。",
    "New members are added to the lowest available seat tier. Contact an owner to purchase more seats.": "新成员会被添加到最低的可用席位等级。联系所有者以购买更多席位。",
    "New members can only join if invited by an existing member. SSO access alone won't add them to your org.": "新成员只能通过现有成员邀请才能加入。单独使用 SSO 访问权限无法将他们添加到你的组织。",
    "New members will be assigned to available seats starting with the lowest tier.": "新成员将从最低等级开始分配到可用席位。",
    "New message": "新消息",
    "New messages since last shared": "自上次分享以来的新消息",
    "New organizations not allowed": "不允许创建新组织",
    "New plugin name": "新插件名称",
    "New project": "新项目",
    "New remote routine": "新建远程例程",
    "New remote task": "新的远程任务",
    "New routine": "新建常规任务",
    "New scheduled task": "新计划任务",
    "New session": "新会话",
    "New sessions can browse and act on any site in Chrome without asking.": "新会话可以在 Chrome 中浏览并操作任意网站,无需询问。",
    "New sessions will stay active as long as members remain active. Existing sessions will still expire at their scheduled time.": "只要成员保持活跃,新会话将保持活跃。现有会话仍将在预定时间过期。",
    "New skill": "新技能",
    "New skill name": "新技能名称",
    "New submission": "新提交",
    "New task": "新任务",
    "New terminal": "新建终端",
    "New users": "新用户",
    "New version uploaded.": "新版本已上传。",
    "New workspace": "新建工作区",
    "News": "新闻",
    "Next": "下一步",
    "Next cycle": "下一个周期",
    "Next image": "下一张图片",
    "Next invoice": "下一张发票",
    "Next match": "下一个匹配",
    "Next month": "下个月",
    "Next option": "下一个选项",
    "Next page": "下一页",
    "Next period": "下一周期",
    "Next photo": "下一张照片",
    "Next question": "下一个问题",
    "Next run {date}": "下次运行日期 {date}",
    "Next run {when}": "下次运行 {when}",
    "Next run: {date}": "下次运行:{date}",
    "Next run: {when}": "下次运行:{when}",
    "Next scan": "下次扫描",
    "Next session": "下一个会话",
    "Next steps": "后续步骤",
    "Next time, try the {displayName} plugin": "下次,请尝试使用 {displayName} 插件",
    "Next time, try this in Cowork": "下次在 Cowork 中试试这个",
    "Next version": "下一个版本",
    "Next: Configure connectors": "下一步:配置连接器",
    "Nice to meet you, I’m...": "很高兴认识你,我是……",
    "Nice to meet you, {name}.": "很高兴认识你,{name}。",
    "Nice to meet you, {userName}. I'd love to learn more about the way you work. Connect Gmail and I'll have a much better sense of what's useful to you.": "很高兴认识您,{userName}。我很想了解您的工作方式。连接 Gmail 后,我能更好地了解什么对您有用。",
    "Nice to meet you, {userName}. I'd love to learn more about the way you work. Connect your tools and I'll have a much better sense of what's useful to you.": "很高兴认识您,{userName}。我想多了解您的工作方式。连接您的工具,我能更好地感知什么对您有帮助。",
    "Nice to meet you.": "很高兴认识你。",
    "Nice to meet you. I'd love to learn more about the way you work. Connect your tools and I'll have a much better sense of what's useful to you.": "很高兴见到您。我很想了解更多关于您的工作方式。连接您的工具,我会更好地了解什么对您有用。",
    "Nice work!": "干得漂亮!",
    "No": "否",
    "No Anthropic account needed": "无需 Anthropic 账户",
    "No Chrome instances are connected. Open Chrome with the Claude extension and sign in.": "没有已连接的 Chrome 实例。请打开带有 Claude 扩展的 Chrome 并登录。",
    "No Enterprise Seats Available": "无可用企业版席位",
    "No GitHub Enterprise Server instances configured. Add one to get started.": "尚未配置 GitHub Enterprise Server 实例。添加一个以开始。",
    "No GitHub organizations found. Make sure you have access to repositories in your GitHub account.": "未找到 GitHub 组织。请确保您的 GitHub 账号拥有仓库访问权限。",
    "No GitHub remote configured — cloud sessions need a repo URL.": "未配置 GitHub 远程 — 云会话需要仓库 URL。",
    "No IP ranges configured.": "未配置 IP 范围。",
    "No MCP server data for this period": "此期间没有 MCP 服务器数据",
    "No access": "无访问权限",
    "No access keys found.": "未找到访问密钥。",
    "No access to Claude": "无法访问 Claude",
    "No access was granted. You can close this tab.": "未授予任何访问权限。你可以关闭此标签页。",
    "No actioned experiences": "暂无可操作的体验",
    "No actions configured for this hook.": "此钩子 (hook) 未配置任何操作。",
    "No actions needed right now.": "目前无需采取任何行动。",
    "No active placement cooldowns": "无活跃的放置冷却时间",
    "No active plan": "没有有效套餐",
    "No active sessions found.": "未发现活跃会话。",
    "No active sessions — this runner is idle.": "没有活动会话 — 此运行器处于空闲状态。",
    "No active sessions.": "没有活动会话。",
    "No active subscription found on this account.": "此账户未找到活动订阅。",
    "No activity yet.": "尚无活动。",
    "No agents yet.": "尚无代理。",
    "No apps denied. Add an app to automatically reject Claude's requests for it.": "没有拒绝的应用。添加应用以自动拒绝 Claude 对其发出的请求。",
    "No artifacts found in this category.": "此类别下未找到构件。",
    "No artifacts yet.": "尚无 Artifact。",
    "No available tools.": "没有可用的工具。",
    "No backend is provisioned for this session.": "此会话未配置后端。",
    "No billing address configured": "未配置账单地址",
    "No bot keys yet.": "暂无机器人密钥。",
    "No branches": "无分支",
    "No branches available": "无可用分支",
    "No branches found": "未找到分支",
    "No branches match.": "没有匹配的分支。",
    "No bridge session found. Start one from your CLI, then refresh:": "未找到桥接会话。请先从你的 CLI 启动一个,然后刷新:",
    "No browser extension activity yet": "暂无浏览器扩展活动",
    "No browsers connected": "未连接浏览器",
    "No cached response available. Claude is running with local values instead.": "没有可用的缓存响应。Claude 正改用本地值运行。",
    "No change": "无更改",
    "No changes": "无变更",
    "No changes pending. Your organization membership is in sync with SCIM.": "无待执行更改。您的组织成员已与 SCIM 同步。",
    "No changes to apply. Adjust at least one seat count.": "没有可应用的更改。请至少调整一个席位数量。",
    "No changes to create a PR from": "没有可创建 PR 的更改",
    "No changes to display": "暂无变更可显示",
    "No changes to save. Modify a field first.": "没有可保存的更改。请先修改一个字段。",
    "No changes to show.": "没有可显示的更改。",
    "No checks reported yet.": "尚未报告检查。",
    "No cloud environment configured": "未配置云环境",
    "No commitment {dot} Cancel anytime": "无承诺 {dot} 随时取消",
    "No configured groups have been detected in your IdP yet. Groups are recognized when an assigned user logs in, but enabling group mappings before your IdP is configured could result in users being unable to access the product.": "您的 IdP 中尚未检测到已配置的组织。组织会在分配的用户的首次登录时被识别,但在 IdP 配置完成之前启用组织映射可能导致用户无法访问产品。",
    "No connected Claude Code instances": "未发现已连接的 Claude Code 实例",
    "No connected repositories found.": "未发现已连接的仓库。",
    "No connectors are enabled for this session.": "此会话未启用任何连接器。",
    "No connectors available.": "无可用连接器。",
    "No connectors found": "未找到连接器",
    "No connectors found.": "未找到连接器。",
    "No connectors match your filters.": "没有匹配您过滤条件的连接器。",
    "No connectors match your search.": "没有匹配您搜索内容的连接器。",
    "No connectors match.": "没有匹配的连接器。",
    "No content available": "暂无可用的内容",
    "No context added yet.": "尚未添加任何上下文信息。",
    "No cowork-local sessions yet. Run a Cowork task in the desktop app to see it mirrored here.": "尚无 cowork-local 会话。在桌面应用中运行 Cowork 任务以在此处查看镜像。",
    "No credentials configured. Add one to let Claude Code sessions authenticate against external APIs.": "未配置凭据。添加一个凭据以使 Claude Code 会话能够对外部 API 进行身份验证。",
    "No custom extensions yet. Upload a .mcpb file to get started.": "暂无自定义扩展。上传 .mcpb 文件以开始使用。",
    "No custom roles": "无自定义角色",
    "No custom roles have {capability} enabled.": "没有自定义角色启用了 {capability}。",
    "No data available": "无可用的数据",
    "No data available for the selected period": "所选时间段内无可用数据",
    "No data available yet.": "暂无可用数据。",
    "No database is provisioned for this session.": "此会话未配置数据库。",
    "No deploys yet": "尚无部署",
    "No description provided.": "未提供描述。",
    "No directories found.": "未发现目录。",
    "No discounts left this cycle": "本周期没有剩余折扣",
    "No dismissed experiences": "无已忽略的体验",
    "No domains found. Add a domain to get started with SAML configuration.": "未找到域名。添加一个域名以开始 SAML 配置。",
    "No edits yet — tell Claude what to remember or forget below.": "还没有编辑——请在下方告诉 Claude 该记住什么或忘记什么。",
    "No emoji found": "未找到表情符号",
    "No events yet. Connect to start streaming.": "暂无事件。连接以开始推流。",
    "No example skills available": "无可用示例技能",
    "No examples match your search.": "没有符合您搜索的示例。",
    "No expiration": "无过期时间",
    "No extensions added to allowlist": "允许列表中未添加任何扩展程序",
    "No extensions are available in the directory": "目录中暂无扩展程序",
    "No extensions found": "未找到扩展程序",
    "No extensions have been allowlisted yet.": "尚未将任何扩展加入允许列表。",
    "No feature named “{name}” in the current payload.": "当前载荷中没有名为“{name}”的功能。",
    "No feature usage data for this period": "此期间没有功能使用数据",
    "No file changes found": "未发现文件变更",
    "No file content available": "未发现文件内容",
    "No files changed": "无文件变动",
    "No files found": "未找到文件",
    "No files found in this skill": "此技能中未找到文件",
    "No files in this conversation yet": "此对话中暂无文件",
    "No findings detected": "未发现结果",
    "No findings match your filters.": "没有发现符合您过滤条件的项。",
    "No folders": "没有文件夹",
    "No folders added yet.": "尚未添加任何文件夹。",
    "No gift code provided": "未提供礼品代码",
    "No group has been assigned to the {role} role. Assign one before saving.": "尚未向 {role} 角色分配任何分组。请在保存前分配一个。",
    "No group spend limits configured yet": "尚未配置分组支出限额",
    "No groups": "无分组",
    "No groups assigned": "未分配分组",
    "No groups configured. All members will be removed.": "未配置群组。所有成员都将被移除。",
    "No groups detected": "未检测到分组",
    "No groups found": "未找到分组",
    "No groups found matching your search": "未找到匹配您搜索的分组",
    "No groups found.": "未找到分组。",
    "No groups in this organization.": "此组织中暂无分组。",
    "No groups selected — team memory is currently disabled for everyone. Select at least one group.": "未选择任何群组,团队记忆当前对所有人都已禁用。请至少选择一个群组。",
    "No images found": "未找到图片",
    "No issues assigned to you. Search to find any issue.": "没有分配给你的问题。搜索以查找任意问题。",
    "No issues match your search.": "没有符合您搜索的 Issue。",
    "No issues you're involved with here. Search to find any issue.": "这里没有你参与的议题(Issue)。可以通过搜索查找更多议题。",
    "No limit": "无限制",
    "No logs found. Logs will appear here when your application generates activity.": "未发现日志。当您的应用程序生成活动时,日志将显示在这里。",
    "No logs in the last hour": "最近一小时内没有日志",
    "No logs match current search.": "无符合当前搜索的日志。",
    "No longer a member": "不再是成员",
    "No matches in file contents": "文件内容中没有匹配项",
    "No matches.": "没有匹配项。",
    "No matching connectors found.": "未找到匹配的连接器。",
    "No matching documents": "未找到匹配的文档",
    "No matching documents.": "没有匹配的文档。",
    "No matching files": "没有匹配的文件",
    "No matching projects": "没有匹配的项目",
    "No matching runs.": "没有匹配的运行记录。",
    "No members found for ‘{search}’": "未找到匹配 ‘{search}’ 的成员",
    "No members found in loaded results. <link>Load all {total, number} members</link> to search the full list.": "在加载的结果中未找到成员。<link>加载全部 {total} 名成员</link>以搜索完整列表。",
    "No members found matching your search": "未找到匹配搜索的成员",
    "No members match \"{search}\".": "没有成员匹配“{search}”。",
    "No members match the current filters.": "没有匹配当前过滤条件的成员。",
    "No memories yet": "还没有记忆",
    "No memories yet. Claude will add entries here as you work together.": "还没有记忆。随着你们协作,Claude 会在这里添加条目。",
    "No memory files yet.": "暂无记忆文件。",
    "No memory yet": "尚无记忆",
    "No memory yet — Claude will start summarizing your chats tonight.": "还没有记忆——Claude 将于今晚开始总结你的聊天内容。",
    "No messages in this session.": "此会话中没有消息。",
    "No messages yet": "暂无消息",
    "No messages yet.": "尚无消息。",
    "No microphone was found. You can connect a microphone and try again.": "未找到麦克风。您可以连接麦克风后重试。",
    "No model training on your content by default": "默认不会对您的内容进行模型训练",
    "No model usage in this range.": "此范围内没有模型使用记录。",
    "No more connectors available": "没有更多可用连接器",
    "No new activity": "无新活动",
    "No open pull requests.": "没有打开的拉取请求。",
    "No organization": "无组织",
    "No organization found": "未找到组织",
    "No organization found for image upload": "上传图片时未找到组织",
    "No organization skills yet.": "目前尚无组织技能。",
    "No organizations are eligible for upgrade.": "没有组织符合升级条件。",
    "No organizations available to join.": "没有可加入的组织。",
    "No output": "无输出",
    "No overrides set.": "未设置任何覆盖项。",
    "No payment method found": "未找到付款方式",
    "No payment method provided": "未提供付款方式",
    "No pending invites.": "暂无待处理邀请。",
    "No pending requests to join parent organizations": "没有待处理的父组织加入请求",
    "No plan yet.": "暂无计划。",
    "No plugin sources yet. Add one to get started.": "暂无插件来源。添加一个即可开始。",
    "No plugins available": "没有可用插件",
    "No plugins available.": "暂无可用插件。",
    "No plugins in this source yet.": "此来源中暂无插件。",
    "No plugins match your filters.": "没有匹配您过滤条件的插件。",
    "No plugins match your search.": "没有匹配您搜索内容的插件。",
    "No preview": "无预览",
    "No preview available": "无可用的预览",
    "No price data available": "无可用价格数据",
    "No project snapshot is available yet. Try again once a version has been captured.": "尚无可用的项目快照。捕获到版本后请再试一次。",
    "No projects available": "暂无可用项目",
    "No projects found": "未找到项目",
    "No projects found.": "未找到项目。",
    "No projects match your filters.": "没有项目符合你的筛选条件。",
    "No projects matching “{search}”": "没有符合 “{search}” 的项目",
    "No projects yet. Start a scan to create one.": "暂无项目。开始扫描以创建一个项目。",
    "No prompt set.": "未设置提示词。",
    "No pull request": "无拉取请求",
    "No pull requests yet. Sessions with open PRs will appear here.": "尚无拉取请求。包含开启中 PR 的会话将显示在这里。",
    "No recent folders. Browse to choose one.": "没有最近使用的文件夹。浏览以选择一个。",
    "No recent {drive} documents": "暂无最近的 {drive} 文档",
    "No recents found": "未发现最近记录",
    "No recommendations match the selected filters": "没有与所选筛选器匹配的建议",
    "No reference materials added yet.": "尚未添加参考资料。",
    "No repos match.": "没有匹配的仓库。",
    "No repositories configured yet.": "尚未配置任何代码仓库。",
    "No repositories found": "未找到代码仓库",
    "No repositories found.": "未找到代码仓库。",
    "No repositories visible on {hostname}. Install the GitHub App on your repositories from its settings page.": "{hostname} 上没有可见的代码仓库。请在仓库的设置页面为您的仓库安装 GitHub App。",
    "No resources found": "未找到资源",
    "No response on which connectors to enable during research": "研究期间未对启用哪些连接器做出响应",
    "No restriction": "无限制",
    "No result — task {status, select, failed {failed} stopped {stopped} other {ended}}.": "没有结果,任务{status, select, failed {失败} stopped {已停止} other {已结束}}。",
    "No results": "无结果",
    "No results found": "未找到结果",
    "No results found.": "未找到结果。",
    "No results match your search.": "没有符合您搜索的结果。",
    "No review comments yet.": "尚无审查评论。",
    "No revision history for this file.": "此文件没有历史修订版本。",
    "No role mappings configured": "未配置角色映射",
    "No routines scheduled": "没有已安排的常规任务",
    "No routines yet": "尚无常规任务",
    "No routines yet.": "暂无例程。",
    "No rules configured. Without an allow rule, all proxied requests are denied by default.": "未配置规则。若没有允许规则,所有代理请求默认都会被拒绝。",
    "No runner pools yet": "尚无运行器池",
    "No runners connected": "没有运行器连接",
    "No runners connected to this pool.": "没有运行器连接到此池。",
    "No runs yet.": "尚无运行记录。",
    "No scan models are available for your organization.": "你的组织没有可用的扫描模型。",
    "No scans have completed yet.": "尚未完成任何扫描。",
    "No scans match the current filters.": "没有符合当前过滤条件的扫描。",
    "No scans match your filters.": "没有符合您过滤条件的扫描。",
    "No scheduled changes found.": "未发现已安排的变更。",
    "No scheduled tasks linked yet.": "尚未关联任何计划任务。",
    "No scheduled tasks yet": "目前没有计划任务",
    "No scheduled tasks yet.": "暂无计划任务。",
    "No seat assigned": "未分配席位",
    "No seat tier mappings configured": "未配置席位等级映射",
    "No seats configured yet": "尚未配置席位",
    "No secrets added": "未添加密钥",
    "No secrets yet.": "暂无密钥。",
    "No security issues were found across your scanned repositories.": "在您扫描的代码仓库中未发现安全问题。",
    "No servers added": "未添加服务器",
    "No service keys have been created yet.": "尚未创建任何服务密钥。",
    "No service keys.": "无服务密钥。",
    "No session data for this period": "此期间没有会话数据",
    "No session found for this scan.": "此项扫描未找到会话。",
    "No session limits": "无会话限制",
    "No sessions": "无会话",
    "No sessions found": "未发现会话",
    "No sessions in queue.": "队列中没有会话。",
    "No sessions yet": "暂无会话",
    "No sessions yet.": "暂无会话。",
    "No setup required": "无需设置",
    "No shared content found": "未找到分享内容",
    "No shipping address configured": "尚未配置收货地址",
    "No shortcut": "暂无快捷键",
    "No shown experiences (affects global rate limit)": "无展示体验(影响全局频率限制)",
    "No signups in the last {days} days.": "过去 {days} 天内无注册。",
    "No simulator attached. Pick a device below — Shutdown devices will be booted.": "未连接模拟器。请在下方选择设备,已关机的设备将会启动。",
    "No simulators found — install one in Xcode": "未找到模拟器,请在 Xcode 中安装一个",
    "No sites approved. Claude won't browse unless you enable and add allowed sites.": "未批准任何网站。除非您启用并添加允许的网站,否则 Claude 将无法进行浏览。",
    "No sites approved. Claude won’t browse unless you enable and add allowed sites.": "没有批准的站点。除非您启用并添加允许的站点,否则 Claude 不会浏览。",
    "No skill usage data for this period": "此期间没有技能使用数据",
    "No skills added by you yet": "您尚未添加任何技能",
    "No skills from Anthropic or partners yet.": "目前还没有来自 Anthropic 或合作伙伴的技能。",
    "No skills have been shared with you yet.": "目前还没有人向您分享技能。",
    "No skills match your filters.": "没有匹配您过滤条件的技能。",
    "No skills match your search": "没有技能匹配您的搜索",
    "No skills match your search.": "没有匹配您搜索内容的技能。",
    "No skills shared with you yet": "暂无与您共享的技能",
    "No skills yet. Add a skill to get started.": "暂无技能。添加技能以开始使用。",
    "No sources found": "未找到来源",
    "No sources yet": "暂无来源",
    "No spaces yet": "暂无空间",
    "No storage buckets. Buckets will appear here once your app creates them.": "无存储桶。存储桶会在您的应用创建它们后显示在此处。",
    "No stored approvals yet.": "尚无存储的批准记录。",
    "No subdirectories": "无子目录",
    "No submissions yet.": "暂无提交。",
    "No tables yet. Tables you create will appear here.": "暂无表格。您创建的表格将出现在这里。",
    "No tasks yet": "还没有任务",
    "No tasks.": "暂无任务。",
    "No team members found": "未找到团队成员",
    "No team skills": "无团队技能",
    "No team skills available": "没有可用的团队技能",
    "No thanks": "不用了,谢谢",
    "No tool calls yet": "暂无工具调用",
    "No tool usage data for this period": "该时段内没有工具使用数据",
    "No tools available": "没有可用的工具",
    "No tools matching “{search}”": "没有匹配 “{search}” 的工具",
    "No trial rows.": "无试用记录。",
    "No triggers configured.": "未配置触发器。",
    "No trusted folders yet.": "尚无受信任文件夹。",
    "No upstream credentials configured. Add one to let Claude Code sessions authenticate against external APIs.": "未配置上游凭据。添加一个以允许 Claude Code 会话针对外部 API 进行身份验证。",
    "No users created": "未创建用户",
    "No users yet. Rows will appear here once someone signs up.": "暂无用户。有人注册后,记录将显示在此处。",
    "No valid email addresses were found in that CSV file.": "在该 CSV 文件中未找到有效的电子邮件地址。",
    "No valid emails to invite.": "没有有效的电子邮件可邀请。",
    "No versions captured yet. Snapshots are saved automatically as you build.": "尚未捕获任何版本。构建过程中会自动保存快照。",
    "No web searches yet": "目前无网页搜索历史",
    "No working directory for this session.": "此会话没有工作目录。",
    "No workspaces match.": "没有匹配的工作区。",
    "No {orgType} organizations available with matching domains": "没有域名匹配的 {orgType} 组织可用",
    "No {orgType} organizations found matching your search": "未找到符合您搜索的 {orgType} 组织",
    "No {plural} match \"{query}\"": "",
    "No {resource} set up. You can ask Claude to configure one for you.": "未设置 {resource}。您可以要求 Claude 为您配置一个。",
    "No, I’ll invite someone": "不,我会邀请某人",
    "No, thanks": "不了,谢谢",
    "Node.js": "Node.js",
    "None": "无",
    "None (passthrough)": "无(透传)",
    "None configured.": "未配置。",
    "None of the above": "以上都不是",
    "None of these": "以上都不是",
    "None of your organizations are currently eligible for upgrade.": "您当前没有任何组织符合升级条件。",
    "Nonprofit": "非营利组织",
    "Nonprofit pricing applied": "非营利价格已应用",
    "Nonprofit seat": "非营利组织席位",
    "Nonprofit teams cannot upgrade to Enterprise.": "非营利团队无法升级到企业版。",
    "Nonprofit tier": "非营利层",
    "Nonprofit: {before, number} → {after, number}": "非营利:{before, number} → {after, number}",
    "Nonprofits": "非营利组织",
    "Normal": "正常",
    "Not Now": "以后再说",
    "Not a member of your organization": "不是你组织的成员",
    "Not a scheduled run": "不是计划运行",
    "Not a valid Google Doc URL": "不是有效的 Google 文档 URL",
    "Not a valid URL": "非有效 URL",
    "Not allowed": "不允许",
    "Not allowed in your current organization.": "在您当前的组织中不被允许。",
    "Not applicable": "不适用",
    "Not available": "不可用",
    "Not available for the selected model": "不可用于当前所选的模型",
    "Not complete": "未完成",
    "Not connected": "未连接",
    "Not eligible": "不符合条件",
    "Not enough scan runs completed to produce results. You can try again.": "完成的扫描运行次数不足,无法生成结果。您可以重试。",
    "Not enough seats available for the selected tier.": "所选层级的席位不足。",
    "Not factually correct": "不符合事实",
    "Not found": "未找到",
    "Not granted": "未授予",
    "Not in keeping with Claude's Constitution": "不符合 Claude 的宪法",
    "Not in use — toggle on to fetch and apply this URL.": "当前未使用,开启后将获取并应用此 URL。",
    "Not installed": "未安装",
    "Not live": "未上线",
    "Not much, yet. After more chats you’ll see what Claude knows about you here.": "目前还没什么内容。在进行更多聊天后,您将在这里看到 Claude 对您的了解。",
    "Not needed in Cowork mode. Use mounted folders instead.": "在 Cowork 模式下不需要。请改用挂载的文件夹。",
    "Not now": "暂时不用/以后再说",
    "Not observed": "未观测到",
    "Not production code": "非生产环境代码",
    "Not relevant": "不相关",
    "Not requested": "未请求",
    "Not running": "未运行",
    "Not scanned": "未扫描",
    "Not seeing the code? <tryAgainLink>Try again</tryAgainLink>": "没看到代码?<a>重试</a>",
    "Not seeing the email in your inbox? <link>Try sending again</link>": "收件箱中没有看到邮件?<link>尝试重新发送</link>",
    "Not seeing the email in your inbox? <link>Try sending again</link>.": "收件箱里没看到邮件?<link>尝试重新发送</link>。",
    "Not seeing the email? <link>Try sending again</link>": "没看到邮件?<link>尝试重新发送</link>",
    "Not started": "未开始",
    "Not supported": "不支持",
    "Not supported for GitHub-triggered routines — each webhook event spawns its own session.": "不支持 GitHub 触发的例程 — 每个 webhook 事件都会生成自己的会话。",
    "Not synced": "未同步",
    "Not synced yet": "尚未同步",
    "Not used in the last {windowDays} days. <a>Learn how to use {feature}</a>": "过去 {windowDays} 天内未使用。<a>学习如何使用 {feature}</a>",
    "Not useful": "没用",
    "Not what you're looking for? <link>Browse all apps and extensions</link>": "不是您要找的?<link>浏览所有应用和扩展</link>",
    "Not what you're looking for? <link>Browse all connectors</link>": "不是您要找的?<link>浏览所有连接器</link>",
    "Not working as expected? Reconnecting can help.": "运行不符合预期?重新连接可能会有帮助。",
    "Note": "备注",
    "Note: Chat history is still visible to your admin.": "注意:您的管理员仍可查看聊天记录。",
    "Note: Recipients can receive up to 12 months of a gifted plan. If they've already been gifted months, they may not be able to redeem the full amount. <link>Learn more</link>.": "注意:接收者最多可以获得 12 个月的赠送方案。如果他们已经获赠过,可能无法兑换全额内容。<link>了解更多</link>。",
    "Notes": "笔记",
    "Notes from Claude": "来自 Claude 的备注",
    "Nothing here right now.": "目前这里没有任何内容。",
    "Nothing here yet.": "这里还没有任何内容。",
    "Nothing in your backlog. Create a new task to get started.": "你的待办列表中没有内容。创建一个新任务以开始。",
    "Nothing is charged today. Your seat reduction takes effect at your next renewal.": "今天不会收费。你的席位减少将在下次续费时生效。",
    "Nothing to rewind to yet.": "还没有可回退的内容。",
    "Nothing to send — packaging failed.": "没有可发送的内容,打包失败。",
    "Notification": "通知",
    "Notifications": "通知",
    "Notifications (F8)": "通知 (F8)",
    "Notifications Blocked": "通知已被阻止",
    "Notifications blocked": "通知已被阻止",
    "Notifications enabled": "通知已启用",
    "Notify": "通知我",
    "Notify me": "通知我",
    "Notion": "Notion",
    "Notwithstanding the above, using this IS does not constitute consent to PM, LE or Cl investigative searching or monitoring of the content of privileged communications, or work product, related to personal representation or services by attorneys, psychotherapists, or clergy, and their assistants. Such communications and work products are private and confidential.": "尽管有上述规定,使用此信息系统不构成同意对与律师、心理治疗师或神职人员及其助手提供的个人代理或服务相关的特权通信或工作成果进行 PM、LE 或 CI 调查性搜索或监控。此类通信和工作成果是私密且机密的。",
    "Now Claude can make relevant connections across your chats. Memory includes your entire chat history with Claude.": "现在 Claude 可以在您的聊天之间建立相关的联系。记忆功能包括您与 Claude 的完整聊天历史。",
    "Now Claude can navigate, click buttons, and fill forms—right in your browser. Available to Max plan subscribers.": "现在 Claude 能够直接在您的浏览器中导航、点击按钮并填写表单。适用于 Max 方案订阅者。",
    "Now Claude can navigate, click buttons, and fill forms—right in your browser. Max users get early access to test, explore, and shape what's next.": "现在 Claude 能够直接在您的浏览器中导航、点击按钮并填写表单。Max 用户可获得早期访问权限,以测试、探索并参与塑造未来方案。",
    "Now Claude can reference past chats for relevant context.": "现在 Claude 能够参考过去的聊天以获取相关的背景信息。",
    "Now everyone on your team can build, debug, and ship with Claude Code.": "现在,您团队中的每个人都可以使用 Claude Code 进行开发、调试和发布。",
    "Now get the most out of Claude on your desktop": "现在在桌面上充分利用 Claude",
    "Number of chats started on {date} (UTC). Change is compared to the previous day.": "在 {date} (UTC) 开启的聊天数量。涨跌是与前一天相比。",
    "Number of chats started on {date} (UTC). Change is compared to the same day last week.": "在 {date} (UTC) 发起的聊天数量。变化情况是与上周同一天相比。",
    "Number of digits in the email one-time password.": "邮件一次性密码的位数。",
    "Number of people": "人数",
    "Number of seats": "席位数",
    "Number of sessions started on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)开始的会话数。变化与上周同一天相比。",
    "OAuth App credentials": "OAuth 应用凭据",
    "OAuth Client ID": "OAuth 客户端 ID",
    "OAuth Client ID (optional)": "OAuth 客户端 ID(可选)",
    "OAuth Client Secret": "OAuth 客户端机密",
    "OAuth Client Secret (optional)": "OAuth 客户端机密 (可选)",
    "OAuth Request Failed": "OAuth 请求失败",
    "OK": "确定",
    "ORGANIZATIONS": "组织",
    "OTEL export": "OTEL 导出",
    "OTLP endpoint": "OTLP 端点",
    "OTLP headers": "OTLP 标头",
    "OTLP protocol": "OTLP 协议",
    "Observed metrics": "观测指标",
    "Off": "关闭",
    "Off for all emails using your domain": "对使用您域名的所有电子邮件关闭",
    "Offer already redeemed": "优惠已兑换",
    "Offer not found": "未找到优惠",
    "Office agents": "办公智能体",
    "Office agents support OpenTelemetry (OTel) events for monitoring and observability.": "Office 代理支持 OpenTelemetry (OTel) 事件,用于监控和可观测性。",
    "Official": "官方",
    "Offline": "离线状态",
    "Offload report writing and data wrangling so you can focus on analysis.": "减轻报告编写和数据整理的工作量,以便您专注于分析。",
    "Older": "更早/较旧",
    "Older runs": "较早的运行",
    "Oldest key": "最旧的密钥",
    "On": "开启",
    "On GitHub event": "在 GitHub 事件发生时",
    "On Windows, Claude can see all open apps. Actions on apps not allowed here are rejected.": "在 Windows 上,Claude 可以看到所有打开的应用。对此处未允许应用的操作将被拒绝。",
    "On latest version": "已是最新版本",
    "On your computer": "在您的电脑上",
    "On {event}": "关于 {event}",
    "Onboarding Chat": "入职引导聊天",
    "Onboarding: First Chat": "入门:第一次聊天",
    "Once": "一次",
    "Once Artifact is unpublished, it cannot be republished.": "构件一旦取消发布,就无法再次发布。",
    "Once HIPAA compliance is enabled for your organization, the configuration is permanent and cannot be disabled by an administrator.": "一旦为你的组织启用 HIPAA 合规,该配置就是永久性的,管理员无法将其禁用。",
    "Once after PR creation": "PR 创建后执行一次",
    "Once allowed, this permission can't be revoked without starting a new task. Deleted files can't be restored.": "一旦允许,此权限无法在不启动新任务的情况下撤销。删除的文件无法恢复。",
    "Once paid, bank transfers take 1 to 5 business days to clear.": "一旦支付,银行转账需要 1 到 5 个工作日到账。",
    "Once your invoice is paid, your billing cycle will reset to start today for no additional charge. This takes about a minute — refresh the page to see your updated details.": "一旦您的发票支付成功,您的计费周期将从今天重新开始,不收取额外费用。这大约需要一分钟——刷新页面以查看更新后的详细信息。",
    "Once — {when}": "一次性 — {when}",
    "One conversation from anywhere": "随处发起同一对话",
    "One or more fetches have failed. Try again.": "一次或多次抓取失败。请重试。",
    "One or more file uploads have failed. Please try again.": "一个或多个文件上传失败。请重试。",
    "One task.{br}Multiple agents.{br}Better work.": "一个任务。{br}多个智能体。{br}更好的成果。",
    "One-liner": "一句话描述",
    "One-pager PRD maker": "单页 PRD 生成器",
    "One-tap sign-in failed. Please try another method.": "一键登录失败。请尝试其他方式。",
    "One-time": "单次",
    "Ongoing": "进行中",
    "Only .json files are supported.": "仅支持 .json 文件。",
    "Only .zip and .plugin files are accepted.": "仅接受 .zip 和 .plugin 文件。",
    "Only Google Docs are supported at this time": "目前仅支持 Google 文档",
    "Only PNG, JPEG, GIF, and WebP images are supported.": "仅支持 PNG、JPEG、GIF 和 WebP 图片。",
    "Only Team plan organizations can upgrade to Enterprise.": "仅 Team 方案的组织可以升级至 Enterprise。",
    "Only accessible from private projects": "仅可从私有项目访问",
    "Only admins can upgrade — ask an admin to upgrade this organization": "只有管理员可以升级——请让管理员升级该组织",
    "Only allow requests from the IP ranges listed below.": "仅允许来自下方列出的 IP 范围的请求。",
    "Only applies to requests from your allowed domains. Additional seats are automatically purchased as needed.": "仅适用于来自您允许的域的请求。额外的座位会根据需要自动购买。",
    "Only commands named in the plugin can run.": "只能运行插件中指定的命令。",
    "Only completed scans can be shared.": "只有完成的扫描才能分享。",
    "Only connect to hosts you trust. This permission will be remembered for future sessions.": "仅连接到您信任的主机。未来的会话将记住此权限。",
    "Only emails from {domains} may be invited": "仅可邀请来自 {domains} 的电子邮件地址",
    "Only existing users can sign in. New registrations are blocked.": "仅现有用户可以登录。新注册已被阻止。",
    "Only fire when the PR is from a specific author, has a label, touches certain files…": "仅当 PR 来自特定作者、具有标签、触及特定文件时触发……",
    "Only grant permissions to familiar websites while you’re learning how Claude works.": "只有在您了解 Claude 的工作原理时,才授予对受信任网站的权限。",
    "Only invited members can view and use this project": "只有受邀成员能查看并使用此项目",
    "Only members of the groups you choose can read or write shared memories.": "只有你所选组的成员才能读取或写入共享记忆。",
    "Only members with User or Custom roles will be updated. Admins, Owners, and Primary owners will be skipped.": "仅更新具有“用户”或“自定义”角色的成员。管理员、所有者和主要所有者将被跳过。",
    "Only messages up to this point will be shared.": "仅分享到此为止的消息。",
    "Only on desktop": "仅限桌面端",
    "Only people invited": "仅限受邀人员",
    "Only private and internal repositories are shown. To use a public repository, fork it to a private repo first.": "仅显示私有和内部仓库。若要使用公开仓库,请先将其 Fork 到私有仓库。",
    "Only requests originating from these IP ranges will be allowed to access your organization. Removing a range takes effect immediately.": "仅限来自这些 IP 范围的请求才被允许访问您的组织。移除范围将立即生效。",
    "Only self-serve Team subscriptions can upgrade to Enterprise.": "仅自主服务的 Team 订阅可以升级到 Enterprise。",
    "Only teammates with the link can view": "只有持有链接的团队成员可以查看",
    "Only the first {max} rows were imported.": "仅导入了前 {max} 行。",
    "Only the minimum necessary data is shared with third parties": "仅与第三方共享最低必要数据",
    "Only the primary owner of this organization can enable HIPAA compliance.": "只有此组织的主要所有者才能启用 HIPAA 合规。",
    "Only the routine's owner can change the GitHub event and filter.": "只有该例程的所有者可以更改 GitHub 事件和筛选器。",
    "Only the team owner can manage this plan.": "只有团队所有者可以管理此计划。",
    "Only the team owner can upgrade to Enterprise.": "只有团队所有者可以升级到企业版。",
    "Only these domains can embed this artifact. Separate with commas.": "仅限这些域名嵌入此构件。用逗号分隔。",
    "Only these sites are allowed:": "仅允许这些站点:",
    "Only use connectors from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.": "请仅使用来自您信任的开发者的连接器。Anthropic 并不控制开发者提供的工具,也无法验证它们是否能按预期运行或是否会发生变更。",
    "Only use extensions from developers you trust. Anthropic does not control which tools developers make available and cannot verify that they will work as intended or that they won't change.": "仅使用您信任的开发者的扩展。Anthropic 不控制开发者提供的工具,也无法验证它们是否会按预期工作或不会发生变化。",
    "Only users with GitHub commit access can read or write shared memories for that repo.": "只有具有 GitHub 提交访问权限的用户才能读取或写入该仓库的共享记忆。",
    "Only users with email addresses from these domains can be invited to your organization. Removing a domain will not affect existing members.": "仅支持包含这些域名的邮箱地址用户加入您的组织。移除域名不会影响现有成员。",
    "Only users with repository access can view your shared sessions.": "只有拥有仓库访问权限的用户才能查看您的共享会话。",
    "Only you": "仅限您自己",
    "Only you have access": "仅您拥有访问权限",
    "Only you have access to this environment": "只有您拥有此环境的访问权限",
    "Only {domainList} addresses can join this workspace.": "只有 {domainList} 地址可加入此工作区。",
    "Op Income": "营业收入",
    "Open": "打开",
    "Open App": "打开应用",
    "Open App settings": "打开应用设置",
    "Open Artifact details": "打开构件详情",
    "Open Chrome and click Connect": "打开 Chrome 并点击“连接”",
    "Open Claude Code and run {cmd} to connect.": "打开 Claude Code 并运行 {cmd} 进行连接。",
    "Open Claude for Desktop": "打开桌面版 Claude",
    "Open Claude for Desktop to let Claude work with apps, data, and tools directly on your computer.": "打开 Claude Desktop,让 Claude 直接在你的电脑上处理应用、数据和工具。",
    "Open Claude from your Applications folder or Launchpad.": "从“应用程序”文件夹或启动台打开 Claude。",
    "Open Claude from your taskbar whenever you need it.": "需要时随时从任务栏打开 Claude。",
    "Open Cowork from anywhere": "从任何地方打开 Cowork",
    "Open Extension Settings Folder": "打开扩展设置文件夹",
    "Open Extensions Folder": "打开扩展程序文件夹",
    "Open GitHub App settings on {host}": "在 {host} 上打开 GitHub App 设置",
    "Open Linear issues": "打开 Linear 问题",
    "Open PR": "打开 PR",
    "Open PR in GitHub": "在 GitHub 中打开 PR",
    "Open Setup": "打开设置",
    "Open System Settings": "打开系统设置",
    "Open a folder to view a screen.": "打开一个文件夹以查看屏幕。",
    "Open a project": "打开一个项目",
    "Open a session to use side chat": "打开会话以使用侧边聊天",
    "Open app": "打开应用",
    "Open artifact": "打开 Artifact",
    "Open artifact{title}": "打开构件 {title}",
    "Open auto-created pull requests as drafts instead of ready for review.": "将自动创建的拉取请求以草稿形式打开,而不是“准备好评审”。",
    "Open branch in GitHub": "在 GitHub 中打开分支",
    "Open chat": "打开对话",
    "Open cli.github.com": "打开 cli.github.com",
    "Open desktop app": "打开桌面应用",
    "Open developer settings": "打开开发者设置",
    "Open download page": "打开下载页面",
    "Open effort menu": "打开工作量菜单",
    "Open external link": "打开外部链接",
    "Open file on desktop": "在桌面上打开文件",
    "Open file picker": "打开文件选择器",
    "Open file…": "打开文件…",
    "Open folder": "打开文件夹",
    "Open folder…": "打开文件夹…",
    "Open guide": "打开指南",
    "Open here": "在此打开",
    "Open in": "打开方式",
    "Open in <emphasis>Outline</emphasis>": "在 <emphasis>Outline</emphasis> 中打开",
    "Open in CLI": "在 CLI 中打开",
    "Open in Drive": "在云端硬盘中打开",
    "Open in GitHub": "在 GitHub 中打开",
    "Open in Mail": "在邮件中打开",
    "Open in Messages": "在信息 (Messages) 中打开",
    "Open in Supabase": "在 Supabase 中打开",
    "Open in browser": "在浏览器中打开",
    "Open in new tab": "在新标签页中打开",
    "Open in split view": "在拆分视图中打开",
    "Open in terminal": "在终端中打开",
    "Open in {appName}": "在 {appName} 中打开",
    "Open in {editorName}": "在 {editorName} 中打开",
    "Open in…": "打开方式…",
    "Open link": "打开链接",
    "Open menu": "打开菜单",
    "Open mode menu": "打开模式菜单",
    "Open model menu": "打开模型菜单",
    "Open only": "仅打开/仅开启",
    "Open outputs folder": "打开输出文件夹",
    "Open plan": "打开计划",
    "Open project": "打开项目",
    "Open repository on GitHub": "在 GitHub 上打开仓库",
    "Open route": "打开路由",
    "Open session": "打开会话",
    "Open session for PR #{number}": "打开 PR #{number} 的会话",
    "Open session in Datadog": "在 Datadog 中打开会话",
    "Open session {title}": "打开会话 {title}",
    "Open settings": "打开设置",
    "Open shared chat": "打开共享聊天",
    "Open sidebar": "打开侧边栏",
    "Open source chat": "开源聊天",
    "Open the Claude Setup.exe file from the downloads list at the top right corner of this window.": "从本窗口右上角的下载列表中打开 Claude Setup.exe 文件。",
    "Open the Claude in Chrome extension": "打开 Chrome 中的 Claude 扩展",
    "Open the Claude.dmg file from your downloads.": "从下载中打开 Claude.dmg 文件。",
    "Open the session to approve": "打开会话以批准",
    "Open the session to respond": "打开会话以回复",
    "Open {appName}": "打开 {appName}",
    "Open {filename}": "打开 {filename}",
    "Open {menuType} menu": "打开 {menuType} 菜单",
    "Open {provider}": "打开 {provider}",
    "Open {repo} on GitHub": "在 GitHub 上打开 {repo}",
    "Open ↗": "打开 ↗",
    "Opening your browser to sign in…": "正在打开浏览器以登录…",
    "Opening {product}… Nothing happened? <link>Install from Microsoft AppSource</link> instead.": "正在打开 {product}…… 没反应?请尝试 <link>从 Microsoft AppSource 安装</link>。",
    "Operation": "操作",
    "Operation blocked for all users": "操作对所有用户已屏蔽",
    "Operations": "运营",
    "Operator": "操作员",
    "Operon is downloading the environment it needs. This can take a few minutes.": "Operon 正在下载所需的环境。这可能需要几分钟。",
    "Operon setup progress": "Operon 设置进度",
    "Opt out": "选择退出",
    "Opt out of training on this report": "选择不使用此报告进行训练",
    "Optimization": "优化",
    "Optimize my week": "优化我的一周",
    "Option+Space": "Option+空格",
    "Optional": "可选",
    "Optional questions": "可选问题",
    "Optional: Give your meeting project a custom name": "可选:为您的会议项目起一个自定义名称",
    "Options": "选项",
    "Options couldn't be loaded.": "无法加载选项。",
    "Opus": "Opus",
    "Opus consumes usage limits faster than other models": "Opus 消耗使用额度的速度比其他模型快",
    "Opus has its own limits because it consumes usage more quickly": "Opus 有独立的限额,因为它消耗使用量更快",
    "Opus only": "仅限 Opus",
    "Opus uses your limit faster. Try another model for longer conversations.": "Opus 会更快消耗您的限额。较长对话请尝试使用其他模型。",
    "Or <b>continue with {provider}</b>": "或<b>使用 {provider} 继续</b>",
    "Or <link>contact sales</link> if you would be interested in upgrading to a paid version of Claude.": "或者,如果您有兴趣升级到 Claude 付费版本,请 <link>联系销售团队</link>。",
    "Or dial {phoneNumber}": "或拨打 {phoneNumber}",
    "Or enter owner/repo directly": "或直接输入 owner/repo",
    "Or explore other plans:": "或探索其他方案:",
    "Or just say hi…": "或者先打个招呼…",
    "Or run {cmd} for a guided walkthrough.": "或运行 {cmd} 以查看引导说明。",
    "Or start from a template": "或从模板开始",
    "Or text {smsNumber}": "或者发送短信至 {smsNumber}",
    "Or try these": "或试试这些",
    "Or use in an IDE or on the go:": "或者在 IDE 中或随时随地使用:",
    "Or you can create a personal account to use Claude on your own.": "或者您可以创建一个个人账户来单独使用 Claude。",
    "Orange": "橙色",
    "Order #8294-1847 · Delivered Jan 28": "订单 #8294-1847 · 已于 1 月 28 日送达",
    "Order already submitted": "订单已提交",
    "Order complete": "订单已完成",
    "Order details": "订单详情",
    "Order summary": "订单摘要",
    "Org ID copied to clipboard": "组织 ID 已复制到剪贴板",
    "Org ID:": "组织 ID:",
    "Organization": "组织",
    "Organization Already Exists": "组织已存在",
    "Organization ID": "组织 ID",
    "Organization Role": "组织角色",
    "Organization access": "组织访问权限",
    "Organization instructions": "组织说明",
    "Organization instructions could not be saved. You can try again.": "无法保存组织说明。你可以重试。",
    "Organization instructions saved.": "组织说明已保存。",
    "Organization name": "组织名称",
    "Organization plugins": "组织插件",
    "Organization preferences": "组织偏好设置",
    "Organization preferences could not be saved. You can try again.": "组织偏好设置无法保存。您可以重试。",
    "Organization preferences saved.": "组织偏好已保存。",
    "Organization role {rowIndex}": "组织角色 {rowIndex}",
    "Organization settings": "组织设置",
    "Organization skills": "组织技能",
    "Organization was created but couldn't be loaded. Refresh the page to continue.": "组织已创建但无法加载。刷新页面以继续。",
    "Organization-managed": "由组织管理",
    "Organization-wide limits are managed in <link>connector settings</link>.": "组织范围的限制在<link>连接器设置</link>中管理。",
    "Organizations requesting to join your parent organization, {organizationName}": "申请加入您母组织 {organizationName} 的组织",
    "Organizations with SSO enabled cannot use discoverability.": "启用了 SSO 的组织无法使用发现功能。",
    "Organize": "整理",
    "Organize digital files": "整理数字文件",
    "Organize my calendar": "整理我的日历",
    "Organize my files": "整理我的文件",
    "Organize my inbox": "整理我的收件箱",
    "Organize my living space": "整理我的生活空间",
    "Organize my screenshots": "整理我的截图",
    "Organize photos by event/date": "按事件/日期整理照片",
    "Organize work and context in projects that Claude can always reference": "在项目中组织工作和上下文,以便 Claude 随时参考",
    "Organize your inbox or calendar": "整理您的收件箱或日历",
    "Origin stories": "起源故事",
    "Original": "原始/原创",
    "Other": "其他",
    "Other illegal or unlawful content": "其他非法或违法内容",
    "Other option": "其他选项",
    "Other scheduled tasks were already running.": "其他计划任务已在运行中。",
    "Other teams": "其他团队",
    "Other tools": "其他工具",
    "Our Max plan is not available in your region at this time. See the <link>list of supported regions</link> for more information.": "我们的 Max 方案目前在您所在的地区不可用。查看<link>支持地区列表</link>以了解更多信息。",
    "Our Pro plan is not available in your region at this time. See the <link>list of supported regions</link> for more information.": "我们的 Pro 方案目前尚未在您所在地区开放。更多信息请查看<link>受支持地区列表</link>。",
    "Our goal is to explore safe ways for AI to browse the web—not just for our products, but for the entire AI ecosystem.": "我们的目标是探索 AI 安全浏览网页的方式——不仅是为了我们的产品,更是为了整个 AI 生态系统。",
    "Our most intelligent model yet": "我们迄今为止最智能的模型",
    "Our team will investigate. If you’re in a support conversation, share this reference ID:": "我们的团队将进行调查。如果你正在与支持团队沟通,请提供此参考 ID:",
    "Our website uses cookies to distinguish you from other users of our website. This helps us provide you with a more personalized experience when you browse our website and also allows us to improve our site.": "我们的网站使用 Cookie 来区分您与本网站的其他用户。这有助于我们在您浏览网站时为您提供更具个性化的体验,同时也让我们能改进网站。",
    "Out of extra usage": "额外用量已耗尽",
    "Out of usage": "用量已耗尽",
    "Outline API Key": "大纲 API 密钥",
    "Outline a long piece": "为长篇内容列大纲",
    "Outline a pitch deck for my startup — problem, solution, market, traction, ask.": "为我的创业项目列一个融资演示文稿大纲,包括问题、解决方案、市场、增长情况和融资诉求。",
    "Outline an ideation workshop that will blow away my creative team": "策划一个让我的创意团队惊艳的头脑风暴工作坊",
    "Outline document": "大纲文档",
    "Outline document link": "大纲文档链接",
    "Outline my essay": "为我的文章列提纲",
    "Outline my pitch deck": "为我的路演演示文稿列提纲",
    "Output": "输出",
    "Outputs": "输出内容",
    "Overactive refusal": "过渡拒绝",
    "Override": "覆盖",
    "Override or default benchmark": "覆盖或默认基准",
    "Overview": "概览",
    "Overwrite": "覆盖",
    "Overwrite plugin": "覆盖插件",
    "Owner": "所有者",
    "Owners & Admins": "所有者与管理员",
    "P/B": "市净率",
    "P/E Ratio": "市盈率",
    "P/S": "市销率 (P/S)",
    "PCT": "PCT",
    "PO Box 4820, Memphis TN": "PO Box 4820, Memphis TN",
    "PR #{prNumber}": "PR #{prNumber}",
    "PR and LOC with Claude Code count are estimates, and may not capture all Claude Code contributions. {link}": "使用 Claude Code 的 PR 数和代码行数 (LOC) 均为估算值,可能无法捕捉到所有的 Claude Code 贡献。{link}",
    "PR description": "PR 描述",
    "PR description saved.": "PR 描述已保存。",
    "PR diff comment created, edited, or deleted": "PR 差异评论已创建、编辑或删除",
    "PR merged": "PR 已合并",
    "PR not yet created": "PR 尚未创建",
    "PR opened": "PR 已创建",
    "PR opened, closed, assigned, or updated with new commits": "PR 已开启、关闭、分配或因新提交而更新",
    "PR review submitted, edited, or dismissed": "PR 评审已提交、编辑或取消",
    "PRD To Prototype": "PRD 转原型",
    "PRs": "PR",
    "PRs Reviewed": "已审阅的 PR",
    "PRs reviewed by Code Review": "由 Code Review 审阅过的 PR",
    "PRs with Claude Code": "使用 Claude Code 执行 PR",
    "Package managers only": "仅限包管理器",
    "Page not found": "未找到页面",
    "Page {current} of {total}": "第 {current} 页,共 {total} 页",
    "Pair program with Claude": "与 Claude 结对编程",
    "Pair with the Claude Mobile app": "与 Claude 移动应用配对",
    "Pair your phone": "配对您的手机",
    "Pan": "平移",
    "Panes": "窗格",
    "Parent folder": "父文件夹",
    "Parent organization join request": "父组织加入请求",
    "Partial — not a valid file on its own": "部分内容,本身不是有效文件",
    "Partners": "合作伙伴",
    "Passed": "已通过",
    "Passed review": "已通过评审",
    "Password": "密码",
    "Password character requirements": "密码字符要求",
    "Passwords missing at least one character from each selected set are rejected.": "缺少每个所选集中至少一个字符的密码将被拒绝。",
    "Passwords shorter than this are rejected. Minimum 6, recommended 8 or more.": "短于此长度的密码将被拒绝。最少 6 位,推荐 8 位或更多。",
    "Past hour": "过去一小时",
    "Past month": "过去一个月",
    "Past week": "过去一周",
    "Past year": "过去一年",
    "Paste GitHub URL": "粘贴 GitHub URL",
    "Paste a Drive link in the chat to upload it": "在聊天中粘贴云端硬盘链接以进行上传",
    "Paste a URL": "粘贴 URL",
    "Paste at least a few paragraphs of example writing, including from multiple various sources if you’d like, for Claude to analyze and the match style of...": "粘贴至少几段示例文字(如果愿意,可以包含来自多个不同来源的内容),供 Claude 分析并以此匹配风格...",
    "Paste results below to add to Claude's memory": "将下方的结果粘贴到此处,以添加到 Claude 的记忆中",
    "Paste text content": "粘贴文本内容",
    "Paste the {fieldName} here": "在此粘贴 {fieldName}",
    "Paste this secret into your {sourceLabel} webhook settings. You won't be able to see it again after closing this dialog.": "将此密钥粘贴到您的 {sourceLabel} webhook 设置中。关闭此对话框后,您将无法再次看到它。",
    "Paste this webhook URL into your App's settings on GitHub Enterprise to start receiving pull request events.": "将此 Webhook URL 粘贴到 GitHub Enterprise 上的应用设置中,即可开始接收拉取请求事件。",
    "Paste your API key": "粘贴您的 API 密钥",
    "Paste your memory details here": "在此粘贴您的记忆详情",
    "Paste your token": "粘贴您的令牌",
    "Pasted content": "粘贴的内容",
    "Path copied to clipboard": "路径已复制到剪贴板",
    "Path copied to clipboard!": "路径已复制到剪贴板!",
    "Path copied to clipboard.": "路径已复制到剪贴板。",
    "Path is invalid.": "路径无效。",
    "Path prefix must start with /.": "路径前缀必须以 / 开头。",
    "Path prefixes": "路径前缀",
    "Path traversal": "路径遍历",
    "Patient, educational responses that build understanding": "耐心且具教育性的回复,助力建立理解",
    "Pause delivery without deleting the webhook.": "暂停投递而不删除 webhook。",
    "Pause instead": "改为暂停",
    "Pause memory": "暂停记忆功能",
    "Pause plan": "暂停方案",
    "Pause routine": "暂停例程",
    "Pause scheduled - ": "预计暂停 - ",
    "Pause your plan for up to 3 months to temporarily stop recurring billing.": "暂停方案最多 3 个月以暂时停止自动续费。",
    "Paused": "已暂停",
    "Paused plans cannot be changed": "已暂停的方案无法更改",
    "Paused. Existing memories are kept but won’t be read or updated in new sessions.": "已暂停。现有记忆会被保留,但在新会话中不会被读取或更新。",
    "Pay": "支付",
    "Pay <b>{amount} + tax</b> with {brand} ••{last4}": "使用 {brand} ••{last4} 支付 <b>{amount} + 税费</b>",
    "Pay <b>{amount}</b> now": "立即支付 <b>{amount}</b>",
    "Pay <b>{amount}</b> with {brand} ••{last4}": "使用 {brand} ••{last4} 支付 <b>{amount}</b>",
    "Pay annually to save": "按年支付更省钱/更划算",
    "Pay annually to save {savings}%.": "按年支付可节省 {savings}%。",
    "Pay as you go, with Claude Code access": "按量计费,包含 Claude Code 访问权限",
    "Pay as you go, with only Chat access": "按需付费,仅具有聊天访问权限",
    "Pay for what your org actually uses, with caps you set": "按组织实际使用量付费,并由你设置上限",
    "Pay invoice": "支付发票",
    "Pay now": "立即支付",
    "Pay only for what you use": "只为您的使用付费",
    "Pay per message": "按消息条数付费",
    "Pay-as-you-go at API rates": "按 API 费率即用即付",
    "Pay-as-you-go pricing with pooled usage across your org": "按需付费,在组织内共享用量池",
    "Payback": "回本周期",
    "Payload URL": "负载 URL",
    "Payment": "支付",
    "Payment confirmation failed. You can try again.": "付款确认失败。您可以重试。",
    "Payment confirmed, activating your subscription.": "付款已确认,正在激活您的订阅。",
    "Payment could not be completed. You can try again.": "付款无法完成。你可以重试。",
    "Payment failed": "付款失败",
    "Payment failed. Check your card and try again.": "付款失败。请检查你的卡后重试。",
    "Payment failed. Please try again later. If the problem persists, contact support at https://support.anthropic.com/": "付款失败。请稍后再试。如果问题仍然存在,请通过 https://support.anthropic.com/ 联系支持人员",
    "Payment failed. Please try again with a different payment method.": "付款失败。请尝试使用其他付款方式重试。",
    "Payment failed. You can try again later. If the problem persists, contact support at https://support.anthropic.com/": "付款失败。您可以稍后再试。如果问题仍然存在,请联系支持中心:https://support.anthropic.com/",
    "Payment failed. You can try again with a different payment method.": "付款失败。您可以尝试使用其他付款方式。",
    "Payment method": "支付方式",
    "Payment method verified, activating your subscription.": "付款方式已验证,正在激活您的订阅。",
    "Payment past due": "款项逾期",
    "Payment processing failed to load. If you have an ad blocker or privacy extension enabled, please disable it and try again.": "支付处理加载失败。如果您启用了广告拦截或隐私插件,请禁用后重试。",
    "Peak hour": "高峰时段",
    "Pen": "画笔",
    "Pen ({shortcut})": "画笔 ({shortcut})",
    "Pending": "待处理",
    "Pending Organizations": "待处理组织",
    "Pending changes in review": "待审核的更改",
    "Pending invites": "待处理邀请",
    "Pending review": "待审核",
    "Pending: {delta, number, ::sign-always} on {date}": "待处理:{date} {delta, number, ::sign-always}",
    "People": "人员",
    "People with access": "有权访问的人员",
    "People with your company email can request to join.": "拥有您公司邮箱地址的人员可以申请加入。",
    "Per Share": "每股",
    "Per engineer, fully-loaded": "每位工程师的完全成本",
    "Per member, {minimum} minimum": "按成员计,最少 {minimum} 个",
    "Per month billed monthly": "按月计费,每月",
    "Per month with annual subscription discount ($200 billed up front). $20 if billed monthly.": "年度订阅优惠后每月价格(预付 200 美元)。如果按月支付则为 20 美元。",
    "Per seat / month if billed annually. $25/seat and $125/seat if billed monthly. Minimum {minimumSeatCount, plural, one {# seat} other {# seats}}.": "按年计费为每人/月。按月计费为 $25/人 和 $125/人。最低 {minimumSeatCount, plural, one {# seat} other {# seats}}。",
    "Per seat / month. Minimum {minimumSeatCount, plural, one {# seat} other {# seats}}.": "每席位 / 每月。最少 {minimumSeatCount, plural, one {# 个席位} other {# 个席位}}。",
    "Per {tierLabel} user": "每位 {tierLabel} 用户",
    "Per-tier spend limits become available after your trial converts to a paid plan.": "按层级的支出限制将在试用转为付费套餐后可用。",
    "Percentage of seats actively used, calculated by dividing Weekly Active Users by total seats.": "活跃使用的席位百分比,计算方式为:周活跃用户数除以总席位数。",
    "Percentage of users who created at least one artifact on {date} (UTC). Change is compared to the previous day.": "在 {date} (UTC) 创建了至少一个构件的用户百分比。该变化是与前一天对比的结果。",
    "Percentage of users who created at least one artifact on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)创建至少一个工件的用户百分比。变化与上周同一天相比。",
    "Percentage of users who created at least one project on {date} (UTC). Change is compared to the previous day.": "在 {date} (UTC) 创建至少一个项目的用户百分比。变化与前一天相比。",
    "Percentage of users who created at least one project on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)创建至少一个项目的用户百分比。变化与上周同一天相比。",
    "Percentage of users who started at least one chat on {date} (UTC). Change is compared to the previous day.": "在 {date} (UTC) 启动了至少一次聊天的用户百分比。变动量是与前一天相比。",
    "Percentage of users who started at least one chat on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)开始至少一次聊天的用户百分比。变化与上周同一天相比。",
    "Percentage of users who started at least one session on {date} (UTC). Change is compared to the same day last week.": "在 {date} (UTC) 启动过至少一次会话的用户百分比。变化值是与上周同一天相比。",
    "Perfect for quick tasks like organizing folders or creating short reports.": "非常适合处理诸如整理文件夹或创建简短报告之类的快速任务。",
    "Perfect for short coding sprints in small codebases.": "非常适合在小型代码库中进行短期编程冲刺。",
    "Performance & Risk": "性能与风险",
    "Period spend": "周期支出",
    "Permanently delete cached GitHub files": "永久删除缓存的 GitHub 文件",
    "Permanently delete this agent and all of its messages. This action cannot be undone.": "永久删除此智能体及其所有消息。此操作无法撤销。",
    "Permanently remove this webhook and stop all deliveries.": "永久删除此 webhook 并停止所有投递。",
    "Permission Mode": "权限模式",
    "Permission analyzer": "权限分析器",
    "Permission decision couldn't be sent. You can try again.": "无法发送权限决定。您可以重试。",
    "Permission for {connector}": "{connector} 的权限",
    "Permission friction": "权限摩擦",
    "Permission limits for these operations are managed by your organization.": "这些操作的权限上限由你的组织管理。",
    "Permission mode couldn't be changed. You can try again.": "无法更改权限模式。您可以重试。",
    "Permission mode: {mode}": "权限模式:{mode}",
    "Permission set by your admin": "由您的管理员设置的权限",
    "Permission set by {connectorName}": "由 {connectorName} 设置权限",
    "Permissions": "权限",
    "Permissions are ready. Click Ask again to continue.": "权限已就绪。点击“再次询问”以继续。",
    "Permissions needed": "需要权限",
    "Permissions:": "权限:",
    "Persist Preview sessions": "持久化预览会话",
    "Persist session": "持久化会话",
    "Persist session across runs": "在多次运行间保留会话",
    "Persist sessions": "持久化会话/保留会话",
    "Personal": "个人",
    "Personal access token": "个人访问令牌",
    "Personal health data": "个人健康数据",
    "Personal or educational email domains cannot be made discoverable.": "个人或教育邮箱域名不能设为可发现。",
    "Personal plugins": "个人插件",
    "Personal preferences": "个人偏好",
    "Personal settings": "个人设置",
    "Personal skills": "个人技能",
    "Personalize your gift": "个性化您的礼品",
    "Phone": "电话",
    "Phone number": "电话号码",
    "Phone number verified": "电话号码已验证",
    "Phone provider settings": "电话供应商设置",
    "Phone sign-in": "手机号登录",
    "Photo of {placeName}": "{placeName} 的照片",
    "Piano": "钢琴",
    "Pick a Console organization to send a merge invite to": "选择一个控制台(Console)组织以发送合并邀请",
    "Pick a color": "选择颜色",
    "Pick a concept I'm likely struggling with and explain it like it's my first time": "挑一个我可能正在困惑的概念,并像我是第一次接触一样解释给我听",
    "Pick a concept to explain": "选择一个要解释的概念",
    "Pick a folder and Claude will treat its files as project context. Add instructions to shape how Claude approaches the work.": "选一个文件夹,Claude 将其文件视为项目背景信息。添加说明以引导 Claude 开展工作。",
    "Pick a historical event and dig into it with me — not the textbook summary, but the context, the turning points, and the parts people usually get wrong.": "选一个历史事件和我深挖一下——不是教科书式的总结,而是背景、转折点以及人们通常误解的部分。",
    "Pick a plan to get started": "选择方案以开始使用",
    "Pick a task, any task": "随便选一个任务",
    "Pick a topic you think I'd find interesting and explain it in plain language, then check what I'd like to go deeper on.": "选一个你认为我会感兴趣的话题,用通俗易懂的语言解释它,然后看看我想深入了解哪些内容。",
    "Pick an organization to send a merge invite to": "选择一个组织以发送合并邀请",
    "Pick how many seats you need and set spend limits. You only pay for what your team actually uses.": "挑选您需要的席位数量并设置支出限额。您只需为您团队实际使用的部分付费。",
    "Pick one foundational stats or ML concept and explain it clearly — what it is, why it matters, and a small worked example. Then ask if I want another.": "选择一个基础统计学或机器学习概念并清晰解释,包括它是什么、为什么重要,以及一个简短的示例。然后问我是否还想再看一个。",
    "Pick the right chart type": "选择合适的图表类型",
    "Pick up any session from anywhere — browser, terminal, or mobile.": "从任何地方接取任何会话 — 浏览器、终端或移动设备。",
    "Pick up to three topics you're interested in": "最多选择三个你感兴趣的主题",
    "Pick when this routine should run.": "选择此例程的运行时间。",
    "Pick where you want to set up, or just start typing below.": "选择你想开始设置的位置,或直接在下方开始输入。",
    "Pick whichever’s easiest:": "选择最方便的方式:",
    "Pick your seats and enter a payment method. The order details below show today's charge.": "选择您的席位并输入支付方式。下方的订单详情显示今日的扣费金额。",
    "Picking up where you left off…": "正在从你上次停下的地方继续…",
    "Piloting Claude in Chrome": "Chrome 版 Claude 试行中",
    "Pin": "置顶",
    "Pin a specific version": "固定特定版本",
    "Pin artifact": "固定工件",
    "Pin as chapter": "固定为章节",
    "Pin loaded compensation, coding hours, or lift to recompute against your own assumptions. These overrides shape the page only — they aren't saved.": "固定已加载的薪酬、编码时长或增益,以便基于你自己的假设重新计算。这些覆盖项只影响当前页面——不会被保存。",
    "Pin project": "置顶项目",
    "Pink": "粉色",
    "Pinned": "已置顶",
    "Pinned models may stop working when retired.": "固定的模型在退役后可能会停止工作。",
    "Pinned or active": "已置顶或处于活跃状态",
    "Pitch me a wild feature": "向我推介一个疯狂的功能",
    "Pixel avatar created": "像素头像已创建",
    "Pixelating...": "像素化中...",
    "Place details couldn't be loaded.": "无法加载地点详情。",
    "Place the service key you generated into a file in your container. This file will be referenced by the environment runner in the next step.": "将生成的服务密钥放入容器内的一个文件中。该文件将在下一步中被环境运行程序引用。",
    "Placement Cooldowns": "放置冷却时间",
    "Plan": "方案/计划",
    "Plan & Limits": "方案与限额",
    "Plan a campaign calendar": "规划活动日历",
    "Plan a creative brainstorm with clients": "与客户一起策划创意头脑风暴",
    "Plan a data pipeline": "规划数据管道",
    "Plan a day trip": "规划一日游",
    "Plan a development roadmap": "规划开发路线图",
    "Plan a lesson": "规划一节课",
    "Plan a product launch": "策划产品发布",
    "Plan a refactor": "规划一次重构",
    "Plan a rollout": "规划上线发布",
    "Plan a trip": "规划旅行",
    "Plan a usability test": "规划一次可用性测试",
    "Plan an annual budget cycle": "规划年度预算周期",
    "Plan an eng project": "规划一个工程项目",
    "Plan an onboarding checklist": "规划一份入职清单",
    "Plan approved": "方案已批准",
    "Plan before making changes": "在进行更改前制定计划",
    "Plan budget allocations": "规划预算分配",
    "Plan business acquisitions": "规划商业收购",
    "Plan business scaling strategies": "规划业务扩展策略",
    "Plan comment": "计划评论",
    "Plan content calendars": "规划内容日历",
    "Plan continuing education": "规划继续教育",
    "Plan details": "方案详情",
    "Plan educational pursuits": "规划学业追求",
    "Plan expansion opportunities": "方案扩展机会",
    "Plan feedback": "方案反馈",
    "Plan for what's ahead": "规划接下来的工作",
    "Plan friction-free user experience flows": "规划无摩擦的用户体验流程",
    "Plan healthy meals": "规划健康饮食",
    "Plan home improvements": "规划房屋装修",
    "Plan market research": "规划市场研究",
    "Plan milestones for a creative project": "为创意项目规划里程碑",
    "Plan mode": "计划模式",
    "Plan my 5-day trip": "规划我的五日游",
    "Plan my career growth": "规划我的职业发展",
    "Plan my day or week": "规划我的一天或一周",
    "Plan my next vacation": "规划我的下一次假期",
    "Plan my week": "规划我的一周",
    "Plan next quarter": "规划下个季度",
    "Plan organizational structure": "规划组织架构",
    "Plan out my work priorities": "规划我的工作重心",
    "Plan out your work priorities": "规划您的工作优先级",
    "Plan outline": "计划大纲",
    "Plan photography shoots": "策划摄影拍摄",
    "Plan product launches": "规划产品发布",
    "Plan ready": "计划已就绪",
    "Plan rejected": "计划已拒绝",
    "Plan retirement activities": "规划退休活动",
    "Plan sent to your terminal": "计划已发送到您的终端",
    "Plan special celebrations": "规划特别庆典",
    "Plan type": "方案类型",
    "Plan usage": "套餐用量",
    "Plan usage limits": "方案用量限额",
    "Plan videogame storyboards": "规划视频游戏脚本/分镜",
    "Planned seat changes go into effect next billing cycle": "计划的席位变更将在下一个计费周期生效",
    "Planners, organizers, task managers, scheduling tools, productivity apps": "规划工具、管理工具、任务管理器、排程工具、生产力应用",
    "Plans": "方案",
    "Plans that grow with you": "伴您成长的方案",
    "Platform": "平台",
    "Play": "播放",
    "Play ClawdDash": "玩 ClawdDash",
    "Play a Game": "玩游戏",
    "Play a game": "玩游戏",
    "Play a platformer game where you can create level themes using AI": "玩一款可以利用 AI 创建关卡主题的平台游戏",
    "Play a word game together": "一起玩文字游戏",
    "Play an endless of emoji charades as Claude spins up new questions on the fly": "随着 Claude 随时生成新问题,玩一场无尽的 Emoji 猜谜游戏",
    "Play the classic slime soccer game, with single-player and multi-player options": "游玩经典的史莱姆足球游戏,提供单人及多人模式",
    "Play the piano with Claude": "用Claude弹钢琴",
    "Please <a>contact support</a> to process your refund.": "请<a>联系支持</a>处理您的退款。",
    "Please be aware that system usage may be monitored, recorded, and subject to audit. Unauthorized use of this system is strictly prohibited and may result in criminal and civil penalties. By using this system, you indicate your consent to such monitoring and recording.": "请注意,系统使用情况可能会被监控、记录并接受审计。严禁未经授权使用本系统,否则可能导致刑事和民事处罚。使用本系统即表示您同意此类监控和记录。",
    "Please check the file name and try again.": "请检查文件名并重试。",
    "Please check your email": "请检查您的电子邮箱",
    "Please choose a .csv file.": "请选择一个 .csv 文件。",
    "Please confirm your email": "请确认您的电子邮箱",
    "Please consider starting a new chat.": "请考虑开启新聊天。",
    "Please contact another administrator to deprovision your account.": "请联系另一位管理员来取消配置您的账号。",
    "Please contact your IT Administrator": "请联系您的 IT 管理员",
    "Please contact your account administrator": "请联系您的账号管理员",
    "Please contact your account administrator for access.": "请联系您的账号管理员获取访问权限。",
    "Please contact your account administrator to ensure you have an account.": "请联系您的账户管理员,确保您拥有账户。",
    "Please contact your account administrator to ensure your identity provider is configured to send an email address.": "请联系你的账户管理员,确保你的身份提供商已配置为发送电子邮件地址。",
    "Please contact your administrator to deprovision your account.": "请联系您的管理员以停用您的账户。",
    "Please contact your company’s IT administrator to be added to an existing organization. ": "请联系您公司的 IT 管理员以加入现有组织。",
    "Please enter a valid email address": "请输入有效的电子邮箱地址",
    "Please enter your first name": "请输入您的名字",
    "Please note that once deleted, the organization cannot be restored, and its data cannot be exported.": "请注意,组织一旦删除将无法恢复,其数据也无法导出。",
    "Please provide any additional information to help us understand your request.": "请提供任何补充信息以帮助我们了解您的请求。",
    "Please provide details: (optional)": "请提供详情:(可选)",
    "Please reach out to {supportEmailAddress} for assistance. We'll set you up with an API credit package.": "请联系 {supportEmailAddress} 获取协助。我们将为您安排 API 额度套餐。",
    "Please reconnect your GDrive account in Settings page.": "请在设置页面重新连接您的 GDrive 账户。",
    "Please review our policies to understand why your account may have been suspended:": "请查看我们的政策,以了解您的账户为何可能被暂停:",
    "Please review the terms of service": "请审阅服务条款",
    "Please select fewer files.": "请选择较少的文件。",
    "Please take a look at our <tosLink>Terms of Service</tosLink> and <aupLink>Usage Policy</aupLink> for more information.{br}If you wish to appeal your suspension, please visit our <trustLink>Trust & Safety Center</trustLink>.": "请查看我们的 <tosLink>服务条款</tosLink> 和 <aupLink>使用政策</aupLink> 了解更多信息。{br}如果您想对停用提出申诉,请访问我们的 <trustLink>信任与安全中心</trustLink>。",
    "Please try a smaller repo.": "请尝试一个小一点的代码仓库。",
    "Please try again later.": "请稍后重试。",
    "Please try again later. Follow <link>status.anthropic.com</link> for updates.": "请稍后重试。关注 <link>status.anthropic.com</link> 获取更新。",
    "Please try again.": "请重试。",
    "Please try again. If that doesn't work, contact your account administrator or <link>Anthropic support</link>.": "请重试。如果仍然无效,请联系您的账号管理员或 <link>Anthropic 支持团队</link>。",
    "Please try launching again from your Canvas course. If the problem persists, contact your instructor or system administrator.": "请尝试从您的 Canvas 课程中再次启动。如果问题仍然存在,请联系您的讲师或系统管理员。",
    "Please use the link from your gift email to redeem your gift.": "请使用礼品邮件中的链接兑换您的礼品。",
    "Please use this <link>form</link> to report copyright infringement.": "请使用此<link>表单</link>来报告版权侵权。",
    "Please use this <link>form</link> to report violative content.": "请使用此<link>表单</link>举报违规内容。",
    "Please wait before trying again.": "请稍候重试。",
    "Plugin": "插件",
    "Plugin changes applied.": "插件更改已应用。",
    "Plugin configuration error": "插件配置错误",
    "Plugin deleted.": "插件已删除。",
    "Plugin documentation": "插件文档",
    "Plugin duplicate failed. You can try again.": "插件复制失败。您可以重试。",
    "Plugin error details": "插件错误详情",
    "Plugin folder": "插件文件夹",
    "Plugin installed. Note: it uses the legacy commands/ format. Both formats work — consider migrating to skills/*/SKILL.md.": "插件已安装。注意:它使用了旧版的 commands/ 格式。两种格式都有效——可考虑迁移至 skills/*/SKILL.md。",
    "Plugin is already up to date.": "插件已是最新版本。",
    "Plugin is installed and ready to use.": "插件已安装并可供使用。",
    "Plugin marketplaces": "插件市场",
    "Plugin name": "插件名称",
    "Plugin reference": "插件参考",
    "Plugin rename failed. You can try again.": "插件重命名失败。您可以重试。",
    "Plugin saved, but skill/command sync failed": "插件已保存,但技能/命令同步失败",
    "Plugin submissions": "插件提交",
    "Plugin submitted for review": "插件已提交审核",
    "Plugin uninstalled.": "插件已卸载。",
    "Plugin updated.": "插件已更新。",
    "Plugin uploaded.": "插件已上传。",
    "Plugins": "插件",
    "Plugins are only available in Cowork and Code": "插件仅在“协作 (Cowork)”和“代码 (Code)”模式中可用",
    "Plugins are synced automatically from a GitHub repository": "插件会从 GitHub 仓库自动同步",
    "Plugins are typically served via a GitHub repo. For each submission we will take the latest commit (tagged via SHA) and copy this into our official marketplace for serving after a security screening.": "插件通常通过 GitHub 仓库提供。对于每次提交,我们将提取最新提交(通过 SHA 标记)并将其复制到我们的官方市场,在通过安全筛选后提供服务。",
    "Plugins can be browsed, but are only available for use in the desktop app. <link>Download Claude for Desktop</link>": "可以浏览插件,但仅在桌面应用中可用。<link>下载 Claude 桌面版</link>",
    "Plugins can be used in Claude Code and Claude Cowork. All submissions to this form will be reviewed for inclusion in the plugin marketplace.": "插件可用于 Claude Code 和 Claude Cowork。提交给此表单的所有内容都将经过审核以决定是否纳入插件市场。",
    "Plugins can run arbitrary code using your credentials, files, and tools. Only install plugins from sources you trust.": "插件可以使用您的凭据、文件和工具运行任意代码。仅安装来自您信任的来源的插件。",
    "Plugins failed validation": "插件验证失败",
    "Plugins run locally and aren't available in Chat. Switch to Cowork or Code to use plugins.": "插件在本地运行,在“对话 (Chat)”中不可用。请切换到“协作 (Cowork)”或“代码 (Code)”以使用插件。",
    "Plugins scoped to this project. Shared with anyone who works in this folder.": "范围仅限于此项目的插件。与在此文件夹中工作的任何人共享。",
    "Plugins that are managed by your org will appear here.": "由您的组织管理的插件将显示在此处。",
    "Plugins that you add or create will appear here.": "您添加或创建的插件将显示在此处。",
    "Plus, get more ways to use Claude:": "此外,获得更多使用 Claude 的方式:",
    "Podcast": "播客",
    "Point Claude Code at any existing repo or start from scratch. It picks up where you are.": "将 Claude Code 指向任何现有仓库或从头开始。它会从你所在的地方继续。",
    "Point Claude at a folder and let it work": "让 Claude 瞄准一个文件夹并开始工作",
    "Point Claude at any folder": "将 Claude 指向任何文件夹",
    "Point this configuration at a bootstrap URL to have your organization manage these settings remotely.": "将此配置指向一个引导 URL,以便你的组织远程管理这些设置。",
    "Poke holes in my business model — where does it break, and what would an investor push on? I'll describe it below.": "帮我挑出商业模式中的漏洞,它会在哪里出问题,投资人会质疑什么?我会在下面描述。",
    "Policies acknowledged": "已确认政策",
    "Polish an HR policy draft": "润色一份人力资源政策草稿",
    "Polish my draft's clarity": "润色我草稿的清晰度",
    "Polish rough notes into a document": "将草稿笔记润色成文档",
    "Pondering, stand by...": "正在思考,请稍候...",
    "Pondering...": "正在思考...",
    "Pool": "池",
    "Pool at capacity": "池已满",
    "Pool configuration will be deleted. This is not recoverable.": "池配置将被删除。这是不可恢复的。",
    "Pool key created": "池密钥已创建",
    "Pool name": "池名称",
    "Pooled usage with org and user spend limits": "结合组织和用户支出限制的共享用量",
    "Pools accept session jobs from your org. Each pool needs at least one key for runners to authenticate.": "池接受来自您组织的会话作业。每个池至少需要一个密钥供运行器进行身份验证。",
    "Poor image understanding": "图像理解能力欠佳",
    "Popular": "热门/流行",
    "Port": "端口",
    "Port {port}": "端口 {port}",
    "Portuguese": "葡萄牙语",
    "Portuguese Artifacts Built with Claude": "使用 Claude 构建的葡萄牙语构件",
    "Positive": "正向",
    "Post tip comments on pull requests, such as how to trigger a review when a repository is set to manual mode.": "在拉取请求上发布提示性评论,例如当仓库设置为手动模式时如何触发审阅。",
    "Post-tool use": "工具使用后",
    "Power through tasks with Cowork": "使用 Cowork 高效完成任务",
    "Power your project with tools": "用工具强化您的项目",
    "PowerPoint": "PowerPoint",
    "Powered by Claude": "由 Claude 强力驱动",
    "Powerful agentic coding in your IDE, terminal, or on the go.": "在您的 IDE、终端或随时随地使用强大的代理式编码。",
    "Practice salary negotiations": "练习加薪谈判",
    "Pre-approve actions that Claude can take on websites before you start working. You can review Claude's approach upfront, then let it run. Claude will still ask before taking certain irreversible or potentially harmful actions, like making a purchase. For trusted workflows, you can choose to skip all permissions, but you should supervise Claude closely. While some safeguards exist for sensitive actions, malicious actors could still trick Claude into unintended actions.": "在开始工作前预先批准 Claude 可在网站上采取的操作。您可以提前审阅 Claude 的方案,然后让它运行。在采取某些不可逆或潜在有害的操作(如进行购买)前,Claude 仍会询问。对于受信任的工作流,您可以选择跳过所有权限,但应密切监督 Claude。虽然针对敏感操作存在一些防护措施,但恶意行为者仍可能诱骗 Claude 采取非预期操作。",
    "Pre-compact": "预压缩",
    "Pre-installed and always on. Users can't disable or uninstall it.": "预装且始终开启。用户无法禁用或卸载它。",
    "Pre-installed for all users. Users can disable or uninstall it.": "为所有用户预装。用户可以禁用或卸载它。",
    "Pre-tool use": "工具使用前",
    "Predict my next stress point by analyzing my calendar density patterns": "通过分析我的日历密度模式来预测我的下一个压力点",
    "Predictable usage per seat": "每个席位可预期的用量",
    "Preferences": "偏好设置",
    "Prefilled from your Claude account. You can change it if needed.": "已根据你的 Claude 账户预填。如有需要你可以更改。",
    "Prefix added to the beginning of every worktree branch name": "添加到每个工作树分支名称开头的前缀",
    "Premium": "高级版",
    "Premium Nonprofit": "高级非营利",
    "Premium Nonprofit seat": "高级非营利席位",
    "Premium Nonprofit seats": "高级非营利席位",
    "Premium Nonprofit: {before, number} → {after, number}": "Premium Nonprofit:{before, number} → {after, number}",
    "Premium members": "高级成员",
    "Premium seat": "Premium 席位",
    "Premium seat required": "需要高级版席位",
    "Premium seats": "高级席位",
    "Premium seats cannot be reduced on Enterprise plans": "Enterprise 方案无法减少高级席位",
    "Premium users": "Premium 用户",
    "Premium: {before, number} → {after, number}": "高级版:{before, number} → {after, number}",
    "Prep a difficult conversation": "准备一次困难对话",
    "Prep a stakeholder update": "准备一份干系人更新",
    "Prep a tough employee talk": "准备一次棘手的员工谈话",
    "Prep for a client meeting": "准备客户会议",
    "Prep for a discovery call": "准备需求探索电话",
    "Prep for my next meeting": "为我的下一场会议做准备",
    "Prepare a quarterly business review": "准备季度业务评估 (QBR)",
    "Prepare for a job interview": "准备面试",
    "Prepare for a meeting": "准备会议",
    "Prepare for an exam or interview": "准备考试或面试",
    "Prepare for promotions": "准备促销活动",
    "Prepare presentations": "准备演示文稿",
    "Preparing checkout…": "正在准备结算…",
    "Preparing session": "正在准备会话",
    "Preparing to dive in...": "准备开始...",
    "Preparing your research assistant...": "正在准备您的研究助手...",
    "Preparing...": "正在准备...",
    "Prerequisites": "先决条件",
    "Prerequisites: <nodeLink>Node.js 18 or newer</nodeLink>": "先决条件:<nodeLink>Node.js 18 或更高版本</nodeLink>",
    "Present": "演示",
    "Present redesign to skeptics": "向怀疑者展示重新设计方案",
    "Presentation": "演示文稿",
    "Presentation mode": "演示模式",
    "Presented file(s)": "演示的文件",
    "Presenting file(s)...": "正在展示文件...",
    "Preset": "预设",
    "Preset style": "预设样式",
    "Preset styles are not editable": "预设样式不可编辑",
    "Press Enter to move down, or Escape to cancel.": "按 Enter 下移,或按 Escape 取消。",
    "Press Enter to move left, or Escape to cancel.": "按 Enter 向左移动,或按 Escape 取消。",
    "Press Enter to move right, or Escape to cancel.": "按 Enter 向右移动,或按 Escape 取消。",
    "Press Enter to move up, or Escape to cancel.": "按 Enter 上移,或按 Escape 取消。",
    "Press Escape then Tab to move focus out of the editor.": "按 Escape 后再按 Tab,将焦点移出编辑器。",
    "Press Escape to close": "按 Esc 键关闭",
    "Press [Esc] to return to your app": "按 [Esc] 返回您的应用",
    "Press [Space] to play · [Esc] to exit": "按 [空格键] 开始 · [Esc] 退出",
    "Press [Space] to try again": "按 [空格键] 重试",
    "Press and hold to record": "按住录音",
    "Press enter after each email, or paste a list": "在每个邮箱后按回车,或粘贴一个列表",
    "Press enter after each email, or paste a list.": "每输入一个邮箱后按 Enter,或直接粘贴一个列表。",
    "Press enter after each email, paste a list, or drag in a CSV.": "每输入一个邮箱后按 Enter,也可以粘贴列表或拖入 CSV 文件。",
    "Press key": "按键",
    "Press key: {keys}": "按 {keys} 键",
    "Press once to start dictation, and press again when you're done speaking.": "按一下开始听写,说话结束后再按一下。",
    "Prev Close": "昨收盘",
    "Prevent users from launching Claude from Canvas": "阻止用户从 Canvas 启动 Claude",
    "Prevent your computer from idle-sleeping while Claude is open so scheduled tasks can run. Your display can still turn off. Closing the laptop lid will still put it to sleep.": "在 Claude 打开时防止您的计算机进入闲置休眠,以便计划任务可以运行。您的显示器仍然可以关闭。关闭笔记本盖子仍然会使其进入休眠状态。",
    "Prevents new organizations from being created under your verified domains, including personal accounts. ": "阻止在验证域名下创建新组织,包括个人账户。",
    "Prevents sleep while Dispatch is running.": "在 Dispatch 运行时防止休眠。",
    "Preview": "预览",
    "Preview (server running)": "预览(服务器运行中)",
    "Preview Changes": "预览更改",
    "Preview URL": "预览 URL",
    "Preview address": "预览地址",
    "Preview and provide feedback on upcoming enhancements to our platform. Please note: experimental features might influence Claude’s behavior and some interactions may differ from the standard experience.": "预览并对我们平台的即将推出的增强功能提供反馈。请注意:实验性功能可能会影响 Claude 的行为,某些交互可能与标准体验有所不同。",
    "Preview contents": "预览内容",
    "Preview element": "预览元素",
    "Preview failed to load. The app may still be starting.": "预览加载失败。应用可能仍在启动中。",
    "Preview image": "预览图片",
    "Preview image of feature": "预览功能图像",
    "Preview isn't available for {fileName} ({fileSize}).": "预览不可用于 {fileName} ({fileSize})。",
    "Preview isn't available for {fileName}.": "无法预览 {fileName}。",
    "Preview isn’t available for {fileName}.": "预览不可用于 {fileName}。",
    "Preview markdown": "预览 Markdown",
    "Preview not responding. The app may have failed to start.": "预览无响应。应用可能启动失败。",
    "Preview of changes that will be applied when SCIM provisioning runs.": "SCIM 配置运行时将应用的更改预览。",
    "Preview of {fileName}": "{fileName} 预览",
    "Preview options": "预览选项",
    "Preview size: {device}. Click to cycle.": "预览尺寸:{device}。点击以循环切换。",
    "Preview with an example...": "通过示例预览...",
    "Previewing with": "预览人",
    "Previous": "前一页",
    "Previous image": "上一张图片",
    "Previous match": "上一个匹配项",
    "Previous month": "上个月",
    "Previous option": "上一个选项",
    "Previous page": "上一页",
    "Previous period": "上一周期",
    "Previous photo": "上一张照片",
    "Previous question": "上一个问题",
    "Previous session": "上一个会话",
    "Previous sync appears stale (started at {time}). You can retry.": "上次同步似乎已失效(开始于 {time})。您可以重试。",
    "Previous sync appears stale. You can retry.": "上次同步似乎已失效。您可以重试。",
    "Previous version": "上一个版本",
    "Previous-generation model. May be removed in a future update.": "上一代模型。未来更新中可能会移除。",
    "Price": "价格",
    "Price: {price}": "价格:{price}",
    "Prices and plans are subject to change at Anthropic's discretion.": "价格和套餐可能会由 Anthropic 自行决定进行调整。",
    "Prices shown do not include applicable tax. *<link>Usage limits apply.</link>": "所示价格不包含适用税费。*<link>适用用量限制。</link>",
    "Prices shown include applicable tax. *<link>Usage limits apply.</link>": "显示的价格包含适用的税费。*<link>使用限制适用。</link>",
    "Pricing": "定价",
    "Pricing couldn't be fetched. You can try again.": "无法获取价格信息。您可以重试。",
    "Pricing couldn't be loaded. You can try again.": "无法加载价格。您可以重试。",
    "Primary Owner Email Address": "主要所有者电子邮件地址",
    "Primary connection test passed, but {failedCount, plural, one {# read replica is} other {# read replicas are}} unreachable: {hostnames}": "主连接测试通过,但 {failedCount, plural, one {# 个读取副本} other {# 个读取副本}}无法访问:{hostnames}",
    "Primary contact": "主要联系人",
    "Primary owner": "主要所有者",
    "Primary ownership transferred": "主要所有权已转移",
    "Primary pane": "主窗格",
    "Prioritize a feature backlog": "优化功能积压的优先级",
    "Prioritize my backlog": "为我的待办事项排定优先级",
    "Prioritize my inbox": "优先处理我的收件箱",
    "Priority": "优先级",
    "Priority access at high traffic times": "高流量时段优先访问",
    "Priority processing during high-traffic periods": "在高流量期间优先处理",
    "Privacy": "隐私",
    "Privacy Center": "隐私中心",
    "Privacy Policy": "隐私政策",
    "Privacy choices": "隐私选择",
    "Privacy policy": "隐私政策",
    "Privacy settings": "隐私设置",
    "Private": "私有",
    "Private key (PEM format)": "私钥(PEM 格式)",
    "Private/confidential information": "私人/机密信息",
    "Pro": "Pro",
    "Pro annual": "Pro 年度版",
    "Pro monthly": "Pro 月付",
    "Pro plan": "Pro 方案",
    "Pro plan paused": "Pro 方案已暂停",
    "Pro plan unavailable": "Pro 方案不可用",
    "Pro trial ends today": "Pro 试用今天结束",
    "Pro {planType}": "Pro {planType}",
    "Pro-rata credit": "按比例退款额度",
    "Proactively fix CI failures and review comments. Claude may post comments on your behalf": "主动修复 CI 失败和评审评论。Claude 可能会代表您发表评论",
    "Proceed": "继续",
    "Processing image": "正在处理图像",
    "Processing payment...": "正在处理付款...",
    "Processing payment…": "正在处理付款…",
    "Processing purchase...": "正在处理购买...",
    "Processing...": "处理中...",
    "Product": "产品",
    "Product Review": "产品评论",
    "Product designer": "产品设计师",
    "Product management": "产品管理",
    "Productivity": "生产力",
    "Productivity Tools and Task Managers Created with Claude AI": "使用 Claude AI 创建的生产力工具和任务管理器",
    "Productivity gain × loaded comp": "生产力提升 × 全额薪酬",
    "Productivity lift": "生产力提升",
    "Productivity lift percentage": "生产力提升百分比",
    "Productivity tools": "生产力工具",
    "Products": "产品",
    "Products Used": "已使用的产品",
    "Profile": "个人资料",
    "Programming Tools and Developer Utilities Powered by Claude AI": "由 Claude AI 支持的编程工具和开发者实用程序",
    "Programming tools, API clients, and developer utilities": "编程工具、API 客户端和开发实用程序",
    "Progress": "进度",
    "Progress reset": "进度已重置",
    "Project": "项目",
    "Project (personal)": "项目 (个人)",
    "Project (shared)": "项目(共享)",
    "Project Name": "项目名称",
    "Project Settings": "项目设置",
    "Project access required": "需项目访问权限",
    "Project actions": "项目操作",
    "Project archived": "项目已归档",
    "Project archived.": "项目已归档。",
    "Project content": "项目内容",
    "Project dashboard generator": "项目仪表板生成器",
    "Project deleted": "项目已删除",
    "Project files": "项目文件",
    "Project instructions": "项目规则",
    "Project knowledge at capacity. Remove an existing file in order to add to knowledge": "项目知识库已满。请移除现有文件以添加新知识",
    "Project knowledge exceeds maximum. Remove files to continue.": "项目知识库超过上限。请移除文件以继续。",
    "Project knowledge is currently limited to Claude’s maximum context window size.": "项目知识库目前受限于 Claude 的最大上下文窗口大小。",
    "Project memory will show here after a few chats.": "几次对话后,项目内存将显示在此处。",
    "Project name": "项目名称",
    "Project name is required": "项目名称为必填项",
    "Project not found": "未找到项目",
    "Project settings": "项目设置",
    "Project unarchived.": "项目已取消归档。",
    "Project views": "项目视图",
    "Project, {name}": "项目,{name}",
    "Project: {name}": "项目:{name}",
    "Projected total": "预计总额",
    "Projects": "项目",
    "Projects created": "已创建项目",
    "Projects from Chat": "来自聊天的项目",
    "Projects give Claude shared context and instructions across related chats.": "项目会为 Claude 在相关聊天之间提供共享上下文和指令。",
    "Projects give Claude shared context.": "项目为 Claude 提供共享上下文。",
    "Projects help organize your work and leverage knowledge across multiple conversations. Upload docs, code, and files to create themed collections that Claude can reference again and again.": "项目帮助组织您的工作并利用跨多个对话的知识。上传文档、代码和文件以创建主题集合,Claude 可以反复参考。",
    "Projects keep tasks and context in one place—now with files on your desktop.": "项目将任务和上下文整合在一处——现在还可以包含您桌面上的文件。",
    "Projects will be deleted after {count, plural, one {# day} other {# days}} of inactivity": "项目将在处于非活跃状态 {count, plural, one {# 天} other {# 天}}后被删除",
    "Projects will be deleted after {count, plural, one {# month} other {# months}} of inactivity": "项目将在处于非活跃状态 {count, plural, one {# 个月} other {# 个月}}后被删除",
    "Projects will be stored indefinitely without automatic deletion": "项目将永久存储,不会自动删除",
    "Projects you create will show up here.": "你创建的项目将显示在这里。",
    "Promo ends in {daysUntil, plural, one {# day} other {# days}}. Charges begin {chargeDate} unless plan is cancelled. <link>Manage billing</link>": "促销活动将在 {daysUntil, plural, one {# 天} other {# 天}} 后结束。除非取消方案,否则将于 {chargeDate} 开始计费。<link>管理账单</link>",
    "Promo ends in {daysUntil, plural, one {# day} other {# days}}. Charges begin {chargeDate}. <link>Manage billing</link>": "促销将在 {daysUntil, plural, one {# 天} other {# 天}}后结束。计费从 {chargeDate} 开始。<link>管理账单</link>",
    "Prompt": "提示词 (Prompt)",
    "Prompt (click to expand)": "提示词(点击展开)",
    "Prompt categories": "提示词分类",
    "Prompt each time an unlisted command runs.": "每次运行未列出的命令时都提示。",
    "Prompt submit": "提示词已提交",
    "Prompts": "提示词 (Prompts)",
    "Proposed plan": "建议的计划",
    "Proposing plan": "提议计划",
    "Prorated charges and credit": "按比例分摊的费用与抵扣额",
    "Prorated credit": "按比例计算的额度/积分",
    "Prorated credit for the remainder of Max plan": "Max 方案剩余时长的按比例退款额度",
    "Prorated credit for the remainder of Pro plan": "Pro 方案剩余时长的按比例退款额度",
    "Proration": "按比例分配",
    "Prototype a feature before you write the spec.": "在编写规范之前先为功能制作原型。",
    "Prototype a model": "制作模型原型",
    "Prototype a user interface": "原型化用户界面",
    "Prototype flows so your partners have something real to react to.": "对流程进行原型设计,让您的伙伴有真实的反馈对象。",
    "Prototype the onboarding flow from the PRD": "根据 PRD 制作入职流程原型",
    "Provide": "提供",
    "Provide Claude with relevant instructions and information for chats within {projectName}.": "在 {projectName} 内部,为 Claude 的聊天提供相关的指令和信息。",
    "Provide a model ID, e.g. /model claude-sonnet-4-5": "提供模型 ID,例如 /model claude-sonnet-4-5",
    "Provide a way for Anthropic reviewers to connect to and test your server.": "请提供一种方式,让 Anthropic 审核人员可以连接并测试你的服务器。",
    "Provide evidence-based insights for my topic": "为我的课题提供基于证据的见解",
    "Provide feedback on your experience with the suggestions": "提供您对这些建议的体验反馈",
    "Provide your Outline API key": "提供您的 Outline API 密钥",
    "Provided by the <link>{pluginName}</link> plugin": "由 <link>{pluginName}</link> 插件提供",
    "Provision with SCIM and role-based access": "使用 SCIM 和基于角色的访问进行配置",
    "Provisioned Users": "已配置的用户",
    "Provisioning mode": "配置模式",
    "Pts": "分",
    "Public": "公开",
    "Public URLs that wake Conway when external services call them.": "当外部服务调用它们时唤醒 Conway 的公共 URL。",
    "Public documentation for the connector is available and up to date.": "该连接器的公开文档可用且为最新。",
    "Public projects": "公开项目",
    "Public projects are disabled by your organization": "公开项目功能已被您的组织禁用",
    "Public projects disabled": "公开项目已禁用",
    "Public projects enabled": "公开项目已启用",
    "Publish": "发布/上线",
    "Publish & copy link": "发布并复制链接",
    "Publish anyway": "仍然发布",
    "Publish artifact": "发布产物",
    "Publish to the web": "发布到 Web",
    "Publish to web": "发布至网页",
    "Published": "已发布",
    "Published (Public)": "已发布(公开)",
    "Publishing": "发布中",
    "Publishing this Artifact will make it accessible to anyone on the internet and potentially visible in search engine results. Your chat will remain private.": "发布此构件后,互联网上的任何人都能访问它,且它可能会出现在搜索引擎结果中。您的聊天内容将保持私密。",
    "Pull data into a spreadsheet": "将数据拉取到电子表格中",
    "Pull design feedback and tag recurring themes": "收集设计反馈并标记重复出现的主题",
    "Pull out important points from my latest work emails": "从我最近的工作邮件中提取重点",
    "Pull out key points": "提炼关键点",
    "Pull plugin changes whenever a commit lands on the default branch. You can change this later.": "每当提交进入默认分支时拉取插件更改。您稍后可以更改此设置。",
    "Pull request": "拉取请求 (Pull request)",
    "Pull request approved": "拉取请求已批准",
    "Pull request closed": "拉取请求已关闭",
    "Pull request creation is not available. You can try updating the desktop app.": "无法创建 Pull Request。您可以尝试更新桌面应用。",
    "Pull request merged": "拉取请求已合并",
    "Pull request open": "拉取请求已打开",
    "Pull request review": "拉取请求评审",
    "Pull request review comment": "拉取请求评审评论",
    "Pull request was created but the response was incomplete. You can try again.": "拉取请求已创建,但响应不完整。您可以重试。",
    "Pull requests": "拉取请求 (PR)",
    "Pull weekly metrics and flag anything strange": "提取每周指标并标记任何异常情况",
    "Pulling out key points": "提取重点",
    "Purchase": "购买",
    "Purchase seats to approve requests": "购买席位以批准申请",
    "Purchase seats to invite members": "购买席位以邀请成员",
    "Purchase successful": "购买成功",
    "Purchase summary": "购买摘要",
    "Purple": "紫色",
    "Push": "推送 (Push)",
    "Push notifications disabled": "已禁用推送通知",
    "Push notifications enabled": "推送通知已开启",
    "Pushed": "已推送",
    "Pushing": "推送中",
    "Pushing branch": "正在推送分支",
    "Put Claude to work on tasks while you step away. <link>Cowork</link> is now available on Pro as a research preview.": "当你离开时,让 Claude 处理任务。<link>Cowork</link> 现在在 Pro 版中作为研究预览版提供。",
    "Put Claude to work on tasks while you step away. <link>Cowork</link> is now available on Pro.": "当你离开时,让 Claude 继续处理任务。<link>Cowork</link> 现已在 Pro 方案中提供。",
    "PyLingo": "PyLingo",
    "Python": "Python",
    "Q: {questionText}\nA: Ranked: {ranking}": "问:{questionText}\n答:排名:{ranking}",
    "Q: {questionText}\nA: {selection}": "问:{questionText}\n答:{selection}",
    "Q: {questionText} (Select all that apply)\nA: {selection}": "问:{questionText}(多选)\n答:{selection}",
    "Q: {question}\nA: {option}": "问:{question}\n答:{option}",
    "QR code generator": "二维码生成器",
    "QTD": "季度至今",
    "Quarantined": "已隔离",
    "Quarantined: {reason}": "已隔离:{reason}",
    "Quarterly Reports": "季度报告",
    "Query": "查询",
    "Query and analyze information about customers, sales calls, and project plans": "查询并分析有关客户、销售电话和项目计划的信息",
    "Query ran. No rows returned.": "查询已运行。未返回任何行。",
    "Query returned fewer than two columns. A chart requires both an X and Y axis.": "查询返回的内容少于两列。图表需要 X 轴和 Y 轴。",
    "Query your database": "查询您的数据库",
    "Question {current} of {total}": "第 {current} 题,共 {total} 题",
    "Questions? Reach out to <a>{email}</a>": "有问题?请联系 <a>{email}</a>",
    "Questions? Reach out to <a>{email}</a>.": "有问题?请联系 <a>{email}</a>。",
    "Queue": "队列",
    "Queue message": "队列消息",
    "Queued to merge": "已排队等待合并",
    "Queued. Claude will read this after the current turn.": "已排队。Claude 将在当前轮次后读取此内容。",
    "Quick": "快速",
    "Quick Entry keyboard shortcut": "快速录入 (Quick Entry) 键盘快捷键",
    "Quick access shortcut": "快速访问快捷方式",
    "Quick actions": "快速操作",
    "Quick chat": "快速聊天",
    "Quick chat or search": "快速聊天或搜索",
    "Quick entry settings": "快速录入设置",
    "Quick identity check": "快速身份核查",
    "Quick toggles": "快速切换",
    "Quick web setup": "快速网页设置",
    "Quick web setup disabled": "快速 Web 设置已禁用",
    "Quick web setup enabled": "快速 Web 设置已启用",
    "Quickly chat to Claude in a few taps": "只需轻点几下即可与 Claude 快速聊天",
    "Quickly open Claude from anywhere": "随时随地快速打开 Claude",
    "Quickstart": "快速入门",
    "Quiz complete": "测试完成",
    "Quiz me on a topic": "就某个话题对我进行测试",
    "Quiz me on design principles and theory": "考考我关于设计原则和理论的知识",
    "Quiz me on how to give good design feedback in a crit": "测验我如何在评审会上给出好的设计反馈",
    "Quiz me on my business skills": "考考我关于商业技巧的知识",
    "Quiz me on my notes": "根据我的笔记考我",
    "Quiz me on python code": "用 python 代码测试我",
    "Quiz or survey": "测验或调查",
    "RAG index": "RAG 索引",
    "ROI": "投资回报率 (ROI)",
    "RUM not initialized (gate off, consent not granted, or still loading)": "RUM 未初始化(开关关闭、未授权或仍在加载中)",
    "Radar · {summary}": "雷达 · {summary}",
    "Raise the limit in Settings → Usage": "在“设置 → 使用量”中提高上限",
    "Ran": "已运行",
    "Ran a command": "运行了一条命令",
    "Ran a hook on session {source}": "在会话 {source} 上运行了一个钩子 (Hook)",
    "Ran agent": "已运行代理",
    "Ran an agent": "运行了一个智能体",
    "Ran resume hooks": "运行了恢复钩子",
    "Ran scheduled task": "已运行计划任务",
    "Ran setup script": "运行了设置脚本",
    "Ran skill": "已运行技能",
    "Ran startup hooks": "运行了启动钩子",
    "Ran terminal": "已运行终端",
    "Ran {count} agents": "运行了 {count} 个智能体",
    "Ran {count} commands": "运行了 {count} 条命令",
    "Randomize avatar": "随机化头像",
    "Randomize your team’s speaking order for standups and meetings": "为站会和会议随机分配团队的发言顺序",
    "Rank enzyme variants with PLMs": "使用 PLM 对酶变体进行排序",
    "Ranked by 30-day active users": "按 30 天活跃用户数排序",
    "Rate chats": "评价聊天",
    "Rate limit override cleared for 30 days": "频率限制覆盖已在 30 天内清除",
    "Rate limited — try again in a moment.": "已触发限流,请稍后重试。",
    "Rate limits set to {label}": "频率限制已设定为 {label}",
    "Rating scale": "评分量表",
    "Raw Note Transformer": "原始笔记转换器",
    "Re-enable access key": "重新启用访问密钥",
    "Re-review": "重新审查",
    "Re-scan <b>{owner}/{repo}</b> automatically. Idle branches are skipped, runs are spread across the day.": "自动重新扫描 <b>{owner}/{repo}</b>。空闲分支会被跳过,运行任务会分散到全天进行。",
    "Re-scan this project automatically each day or week.": "每天或每周自动重新扫描此项目。",
    "Re-sync": "重新同步",
    "Reachable": "可访问",
    "Reached maximum number of turns": "已达到最大轮次数",
    "React": "React",
    "Reactivate the LTI integration for all users in your organization": "为您组织中的所有用户重新启用 LTI 集成",
    "Read": "读取",
    "Read SCIM user and group information": "读取 SCIM 用户和组信息",
    "Read a file": "读取文件",
    "Read a memory": "读取一条记忆",
    "Read console messages": "读取控制台信息",
    "Read health data": "读取健康数据",
    "Read in docs": "在文档中阅读",
    "Read meeting transcripts": "查看会议摘要",
    "Read memory": "读取记忆",
    "Read my eval metrics": "读取我的评估指标",
    "Read network requests": "读取网络请求",
    "Read our <securityLink>security guide</securityLink> for details.": "详情请阅读我们的<securityLink>安全指南</securityLink>。",
    "Read our <securityLink>security guide</securityLink> for more information.": "阅读我们的 <securityLink>安全指南</securityLink> 了解更多信息。",
    "Read page": "阅读页面",
    "Read project content and chat with it": "读取项目内容并与之对话",
    "Read replica hostname {index}": "读取副本主机名 {index}",
    "Read replicas (optional)": "读取副本(可选)",
    "Read the <link>documentation</link>": "阅读<link>文档</link>",
    "Read the blog post": "阅读博客文章",
    "Read the documentation": "阅读文档",
    "Read your clipboard": "读取剪贴板",
    "Read your conversations": "读取您的对话",
    "Read your installed plugins": "读取你已安装的插件",
    "Read {count} files": "读取 {count} 个文件",
    "Read {count} memories": "读取 {count} 条记忆",
    "Read {fileName}": "读取 {fileName}",
    "Read {lineCount, plural, one {# line} other {# lines}}": "读取 {lineCount, plural, one {# 行} other {# 行}}",
    "Read, write, and fix code directly in your codebase.": "直接在您的代码库中读取、编写和修复代码。",
    "Read-only": "只读",
    "Read-only to the app. Nothing here is written by Apply or Export.": "对此应用只读。这里的内容不会被 Apply 或 Export 写入。",
    "Read-only tools": "只读工具",
    "Read/write capabilities": "读写能力",
    "Reading": "读取中",
    "Reading file...": "正在读取文件...",
    "Reading meeting transcripts": "读取会议记录",
    "Reading memory": "正在读取记忆",
    "Reading memory...": "正在读取记忆…",
    "Reading or writing the session folder failed. Check disk space and permissions, then try again.": "读取或写入会话文件夹失败。请检查磁盘空间和权限后重试。",
    "Reading {fileName}": "正在读取 {fileName}",
    "Reading {fileName}...": "正在读取 {fileName}...",
    "Ready": "就绪",
    "Ready for review": "准备好评审",
    "Ready for you": "为您准备就绪",
    "Ready for your first chat?": "准备好第一次聊天了吗?",
    "Ready to chat? Start typing here...": "准备好聊天了吗?在这里开始输入...",
    "Ready to check out": "准备结账",
    "Ready to end the interview?": "准备好结束访谈了吗?",
    "Ready to merge": "整装待发/准备好合并",
    "Ready to roam Chrome?": "准备好在 Chrome 中漫游了吗?",
    "Ready to write, research, code, and think things through together?": "准备好一起写作、研究、编码和思考了吗?",
    "Reason": "原因",
    "Reassign seat to {tier}?": "重新分配席位到 {tier}?",
    "Rebased onto": "已变基到",
    "Rebasing onto": "正在变基到",
    "Receive a POST request for each new finding opened on this project.": "每当此项目中出现新的发现项时接收一个 POST 请求。",
    "Receive a POST request when a scan run finishes for this project.": "当此项目的扫描运行完成时接收一个 POST 请求。",
    "Recent": "最近",
    "Recent activity": "近期活动",
    "Recent error and warning log lines": "最近的错误和警告日志行",
    "Recent users": "最近的用户",
    "Recently Used": "最近使用",
    "Recently updated": "最近更新",
    "Recents": "最近的",
    "Recheck": "重新检查",
    "Recheck connection": "重新检查连接",
    "Recipes": "配方",
    "Recipient's email": "接收者邮箱",
    "Recipient's name": "收件人姓名",
    "Recipients can receive up to 12 months of a gifted plan. If they've already been gifted months, they may not be able to redeem the full amount. <link>Learn more</link>.": "接收者最多可获得 12 个月的礼品方案。如果他们已经获赠过月数,可能无法兑换全额。<link>了解更多</link>。",
    "Reclaim your inbox and your time": "找回您的收件箱和时间",
    "Recommendation": "建议",
    "Recommendations": "建议",
    "Recommended": "推荐",
    "Recommended Tools:": "推荐工具:",
    "Recommended apps and extensions": "推荐的应用和扩展程序",
    "Recommended fix": "建议的修复",
    "Recommended for Claude Code & Cowork": "推荐用于 Claude Code 和 Cowork",
    "Recommended for you": "为您推荐",
    "Reconnect": "重新连接",
    "Reconnect GitHub": "重新连接 GitHub",
    "Reconnect to your environment": "重新连接到您的环境",
    "Reconnect with {sourceName}": "重新连接 {sourceName}",
    "Reconnect your GitHub account to set up GitHub-triggered routines.": "重新连接你的 GitHub 账号以设置由 GitHub 触发的例程。",
    "Reconnected to your environment": "已重新连接到您的环境",
    "Reconnecting": "重新连接中",
    "Reconnecting from this device won't help until your IT administrator updates the policy.": "在您的 IT 管理员更新政策之前,从此设备重新连接将无济于事。",
    "Reconnecting to your environment": "正在重新连接到您的环境",
    "Reconnecting...": "正在重连...",
    "Rectangle": "矩形",
    "Recurring charges": "定期/循环扣费",
    "Recurring loop": "循环例程",
    "Red": "红色",
    "Reddit": "Reddit",
    "Redeem discount and keep subscription": "兑换折扣并保留订阅",
    "Redeem now": "立即兑换",
    "Redeem your {partnerName} Team plan offer": "兑换你的 {partnerName} Team 计划优惠",
    "Redeemed": "已兑换",
    "Redeeming...": "正在兑换...",
    "Redeploy to Orbit": "重新部署到 Orbit",
    "Redirecting to Claude Code installation guide...": "正在重定向到Claude Code安装指南...",
    "Redirecting to auth...": "正在重定向到身份验证...",
    "Redirecting to desktop app…": "正在重定向到桌面应用…",
    "Reducing seats or moving them to a lower tier isn't supported on this plan.": "此套餐不支持减少席位或将其降至更低层级。",
    "Reducing seats or moving them to a lower tier isn't supported on this plan. Contact your account team to adjust your allocation.": "此套餐不支持减少席位或将其降至更低层级。请联系你的客户团队调整分配。",
    "Reductions and tier downgrades take effect at renewal. You're only charged today for net new seats — added seats that replace ones you're removing activate at renewal too.": "减少席位和降级套餐将在续费时生效。你今天只会为净新增席位付费;用于替换你将移除席位的新增席位,也会在续费时激活。",
    "Reductions take effect at the end of the billing period.": "减少项将在计费周期结束时生效。",
    "Refactor this function": "重构此函数",
    "Refer to the product as \"Acme Platform,\" not \"the tool\" or \"the app\"": "请将该产品称为“Acme Platform”,而不是“the tool”或“the app”",
    "Reference": "引用/参考文献",
    "Reference ID": "参考 ID",
    "Reference materials": "参考材料",
    "Referencing past chats...": "正在引用过去的聊天...",
    "Refine": "优化",
    "Refine some copy": "润色文案",
    "Refine...": "优化...",
    "Reflect on my calendar as if I was 100 years old looking back at this time": "假如我已 100 岁,回顾现在的这段时光,反思我的日历内容",
    "Reflecting on personal experiences with AI can bring up complex feelings. For local support: <helplineLink>claude.findahelpline.com/i/claude</helplineLink>": "反思个人使用 AI 的经历可能会引发复杂的情绪。如需本地支持:<helplineLink>claude.findahelpline.com/i/claude</helplineLink>",
    "Reflecting...": "反思中...",
    "Refresh": "刷新",
    "Refresh browser list": "刷新浏览器列表",
    "Refresh clients": "刷新客户端",
    "Refresh preview": "刷新预览",
    "Refresh report": "刷新报告",
    "Refresh tools list": "刷新工具列表",
    "Refresh usage limits": "刷新用量限额",
    "Refresh verification status": "刷新验证状态",
    "Refreshing": "正在刷新",
    "Refund details couldn't be loaded. Close and try again, or <a>contact support</a> if this persists.": "无法加载退款详情。请关闭后重试,如果问题仍然存在,请<a>联系支持人员</a>。",
    "Refund details couldn’t be loaded. Close and try again, or <a>contact support</a> if this persists.": "无法加载退款详细信息。关闭并重试,或者如果问题仍然存在,请<a>联系支持</a>。",
    "Refund of {amount} (plus {creditsAmount} for unused extra usage) processed. Expect it in 3–10 business days.": "{amount}(加上未使用的额外使用量的 {creditsAmount})的退款已处理。预计 3-10 个工作日内到账。",
    "Refund of {amount} processed. Expect it in 3–10 business days.": "{amount} 的退款已处理。预计 3-10 个工作日内到账。",
    "Refund of {creditsAmount} for unused extra usage processed. Expect it in 3–10 business days.": "已处理 {creditsAmount} 未使用额度的退款。预计在 3–10 个工作日内到账。",
    "Refund processed. Expect it in 3–10 business days.": "退款已处理。预计 3-10 个工作日内到账。",
    "Refund unavailable": "无法退款",
    "Refuted": "已驳回",
    "Regenerate": "重新生成",
    "Regenerate for a new look": "重新生成以获得新外观",
    "Regenerate invite link": "重新生成邀请链接",
    "Regenerated {when}": "重新生成于 {when}",
    "Regenerating invalidates the previous token. Delete to deactivate API access.": "重新生成会使之前的令牌失效。删除可停用 API 访问。",
    "Regional compliance": "区域合规性",
    "Registered your LTI app in Canvas Admin > Developer Keys": "已在 Canvas 管理员 > 开发者密钥中注册您的 LTI 应用",
    "Registration Failed": "注册失败",
    "Reimagine a piece of my writing as an edge-of-your-seat thriller": "将我的一段写作重新想象为一部扣人心弦的惊悚小说",
    "Reimagine my business as if it were founded 100 years in the future": "重新想象我的业务,假设它是 100 年后才成立的",
    "Reimagine this everyday object for a radically different culture": "为一种截然不同的文化重新构想这种日常物品",
    "Reinstall": "重新安装",
    "Reinstall app": "重新安装应用",
    "Reinstall required": "需要重新安装",
    "Reinstall the desktop app to access {featureName} and start handing off longer tasks.": "重新安装桌面应用以访问 {featureName} 并开始交托较长的任务。",
    "Reject": "拒绝",
    "Reject All Cookies": "拒绝所有 Cookie",
    "Reject known-compromised passwords using the HaveIBeenPwned Pwned Passwords API.": "利用 HaveIBeenPwned Pwned Passwords API 拦截已知泄露的密码。",
    "Rejected": "已拒绝",
    "Relaunch": "重新启动",
    "Relaunch Claude?": "重新启动 Claude?",
    "Relaunch now": "立即重启",
    "Relaunch to apply": "重新启动以应用",
    "Relaunch to update": "重新启动以更新",
    "Relaunching": "正在重新启动",
    "Relaunching in {n}": "将在 {n} 后重新启动",
    "Relaxation and Mindfulness Experiences Created with Claude": "使用 Claude 创建的放松和正念体验",
    "Relaxation apps, calming experiences, and mindfulness tools": "放松应用、平静体验和正念工具",
    "Release": "发布",
    "Release published": "版本已发布",
    "Release published, created, edited, or deleted": "发布(Release)已发布、创建、编辑或删除",
    "Release runner": "释放运行器",
    "Release runner?": "释放执行器?",
    "Release to install": "发布以安装",
    "Reload": "重新加载",
    "Reload amount must be at least $15.00": "充值金额必须至少为 $15.00",
    "Reload amount must be at least {minDifference} more than the threshold": "自动充值金额必须至少比余额阈值高出 {minDifference}",
    "Reload amount must be at least {min}": "充值金额必须至少为 {min}",
    "Reload balance to:": "余额充值至:",
    "Remaining balance": "剩余余额",
    "Remember information across conversations, starting from this one.": "从这次对话开始,在多次对话之间记住信息。",
    "Remember my choice for this artifact": "记住我对这个工件的选择",
    "Remember my choice for this session": "在本会话中记住我的选择",
    "Remember this choice for this project": "记住此项目的选择",
    "Remember to keep your computer awake so Claude can keep working. <learnMoreLink>Learn more</learnMoreLink>": "请记得保持您的电脑处于唤醒状态,以便 Claude 能持续工作。<learnMoreLink>了解更多</learnMoreLink>",
    "Remember, Claude reads this before every response. The shorter, the better!": "请记住,Claude 会在每次回复前阅读这段内容。越短越好!",
    "Remixing": "重新混搭",
    "Remixing isn't enabled for your account yet.": "你的账户尚未启用 Remix。",
    "Remote": "远程",
    "Remote Control": "远程控制",
    "Remote Control disconnected": "远程控制已断开",
    "Remote Control is offline. You can start it by running claude remote-control.": "远程控制已离线。您可以通过运行 claude remote-control 来启动它。",
    "Remote Control offline": "远程控制离线",
    "Remote MCP server URL": "远程 MCP 服务器 URL",
    "Remote control": "远程管理",
    "Remote scheduled tasks couldn't be loaded.": "无法加载远程计划任务。",
    "Remote screen": "远程屏幕",
    "Remove": "移除",
    "Remove \"{name}\" from your artifacts? The HTML file will remain in your Documents/Claude/Artifacts folder.": "从您的工件中删除\"{name}\"?HTML 文件将保留在您的 Documents/Claude/Artifacts 文件夹中。",
    "Remove \"{name}\" from your live artifacts? The HTML file will remain in your Documents/Claude/Artifacts folder.": "要从你的实时工件中移除“{name}”吗?HTML 文件仍将保留在你的 Documents/Claude/Artifacts 文件夹中。",
    "Remove access": "移除访问权限",
    "Remove an existing file in order to add to knowledge": "移除一个现有文件以添加至知识库",
    "Remove any you don't want the agent to access.": "删除您不希望代理访问的任何内容。",
    "Remove approval": "移除审批",
    "Remove artifact": "移除工件",
    "Remove artifact?": "移除工件?",
    "Remove attachment": "移除附件",
    "Remove chat project {name}": "移除聊天项目 {name}",
    "Remove comment": "移除评论",
    "Remove condition": "移除条件",
    "Remove custom limit for {name}?": "移除 {name} 的自定义限制?",
    "Remove custom limits for {count} members?": "移除 {count} 名成员的自定义限额?",
    "Remove default": "移除默认",
    "Remove domain": "移除域名",
    "Remove domain verification": "移除域名验证",
    "Remove domain {index}": "移除域名 {index}",
    "Remove edit": "移除编辑",
    "Remove element context": "移除元素上下文",
    "Remove email": "移除电子邮件",
    "Remove emails with errors to continue": "移除有错误的邮箱以继续",
    "Remove entry": "移除条目",
    "Remove file": "移除文件",
    "Remove folder": "移除文件夹",
    "Remove folder {name}": "移除文件夹 {name}",
    "Remove from allowlist": "从允许列表中移除",
    "Remove from deny list": "从拒绝列表中移除",
    "Remove from global blocklist": "从全局阻止列表中移除",
    "Remove from project": "从项目中移除",
    "Remove from team": "从团队中移除",
    "Remove from your team": "从您的团队中移除",
    "Remove from your team (manage from the Plugins page)": "从你的团队中移除(可在插件页面管理)",
    "Remove header": "移除标头",
    "Remove image": "移除图片",
    "Remove invited member": "移除受邀成员",
    "Remove issue": "移除问题",
    "Remove limit": "移除限制",
    "Remove link": "移除链接",
    "Remove link {url}": "移除链接 {url}",
    "Remove marketplace?": "移除市场?",
    "Remove member": "移除成员",
    "Remove path": "移除路径",
    "Remove queued message": "移除排队中的消息",
    "Remove reaction": "移除反应",
    "Remove replica {index}": "移除副本 {index}",
    "Remove repository": "移除仓库",
    "Remove repository?": "移除仓库?",
    "Remove review comment for {document}": "移除 {document} 的审查评论",
    "Remove review comment for {document} line {line}": "移除 {document} 第 {line} 行的审查评论",
    "Remove review comment for {filePath} line {line}": "移除 {filePath} 第 {line} 行的审查评论",
    "Remove review comment on \"{snippet}\" in {document}": "删除 {document} 中关于“{snippet}”的审阅评论",
    "Remove role mapping {rowIndex}": "移除角色映射 {rowIndex}",
    "Remove seat tier mapping {rowIndex}": "移除席位层级映射 {rowIndex}",
    "Remove secret {index}": "移除密钥 {index}",
    "Remove some files to stay within size limits": "移除部分文件以保持在大小限制内",
    "Remove terminal selection": "移除终端选区",
    "Remove the highlighted addresses to continue.": "删除高亮显示的地址后继续。",
    "Remove this row": "移除此行",
    "Remove trigger": "移除触发器",
    "Remove value": "移除值",
    "Remove webhook": "移除 webhook",
    "Remove yourself": "移除自己",
    "Remove {connector}": "移除 {connector}",
    "Remove {count, plural, one {# invalid} other {# invalid}}": "移除 {count, plural, one {# 个无效项} other {# 个无效项}}",
    "Remove {count, plural, one {limit} other {limits}}": "移除 {count, plural, one {限制} other {限制}}",
    "Remove {count} limits": "移除 {count} 项限制",
    "Remove {email}": "移除 {email}",
    "Remove {endpoint}": "移除 {endpoint}",
    "Remove {group}": "移除 {group}",
    "Remove {host}": "移除 {host}",
    "Remove {item}": "移除 {item}",
    "Remove {label}": "移除 {label}",
    "Remove {memberName}": "移除 {memberName}",
    "Remove {name}": "移除 {name}",
    "Remove {overage, plural, one {# address} other {# addresses}} to continue. Need more capacity? <link>Contact sales</link>": "请移除 {overage, plural, one {# 个地址} other {# 个地址}} 以继续。需要更多容量?<link>联系销售</link>",
    "Remove {pattern}": "移除 {pattern}",
    "Remove {plugin}": "移除 {plugin}",
    "Remove {range}": "移除 {range}",
    "Remove {repoName}": "移除 {repoName}",
    "Remove {repo}": "移除 {repo}",
    "Remove {serverName} for your team?": "为您的团队移除 {serverName} 吗?",
    "Remove {serverName}?": "移除 {serverName} 吗?",
    "Remove {value}": "移除 {value}",
    "Removes branch push restrictions. Claude will be able to push to any branch, not just claude/* branches.": "移除分支推送限制。Claude 将能够推送到任何分支,而不仅仅是 claude/* 分支。",
    "Removing this plugin will delete all of its commands and skills. You can reinstall it from the marketplace later.": "移除此插件将删除其所有命令和技能。您以后可以从市场重新安装。",
    "Removing...": "删除中...",
    "Rename": "重命名",
    "Rename chat": "重命名聊天",
    "Rename configuration": "重命名配置",
    "Rename failed. You can try again.": "重命名失败。您可以重试。",
    "Rename group": "重命名群组",
    "Rename plugin": "重命名插件",
    "Rename project": "重命名项目",
    "Rename session": "重命名会话",
    "Rename skill": "重命名技能",
    "Rename style": "重命名样式",
    "Rename terminal": "重命名终端",
    "Renamed to {pluginName}": "已重命名为 {pluginName}",
    "Renamed to {skillName}": "已重命名为 {skillName}",
    "Rename…": "重命名…",
    "Rendering diagram...": "正在渲染图表...",
    "Renew Team Plan Subscription": "续订 Team 方案订阅",
    "Renew as annual": "按年续订",
    "Renew as monthly": "续订为月缴费模式",
    "Renew current Max plan": "续订当前的 Max 方案",
    "Renew subscription": "续订订阅",
    "Renew your plan to restore access.": "续订您的方案以恢复访问权限。",
    "Repeatable, customizable instructions that Claude can follow in any chat. <a>Learn more</a>.": "Claude 在任何聊天中都可以遵循的可重复、可定制的指令。<a>了解更多</a>。",
    "Repeated failure": "重复失败",
    "Repeats": "重复次数",
    "Replace": "替换",
    "Replace current text?": "替换当前文本?",
    "Replace existing plugin?": "替换现有插件?",
    "Replace {skillName}": "替换 {skillName}",
    "Replace “{skillName}” skill?": "替换 “{skillName}” 技能?",
    "Replaced {skillName}": "已替换 {skillName}",
    "Reply": "回复",
    "Reply at any time, even when Claude is working": "无论 Claude 是否正在工作,您都可以随时回复",
    "Reply in thread...": "在回复盖楼中回复...",
    "Reply to Claude": "回复 Claude",
    "Reply to Claude…": "回复 Claude…",
    "Reply...": "回复...",
    "Reply…": "回复…",
    "Repo missing?": "仓库缺失?",
    "Repo missing? <link>Install the Claude GitHub app</link> in a private repository to access it here.": "找不到仓库?<link>安装 Claude GitHub 应用</link> 在私有仓库中以便在此处访问。",
    "Repo missing? Install the Claude GitHub app in a private repository to access it here.": "仓库缺失?请在私有仓库中安装 Claude GitHub 应用以在此处访问。",
    "Report": "报告",
    "Report Artifact": "报告 Artifact",
    "Report a URL": "举报 URL",
    "Report chat": "举报聊天",
    "Report content": "举报内容",
    "Report exported": "报告已导出",
    "Report issue": "报告问题",
    "Report issues immediately": "立即报告问题",
    "Report project": "举报项目",
    "Report sent to Anthropic": "报告已发送给 Anthropic",
    "Report session": "报告会话",
    "Report this shared session": "举报此共享会话",
    "Repositories": "代码仓库",
    "Repository": "仓库",
    "Repository Name": "代码仓库名称",
    "Repository access failed. The repository may have been made private or is no longer accessible.": "访问仓库失败。仓库可能已设为私有或不再可访问。",
    "Repository actions": "仓库操作",
    "Repository archive exceeds the maximum allowed size.": "代码仓库存档超过允许的最大大小。",
    "Repository breakdown": "代码仓库细分",
    "Repository couldn't be found. Check the name and your GitHub App access.": "找不到代码仓库。请检查名称及您的 GitHub App 访问权限。",
    "Repository data could not be loaded.": "无法加载代码仓库数据。",
    "Repository dispatch": "存储库分派 (Repository dispatch)",
    "Repository is empty (no commits on the default branch).": "仓库为空(默认分支上没有提交)。",
    "Repository not accessible. If it's private, the Claude GitHub App needs access to this repository.": "存储库不可访问。如果是私有库,Claude GitHub App 需要获得此存储库的访问权限。",
    "Repository not found or not accessible.": "未找到仓库或无法访问。",
    "Repository not found. If it's private, GitHub access is required.": "未找到存储库。如果是私有库,则需要 GitHub 访问权限。",
    "Repository not found. If it's private, GitHub access is required. <link>Connect GitHub</link>": "找不到仓库。如果是私有仓库,则需要 GitHub 访问权限。<link>连接 GitHub</link>",
    "Reproduction steps": "复现步骤",
    "Request": "请求/申请",
    "Request a raise or promotion": "要求加薪或升职",
    "Request access in outline": "申请大纲访问权限",
    "Request denied": "请求已拒绝",
    "Request extra usage": "申请额外用量",
    "Request more": "申请更多",
    "Request seat": "申请席位",
    "Request sent": "请求已发送",
    "Request sent to admin": "申请已发送给管理员",
    "Request to join": "请求加入",
    "Request upgrade": "请求升级",
    "Request was blocked — check your permissions and retry.": "请求已被拦截——请检查你的权限后重试。",
    "Request {count, plural, one {# change} other {# changes}}": "请求 {count, plural, one {# 项修改} other {# 项修改}}",
    "Requested": "已请求",
    "Requested by your team": "由你的团队请求",
    "Requesting access...": "正在申请访问权限...",
    "Requests are signed with the proxy's own AWS service identity (web-identity federation). No secret material is stored.": "请求使用代理自身的 AWS 服务身份(web-identity federation)进行签名。不存储任何密钥材料。",
    "Requests for {connectorName} dismissed": "已忽略 {connectorName} 的请求",
    "Requests that this rule allowed will fall through to lower-priority rules or be denied by default. This action cannot be undone.": "被此规则允许的请求将继续匹配更低优先级的规则,或默认被拒绝。此操作无法撤销。",
    "Require SSO for Claude": "要求使用 SSO 登录 Claude",
    "Require SSO for Console": "Console 需要 SSO",
    "Require a verified source": "需要经验证的源",
    "Require admin approval": "需要管理员批准",
    "Require confirmation on both the old and new email address when changing email. If disabled, only the new address confirms.": "更改邮箱时要求旧邮箱和新邮箱同时确认。如果禁用,只需新邮箱确认。",
    "Require re-authentication for password change": "更改密码需要重新验证身份",
    "Require repository access": "需要代码仓库访问权限",
    "Require users to re-authenticate after a set period. This adds security by limiting how long sessions remain valid.": "要求用户在设定的一段时间后重新进行身份验证。这通过限制会话的有效时长来增加安全性。",
    "Required": "必填",
    "Required for mouse and keyboard control.": "鼠标和键盘控制所需。",
    "Required for screen visibility. macOS may ask you to restart.": "屏幕可见性所需。macOS 可能会要求您重新启动。",
    "Requirements": "需求",
    "Requires Code execution and file creation": "需要代码执行和文件创建权限",
    "Requires Skills": "需要技能",
    "Requires an org UUID": "需要组织 UUID",
    "Requires at least one verified domain": "至少需要一个已验证域名",
    "Requires at least one verified domain.": "至少需要一个已验证的域名。",
    "Requires at least one verified domain. ": "需要至少一个经认证的域名。",
    "Requires owner approval": "需要所有者批准",
    "Requires the Claude GitHub App. Install it on your repositories to enable this.": "需要 Claude GitHub App。将其安装在您的仓库上以启用此功能。",
    "Requires {parent}": "需要 {parent}",
    "Rerun scan": "重新运行扫描",
    "Research": "研究",
    "Research & analysis": "研究与分析",
    "Research Labs": "Research Labs",
    "Research Labs Premium": "Research Labs Premium",
    "Research Labs Premium seat": "Research Labs Premium 席位",
    "Research Labs Premium seats": "Research Labs Premium 席位",
    "Research Labs Premium: {before, number} → {after, number}": "Research Labs Premium:{before, number} → {after, number}",
    "Research Labs seat": "Research Labs 席位",
    "Research Labs seats": "Research Labs 席位",
    "Research Labs: {before, number} → {after, number}": "Research Labs:{before, number} → {after, number}",
    "Research a company": "研究一家公司",
    "Research a topic and summarize findings": "研究一个主题并总结发现",
    "Research an important decision": "研究一个重要决定",
    "Research and analysis": "研究与分析",
    "Research and compile into a spreadsheet": "研究并整理成电子表格",
    "Research and deliver findings relevant to me as a time-traveler from 2050": "研究并提供与我作为来自2050年的时间旅行者相关的发现",
    "Research complete": "研究完成",
    "Research good typography systems": "研究优秀的排版系统",
    "Research how money became a thing": "研究货币是如何产生的",
    "Research how to write documentation that people will actually want to read": "研究如何编写人们真正想读的文档",
    "Research in real-time": "实时研究",
    "Research isn't available while using {name}": "使用 {name} 时无法使用 Research",
    "Research mode": "研究模式",
    "Research moved to a new spot": "研究已移至新位置",
    "Research panel": "研究面板",
    "Research plan created": "研究计划已创建",
    "Research preview": "研究预览版",
    "Research preview for macOS": "macOS 研究预览版",
    "Research preview:": "研究预览:",
    "Research program with more usage than standard": "比标准版有更多用量的研究计划",
    "Research program with standard usage": "带标准用量的研究计划",
    "Research project": "研究项目",
    "Research sources": "研究来源",
    "Research top go-to-market strategies": "研究最佳市场推广策略",
    "Research topics for my writing": "为我的写作研究课题",
    "Research, code, and organize": "研究、编程和整理",
    "Researcher": "研究员",
    "Researching...": "正在研究...",
    "Resend": "重新发送",
    "Resend email": "重新发送邮件",
    "Resend invite": "重新发送邀请",
    "Reservation name": "预订名称",
    "Reserve a name now; your app's URL switches on the next deploy.": "现在预留一个名称;你的应用 URL 会在下次部署时切换。",
    "Reserved. Takes effect on the next deploy.": "已保留。将在下次部署时生效。",
    "Reset": "重置",
    "Reset Account": "重置账号",
    "Reset Activation Checklist": "重置激活清单",
    "Reset All": "重置全部",
    "Reset All Experience Data": "重置所有体验数据",
    "Reset Code onboarding": "重置编码引导页面",
    "Reset Onboarding": "重置引导流程",
    "Reset access": "重置访问权限",
    "Reset changes": "重置更改",
    "Reset complete — deleted {count} trial(s), onboarding cleared: {cleared}": "重置完成——删除了 {count} 个试用,引导标志已清除:{cleared}",
    "Reset cowork agent": "重置 Cowork 智能体",
    "Reset experience tracking data to re-trigger experiences. Data is stored in sessionStorage and resets on page close.": "重置体验跟踪数据以重新触发体验。数据存储在 sessionStorage 中,关闭页面时重置。",
    "Reset inbox": "重置收件箱",
    "Reset interview [ANT ONLY]": "重置访谈 [仅 ANT]",
    "Reset limits": "重置限额",
    "Reset memory": "重置记忆",
    "Reset preset styles": "重置预设样式",
    "Reset progress": "重置进度",
    "Reset rate limits": "重置频率限制",
    "Reset rate limits to test again": "重置速率限制以再次测试",
    "Reset system prompt to default": "将系统提示重置为默认值",
    "Reset to default": "恢复默认/重置为默认",
    "Resets in {hours} hr {minutes} min": "在 {hours} 小时 {minutes} 分钟后重置",
    "Resets in {minutes} min": "{minutes} 分钟后重置",
    "Resets {date}": "重置于 {date}",
    "Resets {time}": "重置于 {time}",
    "Resetting...": "正在重置...",
    "Resetting…": "重置中...",
    "Resize": "调整大小",
    "Resize file viewer": "调整文件查看器大小",
    "Resize pane columns": "调整面板列宽",
    "Resize pane rows": "调整窗格行高",
    "Resize sidebar": "调整侧边栏大小",
    "Resize tasks panel": "调整任务面板大小",
    "Resize window": "调整窗口大小",
    "Resize {left} and {right}": "调整 {left} 和 {right} 的大小",
    "Resolution": "决议/分辨率",
    "Resource attributes": "资源属性",
    "Resources": "资源",
    "Resources:": "资源:",
    "Respond": "响应",
    "Respond right away": "立即回复",
    "Respond to a legal demand": "回应法律要求",
    "Respond to a request for proposal (RFP)": "响应征求建议书(RFP)",
    "Respond via email to a customer who received the wrong item in their order": "通过邮件回复一位收到错误商品的客户",
    "Response": "回答",
    "Response completions": "响应补全",
    "Response instructions": "响应说明",
    "Responsible Disclosure Policy": "负责任披露政策",
    "Responsible Scaling Policy": "负责任扩展政策",
    "Responsible disclosure policy": "负责任披露政策",
    "Restart": "重启",
    "Restart conversation from here": "从此处重新开始对话",
    "Restart now": "立即重启",
    "Restart shell": "重启 Shell",
    "Restart to apply this configuration.": "重启以应用此配置。",
    "Restart to fetch the config from this URL.": "重新启动以从此 URL 获取配置。",
    "Restart to update": "重启以进行更新",
    "Restart your computer to finish setup.": "重启电脑以完成设置。",
    "Restarting Claude Desktop may resolve this.": "重启 Claude Desktop 可能会解决此问题。",
    "Restarting Claude or reconnecting to your network sometimes resolves this.": "重启 Claude 或重新连接网络有时可以解决此问题。",
    "Restarting Claude or your computer sometimes resolves this. If it persists, you can <reinstall>reinstall the workspace</reinstall> or <link>share your debug logs</link> to help us improve.": "重启Claude或您的电脑有时可以解决此问题。如果问题持续存在,您可以<reinstall>重新安装工作区</reinstall>或<link>分享您的调试日志</link>来帮助我们改进。",
    "Restarting Claude or your computer sometimes resolves this. If it persists, you can <reinstall>reinstall the workspace</reinstall>.": "重启 Claude 或您的电脑有时能解决此问题。如果问题仍然存在,您可以<reinstall>重新安装工作区</reinstall>。",
    "Restarting Claude's workspace...": "正在重启 Claude 的工作空间…",
    "Restore": "还原",
    "Restore Claude access from Canvas for this instance": "为此实例从 Canvas 恢复 Claude 访问",
    "Restore plan": "恢复方案/计划",
    "Restore the conversation to a previous message": "将对话恢复到之前的消息",
    "Restore this version": "恢复此版本",
    "Restoring...": "正在恢复...",
    "Restrict access by IP address": "通过 IP 地址限制访问",
    "Restrict organization creation": "限制组织创建",
    "Restrict to Ask": "限制为询问",
    "Restrict to Blocked": "限制为已阻止",
    "Restrict to your verified domains": "限制为您的已验证域",
    "Restrict which permission levels users in your organization can choose for each CLI operation. Restrictions set a ceiling — users can always choose a stricter setting.": "限制您组织中的用户可以为每个 CLI 操作选择的权限级别。限制设置了上限 — 用户始终可以选择更严格的设置。",
    "Restrict which permission levels users in your organization can choose for each tool. Restrictions set a ceiling — users can always choose a stricter setting.": "限制您组织中的用户可以为每个工具选择的权限级别。限制设置了上限 — 用户始终可以选择更严格的设置。",
    "Restricted by your admin": "已被管理员限制",
    "Resubscribe": "重新订阅",
    "Result": "结果",
    "Results": "结果",
    "Results from the web": "来自网页的结果",
    "Results may be incomplete. Try a more specific search.": "结果可能不完整。请尝试进行更精确的搜索。",
    "Results update as you type. Press Down Arrow to go to results, Escape to return here.": "结果会随着你的输入实时更新。按下方向键进入结果列表,按 Escape 返回此处。",
    "Resume": "继续",
    "Resume from summary": "从摘要恢复",
    "Resume plan": "恢复方案",
    "Resume subscription": "恢复订阅",
    "Resume subscription to downgrade": "恢复订阅以进行降级",
    "Resume your cloud container": "恢复您的云容器",
    "Resume your {planType} plan. You will be charged at your current rate today and your next billing cycle will be one month from now on {nextDate}.": "恢复你的 {planType} 计划。今天将按你当前费率收费,下一个计费周期将在一个月后的 {nextDate} 开始。",
    "Resume your {planType} plan. You will be charged {price} today and your next billing cycle will be one month from now on {nextDate}.": "恢复您的 {planType} 计划。您今天将被收取 {price},您的下一个计费周期将从 {nextDate} 开始,为期一个月。",
    "Resumed session": "已恢复会话",
    "Resumed your cloud container": "已恢复您的云容器",
    "Resumed your session": "已恢复您的会话",
    "Resuming session": "正在恢复会话",
    "Resuming the full session will consume a substantial portion of your usage limits. We recommend resuming from a summary.": "恢复完整会话将消耗你相当大一部分用量限额。我们建议从摘要恢复。",
    "Resuming your cloud container": "正在恢复您的云容器",
    "Resuming your session": "正在恢复您的会话",
    "Resync Project KB": "重新同步项目知识库",
    "Resynthesize memory": "重新综合记忆",
    "Retention period for chats": "聊天的保留期",
    "Retention period for chats and projects": "聊天和项目的保留期",
    "Retention period for projects": "项目的保留期",
    "Retry": "重试",
    "Retry connection": "重试连接",
    "Retry download": "重试下载",
    "Retry now": "立即重试",
    "Retry on an untried runner": "在未尝试过的 Runner 上重试",
    "Retry summary": "重试摘要",
    "Retry with {fallbackModelName}": "使用 {fallbackModelName} 重试",
    "Retrying in {seconds}s...": "将在 {seconds} 秒后重试...",
    "Retrying...": "正在重试...",
    "Return label created": "退货标签已创建",
    "Return to AWS Marketplace": "返回 AWS Marketplace",
    "Return to Claude": "返回 Claude",
    "Return to chat": "返回聊天",
    "Return to terminal": "返回终端",
    "Return to your app—the add-in will finish connecting automatically.": "返回你的应用,加载项将自动完成连接。",
    "Return to your chats or <link>learn more about our research</link>.": "返回您的聊天或<link>详细了解我们的研究</link>。",
    "Return to your device to continue.": "返回你的设备以继续。",
    "Return to {appName}—the add-in will finish connecting automatically.": "返回 {appName}——加载项会自动完成连接。",
    "Returning to your sign-in options.": "正在返回登录选项。",
    "Returns": "返回/收益",
    "Returns Center": "退货中心",
    "Reuse the same session each time so Claude keeps memory between runs.": "每次复用同一个会话,以便 Claude 在多次运行之间保留记忆。",
    "Reveal blind spots in my knowledge base": "揭示我知识库中的盲点",
    "Reveal in Finder": "在 Finder 中显示",
    "Reveal time-use patterns, optimize productivity, and get pro-active meeting preparation.": "揭示时间使用模式,优化效率,并主动进行会议准备。",
    "Reveal transcript file": "显示转录文件",
    "Revenue": "收入",
    "Revert": "还原",
    "Revert to Free": "恢复为 Free 版",
    "Revert to this version": "恢复至此版本",
    "Reverting…": "正在恢复…",
    "Review": "审查",
    "Review Behavior": "审查行为",
    "Review Claude's plan": "审阅 Claude 的计划",
    "Review Cowork access": "检查 Cowork 访问权限",
    "Review Cowork settings": "审查 Cowork 设置",
    "Review and accept updates to the <termsLink>Consumer Terms</termsLink> and <privacyLink>Privacy Policy</privacyLink> for updated privacy settings": "请查阅并接受<termsLink>消费者条款</termsLink>及<privacyLink>隐私政策</privacyLink>的更新,以启用最新的隐私设置。",
    "Review and run": "审查并运行",
    "Review before sensitive actions": "在敏感操作前进行审核",
    "Review behavior for {name}": "审查 {name} 的行为",
    "Review changes": "审阅更改",
    "Review comment: {snippet}": "审查评论:{snippet}",
    "Review comments": "审查评论",
    "Review complete — {n, plural, =0 {no issues found} one {# issue found} other {# issues found}}": "审查完成 — {n, plural, =0 {未发现问题} one {发现 # 个问题} other {发现 # 个问题}}",
    "Review complete.": "评审完成。",
    "Review failed": "评审失败",
    "Review failed.": "审查失败。",
    "Review failed. You can try again.": "审阅失败。您可以重试。",
    "Review information": "审查信息",
    "Review my PR diff": "审查我的 PR 差异",
    "Review my design spec": "审阅我的设计规范",
    "Review my engineering design spec for gaps, unstated assumptions, and failure modes. I'll paste it below.": "帮我审查工程设计说明,找出缺口、未明确说明的假设和故障模式。我会粘贴在下面。",
    "Review my landing-page copy and tighten the headline, sub, and CTA — I'll paste it below.": "帮我审阅我的落地页文案,并精炼标题、副标题和 CTA,我会粘贴在下面。",
    "Review my methods section for clarity, reproducibility, and missing details. I'll paste it next.": "请审阅我的方法部分,看其是否清晰、可复现,以及是否缺少细节。我接下来会贴出来。",
    "Review my pull request": "审查我的拉取请求",
    "Review my research design": "审查我的研究设计",
    "Review my sales pitch": "评审我的销售话术",
    "Review my sales pitch and flag where it loses momentum or sounds generic — I'll paste it below.": "审阅我的销售话术,并标出哪些地方失去力度或听起来太泛泛。我会在下面贴出来。",
    "Review requests": "审核请求",
    "Review state": "审查状态",
    "Review stopped": "评审已停止",
    "Review stopped.": "审查已停止。",
    "Review the following PR diff for bugs, readability issues, and edge cases. I'll paste the diff below.": "审查以下 PR diff,查找 bug、可读性问题和边界情况。我会在下面粘贴 diff。",
    "Review the skill contents before adding to your library.": "在添加到您的库之前审阅技能内容。",
    "Review yesterday's commits and flag anything concerning": "回顾昨天的提交并标记任何令人担忧的地方",
    "Review your details": "检查您的详情",
    "Review your order": "查看您的订单",
    "Review your submission": "审查你的提交",
    "Review your upgrade": "查看您的升级",
    "Review {count, plural, one {request} other {requests}}": "审阅 {count, plural, one {项请求} other {项请求}}",
    "Reviewer": "审阅者",
    "Reviewer feedback": "评审反馈",
    "Reviewer notes:": "审核备注:",
    "Reviewing changes — {phase}": "正在评审更改 — {phase}",
    "Reviewing your details…": "正在审核你的详细信息…",
    "Reviews code for best practices and bugs": "审查代码的最佳实践和错误",
    "Revise": "修改",
    "Revise…": "修订…",
    "Revoke": "撤销",
    "Revoke Access": "撤销访问权限",
    "Revoke access": "撤销访问权限",
    "Revoke access?": "撤销访问权限?",
    "Revoke key": "撤销密钥",
    "Revoke pool key?": "撤销池密钥?",
    "Revoke service key": "撤销服务密钥",
    "Revoking <b>{label}</b> is immediate and cannot be undone.": "撤销<b>{label}</b>是立即生效的,无法撤销。",
    "Rewind": "回退",
    "Rewind conversation": "回退对话",
    "Rewind to an earlier message or clear the session to continue.": "回退到更早的消息,或清空会话以继续。",
    "Rewind to here": "回退到这里",
    "Riff on a feature": "探讨功能",
    "Riff on a startup idea": "探讨创业点子",
    "Riff on some messaging": "探讨文案",
    "Right-click": "右键点击",
    "Risk": "风险",
    "Role": "角色",
    "Role actions": "角色操作",
    "Role changed to {role}": "角色已更改为 {role}",
    "Role play a skeptical investor": "角色扮演:持怀疑态度的投资者",
    "Role-based access with fine grained permissioning": "具有精细权限设置的基于角色的访问",
    "Roleplay difficult conversations I need to prepare for": "角色扮演我需要准备的困难对话",
    "Roles couldn't be loaded. There may be roles with this capability that aren't listed.": "无法加载角色。可能存在具有此能力但未列出的角色。",
    "Roles will no longer be assigned from IdP groups on sign-in or the next sync. Existing members keep the roles they already have.": "登录或下一次同步时,将不再根据 IdP 组分配角色。现有成员会保留他们当前已有的角色。",
    "Roles will no longer be assigned from IdP groups. All members except the primary owner will be reset to the User role.": "角色将不再从 IdP 分组中分配。除主要所有者外的所有成员都将被重置为“用户”角色。",
    "Roll out with SSO, central billing, and admin controls": "借助 SSO、集中计费和管理员控制进行部署",
    "Rotate": "旋转",
    "Rotate secret": "轮换密钥",
    "Rotate signing secret": "轮换签名密钥",
    "Rotate this webhook’s signing secret? The current secret will stop working immediately.": "轮换此 webhook 的签名密钥?当前密钥将立即失效。",
    "Routine created, but the API token couldn't be generated. Edit the routine and re-add the API trigger to try again.": "例程已创建,但无法生成 API 令牌。编辑例程并重新添加 API 触发器以重试。",
    "Routine created, but the GitHub trigger couldn't be enabled for {count, plural, one {{repos}} other {{repos}}}. You can retry from the routine details page.": "例程已创建,但无法为 {count, plural, one {{repos}} other {{repos}}} 启用 GitHub 触发器。您可以从例程详情页面重试。",
    "Routine created, but the GitHub trigger couldn't be linked. Edit the routine to retry.": "例程已创建,但无法关联 GitHub 触发器。请编辑该例程后重试。",
    "Routine duplicated": "例程已复制",
    "Routine duplicated, but the GitHub trigger couldn't be configured. Edit the copy to retry.": "例程已复制,但无法配置 GitHub 触发器。请编辑副本后重试。",
    "Routine duplicated, but your edits couldn't be applied. Edit the copy to retry.": "例程已复制,但无法应用你的编辑。请编辑副本后重试。",
    "Routine runs bill to {extraUsageLink}.": "例程运行将计入 {extraUsageLink}。",
    "Routine saved, but the GitHub trigger couldn't be updated. Edit again to retry.": "例程已保存,但 GitHub 触发器无法更新。请再次编辑以重试。",
    "Routine saved.": "常规任务已保存。",
    "Routines": "常规任务",
    "Routines are paused — your Extra Usage spend cap has been reached.": "例程已暂停,你的额外使用支出上限已达到。",
    "Routines can't run — your plan has no included routine runs.": "例程无法运行——你的套餐不包含例程运行次数。",
    "Rows can't be edited because this table has no primary key.": "无法编辑行,因为此表没有主键。",
    "Rule created.": "规则已创建。",
    "Rule deleted.": "规则已删除。",
    "Rule updated.": "规则已更新。",
    "Rules": "规则",
    "Ruminating on it, stand by...": "正在沉思,请稍候...",
    "Ruminating...": "沉思中/反复思考中...",
    "Run": "运行",
    "Run <code>curl -fsSL https://claude.ai/install.sh | bash</code> in your terminal. That's it.": "在您的终端中运行 <code>curl -fsSL https://claude.ai/install.sh | bash</code> 即可。",
    "Run Claude Code directly from the command line. Works in any shell.": "直接从命令行运行 Claude Code。适用于任何 Shell。",
    "Run Claude and your code in the cloud. No worktrees or local cloning.": "在云端运行 Claude 和您的代码。无需工作区或本地克隆。",
    "Run Claude on a schedule. Set up recurring sessions that execute your prompts automatically.": "按计划运行 Claude。设置定期会话,自动执行您的提示词。",
    "Run a due diligence review": "运行尽职调查审查",
    "Run a scan to see findings.": "运行扫描以查看结果。",
    "Run a security scan": "运行安全扫描",
    "Run as a shell command": "作为 shell 命令运行",
    "Run at": "运行时间",
    "Run at exact time": "在准确时间运行",
    "Run coding tasks seamlessly across your browser and phone.": "在您的浏览器和手机上无缝运行编程任务。",
    "Run in terminal": "在终端中运行",
    "Run more Cowork tasks at once": "一次运行更多 Cowork 任务",
    "Run multiple coding tasks in the cloud seamlessly between your browser, terminal or mobile": "在浏览器、终端或移动端间无缝切换,在云端运行多项编码任务",
    "Run multiple tasks at once": "同时运行多个任务",
    "Run multiple tasks at once with Cowork": "使用 Cowork 同时运行多项任务",
    "Run now": "立即运行",
    "Run on a recurring cron schedule": "按定期 cron 计划运行",
    "Run on a recurring cron schedule or once at a future time": "按周期性 cron 计划运行,或在未来某个时间运行一次",
    "Run on startup": "启动时运行",
    "Run once": "运行一次",
    "Run once at a specific time or on a recurring schedule": "在指定时间运行一次,或按重复计划运行",
    "Run scan": "运行扫描",
    "Run scheduled task: {taskName}": "运行计划任务:{taskName}",
    "Run security scans on repositories with the Claude GitHub App installed.": "在已安装 Claude GitHub 应用的仓库上运行安全扫描。",
    "Run setup script": "运行设置脚本",
    "Run shell commands automatically before or after specific events like tool calls or notifications.": "在特定事件(如工具调用或通知)前后自动运行 Shell 命令。",
    "Run tasks on a schedule or whenever you need them. Type /schedule in any session to set one up.": "按计划或在需要时运行任务。在任何会话中输入 /schedule 进行设置。",
    "Run tasks on a schedule or whenever you need them. Type <code>/schedule</code> in any existing session to set one up.": "按计划或在需要时运行任务。在任何现有会话中输入 <code>/schedule</code> 即可设置一个。",
    "Run tasks on a schedule or whenever you need them. Type <code>/schedule</code> in any existing task to set one up.": "按计划或需要时运行任务。在任意现有任务中输入 <code>/schedule</code> 即可设置。",
    "Run ultrareview": "运行 ultrareview",
    "Run ultrareview in the cloud?": "要在云端运行 ultrareview 吗?",
    "Run when a GitHub webhook event fires": "在 GitHub webhook 事件触发时运行",
    "Run without asking. Named commands still follow their own rules.": "无需询问即可运行。已命名命令仍遵循它们自己的规则。",
    "Run your dev server to inspect network requests, debug with logs, and see changes live.": "运行您的开发服务器以检查网络请求、通过日志调试并查看实时更改。",
    "Run {cmd} in Claude Code for a guided walkthrough.": "在 Claude Code 中运行 {cmd} 以获取引导式演示。",
    "Run {command} in Terminal to install the Command Line Tools, then restart the app.": "请在终端中运行 {command} 以安装命令行工具(Command Line Tools),随后重启应用。",
    "Runner": "运行器",
    "Runner pools": "运行器池",
    "Runners": "运行器",
    "Runners using this key will fail their next poll.": "使用此密钥的运行器将在下次轮询时失败。",
    "Running": "正在运行",
    "Running agent": "运行代理",
    "Running as agent: {agent}": "作为代理运行:{agent}",
    "Running command": "正在运行命令",
    "Running command...": "正在运行命令...",
    "Running in the shared directory {path}. Other sessions may conflict — consider worktree mode to isolate changes.": "正在共享目录 {path} 中运行。其他会话可能会产生冲突——考虑使用 Worktree 模式来隔离更改。",
    "Running resume hooks": "正在运行恢复钩子",
    "Running setup script": "正在运行设置脚本",
    "Running skill": "正在运行技能",
    "Running startup hooks": "正在运行启动钩子",
    "Running subagent": "正在运行子代理",
    "Running task": "正在运行任务",
    "Running {tool}": "正在运行 {tool}",
    "Running — click to cancel": "正在运行——点击取消",
    "Running…": "正在运行……",
    "Runs": "运行次数",
    "Runs a security audit before you publish — checks for exposed secrets, unsafe dependencies, and common web vulnerabilities. Takes a few minutes; you'll get a pass/fail with a list of anything that needs fixing.": "在发布前运行安全审计 — 检查暴露的密钥、不安全的依赖项和常见的 Web 漏洞。需要几分钟;您将获得通过/失败结果以及需要修复的项目列表。",
    "Runs after a tool call": "在工具调用后运行",
    "Runs are staggered by a few minutes to spread server load.": "运行错开几分钟以分散服务器负载。",
    "Runs as {email}": "以 {email} 身份运行",
    "Runs at: {date}": "运行于:{date}",
    "Runs at: {when}": "运行时间:{when}",
    "Runs automated security review on every PR to this repository": "对提交到此仓库的每个 PR 运行自动化安全审查",
    "Runs before a tool call": "在工具调用之前运行",
    "Runs before conversation compaction": "在对话压缩前运行",
    "Runs in the background while you do other things": "在后台运行,而您可以去忙别的事",
    "Runs on {event}": "在 {event} 发生时运行",
    "Runs once": "运行一次",
    "Runs once on {date} {tz}": "于 {date} {tz} 运行一次",
    "Runs once on {when}. Changing the frequency will replace this schedule.": "在 {when} 运行一次。更改频率将替换此时间表。",
    "Runs tasks in the background": "在后台运行任务",
    "Runs when Claude finishes responding": "在 Claude 回答完毕时运行",
    "Runs when a notification is sent": "发送通知时运行",
    "Runs when a prompt is submitted": "在提交提示词时运行",
    "Runs when a session ends": "会话结束时运行",
    "Runs when a session starts": "在会话启动时运行",
    "Runs when a sub-agent finishes": "子代理完成时运行",
    "SAML Attribute Mappings": "SAML 属性映射",
    "SAML configuration requires a verified domain": "SAML 配置需要已验证的域名",
    "SCIM API Keys": "SCIM API 密钥",
    "SCIM Configuration": "SCIM 配置",
    "SCIM Groups": "SCIM 分组",
    "SCIM Provisioning": "SCIM 自动配置",
    "SCIM Reconciliation Preview": "SCIM 对账预览",
    "SCIM Synchronization Status": "SCIM 同步状态",
    "SCIM Users in Directory": "目录中的 SCIM 用户",
    "SCIM connection required": "需要 SCIM 连接",
    "SCIM directory sync": "SCIM 目录同步",
    "SCIM sync": "SCIM 同步",
    "SCIM will sync your member list directly from your identity provider. Members who aren't assigned to this app in your IdP will be removed from the organization.": "SCIM 将直接从您的身份提供商(IdP)处同步成员名单。在 IdP 中未分配到此应用的人员将从该组织中移除。",
    "SCIM, role-based access, and IP allowlisting": "SCIM、基于角色的访问和 IP 白名单",
    "SEAT TIER": "席位等级",
    "SMS OTP expiry (seconds)": "短信验证码有效期(秒)",
    "SMS OTP length": "SMS OTP 长度",
    "SMS and data charges may apply. <supportLink>Learn more</supportLink>": "可能会产生短信和流量费用。<supportLink>了解更多</supportLink>",
    "SMS message template": "短信模版",
    "SMS messaging is disabled. {updateLink}": "短信功能已禁用。{updateLink}",
    "SMS messaging is enabled. {updateLink}": "短信功能已启用。{updateLink}",
    "SMS provider": "短信服务商",
    "SQL": "SQL",
    "SQL console": "SQL 控制台",
    "SQL injection": "SQL 注入",
    "SSH": "SSH",
    "SSH Host": "SSH 主机",
    "SSH Port": "SSH 端口",
    "SSH browsing requires the desktop app.": "SSH 浏览需要使用桌面应用。",
    "SSH configuration created.": "SSH 配置已创建。",
    "SSH configuration is unavailable.": "SSH 配置不可用。",
    "SSH configuration updated.": "SSH 配置已更新。",
    "SSH connection deleted.": "SSH 连接已删除。",
    "SSH connection failed. You can edit the server settings from the environment dropdown, or <retry>try again</retry>.": "SSH 连接失败。您可以从环境下拉菜单中编辑服务器设置,或<retry>重试</retry>。",
    "SSH host is required.": "SSH 主机为必填项。",
    "SSH host key verification failed. Check your SSH configuration.": "SSH 主机密钥验证失败。请检查您的 SSH 配置。",
    "SSH is not configured. Configure SSH to continue.": "SSH 未配置。请配置 SSH 以继续。",
    "SSH password required": "需要 SSH 密码",
    "SSH · {sshHost}": "SSH · {sshHost}",
    "SSO Authentication Error": "SSO 身份验证错误",
    "SSO URL": "SSO URL",
    "SSO isn't available for this address.": "此地址不支持 SSO。",
    "SSO must be configured before you can disable magic link authentication": "必须先配置 SSO 才能禁用魔法链接身份验证",
    "SSO, domain capture, and central billing": "SSO、域名捕获和集中计费",
    "STATUS": "状态",
    "Safe": "安全",
    "Safe ({count})": "安全 ({count})",
    "Safe commands": "安全命令",
    "Safe use tips": "安全使用提示",
    "Safety is core to Anthropic's mission and we are committed to building an ecosystem where users can safely interact with and build on top of our products in a harmless, helpful, and honest way.": "安全是 Anthropic 使命的核心,我们致力于构建一个生态系统,让用户能够以无害、有益且诚实的方式,安全地与我们的产品交互并在其之上进行构建。",
    "Sakura serenity": "樱花宁静",
    "Sales": "销售",
    "Sales and marketing": "销售与营销",
    "Sample data": "示例数据",
    "Sanity-check numbers and work through complex models in plain language.": "用通俗易懂的语言对数据进行合理性检查并处理复杂的模型。",
    "Sans": "无衬线体 (Sans)",
    "Sans chat font": "非衬线聊天字体",
    "Saturday": "周六",
    "Save": "保存",
    "Save 10%": "节省 10%",
    "Save 20%": "节省 20%",
    "Save 30%": "节省 30%",
    "Save 50%": "节省 50%",
    "Save Changes": "保存更改",
    "Save Configuration": "保存配置",
    "Save and sync": "保存并同步",
    "Save app name": "保存应用名称",
    "Save as .csv file": "另存为 .csv 文件",
    "Save as .md file": "保存为 .md 文件",
    "Save as-is": "按原样保存",
    "Save changes": "保存更改",
    "Save cookies, local storage, and login sessions for dev server previews. Data is stored per workspace and persists across app restarts. Turning this off clears all saved session data.": "为开发服务器预览保存 Cookie、本地存储和登录会话。数据按工作空间存储,并在应用重启后持久保存。关闭此选项将清除所有已保存的会话数据。",
    "Save image": "保存图片",
    "Save instructions": "保存指令",
    "Save mappings": "保存映射",
    "Save my setup": "保存我的设置",
    "Save name": "保存名称",
    "Save plugin": "保存插件",
    "Save preferences": "保存偏好",
    "Save rule": "保存规则",
    "Save skill": "保存技能",
    "Save system prompt": "保存系统提示词",
    "Save this key in a secure place. You won't be able to see it again.": "将此密钥保存在安全的地方。您将无法再次看到它。",
    "Save this key — it won't be shown again.": "保存此密钥 — 它将不再显示。",
    "Save this routine to call via API.": "保存此常规任务以通过 API 调用。",
    "Save to memory": "保存到记忆",
    "Save without addressing comments?": "不处理评论直接保存?",
    "Save your access key": "保存您的访问密钥",
    "Save your key": "保存您的密钥",
    "Save {annualSavings}%": "节省 {annualSavings}%",
    "Save {percent}%": "节省 {percent}%",
    "Save {percent}% ({discount})": "节省 {percent}% ({discount})",
    "Save {savings}%": "节省 {savings}%",
    "Saved": "已保存",
    "Saved as <b>/{name}</b>": "已保存为 <b>/{name}</b>",
    "Saved changes to {skillName}": "已保存对 {skillName} 的更改",
    "Saved sites": "已保存的站点",
    "Saved skill: {name}": "已保存技能:{name}",
    "Saved to your outputs folder.": "已保存到您的输出文件夹。",
    "Saved to {path}": "已保存到 {path}",
    "Saving": "正在保存",
    "Saving...": "正在保存...",
    "Saving…": "保存中…",
    "Say in one sentence what you're going to help me do, so I know we're aligned.": "用一句话说清楚你要帮我做什么,这样我才能确认我们理解一致。",
    "Scan": "扫描",
    "Scan a different repository or branch": "扫描其他仓库或分支",
    "Scan cancelled": "扫描已取消",
    "Scan cancelled.": "扫描已取消。",
    "Scan completed": "扫描已完成",
    "Scan couldn't be found.": "找不到扫描。",
    "Scan failed": "扫描失败",
    "Scan for security risks": "扫描安全风险",
    "Scan in progress": "扫描进行中",
    "Scan in progress. Results will appear here.": "扫描正在进行中。结果将显示在这里。",
    "Scan is no longer shared.": "扫描结果不再分享。",
    "Scan project couldn't be found.": "找不到扫描项目。",
    "Scan quota exceeded. Your organization has reached its concurrent scan limit. Wait for a running scan to finish before starting another.": "扫描配额已超限。你的组织已达到并发扫描上限。请等待正在运行的扫描完成后再开始新的扫描。",
    "Scan scope": "扫描范围",
    "Scan shared with your organization.": "扫描结果已与您的组织分享。",
    "Scan tier": "扫描等级/方案",
    "Scan · {date}": "扫描 · {date}",
    "Scanned": "已扫描",
    "Scanning": "扫描中",
    "Scanning — this can take a few minutes": "正在扫描,这可能需要几分钟",
    "Scanning...": "扫描中...",
    "Scans": "扫描记录",
    "Schedule": "计划/安排",
    "Schedule a recurring task": "安排重复任务",
    "Schedule a task": "计划一个任务",
    "Schedule again": "再次安排",
    "Schedule couldn't be enabled. You can try again.": "无法启用计划。您可以重试。",
    "Schedule couldn't be paused. You can try again.": "无法暂停日程安排。您可以重试。",
    "Schedule downgrade": "计划降级",
    "Schedule frequency": "计划频率",
    "Schedule scans": "计划扫描",
    "Schedule task": "计划任务",
    "Schedule tasks": "调度任务",
    "Scheduled": "已安排/已计划",
    "Scheduled task \"{name}\" could not start. You can try running it manually.": "计划任务 \"{name}\" 无法启动。您可以尝试手动运行。",
    "Scheduled task \"{name}\" missed at {formattedTime}. Running now.": "计划任务 \"{name}\" 在 {formattedTime} 未能执行。现在正在运行。",
    "Scheduled task \"{name}\" started.": "计划任务\"{name}\"已启动。",
    "Scheduled task \"{name}\" was skipped. The folder is not trusted.": "已跳过计划任务 \"{name}\"。该文件夹不受信任。",
    "Scheduled task \"{name}\" was skipped. The task file is empty.": "计划任务 \"{name}\" 已跳过。任务文件为空。",
    "Scheduled task creation isn't available. Restart the desktop app to enable this feature.": "计划任务创建不可用。重启桌面应用以启用此功能。",
    "Scheduled task editing isn't available. Restart the desktop app to enable this feature.": "无法编辑计划任务。重启桌面应用以启用此功能。",
    "Scheduled task saved.": "计划任务已保存。",
    "Scheduled tasks": "计划任务",
    "Scheduled tasks can run at most once per hour. Use a single minute value (e.g. {example}).": "计划任务每小时最多运行一次。请使用单个分钟值(例如 {example})。",
    "Scheduled tasks only run while your computer is awake.": "计划任务仅在您的电脑处于唤醒状态时运行。",
    "Scheduled tasks use a randomized delay of several minutes for server performance.": "为了保障服务器性能,计划任务会使用几分钟的随机延迟。",
    "Scheduled · Daily": "已计划 · 每日",
    "Scheduled · Weekly": "计划任务 · 每周",
    "Scheduled · {taskName}": "已计划 · {taskName}",
    "Schedules": "日程安排",
    "Schedules must run at most once per hour.": "计划任务每小时最多只能运行一次。",
    "Schema changes aren't allowed from here. Ask Claude to modify the schema instead.": "此处不允许修改架构 (Schema)。请让 Claude 来修改架构。",
    "Scientist": "科学家",
    "Scope": "作用域/范围",
    "Scope an engagement": "界定合作范围",
    "Scopes": "范围 (Scopes)",
    "Score {score} · Best {best}": "分数 {score} · 最高分 {best}",
    "Scores": "分数",
    "Scratchpad": "草稿本 (Scratchpad)",
    "Screen": "屏幕",
    "Screen recording": "屏幕录制",
    "Screenshot": "截图",
    "Screenshot and verify preview": "截图并验证预览",
    "Screenshot and verify the preview": "截图并验证预览",
    "Screenshot placeholder": "屏幕截图占位符",
    "Screenshot preview": "屏幕截图预览",
    "Screenshot thumbnail": "屏幕截图缩略图",
    "Screenshot too large": "截图过大",
    "Script": "脚本",
    "Scroll down": "向下滚动",
    "Scroll left": "向左滚动",
    "Scroll right": "向右滚动",
    "Scroll to bottom": "滚动到底部",
    "Scroll to element": "滚动到元素",
    "Scroll to the bottom to continue": "滚动到底部以继续",
    "Scroll up": "向上滚动",
    "Search": "搜索",
    "Search Drive": "搜索云端硬盘 (Drive)",
    "Search Google Drive": "搜索 Google 云端硬盘",
    "Search KB": "搜索知识库",
    "Search Linear issues": "搜索 Linear 问题",
    "Search across your whole organization": "搜索整个组织",
    "Search actions": "搜索操作/动作",
    "Search and reference chats": "搜索并引用聊天",
    "Search and summarize Google Drive files": "搜索并总结 Google 云端硬盘文件",
    "Search and tools": "搜索与工具",
    "Search and update your Notion pages and databases": "搜索并更新您的 Notion 页面和数据库",
    "Search branches": "搜索分支",
    "Search branches…": "搜索分支…",
    "Search by issue number or title": "按 Issue 编号或标题搜索",
    "Search by organization name": "按组织名称搜索",
    "Search chats and projects": "搜索聊天和项目",
    "Search connectors": "搜索连接器",
    "Search connectors...": "搜索连接器...",
    "Search connectors…": "搜索连接器……",
    "Search conversations and projects": "搜索对话和项目",
    "Search deeper": "深入搜索",
    "Search directories...": "搜索目录...",
    "Search directory": "搜索目录",
    "Search documents": "搜索文档",
    "Search documents...": "搜索文档...",
    "Search emoji...": "搜索表情符号...",
    "Search events…": "搜索事件…",
    "Search extensions...": "搜索扩展...",
    "Search files": "搜索文件",
    "Search for a tool": "搜索工具",
    "Search for a tool...": "搜索工具...",
    "Search groups": "搜索群组",
    "Search members": "搜索成员",
    "Search menu": "搜索菜单",
    "Search method": "搜索方法",
    "Search mode": "搜索模式",
    "Search or create a project": "搜索或创建一个项目",
    "Search or enter IdP group name": "搜索或输入 IdP 分组名称",
    "Search or start a chat": "搜索或开启新聊天",
    "Search or start a session": "搜索或开启会话",
    "Search past conversations": "搜索往期对话",
    "Search plugins": "搜索插件",
    "Search plugins…": "搜索插件……",
    "Search projects": "搜索项目",
    "Search projects in Chat…": "在聊天中搜索项目…",
    "Search projects...": "搜索项目...",
    "Search recents or paste URL": "搜索最近访问或粘贴 URL",
    "Search repositories": "搜索代码仓库",
    "Search repos…": "搜索仓库…",
    "Search resources or paste URL": "搜索资源或粘贴 URL",
    "Search results": "搜索结果",
    "Search settings": "搜索设置",
    "Search skills": "搜索技能",
    "Search skills…": "搜索技能……",
    "Search source": "搜索源",
    "Search styles": "搜索样式",
    "Search tools": "搜索工具",
    "Search workspaces…": "搜索工作区…",
    "Search your chats": "搜索您的对话",
    "Search your chats...": "搜索你的聊天记录...",
    "Search...": "搜索...",
    "Searched": "已搜索",
    "Searched 3 sites": "已搜索 3 个站点",
    "Searched Drive": "已搜索 Drive",
    "Searched code": "搜索了代码",
    "Searched for connectors": "搜索了连接器",
    "Searched memory": "已搜索记忆",
    "Searched the web": "已搜索网页",
    "Searched web": "已搜索网络",
    "Searched {count} patterns": "检索了 {count} 个模式",
    "Searching": "正在搜索",
    "Searching Google Drive": "正在搜索 Google 云端硬盘",
    "Searching connectors": "正在搜索连接器",
    "Searching deeper...": "正在向深层搜索...",
    "Searching directories...": "正在搜索目录...",
    "Searching files...": "正在搜索文件...",
    "Searching for connectors": "正在搜索连接器",
    "Searching for sources...": "正在搜索来源...",
    "Searching memory": "正在搜索记忆",
    "Searching the web": "正在搜索网页",
    "Searching the web...": "正在搜索网络...",
    "Searching web": "搜索网络",
    "Searching within project:": "在项目内搜索:",
    "Searching...": "正在搜索...",
    "Search…": "搜索…",
    "Seat": "席位",
    "Seat Tier": "席位层级",
    "Seat availability": "座位可用性",
    "Seat changes pending": "席位变更处理中",
    "Seat changes take effect next billing cycle.": "席位变更将在下一个账单周期生效。",
    "Seat count": "席位数量",
    "Seat count can't be lower than the number of members already assigned. Remove members first.": "席位数不能低于已分配成员数。请先移除成员。",
    "Seat downgrade scheduled": "已安排席位降级",
    "Seat limit reached": "席位限制已达到",
    "Seat price": "席位价格",
    "Seat price + usage at <link>API rates</link>": "席位价格 + 按 <link>API 费率</link>计费的用量",
    "Seat requests ({count})": "座位请求({count})",
    "Seat spend limits": "席位支出限额",
    "Seat tier": "席位等级",
    "Seat tier {rowIndex}": "席位层级 {rowIndex}",
    "Seat usage breakdown": "席位使用明细",
    "Seats": "席位",
    "Seats are billed annually upfront. Usage is billed as you go based on what your team uses.": "席位按年预付费。用量按实际产生计费。",
    "Seats can be set up for extra usage once rate limits are hit. Extra usage is billed at API rates on an additional invoice. Admins can enable this and set spend limits in Settings. <link>Token pricing can be found here.</link>": "席位可以在达到速率限制后设置额外用量。额外用量按 API 费率在额外发票中计费。管理员可以在设置中启用此功能并设置支出限额。<link>令牌定价可以在此处找到。</link>",
    "Seats can't be changed while a cancellation is pending. Resume your subscription first.": "在取消待处理期间无法更改席位。请先恢复订阅。",
    "Seats updated": "席位已更新",
    "Seats updated · reductions on {date}": "席位已更新 · 将于 {date} 减少",
    "Seats were purchased but there was an error assigning them. You can try again from the members page.": "已购买席位,但在分配时出现错误。您可以从成员页面重试。",
    "Secondary pane": "副窗格",
    "Secret access key": "密钥访问密钥",
    "Secret could not be deleted.": "无法删除机密信息。",
    "Secret could not be saved.": "无法保存密钥。",
    "Secret name {index}": "密钥名称 {index}",
    "Secret rotated": "密钥已轮换",
    "Secret value": "机密值",
    "Secret value {index}": "密钥值 {index}",
    "Secrets": "机密 (Secrets)",
    "Secrets could not be saved.": "无法保存密钥。",
    "Secure email change": "安全邮箱更改",
    "Secure your codebase": "保护您的代码库",
    "Security": "安全",
    "Security Center billing isn't configured. Contact an admin to finish setup.": "安全中心账单未配置。联系管理员以完成设置。",
    "Security Center isn't available on your plan.": "您当前的方案暂不支持安全中心。",
    "Security Center isn't enabled for your organization.": "您组织尚未启用安全中心 (Security Center)。",
    "Security Center isn't fully configured. Finish setup to run scans.": "安全中心未完全配置。完成设置以运行扫描。",
    "Security Scan": "安全扫描",
    "Security and compliance": "安全与合规",
    "Security review is not yet available for this organization": "此组织尚不可用安全审查",
    "Security scan": "安全扫描",
    "Security scan emails": "安全扫描邮件",
    "See Claude reenact some of the most famous events in history": "看 Claude 演绎历史上一些最著名的事件",
    "See Claude work": "查看 Claude 工作",
    "See all": "查看全部",
    "See all connectors": "查看所有连接器",
    "See all organizations managed by the parent organization <orgName>{parentOrgName}</orgName>": "查看由母组织 <orgName>{parentOrgName}</orgName> 管理的所有组织",
    "See background tasks": "查看后台任务",
    "See connectors": "查看连接器",
    "See details": "查看详情",
    "See details for {connectorName}": "查看 {connectorName} 的详细信息",
    "See every change before it lands. Accept, tweak, or redirect Claude without leaving your editor.": "在修改生效前查看每一处变动。在不离开编辑器的情况下接受、微调或重新引导 Claude。",
    "See example curl": "查看 curl 示例",
    "See for yourself": "亲自看看",
    "See here for details": "详情请看这里",
    "See how Claude Code fits into your team's workflow. <link>Learn more</link>": "了解 Claude Code 如何融入您的团队工作流。<link>了解更多</link>",
    "See more": "查看更多",
    "See our {termsLink} and {privacyLink}.": "查看我们的 {termsLink} 和 {privacyLink}。",
    "See plans": "查看方案",
    "See results": "查看结果",
    "See submissions": "查看提交记录",
    "See task progress for longer tasks.": "查看较长任务的任务进度。",
    "See the time with Claude generated rhymes": "通过 Claude 生成的韵文查看时间",
    "See things from a new angle": "从新的角度看问题",
    "See what Claude learned about you": "看看 Claude 对您的了解",
    "See what Claude’s working on, give input, or add more tasks.": "查看 Claude 正在处理的内容,提供意见,或添加更多任务。",
    "See what emotional themes emerge from my email conversations": "看看我的邮件对话中出现了哪些情感主题",
    "See what people are building": "看看大家都在构建什么",
    "See where your verified domains are being used across Anthropic organizations. All accounts under your verified domains have the ability to use SSO as long as they have been added to the SSO application in your IdP.": "查看您的已验证域名在各 Anthropic 组织中的使用情况。您已验证域名下的所有账号,只要被添加到您 IdP 的 SSO 应用中,就有能力使用 SSO。",
    "Seems to be taking a while...": "似乎得花些时间...",
    "Sees {count, plural, one {# message} other {# messages}} from main chat": "可看到主聊天中的 {count, plural, one {# 条消息} other {# 条消息}}",
    "Select": "选择",
    "Select Folder": "选择文件夹",
    "Select Remote Folder": "选择远程文件夹",
    "Select Repository": "选择代码仓库",
    "Select a connector to view details": "选择一个连接器以查看详情",
    "Select a country": "选择一个国家",
    "Select a different model to use this feature": "请选择其他模型以使用此功能",
    "Select a document, file, or source (optional)": "选择文档、文件或来源(可选)",
    "Select a file to preview it.": "选择一个文件以进行预览。",
    "Select a file to view its content": "选择文件以查看其内容",
    "Select a file to view its contents, or create a new one.": "选择一个文件以查看其内容,或新建一个文件。",
    "Select a file to view its contents.": "选择一个文件查看其内容。",
    "Select a folder": "选择文件夹",
    "Select a folder first.": "请先选择一个文件夹。",
    "Select a folder for this task": "为此任务选择一个文件夹",
    "Select a folder to begin a session": "选择文件夹以开始会话",
    "Select a folder to see project-scoped plugins and install plugins at the project level.": "选择一个文件夹以查看项目范围的插件并在项目级别安装插件。",
    "Select a folder...": "选择文件夹...",
    "Select a group": "选择一个分组",
    "Select a hook to view details": "选择一个钩子 (Hook) 查看详情",
    "Select a marketplace": "选择一个市场",
    "Select a plan": "选择一个方案",
    "Select a plan and duration": "选择计划和时长",
    "Select a project": "选择一个项目",
    "Select a project to move these chats into.": "选择一个项目以移动这些对话。",
    "Select a project to move this chat into.": "选择一个项目将此聊天移入。",
    "Select a protocol": "选择协议",
    "Select a repo first.": "请先选择一个仓库。",
    "Select a repository": "选择一个代码仓库",
    "Select a repository above to activate this trigger.": "请在上方选择一个仓库以激活此触发器。",
    "Select a repository above to enable GitHub triggers.": "在上方选择一个存储库以启用 GitHub 触发器。",
    "Select a repository first": "请先选择一个仓库",
    "Select a repository in the composer to configure per-repo permissions.": "在编辑器(Composer)中选择一个仓库以配置特定仓库的权限。",
    "Select a repository or paste a URL above to get started": "选择一个代码仓库或在上方粘贴 URL 以开始",
    "Select a repository to begin a session": "选择一个代码仓库以开始会话",
    "Select a repository to create a pull request:": "选择仓库以创建拉取请求:",
    "Select a repository to enable the GitHub trigger.": "选择一个仓库以启用 GitHub 触发器。",
    "Select a repository to get started": "选择一个仓库以开始",
    "Select a repository to scan": "选择要扫描的仓库",
    "Select a repository to see issues.": "选择一个仓库以查看议题(Issue)。",
    "Select a scan": "选择扫描",
    "Select a skill to view details": "选择一项技能以查看详情",
    "Select a specific document, file, or sync source in this project to report": "选择此项目中的特定文档、文件或同步源进行举报",
    "Select a tier": "选择层级",
    "Select a trigger": "选择触发器",
    "Select a valid access level.": "请选择有效的访问级别。",
    "Select a valid dismissal reason.": "请选择一个有效的拒绝理由。",
    "Select all": "全选",
    "Select all ({numSelected})": "全选 ({numSelected})",
    "Select all rows": "选择所有行",
    "Select all surfaces your connector supports.": "选择你的连接器支持的所有界面。",
    "Select all that apply": "选择所有适用项",
    "Select all that apply.": "选择所有适用项。",
    "Select an MCPB or DXT file.": "选择一个 MCPB 或 DXT 文件。",
    "Select an agent to view details": "选择一个智能体以查看详情",
    "Select an element to comment on": "选择一个元素进行评论",
    "Select an element to refine": "选择要优化的元素",
    "Select an environment": "选择环境",
    "Select an export protocol.": "选择导出协议。",
    "Select an option to send": "选择要发送的选项",
    "Select an organization": "选择一个组织",
    "Select any text to leave a comment for Claude": "选择任意文本以给 Claude 留言",
    "Select at least one event.": "请至少选择一个事件。",
    "Select branch": "选择分支",
    "Select categories": "选择类别",
    "Select configuration: {name}": "选择配置:{name}",
    "Select credit amount": "选择充值金额",
    "Select dates within the past 180 days": "请选择过去 180 天内的日期",
    "Select default policy": "选择默认策略",
    "Select directory": "选择目录",
    "Select duration": "选择时长",
    "Select element": "选择元素",
    "Select element in preview": "在预览中选择元素",
    "Select events from a single category — filters can't span pull_request and release.": "从单一类别中选择事件,筛选器不能同时跨越 pull_request 和 release。",
    "Select every Claude surface where you have verified your server works end to end.": "选择所有你已验证服务器能够端到端正常工作的 Claude 使用界面。",
    "Select file": "选择文件",
    "Select file encoding": "选择文件编码",
    "Select files to add to chat context": "选择要添加到聊天背景的文件",
    "Select folder": "选择文件夹",
    "Select folder for local session": "为本地会话选择文件夹",
    "Select folders": "选择文件夹",
    "Select folder…": "选择文件夹...",
    "Select groups": "选择职能组",
    "Select item": "选择项目",
    "Select menu item": "选择菜单项",
    "Select model": "选择模型",
    "Select new seat tier": "选择新的席位等级",
    "Select or paste existing doc, post, message, etc.": "选择或粘贴现有文档、帖子、消息等。",
    "Select organization": "选择组织",
    "Select reason": "选择原因",
    "Select remote folder": "选择远程文件夹",
    "Select report reason": "选择举报理由",
    "Select repositories": "选择仓库",
    "Select repo…": "选择仓库…",
    "Select text to leave comments for Claude": "选择文本为 Claude 留下评论",
    "Select the GitHub organizations that belong to {orgName}.": "选择属于 {orgName} 的 GitHub 组织。",
    "Select which organization you would like to connect with {clientName}": "选择您想与 {clientName} 连接的组织",
    "Select which repositories you would like Claude to automatically review. <b>Note that enabling code review for repositories can significantly increase spend.</b>": "选择您希望 Claude 自动审查的代码库。<b>请注意,为代码库启用代码审查可能会显著增加支出。</b>",
    "Select which workspace {clientName} should access. The token issued will be scoped to this workspace.": "选择 {clientName} 应访问哪个工作区。签发的令牌将限定在该工作区范围内。",
    "Select work function": "选择工作职能",
    "Select workspace": "选择工作区",
    "Select your Claude to continue.": "选择您的 Claude 以继续。",
    "Select your role": "选择你的角色",
    "Select your work function": "选择您的职能部门",
    "Select {colorName} color": "选择 {colorName} 色",
    "Select {name}": "选择 {name}",
    "Select {roleLabel} role": "选择 {roleLabel} 角色",
    "Select, drop, or paste existing doc, post, message, etc.": "选择、拖放或粘贴现有的文档、帖子、消息等。",
    "Select...": "选择...",
    "Select: {name}": "选择:{name}",
    "Selected folders": "所选文件夹",
    "Selected: {label} — building now": "已选择:{label} —— 正在构建",
    "Selected: {label} — refining": "已选择:{label} —— 正在优化",
    "Select…": "选择…",
    "Self-hosted cloud environments": "自托管云环境",
    "Self-hosted pool": "自托管池",
    "Self-hosted pools": "自托管池",
    "Self-hosted runner pools": "自托管运行器池",
    "Self-serve refunds are only available on Pro and Max plans.": "自助退款仅适用于 Pro 和 Max 套餐。",
    "Self-serve supports up to 500 seats. <link>Contact sales</link> for larger teams.": "自助服务最多支持 500 个席位。更大的团队请<link>联系销售</link>。",
    "Self-serve supports up to {max} seats. <link>Contact sales</link> for larger teams.": "自助服务最多支持 {max} 个席位。更大的团队请<link>联系销售</link>。",
    "Send": "发送",
    "Send Message": "发送消息",
    "Send a friend a free week of Claude Code. If they love it and subscribe, you'll get {rewardAmount} of extra usage to keep building. <termsLink>Terms apply</termsLink>": "赠送好友一周免费的 Claude Code。如果他们在使用后订阅,您将获得价值 {rewardAmount} 的额外用量抵扣,以继续开展您的项目。<termsLink>条款适用</termsLink>",
    "Send a friend a free week of Claude Cowork. If they love it and subscribe, you'll get {rewardAmount} of extra usage to keep building. <termsLink>Terms apply</termsLink>": "送朋友一周免费 Claude Cowork。如果他们喜欢并订阅,您将获得价值 {rewardAmount} 的额外用量。<a>须符合条款</a>",
    "Send a friend a free week of Cowork. If they love it and subscribe, you'll get {rewardAmount} of extra usage. <termsLink>Terms apply</termsLink>": "赠送好友一周免费的 Cowork。如果他们喜欢并订阅,您将获得 {rewardAmount} 的额外用量。<termsLink>条款适用</termsLink>",
    "Send a guest pass to a friend. They'll get a free week to see what they can build with Claude. <termsLink>Terms apply</termsLink>": "送一张访客卡给朋友。他们将获得一周的免费体验时长,看看能用 Claude 构建什么。<termsLink>条款适用</termsLink>",
    "Send a guest pass to a friend. They'll get a free week to try Cowork. <termsLink>Terms apply</termsLink>": "送给朋友一张访客卡。他们将获得一周的免费 Cowork 试用期。<termsLink>条款适用</termsLink>",
    "Send a message to start building": "发送消息以开始构建",
    "Send a message to start the conversation.": "发送消息以开始对话。",
    "Send a message to {spaceName}": "向 {spaceName} 发送消息",
    "Send a message...": "发送消息...",
    "Send an email": "发送一封邮件",
    "Send and receive text messages with Claude Cowork from your phone. Standard message and data rates may apply.": "用手机通过 Claude Cowork 发送和接收短信。可能会产生标准短信和数据费用。",
    "Send and stay here": "发送并留在此处",
    "Send another gift": "发送另一份礼品",
    "Send anyway": "仍然发送",
    "Send comments": "发送评论",
    "Send edited plan{count, plural, =0 {} one { with # comment} other { with # comments}}": "发送编辑后的计划{count, plural, =0 {} one {,附 # 条评论} other {,附 # 条评论}}",
    "Send events from <b>{owner}/{repo}</b> to an external URL. Requests are signed with a per-webhook secret.": "将来自 <b>{owner}/{repo}</b> 的事件发送到外部 URL。请求会使用每个 webhook 独有的密钥进行签名。",
    "Send invite": "发送邀请",
    "Send invites": "发送邀请",
    "Send message": "发送消息",
    "Send relevant feedback data": "发送相关的反馈数据",
    "Send reply": "发送回复",
    "Send scan results to an external URL when scans complete or findings are created.": "当扫描完成或生成发现时,将扫描结果发送到外部 URL。",
    "Send tasks from your phone for Claude to run here": "从您的手机发送任务让 Claude 在此处运行",
    "Send tasks to Claude from your phone.": "从您的手机向 Claude 发送任务。",
    "Send this to your other assistant, then paste what it gives you in the chat below.": "把这段内容发给你的另一个助手,然后将它返回给你的内容粘贴到下方聊天中。",
    "Send to Anthropic": "发送给 Anthropic",
    "Send to Claude": "发送给 Claude",
    "Send to Claude Code": "发送至 Claude Code",
    "Send to cloud": "发送到云",
    "Send verification code": "发送验证码",
    "Send via Gmail": "通过 Gmail 发送",
    "Send your gift at 12pm ({timezone}) on": "在以下日期的中午 12:00 ({timezone}) 发送您的礼品:",
    "Send {count, plural, one {# comment} other {# comments}}": "发送 {count, plural, one {# 条评论} other {# 条评论}}",
    "Sending": "发送中",
    "Sending code...": "正在发送代码…",
    "Sending context": "正在发送上下文",
    "Sending is disabled because your administrator has blocked nonessential telemetry. Use Export to file instead.": "发送已被禁用,因为你的管理员阻止了非必要遥测。请改用导出到文件。",
    "Sending your logs helps us diagnose and fix this issue.": "发送日志有助于我们诊断并修复此问题。",
    "Sending...": "发送中...",
    "Sends a redacted diagnostic snapshot to Anthropic. No files leave your machine.": "向 Anthropic 发送已脱敏的诊断快照。不会有文件离开你的设备。",
    "Sensitive actions": "敏感操作",
    "Sensitive data types": "敏感数据类型",
    "Sensitive operations": "敏感操作",
    "Sent": "已发送",
    "Sent as an Authorization: Basic header on every proxied request to allowed hosts. Values are write-only and never shown after saving.": "会在每个代理到允许主机的请求中作为 Authorization: Basic 请求头发送。值为只写,保存后不会再次显示。",
    "Sent as an Authorization: Basic header on every proxied request to matching hosts. Values are write-only and never shown after saving.": "作为 Authorization: Basic 标头发送到匹配主机的每个代理请求。值是只写的,保存后不再显示。",
    "Sent by {serverName}": "由 {serverName} 发送",
    "Sent edited plan": "发送了已编辑的计划",
    "Sent to Preview": "发送至预览",
    "Sent to your admin": "已发送给您的管理员",
    "Sent to {target}": "已发送至 {target}",
    "Sent {count, plural, one {# inline comment} other {# inline comments}}": "发送了 {count, plural, one {# 条行内评论} other {# 条行内评论}}",
    "Separate retention periods": "独立保留期/分别设置保留期",
    "Server URL": "服务器 URL",
    "Server URL copied": "服务器 URL 已复制",
    "Server URL doesn’t match expected format": "服务器 URL 格式不符合预期",
    "Server URL type": "服务器 URL 类型",
    "Server details": "服务器详情",
    "Server handles errors gracefully and returns useful error messages to clients.": "服务器能优雅地处理错误,并向客户端返回有用的错误信息。",
    "Server implements the MCP specification correctly (tools, resources, prompts as applicable).": "服务器正确实现了 MCP 规范(包括适用时的工具、资源和提示)。",
    "Server is busy. Retrying in {seconds}s (attempt {attempt} of {maxRetries})": "服务器繁忙,将在 {seconds} 秒后重试(第 {attempt} 次尝试,共 {maxRetries} 次)",
    "Server is busy. Retrying now (attempt {attempt} of {maxRetries})": "服务器繁忙。正在重试(第 {attempt} 次,共 {maxRetries} 次)",
    "Server respects upstream rate limits and does not put user accounts at risk of suspension.": "服务器遵守上游速率限制,不会使用户账号面临被封禁风险。",
    "Server supports the streamable-http transport (or SSE where required).": "服务器支持 streamable-http 传输(或在需要时支持 SSE)。",
    "Server tools": "服务器工具",
    "Server-Sent Events (SSE)": "服务器发送事件(SSE)",
    "Server-side request forgery (SSRF)": "服务端请求伪造 (SSRF)",
    "Servers": "服务器",
    "Service": "服务",
    "Service ID": "服务 ID",
    "Service Provider (SP) Metadata": "服务提供商 (SP) 元数据",
    "Service deleted": "服务已删除",
    "Service is busy — try again in a moment, or switch to a different model.": "服务繁忙,请稍后再试,或切换到其他模型。",
    "Service key copied to clipboard.": "服务密钥已复制到剪贴板。",
    "Service key created": "服务密钥已创建",
    "Service key revoked": "服务密钥已吊销",
    "Service key revoked.": "服务密钥已吊销。",
    "Service keys": "服务密钥",
    "Service keys securely connect your self-hosted infrastructure to Claude Code.": "服务密钥可以将您的自托管基础设施安全地连接到 Claude Code。",
    "Service keys securely connect your self-hosted infrastructure to Claude.": "服务密钥可以将您的自托管基础设施安全地连接到 Claude。",
    "Service name is required.": "服务名称为必填项。",
    "Service name must be 1-64 lowercase letters, numbers, or hyphens.": "服务名称必须为 1-64 个小写字母、数字或连字符。",
    "Service partners": "服务伙伴",
    "Services": "服务",
    "Servings": "份数",
    "Session": "会话",
    "Session actions": "会话操作",
    "Session activity panel": "会话活动面板",
    "Session and active user counts starting February 2026 may appear higher than previous months because of a fix in how sessions are recorded. This reflects more accurate tracking, not a sudden change in usage.": "由于会话记录方式的修复,2026 年 2 月开始的会话和活跃用户计数可能会显示为高于前几个月。这反映了更准确的追踪,而非用量的突变。",
    "Session cannot be continued on the web.": "会话无法在网页端继续。",
    "Session capacity": "会话容量",
    "Session chapters": "会话章节",
    "Session continued on the web.": "会话已在网页端继续。",
    "Session couldn't be created.": "无法创建会话。",
    "Session couldn't be created. You can try again.": "无法创建会话。你可以重试。",
    "Session creation failed. Please try again.": "创建会话失败。请重试。",
    "Session data such as cookies and local storage will be saved across server restarts. This can be useful for staying logged in during development.": "Cookie 和本地存储等会话数据将在服务器重启后保留。这有助于在开发过程中保持登录状态。",
    "Session deleted": "会话已删除",
    "Session duration": "会话时长",
    "Session duration updated.": "会话时长已更新。",
    "Session end": "会话结束",
    "Session events are only available to Anthropic org members.": "会话事件(Session events)仅向 Anthropic 组织成员开放。",
    "Session exported": "会话已导出",
    "Session exported to your downloads.": "会话已导出到您的下载文件夹。",
    "Session exported to {filePath}": "会话已导出到 {filePath}",
    "Session is busy — try again once Claude finishes responding.": "会话繁忙 — 请在 Claude 完成响应后重试。",
    "Session is disconnected.": "会话已断开。",
    "Session is not ready yet. You can try again after it initializes.": "会话尚未就绪。请在初始化完成后重试。",
    "Session is still running. Wait a moment and try again.": "会话仍在运行。请稍等然后重试。",
    "Session leak": "会话泄漏",
    "Session modes": "会话模式",
    "Session name": "会话名称",
    "Session no longer available": "会话不再可用",
    "Session options": "会话选项",
    "Session paused. Send a message to resume — it may pick up a different runner.": "会话已暂停。发送消息以恢复 — 可能会使用不同的运行器。",
    "Session start": "会话开始",
    "Session started in a new worktree at {path}.": "会话已在位于 {path} 的新工作区 (worktree) 中启动。",
    "Session started on {machineName}.": "会话已在 {machineName} 上启动。",
    "Session terminated.": "会话已终止。",
    "Session token (optional)": "会话令牌(可选)",
    "Session transcript and metadata exported to:": "会话记录和元数据导出至:",
    "Session was interrupted": "会话已中断",
    "Session-only notice": "仅会话通知",
    "Sessions": "会话",
    "Sessions already running on those runners will complete normally.": "已在这些运行器上运行的会话将正常完成。",
    "Sessions fire with your Claude Code settings, CLAUDE.md, and skills.": "会话会使用你的 Claude Code 设置、CLAUDE.md 和技能触发。",
    "Sessions per day": "每天的会话数",
    "Sessions queued": "会话已排队",
    "Sessions will no longer be able to authenticate against the configured hosts. This action cannot be undone.": "会话将不再能够针对配置的主机进行身份验证。此操作无法撤销。",
    "Set": "设置",
    "Set Usage Level": "设置使用水平",
    "Set a custom monospace font for code and terminal.": "为代码和终端设置自定义等宽字体。",
    "Set a custom monospace font for code and terminal. The font must be installed on your device.": "为代码和终端设置自定义等宽字体。该字体必须已安装在您的设备上。",
    "Set a default spend limit for each member in the selected group.": "为所选分组中的每位成员设置默认支出限额。",
    "Set a global shortcut": "设置全局快捷键",
    "Set a limit for extra usage charges in a given month": "为给定月份的额外用量设定支出上限",
    "Set a limit for extra usage charges on your monthly invoice": "为您每月账单上的额外用量费用设置限额",
    "Set a starting usage balance": "设置初始用量余额",
    "Set a usage limit per user": "设置每位用户的用量限制",
    "Set any Cowork task to run on a schedule.": "设置任何 Cowork 任务按计划运行。",
    "Set as default": "设为默认",
    "Set by MDM profile": "由 MDM 配置文件设置",
    "Set by bootstrap URL": "由引导 URL 设置",
    "Set by bootstrap URL · <h>{host}</h>": "由 bootstrap URL 设置 · <h>{host}</h>",
    "Set by local environment": "由本地环境设置",
    "Set by organization policy": "由组织策略设置",
    "Set default access for your team": "为您的团队设置默认访问权限",
    "Set different periods for chats and projects": "为聊天和项目设置不同的保留期",
    "Set dollar amount": "设置金额",
    "Set form value": "设置表单值",
    "Set input to \"{value}\"": "将输入设为 \"{value}\"",
    "Set instructions that Claude will follow in every conversation for all users in your organization. Use this for compliance guidance, data handling rules, or response formatting requirements. These instructions take priority over individual user preferences and are included in every prompt, so keep them concise.": "设置 Claude 在组织内所有用户的每次对话中均需遵循的指令。可将其用于合规性指南、数据处理规则或回复格式要求。这些指令将优先于个人偏好,并会被包含在每个提示词中,因此请保持其简洁明了。",
    "Set instructions that Claude will follow in every conversation for all users in your organization. Use this for compliance guidance, data handling rules, or response formatting requirements. These instructions take priority over individual user preferences and are included in every prompt, so keep them concise. Changes may take up to an hour to take effect across Claude products.": "设置 Claude 将在您组织中所有用户的每次对话中遵循的说明。将此用于合规指导、数据处理规则或响应格式要求。这些说明优先于个人用户偏好,并包含在每个提示中,因此请保持简洁。更改可能需要长达一小时才能在 Claude 产品中生效。",
    "Set limit": "设置限制",
    "Set monthly spend limit": "设置每月支出限额",
    "Set project instructions": "设置项目说明",
    "Set shortcut": "设置快捷键",
    "Set spend limit": "设置支出上限",
    "Set the maximum permission users in your organization can grant for unlisted {cliName} commands. Users can choose a stricter setting, but not a looser one.": "设置你组织中的用户可为未列出的 {cliName} 命令授予的最高权限。用户可以选择更严格的设置,但不能选择更宽松的设置。",
    "Set to unlimited": "设为无限制",
    "Set up": "设置/安装",
    "Set up Claude Code on the web": "设置网页版 Claude Code",
    "Set up Claude for Excel": "设置 Excel 版 Claude",
    "Set up Claude for Excel and PowerPoint": "设置 Excel 和 PowerPoint 版 Claude",
    "Set up Claude for your classes, career, and research": "为您的课堂、职业和研究设置 Claude",
    "Set up Cowork": "设置 Cowork",
    "Set up Cowork to hand off tasks so you can focus on other work": "设置 Cowork 来移交任务,以便您可以专注于其他工作",
    "Set up SCIM before saving to switch to directory sync.": "请先设置 SCIM,再保存以切换到目录同步。",
    "Set up SMS": "设置短信",
    "Set up a Team plan": "设置团队计划",
    "Set up a cloud container": "设置云容器",
    "Set up a new folder with instructions and files.": "设置一个新文件夹,包含说明和文件。",
    "Set up a project tracker": "设置项目跟踪器",
    "Set up a project with files and context": "设置包含文件和上下文的项目",
    "Set up and start coding": "设置并开始编码",
    "Set up before you start. You can change these later in <settingsLink>settings</settingsLink>.": "开始前请先进行设置。您稍后可以在 <settingsLink>设置</settingsLink> 中更改这些选项。",
    "Set up connectors for {pluginName}": "为 {pluginName} 设置连接器",
    "Set up for how you work": "根据您的工作方式进行设置",
    "Set up for your org": "为您的组织进行设置",
    "Set up later": "稍后设置",
    "Set up projects with files and context Claude can always reference": "设置包含文件和上下文的项目,让 Claude 可以随时参考",
    "Set up recurring tasks for this project.": "为此项目设置重复任务。",
    "Set up schedule": "设置计划",
    "Set up sign-in": "设置登录",
    "Set up single sign-on so your team can use their work credentials": "设置单点登录,让你的团队可以使用工作凭据",
    "Set up your Enterprise plan": "设置您的企业计划",
    "Set up your Team plan": "设置您的团队方案",
    "Set up your organization's Claude Enterprise account.": "设置您组织的 Claude Enterprise 账户。",
    "Set up your team here": "在此处设置您的团队",
    "Set up…": "点击设置...",
    "Set user and org spend limits": "设置用户和组织的支出限额",
    "Set your usage to a specific percentage.": "将您的用量设为特定百分比。",
    "Setting": "设置",
    "Setting a limit to $0 effectively disables additional spend": "将限制设置为 $0 可有效禁用额外支出",
    "Setting the stage for discovery...": "正在为发现/探索搭建舞台...",
    "Setting up Claude Code Security": "正在设置 Claude Code Security",
    "Setting up Claude Security": "正在设置 Claude Security",
    "Setting up Claude's workspace...": "正在设置 Claude 的工作空间...",
    "Setting up Claude’s workspace": "正在设置 Claude 的工作区",
    "Setting up Operon": "正在设置 Operon",
    "Setting up SSO is required before setting up SCIM.": "设置 SCIM 前需先完成 SSO 设置。",
    "Setting up a cloud container": "正在设置云容器",
    "Setting up environment": "正在设置环境",
    "Setting up my research space...": "正在设置我的研究空间...",
    "Setting up plugins...": "正在设置插件...",
    "Setting up plugins…": "正在设置插件…",
    "Setting up preview": "正在设置预览",
    "Setting up your Enterprise Plan requires adjusting your DNS settings and connecting your Identity Provider to Claude’s servers.": "设置您的 Enterprise 方案需要调整 DNS 设置并将您的身份提供商连接至 Claude 的服务器。",
    "Setting up...": "正在设置...",
    "Settings": "设置",
    "Settings added": "设置已添加",
    "Settings covered by the URL are read-only below.": "URL 涵盖的设置在下方为只读。",
    "Settings deleted": "设置已删除",
    "Settings must be a JSON object.": "设置必须是一个 JSON 对象。",
    "Settings must follow the <link>Claude Code settings schema</link>. Invalid settings may disable Claude Code for your organization.": "设置必须遵循 <link>Claude Code 设置架构</link>。无效的设置可能会导致您组织内的 Claude Code 无法使用。",
    "Settings saved, but starting the directory sync failed. You can retry using the Sync button.": "设置已保存,但启动目录同步失败。你可以使用“同步”按钮重试。",
    "Settings saved, but starting the directory sync failed. You can retry with the Sync Now link above.": "设置已保存,但启动目录同步失败。你可以使用上方的“立即同步”链接重试。",
    "Settings that elevate Claude's access. Use with caution.": "提升 Claude 访问权限的设置。请谨慎使用。",
    "Settings updated": "设置已更新",
    "Settings updated.": "设置已更新。",
    "Settings updated. Directory sync started.": "设置已更新。目录同步已启动。",
    "Settings were changed by someone else. Refresh and try again.": "设置已被他人更改。请刷新并重试。",
    "Settings were modified by another user. Review the latest version and try again.": "设置已被另一名用户修改。请审阅最新版本并重试。",
    "Setup": "安装/设置",
    "Setup SCIM": "设置 SCIM",
    "Setup SSO": "设置 SSO",
    "Setup could not be completed": "无法完成设置",
    "Setup could not be completed.": "安装无法完成。",
    "Setup could not be started. Check your connection and try again.": "无法启动设置。请检查您的连接并重试。",
    "Setup failed": "设置失败",
    "Setup guide": "设置指南",
    "Setup progress: {filledCount} of {total}": "设置进度:{filledCount}/{total}",
    "Setup script": "设置脚本",
    "Severity": "严重性/严重程度",
    "Sexually Explicit content": "性暗示内容",
    "Shapes": "形状",
    "Shapes ({shortcut})": "形状 ({shortcut})",
    "Share": "共享",
    "Share & copy link": "分享并复制链接",
    "Share Claude Code web sessions": "共享网页版 Claude Code 会话",
    "Share a link for people with an allowed email domain to join.": "分享链接,让拥有许可邮箱域的人员加入。",
    "Share a link for people with an allowed email domain to join. Follows new member approval settings above.": "分享一个链接供拥有指定邮箱域名的人员加入。遵循上方的“新成员审批设置”。",
    "Share a link to invite people to your team.": "分享链接以邀请人员加入您的团队。",
    "Share a writing example or describe your style and Claude will make a custom writing style tailored just for you.": "分享一段文字范例或描述您的文风,Claude 将为您打造专属的自定义写作风格。",
    "Share and collaborate with your team": "与您的团队共享并协作",
    "Share artifact": "分享构件",
    "Share as artifact": "作为 Artifact 分享",
    "Share chat": "分享聊天",
    "Share chats": "分享聊天",
    "Share chats that use connectors": "共享使用连接器的聊天",
    "Share data to improve Labs": "共享数据以改进 Labs",
    "Share feedback": "分享反馈",
    "Share files and instructions": "共享文件和说明",
    "Share latest version": "分享最新版本",
    "Share plugin": "共享插件",
    "Share project": "分享项目",
    "Share scan": "共享扫描",
    "Share session": "分享会话",
    "Share skill": "分享技能",
    "Share the most recent chat content": "分享最近的聊天内容",
    "Share this security scan and its findings with your organization.": "向组织共享此安全扫描及其发现。",
    "Share visibility": "共享可见性",
    "Share with organization": "与组织分享",
    "Share with your team": "与您的团队分享",
    "Share your best chats with your team to spark better ideas and move work forward on the Claude Team and Enterprise plans.": "在 Claude Team 和 Enterprise 方案中,通过向团队分享您最棒的聊天,来激发更好的创意并推进工作。",
    "Share your chats to spark ideas, learn from teammates, and discover how your team uses Claude.": "分享您的聊天记录以激发想法,向队友学习,并了解您的团队如何使用 Claude。",
    "Share your grievance and let Claude be the judge": "分享您的委屈,让 Claude 来当裁判",
    "Share your thoughts (optional):": "分享您的想法(可选):",
    "Share your thoughts...": "分享您的想法...",
    "Share “{projectName}”": "分享 “{projectName}”",
    "Share “{skillName}”": "分享“{skillName}”",
    "Shared": "已分享/共享",
    "Shared as artifact": "已作为工件共享",
    "Shared by {ownerName}": "由 {ownerName} 分享",
    "Shared by {sharedBy}": "由 {sharedBy} 分享",
    "Shared chats": "共享对话",
    "Shared session. Visible to anyone in {orgName} with repo access and the link.": "共享会话。在 {orgName} 中,凡有代码仓库访问权限且持有链接的人均可查看。",
    "Shared session. Visible to anyone in {orgName} with the link.": "共享会话。拥有链接的 {orgName} 成员均可查看。",
    "Shared session. Visible to anyone with repo access and the link.": "共享会话。拥有仓库访问权限和链接的任何人可见。",
    "Shared session. Visible to anyone with the link.": "共享会话。拥有链接的任何人均可查看。",
    "Shared skills": "分享的技能",
    "Shared with me": "与我共享",
    "Shared with team": "与团队分享",
    "Shared with you": "与您共享",
    "Shared with your org": "已向您的组织分享",
    "Shared with {count, plural, one {# person} other {# people}}": "已与 {count, plural, one {# 人} other {# 人}} 共享",
    "Shares Out": "已发行股份",
    "Sharing chats that use connectors disabled": "共享使用已禁用连接器的聊天",
    "Sharing chats that use connectors enabled": "已启用共享使用连接器的聊天",
    "Sharing data from Labs features helps Anthropic improve Claude Design and future Labs products. You can change this anytime.": "分享 Labs 功能的数据有助于 Anthropic 改进 Claude Design 和未来的 Labs 产品。你可以随时更改此设置。",
    "Sharing is disabled by your organization administrator.": "您组织的管理员已禁用分享功能。",
    "Sharing settings": "共享设置",
    "Sharing this artifact will also share its associated attachments, files, and comments. New versions will be shared automatically so collaborators can keep commenting on the latest content.": "分享此工件也会分享其相关附件、文件和评论。新版本会自动共享,以便协作者继续对最新内容发表评论。",
    "Sharing your private information": "分享您的隐私信息",
    "Shell command": "Shell 命令",
    "Shell command runner unavailable": "Shell 命令运行器不可用",
    "Shell commands are only available in local sessions": "Shell 命令仅在本地会话中可用",
    "Shell exited.": "Shell 已退出。",
    "Shift Trial Start": "变更试用开始日期",
    "Shift: straight line{sep}Space: pan{sep}⌘Z: undo{sep}Esc: close": "Shift: 直线{sep}空格: 平移{sep}⌘Z: 撤销{sep}Esc: 关闭",
    "Ship better code faster, and understand complex codebases with ease": "更快速地交付更好的代码,轻松理解复杂的代码库",
    "Ship better code faster, and understand complex codebases with ease.": "更快交付更好的代码,并轻松理解复杂的代码库。",
    "Ship code and hand off tasks on every seat": "在每个席位上交付代码并移交任务",
    "Ship code without leaving your team chat.": "无需离开团队聊天即可发布代码。",
    "Ship the MVP yourself. Claude works right in your codebase.": "自己交付 MVP。Claude 直接在您的代码库中工作。",
    "Ship this from your terminal": "从你的终端发布它",
    "Shipping address": "收货地址",
    "Short Story": "短篇故事",
    "Shortened session length": "缩短的会话时长",
    "Shorter responses & more messages": "更短的回复和更多的消息",
    "Should have searched the web": "应该搜索网络",
    "Shouldn't have searched the web": "不应该搜索网页",
    "Show": "显示",
    "Show Claude in the menu bar": "在菜单栏中显示 Claude",
    "Show Claude what \"good\" looks like.": "向 Claude 展示什么是“优秀”。",
    "Show Claude's entire thinking trace instead of a truncated preview. Applies to new messages.": "显示 Claude 的完整思考轨迹,而不是截断的预览。适用于新消息。",
    "Show Content": "显示内容",
    "Show Image": "展示图片",
    "Show all": "显示全部",
    "Show all findings": "显示所有发现",
    "Show all messages": "显示所有消息",
    "Show archived": "显示已归档",
    "Show briefs only": "仅显示简报",
    "Show details": "显示详情",
    "Show fewer skills": "显示较少技能",
    "Show files": "显示文件",
    "Show folder": "显示文件夹",
    "Show formatted": "显示格式化内容",
    "Show full thinking": "显示完整思考",
    "Show hint": "显示提示",
    "Show in Explorer": "在资源管理器中显示",
    "Show in Finder": "在 Finder 中显示",
    "Show in Folder": "在文件夹中显示",
    "Show in file manager": "在文件管理器中显示",
    "Show in folder": "在文件夹中显示",
    "Show in menu bar": "在菜单栏显示",
    "Show less": "收起/显示更少",
    "Show lines above": "显示上方的几行",
    "Show lines below": "显示下方行",
    "Show me any tricks that can help me manage email": "展示一些可以帮我管理邮件的小技巧",
    "Show me how my seasonal patterns affect my scheduling and energy": "向我展示我的季节性模式如何影响我的日程安排和精力",
    "Show me insights about my meeting attendance patterns": "向我展示关于我会议出席模式的见解",
    "Show more": "显示更多",
    "Show more ({remaining} remaining)": "显示更多(还剩 {remaining} 个)",
    "Show options": "显示选项",
    "Show raw": "显示原始数据",
    "Show tips on pull requests": "在拉取请求上显示提示",
    "Show working file": "显示工作文件",
    "Show your name": "显示您的姓名",
    "Show {count, plural, one {# Item} other {# Items}}": "展示 {count, plural, one {# 个项目} other {# 个项目}}",
    "Show {count, plural, one {# line} other {# lines}} above": "显示上方的 {count, plural, one {# 行} other {# 行}}",
    "Show {count, plural, one {# line} other {# lines}} below": "显示下方的 {count, plural, one {# 行} other {# 行}}",
    "Show {count} more": "显示另外 {count} 个",
    "Show {count} more {count, plural, one {permission} other {permissions}}": "显示另外 {count} 个{count, plural, one {权限} other {权限}}",
    "Showcase your work and how you code with Claude.": "展示您的工作以及您是如何与 Claude 一起编码的。",
    "Showing {count, plural, one {# group} other {# groups}}": "显示 {count, plural, one {# 个组} other {# 个组}}",
    "Showing {count, plural, one {# member} other {# members}}": "显示 {count, plural, one {# 名成员} other {# 名成员}}",
    "Showing {limit} of {total} runs.": "正在显示 {total} 次运行中的 {limit} 次。",
    "Showing {start}-{end} of {total, plural, one {# invite} other {# invites}}": "显示第 {start} 至 第 {end} 个,共 {total, plural, one {# 份邀请} other {# 份邀请}}",
    "Showing {start}-{end} of {total, plural, one {# invite} other {# invites}}. <link>Load all {serverTotal, number} invites</link>.": "显示第 {start}-{end} 条,共 {total, plural, one {# 条邀请} other {# 条邀请}}。<link>加载全部 {serverTotal, number} 条邀请</link>。",
    "Showing {start}-{end} of {total, plural, one {# member} other {# members}}": "显示 {total, plural, one {# 名成员} other {# 名成员}} 中的 {start}-{end} 名",
    "Showing {start}-{end} of {total, plural, one {# member} other {# members}}. <link>Load all {serverTotal, number} members</link>.": "显示第 {start}-{end} 条,共 {total, plural, one {# 位成员} other {# 位成员}}。<link>加载全部 {serverTotal, number} 位成员</link>。",
    "Showing {start}-{end} of {total} items": "显示第 {start} 至 第 {end} 个,共 {total} 项",
    "Showing {start}-{end} of {total} results": "正在显示 {total} 条结果中的 {start}-{end} 条",
    "Showing {start}-{end} of {total} users": "显示第 {start}-{end} 名,共 {total} 名用户",
    "Showing {start}-{end} of {total} {users}": "显示第 {start} 至 第 {end} 位,共 {total} 位 {users}",
    "Showing {start}–{end} of {total} connectors": "显示第 {start} 至 第 {end} 个,共 {total} 个连接器",
    "Showing {start}–{end} of {total} members": "显示 {total} 名成员中的 {start}–{end} 名",
    "Showing {start}–{end} of {total} sessions": "显示第 {start} 至 第 {end} 个,共 {total} 个会话",
    "Showing {visible} of {total}": "显示 {total} 项中的 {visible} 项",
    "Shown Experiences": "显示的体验",
    "Shown beneath your connector name in the directory.": "显示在目录中你的连接器名称下方。",
    "Shown in browser tabs and bookmarks. PNG, ICO, or JPEG up to 256 KB. Applied on the next deploy.": "显示在浏览器选项卡和书签中。PNG、ICO 或 JPEG,最大 256 KB。在下次部署时应用。",
    "Shown in browser tabs, bookmarks, and home screens. PNG, ICO, or JPEG up to 256 KB. You'll need to publish for it to take effect.": "显示在浏览器标签页、书签和主屏幕上。支持 PNG、ICO 或 JPEG,大小不超过 256 KB。你需要发布后它才会生效。",
    "Shown in link previews when your site is shared. PNG or JPEG up to 2 MB; 1200×630 px recommended. Applied on the next deploy.": "在共享您的站点时显示在链接预览中。PNG 或 JPEG,最大 2 MB;建议 1200×630 像素。在下次部署时应用。",
    "Shown in link previews when your site is shared. PNG up to 2 MB; 1200×630 px recommended. Applied on the next deploy.": "当分享你的网站时,会显示在链接预览中。PNG 最大 2 MB;建议尺寸为 1200×630 像素。将在下次部署时生效。",
    "Side chat": "侧边聊天",
    "Side chat is local-only — not available for remote sessions.": "侧边聊天仅限本地 — 不适用于远程会话。",
    "Sidebar": "侧边栏",
    "Sidebar density": "侧边栏密度",
    "Sidebar failed to load.": "侧边栏加载失败。",
    "Sign & complete": "签署并完成",
    "Sign In": "登录",
    "Sign back into Google to use our improved connectors": "重新登录 Google 以使用我们改进后的连接器",
    "Sign in": "登录",
    "Sign in above to continue to {domain}": "请在上方登录以继续访问 {domain}",
    "Sign in again to continue, then resend your message.": "请重新登录以继续,然后重新发送你的消息。",
    "Sign in methods": "登录方式",
    "Sign in or create an account to join this workspace on Claude.": "登录或创建账户以加入此 Claude 工作区。",
    "Sign in required to continue this session on the web.": "需要登录方可在网页端继续此会话。",
    "Sign in to Anthropic": "登录 Anthropic",
    "Sign in to Claude": "登录 Claude",
    "Sign in to continue": "登录以继续",
    "Sign in to create a fix session.": "登录以开启修复会话。",
    "Sign in to fetch this configuration.": "登录以获取此配置。",
    "Sign in to purchase": "登录以购买",
    "Sign in to use Claude Code — an agentic coding tool in your terminal, IDE, or browser": "登录以使用 Claude Code——一个位于终端、IDE 或浏览器中的 agentic 编程工具",
    "Sign in to your organization": "登录你的组织",
    "Sign in with GitHub": "通过 GitHub 登录",
    "Sign in with Google": "使用 Google 登录",
    "Sign in with email and password": "使用电子邮件和密码登录",
    "Sign in with phone number": "手机号登录",
    "Sign in with your GitHub account in one click. Org-owned repos may require admin approval.": "一键使用您的 GitHub 账户登录。组织拥有的仓库可能需要管理员审批。",
    "Sign in with your work account": "使用工作账户登录",
    "Sign in with your work or school Microsoft 365 email (like [email protected]). Personal Microsoft accounts (outlook.com, hotmail.com, and live.com) aren't supported.": "请使用您的工作或学校 Microsoft 365 电子邮件登录(例如 [email protected])。不支持个人 Microsoft 帐号(outlook.com、hotmail.com 和 live.com)。",
    "Sign out": "退出登录",
    "Sign out and switch account": "登出并切换账户",
    "Sign up for a Max or Pro subscription to connect your account, or use your API key.": "注册 Max 或 Pro 订阅以连接您的账号,或使用您的 API 密钥。",
    "Sign up for a Max or Team subscription to connect your account, or use your API key.": "注册 Max 或 Team 订阅以连接你的账户,或使用你的 API 密钥。",
    "Sign up for a Max subscription to connect your account, or use your API key.": "注册 Max 订阅以连接你的账户,或使用你的 API 密钥。",
    "Sign up for a Max, Pro or Team subscription to connect your account, or use your API key.": "注册 Max、Pro 或 Team 订阅以连接您的账号,或使用您的 API 密钥。",
    "Sign up for a Pro or Team subscription to connect your account, or use your API key.": "注册 Pro 或 Team 订阅以连接你的账号,或使用你的 API 密钥。",
    "Sign up for a Pro subscription to connect your account, or use your API key.": "订阅 Pro 以连接你的账户,或使用你的 API 密钥。",
    "Sign-in cancelled": "登录已取消",
    "Sign-in could not be completed. Please try again, or contact your administrator.": "无法完成登录。请重试,或联系你的管理员。",
    "Sign-in failed unexpectedly. Try again.": "登录时发生意外错误。请重试。",
    "Sign-in failed:": "登录失败:",
    "Sign-in required": "需要登录",
    "Signed in": "已登录",
    "Signed in. Applying your organization's settings…": "已登录。正在应用你组织的设置…",
    "Signing in from another browser? <link>Enter verification code</link>": "从另一个浏览器登录?<link>输入验证码</link>",
    "Signing in to Google Meet...": "正在登录 Google Meet...",
    "Signing out. Returning to your sign-in options…": "正在退出登录。正在返回登录选项…",
    "Signing secret": "签名密钥",
    "Simple mechanism to test the onboarding flow. Archives all environments, disconnects GitHub, and redirects to onboarding. Sessions are untouched.": "用于测试引导流程的简单机制。归档所有环境、断开 GitHub 连接并重定向到引导页面。会话不受影响。",
    "Simplify daily tasks with Claude-created utility tools and practical applications. From helpful assistants and problem-solvers to everyday helpers and convenience tools, these utilities address common needs and challenges. Designed for real-world use, they make routine tasks easier and more efficient.": "利用 Claude 创建的实用工具和便捷应用,简化您的日常任务。从得力助手、问题解决工具到日常帮手和便利程序,这些工具旨在应对常见的需求和挑战。它们为实际使用而生,让日常事务处理更轻松、更高效。",
    "Simplify my method for outsiders": "把我的方法讲得让外行也能懂",
    "Simulate Rate Limits": "模拟频率限制",
    "Simulator": "模拟器",
    "Simulator touch surface — click to focus, then type to send keystrokes": "模拟器触控区域,点击以聚焦,然后输入以发送按键",
    "Single member console": "单成员控制台",
    "Single sign-on": "单点登录 (SSO)",
    "Single sign-on (SSO)": "单点登录(SSO)",
    "Single sign-on (SSO) and domain capture": "单点登录 (SSO) 和域名捕获",
    "Site-level permissions are inherited from the Chrome extension. <link>Manage permissions</link> in the Chrome extension settings to control which sites Claude can browse, click, and type on.": "站点级权限继承自 Chrome 扩展程序。可在 Chrome 扩展程序设置中<link>管理权限</link>,以控制 Claude 可以在哪些站点进行浏览、点击和输入。",
    "Sites added here apply to this session only. Contact your admin to save them to your organization's allowlist.": "此处添加的站点仅适用于此会话。请联系您的管理员将它们保存到您组织的允许列表中。",
    "Sites added here apply to this task only. Change your Claude in Chrome settings to 'Block extension' to persist them.": "此处添加的站点仅适用于此任务。将您的 Claude in Chrome 设置更改为\"阻止扩展\"以保留它们。",
    "Sites blocked in your account's <link>Claude in Chrome settings</link> will stay blocked.": "在你的账号 <link>Claude in Chrome 设置</link> 中被屏蔽的网站将继续保持屏蔽状态。",
    "Sites blocked in your organization's Claude in Chrome settings will stay blocked.": "你组织的 Claude in Chrome 设置中被屏蔽的网站将继续保持屏蔽。",
    "Size & Volume": "尺寸与容量",
    "Size a market opportunity": "评估市场机会",
    "Sketch": "草图 (Sketch)",
    "Skill": "技能",
    "Skill GitHub URL": "技能 GitHub URL",
    "Skill details couldn't be loaded.": "无法加载技能详情。",
    "Skill duplication failed. You can try again.": "技能复制失败。您可以重试。",
    "Skill files couldn't be loaded. Close this dialog and try again.": "无法加载技能文件。请关闭此对话框并重试。",
    "Skill files must have a .skill, .zip, or .md file extension.": "技能文件必须具有 .skill、.zip 或 .md 文件扩展名。",
    "Skill name": "技能名称",
    "Skill proposals": "技能提案",
    "Skill saved. ": "技能已保存。",
    "Skill sharing": "技能共享",
    "Skill upload failed. You can try again.": "技能上传失败。您可以重试。",
    "Skill validation failed. You can try again.": "技能验证失败。您可以重试。",
    "Skills": "技能",
    "Skills are disabled by your organization": "技能已被你的组织禁用",
    "Skills are disabled for your organization. Contact an owner to enable them.": "你的组织已禁用技能。请联系所有者启用它们。",
    "Skills are not enabled": "技能未启用",
    "Skills are not enabled. Turn on code execution and file creation to use skills.": "技能未开启。请开启代码执行和文件创建以使用技能。",
    "Skills have moved to <link>Customize</link>.": "技能已移至<link>自定义</link>。",
    "Skills have moved to Customize. Head to the new Customize page to manage your skills and connectors.": "技能已移至“自定义”。前往新的“自定义”页面管理您的技能和连接器。",
    "Skills in use": "正在使用的技能",
    "Skills might contain executable code. Team members should be careful when using skills from unknown sources.": "技能可能包含可执行代码。团队成员在使用来源不明的技能时应保持谨慎。",
    "Skills must be enabled by an organization owner to use plugins.": "必须由组织所有者启用技能后才能使用插件。",
    "Skills must be enabled in order to use plugins.": "必须启用技能方可使用插件。",
    "Skills must be enabled to customize them with Claude.": "必须启用技能才能使用 Claude 对其进行自定义。",
    "Skills must be enabled to use plugins.": "必须启用技能功能才能使用插件。",
    "Skills require code execution and file creation, which is unavailable for your account": "技能需要代码执行和文件创建,您的账户无法使用此功能",
    "Skills settings": "技能设置",
    "Skills, connectors, and plugins shape how Claude works with you.": "技能、连接器和插件决定了 Claude 如何为您提供服务。",
    "Skip": "跳过",
    "Skip all approvals?": "跳过所有审批?",
    "Skip for now": "暂时跳过",
    "Skip nonce check": "跳过 nonce 检查",
    "Skip role selection": "跳过角色选择",
    "Skip the copy-paste. Let Claude run code directly.": "省去复制粘贴的麻烦。让 Claude 直接运行代码。",
    "Skip this step": "跳过此步骤",
    "Skip to content": "跳到内容",
    "Skipped": "已跳过",
    "Skipping in {seconds}s...": "{seconds} 秒后跳过...",
    "Slack": "Slack",
    "Slack Project Insights": "Slack 项目洞察/Insights",
    "Slack users on your enterprise's verified domains can only connect Claude accounts that belong to your enterprise. This prevents personal Claude accounts from being connected to your corporate Slack workspaces.": "您企业已验证域上的 Slack 用户只能连接属于您企业的 Claude 账户。这可以防止个人 Claude 账户连接到您的企业 Slack 工作区。",
    "Slash command + auto": "斜杠命令 + 自动",
    "Slash commands": "斜杠命令",
    "Slime soccer": "史莱姆足球",
    "Slug is locked after submission.": "提交后 slug 将被锁定。",
    "Slug is locked, but the display name shown in the directory will update.": "Slug 已锁定,但目录中显示的名称会更新。",
    "Slug is permanent after submission.": "提交后 slug 将永久固定。",
    "Slug: {slug}": "Slug:{slug}",
    "Snap screenshots, drag in files, talk out loud, and more.": "截取屏幕、拖入文件、大声说话以及更多。",
    "So Claude gets to know you more with every chat": "这样 Claude 会在每次聊天中更了解你",
    "So Claude knows what to call you.": "这样 Claude 就知道该怎么称呼你。",
    "So it can read and edit files on your computer": "以便它可以读取和编辑您电脑上的文件",
    "Social image": "社交图像",
    "Social media": "社交媒体",
    "Software Directory Terms": "软件目录条款",
    "Software engineer": "软件工程师",
    "Solutions": "解决方案",
    "Solve CAPTCHA to Join Meeting": "开启验证码以加入会议",
    "Solve an interesting problem": "解决一个有趣的问题",
    "Solve complex calculations instantly with Claude-powered calculators and converters. From financial calculations and scientific formulas to unit conversions and measurement tools, these precise utilities handle mathematical tasks with ease. Perfect for students, professionals, and anyone needing accurate computational tools.": "使用 Claude 驱动的计算器和转换器立即解决复杂的计算。从财务计算和科学公式到单位转换和测量工具,这些精确的实用程序可以轻松处理数学任务。非常适合学生、专业人士和任何需要准确计算工具的人。",
    "Some actions can't be undone.": "某些操作无法撤销。",
    "Some changes couldn't be saved. You can try again.": "某些更改无法保存。你可以重试。",
    "Some configured groups have not been detected in your IdP yet. Groups will be recognized after the next SCIM directory sync. Ensure group names are spelled correctly and your IdP is configured to sync group information.": "尚未在您的 IdP 中检测到某些配置好的分组。分组将在下次 SCIM 目录同步后被识别。请确保分组名称拼写正确且您的 IdP 已配置同步分组信息。",
    "Some configured groups have not been detected in your IdP yet. Groups will be recognized when a user assigned to them logs in. Ensure group names are spelled correctly and your IdP is configured to share group information.": "部分配置的分组尚未在您的 IdP 中检测到。当被分配到这些分组的用户登录时,分组将被识别。请确保分组名称拼写正确,并确保您的 IdP 已配置为共享分组信息。",
    "Some connector requests couldn't be dismissed. You can try again.": "某些连接器请求无法被忽略。你可以重试。",
    "Some connectors couldn't be enabled. You can try again.": "某些连接器无法启用。你可以重试。",
    "Some fields need attention before you can submit.": "提交前有些字段需要处理。",
    "Some files failed to upload — the rest were attached.": "部分文件上传失败,其余文件已附加。",
    "Some files were too large to attach. Maximum size is 25 MB.": "部分文件过大,无法附加。最大大小为 25 MB。",
    "Some hostname patterns aren't valid and will be skipped. Fix or remove them in <link>Settings</link>.": "部分主机名模式无效且将被跳过。请在<link>设置</link>中修正或移除它们。",
    "Some invites couldn't be sent. You can try again.": "部分邀请无法发送。你可以重试。",
    "Some invites may need an admin to approve them.": "某些邀请可能需要管理员批准。",
    "Some members will be skipped because they have no custom roles assigned. Before migrating a member to the Custom role, ensure they are in at least one group that is assigned to at least one custom role.": "部分成员将被跳过,因为他们没有分配自定义角色。在将成员迁移至自定义角色前,请确保他们至少处于一个被分配了至少一项自定义角色的群组中。",
    "Some of these attachments can only be added to private projects": "其中部分附件仅能被添加到私有项目中",
    "Some of your content could not be loaded. {actionButton}": "部分内容加载失败。{actionButton}",
    "Some plugins in this marketplace have validation errors.": "此市场中的部分插件存在验证错误。",
    "Some repos hidden pending SSO. <link>Authorize on GitHub</link>": "部分存储库因等待 SSO 而隐藏。<link>在 GitHub 上授权</link>",
    "Some required fields are missing or malformed. Open Setup to finish configuring it.": "部分必填字段缺失或格式不正确。打开 Setup 完成配置。",
    "Some required fields are missing. Review the highlighted sections before submitting.": "缺少一些必填字段。提交前请检查高亮部分。",
    "Some starter ideas based on your interests.": "一些基于你兴趣的起始想法。",
    "Some tools are missing": "部分工具缺失",
    "Some tools are off": "某些工具已关闭",
    "Someone": "某人",
    "Someone from your company has already used this offer. Team promo offers are limited to one per company.": "您公司的其他人员已经使用了此优惠。团队优惠每家公司限领一份。",
    "Someone from your company just redeemed this offer. Team promo offers are limited to one per company.": "您公司的其他人员刚刚兑换了此优惠。团队优惠每家公司限领一份。",
    "Someone has already established an enterprise plan for your email domain. Please contact one of your existing organization owners to be added.": "已有人为您的邮箱域名建立了 Enterprise 方案。请联系现有的组织所有者将您加入。",
    "Someone has already registered for Claude from your Amazon Account. If you would like another organization, you can <link>purchase a subscription</link> from another AWS Account.": "已有人用您的亚马逊账户注册了 Claude。如果您想要另一个组织,可以从另一个 AWS 账户<link>购买订阅</link>。",
    "Something else": "其他/别的事情",
    "Something went wrong": "出错",
    "Something went wrong adding extra usage. Give it another try, or contact support if this persists.": "添加额外额度时出错。请再试一次,如果问题仍然存在,请联系支持部门。",
    "Something went wrong completing setup.": "完成设置时出错了。",
    "Something went wrong creating the project.": "创建项目时出错了。",
    "Something went wrong fetching this routine's runs. Close and reopen the panel to retry.": "获取此例程的运行记录时出错。请关闭并重新打开面板后重试。",
    "Something went wrong loading organizations.": "加载组织时出错了。",
    "Something went wrong loading this page.": "加载此页面时出错了。",
    "Something went wrong loading this page. You can try again.": "由于某些原因加载此页面出错。您可以重试。",
    "Something went wrong managing this skill.": "管理此技能时出错。",
    "Something went wrong setting up your team.": "设置您的团队时出错。",
    "Something went wrong while resetting memory": "重置记忆时发生错误",
    "Something went wrong while scanning. You can try again.": "扫描时出错。您可以重试。",
    "Something went wrong while sharing this conversation. Please refresh the page.": "分享此对话时出现问题。请刷新页面。",
    "Something went wrong while unsharing this conversation. Please refresh the page.": "取消分享此对话时出错。请刷新页面。",
    "Something went wrong while updating memory": "更新记忆时出错",
    "Something went wrong. Contact support if this keeps happening.": "出了点问题。如果此情况持续发生,请联系支持。",
    "Something went wrong. Please try again.": "出错了。请重试。",
    "Something went wrong. Refresh the page to try again.": "出错了。请刷新页面重试。",
    "Something went wrong. Try refreshing the page.": "出现问题。请尝试刷新页面。",
    "Something went wrong. You can try again.": "出错了。您可以重试。",
    "Sometimes used": "偶尔启用",
    "Sonnet": "Sonnet",
    "Sorry, it's taking a while to connect to the Claude API...": "抱歉,连接 Claude API 超时…",
    "Sorry, it's taking a while to connect to your inference provider...": "抱歉,连接到你的推理提供商需要一些时间...",
    "Sort": "排序",
    "Sort by": "排序方式",
    "Sort projects": "排序项目",
    "Sort: {label}": "排序: {label}",
    "Sorted by impact, descending": "按影响力降序排序",
    "Sounds good": "好的 / 没问题",
    "Sounds good, let’s begin": "听起来不错,让我们开始吧",
    "Source": "来源",
    "Source code downloaded.": "源代码已下载。",
    "Source deleted.": "源文件已删除。",
    "Sources": "来源/出处",
    "Space not found.": "未找到空间。",
    "Spanish": "西班牙语",
    "Spanish Artifacts Built with Claude": "使用 Claude 构建的西班牙语 Artifacts",
    "Speak to Claude from anywhere on your desktop": "在桌面的任何位置与 Claude 对话",
    "Speakers": "发言者",
    "Specialized AI assistants that can be invoked to handle specific types of tasks.": "可被调用以处理特定类型任务的专业 AI 助手。",
    "Specialized subagents with custom prompts and tool access. Agents defined here also appear in the CLI via /agents.": "具有自定义提示和工具访问权限的专用子代理。此处定义的代理也通过 /agents 出现在 CLI 中。",
    "Specific document, file, or source (optional)": "特定文档、文件或来源(可选)",
    "Specific groups": "特定组",
    "Specify limits": "指定限制",
    "Specify limits by seat type": "按席位类型指定限制",
    "Specify limits for {tier} seats": "为 {tier} 席位指定限制",
    "Specify spend limit for {count} groups": "为 {count} 个分组指定支出限额",
    "Specify spend limit for {count} members": "为 {count} 名成员指定支出限额",
    "Specify spend limit for {name}": "为 {name} 指定支出限额",
    "Spend": "消费",
    "Spend by model": "按模型分类支出",
    "Spend limit": "支出限额",
    "Spend limit added for \"{groupName}\".": "已为“{groupName}”添加支出限额。",
    "Spend limit amount": "支出限额金额",
    "Spend limit per member": "每个成员的支出限额",
    "Spend limit per seat": "每个席位的支出限额",
    "Spend limit reached": "已达到支出上限",
    "Spend limit set": "支出上限已设置",
    "Spend limit updated": "支出限额已更新",
    "Spend limit updated for \"{name}\".": "已更新 \"{name}\" 的支出限额。",
    "Spend limit updated for all {tier} seats.": "已更新所有 {tier} 席位的支出限额。",
    "Spend limit updated for group \"{name}\".": "群组 “{name}” 的支出限额已更新。",
    "Spend limits by user": "按用户的支出上限",
    "Spending cap information": "支出上限信息",
    "Spending defaults": "支出默认值",
    "Split view": "分屏视图",
    "Sponsored content": "赞助内容",
    "Sports": "体育",
    "Spreadsheet": "电子表格",
    "Stale config": "过期配置",
    "Standard": "标准",
    "Standard Labs seat": "标准实验室席位",
    "Standard Labs seats": "标准实验室席位",
    "Standard Nonprofit seat": "标准非营利版席位",
    "Standard Nonprofit seats": "标准非营利组织席位",
    "Standard limits": "标准限制",
    "Standard members": "标准成员",
    "Standard seat": "标准席位",
    "Standard seats": "标准席位",
    "Standard users": "标准用户",
    "Standard: {before, number} → {after, number}": "标准:{before, number} → {after, number}",
    "Standings": "排名/积分榜",
    "Star": "星标/收藏",
    "Star artifact": "收藏 Artifact",
    "Star project": "收藏项目",
    "Starred": "已星标",
    "Start": "开始",
    "Start Claude": "启动 Claude",
    "Start Claude Code": "启动 Claude Code",
    "Start Claude Code Web": "启动网页版 Claude Code",
    "Start Code session": "开启 Code 会话",
    "Start New Meeting": "开始新会议",
    "Start a chat to keep conversations organized and re-use project knowledge.": "开启聊天以保持对话有序,并重复利用项目知识。",
    "Start a chat to keep conversations organized and re-use reference materials.": "开启聊天以保持对话有序,并重复利用参考资料。",
    "Start a conversation": "开始一段对话",
    "Start a local session first to run shell commands": "请先启动本地会话再运行 shell 命令",
    "Start a new chat": "开启新聊天",
    "Start a new conversation": "开启新对话",
    "Start a new project": "启动新项目",
    "Start a new scan": "开始新扫描",
    "Start a new session": "开始新会话",
    "Start a new session using the composer in the sidebar to launch an agent, or select an existing session to continue.": "使用侧边栏的作曲器启动智能体开启新会话,或选择现有会话继续。",
    "Start a project": "开始一个项目",
    "Start a return": "开始退货",
    "Start a scan": "开始扫描",
    "Start a task in Cowork": "在 Cowork 中启动任务",
    "Start all three": "启动全部三个",
    "Start building with our quickstart guides": "通过我们的快速入门指南开始构建",
    "Start by creating a memorable title and description to organize your project. You can always edit it later.": "从创建一个好记的标题和描述开始,以管理您的项目。您稍后可以随时进行编辑。",
    "Start chat": "开始聊天",
    "Start chatting": "开始聊天",
    "Start coding": "开始编码",
    "Start cooking": "开始烹饪",
    "Start date": "开始日期",
    "Start dates must be at least 2 days from today and fall on a weekday. Contracts last 1 year from start date.": "开始日期必须距今天至少 2 天,并且在工作日。合同从开始日期起持续 1 年。",
    "Start dates must be at least 3 days from today and fall on a Tuesday or Friday. Contracts last 1 year from start date.": "开始日期必须至少为今天起 3 天后,且为周二或周五。合同自开始日期起有效期为 1 年。",
    "Start free Claude Code trial": "开始免费试用 Claude Code",
    "Start free trial": "开始免费试用",
    "Start fresh with a separate project": "从一个独立项目进行全新的开始",
    "Start from scratch": "从头开始",
    "Start guide": "开始指南",
    "Start import": "开始导入",
    "Start ingestion": "开始摄入",
    "Start locally": "本地启动",
    "Start new chat": "开启新对话",
    "Start new session": "开启新会话",
    "Start on {host}": "在 {host} 上开始",
    "Start onboarding chat": "开始入职聊天",
    "Start over": "重新开始",
    "Start return": "开始返回",
    "Start scan": "开始扫描",
    "Start session": "启动会话",
    "Start setup": "开始设置",
    "Start speaking to begin the conversation": "开始说话以开启对话",
    "Start task": "开始任务",
    "Start trial": "开始试用",
    "Start with trusted sites": "从受信任的站点开始",
    "Start your first chat": "开启您的第一次聊天",
    "Start your first scan": "开启您的第一次扫描",
    "Start your own conversation": "开始您自己的对话",
    "Start your {planName} trial.": "开始您的 {planName} 试用。",
    "Start {name}": "开始 {name}",
    "Started Claude Code": "已启动 Claude Code",
    "Started from <link>Slack</link>": "从 <link>Slack</link> 开始",
    "Started {relativeTime}": "开始于 {relativeTime}",
    "Starter prompt suggestions": "起始提示建议",
    "Starting": "正在启动",
    "Starting Claude Code": "正在启动 Claude Code",
    "Starting Claude Code...": "正在启动 Claude Code...",
    "Starting Claude's workspace...": "正在启动 Claude 的工作空间...",
    "Starting Claude...": "正在启动 Claude...",
    "Starting Conway": "启动 Conway",
    "Starting Conway…": "正在启动 Conway…",
    "Starting conversation on...": "正在开启对话,关于...",
    "Starting prompt": "初始提示词",
    "Starting session…": "正在启动会话…",
    "Starting task…": "正在开始任务…",
    "Starting up...": "启动中...",
    "Starting {date} (after your trial):": "从 {date} 开始(试用期后):",
    "Starting...": "正在启动...",
    "Starting…": "启动中…",
    "Starts when a message is sent": "发送消息时启动",
    "Startups program": "初创企业计划",
    "Stash changes": "暂存变更",
    "State / Province / Region": "州 / 省 / 地区",
    "Stats": "统计数据",
    "Stats view": "统计视图",
    "Status": "状态/进度",
    "Status:": "状态:",
    "Stay compliant with audit logs, retention controls, and the Compliance API": "通过审计日志、保留控制和 Compliance API 保持合规",
    "Stay on Pro plan": "保留 Pro 方案",
    "Stay on Team plan": "保留 Team 方案",
    "Stays off for your organization when Cowork launches on May 11. Turn it on anytime.": "当 Cowork 在 5 月 11 日启动时,您的组织将保持关闭状态。随时打开它。",
    "Step {currentStep} of {totalSteps}": "第 {currentStep} 步,共 {totalSteps} 步",
    "Step {current} of {total}": "第 {current} 步,共 {total} 步",
    "Step {number}": "第 {number} 步",
    "Step-by-Step Guides and How-To Resources Created with Claude AI": "使用Claude AI创建的分步指南和操作指南",
    "Steps": "步骤",
    "Sticky Note": "便签",
    "Sticky note color selection": "便签颜色选择",
    "Still setting up Claude's workspace": "仍在设置 Claude 的工作空间",
    "Still syncing. Plugins will update when the sync completes.": "仍在同步。同步完成后将更新插件。",
    "Still syncing. Your marketplace will appear in the Personal tab when it's ready.": "仍在同步。您的市场(Marketplace)准备就绪后将显示在“个人”选项卡中。",
    "Still thinking...": "仍在思考...",
    "Still working on it, stand by...": "仍在处理中,请稍候...",
    "Still working — it's been {age}. This can happen on longer responses.": "仍在处理中 — 已耗时 {age}。响应较长时可能会出现这种情况。",
    "Stop": "停止",
    "Stop Claude response": "停止 Claude 响应",
    "Stop Claude speaking": "停止 Claude 说话",
    "Stop Claude’s response": "停止 Claude 的回复",
    "Stop all servers": "停止所有服务器",
    "Stop all sessions": "停止所有会话",
    "Stop automatic code reviews for this repository": "停止对此仓库的自动代码审查",
    "Stop dictation": "停止听写",
    "Stop ingestion": "停止摄入",
    "Stop loop": "停止循环",
    "Stop research": "停止研究",
    "Stop response": "停止响应",
    "Stop review": "停止审查",
    "Stop task": "停止任务",
    "Stop to take back": "停止以收回控制权",
    "Stop {name}": "停止 {name}",
    "Stop {serverName}": "停止 {serverName}",
    "Stopped": "已停止",
    "Stopped a command": "停止了一条命令",
    "Stopped {count} commands": "停止了 {count} 条命令",
    "Storage": "存储",
    "Store sensitive values like API keys.": "存储 API 密钥等敏感值。",
    "Stories in the sky": "天空中的故事",
    "Strategize": "制定策略",
    "Streamable HTTP": "可流式传输的 HTTP",
    "Streamable HTTP is recommended. SSE is supported for legacy servers.": "推荐使用可流式传输的 HTTP。旧版服务器支持 SSE。",
    "Streamline your daily life with Claude-built productivity tools and utilities. From advanced calculators and unit converters to task managers and scheduling assistants, these practical applications help you work smarter, not harder. Boost your efficiency, organize your time, and simplify complex calculations with these indispensable everyday tools.": "使用 Claude 构建的生产力工具和实用程序简化您的日常生活。从高级计算器、单位转换器到任务管理器和日程助手,这些实用的应用能帮您事半功倍。使用这些必不可少的日常工具提升效率、管理时间并简化复杂的计算。",
    "Street address": "街道地址",
    "Strengthen workplace relationships": "加强职场人际关系",
    "Stress-test my business model": "压力测试我的商业模式",
    "Stress-test my model": "压力测试我的模型",
    "Stretch your brain and find your next big idea": "发散思维并寻找下一个伟大的点子",
    "Stripe failed to initialize. You can try again.": "Stripe 初始化失败。您可以重试。",
    "Stripe failed to load": "Stripe 加载失败",
    "Strongly agree": "非常同意",
    "Strongly disagree": "强烈反对",
    "Structure an analysis": "构建分析结构",
    "Structure long-form writing": "组织长篇写作结构",
    "Structure longform content": "构建长篇内容结构",
    "Structured Learning and Courses Powered by Claude AI": "由 Claude AI 支持的结构化学习和课程",
    "Structured learning, courses, lessons, educational programs, comprehensive training": "结构化学习、课程、课时、教育项目、综合培训",
    "Student": "学生",
    "Study project": "学习项目",
    "Style": "样式",
    "Style description": "样式描述",
    "Style instructions": "样式指令",
    "Style summary": "样式总结/简述",
    "Style: {name}": "样式:{name}",
    "Sub issues": "子问题",
    "Sub-agent stop": "子代理停止",
    "Sub-issues added/removed, parent issues added/removed": "子问题已添加/移除,父问题已添加/移除",
    "Subject must be {maxLength} characters or fewer.": "主题必须为 {maxLength} 个或更少字符。",
    "Subject required": "主题为必填项",
    "Subject:": "主题:",
    "Submit": "提交",
    "Submit Appeal": "提交申诉",
    "Submit URL": "提交 URL",
    "Submit a server": "提交服务器",
    "Submit an Appeal": "提交申诉",
    "Submit another plugin": "提交另一个插件",
    "Submit application": "提交申请",
    "Submit comment": "提交评论",
    "Submit feedback": "提交反馈",
    "Submit for review": "提交审核",
    "Submit your MCP server to the directory": "将你的 MCP 服务器提交到目录",
    "Submit {count, plural, one {# comment} other {# comments}}": "提交 {count, plural, one {# 条评论} other {# 条评论}}",
    "Submitted & pending review": "已提交,等待审核",
    "Submitted for review.": "已提交审核。",
    "Submitting report…": "正在提交报告…",
    "Submitting this form does not guarantee inclusion.": "提交此表单不保证纳入。",
    "Submitting this report will send the entire current conversation to Anthropic for future improvements to our models. <link>Learn More</link>": "提交此报告会将当前的整段对话发送给 Anthropic,用于未来改进我们的模型。<link>了解更多</link>",
    "Submitting...": "提交中...",
    "Subscribe": "订阅",
    "Subscribe and Pay": "订阅并支付",
    "Subscribe for free": "免费订阅",
    "Subscribe to occasional product update and promotional emails. You can opt out at any time.": "订阅不时的产品更新和促销邮件。您可以随时退订。",
    "Subscribe to occasional promotional emails and notifications. You can opt out any time.": "订阅偶尔的促销电子邮件和通知。您可以随时选择退出。",
    "Subscribed": "已订阅",
    "Subscribed to Enterprise plan": "已订阅 Enterprise 方案",
    "Subscribed to Max": "已订阅 Max 方案",
    "Subscribed to Pro": "已订阅 Pro",
    "Subscribed to Team plan": "已订阅 Team 方案",
    "Subscribed via Android app": "通过 Android 应用订阅",
    "Subscribed via iOS app": "通过 iOS 应用订阅",
    "Subscribing to a Team plan creates a new account. Your existing projects & chats won’t carry over, and your existing Max plan subscription will auto-renew until canceled. <link>Learn more</link>": "订阅 Team 方案将创建一个新账户。您现有的项目和聊天不会转移,现有的 Max 方案订阅将自动续费直到取消。<link>了解更多</link>",
    "Subscribing to a Team plan creates a new account. Your existing projects & chats won’t carry over, and your existing Pro plan subscription will auto-renew until canceled. <link>Learn more</link>": "订阅 Team 方案会创建一个新账户。您现有的项目和聊天不会迁移,并且您现有的 Pro 方案订阅将自动续订直至取消。<link>了解更多</link>",
    "Subscription confirmed": "订阅已确认",
    "Subscription couldn't be created. You can try again.": "无法创建订阅。您可以重试。",
    "Subscription downgrade cancelled. Your subscription will now auto-renew.": "订阅降级已取消。您的订阅现在将自动续订。",
    "Subscription ending": "订阅即将结束",
    "Subscription has been cancelled": "订阅已被取消",
    "Subscription paused - ": "订阅已暂停 - ",
    "Subscription renewal date": "订阅续订日期",
    "Subscription renewed": "订阅已续订",
    "Subscriptions less than 24 hours old aren't eligible yet. Please try again later.": "不到 24 小时的订阅尚不符合条件。请稍后重试。",
    "Subtotal": "小计",
    "Successfully connected to GitHub": "成功连接到 GitHub",
    "Successfully connected to Google Drive": "已成功连接到 Google Drive",
    "Successfully signed in as {email}": "已成功以 {email} 身份登录",
    "Suggested connectors": "推荐的连接器",
    "Suggested task": "建议的任务",
    "Suggesting a Claude Code session…": "正在建议开启 Claude Code 会话…",
    "Suggestion accept rate": "建议接受率",
    "Suggestions are ranked by likely match: ★★ recommended, ★ possible match.": "建议按可能匹配度排序:★★ 推荐,★ 可能匹配。",
    "Summarize a Slack channel": "总结 Slack 频道内容",
    "Summarize a clinical paper": "总结一篇临床论文",
    "Summarize a clinical paper for me — population, intervention, outcome, and key caveats. I'll paste it below.": "帮我总结一篇临床论文——研究人群、干预措施、结局和关键注意事项。我会粘贴在下面。",
    "Summarize a contract": "总结一份合同",
    "Summarize a paper": "总结一篇论文",
    "Summarize and generate action items from feedback": "从反馈中总结并生成行动项目",
    "Summarize my academic papers": "总结我的学术论文",
    "Summarize my calendar and inbox for the day": "总结我今天的日历和收件箱信息",
    "Summarize my recent work in three sections: wins, blockers, and next steps. Keep the tone professional but not stiff...": "将我最近的工作按三个部分进行总结:进展、阻碍和后续步骤。保持语气专业但不呆板...",
    "Summarize my top projects this quarter": "总结本季度我的重点项目",
    "Summarize the contract I'll paste below — key obligations, deadlines, and any red flags or unusual clauses.": "请总结我下面粘贴的合同——关键义务、截止日期,以及任何风险点或异常条款。",
    "Summary": "摘要",
    "Sunday": "周日",
    "Sunday session, {name}?": "周日会话,{name}?",
    "Sunday session?": "周日会话?",
    "Supercharge your creative output with Claude-built content generators and automation tools. Generate unique text, create compelling narratives, automate creative tasks, and explore AI-driven content creation. These powerful generators help creators, marketers, and content professionals produce high-quality material efficiently.": "通过 Claude 构建的内容生成器和自动化工具,大幅提升您的创作产出。生成独特文本,创作引人入胜的叙述,自动化创意任务,并探索 AI 驱动的内容创作。这些强大的生成器可帮助创作者、营销人员和内容专业人士高效产出高质量材料。",
    "Supercharge your spreadsheets with Claude in Excel": "使用 Claude 为 Excel 电子表格赋能",
    "Support": "支持",
    "Support URL": "支持 URL",
    "Support center": "支持中心",
    "Support provided by {helplineName}, not Claude. <link>Learn more</link>": "由 {helplineName} 提供支持,而非 Claude。<link>了解更多</link>",
    "Support request submitted": "支持请求已提交",
    "Supported billing currencies: {currencies}. Checkout will be blocked.": "支持的结算货币包括:{currencies}。结账流程将被中断。",
    "Surface themes across content, get editing support, and connect dots across Docs.": "提炼内容主题,获取编辑支持,并在文档之间建立关联。",
    "Surface unexpected connections across my different documents": "发现我不同文档之间的意外联系",
    "Surprise me. Pick something you think is worth doing together — a puzzle, a thought experiment, something creative — and just start.": "给我惊喜。选择一些你认为值得一起做的事情——谜题、思想实验、创意的事情——然后开始。",
    "Survey the literature": "文献综述",
    "Switch Plan": "切换方案",
    "Switch account": "切换账户",
    "Switch artifact version, currently version {versionNum}": "切换构件版本,当前为第 {versionNum} 版",
    "Switch back to Pro plan": "切回 Pro 方案",
    "Switch between artifacts": "构件间切换",
    "Switch browser": "切换浏览器",
    "Switch model": "切换模型",
    "Switch organization": "切换组织",
    "Switch plan": "切换方案",
    "Switch to Annual": "切换为年度方案",
    "Switch to Annual plan": "切换为年度方案",
    "Switch to Claude Nest": "切换为 Claude Nest",
    "Switch to Pro Annual Plan": "切换到 Pro 年度方案",
    "Switch to Pro Monthly Plan": "切换到 Pro 按月方案",
    "Switch to SCIM": "切换至 SCIM",
    "Switch to SCIM provisioning?": "切换到 SCIM 自动配置?",
    "Switch to dark mode": "切换到深色模式",
    "Switch to light mode": "切换到浅色模式",
    "Switch to preset schedule": "切换到预设时间表",
    "Switch to the Chrome window you want Claude to use. You'll see a “Claude Desktop wants to connect” prompt in the side panel, give the browser a name and click Connect.": "切换到你希望 Claude 使用的 Chrome 窗口。你会在侧边栏看到“Claude Desktop wants to connect”提示,为浏览器命名并点击 Connect。",
    "Switch to {orgName}": "切换到 {orgName}",
    "Switched to {tier}. Refresh the page to see changes.": "已切换到 {tier}。刷新页面以查看更改。",
    "Switching browser": "正在切换浏览器",
    "Switching...": "正在切换...",
    "Sync": "同步",
    "Sync Now": "立即同步",
    "Sync automatically": "自动同步",
    "Sync directory": "同步目录",
    "Sync error details": "同步错误详情",
    "Sync failed": "同步失败",
    "Sync failed {date}": "同步失败 {date}",
    "Sync failed. Click to retry": "同步失败。点击重试",
    "Sync failed: {date} at {time}": "同步失败:{date} {time}",
    "Sync from GitHub": "从 GitHub 同步",
    "Sync happens automatically, use this if you need to refresh {label} manually.": "同步是自动进行的,如果您需要手动刷新 {label},请使用此项。",
    "Sync is in progress. The page will update automatically when complete.": "同步进行中。完成后页面将自动更新。",
    "Sync now": "立即同步",
    "Sync started": "同步已开始",
    "Sync triggered.": "同步已触发。",
    "Sync with SCIM": "通过 SCIM 同步",
    "Synced": "已同步",
    "Synced commit: {sha}": "已同步的提交:{sha}",
    "Synced {date}": "同步时间:{date}",
    "Synchronize accounts with your SSO provider.": "与您的 SSO 提供商同步账号。",
    "Synchronize your accounts and groups with your SSO provider.": "将你的账户和分组与 SSO 提供商同步。",
    "Syncing": "正在同步",
    "Syncing knowledge...": "正在同步知识...",
    "Syncing marketplace...": "正在同步市场...",
    "Syncing plugins from repository…": "正在从代码仓库同步插件…",
    "Syncing since {date}": "自 {date} 开始同步",
    "Syncing {label}, started at {time}.": "正在同步 {label},开始于 {time}。",
    "Syncing {label}.": "同步 {label} 中。",
    "Syncing...": "同步中...",
    "Syncing…": "正在同步…",
    "Synesthesia symphony": "联觉交响曲",
    "Syntax highlighting has been disabled due to code size.": "由于代码过大,语法高亮已禁用。",
    "Synthesize feedback, scan competitors, and keep stakeholders updated.": "综合反馈、扫描竞争对手并让利益相关者了解最新动态。",
    "Synthesize user research into actionable insights": "将用户研究综合为可落地的见解",
    "System": "系统",
    "System chat font": "系统聊天字体",
    "System default": "系统默认",
    "System for Cross-domain Identity Management (SCIM)": "跨域身份管理系统 (SCIM)",
    "System permissions needed": "需要系统权限",
    "System prompt": "系统提示词",
    "System prompt not loaded. Enter a new prompt to overwrite, or edit the .md file directly.": "系统提示未加载。输入新提示以覆盖,或直接编辑 .md 文件。",
    "System tray": "系统托盘",
    "THE WAY OF CODE, a project by Rick Rubin in collaboration with Anthropic.": "THE WAY OF CODE,由 Rick Rubin 与 Anthropic 合作开展的项目。",
    "THIS IS A DEMO FEATURE. DO NOT SHARE SENSITIVE ANTHROPIC DATA OR CONFIDENTIAL INFORMATION.": "这是一个演示功能。切勿共享敏感的 ANTHROPIC 数据或机密信息。",
    "TV": "电视 (TV)",
    "TXT Record Value": "TXT 记录值",
    "TYPE": "类型",
    "Tab inserts indentation. Press Escape then Tab to move focus out of the editor.": "Tab 会插入缩进。按 Escape 然后按 Tab 可将焦点移出编辑器。",
    "Tab to add": "按 Tab 添加",
    "Tab to open · Enter to select": "按 Tab 打开 · 按 Enter 选择",
    "Table": "表格",
    "Table is empty.": "表格为空。",
    "Table pagination": "表格分页",
    "Tag @Claude in a Slack conversation to create a draft PR": "在 Slack 对话中 @Claude 来创建草案 PR",
    "Tailor to an audience": "根据受众量身定制",
    "Tailored contract (usage commitments, product bundling)": "量身定制的合同(用量承诺、产品捆绑)",
    "Take Claude on the go": "随身携带 Claude",
    "Take a screenshot": "截图",
    "Take fragmented notes and turn them into polished professional language": "将零散的笔记转化为精炼的专业语言",
    "Take screenshot": "截图/屏幕截图",
    "Take this Artifact with you in a new chat with Claude and evolve it with your own unique spin.": "把这个构件带入与 Claude 的新聊天中,用您独特的创意让它进一步演化。",
    "Takes 20–60 min · uses more tokens": "耗时 20–60 分钟 · 使用更多 tokens",
    "Taking actions you never intended": "采取非您本意的操作",
    "Taking longer than expected to reach the Claude API. Still trying...": "连接 Claude API 的时间比预期长。仍在重试...",
    "Taking longer than expected to reach your inference provider ({host}). Still trying...": "连接你的推理提供商({host})所花时间超出预期。仍在尝试中...",
    "Taking longer than expected — if you were charged, your subscription will activate shortly. Check your email for confirmation.": "用时比预期长——如果您已被扣费,您的订阅很快就会激活。请检查邮箱获取确认信息。",
    "Taking longer than usual. Trying again shortly (attempt {attemptNumber})": "比平时花费更长时间。即将重试(尝试 {attemptNumber})",
    "Taking you back to the desktop app. You can close this tab.": "正在带你返回桌面应用。你可以关闭此标签页。",
    "Taking you to Claude Code installation guide...": "正在带您前往Claude Code安装指南...",
    "Talk hands-free, connect your calendar and reminders, and pick up conversations across devices.": "免提通话,连接您的日历和提醒,并跨设备继续对话。",
    "Talk through a scenario": "讨论一个方案",
    "Tap Option twice": "连按两次 Option 键",
    "Tap into your health data, notes, and reminders.": "访问您的健康数据、笔记和提醒。",
    "Tap into your org’s collective wisdom": "汇集您组织的集体智慧",
    "Tap into {name}’s collective wisdom": "汲取 {name} 的集体智慧",
    "Tap to jump": "点击跳转",
    "Tap to play": "点击播放",
    "Tap to speak": "点击说话",
    "Tap to try again": "点击重试",
    "Target": "目标/指标",
    "Target High": "目标 高",
    "Target Low": "目标 低",
    "Target Mean": "目标均值",
    "Task": "任务",
    "Task file not found or has unexpected format.": "未找到任务文件或格式不正确。",
    "Task notification": "任务通知",
    "Task plan": "任务计划",
    "Task progress": "任务进度",
    "Task progress: {done} of {total}": "任务进度:已完成 {done} / 共 {total}",
    "Tasks": "任务",
    "Tax": "税费",
    "Tax calculated at payment.": "税费将在支付时计算。",
    "Tax: {tax}": "税费:{tax}",
    "Teach Claude to work the way you do": "让 Claude 学习您的工作方式",
    "Teach Claude your processes, team norms, and expertise.": "教导 Claude 您的流程、团队规范以及专业知识。",
    "Teach Claude your workflows with skills": "通过技能教 Claude 您的工作流",
    "Teach Claude your workflows, standards, and expertise with reusable skills": "使用可复用的技能让 Claude 学习你的工作流程、标准和专业知识",
    "Teach me something completely useless but genuinely interesting. The weirder the better — I want to walk away with a fact I can't stop thinking about.": "教我一些完全没用但确实很有趣的知识。越离奇越好——我希望能带着一个令我念念不忘的事实离开。",
    "Teach me something useless": "教我一些没用的知识",
    "Teach me your workflows and I'll follow them every time": "教我您的工作流程,我将每次都遵循它们",
    "Team": "团队 (Team)",
    "Team activity ideas": "团队活动创意",
    "Team and Enterprise": "团队及企业版",
    "Team members can also install directly from <link>claude.com/download</link>.": "团队成员也可以直接从 <link>claude.com/download</link> 安装。",
    "Team memory": "团队记忆",
    "Team name": "团队名称",
    "Team overview": "团队概览",
    "Team plan": "Team 方案/计划",
    "Team plan (Annual)": "Team 方案(年度)",
    "Team plan (Annual) - {tier}": "团队方案(年度)- {tier}",
    "Team plan canceled": "团队方案已取消",
    "Team plan monthly x {numSeats} members": "Team 方案月付 x {numSeats} 名成员",
    "Team plans are best for groups up to {maxMembers} people. Choose a team name that invited members will easily recognize.": "团队计划最适合最多 {maxMembers} 人的团队。选择一个受邀成员能轻松识别的团队名称。",
    "Team plans have a {minimum, plural, one {# seat} other {# seats}} minimum": "Team 方案最少需要 {minimum, plural, one {# 个席位} other {# 个席位}}",
    "Team plans have a {minimumSeatCount, plural, one {# seat} other {# seats}} minimum. Pick your seat types below": "Team 方案最少需要 {minimumSeatCount, plural, one {# 个席位} other {# 个席位}}。请在下方选择您的席位类型",
    "Team plans require a minimum of {minimum} seats": "Team 方案至少需要 {minimum} 个席位",
    "Team plans require a work email. Try your company address.": "团队方案需要工作邮箱。请尝试使用您的公司地址。",
    "Team plans support a maximum of {maximum} members across all seat tiers": "Team 方案支持在所有席位层级中最多共 {maximum} 名成员",
    "Team popcorn": "团队爆米花",
    "Team settings updated.": "团队设置已更新。",
    "Team size": "团队规模",
    "Team trial": "团队试用",
    "Teams": "团队",
    "Teams account detected": "检测到 Team 方案账号",
    "Teams cannot remix public artifacts. Gallery artifacts are available for remixing.": "团队方案无法改编 (Remix) 公开构件。画廊 (Gallery) 构件可供改编。",
    "Teaser image of search queries": "搜索查询的预告图",
    "Technical Details": "技术细节",
    "Telemetry config conflict": "遥测配置冲突",
    "Tell Claude how to work in this project (optional)": "告诉 Claude 在该项目中如何工作(可选)",
    "Tell Claude what to do instead": "改为告诉 Claude 该怎么做",
    "Tell Claude what to remember or forget": "告诉 Claude 要记住或遗忘什么",
    "Tell Claude what to remember or forget...": "告诉 Claude 该记住或忘记什么...",
    "Tell Claude what you need so you can move on to whatever's next. It'll organize files, draft reports, and crunch data—all at the same time.\n\nCheck in when you want or just let Claude run.": "告诉 Claude 您的需求,然后您就可以去忙别的事了。它会同时整理文件、起草报告、分析数据。\n\n您可以随时查看进度,或者干脆让 Claude 自动运行。",
    "Tell Claude what you want, step by step.": "一步步告诉 Claude 您想要什么。",
    "Tell Claude what you’re working on": "告诉 Claude 你正在做什么",
    "Tell me a bit about yourself and what you're hoping to do.": "请简单介绍一下你自己,以及你希望做什么。",
    "Tell me about my email organization habits": "告诉我关于我的邮件归档习惯",
    "Tell me how I can optimize my inbox": "告诉我该如何优化我的收件箱",
    "Tell me how my project focus has evolved over time": "告诉我我的项目重点是如何随时间演变的",
    "Tell me more": "告诉更多信息/告诉我更多",
    "Tell me what my calendar reveals about my work-life balance": "告诉我我的日历揭示了关于工作与生活平衡的哪些信息",
    "Tell me what programming paradigm suits my thinking style": "告诉我是哪种编程范式更适合我的思维方式",
    "Tell me which emails I subscribe to usually go unread": "告诉我哪些我订阅的邮件通常没被阅读",
    "Tell me which recurring meetings take up most of my time": "告诉我哪些周期性会议占据了我大部分时间",
    "Tell us about the company or organization behind this connector.": "请介绍一下此连接器背后的公司或组织。",
    "Tell us how your connector handles user data and connections to other services.": "请告诉我们你的连接器如何处理用户数据以及与其他服务的连接。",
    "Tell us more": "告诉我们更多",
    "Tell us more (optional)": "告诉我们更多(可选)",
    "Tell us more...": "告诉我们更多...",
    "Temporarily disable Claude access from Canvas for this instance": "针对此实例暂时停用 Claude 对 Canvas 的访问权限",
    "Temporary error — retry the sync": "临时错误——重试同步",
    "Terminal": "终端",
    "Terminal name": "终端名称",
    "Terminal selection": "终端选区",
    "Terminal {n}": "终端 {n}",
    "Terminals": "终端",
    "Terminate": "终止",
    "Terminate session": "终止会话",
    "Terms and conditions": "条款和条件",
    "Terms and policies": "条款与政策",
    "Terms apply": "条款适用",
    "Terms of Service": "服务条款",
    "Terms of service: Commercial": "服务条款:商业版",
    "Terms of service: Consumer": "服务条款:消费者",
    "Terms version missing. Please refresh.": "条款版本缺失。请刷新。",
    "Test": "测试",
    "Test & launch": "测试并发布",
    "Test OTPs valid until": "测试 OTP 有效期至",
    "Test Translation System": "测试翻译系统",
    "Test connection": "测试连接",
    "Test connectivity": "测试连接性",
    "Test my eye for detail with examples": "通过实例测试一下我关注细节的能力",
    "Test my function": "测试我的函数",
    "Test my negotiation tactics with scenarios": "通过情境测试我的谈判技巧",
    "Test phone numbers and OTPs": "测试手机号和 OTP 代码",
    "Test server URL": "测试服务器 URL",
    "Test setup instructions": "测试设置说明",
    "Test that the plugin works with these surfaces before submitting.": "在提交前,请测试插件在这些界面上是否正常工作。",
    "Test your color combinations for web accessibility compliance": "测试您的颜色组合是否符合网页无障碍合规性",
    "Test your knowledge with Claude-generated trivia questions": "通过 Claude 生成的知识竞赛题来测试您的知识",
    "Test your trivia knowledge. Can you spot the hallucination?": "测试您的百科知识。您能识破幻觉吗?",
    "Tested surfaces": "已测试的界面",
    "Testing...": "正在测试...",
    "Tests the whole string. To match anywhere, use \"contains\" — or, for example, write <code>.*hotfix.*</code> instead of <code>hotfix</code>.": "会测试整个字符串。若要匹配任意位置,请使用“contains”;例如,写 <code>.*hotfix.*</code> 而不是 <code>hotfix</code>。",
    "Text": "文本",
    "Text color": "文本颜色",
    "Text extraction failed for one of the URLs.": "其中一个 URL 的文本提取失败。",
    "Thai": "泰语",
    "Thai (TIS-620)": "泰语 (TIS-620)",
    "Thai Artifacts Built with Claude": "使用 Claude 构建的泰语构件",
    "Thank you": "谢谢",
    "Thank you for contacting us. A member of our team will be in touch soon.": "感谢您联系我们。我们的团队成员将尽快与您联系。",
    "Thank you for helping keep Claude safe and reliable. We’ll review your report as soon as possible.": "感谢您协助保障 Claude 的安全与可靠。我们会尽快审阅您的报告。",
    "Thank you for reporting the Artifact. We take these matters seriously and will investigate the issue. Your report helps us maintain the integrity of our platform.": "感谢举报该构件。我们对此类问题高度重视,并将展开调查。您的举报有助于我们维护平台的完整性。",
    "Thank you for your interest in Anthropic Interviewer.": "感谢您对 Anthropic Interviewer 的关注。",
    "Thank you for your order.": "感谢您的订单。",
    "Thank you!": "谢谢!",
    "Thanks for being a Pro": "感谢您成为 Pro 用户",
    "Thanks for being a Pro, {name}": "感谢您订阅 Pro 版,{name}",
    "Thanks for sharing your thoughts": "感谢分享您的想法",
    "Thanks for subscribing to Max": "感谢订阅 Max 方案",
    "Thanks for subscribing to Max, {name}": "感谢订阅 Max 方案,{name}",
    "Thanks for the feedback": "感谢你的反馈",
    "Thanks for the suggestion! (<link>Dashboard</link>)": "感谢您的建议!(<link>控制面板</link>)",
    "Thanks for trying Cowork": "感谢试用 Cowork",
    "Thanks for trying the Pro plan": "感谢您尝试 Pro 方案",
    "Thanks for your feedback!": "感谢您的反馈!",
    "Thanks for your interest": "感谢您的关注",
    "Thanks for your interest! Future studies are coming but this one has concluded.": "感谢您的关注!未来会有更多研究,但这项研究已经结束。",
    "Thanks for your report.": "感谢您的报告。",
    "That URL could not be verified. Check the address and try again.": "无法验证该 URL。请检查地址并重试。",
    "That code wasn't recognized or has expired. Check the code in the app and try again.": "该代码无法识别或已过期。请检查应用中的代码后重试。",
    "That didn't work. You can try again.": "这行不通。您可以再试一次。",
    "That email is already a member of this workspace.": "该邮箱已是此工作区成员。",
    "That image is too large. Choose one under 2 MB.": "该图像太大。请选择小于 2 MB 的图像。",
    "That image is too large. Choose one under 256 KB.": "该图像太大。请选择小于 256 KB 的图像。",
    "That link couldn't be verified. Enter the code shown in the app to continue.": "无法验证该链接。请输入应用中显示的代码以继续。",
    "That name is already taken.": "该名称已被占用。",
    "That name is in use by another project in your organization.": "该名称已被你组织中的另一个项目使用。",
    "That name is reserved. Choose a different one.": "该名称已被保留。请选择其他名称。",
    "That name isn't available.": "该名称不可用。",
    "That phone number has been used too many times. <tryDifferentNumberButton>Try a different phone number</tryDifferentNumberButton>": "该电话号码已被使用太多次。<tryDifferentNumberButton>尝试其他电话号码</tryDifferentNumberButton>",
    "That phone number was used too recently. <tryDifferentNumberButton>Try a different phone number</tryDifferentNumberButton>": "该手机号码最近使用太频繁。<tryDifferentNumberButton>尝试其他手机号码</tryDifferentNumberButton>",
    "That phone number was used too recently. Try again in {duration}, or <tryDifferentNumberButton>use a different phone number</tryDifferentNumberButton>.": "该电话号码最近使用过。请在 {duration} 后重试,或<tryDifferentNumberButton>使用其他电话号码</tryDifferentNumberButton>。",
    "That signup code isn't valid for this offer.": "该注册代码对此优惠无效。",
    "That's you": "那就是你",
    "The AI for{br}problem solvers": "专为{br}问题解决者设计的 AI",
    "The Anthropic Interviewer will reach out once every 3 months for a 15-20 minute interview. Your participation is always optional.": "Anthropic 访谈员将每 3 个月进行一次 15-20 分钟的访谈。您的参与始终是可选的。",
    "The Claude Code GitHub App isn't installed on this repository. Install it to enable scanning.": "Claude Code GitHub App 未安装在此仓库上。安装它以启用扫描。",
    "The Claude Code binary doesn't match this computer's architecture. Reinstall Claude Desktop for your platform.": "Claude Code 二进制文件与这台电脑的架构不匹配。请为你的平台重新安装 Claude Desktop。",
    "The Claude Code binary is missing or damaged. Reinstall Claude Desktop to continue.": "Claude Code 二进制文件缺失或已损坏。请重新安装 Claude Desktop 以继续。",
    "The Claude GitHub App is not installed on <bold>{repo}</bold>. <link>Install the GitHub App</link> and try again.": "Claude GitHub App 未安装在此仓库 <bold>{repo}</bold> 上。<link>安装 GitHub App</link> 后重试。",
    "The Claude GitHub App needs updated permissions to create webhooks.": "Claude GitHub App 需要更新权限才能创建 webhook。",
    "The Claude window will hide. A tooltip appears next to each step with a Next button. Click Exit anytime to stop.": "Claude 窗口将隐藏。每个步骤旁会出现一个带有“下一步”按钮的工具提示。随时点击“退出”即可停止。",
    "The Client ID from your Canvas LTI app registration (found in Canvas Admin > Developer Keys)": "来自您的 Canvas LTI 应用注册的客户端 ID(位于 Canvas 管理员 > 开发者密钥中)",
    "The Client ID from your Canvas app registration": "来自您的 Canvas 应用注册的客户端 ID",
    "The Deployment ID for your Canvas LTI integration": "您的 Canvas LTI 集成的部署 ID",
    "The Extensions Directory has been disabled on this device. Please contact your IT administrator for more information.": "此设备上已禁用扩展目录。详情请咨询您的 IT 管理员。",
    "The French legislative elections will be held in two rounds of voting on June 30 and July 7, 2024. Please consult <link>the French Public Administration website</link> for reliable and up-to-date guidance on where and how to vote in the legislative elections in France.": "法国立法选举将分别于 2024 年 6 月 30 日和 7 月 7 日进行两轮投票。请咨询<link>法国公共管理网站</link>,获取有关在法国立法选举中投票地点和方式的可靠、最新的指导。",
    "The GitHub App installation doesn't have access to this repository. Grant access in your GitHub App installation settings.": "GitHub App 安装没有访问此仓库的权限。请在 GitHub App 安装设置中授予访问权限。",
    "The GitHub App isn't installed on this repository on your GitHub Enterprise instance.": "GitHub App 尚未安装到你 GitHub Enterprise 实例中的此仓库上。",
    "The GitHub CLI enables creating PRs, monitoring CI, and merging directly from the desktop app.": "GitHub CLI 支持直接从桌面端应用创建 PR、监控 CI 以及进行合并。",
    "The GitHub Enterprise configuration for this repository was removed or deactivated.": "此仓库的 GitHub Enterprise 配置已被移除或停用。",
    "The GitHub connector is disabled for your organization. Contact an organization owner to enable it.": "您组织禁用了 GitHub 连接器。请联系组织所有者开启。",
    "The GitHub connector is disabled for your organization. Enable it in Connectors settings to use Claude Code Security.": "您组织的 GitHub 连接器已禁用。在连接器设置中启用它以使用 Claude Code Security。",
    "The GitHub connector is disabled for your organization. Enable it in Connectors settings to use Claude Security.": "你的组织已禁用 GitHub 连接器。请在“连接器”设置中启用它以使用 Claude Security。",
    "The GitHub connector is not enabled for your organization. Ask an organization owner to enable it in <link>Connectors settings</link>.": "您组织尚未启用 GitHub 连接器。请联系组织所有者在<link>连接器设置</link>中启用。",
    "The GitHub connector is not enabled for your organization. Enable it in <link>Connectors settings</link> to connect a GitHub repository.": "您的组织尚未启用 GitHub 连接器。请在<link>连接器设置</link>中启用以连接 GitHub 仓库。",
    "The MCP directory is where Claude users discover and connect to remote MCP servers. Submitting your server here makes it available across Claude apps, the Claude API, and Claude Code once it has been reviewed and published.": "MCP 目录是 Claude 用户发现并连接远程 MCP 服务器的地方。将你的服务器提交到这里后,一旦通过审核并发布,它就会在 Claude 应用、Claude API 和 Claude Code 中可用。",
    "The OAuth client ID Anthropic should use when connecting.": "连接时 Anthropic 应使用的 OAuth 客户端 ID。",
    "The Plugin Directory is a community-driven directory where developers and creators can submit plugins for use in Claude Code & Cowork. This is a separate and complementary directory from the Connectors Directory, which is specific to MCP connectors.": "插件目录是由社区驱动的目录,开发者和创作者可以在此提交插件供 Claude Code 和 Cowork 使用。这是与连接器目录(针对 MCP 连接器)相并行的补充目录。",
    "The SSH server is requesting a password. This password is not stored.": "SSH 服务器请求密码。此密码不会被存储。",
    "The Team plan has a {minimum} member minimum. You can remove this member, but your billing will not change.": "团队方案最少需要 {minimum} 名成员。您可以移除此成员,但您的账单金额不会改变。",
    "The URL provided is invalid": "提供的 URL 无效",
    "The URL provided is too long": "提供的 URL 太长",
    "The URL returned 200 but the body isn't a valid config document.": "该 URL 返回了 200,但响应体不是有效的配置文档。",
    "The URL was not provided by the user nor was it contained in any web search/fetch results": "用户未提供 URL,网页搜索/抓取结果中也未包含该 URL",
    "The USG routinely intercepts and monitors communications on this IS for purposes including, but not limited to, penetration testing, COMSEC monitoring, network operations and defense, personnel misconduct (PM), law enforcement (LE), and counterintelligence (CI) investigations.": "美国政府 (USG) 会定期拦截并监控此信息系统上的通信,目的包括但不限于:渗透测试、通信安全 (COMSEC) 监控、网络运行与防御、人事失信 (PM)、法律执行 (LE) 以及反间谍 (CI) 调查。",
    "The United Kingdom’s general elections will be held on 4 July, 2024. Please visit the <link>UK Election Commission’s website</link> to get reliable, up-to-date, impartial guidance on how and where to vote in the United Kingdom’s general elections.": "英国大选将于 2024 年 7 月 4 日举行。请访问<link>英国选举委员会网站</link>,获取关于如何在英国大选中投票的可靠、最新且公正的指导。",
    "The Way of Code 03": "代码之道 03",
    "The Way of Code 24": "代码之道 24",
    "The Way of Code 35": "代码之道 35",
    "The account signed in to this browser is different from the one used in the Claude Desktop app. Sign out and sign back in with the same account you use in Claude Desktop, then try connecting again.": "在浏览器中登录的账号与 Claude Desktop 应用程序中使用的账号不同。请退出并使用同一个在 Claude Desktop 中使用的账号重新登录,然后尝试重新连接。",
    "The admin email domain doesn't match this organization's domain. Double-check you entered the right organization ID.": "管理员邮箱域名与该组织的域名不匹配。请再次确认你输入了正确的组织 ID。",
    "The amount you paid for unused extra usage ({amount}, before tax) will also be refunded to your card.": "您为未使用的额外用量支付的金额({amount},税前)也将退还到您的卡中。",
    "The amount you paid for unused extra usage ({amount}, before tax) will be refunded to your card.": "您为未使用的额外用量支付的金额({amount},税前)将退还到您的卡中。",
    "The authentication flow (if any) has been verified from a clean account.": "认证流程(如有)已在干净账户上完成验证。",
    "The browser extension is a beta feature with unique risks—stay alert and protect yourself from bad actors.": "浏览器扩展程序是一项处于测试阶段的功能,具有独特的风险——请保持警惕并保护自己免受恶意分子的侵害。",
    "The code itself may still work. To use it, you’ll need a development setup with these libraries installed.": "代码本身可能仍然有效。要使用它,你需要一个安装了这些库的开发环境。",
    "The connector does not persistently store user data": "该连接器不会持久存储用户数据",
    "The copy is added to your personal plugins.": "副本已添加到您的个人插件中。",
    "The copy is added to your personal skills.": "副本已添加到您的个人技能中。",
    "The database has already been provisioned": "数据库已完成配置",
    "The date your server became (or will become) generally available.": "你的服务器正式可用的日期(或将正式可用的日期)。",
    "The desktop app should have downloaded automatically. If not, you can <link>download manually</link>.": "桌面应用应该已自动下载。如果没有,您可以 <link>手动下载</link>。",
    "The document you uploaded is password protected. Please remove the password and try again.": "您上传的文档受密码保护。请移除密码后重试。",
    "The download failed. You can try again.": "下载失败。您可以重试。",
    "The endpoint rejected the request. Check cert trust, IP allowlist, or auth headers.": "端点拒绝了该请求。请检查证书信任、IP 允许列表或认证请求头。",
    "The endpoint returned an error.": "端点返回了错误。",
    "The examples": "这些示例",
    "The examples do most of the work — they show Claude exactly what style to match.": "示例承担了大部分工作——它们可以向 Claude 准确展示要匹配的风格。",
    "The fastest way to talk with Claude": "与 Claude 对话最快的方式",
    "The file format may not be supported or the file may be corrupted.": "文件格式可能不受支持,或者文件可能已损坏。",
    "The file “{fileName}” could not be found.": "找不到文件“{fileName}”。",
    "The following roles have {capability} enabled:": "以下角色已启用 {capability}:",
    "The following tools will be allowed without approvals.": "以下工具将被允许而无需批准。",
    "The generated artifact uses libraries we don’t support:": "生成的构件使用了我们不支持的库:",
    "The highest spend limit across assigned groups": "所分配组中的最高支出限额",
    "The https:// endpoint clients will connect to. We will probe this URL during review.": "客户端将连接到的 https:// 端点。我们会在审核期间探测此 URL。",
    "The image quality is bad": "图片质量很差",
    "The information does not usually directly identify you, but it can give you a more personalized web experience.": "信息通常并不直接识别您的身份,但它可以提供更个性化的 Web 体验。",
    "The installed version is not compatible with this system. Restart the app to download the correct version.": "安装的版本与此系统不兼容。请重启应用以下载正确的版本。",
    "The invite link may be invalid or expired. You can continue setting up your account.": "邀请链接可能无效或已过期。您可以继续设置您的账户。",
    "The invited member ({email}) will no longer be able to join this team.": "受邀成员 ({email}) 将无法再加入此团队。",
    "The last few rows from your app's auth table.": "您应用的身份验证表中的最后几行。",
    "The last scan failed": "上次扫描失败",
    "The last sync failed due to content validation errors. Push a fix to the repository to retry.": "上次同步因内容验证错误而失败。请向仓库推送修复程序以重试。",
    "The last sync failed due to marketplace size violations. Push a fix to the repository to retry.": "上次同步因市场大小违规而失败。请推送修复到仓库以重试。",
    "The license your plugin is distributed under. This can also be added as a LICENSE.txt file in your GitHub repo.": "您的插件所遵循的许可协议。也可以作为 LICENSE.txt 文件添加到您的 GitHub 仓库中。",
    "The lowest spend limit across assigned groups": "所有已分配群组中的最低消费限额",
    "The model can't be changed once a session has started. Start a new session to use a different model.": "会话开始后无法更改模型。请开启新会话以使用其他模型。",
    "The model for this conversation is no longer available.": "此对话使用的模型已不再提供。",
    "The model used in this conversation is no longer available. Switch to continue chatting.": "此对话中使用的模型已不再可用。请切换模型以继续聊天。",
    "The monorepo environment requires the anthropics/anthropic repository.": "monorepo 环境需要 anthropics/anthropic 仓库。",
    "The more Claude knows your setup, the more it can do": "Claude 越了解您的环境设置,能做的就越多",
    "The most usage for your biggest projects": "为你最大的项目提供最多用量",
    "The operation timed out. You can try again.": "操作超时。您可以重试。",
    "The payment method listed below will be charged.": "将从下列付款方式中扣费。",
    "The preview server stopped.": "预览服务器已停止。",
    "The previous run was still in progress.": "上一次运行仍在进行中。",
    "The previous transcript couldn't be found on disk. Send your message again — it will start a fresh session.": "无法在磁盘上找到之前的记录。请重新发送你的消息,这将启动一个全新的会话。",
    "The prompt": "提示词",
    "The prompt should also include the following additional requirements:\n- Choose the most appropriate visualization type based on the analysis\n- For numeric aggregations (sum, average, count), use 'count' type\n- For comparisons between categories, use 'bar_chart'\n- For trends over time, use 'line_chart'\n- For detailed data inspection or pivot tables use 'table'\n- Include meaningful labels and titles where appropriate\n- Handle edge cases gracefully (empty data, missing values, etc.)": "提示词还应包括以下额外要求:\n- 基于分析结果选择最合适的可视化类型\n- 对于数值聚合(求和、平均值、计数),使用 'count' 类型\n- 对于类别间的比较,使用 'bar_chart' (条形图)\n- 对于随时间变化的趋势,使用 'line_chart' (折线图)\n- 对于详细数据查看或数据透视表,使用 'table' (表格)\n- 在适当处包含有意义的标签和标题\n- 优雅地处理边缘情况(空数据、缺失值等)",
    "The provider didn't respond. Check your network or VPN, then try again.": "提供方没有响应。请检查你的网络或 VPN,然后重试。",
    "The provider didn't respond. Check your network or VPN. If the issue persists, your IT team may need to allowlist the host.": "提供方未响应。请检查你的网络或 VPN。如果问题持续,你的 IT 团队可能需要将该主机加入允许名单。",
    "The provider rejected the credentials IT configured. This usually means an expired key or wrong region.": "提供方拒绝了 IT 配置的凭据。这通常意味着密钥已过期或区域错误。",
    "The provider rejected your credentials. Re-enter them in Setup.": "服务提供方拒绝了你的凭据。请在设置中重新输入。",
    "The recipe for pixel avatars": "像素头像的配方",
    "The remote branch has changes that aren't present locally. Claude can pull the latest changes and resolve any conflicts.": "远程分支有本地尚不具备的更改。Claude 可以拉取最新更改并处理任何冲突。",
    "The requested artifact either doesn't exist or you don't have permission to access it.": "请求的 Artifact 不存在,或者您没有访问权限。",
    "The requested artifact either doesn’t exist or you don’t have permission to access it.": "请求的构件不存在,或者您没有访问权限。",
    "The requested conversation either doesn’t exist or you don’t have permission to access it.": "请求的对话不存在或您没有访问权限。",
    "The rest of the <link>thought process</link> is not available for this response.": "此回复不提供其余的<link>思考过程</link>。",
    "The same attachment was already added earlier. Claude sees the full conversation when replying, so there's no need to re-upload.": "同一附件刚才已添加过。Claude 在回复时能看到完整的对话,因此无需重复上传。",
    "The same numbers powering the Productivity and Insights tabs, surfaced here so you can sanity-check the inputs.": "这里显示的是驱动“生产力”和“洞察”标签页的相同数据,方便你核对输入是否合理。",
    "The scan failed after multiple attempts. You can try again later.": "多次尝试后扫描失败。您可以稍后再试。",
    "The scan timed out without completing. You can try running it again.": "扫描超时,未能完成。您可以尝试重新运行。",
    "The scanning service encountered an error. You can try running the scan again.": "扫描服务遇到错误。您可以尝试重新运行扫描。",
    "The skill \"{skillName}\" needs to be enabled to use this prompt. Enable it now?": "需要启用技能 \"{skillName}\" 才能使用此提示词。现在启用吗?",
    "The study is conducted by the Anthropic Interviewer, an AI that asks you questions about your experiences. <learnMoreLink>Learn more</learnMoreLink>.": "本研究由 Anthropic 面试官(一个询问您经历的 AI)主持。<learnMoreLink>了解更多</learnMoreLink>。",
    "The subscription cost is too high for me": "订阅成本对我来说太高了",
    "The sync operation failed.": "同步操作失败。",
    "The text encoding for <b>{fileName}</b> could not be determined. Choose an encoding and verify with the preview.": "无法确定 <b>{fileName}</b> 的文本编码。请选择一种编码并通过预览进行验证。",
    "The title of the document you uploaded is too long, or includes forbidden characters (<, >, :, \", |, ?, *, \\, /, or unicode characters 0-31)": "您上传的文档标题太长,或包含禁用字符 (<, >, :, \", |, ?, *, \\, /, 或 unicode 字符 0-31)",
    "The trick": "窍门/技巧",
    "The verification status could not be retrieved. Please start over.": "无法检索验证状态。请重新开始。",
    "The wait is over: try Cowork today": "等待结束:今天就试试 Cowork",
    "The {currency} amounts may vary based on exchange rates at the time of payment.": "{currency} 金额可能会因付款时的汇率而有所不同。",
    "The {pluginName} plugin includes the following MCP servers that run local processes in your Cowork:": "“{pluginName}”插件包含如下 MCP 服务器,它们会在您的 Cowork 中运行本地进程:",
    "The {pluginName} plugin includes the following MCP servers that run local processes on your computer:": "“{pluginName}”插件包含如下 MCP 服务器,它们会在您的电脑上运行本地进程:",
    "The {role} group hasn't been detected in your IdP yet. Run a SCIM sync and check again.": "{role} 分组尚未在您的 IdP 中检测到。请运行一次 SCIM 同步并再次检查。",
    "Theme": "主题",
    "Then ask Claude about any cell, formula, or tab.": "然后就任何单元格、公式或工作表向 Claude 提问。",
    "Then paste the guide below into Claude Code — Claude will walk through your team's setup and get you started.": "然后将下面的指南粘贴到 Claude Code 中,Claude 会引导你完成团队设置并帮助你开始使用。",
    "Then start working: produce the first useful output right away — a draft, an outline, the first part of the answer. Don't describe what you could do; do it.": "然后开始工作:立刻产出第一个有用的结果——草稿、提纲,或答案的第一部分。不要描述你能做什么;直接去做。",
    "Then ~{amount}/{interval}": "然后约 {amount}/{interval}",
    "Then —": "然后 —",
    "There has been an error while loading the conversation. Please try again later.": "加载对话时出错了。请稍后再试。",
    "There is a connection issue. You can try reconnecting.": "存在连接问题。您可以尝试重新连接。",
    "There was a problem loading your account data. You can try again or check back later.": "加载账户数据时出现问题。您可以重试或稍后再试。",
    "There was an error completing authentication. Please confirm that you have permission to access the service, that you're using the correct credentials, and that your server handles auth correctly.": "完成身份验证时出错了。请确认您有权访问该服务,使用了正确的凭据,并且您的服务器正确处理了身份验证请求。",
    "There was an error logging in. If you believe you received this message in error, please <link>contact support</link>.": "登录出错。如果您认为收到此消息是个错误,请<link>联系支持团队</link>。",
    "There was an error logging you in. {emailSupport}": "登录时出错。{emailSupport}",
    "There was an error processing your authentication request. Please try logging in again.": "处理您的身份验证请求时出错。请重新尝试登录。",
    "There was an error resending the invitation": "重新发送邀请时出错",
    "There was an error sending you a login link. If the problem persists <link>contact support</link> for assistance.": "发送登录链接时出错。如果问题持续存在,<link>联系支持</link>寻求帮助。",
    "There was an error starting authentication. Please check your server URL and make sure your server handles auth correctly.": "开始身份验证时出错。请检查您的服务器 URL 并确保您的服务器正确处理了身份验证。",
    "There was an error submitting your request. Please try again later.": "提交申请时发生错误。请稍后重试。",
    "There was an error updating the limit. You can try again.": "更新限额时出错了。您可以重试。",
    "There was an error verifying your code. If the problem persists <link>contact support</link> for assistance.": "验证您的代码时出错了。如果问题仍然存在,请<link>联系支持人员</link>获取协助。",
    "There was an issue accessing Claude Code. Try signing out and back in, or contact support if the problem persists.": "访问 Claude Code 时出现问题。请尝试退出并重新登录,如果问题仍然存在,请联系支持团队。",
    "There's a concept I want to actually understand, not just get a definition of. Ask me what it is and what I already know, then break it down from there.": "有一个概念我想真正理解,而不仅仅是得到一个定义。请问我这个概念是什么以及我已经了解了什么,然后从那里开始深入浅出地讲解。",
    "There’s an existing skill with the same name. Uploading this skill will replace the existing one, which can’t be restored.": "已存在同名技能。上传此技能将替换现有技能,且无法恢复。",
    "There’s another way to code": "编码还有另一种方式",
    "These are good candidates for adding to your Parent Organization.": "这些是添加到父组织的好候选者。",
    "These changes take effect immediately upon confirmation.": "这些更改将在确认后立即生效。",
    "These instructions for Claude apply to every conversation across your org and take priority over users' profile instructions. They're good for compliance rules, data handling, or formatting standards. Changes may take up to 1 hour to take effect.": "这些面向 Claude 的指令适用于你整个组织内的每一次对话,并且优先于用户的个人资料指令。它们适合用于合规规则、数据处理或格式标准。更改最多可能需要 1 小时生效。",
    "These members will revert to their respective group default spend limits.": "这些成员将恢复为其各自的分组默认支出限额。",
    "These members will revert to their respective seat tier default limits.": "这些成员将恢复为其各自席位等级的默认限额。",
    "These plugins and their data will be removed from this container.": "这些插件及其数据将从此容器中删除。",
    "These restrictions apply to the connectors listed on this page, when used in <b>Claude.ai</b>, <b>Claude Desktop</b>, or <b>Claude Code on the web</b>.": "这些限制适用于此页面上列出的连接器,当它们在 <b>Claude.ai</b>、<b>Claude 桌面端</b>或 <b>网页版 Claude Code</b> 中使用时。",
    "These seat types can't be combined on the same subscription.": "这些席位类型不能在同一订阅中组合使用。",
    "These should likely all be under your Parent Organization.": "这些内容可能都应该归于您的母组织(Parent Organization)之下。",
    "These tasks run locally and aren't synced across devices": "这些任务在本地运行,不会跨设备同步",
    "These tools are intended for extension developers only. Using them incorrectly may cause extensions to malfunction or compromise your system security.": "这些工具仅供扩展开发者使用。错误使用可能导致扩展故障或危及系统安全。",
    "They don't apply to <b>Claude Code CLI</b> (including when it connects to these same connectors), <b>Desktop Extensions</b>, or the <b>Claude API</b> — those are controlled separately. See <docsLink>Managed MCP for Claude Code</docsLink> and the Desktop extension allowlist on this page.": "这些限制不适用于 <b>Claude Code CLI</b>(包括其连接到这些相同连接器的情况)、<b>桌面扩展</b>或 <b>Claude API</b> —— 这些是由单独控制的。请参阅此页面上的 <docsLink>适用于 Claude Code 的托管 MCP</docsLink> 和桌面扩展白名单。",
    "They'll also get Claude in:": "他们还将在以下位置获得 Claude:",
    "They’ll be able to continue previous chats referencing {serverName} content, but Claude won’t be able to access new content or perform new tasks.": "他们将能够继续引用 {serverName} 内容的过往聊天,但 Claude 将无法访问新内容或执行新任务。",
    "Thick brush": "粗画笔",
    "Thin brush": "细笔刷",
    "Things to try": "值得尝试的事情",
    "Things you should know about Claude": "您应该了解的关于 Claude 的事项",
    "Think": "思考",
    "Think fast,{br}build faster": "快速思考,{br}更快构建",
    "Think it through with Claude": "与 Claude 一起思考",
    "Think longer for complex tasks": "为复杂任务进行更长时间的思考",
    "Think of these as reusable starting points you can tweak later. Uncheck any you don't want.": "把这些看作可重复使用的起点,之后还可以调整。取消勾选你不需要的项。",
    "Think step by step and show reasoning for complex problems. Use specific examples.": "面对复杂问题,请分步骤思考并展示推理过程。使用具体的例子。",
    "Think through a differential": "梳理鉴别诊断",
    "Think through a differential with me for a presentation I'll describe — for learning, not medical advice.": "就我将描述的一个演示案例,和我一起梳理鉴别诊断——仅用于学习,不构成医疗建议。",
    "Think through a product problem": "思考产品问题",
    "Think through anything with Claude—from big ideas to quick questions. Your chats will show up here.": "与Claude一起思考——从重大想法到简单问题。您的对话将显示在这里。",
    "Think through decisions and pressure-test your pitch.": "思考决策并压力测试您的提案。",
    "Think through decisions, sharpen your spec, and draft messages.": "思考决策、完善规范并起草消息。",
    "Thinking": "思考中",
    "Thinking about what to suggest…": "正在思考该建议什么…",
    "Thinking...": "正在思考...",
    "Thinking…": "思考中…",
    "Thinks for more complex tasks": "适用于更复杂任务的思考模式",
    "This Canvas instance will remain configured and can be re-enabled at any time.": "此 Canvas 实例将保持配置状态,并可随时重新启用。",
    "This IS includes security measures (e.g., authentication and access controls) to protect USG interests-not for your personal benefit or privacy.": "此信息系统包含安全措施(如身份验证和访问控制)以保护美国政府 (USG) 的利益——并非为了您的个人利益或隐私。",
    "This PDF was converted to text due to its large size": "由于文件过大,此 PDF 已转换为文本",
    "This Remote Control session has ended. Start a new one from your terminal.": "此远程控制会话已结束。请从终端启动一个新的会话。",
    "This Remote Control session has no transcript to resume yet": "此远程控制会话尚无可恢复的记录",
    "This Remote Control session has no transcript to resume yet. Send a message in the local Claude Code session first.": "此远程控制会话还没有可恢复的记录。请先在本地 Claude Code 会话中发送一条消息。",
    "This SSH connection is managed by your organization and cannot be edited.": "此 SSH 连接由您的组织管理,无法进行编辑。",
    "This SSH connection was auto-discovered from your Coder workspaces and cannot be edited here.": "此 SSH 连接是从您的 Coder 工作区自动发现的,无法在此处编辑。",
    "This account is not approved by your enterprise admin": "此账号未经您的企业管理员批准",
    "This account isn't eligible for a team trial. Contact support if you believe this is an error.": "此账号没有团队试用资格。如果您认为这是错误,请联系支持团队。",
    "This action cannot be reversed.": "此操作无法撤销。",
    "This action cannot be undone.": "此操作无法撤销。",
    "This action wasn't completed.": "此操作未完成。",
    "This action will:": "此操作将:",
    "This app wants to download a file to your device:": "此应用想要下载文件到您的设备:",
    "This app wants to download {count} files to your device:": "此应用想要下载 {count} 个文件到您的设备:",
    "This application didn't meet the offer's eligibility requirements.": "此申请未满足该优惠的资格要求。",
    "This artifact requires connectors not available in your organization: {names}. Live artifacts can only be shared within the same organization.": "此工件需要你的组织中不可用的连接器:{names}。实时工件只能在同一组织内共享。",
    "This artifact requires connectors not available in your organization: {names}. Live dashboards can only be shared within the same organization.": "此工件需要您组织中不可用的连接器:{names}。实时仪表板只能在同一组织内共享。",
    "This artifact requires specific connections to fulfill its full potential. Review what you’re comfortable sharing with Claude.": "此工件需要特定连接才能充分发挥其能力。请确认你愿意与 Claude 分享哪些内容。",
    "This artifact requires these connections to work fully. Anthropic can’t guarantee third-party integrations. Use at your own risk.": "此工件需要这些连接才能完整运行。Anthropic 无法保证第三方集成,请自行承担风险。",
    "This artifact wants to access shared data that other users of this artifact can see. You might see unverified content from others, and any data you save will be visible to them. Make sure you aren’t sharing sensitive information.": "此工件希望访问该工件其他用户可见的共享数据。你可能会看到来自其他人的未验证内容,而你保存的任何数据他们也都能看到。请确保你没有分享敏感信息。",
    "This artifact was created in a private project. Anyone in your organization who has access to this project will be able to view this artifact.": "此构件是在私有项目中创建的。您组织中凡有权访问此项目的人员均可查看此构件。",
    "This artifact was created in a private project. Sharing it will make it viewable by anyone in your organization with the link, not just project members. Don't share artifacts containing sensitive information.": "此 Artifact 是在一个私有项目中创建的。共享它将使组织内拥有链接的任何人都可以查看,而不仅仅是项目成员。请勿共享包含敏感信息的 Artifact。",
    "This artifact was created in the context of a private project that you don't have access to.": "此 Artifact 是在您没有访问权限的私有项目背景下创建的。",
    "This artifact was created in the context of a private project that you don’t have access to.": "此构件是在您无权访问的私有项目背景下创建的。",
    "This artifact was previously unpublished. Create a new artifact to publish again.": "该构件此前已被取消发布。请创建一个新的构件以重新发布。",
    "This artifact will have access to these connectors without approvals:": "此工件将无需审批即可访问这些连接器:",
    "This artifact's access to Claude is disabled for your organization. Contact your administrator to enable it.": "你所在组织已禁用此工件对 Claude 的访问。请联系管理员启用。",
    "This artifact's folder is missing on disk. It may have been moved or deleted outside of Claude.": "此工件的文件夹在磁盘上缺失。它可能已在 Claude 之外被移动或删除。",
    "This beta experience is designed for AI-experienced users who understand these safety measures.": "此测试版体验专为了解这些安全措施的 AI 经验用户设计。",
    "This can take a few minutes.": "这可能需要几分钟。",
    "This can’t be undone. If you want to research this topic again, you can ask in this chat or start a new session.": "此操作无法撤销。如果您想再次研究此主题,可以在此对话中提问或开启新会话。",
    "This change will take effect at the start of your next billing cycle on {date}.": "此项更改将于您在 {date} 的下一个计费周期开始时生效。",
    "This chat cannot be shared.": "此聊天无法分享。",
    "This chat does not exist or was deleted": "此聊天不存在或已被删除",
    "This chat is in <span>{projectName}</span>. Select a different project to move it to.": "此聊天当前位于 <span>{projectName}</span>。请选择不同的项目进行移动。",
    "This code has expired or was already used. Return to the app and start sign-in again.": "此代码已过期或已被使用。请返回应用并重新开始登录。",
    "This coding tutor will analyze your code and help you learn how to write better code": "这位编程导师将分析你的代码并帮助你学习如何编写更好的代码",
    "This configuration contains sensitive values. They will be written to the exported file in plain text.": "此配置包含敏感值。导出时,它们将以明文写入文件。",
    "This configuration is fetched from a bootstrap URL at launch. Fields it provides are locked below.": "此配置会在启动时从引导 URL 获取。它提供的字段在下方已锁定。",
    "This configuration is managed by your organization. Contact your IT administrator to make changes.": "此配置由你的组织管理。请联系你的 IT 管理员进行更改。",
    "This connector": "此连接器",
    "This connector does not connect to any third-party services": "此连接器不连接任何第三方服务",
    "This connector has a server configuration issue. Contact the connector provider.": "此连接器存在服务器配置问题。请联系连接器提供商。",
    "This connector has known issues": "此连接器存在已知问题",
    "This connector has no tools available": "此连接器没有可用工具",
    "This connector has no tools available.": "此连接器暂无可用工具。",
    "This connector is receiving too many requests. Wait a moment and try again.": "此连接器收到的请求过多。请稍等片刻后重试。",
    "This connector is required by the following {count, plural, one {plugin} other {plugins}}:": "下列 {count, plural, one {个插件} other {个插件}}需要此连接器:",
    "This connector must be enabled from the connectors page.": "必须在连接器页面启用此连接器。",
    "This connector needs to be configured before it can be enabled.": "此连接器需要先进行配置才能启用。",
    "This connector was suggested by an external link. Verify the name and URL are from a developer you trust before adding.": "此连接器是通过外部链接建议的。在添加前,请确保其名称和 URL 均来自您信任的开发者。",
    "This connector's server is currently unavailable. Try again in a moment.": "此连接器的服务器当前不可用。请稍后重试。",
    "This conversation can't be compacted any further. <newChatLink>Start a new chat</newChatLink> to continue.": "此对话无法进一步压缩。<newChatLink>开始新对话</newChatLink>以继续。",
    "This conversation has reached its <link>maximum length</link>.": "此对话已达到<link>最大长度</link>。",
    "This conversation has reached its <link>maximum length</link>. You may want to remove some files from your project’s knowledge base.": "此对话已达到<link>最大长度</link>。您可能希望从项目的知识库中删除一些文件。",
    "This conversation has reached its length limit.": "此对话已达到长度限制。",
    "This conversation is too long to continue. <newChatLink>Start a new chat</newChatLink>, or remove some tools to free up space.": "对话内容过长,无法继续。请<newChatLink>开始新对话</newChatLink>,或移除部分工具以腾出空间。",
    "This corporate identity belongs to an enterprise that manages access through their own Claude account. Sign in to your organization's Claude account to use this connection.": "此企业身份属于通过其自己的 Claude 账户管理访问权限的企业。请登录您组织的 Claude 账户以使用此连接。",
    "This creates a URL that other apps can use to wake Conway.": "这将创建一个 URL,供其他应用唤醒 Conway。",
    "This data goes to Segment and <hexLink>Hex dashboards</hexLink>. We also very much value direct feedback in Slack: <slackLink>{slackChannelName}</slackLink>": "这些数据将发送至 Segment 和 <hexLink>Hex 仪表盘</hexLink>。我们也非常重视 Slack 中的直接反馈:<slackLink>{slackChannelName}</slackLink>",
    "This email is already associated with another account or was used too recently": "此电子邮件已与其他账户关联或最近使用太频繁",
    "This email isn't eligible for a Team plan.": "此邮箱不符合团队方案资格。",
    "This email isn't eligible for an Enterprise plan.": "此邮箱不符合企业方案资格。",
    "This enterprise order has already been submitted.": "此企业版订单已经提交。",
    "This environment has reached its session limit ({activeCount}/{maxSessions}). End a session to start a new one.": "此环境已达到会话限制 ({activeCount}/{maxSessions})。请结束一个会话以开始新会话。",
    "This environment has {count, plural, one {# item} other {# items}} in its work queue. Deleting it will interrupt any in-progress work. This action cannot be undone.": "此环境的工作队列中有 {count, plural, one {# 个项目} other {# 个项目}}。删除它将中断任何正在进行的工作。此操作无法撤销。",
    "This environment is being used by <link>{sessionTitle}</link>.": "在此环境中正在被 <link>{sessionTitle}</link> 使用。",
    "This environment is currently in use. You can try again once the active session ends.": "该环境当前正在使用中。待活跃会话结束后,您可以重试。",
    "This environment is now used by <link>{sessionTitle}</link>.": "此环境现在由 <link>{sessionTitle}</link> 使用。",
    "This extension cannot be installed. Contact your organization owner.": "无法安装此扩展程序。请联系您的组织所有者。",
    "This extension is not compatible with your device.": "此扩展程序与您的设备不兼容。",
    "This extension may not work correctly until all requirements are met.": "此扩展程序在满足所有要求之前可能无法正常工作。",
    "This extension requires {requirement}.": "此扩展程序需要 {requirement}。",
    "This extension requires: {requirements}.": "此扩展程序需要:{requirements}。",
    "This feature gives Claude internet access to create and analyze files, which has <a>security risks</a>. Admins should assess whether this capability meets their organization's security and compliance standards. ": "此功能赋予 Claude 互联网访问权限,以创建和分析文件,这具有 <a>安全风险</a>。管理员应评估此功能是否符合其组织的安全与合规标准。",
    "This feature gives Claude network access to create and analyze files, which has <a>security risks</a>. Monitor chats closely when using this feature.": "该功能赋予 Claude 网络访问权限以创建和分析文件,这具有 <a>安全风险</a>。使用此功能时请密切监控对话内容。",
    "This feature has been disabled by an organization owner.": "此功能已被组织所有者禁用。",
    "This feature has been disabled by your administrator.": "此功能已被您的管理员禁用。",
    "This feature is disabled for your organization.": "此功能已在您的组织中禁用。",
    "This feature is not currently enabled.": "此功能目前未启用。",
    "This feature is temporarily unavailable. You can check back later.": "此功能暂时不可用。您可以稍后再来查看。",
    "This feature requires a newer version of the desktop app.": "此功能需要更新版本的桌面应用。",
    "This feedback helps us improve experimental features for Anthropic employees.": "这些反馈有助于我们为 Anthropic 员工改进实验性功能。",
    "This field is required.": "此字段为必填项。",
    "This field must be checked.": "必须勾选此字段。",
    "This file can't be saved — its path is outside the session folder, or this is a remote session.": "无法保存此文件 — 其路径在会话文件夹之外,或这是远程会话。",
    "This file changed on disk since you started editing.": "自您开始编辑以来,此文件在磁盘上已更改。",
    "This file has changed since it was shared. Collaborators are viewing an older version and can only comment on the latest one.": "此文件在共享后已发生更改。协作者正在查看旧版本,并且只能对最新版本发表评论。",
    "This file is binary and cannot be shared as an artifact.": "此文件是二进制文件,无法作为工件共享。",
    "This file is binary. Claude Code only accepts text files.": "这是二进制文件。Claude Code 仅接受文本文件。",
    "This file is empty.": "此文件为空。",
    "This file is too large to share (over 1M characters).": "此文件太大,无法分享(超过 100 万字符)。",
    "This file type cannot be opened in Google Drive.": "此文件类型无法在 Google 云端硬盘中打开。",
    "This file type cannot be opened.": "此文件类型无法打开。",
    "This file was deleted.": "此文件已删除。",
    "This finding is already dismissed.": "此项发现已被忽略。",
    "This finding is already fixed.": "此发现已修复。",
    "This finding isn't dismissed.": "此发现未被忽略。",
    "This folder is inside a .claude directory. Claude will ask before every file edit, even in bypass mode.": "此文件夹位于 .claude 目录中。即使在绕过模式下,Claude 也会在每次编辑文件前询问。",
    "This folder isn't trusted yet. Open it from Claude Code first to trust it.": "此文件夹尚未受信任。请先从 Claude Code 打开它以信任它。",
    "This gift cannot be redeemed with your current account.": "这份礼品无法使用您当前的账户兑换。",
    "This gift code is invalid or has expired.": "此礼品码无效或已过期。",
    "This gift code is invalid or has expired. Please check the link and try again.": "该礼品代码无效或已过期。请检查链接并重试。",
    "This helps Claude make better suggestions.": "这有助于 Claude 提出更好的建议。",
    "This helps us verify your account.": "这有助于我们验证您的账户。",
    "This host isn't supported. Use {hosts}, or a GitHub Enterprise instance configured by your organization.": "不支持此主机。请使用 {hosts},或由您组织配置的 GitHub Enterprise 实例。",
    "This host isn't supported. Use {hosts}.": "不支持此主机。请使用 {hosts}。",
    "This image is too large to send. Rewind to remove it and try again.": "此图片过大,无法发送。请回退将其移除后重试。",
    "This includes all files and subfolders. Claude will be able to read, edit, and permanently delete—and may share file contents with third-party tools it connects to. Be careful about exposing sensitive information.": "这包括所有文件和子文件夹。Claude 将能读取、编辑并永久删除这些内容——并且可能会与它连接的第三方工具共享文件内容。请谨慎暴露敏感信息。",
    "This information appears on your connector's directory page.": "此信息会显示在你的连接器目录页面上。",
    "This invitation may have been used already or may be expired.": "此邀请可能已被使用或已过期。",
    "This invite is meant for {inviteEmail}, but you are logged in as {currentEmail}.": "此邀请适用于 {inviteEmail},但您当前登录的是 {currentEmail}。",
    "This invite link is no longer valid.": "此邀请链接已不再有效。",
    "This is a Beta governed by Anthropic's Commercial Terms of Service, Usage Policy, and other applicable terms.": "这是一个 Beta 版,受 Anthropic 的商业服务条款、使用政策和其他适用条款约束。",
    "This is a Google extension. The use of information received from Google APIs will adhere to the Chrome Web Store User Data Policy, including the Limited Use requirements.": "这是一个 Google 扩展程序。所接收来自 Google API 信息的使用将遵循 Chrome 网上应用店用户数据政策,包括有限使用要求。",
    "This is a beta feature designed to scan repositories you own, maintain, or are otherwise authorized to administer. You may not use Claude Security to scan or review repositories, systems, or codebases that you do not own or lack permission to review.": "这是一个测试版功能,用于扫描你拥有、维护或经授权管理的代码仓库。你不得使用 Claude Security 扫描或审查你不拥有或无权审查的仓库、系统或代码库。",
    "This is a beta feature designed to scan repositories your company owns, maintains, or is otherwise authorized to administer. You may not use Claude Security to scan or review repositories, systems, or codebases that your company does not own or lacks permission to review.": "这是一个测试版功能,用于扫描你的公司拥有、维护或经授权管理的代码仓库。你不得使用 Claude Security 扫描或审查你的公司不拥有或无权审查的仓库、系统或代码库。",
    "This is a confidential Research Preview governed by Anthropic's Commercial Terms of Service, Usage Policy, and other applicable terms.": "这是一个保密的研究预览版,受 Anthropic 的商业服务条款、使用政策和其他适用条款约束。",
    "This is a copy of a chat between Claude and a user. Content may include unverified or unsafe content that do not represent the views of Anthropic. Shared snapshot may contain attachments and data not displayed here.": "这是 Claude 与用户之间聊天记录的副本。内容可能包含不代表 Anthropic 观点的未经核实或不安全的内容。共享快照可能包含此处未显示的附件和数据。",
    "This is a copy of a chat between Claude and {sharedBy}. Content may include unverified or unsafe content that do not represent the views of Anthropic. Shared snapshot may contain attachments and data not displayed here.": "这是 Claude 与 {sharedBy} 之间对话的副本。内容可能包含未经验证或不安全的内容,不代表 Anthropic 的观点。共享快照可能包含此处未显示的附件和数据。",
    "This is a demo feature only. Do not share any sensitive Anthropic data, confidential information, or proprietary materials in meetings with this bot.": "这仅是一项演示功能。请勿在此机器人的会议中分享任何敏感的 Anthropic 数据、机密信息或所有权材料。",
    "This is a gift subscription": "这是礼品订阅",
    "This is a problem with the connector's server, not your account. Reconnecting may not help until the provider resolves it.": "这是连接器服务器的问题,而非您的账号问题。在服务商解决该问题前,重新连接可能无效。",
    "This is a research preview. Start with tasks where mistakes are easy to fix. <link>Read safe use tips</link>": "这是研究预览版。请从错误易于修复的任务开始。<link>阅读安全使用提示</link>",
    "This is a test component to verify that the automatic translation workflow works correctly and securely.": "这是一个测试组件,用于验证自动翻译工作流是否正确且安全地工作。",
    "This is an example project. Create a new project to work with your own documents.": "这是一个示例项目。创建一个新项目以处理您自己的文档。",
    "This is an upgrade to the analysis tool. It does not support versioning or remixing of Artifacts.": "这是对分析工具的升级。它不支持构件 (Artifacts) 的版本控制或二次创作。",
    "This is required for Safari and other browsers with strict privacy settings.": "这适用于 Safari 及其他具有严格隐私设置的浏览器。",
    "This is taking longer than expected. If it continues, you can <link>contact support</link>.": "这比预期花费更长时间。如果继续等待,您可以 <link>联系支持</link>。",
    "This is taking longer than usual": "这比平时花费更长时间",
    "This is what people see when your link is shared on Slack, Twitter, or in messages. 1200 × 630 works best. You'll need to publish for it to take effect.": "这是当你的链接在 Slack、Twitter 或消息中分享时人们看到的内容。1200 × 630 效果最佳。你需要发布后它才会生效。",
    "This is your current session. Logging out will end your session and you will need to sign in again.": "这是您当前的会话。退出将结束会话,您需要重新登录。",
    "This isn't something I can help with here.": "这不是我能在这里提供帮助的内容。",
    "This isn't working right now. You can try again later.": "目前无法正常运行。您可以稍后再试。",
    "This key stays in your list as {badge} for the audit trail.": "此密钥将作为 {badge} 保留在您的列表中以供审计跟踪。",
    "This link contains an internationalized domain name that may be deceptive. The domain appears as:": "此链接包含可能具有误导性的国际化域名。该域名显示为:",
    "This link has already been used": "此链接已被使用",
    "This link has expired": "此链接已过期",
    "This link is not valid": "此链接无效",
    "This marketplace could not be accessed. If this is a private repository hosted on github.com, enter a personal access token below.": "该市场无法访问。如果是托管在 github.com 上的私有仓库,请在下面输入个人访问令牌。",
    "This marketplace could not be accessed. Private repositories are only supported using the GitHub owner/repo format.": "该市场无法访问。私有代码仓库仅支持使用 GitHub “所有者/仓库”的格式。",
    "This marketplace exceeds size or plugin count limits.": "此市场超出大小或插件数量限制。",
    "This marketplace is already added.": "此市场已添加。",
    "This marketplace is already connected.": "此市场已连接。",
    "This marketplace is already included by default. (see \"By {name}\")": "此市场默认已包含(参见 “由 {name} 提供”)。",
    "This marketplace uses a reserved name and can't be added.": "此市场使用保留名称,无法添加。",
    "This may be because of network issues. You can try reloading the page.": "这可能是因为网络问题。您可以尝试重新加载页面。",
    "This may take a moment for large repositories.": "大型仓库可能需要片刻时间。",
    "This member does not have a seat tier assigned": "该成员未被分配席位等级",
    "This member has full access through the {roleLabel} role. Custom roles have no effect for this member.": "此成员通过 {roleLabel} 角色拥有完整访问权限。自定义角色对该成员无效。",
    "This member will revert to their group’s default spend limit.": "该成员将恢复为其分组的默认支出限额。",
    "This member will revert to their seat tier’s default limit.": "该成员将恢复到其席位层级的默认限制。",
    "This memory is empty.": "此记忆为空。",
    "This memory will be permanently deleted. Claude won't reference it in future sessions.": "此记忆将被永久删除。Claude 在未来会话中将不再引用它。",
    "This model doesn't support images in this conversation.": "此模型在此对话中不支持图片。",
    "This model is not available for your current plan": "此模型不适用于您当前的方案",
    "This model isn’t available right now. You can switch to another model to continue using Claude.": "此模型目前不可用。您可以切换到其他模型以继续使用 Claude。",
    "This name is reserved. Please choose a different name.": "此名称已被保留。请选择其他名称。",
    "This name will appear on your invoices.": "此名称将显示在您的发票上。",
    "This new task will include this project's instructions and files.": "此新任务将包含该项目的配套指令和文件。",
    "This number can't receive text messages. Use a mobile number.": "此号码无法接收短信。请使用移动电话号码。",
    "This offer has already been applied to your account.": "此优惠已应用到你的账户。",
    "This offer is available to portfolio companies of the offering partner.": "此优惠适用于提供方合作伙伴的投资组合公司。",
    "This offer is no longer available.": "此优惠已失效。",
    "This offer isn't available in your billing currency. Change your billing address to use a supported currency.": "此优惠在您的结算货币下不可用。请更改账单地址以使用支持的货币。",
    "This offer isn't available in {currency}": "此优惠不可用,因为它不支持 {currency}",
    "This offer requires a company email address. Sign in with your work email to continue.": "此优惠需要公司电子邮箱地址。请使用您的工作邮箱登录以继续。",
    "This offer requires a valid signup code. Check the link you received or contact your partner for a new one.": "此优惠需要有效的注册码。请检查您收到的链接,或联系您的合作伙伴获取新代码。",
    "This onboarding guide doesn't exist or was removed.": "此入门指南不存在或已被移除。",
    "This one-time routine has run. Set a new schedule to run it again.": "此一次性例程已运行。请设置新计划以再次运行。",
    "This option isn't available right now.": "此选项目前不可用。",
    "This org only": "仅限此组织",
    "This org's team memory is set to a group-restricted mode that is currently unavailable. Select a new mode below.": "此组织的团队记忆设置为当前不可用的群组受限模式。请在下方选择新模式。",
    "This organization isn't eligible for upgrade": "此组织不符合升级条件",
    "This organization uses SSO for member management.": "此组织使用 SSO 进行成员管理。",
    "This permanently deletes <b>{poolName}</b> and cannot be undone.": "这将永久删除 <b>{poolName}</b>,且无法撤销。",
    "This person will be the primary administrator for your Claude Enterprise account": "此人将是您 Claude Enterprise 账户的主要管理员",
    "This phone number isn't valid. Check the country code and number.": "此电话号码无效。请检查国家代码和号码。",
    "This plugin can't be removed because it contains skills required to work with other plugins.": "此插件无法移除,因为它包含其他插件工作所需的技能。",
    "This plugin doesn't have any skills or agents.": "此插件没有任何技能或智能体。",
    "This plugin has no agents.": "此插件没有智能体。",
    "This plugin has no hooks.": "此插件没有钩子 (Hook)。",
    "This plugin has no required connectors.": "此插件不需要任何连接器。",
    "This plugin has no skills.": "此插件没有技能(Skills)。",
    "This plugin includes local MCP servers": "此插件包含本地 MCP 服务器",
    "This plugin indicates that it'd like your explicit permission for certain operations. Choose how Claude is allowed to use those abilities.": "此插件表明其某些操作需要您的明确许可。请选择 Claude 被允许如何使用这些能力。",
    "This plugin is managed by your organization.": "此插件由您的组织管理。",
    "This plugin is required by your organization.": "您组织要求安装此插件。",
    "This plugin uses connectors that aren't enabled for your organization. Add them so your team can use this plugin.": "此插件使用未为您的组织启用的连接器。添加它们以便您的团队可以使用此插件。",
    "This preview contains {count} changes, which is too many to display in detail. Download the CSV to see all changes.": "此预览包含 {count} 项修改,数量过多无法详细展示。请下载 CSV 文件以查看所有更改。",
    "This project (personal)": "此项目(个人)",
    "This project (shared)": "此项目(共享)",
    "This project is archived. No new chats can be created.": "此项目已归档。无法创建新聊天。",
    "This project is published. Deleting it will take your site offline and permanently remove its database. This can't be undone.": "此项目已发布。删除操作将导致您的网站下线并永久删除其数据库。此操作无法撤销。",
    "This project is published. Deleting it will take your site offline and permanently remove its database. This can’t be undone.": "此项目已发布。删除它将使您的站点离线并永久删除其数据库。这无法撤消。",
    "This project isn't available to remix.": "此项目不可用于 Remix。",
    "This project may have been removed or doesn't exist.": "此项目可能已被删除或不存在。",
    "This project requires specific connectors to fulfill its full potential:": "此项目需要特定的连接器才能发挥其全部潜力:",
    "This promotion is no longer valid": "此促销活动已失效",
    "This promotion is not available for your account": "此项促销活动不适用于您的账户",
    "This prompt tells Claude what to create, shows it examples to match, and specifies the output format.": "此提示告诉 Claude 要创建什么,展示要匹配的示例,并指定输出格式。",
    "This purchase cannot be completed.": "此购买无法完成。",
    "This purchase covers annual platform access fees for the seats selected above, billed upfront. This provides your team access to Claude for Enterprise features and admin controls. Additional User Seat purchases will trigger additional invoices.": "此购买涵盖了上述所选席位的年度平台访问费,预先收取。这为您的团队提供了访问 Claude 企业功能和管理控制台的权限。额外购买用户席位将触发额外的发票。",
    "This question type is not yet supported.": "尚不支持此问题类型。",
    "This referral code is no longer valid": "此推荐码已失效",
    "This referral link is no longer valid": "此推荐链接已不再有效",
    "This refund was already processed.": "此退款已处理。",
    "This report contains:": "本报告包含:",
    "This repository does not have a Git remote. Add a remote and start a new session to continue remotely": "此仓库没有 Git 远程。添加远程并启动新会话以远程继续",
    "This repository isn't a marketplace — no manifest found at .claude-plugin/marketplace.json. Make sure you're adding the marketplace repository, not a plugin or unrelated repo.": "此存储库不是应用市场 —— 在 .claude-plugin/marketplace.json 未找到清单。请确保您添加的是应用市场存储库,而非单个插件或无关的库。",
    "This request triggered restrictions on violative cyber content and was blocked under Anthropic's Usage Policy. To request an adjustment pursuant to our Cyber Verification Program based on how you use Claude, fill out <formLink>this form</formLink>. To learn more about the program or provide feedback, visit our <helpCenterLink>help center</helpCenterLink>. Please <newChatLink>start a new chat</newChatLink> or <retryLink>retry with {fallbackModelName}</retryLink>. If you think Claude's memory of past conversations may have contributed to this, you can clear it in Settings > Memory.": "此请求触发了违规网络内容限制,并已根据 Anthropic 的使用政策被拦截。若你希望基于 Claude 的使用方式,根据我们的网络验证计划申请调整,请填写<formLink>此表单</formLink>。如需了解更多或提供反馈,请访问我们的<helpCenterLink>帮助中心</helpCenterLink>。请<newChatLink>开始新的聊天</newChatLink>,或<retryLink>使用 {fallbackModelName} 重试</retryLink>。如果你认为 Claude 对过往对话的记忆导致了这一结果,可在“设置 > 记忆”中清除。",
    "This response didn't load. Try again by chatting to Claude.": "此响应未加载。请尝试向 Claude 发送消息以重试。",
    "This routine couldn't be found.": "找不到此例程。",
    "This routine was automatically disabled. Review your settings and re-enable it.": "此例程已被自动禁用。请检查你的设置并重新启用。",
    "This routine was disabled because Claude lost access to its repository. Reconnect the repository and re-enable it.": "此例程已被禁用,因为 Claude 失去了对其仓库的访问权限。请重新连接仓库并重新启用它。",
    "This routine was disabled because it was scheduled more than once per hour. Choose a less frequent schedule and re-enable it.": "此例程已被禁用,因为它被设置为每小时执行超过一次。请选择频率更低的计划并重新启用。",
    "This routine was disabled because its configuration is no longer valid. Review your settings and re-enable it.": "此例程已被禁用,因为其配置已不再有效。请检查你的设置并重新启用。",
    "This routine was disabled because its cron expression is invalid. Edit the schedule and re-enable it.": "此例程已被禁用,因为它的 cron 表达式无效。请编辑计划并重新启用。",
    "This routine was disabled because the feature it uses isn't available on your plan or organization.": "此例程已被禁用,因为它使用的功能在你的方案或组织中不可用。",
    "This row can't be edited because the table has no primary key.": "此行无法编辑,因为表格没有主键。",
    "This rule injects a credential via {handler}; that injection type can't be edited here.": "此规则通过 {handler} 注入凭证;该注入类型无法在此处编辑。",
    "This scan has no environment configured.": "此扫描未配置环境。",
    "This scan has no in-flight work to cancel.": "此扫描没有正在进行的工作可取消。",
    "This scan is shared as read-only. You can't modify findings.": "此扫描以只读方式共享。您无法修改搜索结果。",
    "This scan was cancelled.": "此扫描已取消。",
    "This seat type will be granted to {name}": "此座位类型将授予 {name}",
    "This server does not require authentication (authless)": "此服务器不需要认证(无认证)",
    "This server is archived and cannot be edited.": "此服务器已归档,无法编辑。",
    "This server is managed by an extension": "此服务器由一个扩展程序管理",
    "This service is disabled for your organization.": "此服务已为你的组织禁用。",
    "This service is disabled for your organization. We let your admin know.": "此服务已为你的组织禁用。我们已通知你的管理员。",
    "This session could not be found. It may have been deleted, or you may not have access.": "找不到此会话。它可能已被删除,或者你无权访问。",
    "This session has been archived.": "此会话已归档。",
    "This session is from a private repository and may include secure credentials. Anyone with the link could view them.": "此会话来自私有仓库,可能包含安全凭据。任何拥有链接的人都可以查看它们。",
    "This session is from a private repository. Sharing may expose code to anyone with the link.": "此会话来自私有仓库。共享可能会向任何拥有链接的人公开代码。",
    "This session is read-only. Ready to build something yourself?": "此会话为只读。准备好自己构建了吗?",
    "This session is {hours, plural, one {# hour} other {# hours}} old.": "此会话已有 {hours, plural, one {# 小时} other {# 小时}}。",
    "This session may include secure credentials.": "此会话可能包含安全凭据。",
    "This session wasn't started from a scheduled task. Open a session that ran on a schedule to see its run history here.": "此会话不是从定时任务启动的。请打开一个按计划运行的会话,以在此查看其运行历史。",
    "This session will be permanently removed from the queue. The user will see an error.": "此会话将从队列中永久删除。用户将看到错误。",
    "This session will continue in a cloud container. The local Claude Code worker will disconnect and the conversation resumes on the same session.": "此会话将在云容器中继续。本地 Claude Code worker 将断开连接,对话会在同一会话中继续。",
    "This session will move to a cloud container and the local Claude Code worker will disconnect. The conversation continues on the same session — no new ID, no broken links. Uncommitted local changes are not transferred.": "此会话将迁移到云容器,本地 Claude Code worker 将断开连接。对话会继续在同一会话中进行,不会生成新 ID,也不会导致链接失效。未提交的本地更改不会被转移。",
    "This session's working folder no longer exists. Choose a different folder or start a new session.": "此会话的工作文件夹已不存在。请选择其他文件夹,或开始一个新会话。",
    "This setting can put your data at risk. <link>Learn more</link>": "此设置可能会使您的数据面临风险。<link>了解更多</link>",
    "This shortcut combination isn't supported. Try a different combination.": "不支持此快捷键组合。请尝试其他组合。",
    "This shortcut is reserved for common actions. Try a different combination.": "此快捷键已预留给常用操作。请尝试其他组合。",
    "This should only take 2 minutes.": "这应该只需要 2 分钟。",
    "This skill contains additional files or metadata that can't be edited here. Use Replace to upload a new version, or Edit with Claude.": "此技能包含无法在此编辑的其他文件或元数据。请使用“替换”上传新版本,或“使用 Claude 编辑”。",
    "This skill is no longer available.": "此技能不再可用。",
    "This skill was previously authored as a command. It should work identically.": "此技能以前是作为命令创作的。其运行方式应完全相同。",
    "This skill will be disabled. It will stay in your shared skills list in case you want to enable it again.": "此技能将被禁用。它将保留在您的共享技能列表中,以防您想再次启用它。",
    "This skill will be removed from your list. You can reinstall it from the directory.": "此技能将从您的列表中移除。您可以从目录中重新安装。",
    "This spend limit goes into effect immediately": "此支出限额立即生效",
    "This study closes in {hours, plural, one {# hour} other {# hours}}.": "此项研究将在 {hours, plural, one {# 小时} other {# 小时}} 后关闭。",
    "This study is now closed": "此研究现已关闭",
    "This study isn't accessible": "此研究不可访问",
    "This submission will be permanently removed and cannot be recovered.": "此提交将被永久删除,且无法恢复。",
    "This task has a custom schedule that can't be edited here. Changing the frequency will replace it.": "此任务有自定义计划,无法在此处编辑。更改频率将替换它。",
    "This task runs during peak hours (weekdays {ptStart}–{ptEnd} PT, {localStart}–{localEnd} local time) and will consume your session usage limits faster.": "此任务在高峰时段运行(工作日太平洋时间 {ptStart}–{ptEnd},本地时间 {localStart}–{localEnd}),会更快消耗你的会话使用限额。",
    "This task runs during peak hours and will consume your usage limits faster.": "此任务在高峰时段运行,会更快消耗你的使用限额。",
    "This task was linked to a project that no longer exists.": "此任务已链接到一个已不存在的项目。",
    "This task will be permanently deleted from your computer and Anthropic's servers, and can't be undone.": "此任务将从你的电脑和 Anthropic 的服务器中永久删除,且无法撤销。",
    "This template suggests {connectors}, which {count, plural, one {is not connected. Connect it from Settings to use it here.} other {are not connected. Connect them from Settings to use them here.}}": "此模板建议使用 {connectors},但{count, plural, one {该连接器尚未连接。请在设置中连接后在此使用。} other {这些连接器尚未连接。请在设置中连接后在此使用。}}",
    "This time only": "仅限本次",
    "This user is already on the highest available seat type. You can dismiss this request.": "此用户已处于最高席位类型。您可以忽略此请求。",
    "This usually takes a few seconds.": "这通常只需要几秒钟。",
    "This version": "此版本",
    "This website has blocked Claude via robots.txt rules": "此网站通过 robots.txt 规则屏蔽了 Claude",
    "This week": "本周",
    "This will add project instructions and files to this task.": "这将把项目说明和文件添加到此任务中。",
    "This will allow Claude to:": "这将允许 Claude:",
    "This will also uninstall {count, plural, one {# plugin} other {# plugins}} from this marketplace:": "这也会从该市场卸载 {count, plural, one {# 个插件} other {# 个插件}}:",
    "This will be removed from your device. Claude won't reference it in future Cowork sessions.": "这将从您的设备中删除。Claude 不会在未来的 Cowork 会话中引用它。",
    "This will be stored server-side in Supabase Edge Functions. It will not be visible in your app's browser code or in this conversation.": "这将存储在服务器端的 Supabase Edge Functions 中。它不会在您应用的浏览器代码或此对话中可见。",
    "This will be the default spend limit for each member in the selected groups.": "这将是所选分组中每位成员的默认支出限额。",
    "This will be the default spend limit for each member in this group.": "这将是此分组中每位成员的默认支出限额。",
    "This will be the spend limit for each selected member.": "这将作为每位所选成员的支出限额。",
    "This will be the spend limit for this member.": "这将是该成员的支出限额。",
    "This will be your team's initial pool of usage. You can buy more or set up auto-reload so you don't run out.": "这将是您团队的初始用量池。您可以购买更多,或设置自动充值以防止用量耗尽。",
    "This will create a branch in {repo} so Claude can propose a fix. If this repository is public, the branch and its contents will be publicly visible, which may disclose the vulnerability before it is patched.": "这将在 {repo} 中创建一个分支,以便 Claude 提出修复方案。如果此存储库是公开的,则该分支及其内容将公开可见,这可能会在漏洞修补前泄露漏洞信息。",
    "This will create a new cloud session with context from your local conversation. Would you like to archive the local session?": "这将创建一个具有本地对话背景的新云端会话。你想归档本地会话吗?",
    "This will delete ALL your data (conversations, projects, files, memory, settings) and downgrade to free tier. You'll be redirected to onboarding. Are you sure?": "这将删除您的所有数据(对话、项目、文件、记忆、设置)并降级为免费版。您将被重定向至引导页。确定吗?",
    "This will delete ALL your data (conversations, projects, files, memory, settings). Your organization membership will be preserved. You'll be redirected to onboarding. Are you sure?": "这将删除你的所有数据(对话、项目、文件、记忆、设置)。你的组织成员资格将被保留。你将被重定向到入门流程。确定吗?",
    "This will delete all messages and files from this conversation. Any separate tasks created from this conversation won't be affected.": "这将删除此对话中的所有消息和文件。从此对话创建的任何独立任务均不受影响。",
    "This will delete all saved cookies, local storage, and other session data for Launch servers in all workspaces.": "这将删除所有工作区中 Launch 服务器的所有已保存的 Cookie、本地存储和其他会话数据。",
    "This will delete what Claude has learned about you. Your messages and files won't be affected.": "这将删除 Claude 所了解的关于您的信息。您的消息和文件不会受到影响。",
    "This will disable chat, projects, and artifacts for all members of your organization. Members will lose access to their existing conversations.": "这将为您组织的所有成员禁用聊天、项目和工件。成员将失去对其现有对话的访问权限。",
    "This will disable this feature for all users in your organization. You can re-enable it at any time from your organization settings.": "这将为组织中的所有用户禁用此功能。您可以随时从组织设置中重新启用它。",
    "This will disconnect {serverName} for everyone on your team.": "这将为团队中的每位成员断开 {serverName} 的连接。",
    "This will erase Claude's catalog of your users' {integrationName} files. To re-enable, Claude will need time to rebuild its search catalog. Are you sure you want to proceed?": "这将擦除 Claude 对您用户 {integrationName} 文件的目录编排。要重新启用,Claude 将需要时间重建其搜索目录。确定要继续吗?",
    "This will give Claude permission to see, edit, create, and delete files that it creates in Google Drive.": "这将授予 Claude 查看、编辑、创建和删除其在 Google 云端硬盘中创建的文件。其权限。",
    "This will invalidate the current link. Anyone who has it will no longer be able to join. A new link will be generated.": "这将使当前链接失效。任何拥有该链接的人都将无法再加入。将生成一个新链接。",
    "This will make your app publicly available on the web.": "这将使您的应用在 Web 上公开可用。",
    "This will permanently delete all memories, including project memories. This can’t be undone.": "这将永久删除所有记忆,包括项目记忆。此操作不可撤销。",
    "This will permanently delete the project and its chat history.": "这将永久删除该项目及其聊天历史记录。",
    "This will permanently delete the service and <bold>{keyCount, plural, =0 {its keys} one {# associated key} other {# associated keys}}</bold>. This action cannot be undone.": "这将永久删除该服务以及<bold>{keyCount, plural, =0 {其密钥} one {# 个关联密钥} other {# 个关联密钥}}</bold>。此操作无法撤销。",
    "This will permanently remove this GHE configuration and disconnect all users. This action cannot be undone.": "这将永久删除此 GHE 配置并断开所有用户。此操作无法撤消。",
    "This will remove the ability to submit feedback reports during chats via thumbs up / thumbs down. Existing feedback reports will not be deleted. Are you sure you want to continue?": "这将移除通过对话中点击“赞/踩”提交反馈报告的功能。现有的反馈报告不会被删除。确定要继续吗?",
    "This will remove the marketplace from your list.": "这将从您的列表中移除该市场。",
    "This will remove the skill from your team's library. You can always add this skill again later by re-uploading it.": "这将从您团队的库中移除该技能。您稍后可以随时通过重新上传来再次添加此技能。",
    "This will remove {serverName} for everyone on your team.": "这将为团队中的每位成员移除 {serverName}。",
    "This will revoke access for this application. You’ll need to reconnect it if you want to use it again.": "这将撤销此应用的访问权限。如果您想再次使用,需要重新连接。",
    "This will stop the scan in progress. Any partial results will be discarded.": "这将停止正在进行的扫描。任何部分结果都将被丢弃。",
    "This will sync with your identity provider for all organizations using SCIM provisioning.": "这将与你的身份提供方同步,适用于所有使用 SCIM 预配的组织。",
    "This will work alongside <link>user preferences</link> and the selected style in a chat.": "这将与 <link>用户偏好</link> 以及聊天中选定的风格协同工作。",
    "This will:": "这将造成以下影响:",
    "This window will close automatically, or you can close it now.": "此窗口将自动关闭,或者您可以现在手动关闭。",
    "This {orgType} organization has {count} member(s). Once approved by both organizations, they will join your parent organization.": "此 {orgType} 组织有 {count} 名成员。一旦经两方组织批准,他们将加入您的母组织。",
    "Thought for {hours}h": "思考了 {hours} 小时",
    "Thought for {hours}h {minutes}m": "思考了 {hours} 小时 {minutes} 分钟",
    "Thought for {minutes}m": "思考了 {minutes} 分钟",
    "Thought for {minutes}m {seconds}s": "思考了 {minutes} 分 {seconds} 秒",
    "Thought for {seconds}s": "思考了 {seconds} 秒",
    "Thought process": "思考过程",
    "Thread": "线程",
    "Threshold must be at least $5.00": "阈值必须至少为 $5.00",
    "Threshold must be at least {min}": "阈值必须至少为 {min}",
    "Thumbs down": "踩/不满意",
    "Thumbs feedback disabled": "点赞/点踩反馈已禁用",
    "Thumbs feedback enabled": "点赞/点踩反馈已启用",
    "Thumbs up": "好评",
    "Thursday": "周四",
    "Tidy up and get organized": "整理并归类",
    "Tier": "等级",
    "Tighten my landing page": "优化我的落地页",
    "Tighten my writing": "润色我的表达",
    "TikTok": "TikTok",
    "Tile moved to position {position} of {total}": "卡片已移动到 {total} 个中的第 {position} 个位置",
    "Time": "时间",
    "Time Period": "时间段",
    "Time range": "时间范围",
    "Tip": "提示",
    "Title": "标题",
    "To": "收件人",
    "To actually run the analysis make a call to the Claude API to generate the Javascript to do the requested analysis. When the Claude API returns the javascript, then run it in the browser to implement the analysis. Make sure the number of output tokens from the Claude API is set to 16k. While you are waiting for the Claude API to return or running the calculation show a spinner. Put the label “Planning analysis” under the spinner when calling the API and change the label to “Calculating results” when executing the javascript. Dismiss the spinner when the calculation is complete The prompt to Claude should include a sample of the first 5 lines of data.": "要实际运行分析,请调用 Claude API 生成用于执行所请求分析的 Javascript。当 Claude API 返回 Javascript 时,在浏览器中运行它以实施分析。确保将 Claude API 的输出 Token 数设置为 16k。在等待 Claude API 返回或运行计算时,请显示加载动画。调用 API 时在动画下方显示标签“正在规划分析”,执行 Javascript 时将标签改为“正在计算结果”。计算完成后关闭动画。发送给 Claude 的提示词应包含前 5 行数据的样本。",
    "To approve {requestText}, you need {seatsText}.": "批准 {requestText},您需要 {seatsText}。",
    "To approve {requestText}, you'll need to purchase {seatsText}.": "要批准 {requestText},您需要购买 {seatsText}。",
    "To continue the session remotely, run /web-setup in Claude Code in your terminal to configure your remote environment": "要远程继续会话,请在终端的 Claude Code 中运行 /web-setup 以配置您的远程环境",
    "To continue, click the link sent to": "要继续,请点击发送至下方的链接",
    "To continue, press the button below.": "要继续,请按下方的按钮。",
    "To delete your Cowork sessions, email Anthropic at <emailLink>[email protected]</emailLink>.": "如需删除您的 Cowork 会话,请发送邮件至 Anthropic:<emailLink>[email protected]</emailLink>。",
    "To delete your account, please cancel your Claude Pro subscription first.": "要删除账号,请先取消 Claude Pro 订阅。",
    "To delete your account, please cancel your {productName} subscription first.": "要删除你的账户,请先取消你的 {productName} 订阅。",
    "To delete your organization, <link>cancel your subscription</link> first.": "要删除你的组织,请先<link>取消订阅</link>。",
    "To enable this skill, enable 'Code execution and file creation' in your settings": "要启用此技能,请在设置中启用“代码执行和文件创建”",
    "To generate this report, Claude will read a sample of your recent conversations across Chat, Claude Cowork, and Claude Code. The analysis runs in your account and isn't shared with your organization.": "为了生成此报告,Claude 将读取你最近在聊天、Claude Cowork 和 Claude Code 中的部分对话样本。分析会在你的账户中运行,不会与你的组织共享。",
    "To help us improve our AI models and safety protections, we’re extending data retention to 5 years.": "为了帮助我们改进 AI 模型和安全保护,我们将数据保留期延长至 5 年。",
    "To install this extension, update to the latest version of Claude Desktop": "要安装此扩展,请更新到最新版本的 Claude Desktop",
    "To install {server} you’ll need some additional information from their site": "要安装 {server},您需要从其站点获取一些额外信息",
    "To invite {memberCount, plural, one {# member} other {# members}}, you need {seatsText}.": "要邀请 {memberCount, plural, one {# 位成员} other {# 位成员}},你需要 {seatsText}。",
    "To invite {memberCount, plural, one {# member} other {# members}}, you'll need to purchase {seatsText}.": "要邀请 {memberCount, plural, one {# 位成员} other {# 位成员}},你需要购买 {seatsText}。",
    "To invite {memberCount} {tierLabel} {memberCount, plural, one {member} other {members}}, you need {seatsNeeded} additional {tierLabel} seats.": "要邀请 {memberCount, plural, one {# 名} other {# 名}} {tierLabel} 成员,您需要购买 {seatsNeeded} 个额外的 {tierLabel} 席位。",
    "To invite {memberCount} {tierLabel} {memberCount, plural, one {member} other {members}}, you need {seatsText}.": "要邀请 {memberCount} 位 {tierLabel} {memberCount, plural, one {成员} other {成员}},你需要 {seatsText}。",
    "To invite {memberCount} {tierLabel} {memberCount, plural, one {member} other {members}}, you'll need to purchase {seatsNeeded} additional {tierLabel} seats.": "要邀请 {memberCount, plural, one {# 名} other {# 名}} {tierLabel} 成员,您需要购买 {seatsNeeded} 个额外的 {tierLabel} 席位。",
    "To invite {memberCount} {tierLabel} {memberCount, plural, one {member} other {members}}, you'll need to purchase {seatsText}.": "要邀请 {memberCount} 名 {tierLabel}{memberCount, plural, one {成员} other {成员}},你需要购买 {seatsText}。",
    "To keep both, you can rename your local plugin in its <code>plugin.json</code> before uploading.": "要同时保留两者,你可以在上传前在 <code>plugin.json</code> 中重命名你的本地插件。",
    "To move {memberCount, plural, one {# member} other {# members}} to {tierLabel}, you need {seatsNeeded} additional {tierLabel} seats.": "要将 {memberCount, plural, one {# 名成员} other {# 名成员}} 移至 {tierLabel},您需要 {tierLabel} 的额外 {seatsNeeded} 个座位。",
    "To move {memberCount, plural, one {# member} other {# members}} to {tierLabel}, you need {seatsText}.": "要将 {memberCount, plural, one {# 名成员} other {# 名成员}} 转移到 {tierLabel},你需要 {seatsText}。",
    "To move {memberCount, plural, one {# member} other {# members}} to {tierLabel}, you'll need to purchase {seatsNeeded} additional {tierLabel} seats.": "要将 {memberCount, plural, one {# 名成员} other {# 名成员}} 移至 {tierLabel},您需要购买额外的 {seatsNeeded} 个 {tierLabel} 席位。",
    "To move {memberCount, plural, one {# member} other {# members}} to {tierLabel}, you'll need to purchase {seatsText}.": "要将 {memberCount, plural, one {# 名成员} other {# 名成员}} 迁移到 {tierLabel},你需要购买 {seatsText}。",
    "To move {memberName} to {tierLabel}, you need additional {tierLabel} seats.": "要将 {memberName} 移动到 {tierLabel},您需要额外的 {tierLabel} 座位。",
    "To preview changes, first create a SCIM API key and configure your identity provider to sync users and groups.": "要预览更改,请先创建一个 SCIM 访问密钥并配置您的身份提供商以同步用户和分组。",
    "To purchase a gift, switch to your personal account.": "购买礼品,请切换到您的个人账户。",
    "To reduce {chatCount} Chat {chatCount, plural, one {seat} other {seats}}, you must upgrade at least {requiredCount} to Chat + Claude Code": "要减少 {chatCount} 个聊天 (Chat) 席席位,您必须将至少 {requiredCount} 个升级为聊天 + Claude Code",
    "To reduce {standardCount} Standard {standardCount, plural, one {seat} other {seats}}, you must upgrade at least {requiredCount} to Premium": "要减少 {standardCount} 个标准 {standardCount, plural, one {seat} other {seats}},您必须将至少 {requiredCount} 个升级为高级版",
    "To run code, enable code execution and file creation in Settings > Capabilities.": "要运行代码,请在设置 > 功能中启用代码执行和文件创建。",
    "To transmit, upload, or communicate about Protected Health Information (PHI) through Claude, your organization must first execute Anthropic's Business Associate Agreement (BAA). Download and review the agreement below. By proceeding, you represent that you are authorized to bind your organization to these terms.": "若要通过 Claude 传输、上传或沟通受保护健康信息(PHI),你的组织必须先签署 Anthropic 的业务伙伴协议(BAA)。请下载并查看下方协议。继续操作即表示你声明自己有权使组织受这些条款约束。",
    "To try this skill in chat, enable 'Code execution and file creation' in your settings": "要在聊天中试用此技能,请在设置中启用\"代码执行和文件创建\"",
    "To use Claude in Canvas, please click the button below to enable the integration. This is a one-time setup required by Safari.": "若要在 Canvas 中使用 Claude,请点击下方按钮以启用集成。这是 Safari 浏览器需要的一次性设置。",
    "To use Claude within Canvas, we need your permission to access your authentication.": "若要在 Canvas 中使用 Claude,我们需要获得您访问身份验证信息的权限。",
    "To use GitHub permissions:": "要使用 GitHub 权限:",
    "To verify ownership of {domain}, add the following TXT record to your domain’s DNS settings:": "要验证 {domain} 的所有权,请在域的 DNS 设置中添加以下 TXT 记录:",
    "To: {name}": "致:{name}",
    "Today": "今天",
    "Today at {approx, select, yes {~} other {}}{time}": "今天 {approx, select, yes {约 } other {}}{time}",
    "Today at {time}": "今天 {time}",
    "Today's Slack mentions": "今天的 Slack 提及",
    "Toggle AI-powered artifacts": "切换 AI 强力驱动的构件",
    "Toggle CSV chat suggestions": "切换 CSV 聊天建议",
    "Toggle Google Drive cataloging": "切换 Google 云端硬盘编目",
    "Toggle KB stats": "切换知识库统计",
    "Toggle artifacts": "切换构件",
    "Toggle auto permissions mode": "切换自动权限模式",
    "Toggle auto-archive": "切换自动归档",
    "Toggle auto-fix": "切换自动修复",
    "Toggle auto-merge": "切换自动合并",
    "Toggle auto-updates for extensions": "切换扩展程序的自动更新",
    "Toggle built-in Node.js for MCP": "切换 MCP 的内置 Node.js",
    "Toggle bypass permissions mode": "切换绕过权限模式",
    "Toggle calendar": "切换日历",
    "Toggle code execution and file creation": "切换代码执行和文件创建",
    "Toggle device toolbar": "切换设备工具栏",
    "Toggle dictation": "切换听写",
    "Toggle diff": "切换差异",
    "Toggle draw attention on notifications": "切换通知时的吸引注意(图标跳动等)设置",
    "Toggle edit mode": "切换编辑模式",
    "Toggle email notifications": "切换邮件通知",
    "Toggle enable extra usage": "折叠/展开“启用额外用量”",
    "Toggle examples": "切换示例",
    "Toggle extended thinking": "切换深度思考/扩展思考",
    "Toggle extra usage": "切换额外用量",
    "Toggle file browser": "切换文件浏览器",
    "Toggle generate memory from chat history": "切换从聊天历史生成记忆",
    "Toggle inline visualizations": "切换内联可视化",
    "Toggle logs panel": "切换日志面板",
    "Toggle menu": "切换菜单",
    "Toggle menu bar": "切换菜单栏",
    "Toggle persist preview sessions": "切换“持久化预览会话”",
    "Toggle plan mode": "切换计划模式",
    "Toggle preview": "切换预览",
    "Toggle require repository access": "切换要求仓库访问权限",
    "Toggle response completions": "切换响应完成情况",
    "Toggle run on startup": "折叠/展开“开机启动”",
    "Toggle search and reference chats": "切换搜索和参考聊天",
    "Toggle show your name": "切换显示您的姓名",
    "Toggle side chat": "切换侧边聊天",
    "Toggle sidebar": "切换侧边栏",
    "Toggle terminal": "切换终端",
    "Toggle terminal panel": "折叠/展开终端面板",
    "Toggle worktree mode": "切换 Worktree 模式",
    "Toggle {skillName}": "切换 {skillName}",
    "Token": "令牌",
    "Token copied to clipboard.": "令牌已复制到剪贴板。",
    "Token couldn't be validated. Check that it has repo scope and try again.": "无法验证 Token。请检查它是否具有 repo 权限后重试。",
    "Token generated": "令牌已生成",
    "Token limit reached ({used, number} of {cap, number} in this {windowHours}-hour window). Contact your IT administrator.": "已达到令牌限制(在此 {windowHours} 小时窗口中使用了 {used, number} / {cap, number})。请联系您的 IT 管理员。",
    "Token will be generated when you save.": "保存时将生成令牌。",
    "Tomorrow": "明天",
    "Tomorrow at {approx, select, yes {~} other {}}{time}": "明天 {approx, select, yes {约 } other {}}{time}",
    "Tomorrow at {time}": "明天 {time}",
    "Too many file upload attempts. Please wait and try again later.": "文件上传尝试次数过多。请稍后再试。",
    "Too many name changes. Try again in a moment.": "名称更改次数过多。请稍后重试。",
    "Too many requests. You can wait a moment and try again.": "请求过多。您可以稍等片刻再试。",
    "Too many responses are running at once. You can stop a response or wait for one to finish, then try again.": "同时运行的响应过多。你可以停止一个响应,或等待某个响应完成后再试。",
    "Too many upload attempts. Wait a moment and try again.": "上传尝试次数过多。请稍等片刻后重试。",
    "Too many verification attempts. Wait and try again later.": "验证尝试次数过多。请稍后重试。",
    "Tool": "工具",
    "Tool access": "工具访问权限",
    "Tool access mode": "工具访问模式",
    "Tool access set to already loaded": "工具访问权限设为已加载",
    "Tool access set to load when needed": "工具访问设置为按需加载",
    "Tool blocked for all users": "所有用户的工具已阻止",
    "Tool calls (30d)": "工具调用(30 天)",
    "Tool details": "工具详情",
    "Tool permission restrictions": "工具权限限制",
    "Tool permissions": "工具权限",
    "Tool result": "工具结果",
    "Tool usage": "工具使用情况",
    "Tools": "工具",
    "Tools already loaded": "工具已加载",
    "Tools list refreshed": "工具列表已刷新",
    "Tools to discover": "待发现的工具",
    "Tools you already use — connect now or anytime from Customize.": "你已经在使用的工具,可现在连接,也可稍后在“自定义”中连接。",
    "Tools you use": "您使用的工具",
    "Top 10 users by artifacts generated": "按生成的构件排名的前 10 名用户",
    "Top 10 users by projects used": "按项目使用量排名的前 10 名用户",
    "Top 10 users by spend": "支出最高的前 10 名用户",
    "Top Connectors": "热门连接器",
    "Top MCP servers": "热门 MCP 服务器",
    "Top Skills": "热门技能",
    "Top error types": "主要错误类型",
    "Top off to {amount} when your balance is {threshold}": "当余额达到 {threshold} 时,自动充值至 {amount}",
    "Top skills": "热门技能",
    "Top up to:": "充值至:",
    "Topic": "主题",
    "Total": "总计",
    "Total PRs per user": "每个用户的 PR 总数",
    "Total additional cost:": "总额外的费用:",
    "Total approvals": "总批准数",
    "Total artifacts created on {date} (UTC). Change is compared to the previous day.": "{date} (UTC) 创建的产物总数。变化与前一天相比。",
    "Total artifacts created on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)创建的工件总数。变化与上周同一天相比。",
    "Total cost": "总成本",
    "Total due": "应付总额",
    "Total due today": "今日应付总额",
    "Total due today:": "今日应付总额:",
    "Total members": "总成员数",
    "Total on next invoice": "下张发票总计",
    "Total projects created on {date} (UTC). Change is compared to the previous day.": "在 {date} (UTC) 创建的项目总数。变化与前一天相比。",
    "Total projects created on {date} (UTC). Change is compared to the same day last week.": "在 {date}(UTC)创建的项目总数。变化与上周同一天相比。",
    "Total scans": "总扫描数",
    "Total seats": "总席位",
    "Total spend": "总支出",
    "Total tokens": "令牌总数",
    "Total users": "总用户数",
    "Total: {amount}": "总计:{amount}",
    "Touch Grass": "去户外走走",
    "Touch grass": "亲近自然",
    "Track changes in your team's productivity by monitoring pull requests and code": "通过监控拉取请求和代码来追踪团队生产力的变化",
    "Track invention of the idea of “free time” - when did that start?": "追踪“空闲时间”这个概念的起源——它是什么时候开始的?",
    "Track personal goals": "追踪个人目标",
    "Track professional accomplishments": "追踪职业成就",
    "Track review status and CI across your active sessions.": "在您的活动会话中跟踪评审状态和 CI。",
    "Track tools and referenced files used in this task.": "追踪此任务中使用的工具和参考文件。",
    "Track usage in real time": "实时追踪用量",
    "Trademark infringement": "商标侵权",
    "Transcript": "转录",
    "Transcript view": "对话记录视图",
    "Transcript view mode": "转录查看模式",
    "Transfer ownership": "转让所有权",
    "Transfer primary ownership": "转移主要所有权",
    "Transform a dry subject into something fascinating": "将枯燥的主题转化为迷人的内容",
    "Transform complex data tasks or messy data clean-ups into simple conversations": "将复杂的数据任务或混乱的数据清理转化为简单的对话",
    "Transform my calendar into a fantasy quest journal": "将我的日历转化为奇幻冒险日志",
    "Transform my concept into a detailed design specification": "将我的设想转化为详细的设计规范",
    "Transform my personal goals into an actionable plan": "将我的个人目标转化为可行计划",
    "Transform these notes into a structured summary": "将这些笔记转换为结构化摘要",
    "Transform your learning experience with Claude-powered educational tools. Access comprehensive courses, interactive tutorials, and step-by-step guides across various subjects. Whether you’re mastering new skills, exploring academic topics, or seeking professional development, these AI-enhanced learning resources adapt to your pace and learning style.": "使用 Claude 驱动的教育工具改变您的学习体验。获取涵盖各学科的综合课程、交互式教程和逐步指南。无论您是在掌握新技能、探索学术课题,还是寻求职业发展,这些 AI 增强型学习资源都能适应您的进度和学习风格。",
    "Transform your raw meeting notes into a professional, structured summary": "将您的原始会议记录转化为专业的结构化摘要",
    "Translate a brief into design items": "将简要说明转化为设计项",
    "Translate code between any programming language": "在任何编程语言之间转换代码",
    "Transparency": "透明度",
    "Transport": "传输方式",
    "Trending": "趋势/流行",
    "Trending — top 10 by recent growth": "趋势榜,按近期增长排序前 10",
    "Triage": "分流处理",
    "Triaged on": "分诊于",
    "Triaging...": "分流中…",
    "Trial ends in {daysRemaining, plural, one {# day} other {# days}}. Charges begin {chargeDate}. <link>Manage billing</link>": "试用将在 {daysRemaining, plural, one {# 天} other {# 天}}后结束。计费从 {chargeDate} 开始。<link>管理账单</link>",
    "Trial start shifted to {hours}h ago": "试用开始时间调整为 {hours} 小时前",
    "Trigger": "触发器",
    "Trigger from your own code by sending a POST request": "通过发送 POST 请求从您自己的代码中触发",
    "Trigger preset": "触发器预设",
    "Trigger this routine from external systems by sending a POST request to the URL below with your token.": "通过向下方 URL 携带你的令牌发送 POST 请求,从外部系统触发此例程。",
    "Trigger your routine by": "触发常规任务的方式:",
    "Triggered by {triggerLabel}": "触发者:{triggerLabel}",
    "Triggers on": "触发于",
    "Triple-click": "三击",
    "Trivia": "趣味问答",
    "Trust & Safety Center": "信任与安全中心",
    "Trust Workspace": "信任工作区",
    "Trust check couldn't be completed. You can try again.": "无法完成信任检查。您可以重试。",
    "Trust settings couldn't be saved. You can try again.": "无法保存信任设置,请重试。",
    "Trust this workspace?": "信任此工作区吗?",
    "Trusted": "受信任的",
    "Trusted Cowork folders": "受信任的 Cowork 文件夹",
    "Trusted code folders": "受信任的代码文件夹",
    "Trusted source": "受信任来源",
    "Try Again": "重试",
    "Try Claude": "尝试 Claude",
    "Try Claude Code": "试用 Claude Code",
    "Try Claude Code in Slack": "在 Slack 中尝试 Claude Code",
    "Try Claude Code on desktop": "在桌面端试用 Claude Code",
    "Try Claude Code to build, debug, and ship just by describing what you need": "试用 Claude Code,只需描述您的需求即可构建、调试和交付",
    "Try Claude for free": "免费试用 Claude",
    "Try Claude for{br}Microsoft Office": "尝试将 Claude 用于{br}Microsoft Office",
    "Try Claude in Chrome": "在 Chrome 中尝试 Claude",
    "Try Claude yourself": "亲自试试 Claude",
    "Try Cowork": "尝试 Cowork",
    "Try Cowork and Claude Code with limited usage": "以有限用量试用 Cowork 和 Claude Code",
    "Try Cowork for free": "免费试用 Cowork",
    "Try Cowork for free: Run multiple tasks at once and come back to finished work.": "免费试用 Cowork:一次运行多项任务,回来即可看到完成的工作。",
    "Try Cowork with a free week of Pro": "免费试用一周 Pro 版本,尽享 Cowork",
    "Try Cowork, and access the best models, unlimited projects, connectors, and more.": "试用 Cowork,访问最佳模型、无限项目、连接器等。",
    "Try Quick Entry": "尝试快速录入",
    "Try Slack app": "试用 Slack 应用",
    "Try Team for free": "免费试用团队版",
    "Try a demo": "尝试演示",
    "Try a different account": "尝试其他账户",
    "Try a quick task — Claude does it, you watch": "尝试一个快速任务 — Claude 执行,您观看",
    "Try a spreadsheet, doc, or presentation": "试用电子表格、文档或演示文稿",
    "Try adjusting your search or paste a URL": "尝试调整您的搜索词或粘贴 URL",
    "Try adjusting your search terms": "尝试调整搜索词",
    "Try again": "重试",
    "Try again in a moment. If it keeps happening, restart the app.": "Try again in a moment. If it keeps happening, restart the app.",
    "Try again in {seconds}s": "{seconds} 秒后重试",
    "Try again later": "稍后再试",
    "Try another payment method": "尝试其他付款方式",
    "Try asking...": "试着问问...",
    "Try fixing with Claude": "尝试通过 Claude 修复",
    "Try in Cowork": "在 Cowork 中尝试",
    "Try in chat": "在聊天中试用",
    "Try it": "试一下",
    "Try it out": "尝试一下",
    "Try next": "尝试下一个",
    "Try now": "立即尝试",
    "Try pasting the URL instead": "尝试改为粘贴 URL",
    "Try refreshing the page. If this keeps happening, contact support.": "请尝试刷新页面。如果问题持续发生,请联系支持团队。",
    "Try sending it again": "尝试再次发送",
    "Try sending your message again.": "请重试发送你的消息。",
    "Try sending your message again. If it keeps happening, share feedback so we can investigate.": "请尝试重新发送你的消息。如果这种情况持续发生,请提交反馈,以便我们调查。",
    "Try the Slack app": "试用 Slack 应用",
    "Try your first Cowork tasks": "尝试您的第一个 Cowork 任务",
    "Trying a different networking mode. This may take a moment.": "正在尝试不同的网络模式。请稍候。",
    "Trying...": "尝试中...",
    "Tuesday": "周二",
    "Turkish (Windows-1254)": "土耳其语 (Windows-1254)",
    "Turn Claude into an org expert": "让 Claude 成为组织专家",
    "Turn Claude into the {name} expert": "让 Claude 成为 {name} 方面的专家",
    "Turn a bug report into a pull request without leaving your team chat.": "无需离开团队聊天,即可将 bug 报告转化为 Pull Request。",
    "Turn a rough idea into something clickable": "将粗略的想法转化为可点击的成品",
    "Turn a screenshot into code": "将截图转为代码",
    "Turn any Product Requirements Doc (PRD) into a working prototype instantly": "立即将任何产品需求文档 (PRD) 变成可运行的原型",
    "Turn any idea into a diagram, chart, or visual you can click and explore.": "把任何想法变成可点击、可探索的图表、示意图或可视化内容。",
    "Turn data into an executive story": "将数据转为决策层关注的故事",
    "Turn designs into clickable prototypes you can test and share.": "将设计转化为您可以测试和共享的可点击原型。",
    "Turn documents into a presentation": "将文档转为演示文稿",
    "Turn failed": "轮次失败",
    "Turn ideas into slides": "把想法转为幻灯片",
    "Turn into skill": "转为技能",
    "Turn it on in Settings to dispatch work to Claude from your phone.": "在‘设置’中开启此功能,以便通过手机向 Claude 分派工作。",
    "Turn messy data into action": "将杂乱数据转化为行动",
    "Turn my calendar events into a poetic ‘day in the life’ narrative": "将我的日历事件变成一段充满诗意的“生活的一天”叙事",
    "Turn my day into a short story. Ask me what happened — the mundane stuff is fine — and find the narrative in it.": "把我的一天写成一个小故事。问问我发生了什么——琐碎的事也没关系——并从中挖掘出叙述感。",
    "Turn my notes into a website": "把我的笔记变成一个网站",
    "Turn my notes into flashcards": "将我的笔记转化为闪存卡",
    "Turn my user story into Given/When/Then acceptance criteria — I'll paste it below. Show me one example first, then write the rest.": "把我的用户故事改写成 Given/When/Then 验收标准,我会粘贴在下面。先给我看一个示例,然后再写其余部分。",
    "Turn notes into a document": "将笔记转为文档",
    "Turn off": "关闭",
    "Turn off auto-reload": "关闭自动重载",
    "Turn off connectors in the <code>+ > Connectors</code> menu in the chat input.": "在聊天输入的 <code>+ > 连接器</code> 菜单中关闭连接器。",
    "Turn off extra usage?": "关闭额外用量?",
    "Turn off memory": "关闭记忆功能",
    "Turn off microphone": "关闭麦克风",
    "Turn off plan mode": "关闭计划模式",
    "Turn off shortened session length": "关闭缩短的会话时长",
    "Turn off this feature for your whole org?": "为您的整个组织关闭此功能?",
    "Turn on": "开启/打开",
    "Turn on Code Review": "开启代码审查",
    "Turn on auto-reload": "开启自动重新加载",
    "Turn on auto-reload?": "开启自动重载?",
    "Turn on code execution and file creation to use skills": "开启代码执行和文件创建以使用技能",
    "Turn on computer use?": "开启电脑使用功能?",
    "Turn on connector discovery": "开启连接器发现",
    "Turn on data sharing": "开启数据共享",
    "Turn on extra usage": "开启额外用量",
    "Turn on extra usage so people in your organization can keep using Claude if they hit a limit. <link>Learn more</link>": "开启额外用量,以便组织中的成员在达到限额后仍能继续使用 Claude。<link>了解更多</link>",
    "Turn on extra usage to keep using Claude if you hit a limit. <link>Learn more</link>": "开启额外用量,以便在达到限制时能继续使用 Claude。<link>了解更多</link>",
    "Turn on extra usage to run security scans. Scans use pay-as-you-go billing beyond your plan's included usage.": "开启额外用量以运行安全扫描。扫描超出方案包含用量的部分,将按支付即用的方式计费。",
    "Turn on memory": "开启记忆",
    "Turn on memory in settings to let Claude remember context in this project.": "在设置中开启‘记忆’功能,让 Claude 记住此项目中的上下文。",
    "Turn on microphone": "开启麦克风",
    "Turn on notifications": "开启通知",
    "Turn on plan mode": "打开计划模式",
    "Turn on shortcut": "开启快捷键",
    "Turn on web search for your team members.": "为您团队成员开启网页搜索。",
    "Turn on web search in Search and tools menu. Otherwise, links provided may not be accurate or up to date.": "在“搜索与工具”菜单中开启网页搜索。否则,提供的链接可能不准确或由于版本陈旧。",
    "Turn readings into summaries and notes into study guides.": "将读物转化为摘要,将笔记转化为学习指南。",
    "Turn skills on or off for everyone in your organization, including admin-managed organization skills. Requires 'Code execution and file creation' to be enabled to use.": "为组织中的每个人开启或关闭技能,包括管理员管理的组织技能。需要启用“代码执行和文件创建”才能使用。",
    "Turn these receipts into an expense report": "将这些收据转化为报销单",
    "Turn voice memos into a doc": "将语音备忘录整理成文档",
    "Turn what’s in your head into a clear outline": "将头脑中的想法转化为清晰的大纲",
    "Turn your day into a short story": "将您的一天写成短篇故事",
    "Turn your ideas into polished slides.": "将您的想法转化为精致的幻灯片。",
    "Turn your vague thoughts into a clear and concise one-pager": "将您模糊的想法转为清晰简洁的单页文档",
    "Turn your week into a personalized newspaper": "将您的一周变成个性化报纸",
    "Turning ON the improve Claude setting extends data retention from 30 days to 5 years to improve our model performance and safety. Turning it OFF keeps the default 30-day data retention. Delete data anytime.": "开启“改进 Claude ”设置会将数据保留期从 30 天延长到 5 年,以提高我们的模型性能和安全性。关闭它则保持默认的 30 天数据保留期。可以随时删除数据。",
    "Turning off extra usage will immediately prevent all members from using Claude beyond their base subscription limits. Any ongoing conversations may be interrupted.": "关闭额外用量将立即阻止所有成员使用超出其基础订阅限制的 Claude。任何正在进行的对话都可能中断。",
    "Turning off extra usage will immediately prevent you from using Claude beyond your base subscription limits. Any ongoing conversations may be interrupted.": "关闭额外用量将立即阻止您使用超出基础订阅限额的 Claude。任何正在进行的对话都可能中断。",
    "Tutor me": "对我进行辅导",
    "Tutorials": "教程",
    "Twilio account SID": "Twilio 账户 SID",
    "Twilio auth token": "Twilio 身份验证令牌 (Auth Token)",
    "Twilio message service SID": "Twilio 消息服务 SID",
    "Type": "类型",
    "Type / for commands": "输入 / 查看命令",
    "Type / for skills": "输入 / 获取技能",
    "Type <code>{poolName}</code> to confirm": "输入 <code>{poolName}</code> 以确认",
    "Type a directory path or browse...": "输入目录路径或浏览...",
    "Type a full email to invite someone to the organization": "输入完整电子邮件地址以邀请某人加入组织",
    "Type a path or pick from disk": "输入路径或从磁盘中选择",
    "Type after ? to search file contents": "输入 ? 后搜索文件内容",
    "Type any adjective and watch claude transform “very” into more vivid alternatives": "输入任何形容词,看 Claude 如何将 “very” 转化为更生动的替代方案",
    "Type or paste emails, or drag in a CSV": "输入或粘贴电子邮件地址,或拖入一个 CSV",
    "Type or paste in content...": "输入或粘贴内容...",
    "Type or paste in emails separated by commas or new lines": "输入或粘贴邮箱地址,用逗号或换行分隔",
    "Type or paste in multiple emails separated by commas or new lines.": "输入或粘贴多个电子邮件,用逗号或换行分隔。",
    "Type or paste text to create a word cloud": "输入或粘贴文本以创建词云",
    "Type something else...": "输入其他内容...",
    "Type text": "输入文本",
    "Type to edit memory": "输入以编辑记忆",
    "Type to filter": "输入以过滤",
    "Type to see an audiovisual symphony": "输入即可看到视听交响乐",
    "Type your answer": "输入你的回答",
    "Type your own answer here": "在此输入您自己的答案",
    "Type, speak, or screenshot with Claude from anywhere on your Mac.": "在 Mac 的任何位置使用 Claude 进行输入、对话或截图。",
    "Type:": "类型:",
    "Type: \"{text}\"": "输入:\"{text}\"",
    "UI bug": "UI 缺陷",
    "URL": "URL",
    "URL must start with 'https'": "URL 必须以 ‘https’ 开头",
    "URL must start with https://": "URL 必须以 https:// 开头",
    "URLs are not allowed": "不允许使用 URL",
    "US": "美国",
    "Ultrareview": "Ultrareview",
    "Ultrareview session — findings appear above.": "Ultrareview 会话:发现结果显示在上方。",
    "Unable to Launch from Canvas": "无法从 Canvas 启动",
    "Unable to access Claude Code": "无法访问 Claude Code",
    "Unable to access file in virtual environment.": "无法访问虚拟环境中的文件。",
    "Unable to authorize this application.": "无法授权此应用。",
    "Unable to check status": "无法检查状态",
    "Unable to confirm payment": "无法确认付款",
    "Unable to connect to extension server. Please try disabling and re-enabling the extension.": "无法连接到扩展程序服务器。请尝试禁用并重新启用扩展程序。",
    "Unable to delete submission. Please try again.": "无法删除提交。请重试。",
    "Unable to discard pending changes. Try again.": "无法丢弃待处理更改。请重试。",
    "Unable to display data": "无法显示数据",
    "Unable to enable push notifications. Please check your browser settings.": "无法启用推送通知。请检查浏览器设置。",
    "Unable to join": "无法加入",
    "Unable to load active sessions. Try again later.": "无法加载活跃会话。请稍后再试。",
    "Unable to load activity data. Try again later.": "无法加载活动数据。请稍后再试。",
    "Unable to load branches": "无法加载分支",
    "Unable to load chart data. Try again later.": "无法加载图表数据。请稍后重试。",
    "Unable to load connector data. Try again later.": "无法加载连接器数据。请稍后再试。",
    "Unable to load content. Please ensure the MCP server is connected.": "无法加载内容。请确保已连接 MCP 服务器。",
    "Unable to load directories.": "无法加载目录。",
    "Unable to load environments. Try again later.": "无法加载环境。请稍后再试。",
    "Unable to load file content": "无法加载文件内容",
    "Unable to load pool. Try again later.": "无法加载资源池。请稍后重试。",
    "Unable to load runner pools. Try again later.": "无法加载运行器池。请稍后重试。",
    "Unable to load skill data. Try again later.": "无法加载技能数据。请稍后再试。",
    "Unable to load spend data. Try again later.": "无法加载支出数据。请稍后重试。",
    "Unable to load usage limits. Please try again later.": "无法加载用量限制。请稍后再试。",
    "Unable to load user activity data. Try again later.": "无法加载用户活动数据。请稍后再试。",
    "Unable to merge your changes to the {branch} branch.": "无法将您的更改合并到 {branch} 分支。",
    "Unable to open file.": "无法打开文件。",
    "Unable to reach {server}": "无法连接至 {server}",
    "Unable to read file.": "无法读取文件。",
    "Unable to read local file.": "无法读取本地文件。",
    "Unable to read the plugins folder. Contact your organization administrator.": "无法读取插件文件夹。请联系您的组织管理员。",
    "Unable to redeem gift": "无法兑换礼品",
    "Unable to resolve URL through MCP server": "无法通过 MCP 服务器解析 URL",
    "Unable to save changes. Please try again.": "无法保存更改。请重试。",
    "Unable to search directories.": "无法搜索目录。",
    "Unable to send verification code to this number. Try a different number or try again later.": "无法向此号码发送验证码。请尝试其他号码或稍后再试。",
    "Unable to show file in folder.": "无法在文件夹中显示文件。",
    "Unable to submit for review. Please try again.": "无法提交审核。请重试。",
    "Unarchive": "取消归档",
    "Unarchive project?": "取消归档项目?",
    "Unarchiving...": "正在取消归档...",
    "Unassigned": "未分配",
    "Unassigned members": "未分配的成员",
    "Unauthenticated": "未认证",
    "Unauthorized": "未授权",
    "Unavailable": "不可用",
    "Unavailable because your organization has an encryption key configured. Cataloged content would be stored outside your key's protection.": "由于你的组织已配置加密密钥,因此此功能不可用。编目内容将存储在你的密钥保护范围之外。",
    "Uncommitted changes": "未提交的更改",
    "Uncommitted changes on <b>{currentBranch}</b>": "<b>{currentBranch}</b> 上有未提交的更改",
    "Understand ML algorithms": "了解 ML 算法",
    "Understand a concept": "理解概念",
    "Understand how we keep our platform safe and responsible.": "了解我们如何保持平台的安全和负责任。",
    "Understand how your team is working with Claude Code with accept rates and code generated": "通过接受率和生成的代码,了解您的团队如何使用 Claude Code",
    "Understand the risks": "了解相关风险",
    "Understand what’s happening with tariffs right now": "了解目前关税的情况",
    "Understand workplace politics": "洞察职场政治",
    "Understand your voice and how to improve": "了解您的声音风格以及如何改进",
    "Undo": "撤销",
    "Unexpected output from Claude Code": "Claude Code 的意外输出",
    "Unfortunately, Claude is not available to new users right now. We’re working hard to expand our availability soon.": "遗憾的是,Claude 目前不向新用户开放。我们正努力尽快扩大可用范围。",
    "Unfortunately, {product} is only available in <link>certain regions</link> right now. We’re working hard to expand to other regions soon.": "很遗憾,{product} 目前仅在<link>某些地区</link>提供。我们正在努力扩展到更多地区。",
    "Ungrouped": "未分组",
    "Unhide apps when Claude finishes": "Claude 完成后取消隐藏应用",
    "Unified view": "统一视图",
    "Uninstall": "卸载",
    "Uninstall plugin?": "卸载插件?",
    "Uninstall skill?": "卸载技能?",
    "Uninstall via CLI from the project directory: claude plugin uninstall {name} --scope {scope}": "通过 CLI 从项目目录卸载:claude plugin uninstall {name} --scope {scope}",
    "Uninstalling": "正在卸载",
    "Universal": "通用",
    "Unknown": "未知",
    "Unknown Connector": "未知连接器",
    "Unknown Google Drive document": "未知的 Google Drive 文档",
    "Unknown User": "未知用户",
    "Unknown device": "未知设备",
    "Unknown payment method": "未知付款方式",
    "Unknown scope: {scope}": "未知范围:{scope}",
    "Unknown skill: {commandName}.": "未知技能:{commandName}。",
    "Unknown user": "未知用户",
    "Unleash your artistic potential with Claude-powered design and drawing tools. Create professional graphics, digital art, and visual content using intuitive AI-assisted applications. From vector design tools to digital painting apps, these creative solutions help artists and designers bring their visions to life with enhanced AI capabilities.": "利用 Claude 驱动的设计和绘图工具释放您的艺术潜力。使用直观的 AI 辅助应用创建专业图形、数字艺术和视觉内容。从矢量设计工具到数字绘画应用,这些创意方案帮助艺术家和设计师通过增强型 AI 能力将愿景变为现实。",
    "Unlimited": "无限制",
    "Unlimited Chat + Claude Code seats": "无限量的“聊天 + Claude Code”席位",
    "Unlimited Chat seats": "无限制聊天席位",
    "Unlimited Claude Enterprise seats": "无限量的 Claude Enterprise 席位",
    "Unlimited Premium Nonprofit seats": "无限量高级非营利席位",
    "Unlimited Premium seats": "无限制的 Premium 席位",
    "Unlimited Projects": "无限制的项目",
    "Unlimited Research Labs Premium seats": "无限 Research Labs Premium 席位",
    "Unlimited Research Labs seats": "无限 Research Labs 席位",
    "Unlimited Standard seats": "无限制的标准席位",
    "Unlimited file creation": "无限制文件创建",
    "Unlimited nonprofit seats": "无限制的非营利席位",
    "Unlimited premium seats": "无限高级席位",
    "Unlimited projects": "无限制的项目",
    "Unlimited projects to organize chats": "无限制的项目来管理聊天",
    "Unlimited projects with Max plans": "Max 计划可享无限项目",
    "Unlimited projects with Pro and Max plans": "Pro 和 Max 方案提供无限制的项目",
    "Unlimited projects with Pro plans": "Pro 套餐可使用无限项目",
    "Unlimited standard seats": "无限制的标准席位",
    "Unlink": "取消链接",
    "Unlink task {name}": "取消任务 {name} 的关联",
    "Unlock deep research tools": "解锁深度研究工具",
    "Unlock insights from your data with Claude-powered analytics and visualization tools. Create interactive charts, build comprehensive dashboards, and transform complex datasets into clear, actionable insights. Whether you’re analyzing business metrics, research data, or personal statistics, these tools make data analysis accessible and powerful.": "通过 Claude 驱动的分析和可视化工具发掘数据见解。创建交互式图表、构建全面的仪表板,并将复杂的数据集转化为清晰、可执行的见解。无论您是在分析业务指标、研究数据还是个人统计,这些工具都能让数据分析变得触手可及且功能强大。",
    "Unlock more from Claude with desktop extensions": "通过桌面扩展解锁 Claude 的更多能力",
    "Unlock more with Claude when you connect with remote and local tools.": "连接远程和本地工具,通过 Claude 解锁更多功能。",
    "Unlock more with Claude when you connect your team's tools.": "连接您团队的工具,通过 Claude 解锁更多功能。",
    "Unlock more with Claude when you connect your team's tools. <link>Learn more</link>": "连接您的团队工具,通过 Claude 解锁更多功能。<a>了解更多</a>",
    "Unmute": "取消静音",
    "Unmute microphone": "取消静音",
    "Unpin": "取消置顶",
    "Unpin chapter": "取消固定章节",
    "Unpin project": "取消置顶项目",
    "Unpublish": "取消发布",
    "Unpublish is not available in this build.": "此版本中不可用取消发布。",
    "Unpublished": "未发布",
    "Unpublished changes": "未发布的更改",
    "Unpublishing…": "取消发布中…",
    "Unreachable": "无法访问",
    "Unreachable code": "不可达代码",
    "Unread": "未读",
    "Unread activity": "未读活动",
    "Unread completed run": "未读的已完成运行",
    "Unread email digest": "未读邮件摘要",
    "Unrestricted internet access for maximum flexibility.": "不受限制的网络访问,提供最大的灵活性。",
    "Unrestricted internet access for maximum flexibility. Use caution with untrusted sources.": "无限制的互联网访问可提供最大的灵活性。请谨慎对待不可信的来源。",
    "Unsaved changes": "未保存的更改",
    "Unselect": "取消选择",
    "Unset (30 days)": "未设置 (30 天)",
    "Unshare": "取消分享",
    "Unshare chat": "取消分享聊天",
    "Unshared": "未共享",
    "Unstar": "取消星标",
    "Unstar project": "取消星标项目",
    "Unsubscribe from the GitHub event to remove": "取消订阅 GitHub 事件以移除",
    "Unsubscribe from unwanted email chains": "从不需要的邮件链中退订",
    "Unsupported image type. Choose a PNG or JPEG.": "不支持的图像类型。请选择 PNG 或 JPEG。",
    "Unsupported image type. Choose a PNG, ICO, or JPEG.": "不支持的图像类型。请选择 PNG、ICO 或 JPEG。",
    "Unsupported image type. Choose a PNG.": "不支持的图片类型。请选择 PNG。",
    "Unsupported platform": "不支持的平台",
    "Untitled": "未命名",
    "Untitled chat": "未命名聊天",
    "Untitled conversation": "未命名对话",
    "Untitled note": "无标题笔记",
    "Untitled plugin": "未命名插件",
    "Untitled project": "未命名的项目",
    "Untitled server": "未命名服务器",
    "Untitled session": "未命名会话",
    "Untitled task": "未命名任务",
    "Untriaged": "未分诊",
    "Unverified": "未验证",
    "Unverified — require signed requests": "未验证 — 需要签名请求",
    "Unverified — require verified requests": "未验证——要求已验证请求",
    "Up to 20x more usage than Pro*": "高达 20 倍于 Pro 方案的用量*",
    "Up to {cap}/month off for {durationInMonths, plural, one {# month} other {# months}}": "每月最多 {cap},{durationInMonths, plural, one {# 个月} other {# 个月}} 减免",
    "Up to {pct}% off": "最高 {pct}% 折扣",
    "Up to {price}/mo": "高达 {price}/月",
    "Upcoming": "即将推出",
    "Update": "更新",
    "Update Claude for Desktop to enable this feature.": "更新桌面版 Claude 以启用此功能。",
    "Update IP allowlist": "更新 IP 允许列表",
    "Update SCIM users and groups": "更新 SCIM 用户和分组",
    "Update anyway": "仍然更新",
    "Update artifact": "更新 Artifact",
    "Update available": "有可用更新",
    "Update available to v{version}. You are currently on v{currentVersion}.": "发现新版本 v{version}。您当前的版本为 v{currentVersion}。",
    "Update base branch": "更新基准分支",
    "Update cloud environment": "更新云环境",
    "Update failed": "更新失败",
    "Update local environment": "更新本地环境",
    "Update members": "更新成员",
    "Update my resume or LinkedIn": "更新我的简历或 LinkedIn 内容",
    "Update number": "更新号码",
    "Update organization email domains": "更新组织邮箱域名",
    "Update payment": "更新付款信息",
    "Update plugins whenever a commit lands in GitHub": "每当 GitHub 有提交(commit)时更新插件",
    "Update required": "需要更新",
    "Update seat allocations to add members": "更新席位分配以添加成员",
    "Update seat allocations to reassign members": "通过更新席位分配来重新分配成员",
    "Update seat tier for {count} members": "更新 {count} 名成员的席位等级",
    "Update seat tier for {name}": "更新 {name} 的座位等级",
    "Update settings": "更新设置",
    "Update skill": "更新技能",
    "Update task": "更新任务",
    "Update the default limit": "更新默认限额",
    "Update the desktop app to access Code and work on coding tasks.": "更新桌面应用以访问 Code 并处理编程任务。",
    "Update the desktop app to access Cowork and start handing off longer tasks.": "更新桌面应用以访问 Cowork 并开始移交较长的任务。",
    "Update the desktop app to enable memory.": "更新桌面应用以启用记忆功能。",
    "Update the desktop app to kick off Cowork tasks from your phone.": "更新桌面版应用程序,以便从手机启动 Cowork 任务。",
    "Update the group limit": "更新群组限制",
    "Update these anytime in <settingsLink>Settings</settingsLink>.": "随时在 <settingsLink>设置</settingsLink> 中更新这些内容。",
    "Update to the latest version of Claude for Desktop to use desktop extensions": "更新到最新版本的桌面端 Claude 以使用桌面扩展程序",
    "Update to {version}": "更新到 {version}",
    "Update will overwrite local changes": "更新将覆盖本地更改",
    "Update with errors": "更新有错误",
    "Update your Canvas LMS instance configuration": "更新您的 Canvas LMS 实例配置",
    "Update your desktop app to use live summaries.": "更新您的桌面应用以使用实时摘要。",
    "Update your listing details and submit changes for review": "更新你的列表详情并提交更改以供审核",
    "Update your payment method to avoid service interruption.": "更新您的付款方式以避免服务中断。",
    "Update {count, number} selected": "更新已选的 {count, number} 个",
    "Update {count} members": "更新 {count} 名成员",
    "Update {count} selected": "已更新所选的 {count} 项",
    "Update-check requests, so the app can stay current": "用于检查更新的请求,以便应用保持最新",
    "Updated": "已更新",
    "Updated <b>/{name}</b>": "已更新 <b>/{name}</b>",
    "Updated allowed email domains": "已更新允许的邮箱域名",
    "Updated artifact: {id}": "已更新工件:{id}",
    "Updated billing interval": "已更新计费周期",
    "Updated dashboard": "已更新仪表板",
    "Updated from {oldVersion} to {newVersion}.": "已从 {oldVersion} 更新至 {newVersion}。",
    "Updated organization name": "更新后的组织名称",
    "Updated skill: {name}": "已更新的技能:{name}",
    "Updated to {sha}.": "已更新至 {sha}。",
    "Updated to {versionNumber}": "更新到 {versionNumber}",
    "Updated todo list": "已更新待办事项列表",
    "Updated todos": "已更新待办事项",
    "Updated {count} members to {tierLabel}.": "已将 {count} 个成员更新为 {tierLabel}。",
    "Updated {date}": "更新于 {date}",
    "Updated {name}’s role to {roleLabel}.": "已将 {name} 的角色更新为 {roleLabel}。",
    "Updated {name}’s tier to {tierLabel}.": "已将 {name} 的等级更新为 {tierLabel}。",
    "Updated {relativeTime}": "{relativeTime}前更新",
    "Updated {time}": "已更新 {time}",
    "Updated {time} from your chats": "更新于 {time},来自您的聊天",
    "Updates to Consumer Terms and Policies": "消费者条款和政策更新",
    "Updates to data retention": "数据保留政策更新",
    "Updating": "正在更新",
    "Updating dependencies...": "正在更新依赖...",
    "Updating installation": "正在更新安装",
    "Updating memory...": "正在更新记忆...",
    "Updating summary…": "正在更新摘要…",
    "Updating to macOS 26 or later may resolve this. If it persists, you can <reinstall>reinstall the workspace</reinstall> or <link>share your debug logs</link> to help us improve.": "更新到 macOS 26 或更高版本可能会解决此问题。如果问题仍然存在,您可以<reinstall>重新安装工作区</reinstall>或<link>共享您的调试日志</link>来帮我们改进。",
    "Updating to macOS 26 or later may resolve this. If it persists, you can <reinstall>reinstall the workspace</reinstall>.": "更新至 macOS 26 或更高版本可能会解决此问题。如果问题仍然存在,您可以<reinstall>重新安装工作空间</reinstall>。",
    "Updating todos": "正在更新待办事项",
    "Updating your seat allocation": "正在更新您的席位分配",
    "Updating...": "正在更新...",
    "Updating…": "正在更新……",
    "Upgrade": "升级",
    "Upgrade 1 seat to {tier}?": "将 1 个席位升级到 {tier}?",
    "Upgrade an existing organization": "升级现有组织",
    "Upgrade confirmed": "升级已确认",
    "Upgrade plan": "升级方案",
    "Upgrade seats": "升级席位",
    "Upgrade the number of User seats available in your account by increasing the User seat limit in the box below. Anthropic will invoice you for the additional User seats at the per User price set out in your applicable order form, prorated through the end of your current order form term and payable in accordance with your Anthropic agreement.": "通过增加下方框中的用户席位上限,升级您账户中可用的用户席位数量。Anthropic 将按照您适用订单中规定的每用户价格,按比例开具剩余账单直到当前期限结束。",
    "Upgrade to 20X": "升级至 20X",
    "Upgrade to Claude Max to use our best and latest models": "升级到 Claude Max 以使用我们最好、最新的模型",
    "Upgrade to Claude Max to use our legacy models": "升级到 Claude Max 以使用我们的旧版模型",
    "Upgrade to Claude Pro to use our best and latest models": "升级至 Claude Pro 以使用我们最好、最新的模型",
    "Upgrade to Claude Pro to use our legacy models": "升级至 Claude Pro 以使用我们的历史版本模型",
    "Upgrade to Enterprise": "升级到 Enterprise 版本",
    "Upgrade to Enterprise plan": "升级到 Enterprise 方案",
    "Upgrade to Max": "升级到 Max 方案",
    "Upgrade to Max 20x": "升级到 Max 20 倍",
    "Upgrade to Max or Pro": "升级到 Max 或 Pro 方案",
    "Upgrade to Max or Team": "升级到 Max 或 Team",
    "Upgrade to Max, Pro or Team": "升级到 Max、Pro 或 Team 方案",
    "Upgrade to Premium seat": "升级到高级席位",
    "Upgrade to Pro": "升级到 Pro",
    "Upgrade to Pro or Team": "升级到 Pro 或 Team",
    "Upgrade to Team": "升级到团队版",
    "Upgrade to Team plan": "升级到 Team 方案",
    "Upgrade to a higher plan": "升级到更高等级的方案",
    "Upgrade to add custom connectors.": "升级以添加自定义连接器。",
    "Upgrade to annual plan": "升级到年度方案",
    "Upgrade to annual team plan": "升级为年度 Team 方案",
    "Upgrade to connect to GitHub": "升级以连接 GitHub",
    "Upgrade to connect your tools to Claude": "升级以将您的工具连接到 Claude",
    "Upgrade to install in VS Code": "升级后可在 VS Code 中安装",
    "Upgrade to keep chatting": "升级以继续聊天",
    "Upgrade to keep using Opus and get:": "升级以继续使用 Opus,并获得:",
    "Upgrade to share custom skills with teammates": "升级以与队友共享自定义技能",
    "Upgrade to start coding": "升级以开始编码",
    "Upgrade to the Team plan anytime": "随时升级到 Team 方案",
    "Upgrade to try": "升级试用",
    "Upgrade to unlock more projects and get:": "升级以解锁更多项目,并获得:",
    "Upgrade to use Claude Code": "升级以使用 Claude Code",
    "Upgrade to:": "升级到:",
    "Upgrade your app": "升级您的应用",
    "Upgrade your plan": "升级您的方案",
    "Upgrade your usage with Max": "使用 Max 方案提升受您的用量",
    "Upgraded file creation and analysis enabled.": "已启用升级后的文件创建与分析功能。",
    "Upgraded to Enterprise": "已升级到 Enterprise 方案",
    "Upgraded to Max plan": "已升级到 Max 方案",
    "Upgraded to annual billing": "已升级为年度结算",
    "Upgraded to yearly plan": "已升级为年度方案",
    "Upgrading organization": "正在升级组织",
    "Upload": "上传",
    "Upload CSV": "上传 CSV",
    "Upload CSV of email addresses": "上传电子邮件地址 CSV",
    "Upload CSVs for Claude to analyze quantitative data with high accuracy and create interactive data visualizations.": "上传 CSV 文件,让 Claude 以高准确性分析定量数据并创建交互式数据可视化。",
    "Upload a file": "上传文件",
    "Upload a new version": "上传新版本",
    "Upload a photo": "上传照片",
    "Upload a photo and get a pixel portrait as your avatar.": "上传照片并获取一个像素肖像作为您的头像。",
    "Upload a plugin zip file. If a plugin with the same name already exists, it will be replaced.": "上传插件 zip 文件。如果已存在同名插件,它将被替换。",
    "Upload a skill": "上传技能",
    "Upload and replace": "上传并替换",
    "Upload content": "上传内容",
    "Upload docs or images to Claude\\n(Max {maxUploads}, {maxSize}mb each)": "上传文档或图片至 Claude\\n(最多 {maxUploads} 个,每个最大 {maxSize}MB)",
    "Upload documents, code, and other files to the project for Claude to reference in your chats.": "将文档、代码和其他文件上传到项目中,以便 Claude 在您的聊天中参考。",
    "Upload extensions that are only visible to members of your organization.": "上传仅对您组织成员可见的扩展程序。",
    "Upload failed due to a network issue. Check your internet connection and try again.": "因网络问题上传失败。请检查联网状态并重试。",
    "Upload failed. You can try again.": "上传失败。您可以重试。",
    "Upload favicon": "上传 favicon",
    "Upload file": "上传文件",
    "Upload files": "上传文件",
    "Upload files <span>(max {maxUploads}, {maxSize}mb each)</span>": "上传文件 <span>(最多 {maxUploads} 个,每个最大 {maxSize}MB)</span>",
    "Upload files from your codebase to understand, improve, and contribute": "上传您的代码库文件以便理解、改进和贡献",
    "Upload files on your behalf": "代表您上传文件",
    "Upload from device": "从设备上传",
    "Upload image": "上传图片",
    "Upload local plugin": "上传本地插件",
    "Upload materials, set custom instructions, and organize conversations in one space.": "在一个空间内上传资料、设置自定义指令并管理对话。",
    "Upload metadata.xml": "上传 metadata.xml",
    "Upload new extension": "上传新扩展程序",
    "Upload new version": "上传新版本",
    "Upload organization icon": "上传组织图标",
    "Upload photo": "上传照片",
    "Upload plugin": "上传插件",
    "Upload settings.json": "上传 settings.json",
    "Upload skill": "上传技能",
    "Upload social image": "上传社交图片",
    "Upload stopped — {remaining, plural, one {# skill was} other {# skills were}} not uploaded": "上传已停止 — {remaining, plural, one {# 个技能} other {# 个技能}}未上传",
    "Upload to a new marketplace": "上传到新市场",
    "Upload your CSV file to get started. Then simply describe what you want to know in plain English and we’ll automatically answer the question, create charts, tables, etc.": "上传您的 CSV 文件以开始。然后只需用通俗易懂的语言描述您想了解的内容,我们就会自动回答问题,并创建图表、表格等。",
    "Upload, update, delete, and manage extensions in the directory": "在目录中上传、更新、删除和管理扩展程序",
    "Uploaded file is too large. Try uploading a smaller part of the document, or copy/pasting an excerpt from the file.": "上传的文件过大。请尝试上传该文件的较小部分,或者从原件中复制/粘贴摘录。",
    "Uploaded from file": "从文件上传",
    "Uploaded image": "已上传图片",
    "Uploaded skills will be available once an owner enables Skills for the organization.": "一旦组织所有者启用 Skills,已上传的技能即可使用。",
    "Uploaded {count, plural, one {# skill} other {# skills}}": "已上传 {count, plural, one {# 个技能} other {# 个技能}}",
    "Uploaded {skillName}": "已上传 {skillName}",
    "Uploading": "正在上传",
    "Uploading attachment": "正在上传附件",
    "Uploading...": "正在上传...",
    "Uploads": "上传内容",
    "Upstream Proxy Credentials": "上游代理凭据",
    "Upstream credential created.": "上游凭据已创建。",
    "Upstream credential deleted.": "上游凭据已删除。",
    "Upstream credentials could not be loaded.": "无法加载上游凭据。",
    "Usage": "用量",
    "Usage Center": "使用中心",
    "Usage and spend limits": "用量和支出限额",
    "Usage charges are billed separately. Your organization will be charged monthly for actual token consumption across all users. Admins can set spend limits at the organization, seat type, or individual user level to manage costs. <link>Token pricing can be found here.</link>": "用量费用单独结算。您的组织将每月根据所有用户的实际 Token 消耗量计费。管理员可以在组织、席位类型或个人用户级别设置支出限额以管理成本。<link>Token 价格可点击此处查看。</link>",
    "Usage credits": "用量额度",
    "Usage is paused until the limit is increased or the next billing cycle.": "用量已暂停,直到限额提高或进入下一个计费周期。",
    "Usage limit reached": "已达到使用上限",
    "Usage limit reached · resets at {time}": "已达到用量上限 · 将于 {time} 重置",
    "Usage limit reached ∙ Resets {time} ∙ <link>limits shared with Claude Code</link>": "用量达到限额 ∙ 将在 {time} 重置 ∙ <link>限额与 Claude Code 共享</link>",
    "Usage limits": "使用限制",
    "Usage limits and features are simulating this tier for internal testing": "用量上限和功能正在模拟此等级以进行内部测试",
    "Usage limits are simulating this tier for internal testing": "用量限额正在模拟此等级以进行内部测试",
    "Usage policy": "使用政策",
    "Usage price": "用量价格",
    "Usage set to {percent}%": "用量已设置为 {percent}%",
    "Usage settings are only available on Max plans. Upgrade to view your usage.": "使用量设置仅适用于 Max 套餐。升级后可查看你的使用量。",
    "Usage settings are only available on Pro and Max plans. Upgrade to view your usage.": "使用情况设置仅在 Pro 和 Max 计划中可用。升级以查看您的使用情况。",
    "Usage settings are only available on Pro plans. Upgrade to view your usage.": "使用设置仅适用于 Pro 方案。升级以查看你的用量。",
    "Usage, uptime, and error rates for this server": "此服务器的用量、可用性和错误率",
    "Usage-based seats cannot be combined with Standard or Premium seats.": "基于用量的席位不能与标准或高级席位混用。",
    "Use": "使用",
    "Use 3–63 characters.": "使用 3–63 个字符。",
    "Use <b>Run now</b> to do a test run and pre-approve permissions for future runs.": "使用“立即运行”进行测试并为以后的运行预先批准权限。",
    "Use <emphasis>Quick Entry</emphasis> to send messages and screenshots to Claude from any app": "使用<emphasis>快速进入</emphasis>从任何应用向 Claude 发送消息和截图",
    "Use Artifacts only for web apps and code demos.": "仅对 Web 应用和代码演示使用 Artifacts。",
    "Use Built-in Node.js for MCP": "为 MCP 使用内置 Node.js",
    "Use CLI default": "使用 CLI 默认值",
    "Use Claude Code anywhere you build": "在您构建代码的任何地方使用 Claude Code",
    "Use Claude for free": "免费使用 Claude",
    "Use Claude together with your lab members on the Enterprise plan. Name your lab something they’ll recognize.": "在企业计划中与您的实验室成员一起使用 Claude。为您的实验室命名一个他们能识别的名称。",
    "Use Claude together with your teammates on the Enterprise plan. Name your team something they’ll recognize.": "与您的团队成员一起在 Enterprise 方案中使用 Claude。给您的团队起一个他们好辨识的名字。",
    "Use Claude where you already work, like Excel, Chrome, and Slack": "在您已有的工作环境中使用 Claude,如 Excel、Chrome 和 Slack",
    "Use Gmail": "使用 Gmail",
    "Use Projects with your team to do things like:": "通过与团队一起使用“项目”来执行如下操作:",
    "Use a different account": "使用其他账号",
    "Use a different card": "使用另一张卡",
    "Use a different email": "使用不同的电子邮箱",
    "Use a different name on invoices": "在发票上使用不同的名称",
    "Use a project": "使用一个项目",
    "Use an existing folder": "使用现有文件夹",
    "Use an existing team plan or trial plan": "使用现有的团队方案或试用方案",
    "Use and manage your connectors": "使用并管理您的连接器",
    "Use cases": "用例",
    "Use caution before running this prompt. Malicious conversation content could trick Claude into attempting harmful actions or sharing your data.": "运行此提示词前请保持谨慎。恶意对话内容可能会诱使 Claude 尝试有害操作或泄露您的数据。",
    "Use connector default": "使用连接器默认值",
    "Use custom instructions (advanced)": "使用自定义指令(高级)",
    "Use folders instead": "改用文件夹",
    "Use in chat": "在对话中使用",
    "Use incognito": "使用无痕/隐身模式",
    "Use initials": "使用首字母",
    "Use lowercase letters, numbers, and hyphens. Hyphens can't be first or last.": "使用小写字母、数字和连字符。连字符不能位于开头或结尾。",
    "Use memory": "使用记忆功能",
    "Use memory in sessions": "在会话中使用记忆",
    "Use mode": "使用模式",
    "Use projects to organize chats and give Claude knowledge context": "使用项目功能管理聊天并为 Claude 提供知识背景",
    "Use projects to organize chats and re-use knowledge from files": "使用项目功能来管理聊天,并复用来自文件的知识",
    "Use specific voice & tone": "使用特定的语音和语气",
    "Use speech-to-text for voice input": "使用语音转文字进行语音输入",
    "Use style": "使用样式",
    "Use system shortcuts (Cmd+Q, Cmd+Tab, and similar)": "使用系统快捷键(Cmd+Q、Cmd+Tab 等)",
    "Use the credit on Claude.ai, Claude Code, Claude Desktop, or third-party apps. When it runs out, you can add more extra usage to keep going past your plan limits. Expires {date}.": "在 Claude.ai、Claude Code、Claude Desktop 或第三方应用上使用积分。当它用完时,您可以添加更多额外使用量以超出您的计划限制。到期日期 {date}。",
    "Use the data to respond to your prompts, when appropriate (e.g. summarize my inbox)": "在适当的时候使用数据来响应您的提示(例如,总结我的收件箱)",
    "Use the mobile app to talk to Claude while it works from your desktop. Scan the code to download it on your phone.": "当 Claude 在您的桌面上工作时,可以使用移动应用与其交谈。扫描二维码将其下载到您的手机上。",
    "Use their Claude Code setup:{br}Skills, connectors, plugins, and workflows.": "使用他们的 Claude Code 配置:{br}技能、连接器、插件和工作流。",
    "Use this information to configure Claude in your identity provider": "使用这些信息在您的身份提供商中配置 Claude",
    "Use this to give Claude instructions for working in this folder.": "使用此项为 Claude 在此文件夹中工作提供指令。",
    "Use verification code to continue": "使用验证码继续",
    "Use voice mode": "使用语音模式",
    "Use your Claude account": "使用你的 Claude 账户",
    "Use your SSO Identity Provider to add new members to your Enterprise organization.": "使用您的 SSO 身份提供商为您组织中的 Enterprise 成员添加新用户。",
    "Use your SSO Identity Provider to manage member roles in your Enterprise organization.": "使用您的 SSO 身份提供商来管理 Enterprise 组织中的成员角色。",
    "Use your identity provider and SCIM settings to manage seat tiers and roles.": "使用您的身份提供商和 SCIM 设置管理席位层级和角色。",
    "Use {code} to insert the one-time password.": "使用 {code} 插入一次性密码。",
    "Use {commentMode} to leave inline comments": "使用 {commentMode} 发表行内评论",
    "Used Claude in Chrome": "已在 Chrome 中使用 Claude",
    "Used Claude in Chrome ({count} actions)": "在 Chrome 中使用了 Claude({count} 次操作)",
    "Used Preview": "已使用预览",
    "Used a skill": "使用了一项技能",
    "Used a tool": "使用了工具",
    "Used in {count, plural, one {# conversation} other {# conversations}}, most recently {date}. <a>Learn how to use {feature}</a>": "已在 {count, plural, one {# 次对话} other {# 次对话}}中使用,最近使用于 {date}。<a>了解如何使用 {feature}</a>",
    "Used this month": "本月已使用",
    "Used to sign proxied requests with AWS Signature Version 4. Values are write-only and never shown after saving.": "用于使用 AWS Signature Version 4 签署代理请求。值是只写的,保存后不再显示。",
    "Used {count, plural, one {# tool} other {# tools}}": "已使用 {count, plural, one {# 个工具} other {# 个工具}}",
    "Used {count} integrations": "已使用 {count} 个集成",
    "Used {count} skills": "已使用 {count} 项技能",
    "Used {count} tools": "使用了 {count} 个工具",
    "Used {label}": "已使用 {label}",
    "Used {name} integration": "使用了 {name} 集成",
    "User": "用户",
    "User Activity": "用户活动",
    "User Settings": "用户设置",
    "User access": "用户访问权限",
    "User access for {name}": "{name} 的用户访问权限",
    "User activity data is not yet available. This feature is coming soon.": "用户活动数据尚不可用。此功能即将推出。",
    "User consent is obtained before sharing data with third parties": "在与第三方共享数据之前已获得用户同意",
    "User or Claude": "用户或 Claude",
    "User provisioning": "用户预配",
    "User settings": "用户设置",
    "User-created skills": "用户创建的技能",
    "Username": "用户名",
    "Users": "用户",
    "Users are confirmed automatically without clicking an email link.": "用户无需点击邮件链接即可自动确认。",
    "Users are confirmed automatically without entering an SMS code.": "用户无需输入短信验证码即可自动确认。",
    "Users can choose: Always allow, Ask, or Block": "用户可以选择:始终允许、询问或阻止",
    "Users can choose: Ask or Block": "用户可以选择:询问或阻止",
    "Users can create a session without providing any credentials.": "用户可以在不提供任何凭证的情况下创建会话。",
    "Users can sign up and sign in with a phone number.": "用户可以使用手机号注册并登录。",
    "Users can sign up and sign in with an email address.": "用户可以使用邮箱地址注册并登录。",
    "Users can use Claude after exceeding their rate limit with usage-based pricing": "用户在超出频率限制后,可以使用按量计费继续使用 Claude",
    "Users impacted": "受影响的用户",
    "Users may pick any level for unlisted commands.": "用户可以为未列出的命令选择任意级别。",
    "Users must approve each unlisted command. They can still block.": "用户必须批准每个未列出的命令。他们仍然可以阻止。",
    "Users must log in to claude.ai with SSO.": "用户必须通过 SSO 登录 claude.ai。",
    "Users must log in to platform.claude.com with SSO.": "用户必须使用 SSO 登录 platform.claude.com。",
    "Users must re-authenticate every {days} days.": "用户必须每 {days} 天重新认证一次。",
    "Users to Add": "要添加的用户",
    "Users to Remove": "待移除的用户",
    "Users to Update": "待更新用户",
    "Users who haven't signed in within the last 24 hours must re-authenticate before changing their password.": "过去 24 小时内未登录的用户在更改密码前必须重新进行身份验证。",
    "Users with 1 or more artifact": "拥有 1 个或以上构件的用户",
    "Users with 1 or more chat": "拥有 1 条或更多聊天的用户",
    "Users with 1 or more project": "拥有 1 个或以上项目的用户",
    "Users with 1 or more session": "有 1 个或更多会话的用户",
    "Users with SSO access are automatically provisioned on first login.": "具有 SSO 访问权限的用户会在首次登录时自动开通。",
    "Uses default": "使用默认值",
    "Uses your everyday tools": "使用您的日常工具",
    "Using the claude API, create a platformer game where the next level will be generated by AI based on the theme that a user selects – make sure to ask users for the theme before the start of the game, and before each new level. Each level should become slightly harder, and there should be variation in the gameplay and structure of the platforms Remember that you are the worlds best game designer and front-end engineer, and you also have a masters degree in visual design, so go above and beyond in polish, detail, and really making it pop while not being gimmicky / looking like AI slop. I believe in you so much Claude!": "使用 Claude API 创建一款平台跳跃游戏,其中的下一关将由 AI 根据用户选择的主题生成——确保在游戏开始前以及每一关开始前询问用户的主题。每一关都应当逐渐变难,且平台的游戏玩法和结构应当有所变化。记住,你是世界上最好的游戏设计师和前端工程师,并拥有视觉设计硕士学位,因此要在精致度、细节和视觉冲击力上精益求精,同时不要显得花哨或有那种 AI 工业废料感。Claude,我非常相信你!",
    "Using this feature and giving feedback directly improves what Claude can do.": "使用此功能并提供反馈,可直接提升 Claude 的能力。",
    "Using {connectorName}...": "正在使用 {connectorName}...",
    "Using {extraUsageLink} for routine runs until limits reset.": "在限制重置前,例程运行将使用 {extraUsageLink}。",
    "Using {label}": "正在使用 {label}",
    "Using {toolName}...": "使用 {toolName}...",
    "Utilities": "实用工具",
    "Utilization": "利用率/使用率",
    "V: select{sep}P: pen{sep}R: rectangle{sep}A: arrow{sep}⌘Z: undo{sep}Esc: close": "V:选择{sep}P:画笔{sep}R:矩形{sep}A:箭头{sep}⌘Z:撤销{sep}Esc:关闭",
    "VAT": "增值税 (VAT)",
    "VM tool egress is unrestricted — tools may reach any host your firewall allows. Common hosts (not exhaustive):": "VM 工具出口不受限制,工具可以访问你的防火墙允许的任何主机。常见主机(并非穷尽):",
    "VS": "对决",
    "VS Code": "VS Code",
    "Validate": "验证",
    "Validate your latest changes without triggering a sync": "在不触发同步的情况下验证您最新的更改",
    "Validated elsewhere": "已在别处验证",
    "Validating marketplace...": "正在验证市场...",
    "Validation passed. {count, plural, one {# plugin looks} other {# plugins look}} good.": "验证通过。{count, plural, one {# 个插件看起来} other {# 个插件看起来}}正常。",
    "Validation runs automatically when auto-sync is enabled": "启用自动同步后,验证会自动运行",
    "Valuation": "估值",
    "Value": "数值",
    "Value does not match the required format.": "值与要求的格式不匹配。",
    "Value:": "Value:",
    "Values": "价值观",
    "Vegan": "纯素食",
    "Vegetarian": "素食主义者",
    "Verbose": "详细日志",
    "Verification": "验证",
    "Verification code copied to clipboard": "验证码已复制到剪贴板",
    "Verification submitted": "验证已提交",
    "Verification unsuccessful": "验证失败",
    "Verified": "已验证",
    "Verified domain emails authenticate via your identity provider.": "已验证域名的电子邮件通过你的身份提供商进行身份验证。",
    "Verified domains are shared across all organizations in {parentOrgName}.": "经验证的域名在 {parentOrgName} 中的所有组织间共享。",
    "Verified domains enable SSO and advanced security features": "已验证域名可启用 SSO 和高级安全功能",
    "Verified email domains associated with your organization.": "与您组织关联的已验证邮箱域名。",
    "Verify": "验证",
    "Verify Email Address": "验证电子邮箱地址",
    "Verify a domain": "验证域名",
    "Verify changes": "验证更改",
    "Verify code": "验证代码",
    "Verify domain": "验证域名",
    "Verify lab": "验证实验室",
    "Verify your age": "验证您的年龄",
    "Verify your number": "验证您的号码",
    "Verify your phone number": "验证您的电话号码",
    "Verifying": "正在验证",
    "Verifying CAPTCHA and attempting login...": "验证验证码并尝试登录...",
    "Verifying eligibility…": "正在验证资格…",
    "Verifying payment method...": "正在验证付款方式…",
    "Verifying your card…": "正在验证您的卡片…",
    "Verifying your payment…": "正在验证您的付款…",
    "Verifying...": "验证中...",
    "Version": "版本",
    "Version from {when}": "来自 {when} 的版本",
    "Version restored": "版本已恢复",
    "Version {number} — {date}": "版本 {number} — {date}",
    "Version {versionNum}": "版本 {versionNum}",
    "Vertex": "Vertex",
    "Via API": "通过 API",
    "Via GitHub": "通过 GitHub",
    "Vibe code with me": "和我一起在代码里 Vibe",
    "View": "查看",
    "View CCR debug info": "查看 CCR 调试信息",
    "View CI checks on GitHub": "在 GitHub 上查看 CI 检查",
    "View Diff": "查看差异",
    "View Instructions": "查看指令",
    "View Logs": "查看日志",
    "View PR": "查看 PR",
    "View PR #{prNumber}": "查看 PR #{prNumber}",
    "View all": "查看全部",
    "View all ({count})": "查看全部({count})",
    "View all connectors": "查看所有连接器",
    "View all plans": "查看所有方案/计划",
    "View all plugins": "查看所有插件",
    "View all skills": "查看所有技能",
    "View all {count} files": "查看所有 {count} 个文件",
    "View all {count} images": "查看全部 {count} 张图片",
    "View all →": "查看全部 →",
    "View analysis": "查看分析",
    "View and edit memory": "查看并编辑记忆",
    "View and manage files stored in your app.": "查看并管理存储在您应用中的文件。",
    "View and manage memory": "查看并管理记忆",
    "View and manage the data stored in your app.": "查看并管理存储在您应用中的数据。",
    "View and open files created during this task.": "查看并打开在此任务期间创建的文件。",
    "View as JSON": "以 JSON 查看",
    "View attached image {n}": "查看附件图片 {n}",
    "View attached images": "查看附加的图像",
    "View background task": "查看后台任务",
    "View breakdown": "查看明细",
    "View connection instructions": "查看连接指南",
    "View current organizations": "查看当前组织",
    "View details": "查看详情",
    "View details for PR #{number}": "查看 PR #{number} 的详细信息",
    "View diff": "查看 diff",
    "View file": "查看文件",
    "View file changes": "查看文件更改",
    "View file changes for this branch": "查看此分支的文件变更",
    "View file changes for {repo}": "查看 {repo} 的文件更改",
    "View files": "查看文件",
    "View full chat": "查看完整对话",
    "View full image: {title}": "查看完整图像:{title}",
    "View in {source}": "在 {source} 中查看",
    "View invoice": "查看发票",
    "View invoice details": "查看发票详情",
    "View issue #{number} on GitHub": "在 GitHub 上查看 Issue #{number}",
    "View more": "查看更多",
    "View on GitHub": "在 GitHub 上查看",
    "View on GitHub (opens in new tab)": "在 GitHub 上查看(在新标签页打开)",
    "View on Google Maps": "在 Google 地图查看",
    "View on claude.com": "在 claude.com 上查看",
    "View only": "仅查看",
    "View original": "查看原始内容",
    "View records in {tableName}": "查看 {tableName} 中的记录",
    "View request/response": "查看请求/响应",
    "View scheduled task": "查看计划任务",
    "View screenshot": "查看截图",
    "View session": "查看会话",
    "View session logs": "查看会话日志",
    "View source": "查看来源",
    "View steps": "查看步骤",
    "View submissions": "查看提交内容",
    "View task prompt": "查看任务提示",
    "View teams": "查看团队",
    "View the implementation plan for this session": "查看此会话的实施计划",
    "View transcript": "查看记录",
    "View usage and activity metrics for your organization": "查看您组织的用量和活动指标",
    "View usage in Settings": "在设置中查看使用情况",
    "View user signups over time.": "查看随时间变化的用户注册情况。",
    "View your connectors": "查看您的连接器",
    "View {count} more": "查看更多 {count} 个",
    "View {label} on {source}": "在 {source} 上查看 {label}",
    "View {title}": "查看 {title}",
    "Viewed a file": "查看了一个文件",
    "Viewed {count} files": "已查看 {count} 个文件",
    "Viewing v{version}": "正在查看 v{version}",
    "Views": "视图",
    "Vintage mechanical calculators": "老式机械计算器",
    "Violation of terms or usage policy": "违反条款或使用政策",
    "Violence and/or hate speech": "暴力和/或仇恨言论",
    "Virtual Machine Platform not available": "虚拟机平台不可用",
    "Virtualization is not available": "虚拟化不可用",
    "Virtualization not available": "虚拟化不可用",
    "Visibility": "可见性",
    "Visit AWS Marketplace": "访问 AWS Marketplace",
    "Visit the AWS Marketplace to purchase access.": "访问 AWS Marketplace 以购买访问权限。",
    "Visualize a tricky concept": "将棘手的概念可视化",
    "Visualize key concepts": "可视化关键概念",
    "Visualize where my time truly goes each week": "直观查看我每周时间的真正流向",
    "Visuals": "视觉效果",
    "Voice": "语音",
    "Voice mode disconnected. You can try again.": "语音模式已断开。您可以重试。",
    "Voice mode isn't supported in this browser.": "此浏览器不支持语音模式。",
    "Voice settings": "语音设置",
    "Voice shortcut": "语音快捷键",
    "Voice:": "声音:",
    "Volume": "音量",
    "W": "W",
    "WAU": "周活跃用户数 (WAU)",
    "Wait": "等候",
    "Wait until {resetDayOfWeek}": "等待直到 {resetDayOfWeek}",
    "Wait until {resetHour}": "请等待至 {resetHour}",
    "Wait {count, plural, one {# second} other {# seconds}}": "等待 {count, plural, one {# 秒} other {# 秒}}",
    "Waiting for CAPTCHA...": "等待验证码...",
    "Waiting for a runner — {ahead, plural, =0 {next in queue} one {# ahead of you} other {# ahead of you}}": "等待运行器 — {ahead, plural, =0 {队列中的下一个} one {您前面有 # 个} other {您前面有 # 个}}",
    "Waiting for a runner…": "等待运行器…",
    "Waiting for checks": "正在等待检查",
    "Waiting for output...": "等待输出...",
    "Waiting for output…": "等待输出…",
    "Waiting for security scan to complete.": "等待安全扫描完成。",
    "Waiting for uploads": "等待上传",
    "Waiting for you to choose a browser": "等待你选择浏览器",
    "Waiting for your decision": "等待您的决定",
    "Waiting on {organizationName} approval": "正在等待 {organizationName} 的批准",
    "Walk away with a deck you can share": "带走一份可向他人展示的演示文稿",
    "Walk me through a framework for diagnosing and improving ML model performance.": "带我了解一个用于诊断和提升机器学习模型性能的框架。",
    "Walk me through how to choose the right chart for a data science result.": "带我了解如何为数据科学结果选择合适的图表。",
    "Walk me through the main marketing attribution models — first-touch, last-touch, linear, time-decay — and when each one makes sense.": "带我了解主要的营销归因模型,包括首次触达、最后触达、线性和时间衰减,以及各自适用的场景。",
    "Walk me through the most useful consulting frameworks — MECE, issue trees, hypothesis-driven problem solving — and when to reach for each.": "带我了解最有用的咨询框架,如 MECE、问题树、假设驱动的问题解决,以及分别适合在什么情况下使用。",
    "Wander through an endless Japanese tea garden where cherry blossoms bloom eternal": "漫步于樱花永久盛开的无尽日式茶馆花园",
    "Want to be notified when Claude responds?": "想在 Claude 回复时收到通知吗?",
    "Want to build and share your own desktop extension?": "想构建并分享您自己的桌面扩展程序吗?",
    "Want to set up apps later?": "想稍后设置应用?",
    "Want to set up later?": "想稍后再设置吗?",
    "Want to stop researching?": "想停止研究吗?",
    "Wants to join": "想要加入",
    "Warming up the engines...": "正在预热引擎...",
    "Warning": "警告",
    "Warning: This will be publicly available. Do not include any internal Anthropic data and do not use this application with an internal Anthropic data--this should only be used with fully public information.": "警告:这将公开可用。请勿包含任何 Anthropic 内部数据,也请勿将此应用用于 Anthropic 内部数据——这仅应与完全公开的信息配合使用。",
    "Watch a demo": "观看演示",
    "Watch for malicious instructions": "防范恶意指令",
    "We appreciate your time.": "感谢您的时间。",
    "We are focused on learning from Max plan users first during this experimental phase. As we improve safety and reliability based on real usage, we'll gradually expand to other plans. Our timeline depends on what we discover during the research preview.": "在这个实验阶段,我们优先关注来自 Max 方案用户的反馈。随着我们根据实际使用情况提升安全性和可靠性,我们将逐渐扩展到其他方案。我们的时间线取决于我们在研究预览期间的发现。",
    "We could not enable HIPAA compliance. Please try again or contact support.": "无法启用 HIPAA 合规。请重试或联系支持。",
    "We couldn't confirm your eligibility": "我们无法确认你的资格",
    "We couldn't find your account information": "我们找不到您的账户信息",
    "We couldn't find your company in {partnerName}'s portfolio. We've asked them to confirm. If approved, you'll receive an email with a link to complete signup by {deadline}.": "我们在 {partnerName} 的投资组合中未能找到您的公司。我们已请求他们确认。如果获得批准,您将在 {deadline} 前收到一封包含完成注册链接的邮件。",
    "We couldn't load this offer right now. Try again in a moment.": "当前无法加载此优惠。请稍后重试。",
    "We couldn't process your refund. Please try again.": "无法处理您的退款,请稍后重试。",
    "We couldn't submit your application. Try again.": "无法提交你的申请。请重试。",
    "We couldn't verify that link. Check it and try again.": "我们无法验证该链接。请检查后重试。",
    "We couldn't verify your eligibility right now. Refresh the page to try again.": "我们目前无法验证您的资格。请刷新页面重试。",
    "We couldn’t connect to Claude. Please check your network connection and try again.": "我们无法连接到 Claude。请检查您的网络连接并重试。",
    "We do not share your Gmail data with anyone": "我们不与任何人共享您的 Gmail 数据",
    "We don’t support applying this offer to existing subscriptions purchased on iOS and Android yet.": "我们尚不支持将此优惠应用于在 iOS 和 Android 上购买的现有订阅。",
    "We emailed {name}'s gift to {toEmail}. You'll also get a confirmation at {fromEmail}.": "我们已将 {name} 的礼品发送至 {toEmail}。您也会在 {fromEmail} 收到一份确认。",
    "We found an existing Claude Team plan for @{domain}. If you want to keep that workspace and members, choose Upgrade below.": "我们发现 @{domain} 已有一个 Claude Team 套餐。如果你想保留该工作区和成员,请在下方选择升级。",
    "We had an unexpected billing error, please <link>contact support.</link>": "我们遇到了意料之外的账单错误,请<link>联系支持团队。</link>",
    "We have not sent you an invoice yet.": "我们尚未向您发送账单。",
    "We have sent follow up messaging to your email.": "我们已向您的邮箱发送了后续消息。",
    "We need to confirm your identity before we start your subscription.": "在开始订阅之前,我们需要确认您的身份。",
    "We need to confirm your identity before you start your subscription. This should only take 2 minutes.": "在您开始订阅之前,我们需要确认您的身份。这应该只需要 2 分钟。",
    "We recommend setting up the appropriate groups in your Identity Provider before enabling this feature.": "建议在开启此功能前在您的身份提供商中设置好相应的分组。",
    "We recommend starting with docs, messages, and email. Once you connect a tool, anyone in your org can use it anytime.": "我们建议从文档、消息和电子邮件开始。一旦您连接了一个工具,组织中的任何人都可以随时使用它。",
    "We reserve the right to temporarily or permanently modify, suspend, or discontinue the Services or your access to the Services or account at any time if we detect your account was in violation of our Terms of Service or Acceptable Use Policy.": "如果我们发现你的账户违反了我们的服务条款或可接受使用政策,我们保留在任何时候临时或永久修改、暂停或终止服务,或终止你对服务或账户的访问权限的权利。",
    "We sent a 6-digit code to {phone}. {resendLink}": "我们向 {phone} 发送了一个 6 位数代码。{resendLink}",
    "We sent a link to {email}. Close this tab and click the link in your email to continue redeeming your offer.": "我们已向 {email} 发送链接。关闭此标签页并点击邮件中的链接,以继续兑换你的优惠。",
    "We sent a link to {email}. Close this tab and click the link in your email to continue setting up your Enterprise plan.": "我们已向 {email} 发送了链接。关闭此标签页并点击邮件中的链接以继续设置您的企业方案。",
    "We sent a link to {email}. Close this tab and click the link in your email to continue setting up your team.": "我们已向 {email} 发送了链接。关闭此标签页并点击邮件中的链接以继续设置您的团队。",
    "We sent an invitation to <b>{email}</b>. Please work with them to finish setting up your organization.": "我们已向 <b>{email}</b> 发送邀请。请与他们合作完成您的组织设置。",
    "We sent it to {email}": "我们已发送至 {email}",
    "We use cookies to deliver and improve our services, analyze site usage, and if you agree, to customize or personalize your experience and market our services to you. You can read our Cookie Policy <link>here</link>.": "我们使用 Cookie 来提供并改进服务、分析网站流量,并在征得您同意的情况下,定制定制化体验或向您推广服务。您可以点击<link>此处</link>阅读我们的 Cookie 政策。",
    "We use your chats and coding sessions to train and improve Claude. You can change this setting anytime in your <privacySettingsPage>Privacy Settings</privacySettingsPage>.": "我们使用您的聊天和编码会话来训练和改进 Claude。您可以随时在<privacySettingsPage>隐私设置</privacySettingsPage>中更改此设置。",
    "We use your data to provide this feature and to keep Claude safe and secure (like preventing and investigating fraud and abuse)": "我们使用您的数据来提供此功能,并保持 Claude 的安全(例如预防和调查欺诈及滥用行为)",
    "We use your shipping address for tax calculation. If it isn’t available, we’ll use your billing address instead.": "我们使用您的收货地址来计算税费。如果不可用,我们将使用您的账单地址代替。",
    "We value user reports to uphold our platform’s integrity and improve our ability to enforce our Usage Policy. Unless you opt out, reports may be used to train models for use by our Trust & Safety team, consistent with Anthropic’s safety mission. Opt out of this use by changing the toggle above.": "我们非常重视用户举报,这有助于维护平台信誉并提升我们执行使用策略的能力。除非您选择退出,否则举报内容可能会被用于训练我们信任与安全(Trust & Safety)团队的模型,这符合 Anthropic 的安全愿景。您可以通过上方的开关选择不参与此项数据用途。",
    "We were unable to authenticate you with your identity provider": "我们无法通过您的身份提供商对您进行身份验证",
    "We were unable to log you in": "我们无法为您登录",
    "We were unable to verify you with this link": "我们无法通过此链接验证您的身份",
    "We will never delete any files from GitHub, only files cached by claude.ai": "我们绝不会删除 GitHub 上的任何文件,仅删除由 claude.ai 缓存的文件",
    "We won’t show you ads or let advertisers influence what Claude says.": "我们不会向您展示广告,也不会让广告商影响 Claude 的言论。",
    "We'll email {name}'s gift to {toEmail} on {date}. You'll also get a confirmation at {fromEmail}.": "我们将在 {date} 将 {name} 的礼物发送至 {toEmail}。您也会在 {fromEmail} 收到确认。",
    "We'll hand you off to our verification partner to complete this securely.": "我们将把您转交给我们的验证合作伙伴以安全地完成此操作。",
    "We'll redirect you to your GitHub Enterprise Server to create a pre-configured App with one click. You won't need to enter credentials manually.": "我们将重定向您到 GitHub Enterprise Server,一键创建预配置的应用。您无需手动输入凭据。",
    "We'll use this contact for any questions about your submission.": "如对你的提交有任何问题,我们将使用此联系人进行联系。",
    "We're <link>working on it</link> — try again in a moment.": "我们<link>正在处理</link>,请稍后再试。",
    "We're confirming your eligibility": "我们正在确认您的资格",
    "We're currently focused on learning from Max plan users during this beta phase. As we improve safety and reliability based on real usage, we'll gradually expand to other plans. We don't have a specific timeline to share yet, but expanding access is a priority.": "在测试阶段,我们目前优先关注来自 Max 方案用户的反馈。随着我们根据实际使用情况提升安全性和可靠性,我们将逐渐扩展到其他方案。目前尚无具体的时间线可以分享,但扩大访问范围是我们的优先任务。",
    "We're experiencing high demand. Check back soon to claim. Don't worry, your credit's reserved until {date}.": "我们正在经历高需求。请稍后回来领取。别担心,您的积分已保留至 {date}。",
    "We're having trouble reaching this connector right now. Please try again.": "我们目前无法连接到此连接器。请重试。",
    "We're reviewing your application. You'll receive an email when it's processed, usually within 1–2 business days.": "我们正在审核你的申请。处理完成后你将收到电子邮件,通常会在 1–2 个工作日内。",
    "We're starting with 1,000 Max users and expanding gradually based on what we learn. Join the research preview waitlist and we'll notify you when your access is ready, along with installation instructions and safety guidelines.": "我们目前的测试规模为 1,000 名 Max 用户,并会根据反馈逐步扩大规模。请加入研究预览等待名单,当您的访问权限准备就绪时,我们会通知您,并提供安装说明和安全指南。",
    "We're working hard to bring the artifacts space to Teams and Enterprises.": "我们正在努力将 Artifact 空间带给团队版和企业版用户。",
    "Weather data from Google": "来自 Google 的天气数据",
    "Web": "网页",
    "Web Search": "网页搜索",
    "Web fetch": "网页获取",
    "Web search": "联网搜索",
    "Web search and connectors can't be used in the same chat. Reduces risk of connector data appearing in search queries.": "网页搜索和连接器不能在同一聊天中使用。这样可降低连接器数据出现在搜索查询中的风险。",
    "Web search enabled automatically for Research": "已为“研究”功能自动开启网页搜索",
    "Web, mobile & desktop access": "网页端、移动端和桌面端访问",
    "Webcam access": "网络摄像头访问",
    "Webhook": "Webhook",
    "Webhook couldn't be enabled. You can try again.": "无法启用 webhook。您可以重试。",
    "Webhook couldn't be removed. You can try again.": "无法删除 Webhook。您可以重试。",
    "Webhook created": "Webhook 已创建",
    "Webhook enabled": "Webhook 已启用",
    "Webhook enabled.": "Webhook 已启用。",
    "Webhook is configured. Pushes to the default branch trigger an automatic sync.": "Webhook 已配置。推送到默认分支会触发自动同步。",
    "Webhook removed.": "Webhook 已删除。",
    "Webhook secret": "Webhook 机密",
    "Webhooks": "Webhooks",
    "Webhooks are created by Conway when you ask it to connect to an external service.": "当您要求 Conway 连接到外部服务时,它会创建 webhook。",
    "Website": "网站",
    "Website Info": "网站信息",
    "Website URLs": "网站 URL",
    "Websites and docs could contain malicious instructions that misdirect Claude.": "网站和文档可能包含误导 Claude 的恶意指令。",
    "Wednesday": "周三",
    "Wednesday looks free! Want me to find a spot for dinner?": "周三看起来有空!需要我找个吃晚饭的地方吗?",
    "Week": "周",
    "Week at a glance": "本周概览",
    "Weekdays": "工作日",
    "Weekdays at {approx, select, yes {~} other {}}{time}": "工作日 {approx, select, yes {约} other {}}{time}",
    "Weekdays at {time}": "工作日 {time}",
    "Weekly": "每周",
    "Weekly limits": "每周限额",
    "Weekly · Claude Code": "每周 · Claude Code",
    "Weekly · Cowork": "每周 · Cowork",
    "Weekly · Opus": "每周 · Opus",
    "Weekly · all models": "每周 · 所有模型",
    "Weigh a hard decision": "权衡一个艰难决定",
    "Welcome": "欢迎",
    "Welcome back": "欢迎回来",
    "Welcome back, {name}": "欢迎回来,{name}",
    "Welcome to Claude": "欢迎使用 Claude",
    "Welcome to Claude Code": "欢迎使用 Claude Code",
    "Welcome to Claude Max!": "欢迎使用 Claude Max!",
    "Welcome to Claude Pro!": "欢迎使用 Claude Pro!",
    "Welcome to Claude Studio": "欢迎来到 Claude 工作室",
    "Welcome to Cowork": "欢迎使用 Cowork",
    "Welcome to Max": "欢迎使用 Max",
    "Welcome to Operon": "欢迎来到 Operon",
    "Welcome to Pro": "欢迎使用 Pro 版本",
    "Welcome to the Enterprise Plan": "欢迎使用 Enterprise 方案",
    "Welcome to the Team": "欢迎加入团队",
    "Welcome to the Team Plan, {name}": "欢迎加入团队方案,{name}",
    "Welcome to the weekend": "周末愉快",
    "Welcome to the weekend, {name}": "周末愉快,{name}",
    "Welcome to {orgName}": "欢迎来到 {orgName}",
    "Welcome to {orgName}, {name}": "欢迎来到 {orgName},{name}",
    "Welcome!": "欢迎!",
    "Welcome! I’m Claude.": "欢迎!我是 Claude。",
    "Welcome, {name}": "欢迎,{name}",
    "Welcome, {name}! I’m Claude.": "欢迎,{name}!我是 Claude。",
    "Well, this is embarassing...": "额,这就尴尬了...",
    "Were these images helpful?": "这些图片有帮助吗?",
    "Western European (Windows-1252)": "西欧 (Windows-1252)",
    "We’ll put this toward your next invoice.": "我们会将这笔金额计入你的下一张发票。",
    "We’ll put this toward your next {invoice} invoice.": "我们会将这笔金额计入你的下一张 {invoice} 发票。",
    "We’ll send a reminder when your free trial is ending.": "当您的免费试用即将结束时,我们会发送提醒。",
    "We’ll send a reminder when your trial is ending.": "我们将在试用即将结束时发送提醒。",
    "We’ll use this to verify your account": "我们会使用此项来验证您的账号",
    "We’re not quite ready yet": "我们还没准备好",
    "We’re rolling out access to the browser extension gradually. Join the waitlist and we’ll let you know as soon as it’s your turn!": "我们正在逐步开放浏览器扩展的使用权限。加入等待队列,轮到您时我们会立即通知您!",
    "We’re sorry to see you go! If you have time - your feedback helps us improve the product.": "很遗憾看到您离开!如果您有时间——您的反馈有助于我们改进产品。",
    "We’re sorry, <bold>{clientName}</bold> connections are only available for Claude.ai paid accounts": "抱歉,<bold>{clientName}</bold> 连接仅适用于 Claude.ai 付费账号",
    "We’re still trying to confirm your payment: you’ll get an email if it is successfully processed.": "我们仍在确认您的付款:处理成功后您将收到一封邮件。",
    "We’re working hard to bring the artifacts space to Teams and Enterprises.": "我们正努力将构件 (Artifacts) 空间带给团队和企业版用户。",
    "We’ve created some starter prompts for you.": "我们为您创建了一些初始提示词。",
    "We’ve updated our Consumer Terms and Privacy Policy.": "我们更新了消费者条款和隐私政策。",
    "What <learnMoreLink>personal preferences</learnMoreLink> should Claude consider in responses?": "Claude 在回复时应该考虑哪些<learnMoreLink>个人偏好</learnMoreLink>?",
    "What Anthropic doesn’t see": "Anthropic 看不到的内容",
    "What Anthropic may receive (configured by your organization)": "Anthropic 可能接收的内容(由你的组织配置)",
    "What I picked up about you, kept across chats so you don't have to repeat yourself.": "我对你的了解会在不同聊天间保留,这样你就不必重复自己。",
    "What I'm picking up": "我观察到的是",
    "What accounts, permissions, or setup does a user need before connecting?": "用户在连接前需要哪些账户、权限或设置?",
    "What are the security risks I should know about?": "我应该了解哪些安全风险?",
    "What are the security risks?": "安全风险有哪些?",
    "What are you interested in?": "你对什么感兴趣?",
    "What are you into, {name}? Pick three topics to explore.": "{name},您对什么感兴趣?选择三个主题进行探索。",
    "What are you into? Pick three topics to explore.": "你喜欢什么?选三个感兴趣的话题来探索。",
    "What are you researching?": "您在研究什么?",
    "What are you shipping today?": "你今天要交付什么?",
    "What are you trying to achieve?": "您想要实现什么目标?",
    "What are you working on?": "您正在忙什么?",
    "What are you working towards?": "您正在朝着什么目标努力?",
    "What best describes your work?": "哪种描述最符合您的工作?",
    "What browser activity is not recommended?": "哪些浏览器活动不建议进行?",
    "What can Claude do with limited network access?": "Claude 在有限的网络访问下能做些什么?",
    "What can I help you with today?": "今天有什么我可以帮您的吗?",
    "What changed about your work or workflow that reduced your need for Claude?": "您的工作或流程发生了什么变化,导致您对 Claude 的需求减少了?",
    "What course are you studying?": "您在学习哪门课程?",
    "What do you want to store? (e.g. posts, user profiles…)": "您想存储什么?(例如帖子、用户资料…)",
    "What do you want to try first?": "您想先尝试什么?",
    "What does Claude know about you?": "Claude 对您了解多少?",
    "What factors influenced your decision to switch to a competitor?": "哪些因素影响了您转向竞争对手的决定?",
    "What happens next:": "后续步骤:",
    "What idea themes consistently appear across all my documents?": "在我的所有文档中,哪些创意主题是一贯出现的?",
    "What is Claude and how does it work?": "什么是 Claude,它是如何工作的?",
    "What is a Claude gift membership?": "什么是 Claude 礼品会员?",
    "What is your issue about?": "您的问题关于什么?",
    "What is your main reason for canceling? (optional)": "您取消的主要原因是什么?(可选)",
    "What is your name?": "您叫什么名字?",
    "What kind of work do you do?": "您从事哪方面的工作?",
    "What led you to cancel your Claude subscription?": "是什么让您取消了 Claude 订阅?",
    "What made Claude's pricing unsustainable for you?": "是什么让您觉得 Claude 的价格难以承担?",
    "What made rate limits unsustainable for your needs?": "是什么导致频率限制无法满足您的需求?",
    "What made the images unhelpful?": "是什么导致这些图片毫无帮助?",
    "What missing features or capabilities did you need?": "您需要哪些缺失的功能或能力?",
    "What needs my attention": "哪些需要我关注",
    "What shall we think through?": "我们应该思考什么?",
    "What should Claude call you?": "Claude 该如何称呼您?",
    "What should I use Claude for?": "我应该用Claude做什么?",
    "What should change? (optional)": "应该改变什么?(可选)",
    "What shouldn't I use this for?": "我不应该把这用于什么?",
    "What specifically about Claude's responses didn't meet your expectations?": "Claude 的回答中有哪些具体内容未达到您的预期?",
    "What this URL is overriding": "此 URL 覆盖的内容",
    "What type of issue do you wish to report? (optional)": "您想报告哪类问题?(可选)",
    "What types of errors or bugs most frequently disrupted your work?": "哪些类型的错误或故障最常干扰您的工作?",
    "What was satisfying about this response?": "这个回答让你满意的地方在哪里?",
    "What was unsatisfying about the images?": "图片有哪些不令人满意的地方?",
    "What was unsatisfying about this response?": "这个回复有什么不满意的地方?",
    "What we’ll cover": "我们将涵盖的内容",
    "What will we do together?": "我们会一起做点什么?",
    "What will you build with artifacts?": "您将使用构件构建什么?",
    "What would have made Claude's responses more helpful for your needs?": "什么样的回答能让 Claude 的回复对您的需求更有帮助?",
    "What would you like to try first?": "你想先试什么?",
    "What would you like to work on in this project?": "您想在此项目中处理什么工作?",
    "What's included": "包含内容",
    "What's the best way to structure a long piece — essay, article, or argument? Walk me through how to build an outline that holds together.": "长篇写作(论文、文章或论证)最好的结构方式是什么?请一步步带我建立一个逻辑完整的大纲。",
    "What's working well or could be improved?": "哪些方面做得好,哪些方面可以改进?",
    "What's your role?": "您的职位是什么?",
    "What’s changing?": "有哪些变更?",
    "What’s up next, {name}?": "接下来做什么,{name}?",
    "What’s up next?": "接下来做什么?",
    "What’s working well or could be improved?": "哪里做得好,或者哪里可以改进?",
    "What’s your name?": "你叫什么名字?",
    "What’s your role at {orgName}?": "您在 {orgName} 担任什么职务?",
    "What’s your role?": "您的角色是什么?",
    "When": "何时",
    "When AI can interact with web pages, it creates meaningful value, but also opens up new risks. We're releasing Claude in Chrome as a limited research preview to learn from real-world use.": "当 AI 能与网页交互时,它创造了有意义的价值,但也带来了新的风险。我们将 Claude 作为有限的研究预览版在 Chrome 中发布,以从实际使用中学习。",
    "When Claude pushes changes to a branch, it automatically opens a pull request without asking first.": "当 Claude 将更改推送到分支时,它会自动打开一个拉取请求,而不会事先询问。",
    "When enabled, Claude continues each run in the same session, preserving context across firings instead of starting fresh each time.": "启用后,Claude 会在同一会话中继续每次运行,从而在多次启动间保留背景信息,而非每次都从头开始。",
    "When enabled, Claude will create PRs as the Claude GitHub App bot instead of your personal GitHub account.": "启用后,Claude 将以 Claude GitHub App 机器人的身份而非您的个人 GitHub 账号来创建 PR。",
    "When enabled, Claude will prevent your computer from going to sleep.": "启用后,Claude 会防止您的电脑进入睡眠状态。",
    "When enabled, members are assigned roles based on their IdP group membership. Users not in any mapped group are deprovisioned on the next sync.": "启用后,成员将根据其 IdP 组成员身份分配角色。不在任何映射组中的用户将在下次同步时被取消配置。",
    "When enabled, members are assigned roles based on their IdP group membership. Users not in any mapped group sign in with the default role.": "启用后,将根据成员的 IdP 组成员身份分配角色。不属于任何映射组的用户将以默认角色登录。",
    "When enabled, the webhook payload will include the finding’s title, file location, and description. Leave this off to send only a link back to Claude Security.": "启用后,webhook 负载将包含发现项的标题、文件位置和描述。关闭则仅发送返回 Claude Security 的链接。",
    "When enabled, users can connect channel servers via the --channels flag. Users pick which servers to trust; messages from those servers flow directly into the assistant's context.": "启用后,用户可以通过 --channels 标志连接通道服务器。用户可以挑选要信任的服务器;来自这些服务器的消息将直接流入助手的上下文。",
    "When enabled, users can only install desktop extensions that have been added to the list above.": "启用后,用户只能安装已添加到上述列表中的桌面扩展。",
    "When extra usage balance is:": "当额外用量余额为:",
    "When extra usage is:": "当额外用量:",
    "When giving feedback, explain thought process and highlight issues and opportunities.": "提供反馈时,解释思考过程并指出问题和机会。",
    "When is your birthday?": "您的生日是什么时候?",
    "When this session was last used or had its expiration time updated.": "该会话上次使用或刷新过期时间的时间点。",
    "When will other Claude plans get access?": "其他 Claude 方案什么时候能获得访问权限?",
    "When you add plugins to your marketplace, they will appear here.": "当您向市场添加插件时,它们会显示在这里。",
    "When you choose <b>Allow for all scheduled runs</b> on a permission prompt during a run, it's saved here and auto-applied next time.": "当您在运行过程中的权限提示框里选择“<b>允许所有计划运行</b>”时,选择会被保存在此处,并在下次自动应用。",
    "When you delete this chat, you’ll also delete the published artifacts in this chat.": "当您删除此聊天时,您也将删除此聊天中已发布的构件。",
    "When you sign in to Claude Code, your authorization tokens will appear here.": "当您登录 Claude Code 时,您的授权令牌将显示在此处。",
    "When you upload plugins, they will appear here.": "当您上传插件时,它们会显示在这里。",
    "Where Claude runs": "Claude 运行位置",
    "Where do you want to start?": "你想从哪里开始?",
    "Where should we start?": "我们从哪里开始?",
    "Where to store git worktrees for isolated coding sessions": "存储隔离编码会话的 git 工作树 (worktrees) 的位置",
    "Where’s the sloth?": "树懒在哪里?",
    "Which competitor are you switching to?": "您要切换到哪个竞争对手?",
    "Which names are the top movers in my portfolio and why?": "我投资组合中波动最大的名字有哪些,原因是什么?",
    "Which one?": "选哪一个?",
    "Which plan?": "选择哪个计划?",
    "Who can remix your app": "谁可以 Remix 你的应用",
    "Why are you reporting this?": "您举报该内容的原因是什么?",
    "Why don't we understand anesthesia?": "为什么我们还不理解麻醉?",
    "Why this banner is shown": "为什么显示此横幅",
    "Wildcard": "通配符",
    "Will be saved as \"{name}\"": "将保存为\"{name}\"",
    "Will not renew": "不再续订",
    "Will run when it reconnects.": "将在重新连接时运行。",
    "Win the Fortune 500 deal": "赢得财富500强交易",
    "Window": "窗口",
    "Windows": "Windows",
    "Windows (arm64)": "Windows (arm64)",
    "Windows (x64)": "Windows (x64)",
    "Windows on Arm not currently supported": "Arm 架构的 Windows 目前暂不支持",
    "Windows on Arm not supported": "不支持 Arm 架构的 Windows",
    "Windows update required": "需要 Windows 更新",
    "Wireless Headphones Pro": "无线耳机 Pro",
    "Wires up sign-in with email magic links, adds the sign-in/out UI, and gates any private pages. If authentication isn't configured for this project yet, Claude will set it up first and check in before continuing.": "使用电子邮件魔术链接连接登录,添加登录/注销 UI,并限制任何私有页面。如果尚未为此项目配置身份验证,Claude 将首先设置它并在继续之前检查。",
    "With Cowork, Claude breaks complex tasks into parallel workstreams.": "通过 Cowork,Claude 将复杂任务分解为并行工作流。",
    "With Cowork, Claude can tackle several complex tasks at the same time. Organize files while drafting a report while crunching data.": "通过 Cowork,Claude 可以同时处理多个复杂任务。在起草报告的同时整理文件,并同时分析数据。",
    "With Cowork, Claude can tackle several complex tasks at the same time. Organize files while drafting a report while crunching data.\n\nCheck in when you want or just let Claude cook.": "使用 Cowork,Claude 可以同时处理多项复杂任务。在起草报告和分析数据的同时整理文件。\n\n随时查看进度,或让 Claude 自主处理。",
    "With Cowork, Claude can tackle several complex tasks at the same time. Organize files while drafting a report while crunching data.\nCheck in when you want or just let Claude cook.": "通过 Cowork,Claude 可以同时处理多个复杂任务。在整理文件的同时,可以起草报告并分析数据。\n随心时查看进度,或者干脆交给 Claude 自由发挥。",
    "With Cowork, Claude can work directly in your folders or browser tab.": "通过 Cowork,Claude 可以直接在您的文件夹或浏览器标签页中工作。",
    "With Cowork, Claude can work directly in your folders or browser tabs. Organize screenshots, analyze receipts, draft docs from your notes—whatever's on your to-do list.": "通过 Cowork,Claude 可以直接在您的文件夹或浏览器标签页中工作。整理屏幕截图、分析收据、根据笔记起草文档——处理您待办事项清单上的任何任务。",
    "With Cowork, Claude tackles complex tasks independently. It can organize files, draft docs, and more.": "通过 Cowork,Claude 可以独立处理复杂任务。它可以整理文件、起草文档等等。",
    "With SCIM group mappings enabled, members who aren't in any of these groups will be removed from your organization on the next sync:": "在启用 SCIM 组映射的情况下,不在这些组中的成员将在下次同步时从您的组织中移除:",
    "With current role": "使用当前角色",
    "With my team": "与我的团队成员",
    "With the desktop app, Claude can write code, work with your files, and automate tasks while you focus on other work.": "使用桌面应用,Claude 可以编写代码、处理文件并自动执行任务,而您则专注于其他工作。",
    "With your permission, we will use your chats and coding sessions to train and improve our AI models. This helps us to 1) improve our AI models to make Claude more helpful and accurate for everyone and 2) develop more robust safeguards against harmful outputs.": "经您许可,我们将使用您的聊天和编程会话来训练和改进我们的 AI 模型。这有助于我们:1)改进 AI 模型,使 Claude 对所有人更有帮助和更准确;2)开发更强大的防护措施以防止有害输出。",
    "Without Pro, you’ll lose access to these advanced features:": "没有 Pro,您将失去这些高级功能:",
    "Without a filter, the routine fires on every matching event.": "如果没有筛选器,例程将在每个匹配事件上触发。",
    "Word cloud maker": "词云生成器",
    "Work": "工作",
    "Work across your files and apps. Build repeatable workflows.": "跨文件和应用工作。构建可重复的工作流。",
    "Work at full speed with fewer interruptions.": "全速工作,减少干扰。",
    "Work directly in your computer's files": "直接在您计算机的文件中工作",
    "Work email": "工作邮箱",
    "Work email address required.": "需要使用工作邮箱地址。",
    "Work email required": "需要工作邮箱",
    "Work from anywhere with Dispatch": "使用 Dispatch 随时随地办公",
    "Work in a project": "在项目中工作",
    "Work in an isolated copy of the repo": "在仓库的隔离副本中工作",
    "Work on your behalf using Claude": "使用 Claude 代表您执行工作",
    "Work or employer": "工作单位或雇主",
    "Work through a problem": "解决问题",
    "Work through approaches and gut-check your stats.": "研究方法并直觉检查您的统计数据。",
    "Work with Claude in Excel, Chrome, Slack, and more": "在 Excel、Chrome、Slack 等工具中使用 Claude",
    "Work with apps and files": "使用应用和文件",
    "Work with bigger context (200K)": "使用更大上下文(200K)",
    "Work with me directly in your terminal and codebase. Describe what you want to build and I’ll help make it happen.": "直接在您的终端和代码库中与我一起工作。描述您想要构建的内容,我会帮助您实现。",
    "Work with the biggest context (500K)": "使用最大上下文(500K)",
    "Worked": "已生效",
    "Worked for {duration}": "已工作 {duration}",
    "Workflow dispatch": "工作流分派 (Workflow dispatch)",
    "Workflow job": "工作流作业",
    "Workflow job queued, waiting, in progress, or completed": "工作流作业已入队、等待中、进行中或已完成",
    "Workflow run": "工作流运行",
    "Workflow run requested or completed": "工作流运行已请求或已完成",
    "Working": "工作中",
    "Working directory": "工作目录",
    "Working file hidden in shared chat": "共享聊天中的工作文件已隐藏",
    "Working files": "正在处理的文件",
    "Working folder": "工作文件夹",
    "Working folders": "工作文件夹",
    "Working on it...": "处理中...",
    "Working on it…": "正在处理…",
    "Working through a complex response...": "正在处理复杂的回复...",
    "Working with Cowork": "使用协作",
    "Working...": "处理中...",
    "Working…": "处理中...",
    "Works as intended": "符合预期",
    "Works immediately with every repository you already have access to. Generate a token on github.com and paste it here.": "可立即用于您已有访问权限的每个仓库。在 github.com 上生成令牌并将其粘贴到此处。",
    "Works in": "适用于",
    "Works with": "兼容/适用于",
    "Works with Claude.ai and Claude Code": "适用于 Claude.ai 和 Claude Code",
    "Works with your current {planLabel} plan": "适用于你当前的 {planLabel} 计划",
    "Works with {connectors}": "适用于 {connectors}",
    "Workspace trust needed": "需要工作区信任",
    "Worktree": "工作树",
    "Worktree location": "工作树位置",
    "Write": "写作",
    "Write a blog post": "撰写博客文章",
    "Write a blog post about sustainable fashion trends": "写一篇关于可持续时尚趋势的博客文章",
    "Write a campaign brief": "撰写活动简介",
    "Write a first draft": "撰写初稿",
    "Write a first draft from my notes or brief. Match the tone and length I describe. Here's what I'm working with:": "根据我的笔记或简报写一版初稿。匹配我描述的语气和长度。以下是我现有的内容:",
    "Write a great email": "写一封出色的邮件",
    "Write a job description": "编写职位描述",
    "Write a job description for my dream life": "为我的理想生活写一份职位描述",
    "Write a meeting follow-up": "编写会议后续跟进",
    "Write a message…": "输入消息…",
    "Write a pretend 1-page newspaper based on my integrations?": "根据我的集成工具写一份模拟的 1 页报纸?",
    "Write a product requirements doc (PRD)": "编写产品需求文档 (PRD)",
    "Write a product review for wireless headphones": "为无线耳机写一篇产品评论",
    "Write a report": "编写报告",
    "Write a solid creative brief": "编写一份扎实的代码创意简报",
    "Write a status update": "编写状态更新",
    "Write acceptance criteria": "编写验收标准",
    "Write actions aren't enabled for this account": "此帐号未开启写入权限",
    "Write an automation script": "编写自动化脚本",
    "Write an email": "写一封邮件",
    "Write an incident postmortem": "编写一份故障回顾报告 (Postmortem)",
    "Write an investor update": "撰写投资人更新",
    "Write case studies": "撰写案例研究",
    "Write code, review diffs, and merge PRs, all in one place.": "编写代码、评审差异、合并 PR,一站式完成。",
    "Write compelling CTAs": "撰写具有吸引力的 CTA (行动号召广告)",
    "Write compelling copy": "编写具有说服力的文案",
    "Write creative prompts for LLMs": "为 LLM 编写创意提示词",
    "Write event descriptions": "编写活动描述",
    "Write executive summaries": "撰写执行摘要",
    "Write grant proposals": "编写拨款提案",
    "Write marketing copy": "编写营销文案",
    "Write microcopy for a UI": "为 UI 撰写微文案",
    "Write microcopy for a UI element I'll describe — buttons, empty states, error messages. Ask what tone fits our product.": "为我将描述的 UI 元素编写微文案,例如按钮、空状态、错误消息。先问什么语气适合我们的产品。",
    "Write product descriptions": "撰写产品描述",
    "Write skill instructions": "编写技能指令",
    "Write something in the voice of my favorite historical figure": "以我最喜欢的历史人物的口吻写点东西",
    "Write speech drafts": "撰写演讲稿/演说辞",
    "Write summary": "写总结",
    "Write technical documentation": "编写技术文档",
    "Write the difficult client email": "编写一封针对棘手客户的邮件",
    "Write the opening of a short story about a morning commute that takes an unexpected turn": "写一个关于晨间通勤发生意外转折的短篇故事开头",
    "Write to your clipboard": "写入您的剪贴板",
    "Write unit test cases": "编写单元测试用例",
    "Write user stories that work": "撰写有效的用户故事",
    "Write video scripts": "编写视频脚本",
    "Write your message...": "输入您的消息...",
    "Write your prompt to Claude": "向 Claude 编写您的提示词",
    "Write, edit, and create content": "编写、编辑和创作内容",
    "Write/delete": "写入/删除",
    "Write/delete tools": "写入/删除工具",
    "Writer": "写作者",
    "Writing & content creation": "写作和内容创作",
    "Writing and citing report...": "正在撰写并引用报告...",
    "Writing editor": "写作编辑器",
    "Writing file...": "正在写入文件...",
    "Writing summary": "正在撰写摘要",
    "Writing {fileName}...": "正在写入 {fileName}...",
    "Writing...": "正在写入...",
    "Wrong email? <link>Change email address</link>": "邮箱错误?<link>更换电子邮箱地址</link>",
    "X": "X",
    "X / Twitter": "X / Twitter",
    "Y": "Y",
    "YOUR ACCOUNT WILL BE USED TO:": "您的账号将被用于:",
    "YTD": "年初至今 (YTD)",
    "YTD Return": "从年初至今收益率",
    "YYYY": "YYYY (年)",
    "Year": "年",
    "Yearly": "按年",
    "Yearly <span>{savings}</span>": "年度 <span>{savings}</span>",
    "Yellow": "黄色",
    "Yep, that's me.": "对,是我。",
    "Yes": "是",
    "Yes — that's my org ({orgName}). What plan should we be on?": "是的——那是我的组织({orgName})。我们应该使用什么套餐?",
    "Yes! You can send the gift immediately or schedule it to be delivered on a specific date, like a birthday or holiday.": "是的!您可以立即发送礼品,也可以安排在特定日期(如生日或节日)送达。",
    "Yes, I can handle that": "好的,我可以处理",
    "Yes, Reset Everything": "是的,重置所有/重置全部",
    "Yes, continue": "是,继续",
    "Yes, skip approvals": "是的,跳过审批",
    "Yes, you'll need to sign in to your Claude account to purchase a gift. You don't need a paid plan—a free account works.": "是的,您需要登录您的 Claude 账号来购买礼品。您不需要付费方案——免费账号即可。",
    "Yesterday": "昨天",
    "Yesterday at {approx, select, yes {~} other {}}{time}": "昨天 {approx, select, yes {~} other {}}{time}",
    "Yesterday at {time}": "昨天 {time}",
    "You": "您",
    "You agree that Anthropic will charge the card you have on file in the amount above on a recurring basis whenever your balance reaches the amount indicated. To cancel, turn off auto-reload.": "您同意每当您的余额达到所示金额时,Anthropic 将定期从您的存档卡中扣除上述金额。要取消,请关闭自动充值。",
    "You agree that Anthropic will charge your card in the amount above now and on a recurring annual basis until you cancel in accordance with our <terms>terms</terms>, including by exercising your right to cancel your subscription within 14 days from the date of subscription.": "您同意 Anthropic 将按照上述金额立即扣费,并按年定期扣费,直到您按照我们的<terms>条款</terms>取消订阅,包括在订阅之日起 14 天内行使取消订阅的权利。",
    "You agree that Anthropic will charge your card in the amount above now and on a recurring annual basis until you cancel in accordance with our <terms>terms</terms>.": "您同意 Anthropic 将按照上述金额立即扣费,并按年定期扣费,直至您按照<terms>条款</terms>规定取消订阅。",
    "You agree that Anthropic will charge your card in the amount above now and on a recurring monthly basis until you cancel in accordance with our <terms>terms</terms>, including by exercising your right to cancel your subscription within 14 days from the date of subscription.": "您同意 Anthropic 按照上述金额立即扣费,并每月定期扣费,直至您按照<terms>条款</terms>规定(包括自订阅之日起 14 天内行使取消订阅的权利)取消订阅。",
    "You agree that Anthropic will charge your card in the amount above now and on a recurring monthly basis until you cancel in accordance with our <terms>terms</terms>.": "您同意 Anthropic 将按照上述金额立即扣费,并按月定期扣费,直到您按照我们的<terms>条款</terms>取消订阅。",
    "You agree that Anthropic will charge your card in the amount above on a recurring monthly basis until you cancel in accordance with our {terms}. You can cancel at any time in your account settings.": "您同意 Anthropic 将按照上述金额每月定期扣费,直至您按照 {terms} 规定取消订阅。您可以随时在账号设置中取消。",
    "You already are on the Enterprise plan. If you want to upgrade another organization, try <link>logging in with a different email</link>.": "您已经在使用 Enterprise 方案。如果您想升级另一个组织,请尝试<link>使用不同的邮箱登录</link>。",
    "You already have a marketplace with this name.": "您已拥有此名称的市场。",
    "You already have a plugin with that name. Choose a different one.": "已存在同名插件。请选择其他名称。",
    "You already have a skill with that name. Choose a different one.": "已存在同名技能。请选择其他名称。",
    "You are about to access a U.S. Government system": "您即将访问美国政府系统",
    "You are about to connect to a remote host via SSH. Claude will be able to read and modify files on this server.": "您即将通过 SSH 连接到远程主机。Claude 将能够读取并修改此服务器上的文件。",
    "You are about to renew the {planName} for {organizationName}. This will restore full Claude access to all members in your plan.": "您即将续订 {organizationName} 的 {planName}。这将为该方案下的所有成员恢复完整的 Claude 访问权限。",
    "You are about to renew the {planName} subscription for {organizationName} as a <bold>monthly</bold> plan.": "您即将为 {organizationName} 续订 {planName} 订阅,作为<bold>月度</bold>方案。",
    "You are about to renew the {planName} subscription for {organizationName} as an <bold>annual</bold> plan.": "您即将为{organizationName}将{planName}订阅续期为<bold>年度</bold>计划。",
    "You are about to renew the {planName} subscription for {organizationName}.": "您即将为 {organizationName} 续订 {planName} 订阅。",
    "You are accessing a U.S. Government (USG) Information System (IS) that is provided for USG-authorized use only. By using this IS (which includes any device attached to this IS), you consent to the following conditions:": "您正在访问一个仅供美国政府 (USG) 授权使用的美国政府信息系统 (IS)。使用此系统(包括连接到此系统的任何设备)即表示您同意以下条件:",
    "You are an expert code reviewer…": "您是一位专业的代码审查员…",
    "You are currently logged in as {email}. You must be the Primary Owner of an enterprise account to access this page. Try logging in to a different account.": "您目前以 {email} 身份登录。您必须是企业账号的主要所有者才能访问此页面。请尝试登录其他账号。",
    "You are currently viewing from your personal account.": "您目前正以个人账户查看。",
    "You are currently viewing from your personal account. ": "您当前正在通过个人账号查看。 ",
    "You are not a member of any organizations under your domain. Please contact your IT administrator for access.": "您不属于您域名下的任何组织。请联系您的 IT 管理员以获得访问权限。",
    "You are not authenticated. <button>Authenticate</button>": "您未通过身份验证。<button>进行身份验证</button>",
    "You are not authorized to accept this agreement": "您未被授权接受此协议",
    "You are not authorized to join this organization.": "您无权加入此组织。",
    "You are not connected to {name} yet.": "你尚未连接到 {name}。",
    "You are not currently eligible for this experience.": "您目前不符合参与此体验的条件。",
    "You are on a Pro trial": "您正在试用 Pro 方案",
    "You are on a monthly billing plan": "您目前处于按周计费方案中",
    "You are on a monthly billing plan.": "您使用的是月度计费计划。",
    "You are out of available {tier} seats. Click ‘Next’ to upgrade this member’s seat immediately.": "您的可用 {tier} 席位已用完。点击“下一步”立即升级此成员的席位。",
    "You are out of available {tier} seats. This will schedule a downgrade for the next billing cycle. The member will remain on their current tier until then, and you’ll need to manually reassign them after the change takes effect.": "您的可用 {tier} 座位已用完。这将在下一个计费周期安排降级。成员将保留在当前等级直至降级生效,您需要在变更生效后手动重新分配他们。",
    "You are out of available {tier} seats. Your subscription is scheduled to end on {date}, so downgrades cannot be scheduled. Resume your subscription to schedule a downgrade or purchase additional seats.": "您的可用 {tier} 席位已用完。您的订阅定于 {date} 结束,因此无法计划降级。请恢复订阅以计划降级或购买额外席位。",
    "You are out of free <link>messages</link> until {day} at {time}": "您的免费<link>消息</link>已用完,重置时间为 {day} {time}",
    "You are out of free <link>messages</link> until {time}": "您的免费<link>消息</link>已用完,直到 {time}",
    "You aren't eligible for this offer.": "你不符合此优惠的资格。",
    "You can <link>delete your conversations with Claude</link>, which will also delete any Gmail data Claude used in that conversation": "您可以<link>删除与 Claude 的对话</link>,这也会删除 Claude 在该对话中使用的任何 Gmail 数据",
    "You can access this page in one of your Team organizations": "您可以在您的一个 Team 组织中访问此页面",
    "You can access this page in your Team organization": "您可以在您的团队组织中访问此页面",
    "You can add at most {count, plural, one {# attachment} other {# attachments}} to a message. Please select fewer attachments.": "一条消息最多只能添加 {count, plural, one {# 个附件} other {# 个附件}}。请选择更少的附件。",
    "You can add at most {count, plural, one {# file} other {# files}} to a chat. {suggestion}": "每条聊天最多可添加 {count, plural, one {# 个文件} other {# 个文件}}。{suggestion}",
    "You can add at most {maxUploads, plural, one {# attachment} other {# attachments}} to a message.": "一条消息中最多只能添加 {maxUploads, plural, one {# 个附件} other {# 个附件}}。",
    "You can add more seats anytime or remove seats at your annual renewal.": "您可以随时增加席位,或在年度续费时移除席位。",
    "You can also add a <link>custom connector</link>.": "你也可以添加一个 <link>自定义连接器</link>。",
    "You can also assign them to a tier which has enough available seats.": "您也可以将他们分配到一个有足够可用席位的层级。",
    "You can also invite them on a tier that has enough available seats.": "你也可以在有足够可用席位的层级上邀请他们。",
    "You can also invite them on a tier which has enough available seats or as unassigned and set their tier later.": "您也可以在席位充足的等级邀请他们,或暂不分配并稍后设置等级。",
    "You can also open Claude <link>in your browser</link>.": "您也可以<link>在浏览器中</link>打开 Claude。",
    "You can always add this skill again later by re-uploading it.": "您稍后随时可以通过重新上传来再次添加此技能。",
    "You can always change this later": "您可以随时更改此设置",
    "You can always edit this later.": "您稍后可以随时编辑此内容。",
    "You can automatically buy more extra usage when you run low.": "当用量不足时,您可以自动购买更多额外用量。",
    "You can change any member's role manually afterward from the members list.": "之后你可以在成员列表中手动更改任何成员的角色。",
    "You can change this later by signing out.": "你之后可以通过退出登录来更改此项。",
    "You can change this later in Connectors.": "你之后可以在 Connectors 中更改此设置。",
    "You can change this later in the connector settings for {pluginName}.": "你之后可以在 {pluginName} 的连接器设置中更改此项。",
    "You can chat with me on Claude.ai or work with me directly in your terminal through Claude Code to build and engineer with speed. ": "您可以在Claude.ai上与我聊天,或通过Claude Code直接在终端中与我合作,快速构建和开发。",
    "You can choose not to allow some types of cookies.": "您可以选择不允许某些类型的 Cookie。",
    "You can close this tab and return to your terminal.": "您可以关闭此标签页并返回终端。",
    "You can close this window and return to Claude.": "您可以关闭此窗口并返回 Claude。",
    "You can close this window or continue to Claude": "您可以关闭此窗口或继续使用Claude",
    "You can continue using Claude while your admin reviews your request.": "在管理员审核您的申请期间,您可以继续使用 Claude。",
    "You can create a free account to give Claude a try while you wait. Just a note: You won't be able to merge your free account with your organization's account.": "您在等待期间可以先创建一个免费账号试试 Claude。注:您无法将免费账号与组织账号合并。",
    "You can disconnect anytime in Settings > Connectors": "您可以随时在“设置 > 连接器”中断开连接",
    "You can download a markdown version of the finding, which can be used in Claude Code to create a patch offline.": "您可以下载发现的 markdown 版本,可在 Claude Code 中使用以离线创建补丁。",
    "You can edit and reset Claude’s memory in settings.": "您可以在设置中编辑及重置 Claude 的记忆。",
    "You can find your organization ID at the bottom of your Organization Settings > Organization page.": "您可以在“组织设置 > 组织”页面的底部找到您的组织 ID。",
    "You can get discounts on up to {cap} (pre-tax) each billing cycle.": "您每个计费周期最多可获得 {cap}(税前)的折扣。",
    "You can get your guest pass invite link in {settingsLink}.": "您可以在 {settingsLink} 中获取您的访客卡邀请链接。",
    "You can have up to {maxOrgMembers} members in a team. Large team? <link>Contact Support</link> for help.": "团队中最多可拥有 {maxOrgMembers} 名成员。大型团队?<link>联系特殊支持</link>获取帮助。",
    "You can help improve Claude": "您可以帮助改进 Claude",
    "You can improve Claude for everyone": "您可以帮助所有人改进 Claude",
    "You can no longer chat with Claude.": "您无法再与 Claude 聊天。",
    "You can no longer chat with Claude. To restore full access, <link>renew your subscription</link>.": "您无法再与 Claude 聊天。要恢复完整访问权限,请<link>续订您的订阅</link>。",
    "You can now chat with Claude Cowork via SMS. Send a text to get started. Reply <b>STOP</b> at any time to opt out.": "您现在可以通过短信与 Claude Cowork 聊天了。发送短信即可开始。随时回复 <b>STOP</b> 即可退订。",
    "You can now close this tab and return to Canvas.": "您现在可以关闭此选项卡并返回 Canvas。",
    "You can now run security scans on your repositories.": "您现在可以对仓库进行安全扫描了。",
    "You can now sync your GitHub repositories with Claude.": "您现在可以将您的 GitHub 仓库与 Claude 同步了。",
    "You can now sync your Google Drive files with Claude.": "您现在可以将您的 Google 云端硬盘文件与 Claude 同步。",
    "You can now turn chat on or off for your organization. Disabling chat also disables projects and artifacts.": "你现在可以为你的组织开启或关闭聊天。禁用聊天也会禁用项目和工件。",
    "You can only add members of your organization": "您只能添加您组织的成员",
    "You can only share skills you created": "您只能分享自己创建的技能",
    "You can publish once Claude is done.": "Claude 完成后即可发布。",
    "You can reassign roles manually afterward from the members list.": "您之后可以从成员列表中手动重新分配角色。",
    "You can restart the conversation from an earlier message.": "您可以从早前的消息重新开始对话。",
    "You can set a maximum amount {target} can spend on Claude usage per month.": "你可以设置 {target} 每月在 Claude 使用上的最高消费金额。",
    "You can set a maximum amount {target} can spend on extra usage per month.": "您可以设置 {target} 每月可用于额外用量的最高金额。",
    "You can still continue previous chats that reference {integrationName} content. However, Claude won’t be able to access new content or perform new tasks.": "您仍然可以继续此前引用了 {integrationName} 内容的聊天。但是,Claude 将无法访问新内容或执行新任务。",
    "You can still continue previous chats that reference {serverName} content.": "您仍可以继续此前的引用了 {serverName} 内容的聊天。",
    "You can teach Claude to do almost anything with two ingredients:": "您可以用两个要素教会 Claude 几乎做任何事情:",
    "You can try switching to a different organization.": "您可以尝试切换到其他组织。",
    "You can upgrade your plan to get more access to Claude’s features.": "您可以升级方案以获得更多 Claude 功能的访问权限。",
    "You can use Claude for your own personal use or create a Team account to collaborate with your teammates. <a>Learn more about Claude</a>.": "您可以将 Claude 用于个人用途,也可以创建团队账户来与队友协作。<a>详细了解 Claude</a>。",
    "You cannot connect Anthropic Google accounts to the Staging environment.": "您无法将 Anthropic Google 帐户连接到 Staging 环境。",
    "You cannot create a {planName} because you do not meet the minimum age requirement.": "由于您未达到最低年龄要求,无法创建 {planName}。",
    "You cannot create an account": "您无法创建账户",
    "You cannot create an account because you do not meet the minimum age requirement.": "您无法创建账户,因为您不符合最低年龄要求。",
    "You cannot invite yourself.": "您不能邀请自己。",
    "You cannot remove the last admin of a project": "您不能移除项目的最后一名管理员",
    "You decide which websites Claude can visit and what actions it can take. Claude asks permission before visiting new sites and before taking potentially risky actions like publishing content or making purchases. You can revoke access to specific websites anytime in Settings. For trusted workflows, you can choose to skip all permissions, but you should supervise Claude closely. While some safeguards exist for sensitive actions, malicious actors could still trick Claude into taking actions that were not intended by you.": "您可以决定 Claude 可以访问哪些网站以及可以采取哪些操作。Claude 在访问新网站以及采取发布内容或购买等潜在风险操作前会征求许可。您可以随时在设置中取消对特定网站的访问权限。对于受信任的工作流,您可以选择跳过所有权限,但您应密切监督 Claude。尽管针对敏感操作存在一些防护措施,但恶意行为者仍可能诱使 Claude 执行非您本意的操作。",
    "You do not have access to this document": "您无权访问此文档",
    "You don't have a seat assigned. Ask your organization admin to assign you a seat.": "您没有分配席位。请联系组织管理员为您分配席位。",
    "You don't have access to this feature.": "您无权访问此功能。",
    "You don't have permission to manage these access keys.": "您没有权限管理这些访问密钥。",
    "You don’t have access to this organization or it doesn’t meet the requirements for {clientName}. Contact your organization admin to request access or check your Claude Code settings.json configuration.": "您没有此组织的访问权限,或者该组织不满足 {clientName} 的要求。请联系组织管理员申请访问权限或检查您的 Claude Code settings.json 配置。",
    "You don’t have access to this organization or it doesn’t meet the requirements for {clientName}. Contact your organization admin to request access or check your ant profile configuration.": "你无权访问此组织,或者它不满足 {clientName} 的要求。请联系你的组织管理员申请访问,或检查你的 ant 个人资料配置。",
    "You don’t have access to this organization or it doesn’t meet the requirements for {clientName}. Contact your organization admin to request access.": "你无权访问此组织,或该组织不满足 {clientName} 的要求。请联系你的组织管理员申请访问权限。",
    "You don’t have access to this project": "您没有此项目的访问权限",
    "You don’t have permission to view this page": "您没有权限查看此页面",
    "You don’t have permission to view this page.": "您没有权限查看此页面。",
    "You entered <b>{initiatingEmail}</b>, but you are currently logged in as <b>{currentEmail}</b>.": "您输入了 <b>{initiatingEmail}</b>,但您当前以 <b>{currentEmail}</b> 登录。",
    "You have 5 new unread messages in your inbox. Please check them soon.": "您的收件箱中有 5 条新的未读消息。请尽快查看。",
    "You have a Max plan!": "您拥有 Max 方案!",
    "You have an open invoice.": "您有一份待支付的发票。",
    "You have control over your conversation data and can change your preferences any time in your <privacySettingsPage>Privacy Settings</privacySettingsPage>": "您可以控制您的对话数据,并随时在<privacySettingsPage>隐私设置</privacySettingsPage>中更改偏好。",
    "You have no seats available to assign. You can purchase additional seats to add new members.": "你没有可分配的席位。你可以购买额外席位以添加新成员。",
    "You have planned seat changes that go into effect on {date}. You must cancel your existing scheduled changes before making new seat allocation changes.": "您计划的席位变更将于 {date} 生效。在进行新的席位分配变更前,您必须取消现有的计划变更。",
    "You have reached the maximum number of projects. <upgradeLink>Upgrade</upgradeLink> for more.": "您已达到最大项目数。<upgradeLink>升级</upgradeLink>以获取更多。",
    "You have unsaved changes. Are you sure you want to discard them?": "你有未保存的更改。确定要放弃吗?",
    "You have unsent comments": "您有未发送的评论",
    "You have view-only access to this scan.": "您对此扫描只有查看权限。",
    "You have {count, plural, one {# inline comment} other {# inline comments}} that will be discarded if you approve the plan.": "如果您批准该计划,将会有 {count, plural, one {# 条行内评论} other {# 条行内评论}} 被丢弃。",
    "You have {count, plural, one {# pending comment} other {# pending comments}} that haven't been addressed yet.": "您有 {count, plural, one {# 条待处理评论} other {# 条待处理评论}}尚未处理。",
    "You have {count} Cowork invites": "您有 {count} 个 Cowork 邀请",
    "You haven't been added to your organization yet. Contact your administrator for access.": "您尚未被添加到组织。请联系您的管理员获取访问权限。",
    "You haven't run any routines yet": "你还没有运行过任何例程",
    "You haven't submitted any MCP servers yet.": "你还没有提交任何 MCP 服务器。",
    "You haven't used Cowork yet": "您尚未开始使用 Cowork",
    "You haven't used Opus yet": "您尚未过使用 Opus",
    "You hit your message limit. It resets at {resetTime}, or you can upgrade for higher limits.": "您已达到消息限额。限额将在 {resetTime} 重置,或者您可以升级以获得更高额度。",
    "You hit your message limit. Upgrade for higher limits.": "您已达到消息限制。升级以获得更高限制。",
    "You just got access to Claude Code": "您刚获得了 Claude Code 的访问权限",
    "You just hit your free message limit. Upgrade to Max to send more messages. You also get:": "你刚刚达到免费消息上限。升级到 Max 以发送更多消息。你还将获得:",
    "You just hit your free message limit. Upgrade to Pro (or Max) to send more messages. You also get:": "您刚刚达到了免费消息限制。升级到 Pro(或 Max)以发送更多消息。您还将获得:",
    "You just hit your free message limit. Upgrade to Pro to send more messages. You also get:": "你刚刚达到免费消息上限。升级到 Pro 可发送更多消息。你还将获得:",
    "You may not upload files larger than {sizeLimit}mb.": "您不得上传大于 {sizeLimit}MB 的文件。",
    "You might have received an email that requires you to approve the payment. If that isn’t the case, you can <link>contact support</link>.": "您可能收到了一封需要您批准付款的邮件。如果不是这种情况,您可以<link>联系支持团队</link>。",
    "You must be at least 18 years old to create a {planName}.": "您必须年满 18 岁才能创建 {planName}。",
    "You must verify <strong>{domain}</strong> before enabling discoverability for it.": "您必须先验证 <strong>{domain}</strong>,然后才能为其开启发现功能。",
    "You need a Claude account to use this artifact": "您需要 Claude 账号来使用此构件",
    "You need at least {minSeats} seats in total.": "您总共需要至少 {minSeats} 个席位。",
    "You need to connect to Outline before using this feature.": "您在使用此功能前需要连接到 Outline。",
    "You retain control of your Gmail data at all times:": "您可以始终控制您的 Gmail 数据:",
    "You said:": "你说:",
    "You said: {prompt}": "你说的是:{prompt}",
    "You saved {amount}": "您节省了 {amount}",
    "You set the direction. Cowork gets it done.": "您设定方向。Cowork 负责完成。",
    "You will be charged {taxPercentage} {taxLabel} at checkout.": "结账时将向您收取 {taxPercentage} 的 {taxLabel}。",
    "You will be charged {taxPercentage} {taxLabel}, the standard rate in {countryName}, at checkout.": "结账时,您将被收取 {taxPercentage} 的 {taxLabel},这是 {countryName} 的标准税率。",
    "You will be receiving an email shortly with the next steps to set up your organization.": "您很快将收到一封电子邮件,告知您设置组织的后续步骤。",
    "You will keep access to Claude Max and your next charge will be processed on {resumeDate}.": "您将保留 Claude Max 的访问权限,您的下一次扣费将在 {resumeDate} 处理。",
    "You will keep access to Claude Max.": "您将保留对 Claude Max 的访问权限。",
    "You will keep access to Claude Pro and your next charge will be processed on {resumeDate}.": "您将保留 Claude Pro 的访问权限,您的下一次扣费将在 {resumeDate} 处理。",
    "You will keep access to Claude Pro.": "您将保留对 Claude Pro 的访问权限。",
    "You will no longer be the primary owner after taking this action.": "执行此操作后,您将不再是主要所有者。",
    "You will only see this token once. Copy it now and store it somewhere safe.": "此令牌只会显示一次。请立即复制并妥善保存。",
    "You won't be able to re-attach this project.": "您将无法重新关联此项目。",
    "You won't be able to see it again. If you lose it, you'll need to revoke this key and create a new one.": "您将无法再次看到它。如果丢失,您需要撤销此密钥并创建一个新密钥。",
    "You won't be able to view it again.": "您将无法再次查看它。",
    "You won't be asked again for this workspace. Read our <securityLink>security guide</securityLink> for details.": "你不会再被询问此工作区。详情请阅读我们的<securityLink>安全指南</securityLink>。",
    "You won’t be able to continue any previous chats that reference content from Google Docs.": "您将无法继续任何引用了 Google 文档内容的过往聊天。",
    "You'll also get Claude in:": "您还将在以下位置获得 Claude:",
    "You'll earn a $15 reward each time you complete an interview.": "每次完成访谈,您都将获得 15 美元奖励。",
    "You'll get a notification for every join request and approve them individually.": "您将收到每条加入请求的通知并按个批准。",
    "You'll get an invoice with transfer instructions. Your plan starts once payment clears (1 to 5 business days).": "您将收到包含转账说明的发票。付款入账(1 至 5 个工作日)后,您的方案生效。",
    "You'll need:": "您将需要:",
    "You'll pay": "你将支付",
    "You'll pay a fixed price per seat. Usage is billed as you go based on what your team uses.": "您将为每个席位支付固定价格。用量按您团队的实际情况随用随付。",
    "You'll receive": "你将收到",
    "You'll receive a <b>{amount}</b> prorated refund to your original payment method.": "您将收到一笔 <b>{amount}</b> 的按比例退款,退款将原路返回至您的支付方式。",
    "You're all caught up": "您已全部处理完毕",
    "You're all set": "您已准备就绪",
    "You're almost out of extra usage": "您的额外用量即将耗尽",
    "You're almost out of usage": "您的用量快用完了",
    "You're almost out of usage ∙ Resets at {time}": "您的用量快用完了 ∙ 将在 {time} 重置",
    "You're approaching your plan's limit. It resets at {resetTime} on {resetDay}. To keep working without interruption:": "您即将达到方案限额。限额将于 {resetDay} 的 {resetTime} 重置。为了不间断工作:",
    "You're approaching your plan's limit. To keep working without interruption:": "您即将达到方案限额。为了不间断工作:",
    "You're approaching your plan's message limit. To keep working without interruption, you can:": "您即将达到当前方案的消息限制。为了让工作不间断,您可以:",
    "You're approaching your plan's message limit. Your limit resets at {resetTime}. To keep working without interruption, you can:": "您即将达到当前方案的消息限制。您的限额将在 {resetTime} 重置。为了不中断工作,您可以:",
    "You're currently on Max 20x, a higher tier than the {tier} plan you were gifted. We've added a {credit} credit to your account instead.": "您当前使用的是 Max 20x 方案,其等级高于您获赠的 {tier} 方案。因此,我们已在您的账号中存入 {credit} 的余额作为补偿。",
    "You're currently within the {organizationName} organization. ": "您当前处于 {organizationName} 组织内。",
    "You're editing the note above — tap Done when you're finished.": "你正在编辑上方的笔记,完成后点击“完成”。",
    "You're leaving Claude for Government's FedRAMP boundary. Don't share sensitive information on external sites.": "您正在离开政府版 Claude 的 FedRAMP 边界。请勿在外部网站分享敏感信息。",
    "You're leaving Claude to visit an external link:": "您正在离开 Claude 访问外部链接:",
    "You're not signed in to this GitHub Enterprise instance. Connect your account to continue.": "你尚未登录此 GitHub Enterprise 实例。请连接你的账户以继续。",
    "You're now using extra usage": "您现在正在使用额外用量",
    "You're now using extra usage ∙ Your Opus limit resets {day} at {time}": "您现在使用的是额外用量 ∙ 您的 Opus 限额将在 {day} 的 {time} 重置",
    "You're now using extra usage ∙ Your Sonnet limit resets {day} at {time}": "您现在正在使用额外用量 ∙ 您的 Sonnet 本次限额将在 {day} 的 {time} 重置",
    "You're now using extra usage ∙ Your cowork limit resets {day} at {time}": "您现在正在使用额外用量 ∙ 您的 Cowork 限制将在 {day} 的 {time} 重置",
    "You're now using extra usage ∙ Your session limit resets at {time}": "您现在正在使用额外用量 ∙ 您的会话限额将在 {time} 重置",
    "You're now using extra usage ∙ Your weekly limit resets {day} at {time}": "您正在使用额外用量 ∙ 您的每周限额将于 {day} {time} 重置",
    "You're on a free trial until {date}. Seats beyond your free allowance are charged at a prorated rate for the remaining trial days.": "您的免费试用将持续到 {date}。超过免费额度的席位将按剩余试用天数的比例收费。",
    "You're only billed for what you end up using. Adjust anytime.": "您只需为您最终使用的部分付费。随时调整。",
    "You're out of extra usage": "您的额外用量已用完",
    "You're out of extra usage for the month": "您本月的额外用量已用完",
    "You're out of usage": "您的用量已用完",
    "You're out of usage for the month": "您本月的用量已用完",
    "You're set up": "已设置完成",
    "You're signed in": "你已登录",
    "You're subscribed to the Enterprise plan. Create your team and invite teammates to use Claude together.": "您已订阅企业级方案。创建您的团队并邀请队友共同使用 Claude。",
    "You've allowed this folder before. Continue to add it to this session.": "您之前已允许此文件夹。继续将其添加到此会话。",
    "You've already applied": "你已经申请过了",
    "You've already redeemed this offer": "你已经兑换了此优惠",
    "You've been invited to join these organizations with your <bold>{email}</bold> address.": "您已获邀使用您的 <bold>{email}</bold> 地址加入这些组织。",
    "You've been invited to join this organization with your <bold>{email}</bold> address.": "您已获邀使用您的 <bold>{email}</bold> 地址加入此组织。",
    "You've been invited to join this workspace on Claude.": "您已被邀请加入此项 Claude 上的工作空间。",
    "You've been invited to join {organizationName}'s workspace on Claude.": "您已受邀加入 {organizationName} 在 Claude 上的工作空间。",
    "You've been signed out": "你已退出登录",
    "You've got a{br}Cowork guest pass": "您有一张{br}Cowork 访客卡",
    "You've got the basics!": "你已经掌握基础了!",
    "You've hit your Cowork limit ∙ Resets {day} at {time}": "您已达到 Cowork 的用量限制 ∙ 将在 {day} at {time} 重置",
    "You've hit your Opus limit ∙ Resets {day} at {time}": "您已达到 Opus 的限量 ∙ 将在 {day} 的 {time} 重置",
    "You've hit your Sonnet limit ∙ Resets {day} at {time}": "您已达到Sonnet限额 ∙ {day} {time}重置",
    "You've hit your extra usage spend limit": "您已达到额外用量支出限额",
    "You've hit your session limit ∙ Resets at {time}": "您已达到会话限制 ∙ 于 {time} 重置",
    "You've hit your usage limit ∙ Resets at {time}": "您已达到用量限额 ∙ 将在 {time} 重置",
    "You've hit your usage spend limit": "您已达到用量支出限额",
    "You've hit your weekly limit ∙ Resets {day} at {time}": "您已达到本周限额 ∙ {day} {time} 重置",
    "You've made changes since you last published. Update to make them live.": "自上次发布后你已进行了更改。请更新以使其生效。",
    "You've reached your plan's limit. It resets at {resetTime} on {resetDay}. To keep working before then:": "您已达到方案限额。限额将于 {resetDay} 的 {resetTime} 重置。如需在此之前继续工作:",
    "You've reached your plan's limit. To keep working before it resets:": "您已达到方案限额。如需在重置前继续工作:",
    "You've reached your plan's message limit. You can wait until it resets at the scheduled time, or continue now:": "您已达到当前方案的消息上限。您可以等到预约的时间重置,或者现在继续:",
    "You've reached your plan's message limit. You can wait until it resets at {resetTime}, or continue now:": "您已经达到方案的消息上限。您可以等到 {resetTime} 重置,或者现在继续:",
    "You've reached your usage limit. Try again after your limit resets.": "你已达到使用上限。请在限额重置后重试。",
    "You've used about as many tokens as {book}.": "你使用的 token 数量大约相当于 {book}。",
    "You've used {surpassedThresholdFormatted} of your extra usage": "您已使用了额外用量的 {surpassedThresholdFormatted}",
    "You've used {surpassedThresholdFormatted} of your session limit": "您已使用会话限额的 {surpassedThresholdFormatted}",
    "You've used {surpassedThresholdFormatted} of your usage": "您已使用了 {surpassedThresholdFormatted} 的用量",
    "You've used {surpassedThresholdFormatted} of your usage ∙ Resets at {time}": "您已使用了用量的 {surpassedThresholdFormatted} ∙ 将在 {time} 重置",
    "You've used {surpassedThresholdFormatted} of your weekly limit": "您已使用每周限额的 {surpassedThresholdFormatted}",
    "You've used ~{times}× more tokens than {book}.": "你使用的令牌数约为 {book} 的 ~{times} 倍。",
    "YouTube": "YouTube",
    "Your <learnMoreLink>personal preferences</learnMoreLink> will apply to chats and Cowork sessions, within <aupLink>Anthropic's guidelines</aupLink>.": "您的<learnMoreLink>个人偏好</learnMoreLink>将应用于聊天和 Cowork 会话,在 <aupLink>Anthropic 的指南</aupLink>范围内。",
    "Your <networkEgressLink>network egress settings</networkEgressLink> will apply. Cowork is a research preview—some enterprise features like audit logs, compliance API, and data exports are not currently available. <learnMoreLink>Learn more about using Cowork safely</learnMoreLink>": "您的<networkEgressLink>网络出口设置</networkEgressLink>将适用。Cowork 处于研究预览阶段——某些企业版功能(如审计日志、合规性 API 和数据导出)目前暂不可用。<learnMoreLink>了解如何安全地使用 Cowork</learnMoreLink>",
    "Your AI Fluency Index": "您的 AI 熟练度指数",
    "Your AI Fluency Report": "您的 AI 流畅度报告",
    "Your AI assistant for <highlight>{orgName}</highlight>, here to help with working, imagining, and deep thinking.": "您的 <highlight>{orgName}</highlight> AI 助手,在工作、创意和深度思考中助您一臂之力。",
    "Your AWS registration token is invalid. Please return to the AWS product page to re-initiate application setup.": "您的 AWS 注册令牌无效。请返回 AWS 产品页面重新启动应用程序设置。",
    "Your AWS token has expired. Please return to the AWS product page to re-initiate application setup.": "您的 AWS 令牌已过期。请返回 AWS 产品页面重新启动应用程序设置。",
    "Your Admin": "您的管理员",
    "Your Claude Fluency": "您的 Claude 熟练度",
    "Your Claude {tier} plan is good through {endDate}.": "您的 Claude {tier} 方案有效期至 {endDate}。",
    "Your GitHub Enterprise instance returned a server error. You can try again in a moment.": "你的 GitHub Enterprise 实例返回了服务器错误。你可以稍后重试。",
    "Your GitHub organization has an IP allowlist that is blocking Claude's servers from reaching <bold>{repo}</bold>. Add <link>Claude's IP ranges</link> to your GitHub allowlist. Each user will still need to connect their own GitHub account.": "您的 GitHub 组织设置了 IP 允许列表,阻止了 Claude 的服务器访问 <bold>{repo}</bold>。请将 <link>Claude 的 IP 范围</link> 添加到您的 GitHub 允许列表中。每个用户仍需连接自己的 GitHub 账号。",
    "Your Google Drive storage is full. Free up space and try again.": "您的 Google 云端硬盘存储空间已满。请清理空间并重试。",
    "Your Google connectors were recently upgraded to Google-hosted versions. Tool names have changed — if you previously set per-tool restrictions, review and re-apply them below.": "你的 Google 连接器最近已升级为 Google 托管版本。工具名称已更改,如果你之前设置了按工具限制,请在下方检查并重新应用。",
    "Your IT administrator has blocked new account creation and you are not a member of any existing organizations. Please contact your IT administrator for access.": "您的 IT 管理员已禁止创建新账号,且您不属于任何现有组织。请联系您的 IT 管理员获取访问权限。",
    "Your MCP servers": "你的 MCP 服务器",
    "Your Microsoft Entra Admin must complete setup steps before team members can connect their Microsoft 365 accounts. <link>View the full setup guide</link> for step-by-step instructions.": "在团队成员连接其 Microsoft 365 账号之前,您的 Microsoft Entra 管理员必须完成设置步骤。请<link>查看完整设置指南</link>获取分步指导。",
    "Your Pro plan includes enough usage to get a feel for {product}. Buy extra usage to keep going.": "你的 Pro 套餐包含足够的用量,可让你体验 {product}。如需继续使用,请购买额外用量。",
    "Your Pro plan includes enough usage to get a feel for {product}. Upgrade to Max or buy extra usage to keep going.": "你的 Pro 计划包含足够的使用量,足以体验 {product}。升级到 Max 或购买额外用量即可继续使用。",
    "Your Pro trial has ended. Upgrade to keep using Claude.": "你的 Pro 试用已结束。请升级以继续使用 Claude。",
    "Your Pro trial will end immediately. Upgrading to Max will start your paid subscription and you’ll get 5x more usage starting today.": "您的 Pro 试用将立即结束。升级到 Max 将开启您的付费订阅,且从今天起您将获得 5 倍的用量。",
    "Your Projects": "你的项目",
    "Your account cannot be upgraded": "您的账户无法升级",
    "Your account could not be prepared. Refresh the page to try again.": "无法准备您的账户。请刷新页面重试。",
    "Your account has been disabled": "您的账户已被禁用",
    "Your account has been disabled after an automatic review of your recent activities.": "经自动审核您最近的活动,您的账户已被禁用。",
    "Your account has been disabled after an automatic review of your recent activities. Please take a look at our <tosLink>Terms of Service</tosLink> and <aupLink>Usage Policy</aupLink> for more information. If you wish to appeal your suspension, please visit our <supportLink>Trust & Safety Center</supportLink>.": "经过对您最近活动的自动审核,您的账户已被停用。请查看我们的 <tosLink>服务条款</tosLink> 和 <aupLink>使用政策</aupLink> 以了解更多信息。如果您希望就停用进行申诉,请访问我们的 <supportLink>信任与安全中心</supportLink>。",
    "Your account has been suspended due to a violation of our terms of service. We take these actions to ensure Claude remains a safe and responsible AI service for all users.": "由于违反了我们的服务条款,您的账户已被暂停。我们采取此类行动是为了确保 Claude 对所有用户而言始终是一个安全且负责任的 AI 服务。",
    "Your account is already verified. Try refreshing the page.": "您的账户已经过验证。请尝试刷新页面。",
    "Your account isn't associated with an organization": "您的账户未关联组织",
    "Your account will no longer be replenished automatically.": "您的账户将不再自动补足余额。",
    "Your admin": "您的管理员",
    "Your admin has been notified. You'll get an email once they review your request.": "已通知您的管理员。在他们审核您的请求后,您将收到一封邮件。",
    "Your admin hasn't enabled this option. Ask them to turn it on in Organization settings → Cowork.": "你的管理员尚未启用此选项。请让他们在“组织设置 → Cowork”中开启。",
    "Your admin requires approval for this operation. You can still block it.": "你的管理员要求此操作必须获得批准。你仍然可以阻止它。",
    "Your admin requires approval for this tool. You can still block it.": "您的管理员要求批准此工具。您仍然可以阻止它。",
    "Your admin requires approval for unlisted commands. You can still choose a stricter setting.": "你的管理员要求未列出的命令必须经过批准。你仍然可以选择更严格的设置。",
    "Your admin restricts some tools in these connectors:": "你的管理员限制了这些连接器中的部分工具:",
    "Your admin will need to:": "您的管理员将需要:",
    "Your administrator has configured Google sign-in. Claude will open your browser to authenticate.": "你的管理员已配置 Google 登录。Claude 将打开浏览器进行身份验证。",
    "Your administrator must enable a search tool to use research": "您的管理员必须启用搜索工具才能使用研究功能",
    "Your agents": "您的智能体",
    "Your app will appear here": "您的应用将显示在这里",
    "Your app will be ready shortly": "您的应用很快就会准备就绪",
    "Your app will be ready shortly · Press [Esc] to exit": "您的应用很快就会准备就绪 · 按 [Esc] 退出",
    "Your application is under review. We'll email you once it completes, usually within 2 to 3 business days.": "你的申请正在审核中。完成后我们会通过电子邮件通知你,通常需要 2 到 3 个工作日。",
    "Your artifacts": "您的构件",
    "Your bill will never exceed this amount": "您的账单永远不会超过此金额",
    "Your billing address has changed since your last invoice. To switch to annual billing: first cancel your current subscription, then sign up for a new annual plan when your current subscription ends.": "自上一份发票后,您的账单地址已发生变更。要转换为年度计费:请先取消当前订阅,然后在当前订阅结束时注册新的年度方案。",
    "Your billing address has changed since your last invoice. To upgrade to Max, contact Support for assistance.": "自上次发票开具以来,您的账单地址已发生变化。如需升级至 Max 方案,请联系支持团队协助。",
    "Your billing address has changed. Update your payment method and try again.": "您的账单地址已变更。请更新付款方式后重试。",
    "Your billing address wasn't found. Update it in Settings and try again.": "未找到您的账单地址。请在设置中更新并重试。",
    "Your billing address wasn't saved. Please re-enter your address and try again.": "您的账单地址未保存。请重新输入地址并重试。",
    "Your billing country requires a different payment region. Update your address and try again.": "你的账单国家/地区要求使用不同的付款区域。请更新地址后重试。",
    "Your browser will ask for permission.": "你的浏览器将请求权限。",
    "Your card will be charged in {currency}. The {currency} amount may vary with exchange rates.": "你的银行卡将以 {currency} 计费。{currency} 金额可能会随汇率波动。",
    "Your card won't be charged unless you choose to purchase additional usage.": "除非您选择购买额外额度,否则不会从您的卡中扣费。",
    "Your changes have merge conflicts with the {branch} branch. Ask Claude to resolve the conflicts and try again.": "您的更改与 {branch} 分支存在合并冲突。请要求 Claude 解决冲突后再试。",
    "Your chat history is preserved.": "您的聊天历史记录已保存。",
    "Your chats": "您的聊天",
    "Your chats are private until shared": "您的聊天在通过分享前是私密的",
    "Your chats will show up here": "您的聊天将显示在这里",
    "Your chats with Claude": "您与 Claude 的聊天",
    "Your company already has a Team plan. Ask your admin for an invite.": "您的公司已有团队方案。请向管理员索要邀请。",
    "Your company already has an Enterprise plan. Contact your admin for access.": "您的公司已有企业方案。请联系您的管理员以获取访问权限。",
    "Your computer isn't providing a network connection to Claude's workspace.": "您的计算机未向 Claude 的工作区提供网络连接。",
    "Your connection to {source} has expired or is not yet set up. Connect to see your repositories.": "您与 {source} 的连接已过期或尚未设置。连接以查看您的代码仓库。",
    "Your connection works, but the provider rejected a test request. Often a model-access or quota issue.": "你的连接正常,但提供方拒绝了测试请求。这通常是模型访问权限或配额问题。",
    "Your connection works, but the provider rejected a test request. This is often a model-access or quota issue your admin can resolve.": "你的连接正常,但提供方拒绝了测试请求。这通常是模型访问权限或配额问题,你的管理员可以解决。",
    "Your connector was connected. You can now use it with Claude.": "您的连接器已连通。您现在可以配合 Claude 使用它了。",
    "Your connectors": "你的连接器",
    "Your current plan has {refundAmount} of unused value. The remaining {remainingAmount} + tax not used today will be applied towards future bills.": "您当前的方案有 {refundAmount} 的未使用价值。剩余的 {remainingAmount} + 税费(今天未使用的部分)将抵扣未来的账单。",
    "Your current seat only includes Chat access. Contact your organization admin to request a Chat + Claude Code seat.": "您当前的席位仅包含聊天访问权。请联系组织管理员申请聊天 + Claude Code 席位。",
    "Your custom style": "您的自定义样式",
    "Your data": "你的数据",
    "Your data won't be used to train our models": "您的数据不会被用于模型训练",
    "Your day was more interesting than you think": "您的一天比您想象中更有趣",
    "Your deployed Orbit apps. Pin favorites for quick access.": "您部署的 Orbit 应用。固定收藏夹以快速访问。",
    "Your description and current session transcript will be sent to Anthropic to debug related issues or improve Claude Code.": "你的描述和当前会话记录将发送给 Anthropic,以调试相关问题或改进 Claude Code。",
    "Your device doesn't meet your organization's security requirements. Contact your IT administrator.": "您的设备不符合组织的安全要求。请联系您的 IT 管理员。",
    "Your disk is full. Free up space and try again.": "你的磁盘已满。请释放空间后重试。",
    "Your display name": "您的显示名称",
    "Your downgrade to the {planType} plan is scheduled for {downgradeDate}.": "您降级到 {planType} 方案的计划定于 {downgradeDate}。",
    "Your edits are suggestions": "您的编辑仅作为建议内容",
    "Your email": "您的邮箱",
    "Your email domain does not match your organization": "您的邮箱域名与该组织不匹配",
    "Your email domain is already associated with an existing organization. Contact that organization's admin or reach out to support for help.": "您的邮箱域名已与现有的组织关联。请联系该组织的管理员或寻求支持人员的帮助。",
    "Your email domain is not authorized to join this organization.": "您的邮箱域名未被授权加入此组织。",
    "Your endpoint-security software blocked Claude Code. Ask your IT team to allowlist signing Team ID Q6L2SF6YDW.": "你的终端安全软件阻止了 Claude Code。请让你的 IT 团队将签名 Team ID Q6L2SF6YDW 加入允许名单。",
    "Your environment has been created but still needs to be connected to your infrastructure. This requires access to your remote containers.": "您的环境已创建,但仍需连接到您的基础设施。这需要访问您的远程容器。",
    "Your existing subscription does not include any seats for Claude For Enterprise. Please return to the product page or <link>contact support</link> if issues persist.": "您现有的订阅不包含任何 Claude For Enterprise 席位。请返回产品页面或 <link>联系支持</link> 如果问题持续存在。",
    "Your files, code, or workspace contents": "你的文件、代码或工作区内容",
    "Your first chat with Claude": "您与 Claude 的第一次对话",
    "Your first {n, plural, one {# Standard seat is} other {# Standard seats are}} free for {days} days, then {recurring}/{interval} starting {date}.": "您的前 {n, plural, one {# 个标准席位} other {# 个标准席位}}可免费使用 {days} 天,之后从 {date} 起每 {interval} 支付 {recurring}。",
    "Your first {n, plural, one {# Standard seat is} other {# Standard seats are}} free for {days} days. After {date}, you'll be billed {perSeat}/{interval} per seat — {total}/{interval} total for {seatCount} seats (not including tax).": "您的前 {n} 个标准席位可免费试用 {days} 天。在 {date} 之后,您将按每个席位 {perSeat}/{interval} 计费 — {seatCount} 个席位共计 {total}/{interval}(不含税)。",
    "Your first {n, plural, one {# Standard seat is} other {# Standard seats are}} free for {days} days. Premium and additional Standard seats are billed from today, prorated for the trial period — {dueToday} due now, then {recurring}/{interval} starting {date}.": "您的前 {n, plural, one {# 个标准席位} other {# 个标准席位}}可免费使用 {days} 天。高级席位及额外标准席位从今日起按计费(试用期)——当前应付 {dueToday},之后从 {date} 起每 {interval} 支付 {recurring}。",
    "Your first {n, plural, one {# Standard seat is} other {# Standard seats are}} free for {days} days. Premium and additional Standard seats are billed from today, prorated for the trial period — {dueToday} due now. After {date}, your total will be {recurring}/{interval} for {seatCount} seats (not including tax).": "您的前 {n, plural, one {# 个标准席位} other {# 个标准席位}}可免费使用 {days} 天。高级席位和额外的标准席位从今天开始计费,按试用期比例计算 — 现在应付 {dueToday}。{date} 之后,您的总费用将为 {recurring}/{interval},共 {seatCount} 个席位(不含税)。",
    "Your free trial ends on {trialEndDate}. Starting {trialEndDate}, you will be charged {discountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes). Your subscription includes a time-limited promotional discount until {promoEndDate} when it will automatically renew at the regular price of {undiscountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes).": "您的免费试用将于 {trialEndDate} 结束。从 {trialEndDate} 开始,您将被收取 {discountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(加上适用税费)。您的订阅包含限时促销折扣,直到 {promoEndDate},届时将按常规价格 {undiscountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(加上适用税费)自动续订。",
    "Your free trial ends on {trialEndDate}. Starting {trialEndDate}, you will be charged {price} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes).": "您的免费试用将于 {trialEndDate} 结束。从 {trialEndDate} 开始,您将被按 {billingInterval, select, yearly {年} monthly {月} other {月}}收取 {price}(外加适用税费)。",
    "Your free trial just ended, but you can upgrade your plan to keep using Cowork.": "您的免费试用刚刚结束,但您可以升级方案以继续使用 Cowork。",
    "Your gateway couldn't serve {model}. This model may not be configured on your gateway, or access may be restricted.": "你的网关无法提供 {model}。此模型可能未在你的网关上配置,或访问受限。",
    "Your gift covers this plan through {paidThrough}. You won’t be charged until then.": "你的赠送额度可覆盖此套餐至 {paidThrough}。在此之前你不会被收费。",
    "Your gift covers your next invoice.": "你的礼品可抵扣下一张账单。",
    "Your gift covers your next invoice. After this billing cycle, you’ll still have {remainder} left for future invoices.": "你的赠礼可抵扣下一张发票。本计费周期结束后,你仍将剩余 {remainder} 可用于未来发票。",
    "Your gift is scheduled": "您的礼品已安排",
    "Your gift is still waiting for you": "您的礼物仍在等着您",
    "Your gift link is ready to share": "您的礼品链接已准备好分享",
    "Your gift subscription will end after {duration} and won’t auto-renew. Unredeemed gifts expire 1 year after purchase. By clicking “Pay now,” you authorize Anthropic to charge your payment method for the amount shown.": "您的礼金订阅将在 {duration} 后结束且不会自动续费。未兑换的礼金在购买后 1 年到期。点击“立即支付”,即表示您授权 Anthropic 扣除所示金额。",
    "Your gift's on the way": "您的礼品已在路上",
    "Your group's usage limit is set to $0.": "你的群组用量上限被设置为 $0。",
    "Your identity or account details": "你的身份或账户详情",
    "Your identity provider did not return a valid email address": "你的身份提供商未返回有效的邮箱地址",
    "Your information": "您的信息",
    "Your information is encrypted securely. We use a trusted third party to verify your identity and don't store your ID documents.": "您的信息已安全加密。我们使用受信任的第三方来验证您的身份,并且不会存储您的身份证件。",
    "Your installed plugins": "你已安装的插件",
    "Your invite link has expired": "您的邀请链接已过期",
    "Your invite link has expired.": "您的邀请链接已过期。",
    "Your lab name must be between 3 and 50 characters": "您的实验室名称必须在 3 到 50 个字符之间",
    "Your legal name": "您的法定姓名",
    "Your life in weeks": "以“周”为单位的人生",
    "Your limit resets at {time}": "您的限制将在 {time} 重置",
    "Your limit resets {day} at {time}": "您的限额将在 {day} 的 {time} 重置",
    "Your local terminal stopped waiting for this plan": "您的本地终端停止等待此计划",
    "Your login code has expired. Please login again": "您的登录代码已过期。请重新登录",
    "Your managed configuration (secrets redacted)": "你的托管配置(密钥已隐藏)",
    "Your members and groups are automatically synced by your identity provider.": "您的成员和分组将由您的身份提供商自动同步。",
    "Your message will exceed the <link>length limit</link> for this chat. Try attaching fewer or smaller files <newChatLink>or starting a new conversation.</newChatLink>{upgradeInstructions}": "您的消息将超过此聊天的<link>长度限制</link>。请尝试附加更少或更小的文件<newChatLink>或开始新对话。</newChatLink>{upgradeInstructions}",
    "Your message will exceed the <link>length limit</link> for this chat. Try shortening your message <newChatLink>or starting a new conversation.</newChatLink>{upgradeInstructions}": "您的消息将超过此对话的 <link>长度限制</link>。请尝试缩短消息 <newChatLink>或开始新的对话。</newChatLink>{upgradeInstructions}",
    "Your message will exceed the <link>maximum image count</link> for this chat. Try removing images <newChatLink>or starting a new conversation.</newChatLink>{upgradeInstructions}": "您的消息将超过此聊天的<link>最大图片数量</link>。请尝试移除图片<newChatLink>或开启新对话。</newChatLink>{upgradeInstructions}",
    "Your message will exceed the <link>maximum image count</link> for this chat. Try uploading {count, plural, one {# document} other {# documents}} with fewer pages, removing images, <newChatLink>or starting a new conversation.</newChatLink>{upgradeInstructions}": "您的消息将超出此聊天的<link>最大图片数量</link>。请尝试上传页数较少的文档、移除图片、<newChatLink>或开启新对话。</newChatLink>{upgradeInstructions}",
    "Your message will exceed the maximum number of files allowed per message. Consider removing some of your files or adding files over several messages.": "您的消息超过了单次允许的最大文件数量。请考虑移除部分文件,或分多次消息发送。",
    "Your mobile subscription ends on {date}. You can switch plans here after that.": "你的移动端订阅将于 {date} 结束。之后你可以在这里切换计划。",
    "Your name": "您的姓名",
    "Your name appears on sessions you share.": "您的姓名会出现在您分享的会话中。",
    "Your network has been blocked from accessing Claude. For assistance, please visit <link>support.anthropic.com</link>.": "您的网络已被阻止访问 Claude。如需帮助,请访问 <link>support.anthropic.com</link>。",
    "Your new {tier} plan is good through {endDate}. We'll add a {credit} credit to your invoice when your {tier} plan resumes on {resumeDate}.": "您的新 {tier} 方案有效期至 {endDate}。当您的 {tier} 方案在 {resumeDate} 恢复时,我们将在您的发票中加入 {credit} 的额度。",
    "Your org is out of extra usage for the month": "你的组织本月额外用量已用完",
    "Your org is out of extra usage for the month. We let your admin know.": "您的组织本月已用完额外用量。我们已告知您的管理员。",
    "Your org is out of extra usage. We let your admin know.": "您组织的额外用量已用完。我们已告知您的管理员。",
    "Your org is out of usage for the month": "你的组织本月用量已耗尽",
    "Your org is out of usage for the month. We let your admin know.": "您组织本月的用量已耗尽。我们已通知您的管理员。",
    "Your org is out of usage. We let your admin know.": "您组织用量已耗尽。我们已通知您的管理员。",
    "Your organization": "您的组织",
    "Your organization admin has disabled connectors in artifacts. To use this feature, ask your admin to enable connectors in artifacts.": "您的组织管理员已禁用构件中的连接器。要使用此功能,请联系管理员启用构件中的连接器。",
    "Your organization administrator has restricted this device to a specific workspace.": "您的组织管理员已将此设备限制在特定的工作区。",
    "Your organization does not have a valid domain set up. Please <link>contact support</link>.": "您的组织未设置有效域名。请 <link>联系支持人员</link>。",
    "Your organization doesn't have any allowed email domains configured. To fix this before inviting members, <link>contact support</link>": "你的组织尚未配置任何允许的邮箱域名。请在邀请成员前先处理此问题,<link>联系支持</link>",
    "Your organization has been configured to process Protected Health Information (PHI) through Claude in accordance with HIPAA compliance requirements and the executed BAA.": "你的组织已被配置为根据 HIPAA 合规要求和已签署的 BAA,通过 Claude 处理受保护健康信息(PHI)。",
    "Your organization has disabled uploading skills.": "您的组织已禁用上传技能。",
    "Your organization has disabled usage.": "你的组织已禁用使用。",
    "Your organization has enough seats for everyone in the IdP assignment": "您的组织有足够的席位分配给 IdP 中的每个人",
    "Your organization has lost access to the {planName}": "您的组织已失去对 {planName} 的访问权限",
    "Your organization has not enabled any connectors": "您的组织尚未启用任何连接器",
    "Your organization has restricted new account creation. Contact your IT administrator for help.": "您的组织限制了新账号的创建。请联系您的 IT 管理员寻求帮助。",
    "Your organization has unlimited seats. Contact support to add other seat tiers.": "你的组织拥有无限席位。联系客服以添加其他席位等级。",
    "Your organization hasn't provided plugins. Contact your organization administrator to add them.": "您的组织尚未提供插件。请联系组织管理员进行添加。",
    "Your organization hasn’t provided plugins. Contact your organization administrator to add them.": "您的组织尚未提供插件。请联系您的组织管理员添加它们。",
    "Your organization is misconfigured, please <link>contact support</link>.": "您的组织配置错误,请<link>联系支持团队</link>。",
    "Your organization is not configured to process Protected Health Information (PHI) through Claude. Enabling HIPAA compliance allows you to execute Anthropic's Business Associate Agreement (BAA) for this workspace and limit Claude to the Eligible Services covered under that agreement.": "你的组织尚未配置为通过 Claude 处理受保护健康信息(PHI)。启用 HIPAA 合规后,你可以为此工作区签署 Anthropic 的商业伙伴协议(BAA),并将 Claude 限制为仅使用该协议涵盖的合格服务。",
    "Your organization requires SSO authentication": "您的组织需要 SSO 身份验证",
    "Your organization requires SSO login. <link>Sign in from the standard login page</link> instead.": "您的组织要求 SSO 登录。请改从 <link>标准登录页面</link> 登录。",
    "Your organization requires you to sign in with a specific account. Log out and sign in with an approved account.": "您的组织要求您使用特定账号登录。请退出并使用经批准的账号登录。",
    "Your organization skills": "你组织的技能",
    "Your organization uses a custom domain for Claude.": "您的组织为 Claude 使用了自定义域名。",
    "Your organization's GitHub App is not installed on <bold>{repo}</bold>. <link>Install the GitHub App</link> and try again.": "您组织的 GitHub App 未安装在 <bold>{repo}</bold> 上。<link>安装 GitHub App</link> 并重试。",
    "Your organization's Google Workspace administrator has disabled third-party Drive apps. Contact your admin to allowlist Claude, or download the file instead.": "您组织的 Google Workspace 管理员已禁用第三方云端硬盘应用。请联系您的管理员将 Claude 列入白名单,或者下载文件。",
    "Your organization's IT policy blocks new organization creation. Contact your admin.": "您的组织的 IT 政策禁止创建新组织。请联系您的管理员。",
    "Your organization's IT policy blocks new team creation. Contact your admin.": "您的组织的 IT 政策禁止创建新团队。请联系您的管理员。",
    "Your organization's access policy blocks {serverName}. Contact your IT admin to adjust the policy for this connector.": "您组织的访问政策拦截了 {serverName}。请联系您的 IT 管理员调整此连接器的政策。",
    "Your organization's policies don't allow changing this setting.": "您组织的政策不允许更改此设置。",
    "Your organization's subscription is paused. Contact your organization admin to restore access.": "您组织的订阅已暂停。请联系您的组织管理员以恢复访问权限。",
    "Your organization’s SSO setup is incomplete": "您组织的 SSO 设置不完整",
    "Your other windows will be hidden while Claude works.": "Claude 工作时,您的其他窗口将被隐藏。",
    "Your other windows will be hidden, then restored when Claude is done.": "您的其他窗口将被隐藏,在 Claude 完成后恢复。",
    "Your paid plan access will end immediately.": "您的付费方案权限将立即结束。",
    "Your password was changed recently. You can reconnect to sign in again.": "您的密码最近已被更改。您可以重新连接并再次登录。",
    "Your payment method wasn't found. Update it in Settings and try again.": "未找到您的付款方式。请在“设置”中更新并重试。",
    "Your payment method wasn't saved. Please re-enter your card details and try again.": "您的付款方式未能成功保存。请重新输入卡详情并重试。",
    "Your payment succeeded. Credits will appear in your account shortly.": "付款成功。额度将很快显示在你的账户中。",
    "Your phone is like a walkie talkie that can communicate with Claude on your computer.": "您的手机就像一个对讲机,可以与您电脑上的 Claude 进行通信。",
    "Your plan": "你的计划",
    "Your plan is past due. Please <link>make a payment</link> to restore access.": "您的方案已过期。请<link>进行付款</link>以恢复访问权限。",
    "Your plan is paused until {date}": "您的方案计划暂停至 {date}",
    "Your plan isn't eligible for a self-serve refund. Please <a>contact support</a>.": "您的套餐不符合自助退款条件。请<a>联系支持人员</a>。",
    "Your plan isn’t eligible for a self-serve refund. Please <a>contact support</a>.": "您的计划不符合自助退款条件。请<a>联系支持</a>。",
    "Your plan starts once this invoice is paid.": "您的计划将在支付此发票后开始。",
    "Your plan supports up to {limit, number} members. This would put you {overage, number} over.": "你的套餐最多支持 {limit, number} 名成员。这将超出 {overage, number} 名。",
    "Your plan was canceled.": "您的计划已被取消。",
    "Your plan will be downgraded to {targetPlan} on your next billing cycle": "您的方案将在下一个账单周期降级为 {targetPlan}",
    "Your plan will be paused for {duration} month(s). On {resumeDate}, you will be automatically charged when your plan resumes. You’ll get a reminder email 3 days before the pause ends.": "您的订阅将暂停 {duration} 个月。在 {resumeDate},订阅恢复时将自动扣费。暂停结束前 3 天您将收到提醒邮件。",
    "Your plan will be paused on {date}": "您的方案将于 {date} 暂停",
    "Your plugin submission has been received. The review team will evaluate it and may reach out for additional information.": "您的插件提交已收到。审核团队将进行评估,并可能在需要时与您联系获取更多信息。",
    "Your preferences will apply to all chats, within <aupLink>Anthropic's guidelines</aupLink>.": "您的偏好将应用于所有聊天,并遵循 <aupLink>Anthropic 的指导方针</aupLink>。",
    "Your preferences will apply to all conversations, within <aupLink>Anthropic’s guidelines</aupLink>.": "在符合 <aupLink>Anthropic 准则</aupLink>的前提下,您的偏好设置将适用于所有对话。",
    "Your previous signup attempt expired. Contact support to retry.": "您此前的注册尝试已过期。请联系支持团队重试。",
    "Your privacy choices": "您的隐私设置",
    "Your privacy settings apply to coding sessions": "您的隐私设置适用于编程会话",
    "Your progress is saved at each step.": "您的进度在每一步都会被保存。",
    "Your projects": "您的项目",
    "Your prompts, Claude’s responses, or any conversation content": "你的提示、Claude 的回复或任何对话内容",
    "Your provider setup needs a fix": "你的提供商设置需要修复",
    "Your request for {connectorName} was not approved": "你对 {connectorName} 的请求未获批准",
    "Your request has been sent to our sales team.": "你的请求已发送给我们的销售团队。",
    "Your request has been sent to your admin.": "您的请求已发送至管理员。",
    "Your request to join {orgName} has been sent. You'll get an email once your admin reviews it.": "您的加入 {orgName} 的请求已发送。管理员审核后您将收到邮件通知。",
    "Your reward for completing the interview isn't affected by how you answer these questions.": "您完成访谈的奖励不受您如何回答这些问题的影响。",
    "Your reward is on its way": "奖励正在送达途中",
    "Your role": "您的角色",
    "Your role at the company (e.g. Engineer, Product Manager).": "你在公司的角色(例如:工程师、产品经理)。",
    "Your saved payment method was declined. Try a different card.": "你保存的付款方式被拒绝了。请尝试其他银行卡。",
    "Your scheduled sessions are now in Routines.": "您的计划会话现在在例程中。",
    "Your seat type doesn't include extra usage.": "你的席位类型不包含额外用量。",
    "Your session has expired. You can reconnect to re-authorize.": "您的会话已过期。您可以重新连接以重新授权。",
    "Your session has timed out. You can reconnect to continue.": "您的会话已超时。您可以重新连接以继续。",
    "Your session will pause and the runner will be freed for other work. Any uncommitted files on the runner will be lost. Send a message to resume — it may pick up a different runner.": "您的会话将暂停,运行器将被释放以进行其他工作。运行器上任何未提交的文件都将丢失。发送消息以恢复 — 它可能会选择不同的运行器。",
    "Your skills": "您的技能",
    "Your strength": "您的优势",
    "Your submitted changes will be withdrawn from review and cannot be recovered.": "你提交的更改将从审核中撤回,且无法恢复。",
    "Your subscription ends on {cancelDate}.": "您的订阅将于 {cancelDate} 结束。",
    "Your subscription has been renewed.": "您的订阅已续订。",
    "Your subscription has been scheduled to downgrade to Max 5X at the end of your current billing cycle.": "您的订阅已计划在当前账单周期结束降级为 Max 5X。",
    "Your subscription has been scheduled to downgrade to Pro at the end of your current billing cycle.": "您的订阅已被安排在当前计费周期结束时降级为 Pro 方案。",
    "Your subscription has no refundable payment (it may be a gift or paid with credit). You can still cancel your plan from the billing page.": "您的订阅没有可退款的付款(可能是礼物或使用积分支付)。您仍然可以从账单页面取消您的计划。",
    "Your subscription includes a time-limited promotional discount. It renews at {discountedPrice}/month (plus applicable taxes) until {promoEndDate}, when it renews at the regular price of {undiscountedPrice}/month (plus applicable taxes).": "您的订阅包含限时促销折扣。续费价格为 {discountedPrice}/月(另加适用税费)直到 {promoEndDate},届时将按常规价格 {undiscountedPrice}/月(另加适用税费)续费。",
    "Your subscription includes a time-limited promotional discount. Your subscription will automatically renew at the discounted price of {discountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes) until {promoEndDate} when it will automatically be cancelled.": "您的订阅包含限时促销折扣。您的订阅将以优惠价 {discountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(外加适用税费)自动续订,直至 {promoEndDate} 自动取消。",
    "Your subscription includes a time-limited promotional discount. Your subscription will automatically renew at the discounted price of {discountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes) until {promoEndDate} when it will automatically renew at the regular price of {undiscountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes).": "您的订阅包含限时促销折扣。您的订阅将以促销价 {discountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(外加适用税费)自动续订,直至 {promoEndDate},届时将按原价 {undiscountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(外加适用税费)自动续订。",
    "Your subscription includes a time-limited promotional discount. Your subscription will automatically renew at the discounted price of {discountedPrice} / {billingInterval, select, yearly {year} monthly {month} other {month}} (plus applicable taxes) until {promoEndDate} when you will be automatically downgraded back to your current subscription plan, unless you elect to keep Max.": "您的订阅包含限时促销折扣。您的订阅将以折扣价 {discountedPrice} / {billingInterval, select, yearly {年} monthly {月} other {月}}(另加适用税费)自动续费,直到 {promoEndDate},届时您将自动降级回当前订阅方案,除非您选择保留 Max。",
    "Your subscription is being set up. Refresh the page in a moment.": "你的订阅正在设置中。请稍后刷新页面。",
    "Your subscription is billed through Apple. To keep using Claude when you hit a limit, add a payment method.": "您的订阅通过 Apple 计费。若想在达到限额后继续使用 Claude,请添加一种付款方式。",
    "Your subscription is billed through Google. To keep using Claude when you hit a limit, add a payment method.": "您的订阅通过 Google 计费。若想在达到限额后继续使用 Claude,请添加一种付款方式。",
    "Your subscription is billed through a mobile provider. To keep using Claude when you hit a limit, add a payment method.": "您的订阅通过移动运营商计费。为了在达到限额时能继续使用 Claude,请添加付款方式。",
    "Your subscription is managed by Apple. Request a refund at <a>reportaproblem.apple.com</a>.": "您的订阅由 Apple 管理。请在 <a>reportaproblem.apple.com</a> 申请退款。",
    "Your subscription is past due so your access has been paused. To restore access, please change your payment method and pay your overdue invoice.": "您的订阅已逾期,因此您的访问权限已暂停。要恢复访问,请更改付款方式并支付逾期发票。",
    "Your subscription is past due. Please change your payment method and pay your overdue invoice, or cancel your subscription.": "您的订阅已逾期。请更改付款方式并支付逾期发票,或取消订阅。",
    "Your subscription is past due. Please pay your overdue invoice.": "您的订阅已逾期。请支付欠款发票。",
    "Your subscription is paused": "您的订阅已暂停",
    "Your subscription is paused. <link>Pay your invoice</link> to restore access.": "您的订阅已暂停。<link>支付您的发票</link>以恢复访问。",
    "Your subscription pause has been scheduled.": "已成功安排您的订阅暂停。",
    "Your subscription will auto renew on {nextBillingDate}. You will be charged {costMessage}.": "您的订阅将于 {nextBillingDate} 自动续订。您将被扣取 {costMessage}。",
    "Your subscription will auto renew on {nextChargeDate}.": "您的订阅将在 {nextChargeDate} 自动续订。",
    "Your subscription will auto-renew on {date}. You will be charged {amount}.": "你的订阅将于 {date} 自动续费。届时将向你收取 {amount}。",
    "Your subscription will be canceled on {cancelDate}.": "您的订阅将于 {cancelDate} 取消。",
    "Your subscription will end on {cancelDate}": "您的订阅将于 {cancelDate} 结束",
    "Your subscription will start now. You will be credited for any unused time this month on your monthly plan.": "您的订阅将从现在开始。对于本月未使用的时间,您将在月度计划中获得相应积分。",
    "Your team can start using Claude now. When you're ready for more, the Administrator Guide covers SCIM, audit logs, and org-wide rollout.": "你的团队现在可以开始使用 Claude 了。当你准备好进一步扩展时,管理员指南涵盖了 SCIM、审计日志和全组织部署。",
    "Your team has reached its {limit} seat limit. Request an increase to add more members.": "您的团队已达到 {limit} 个席位的上限。请申请增加限额以添加更多成员。",
    "Your team has reached the maximum number of members allowed on your current plan.": "您的团队已达到当前方案允许的最大成员数量。",
    "Your team is on Claude": "您的团队已在 Claude 上",
    "Your team is using {used} of {limit} seats on your current plan. You won't be able to add new members once you reach the limit.": "您的团队在当前方案中使用了 {limit} 个席位中的 {used} 个。达到上限后将无法添加新成员。",
    "Your team is using {used} of {limit} seats. You won't be able to add new members once you reach the limit.": "您的团队已使用 {used} 个席位,共 {limit} 个。达到限额后,您将无法添加新成员。",
    "Your team name must be between 3 and 50 characters": "您的团队名称长度必须在 3 到 50 个字符之间",
    "Your team name must be between 3 and 60 characters": "您的团队名称必须在 3 到 60 个字符之间",
    "Your team subscription will automatically renew on {nextBillingDate}. You will be charged {amount} (plus applicable taxes) for {count} seats.": "您的团队订阅将于 {nextBillingDate} 自动续费。您将因 {count} 个席位被收取 {amount}(加上适用税费)。",
    "Your team's initial pool of usage. {editLink}": "您团队的初始用量池。{editLink}",
    "Your team's promo ends in {daysUntil, plural, one {# day} other {# days}}. Charges begin {chargeDate}.": "您团队的促销活动将在 {daysUntil, plural, one {# 天} other {# 天}} 后结束。将于 {chargeDate} 开始计费。",
    "Your team's trial ends in {daysRemaining, plural, one {# day} other {# days}}. Charges begin {chargeDate}.": "您的团队试用将在 {daysRemaining, plural, one {# 天} other {# 天}}后结束。计费从 {chargeDate} 开始。",
    "Your terminal's Claude Code session stopped responding. Check your terminal for errors, then resend your message.": "你终端中的 Claude Code 会话已停止响应。请检查终端中的错误,然后重新发送你的消息。",
    "Your ticket to building, faster": "更快构建的入场券",
    "Your to-dos on autopilot": "自动运行您的待办事项",
    "Your token was saved but the default environment couldn't be created. You can set one up manually.": "您的令牌已保存,但无法创建默认环境。您可以手动设置一个。",
    "Your trial ends and you’ll lose access to Pro features, unless you’ve upgraded.": "您的试用结束,您将无法使用 Pro 功能,除非您已升级。",
    "Your trial ends {date}. After that, you'll need a plan to keep using Claude.": "你的试用将于 {date} 结束。此后,你需要订阅套餐才能继续使用 Claude。",
    "Your trial has been cancelled. You’ll lose access on {cancelDate}.": "您的试用已取消。您将在 {cancelDate} 失去访问权限。",
    "Your trial will be canceled on {cancelDate}.": "您的试用将于 {cancelDate} 取消。",
    "Your trial will end on {date} and you won't be charged.": "您的试用将于 {date} 结束,您不会被收费。",
    "Your turn": "到您了",
    "Your usage": "您的用量",
    "Your usage allocation has been disabled by your admin.": "你的使用配额已被管理员禁用。",
    "Your usage allocation hasn't been set up yet.": "您的用量分配尚未设置。",
    "Your usage is unlimited. Reach out to your admin directly if you need help.": "你的使用量不受限制。如需帮助,请直接联系管理员。",
    "Your usage limits": "您的使用限制",
    "Your version of the Claude app is out of date. Please upgrade to the latest version to continue using Claude.": "您的 Claude 应用版本已过时。请升级至最新版本以继续使用 Claude。",
    "Your voice session has expired. You can start a new one.": "您的语音会话已过期。您可以开始一个新的。",
    "Your {resourceType} upload failed. Please try again.": "您的 {resourceType} 上传失败。请重试。",
    "You’ll be billed as soon as your next renewal date happens, unless you cancel.": "除非您取消,否则在下一个续订日期到来时将向您收费。",
    "You’ll lose access to": "你将失去对以下内容的访问权限:",
    "You’ll only need to do this once. Any existing Google Drive capabilities in Claude will still work.": "您只需执行一次此操作。Claude 中任何现有的 Google 云端硬盘功能仍将正常使用。",
    "You’ll receive a <b>{amount}</b> prorated refund to your original payment method.": "您将收到 <b>{amount}</b> 的按比例退款到您的原始付款方式。",
    "You’ll receive notifications when your tasks need attention.": "当您的任务需要关注时,您将收到通知。",
    "You’re about to make changes to your organization’s data retention period.": "您即将更改组织的 数据保留期。",
    "You’re all set": "您已准备就绪/一切搞定",
    "You’re all set up with Cowork": "您已完成 Cowork 的全部设置",
    "You’re already Max’d out!": "您已经达到 Max 方案最大额度了!",
    "You’re currently using a trial version of Pro. You’ll be billed at the standard Pro rate on {billingStartDate}.": "你当前正在使用 Pro 的试用版。你将在 {billingStartDate} 按标准 Pro 价格计费。",
    "You’re currently using a trial version of Pro. You’ll be billed for Pro at {price} / month on {billingStartDate}.": "您目前正在使用 Pro 试用版。您将在 {billingStartDate} 被收取每月 {price} 的 Pro 费用。",
    "You’re currently using a trial version of Pro. You’ll be billed for Pro at {price} / year on {billingStartDate}.": "您当前正在使用 Pro 试用版。我们将于 {billingStartDate} 为您办理续费,费用为 {price}/年。",
    "You’re currently using a trial version of Pro. You’ll lose access on {trialEndDate}. Upgrade to keep these features.": "您目前正在使用 Pro 试用版。您将在 {trialEndDate} 失去访问权限。请升级以保留这些功能。",
    "You’re currently within the {organizationName} organization.": "您当前处于 {organizationName} 组织中。",
    "You’re currently within the {organizationName} organization. ": "您当前位于 {organizationName} 组织中。",
    "You’re incognito": "您处于隐身状态",
    "You’re participating in a {researchPreview}. {secretMessage}": "您正在参加 {researchPreview}。{secretMessage}",
    "You’re running Claude through your organization’s own inference provider ({providerDisplayName}). Your conversations are sent there, not to Anthropic, and are governed by your organization’s agreement with that provider.": "你正在通过你组织自己的推理提供方 ({providerDisplayName}) 运行 Claude。你的对话会发送到那里,而不是 Anthropic,并受你组织与该提供方之间协议的约束。",
    "You’re subscribed via Android app": "您是通过 Android 应用订阅的",
    "You’re subscribed via iOS app": "您通过 iOS 应用订阅",
    "You’ve hit your limit for Claude messages.": "您已达到 Claude 消息上限。",
    "You’ve reached your limit for {resourceType} uploads. Please try again later.": "您已达到 {resourceType} 上传上限。请稍后再试。",
    "You’ve reached your weekly limit for thinking messages. Please try again next week.": "您已达到本周深度思考消息的限额。请下周再试。",
    "Zero Data Retention is enabled for Claude Code in this organization. <link>Click here to learn more</link>.": "此组织内的 Claude Code 已启用零数据保留 (Zero Data Retention)。<link>点击此处了解更多</link>。",
    "Zip code": "邮政编码",
    "Zoom": "缩放",
    "Zoom in": "放大",
    "Zoom out": "缩小",
    "[ANT ONLY] Manage global extension directory": "[仅 ANT] 管理全局扩展目录",
    "[Ant only] Quick Feedback": "[仅限 Ant] 快速反馈",
    "[Ant-only] Release worktree": "[仅限 Ant] 释放工作树",
    "[Regarding Todo item: \"{content}\"]": "[关于待办事项: “{content}”]",
    "[Space] to jump": "按 [空格键] 跳跃",
    "[↓] to fall fast": "按 [↓] 快速下降",
    "a plan": "一个计划",
    "abilities": "能力",
    "access": "访问权限",
    "access a folder": "访问文件夹",
    "access revoked": "访问权限已被吊销",
    "accounts": "账号",
    "active": "活动",
    "admin estimate": "管理员估算",
    "[email protected]": "[email protected]",
    "agent": "代理",
    "all joined parent": "已全部加入(父节点)",
    "and counting...": "且还在增加...",
    "annual": "按年/年度",
    "app-name": "应用名称",
    "applied": "已应用",
    "approved": "已批准",
    "attachments": "附件",
    "authentication": "身份验证",
    "authentication failed": "身份验证失败",
    "auto-reload on": "自动重载已开启",
    "available": "可用",
    "based on /{target}": "基于 /{target}",
    "bash": "bash",
    "beta": "测试版",
    "[email protected]": "[email protected]",
    "blocked by your admin (will not run)": "已被你的管理员阻止(不会运行)",
    "browsed": "已浏览",
    "by {author}": "由 {author}",
    "by {creator}": "由 {creator}",
    "camera access": "摄像头访问权限",
    "changes requested": "已请求修改",
    "chat": "聊天",
    "chats": "聊天",
    "checking": "检查中",
    "ci failing": "ci 失败",
    "ci {done}/{total}": "ci {done}/{total}",
    "claude code": "claude code",
    "claude remote-control": "Claude 远程管理",
    "claude — zsh": "claude — zsh",
    "closed": "已关闭",
    "code": "代码",
    "code execution": "代码执行",
    "code-reviewer": "代码审查员",
    "coding": "编程",
    "complete": "完成",
    "completed": "已完成",
    "component": "组件/部分",
    "conflicts": "冲突",
    "connection expired": "连接已过期",
    "connection issue": "连接问题",
    "connections": "连接",
    "connector tool calls": "连接器工具调用",
    "contact us": "联系我们",
    "conversations": "对话记录",
    "created": "已创建",
    "creations": "创建量",
    "cwd: ~/projects": "当前目录:~/projects",
    "daily-briefing": "每日简报",
    "daily-code-review": "每日代码审查",
    "database": "数据库",
    "default": "默认",
    "deleted": "已删除",
    "destructiveHint — tools may perform destructive updates": "destructiveHint:工具可能执行破坏性更新",
    "details": "详情",
    "device policy blocked": "设备政策已拦截",
    "diagram": "图表/图示",
    "directory": "目录",
    "disable": "禁用",
    "document": "文档",
    "done": "完成",
    "down": "停机",
    "draft": "草稿",
    "e.g. Albert, Al": "例如:Albert, Al",
    "e.g. I primarily code in Python (not a coding beginner)": "例如:我主要使用 Python(不是编程小白)",
    "e.g. JetBrains Mono": "例如:JetBrains Mono",
    "e.g. JetBrains Mono, Fira Code": "例如:JetBrains Mono, Fira Code",
    "e.g. My Bot": "例如:我的机器人",
    "e.g. ask clarifying questions before giving detailed answers": "例如:在给出详细回答前先问几个澄清问题",
    "e.g. keep explanations brief and to the point": "例如:保持解释简洁明了",
    "e.g. software engineer, teacher, consultant": "例如:软件工程师、教师、顾问",
    "e.g. when learning new concepts, I find analogies particularly helpful": "例如,在学习新概念时,我发现类比特别有帮助",
    "e.g., Analytics Integration Key": "例如,分析集成密钥",
    "e.g., Daily code review": "例如:每日代码审查",
    "e.g., SCIM Provisioning Key": "例如:SCIM 配置密钥",
    "e.g., Security Auditing Key": "例如:安全审计密钥",
    "e.g., {example}. Use {allowAll} to allow all paths.": "例如 {example}。使用 {allowAll} 以允许所有路径。",
    "edit": "编辑",
    "edited": "已编辑",
    "enable": "启用",
    "ends in {days}d": "还剩 {days} 天结束",
    "error": "错误",
    "esc": "esc (退出)",
    "every 7 days": "每 7 天",
    "every ~24 hours": "约每 24 小时一次",
    "example.com or *.example.com": "example.com 或 *.example.com",
    "exit code {returncode}": "退出代码 {returncode}",
    "extensions": "扩展程序",
    "failed": "失败",
    "failed on 3/3 runners": "在 3/3 个运行器上失败",
    "failed on {failures}/3 {failures, plural, one {runner} other {runners}}, auto-recovering": "在 {failures}/3 个{failures, plural, one {运行器} other {运行器}}上失败,正在自动恢复",
    "false": "false",
    "features": "功能",
    "fetch": "获取",
    "file": "文件",
    "files": "文件",
    "files up to {datetime}": "文件更新至 {datetime}",
    "found": "已找到",
    "from project": "来自项目",
    "from your data": "来自你的数据",
    "from {source}": "来自 {source}",
    "generated": "已生成",
    "give us feedback": "给我们反馈",
    "groups": "分组",
    "high": "高",
    "history": "历史",
    "https://example.com/webhook": "https://example.com/webhook",
    "https://school.instructure.com or https://canvas.myschool.edu": "https://school.instructure.com 或 https://canvas.myschool.edu",
    "idempotentHint — repeated calls with the same arguments have no additional effect": "idempotentHint:使用相同参数重复调用不会产生额外影响",
    "image": "图片",
    "in progress": "进行中",
    "in queue": "在队列中",
    "in review": "审查中",
    "installs": "安装数",
    "integrations": "集成",
    "invoked": "已调用",
    "just now": "刚刚",
    "live": "实时",
    "location access": "位置访问权限",
    "macOS": "macOS",
    "macOS (Apple Silicon)": "macOS (Apple 芯片)",
    "macOS (Intel)": "macOS (Intel)",
    "macOS update required": "需要更新 macOS",
    "macOS version not supported": "不支持的 macOS 版本",
    "macOS will ask when you click Finish.": "macOS will ask when you click Finish.",
    "mcp": "mcp",
    "medium": "中等",
    "memory": "记忆",
    "merged": "已合并",
    "messages": "消息",
    "microphone access": "麦克风访问权限",
    "missing": "缺失",
    "mo": "月",
    "monitor": "监控",
    "month": "月",
    "monthly": "按月",
    "never": "从不",
    "new": "新",
    "next in {countdown}": "{countdown} 后继续",
    "no changes": "无变更",
    "not done": "未完成",
    "nullable": "可为空",
    "of": "of",
    "offline": "离线",
    "on {repo}": "在 {repo} 上",
    "openWorldHint — tools may interact with external entities": "openWorldHint —— 工具可能会与外部实体交互",
    "or": "或",
    "or choose a custom event": "或选择自定义事件",
    "or click to browse": "或点击浏览",
    "owner/repo": "owner/repo",
    "password changed": "密码已更改",
    "per seat per month": "每个席位每月",
    "per seat per year": "每个席位每年",
    "permissions": "权限",
    "plugin documentation": "插件文档",
    "press right arrow": "按右方向键",
    "project": "项目",
    "projects": "项目",
    "proposed": "已提议",
    "queued": "已排队",
    "ran": "已运行",
    "read": "读取",
    "read-only": "只读",
    "readOnlyHint — tools do not modify their environment": "readOnlyHint:工具不会修改其环境",
    "ready to merge": "准备合并",
    "recalled": "已回忆",
    "referenced": "已引用",
    "required": "必填",
    "research": "研究",
    "research preview": "研究预览",
    "resets {d}d": "重置 {d} 天",
    "resets {hr}h": "重置 {hr} 小时",
    "resets {min}m": "{min} 分钟后重置",
    "retrying": "重试中",
    "revoked": "已撤销",
    "run": "运行",
    "run an agent": "运行代理",
    "run skill": "运行技能",
    "running": "运行中",
    "saved": "已保存",
    "scheduled": "已安排",
    "search": "搜索",
    "search the web": "搜索网络",
    "searched": "已检索",
    "server configuration issue": "服务器配置问题",
    "session expired": "会话已过期",
    "session timed out": "会话已超时",
    "settings": "设置",
    "settings.json": "settings.json",
    "shell": "shell",
    "shown": "显示/Shown",
    "skipped (already running)": "已跳过(已在运行)",
    "started": "已开始",
    "status.claude.com": "status.claude.com",
    "stopped": "已停止",
    "storage": "存储",
    "stuck": "卡住",
    "styles": "样式",
    "tab to add": "按 Tab 添加",
    "task": "任务",
    "tax": "税费",
    "terminal": "终端",
    "terms": "条款",
    "text": "文本/text",
    "the provider endpoint": "提供方端点",
    "the subscription period": "订阅期",
    "the web": "网络",
    "this can take a minute": "这可能需要一点时间",
    "this connector": "此连接器",
    "this user": "该用户",
    "to keep the features you have": "以保留您现有的功能",
    "to start a task and keep going": "开始任务并继续",
    "to start an agent": "启动一个智能体",
    "today at {approx, select, yes {~} other {}}{time}": "今天 {approx, select, yes {约 } other {}}{time}",
    "today at {time}": "今天 {time}",
    "todos": "待办事项",
    "tomorrow at {approx, select, yes {~} other {}}{time}": "明天 {approx, select, yes {约} other {}}{time}",
    "tools": "工具",
    "true": "true",
    "true or false": "真或假",
    "unclaimed": "未领取的",
    "unless {unlessFlag}": "除非 {unlessFlag}",
    "unrestricted": "无限制",
    "updated": "已更新",
    "upgrading to Max": "升级到 Max",
    "use {label}": "使用 {label}",
    "used": "已使用/曾使用",
    "[email protected] or a host from ~/.ssh/config": "[email protected] 或 ~/.ssh/config 中的主机",
    "value": "值",
    "value1, value2, value3": "值1, 值2, 值3",
    "versions": "版本",
    "viewed": "已查看",
    "v{version}": "v{version}",
    "was": "曾是",
    "web search": "网页搜索",
    "website": "网站",
    "website.com": "website.com",
    "weekly-status-report": "每周状态报告",
    "when {clauses}": "当 {clauses} 时",
    "when {flag}": "当 {flag} 时",
    "when {flag} (unless {unlessFlag})": "当 {flag} 时(除非 {unlessFlag})",
    "where some features will be unavailable": "其中一些功能将不可用",
    "workflow": "工作流",
    "working tree": "工作树",
    "worktree": "工作树",
    "write": "写入",
    "writing to clipboard": "正在写入剪贴板",
    "wrote to": "已写入",
    "x-client-dn": "x-client-dn",
    "x-forwarded-email": "x-forwarded-email",
    "x-forwarded-preferred-username": "x-forwarded-preferred-username",
    "year": "年",
    "yesterday at {approx, select, yes {~} other {}}{time}": "昨天 {approx, select, yes {~} other {}}{time}",
    "yesterday at {time}": "昨天 {time}",
    "you": "您",
    "you still have access until {endDate}": "您的访问权限将持续到 {endDate}",
    "[email protected]": "[email protected]",
    "your next billing date": "你的下一个计费日期",
    "your org": "您的组织",
    "your organization": "你的组织",
    "your plan will renew on {pauseDate}": "您的计费方案将在 {pauseDate} 续订",
    "your provider": "你的提供方",
    "your-site": "your-site",
    "yr": "年",
    "{action} folder {name}": "{action} 文件夹 {name}",
    "{action} key?": "{action} 密钥?",
    "{activeCount, plural, one {# active key} other {# active keys}}. Tokens are shown once on creation and never again.": "{activeCount, plural, one {# 个活动密钥} other {# 个活动密钥}}。令牌在创建时显示一次,之后不再显示。",
    "{activeCount} of {maxSessions}": "{activeCount} / {maxSessions}",
    "{activeCount} of {maxSessions} sessions": "{activeCount} / {maxSessions} 个活跃会话",
    "{additions} additions, {deletions} deletions": "{additions} 处新增,{deletions} 处删除",
    "{amount} credit added. Auto-reload is on, so you'll be charged automatically once the credit runs out. <a>Manage auto-reload</a>": "已添加 {amount} 积分。自动充值已开启,因此积分用完后将自动扣费。<a>管理自动充值</a>",
    "{amount} extra usage credit added! When it runs out, you can add more extra usage to keep third-party apps going. <a>Manage auto-reload</a>": "已添加 {amount} 额外用量额度!用完后,您可以继续添加额度以维持第三方应用的运行。<a>管理自动充值</a>",
    "{amount} in extra usage, on us": "{amount} 额外用量,由我们提供",
    "{amount} left from your gift": "你的赠送额度还剩 {amount}",
    "{appName} has a configuration issue on its end — reconnecting may not resolve this.": "{appName} 端存在配置问题——重新连接可能无法解决此问题。",
    "{appName} is blocked by your organization's device policy — reconnecting won't help until IT resolves it.": "{appName} 已被您组织的设备政策拦截 —— 在 IT 解决问题之前,重新连接不会起作用。",
    "{approx, select, yes {~} other {}}{schedule}": "{approx, select, yes {约} other {}}{schedule}",
    "{available, number} {tierLabel} seat(s) available": "{available} 个 {tierLabel} 席位可用",
    "{available} {tierLabel} seat(s) available ": "有 {available} 个 {tierLabel} 席位可用 ",
    "{awayTeam} @ {homeTeam}": "{awayTeam} 对阵 {homeTeam}",
    "{base} · {count, plural, one {# filter} other {# filters}}": "{base} · {count, plural, one {# 个筛选器} other {# 个筛选器}}",
    "{base}, {count, plural, one {# pending invite} other {# pending invites}}": "{base},{count, plural, one {# 个待处理邀请} other {# 个待处理邀请}}",
    "{category} ({count} events)": "{category}({count} 个事件)",
    "{category} suggestions": "{category} 建议",
    "{clientName} would like to connect to your Claude account": "{clientName} 想连接到你的 Claude 账号",
    "{clientName} would like to connect to your {orgType}{orgName}": "{clientName} 希望连接到您的 {orgType}{orgName}",
    "{collapsed, select, yes {On pull request} other {When a PR is {verbs}}}": "{collapsed, select, yes {在拉取请求时} other {当 PR 被 {verbs} 时}}",
    "{collapsed, select, yes {On release} other {When a release is {verbs}}}": "{collapsed, select, yes {在发布时} other {当发布被 {verbs} 时}}",
    "{collapsedCount, plural, one {# step} other {# steps}}": "{collapsedCount, plural, one {# 步} other {# 步}}",
    "{colorName} sticky note": "{colorName} 便签",
    "{columnCount, plural, one {# column} other {# columns}}, {rowCount, plural, one {# row} other {# rows}}": "{columnCount, plural, one {# 列} other {# 列}},{rowCount, plural, one {# 行} other {# 行}}",
    "{completedCount} of {totalCount} completed": "{completedCount} / {totalCount} 已完成",
    "{completed} of {total} steps complete": "已完成 {completed}/{total} 个步骤",
    "{connectorName} connector": "{connectorName} 连接器",
    "{connectorName} enabled": "{connectorName} 已启用",
    "{connectorName} is now available": "{connectorName} 现已可用",
    "{correct} / {total}": "{correct} / {total}",
    "{cost}/month": "{cost}/月",
    "{cost}/month {taxLabel}": "每月 {price} {taxLabel}",
    "{cost}/year": "{cost}/年",
    "{cost}/year {taxLabel}": "{cost}/年 {taxLabel}",
    "{count, number} added earlier": "较早前已添加 {count, number} 个",
    "{count, number} custom roles": "{count, number} 个自定义角色",
    "{count, number} errors": "{count, number} 个错误",
    "{count, number} from {fileName}": "来自 {fileName} 的 {count, number}",
    "{count, number} members skipped.": "已跳过 {count, number} 名成员。",
    "{count, number} members updated.": "已更新 {count, number} 名成员。",
    "{count, number} roles": "{count, number} 个角色",
    "{count, number} selected. <link>Load all {total, number} members</link> to enable select-all.": "已选择 {count, number} 个。请 <link>加载全部 {total} 名成员</link> 以启用全选。",
    "{count, number} selected. <link>Select all {total, plural, one {# member} other {# members}}</link>.": "已选择 {count, number} 项。<link>选择全部 {total, plural, one {# 位成员} other {# 位成员}}</link>。",
    "{count, number} selected. Select all available once loading completes.": "已选择 {count, number} 个。加载完成后选择所有可用项。",
    "{count, number} {type, select, premium {Premium} chat_code {Chat + Claude Code} ss_ent {Claude Enterprise} chat {Chat} nonprofit {Nonprofit} premium_nonprofit {Premium Nonprofit} labs_standard {Research Labs} labs_premium {Research Labs Premium} other {Standard}}": "{count, number} {type, select, premium {Premium} chat_code {聊天 + Claude Code} ss_ent {Claude Enterprise} chat {聊天} nonprofit {非营利} premium_nonprofit {高级非营利} labs_standard {Research Labs} labs_premium {Research Labs Premium} other {标准}}",
    "{count, plural, =0 {No browsers connected} one {# browser connected} other {# browsers connected}}": "{count, plural, =0 {没有已连接的浏览器} one {已连接 # 个浏览器} other {已连接 # 个浏览器}}",
    "{count, plural, one {# Invite} other {# Invites}} sent": "已发送 {count, plural, one {# 份邀请} other {# 份邀请}}",
    "{count, plural, one {# Premium seat} other {# Premium seats}}": "{count, plural, one {# 个高级席位} other {# 个高级席位}}",
    "{count, plural, one {# Research Labs seat} other {# Research Labs seats}}": "{count, plural, one {# 个 Research Labs 席位} other {# 个 Research Labs 席位}}",
    "{count, plural, one {# Row} other {# Rows}}": "{count, plural, one {# 行} other {# 行}}",
    "{count, plural, one {# Standard Labs seat} other {# Standard Labs seats}}": "{count, plural, one {# 个标准实验室席位} other {# 个标准实验室席位}}",
    "{count, plural, one {# Standard Nonprofit seat} other {# Standard Nonprofit seats}}": "{count, plural, one {# 个标准非营利席位} other {# 个标准非营利席位}}",
    "{count, plural, one {# Standard seat} other {# Standard seats}}": "{count, plural, one {# 个 Standard 席位} other {# 个 Standard 席位}}",
    "{count, plural, one {# address can't be invited.} other {# addresses can't be invited.}}": "{count, plural, one {# 个地址无法被邀请。} other {# 个地址无法被邀请。}}",
    "{count, plural, one {# agent running} other {# agents running}}": "{count, plural, one {# 个代理正在运行} other {# 个代理正在运行}}",
    "{count, plural, one {# answer} other {# answers}}": "{count, plural, one {# 个回答} other {# 个回答}}",
    "{count, plural, one {# background task} other {# background tasks}}": "{count, plural, one {# 个后台任务} other {# 个后台任务}}",
    "{count, plural, one {# branch} other {# branches}}": "{count, plural, one {# 个分支} other {# 个分支}}",
    "{count, plural, one {# can't be invited} other {# can't be invited}}": "{count, plural, one {# 个无法被邀请} other {# 个无法被邀请}}",
    "{count, plural, one {# chat deleted} other {# chats deleted}}": "{count, plural, one {已删除 # 条聊天} other {已删除 # 条聊天}}",
    "{count, plural, one {# chat} other {# chats}} matching \"{search}\"": "有 {count, plural, one {# 条聊天} other {# 条聊天}}符合 \"{search}\"",
    "{count, plural, one {# chat} other {# chats}} moved to {projectName}": "{count, plural, one {# 条聊天} other {# 条聊天}}已移至 {projectName}",
    "{count, plural, one {# check failed} other {# checks failed}}": "{count, plural, one {# 项检查失败} other {# 项检查失败}}",
    "{count, plural, one {# command} other {# commands}}": "{count, plural, one {# 条命令} other {# 条命令}}",
    "{count, plural, one {# comment thread} other {# comment threads}}": "{count, plural, one {# 条评论线程} other {# 条评论线程}}",
    "{count, plural, one {# comment thread} other {# comment threads}} on text that's no longer here": "{count, plural, one {# 条评论线程} other {# 条评论线程}}位于已不存在的文本上",
    "{count, plural, one {# comment} other {# comments}} attached": "{count, plural, one {# 条评论} other {# 条评论}} 已附加",
    "{count, plural, one {# completed routine hidden} other {# completed routines hidden}}": "{count, plural, one {已隐藏 # 个已完成例程} other {已隐藏 # 个已完成例程}}",
    "{count, plural, one {# connected file} other {# connected files}}": "{count, plural, one {# 个已连接文件} other {# 个已连接文件}}",
    "{count, plural, one {# connector enabled} other {# connectors enabled}}": "{count, plural, one {已启用 # 个连接器} other {已启用 # 个连接器}}",
    "{count, plural, one {# connector needs additional configuration. Enable it from the Connectors page.} other {# connectors need additional configuration. Enable them from the Connectors page.}}": "{count, plural, one {# 个连接器需要额外配置。请在“连接器”页面启用它。} other {# 个连接器需要额外配置。请在“连接器”页面启用它们。}}",
    "{count, plural, one {# connector} other {# connectors}}": "{count, plural, one {# 个连接器} other {# 个连接器}}",
    "{count, plural, one {# day ago} other {# days ago}}": "{count, plural, one {# 天前} other {# 天前}}",
    "{count, plural, one {# document} other {# documents}}": "{count, plural, one {# 份文档} other {# 份文档}}",
    "{count, plural, one {# domain} other {# domains}}: {preview}": "{count, plural, one {# 个域} other {# 个域}}:{preview}",
    "{count, plural, one {# download} other {# downloads}}": "{count, plural, one {# 次下载} other {# 次下载}}",
    "{count, plural, one {# email is} other {# emails are}} not a member of your organization. Remove to continue.": "{count, plural, one {# 个邮箱不是} other {# 个邮箱不是}}你组织的成员。请移除后继续。",
    "{count, plural, one {# email is} other {# emails are}} not a valid address. Remove to continue.": "{count, plural, one {# 个邮箱地址无效} other {# 个邮箱地址无效}}。删除后继续。",
    "{count, plural, one {# endpoint} other {# endpoints}}": "{count, plural, one {# 个端点} other {# 个端点}}",
    "{count, plural, one {# event} other {# events}}": "{count, plural, one {# 个事件} other {# 个事件}}",
    "{count, plural, one {# feature request} other {# feature requests}}": "{count, plural, one {# 个功能请求} other {# 个功能请求}}",
    "{count, plural, one {# field changed} other {# fields changed}}": "{count, plural, one {已更改 # 个字段} other {已更改 # 个字段}}",
    "{count, plural, one {# file} other {# files}}": "{count, plural, one {# 个文件} other {# 个文件}}",
    "{count, plural, one {# file} other {# files}} changed": "{count, plural, one {# 个文件已更改} other {# 个文件已更改}}",
    "{count, plural, one {# finding} other {# findings}}": "{count, plural, one {# 项发现} other {# 项发现}}",
    "{count, plural, one {# folder} other {# folders}}": "{count, plural, one {# 个文件夹} other {# 个文件夹}}",
    "{count, plural, one {# group spend limit} other {# group spend limits}} removed.": "已移除 {count, plural, one {# 个分组支出限额} other {# 个分组支出限额}}。",
    "{count, plural, one {# group} other {# groups}}": "{count, plural, one {# 个分组} other {# 个分组}}",
    "{count, plural, one {# hour ago} other {# hours ago}}": "{count} 小时前",
    "{count, plural, one {# inline comment} other {# inline comments}} will be sent": "将发送 {count, plural, one {# 条行内评论} other {# 条行内评论}}",
    "{count, plural, one {# invite sent} other {# invites sent}}. Some requests are pending admin review.": "{count, plural, one {已发送 # 份邀请} other {已发送 # 份邀请}}。部分申请正等待管理员审核。",
    "{count, plural, one {# issue} other {# issues}}": "{count, plural, one {# 个问题} other {# 个问题}}",
    "{count, plural, one {# is} other {# are}} already in this workspace.": "{count, plural, one {# 已在此工作区中} other {# 已在此工作区中}}。",
    "{count, plural, one {# item} other {# items}}": "{count, plural, one {# 项} other {# 项}}",
    "{count, plural, one {# join request} other {# join requests}}": "{count, plural, one {# 个加入请求} other {# 个加入请求}}",
    "{count, plural, one {# key} other {# keys}}": "{count, plural, one {# 个密钥} other {# 个密钥}}",
    "{count, plural, one {# limit increase request} other {# limit increase requests}}": "{count, plural, one {# 个限额提高请求} other {# 个限额提高请求}}",
    "{count, plural, one {# line} other {# lines}}": "{count, plural, one {# 行} other {# 行}}",
    "{count, plural, one {# location} other {# locations}}": "{count, plural, one {# 个位置} other {# 个位置}}",
    "{count, plural, one {# marketplace} other {# marketplaces}} couldn't be migrated: {names}. You can re-add them manually.": "{count, plural, one {# 个市场} other {# 个市场}}无法迁移:{names}。您可以手动重新添加它们。",
    "{count, plural, one {# member} other {# members}}": "{count, plural, one {# 名成员} other {# 名成员}}",
    "{count, plural, one {# member} other {# members}} removed on {date}": "已于 {date} 移除 {count, plural, one {# 个} other {# 个}} 成员",
    "{count, plural, one {# minute ago} other {# minutes ago}}": "{count, plural, one {# 分钟前} other {# 分钟前}}",
    "{count, plural, one {# monitor running} other {# monitors running}}": "{count, plural, one {# 个监控正在运行} other {# 个监控正在运行}}",
    "{count, plural, one {# needs reconnection} other {# need reconnection}}": "{count, plural, one {# 个需要重新连接} other {# 个需要重新连接}}",
    "{count, plural, one {# new finding} other {# new findings}}": "{count, plural, one {# 个新发现} other {# 个新发现}}",
    "{count, plural, one {# new message} other {# new messages}}": "{count, plural, one {# 条新消息} other {# 条新消息}}",
    "{count, plural, one {# new since last scan} other {# new since last scan}}": "{count, plural, one {自上次扫描以来新增 # 个} other {自上次扫描以来新增 # 个}}",
    "{count, plural, one {# new user} other {# new users}}": "{count, plural, one {# 位新用户} other {# 位新用户}}",
    "{count, plural, one {# organization} other {# organizations}}": "{count, plural, one {# 个组织} other {# 个组织}}",
    "{count, plural, one {# other session is using this folder. Switching branches will affect it too.} other {# other sessions are using this folder. Switching branches will affect them too.}}": "{count, plural, one {# 个其他会话正在使用此文件夹。切换分支也会影响它。} other {# 个其他会话正在使用此文件夹。切换分支也会影响它们。}}",
    "{count, plural, one {# page} other {# pages}}": "{count, plural, one {# 页} other {# 页}}",
    "{count, plural, one {# parameter} other {# parameters}}: {preview}": "{count, plural, one {# 个参数} other {# 个参数}}:{preview}",
    "{count, plural, one {# pending request} other {# pending requests}}": "{count, plural, one {# 个待处理请求} other {# 个待处理请求}}",
    "{count, plural, one {# person from your domain is already using Claude.} other {# people from your domain are already using Claude.}}": "{count, plural, one {你域名下已有 # 人在使用 Claude。} other {你域名下已有 # 人在使用 Claude。}}",
    "{count, plural, one {# person from {domain} is already using Claude.} other {# people from {domain} are already using Claude.}} Create a team to collaborate and get more usage.": "{count, plural, one {来自 {domain} 的 # 人已经在使用 Claude。} other {来自 {domain} 的 # 人已经在使用 Claude。}} 创建团队以协作并获得更多使用量。",
    "{count, plural, one {# person} other {# people}} requested to join your team": "{count, plural, one {# 人} other {# 人}} 请求加入你的团队",
    "{count, plural, one {# previously known finding} other {# previously known findings}}": "{count, plural, one {# 个以前已知的发现} other {# 个以前已知的发现}}",
    "{count, plural, one {# question} other {# questions}} — open to answer": "{count, plural, one {# 个问题} other {# 个问题}}——打开以回答",
    "{count, plural, one {# recommendation} other {# recommendations}}": "{count, plural, one {# 个建议} other {# 个建议}}",
    "{count, plural, one {# requested connector is not in your directory and has been} other {# requested connectors are not in your directory and have been}} hidden. Some functionality may be limited. {link}": "{count, plural, one {# 个请求的连接器不在您的目录中,已被} other {# 个请求的连接器不在您的目录中,已被}}隐藏。某些功能可能会受到限制。{link}",
    "{count, plural, one {# request} other {# requests}}": "{count, plural, one {# 个请求} other {# 个请求}}",
    "{count, plural, one {# request} other {# requests}} approved.": "已批准 {count, plural, one {# 个请求} other {# 个请求}}。",
    "{count, plural, one {# request} other {# requests}} approved. Some requests failed.": "已批准 {count, plural, one {# 个请求} other {# 个请求}}。部分请求失败。",
    "{count, plural, one {# result} other {# results}}": "{count, plural, one {# 个结果} other {# 个结果}}",
    "{count, plural, one {# result} other {# results}} available": "有 {count, plural, one {# 个结果} other {# 个结果}} 可用",
    "{count, plural, one {# review} other {# reviews}} · {total} total": "{count, plural, one {# 条评论} other {# 条评论}} · 总计 {total} 条",
    "{count, plural, one {# role} other {# roles}}": "{count, plural, one {# 个角色} other {# 个角色}}",
    "{count, plural, one {# row was} other {# rows were}} skipped — only @{domain} addresses can be invited.": "{count, plural, one {# 行已被跳过} other {# 行已被跳过}}——只能邀请 @{domain} 地址。",
    "{count, plural, one {# row} other {# rows}}": "{count, plural, one {# 行} other {# 行}}",
    "{count, plural, one {# search} other {# searches}}": "{count, plural, one {# 次搜索} other {# 次搜索}}",
    "{count, plural, one {# seat upgrade request} other {# seat upgrade requests}}": "{count, plural, one {# 个席位升级请求} other {# 个席位升级请求}}",
    "{count, plural, one {# seat} other {# seats}}": "{count, plural, one {# 个席位} other {# 个席位}}",
    "{count, plural, one {# seat} other {# seats}} upgraded to {tier}": "{count, plural, one {# 个座位} other {# 个座位}}已升级至 {tier}",
    "{count, plural, one {# setting} other {# settings}}": "{count, plural, one {# 项设置} other {# 项设置}}",
    "{count, plural, one {# shell running} other {# shells running}}": "{count, plural, one {# 个 shell 正在运行} other {# 个 shell 正在运行}}",
    "{count, plural, one {# skill installed} other {# skills installed}}": "{count, plural, one {已安装 # 个技能} other {已安装 # 个技能}}",
    "{count, plural, one {# skill} other {# skills}}": "{count, plural, one {# 个技能} other {# 个技能}}",
    "{count, plural, one {# skill} other {# skills}} to {description}": "{count, plural, one {# 个技能} other {# 个技能}}到 {description}",
    "{count, plural, one {# skill} other {# skills}} · {description}": "{count, plural, one {# 个技能} other {# 个技能}} · {description}",
    "{count, plural, one {# source} other {# sources}}": "{count, plural, one {# 个来源} other {# 个来源}}",
    "{count, plural, one {# source} other {# sources}} and counting...": "已涵盖 {count, plural, one {# 个来源} other {# 个来源}},且还在不断增加...",
    "{count, plural, one {# step} other {# steps}}": "{count, plural, one {# 步} other {# 步}}",
    "{count, plural, one {# sync error} other {# sync errors}}": "{count, plural, one {# 个同步错误} other {# 个同步错误}}",
    "{count, plural, one {# team from your company is on Claude.} other {# teams from your company are on Claude.}}": "{count, plural, one {你公司已有 # 个团队在使用 Claude。} other {你公司已有 # 个团队在使用 Claude。}}",
    "{count, plural, one {# tool call} other {# tool calls}}": "{count, plural, one {# 次工具调用} other {# 次工具调用}}",
    "{count, plural, one {# tool use} other {# tool uses}}": "{count, plural, one {# 次工具调用} other {# 次工具调用}}",
    "{count, plural, one {# tool} other {# tools}}": "{count, plural, one {# 个工具} other {# 个工具}}",
    "{count, plural, one {# turn} other {# turns}}": "{count} 轮对话",
    "{count, plural, one {# user} other {# users}}": "{count, plural, one {# 位用户} other {# 位用户}}",
    "{count, plural, one {# user} other {# users}} connected": "已连接 {count, plural, one {# 个用户} other {# 个用户}}",
    "{count, plural, one {# use} other {# uses}}": "{count, plural, one {# 次使用} other {# 次使用}}",
    "{count, plural, one {# website} other {# websites}}": "{count, plural, one {# 个网站} other {# 个网站}}",
    "{count, plural, one {# {singular}} other {# {plural}}}": "{count, plural, one {# {singular}} other {# {plural}}}",
    "{count, plural, one {# {singular}} other {# {plural}}} matching \"{query}\"": "",
    "{count, plural, one {# 个工作流正在运行} other {# 个工作流正在运行}}": "{count, plural, one {# 个工作流正在运行} other {# 个工作流正在运行}}",
    "{count, plural, one {Add # member} other {Add # members}}": "{count, plural, one {添加 # 位成员} other {添加 # 位成员}}",
    "{count, plural, one {App} other {# Apps}}": "{count, plural, one {应用} other {# 个应用}}",
    "{count, plural, one {Before sharing this zip file with anyone, check that it does not contain any API keys, tokens, or personal data.} other {Before sharing these zip files with anyone, check that they do not contain any API keys, tokens, or personal data.}}": "{count, plural, one {在与任何人共享此 zip 文件之前,请检查它不包含任何 API 密钥、令牌或个人数据。} other {在与任何人共享这些 zip 文件之前,请检查它们不包含任何 API 密钥、令牌或个人数据。}}",
    "{count, plural, one {Clone repository} other {Clone # repositories}}": "{count, plural, one {克隆仓库} other {克隆 # 个仓库}}",
    "{count, plural, one {Cloned repository} other {Cloned # repositories}}": "{count, plural, one {已克隆仓库} other {已克隆 # 个仓库}}",
    "{count, plural, one {Cloning repository} other {Cloning # repositories}}": "{count, plural, one {正在克隆仓库} other {正在克隆 # 个仓库}}",
    "{count, plural, one {Connector request dismissed} other {# connector requests dismissed}}": "{count, plural, one {连接器请求已忽略} other {已忽略 # 个连接器请求}}",
    "{count, plural, one {Control} other {# Controls}}": "{count} 个控制项",
    "{count, plural, one {Day} other {Days}}": "{count, plural, one {天} other {天}}",
    "{count, plural, one {Download plugin} other {Download plugins}}": "{count, plural, one {下载插件} other {下载插件}}",
    "{count, plural, one {Existing category “{values}” was} other {Existing categories “{values}” were}} not recognized and removed. Please re-select.": "{count, plural, one {现有分类“{values}”未被识别,已被移除} other {现有分类“{values}”未被识别,已被移除}}。请重新选择。",
    "{count, plural, one {Failed to delete # chat. You can try again.} other {Failed to delete # chats. You can try again.}}": "{count, plural, one {无法删除 # 条聊天。您可以重试。} other {无法删除 # 条聊天。您可以重试。}}",
    "{count, plural, one {Failed to move # chat. You can try again.} other {Failed to move # chats. You can try again.}}": "{count, plural, one {移动 # 条聊天失败。您可以重试。} other {移动 # 条聊天失败。您可以重试。}}",
    "{count, plural, one {Grant seat} other {Grant # seats}}": "{count, plural, one {授予席位} other {授予 # 个席位}}",
    "{count, plural, one {Hook} other {# Hooks}}": "{count, plural, one {钩子} other {# 个钩子}}",
    "{count, plural, one {I trust this plugin} other {I trust these plugins}}": "{count, plural, one {我信任此插件} other {我信任这些插件}}",
    "{count, plural, one {Install plugin} other {Install plugins}}": "{count, plural, one {安装插件} other {安装插件}}",
    "{count, plural, one {Invite request sent to your admin for review} other {# invite requests sent to your admin for review}}": "{count, plural, one {邀请申请已发送给您的管理员审核} other {# 份邀请申请已发送给您的管理员审核}}",
    "{count, plural, one {Invite sent} other {# invites sent}}": "{count, plural, one {邀请已发送} other {# 份邀请已发送}}",
    "{count, plural, one {Month} other {Months}}": "{count, plural, one {个月} other {个月}}",
    "{count, plural, one {Refresh your repository} other {Refresh your # repositories}}": "{count, plural, one {刷新您的仓库} other {刷新您的 # 个仓库}}",
    "{count, plural, one {Refreshed your repository} other {Refreshed your # repositories}}": "{count, plural, one {已刷新您的仓库} other {已刷新您的 # 个仓库}}",
    "{count, plural, one {Refreshing your repository} other {Refreshing your # repositories}}": "{count, plural, one {正在刷新您的仓库} other {正在刷新您的 # 个仓库}}",
    "{count, plural, one {Send # invite} other {Send # invites}}": "{count, plural, one {发送 # 个邀请} other {发送 # 个邀请}}",
    "{count, plural, one {Skill} other {# Skills}}": "{count, plural, one {技能} other {# 个技能}}",
    "{count, plural, one {Tool} other {# Tools}}": "{count, plural, one {工具} other {# 个工具}}",
    "{count, plural, one {Widget} other {# Widgets}}": "{count, plural, one {小部件} other {# 个小部件}}",
    "{count, plural, one {email ready to invite} other {emails ready to invite}}": "{count, plural, one {可邀请的邮箱已就绪} other {可邀请的邮箱已就绪}}",
    "{count, plural, one {step} other {steps}}": "{count, plural, one {步} other {步}}",
    "{count, plural, one {{label}} other {# {label}}}": "{count, plural, one {{label}} other {# {label}}}",
    "{count} / {max} characters": "{count} / {max} 个字符",
    "{count} Chat": "{count} 聊天",
    "{count} Chat + Claude Code": "{count} 对话 + Claude Code",
    "{count} Chat + Claude Code seats": "{count} 个“聊天 + Claude Code”席位",
    "{count} Chat seats": "{count} 个聊天席位",
    "{count} Claude Enterprise": "{count} 个 Claude 企业版",
    "{count} Claude Enterprise seats": "{count} 个 Claude Enterprise 席位",
    "{count} Enterprise seats": "{count} 个企业版席位",
    "{count} Nonprofit": "{count} 个非营利机构/非营利版",
    "{count} Premium": "{count} 个 Premium 版",
    "{count} Premium Nonprofit": "{count} 个高级非营利",
    "{count} Premium Nonprofit seats": "{count} 个高级非营利席位",
    "{count} Premium seats": "{count} 个 Premium 席位",
    "{count} Research Labs": "{count} 个 Research Labs",
    "{count} Research Labs Premium": "{count} 个 Research Labs Premium",
    "{count} Research Labs Premium seats": "{count} 个 Research Labs Premium 席位",
    "{count} Research Labs seats": "{count} 个 Research Labs 席位",
    "{count} Standard": "{count} 个标准席位",
    "{count} Standard seats": "{count} 个标准席位",
    "{count} Total": "总计 {count}",
    "{count} additional {tierLabel} {count, plural, one {seat} other {seats}}": "{count} 个额外的 {tierLabel} {count, plural, one {seat} other {seats}}",
    "{count} demonstrated": "演示了 {count} 次",
    "{count} developing": "{count} 个正在开发",
    "{count} errors": "{count} 个错误",
    "{count} frequently used": "{count} 个经常启用",
    "{count} groups": "{count} 个组",
    "{count} installs": "{count} 次安装",
    "{count} loops": "{count} 个循环",
    "{count} members eligible to migrate": "{count} 个有资格迁移的成员",
    "{count} members will be skipped": "将跳过 {count} 名成员",
    "{count} members{domains}": "{count} 名成员{domains}",
    "{count} months": "{count} 个月",
    "{count} never used": "{count} 个从未启用",
    "{count} new": "{count} 条新内容",
    "{count} new {count, plural, one {member} other {members}} added on {date}": "{date} 新增了 {count} 名{count, plural, one {成员} other {成员}}",
    "{count} nonprofit seats": "{count} 个非营利席位",
    "{count} not observed": "未观察到 {count} 项",
    "{count} occurrences": "{count} 次出现",
    "{count} of {count}": "{count} / {count}",
    "{count} of {total}": "{total} 中的 {count}",
    "{count} premium seats": "{count} 个 Premium 席位",
    "{count} projects": "{count} 个项目",
    "{count} questions": "{count} 个问题",
    "{count} remaining...": "还剩 {count} 个...",
    "{count} repos": "{count} 个仓库",
    "{count} runs": "{count} 次运行",
    "{count} seats": "{count} 个席位",
    "{count} seats at {pricePerSeat}/seat": "{count} 个席位,价格为 {pricePerSeat}/席位",
    "{count} selected": "已选 {count} 个",
    "{count} sometimes used": "{count} 个偶尔启用",
    "{count} standard seats": "{count} 个标准席位",
    "{count} steps": "{count} 个步骤",
    "{count} this week": "本周 {count}",
    "{count} to add": "要添加 {count} 个",
    "{count} to remove": "待移除 {count} 个",
    "{count} to update": "待更新 {count} 个",
    "{count} unclaimed": "{count} 未认领",
    "{count} unclaimed {count, plural, one {seat} other {seats}}": "{count} 个闲置{count, plural, one {席位} other {席位}}",
    "{count} users": "{count} 名用户",
    "{count} users affected": "{count} 个用户受影响",
    "{count} × Claude for Enterprise Premium": "{count} × Claude Enterprise 高级版",
    "{count} × Claude for Enterprise Standard Nonprofit": "{count} × Claude 企业版标准非营利版",
    "{count}/{max}": "{count}/{max}",
    "{credit} in extra usage, {percent}% off": "{credit} 额外使用量,{percent}% 折扣",
    "{currentModelName}'s safety filters flagged this chat. Due to its advanced capabilities, {currentModelName} has additional safety measures that occasionally pause normal, safe chats. We're working to improve this. Continue your chat with {fallbackModelName}, <feedback>send feedback</feedback>, or <learnMore>learn more</learnMore>.": "{currentModelName} 的安全过滤器拦截了这次聊天。由于其能力的特殊性,{currentModelName} 具备额外的安全措施,偶尔会暂停正常的、安全的聊天。我们正在努力改进这一点。请继续使用 {fallbackModelName} 聊天,或进行<feedback>反馈</feedback>,或<learnMore>了解更多</learnMore>。",
    "{current} of {total}": "第 {current} 个,共 {total} 个",
    "{current}/{max}": "{current}/{max}",
    "{current}/{total}": "{current}/{total}",
    "{date} at {approx, select, yes {~} other {}}{time}": "{date} {approx, select, yes {约 } other {}}{time}",
    "{date} at {time}": "{date} {time}",
    "{date} by {email}": "{date} 由 {email}",
    "{days, plural, =0 {today} one {# day ago} other {# days ago}}": "{days, plural, =0 {今天} one {# 天前} other {# 天前}}",
    "{days, plural, one {# day} other {# days}} left": "剩余 {days, plural, one {# 天} other {# 天}}",
    "{days, plural, one {# day} other {# days}} left {separator} {upgrade}": "还剩 {days, plural, one {# 天} other {# 天}} {separator} {upgrade}",
    "{days, select, 0 {Plan will pause today} 1 {Plan will pause tomorrow} other {Plan will pause in {days} days}}": "{days, select, 0 {方案将于今日暂停} 1 {方案将于明日暂停} other {方案将在 {days} 天后暂停}}",
    "{days, select, 0 {Your plan ends today} 1 {Your plan ends tomorrow} other {Your plan ends in {days} days}}": "{days, select, 0 {您的计划今天结束} 1 {您的计划明天结束} other {您的计划将在{days}天后结束}}",
    "{daysLeft, plural, one {# day} other {# days}} of trial left": "试用剩余 {daysLeft, plural, one {# 天} other {# 天}}",
    "{daysRemaining} trial days remaining": "试用期还剩 {daysRemaining} 天",
    "{days} days": "{days} 天",
    "{days} days left": "还剩 {days} 天",
    "{days} days of pro left": "Pro 方案还剩 {days} 天",
    "{days}d": "{days} 天",
    "{demonstrated}/{total}": "{demonstrated}/{total}",
    "{description} (times in UTC)": "{description}(时间以 UTC 为准)",
    "{description} Add more details or click 'Let's go'.": "{description} 添加更多细节或点击“出发”。",
    "{displayName} installed. Start a new session to use it.": "{displayName} 已安装。开始新会话以使用它。",
    "{displayName} plugin": "{displayName} 插件",
    "{displayText} · Free month of Pro for new company email signups": "{displayText} · 新公司邮箱注册免费赠送一个月 Pro",
    "{domain} is not a valid email domain. Valid domains are in the format example.com": "{domain} 不是有效的邮箱域名。有效域名格式为 example.com",
    "{drive} documents loading...": "正在加载 {drive} 文档...",
    "{drive} search": "{drive} 搜索",
    "{duration} of Claude": "赠送 {duration} 的 Claude 体验时长",
    "{duration} of Claude {tierName}": "{tierName} 等级的 Claude {duration}",
    "{duration} of Claude {tier}": "{duration} 的 Claude {tier}",
    "{ellipsis}More": "{ellipsis}更多",
    "{emailList} must have an email address from {domainList}.": "{emailList} 必须拥有来自 {domainList} 的电子邮件地址。",
    "{emailList} {count, plural, one {is not a valid email.} other {are not valid emails.}}": "{emailList} {count, plural, one {不是有效的邮箱地址。} other {不是有效的邮箱地址。}}",
    "{emailList} {count, plural, one {is} other {are}} already added.": "{emailList} {count, plural, one {已经} other {已经}}被添加。",
    "{email} is already added.": "{email} 已添加。",
    "{email} is not a valid email.": "{email} 不是有效的电子邮件。",
    "{enabled} of {total}": "第 {enabled} 个,共 {total} 个",
    "{environmentName} service keys": "{environmentName} 服务密钥",
    "{expanded, select, true {Hide} other {Show}} conversation": "{expanded, select, true {隐藏} other {显示}} 对话",
    "{failedCount, plural, one {# check failed} other {# checks failed}}": "{failedCount, plural, one {# 项检查失败} other {# 项检查失败}}",
    "{featureName} has been disabled by your organization's administrator.": "{featureName} 已被您的组织管理员禁用。",
    "{featureName} is disabled in your desktop app settings.": "您的桌面应用设置中已禁用 {featureName}。",
    "{featureName} is disabled in your desktop app settings. Enable it to start handing off longer tasks.": "桌面应用设置中禁用了 {featureName}。启用它以开始移交较长的任务。",
    "{featureName} is not yet available on Windows on Arm devices.": "{featureName} 暂不支持基于 Arm 的 Windows 设备。",
    "{featureName} requires Windows 10 build 2004 or later. Update your operating system to use this feature.": "{featureName} 需要 Windows 10 build 2004 或更高版本。请更新您的操作系统以使用此功能。",
    "{featureName} requires a newer installation": "{featureName} 需要更新的安装版本",
    "{featureName} requires hardware virtualization. Your Mac does not support it, or nested virtualization is not enabled.": "{featureName} 需要硬件虚拟化。您的 Mac 不支持此功能,或未启用嵌套虚拟化。",
    "{featureName} requires macOS 14 (Sonoma) or later. Update your operating system to use this feature.": "{featureName} 需要 macOS 14 (Sonoma) 或更高版本。请更新您的操作系统以使用此项功能。",
    "{featureName} requires the latest desktop app": "{featureName} 需要最新版本的桌面应用",
    "{featureName} supports Intel-based Macs in a newer release. Please update Claude Desktop.": "{featureName} 在更新版本中支持基于 Intel 的 Mac。请更新桌面版 Claude。",
    "{fileCount, plural, one {# file has} other {# files have}} been modified locally and will be overwritten by this update.": "本地修改了 {fileCount, plural, one {# 个文件} other {# 个文件}},此更新将覆盖这些修改。",
    "{fileName} ({fileSize}) is too large to preview.": "{fileName}({fileSize})太大,无法预览。",
    "{fileName} thumbnail": "{fileName} 缩略图",
    "{filePath}:{lineNumber}": "{filePath}:{lineNumber}",
    "{filledCount}/{total}": "{filledCount}/{total}",
    "{filled} of {total} (+{extra, plural, one {# seat} other {# seats}})": "已使用 {total} 中的 {filled} (+{extra, plural, one {# 席位} other {# 席位}})",
    "{findingCount, plural, one {# finding} other {# findings}}": "{findingCount, plural, one {# 项发现} other {# 项发现}}",
    "{firstPart}{lineBreak}{goalPart}": "{firstPart}{lineBreak}{goalPart}",
    "{formattedUsageAmount} of {formattedLimit} spent": "已支出 {formattedLimit} 中的 {formattedUsageAmount}",
    "{formattedUsageAmount} spent": "已支出 {formattedUsageAmount}",
    "{formattedUsagePercent}% used": "已使用 {formattedUsagePercent}%",
    "{fullName} ({email})": "{fullName} ({email})",
    "{groupLabel}: {toolName}": "{groupLabel}:{toolName}",
    "{hostname} will be automatically added to Cowork's <link>network egress allowlist</link>.": "{hostname} 将被自动添加到协作功能的<link>网络出口白名单</link>中。",
    "{hours, plural, one {# hour} other {# hours}} left": "剩余 {hours, plural, one {# 小时} other {# 小时}}",
    "{hours, plural, one {# hour} other {# hours}}{hasMinutes, select, true { {minutes} min} other {}}": "{hours, plural, one {# 小时} other {# 小时}}{hasMinutes, select, true { {minutes} 分钟} other {}}",
    "{hours}h {minutes}m elapsed": "已用时 {hours} 小时 {minutes} 分钟",
    "{id} (deleted)": "{id}(已删除)",
    "{index} of {total}": "第 {index} 个,共 {total} 个",
    "{installed} → {available}": "{installed} → {available}",
    "{integrationName} cataloging": "{integrationName} 目录编排",
    "{interval, select,\n                        monthly {New monthly total}\n                        yearly {New yearly total}\n                        other {New total}\n                      }": "{interval, select,\n                        monthly {新月度总计}\n                        yearly {新年度总计}\n                        other {新总计}\n                      }",
    "{invalidDomains} are not valid domains": "{invalidDomains} 不是有效的域名",
    "{invalidDomain} is not a valid domain": "{invalidDomain} 不是有效的域名",
    "{inviterEmail} has invited you to join {organizationName}'s workspace on the Enterprise plan.": "{inviterEmail} 邀请您加入 {organizationName} 在 Enterprise 方案下的工作空间。",
    "{inviterEmail} has invited you to join {organizationName}'s workspace on the Team plan.": "{inviterEmail} 邀请您以 Team 方案加入 {organizationName} 的工作空间。",
    "{inviterName} ({inviterEmail}) has invited you to join {organizationName}'s workspace on the Enterprise plan.": "{inviterName} ({inviterEmail}) 邀请您加入 {organizationName} 在 Enterprise 方案下的工作空间。",
    "{inviterName} ({inviterEmail}) has invited you to join {organizationName}'s workspace on the Team plan.": "{inviterName} ({inviterEmail}) 邀请您加入 {organizationName} 在 Team 方案中的工作区。",
    "{items} and {lastItem}": "{items} 和 {lastItem}",
    "{label}, Beta": "{label},Beta",
    "{language} code": "{language} 代码",
    "{learnSafely} or {giveFeedback}.": "{learnSafely} 或 {giveFeedback}。",
    "{learnSafely}.": "{learnSafely}。",
    "{machineName} sessions": "{machineName} 会话",
    "{memberName} doesn’t have any custom roles assigned. They’ll lose all role-based access until you assign a custom role.": "{memberName} 尚未分配任何自定义角色。在你分配自定义角色之前,他们将失去所有基于角色的访问权限。",
    "{migrated} / {total} migrated": "已迁移 {migrated} / {total}",
    "{minMembers}-{maxMembers} users": "{minMembers}-{maxMembers} 名用户",
    "{minimum, plural, one {# seat} other {# seats}} minimum": "最少需要 {minimum, plural, one {# 个席位} other {# 个席位}}",
    "{minimum}+ users": "{minimum}+ 名用户",
    "{minutes} min": "{minutes} 分钟",
    "{minutes}m elapsed": "已用时 {minutes} 分钟",
    "{minutes}m {seconds}s": "{minutes} 分 {seconds} 秒",
    "{min} minimum": "最少 {min}",
    "{modelName} (1M context)": "{modelName}(100 万上下文)",
    "{months, plural, one {# month} other {# months}} on us. Enter your work email to get started — we'll send you a sign-in link.": "前 {months, plural, one {# 个月} other {# 个月}}由我们承担。输入你的工作邮箱即可开始,我们会向你发送登录链接。",
    "{months} months": "{months} 个月",
    "{m} mo": "{m} 个月",
    "{n, plural, one {# candidate} other {# candidates}}": "{n, plural, one {# 位候选人} other {# 位候选人}}",
    "{n, plural, one {# connector needs} other {# connectors need}} reconnecting — they belong to the original owner and weren't copied. Add your own from the connector picker.": "{n, plural, one {# 个连接器需要重新连接} other {# 个连接器需要重新连接}}——它们属于原始所有者,未被复制。请从连接器选择器中添加你自己的连接器。",
    "{n, plural, one {# issue} other {# issues}}": "{n, plural, one {# 个问题} other {# 个问题}}",
    "{n, plural, one {# tool use} other {# tool uses}}": "{n, plural, one {# 次工具使用} other {# 次工具使用}}",
    "{n, plural, one {a command} other {# commands}}": "{n, plural, one {一个命令} other {# 个命令}}",
    "{n, plural, one {a file} other {# files}}": "{n, plural, one {一个文件} other {# 个文件}}",
    "{n, plural, one {a memory} other {# memories}}": "{n, plural, one {一条记忆} other {# 条记忆}}",
    "{n, plural, one {a notebook} other {# notebooks}}": "{n, plural, one {1 个笔记本} other {# 个笔记本}}",
    "{n, plural, one {a tool} other {# tools}}": "{n, plural, one {1 个工具} other {# 个工具}}",
    "{n, plural, one {an agent} other {# agents}}": "{n, plural, one {一个代理} other {# 个代理}}",
    "{names}, +{remaining} more": "{names},以及另外 {remaining} 个",
    "{name} (current)": "{name} (当前)",
    "{name} ({email})": "{name} ({email})",
    "{name} added knowledge": "{name} 添加了知识",
    "{name} added knowledge in <tooltip>{projectName}</tooltip>": "{name} 在 <tooltip>{projectName}</tooltip> 中添加了知识",
    "{name} added knowledge in {projectName}": "{name} 在 {projectName} 中添加了知识",
    "{name} connected": "{name} 已连接",
    "{name} copy": "{name} 副本",
    "{name} returns!": "{name} 回归!",
    "{name} shared a chat": "{name} 分享了一次聊天",
    "{name} shared a chat in <tooltip>{projectName}</tooltip>": "{name} 在 <tooltip>{projectName}</tooltip> 中共享了一条聊天",
    "{name} — session": "{name} — 会话",
    "{name}'s session is read-only. Ready to build something yourself?": "{name} 的会话是只读的。准备好自己构建一些内容了吗?",
    "{name},": "{name},",
    "{name}, Settings": "{name},设置",
    "{name}, folder": "{name},文件夹",
    "{name}, rename chat": "{name},重命名聊天",
    "{name}, rename session": "{name},重命名会话",
    "{numberOfMerged} joined parent": "{numberOfMerged} 个已合并的父级",
    "{n} ({pct}%)": "{n}({pct}%)",
    "{n} available": "{n} 可用",
    "{n} tokens": "{n} 个令牌",
    "{n}.": "{n}。",
    "{n}d": "{n}天",
    "{orgName} has a plan that covers you. Request to join at no extra cost.": "{orgName} 有一个涵盖您的计划。请求加入,无需额外费用。",
    "{orgName} is on Claude. Join your team to share projects and chats.": "{orgName} 已在使用 Claude。加入你的团队以共享项目和聊天。",
    "{orgName} skills": "{orgName} 技能",
    "{organizationName} ({organizationUuid})": "{organizationName}({organizationUuid})",
    "{organizationName} has requested to add your organization as a child organization": "{organizationName} 申请将您的组织添加为子组织",
    "{partnerName} offer: up to {cap}/month off for {months, plural, one {# month} other {# months}}": "{partnerName} 优惠:{months, plural, one {# 个月} other {# 个月}}每月减免至多 {cap}",
    "{partnerName} offer: up to {cap}/month off for {months, plural, one {# month} other {# months}} + {credit} usage credit": "{partnerName} 优惠:每月最高减免 {cap},持续 {months, plural, one {# 个月} other {# 个月}} + {credit} 用量额度",
    "{partnerName} offer: {months, plural, one {# month} other {# months}} free": "{partnerName} 优惠:{months, plural, one {# 个月} other {# 个月}}免费",
    "{partnerName} offer: {months, plural, one {# month} other {# months}} free + {credit} usage credit": "{partnerName} 优惠: {months, plural, one {# 个月} other {# 个月}}免费 + {credit} 使用额度",
    "{pctUsed}% of project capacity used": "已使用 {pctUsed}% 的项目容量",
    "{pct}%": "{pct}%",
    "{percentOff}% off for {durationInMonths, plural, one {# month} other {# months}}": "{durationInMonths, plural, one {# 个月} other {# 个月}}享 {percentOff}% 优惠",
    "{percentOff}% off for {durationInYears, plural, one {# year} other {# years}}": "折扣 {percentOff}%,有效期 {durationInYears, plural, one {# 年} other {# 年}}",
    "{percentOff}% off your first month": "首月 {percentOff}% 优惠",
    "{percentOff}% off your first year": "首年 {percentOff}% 优惠",
    "{percentOff}% off {planName} for {durationInMonths, plural, one {# month} other {# months}}": "{percentOff}% {planName} 折扣,{durationInMonths, plural, one {# 个月} other {# 个月}}",
    "{percentUsed}% of capacity used": "已使用 {percentUsed}% 的额度",
    "{percentage}% of context window used": "已使用上下文窗口的 {percentage}%",
    "{percent}%": "{percent}%",
    "{percent}% used": "已使用 {percent}%",
    "{period} · {clock}": "{period} · {clock}",
    "{plan} plan": "{plan} 方案/计划",
    "{platform} update required": "需要升级 {platform}",
    "{pluginName} added to project settings. {createPrLink} to share with your team.": "“{pluginName}”插件已加入项目设置。{createPrLink} 以分享至您的团队。",
    "{pluginName} has been uninstalled.": "{pluginName} 已卸载。",
    "{pluginName} has been uninstalled. {createPrLink} to update project settings.": "{pluginName} 已卸载。{createPrLink} 以更新项目设置。",
    "{pluginName} is installed and ready to use.": "{pluginName} 已安装并可供使用。",
    "{pluginName} is installed and ready to use. {manageLink}": "{pluginName} 已安装并可供使用。{manageLink}",
    "{pluginName} plugin": "{pluginName} 插件",
    "{pluginName} plugin: {connectorName}": "{pluginName} 插件: {connectorName}",
    "{prefix, select, first {First, let’s} other {Now, let’s} last {Almost There! Let’s}} connect your inbox.": "{prefix, select, first {首先,让我们} other {现在,让我们} last {快完成了!让我们}}连接您的收件箱。",
    "{prefix, select, first {First, let’s} other {Now, let’s} last {Almost There! Let’s}} connect your team content.": "{prefix, select, first {首先,让我们} other {现在,让我们} last {快好了!让我们}}连接您的团队内容。",
    "{prefix, select, first {First, let’s} other {Now, let’s} last {Almost There! Let’s}} connect your work schedule.": "{prefix, select, first {首先,让我们} other {现在,让我们} last {快完成了!让我们}}连接您的工作日程。",
    "{prefix, select, first {First,} other {Now,} last {Almost there!}} let’s connect your work tools.": "{prefix, select, first {首先,} other {现在,} last {快完成了!}}让我们连接你的工作工具。",
    "{prefix}...": "{prefix}...",
    "{price} /mo when billed monthly": "按月计费时 {price} /月",
    "{price}/mo": "{price}/月",
    "{price}/yr billed annually": "每年计费 {price}",
    "{price}<span>for {days, plural, one {# day} other {# days}}</span>": "{price}<span>/ {days, plural, one {# 天} other {# 天}}</span>",
    "{price}<span>for {value} {unit}{value, plural, one {} other {s}}</span>": "{price}<span>对应 {value} {unit}{value, plural, one {} other {s}}</span>",
    "{pricing} / month": "{pricing} / 月",
    "{pricing} / standard seat / month": "{pricing} / 标准席位/月",
    "{pricing} / standard seat / year": "每个标准席位每年 {pricing}",
    "{pricing} / year": "{pricing} / 年",
    "{pricing} per seat /month": "每个席位每月 {pricing}",
    "{pricing} per seat /year": "每个席位每年 {pricing}",
    "{processed, number} of {total, number} updated": "已更新 {processed} / 共 {total} 个",
    "{progress}%": "{progress}%",
    "{projectName}, Shared": "{projectName},共享的",
    "{provider} credentials": "{provider} 凭证",
    "{provider} returned an error": "{provider} 返回了一个错误",
    "{queued, plural, one {# session} other {# sessions}} waiting. Check your deployment — runners may have failed to start or can't reach the API.": "{queued, plural, one {# 个会话} other {# 个会话}}正在等待。检查您的部署 — 运行器可能无法启动或无法访问 API。",
    "{rate} disconnect rate": "{rate} 断开率",
    "{rate} disconnect rate (30d)": "{rate} 断开率(30 天)",
    "{reachable} of {total} reachable": "{total} 个中有 {reachable} 个可达",
    "{reason} <link>Contact sales</link> for more information.": "{reason}<link>联系销售</link>了解更多。",
    "{remainingSeats, plural, one {# seat} other {# seats}} remaining…": "还剩 {remainingSeats, plural, one {# 个席位} other {# 个席位}}…",
    "{remaining}/{total} left": "剩余 {remaining}/{total}",
    "{repoCount, plural, one {Pull request} other {Pull requests}}": "{repoCount, plural, one {拉取请求} other {拉取请求}}",
    "{repoCount} repos": "{repoCount} 个仓库",
    "{repo} will be hidden from your project list. Its scans and findings are kept, and you can unarchive it at any time.": "{repo} 将从你的项目列表中隐藏。其扫描结果和发现会被保留,你可以随时取消归档。",
    "{repo} will reappear in your project list and can be scanned again.": "{repo} 将重新出现在你的项目列表中,并可再次扫描。",
    "{scanCount, plural, one {# scan} other {# scans}}": "{scanCount, plural, one {# 次扫描} other {# 次扫描}}",
    "{seatPrice}/seat. Usage cost scales with model and task.": "{seatPrice}/席位。使用费用随模型和任务而变化。",
    "{seats} seats": "{seats} 个席位",
    "{seats} seats × {price}/seat × 12 months": "{seats} 个席位 × {price}/席位 × 12 个月",
    "{seats} · Trial ends {date} · {price}": "{seats} · 试用结束于 {date} · {price}",
    "{seconds}s": "{seconds}秒",
    "{selected, plural, one {# file} other {# files}} selected": "已选择 {selected, plural, one {# 个文件} other {# 个文件}}",
    "{selectedOption} / {totalOptions}": "{selectedOption} / {totalOptions}",
    "{senderName} just gave you {duration} of Claude": "{senderName} 刚刚送了您 {duration} 的 Claude 体验时长",
    "{serverName} embed": "{serverName} 嵌入",
    "{serverName} needs authentication to use {toolName}": "{serverName} 需要认证才能使用 {toolName}",
    "{serverName} needs to be reauthorized. Reconnect to continue.": "{serverName} 需要重新授权。重新连接以继续。",
    "{serverName} needs you to sign in to continue": "{serverName} 需要您登录才能继续",
    "{serverName} wants to add a prompt.": "{serverName} 想要添加一条提示词。",
    "{serverName}: {widgetTitle}": "{serverName}:{widgetTitle}",
    "{sign}{count, plural, one {# Chat + Claude Code seat} other {# Chat + Claude Code seats}} (pro-rated month)": "{sign}{count, plural, one {# 个聊天 + Claude Code 席位} other {# 个聊天 + Claude Code 席位}}(按月比例计算)",
    "{sign}{count, plural, one {# Chat + Claude Code seat} other {# Chat + Claude Code seats}} (pro-rated year)": "{sign}{count, plural, one {# 个聊天 + Claude Code 席位} other {# 个聊天 + Claude Code 席位}}(按年比例计算)",
    "{sign}{count, plural, one {# Chat seat} other {# Chat seats}} (pro-rated month)": "{sign}{count, plural, one {# 个聊天席位} other {# 个聊天席位}}(按月比例计算)",
    "{sign}{count, plural, one {# Chat seat} other {# Chat seats}} (pro-rated year)": "{sign}{count, plural, one {# 个聊天席位} other {# 个聊天席位}}(按年比例计算)",
    "{sign}{count, plural, one {# Claude Enterprise seat} other {# Claude Enterprise seats}} (pro-rated month)": "{sign}{count, plural, one {# 个 Claude Enterprise 席位} other {# 个 Claude Enterprise 席位}}(按月比例计算)",
    "{sign}{count, plural, one {# Claude Enterprise seat} other {# Claude Enterprise seats}} (pro-rated year)": "{sign}{count, plural, one {# 个 Claude Enterprise 席位} other {# 个 Claude Enterprise 席位}}(按年比例计算)",
    "{sign}{count, plural, one {# Premium Nonprofit seat} other {# Premium Nonprofit seats}} (pro-rated month)": "{sign}{count, plural, one {# 个高级非营利席位} other {# 个高级非营利席位}}(按月计费)",
    "{sign}{count, plural, one {# Premium Nonprofit seat} other {# Premium Nonprofit seats}} (pro-rated year)": "{sign}{count, plural, one {# 个高级非营利席位} other {# 个高级非营利席位}}(按年计费)",
    "{sign}{count, plural, one {# Research Labs Premium seat} other {# Research Labs Premium seats}} (pro-rated month)": "{sign}{count, plural, one {# 个 Research Labs Premium 席位} other {# 个 Research Labs Premium 席位}}(按月按比例计费)",
    "{sign}{count, plural, one {# Research Labs Premium seat} other {# Research Labs Premium seats}} (pro-rated year)": "{sign}{count, plural, one {# 个 Research Labs Premium 席位} other {# 个 Research Labs Premium 席位}}(按年比例计费)",
    "{sign}{count, plural, one {# Research Labs seat} other {# Research Labs seats}} (pro-rated month)": "{sign}{count, plural, one {# 个 Research Labs 席位} other {# 个 Research Labs 席位}}(按月折算)",
    "{sign}{count, plural, one {# Research Labs seat} other {# Research Labs seats}} (pro-rated year)": "{sign}{count, plural, one {# 个 Research Labs 席位} other {# 个 Research Labs 席位}}(按年按比例计费)",
    "{sign}{count, plural, one {# nonprofit seat} other {# nonprofit seats}} (pro-rated month)": "{sign}{count, plural, one {# 个非营利席位} other {# 个非营利席位}}(按月比例计算)",
    "{sign}{count, plural, one {# nonprofit seat} other {# nonprofit seats}} (pro-rated year)": "{sign}{count, plural, one {# 个非营利席位} other {# 个非营利席位}}(按年比例计算)",
    "{sign}{count, plural, one {# premium seat} other {# premium seats}} (pro-rated month)": "{sign}{count, plural, one {# 个高级席位} other {# 个高级席位}}(按月比例计算)",
    "{sign}{count, plural, one {# premium seat} other {# premium seats}} (pro-rated year)": "{sign}{count, plural, one {# 个高级席位} other {# 个高级席位}}(按年比例计算)",
    "{sign}{count, plural, one {# standard seat} other {# standard seats}} (pro-rated month)": "{sign}{count, plural, one {# 个标准席位} other {# 个标准席位}}(按月比例计算)",
    "{sign}{count, plural, one {# standard seat} other {# standard seats}} (pro-rated year)": "{sign}{count, plural, one {# 标准席位} other {# 标准席位}} (按年比例计算)",
    "{size} KB": "{size} KB",
    "{size} MB": "{size} MB",
    "{sourceLabel} verification enabled": "{sourceLabel} 验证已启用",
    "{state} for {tool}": "{tool} 的 {state}",
    "{status} · {ref}": "{status} · {ref}",
    "{stepCount, plural, one {# step} other {# steps}}": "{stepCount, plural, one {# 步} other {# 步}}",
    "{stepNum} of {totalSteps}": "第 {stepNum} 步,共 {totalSteps} 步",
    "{summary} ({count, plural, one {# failed} other {# failed}})": "{summary}({count, plural, one {# 个失败} other {# 个失败}})",
    "{s}s": "{s}秒",
    "{tierLabel} limits": "{tierLabel} 限额",
    "{tierLabel} seats": "{tierLabel} 席位",
    "{tier} seats": "{tier} 席位",
    "{title} background animation": "{title} 背景动画",
    "{title} color mode": "{title} 颜色模式",
    "{title} sidebar density": "{title} 侧边栏密度",
    "{title} {action}": "{title} {action}",
    "{title}. Open artifact.": "{title}。打开 Artifact。",
    "{title}. Open research panel.": "{title}。打开研究面板。",
    "{title}: {subtitle}. Open research panel.": "{title}: {subtitle}。打开研究面板。",
    "{tokens} tokens": "{tokens} 个令牌",
    "{toolName} · {count, plural, one {# tool call} other {# tool calls}}": "{toolName} · {count, plural, one {# 次工具调用} other {# 次工具调用}}",
    "{total, plural, one {# tool} other {# tools}}": "{total, plural, one {# 个工具} other {# 个工具}}",
    "{totalMembers} ({unassignedMembers} unassigned)": "{totalMembers} ({unassignedMembers} 名未分配)",
    "{totalSeats} ({availableSeats} available)": "{totalSeats} ({availableSeats} 可用)",
    "{totalSources, plural, one {# other source} other {# other sources}}": "{totalSources, plural, one {# 个其他来源} other {# 个其他来源}}",
    "{totalSources, plural, one {# source} other {# sources}}": "{totalSources, plural, one {# 个来源} other {# 个来源}}",
    "{totalSources, plural, one {# source} other {# sources}} {status}": "{totalSources, plural, one {# 个来源} other {# 个来源}} {status}",
    "{type} path": "{type} 路径",
    "{uniqueUserRequestCount, plural, one {# person} other {# people}} sent requests": "{uniqueUserRequestCount, plural, one {# 人} other {# 人}}发送了请求",
    "{unplaceable, plural, one {# session} other {# sessions}} waiting for an available runner": "{unplaceable, plural, one {# 个会话} other {# 个会话}} 正在等待可用执行器",
    "{used} / {limit}": "{used} / {limit}",
    "{used} / {limit} included daily runs used.": "已使用包含的每日运行次数:{used} / {limit}。",
    "{used} / {limit} included remote daily runs used.": "已使用包含的远程每日运行次数:{used} / {limit}。",
    "{value, plural, one {#h} other {#h}}": "{value, plural, one {# 小时} other {# 小时}}",
    "{value, plural, one {#m} other {#m}}": "{value, plural, one {# 分钟} other {# 分钟}}",
    "{value, plural, one {#s} other {#s}}": "{value, plural, one {#个} other {#个}}",
    "{value} (median)": "{value} (中位数)",
    "{v} confirmed · {r} refuted": "{v} 已确认 · {r} 已驳回",
    "{v} confirmed, {r} refuted": "{v} 已确认,{r} 已驳回",
    "{x}×": "{x}×",
    "~{count} characters": "约 {count} 个字符",
    "© 2026 ANTHROPIC PBC": "© 2026 ANTHROPIC PBC",
    "· Best value": "· 超值之选/最佳性价比",
    "· Save {percentage}%": "· 节省 {percentage}%",
    "· {count} queued": "· {count} 个在队列中",
    "× {price}/mo": "× {price}/月",
    "“Broccoli is my favorite veg...”": "“西兰花是我最喜欢的蔬菜...”",
    "“Don’t bring up my former baseball career...”": "“别提我以前打棒球的职业生涯...”",
    "“I like cats not dogs...”": "“我喜欢猫,不喜欢狗...”",
    "“{fileName}” is too large. Choose a smaller file.": "“{fileName}”太大。请选择较小的文件。",
    "←": "←",
    "↑ ↓ to navigate · Enter to select · Esc to skip": "↑ ↓ 导航 · Enter 选择 · Esc 跳过",
    "↑ ↓ to navigate{sep}Enter to select{sep}Esc to skip": "↑ ↓ 导航{sep}Enter 选择{sep}Esc 跳过",
    "↑ ↓ to navigate{sep}Enter to select{sep}⌘ Enter to submit{sep}Esc to skip": "使用 ↑ ↓ 导航{sep}按下 Enter 选择{sep}按下 ⌘ Enter 提交{sep}按下 Esc 跳过",
    "−{amount}": "−{amount}",
    "⌘ Enter to continue{sep}Esc to skip": "⌘ Enter 继续{sep}Esc 跳过",
    "⌘ Enter to send{sep}Esc to skip": "⌘ Enter 发送{sep}Esc 跳过",
    "⌘A: select all{sep}Del: delete{sep}Space: pan{sep}⌘Z: undo{sep}Esc: close": "⌘A: 全选{sep}Del: 删除{sep}空格: 平移{sep}⌘Z: 撤销{sep}Esc: 关闭",
    "⌘⏎": "⌘⏎",
    "⏎": "回车键 (⏎)",
    "★ Possible match": "★ 可能匹配",
    "★★ Recommended": "★★ 推荐",
    "⚠️ SECURITY WARNING ⚠️": "⚠️ 安全警告 ⚠️",
    "⚠️ Security Warning ⚠️": "⚠️ 安全警示 ⚠️",
    "✓": "✓"
  };
})();