Pitch-cn

Pitch 汉化补丁,兼容网页与客户端。汉化的完成度已经100%了,但是英文改中文后,有些界面的布局可能会有些问题,但是不影响使用,后续会修复。如果有发现问题,欢迎反馈给我,谢谢!

当前为 2023-04-10 提交的版本,查看 最新版本

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Pitch-cn
// @namespace    https://rainforest-kailous.notion.site/
// @version      1.2.2
// @description  Pitch 汉化补丁,兼容网页与客户端。汉化的完成度已经100%了,但是英文改中文后,有些界面的布局可能会有些问题,但是不影响使用,后续会修复。如果有发现问题,欢迎反馈给我,谢谢!
// @author       Kailous
// @match        https://app.pitch.com/*
// @match        https://pitch.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=pitch.com
// @grant        none
// @license      MIT
// ==/UserScript==

(function(){ var en = function(n, ord
) {
  var s = String(n).split('.'), v0 = !s[1], t0 = Number(s[0]) == n,
      n10 = t0 && s[0].slice(-1), n100 = t0 && s[0].slice(-2);
  if (ord) return (n10 == 1 && n100 != 11) ? 'one'
      : (n10 == 2 && n100 != 12) ? 'two'
      : (n10 == 3 && n100 != 13) ? 'few'
      : 'other';
  return (n == 1 && v0) ? 'one' : 'other';
};
var number = function (value, name, offset) {
  if (!offset) return value;
  if (isNaN(value)) throw new Error("Can't apply offset:" + offset + ' to argument `' + name + '` with non-numerical value ' + JSON.stringify(value) + '.');
  return value - offset;
};
var plural = function (value, offset, lcfunc, data, isOrdinal) {
  if ({}.hasOwnProperty.call(data, value)) return data[value];
  if (offset) value -= offset;
  var key = lcfunc(value, isOrdinal);
  return key in data ? data[key] : data.other;
};
var select = function (value, data) {
  return {}.hasOwnProperty.call(data, value) ? data[value] : data.other;
};

(function (root, G) {
  if (typeof define === "function" && define.amd) { define(G); }
  else if (typeof exports === "object") { module.exports = G; }
  else { root.pitch_l10n = G; }
})(this, {
        "account--avatar-setting-dialog-heading": function(d) { return "更改账户头像"; },
        "account--avatar-choose-new-button": function(d) { return "上传新照片"; },
        "account--avatar-current-image-alt-text": function(d) { return "当前头像图片"; },
        "account--avatar-new-image-alt-text": function(d) { return "新头像图片"; },
        "account--update-settings-button": function(d) { return "保存更改"; },
        "account--name-setting-dialog-heading": function(d) { return "更改账户名称"; },
        "account-email-settings-menu-button": function(d) { return "可用电子邮件"; },
        "account--email-setting-dialog-heading": function(d) { return "更改账户电子邮件"; },
        "account--edit-name-button": function(d) { return "编辑"; },
        "account--new-name-label": function(d) { return "姓名"; },
        "account--new-email-label": function(d) { return "电子邮件"; },
        "account--password-setting-dialog-heading": function(d) { return "重置密码"; },
        "account--reset-password-done-message": function(d) { return "已向您的电子邮件地址发送了重置密码链接。请检查您的收件箱并按照说明更改密码。"; },
        "account--reset-password-description": function(d) { return "点击#[reset-button-code]按钮,我们将向您发送一封更改密码的链接。"; },
        "account--reset-password-again-description": function(d) { return "没有起作用?再次点击#[reset-button-code]按钮,我们将向您发送另一个更改密码的链接。"; },
        "account--reset-password-button": function(d) { return "重置密码"; },
        "account--reset-password-ok-status-message": function(d) { return "我们刚刚向您发送了一封电子邮件,以重置您的密码。"; },
        "account--reset-password-fail-status-message": function(d) { return "我们无法重置您的密码。请确保您在线,或稍后再试。"; },
        "account--settings-index-name-setting-title": function(d) { return "姓名"; },
        "account--settings-index-avatar-setting-title": function(d) { return "头像"; },
        "account--settings-index-email-setting-title": function(d) { return "电子邮件"; },
        "account--settings-index-password-reset-title": function(d) { return "密码"; },
        "account--settings-modal-dialog-title": function(d) { return "帐户设置"; },
        "account--settings-error-could-not-upload-image": function(d) { return "上传该图像时出了些问题。请稍后再试。"; },
        "account--app-notifications-heading": function(d) { return "通知"; },
        "account--settings-notifications-accordion-header": function(d) { return "订阅了 " + plural(d.count, 0, en, { "0": "0 个演示文稿", one: "1 个演示文稿", other: number(d.count, "count") + " 个演示文稿" }); },
        "account--settings-subscriptions-accordeon-description": function(d) { return "您将获得有关这些演示文稿中的所有新评论和标记为已完成的幻灯片的更新。"; },
        "account--app-notifications-auto-subscription-description": function(d) { return "演示文稿订阅"; },
        "account--app-notifications-subscription-justification--comment": function(d) { return "您在此演示文稿上发表了评论"; },
        "account--app-notifications-subscription-justification--manual-subscription": function(d) { return "您订阅了此演示文稿"; },
        "account--app-notifications-subscription-justification--slide-assignment": function(d) { return "您被分配了此演示文稿中的幻灯片"; },
        "account--app-notifications-subscription-justification--document-create": function(d) { return "您创建了此演示文稿"; },
        "account--app-notifications-subscription-justification--document-edit": function(d) { return "您编辑了此演示文稿"; },
        "account--app-notifications--slack-heading": function(d) { return "slack中的pitch应用程序"; },
        "account--app-notifications--slack-description": function(d) { return "在slack中接收有关pitch邀请、分配、提及和回复的通知。"; },
        "account--app-notifications--slack--installation-description-bold": function(d) { return "保持工作高效"; },
        "account--app-notifications--slack--installation-description": function(d) { return "使用 pitch 的 slack 应用"; },
        "account--app-notifications--slack--installation-button": function(d) { return "添加 pitch 到 slack"; },
        "account--app-notifications--slack--disconnect-your-account": function(d) { return "您的帐户"; },
        "account--app-notifications--slack--disconnect-description": function(d) { return "您的 slack 帐户已连接"; },
        "account--app-notifications--slack--disconnect-connected-to": function(d) { return "已连接到"; },
        "account--app-notifications--slack--disconnect-button": function(d) { return "断开连接"; },
        "account--app-notifications--slack--disconnect-account-button": function(d) { return "断开帐户连接"; },
        "account--app-notifications--slack--disconnected-alert-title": function(d) { return "已断开 slack 连接"; },
        "account--app-notifications--slack--disconnected-alert-description": function(d) { return "您将不再收到 slack 通知。"; },
        "account--app-notifications--allow-slack-notifications--alert-title": function(d) { return "开启 slack 通知"; },
        "account--app-notifications--allow-slack-notifications--alert-description": function(d) { return "您现在将在 slack 中收到通知。"; },
        "account--app-notifications--disallow-slack-notifications--alert-title": function(d) { return "关闭 slack 通知"; },
        "account--app-notifications--disallow-slack-notifications--alert-description": function(d) { return "您将不再在 slack 中收到通知。"; },
        "account--app-notifications--error-slack-installation--alert-title": function(d) { return "slack 连接失败"; },
        "account--app-notifications--error-slack-installation--alert-description": function(d) { return "出了些问题。请再次尝试添加 pitch 应用。"; },
        "account--app-notifications--success-slack-installation--alert-title": function(d) { return "已连接 slack"; },
        "account--app-notifications--success-slack-installation--alert-description": function(d) { return "您已将 pitch 应用添加到 slack。"; },
        "account--notifications-preferences-heading": function(d) { return "电子邮件偏好设置"; },
        "account--notifications-preferences-dialog-description": function(d) { return "以下情况会向您发送电子邮件通知:"; },
        "account--settings-index-notifications-setting-title": function(d) { return "邮件偏好设置"; },
        "account--settings-index-delete-user-setting-title": function(d) { return "危险区域"; },
        "account--settings-index-app-notifications-setting-title": function(d) { return "通知"; },
        "account--settings-index-app-notifications-setting-label": function(d) { return plural(d.count, 0, en, { "0": "未订阅任何演示文稿", one: "订阅了 1 个演示文稿", other: "订阅了 " + number(d.count, "count") + " 个演示文稿" }); },
        "account--notification-preferences-allows-mention": function(d) { return "有人提及你时"; },
        "account--notification-preferences-allows-assignment": function(d) { return "有人将幻灯片指派给你时"; },
        "account--notification-preferences-allows-comment": function(d) { return "有人回复你的评论时"; },
        "account--notifications-preferences-allows-auto-subscriptions": function(d) { return "自动订阅我创建、编辑、评论或被指派的演示文稿。"; },
        "account--notification-preferences-mention": function(d) { return "提及"; },
        "account--notification-preferences-comment": function(d) { return "评论"; },
        "account--notification-preferences-assignment": function(d) { return "指派"; },
        "account--notification-preferences-all-enabled": function(d) { return "全部订阅"; },
        "account--deletion-request-modal-heading": function(d) { return "请求删除账户"; },
        "account--delete-user-account-button-label": function(d) { return "删除我的账户"; },
        "account--deletion-request-modal-request-button": function(d) { return "请求删除"; },
        "account--deletion-request-modal--fact--is-permanent": function(d) { return "永久删除"; },
        "account--deletion-request-modal--fact--deletes-all-my-data": function(d) { return "将删除我所有的演示文稿和工作区"; },
        "account--deletion-request-modal--fact--revokes-my-access": function(d) { return "将取消我对共享演示文稿和工作区的访问"; },
        "account--deletion-request-modal-consent-to-deletion-effects": function(d) { return "我理解删除我的账户会"; },
        "account--deletion-request-modal--deletion-facts": function(d) { return "#[action-permanence] #[deletion-consequences] #[access-effects]"; },
        "account--deletion-request-modal-ownership-transfer-link-text": function(d) { return "了解如何转移所有权"; },
        "account--deletion-request-modal-owner-text": function(d) { return "您是#[workspaces]的所有者。请#[link]转让这些工作区,而不是将它们删除。#[linebreak]"; },
        "account--deletion-request-modal-input-placeholder": function(d) { return "输入您的电子邮件以确认"; },
        "account--success-dialog-message": function(d) { return "删除请求已发送"; },
        "account--deletion-confirmation-dialog-action-cannot-undo-warning": function(d) { return "此操作无法撤销。"; },
        "account--deletion-confirmation-dialog-header": function(d) { return "永久删除您的帐户?"; },
        "account--deletion-confirmation-dialog-member-text": function(d) { return "删除您的帐户将同时删除您的演示文稿,并且您将失去对共享演示文稿和工作区的访问权限。#[action-permanence]"; },
        "account--deletion-confirmation-dialog-deletion-button": function(d) { return "删除帐户"; },
        "account--deletion-confirmation-dialog-owner-text": function(d) { return "您是#[workspaces]的所有者。删除您的帐户将删除其中的演示文稿和" + plural(d.workspaces_count, 0, en, { "1": "此工作区", other: "这些工作区" }) + "。您还将失去对共享演示文稿和工作区的访问权限。#[action-permanence]"; },
        "account--deletion-owner-dialog-workspaces-count": function(d) { return d.workspaces_list + "和其他" + d.rest_workspaces_count + plural(d.rest_workspaces_count, 0, en, { "1": "个工作区", other: "个工作区" }); },
        "account--success-dialog-comment": function(d) { return "很遗憾看到您离开!我们已收到您的请求,将尽快处理。"; },
        "account--success-dialog-close-button-text": function(d) { return "关闭"; },
        "account--failure-dialog-message": function(d) { return "出了些问题,我们目前不知道原因。"; },
        "account--failure-dialog-comment": function(d) { return "无法发送您的请求。请稍后再试。"; },
        "account--notification-preferences-all-disabled": function(d) { return "已关闭"; },
        "account--notification-preferences-just-one": function(d) { return "仅限"; },
        "account--notifications-preferences-subscriptions-unsubscribe": function(d) { return "取消订阅"; },
        "presentation-analytics--load-more-button": function(d) { return "加载更多"; },
        "presentation-analytics--load-more-is-loading": function(d) { return "正在加载结果"; },
        "presentation-analytics--load-more-error-msg": function(d) { return "请求失败"; },
        "presentation-analytics--load-more-error-try-again": function(d) { return "重试"; },
        "presentation-analytics-load-more-no-more-results": function(d) { return "没有更多访问记录"; },
        "presentation-analytics--enrtypoint--tooltip--title": function(d) { return "演示文稿分析"; },
        "presentation-analytics--enrtypoint--tooltip--content": function(d) { return "了解访问者和协作者与您的演示文稿的互动"; },
        "presentation-views--title--all-views": function(d) { return "访问量"; },
        "presentation-views--title--visitors": function(d) { return "独立访客数"; },
        "presentation-views--workspace-activity--title": function(d) { return "工作区活动"; },
        "presentation-views--workspace-activity--subtitle": function(d) { return "查看最近访问此演示文稿的成员和访客"; },
        "presentation-views--tabs--all-views": function(d) { return "所有访问量 (" + d.viewcount + ")"; },
        "presentation-views--tabs--all-views-tooltip-body": function(d) { return "查看来自所有来源的访问量: 公共访问、自定义链接、团队成员和被邀请的访客"; },
        "presentation-views--tabs--all-views-tooltip-cta": function(d) { return "了解详情"; },
        "presentation-views--tabs--managed-links": function(d) { return "自定义链接"; },
        "presentation-views--tabs--ws-members": function(d) { return "成员和访客 (" + d.viewcount + ")"; },
        "presentation-views--tabs--public-access": function(d) { return "公共访问"; },
        "presentation-views--tabs--workspace": function(d) { return "工作区"; },
        "presentation-views--tabs--public-access-tooltip-body": function(d) { return "分析您的公共访问链接和任何嵌入的表现。"; },
        "presentation-views--tabs--public-access-tooltip-cta": function(d) { return "了解详情"; },
        "presentation-views--tooltip--title": function(d) { return plural(d.views, 0, en, { "0": "0 次访问", one: "1 次访问", other: d.fmtviews + " 次访问" }); },
        "presentation-views--tooltip--public-access": function(d) { return "公共访问"; },
        "presentation-views--tooltip--link-access": function(d) { return "自定义链接访问"; },
        "presentation-views--tooltip--no-views": function(d) { return "没有访问"; },
        "presentation-views--row--source": function(d) { return "链接"; },
        "presentation-views--row--visitor": function(d) { return "访客"; },
        "presentation-views--row--visit": function(d) { return "访问"; },
        "presentation-views--row--device": function(d) { return "设备和浏览器"; },
        "presentation-views--row--name": function(d) { return "名称"; },
        "presentation-views--row--last-viewed": function(d) { return "最后浏览时间"; },
        "presentation-views--row--last-visit": function(d) { return "最后访问时间"; },
        "presentation-views--row--total-visits": function(d) { return "访问次数"; },
        "presentation-views--row--completion": function(d) { return "查看幻灯片"; },
        "presentation-views--row--completion--not-available": function(d) { return "不可用"; },
        "presentation-views--row--completion--not-available--tooltip": function(d) { return "此访客的参与度分析不可用。了解更多信息,请查看我们的#[帮助中心]。"; },
        "presentation-views--row--completion--not-available--tooltip-help-center": function(d) { return "帮助中心"; },
        "presentation-views--row--location": function(d) { return "地点"; },
        "presentation-views--row--source-tooltip": function(d) { return "该访客通过工作区或演示文稿邀请获得访问权限。"; },
        "presentation-views--row--device-tooltip": function(d) { return "pitch不会向工作区成员和访客公开设备或位置信息。"; },
        "presentation-views--row--opening-time": function(d) { return "上次打开时间"; },
        "presentation-views--user--guest-label": function(d) { return "访客"; },
        "presentation-views--error--data-missing--headline": function(d) { return "数据无法加载"; },
        "presentation-views--error--data-missing--subline": function(d) { return "您可能已离线或我们无法连接到pitch的服务器。请刷新页面重试。"; },
        "presentation-views--managed-link--row--name": function(d) { return "链接名称"; },
        "presentation-views--managed-link--activity--placeholder--title": function(d) { return "一个演示文稿,多个链接"; },
        "presentation-views--managed-link--activity--placeholder--description": function(d) { return "与客户、投资者或其他受众分享单独的链接,并查看他们何时访问了您的作品。"; },
        "presentation-views--managed-link--activity--placeholder--cta": function(d) { return "创建新链接"; },
        "presentation-views--managed-link--details--header--copy-link-tooltip": function(d) { return "复制链接"; },
        "presentation-views--managed-link--details--no-data-placeholder--title": function(d) { return "链接已准备好分享"; },
        "presentation-views--managed-link--details--no-data-placeholder--description": function(d) { return "将你的演示文稿发送给投资者、客户或其他人,然后回到这里查看他们何时访问。"; },
        "presentation-views--managed-link--details--no-data-placeholder--cta": function(d) { return "复制链接"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout": function(d) { return "#[link-disabled] 要继续跟踪访问,请转到#[share-settings] 并启用此自定义链接。"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout--link-disabled": function(d) { return "链接已禁用。"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout--share-settings": function(d) { return "共享设置"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout--engagement-analytics-disabled": function(d) { return "参与度分析已禁用。"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout--no-eng-analytics": function(d) { return "在参与度分析关闭之前收集了任何幻灯片级别的数据。要重新启用此功能,请前往#[share-settings] 并再次为此链接启用它。"; },
        "presentation-views--managed-link--details--disabled-placeholder--callout--no-eng-analytics-or-slide-level-data": function(d) { return "要查看幻灯片级别的数据,请前往#[share-settings] 并为此链接启用参与度分析。"; },
        "presentation-views--managed-link--details--slides-title": function(d) { return "查看的幻灯片"; },
        "presentation-views--managed-link--details--slide--tooltip": function(d) { return plural(d.views, 0, en, { "0": "0 次浏览", one: "1 次浏览", other: d.views + " 次浏览" }); },
        "presentation-views--public-access--activity--placeholder--title": function(d) { return "链接已准备好分享"; },
        "presentation-views--public-access--activity--placeholder--description": function(d) { return "任何人都可以复制公共访问链接或查看嵌入式演示文稿,无需 pitch 帐户。无论您如何分享,一旦访问者到达,您都可以在此处查看他们的活动。"; },
        "presentation-views--public-access--activity--placeholder--cta": function(d) { return "复制链接"; },
        "presentation-views--public-access--activity--not-public-placeholder--title": function(d) { return "分享您的工作,了解您的影响力。"; },
        "presentation-views--public-access--activity--not-public-placeholder--description": function(d) { return "通过打开公共访问,查看人们何时访问此演示文稿。与任何人分享链接,无需 pitch 帐户。"; },
        "presentation-views--public-access--activity--not-public-placeholder--cta": function(d) { return "启用公共访问"; },
        "presentation-views--public-access--activity--not-public-placeholder--callout": function(d) { return "#[link-disabled] 要继续跟踪访问,请转到#[share-settings]并启用公共访问。"; },
        "presentation-views--public-access--activity--not-public-placeholder--callout--link-disabled": function(d) { return "链接已禁用。"; },
        "presentation-views--public-access--activity--not-public-placeholder--callout--share-settings": function(d) { return "分享设置"; },
        "presentation-views--managed-link--details--section-title--chart": function(d) { return "幻灯片浏览量"; },
        "presentation-views--managed-link--details--section-title--activity-table": function(d) { return "活动"; },
        "presentation-views--managed-link--details--chart-tooltip": function(d) { return "只要访问者打开幻灯片,就会产生一次幻灯片浏览。"; },
        "presentation-views--managed-link--details--table-tooltip": function(d) { return "只要一个人使用自定义链接打开此演示文稿,就会产生一次访问。每一行都是唯一的,来自同一访问者的访问不会被分组。"; },
        "presentation-views--search--no-results-title": function(d) { return "无结果"; },
        "presentation-views--search--no-results-subtitle": function(d) { return "尝试使用其他搜索词汇。"; },
        "presentation-views--empty--title": function(d) { return "在等待别人吗?"; },
        "presentation-views--empty--description": function(d) { return "当其他人访问此演示文稿时,您将在此处看到他们的活动。"; },
        "presentation-views--empty--cta": function(d) { return "邀请他人进行协作"; },
        "presentation-views--error--title": function(d) { return "出了些问题"; },
        "presentation-views--error--description": function(d) { return "我们目前无法加载您的演示文稿分析数据。请稍后再查看,如果问题仍然存在,请联系支持团队。"; },
        "public-views--title": function(d) { return plural(d.views, 0, en, { "0": "0 次访问", one: "1 次访问", other: d.fmtviews + " 次访问" }); },
        "public-views--v2--title": function(d) { return "公开访问活动"; },
        "public-views--v2--description": function(d) { return "了解人们何时使用嵌入代码或公开访问链接访问此演示文稿。"; },
        "public-views--link-disabled-owner": function(d) { return "#[intro] 若要继续跟踪访问,请单击#[share-settings]并启用公开访问"; },
        "public-views--link-disabled-intro": function(d) { return "链接已禁用。"; },
        "public-views--link-disabled-sharee": function(d) { return "#[intro] 要继续跟踪访问,请请求演示文稿所有者启用公开访问。"; },
        "public-views--last-24-hours": function(d) { return "过去24小时"; },
        "public-views--last-7-days": function(d) { return "过去7天"; },
        "public-views--last-14-days": function(d) { return "过去14天"; },
        "public-views--last-30-days": function(d) { return "过去30天"; },
        "public-views--last-90-days": function(d) { return "过去90天"; },
        "public-views--all-time": function(d) { return "全部时间"; },
        "public-views--public": function(d) { return "公开链接"; },
        "public-views--public--tooltip": function(d) { return "通过公共访问链接访问的访问总数"; },
        "public-views--embeds": function(d) { return "嵌入"; },
        "public-views--embeds--tooltip": function(d) { return "通过嵌入演示文稿进行访问的访问总数"; },
        "public-views--now": function(d) { return "现在"; },
        "public-views--today": function(d) { return "今天"; },
        "public-views--copy-link": function(d) { return "复制链接"; },
        "public-views--details--title": function(d) { return "公共访问"; },
        "public-access--empty-disabled--title": function(d) { return "分享您的工作。了解您的影响力。"; },
        "public-access--empty-disabled--text": function(d) { return "通过打开公共访问来查看访问此演示文稿的时间。#[line_break] 将链接与任何人分享,不需要pitch帐户。"; },
        "public-views--empty-disabled--cta": function(d) { return "启用公共访问"; },
        "public-access--empty-enabled--title": function(d) { return "链接已准备好分享"; },
        "public-access--empty-enabled--text": function(d) { return "任何人都可以打开公共访问链接或查看嵌入式演示文稿,#[line_break] 不需要 pitch 账户。无论您如何分享,一旦访问者到达,#[line_break] 您可以在这里分析他们的活动。"; },
        "presentation-analytics-managed-links--visit-title": function(d) { return "自定义链接访问"; },
        "presentation-views--managed-links-list--title": function(d) { return "自定义链接活动"; },
        "presentation-views--managed-links-list--subtitle": function(d) { return "跟踪您分享的自定义链接的访问情况。当链接启用了参与度分析时,您还可以查看幻灯片参与度和返回访问情况。"; },
        "presentation-analytics-managed-links-list--tooltip-body": function(d) { return "查看您创建的自定义链接以及访问者使用它们的时间。"; },
        "presentation-analytics-managed-links-list--tooltip-cta": function(d) { return "了解更多"; },
        "presentation-analytics-managed-links-list--new-link": function(d) { return "新建自定义链接"; },
        "presentation-analytics-managed-links-list--table-left": function(d) { return "链接名称"; },
        "presentation-analytics-managed-links-list--table-right": function(d) { return "访问量"; },
        "presentation-analytics-managed-links-list--disabled": function(d) { return "已禁用"; },
        "presentation-analytics-managed-links-list--locked-tooltip": function(d) { return "链接已设有密码"; },
        "presentation-analytics-managed-links-list--created-at-tooltip": function(d) { return "于#[date] #[time] 创建"; },
        "presentation-analytics-managed-links-list--visits--not-opened": function(d) { return "未打开"; },
        "presentation-analytics-managed-links-list--inactive-label": function(d) { return "不活跃"; },
        "presentation-analytics-managed-links-list--slide-visits--not-opened": function(d) { return "未有访问"; },
        "presentation-analytics-managed-links-list--engagement-icon-label": function(d) { return "已启用参与度分析"; },
        "presentation-analytics-managed-links-list--edit-link-label": function(d) { return "编辑链接"; },
        "presentation-analytics-managed-links--empty--title": function(d) { return "一个演示文稿,多个链接"; },
        "presentation-analytics-managed-links--empty--description": function(d) { return "将单独的链接与客户、投资者或其他受众分享,#[line_break] 并查看他们访问您的工作的时间。"; },
        "presentation-analytics-managed-links--empty--cta": function(d) { return "创建新链接"; },
        "presentation-analytics-managed-link--empty--title": function(d) { return "链接已准备好分享"; },
        "presentation-analytics-managed-link--empty--description": function(d) { return "将您的演示文稿发送给投资者、客户或其他人。#[line_break] 然后返回此处,查看他们何时访问。"; },
        "presentation-analytics-managed-link--empty-and-disabled--title": function(d) { return "启用链接以分享"; },
        "presentation-analytics-managed-link--empty-and-disabled---description": function(d) { return "您已禁用此链接。启用它以将您的演示文稿#[line_break] 发送给投资者、客户或其他人。然后返回此处,查看他们何时访问。"; },
        "presentation-analytics-managed-link--disabled": function(d) { return "#[presentation-analytics-managed-link--disabled-intro] 要继续跟踪查看记录,请单击 #[presentation-analytics-managed-link--disabled-share-settings] 并启用公共访问"; },
        "presentation-analytics-managed-link--disabled-intro": function(d) { return "链接已禁用。"; },
        "presentation-analytics-managed-link--disabled-share-settings": function(d) { return "共享设置"; },
        "presentation-analytics-managed-link--copy-link": function(d) { return "复制链接"; },
        "presentation-analytics-managed-link--copy-access-code": function(d) { return "复制访问码"; },
        "presentation-analytics-managed-link--bar-chart--title": function(d) { return "总幻灯片查看次数"; },
        "presentation-analytics-managed-link--bar-chart--label--slides": function(d) { return "幻灯片"; },
        "presentation-analytics-managed-link--bar-chart--label--views": function(d) { return "查看次数"; },
        "presentation-analytics-managed-link--bar-chart--tooltip--slide": function(d) { return "第 " + d.slide_number + " 张幻灯片"; },
        "presentation-analytics-managed-link--bar-chart--tooltip--views": function(d) { return plural(d.views, 0, en, { "0": "无查看记录", one: "1 次查看", other: number(d.views, "次查看") }); },
        "presentation-analytics-starter-without-upgrade-incentive--toolbar-tooltip-title": function(d) { return "演示文稿分析"; },
        "presentation-analytics-starter-without-upgrade-incentive--toolbar-tooltip-content": function(d) { return "入门计划中#[br]不包含分析功能。"; },
        "presentation-analytics-starter-without-upgrade-incentive--activity--title": function(d) { return "无法查看活动"; },
        "presentation-analytics-starter-without-upgrade-incentive--activity--content": function(d) { return "starter计划中不包括演示文稿分析功能。"; },
        "presentation-analytics-starter-without-upgrade-incentive--public-access--title": function(d) { return "无法查看公共链接活动"; },
        "presentation-analytics-starter-without-upgrade-incentive--public-access--content": function(d) { return "starter计划中不包括演示文稿分析功能。"; },
        "presentation-analytics-starter-without-upgrade-incentive--managed-links--title": function(d) { return "无法使用自定义链接"; },
        "presentation-analytics-starter-without-upgrade-incentive--managed-links--content": function(d) { return "starter计划中不包括自定义链接的演示文稿分析功能。"; },
        "presentation-analytics-starter-without-upgrade-incentive--share-dialog-managed-links--title": function(d) { return "自定义链接"; },
        "presentation-analytics-starter-without-upgrade-incentive--share-dialog-managed-links--content": function(d) { return "starter计划中不包括自定义链接。"; },
        "presentation-analytics-starter-with-upgrade-incentive--toolbar-tooltip-title": function(d) { return "追踪观众兴趣"; },
        "presentation-analytics-starter-with-upgrade-incentive--toolbar-tooltip-content": function(d) { return "演示文稿分析可以帮助您了解访客与您的文稿的交互方式。"; },
        "presentation-analytics-starter-with-upgrade-incentive--activity--title": function(d) { return "了解您的受众"; },
        "presentation-analytics-starter-with-upgrade-incentive--activity--content": function(d) { return "演示文稿分析让您可以查看所有来源的互动情况,#[line_break]从工作区成员到公共访客。"; },
        "presentation-analytics-starter-with-upgrade-incentive--public-access--title": function(d) { return "分享您的作品。了解您的影响力"; },
        "presentation-analytics-starter-with-upgrade-incentive--public-access--content": function(d) { return "使用演示文稿分析功能,了解人们如何查看#[line_break]您嵌入的和公开分享的演示文稿。"; },
        "presentation-analytics-starter-with-upgrade-incentive--managed-links--title": function(d) { return "一个演示文稿,多个链接"; },
        "presentation-analytics-starter-with-upgrade-incentive--managed-links--content": function(d) { return "与特定组或频道共享个别链接,可选择使用密码。#[line_break]然后单独分析它们,以获取更深入的洞察力。"; },
        "presentation-analytics-starter-with-upgrade-incentive--share-dialog-managed-links--title": function(d) { return "安全分享您的演示文稿"; },
        "presentation-analytics-starter-with-upgrade-incentive--share-dialog-managed-links--content": function(d) { return "创建自定义链接,以跟踪特定组或频道的活动,可选择使用密码。"; },
        "presentation-analytics-redirect-from-mobile-headline": function(d) { return "在您的计算机上打开此演示文稿以查看分析数据"; },
        "presentation-analytics-redirect-from-mobile-description": function(d) { return "目前暂不支持在移动设备上查看演示文稿的分析数据。请使用pitch的web或桌面应用程序来访问它们。"; },
        "mobile--auth--entry-button": function(d) { return "开始"; },
        "mobile--auth--we-re-ready": function(d) { return "我们已准备好迎接您的伟大想法"; },
        "billing--go-back": function(d) { return "返回"; },
        "billing--go-back-to-workspace": function(d) { return "返回工作区"; },
        "billing--page-title": function(d) { return select(d.premium, { true: "计费:", false: "升级您的工作区", other: "计费:" }) + d.workspacename; },
        "billing--page--back--title": function(d) { return "计费"; },
        "billing--upgrade-button": function(d) { return "升级到专业版"; },
        "billing--discover-button": function(d) { return "探索pitch专业版"; },
        "billing--pro-page--overview": function(d) { return "概述"; },
        "billing--pro-page--subscription": function(d) { return "订阅"; },
        "billing--pro-page--overview--payment-method": function(d) { return "付款方式:"; },
        "billing--pro-page--overview--billing-email": function(d) { return "账单邮件:"; },
        "billing--pro-page--overview--payment-method-wrapper": function(d) { return d.method + "(尾号" + d.last4 + ")"; },
        "billing--pro-page--overview--manual-payment-method": function(d) { return "银行转账"; },
        "billing--pro-page--overview--pitch-pro": function(d) { return "pitch专业版"; },
        "billing--pro-page--subscription--pitch-pro--interval": function(d) { return "pitch专业版(#[renewal-interval])"; },
        "billing--pro-page--overview--current-plan": function(d) { return "当前计划:"; },
        "billing--pro-page--subscription--active-plan": function(d) { return "当前计划"; },
        "billing--pro-page--overview--price": function(d) { return "价格:"; },
        "billing--pro-page--overview--balance": function(d) { return "账户余额:"; },
        "billing--pro-page--overview--members": function(d) { return select(d.perseat, { true: "席位", false: "成员", other: "成员" }) + ":"; },
        "billing--pro-page--overview--price-per-member": function(d) { return d.price + "每" + select(d.perseat, { true: "席位", false: "工作区成员", other: "工作区成员" }); },
        "billing--pro-page--overview--number-of-members": function(d) { return plural(d.members, 0, en, { "0": "没有成员", one: "1个成员", other: number(d.members, "成员") + "个成员" }); },
        "billing--pro-page--overview--number-of-seats": function(d) { return plural(d.seats, 0, en, { "0": "没有席位", one: "1个席位", other: number(d.seats, "席位") + "个席位" }) + plural(d.emptyseats, 0, en, { "0": "", other: "(" + number(d.emptyseats, "空席位") + "个空)" }); },
        "billing--pro-page--overview--active": function(d) { return "激活"; },
        "billing--pro-page--overview--cancelled": function(d) { return "已取消"; },
        "billing--pro-page--overview--renewal-interval": function(d) { return select(d.interval, { monthly: "每月", yearly: "每年", other: "" }); },
        "billing--pro-page--subscription--renewal-date": function(d) { return select(d.issubscriptionactive, { true: "续费", false: "取消", other: "续费" }) + "日期:"; },
        "billing--pro-page--overview--cycle": function(d) { return "账单周期:"; },
        "billing--pro-page--overview--renewal": function(d) { return "#[续订周期](" + select(d.issepa, { true: "结束", false: "续订", other: "续订" }) + " " + d.date + ")"; },
        "billing--pro-page--overview--cancel-subscription--renewal": function(d) { return "您可以在#[续费日期]之前使用所有pitch pro功能。"; },
        "billing--pro-page--overview--upcoming-payment-notice": function(d) { return "在#[续订日期],您将被收取#[金额]。"; },
        "billing--pro-page--overview--upcoming-payment-notice--with-credit": function(d) { return "在#[续订日期],您将支付剩余的#[金额]。总金额为" + d.total + ",我们已经使用您现有的" + d.credit + "。"; },
        "billing--pro-page--invoices--credit-balance": function(d) { return "您有#[余额]的信用余额。" + select(d.subscriptionactive, { true: "我们将在未来的账单中使用这个金额。", false: "您可以将其用于未来的账单或升级到pro。", other: "您可以将其用于未来的账单或升级到pro。" }); },
        "billing--pro-page--invoices--credit-balance--active": function(d) { return "我们将在未来的账单中使用这个金额。"; },
        "billing--pro-page--invoices--credit-balance--canceled": function(d) { return "如果您决定保留pro,可以将此余额用于未来的账单。"; },
        "billing--pro-page--invoices--credit-balance--starter": function(d) { return "您可以将此余额用于未来的账单,或者用于升级到pro。"; },
        "billing--pro-page--subscription--upcoming-invoice": function(d) { return "即将到期发票:"; },
        "billing--pro-page--subscription--upcoming-invoice--value": function(d) { return "于#[date] #[amount]开票"; },
        "billing--pro-page--subscription--features--until": function(d) { return "您可以在取消日期之前使用pitch pro的所有功能。"; },
        "billing--pro-page--subscription--keep-pro-subscription": function(d) { return "保持pro订阅"; },
        "billing--pro-page--invoices--members-notice": function(d) { return "添加或删除工作区成员将更改您的即将到期发票。"; },
        "billing--pro-page--invoices--interval": function(d) { return select(d.interval, { monthly: "每月", yearly: "每年", other: "" }); },
        "billing--pro-page--invoices--pitch-pro": function(d) { return "#[plan] #[interval]发票##[number]"; },
        "billing--pro-page--invoices--open-members-list": function(d) { return "管理成员"; },
        "billing--pro-page--invoices--item": function(d) { return "项目"; },
        "billing--pro-page--invoices--date": function(d) { return "日期"; },
        "billing--pro-page--invoices": function(d) { return "发票"; },
        "billing--pro-page--invoices--view-invoice": function(d) { return "查看发票"; },
        "billing--pro-page--invoices--processed": function(d) { return "发票仍在处理中..."; },
        "billing--pro-page--invoices--number": function(d) { return "编号"; },
        "billing--pro-page--invoices--amount": function(d) { return "金额"; },
        "billing--pro-page--invoices--status": function(d) { return "状态"; },
        "billing--pro-page--invoices--invoice-view": function(d) { return "查看"; },
        "billing--pro-page--invoices--invoice-pay": function(d) { return "现在付款"; },
        "billing--pro-page--invoices--invoice-upcoming": function(d) { return "即将到期"; },
        "billing--pro-page--invoices--invoice-draft": function(d) { return "草稿"; },
        "billing--pro-page--invoices--invoice-open": function(d) { return "开放"; },
        "billing--pro-page--invoices--invoice-due": function(d) { return "应付款"; },
        "billing--pro-page--invoices--invoice-paid": function(d) { return "已付款"; },
        "billing--pro-page--credit-note--issued": function(d) { return "已发行"; },
        "billing--pro-page--manage": function(d) { return "账户管理"; },
        "billing--pro-page--manage--cancel-subscription--title": function(d) { return "您将会错过以下功能"; },
        "billing--pro-page--manage--cancel-subscription--reason": function(d) { return "您为什么要取消pitch pro?"; },
        "billing--pro-page--manage--cancel-subscription--feature--guests": function(d) { return "客人共享"; },
        "billing--pro-page--manage--cancel-subscription--feature--private-folders": function(d) { return "私人文件夹"; },
        "billing--pro-page--manage--cancel-subscription--feature--shared-folders": function(d) { return "与选定的团队成员共享文件夹"; },
        "billing--pro-page--manage--cancel-subscription--feature--video": function(d) { return "上传视频"; },
        "billing--pro-page--manage--cancel-subscription--feature--files": function(d) { return "上传超过5mb的文件"; },
        "billing--pro-page--manage--cancel-subscription--feature--sharing": function(d) { return "公开共享演示文稿,无需横幅"; },
        "billing--pro-page--manage--cancel-subscription--keep": function(d) { return "保留pitch pro"; },
        "billing--pro-page--manage--cancel-subscription--back": function(d) { return "返回"; },
        "billing--pro-page--manage--cancel-subscription--help-center": function(d) { return "帮助中心"; },
        "billing--pro-page--manage--cancel-subscription--support": function(d) { return "联系支持"; },
        "billing--pro-page--manage--cancel-subscription--further-questions": function(d) { return "如果您有进一步的问题,请查看我们的#[help-center]或#[support]。"; },
        "billing--pro-page--manage--cancel-subscription": function(d) { return "取消订阅"; },
        "billing--pro-page--manage--cancel-subscription--confirm": function(d) { return "继续取消"; },
        "billing--pro-page--manage--cancel-subscription--cancel": function(d) { return "取消pitch pro"; },
        "billing--pro-page--manage--cancel-subscription--successful": function(d) { return "您的pitch pro订阅已成功取消。"; },
        "billing--pro-page--manage--cancel-subscription--error": function(d) { return "取消订阅时出了些问题。请重试,或者#[contact]联系我们以获取帮助。"; },
        "billing--pro-page--manage--cancel-subscription--error--contact": function(d) { return "联系我们"; },
        "billing--pro-page--manage--reactivate-subscription--successful": function(d) { return "您的pitch pro订阅将在下一个计费周期继续。"; },
        "billing--pro-page--manage--reactivate-subscription--error": function(d) { return "处理您的订阅时出了些问题。请重试,或者#[contact]联系我们以获取帮助。"; },
        "billing--pro-page--manage--cancel-subscription--pay--title": function(d) { return "取消订阅后会发生什么?"; },
        "billing--pro-page--manage--cancel-subscription--pay--description": function(d) { return "您只会被收取在此计费周期中添加的成员的费用以及直到订阅结束前添加的成员的费用。"; },
        "billing--pro-page--manage--cancel-subscription--end--description": function(d) { return "您将在" + d.cycle + "之前保留pitch pro的访问权限,这是您的计费周期结束的时间。"; },
        "billing--pro-page--cancel-reason--will-use-pro-in-the-future": function(d) { return "我现在不需要创建演示文稿,但将来会再次使用pitch pro"; },
        "billing--pro-page--cancel-reason--will-use-starter": function(d) { return "我没有使用pro功能,但将继续使用pitch starter计划"; },
        "billing--pro-page--cancel-reason--no-need-for-presentation-tool": function(d) { return "我现在不需要演示文稿工具"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool": function(d) { return "我转移到另一个创建演示文稿的工具上了"; },
        "billing--pro-page--cancel-reason--missing-features": function(d) { return "pitch缺少我需要的重要功能(请在下面指明)"; },
        "billing--pro-page--cancel-reason--cant-justify-cost-for-team": function(d) { return "我想使用pitch pro,但无法为整个团队辩解其成本"; },
        "billing--pro-page--cancel-reason--using-another-pro-workspace": function(d) { return "我在另一个工作区使用pitch pro"; },
        "billing--pro-page--cancel-reason--upgraded-for-feature": function(d) { return "我只是为了使用特定功能而暂时升级了"; },
        "billing--pro-page--cancel-reason--technical-issues": function(d) { return "我遇到了技术问题或性能差的问题"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--additional-google-slides": function(d) { return "google幻灯片"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--additional-powerpoint": function(d) { return "microsoft powerpoint"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--additional-canva": function(d) { return "canva"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--additional-keynote": function(d) { return "apple keynote"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--additional-other": function(d) { return "其他(请在下面指明)"; },
        "billing--pro-page--cancel-reason--upgraded-temporarily-for-feature--large-image-upload": function(d) { return "大图像上传"; },
        "billing--pro-page--cancel-reason--feedback-placeholder": function(d) { return "还有其他想要分享的吗?"; },
        "billing--pro-page--cancel-reason--placeholder": function(d) { return "取消原因"; },
        "billing--pro-page--cancel-reason--upgraded-for-feature--placeholder": function(d) { return "使用的功能"; },
        "billing--pro-page--cancel-reason--moved-to-different-tool--placeholder": function(d) { return "其他工具"; },
        "billing--pro-page--footer": function(d) { return "如果您有疑问,请访问我们的#[faq]或#[support]。我们很乐意帮助您。"; },
        "billing--pro-page--footer--faq": function(d) { return "定价常见问题解答"; },
        "billing--pro-page--title-bar--faq": function(d) { return "计费常见问题解答"; },
        "billing--pro-page--footer--support": function(d) { return "联系我们的支持团队"; },
        "billing--pro-page--title-bar--support": function(d) { return "联系支持团队"; },
        "billing--comparison--title": function(d) { return "比较所有功能"; },
        "billing--free-plan--title": function(d) { return "入门版"; },
        "billing--free-plan--description": function(d) { return "适用于个人和初创团队"; },
        "billing--free-plan--price": function(d) { return "永久免费"; },
        "billing--free-plan--badge": function(d) { return "当前计划"; },
        "billing--pro-plan--title": function(d) { return "专业版"; },
        "billing--pro-plan--description": function(d) { return "适用于高级用户和成长型团队"; },
        "billing--pro-plan--pricing-interval": function(d) { return "每个成员,每月"; },
        "billing--pro-plan--pricing-per-month": function(d) { return d.currency + d.price + " 每个成员,每月"; },
        "billing--pro-plan--pay-interval": function(d) { return select(d.interval, { monthly: "每月付款", yearly: "每年付款", other: "" }); },
        "billing--enterprise-plan--title": function(d) { return "企业版"; },
        "billing--enterprise-plan--description": function(d) { return "有定制需求,或想将 pitch 引入更大的组织中?"; },
        "billing--enterprise-plan--contact-sales": function(d) { return "联系我们"; },
        "billing--enterprise-plan--feature-header": function(d) { return "专业版的所有功能,以及"; },
        "billing--feature--soon": function(d) { return "即将推出"; },
        "billing--feature--beta": function(d) { return "测试版"; },
        "billing--free-plan--feature-header": function(d) { return "包括"; },
        "billing--free-plan--feature0": function(d) { return "无限制的演示文稿"; },
        "billing--free-plan--feature1": function(d) { return "无限制的成员和访客"; },
        "billing--free-plan--feature2": function(d) { return "自定义模板和字体"; },
        "billing--free-plan--unlimited-members": function(d) { return "无限制的成员"; },
        "billing--pro-plan--feature-header": function(d) { return "入门版的所有功能,以及"; },
        "billing--disclaimer--line1": function(d) { return "显示的价格不包括任何适用的销售税,如增值税。"; },
        "billing--disclaimer--line2": function(d) { return "除非正式终止,否则pro计划的订阅将在每个计费周期结束时自动续订,届时我们将向您账户中的信用卡收取费用。"; },
        "billing--usage--unlimited": function(d) { return "无限"; },
        "billing--feature--beta-disclaimer": function(d) { return "标记为“beta”的功能不代表最终功能,并且将来可能会限制在更高的计划中。"; },
        "billing--feature-section--workspace": function(d) { return "工作区"; },
        "billing--feature--users": function(d) { return "成员"; },
        "billing--feature--users--tooltip": function(d) { return "成员是已被邀请查看、编辑和创建工作区演示文稿的人员。"; },
        "billing--feature--roles": function(d) { return "工作区角色"; },
        "billing--feature--roles--free": function(d) { return "仅管理员"; },
        "billing--feature--roles--pro": function(d) { return "管理员、协作者"; },
        "billing--feature--roles--tooltip": function(d) { return "工作区角色允许您管理团队成员的权限。"; },
        "billing--feature--guests": function(d) { return "访客"; },
        "billing--feature--guests--tooltip": function(d) { return "访客已被邀请查看或编辑演示文稿,但未被邀请加入您的工作区。"; },
        "billing--feature--presentations": function(d) { return "演示文稿"; },
        "billing--feature--presentations--tooltip": function(d) { return "创建数量不限、幻灯片数量不限的演示文稿。"; },
        "billing--feature--templates": function(d) { return "自定义模板"; },
        "billing--feature--templates--tooltip": function(d) { return "在您的工作区中保存并维护无限数量的模板,以便轻松访问。"; },
        "billing--feature--fonts": function(d) { return "自定义字体支持"; },
        "billing--feature--fonts--tooltip": function(d) { return "直接上传自定义字体到pitch中。任何有权限访问您的演示文稿的人都可以使用您的字体。"; },
        "billing--feature--storage": function(d) { return "工作区存储空间"; },
        "billing--feature--storage--tooltip": function(d) { return "工作区存储空间包括演示文稿及其中的文件。"; },
        "billing--feature--storage--free": function(d) { return "每个工作区10gb"; },
        "billing--feature--storage--pro": function(d) { return "每个成员10gb"; },
        "billing--feature--sso": function(d) { return "基于saml的单点登录"; },
        "billing--feature-section--collaboration": function(d) { return "协作"; },
        "billing--feature--offline": function(d) { return "离线访问"; },
        "billing--feature--mobile": function(d) { return "移动应用"; },
        "billing--feature--folders": function(d) { return "工作区文件夹"; },
        "billing--feature--folders--tooltip": function(d) { return "所有成员都可以查看和编辑工作区文件夹中的演示文稿。"; },
        "billing--feature--private-folders": function(d) { return "私人文件夹"; },
        "billing--feature--shared-folders": function(d) { return "共享私人文件夹"; },
        "billing--feature--shared-folders--tooltip": function(d) { return "邀请其他人在私人文件夹中进行协作。具有访问权限的用户将能够查看、编辑、添加和删除其中的演示文稿。"; },
        "billing--feature--live-collab": function(d) { return "实时视频协作"; },
        "billing--feature--live-collab--tooltip": function(d) { return "从编辑器中开始实时视频会议。在实时会话期间,协作者可以在编辑单个演示文稿时看到和听到彼此。"; },
        "billing--feature--guest-sharing": function(d) { return "来宾分享"; },
        "billing--feature-section--media": function(d) { return "媒体与集成"; },
        "billing--feature--google-sheets": function(d) { return "google表格"; },
        "billing--feature--google-sheets--tooltip": function(d) { return "导入google表格文件,快速在幻灯片中添加图表。"; },
        "billing--feature--google-analytics": function(d) { return "google analytics"; },
        "billing--feature--google-analytics--tooltip": function(d) { return "导入google analytics指标,快速在幻灯片中添加图表。"; },
        "billing--feature--chartmogul": function(d) { return "chartmogul"; },
        "billing--feature--chartmogul--tooltip": function(d) { return "导入chartmogul收入数据,添加图表到您的幻灯片。"; },
        "billing--feature--unsplash": function(d) { return "unsplash"; },
        "billing--feature--unsplash--tooltip": function(d) { return "浏览数百万unsplash图片,并将它们添加到您的幻灯片中。"; },
        "billing--feature--giphy": function(d) { return "giphy"; },
        "billing--feature--giphy--tooltip": function(d) { return "从giphy浏览数百万gif并将它们添加到您的幻灯片中。"; },
        "billing--feature--brandfetch": function(d) { return "brandfetch"; },
        "billing--feature--brandfetch--tooltip": function(d) { return "浏览并快速添加最新的标志到您的幻灯片中。"; },
        "billing--feature--icons8": function(d) { return "icons8"; },
        "billing--feature--icons8--tooltip": function(d) { return "浏览数千个一致设计的图标,并将它们添加到您的幻灯片中。"; },
        "billing--feature--vimeo": function(d) { return "vimeo"; },
        "billing--feature--vimeo--tooltip": function(d) { return "将来自vimeo的视频嵌入到您的幻灯片中。"; },
        "billing--feature--youtube": function(d) { return "youtube"; },
        "billing--feature--youtube--tooltip": function(d) { return "将来自youtube的视频嵌入到您的幻灯片中。"; },
        "billing--feature--loom": function(d) { return "loom"; },
        "billing--feature--loom--tooltip": function(d) { return "将来自loom的视频嵌入到您的幻灯片中。"; },
        "billing--feature--image-upload": function(d) { return "图像上传"; },
        "billing--feature--image-upload--tooltip": function(d) { return "上传jpg、png、svg和gif文件到您的工作区库,并将它们添加到您的幻灯片中。"; },
        "billing--feature--image-upload--free": function(d) { return "每张图片最多5mb"; },
        "billing--feature--video-upload": function(d) { return "视频上传"; },
        "billing--feature--video-upload--tooltip": function(d) { return "将视频文件上传到您的工作区库,并将它们添加到您的幻灯片中。"; },
        "billing--feature--library": function(d) { return "视频和图像库"; },
        "billing--feature--recordings": function(d) { return "录制"; },
        "billing--feature--recordings--tooltip": function(d) { return "使用短小的视频录制向幻灯片添加讲述。"; },
        "billing--feature-section--sharing": function(d) { return "共享和导出"; },
        "billing--feature--embed": function(d) { return "嵌入演示文稿"; },
        "billing--feature--embed--tooltip": function(d) { return "将公共演示文稿嵌入您的网站、博客或协作软件中。"; },
        "billing--feature--pdf-export": function(d) { return "pdf 导出"; },
        "billing--feature--unbranded-pdf-export": function(d) { return "无品牌 pdf 导出"; },
        "billing--feature--pdf-export--tooltip": function(d) { return "将演示文稿导出为 pdf。"; },
        "billing--feature--pdf-export--free": function(d) { return "有品牌"; },
        "billing--feature--pdf-export--pro": function(d) { return "无品牌"; },
        "billing--feature--ppt-export": function(d) { return "导出为 powerpoint"; },
        "billing--feature--ppt-export--tooltip": function(d) { return "将演示文稿导出为 powerpoint,并通过其他工具向外部受众提供访问。"; },
        "billing--feature--analytics": function(d) { return "演示文稿分析"; },
        "billing--feature--custom-links": function(d) { return "自定义链接"; },
        "billing--feature--custom-links--tooltip": function(d) { return "创建单独的链接,并选择是否需要密码,与特定团队共享。"; },
        "billing--feature--analytics--tooltip": function(d) { return "使用行为数据了解其他人如何消费您的演示文稿。"; },
        "billing--feature--version-history": function(d) { return "版本历史"; },
        "billing--feature--version-history--tooltip": function(d) { return "单个演示文稿及其幻灯片的所有更改时间轴。"; },
        "billing--feature-section--support": function(d) { return "支持"; },
        "billing--feature--priority-support": function(d) { return "优先支持"; },
        "billing--feature--dedicated-support": function(d) { return "专属成功经理"; },
        "billing--company-logos--title": function(d) { return "像您这样的团队使用 pitch pro"; },
        "billing--checkout--location--title": function(d) { return "您的位置"; },
        "billing--checkout--location--line1": function(d) { return "街道地址"; },
        "billing--checkout--location--line2": function(d) { return "套房/单元"; },
        "billing--checkout--location--city": function(d) { return "城市"; },
        "billing--checkout--location--state-province": function(d) { return "州/省"; },
        "billing--checkout--location--postal-code": function(d) { return "邮政编码"; },
        "billing--checkout--location--country": function(d) { return "国家/地区"; },
        "billing--checkout--location--search-country": function(d) { return "搜索国家/地区..."; },
        "billing--checkout--location--search-state": function(d) { return "搜索州/省..."; },
        "billing--checkout--optional": function(d) { return "(选填)"; },
        "billing--checkout--company--title": function(d) { return "您的公司"; },
        "billing--checkout--company--name": function(d) { return "公司名称"; },
        "billing--checkout--company--taxid": function(d) { return "税号"; },
        "billing--checkout--company--taxid--tooltip": function(d) { return "如果您暂时没有税号,请稍后再输入。请注意,如果您没有税号,我们可能会收取税款。"; },
        "billing--checkout--company--taxid--tooltip-ch": function(d) { return "您必须拥有有效的瑞士商业增值税号才能升级到专业版。"; },
        "billing--checkout--company--email": function(d) { return "账单邮件地址"; },
        "billing--checkout--company--email--footer": function(d) { return "我们将发送所有与账单相关的通知和收据至此。"; },
        "billing--checkout--company--taxid--eu-footer": function(d) { return "国别前缀由您选择的位置决定。"; },
        "billing--checkout--company--taxid--gb-footer": function(d) { return "税号应包括 gb 或 xi 前缀。"; },
        "billing--checkout--company--taxid--ch-footer": function(d) { return "税号应以 mswt、tva 或 iva 结尾。"; },
        "billing--checkout--fixed-quantity--title": function(d) { return "您需要多少个席位?"; },
        "billing--checkout--fixed-quantity--content": function(d) { return plural(d.seats, 0, zh, { "0": "没有席位", one: "1个席位", other: number(d.seats, "个席位") }); },
        "billing--checkout--payment--title": function(d) { return "选择您的计费周期"; },
        "billing--checkout--payment--cc-details": function(d) { return "您的信用卡详细信息"; },
        "billing--checkout--payment--cc-name": function(d) { return "卡片上的姓名"; },
        "billing--checkout--payment--cc-number": function(d) { return "卡号"; },
        "billing--checkout--payment--cc-expiry": function(d) { return "有效期"; },
        "billing--checkout--payment--cc-cvv": function(d) { return "cvv"; },
        "billing--checkout--payment--cc-cvv-description": function(d) { return "卡片背面的3位数值"; },
        "billing--checkout--review-order": function(d) { return "查看订单"; },
        "billing--checkout--processing": function(d) { return "处理中..."; },
        "billing--checkout--validating-tax-id": function(d) { return "验证税号..."; },
        "billing--checkout--purchase-pro": function(d) { return "购买 pro"; },
        "billing--purchase-successful--title": function(d) { return "您已成功升级为 pro!"; },
        "billing--purchase-successful--subtitle": function(d) { return "您的工作区已成功升级。"; },
        "billing--purchase-successful--go-back": function(d) { return "返回工作区"; },
        "billing--purchase-successful--features": function(d) { return "您将在#[billing-link]中找到有关pro计划的所有相关信息。" + select(d.disclaimer, { true: " 请记住,添加新成员将自动增加您的pitch pro订阅费。", false: "", other: "" }); },
        "billing--purchase--discoverability--enabled": function(d) { return "注意!您当前允许任何使用#[domain]域的用户发现和加入您的工作区,这将自动增加您的订阅费用。"; },
        "billing--purchase--discoverability--enable": function(d) { return "✓ 已关闭"; },
        "billing--purchase--discoverability--disable": function(d) { return "关闭它"; },
        "billing--receipt--payment-method": function(d) { return "支付方式"; },
        "billing--receipt--taxes": function(d) { return "税收"; },
        "billing--receipt--due-today": function(d) { return "今天到期"; },
        "billing--receipt--no-taxes": function(d) { return "无税"; },
        "billing--receipt--company": function(d) { return "公司信息"; },
        "billing--receipt--reverse-taxes": function(d) { return "按逆向收费计算的税费"; },
        "billing--receipt--next-renewal": function(d) { return "下次续订"; },
        "billing--receipt--price-per-member": function(d) { return "每位成员价格"; },
        "billing--receipt--price-per-member-value": function(d) { return d.price + " " + select(d.interval, { monthly: "(每月)", yearly: "(每年)", other: "" }); },
        "billing--receipt--members": function(d) { return "成员"; },
        "billing--receipt--total": function(d) { return "总计"; },
        "billing--receipt--banner-text1": function(d) { return "您的整个工作区都将升级。"; },
        "billing--receipt--banner-text2": function(d) { return "所有成员都可以访问pro功能。"; },
        "billing--receipt--banner--terms-and-dpa": function(d) { return "pitch的#[terms]和#[dpa]适用。"; },
        "billing--receipt--banner--terms": function(d) { return "使用条款"; },
        "billing--receipt--banner--dpa": function(d) { return "数据处理协议"; },
        "billing--details--country-notice": function(d) { return "如果您想更改国家,请联系支持。"; },
        "billing--details--edit-company-info": function(d) { return "编辑公司信息"; },
        "billing--details--edit-address": function(d) { return "编辑地址"; },
        "billing--details--edit-email": function(d) { return "编辑账单邮件地址"; },
        "billing--details--edit-payment-method": function(d) { return "编辑信用卡详细信息"; },
        "billing--details--edit-taxid": function(d) { return "添加税号"; },
        "billing--details--payment-method": function(d) { return "付款方式"; },
        "billing--details--taxid": function(d) { return "税号"; },
        "billing--details--email": function(d) { return "账单邮箱"; },
        "billing--details--address": function(d) { return "地址"; },
        "billing--details--company-name": function(d) { return "公司名称"; },
        "billing--details--company": function(d) { return "公司"; },
        "billing--details--save": function(d) { return "保存"; },
        "billing--details--saving": function(d) { return "保存中"; },
        "billing--details--processing": function(d) { return "处理中"; },
        "billing--checkout-error--generic": function(d) { return "出现了问题。请检查您的订单是否有误,如果问题仍然存在,请#[contact-us]联系我们。"; },
        "billing--checkout-error--generic--contact-us": function(d) { return "联系我们"; },
        "billing--error--incomplete": function(d) { return "您的信息不完整"; },
        "billing--error--composite": function(d) { return "#[title]#[subtitle]"; },
        "billing--checkout-error--invalid-taxid": function(d) { return "请输入有效的税号"; },
        "billing--checkout-error--invalid-line1": function(d) { return "请输入有效的街道地址"; },
        "billing--checkout-error--invalid-city": function(d) { return "请输入有效的城市名称"; },
        "billing--checkout-error--invalid-postal-code": function(d) { return "请输入有效的邮政编码或邮政区号"; },
        "billing--checkout-error--invalid-email": function(d) { return "请输入有效的电子邮件地址"; },
        "billing--checkout-error--invalid-name": function(d) { return "请输入有效的公司名称"; },
        "billing--checkout-error--invalid-state": function(d) { return "请输入有效的州/省/自治区名称"; },
        "billing--checkout-error--invalid-cardholder-name": function(d) { return "请检查您输入的持卡人姓名是否正确"; },
        "billing--purchase-error--live-card-test-mode": function(d) { return "在测试模式下尝试使用真实信用卡"; },
        "billing--purchase-error--invalid-taxid": function(d) { return "请输入有效的税号"; },
        "billing--purchase-error--subscription-active": function(d) { return "此工作区已有高级订阅。尝试重新加载 pitch 或与您的工作区所有者联系。"; },
        "billing--checkout-error--invalid-country": function(d) { return "请选择您的国家"; },
        "billing--checkout-error--invalid-expiry-year-past": function(d) { return "过期年份已过"; },
        "billing--checkout-error--invalid-expiry-month-past": function(d) { return "过期月份已过"; },
        "billing--checkout-error--incomplete-number": function(d) { return "此卡号不完整"; },
        "billing--checkout-error--incorrect-cvc": function(d) { return "请输入有效的 cvv 安全码"; },
        "billing--checkout-error--incomplete-cvc": function(d) { return "此 cvv 安全码不完整"; },
        "billing--checkout-error--incomplete-expiry": function(d) { return "此过期日期不完整"; },
        "billing--checkout-error--invalid-number": function(d) { return "请输入有效的卡号"; },
        "billing--checkout-error--invalid-expiry": function(d) { return "请输入有效的过期日期"; },
        "billing--checkout-error--invalid-coupon": function(d) { return "此优惠码无效"; },
        "billing--checkout-error--generic-address-error--title": function(d) { return "出了些问题。"; },
        "billing--checkout-error--generic-address-error--subtitle": function(d) { return "请检查您输入的信息,如果问题持续,请#[contact-us]联系我们。"; },
        "billing--checkout-error--invalid-tax-address--title": function(d) { return "我们无法根据您的地址确定正确的税率。"; },
        "billing--checkout-error--invalid-tax-address--subtitle": function(d) { return "请确保地址完整,如果问题持续,请#[contact-us]联系我们。"; },
        "billing--purchase-error--card-declined": function(d) { return "您的卡被拒绝了。请与您的银行联系或尝试另一种付款方式。"; },
        "billing--purchase-error--expired-card": function(d) { return "您的卡已过期。请尝试另一种付款方式。"; },
        "billing--purchase-error--card-declined--insufficient": function(d) { return "您的卡被拒绝了。请与您的银行联系或尝试另一种付款方式。"; },
        "billing--purchase-error--card-declined--stolen": function(d) { return "您的卡被拒绝了。请与您的银行联系或尝试另一种付款方式。"; },
        "billing--purchase-error--card-declined--lost": function(d) { return "您的卡被拒绝了。请与您的银行联系或尝试另一种付款方式。"; },
        "billing--purchase-error--incorrect-cvv": function(d) { return "您输入的cvv不正确。请重试或使用另一种付款方式。"; },
        "billing--purchase-error--processing-error": function(d) { return "处理您的卡时出现问题。请稍后再试或使用另一种付款方式。"; },
        "billing--purchase-error--incorrect-number": function(d) { return "您输入的卡号不正确。请重试或使用另一种付款方式。"; },
        "billing--purchase-error--invalid-card-location": function(d) { return "提供的信用卡不能用于此次购买。请尝试另一张卡或联系支持。"; },
        "billing--coupon--title": function(d) { return "优惠券"; },
        "billing--coupon--apply": function(d) { return "应用"; },
        "billing--coupon--applied": function(d) { return "已应用"; },
        "billing--coupon--remaining-credit": function(d) { return "你剩余的优惠券抵扣金额为#[credit],将在下一张账单中使用。"; },
        "billing--mobile--title": function(d) { return "此页面尚未支持移动设备"; },
        "billing--mobile--subtitle": function(d) { return "请切换到桌面浏览器。"; },
        "billing--upsell-tooltip--learn-more": function(d) { return "了解更多"; },
        "billing--upsell--button": function(d) { return "发现pitch pro"; },
        "billing--upsell--shared-folders--title": function(d) { return "私人文件夹共享是pitch pro功能"; },
        "billing--upsell--shared-folders--title--app-store": function(d) { return "私人文件夹共享不可用"; },
        "billing--upsell--shared-folders--content": function(d) { return "尝试将要共享的演示文稿移动到#[br]工作区文件夹中,或升级到pitch pro并#[br]邀请其他人加入此文件夹。"; },
        "billing--upsell--shared-folders--content--app-store": function(d) { return "在starter计划中,不包括共享私人文件夹。#[br]尝试将要共享的演示文稿移动到工作区文件夹中。"; },
        "billing--upsell--video-uploads--title": function(d) { return "视频上传是pitch pro功能"; },
        "billing--upsell--video-uploads--title--app-store": function(d) { return "视频上传不可用"; },
        "billing--upsell--video-uploads--title--app-store--guest-content": function(d) { return "视频上传不可用"; },
        "billing--upsell--video-uploads--content": function(d) { return "通过pitch pro,将自己的视频添加到幻灯片中。从youtube和loom嵌入视频始终是免费的。"; },
        "billing--upsell--video-uploads--guest-content": function(d) { return "但是,您可以免费嵌入来自youtube、vimeo或loom的视频。请询问您的工作区所有者是否升级到pitch pro。"; },
        "billing--upsell--video-uploads--content--app-store": function(d) { return "在“入门版”中,将自己的视频添加到幻灯片中不包括在内。请尝试从youtube或loom#[embed_video]。"; },
        "billing--upsell--video-uploads--content--app-store--guest-content": function(d) { return "在“入门版”中,将自己的视频添加到幻灯片中不包括在内。请尝试从youtube或loom#[embed_video]。"; },
        "billing--upsell--video-uploads--embed--video": function(d) { return "嵌入视频"; },
        "billing--upsell--file-uploads--title": function(d) { return "大型图像上传是专业版功能"; },
        "billing--upsell--file-uploads--content": function(d) { return "该文件有点太大了。请尝试上传小于5mb的图像,或升级到pitch pro以获取无限图像上传。"; },
        "billing--upsell--file-uploads--guest-content": function(d) { return "要上传超过5mb的文件,请询问您的工作区所有者是否升级到pitch pro。"; },
        "billing--upsell--file-uploads--title--app-store": function(d) { return "大型图像上传不可用"; },
        "billing--upsell--file-uploads--title--app-store--guest-content": function(d) { return "大型图片上传不可用"; },
        "billing--upsell--file-uploads--content--app-store": function(d) { return "文件有点太大了。尝试上传一个小于5mb的图片。在起始方案中不包括添加较大的图片。"; },
        "billing--upsell--file-uploads--content--app-store--guest-content": function(d) { return "文件有点太大了。尝试上传一个小于5mb的图片。在起始方案中不包括添加较大的图片。"; },
        "billing--upsell--modal--dashboard--subtitle": function(d) { return "高效的团队获得业务、筹集资金并保持一致性,升级至 pitch pro。"; },
        "billing--upsell--modal--dashboard--main--page--title": function(d) { return "将您团队的想法转化为成功的业务。升级至 pitch pro。"; },
        "billing--upsell--modal--dashboard--main--page--branding--title": function(d) { return "将您的品牌置于前沿"; },
        "billing--upsell--modal--dashboard--main--page--branding--description": function(d) { return "创建一个批准的图片和视频库。从演示文稿嵌入和 pdf 中移除我们的标志。"; },
        "billing--upsell--modal--dashboard--main--page--slide--impact--title": function(d) { return "确定您的幻灯片的影响"; },
        "billing--upsell--modal--dashboard--main--page--slide--impact--description": function(d) { return "跟踪演示文稿何时何地被查看。为敏感工作发送自定义的密码保护链接。"; },
        "billing--upsell--modal--dashboard--main--page--collaboration--title": function(d) { return "支持简化的协作"; },
        "billing--upsell--modal--dashboard--main--page--collaboration--description--with-private-collaboration": function(d) { return "使用工作区角色和共享私人文件夹管理权限。通过版本历史记录恢复编辑内容。"; },
        "billing--upsell--modal--dashboard--main--page--collaboration--description": function(d) { return "使用访客、工作区角色和私人文件夹管理访问权限。通过版本历史记录恢复编辑内容。"; },
        "billing--upsell--modal--dashboard--design--page--title": function(d) { return "始终符合品牌设计"; },
        "billing--upsell--modal--dashboard--design--page--subtitle": function(d) { return "使每个团队成员都能够提供符合品牌的有说服力的演示文稿。"; },
        "billing--upsell--modal--dashboard--design--page--library--title": function(d) { return "构建品牌资产库"; },
        "billing--upsell--modal--dashboard--design--page--library--description": function(d) { return "组织已批准的模板、字体、视频、图像等。"; },
        "billing--upsell--modal--dashboard--design--page--video--uploads--title": function(d) { return "添加您自己的视频"; },
        "billing--upsell--modal--dashboard--design--page--video--uploads--description": function(d) { return "上传高分辨率视频到任何幻灯片并控制外观和播放。"; },
        "billing--upsell--modal--dashboard--design--page--pdf--export--title": function(d) { return "保持专注于您的品牌"; },
        "billing--upsell--modal--dashboard--design--page--pdf--export--description": function(d) { return "从 pdf 导出和嵌入中删除 pitch 徽标。"; },
        "billing--upsell--modal--dashboard--insights--page--title": function(d) { return "受众洞察"; },
        "billing--upsell--modal--dashboard--insights--page--subtitle": function(d) { return "了解每个演示文稿的影响——从公司内部更新到销售提案。"; },
        "billing--upsell--modal--dashboard--insights--page--analytics--title": function(d) { return "使用分析跟踪兴趣"; },
        "billing--upsell--modal--dashboard--insights--page--analytics--description": function(d) { return "查看人们何时、何地以及多频繁查看您分享的演示文稿。"; },
        "billing--upsell--modal--dashboard--insights--page--custom--links--title": function(d) { return "通过自定义链接控制共享"; },
        "billing--upsell--modal--dashboard--insights--page--custom--links--description": function(d) { return "为特定受众创建单独的链接,并添加密码以限制共享。"; },
        "billing--upsell--modal--dashboard--insights--page--slide--engagement--title": function(d) { return "提高叙述技巧"; },
        "billing--upsell--modal--dashboard--insights--page--slide--engagement--description": function(d) { return "分析幻灯片级别的参与度,了解哪些幻灯片引起了注意,哪些需要改进。"; },
        "billing--upsell--modal--dashboard--collaboration--page--title": function(d) { return "高效协作"; },
        "billing--upsell--modal--dashboard--collaboration--page--subtitle": function(d) { return "提高团队生产力,不必担心访问级别和意外编辑。"; },
        "billing--upsell--modal--dashboard--collaboration--page--version--history--title": function(d) { return "使用版本历史还原更改"; },
        "billing--upsell--modal--dashboard--collaboration--page--version--history--description": function(d) { return "查看每个幻灯片的时间戳历史记录,并恢复以前的更改。"; },
        "billing--upsell--modal--dashboard--collaboration--page--private--folders--title--with-private-collaboration": function(d) { return "共享私人文件夹以限制访问"; },
        "billing--upsell--modal--dashboard--collaboration--page--private--folders--title": function(d) { return "创建并共享私人文件夹"; },
        "billing--upsell--modal--dashboard--collaboration--page--private--folders--description--with-private-collaboration": function(d) { return "选择哪些成员可以查看或贡献私人文件夹中的演示文稿。"; },
        "billing--upsell--modal--dashboard--collaboration--page--private--folders--description": function(d) { return "自己工作,或邀请成员为私人文件夹做出贡献。"; },
        "billing--upsell--modal--dashboard--collaboration--page--workspace--roles--title--with-private-collaboration": function(d) { return "使用工作区角色设置权限"; },
        "billing--upsell--modal--dashboard--collaboration--page--workspace--roles--title": function(d) { return "使用来宾和角色管理权限"; },
        "billing--upsell--modal--dashboard--collaboration--page--workspace--roles--description--with-private-collaboration": function(d) { return "控制谁可以添加成员并管理设置。"; },
        "billing--upsell--modal--dashboard--collaboration--page--workspace--roles--description": function(d) { return "选择哪些成员可以添加其他人并管理设置。在特定幻灯片上与来宾协作。"; },
        "billing--upsell--modal--dashboard--see--pricing--button": function(d) { return "查看专业版定价"; },
        "billing--upsell-modal--contextual--info--title": function(d) { return "解锁专业版提供的所有功能"; },
        "billing--upsell-modal--contextual--feature--links--title": function(d) { return "所有 starter 版功能,以及"; },
        "billing--upsell--modal--contextual--presentation--analytics--title": function(d) { return "演示文稿分析"; },
        "billing--upsell--modal--contextual--presentation--analytics--subtitle": function(d) { return "了解哪些有效。使用分析工具查看其他人何时以及在何地查看您的演示文稿。"; },
        "billing--upsell--modal--contextual--presentation--analytics--feature--link--title": function(d) { return "演示文稿分析"; },
        "billing--upsell--modal--contextual--presentation--analytics--feature--link--tooltip": function(d) { return "跟踪查看次数,以了解观众何时以及在何地查看您的演示文稿。"; },
        "billing--upsell--modal--contextual--workspace--roles--title": function(d) { return "工作区角色"; },
        "billing--upsell--modal--contextual--workspace--roles--subtitle": function(d) { return "管理协作。选择谁可以编辑演示文稿,邀请新成员和访问工作区设置。"; },
        "billing--upsell--modal--contextual--workspace--roles--feature--link--title": function(d) { return "工作区角色"; },
        "billing--upsell--modal--contextual--workspace--roles--feature--link--tooltip": function(d) { return "将工作区成员指定为合作者,以限制其权限。"; },
        "billing--upsell--modal--contextual--custom--links--title": function(d) { return "自定义链接。"; },
        "billing--upsell--modal--contextual--custom--links--subtitle": function(d) { return "查看特定受众访问您的幻灯片时的情况。在一个地方自定义链接,设置可选的密码,以及查看分析数据。"; },
        "billing--upsell--modal--contextual--custom--links--feature--link--title": function(d) { return "自定义链接"; },
        "billing--upsell--modal--contextual--custom--links--feature--link--tooltip": function(d) { return "创建个人链接,可选密码,与特定组分享。"; },
        "billing--upsell--modal--contextual--only--with--pro--title": function(d) { return "仅适用于专业版。"; },
        "billing--upsell--modal--contextual--version--history--title": function(d) { return "版本历史记录。"; },
        "billing--upsell--modal--contextual--version--history--subtitle": function(d) { return "记住每一个好点子。查看每个幻灯片的时间戳历史记录,并恢复之前的更改。"; },
        "billing--upsell--modal--contextual--version--history--feature--link--title": function(d) { return "版本历史记录"; },
        "billing--upsell--modal--contextual--version--history--feature--link--tooltip": function(d) { return "查看并恢复对个别幻灯片所做的以前更改。"; },
        "billing--upsell--modal--contextual--shared--private--folders--title--with-private-collaboration": function(d) { return "共享的私人文件夹。"; },
        "billing--upsell--modal--contextual--shared--private--folders--title": function(d) { return "私人文件夹。"; },
        "billing--upsell--modal--contextual--shared--private--folders--subtitle--with-private-collaboration": function(d) { return "可以与不同规模的团队合作。邀请其他成员在私人文件夹中查看或共同编辑演示文稿。"; },
        "billing--upsell--modal--contextual--shared--private--folders--subtitle": function(d) { return "独自工作或与小团队合作。将演示文稿保持私密,或邀请工作区成员查看或共同编辑。"; },
        "billing--upsell--modal--contextual--shared--private--folders--feature--link--title--with-private-collaboration": function(d) { return "共享的私人文件夹"; },
        "billing--upsell--modal--contextual--shared--private--folders--feature--link--title": function(d) { return "私人文件夹"; },
        "billing--upsell--modal--contextual--shared--private--folders--feature--link--tooltip--with-private-collaboration": function(d) { return "邀请其他人在私人文件夹中协作,并选择他们能否查看或编辑其中的演示文稿。"; },
        "billing--upsell--modal--contextual--shared--private--folders--feature--link--tooltip": function(d) { return "将演示文稿保持私密,使其不对工作区可见,或邀请个人进行共同编辑。"; },
        "billing--upsell--modal--contextual--library--title": function(d) { return "视频和图像库。"; },
        "billing--upsell--modal--contextual--library--subtitle": function(d) { return "使品牌保持一致更简单。精选品牌资产如模板、字体、视频和图片,创建一处资产库。"; },
        "billing--upsell--modal--contextual--library--feature--link--title": function(d) { return "视频和图片库"; },
        "billing--upsell--modal--contextual--library--feature--link--tooltip": function(d) { return "上传和整理视频和图片文件,供其他成员浏览并添加到幻灯片中。"; },
        "billing--upsell--modal--not--allowed--pdf--export--title": function(d) { return "无法取消水印共享"; },
        "billing--upsell--modal--not--allowed--pdf--export--subtitle": function(d) { return "在 Starter 计划中,无法选择从 PDF 导出中删除 Pitch 水印。"; },
        "billing--upsell--modal--contextual--pdf--export--title": function(d) { return "无水印共享。"; },
        "billing--upsell--modal--contextual--pdf--export--subtitle": function(d) { return "将重点放在品牌上。升级到 pro 并从嵌入和 pdf 导出中删除 pitch 徽标。"; },
        "billing--upsell--modal--contextual--pdf--export--feature--link--title": function(d) { return "非品牌标识的导出和嵌入"; },
        "billing--upsell--modal--contextual--pdf--export--feature--link--tooltip": function(d) { return "导出到 pdf 或嵌入演示文稿时无需 pitch 水印。"; },
        "billing--upsell--modal--contextual--ppt--export--title": function(d) { return "导出到 powerpoint。"; },
        "billing--upsell--modal--contextual--ppt--export--subtitle": function(d) { return "创建 powerpoint 文件,以便外部观众可以在其他工具(如 powerpoint、keynote 或 google slides)中打开幻灯片。"; },
        "billing--upsell--modal--contextual--ppt--export--feature--link--title": function(d) { return "导出到 powerpoint"; },
        "billing--upsell--modal--contextual--ppt--export--feature--link--tooltip": function(d) { return "允许外部观众在其他工具中以 .pptx 文件格式打开演示文稿。"; },
        "billing--upsell--modal--contextual--video--upload--title": function(d) { return "视频上传。"; },
        "billing--upsell--modal--contextual--video--upload--subtitle": function(d) { return "上传高分辨率视频到您的幻灯片,任何拥有链接的人都可以播放。"; },
        "billing--upsell--modal--contextual--video--upload--feature--link--title": function(d) { return "视频上传"; },
        "billing--upsell--modal--contextual--video--upload--feature--link--tooltip": function(d) { return "将自己的视频上传到演示文稿中。"; },
        "billing--upsell--modal--contextual--large--image--upload--title": function(d) { return "大尺寸图片上传"; },
        "billing--upsell--modal--contextual--large--image--upload--subtitle": function(d) { return "让演示文稿更加清晰。不要限制自己只能上传5 mb的图片,甚至可以上传高分辨率的图片到您的幻灯片中。"; },
        "billing--upsell--modal--contextual--large--image--upload--feature--link--title": function(d) { return "无限制的图片上传大小"; },
        "billing--upsell--modal--contextual--large--image--upload--feature--link--tooltip": function(d) { return "添加超过5 mb的图片到幻灯片中。"; },
        "billing--upsell--modal--contextual--guest--sharing--title": function(d) { return "来宾分享。"; },
        "billing--upsell--modal--contextual--guest--sharing--subtitle": function(d) { return "在工作区之外进行协作。邀请来宾到个别演示文稿中,而无需使他们成为工作区成员。"; },
        "billing--upsell--modal--contextual--guest--sharing--feature--link--title": function(d) { return "来宾分享"; },
        "billing--upsell--modal--contextual--guest--sharing--feature--link--tooltip": function(d) { return "邀请工作区之外的人员编辑、评论或查看特定演示文稿。"; },
        "billing--faq--title": function(d) { return "常见问题解答"; },
        "billing--faq--question0--q": function(d) { return "订阅如何运作?"; },
        "billing--faq--question0--a--no-prorations": function(d) { return "Pitch订阅会在每个计费周期(每月或每年)结束时自动续订,并适用于单个工作区。#[br]当您添加成员时,除非他们填补一个空位,否则从他们加入工作区的那一刻起,您将为此成员付款。#[br]当您从工作区中删除成员时,他们会腾出他们的付费席位。您可以通过添加新成员免费填补空缺席位。如果您在计费周期结束时未填补空缺席位,则订阅将与占用席位的数量一起续订。"; },
        "billing--faq--question1--q": function(d) { return "我可以邀请来宾协作吗?"; },
        "billing--faq--question1--a": function(d) { return "是的,可以邀请来宾查看或编辑个别演示文稿。工作区来宾只能查看共享的演示文稿,无法访问其他工作区内容。"; },
        "billing--faq--question1--a-no-priv-collab": function(d) { return "是的,如果您使用的是Pro计划,您可以邀请访客查看或编辑单个演示文稿。工作区访客只能查看共享的演示文稿,无法访问其他工作区内容。"; },
        "billing--faq--question2--q": function(d) { return "如果我从Pitch Pro工作区中删除用户会发生什么?"; },
        "billing--faq--question2--a--no-prorations": function(d) { return "当您删除成员时,他们将退出他们的付费席位。您可以通过添加新成员免费填补空位。如果您在计费周期结束时未填补空位,则订阅将按照占用席位的数量进行续订。"; },
        "billing--faq--question3--q": function(d) { return "如果我向Pitch Pro工作区中添加用户会发生什么?"; },
        "billing--faq--question3--a": function(d) { return "如果您使用的是月度计划,当您添加新用户时,将立即向您收取费用。如果您使用的是年度计划,则从购买日期起,您将在下一个月度结算点收取费用。年度计划的更改将在每月最多收取一次费用,因此如果您在一个月内添加多个用户,则仅在月度结算点期间更改一次费用。"; },
        "billing--faq--question4--q": function(d) { return "Starter计划有时间限制吗?"; },
        "billing--faq--question4--a": function(d) { return "没有 - 您和您的团队可以随时使用Starter计划。"; },
        "billing--faq--question5--q": function(d) { return "您是否有月度和年度计费选项?"; },
        "billing--faq--question5--a": function(d) { return "是的,您可以选择月度或年度计费。如果您选择购买年度计划,则每个用户的价格会享有折扣。"; },
        "billing--faq--question6--q": function(d) { return "我需要为访客付费吗?"; },
        "billing--faq--question6--a": function(d) { return "不是的 - 在Pitch中,访客账户始终是免费的。"; },
        "billing--faq--question6--a-no-priv-collab": function(d) { return "访客角色仅在专业版中提供,您可以邀请无限数量的访客。"; },
        "billing--faq--footer": function(d) { return "还在寻找其他内容吗? 在我们的#[help-center]中找到所有答案。"; },
        "billing--faq--footer--help-center": function(d) { return "帮助中心"; },
        "billing--testimonial--quote": function(d) { return "“pitch在设计保障和灵活性之间达到了完美的平衡。他们将现代协作工具的所有期望带到演示文稿中,太棒了。”"; },
        "billing--testimonial--author": function(d) { return "nick ionita"; },
        "billing--testimonial--subtitle": function(d) { return "首席执行官和联合创始人"; },
        "billing--footer--title": function(d) { return "准备升级专业版吗?"; },
        "billing--footer--content": function(d) { return "利用更多演示文稿功能。"; },
        "billing--footer--button": function(d) { return "立即升级"; },
        "billing--free-trial": function(d) { return "#[greeting] 您的工作区可以免费开始 - 无需信用卡。"; },
        "billing--free-trial--greeting": function(d) { return "尝试Pro版,享受#[length]天免费试用!"; },
        "billing--free-trial--cta": function(d) { return "了解Pitch Pro"; },
        "billing--free-trial--expiry": function(d) { return "试用期将于" + select(d.days, { "0": "今天", "1": "明天", other: "还剩#[days]天" }) + "结束"; },
        "billing--free-trial--upgrade-cta": function(d) { return "立即升级"; },
        "billing--upsell--modal--free-trial--title": function(d) { return "pitch pro"; },
        "billing--upsell--modal--free-trial--title--for--free": function(d) { return "免费使用。"; },
        "billing--upsell--modal--free-trial--subtitle": function(d) { return "了解为什么高效团队依赖pitch pro赢得工作、提高筹资并保持一致性。"; },
        "billing--upsell--modal--free-trial--info--title": function(d) { return "让您的工作区享受pro版提供的所有功能"; },
        "billing--upsell--modal--free-trial--info--tooltip": function(d) { return "您的整个工作区将升级到pro版,持续" + select(d.length, { "0": "今天", "1": "#[length]天", other: "#[length]天" }) + "。 所有成员将能够访问pro功能。"; },
        "billing--upsell--modal--free-trial--no--card": function(d) { return "无需信用卡"; },
        "billing--upsell--modal--free-trial--button": function(d) { return "开始#[length]天免费试用"; },
        "billing--upsell--modal--free-trial--success": function(d) { return "正式启动!您的#[length]天免费试用现在开始。"; },
        "billing--upsell--modal--free-trial--keep--pro--title": function(d) { return "继续使用#[br]pitch pro。"; },
        "billing--upsell--modal--free-trial--keep--pro--title--with--pro": function(d) { return "pitch pro。"; },
        "billing--upsell--modal--free-trial--keep--pro--subtitle": function(d) { return "还有时间升级您的工作空间,并保留使工作顺畅的功能。"; },
        "billing--upsell--modal--free-trial--keep--pro--info--title": function(d) { return "继续享受pitch pro提供的一切"; },
        "billing--free-trial--expired": function(d) { return "#[warning]您的工作空间的Pro试用已结束。"; },
        "billing--free-trial--expired--warning": function(d) { return "注意!"; },
        "billing--free-trial--expired--cta": function(d) { return "保持Pitch Pro"; },
        "clips--recording-overlay--selected-clip-label": function(d) { return "已选录音:"; },
        "clips--recording-overlay--new-take-button": function(d) { return "创建新录音"; },
        "clips--recording-overlay--review-recording-button": function(d) { return "查看录音"; },
        "clips--recording-overlay--delete-take-confirm-title": function(d) { return "从此幻灯片中删除录音?"; },
        "clips--recording-overlay--delete-take-confirm-description": function(d) { return "这将从您的录音列表中删除所选录音。其他幻灯片上的任何录音都将保留。"; },
        "clips--recording-overlay-delete-take-confirm-label": function(d) { return "删除"; },
        "clips--recording-overlay--delete-all-takes-confirm-title": function(d) { return "删除该幻灯片的所有录音?"; },
        "clips--recording-overlay--delete-all-takes-confirm-description": function(d) { return "这只会影响该幻灯片。其他幻灯片的录音不会被删除。"; },
        "clips--recording-overlay-delete-all-takes-confirm-label": function(d) { return "全部删除"; },
        "clips--recording-overlay--delete-uploading-clip-confirm-title": function(d) { return "放弃录音?"; },
        "clips--recording-overlay--delete-uploading-clip-confirm-description": function(d) { return "这将会放弃当前正在上传的录音。"; },
        "clips--recording-overlay-delete-uploading-clip-confirm-label": function(d) { return "放弃录音"; },
        "clips--recording-overlay--toast-message--clip-saved": function(d) { return "录音已保存到演示文稿中"; },
        "clips--recording-overlay--uploading-discard-confirm-title": function(d) { return plural(d.count, 0, en, { "1": "停止上传并放弃录音?", other: "停止上传并放弃录音?" }); },
        "clips--recording-overlay--uploading-discard-confirm-description": function(d) { return plural(d.count, 0, en, { "1": "您的录音仍在上传中。现在关闭录音器将会放弃它。", other: "您还有 " + number(d.count, "count") + " 个录音正在上传中。现在关闭录音器将会放弃它们。" }); },
        "clips--recording-overlay--uploading-discard-confirm-button-text": function(d) { return plural(d.count, 0, en, { "1": "放弃录音", other: "放弃录音" }); },
        "clips--recording-overlay--recording-discard-confirm-description": function(d) { return plural(d.count, 0, en, { "0": "你正在录制一个片段。现在关闭录音机会放弃该片段。", "1": "你正在录制一个片段,还有 " + number(d.count, "count") + " 个录音正在上传。现在关闭录音机会放弃它们。", other: "你正在录制一个片段,还有 " + number(d.count, "count") + " 个录音正在上传。现在关闭录音机会放弃它们。" }); },
        "clips--recording-overlay--reviewing-discard-confirm-description": function(d) { return plural(d.count, 0, en, { "1": "你正在回顾一个片段。现在关闭录音机会放弃该片段。", "2": "你正在回顾一个片段,还有 " + number(d.count, "count") + " 个录音正在上传。现在关闭录音机会放弃它们。", other: "你正在回顾一个片段,还有 " + number(d.count, "count") + " 个录音正在上传。现在关闭录音机会放弃它们。" }); },
        "clips--recording-overlay--recorder--header-title": function(d) { return "录音机"; },
        "clips--recording-overlay--stopwatch--paused": function(d) { return "已暂停"; },
        "clips--recording-overlay--reviewer--discard-recording": function(d) { return "放弃"; },
        "clips--recording-overlay--reviewer--tooltip--save-recording": function(d) { return "保存录音"; },
        "clips--recording-overlay--reviewer--save-recording": function(d) { return "保存"; },
        "clips--recording-overlay--reviewer--cancel-new-take": function(d) { return "取消新片段"; },
        "clips--recording-overlay--reviewer--previous-slide": function(d) { return "上一页"; },
        "clips--recording-overlay--reviewer--next-slide": function(d) { return "下一页"; },
        "clips--recording-overlay--clip-select--uploading-clip-retrying": function(d) { return "重试中"; },
        "clips--recording-overlay--clip-select--uploading-clip": function(d) { return "上传中..."; },
        "clips--recording-overlay--clip-select--create-new-take": function(d) { return "创建新的录制"; },
        "clips--recording-overlay--clip-select--delete-all-takes": function(d) { return "删除所有录制"; },
        "clips--recording-overlay--clip-select--select-none": function(d) { return "取消选择"; },
        "clips--recording-overlay--footer--tooltip--playback--play": function(d) { return "播放"; },
        "clips--recording-overlay--footer--tooltip--playback--pause": function(d) { return "暂停"; },
        "clips--recording-overlay--footer--record-new-take": function(d) { return "新录制"; },
        "clips--recording-overlay--footer--start-recording": function(d) { return "开始录制"; },
        "clips--recording-overlay--footer--tooltip--start-the-recording": function(d) { return "开始录制"; },
        "clips--recording-overlay--footer--tooltip--pause-recording": function(d) { return "暂停录制"; },
        "clips--recording-overlay--footer--tooltip--resume-recording": function(d) { return "继续录制"; },
        "clips--recording-overlay--footer--stop-recording": function(d) { return "停止录制"; },
        "clips--recording-overlay--footer--restart-recording": function(d) { return "重新开始录制"; },
        "clips--recording-overlay--footer--stopping-recording": function(d) { return "停止中..."; },
        "clips--recording-overlay--footer--tooltip--move-to-next-slide": function(d) { return "移动到下一张幻灯片"; },
        "clips--recording-overlay--footer--next-slide": function(d) { return "下一张幻灯片"; },
        "clips--recording-overlay--video-quality-options--4k-hd": function(d) { return "4k 高清"; },
        "clips--recording-overlay--video-quality-options--1440p-hd": function(d) { return "1440p 高清"; },
        "clips--recording-overlay--video-quality-options--1080p-hd": function(d) { return "1080p 高清"; },
        "clips--recording-overlay--video-quality-options--720p": function(d) { return "720p"; },
        "clips--recording-overlay--video-quality-options--480p": function(d) { return "480p"; },
        "clips--recording-overlay--input-error--both-disallowed": function(d) { return "我们无法访问您的麦克风和摄像头。"; },
        "clips--recording-overlay--input-error--mic-disallowed": function(d) { return "我们无法访问您的麦克风。"; },
        "clips--recording-overlay--input-error--camera-disallowed": function(d) { return "我们无法访问您的摄像头。"; },
        "clips--recording-overlay--input-error--both-missing": function(d) { return "您的麦克风和摄像头存在问题。请尝试重新启动您的浏览器或应用程序。"; },
        "clips--recording-overlay--input-error--mic-missing": function(d) { return "您的麦克风存在问题。请尝试重新启动您的浏览器或应用程序。"; },
        "clips--recording-overlay--input-error--camera-missing": function(d) { return "您的摄像头存在问题。请尝试重新启动您的浏览器或应用程序。"; },
        "clips--recording-overlay--input-error--learn-more": function(d) { return "访问帮助中心了解更多信息"; },
        "clips--defect-devices-warning-toast--headline": function(d) { return "出现问题"; },
        "clips--no-recording-audio-warning-toast--headline": function(d) { return "似乎您已静音"; },
        "clips--no-recording-audio-warning-toast--subline": function(d) { return "您的麦克风正在工作,但您需要取消静音。"; },
        "clips--recording-overlay--device-picker-warning-tooltip--audio--headline": function(d) { return "您的麦克风无法工作"; },
        "clips--recording-overlay--device-picker-warning-tooltip--audio--subline": function(d) { return "尝试连接不同的音频来源。"; },
        "clips--recording-overlay--device-picker-warning-tooltip--video--headline": function(d) { return "您的摄像头无法工作"; },
        "clips--recording-overlay--device-picker-warning-tooltip--video--subline": function(d) { return "尝试连接不同的视频来源。"; },
        "clips--delete-block-alert--description": function(d) { return "您的录音还可以保留"; },
        "clips--delete-block-alert--open-recorder": function(d) { return "在录音机中打开"; },
        "recordings--create-block-alert": function(d) { return "每个幻灯片只能添加一个录音"; },
        "clips--editor--panel-item-add-recording": function(d) { return "添加录音"; },
        "clips--editor--panel-item-edit-take": function(d) { return "编辑录音"; },
        "clips--editor--panel-item-edit-take-badge-tooltip": function(d) { return plural(d.count, 0, { "1": "可用" + number(d.count, "count") + "个录音", other: "可用" + number(d.count, "count") + "个录音" }); },
        "clips--editor--panel-item-thumbnail": function(d) { return "缩略图"; },
        "open-in-desktop-app-modal--header": function(d) { return "你想在pitch桌面应用程序中打开这个演示文稿吗?"; },
        "open-in-desktop-app-modal--open-button": function(d) { return "在应用程序中打开"; },
        "open-in-desktop-app-modal--always-open": function(d) { return "总是在应用程序中打开"; },
        "downloads--file-added-to-queue": function(d) { return d.filename + "已添加到下载队列。"; },
        "downloads--generating-file": function(d) { return "正在创建 " + d.filename + "……"; },
        "downloads--generating-pptx": function(d) { return "正在创建 " + d.filename + ".pptx"; },
        "downloads--progress-status": function(d) { return "正在导出 " + d.filename + "……"; },
        "downloads--pdf-success": function(d) { return "成功!这是您的pdf文件。"; },
        "downloads--ppt-success": function(d) { return "完成!您的powerpoint文件已准备就绪。"; },
        "downloads--success": function(d) { return d.filename + "已成功保存。"; },
        "downloads--pdf-failed": function(d) { return "导出pdf文件时出现问题。请重试,并在问题继续时联系支持。"; },
        "downloads--failed": function(d) { return "无法导出\"" + d.filename + "。\"请刷新页面并重试。"; },
        "downloads--cancel-button": function(d) { return "取消"; },
        "downloads--retry-button": function(d) { return "重试"; },
        "downloads--ok-button": function(d) { return "确定"; },
        "sync-failure--generic-title": function(d) { return "同步问题"; },
        "sync-failure--generic-info": function(d) { return "您的更改已保存到您的计算机,但尚未同步到您的工作区。确保您处于在线状态,并且如果问题持续,请#[contact_support]。"; },
        "sync-failure--non-persistent--generic-info": function(d) { return "您的更改未同步到您的工作区。确保您处于在线状态,并且如果问题持续,请#[contact_support](如果可能,请包括错误代码)。"; },
        "sync-failure--error-code": function(d) { return "错误代码:" + d.code; },
        "sync-offline--title": function(d) { return "看起来您处于离线状态"; },
        "sync-offline--label": function(d) { return "我们将尽最大努力保存您的工作并在您再次连接时进行同步。如果您认为有问题,请查看我们的#[status_page]或#[contact_support]。 "; },
        "sync-offline--non-persistent--label": function(d) { return "我们会尽力在您重新连接后同步您的工作。如果您认为出现了问题,请查看我们的#[status_page]或#[contact_support]。"; },
        "sync-offline--status-page": function(d) { return "状态页面"; },
        "sync-interrupted--contact-support": function(d) { return "联系支持人员"; },
        "sync-ok--title": function(d) { return "一切都已同步并且是最新的。"; },
        "drop-down--upload-font": function(d) { return "上传字体"; },
        "button--dismiss": function(d) { return "忽略"; },
        "button--yes": function(d) { return "是"; },
        "button--cancel": function(d) { return "取消"; },
        "auto-updater--restart-now": function(d) { return "立即重启"; },
        "auto-updater--install-on-next-launch": function(d) { return "下次启动时安装"; },
        "auto-updater--checking-for-updates": function(d) { return "正在检查更新..."; },
        "auto-updater--downloading": function(d) { return "正在下载最新更新 " + d.progress + "%..."; },
        "auto-updater--downloading-title": function(d) { return "正在下载最新更新..."; },
        "auto-updater--preparing": function(d) { return "正在准备安装更新..."; },
        "auto-updater--preparing-title": function(d) { return "正在准备更新..."; },
        "auto-updater--new-version-available": function(d) { return "pitch 有新版本可用 🎉"; },
        "auto-updater--new-version-available-title": function(d) { return "pitch 有新版本可用"; },
        "auto-updater--new-version-available-description": function(d) { return "我们对应用程序进行了一些改进和修复。请重新启动以安装此更新。"; },
        "auto-updater--running-latest": function(d) { return "您正在运行 pitch 的最新版本 " + d.version + "。"; },
        "auto-updater--running-latest-title": function(d) { return "pitch 已是最新版本"; },
        "auto-updater--running-latest-description": function(d) { return "您正在运行最新版本的pitch。稍后再来查看是否有更新。"; },
        "mobile--auto-updater--ok": function(d) { return "立即更新"; },
        "mobile--auto-updater--later": function(d) { return "稍后提醒我"; },
        "list--search-placeholder": function(d) { return "搜索..."; },
        "list--empty-placeholder": function(d) { return "没有找到结果。请重试。"; },
        "dialog--error-title": function(d) { return "错误"; },
        "window-title--default": function(d) { return "pitch"; },
        "modal--close-modal-icon-hint": function(d) { return "关闭"; },
        "common--font-upload--or-drag-and-drop": function(d) { return "或拖放.ttf或.otf文件"; },
        "common--font-upload--add-fonts-button": function(d) { return "选择更多字体"; },
        "common--font-upload--font-upload-dialog-info--first-part": function(d) { return "在开始之前,我们建议您查看这个#[howto-fonts-support-link]。"; },
        "common--font-upload--font-upload-dialog-info--second-part": function(d) { return "以下是一些快速提示:"; },
        "common--font-upload--howto-fonts": function(d) { return "上传自定义字体的简短指南"; },
        "common--font-upload--support-url": function(d) { return "https://help.pitch.com/zh-cn/articles/4057308-%e4%b8%8a%e4%bc%a0%e8%87%aa%e5%ae%9a%e4%b9%89%e5%ad%97%e4%bd%93"; },
        "common--font-upload--font-upload-dialog-info--bullet-one--library": function(d) { return "一次性上传一个字体系列的所有变体 - 我们目前不支持更改已上传的字体文件。"; },
        "common--font-upload--font-upload-dialog-info--bullet-two": function(d) { return "将扩展或压缩字体样式作为单独的字体系列上传。"; },
        "common--font-upload--cancel-upload": function(d) { return "取消"; },
        "common--font-upload--choose-font-button": function(d) { return "选择字体"; },
        "common--library-font-upload--confirm-upload-button": function(d) { return "上传到库"; },
        "common--font-upload--drop-screen-info": function(d) { return "将您的字体文件拖放到此处"; },
        "common--font-upload--upload-screen-info": function(d) { return plural(d.multiple, 0, en, { one: "正在上传字体", other: "正在上传字体" }); },
        "common--upload--and": function(d) { return "和"; },
        "common--upload--more": function(d) { return "更多"; },
        "common--upload--cancel": function(d) { return "取消"; },
        "common--font-upload--title-text": function(d) { return plural(d.count, 0, en, { "0": "上传自定义字体", one: "正在将1个字体添加到库中", other: "正在将" + number(d.count, "count") + "个字体添加到库中" }); },
        "common--font-upload--upload-toast": function(d) { return plural(d.multiple, 0, en, { one: "正在上传" + d.file_name, other: "正在上传字体文件" }); },
        "common--font-manager--font-family-name": function(d) { return "请输入字体族名称"; },
        "common--font-manager--font-family-name--label": function(d) { return "字体族名称"; },
        "common--font-manager--font-preview": function(d) { return "字体预览"; },
        "common--font-manager--example-text": function(d) { return "快速的棕色狐狸跳过了懒狗。"; },
        "common--font-manager--style-count": function(d) { return plural(d.count, 0, en, { one: "1种字体样式", other: number(d.count, "count") + "种字体样式" }); },
        "common--font-manager--font-style": function(d) { return "字体样式"; },
        "common--font-manager--editor-label-column": function(d) { return "字体样式名称"; },
        "common--font-manager--style-edit-helper-text": function(d) { return "我们是否正确导入字体名称和属性?请确保每个字体文件都有唯一的名称和正确的字重和字形。"; },
        "common--font-manager--italic": function(d) { return "斜体"; },
        "common--font-manager--font-weight": function(d) { return "字重"; },
        "common--font-manager--choose-weight": function(d) { return "选择字重"; },
        "common--font-manager--choose-label": function(d) { return "选择标签"; },
        "common--font-manager--feedback": function(d) { return "请检查上面的文件是否有错误。#[fonts-support-link] #[fonts-support-link-sentence]"; },
        "common--font-manager--feedback--text2": function(d) { return "关于上传字体。"; },
        "common--font-manager--feedback--how-to": function(d) { return "了解更多"; },
        "common--font-manager--feedback--support-url": function(d) { return "https://help.pitch.com/zh/articles/4298124-%e6%88%91%e4%bd%bf%e7%94%a8%e8%87%aa%e5%ae%9a%e4%b9%89%e5%ad%97%e4%bd%93%e6%97%b6%e5%87%ba%e7%8e%b0%e9%97%ae%e9%a2%98"; },
        "common--font-manager--tooltip-heading--duplicate-font-family": function(d) { return "此工作区已存在名为\"" + d.family_name + "\"的字体族"; },
        "common--font-manager--tooltip-body--duplicate-font-family": function(d) { return "尝试在另一个选项卡中打开此演示文稿,并在编辑器中查找此字体。如果您仍然要上传这些文件,请重新命名字体。"; },
        "common--font-manager--tooltip-heading--duplicate-style": function(d) { return "突出显示的字体文件具有相同的重量和样式。确保每个文件都具有正确的属性。"; },
        "common--font-manager--tooltip-heading--duplicate-label": function(d) { return "突出显示的字体文件具有相同的名称。选择一个唯一的名称。"; },
        "common--font-manager--tooltip-heading--duplicate-style-and-label": function(d) { return "突出显示的字体文件具有相同的名称和重量/样式。确保名称唯一且重量/样式正确。"; },
        "dashboard--folder-deletion-dialog--message": function(d) { return "删除文件夹?"; },
        "dashboard--folder-deletion-dialog--comment": function(d) { return "此文件夹中的所有演示文稿和子文件夹都将被删除。此操作无法撤消。"; },
        "dashboard--folder-deletion-dialog--confirm-text": function(d) { return "删除"; },
        "re-consent--form--title": function(d) { return "我们已更新使用条款"; },
        "re-consent--form--checkbox--accept-new-terms": function(d) { return "我接受新的使用条款。"; },
        "re-consent--form--button--continue": function(d) { return "继续"; },
        "re-consent--form--copy--link--terms-of-use": function(d) { return "使用条款"; },
        "re-consent--form--copy": function(d) { return "我们已更新我们的#[link]。在创建另一份杰作演示文稿之前,请花点时间查看它们。"; },
        "marketing-subscribe--heading--new-users": function(d) { return "就快了!再等一秒,您将开始创建您的第一份演示文稿。"; },
        "marketing-subscribe--heading": function(d) { return "想了解更多?"; },
        "marketing-subscribe--heading--mobile": function(d) { return "就是这样!很快,您就可以开始使用 pitch。"; },
        "marketing-subscribe--opt-in-question--new-users": function(d) { return "在您离开之前,您想收到我们最新的产品更新、提示和资源的电子邮件吗?"; },
        "marketing-subscribe--opt-in-question": function(d) { return "订阅我们的电子邮件,获取产品更新、有用的提示和反馈。我们只会发送最相关的内容给您。"; },
        "marketing-subscribe--opt-in-yes": function(d) { return "好的"; },
        "marketing-subscribe--opt-in-no": function(d) { return "不用了,谢谢"; },
        "marketing-subscribe--view-workspace-button--new-users": function(d) { return "开始使用 pitch"; },
        "marketing-subscribe--view-workspace-button": function(d) { return "继续使用 pitch"; },
        "marketing-subscribe--generic-error": function(d) { return "出了点问题,我们也不知道是什么。请重试,并在问题持续时联系支持。"; },
        "marketing-subscribe--unsubscribe-info--new-users": function(d) { return "*我们不会发送垃圾邮件,只发送有用的资源和内容。如果您改变主意,可以随时取消订阅。在我们的#[link]中了解更多。"; },
        "marketing-subscribe--unsubscribe-info": function(d) { return "*我们承诺不会发送垃圾邮件,只发送有用的资源和内容。如果您改变主意,可以随时取消订阅。在我们的#[link]中了解更多。"; },
        "marketing-subscribe--link--privacy-policy": function(d) { return "隐私政策"; },
        "common--alert--retriable-error--retry": function(d) { return "重试"; },
        "common--alert--public-link--link-copied--title": function(d) { return "链接已复制"; },
        "common--alert--public-link--link-copied--description": function(d) { return "任何拥有该链接的人都可以访问这个演示文稿。"; },
        "common--alert--public-link--link-enabled--title": function(d) { return "链接已启用"; },
        "common--alert--public-link--link-enabled--description": function(d) { return "任何拥有该链接的人都可以访问这个演示文稿。"; },
        "common--alert--public-link--link-disabled--title": function(d) { return "链接已禁用"; },
        "common--alert--public-link--link-disabled--description": function(d) { return "访客将不能再使用该链接来访问这个演示文稿。"; },
        "common--alert--personal-with-invites--link-copied--title": function(d) { return "链接已复制"; },
        "common--alert--personal-with-invites--link-copied--description": function(d) { return "只有您和邀请的协作者才能访问这个演示文稿。"; },
        "common--alert--with-invites--link-copied--title": function(d) { return "链接已复制"; },
        "common--alert--with-invites--link-copied--description": function(d) { return "工作区成员和邀请的协作者可以访问这个演示文稿。"; },
        "common--alert--cant-create-from-unpublished-tmpl--info": function(d) { return "此模板尚未发布,因此您不能使用它创建演示文稿。请先发布模板。"; },
        "common--alert--cant-create-from-unpublished-tmpl--nevermind": function(d) { return "知道了"; },
        "common--alert--cant-create-from-unpublished-tmpl--publish": function(d) { return "发布"; },
        "common--alert--publish-document-failure--description": function(d) { return "发布此演示文稿时出了一些问题。"; },
        "common--alert--publish-document-failure--try-again": function(d) { return "重试"; },
        "common--alert--unpublish-document-failure--description": function(d) { return "取消发布此演示文稿时出了一些问题。"; },
        "common--alert--unpublish-document-failure--try-again": function(d) { return "重试"; },
        "common--alert--shared-document-duplicated--show-in-folder": function(d) { return "在文件夹中显示"; },
        "common--alert--private-document-moved--show-in-folder": function(d) { return "在文件夹中显示"; },
        "common--alert--document-moved--show-in-folder": function(d) { return "在文件夹中显示"; },
        "common--alert--share-link-left--info": function(d) { return "您已离开#[title],它已不在您的仪表板中。"; },
        "common--alert--share-link-removed--info": function(d) { return "您已将#[email]的访问权限从此演示文稿中删除"; },
        "common--alert--template-published--info": function(d) { return "您对模板#[template_name]的更改已发布"; },
        "common--alert--share-dialog-member-invite--one": function(d) { return "您已邀请#[email]加入此工作区。"; },
        "common--alert--share-dialog-member-invite--two": function(d) { return "您已邀请#[email]和另外一个人加入此工作区。"; },
        "common--alert--share-dialog-member-invite--more": function(d) { return "您已邀请#[email]和#[count]其他人加入此工作区。"; },
        "common--alert--share-dialog-member-invite--button-label": function(d) { return "管理成员"; },
        "common--alert--jump-slide": function(d) { return "跳转到第#[slide]页"; },
        "common--alert--jump-slide--slide-name": function(d) { return "第" + d.slide_idx + "页"; },
        "common--alert--autosave--var1": function(d) { return "pitch会自动为您保存工作。咳,自动保存。🔮"; },
        "common--alert--autosave--var2": function(d) { return "我们正在自动保存您的工作。但如果您喜欢,仍然可以不断地点击保存按钮。"; },
        "common--alert--autosave--var3": function(d) { return "不用担心保存这些事情。我们替您搞定了。💪"; },
        "common--alert--autosave--var4": function(d) { return "💾 不需要点击保存。您的更改已自动保存。"; },
        "common--alert--autosave--var5": function(d) { return "您的工作已经自动保存。全年无休。📆"; },
        "common--alert--autosave--var6": function(d) { return "👋 我们仍然在这里。仍在为您自动保存您的工作。"; },
        "common--alert--autosave--dismiss-button": function(d) { return "好的"; },
        "common--alert--template-saving": function(d) { return "您正在尝试更新模板吗?请先发布更改,以便其他人可以看到它们。"; },
        "common--alert--template-saving--dismiss-button": function(d) { return "好的"; },
        "common--alert--workspace-removed": function(d) { return "工作区 \"" + d.workspace_name + "\" 已删除"; },
        "common--alert--workspace-member-left-workspace": function(d) { return "你已退出 \"" + d.workspace_name + "\""; },
        "common--alert--workspace-member-removed": function(d) { return "你已不再是 \"" + d.workspace_name + "\" 的成员"; },
        "common--alert--font-uploaded--info": function(d) { return "已将 1 种字体添加到库中"; },
        "common--alert--fonts-uploaded--info": function(d) { return "已将 " + d.count + " 种字体添加到库中"; },
        "common--alert--managed-links--copied--title": function(d) { return "链接已复制"; },
        "common--alert--managed-links--copied--description": function(d) { return "任何有此链接的人都可以访问此演示文稿。"; },
        "common--alert--managed-links--copied-with-access-code--description": function(d) { return "任何有此链接和通行证的人都可以打开此演示文稿。"; },
        "common--alert--managed-links--access-code-copied--title": function(d) { return "通行证已复制"; },
        "common--alert--managed-links--created--title": function(d) { return "链接已创建"; },
        "common--alert--managed-links--created--description": function(d) { return "使用此链接共享您的演示文稿。"; },
        "common--alert--managed-links--create--error": function(d) { return "创建自定义链接失败。请重试。"; },
        "common--alert--managed-links--edited--title": function(d) { return "更改已保存"; },
        "common--alert--managed-links--edit-failure--title": function(d) { return "无法更新此链接。请重试。"; },
        "common--alert--managed-links--disabled--title": function(d) { return "链接已禁用"; },
        "common--alert--managed-links--disabled-failure--title": function(d) { return "禁用链接失败"; },
        "common--alert--managed-links--disabled-failure--description": function(d) { return "请重试。"; },
        "common--alert--managed-links--disabled--description": function(d) { return "使用此链接将您的演示文稿与任何人共享。"; },
        "common--alert--managed-links--enabled--title": function(d) { return "链接已启用"; },
        "common--alert--managed-links--enabled--description": function(d) { return "此链接将再次适用于拥有它的人。"; },
        "common--alert--managed-links--enabled-failure--title": function(d) { return "启用链接失败"; },
        "common--alert--managed-links--enabled-failure--description": function(d) { return "请重试。"; },
        "common--alert--managed-links--enabled-with-access-code--description": function(d) { return "任何有此链接和通行证的人都可以打开此演示文稿。"; },
        "common--alert--managed-links--revoked--title": function(d) { return "链接已删除"; },
        "common--alert--managed-links--revoked--description": function(d) { return "访客不能再使用此链接访问此演示文稿。"; },
        "common--alert--managed-links--revoke--failed--title": function(d) { return "删除链接失败"; },
        "common--alert--managed-links--revoke-failed--description": function(d) { return "请重试。"; },
        "alert--link-copied--title": function(d) { return "链接已复制"; },
        "alert--personal-link-copied--description": function(d) { return "只有您可以访问此" + select(d.document_type, { presentation: "演示文稿", template: "模板", folder: "文件夹", other: d.document_type }) + "。"; },
        "alert--workspace-link-copied--description": function(d) { return "工作区成员可以访问此" + select(d.document_type, { presentation: "演示文稿", template: "模板", folder: "文件夹", other: d.document_type }) + "。"; },
        "alert--shared-link-copied--description": function(d) { return "任何被邀请者都可以访问此" + select(d.document_type, { folder: "文件夹", other: d.document_type }) + "。"; },
        "alert--embed-code-copied--title": function(d) { return "嵌入代码已复制到剪贴板"; },
        "alert--embed-code-copied--description": function(d) { return "现在您可以在网站、博客等任何地方嵌入此演示文稿。"; },
        "alert--version-history--slide-restored--title": function(d) { return "幻灯片已成功恢复。"; },
        "alert--version-history--slide-pasted--title": function(d) { return "此幻灯片版本已粘贴到您的演示文稿中。"; },
        "alert--smart-panning--applied": function(d) { return "pitch自动裁剪了您的图像。双击并拖动以更改焦点。"; },
        "alert--smart-panning--link-description": function(d) { return "了解更多"; },
        "alert--slides-selected": function(d) { return "已选择" + d.slide_count + "个幻灯片"; },
        "common-inline-editor--panel-item--border-color-label": function(d) { return "边框"; },
        "common-inline-editor--panel-item--line-color-label": function(d) { return "线条"; },
        "common-inline-editor--panel-item--fill-color-label": function(d) { return "填充"; },
        "common-inline-editor--panel-item--shadow-label": function(d) { return "阴影"; },
        "common-inline-editor--panel-item--replace-label": function(d) { return "替换"; },
        "common-inline-editor--panel-item--crop-label": function(d) { return "裁剪"; },
        "common-inline-editor--panel-item--slide-color-label": function(d) { return "幻灯片颜色"; },
        "common-inline-editor--panel-item--background-image-label": function(d) { return "背景图片"; },
        "common-inline-editor--panel-item--tidy": function(d) { return "整理"; },
        "common-inline-editor--panel-item--tidy-hint": function(d) { return "对齐和分布"; },
        "common-inline-editor--panel-item--already-tidied": function(d) { return "已整理"; },
        "common-inline-editor--panel-item--locked": function(d) { return "锁定"; },
        "common-inline-editor--panel-item--lock-locked": function(d) { return "解锁以移动或调整大小"; },
        "common-inline-editor--panel-item--lock-mixed": function(d) { return "解锁位置(混合)"; },
        "common-inline-editor--panel-item--lock-unlocked": function(d) { return "锁定位置"; },
        "common-inline-editor--panel-item--reset-cell-style": function(d) { return "重置"; },
        "common-inline-editor--video-options-panel--mute": function(d) { return "静音"; },
        "common-inline-editor--video-options-panel--autoplay": function(d) { return "自动播放"; },
        "common-inline-editor--video-options-panel--loop": function(d) { return "循环"; },
        "common-inline-editor--video-options-panel--label": function(d) { return "播放"; },
        "common-inline-editor--exit-crop": function(d) { return "完成"; },
        "common-inspector-editor--close-panel-tooltip": function(d) { return "切换面板"; },
        "common-inspector-editor--reset-to-original-proportions": function(d) { return "重置比例"; },
        "common-inspector-editor--replace-media": function(d) { return "替换媒体"; },
        "common-inspector-editor--crop": function(d) { return "裁剪图片"; },
        "common-inspector-editor--exit-crop": function(d) { return "完成裁剪"; },
        "common-inspector-editor--replace-sticker": function(d) { return "更换贴纸"; },
        "common--alert--left-shared-folder": function(d) { return "您已成功离开“" + d.folder_name + "”"; },
        "common--alert--left-shared-folder-failure": function(d) { return "出了些问题 - 您仍在“" + d.folder_name + "”中"; },
        "common--alert--left-shared-folder-failure-retry-button": function(d) { return "重试"; },
        "common--alert--shared-folder--member-invited": function(d) { return "您已与" + d.sharee_name + "共享“" + d.folder_name + "”"; },
        "common--alert--shared-folder--member-removed": function(d) { return "您已从“" + d.folder_name + "”中删除" + d.sharee_name; },
        "common--alert--subscribed-to-document": function(d) { return "您将获得有关此演示文稿中所有活动的应用程序通知。"; },
        "common--alert--unsubscribed-from-document": function(d) { return "您只会收到与您直接相关的活动通知。"; },
        "common--importer--time-notice": function(d) { return "对于较大的文件,这可能需要几分钟时间。"; },
        "importer-ppt-modal--error--body": function(d) { return "我们上传此文件时出了些问题。请再试一次,如果问题仍然存在,请联系支持。"; },
        "importer-ppt-modal--error--body-link-text": function(d) { return "联系支持"; },
        "importer-ppt-modal--unsupported-file-type--body": function(d) { return "我们只能导入 .pptx 文件。如果您没有使用 powerpoint,请查看您的工具是否支持 .pptx 格式。"; },
        "importer-ppt-modal--close-button": function(d) { return "关闭"; },
        "importer-ppt-modal--try-again-button": function(d) { return "重试"; },
        "importer-ppt-modal--initial--title": function(d) { return "导入 powerpoint 文件"; },
        "common--importer--processing-description": function(d) { return "正在上传文件"; },
        "importer-ppt-modal--success-supported--body": function(d) { return "成功!"; },
        "importer-ppt-modal--success--body": function(d) { return "您导入的演示文稿现在在您的#[folder-name]文件夹中。"; },
        "importer-ppt-modal--success-unsupported--body": function(d) { return "您的演示文稿中的某些元素尚未受到支持。"; },
        "importer-ppt-modal--open-button": function(d) { return "打开演示文稿"; },
        "importer-ppt-modal--learn-more": function(d) { return "了解更多"; },
        "importer-ppt-modal--initial--body": function(d) { return "在此处导入 .pptx 文件。未使用 powerpoint?类似 google 幻灯片和 keynote 的工具可以导出此格式。#[了解更多]"; },
        "importer-ppt-modal--drag-and-drop": function(d) { return "将文件拖放至此处"; },
        "importer-ppt-modal--upload-button": function(d) { return "上传文件"; },
        "import-ppt-modal--help-article-url": function(d) { return "https://help.pitch.com/zh/articles/4615453-import-a-presentation"; },
        "importer--toast--title": function(d) { return "您导入的演示文稿现在在您的#[文件夹名称]文件夹中。"; },
        "importer--toast--button": function(d) { return "打开演示文稿"; },
        "exporter--ppt-failed--title": function(d) { return "导出失败"; },
        "exporter--ppt-failed--body": function(d) { return "我们在导出此文件时遇到问题。如果问题持续存在,#[联系支持]。"; },
        "exporter--ppt-failed--contact": function(d) { return "联系支持"; },
        "exporter--ppt-already-processing--title": function(d) { return "正在进行导出"; },
        "exporter--ppt-already-processing--description": function(d) { return "我们会完成这个,然后您可以再次导出此演示文稿。"; },
        "common--accordion--open": function(d) { return "展开"; },
        "common--accordion--close": function(d) { return "折叠"; },
        "common--confirmation--cancel": function(d) { return "取消"; },
        "common--confirmation--confirm": function(d) { return "确认"; },
        "common--badge--beta": function(d) { return "beta 版"; },
        "common--shortcut--space": function(d) { return "空格键"; },
        "common--shortcut--backspace": function(d) { return "退格键"; },
        "common--shortcut--enter": function(d) { return "回车"; },
        "common--shortcut--escape": function(d) { return "esc"; },
        "countries--unknown": function(d) { return "未知"; },
        "countries--ad": function(d) { return "安道尔"; },
        "countries--ae": function(d) { return "阿拉伯联合酋长国"; },
        "countries--af": function(d) { return "阿富汗"; },
        "countries--ag": function(d) { return "安提瓜和巴布达"; },
        "countries--ai": function(d) { return "安圭拉"; },
        "countries--al": function(d) { return "阿尔巴尼亚"; },
        "countries--am": function(d) { return "亚美尼亚"; },
        "countries--ao": function(d) { return "安哥拉"; },
        "countries--aq": function(d) { return "南极洲"; },
        "countries--ar": function(d) { return "阿根廷"; },
        "countries--as": function(d) { return "美属萨摩亚"; },
        "countries--at": function(d) { return "奥地利"; },
        "countries--au": function(d) { return "澳大利亚"; },
        "countries--aw": function(d) { return "阿鲁巴"; },
        "countries--ax": function(d) { return "奥兰群岛"; },
        "countries--az": function(d) { return "阿塞拜疆"; },
        "countries--ba": function(d) { return "波斯尼亚和黑塞哥维那"; },
        "countries--bb": function(d) { return "巴巴多斯"; },
        "countries--bd": function(d) { return "孟加拉国"; },
        "countries--be": function(d) { return "比利时"; },
        "countries--bf": function(d) { return "布基纳法索"; },
        "countries--bg": function(d) { return "保加利亚"; },
        "countries--bh": function(d) { return "巴林"; },
        "countries--bi": function(d) { return "布隆迪"; },
        "countries--bj": function(d) { return "贝宁"; },
        "countries--bl": function(d) { return "圣巴泰勒米"; },
        "countries--bm": function(d) { return "百慕大"; },
        "countries--bn": function(d) { return "文莱"; },
        "countries--bo": function(d) { return "玻利维亚"; },
        "countries--bq": function(d) { return "博内尔"; },
        "countries--br": function(d) { return "巴西"; },
        "countries--bs": function(d) { return "巴哈马"; },
        "countries--bt": function(d) { return "不丹"; },
        "countries--bv": function(d) { return "布韦岛"; },
        "countries--bw": function(d) { return "博茨瓦纳"; },
        "countries--by": function(d) { return "白俄罗斯"; },
        "countries--bz": function(d) { return "伯利兹"; },
        "countries--ca": function(d) { return "加拿大"; },
        "countries--cc": function(d) { return "科科斯群岛"; },
        "countries--cd": function(d) { return "刚果民主共和国"; },
        "countries--cf": function(d) { return "中非共和国"; },
        "countries--cg": function(d) { return "刚果共和国"; },
        "countries--ch": function(d) { return "瑞士"; },
        "countries--ci": function(d) { return "科特迪瓦"; },
        "countries--ck": function(d) { return "库克群岛"; },
        "countries--cl": function(d) { return "智利"; },
        "countries--cm": function(d) { return "喀麦隆"; },
        "countries--cn": function(d) { return "中国"; },
        "countries--co": function(d) { return "哥伦比亚"; },
        "countries--cr": function(d) { return "哥斯达黎加"; },
        "countries--cu": function(d) { return "古巴"; },
        "countries--cv": function(d) { return "佛得角"; },
        "countries--cw": function(d) { return "库拉索"; },
        "countries--cx": function(d) { return "圣诞岛"; },
        "countries--cy": function(d) { return "塞浦路斯"; },
        "countries--cz": function(d) { return "捷克共和国"; },
        "countries--de": function(d) { return "德国"; },
        "countries--dj": function(d) { return "吉布提"; },
        "countries--dk": function(d) { return "丹麦"; },
        "countries--dm": function(d) { return "多米尼克"; },
        "countries--do": function(d) { return "多明尼加共和国"; },
        "countries--dz": function(d) { return "阿尔及利亚"; },
        "countries--ec": function(d) { return "厄瓜多尔"; },
        "countries--ee": function(d) { return "爱沙尼亚"; },
        "countries--eg": function(d) { return "埃及"; },
        "countries--eh": function(d) { return "西撒哈拉"; },
        "countries--er": function(d) { return "厄立特里亚"; },
        "countries--es": function(d) { return "西班牙"; },
        "countries--et": function(d) { return "埃塞俄比亚"; },
        "countries--fi": function(d) { return "芬兰"; },
        "countries--fj": function(d) { return "斐济"; },
        "countries--fk": function(d) { return "福克兰群岛(马尔维纳斯)"; },
        "countries--fm": function(d) { return "密克罗尼西亚"; },
        "countries--fo": function(d) { return "法罗群岛"; },
        "countries--fr": function(d) { return "法国"; },
        "countries--ga": function(d) { return "加蓬"; },
        "countries--gb": function(d) { return "英国"; },
        "countries--gd": function(d) { return "格林纳达"; },
        "countries--ge": function(d) { return "格鲁吉亚"; },
        "countries--gf": function(d) { return "法属圭亚那"; },
        "countries--gg": function(d) { return "根西岛"; },
        "countries--gh": function(d) { return "加纳"; },
        "countries--gi": function(d) { return "直布罗陀"; },
        "countries--gl": function(d) { return "格陵兰"; },
        "countries--gm": function(d) { return "冈比亚"; },
        "countries--gn": function(d) { return "几内亚"; },
        "countries--gp": function(d) { return "瓜德罗普"; },
        "countries--gq": function(d) { return "赤道几内亚"; },
        "countries--gr": function(d) { return "希腊"; },
        "countries--gs": function(d) { return "南乔治亚岛和南桑威奇群岛"; },
        "countries--gt": function(d) { return "危地马拉"; },
        "countries--gu": function(d) { return "关岛"; },
        "countries--gw": function(d) { return "几内亚比绍"; },
        "countries--gy": function(d) { return "圭亚那"; },
        "countries--hk": function(d) { return "香港"; },
        "countries--hm": function(d) { return "赫德岛和麦克唐纳群岛"; },
        "countries--hn": function(d) { return "洪都拉斯"; },
        "countries--hr": function(d) { return "克罗地亚"; },
        "countries--ht": function(d) { return "海地"; },
        "countries--hu": function(d) { return "匈牙利"; },
        "countries--id": function(d) { return "印度尼西亚"; },
        "countries--ie": function(d) { return "爱尔兰"; },
        "countries--il": function(d) { return "以色列"; },
        "countries--im": function(d) { return "马恩岛"; },
        "countries--in": function(d) { return "印度"; },
        "countries--io": function(d) { return "英属印度洋领地"; },
        "countries--iq": function(d) { return "伊拉克"; },
        "countries--ir": function(d) { return "伊朗"; },
        "countries--is": function(d) { return "冰岛"; },
        "countries--it": function(d) { return "意大利"; },
        "countries--je": function(d) { return "泽西岛"; },
        "countries--jm": function(d) { return "牙买加"; },
        "countries--jo": function(d) { return "约旦"; },
        "countries--jp": function(d) { return "日本"; },
        "countries--ke": function(d) { return "肯尼亚"; },
        "countries--kg": function(d) { return "吉尔吉斯斯坦"; },
        "countries--kh": function(d) { return "柬埔寨"; },
        "countries--ki": function(d) { return "基里巴斯"; },
        "countries--km": function(d) { return "科摩罗"; },
        "countries--kn": function(d) { return "圣基茨和尼维斯"; },
        "countries--kp": function(d) { return "朝鲜"; },
        "countries--kr": function(d) { return "韩国"; },
        "countries--kw": function(d) { return "科威特"; },
        "countries--ky": function(d) { return "开曼群岛"; },
        "countries--kz": function(d) { return "哈萨克斯坦"; },
        "countries--la": function(d) { return "老挝"; },
        "countries--lb": function(d) { return "黎巴嫩"; },
        "countries--lc": function(d) { return "圣卢西亚"; },
        "countries--li": function(d) { return "列支敦士登"; },
        "countries--lk": function(d) { return "斯里兰卡"; },
        "countries--lr": function(d) { return "利比里亚"; },
        "countries--ls": function(d) { return "莱索托"; },
        "countries--lt": function(d) { return "立陶宛"; },
        "countries--lu": function(d) { return "卢森堡"; },
        "countries--lv": function(d) { return "拉脱维亚"; },
        "countries--ly": function(d) { return "利比亚"; },
        "countries--ma": function(d) { return "摩洛哥"; },
        "countries--mc": function(d) { return "摩纳哥"; },
        "countries--md": function(d) { return "摩尔多瓦"; },
        "countries--me": function(d) { return "黑山共和国"; },
        "countries--mf": function(d) { return "圣马丁岛"; },
        "countries--mg": function(d) { return "马达加斯加"; },
        "countries--mh": function(d) { return "马绍尔群岛"; },
        "countries--mk": function(d) { return "北马其顿"; },
        "countries--ml": function(d) { return "马里"; },
        "countries--mm": function(d) { return "缅甸"; },
        "countries--mn": function(d) { return "蒙古"; },
        "countries--mo": function(d) { return "澳门"; },
        "countries--mp": function(d) { return "北马里亚纳群岛"; },
        "countries--mq": function(d) { return "马提尼克岛"; },
        "countries--mr": function(d) { return "毛里塔尼亚"; },
        "countries--ms": function(d) { return "蒙塞拉特岛"; },
        "countries--mt": function(d) { return "马耳他"; },
        "countries--mu": function(d) { return "毛里求斯"; },
        "countries--mv": function(d) { return "马尔代夫"; },
        "countries--mw": function(d) { return "马拉维"; },
        "countries--mx": function(d) { return "墨西哥"; },
        "countries--my": function(d) { return "马来西亚"; },
        "countries--mz": function(d) { return "莫桑比克"; },
        "countries--na": function(d) { return "纳米比亚"; },
        "countries--nc": function(d) { return "新喀里多尼亚"; },
        "countries--ne": function(d) { return "尼日尔"; },
        "countries--nf": function(d) { return "诺福克岛"; },
        "countries--ng": function(d) { return "尼日利亚"; },
        "countries--ni": function(d) { return "尼加拉瓜"; },
        "countries--nl": function(d) { return "荷兰"; },
        "countries--no": function(d) { return "挪威"; },
        "countries--np": function(d) { return "尼泊尔"; },
        "countries--nr": function(d) { return "瑙鲁"; },
        "countries--nu": function(d) { return "纽埃"; },
        "countries--nz": function(d) { return "新西兰"; },
        "countries--om": function(d) { return "阿曼"; },
        "countries--pa": function(d) { return "巴拿马"; },
        "countries--pe": function(d) { return "秘鲁"; },
        "countries--pf": function(d) { return "法属波利尼西亚"; },
        "countries--pg": function(d) { return "巴布亚新几内亚"; },
        "countries--ph": function(d) { return "菲律宾"; },
        "countries--pk": function(d) { return "巴基斯坦"; },
        "countries--pl": function(d) { return "波兰"; },
        "countries--pm": function(d) { return "圣皮埃尔和密克隆"; },
        "countries--pn": function(d) { return "皮特凯恩"; },
        "countries--pr": function(d) { return "波多黎各"; },
        "countries--ps": function(d) { return "巴勒斯坦"; },
        "countries--pt": function(d) { return "葡萄牙"; },
        "countries--pw": function(d) { return "帕劳"; },
        "countries--py": function(d) { return "巴拉圭"; },
        "countries--qa": function(d) { return "卡塔尔"; },
        "countries--re": function(d) { return "留尼汪"; },
        "countries--ro": function(d) { return "罗马尼亚"; },
        "countries--rs": function(d) { return "塞尔维亚"; },
        "countries--ru": function(d) { return "俄罗斯联邦"; },
        "countries--rw": function(d) { return "卢旺达"; },
        "countries--sa": function(d) { return "沙特阿拉伯"; },
        "countries--sb": function(d) { return "所罗门群岛"; },
        "countries--sc": function(d) { return "塞舌尔"; },
        "countries--sd": function(d) { return "苏丹"; },
        "countries--se": function(d) { return "瑞典"; },
        "countries--sg": function(d) { return "新加坡"; },
        "countries--sh": function(d) { return "圣赫勒拿、阿森松和特里斯坦达库尼亚"; },
        "countries--si": function(d) { return "斯洛文尼亚"; },
        "countries--sj": function(d) { return "斯瓦尔巴特和扬马延"; },
        "countries--sk": function(d) { return "斯洛伐克"; },
        "countries--sl": function(d) { return "塞拉利昂"; },
        "countries--sm": function(d) { return "圣马力诺"; },
        "countries--sn": function(d) { return "塞内加尔"; },
        "countries--so": function(d) { return "索马里"; },
        "countries--sr": function(d) { return "苏里南"; },
        "countries--ss": function(d) { return "南苏丹"; },
        "countries--st": function(d) { return "圣多美和普林西比"; },
        "countries--sv": function(d) { return "萨尔瓦多"; },
        "countries--sx": function(d) { return "荷属圣马丁"; },
        "countries--sy": function(d) { return "叙利亚"; },
        "countries--sz": function(d) { return "斯威士兰"; },
        "countries--tc": function(d) { return "特克斯和凯科斯群岛"; },
        "countries--td": function(d) { return "乍得"; },
        "countries--tf": function(d) { return "法属南部领地"; },
        "countries--tg": function(d) { return "多哥"; },
        "countries--th": function(d) { return "泰国"; },
        "countries--tj": function(d) { return "塔吉克斯坦"; },
        "countries--tk": function(d) { return "托克劳"; },
        "countries--tl": function(d) { return "东帝汶"; },
        "countries--tm": function(d) { return "土库曼斯坦"; },
        "countries--tn": function(d) { return "突尼斯"; },
        "countries--to": function(d) { return "汤加"; },
        "countries--tr": function(d) { return "土耳其"; },
        "countries--tt": function(d) { return "特立尼达和多巴哥"; },
        "countries--tv": function(d) { return "图瓦卢"; },
        "countries--tw": function(d) { return "台湾"; },
        "countries--tz": function(d) { return "坦桑尼亚"; },
        "countries--ua": function(d) { return "乌克兰"; },
        "countries--ug": function(d) { return "乌干达"; },
        "countries--um": function(d) { return "美国本土外小岛屿"; },
        "countries--us": function(d) { return "美国"; },
        "countries--uy": function(d) { return "乌拉圭"; },
        "countries--uz": function(d) { return "乌兹别克斯坦"; },
        "countries--va": function(d) { return "梵蒂冈"; },
        "countries--vc": function(d) { return "圣文森特和格林纳丁斯"; },
        "countries--ve": function(d) { return "委内瑞拉"; },
        "countries--vg": function(d) { return "英属维尔京群岛"; },
        "countries--vi": function(d) { return "美属维尔京群岛"; },
        "countries--vn": function(d) { return "越南"; },
        "countries--vu": function(d) { return "瓦努阿图"; },
        "countries--wf": function(d) { return "瓦利斯和富图纳群岛"; },
        "countries--ws": function(d) { return "萨摩亚"; },
        "countries--xk": function(d) { return "科索沃"; },
        "countries--ye": function(d) { return "也门"; },
        "countries--yt": function(d) { return "马约特"; },
        "countries--za": function(d) { return "南非"; },
        "countries--zm": function(d) { return "赞比亚"; },
        "countries--zw": function(d) { return "津巴布韦"; },
        "create-presentation-button": function(d) { return "新建演示文稿"; },
        "create-presentation-button--import-file": function(d) { return "导入文件"; },
        "dashboard--header--personal-workspace-title": function(d) { return "个人"; },
        "dashboard--header--invite-members-button": function(d) { return "添加成员"; },
        "dashboard--header--create-template-button": function(d) { return "新建模板"; },
        "dashboard--header--create-presentation-button--shortcut": function(d) { return "新建演示文稿"; },
        "dashboard--header--create-template-button--shortcut": function(d) { return "新建模板"; },
        "dashboard--header--upload-fonts-button": function(d) { return "上传字体"; },
        "dashboard--header--upload-images-button": function(d) { return "上传图片"; },
        "dashboard--header--upload-videos-button": function(d) { return "上传视频"; },
        "dashboard--header--workspace-menu-button": function(d) { return "设置"; },
        "dashboard--header--starter-badge-text": function(d) { return "入门版"; },
        "dashboard--header--subtitle--private-space": function(d) { return "在私人演示文稿上工作并与他人分享"; },
        "dashboard--header--subtitle--private-folder": function(d) { return "在私人演示文稿上工作,并与他人分享此文件夹或其中的内容"; },
        "dashboard--header--subtitle--shared-space": function(d) { return "跟踪工作区成员与您共享的私人演示文稿"; },
        "dashboard--header--subtitle--shared-folder": function(d) { return d.sharer + " 与您分享了此文件夹"; },
        "dashboard--header--subtitle--shared-folder--unknown-sharer": function(d) { return "某人"; },
        "dashboard--header--subtitle--workspace-folder": function(d) { return "创建每个人都可以访问的演示文稿"; },
        "dashboard--collapsible--folders": function(d) { return "文件夹"; },
        "dashboard--collapsible--presentations": function(d) { return "演示文稿"; },
        "dashboard--collapsible--folders-count": function(d) { return "文件夹(" + d.count + ")"; },
        "dashboard--collapsible--presentations-count": function(d) { return "演示文稿(" + d.count + ")"; },
        "adios-personal-workspace--alert": function(d) { return "再见个人工作区,我们要迎接更大更好的事物!"; },
        "dashboard--profile-popup--open-desktop-app": function(d) { return "打开桌面应用程序"; },
        "dashboard--profile-popup--download-app": function(d) { return "安装应用程序"; },
        "dashboard--profile-popup--download-desktop-app--x64": function(d) { return "适用于带有英特尔处理器的 mac"; },
        "dashboard--profile-popup--download-desktop-app--arm64": function(d) { return "适用于带有 apple m1 的 mac"; },
        "dashboard--profile-popup--download-mobile-app": function(d) { return "下载移动应用程序"; },
        "dashboard--profile-popup--download-ios-app": function(d) { return "下载 ios 应用程序(canary)"; },
        "dashboard--profile-popup--download-android-app": function(d) { return "下载 android 应用程序(canary)"; },
        "dashboard--profile-popup--check-for-updates": function(d) { return "检查更新"; },
        "dashboard--profile-popup--leave-workspace": function(d) { return "离开工作区"; },
        "dashboard--profile-popup--legal-info": function(d) { return "法律信息"; },
        "dashboard--profile-popup--third-party": function(d) { return "第三方声明"; },
        "dashboard--profile-popup--billing": function(d) { return "账单"; },
        "dashboard--profile-popup--upgrade": function(d) { return "升级到专业版"; },
        "dashboard--profile-popup--workspace-members": function(d) { return "工作区成员"; },
        "dashboard--profile-popup--workspace-settings": function(d) { return "工作区设置"; },
        "dashboard--workspace-popover--account-settings": function(d) { return "您的帐户"; },
        "dashboard--profile-popup--setup-profile": function(d) { return "设置公共个人资料"; },
        "dashboard--profile-popup--view-profile": function(d) { return "查看公共个人资料"; },
        "dashboard--profile-popup--logout": function(d) { return "注销 (" + d.email + ")"; },
        "dashboard--workspace-popover--logout": function(d) { return "注销"; },
        "dashboard--create-workspace-unsupported-for-guests--title": function(d) { return "您是该工作区的访客"; },
        "dashboard--create-workspace-unsupported-for-guests--body": function(d) { return "访客无法创建新演示文稿。您可以要求工作区管理员将您设为成员,或在其他工作区中创建演示文稿。"; },
        "dashboard--create-workspace-unsupported-for-guests--cancel": function(d) { return "取消"; },
        "dashboard--create-workspace-unsupported-for-guests--learn-more": function(d) { return "了解更多"; },
        "dashboard--create-workspace-unsupported-for-guests--create-workspace": function(d) { return "创建工作区"; },
        "dashboard--rename-modal--edit-folder-header": function(d) { return "重命名文件夹"; },
        "dashboard--rename-modal--create-folder-header": function(d) { return "新建文件夹"; },
        "dashboard--rename-modal--edit-presentation-header": function(d) { return "重命名演示文稿"; },
        "dashboard--rename-modal--edit-template-header": function(d) { return "重命名模板"; },
        "dashboard--rename-modal--folder-input--placeholder": function(d) { return "文件夹名称"; },
        "dashboard--rename-modal--presentation-input--placeholder": function(d) { return "演示文稿名称"; },
        "dashboard--rename-modal--edit-submit-label": function(d) { return "更新"; },
        "dashboard--rename-modal--create-folder-submit-label": function(d) { return "创建"; },
        "dashboard--rename-modal--emoji-picker-reset-button": function(d) { return "重置"; },
        "dashboard--sidebar--upsell": function(d) { return "升级此工作区"; },
        "dashboard--sidebar--dashboard": function(d) { return "仪表盘"; },
        "dashboard--sidebar--templates": function(d) { return "模板"; },
        "dashboard--sidebar--library": function(d) { return "管理库"; },
        "dashboard--sidebar--trash": function(d) { return "垃圾箱"; },
        "dashboard--sidebar--shared-space--title": function(d) { return "与我共享"; },
        "dashboard--sidebar--shared-with-me": function(d) { return "与我共享"; },
        "dashboard--sidebar--presentations": function(d) { return "演示文稿"; },
        "dashboard--sidebar--home-folder": function(d) { return "主页"; },
        "dashboard--sidebar--workspace": function(d) { return "工作区"; },
        "dashboard--sidebar--private": function(d) { return "私有"; },
        "dashboard--sidebar--create-folder-placeholder": function(d) { return "创建文件夹"; },
        "dashboard--workspace-switcher--new-workspace-button--workspace-discovery-feature-flag": function(d) { return "创建或加入工作区"; },
        "dashboard--workspace-switcher--workspace--hint": function(d) { return "工作区: " + d.workspace_title; },
        "dashboard--sidebar--new-folder-name": function(d) { return "新文件夹"; },
        "dashboard--sidebar--folder-row--context-menu--rename": function(d) { return "重命名"; },
        "dashboard--sidebar--folder-row--context-menu--create-presentation": function(d) { return "新建演示文稿"; },
        "dashboard--sidebar--folder-row--context-menu--create-nested-folder": function(d) { return "新建文件夹"; },
        "dashboard--sidebar--folder-row--context-menu--move-to-toplevel": function(d) { return "移至顶级"; },
        "dashboard--sidebar--folder-row--context-menu--copy-link": function(d) { return "复制链接"; },
        "dashboard--sidebar--folder-row--context-menu--delete": function(d) { return "删除"; },
        "dashboard--sidebar--folder-row--context-menu--share": function(d) { return "共享文件夹"; },
        "dashboard--sidebar--folder-row--context-menu--leave": function(d) { return "离开共享文件夹"; },
        "dashboard--sidebar--folder-row--popover-menu--tooltip": function(d) { return "选项"; },
        "dashboard--sidebar--folder-row--create-presentation--tooltip": function(d) { return "新建演示文稿"; },
        "dashboard--main--templates-teaser--title": function(d) { return "创建演示文稿"; },
        "dashboard--main--templates-teaser--subtitle--library": function(d) { return "将工作区库中的任何模板转换为新演示文稿"; },
        "dashboard--main--templates-teaser--subtitle--gallery": function(d) { return "将任何pitch画廊模板转换为新演示文稿"; },
        "dashboard--main--templates-teaser--cta-button": function(d) { return "浏览全部"; },
        "dashboard--main--templates-teaser--blank": function(d) { return "空白"; },
        "dashboard--main--templates-teaser--library-templates": function(d) { return "库模板"; },
        "dashboard--main--templates-teaser--pitch-templates": function(d) { return "pitch模板画廊"; },
        "dashboard--main--templates-teaser--from": function(d) { return "来自:"; },
        "dashboard--main--sorted-by": function(d) { return "排序方式:"; },
        "dashboard--main--sorting-options--updated": function(d) { return "更新时间"; },
        "dashboard--main--sorting-options--created": function(d) { return "创建时间"; },
        "dashboard--main--sorting-options--title": function(d) { return "标题"; },
        "dashboard--main--shared-folder-button": function(d) { return "共享文件夹(" + d.count + ")"; },
        "dashboard--main--share-folder-button": function(d) { return "共享文件夹"; },
        "dashboard--main--shared-folder-sharer-tooltip": function(d) { return "您可以在工作区与其他人共享此文件夹。"; },
        "dashboard--main--shared-folder-sharer-tooltip-with-sharees": function(d) { return "您已将此文件夹与 " + plural(d.people, 0, en, { one: "1 个人", other: number(d.people, "个人") + " 个人" }) + " 共享。"; },
        "dashboard--main--shared-folder-sharee-tooltip": function(d) { return "此文件夹由 " + d.user_name + " 与您共享。"; },
        "dashboard--main--shared-folder-sharee-tooltip-anonymous-profile-name": function(d) { return "某人"; },
        "folder-sharing-dialog--sharer": function(d) { return "所有者"; },
        "folder-sharing-dialog--invite": function(d) { return "邀请"; },
        "folder-sharing-dialog--no-members-title": function(d) { return "没有与 \"" + d.name + "\" 匹配的成员"; },
        "folder-sharing-dialog--no-members-description": function(d) { return "#[btn] 与他们共享文件夹。"; },
        "folder-sharing-dialog--no-members-description-btn": function(d) { return "邀请工作区成员"; },
        "folder-sharing-dialog-sharer--description": function(d) { return "您可以在此工作区与其他人共享此文件夹。"; },
        "folder-sharing-dialog-sharee--description": function(d) { return "这里列出了所有有权访问此文件夹的人员。只有所有者可以邀请其他人。"; },
        "folder-sharing--invite-email-placeholder": function(d) { return "搜索工作区成员"; },
        "folder-sharing--invite-others--can-edit-title": function(d) { return "可编辑"; },
        "folder-sharing--invite-others--can-edit-description": function(d) { return "可以编辑并与他人共享"; },
        "folder-sharing--invite-others--can-view-title": function(d) { return "只能查看"; },
        "folder-sharing--invite-others--can-view-description": function(d) { return "只能查看演示文稿"; },
        "folder-sharing--invite-others--remove-title": function(d) { return "从文件夹中删除"; },
        "folder-sharing--invite-others--leave-title": function(d) { return "离开"; },
        "dashboard--home--folders--items": function(d) { return plural(d.amount, 0, { "1": "1项", other: number(d.amount, "amount") + " 项" }); },
        "dashboard--home--hero--title": function(d) { return "为您最好的思维留下空白的画布"; },
        "dashboard--home--hero--subtitle": function(d) { return "每个大想法都始于一个幻灯片。"; },
        "dashboard--home--hero--button": function(d) { return "新演示文稿"; },
        "dashboard--folder--hero--title": function(d) { return "您的团队将在这里创作什么?"; },
        "dashboard--folder--hero--subtitle": function(d) { return "您的工作区中的每个人都可以查看并添加演示文稿到此文件夹。如果您想要一些隐私,可以开始在您的私人文件夹中工作。"; },
        "dashboard--folder--hero--button": function(d) { return "新演示文稿"; },
        "dashboard--folder--hero--title-phone": function(d) { return "这里还没有内容"; },
        "dashboard--folder--hero--subtitle-phone": function(d) { return "您可以从我们的桌面应用程序向此文件夹添加演示文稿。"; },
        "dashboard--templates--hero--title": function(d) { return "一个小时制作的模板就是节省的时间"; },
        "dashboard--templates--hero--subtitle": function(d) { return "模板节省时间,轻松创建符合品牌的演示文稿。"; },
        "dashboard--templates--hero--button": function(d) { return "新模板"; },
        "dashboard--fonts--hero--title": function(d) { return "字体让您的品牌生动起来"; },
        "dashboard--fonts--hero--subtitle": function(d) { return "上传自定义字体,让任何人都可以使用它们。"; },
        "dashboard--fonts--hero--button": function(d) { return "上传字体"; },
        "dashboard--images--hero--title": function(d) { return "照片、标志和 gif —— 万物皆可"; },
        "dashboard--images--upsell--title": function(d) { return "总有一张合适的图片"; },
        "dashboard--images--hero--subtitle": function(d) { return "在这里上传图片,这样您团队的每个人都可以使用它们。"; },
        "dashboard--images--upsell--subtitle": function(d) { return "将经过批准的图片添加到您的工作区库中,让其他人可以轻松找到合适的标志、个人照片或品牌资产。"; },
        "dashboard--images--hero--button": function(d) { return "上传图片"; },
        "dashboard-images--no-upsell--title": function(d) { return "图片上传不可用"; },
        "dashboard--images--no-upsell--subtitle": function(d) { return "图片上传不包括在入门计划中,但您可以使用我们的免费集成将图片添加到您的幻灯片中。"; },
        "dashboard--videos--hero--title": function(d) { return "摄影、摄像、行动!"; },
        "dashboard--videos--upsell--title": function(d) { return "为您的故事设定场景"; },
        "dashboard--videos--hero--subtitle": function(d) { return "在这里上传视频,这样您团队的每个人都可以使用它们。"; },
        "dashboard--videos--upsell--subtitle": function(d) { return "让每个人都能轻松添加高质量、可重复使用的视频。您的库让任何人都可以将它们添加到演示文稿中。"; },
        "dashboard--videos--hero--button": function(d) { return "上传视频"; },
        "dashboard-videos--no-upsell--title": function(d) { return "视频上传不可用"; },
        "dashboard--videos--no-upsell--subtitle": function(d) { return "视频上传不包含在入门套餐中,但您可以免费嵌入视频到您的演示文稿中。"; },
        "dashboard--presentation-card--updated": function(d) { return "更新于 " + d.date; },
        "dashboard--presentation-card--breadcrumb-locator": function(d) { return "在"; },
        "dashboard--presentation-card--breadcrumb-tooltip": function(d) { return "转到" + d.title; },
        "dashboard--presentation-card--duplicate-name": function(d) { return "副本 " + d.name; },
        "dashboard--presentation-card--template-label": function(d) { return "模板"; },
        "dashboard--presentation-card--draft-label": function(d) { return "草稿"; },
        "dashboard--leave-shared-document-error": function(d) { return "退出此演示文稿时出了些问题。请稍后再试。"; },
        "dashboard--unrevoke-failure-error": function(d) { return "打开此演示文稿时出了些问题。请稍后再试。"; },
        "dashboard--presentation-card--context-menu--rename": function(d) { return "重命名"; },
        "dashboard--presentation-card--context-menu--move": function(d) { return "移动到文件夹"; },
        "dashboard--presentation-card--context-menu--change-workspace": function(d) { return "移动到工作区"; },
        "dashboard--presentation-card--context-menu--duplicate": function(d) { return "复制"; },
        "dashboard--presentation-card--context-menu--save-as-template": function(d) { return "转换为模板"; },
        "dashboard--presentation-card--context-menu--copy-link": function(d) { return "复制链接"; },
        "dashboard--presentation-card--context-menu--subscribe": function(d) { return "订阅"; },
        "dashboard--presentation-card--context-menu--subscribe-tooltip-title": function(d) { return "订阅此演示文稿的活动"; },
        "dashboard--presentation-card--context-menu--unsubscribe-tooltip-title": function(d) { return "取消订阅此演示文稿的活动"; },
        "dashboard--presentation-card--context-menu--subscribe-tooltip-text": function(d) { return "获取有关所有新评论和标记为已完成的幻灯片的通知"; },
        "dashboard--presentation-card--context-menu--unsubscribe-tooltip-text": function(d) { return "您只会收到直接涉及您的活动通知。"; },
        "dashboard--presentation-card--context-menu--unsubscribe": function(d) { return "取消订阅"; },
        "dashboard--presentation-card--context-menu--open-in-desktop": function(d) { return "在桌面应用程序中打开"; },
        "dashboard--presentation-card--context-menu--delete": function(d) { return "删除"; },
        "dashboard--shared-presentation-card--context-menu--duplicate": function(d) { return "复制"; },
        "dashboard--shared-presentation-card--context-menu--copy-link": function(d) { return "复制链接"; },
        "dashboard--shared-presentation-card--context-menu--open-in-desktop": function(d) { return "在桌面应用程序中打开"; },
        "dashboard--shared-presentation-card--context-menu--leave": function(d) { return "离开"; },
        "dashboard--shared-presentation-card--popover--title": function(d) { return "由#[shared_by]共享"; },
        "dashboard--shared-presentation-card--popover-menu--duplicate": function(d) { return "复制"; },
        "dashboard--shared-presentation-card--popover-menu--copy-link": function(d) { return "复制链接"; },
        "dashboard--shared-presentation-card--popover-menu--leave": function(d) { return "离开"; },
        "dashboard--presentation-card--context-menu--move-to-trash--confirmation": function(d) { return "移到废纸篓?"; },
        "dashboard--presentation-card--context-menu--move-to-trash--confirmation-copy": function(d) { return "这将将演示文稿移动到此工作区中的所有人的废纸篓,但任何人都可以从废纸篓中恢复它。"; },
        "dashboard--presentation-card--context-menu--move-to-trash--confirmation-button": function(d) { return "移到废纸篓"; },
        "dashboard--presentation-card--context-menu--delete--confirmation": function(d) { return "删除演示文稿?"; },
        "dashboard--presentation-card--context-menu--delete--confirmation-copy": function(d) { return "这将删除此演示文稿,对于此工作区中的所有人都将不可恢复。"; },
        "dashboard--presentation-card--context-menu--delete--confirmation-button": function(d) { return "删除"; },
        "dashboard--presentation-card--template-context-menu--delete--confirmation": function(d) { return "删除模板?"; },
        "dashboard--presentation-card--template-context-menu--delete--confirmation-copy": function(d) { return "这将删除此模板,对于此工作区中的所有人都将不可恢复。"; },
        "dashboard--presentation-card--template-context-menu--delete--confirmation-button": function(d) { return "删除"; },
        "dashboard--presentation-card--template-context-menu--edit--message": function(d) { return "编辑工作区模板?"; },
        "dashboard--presentation-card--template-context-menu--edit--comment": function(d) { return "您正在更改整个团队的模板。他们创建的新演示文稿将基于这些更改。"; },
        "dashboard--presentation-card--template-context-menu--edit--confirmation-button": function(d) { return "编辑模板"; },
        "dashboard--presentation-card--public-badge-popup": function(d) { return "公开访问"; },
        "dashboard--presentation-card--private-badge-popup": function(d) { return "私人演示文稿"; },
        "template-created-modal--copy": function(d) { return "就这样!您的模板已准备就绪。您可以自己使用它,也可以与团队成员共享。"; },
        "template-created-modal--edit-button": function(d) { return "编辑模板"; },
        "template-created-modal--view-templates-button": function(d) { return "查看模板"; },
        "dashboard--move-presentation-modal--title": function(d) { return "移动到文件夹"; },
        "dashboard--move-presentation-modal--action": function(d) { return "移动到 " + d.folder_title; },
        "dashboard--create-presentation-modal--title": function(d) { return "创建演示文稿"; },
        "dashboard--create-presentation-modal--submit-button": function(d) { return "在此文件夹中创建"; },
        "dashboard--create-presentation-modal--starter-plan-info-message--cannot-create-private-presentations": function(d) { return "您不能在初始计划中创建私人演示文稿。"; },
        "dashboard--create-presentation-modal--starter-plan-info-message--select-workspace-folder": function(d) { return "#[message] 请改为选择工作区文件夹。"; },
        "dashboard--change-workspace-presentation-modal--title": function(d) { return "移动 \"" + d.presentation_title + "\""; },
        "dashboard--duplicate-shared-document-modal--title": function(d) { return "复制 \"" + d.presentation_title + "\""; },
        "dashboard--change-workspace-document-error": function(d) { return "移动此演示文稿时出了一些问题,请稍后再试。"; },
        "dashboard--change-workspace-document-modal--copy": function(d) { return "移动此演示文稿将使它在当前工作区对所有人不可用,并与新工作区中的所有人共享。"; },
        "dashboard--duplicate-shared-document-modal--presentation-stays-private": function(d) { return "当你复制#[title]时,它将进入你的#[target]。"; },
        "dashboard--duplicate-shared-document-modal--presentation-stays-private--target": function(d) { return "私人文件夹"; },
        "dashboard--duplicate-shared-document-modal--presentation-will-be-public": function(d) { return "这个工作区没有私人文件夹。当你复制#[title]时,它将是#[target]。"; },
        "dashboard--duplicate-shared-document-modal--presentation-will-be-public--target": function(d) { return "对整个工作区可见"; },
        "dashboard--change-workspace-private-document-modal--presentation-stays-private": function(d) { return "当你移动#[title]时,它将进入你的#[target]。"; },
        "dashboard--change-workspace-private-document-modal--presentation-stays-private--target": function(d) { return "私人文件夹"; },
        "dashboard--change-workspace-private-document-modal--presentation-will-be-public": function(d) { return "这个工作区没有私人文件夹。当你移动#[title]时,它将是#[target]。"; },
        "dashboard--change-workspace-private-document-modal--presentation-will-be-public--target": function(d) { return "对整个工作区可见"; },  
        "dashboard--change-workspace-document-modal--move-to": function(d) { return "移动到:"; },
        "dashboard--duplicate-shared-document-modal--duplicate-to": function(d) { return "复制到:"; },
        "dashboard--move-private-or-shared-document--confirmation-text": function(d) { return "确认"; },
        "dashboard--move-private-or-shared-document--confirmation-message": function(d) { return "与整个工作区共享此演示文稿?"; },
        "dashboard--move-private-or-shared-document--confirmation-comment": function(d) { return "此演示文稿将出现在没有私人文件夹的工作区中。它将对所有成员可见。"; },
        "dashboard--change-workspace-document-modal--button": function(d) { return "移动到 " + d.workspace_title; },
        "dashboard--duplicate-shared-document-modal--button": function(d) { return "复制到 " + d.workspace_title; },
        "toast--invitations-sent-text": function(d) { return "恭喜!您已邀请" + plural(d.people, 0, { one: "1个人", other: number(d.people, "人") }) + "加入"; },
        "dashboard--dirents--untitled-presentation": function(d) { return "未命名演示文稿"; },
        "dashboard--window-title": function(d) { return "pitch"; },
        "dashboard--private-area--hero--title": function(d) { return "此文件夹仅供您使用"; },
        "dashboard--private-area--hero--subtitle": function(d) { return "此处的演示文稿在您与他人共享之前是私有的。"; },
        "dashboard--private-area--hero--button": function(d) { return "新建演示文稿"; },
        "dashboard--shared-space--hero--title": function(d) { return "分享就是关爱"; },
        "dashboard--shared-space--hero--subtitle": function(d) { return "当你的工作区成员邀请你参与私密演示文稿时,你会在这里看到它们。"; },
        "dashboard--shared-folder-sharee--hero--title": function(d) { return "这是 " + d.user_name + " 的文件夹"; },
        "dashboard--shared-folder-sharee--hero--subtitle": function(d) { return "他们与你共享它,以便你们可以一起工作"; },
        "dashboard--shared-folder-sharee--hero--deactivated-account": function(d) { return "一个已停用的帐户"; },
        "dashboard--shared-folder-sharer--hero--subtitle-row-1": function(d) { return "你已经与 " + plural(d.people, 0, en, { one: "1 个人", other: number(d.people, "个人") + " 个人" }) + " 共享了这个私密文件夹。"; },
        "dashboard--shared-folder-sharer--hero--subtitle-row-2": function(d) { return "创建一个演示文稿开始协作。"; },
        "dashboard--convert-template--modal--title": function(d) { return "转换为模板"; },
        "dashboard--move-to-private-space-modal--cancel": function(d) { return "取消"; },
        "dashboard--move-to-private-space-modal--move": function(d) { return "移动并保持私密"; },
        "dashboard--move-from-private-space-modal--cancel": function(d) { return "保持私密"; },
        "dashboard--move-from-private-space-modal--move": function(d) { return "移动并分享"; },
        "dashboard--move-to-private-space-modal--title": function(d) { return "移动此演示文稿将使其变为私密"; },
        "dashboard--move-to-private-space-modal--text": function(d) { return "如果您将 #[title] 移动到 #[folder_name],则 #[workspace_name] 工作区的所有成员都将失去对其的访问权限。"; },
        "dashboard--move-from-private-space-modal--title": function(d) { return "移动此演示文稿将与他人共享"; },
        "dashboard--move-from-private-space-modal--text": function(d) { return "为了避免意外的隐私问题:当您将 #[title] 移动到 #[folder_name] 时,#[workspace_name] 工作区中的每个人都将看到它。"; },
        "dashboard--move-unsupported-modal--title": function(d) { return "不支持此操作"; },
        "dashboard--move-unsupported-modal--text": function(d) { return "您需要联网才能将演示文稿移动到其他位置。"; },
        "dashboard--move-unsupported-modal--ok": function(d) { return "ok"; },
        "dashboard--presentation-card--more-options-icon-title": function(d) { return "选项"; },
        "desktop-app--tabs--context-menu--close-other-tabs": function(d) { return "关闭其他选项卡"; },
        "desktop-app--tabs--context-menu--copy-link": function(d) { return "复制链接"; },
        "desktop-app--menu--file": function(d) { return "文件"; },
        "desktop-app--menu--edit": function(d) { return "编辑"; },
        "desktop-app--menu--redo": function(d) { return "重做"; },
        "desktop-app--menu--visit-the-website": function(d) { return "访问网站"; },
        "desktop-app--menu--visit-whats-new": function(d) { return "更新内容"; },
        "desktop-app--menu--visit-help-center": function(d) { return "帮助中心"; },
        "desktop-app--menu--delete": function(d) { return "删除"; },
        "desktop-app--menu--speech": function(d) { return "语音"; },
        "desktop-app--menu--check-for-updates": function(d) { return "检查更新..."; },
        "desktop-app--menu--new-presentation": function(d) { return "新演示文稿"; },
        "desktop-app--menu--export-pdf": function(d) { return "导出为 pdf"; },
        "desktop-app--menu--export-ppt": function(d) { return "导出为 powerpoint"; },
        "desktop-app--menu--undo": function(d) { return "撤销"; },
        "desktop-app--menu--view": function(d) { return "查看"; },
        "desktop-app--menu--new-window": function(d) { return "新建窗口"; },
        "editor--headline--origin-link--tooltip": function(d) { return "前往" + d.title; },
        "editor--three-line-popup--go-to-templates": function(d) { return "前往模板"; },
        "editor--three-line-popup--save-as-template": function(d) { return "另存为模板"; },
        "editor--three-line-popup--rename-presentation": function(d) { return "重命名演示文稿"; },
        "editor--three-line-popup--rename-template": function(d) { return "重命名模板"; },
        "editor--three-line-popup--open-in-desktop": function(d) { return "在桌面应用程序中打开"; },
        "editor--three-line-popup--show-deleted-slides": function(d) { return "显示已删除的幻灯片"; },
        "editor--option-panels--workflow-title": function(d) { return "工作流程"; },
        "editor--option-panels--design-title": function(d) { return "设计"; },
        "editor--option-panels--comments-title": function(d) { return "评论"; },
        "editor--option-panels--notes-title": function(d) { return "笔记"; },
        "editor--option-panels--tooltip--mixed-slide-status": function(d) { return "幻灯片状态混合"; },
        "editor--option-panels--tooltip--set-slide-status": function(d) { return "设置幻灯片状态"; },
        "editor--option-panels--tooltip--slide-status": function(d) { return "幻灯片状态"; },
        "editor--option-panels--tooltip--mixed-slide-assignment": function(d) { return "幻灯片分配混合"; },
        "editor--option-panels--tooltip--assign-slides": function(d) { return "分配幻灯片"; },
        "editor--option-panels--tooltip--assign-slide": function(d) { return "分配幻灯片"; },
        "editor--option-panels--tooltip--assigned-to": function(d) { return "分配给"; },
        "editor--option-panels--tooltip--join-last-name": function(d) { return "和"; },
        "editor--option-panels--tooltip--you": function(d) { return "你"; },
        "editor--option-panels--tooltip--design": function(d) { return "打开设计面板"; },
        "editor--option-panels--tooltip--animations": function(d) { return "打开动画面板"; },
        "editor--option-panels--tooltip--add-comments": function(d) { return "添加评论"; },
        "editor--option-panels--tooltip--add-notes": function(d) { return "添加笔记"; },
        "editor--option-panels--tooltip--version-history": function(d) { return "查看版本历史"; },
        "editor--option-panels--reactions--toggle-label": function(d) { return "反应"; },
        "editor--option-panels--reactions--reacted-with": function(d) { return "反应了"; },
        "editor--option-panels--reactions--add-reaction": function(d) { return "添加反应"; },
        "editor--option-panels--reactions--click-to-remove": function(d) { return "单击以删除"; },
        "editor--option-panels--reactions--click-to-add": function(d) { return "单击以添加"; },
        "editor--help-menu--trigger-tooltip": function(d) { return "帮助"; },
        "editor--help-menu--contact": function(d) { return "联系我们"; },
        "editor--help-menu--help-center": function(d) { return "帮助中心"; },
        "editor--help-menu--legal-info": function(d) { return "法律信息"; },
        "editor--help-menu--third-party": function(d) { return "第三方通知"; },
        "editor--help-menu--keyboard-shortcuts": function(d) { return "键盘快捷键"; },
        "editor--help-menu--whats-new": function(d) { return "有什么新功能?"; },
        "editor--help-menu--learn-the-basics": function(d) { return "了解基础知识"; },
        "editor--help-menu--visit-website": function(d) { return "访问我们的主页"; },
        "editor--help-menu--feature-flags": function(d) { return "功能标志"; },
        "editor--slide-status": function(d) { return "幻灯片状态"; },
        "editor--slide-status--todo": function(d) { return "待办"; },
        "editor--slide-status--in-progress": function(d) { return "进行中"; },
        "editor--slide-status--done": function(d) { return "完成"; },
        "editor--slide-status--none": function(d) { return "无状态"; },
        "editor--group-context-menu--ungroup": function(d) { return "取消分组"; },
        "editor--group-context-menu--group": function(d) { return "分组"; },
        "editor--group-context-menu--cut": function(d) { return "剪切"; },
        "editor--group-context-menu--copy": function(d) { return "复制"; },
        "editor--group-context-menu--paste": function(d) { return "粘贴"; },
        "editor--group-context-menu--duplicate": function(d) { return "复制"; },
        "editor--group-context-menu--delete": function(d) { return "删除"; },
        "alert--create-detected-groups-description": function(d) { return plural(d.count, 0, en, { one: "检测到1个相似的组", other: "检测到" + number(d.count, "count") + "个相似的组" }); },
        "alert--create-detected-groups-button": function(d) { return "组合"; },
        "alert--grouping-locked-blocks-not-groupable-title": function(d) { return "无法创建组"; },
        "alert--grouping-locked-blocks-not-groupable-description": function(d) { return "请先解锁任何锁定的块,然后重试。"; },
        "alert--grouping-locked-groups-not-ungroupable-title": function(d) { return "无法取消分组"; },
        "alert--grouping-locked-groups-not-ungroupable-description": function(d) { return "请解锁该组,然后重试。"; },
        "alert--grouping-some-blocks-excluded-title": function(d) { return "部分创建组"; },
        "alert--grouping-some-blocks-excluded-description": function(d) { return d.block_type + " 无法被分组。"; },
        "alert--grouping-block-types-not-groupable-title": function(d) { return "无法创建组"; },
        "alert--grouping-block-types-not-groupable-description": function(d) { return d.block_type + " 无法被分组。"; },
        "alert--grouping-nested-groups-not-groupable-title": function(d) { return "无法创建组"; },
        "alert--grouping-nested-groups-not-groupable-description": function(d) { return "请先取消任何已存在的分组,然后重试。"; },
        "editor--context-menu--order": function(d) { return "顺序"; },
        "editor--block-context-menu--bring-to-front": function(d) { return "移到最前"; },
        "editor--block-context-menu--bring-forward": function(d) { return "向前移动"; },
        "editor--block-context-menu--send-to-back": function(d) { return "移到最后"; },
        "editor--block-context-menu--send-backward": function(d) { return "向后移动"; },
        "editor--block-context-menu--lock": function(d) { return "锁定位置"; },
        "editor--block-context-menu--unlock": function(d) { return "解除位置锁定"; },
        "editor--block-context-menu--cut": function(d) { return "剪切"; },
        "editor--block-context-menu--copy": function(d) { return "复制"; },
        "editor--block-context-menu--paste": function(d) { return "粘贴"; },
        "editor--block-context-menu--duplicate": function(d) { return "复制"; },
        "editor--block-context-menu--delete": function(d) { return "删除"; },
        "editor--block-context-menu--inspect-in-dev-panel": function(d) { return "在开发面板中查看"; },
        "editor--block-context-menu--inspect-block-in-dev-panel": function(d) { return "在开发面板中查看块"; },
        "editor--block-context-menu--inspect-group-in-dev-panel": function(d) { return "在开发面板中查看组"; },
        "editor--context-menu--align": function(d) { return "对齐"; },
        "editor--context-menu--align-left": function(d) { return "左对齐"; },
        "editor--context-menu--align-center": function(d) { return "居中对齐"; },
        "editor--context-menu--align-top": function(d) { return "顶部对齐"; },
        "editor--context-menu--align-middle": function(d) { return "中间对齐"; },
        "editor--context-menu--align-bottom": function(d) { return "底部对齐"; },
        "editor--context-menu--align-right": function(d) { return "右对齐"; },
        "editor--context-menu--distribute-vertically": function(d) { return "垂直分布"; },
        "editor--context-menu--distribute-horizontally": function(d) { return "水平分布"; },
        "editor--context-menu--distribute": function(d) { return "分布"; },
        "editor--block-context-menu--use-as-background": function(d) { return "作为背景使用"; },
        "editor--block-context-menu--insert-col": function(d) { return plural(d.selected_cols_count, 0, en, { "1": "插入列", other: "插入 " + number(d.selected_cols_count, "selected_cols_count") + " 列" }); },
        "editor--block-context-menu--delete-col": function(d) { return plural(d.selected_cols_count, 0, en, { "1": "删除列", other: "删除 " + number(d.selected_cols_count, "selected_cols_count") + " 列" }); },
        "editor--block-context-menu--insert-row": function(d) { return plural(d.selected_rows_count, 0, en, { "1": "插入行", other: "插入 " + number(d.selected_rows_count, "selected_rows_count") + " 行" }); },
        "editor--block-context-menu--delete-row": function(d) { return plural(d.selected_rows_count, 0, en, { "1": "删除行", other: "删除 " + number(d.selected_rows_count, "selected_rows_count") + " 行" }); },
        "editor--block-context-menu--table-clear": function(d) { return "清除"; },
        "editor--insert-table--default": function(d) { return "插入表格"; },
        "editor--insert-table--cols-rows": function(d) { return "插入 " + d.cols_x_rows + " 表格"; },
        "alert--table-max-constraints--title": function(d) { return "粘贴的数据过多"; },
        "alert--table-max-constraints--description": function(d) { return "您只能一次粘贴 " + d.max_cols + " 列 x " + d.max_rows + " 行的数据。"; },
        "alert--chart-max-constraints--title": function(d) { return plural(d.pasted_cols, 0, en, { "1": "只粘贴了 1 列", other: "只粘贴了 " + number(d.pasted_cols, "pasted_cols") + " 列" }); },
        "alert--chart-max-constraints--description": function(d) { return plural(d.max_cols, 0, en, { "1": "此图表最多只支持 1 列数据。", other: "此图表最多只支持 " + number(d.max_cols, "max_cols") + " 列数据。" }); },
        "editor--canvas--swap-tooltip-label": function(d) { return "交换"; },
        "editor--canvas-context-menu--paste": function(d) { return "粘贴"; },
        "editor--canvas-context-menu--add-background-image": function(d) { return "添加背景图片"; },
        "editor--canvas-context-menu--detach-background-image": function(d) { return "取消绑定"; },
        "editor--canvas-context-menu--background-image-submenu": function(d) { return "背景图片"; },
        "editor--canvas-context-menu--replace-background-image": function(d) { return "替换"; },
        "editor--canvas-context-menu--remove-background-image": function(d) { return "移除"; },
        "editor--canvas--edit-chart-data--category-column-header": function(d) { return "分类"; },
        "editor--canvas--edit-chart-data--value-column-header": function(d) { return "数值"; },
        "editor--canvas--edit-chart-format--decimal-points": function(d) { return "小数位数"; },
        "editor--canvas--edit-chart-format--decimal-points--none": function(d) { return "无"; },
        "editor--canvas--edit-chart-format--set-locale": function(d) { return "区域"; },
        "editor--canvas--edit-chart-format--format": function(d) { return "格式"; },
        "editor--canvas--edit-chart-format--type": function(d) { return "类型"; },
        "editor--canvas--edit-chart-format--currency": function(d) { return "货币"; },
        "editor--canvas--edit-chart-format--button-text": function(d) { return "格式: " + d.column_type; },
        "editor--canvas--replace-chart-data": function(d) { return "替换数据"; },
        "editor--chart--default-column-label-1": function(d) { return "半满"; },
        "editor--chart--default-column-label-2": function(d) { return "半空"; },
        "editor--chart--default-column-label-3": function(d) { return "较满"; },
        "editor--chart--default-column-label-4": function(d) { return "较空"; },
        "editor--chart--default-column-label-5": function(d) { return "满月"; },
        "editor--chart--default-column-label-6": function(d) { return "新月"; },
        "editor--chart--default-column-label-7": function(d) { return "上弦月"; },
        "editor--chart--default-column-label-8": function(d) { return "下弦月"; },
        "editor--chart--pie-default-label-1": function(d) { return "蓝莓派"; },
        "editor--chart--pie-default-label-2": function(d) { return "牧羊人馅饼"; },
        "editor--chart--pie-default-label-3": function(d) { return "饼图派"; },
        "editor--chart--line-default-label-1": function(d) { return "航空公司"; },
        "editor--chart--line-default-label-2": function(d) { return "裙线"; },
        "editor--chart--line-default-label-3": function(d) { return "直线"; },
        "editor--chart--line-default-label-4": function(d) { return "离线"; },
        "editor--chart--bar-default-label-1": function(d) { return "巧克力棒"; },
        "editor--chart--bar-default-label-2": function(d) { return "燕麦棒"; },
        "editor--chart--bar-default-label-3": function(d) { return "冰淇淋棒"; },
        "editor--chart--bar-default-label-4": function(d) { return "撬棒"; },
        "editor--embed--cannot-load-website": function(d) { return "我们无法加载嵌入的网站。如果问题持续,请联系支持。"; },
        "editor--embed--player-cannot-load-website": function(d) { return "我们无法加载嵌入的网站。如果问题持续,请联系支持。"; },
        "editor--embed--paste-any-link": function(d) { return "粘贴任何链接,嵌入"; },
        "editor--text--add-text": function(d) { return "添加文本"; },
        "editor--embed--embed-button": function(d) { return "保存嵌入url"; },
        "editor--slide-status--remove": function(d) { return "删除状态"; },
        "editor--block--opacity": function(d) { return "不透明度"; },
        "editor--slide-assignee": function(d) { return "幻灯片受让人"; },
        "editor--slide-assignee--unassigned": function(d) { return "未指定"; },
        "editor--slide-assignee--remove-assignee": function(d) { return "删除受让人"; },
        "editor--slide-assignee--placeholder": function(d) { return "分配给..."; },
        "editor--slide-assignee--not-found-tip": function(d) { return "确保他们是此工作区的成员并接受了此演示文稿的邀请。"; },
        "editor--slide-assignee--search-empty-text": function(d) { return "我们找不到那个人。请重试或邀请其他人参加此演示文稿。"; },
        "editor--slide-assignee--search-empty-action": function(d) { return "邀请其他人"; },
        "editor--slide-comment--search-empty-action": function(d) { return "邀请其他人"; },
        "editor--comment--save": function(d) { return "保存"; },
        "editor--comment--delete": function(d) { return "删除"; },
        "editor--comment--edit": function(d) { return "编辑"; },
        "editor--comment--copy-link": function(d) { return "复制链接"; },
        "editor--comment--link-copied-alert": function(d) { return "链接已复制"; },
        "editor--comment--edit-action": function(d) { return "编辑评论"; },
        "editor--comment--reply-action": function(d) { return "回复 " + d.author; },
        "editor--comment--re-open": function(d) { return "重新开启"; },
        "editor--comment--resolve": function(d) { return "解决"; },
        "editor--comment--send": function(d) { return "发送"; },
        "editor--comment--cancel": function(d) { return "取消"; },
        "editor--comment--more-options": function(d) { return "更多选项"; },
        "editor--comment--add-a-comment": function(d) { return "添加评论..."; },
        "editor--comment--post": function(d) { return "发布"; },
        "editor--comment--to-post": function(d) { return "发布"; },
        "editor--comment--leave-a-comment": function(d) { return "在此幻灯片上留下评论。"; },
        "editor--comment-add-pitch-to-slack-nudge-text": function(d) { return "立即查看回复"; },
        "editor--comment-add-pitch-to-slack-nudge-link": function(d) { return "将 pitch 添加到 slack"; },
        "editor--comment--resolved": function(d) { return "已解决"; },
        "editor--comment--reply": function(d) { return "回复"; },
        "editor--comment--reply-placeholder": function(d) { return "回复..."; },
        "editor--comment--mentions-tooltip": function(d) { return "提到某人"; },
        "editor--connected-users--you": function(d) { return "您"; },
        "editor--connected-users--invite-others": function(d) { return "邀请其他人"; },
        "editor--document--untitled": function(d) { return "无标题"; },
        "editor--block--text-display-name": function(d) { return "文本"; },
        "editor--block--chart-display-name": function(d) { return "图表"; },
        "editor--block--sticker-display-name": function(d) { return "贴纸"; },
        "editor--block--image-display-name": function(d) { return "图像"; },
        "editor--block--media-display-name": function(d) { return "媒体"; },
        "editor--block--shape-display-name": function(d) { return "形状"; },
        "editor--block--embed-display-name": function(d) { return "嵌入"; },
        "editor--block--table-display-name": function(d) { return "表格"; },
        "editor--block--video-display-name": function(d) { return "视频"; },
        "editor--block--clip-display-name": function(d) { return "录制"; },
        "editor--chart-display-name-bar": function(d) { return "柱形图"; },
        "editor--chart-display-name-stack-bar": function(d) { return "堆积柱形图"; },
        "editor--chart-display-name-horizontal-bar": function(d) { return "条形图"; },
        "editor--chart-display-name-stack-horizontal-bar": function(d) { return "堆积条形图"; },
        "editor--chart-display-name-line": function(d) { return "折线图"; },
        "editor--chart-display-name-area": function(d) { return "面积图"; },
        "editor--chart-display-name-stack-area": function(d) { return "堆积面积图"; },
        "editor--chart-display-name-pie": function(d) { return "饼图"; },
        "editor--chart-display-name-short-bar": function(d) { return "柱"; },
        "editor--chart-display-name-short-stack-bar": function(d) { return "堆积柱"; },
        "editor--chart-display-name-short-horizontal-bar": function(d) { return "条"; },
        "editor--chart-display-name-short-stack-horizontal-bar": function(d) { return "堆积条"; },
        "editor--chart-display-name-short-line": function(d) { return "线"; },
        "editor--chart-display-name-short-area": function(d) { return "面积"; },
        "editor--chart-display-name-short-stack-area": function(d) { return "堆积面积"; },
        "editor--chart-display-name-short-pie": function(d) { return "饼"; },
        "editor--chart-popover--column-bar-group-label": function(d) { return "柱状图和条形图"; },
        "editor--chart-popover--line-area-group-label": function(d) { return "折线图和面积图"; },
        "editor--chart-popover--pie-donut-group-label": function(d) { return "饼图和甜甜圈图"; },
        "editor--chart-popover--bar-chart-title": function(d) { return "柱状图"; },
        "editor--chart-popover--multi-bar-chart-title": function(d) { return "多柱状图"; },
        "editor--chart-popover--stacked-bar-chart-title": function(d) { return "堆叠柱状图"; },
        "editor--chart-popover--horizontal-bar-chart-title": function(d) { return "条形图"; },
        "editor--chart-popover--multi-horizontal-bar-chart-title": function(d) { return "多条形图"; },
        "editor--chart-popover--horizontal-stacked-bar-chart-title": function(d) { return "堆叠条形图"; },
        "editor--chart-popover--line-chart-title": function(d) { return "折线图"; },
        "editor--chart-popover--line-chart-dots-title": function(d) { return "带点的折线图"; },
        "editor--chart-popover--multi-line-chart-title": function(d) { return "多折线图"; },
        "editor--chart-popover--multi-line-chart-dots-title": function(d) { return "带点的多折线图"; },
        "editor--chart-popover--stacked-area-chart-title": function(d) { return "堆叠面积图"; },
        "editor--chart-popover--area-chart-title": function(d) { return "面积图"; },
        "editor--chart-popover--donut-chart-title": function(d) { return "甜甜圈图"; },
        "editor--chart-popover--pie-chart-title": function(d) { return "饼图"; },
        "editor--chart-popover--chart-headline": function(d) { return "图表"; },
        "editor--chart-popover--integrations-label": function(d) { return "集成"; },
        "editor--chart-popover--disconnect-button-text": function(d) { return "断开连接"; },
        "editor--chart-popover--csv-import-title": function(d) { return "导入 csv 文件"; },
        "editor--chart-popover--csv-import-button-text": function(d) { return "选择文件"; },
        "editor--chart-popover--csv-import-text": function(d) { return "从现有的 csv 文件创建图表或表格。"; },
        "editor--chart-popover--google-sheets-title": function(d) { return "google sheets"; },
        "editor--chart-popover--google-sheets-button-text": function(d) { return "连接"; },
        "editor--chart-popover--google-sheets-text": function(d) { return "通过您的 google sheets 帐户直接将数据导入 pitch。"; },
        "editor--chart-popover--google-analytics-title": function(d) { return "google analytics"; },
        "editor--chart-popover--google-analytics-server-side-title": function(d) { return "google analytics(试验版)"; },
        "editor--chart-popover--google-analytics-button-text": function(d) { return "连接"; },
        "editor--chart-popover--google-analytics-text": function(d) { return "直接从您的 google analytics 帐户将数据导入 pitch。"; },
        "editor--chart-popover--chartmogul-title": function(d) { return "chartmogul"; },
        "editor--chart-popover--chartmogul-text": function(d) { return "连接您的 chartmogul 帐户,直接将数据导入 pitch。输入您的 chartmogul api 密钥以开始。"; },
        "editor--chart-popover--chartmogul-button-text": function(d) { return "连接"; },
        "editor--chart-popover--chartmogul-api-key-input-placeholder": function(d) { return "api 密钥"; },
        "editor--chart-popover--suggest-integration-text": function(d) { return "您想在此列表中看到哪些其他应用程序?"; },
        "editor--chart-popover--suggest-integration-link-label": function(d) { return "告诉我们"; },
        "editor--chart-popover--offline-message": function(d) { return d.integration + " 需要互联网连接才能工作。请检查您是否在线并重试。"; },
        "editor--chart-popover--chartmogul-tooltip-text": function(d) { return "访问我们的帮助中心以了解如何设置此集成。"; },
        "editor--chart-popover--chartmogul-tooltip-link": function(d) { return "前往帮助中心"; },
        "editor--embeds-popover--feedback-request": function(d) { return "使用过嵌入式元素吗?帮助我们使它们变得更好。"; },
        "editor--embeds-popover--feedback-request-action": function(d) { return "分享你的反馈"; },
        "editor--embeds-popover--invalid-url-title": function(d) { return "请输入链接"; },
        "editor--embeds-popover--invalid-url-description": function(d) { return "您可以复制从浏览器地址栏中找到的链接。"; },
        "editor--embeds-popover--unsupported-vendor-title": function(d) { return "此服务目前不受支持"; },
        "editor--embeds-popover--unsupported-vendor-description": function(d) { return "请从左侧列表中尝试其他服务。"; },
        "editor--embeds-popover--add-embed-block": function(d) { return "添加"; },
        "editor--embeds-popover--beta-warning": function(d) { return "测试版"; },
        "editor--text-alignment-left": function(d) { return "左对齐"; },
        "editor--text-alignment-center": function(d) { return "居中"; },
        "editor--text-alignment-right": function(d) { return "右对齐"; },
        "editor--text-alignment-justify": function(d) { return "两端对齐"; },
        "editor--text-alignment-top": function(d) { return "顶部对齐"; },
        "editor--text-alignment-vertical-center": function(d) { return "垂直居中"; },
        "editor--text-alignment-bottom": function(d) { return "底部对齐"; },
        "editor--text-type-headline-big": function(d) { return "标题"; },
        "editor--text-type-headline-medium": function(d) { return "大标题"; },
        "editor--text-type-headline-small": function(d) { return "副标题"; },
        "editor--text-type-paragraph": function(d) { return "正文"; },
        "editor--text-type-paragraph-small": function(d) { return "小字体正文"; },
        "editor--text-type-bullet-list": function(d) { return "项目符号列表"; },
        "editor--text-type-number-list": function(d) { return "有序列表"; },
        "editor--image--rounded-corners": function(d) { return "圆角"; },
        "editor--image--shadow": function(d) { return "阴影"; },
        "editor--image--overlay": function(d) { return "覆盖"; },
        "editor--image--remove-background": function(d) { return "去除背景"; },
        "editor--image--filter": function(d) { return "滤镜"; },
        "editor--colourable-image-fill-label": function(d) { return "颜色"; },
        "editor--image--filter--missing-image": function(d) { return "请先选择一张图片以使用滤镜功能。"; },
        "editor--image--filter--missing-clip": function(d) { return "请先选择一个录屏以使用滤镜功能。"; },
        "editor--style-switcher--style-item--duplicate-name": function(d) { return "复制 " + d.name; },
        "editor--style-switcher--heading--workspace-styles": function(d) { return "工作区样式"; },
        "editor--style-switcher--heading--this-presentation": function(d) { return "这个演示文稿"; },
        "editor--style-switcher--heading--slide-style": function(d) { return "幻灯片样式"; },
        "editor--style-switcher--button--new-style": function(d) { return "新样式"; },
        "editor--expand--button-text": function(d) { return "最大化"; },
        "editor--collapse--button-text": function(d) { return "最小化"; },
        "editor--style-switcher--menu-item--edit": function(d) { return "编辑"; },
        "editor--style-switcher--menu-item--duplicate": function(d) { return "复制"; },
        "editor--style-switcher--menu-item--delete": function(d) { return "删除"; },
        "editor--style-switcher--menu-item--apply-to-all-slides": function(d) { return "应用于所有幻灯片"; },
        "editor--style-switcher--menu-item--more-options": function(d) { return "更多选项"; },
        "editor--style-switcher--menu-item--publish-to-workspace": function(d) { return "发布到工作区"; },
        "editor--style-switcher--menu-item--update-from-workspace": function(d) { return "从工作区更新"; },
        "editor--style-switcher--menu-footer--select-slides": function(d) { return "选择"; },
        "editor--style-switcher--menu-footer--selected-slides-count": function(d) { return plural(d.count, 0, en, { "0": "未使用的样式", one: "用于1个幻灯片", other: "用于" + number(d.count, "count") + "个幻灯片" }); },
        "editor--sidebar--add-slide-button": function(d) { return "添加幻灯片"; },
        "editor--sidebar--add-slide-button-tooltip": function(d) { return "添加新幻灯片"; },
        "editor--sidebar--add-blank-slide-tooltip": function(d) { return "空白幻灯片"; },
        "editor--sidebar--slide--context-menu--copy-link": function(d) { return "复制链接"; },
        "editor--sidebar--slide--context-menu--inspect-in-dev-panel": function(d) { return "在开发面板中检查"; },
        "editor--sidebar--slide--context-menu--apply-style": function(d) { return "应用样式"; },
        "editor--sidebar--slide--context-menu--duplicate": function(d) { return "复制"; },
        "editor--sidebar--slide--context-menu--add-slide": function(d) { return "新建幻灯片"; },
        "editor--sidebar--slide--context-menu--assign": function(d) { return "分配..."; },
        "editor--sidebar--slide--context-menu--delete": function(d) { return "删除"; },
        "editor--sidebar--slide--context-menu--skip": function(d) { return "跳过幻灯片"; },
        "editor--sidebar--slide--context-menu--cut": function(d) { return "剪切"; },
        "editor--sidebar--slide--context-menu--copy": function(d) { return "复制"; },
        "editor--sidebar--slide--context-menu--paste": function(d) { return "粘贴"; },
        "editor--sidebar--slide--context-menu--paste-toast": function(d) { return "请使用" + d.paste_shortcut + "进行粘贴"; },
        "editor--sidebar--slide--user-dots--anonymous": function(d) { return "匿名"; },
        "editor--sidebar--slide--status-indicator--assigned": function(d) { return "已指派:" + d.name; },
        "editor--sidebar--slide--status-indicator--label": function(d) { return "幻灯片状态:" + d.status; },
        "editor--sidebar--slide--status-indicator--desc": function(d) { return "状态:" + d.status; },
        "editor--sidebar--slide--skipped-indicator-hint": function(d) { return "只有具有编辑权限的成员和访客才能看到此幻灯片。"; },
        "editor--sidebar--slide--skipped-indicator-hint-link": function(d) { return "了解更多"; },
        "inspector--panel-tab--design--slide-header": function(d) { return "幻灯片"; },
        "inspector--panel-tab--design--mixed-blocks-header": function(d) { return "混合块"; },
        "inspector--panel-tab--design--single-cell-header": function(d) { return "表格单元格"; },
        "inspector--panel-tab--design--multiple-cells-header": function(d) { return "表格单元格"; },
        "inspector--panel-tab--design--group-header": function(d) { return "组"; },
        "inspector--panel-tab--design--block-and-group-header": function(d) { return "块和组"; },
        "editor--inspector--slide-options--background-image": function(d) { return "背景图像"; },
        "editor--inspector--slide-options--reset-background": function(d) { return "重置背景"; },
        "editor--inspector--slide-options--slide-number": function(d) { return "幻灯片编号"; },
        "inspector--clips-template--circle": function(d) { return "圆形"; },
        "inspector--clips-template--square": function(d) { return "正方形"; },
        "inspector--clips-template--portrait": function(d) { return "竖屏"; },
        "inspector--clips-template--wide": function(d) { return "横屏"; },
        "inspector--clips-thumbnail--avatar": function(d) { return "头像"; },
        "inspector--panel-tab--speaker-notes": function(d) { return "演讲者笔记"; },
        "inspector--close-panel-button": function(d) { return "关闭面板"; },
        "editor--vimeo": function(d) { return "vimeo"; },
        "editor--youtube": function(d) { return "youtube"; },
        "editor--loom": function(d) { return "loom"; },
        "editor--loom-link-placeholder": function(d) { return "粘贴任何 loom 链接"; },
        "editor--vimeo-link-placeholder": function(d) { return "粘贴任何 vimeo 链接"; },
        "editor--youtube-link-placeholder": function(d) { return "粘贴任何 youtube 链接"; },
        "editor--you-tube-info": function(d) { return "将任何公共 youtube 视频嵌入您的演示文稿。"; },
        "editor--loom-info": function(d) { return "将任何 loom 视频嵌入您的演示文稿。"; },
        "editor--vimeo-info": function(d) { return "将任何公共 vimeo 视频嵌入您的演示文稿。"; },
        "editor--embeds--generic-name": function(d) { return "其他链接"; },
        "editor--embeds--generic-placeholder": function(d) { return "粘贴任何链接"; },
        "editor--embeds--generic-text": function(d) { return "嵌入来自 figma、airtable、mentimeter 等的内容。请注意,这仍在开发中,可能无法按预期工作。"; },
        "editor--embed-blocks--untitled-link": function(d) { return "未命名"; },
        "editor--embed-blocks--unknown-site": function(d) { return "站点"; },
        "editor--shape-picker--shape-styles": function(d) { return "形状"; },
        "editor--shape-picker--category-essential": function(d) { return "基本形状"; },
        "editor--shape-picker--category-line": function(d) { return "线条"; },
        "editor--shape-picker--category-diagram": function(d) { return "流程图"; },
        "editor--shape-picker--category-button": function(d) { return "按钮和标签"; },
        "editor--media-picker--library-label": function(d) { return "库"; },
        "editor--media-picker--integrations-label": function(d) { return "集成"; },
        "editor--media-picker--image-auth-attrib": function(d) { return "by"; },
        "editor--media-picker--upload-cta": function(d) { return "从您的电脑上传。"; },
        "editor--media-picker--offline-copy": function(d) { return "对不起,您当前处于离线状态。当您联机时,请再次搜索" + d.provider + "。"; },
        "editor--media-picker--no-results": function(d) { return "搜索没有结果。"; },
        "editor--media-picker--library-empty-cta": function(d) { return "转到库"; },
        "editor--media-picker--no-image-results-cta": function(d) { return "将图像上传到库"; },
        "editor--media-picker--no-video-results-cta": function(d) { return "将视频上传到库"; },
        "editor--media-picker--library-images-empty": function(d) { return "将图像上传到您的库,以便团队中的每个人都可以使用它们。"; },
        "editor--media-picker--library-videos-empty": function(d) { return "将视频上传到您的库,以便团队中的每个人都可以使用它们。"; },
        "editor--media-picker--library-images-no-results": function(d) { return "搜索没有结果。尝试查找其他内容或将图像添加到您的库中。"; },
        "editor--media-picker--library-videos-no-results": function(d) { return "搜索没有结果。尝试查找其他内容或将视频添加到您的库中。"; },
        "editor--media-picker--library-images-search": function(d) { return "搜索标志、照片或其他图像"; },
        "editor--media-picker--library-videos-search": function(d) { return "搜索视频或剪辑"; },
        "editor--library-images": function(d) { return "图片"; },
        "editor--library-videos": function(d) { return "视频"; },
        "editor--library-upsell": function(d) { return "品牌资产"; },
        "editor--library-upsell--title": function(d) { return "节省时间,保持品牌一致"; },
        "editor--library-upsell--title--app-store": function(d) { return "视频和图像库不可用"; },
        "editor--library-upsell--subtitle": function(d) { return "为您的工作空间提供一个经过批准的资源库。#[br]组织模板、字体、视频、图像等。"; },
        "editor--library-upsell--subtitle--app-store": function(d) { return "上传图像和视频到工作空间库#[br]不包含入门计划。"; },
        "editor--unsplash": function(d) { return "unsplash"; },
        "editor--icons8": function(d) { return "icons8"; },
        "editor--brandfetch": function(d) { return "品牌标志"; },
        "editor--giphy": function(d) { return "giphy"; },
        "editor--media-picker--search-result--hint": function(d) { return "图像搜索结果 " + d.img_alt_text; },
        "editor--media-picker--view-results-for": function(d) { return "查看 " + d.next_up + " 的结果"; },
        "editor--media-picker--more": function(d) { return "更多"; },
        "editor--media-picker--all-styles": function(d) { return "所有样式"; },
        "editor--media-picker--brandfetch-copy": function(d) { return "快速找到最新的标志"; },
        "editor--media-picker--brandfetch-cta": function(d) { return "输入品牌名称或在上方输入 url"; },
        "editor--media-picker--brandfetch-no-results": function(d) { return "没有结果"; },
        "editor--media-picker--brandfetch-no-results-cta": function(d) { return "检查是否有拼写错误"; },
        "editor--media-picker--brandfetch-examples-header": function(d) { return "例子"; },
        "editor--media-picker--brandfetch-legal-summary": function(d) { return "大多数品牌和标志受商标和版权法保护。"; },
        "editor--media-picker--brandfetch-legal-helplink": function(d) { return "查看我们关于公平使用的规定"; },
        "editor--media-picker--upload-media": function(d) { return "上传媒体"; },
        "editor--video-upload--uploading": function(d) { return "上传中"; },
        "editor--video-upload--transcoding": function(d) { return "处理中"; },
        "editor--video-upload--ready": function(d) { return "准备好播放了"; },
        "editor--video-upload--still-processed": function(d) { return "高质量版本仍在处理中,将在几分钟内提供。"; },
        "editor--video-upload--cancel": function(d) { return "取消"; },
        "editor--video-upload--dismiss-ready": function(d) { return "知道了"; },
        "editor--fonts--weights--heavy": function(d) { return "加粗"; },
        "editor--fonts--weights--medium": function(d) { return "中等"; },
        "editor--fonts--weights--black": function(d) { return "黑色"; },
        "editor--fonts--weights--semi-bold": function(d) { return "半粗体"; },
        "editor--fonts--weights--bold": function(d) { return "粗体"; },
        "editor--fonts--weights--bold-italic": function(d) { return "粗斜体"; },
        "editor--fonts--weights--extra-bold": function(d) { return "特粗体"; },
        "editor--fonts--weights--light": function(d) { return "轻体"; },
        "editor--fonts--weights--regular": function(d) { return "常规"; },
        "editor--fonts--weights--regular-italic": function(d) { return "斜体"; },
        "editor--fonts--weights--extra-light": function(d) { return "特细体"; },
        "editor--fonts--weights--thin": function(d) { return "细体"; },
        "editor--inline-text-editor--hint--toggle-bold": function(d) { return "切换加粗"; },
        "editor--inline-text-editor--hint--toggle-italic": function(d) { return "切换斜体"; },
        "editor--inline-text-editor--hint--toggle-strikethrough": function(d) { return "切换删除线"; },
        "editor--inline-text-editor--hint--link": function(d) { return "链接"; },
        "editor--inline-text-editor--list-type-bullet": function(d) { return "圆点"; },
        "editor--inline-text-editor--list-type-number": function(d) { return "数字"; },
        "editor--inline-text-editor--list-type-check": function(d) { return "勾选框"; },
        "editor--inline-text-editor--list-type-none": function(d) { return "无"; },
        "editor--inline-text-editor--align-left": function(d) { return "左对齐"; },
        "editor--inline-text-editor--align-right": function(d) { return "右对齐"; },
        "editor--inline-text-editor--align-center": function(d) { return "居中对齐"; },
        "editor--inline-text-editor--align-top": function(d) { return "顶部对齐"; },
        "editor--inline-text-editor--align-bottom": function(d) { return "底部对齐"; },
        "editor--inline-text-editor--tooltip--text-type": function(d) { return "文本样式"; },
        "editor--inline-text-editor--tooltip--text-color": function(d) { return "文本颜色"; },
        "editor--inline-text-editor--tooltip--text-alignment": function(d) { return "文本对齐方式"; },
        "editor--inline-text-editor--tooltip--text-font-size": function(d) { return "字体大小"; },
        "editor--inline-text-editor--tooltip--font-weight": function(d) { return "加粗"; },
        "editor--inline-text-editor--tooltip--font-italic": function(d) { return "斜体"; },
        "editor--inline-text-editor--tooltip--hyper-link": function(d) { return "超链接"; },
        "editor--inline-text-editor--tooltip--strikethrough": function(d) { return "删除线"; },
        "editor--inline-text-editor--tooltip--list-type": function(d) { return "列表类型"; },
        "editor--inline-shape-editor--tooltip--border-width": function(d) { return "边框宽度"; },
        "editor--inline-shape-editor--tooltip--line-width": function(d) { return "线条宽度"; },
        "editor--inline-shape-editor--tooltip--line-start": function(d) { return "线条起点"; },
        "editor--inline-shape-editor--tooltip--line-style": function(d) { return "线条样式"; },
        "editor--inline-shape-editor--tooltip--line-end": function(d) { return "线条终点"; },
        "editor--inline-table-editor--background-color": function(d) { return "背景"; },
        "editor--inline-table-editor--tooltip-font-weight": function(d) { return "加粗"; },
        "editor--inline-table-editor--tooltip-font-style": function(d) { return "斜体"; },
        "editor--inline-table-editor--tooltip-text-color": function(d) { return "文本颜色"; },
        "editor--inline-table-editor--tooltip-background-color": function(d) { return "背景颜色"; },
        "editor--inline-table-editor--tooltip-reset": function(d) { return "重置单元格样式"; },
        "editor--inline-table-editor--tooltip-horizontal-alignment": function(d) { return "水平对齐"; },
        "editor--inline-table-editor--tooltip-vertical-alignment": function(d) { return "垂直对齐"; },
        "editor--inline-table-editor--tidy": function(d) { return "整理"; },
        "editor--inline-table-editor--tooltip-tidy": function(d) { return "已整理"; },
        "editor--inline-table-editor--tidy-rows": function(d) { return "整理行"; },
        "editor--inline-table-editor--tidy-columns": function(d) { return "整理列"; },
        "editor--inline-table-editor--tooltip-tidy-rows": function(d) { return "分布行"; },
        "editor--inline-table-editor--tooltip-tidy-columns": function(d) { return "分布列"; },
        "editor--inline-table-editor--tooltip-tidy-both": function(d) { return "分布行和列"; },
        "editor--inline-text-editor--tooltip--more-options": function(d) { return "更多选项"; },
        "editor--inline-text-editor--tooltip--less-options": function(d) { return "较少选项"; },
        "editor--text-options--heading--line-spacing": function(d) { return "行间距"; },
        "editor--text-options--heading--letter-spacing": function(d) { return "字间距"; },
        "editor--text-options--heading--uppercase": function(d) { return "大写字母"; },
        "editor--text-options--synthetic-typeface-info": function(d) { return "这种字体样式是由您的浏览器生成的。在其他浏览器中可能会有所不同。"; },
        "editor--text-options--text-appearance": function(d) { return "字体"; },
        "editor--text-options--heading--paragraph-spacing": function(d) { return "段落间距"; },
        "editor--text-options--tooltip--font-family": function(d) { return "字体族"; },
        "editor--text-options--tooltip--font-style": function(d) { return "字体样式"; },
        "editor--text-options--tooltip--font-size": function(d) { return "字号"; },
        "editor--text-options--tooltip--text-color": function(d) { return "文本颜色"; },
        "editor--text-options--heading--text-styles": function(d) { return "文本样式"; },
        "editor--text-options--heading--text-style": function(d) { return "文本样式"; },
        "editor--text-options--text-style-update": function(d) { return "更新样式"; },
        "editor--text-options--text-style-reset": function(d) { return "重置样式"; },
        "editor--text-options--block-style-modifed": function(d) { return "此" + d.block_type + "样式已被修改。"; },
        "editor--style-builder--edit-style": function(d) { return "编辑样式"; },
        "editor--style-builder--edit-style-count": function(d) { return plural(d.count, 0, en, { "0": "未使用的样式", one: "在1个幻灯片中使用", other: "在" + number(d.count, "count") + "个幻灯片中使用" }); },
        "editor--style-builder--edit-style-short": function(d) { return "编辑"; },
        "editor--style-builder--create-style": function(d) { return "创建样式"; },
        "editor--style-builder--default-style-name": function(d) { return "新样式"; },
        "editor--style-builder--untitled-style-name": function(d) { return "无标题样式"; },
        "editor--style-builder--name-input-label": function(d) { return "名称"; },
        "editor--style-builder--name-input-placeholder": function(d) { return "输入您的样式名称"; },
        "editor--style-builder--overview-label": function(d) { return "概述"; },
        "editor--style-builder--overview-count": function(d) { return plural(d.count, 0, en, { one: "1个样式", other: number(d.count, "个样式") }); },
        "editor--style-builder--colors-overview-label": function(d) { return "颜色"; },
        "editor--style-builder--overview-style-colors": function(d) { return "所有样式颜色"; },
        "editor--style-builder--typography-overview-label": function(d) { return "字体排版"; },
        "editor--style-builder--colors-label": function(d) { return "样式颜色"; },
        "editor--style-builder--fonts-label": function(d) { return "样式字体"; },
        "editor--style-builder--bullet-points-color-label": function(d) { return "项目符号颜色"; },
        "editor--style-builder--alternating-background-color-label": function(d) { return "交替背景颜色"; },
        "editor--style-builder--shape-color-label": function(d) { return "填充颜色"; },
        "editor--style-builder--line-and-shape-color-label": function(d) { return "边框颜色"; },
        "editor--style-builder--link-color-label": function(d) { return "颜色"; },
        "editor--style-builder--link-underline-label": function(d) { return "下划线"; },
        "editor--style-builder--alternating-text-color-label": function(d) { return "交替文本颜色"; },
        "editor--style-builder--background-color-label": function(d) { return "背景颜色"; },
        "editor--style-builder--header-text-color-label": function(d) { return "标题文本颜色"; },
        "editor--style-builder--table-border-color-label": function(d) { return "表格边框颜色"; },
        "editor--style-builder--axis-color-label": function(d) { return "坐标轴颜色"; },
        "editor--style-builder--chart-color-label": function(d) { return "图表颜色"; },
        "editor--style-builder--chart-palette-label": function(d) { return "调色板"; },
        "editor--style-builder--header-color-label": function(d) { return "标题颜色"; },
        "editor--style-builder--font-family-label": function(d) { return "字体"; },
        "editor--style-builder--font-size-label": function(d) { return "字号"; },
        "editor--style-builder--text-color-label": function(d) { return "文字颜色"; },
        "editor--style-builder--colors-tooltip": function(d) { return "这里会显示样式中出现的所有颜色及其位置。"; },
        "editor--style-builder--fonts-tooltip": function(d) { return "这里会显示样式中出现的所有字体及其位置。"; },
        "editor--style-builder--preview-text--title": function(d) { return "这是一个标题"; },
        "editor--style-builder--preview-text--text-in-shape": function(d) { return "文本"; },
        "editor--style-builder--preview-text--headline": function(d) { return "这是一个大标题"; },
        "editor--style-builder--preview-text--subheadline": function(d) { return "这是一个小标题"; },
        "editor--style-builder--preview-text--paragraph-1": function(d) { return "这是一个段落。痛苦本身很重要,发展的结果会随之而来,但同时也落下了很多的工作和痛苦。"; },
        "editor--style-builder--preview-text--paragraph-2": function(d) { return "至少让我说一句,没有人会从事任何一种锻炼,除非他从中获得了一些好处。"; },
        "editor--style-builder--preview-text--paragraph-3": function(d) { return "不要在痛斥中生气在快感中痛斥他要从痛中发一毛希望没有滋生。"; },
        "editor--style-builder--preview-text--link": function(d) { return "这是一个链接"; },
        "editor--style-builder--preview-text--list-1": function(d) { return "客户很满意"; },
        "editor--style-builder--preview-text--list-2": function(d) { return "他会追捕背道者,但在这种时候他们会受到丝毫怜悯。"; },
        "editor--style-builder--preview-text--list-3": function(d) { return "谁可以从事任何类型的工作,除非是出于某种目的"; },
        "editor--style-builder--preview-text--small-paragraph": function(d) { return "这是一个小段落。 痛苦本身很重要,发展的结果会随之而来,但同时也落下了很多的工作和痛苦。"; },
        "editor--style-builder--preview-text--table-1": function(d) { return "姓名"; },
        "editor--style-builder--preview-text--table-2": function(d) { return "角色"; },
        "editor--style-builder--preview-text--table-3": function(d) { return "喜欢的动物"; },
        "editor--style-builder--preview-text--table-4": function(d) { return "ashley croft"; },
        "editor--style-builder--preview-text--table-5": function(d) { return "创始人"; },
        "editor--style-builder--preview-text--table-6": function(d) { return "老虎"; },
        "editor--style-builder--preview-text--table-7": function(d) { return "adam smith"; },
        "editor--style-builder--preview-text--table-8": function(d) { return "市场总监"; },
        "editor--style-builder--preview-text--table-9": function(d) { return "树懒"; },
        "editor--popover-headline-style-colors": function(d) { return "样式颜色"; },
        "editor--popover-headline-other-colors": function(d) { return "演示颜色"; },
        "editor--color-button-auto-color": function(d) { return "自动颜色"; },
        "editor--color-button-change-color": function(d) { return "更改颜色"; },
        "editor--popover-add-color-tooltip": function(d) { return "添加颜色"; },
        "editor--popover-transparent": function(d) { return "透明"; },
        "editor--popover-color-dropper": function(d) { return "选择颜色"; },
        "editor--popover-color-dropper-tooltip-title": function(d) { return "不可用的取色器"; },
        "editor--popover-color-dropper-tooltip-description": function(d) { return "请使用 pitch 桌面应用程序或 chrome、edge 或 opera 浏览器使用此工具取样颜色。"; },
        "editor--popover-color-dropper-tooltip-alt-description": function(d) { return "请使用 chrome、edge 或 opera 浏览器使用此工具取样颜色。"; },
        "editor--popover-color-dropper-tooltip-link-text": function(d) { return "了解更多"; },
        "editor--popover-color-dropper-tooltip-link-url": function(d) { return "https://help.pitch.com/zh-hans/articles/6125880-i-can-t-access-the-color-dropper"; },
        "lose-unsynced-changes--title": function(d) { return "离开文档?"; },
        "lose-unsynced-changes--body": function(d) { return "某些文档编辑未同步,可能会丢失。关闭此文档将永久删除您所做的更改。"; },
        "lose-unsynced-workspace-changes--body": function(d) { return "某些文档编辑未同步,可能会丢失。离开此工作区将永久删除您所做的更改。"; },
        "lose-unsynced-changes--btn": function(d) { return "离开并放弃更改"; },
        "hard-stop-modal--title": function(d) { return "您的最新更改无法保存"; },
        "hard-stop-modal--message--part1": function(d) { return "您的计算机似乎处于离线状态。我们正在尝试重新连接到服务器。"; },
        "hard-stop-modal--message--part2": function(d) { return "如果您继续遇到此问题,请#[contact_support]寻求帮助。"; },
        "hard-stop-modal--reload-button": function(d) { return "重新加载页面"; },
        "slide--title": function(d) { return "幻灯片"; },
        "slide--skipped": function(d) { return "跳过幻灯片"; },
        "slide--missing": function(d) { return "幻灯片缺失"; },
        "slide--remove-link": function(d) { return "删除链接"; },
        "slide--missing-alert-message": function(d) { return "你链接的幻灯片缺失了。尝试链接到另一个幻灯片,或删除链接。"; },
        "slide-links-dialog--cancel": function(d) { return plural(d.count, 0, en, { one: "保留幻灯片", other: "保留幻灯片" }); },
        "slide-links-dialog--confirm": function(d) { return plural(d.count, 0, en, { one: "删除幻灯片", other: "删除幻灯片" }); },
        "slide-links-dialog--delete-slide": function(d) { return plural(d.count, 0, en, { one: "删除此幻灯片也将删除 ", other: "删除这些幻灯片也将删除 " }); },
        "slide-links-dialog--links": function(d) { return plural(d.count, 0, en, { one: "一个链接 ", other: d.count + "个链接 " }); },
        "slide-links--list": function(d) { return plural(d.count, 0, en, { "0": "", "1": "在第" + d.a + "张幻灯片上的链接。", "2": "在第" + d.a + "张和第" + d.b + "张幻灯片上的链接。", "3": "在第" + d.a + "张、第" + d.b + "张和第" + d.c + "张幻灯片上的链接。", "4": "在第" + d.a + "张、第" + d.b + "张、第" + d.c + "张和第" + d.d + "张幻灯片上的链接。", other: "在其他幻灯片上的链接。" }); },
        "editor--slide-and-web-link-input-placeholder": function(d) { return "url、幻灯片编号或电子邮件"; },
        "error--video-too-large": function(d) { return "视频文件大小不能超过5gb。请尝试上传较小的文件。"; },
        "error--invalid-asset-type": function(d) { return "我们目前不支持该文件类型。您可以上传jpg、png、svg或gif文件,或使用我们的集成搜索图像。"; },
        "error--upload-error": function(d) { return "上传错误"; },
        "error--font-upload--error-dialog": function(d) { return "上传字体时出现问题。请重试,或者#[font-upload-error-link]。"; },
        "error--font-upload--link-message": function(d) { return "阅读这些故障排除提示"; },
        "error--font-upload--link": function(d) { return "https://help.pitch.com/en/articles/4298124-i-m-having-issues-uploading-custom-fonts"; },
        "error--video-upload--error-dialog": function(d) { return "上传视频时出现问题。请重试,并确保您的视频大小不超过5gb。"; },
        "error--trying-to-logout-when-offline": function(d) { return "看起来您处于离线状态。您需要在线才能退出pitch。"; },
        "error--session-cannot-be-refreshed-headline": function(d) { return "您的会话已过期"; },
        "error--session-cannot-be-refreshed": function(d) { return "请重新登录以继续使用。"; },
        "error-session-cannot-be-refreshed-button": function(d) { return "登录"; },
        "error--slide-not-found": function(d) { return "该幻灯片已不存在,因此已打开第一张幻灯片。"; },
        "error--presentation-not-found": function(d) { return "我们找不到该演示文稿。它可能已被删除,或者您没有访问权限。请向共享演示文稿的人寻求帮助。"; },
        "error--invalid-presentation-share-link": function(d) { return "该链接似乎无效。尝试向发送链接的人寻求帮助。"; },
        "error--image-upload-limit-exceeded": function(d) { return "您一次最多可以上传10个图像。请分批上传。"; },
        "error--media-upload-limit-exceeded": function(d) { return "您一次最多可以上传10个媒体文件。请分批上传。"; },
        "error--unsupported-file": function(d) { return "您似乎正在尝试上传我们不支持的文件类型。请查看我们的帮助中心,了解此功能支持的文件类型。"; },
        "error--unsupported-images": function(d) { return "您似乎正在尝试上传我们不支持的文件类型。您可以上传 jpg、png、svg 或 gif 文件。"; },
        "error--unsupported-fonts": function(d) { return "您似乎正在尝试上传我们不支持的字体文件类型。您可以上传 opentype (.otf) 和 truetype (.ttf) 文件。"; },
        "error--could-not-fetch-images": function(d) { return "我们无法添加该图片。尝试拖放或从您的计算机上传。"; },
        "error--image-upload-offline-web-app": function(d) { return "看起来您处于离线状态。尝试在您回到在线状态时上传图片,或者使用我们的桌面应用进行离线上传。"; },
        "error--media-upload-offline-web-app": function(d) { return "看起来您处于离线状态。尝试在您回到在线状态时上传媒体文件,或者使用我们的桌面应用进行离线上传。"; },
        "error--auto-updater-failed": function(d) { return "更新应用程序时出现问题。稍后我们将再次尝试。"; },
        "error--auto-updating-not-in-applications-folder": function(d) { return "启动 pitch 时出现问题。确保应用程序在应用程序文件夹中,并重试。"; },
        "error--unauthorized-workspace": function(d) { return "似乎您没有访问此工作区的权限。尝试向邀请您的人寻求帮助。"; },
        "error--unauthorized-folder": function(d) { return "似乎您没有访问此文件夹的权限。尝试向邀请您的人寻求帮助。"; },
        "error--workspace-role-access-denied": function(d) { return "只有工作区所有者和管理员才能访问此页面。"; },
        "error--workspace-role-access-denied--owner": function(d) { return "只有工作区所有者才能访问此页面。"; },
        "error--cant-move-shared-presentation": function(d) { return "只有演示文稿的所有者才能将其移动到其他文件夹中。"; },
        "error--oops": function(d) { return "出了点问题,我们还不知道具体原因。如果问题持续,请联系支持团队。"; },
        "error--duplication-failed": function(d) { return "复制这个演示文稿时出了问题。请重试或联系支持团队。"; },
        "error--consent-failed": function(d) { return "提交您的同意时出了问题。请重试或联系支持团队。"; },
        "error--generic-issue--heading": function(d) { return "出了点问题"; },
        "error--generic-sync-issue--heading": function(d) { return "哎呀,出了点问题"; },
        "error--document-was-deleted--heading": function(d) { return "此演示文稿已被删除"; },
        "error--document-is-private--heading": function(d) { return "此演示文稿在一个私有文件夹中"; },
        "error--no-workspace-access--heading": function(d) { return "您不是此工作区的成员"; },
        "error--generic-render-issue--heading": function(d) { return "糟糕,出了点问题"; },
        "error--generic-issue--reload-button": function(d) { return "重试"; },
        "error--generic-issue--go-to-dashboard-button": function(d) { return "转到仪表盘"; },
        "error--generic-issue--go-to-pitch-button": function(d) { return "返回 pitch"; },
        "error--indexeddb-terminated--refresh-button": function(d) { return "刷新"; },
        "error--user-was-logged-out-headline": function(d) { return "似乎我们已经断开连接"; },
        "error--user-was-logged-out-description": function(d) { return "重新登录 pitch 并重试。"; },
        "error--render-issue--line1": function(d) { return "出了点问题,我们还不知道具体原因。"; },
        "error--render-issue--line2": function(d) { return "刷新页面,如果问题仍然存在,请联系支持团队。"; },
        "error--card-render-issue": function(d) { return "内容不可用。请尝试刷新页面或联系支持团队。"; },
        "error--embed-block-invalid-url--title": function(d) { return "我们无法嵌入此链接"; },
        "error--embed-block-invalid-url--description": function(d) { return "请确保它是公开可用的。"; },
        "error--block-render-issue": function(d) { return d.blocktype + "不可用。请尝试刷新页面或更新pitch,如果问题仍然存在,请联系支持。"; },
        "error--cant-open-presentation--generic": function(d) { return "我们无法打开那个演示文稿。请重试,并在问题持续存在时联系支持。"; },
        "error--cant-open-presentation--old-version": function(d) { return "那个演示文稿是使用新版本的pitch创建的。更新您的应用程序,然后再次尝试打开它。"; },
        "error--cant-open-presentation--document-deleted": function(d) { return "如果您认为有错误,请联系演示文稿所有者寻求帮助。"; },
        "error--cant-open-presentation--private-document--owner-known": function(d) { return "联系#[ownername] (#[owneremail]) 请求访问权限。"; },
        "error--cant-open-presentation--private-document--owner-unknown": function(d) { return "联系演示文稿所有者请求访问权限。"; },
        "error--cant-open-presentation--no-workspace-access": function(d) { return "从管理员请求一个工作区邀请。如果您认为自己已经是成员,请确保使用正确的帐户登录。"; },
        "error--cant-open-workspace--generic": function(d) { return "我们无法打开那个工作区。请重试,并在问题持续存在时联系支持。"; },
        "error--slide-render-issue--line1": function(d) { return "加载预览失败"; },
        "error--slide-render-issue--line2": function(d) { return "如果此问题持续存在,请联系支持。"; },
        "error--unauthorized-presentation--headline": function(d) { return "您未被授权访问此演示文稿"; },
        "error--unauthorized-presentation--description": function(d) { return "演示文稿所有者未授权您访问。请联系所有者共享给您访问权限。"; },
        "error--unauthorized-workspace--headline": function(d) { return "您不是该工作区的成员"; },
        "error--unauthorized-workspace--description": function(d) { return "请联系工作区中的某个成员向您发送加入链接。"; },
        "error--no-internet--heading": function(d) { return "您似乎已经离线了"; },
        "error--no-internet--desc": function(d) { return "不要担心——您的所有编辑内容都已本地保存,一旦您重新联网,将同步到您的工作区。"; },
        "error--document-not-found--heading": function(d) { return "我们找不到该演示文稿"; },
        "error--document-not-found--description": function(d) { return "可能已被删除或设为私密。请尝试向所有者请求帮助。"; },
        "error--cant-write-to-server--heading": function(d) { return "您的更改尚未同步"; },
        "error--cant-write-to-server--desc": function(d) { return "您的所有编辑内容都已保存在本地,并将在您重新联网后同步到您的工作区。如果此错误持续,请联系支持人员。"; },
        "error--write-queue-error--heading": function(d) { return "保存工作时出现了错误"; },
        "error--write-queue-error--description": function(d) { return "你的更改可能没有被保存。如果这个问题继续存在,请联系支持人员。"; },
        "error--storage-failure--heading": function(d) { return "你的系统存储空间已满"; },
        "error--storage-failure--description": function(d) { return "尝试释放一些硬盘空间或清除你的浏览器数据。如果这些不起作用,请联系支持人员。"; },
        "error--indexeddb-quota--heading": function(d) { return "你的系统存储空间已满"; },
        "error--indexeddb-quota--description": function(d) { return "我们无法继续在这台设备上保存你的更改。尝试释放一些硬盘空间或清除你的浏览器数据。"; },
        "error--indexeddb-terminated--heading": function(d) { return "只是一些例行的清理工作"; },
        "error--indexeddb-terminated--description": function(d) { return "存储被优化,以使应用程序运行更快。#[br]刷新页面以享受体验。"; },
        "error--invalid-public-link--heading": function(d) { return "该链接似乎无法使用"; },
        "error--invalid-public-link--description": function(d) { return "要么那个演示文稿不存在,要么它未与你共享。尝试向其所有者寻求帮助。"; },
        "error--color-dropper--title": function(d) { return "取色器出了问题"; },
        "error--color-dropper--description": function(d) { return "如果这个问题持续存在,请查看我们的#[help-center-link]文章或#[contact-support-link]联系支持团队。"; },
        "error--color-dropper-help-center-link--text": function(d) { return "帮助中心"; },
        "error--color-dropper-contact-support-link--text": function(d) { return "联系支持"; },
        "error--color-dropper-help-center-link--url": function(d) { return "https://help.pitch.com/zh-cn/articles/6125880-%e6%88%91%e6%97%a0%e6%b3%95%e8%ae%bf%e9%97%ae%e5%8f%96%e8%89%b2%e5%99%a8"; },
        "error--color-dropper-contact-support-link--url": function(d) { return "https://help.pitch.com/zh-cn/collections/2135343-%e8%81%94%e7%b3%bb%e6%88%91%e4%bb%ac"; },
        "error--footer--logged-in-as--text": function(d) { return "您已登录为#[email]。您可能需要#[log-in-link]"; },
        "error--footer-log-in-with-different-email-address--link": function(d) { return "使用其他电子邮件地址登录。"; },
        "export-link-incentive--dismiss": function(d) { return "不再询问"; },
        "export-link-incentive--cta": function(d) { return "分享链接"; },
        "export-link-incentive--title--pdf": function(d) { return "链接让你的演示更强大"; },
        "export-link-incentive--headline--pdf": function(d) { return "分享链接,而不是pdf文件,以利用pitch的优秀功能。"; },
        "export-link-incentive--row-1--pdf": function(d) { return "享受自动演示更新。"; },
        "export-link-incentive--row-2--pdf": function(d) { return "让任何人查看您的工作——无需pitch帐户。"; },
        "export-link-incentive--row-3--pdf": function(d) { return "通过视频和录音使观众保持参与。"; },
        "export-link-incentive--title--ppt": function(d) { return "链接让您的幻灯片更强大"; },
        "export-link-incentive--headline--ppt": function(d) { return "与其共享文件,不如分享链接,以充分利用使pitch出色的功能。"; },
        "export-link-incentive--row-1--ppt": function(d) { return "享受自动幻灯片更新的乐趣。"; },
        "export-link-incentive--row-2--ppt": function(d) { return "让任何人查看您的演示文稿——无需pitch帐户。"; },
        "export-link-incentive--row-3--ppt": function(d) { return "通过视频和录音使观众保持参与。"; },
        "follow--user-list-header": function(d) { return "当前在线"; },
        "follow--leader-left": function(d) { return d.name + "离开演示文稿。"; },
        "follow--following-user": function(d) { return "正在关注"; },
        "follow--start-following-cta": function(d) { return "开始关注"; },
        "follow--stop-following-cta": function(d) { return "停止关注"; },
        "inspector--layers--headline": function(d) { return "区块"; },
        "inspector--background-option--color-display-name": function(d) { return "颜色"; },
        "inspector--background-option--gradient-display-name": function(d) { return "渐变"; },
        "inspector--background-option--panel-item--start-color": function(d) { return "起始颜色"; },
        "inspector--background-option--panel-item--stop-color": function(d) { return "结束颜色"; },
        "inspector--background-option--panel-item--rotation": function(d) { return "旋转"; },
        "inspector--background-option--label-background-option": function(d) { return "背景"; },
        "inspector--background-option--change-color-button-hint": function(d) { return "更改颜色"; },
        "inspector--background-option--start-color-button-hint": function(d) { return "起始颜色"; },
        "inspector--background-option--stop-color-button-hint": function(d) { return "结束颜色"; },
        "inspector--background-option--background-color-button-hint": function(d) { return "背景颜色"; },
        "comments--show-replies": function(d) { return "显示" + plural(d.replies, 0, zh, { "0": "无回复", one: "1 条回复", other: number(d.replies, "回复") + " 条回复" }); },
        "comments--hide-replies": function(d) { return "隐藏" + plural(d.replies, 0, zh, { one: "条回复", other: "条回复" }); },
        "comments--show-resolved-comments": function(d) { return "显示" + plural(d.comments, 0, zh, { "0": "无已解决评论", one: "1 条已解决评论", other: number(d.comments, "已解决评论") + " 条已解决评论" }); },
        "comments--hide-resolved-comments": function(d) { return "隐藏已解决" + plural(d.comments, 0, zh, { one: "条评论", other: "条评论" }); },
        "comments--number-comments-phone": function(d) { return plural(d.comments, 0, zh, { "0": "无评论", one: "1 条评论", other: number(d.comments, "条评论") + " 条评论" }); },
        "comments--retired-profile-tooltip-header": function(d) { return d.name + "无法再访问此演示文稿"; },
        "comments--retired-profile-tooltip-body": function(d) { return "如果你回复他们的评论,他们将不会收到通知。"; },
        "inspector--block-options-lock-proportions": function(d) { return "锁定比例"; },
        "inspector--block-options-adjust-width": function(d) { return "自动调整宽度"; },
        "inspector--block-options-flip-horizontal-hint": function(d) { return "水平翻转"; },
        "inspector--block-options-flip-vertical-hint": function(d) { return "垂直翻转"; },
        "inspector--block-options-tidy": function(d) { return "整理"; },
        "inspector--block-options-tidy-hint": function(d) { return "将选定的块对齐并均匀分布"; },
        "inspector--group-options-tidy-hint": function(d) { return "将选定的组对齐并均匀分布"; },
        "inspector--block-options-alignment": function(d) { return "对齐"; },
        "inspector--block-options-distribution": function(d) { return "分布"; },
        "inspector--ungroup-hint": function(d) { return "取消分组"; },
        "inspector--ungroup-button": function(d) { return "取消分组"; },
        "inspector--group-hint": function(d) { return "分组"; },
        "inspector--group-button": function(d) { return "分组"; },
        "inspector--size-and-position": function(d) { return "大小和位置"; },
        "inspector--block-options--section-expand-hint": function(d) { return "展开"; },
        "inspector--block-options--section-collapse-hint": function(d) { return "折叠"; },
        "inspector--block-options-reset-to-style": function(d) { return "重置为样式"; },
        "inspector--block-options-reset-to-default": function(d) { return "重置为默认值"; },
        "inspector--table-options-reset-cell-style": function(d) { return "重置单元格样式"; },
        "inspector--block-options--font-size": function(d) { return "字体大小"; },
        "inspector--block-options--font-size-hint": function(d) { return "选择字体大小"; },
        "inspector--block-options--line-height-hint": function(d) { return "选择行高"; },
        "inspector--block-options--letter-spacing-hint": function(d) { return "选择字母间距"; },
        "inspector--block-options--paragraph-spacing-hint": function(d) { return "选择段落间距"; },
        "inspector--block-options--blur-hint": function(d) { return "选择模糊程度"; },
        "inspector--block-options--rows-count": function(d) { return "行数"; },
        "inspector--block-options--rows-count-hint": function(d) { return "选择行数"; },
        "inspector--block-options--dimensions": function(d) { return "尺寸"; },
        "inspector--block-options--cols-count": function(d) { return "列数"; },
        "inspector--block-options--cols-count-hint": function(d) { return "选择列数"; },
        "inspector--block-options--editable-drop-down-hint": function(d) { return "选择项目"; },
        "inspector--block-options--table--tidy": function(d) { return "整理"; },
        "inspector--block-options--table--already-tidied": function(d) { return "已整理"; },
        "inspector--block-options--table--tidy-hint-rows": function(d) { return "均匀分配所选行"; },
        "inspector--block-options--table--tidy-hint-columns": function(d) { return "均匀分配所选列"; },
        "inspector--block-options--table--tidy-hint-both": function(d) { return "均匀分配所选行和列"; },
        "inspector--block-options--table--background-color": function(d) { return "背景颜色"; },
        "inspector--block-options--table--text-color": function(d) { return "文本颜色"; },
        "inspector--block-options--table--borders": function(d) { return "边框"; },
        "inspector--block-options--table-header--background": function(d) { return "背景"; },
        "inspector--block--options--table-header-text-color": function(d) { return "文本颜色"; },
        "inspector--block-options--table-header--font-style": function(d) { return "字体样式"; },
        "inspector--block-options--table--alternating-rows": function(d) { return "交替行"; },
        "inspector--block-options--table-alt-rows-background": function(d) { return "背景"; },
        "inspector--block-options--table-alt-rows--text-color": function(d) { return "文字颜色"; },
        "inspector--block-options--table--border-color": function(d) { return "边框颜色"; },
        "inspector--block-options--table--header": function(d) { return "表头"; },
        "inspector--blur-option--blur": function(d) { return "模糊"; },
        "inspector--font-picker--no-results": function(d) { return "没有找到任何结果。请重试或上传自定义字体。"; },
        "inspector--font-picker--upload-btn": function(d) { return "上传"; },
        "inspector--font-picker--search-placeholder": function(d) { return "搜索..."; },
        "inspector--text-options--text-alignment": function(d) { return "文本对齐"; },
        "inspector--text-options--text-alignment-vertical-top": function(d) { return "顶部"; },
        "inspector--text-options--text-alignment-vertical-center": function(d) { return "居中"; },
        "inspector--text-options--text-alignment-vertical-bottom": function(d) { return "底部"; },
        "inspector--block-options--align-left": function(d) { return "左对齐"; },
        "inspector--block-options--align-center": function(d) { return "居中对齐"; },
        "inspector--block-options--align-right": function(d) { return "右对齐"; },
        "inspector--block-options--align-top": function(d) { return "顶部对齐"; },
        "inspector--block-options--align-middle": function(d) { return "居中对齐"; },
        "inspector--block-options--align-bottom": function(d) { return "底部对齐"; },
        "inspector--block-options--distribute-horizontally": function(d) { return "水平分布"; },
        "inspector--block-options--distribute-vertically": function(d) { return "垂直分布"; },
        "inspector--order-bring-to-front--label": function(d) { return "置于顶层"; },
        "inspector--order-bring-to-front--hint": function(d) { return "将图层置于顶层"; },
        "inspector--order-send-to-back--label": function(d) { return "置于底层"; },
        "inspector--order-send-to-back--hint": function(d) { return "将图层置于底层"; },
        "inspector--panel-link-label": function(d) { return "链接"; },
        "inspector--panel-link-placeholder": function(d) { return "添加链接"; },
        "inspector--chart-options--options": function(d) { return "元素"; },
        "inspector--chart-options--toggle-show-category-labels": function(d) { return "分类标签"; },
        "inspector--chart-options--toggle-value-labels": function(d) { return "值标签"; },
        "inspector--chart-options--scale-labels": function(d) { return "刻度标签"; },
        "inspector--chart-options--toggle-category-axis": function(d) { return "分类轴"; },
        "inspector--chart-options--toggle-scale-axis": function(d) { return "刻度轴"; },
        "inspector--chart-options--toggle-legend": function(d) { return "图例"; },
        "inspector--chart-options--toggle-background": function(d) { return "背景"; },
        "inspector--chart--legend-options--bullet-style": function(d) { return "标志样式"; },
        "inspector--chart--legend-options--bullet-style-dot": function(d) { return "点"; },
        "inspector--chart--legend-options--bullet-style-square": function(d) { return "方块"; },
        "inspector--chart--legend-options--layout": function(d) { return "布局"; },
        "inspector--chart--legend-options--layout-horizontal": function(d) { return "水平"; },
        "inspector--chart--legend-options--layout-vertical": function(d) { return "垂直"; },
        "inspector--chart-options--background-color": function(d) { return "背景颜色"; },
        "inspector--chart-options--color-label": function(d) { return "颜色"; },
        "inspector--chart-options--color-palette-label": function(d) { return "颜色板"; },
        "inspector--chart-options--select-chart-type": function(d) { return "图表类型"; },
        "inspector--chart-options--scale-label": function(d) { return "刻度"; },
        "inspector--chart-options--min-scale-label": function(d) { return "最小刻度"; },
        "inspector--chart-options--max-scale-label": function(d) { return "最大刻度"; },
        "inspector--chart-options--scale-step-label": function(d) { return "步长"; },
        "inspector--chart-options--default-scale-placeholder": function(d) { return "自动"; },
        "inspector--chart-options--dashed-scale-lines": function(d) { return "虚线"; },
        "inspector--chart-options--show-tick-marks": function(d) { return "显示刻度"; },
        "inspector--chart-options--toggle-grid": function(d) { return "网格"; },
        "inspector--chart-options--labels-position": function(d) { return "位置"; },
        "inspector--chart-options--labels-position-auto": function(d) { return "自动"; },
        "inspector--chart-options--labels-position-hide": function(d) { return "隐藏"; },
        "inspector--chart-options--labels-position-rotate": function(d) { return "旋转"; },
        "inspector--chart-options--labels-stroke": function(d) { return "轮廓"; },
        "inspector--chart-options--width": function(d) { return "宽度"; },
        "inspector--chart-options--bar-width-control": function(d) { return "条形宽度"; },
        "inspector--chart-options--corner-radius-control": function(d) { return "角半径"; },
        "inspector--chart-options--dot-size": function(d) { return "点大小"; },
        "inspector--chart-options--toggle-smooth-line": function(d) { return "平滑线"; },
        "inspector--chart-options--line-width-control": function(d) { return "线条宽度"; },
        "inspector--chart-options--show-dots": function(d) { return "显示点"; },
        "inspector--chart-options--area-opacity": function(d) { return "区域透明度"; },
        "inspector--chart-options--donut-label": function(d) { return "环形图"; },
        "inspector--chart-options--pie-donut-hole": function(d) { return "环孔大小"; },
        "inspector--chart-options--pie-padding-control": function(d) { return "填充"; },
        "inspector--chart-options--pie-corners-control": function(d) { return "角落"; },
        "inspector--chart-options--pie-labels-distance": function(d) { return "距离"; },
        "inspector--chart-options--pie-labels-position-radial": function(d) { return "径向"; },
        "inspector--chart-options--pie-labels-position-callout": function(d) { return "标注"; },
        "inspector--chart-options--edit-chart-data-button": function(d) { return "编辑数据"; },
        "inspector--chart-options--finish-editing-chart-data": function(d) { return "完成"; },
        "inspector--chart-options--replace-chart-data-button": function(d) { return "替换数据"; },
        "inspector--chart-options--font-weight": function(d) { return "粗体"; },
        "inspector--chart-options--font-italic": function(d) { return "斜体"; },
        "inspector--chart-options--text-color": function(d) { return "文本颜色"; },
        "inspector--chart-options--axis-color": function(d) { return "轴线颜色"; },
        "inspector--shape-options--fill": function(d) { return "填充"; },
        "inspector--line-options--appearance": function(d) { return "外观"; },
        "inspector--line-options--line-color": function(d) { return "线条颜色"; },
        "inspector--line-options-dash-style-none": function(d) { return "实线"; },
        "inspector--line-options-dash-style-dotted": function(d) { return "点状线"; },
        "inspector--line-options-dash-style-dashed": function(d) { return "虚线"; },
        "inspector--shape-options--toggle-border": function(d) { return "边框"; },
        "inspector--shape-options--border-color": function(d) { return "边框颜色"; },
        "inspector--shape-options--border-width": function(d) { return "边框宽度"; },
        "inspector--shape-options--line-style": function(d) { return "线条样式"; },
        "inspector--shape-options--arrowheads": function(d) { return "箭头"; },
        "inspector--shape-options--toggle-shrink-to-fit": function(d) { return "缩小字体以适应"; },
        "inspector--video-options--playback": function(d) { return "播放"; },
        "inspector--video-options--appearance": function(d) { return "外观"; },
        "inspector--video-options--autoplay": function(d) { return "自动播放"; },
        "inspector--video-options--hide-controls": function(d) { return "隐藏控件?"; },
        "inspector--video-options--loop": function(d) { return "循环播放"; },
        "inspector--video-options--mute": function(d) { return "静音"; },
        "inspector--clip-options--preset": function(d) { return "录制形状"; },
        "inspector--clip-options--thumbnail": function(d) { return "缩略图"; },
        "inspector--animations--header": function(d) { return "动画"; },
        "inspector--animations--preset--none": function(d) { return "无"; },
        "inspector--animations--preset--instant": function(d) { return "即时"; },
        "inspector--animations--preset--fade-in": function(d) { return "淡入"; },
        "inspector--animations--preset--slide-up": function(d) { return "向上滑动"; },
        "inspector--animations--preset--slide-down": function(d) { return "向下滑动"; },
        "inspector--animations--preset--slide-right": function(d) { return "向右滑动"; },
        "inspector--animations--preset--slide-left": function(d) { return "向左滑动"; },
        "inspector--animations--preset--grow": function(d) { return "增大"; },
        "inspector--animations--preset--shrink": function(d) { return "缩小"; },
        "inspector--animations--order--headline": function(d) { return "顺序"; },
        "inspector--animations--order--preview": function(d) { return "预览"; },
        "inspector--animations--order--entry--clip--label": function(d) { return "录制"; },
        "inspector--animations--empty-state": function(d) { return "选择要动画化的对象。"; },
        "integration--contact-support-link": function(d) { return "联系支持团队"; },
        "integration--troubleshooting-tips-link": function(d) { return "故障排除提示"; },
        "integration--error--generic": function(d) { return "发生了错误,我们只知道这些。如果问题持续,请联系支持团队。"; },
        "integration--error--invalid-credentials": function(d) { return "我们无法验证您的身份。检查您输入的信息并重试。"; },
        "integration--error--missing-credential": function(d) { return "请填写所有必填信息以继续。"; },
        "integration--error--not-connected": function(d) { return "我们可能已与chartmogul断开连接。选择“图表”图标以检查集成,并在需要时使用您的api密钥重新连接。"; },
        "integration--google--error--cannot-fetch-data": function(d) { return "我们无法从google导入数据。"; },
        "integration--google--error--cannot-fetch-data--with-links": function(d) { return "我们无法从google导入数据。请查看这些#[troubleshooting_tips]或联系#[contact_support]。"; },
        "integration--google--error--api-not-loaded": function(d) { return "导入时出了点问题。请检查您是否联网,然后重试。"; },
        "integration--google--error--popup-blocked": function(d) { return "启用浏览器弹出窗口,然后重试。"; },
        "integration--google--error--sheet-too-big": function(d) { return "google表格的大小限制为5mb。请尝试导入较小的文件或查看我们的[troubleshooting_tips]。"; },
        "integration--google--analytics--no-account-connected-to-email": function(d) { return "我们无法找到与此电子邮件地址相关联的google analytics帐户。请尝试使用不同的帐户登录。"; },
        "integration--google--document-picker--warning": function(d) { return "google picker无法正常显示?请查看这些#[troubleshooting_tips]或联系#[contact_support]。"; },
        "integration--google--analytics--dropdown-account": function(d) { return "帐户"; },
        "integration--google--analytics--dropdown-profile": function(d) { return "资料"; },
        "integration--google--analytics--sessions": function(d) { return "会话"; },
        "integration--google--analytics--sessions-by-top-countries": function(d) { return "前几个国家的会话"; },
        "integration--google--analytics--new-users": function(d) { return "新用户"; },
        "integration--google--analytics--new-users-by-top-countries": function(d) { return "前几个国家的新用户"; },
        "integration--google--analytics--pageviews": function(d) { return "每个会话的页面数量"; },
        "integration--google--analytics--platform-distribution": function(d) { return "平台分布"; },
        "integration--google--analytics--top-10-browsers": function(d) { return "前10个浏览器"; },
        "integration--google--analytics--top-10-keywords": function(d) { return "前10个关键字"; },
        "integration--google--analytics--top-10-pages": function(d) { return "前10页"; },
        "integration-google-analytics-7-days-ago": function(d) { return "过去7天"; },
        "integration-google-analytics-14-days-ago": function(d) { return "过去14天"; },
        "integration-google-analytics-30-days-ago": function(d) { return "过去30天"; },
        "integration--google--analytics--error--cannot-fetch-data": function(d) { return "无法从google analytics导入数据。如果问题持续,请#[contact_support]。"; },
        "integration--chartmogul--period-last-7-days": function(d) { return "过去7天"; },
        "integration--chartmogul--period-last-30-days": function(d) { return "过去30天"; },
        "integration--chartmogul--period-last-90-days": function(d) { return "过去90天"; },
        "integration--chartmogul--period-last-360-days": function(d) { return "过去360天"; },
        "integration--chartmogul--interval-day": function(d) { return "每天"; },
        "integration--chartmogul--interval-week": function(d) { return "每周"; },
        "integration--chartmogul--interval-month": function(d) { return "每月"; },
        "integration--chartmogul--interval-quarter": function(d) { return "每季度"; },
        "integration--chartmogul--metrics-mrr": function(d) { return "月度循环收入"; },
        "integration--chartmogul--metrics-arr": function(d) { return "年度收入"; },
        "integration--chartmogul--customer-count": function(d) { return "客户数"; },
        "integration--chartmogul--arpa": function(d) { return "每个账户的平均收入"; },
        "integration--chartmogul--customer-churn-rate": function(d) { return "客户流失率"; },
        "integration--chartmogul--mrr-churn-rate": function(d) { return "mrr流失率"; },
        "integration--chartmogul--ltv": function(d) { return "客户生命周期价值(ltv)"; },
        "library--navigation--return-btn": function(d) { return "返回"; },
        "library--sidebar--templates": function(d) { return "模板"; },
        "library--sidebar--fonts": function(d) { return "字体"; },
        "library--sidebar--images": function(d) { return "图片"; },
        "library--sidebar--videos": function(d) { return "视频"; },
        "library--card--context-menu--delete": function(d) { return "删除"; },
        "library--card--context-menu--rename": function(d) { return "重命名"; },
        "library--workspace-font-card--delete--confirmation": function(d) { return "删除字体?"; },
        "library--card--new-template": function(d) { return "新模板"; },
        "library--media-upload--images-title": function(d) { return "上传图片"; },
        "library--media-upload--video-title": function(d) { return "上传视频"; },
        "library--media-upload--fonts-title": function(d) { return "上传字体"; },
        "library--media-upload--image-selection-allowed-types": function(d) { return "你可以上传gif,jpeg,svg,png等格式的图片"; },
        "library--media-upload--video-selection-allowed-types": function(d) { return "你可以上传mp4,mkv,avi等格式的视频"; },
        "library--media-upload--upload-button": function(d) { return "选择文件"; },
        "library--image-card--more-options-icon-title": function(d) { return "选项"; },
        "library--image-card--delete--confirmation": function(d) { return "删除图片?"; },
        "library--image-card--created-at": function(d) { return "添加于" + d.date; },
        "library--image-card--details--button": function(d) { return "查看图片详情"; },
        "library--image-details-modal--timestamp-label": function(d) { return "添加于#[date]"; },
        "library--video-card--delete--confirmation": function(d) { return "删除视频?"; },
        "library-video-upload-card--cancel-button": function(d) { return "取消上传"; },
        "library--video-card--details--button": function(d) { return "显示视频详情"; },
        "library--upload-card--queued": function(d) { return "排队中"; },
        "library--upload-card--uploading": function(d) { return "上传中"; },
        "library--upload-card--processing": function(d) { return "处理中..."; },
        "library--upload-card--pre-processing-failed": function(d) { return "你的文件可能出了点问题。请再次尝试上传,如果问题仍然存在,请联系支持团队。"; },
        "library--upload-card--failed": function(d) { return "似乎发生了网络/后处理错误。稍后再试,并联系支持团队,如果问题继续存在。"; },
        "library--template-card--details--button": function(d) { return "显示模板详情"; },
        "library--template-card--draft--button": function(d) { return "编辑草稿"; },
        "library--font-card--details--button": function(d) { return "显示字体详情"; },
        "library--empty-state--title": function(d) { return "没有模板"; },
        "library--empty-state--text": function(d) { return "创建模板幻灯片,供您的团队使用,以使用您品牌的自定义字体和颜色来制作演示文稿。"; },
        "library--empty-state--action-button": function(d) { return "新模板"; },
        "live-collab--session-started-popover--description": function(d) { return "#[count] " + plural(d.count, 0, en, { one: "名团队成员正在", other: "名团队成员正在" }) + "进行实时会话。"; },
        "live-collab--session-started-popover--join-button": function(d) { return "加入"; },
        "live-collab--device-picker-go-live": function(d) { return "开始直播"; },
        "live-collab--session-popover--conversation-section-title": function(d) { return "正在直播"; },
        "live-collab--session-popover--user-tooltip": function(d) { return "跳转到幻灯片 #[slide-number]"; },
        "live-collab--session-popover--local-member-name": function(d) { return "你"; },
        "live-collab--session-popover--leave-button": function(d) { return "离开"; },
        "live-collab--session-popover--copy-link": function(d) { return "复制链接"; },
        "live-collab--session-popover--screen-sharing": function(d) { return "开始屏幕共享"; },
        "live-collab--new-participant": function(d) { return "加入了会话。"; },
        "live-collab--leave-session": function(d) { return "你已经离开了会话。"; },
        "live-collab--network-failure": function(d) { return "会话已断开连接。请检查您的互联网连接并尝试重新加入。"; },
        "live-collab--visible-live-cursors": function(d) { return "实时光标现在可见"; },
        "live-collab--hidden-live-cursors": function(d) { return "实时光标现在隐藏"; },
        "live-collab--leave-session-for-presenter-title": function(d) { return "打开演示文稿模式"; },
        "live-collab--leave-session-for-presenter-button": function(d) { return "离开并打开演示文稿模式"; },
        "live-collab--leave-session-title": function(d) { return "离开直播会话?"; },
        "live-collab--leave-session-button": function(d) { return "离开"; },
        "live-collab--leave-session-text": function(d) { return "您即将退出演示文稿编辑器。这将使您离开直播会话。"; },
        "live-collab--tooltip-video-on": function(d) { return "隐藏视频"; },
        "live-collab--tooltip-video-off": function(d) { return "显示视频"; },
        "live-collab--tooltip-audio-on": function(d) { return "静音"; },
        "live-collab--tooltip-audio-off": function(d) { return "取消静音"; },
        "live-collab--tooltip-start-live-session-title": function(d) { return "开始直播"; },
        "live-collab--tooltip-start-live-session-alone-content": function(d) { return "任何进入此演示文稿的人都可以加入直播会话。"; },
        "live-collab--tooltip-start-live-session-other-people-content": function(d) { return "开始实时协作的直播会话。"; },
        "live-collab--tooltip-start-live-session-started-content": function(d) { return "加入实时协作的直播会话。"; },
        "live-collab--tooltip-live-session-loading": function(d) { return "直播会话正在加载中..."; },
        "live-collab--alert-copied-link": function(d) { return "邀请链接已复制到您的剪贴板。"; },
        "live-collab--tooltip-unauthorized": function(d) { return "此直播会话当前不可用。"; },
        "live-collab--tooltip-unsupported": function(d) { return "此浏览器不支持直播会话。请使用桌面应用程序或尝试其他浏览器。"; },
        "live-collab--tooltip-unavailable-title": function(d) { return "看起来这个直播会话已满员"; },
        "live-collab--tooltip-unavailable": function(d) { return "我们一次只能承载那么多人。尝试重新打开演示文稿,看是否有空位。"; },
        "live-collab--tooltip-error": function(d) { return "直播会话出现问题。请稍后再试。"; },
        "magic-bell--header": function(d) { return "通知"; },
        "magic-bell--inbox-header": function(d) { return "收件箱"; },
        "magic-bell--subscribed-header": function(d) { return "已订阅"; },
        "magic-bell--tooltip": function(d) { return "通知"; },
        "magic-bell--header-mark-as-read": function(d) { return "全部标记为已读"; },
        "magic-bell--header-settings": function(d) { return "设置"; },
        "magic-bell--mark-as-unread": function(d) { return "标记为未读"; },
        "magic-bell--settings": function(d) { return "设置"; },
        "magic-bell--mark-as-read": function(d) { return "标记为已读"; },
        "magic-bell--dismiss": function(d) { return "关闭通知"; },
        "magic-bell--empty-state-title": function(d) { return "你已经全部更新了"; },
        "magic-bell--empty-state-text": function(d) { return "当你的工作区有活动时,新的通知将会出现在这里。"; },
        "magic-bell--empty-state--user-tab-title": function(d) { return "没有订阅更新"; },
        "magic-bell--slack-nudge--title": function(d) { return "通过 pitch 应用程序在 slack 中了解何时需要您"; },
        "magic-bell--slack-nudge--link": function(d) { return "将 pitch 添加到 slack"; },
        "magic-bell--empty-state--user-tab-text": function(d) { return "在演示文稿菜单中订阅通知,获取所有标记为完成的新评论和幻灯片的更新。"; },
        "magic-bell--empty-state--subscriptions-help-link-url": function(d) { return "https://help.pitch.com/en/articles/5108435-view-and-subscribe-to-in-app-notifications"; },
        "magic-bell--empty-state--subscriptions-help-link-text": function(d) { return "了解更多关于订阅的信息"; },
        "magic-bell--accept-invite": function(d) { return "接受邀请"; },
        "magic-bell--document-deleted": function(d) { return "恢复演示文稿"; },
        "magic-bell--subscribed-presentation-tooltip": function(d) { return "您已订阅此演示文稿的所有活动更新。"; },
        "magic-bell--subscribed-presentation-create-trigger-tooltip": function(d) { return "您已订阅此演示文稿的更新,因为您创建了它。"; },
        "magic-bell--subscribed-presentation-comment-trigger-tooltip": function(d) { return "您已订阅此演示文稿的更新,因为您在此演示文稿中发表了评论。"; },
        "magic-bell--subscribed-presentation-edit-trigger-tooltip": function(d) { return "您已订阅此演示文稿的更新,因为您编辑了它。"; },
        "magic-bell--subscribed-presentation-assignment-trigger-tooltip": function(d) { return "您已订阅此演示文稿的更新,因为您被指派在此演示文稿中的幻灯片。"; },
        "magic-bell--subscribed-presentation-manual-trigger-tooltip": function(d) { return "您已订阅此演示文稿的更新。"; },
        "magic-bell--notification-menu--unsubscribe": function(d) { return "取消订阅演示文稿"; },
        "mobile--settings--navbar-title": function(d) { return "设置"; },
        "mobile--settings--notifications-title": function(d) { return "通知设置"; },
        "mobile--settings--notifications-enable": function(d) { return "启用通知"; },
        "mobile--settings--my-account": function(d) { return "我的账户"; },
        "mobile--update-screen--title": function(d) { return "您的 pitch 版本不再受支持"; },
        "mobile--update-screen--android-description": function(d) { return "更新已在 google play store 中等待您"; },
        "mobile--update-screen--ios-description": function(d) { return "更新已在 app store 中等待您"; },
        "mobile--update-screen--update-button": function(d) { return "更新到最新版本"; },
        "mobile--update-screen--footer-text": function(d) { return "问题?"; },
        "mobile--update-screen--footer-link": function(d) { return "联系支持团队"; },
        "my-account--screen-name": function(d) { return "我的账户"; },
        "my-account--danger-zone--title": function(d) { return "危险区域"; },
        "my-account--danger-zone--description": function(d) { return "小心!此操作无法撤销。"; },
        "my-account--danger-zone--delete-account": function(d) { return "删除我的账户"; },
        "my-account--danger-zone--delete-account-sent": function(d) { return "已发送删除请求"; },
        "my-account--danger-zone--deletion-processing": function(d) { return "您的删除请求正在处理中。"; },
        "account--deletion--owner-heading": function(d) { return "永久删除您的账户?"; },
        "account--deletion--action-cannot-undo-warning": function(d) { return "此操作无法撤销。"; },
        "account--deletion--transfer-help": function(d) { return "了解如何转让您的工作区所有权,而不是删除它们"; },
        "account--deletion--confirm-action": function(d) { return "删除账户"; },
        "account--deletion--heading": function(d) { return "请求删除账户?"; },
        "account--deletion--description-opener": function(d) { return "我理解删除我的账户:"; },
        "account--deletion--fact--is-permanent": function(d) { return "是永久的"; },
        "account--deletion--fact--deletes-all-my-data": function(d) { return "将删除所有我的演示文稿和工作区"; },
        "account--deletion--fact--revokes-my-access": function(d) { return "将取消我的对共享演示文稿和工作区的访问权限"; },
        "account--deletion--input-placeholder": function(d) { return "输入 DELETE"; },
        "account--deletion--input-label": function(d) { return "为确认,请以大写字母输入delete"; },
        "account--deletion--heading-success": function(d) { return "已发送删除请求"; },
        "account--deletion--description-success": function(d) { return "很抱歉看到您离开!我们已收到您的请求,将尽快处理。"; },
        "account--deletion--primary-action-success": function(d) { return "关闭此窗口"; },
        "account--deletion--failure-heading": function(d) { return "发送请求时出错"; },
        "account--deletion--failure-description": function(d) { return "稍后再试,并联系支持人员如果问题仍然存在。"; },
        "mobile--save-logs--title": function(d) { return "保存日志"; },
        "mobile--save-logs--message": function(d) { return "您是否要保存应用程序日志?"; },
        "mobile--self-segmentation--title": function(d) { return "告诉我们更多"; },
        "mobile--self-segmentation--subtitle": function(d) { return "我们想多了解您一些,以便帮助您最大程度地利用pitch。"; },
        "mobile--self-segmentation--company-role--title": function(d) { return "您的角色"; },
        "mobile--self-segmentation--company-size--title": function(d) { return "公司规模"; },
        "mobile--self-segmentation--primary-use--title": function(d) { return "您将用pitch进行"; },
        "mobile--workspace--creation-failed": function(d) { return "创建此工作区时出现问题。请重试,并联系支持人员如果问题继续存在。"; },
        "mobile--workspace--join-failed": function(d) { return "加入此工作区时出现问题。请重试,并联系支持人员如果问题继续存在。"; },
        "mobile--marketing--subscription-failed": function(d) { return "订阅列表时出现问题。请重试,并联系支持人员如果问题继续存在。"; },
        "mobile--marketing--email-verified-message": function(d) { return d.email + "已成功验证。"; },
        "mobile--onboarding--email-is-not-verified": function(d) { return "我们需要在您登录之前验证您的电子邮件。请检查您的收件箱以获取说明。"; },
        "mobile--onboarding--notifications--enable-button": function(d) { return "启用通知"; },
        "mobile--join-workspace-button": function(d) { return "加入"; },
        "mobile--join-workspace--fetch-failed": function(d) { return "加载您组织的工作区时出了些问题。"; },
        "mobile--join-workspace--no-workspaces-found": function(d) { return "我们无法找到您组织的工作区。尝试创建一个新的工作区。"; },
        "mobile--join-workspace--retry": function(d) { return "重试"; },
        "mobile--create-workspace--cancel": function(d) { return "取消"; },
        "mobile--onboarding--notifications--header": function(d) { return "通知"; },
        "mobile--onboarding--notifications--copy": function(d) { return "了解您工作区内的最新情况。"; },
        "mobile--onboarding--notifications--list-mentions": function(d) { return "当有人提及您时"; },
        "mobile--onboarding--notifications--list-personal-folder": function(d) { return "当有人分配幻灯片给您时"; },
        "mobile--onboarding--notifications--list-comments": function(d) { return "当有人回复您的评论时"; },
        "mobile--error--workspace-not-found": function(d) { return "我们找不到该工作区。尝试向邀请您的人寻求帮助。"; },
        "mobile--sharing-presentations--managed-links": function(d) { return "与任何人分享"; },
        "mobile--sharing-presentations--share-link": function(d) { return "分享链接"; },
        "mobile--sharing-presentations--invite-members": function(d) { return "邀请其他人"; },
        "mobile--sharing-presentations--change-access-title": function(d) { return "选择权限"; },
        "mobile--sharing-presentations--view-members": function(d) { return "查看成员和访客"; },
        "mobile--sharing-presentations--view-members-modal-title": function(d) { return "成员和访客"; },
        "mobile--sharing-presentations--link-all-access": function(d) { return "任何拥有链接的人都可以使用它"; },
        "mobile--sharing-presentations--link-collaborators-access": function(d) { return "只有受邀的协作者才能使用此链接"; },
        "mobile--sharing-presentations--link-members-access": function(d) { return "仅成员可以使用此链接"; },
        "mobile--sharing-presentations--export-pdf": function(d) { return "导出为pdf"; },
        "mobile--sharing-presentations--export-pdf-subtitle": function(d) { return "任何gif或视频将导出为图片"; },
        "mobile--sharing-presentations--modal-title": function(d) { return "演示文稿选项"; },
        "mobile--sharing-presentations--subscribe-action": function(d) { return "订阅演示文稿"; },
        "mobile--sharing-presentations--subscribe-description": function(d) { return "获取有关所有评论和已完成幻灯片的通知"; },
        "mobile--sharing-presentations--unsubscribe-action": function(d) { return "取消订阅演示文稿"; },
        "mobile--sharing-presentations--unsubscribe-description": function(d) { return "只在与您相关的活动上收到通知"; },
        "mobile--sharing-presentations--share-slide-link": function(d) { return "分享幻灯片链接"; },
        "mobile--sharing-presentations--leave": function(d) { return "离开"; },
        "mobile--folders--subfolders-section-title": function(d) { return "文件夹"; },
        "mobile--folders--presentations-section-title": function(d) { return "演示文稿"; },
        "mobile--folder-sharing--share-folder-title": function(d) { return "共享文件夹"; },
        "mobile--folder-sharing--members-list": function(d) { return "这是所有可以访问此文件夹的人员。只有所有者才能邀请其他人。"; },
        "mobile--folder-sharing--members-list-owner": function(d) { return "您可以与此工作区中的其他人共享此文件夹。"; },
        "mobile--folder-sharing-count-one": function(d) { return "与" + d.name + "共享"; },
        "mobile--folder-sharing-count-many": function(d) { return "与其他" + d.count + "人共享"; },
        "mobile--folder-sharing--invite-via-email": function(d) { return "搜索工作区成员"; },
        "mobile--folder-sharing--invite-others--button": function(d) { return "邀请"; },
        "mobile--folder-sharing--share-link-button": function(d) { return "分享链接"; },
        "mobile--folder-invite-message--cant-invite-self": function(d) { return "你不能邀请自己"; },
        "mobile--folder-invite-message--sharee-already-exist": function(d) { return "你已经与此成员分享了此文件夹"; },
        "mobile--folder-invite-message--not-workspace-member": function(d) { return "你只能与工作区成员分享此文件夹"; },
        "mobile--folder-sharing--access-can-edit": function(d) { return "可以编辑"; },
        "mobile--folder-sharing--access-can-view": function(d) { return "可以查看"; },
        "mobile--folder-sharing--change-access-title": function(d) { return "更改权限"; },
        "mobile--folder-sharing--remove-access": function(d) { return "从文件夹中移除"; },
        "mobile--folder-sharing--action-leave": function(d) { return "离开"; },
        "mobile--folder-sharing--role-owner": function(d) { return "所有者"; },
        "mobile--folder-sharing--leave-success": function(d) { return "你已离开\"" + d.folder + "\""; },
        "mobile--folder-sharing--leave-folder-failed": function(d) { return "我们无法将你从\"" + d.folder + "\"中删除"; },
        "mobile--folder-sharing--leave-undo": function(d) { return "撤消"; },
        "mobile--folder-sharing--option-title": function(d) { return "选项"; },
        "mobile--managed-links-feature-description": function(d) { return "打开链接不需要pitch帐户。"; },
        "mobile--managed-links-view-count": function(d) { return plural(d.count, 0, { one: number(d.count, "次数") + "访问", other: number(d.count, "次数") + "访问" }); },
        "mobile--managed-links-new-link-button": function(d) { return "新的自定义链接"; },
        "mobile--managed-links-unique-links-title": function(d) { return "自定义链接"; },
        "mobile--managed-links-new-link-title": function(d) { return "新的自定义链接"; },
        "mobile--managed-links-edit-link-title": function(d) { return "编辑自定义链接"; },
        "mobile--managed-links-unique-links-description": function(d) { return "创建唯一链接以跟踪来自特定来源的访问。"; },
        "mobile--managed-links-links-list-header": function(d) { return "链接"; },
        "mobile--managed-links-enabled-option": function(d) { return "已启用"; },
        "mobile--managed-links-edit-option": function(d) { return "编辑链接设置"; },
        "mobile--managed-links-option-share-link": function(d) { return "分享链接"; },
        "mobile--managed-links-option-copy-access-code": function(d) { return "复制访问代码"; },
        "mobile--managed-links-option-delete-link": function(d) { return "删除链接"; },
        "mobile--managed-links-delete-link-confirmation": function(d) { return "与您分享链接的人将无法再使用该链接访问此演示文稿。"; },
        "mobile--managed-links-delete-link-confirm-button": function(d) { return "删除"; },
        "mobile--managed-links-link-description": function(d) { return "链接名称"; },
        "mobile--managed-links-link-preview": function(d) { return "预览:"; },
        "mobile--managed-links-save-button-title": function(d) { return "保存"; },
        "mobile--managed-links-access-code": function(d) { return "访问代码"; },
        "mobile--managed-links-access-code-description": function(d) { return "仅允许有代码的访客访问您的演示文稿。"; },
        "mobile--managed-links-access-code-copied": function(d) { return "访问代码已复制到剪贴板"; },
        "mobile--managed-links-untitled-link": function(d) { return "无标题链接"; },
        "mobile--managed-links-access-code-title": function(d) { return "有人与您分享了演示文稿"; },
        "mobile--managed-links-access-code-body": function(d) { return "输入访问代码以继续"; },
        "mobile--managed-links--wrong-access-code-alert--title": function(d) { return "访问代码错误"; },
        "mobile--managed-links--wrong-access-code-alert--body": function(d) { return "请再次尝试输入,或联系所有者。"; },
        "mobile--managed-links-access-code-placeholder": function(d) { return "访问代码"; },
        "mobile--managed-links-remember-passcode": function(d) { return "记住密码"; },
        "mobile--managed-links-create-error": function(d) { return "创建链接时出现问题,请重试。"; },
        "mobile--managed-links-access-code-cta": function(d) { return "继续"; },
        "mobile--export--cancel": function(d) { return "取消"; },
        "mobile--export--save-file": function(d) { return "保存"; },
        "mobile--export--in-progress": function(d) { return "正在创建 #[title]..."; },
        "mobile--export--ready": function(d) { return "#[title] 已准备好导出。"; },
        "mobile--export--error": function(d) { return "导出文件时出现问题,请重试,并如问题持续,请联系支持。"; },
        "mobile--export--error-dismiss": function(d) { return "关闭"; },
        "mobile--presentation-invite-message--existing-member": function(d) { return d.sharee + "已经是此工作区的成员。他们将通过电子邮件收到此演示文稿的链接。"; },
        "mobile--presentation-invite-message--sharees-already-exist": function(d) { return "此电子邮件地址已经存在分享链接"; },
        "mobile--presentation-invite--suggestions": function(d) { return "建议"; },
        "mobile--presentation-invite--member--label": function(d) { return "成员"; },
        "mobile--comments-screen--empty-state": function(d) { return "在此幻灯片上留下评论。"; },
        "mobile--unsafe-document-page--description": function(d) { return "此演示文稿可能包含恶意内容。如果您从未知来源收到此链接,我们建议您关闭屏幕。"; },
        "mobile--unsafe-document-page--description--action": function(d) { return "仍然继续"; },
        "mobile--presentation-overview--options-title": function(d) { return "选项"; },
        "mobile--presentation-overview--assign-tab": function(d) { return "分配"; },
        "mobile--presentation-overview--status-tab": function(d) { return "设置状态"; },
        "mobile--presentation-details--no-reactions": function(d) { return "没有反应"; },
        "mobile--presentation-details--view-only-shared-by": function(d) { return "只能查看 · 分享者:" + d.name; },
        "mobile--tabs--dashboard": function(d) { return "仪表盘"; },
        "mobile--tabs--notifications": function(d) { return "通知"; },
        "workspace-access--team-tab": function(d) { return "团队"; },
        "workspace-access--guest-tab": function(d) { return "访客"; },
        "workspace-access--team-count": function(d) { return "团队(" + plural(d.count, 0, en, { "0": "…", other: number(d.count, "count") }) + ")"; },
        "mobile--workspace-access--invite-via-email": function(d) { return "通过电子邮件邀请"; },
        "mobile--presentation-details--comment-button": function(d) { return "评论"; },
        "mobile--presentation-details--reaction-button": function(d) { return "反应"; },
        "mobile--presentation-details--speaker-notes-button": function(d) { return "备注"; },
        "mobile--presentation-details--speaker-notes-input-placeholder": function(d) { return "添加演讲备注..."; },
        "mobile--speaker-notes--add-link": function(d) { return "添加链接"; },
        "mobile--speaker-notes--link-save": function(d) { return "保存"; },
        "mobile--presentation-details--skipped-slide": function(d) { return "跳过"; },
        "mobile--offline-indicator--badge-header": function(d) { return "离线"; },
        "mobile--offline-indicator--badge-description": function(d) { return "您的更改已保存,将在您重新联机时同步。"; },
        "mobile--offline-state-view--title": function(d) { return "看起来您已经离线了。"; },
        "mobile--offline-state-view--subtitle": function(d) { return "您需要联网才能使用pitch。检查您的连接并重试。"; },
        "mobile--offline-state-view--notifications-subtitle": function(d) { return "您需要联网才能查看通知。检查您的连接并重试。"; },
        "mobile--offline-state-view--share-subtitle": function(d) { return "您需要联网才能共享演示文稿。检查您的连接并重试。"; },
        "mobile--notifications-screen--mark-read-action": function(d) { return "标记为 \n 已读"; },
        "mobile--notifications-screen--mark-unread-action": function(d) { return "标记为 \n 未读"; },
        "mobile--notifications-screen--dismiss-action": function(d) { return "关闭"; },
        "mobile--notifications-screen--unsubscribe-action": function(d) { return "取消订阅"; },
        "mobile--workspace-switcher--join-button": function(d) { return "创建或加入工作区"; },
        "mobile--workspace--recently-edited-section": function(d) { return "最近编辑"; },
        "mobile--quick-find--button-label": function(d) { return "搜索"; },
        "mobile--quick-find--cancel-button-label": function(d) { return "取消"; },
        "mobile--quick-find--recents-list-header": function(d) { return "最近"; },
        "mobile--quick-find--clear-recents-button-label": function(d) { return "清除"; },
        "mobile--quick-find--initial-empty-list-placeholder": function(d) { return "快速查找演示文稿和文件夹"; },
        "mobile--ipad-upsell--banner-title": function(d) { return "pitch 在您的浏览器中效果更佳"; },
        "mobile--ipad-upsell--banner-subtitle": function(d) { return "我们的移动应用程序尚未针对 ipad 进行优化,但您可以在浏览器中打开演示文稿,在全屏幕中查看和导航它们。"; },
        "mobile--ipad-upsell--banner-button": function(d) { return "在浏览器中打开 pitch"; },
        "mobile--ipad-upsell--dismiss-button": function(d) { return "关闭"; },
        "mobile--presentation-error--logged-in-as": function(d) { return "您已登录为"; },
        "mobile--presentation-error--log-in-button": function(d) { return "使用其他帐户登录"; },
        "unsafe-document-page--title": function(d) { return "此演示文稿已被标记为不安全"; },
        "unsafe-document-page--description": function(d) { return "此演示文稿可能包含恶意内容。如果您从未知来源收到了此链接,建议您关闭选项卡。#[action]"; },
        "unsafe-document-page--description--action": function(d) { return "仍要继续"; },
        "unsafe-document-page--action": function(d) { return "关闭此演示文稿"; },
        "unsafe-document-page--footer": function(d) { return "如果您认为我们错误地标记了此演示文稿,#[action]"; },
        "unsafe-document-page--footer--action": function(d) { return "给我们发送一条消息。"; },
        "unsafe-document-page--footer--terms": function(d) { return "条款和条件"; },
        "onboarding--create-workspace--heading": function(d) { return "为您的团队创建一个工作空间"; },
        "onboarding--create-workspace--description": function(d) { return "您的团队的工作空间将为您保存所有演示文稿。"; },
        "onboarding--create-workspace--label-workspace-name": function(d) { return "工作空间名称"; },
        "onboarding--create-workspace--label-self-segmentation": function(d) { return "您将用pitch做什么?"; },
        "onboarding--create-workspace--self-segmentation--work": function(d) { return "工作"; },
        "onboarding--create-workspace--self-segmentation--personal": function(d) { return "个人"; },
        "onboarding--create-workspace--self-segmentation--education": function(d) { return "教育"; },
        "onboarding--create-workspace--self-segmentation--other": function(d) { return "其他"; },
        "onboarding--create-workspace--btn-next": function(d) { return "下一步"; },
        "onboarding--create-workspace--btn-skip": function(d) { return "暂时跳过"; },
        "onboarding--join-workspace--heading": function(d) { return "加入一个工作区"; },
        "onboarding--join-workspace--description": function(d) { return "没有看到你认识的人?#[link]"; },
        "onboarding--join-workspace--description-link": function(d) { return "创建新的工作区"; },
        "onboarding--join-workspace--join-button": function(d) { return "加入"; },
        "onboarding--join-workspace--owner": function(d) { return "创建者:" + d.ownername; },
        "onboarding--join-workspace--invited": function(d) { return "你受邀加入"; },
        "onboarding--join-workspace--members": function(d) { return plural(d.members, 0, zh, { "0": "无成员", one: "1 个成员", other: number(d.members, "成员") }); },
        "onboarding--name--heading": function(d) { return "你想用什么名字呢?"; },
        "onboarding--name--description": function(d) { return "当你分享或评论演示文稿时,你的团队成员将看到你的名字。"; },
        "onboarding--name--label": function(d) { return "你的名字"; },
        "onboarding--invite-members--heading": function(d) { return "邀请你的团队成员加入"; },
        "onboarding--invite-members--description": function(d) { return "邀请团队成员与你一起创建、审查和协作演示文稿。"; },
        "onboarding--marketing-subscribe--heading": function(d) { return "想要保持关注吗?"; },
        "onboarding--marketing-subscribe--description": function(d) { return "定期获取来自 pitch 的产品电子邮件,绝对没有垃圾邮件。你可以随时取消订阅。"; },
        "onboarding--marketing-subscribe--btn-next": function(d) { return "打开pitch"; },
        "onboarding--marketing-subscribe--link--privacy-policy": function(d) { return "在我们的隐私政策中了解更多信息。"; },
        "onboarding--marketing-subscribe--opt-in-yes": function(d) { return "是的,请"; },
        "onboarding--marketing-subscribe--opt-in-no": function(d) { return "不用了,谢谢"; },
        "onboarding--company-size--heading": function(d) { return "你的公司有多少人?"; },
        "onboarding--company-size--description": function(d) { return "选择总员工人数。"; },
        "onboarding--company-size--option--just-me": function(d) { return "只有我"; },
        "onboarding--company-size--option--2-to-10": function(d) { return "2-10人"; },
        "onboarding--company-size--option--11-to-50": function(d) { return "11-50人"; },
        "onboarding--company-size--option--51-to-250": function(d) { return "51-250人"; },
        "onboarding--company-size--option--251-to-2000": function(d) { return "251-2000人"; },
        "onboarding--company-size--option--over-2000": function(d) { return "2000人以上"; },
        "onboarding--role--heading": function(d) { return "以下哪个最能描述你的工作?"; },
        "onboarding--role--description": function(d) { return "选择你花费大部分时间的选项。"; },
        "onboarding--role--product-title": function(d) { return "产品"; },
        "onboarding--role--marketing-title": function(d) { return "市场营销"; },
        "onboarding--role--design-title": function(d) { return "设计"; },
        "onboarding--role--sales-title": function(d) { return "销售"; },
        "onboarding--role--leadership-title": function(d) { return "领导力"; },
        "onboarding--role--other-title": function(d) { return "其他"; },
        "onboarding--heading": function(d) { return "让我们了解一下您"; },
        "onboarding--copy": function(d) { return "我们想更多地了解您,以便帮助您充分利用pitch。"; },
        "onboarding--next-btn": function(d) { return "下一步"; },
        "onboarding--name-input-placeholder": function(d) { return "您的姓名"; },
        "onboarding--self-segmentation--company-role--question": function(d) { return "您的职位"; },
        "onboarding--self-segmentation--company-role--leadership": function(d) { return "领导层"; },
        "onboarding--self-segmentation--company-role--product": function(d) { return "产品管理"; },
        "onboarding--self-segmentation--company-role--marketing": function(d) { return "营销"; },
        "onboarding--self-segmentation--company-role--design": function(d) { return "设计"; },
        "onboarding--self-segmentation--company-role--sales": function(d) { return "销售"; },
        "onboarding--self-segmentation--company-role--other": function(d) { return "其他"; },
        "onboarding--self-segmentation--company-size--question": function(d) { return "公司规模"; },
        "onboarding--self-segmentation--company-size--1": function(d) { return "仅有我自己"; },
        "onboarding--self-segmentation--company-size--2-to-10": function(d) { return "2-10人"; },
        "onboarding--self-segmentation--company-size--11-to-50": function(d) { return "11-50人"; },
        "onboarding--self-segmentation--company-size--51-to-200": function(d) { return "51-200人"; },
        "onboarding--self-segmentation--company-size--201-to-1000": function(d) { return "201-1000人"; },
        "onboarding--self-segmentation--company-size--more-than-1000": function(d) { return "1000人以上"; },
        "onboarding--self-segmentation--primary-use--question": function(d) { return "您主要使用pitch是用于..."; },
        "onboarding--self-segmentation--primary-use--work": function(d) { return "工作"; },
        "onboarding--self-segmentation--primary-use--personal": function(d) { return "个人项目"; },
        "onboarding--self-segmentation--primary-use--education": function(d) { return "教学或学校作业"; },
        "onboarding--self-segmentation--primary-use--other": function(d) { return "其他"; },
        "onboarding--self-segmentation--primary-use--skipped": function(d) { return "不愿透露"; },
        "onboarding--self-segmentation--other": function(d) { return "其他"; },
        "welcome-screen--dashboard-sidebar": function(d) { return "欢迎使用 pitch"; },
        "welcome-screen--welcome-message": function(d) { return "欢迎使用 pitch"; },
        "welcome-screen--sub-header": function(d) { return "您今天想做什么?"; },
        "welcome-screen--explore-template": function(d) { return "浏览模板库"; },
        "welcome-screen--explore-template--alt-text": function(d) { return "浏览模板按钮的图形"; },
        "welcome-screen--create-presentation": function(d) { return "创建新演示文稿"; },
        "welcome-screen--create-presentation--alt-text": function(d) { return "创建新演示文稿按钮的图形"; },
        "welcome-screen--import-presentation": function(d) { return "导入演示文稿"; },
        "welcome-screen--import-presentation--alt-text": function(d) { return "导入演示文稿按钮的图形"; },
        "welcome-screen--secondary-cta--link": function(d) { return "如何指南。"; },
        "welcome-screen--secondary-cta": function(d) { return "不确定从哪里开始?请查看我们的#[link]"; },
        "mini-outline--outline-list--title": function(d) { return "小纲要"; },
        "mini-outline--empty-state--headline": function(d) { return "记录您的想法的简单方法"; },
        "mini-outline--empty-state--body": function(d) { return "当您准备好时,将它们转换为基本幻灯片并开始设计。"; },
        "mini-outline--outline-more-options--tooltip": function(d) { return "更多选项"; },
        "mini-outline--outline-duplicate--button": function(d) { return "复制"; },
        "mini-outline--outline-delete--button": function(d) { return "删除"; },
        "mini-outline--new-outline--button": function(d) { return "新纲要"; },
        "mini-outline--editor-title--placeholder": function(d) { return "未命名"; },
        "mini-outline--hint-text": function(d) { return "您可以使用#[tab]和#[shift-tab]在标题和文本之间切换。"; },
        "mini-outline--hint-text2": function(d) { return "每个标题都将生成一个新幻灯片。"; },
        "mini-outline--footer-indent--tooltip": function(d) { return "幻灯片文本"; },
        "mini-outline--footer-unindent--tooltip": function(d) { return "幻灯片标题"; },
        "mini-outline--editor-create-presentation--button": function(d) { return "预览"; },
        "mini-outline--preview-title": function(d) { return "创建新演示文稿"; },
        "mini-outline--preview-details--notice": function(d) { return "您的演示文稿将添加到#[folder]中"; },
        "mini-outline--preview-style-picker--title": function(d) { return "样式"; },
        "mini-outline--preview-create-presentation--button": function(d) { return "创建演示文稿"; },
        "platform--template-gallery--page-title": function(d) { return "100+ 由专家设计的免费演示文稿模板 | pitch"; },
        "platform--template-gallery--hero-title": function(d) { return "演示文稿模板"; },
        "platform--template-gallery--hero-heading": function(d) { return "使用我们的免费演示文稿模板,您可以更快地制作下一份演示文稿。这些模板具有完全可定制的专业设计和易于使用的特点。"; },
        "platform--template-gallery--seo-footer": function(d) { return "## pitch 提供的免费演示文稿模板 \n 从头开始创建演示文稿需要花费很多时间,而且大部分时间常常用于调整布局和格式而不是处理演示文稿内容。使用 pitch,一个直观的演示文稿工具,以及我们的库中超过100个专业设计的演示文稿模板,您将能够专注于最重要的——您的信息。\n\n 寻找简单的设计风格和极简主义的幻灯片?带有各种数据可视化选项的专业演示文稿模板?玩味十足的创意幻灯片?市场营销演示文稿?或是公司推介演示文稿?我们的演示文稿模板库可以满足您的需要。\n\n 最棒的是,我们所有的演示文稿模板都完全免费使用,pitch 也是。只需选择一个模板并单击“使用此模板”即可注册帐户,这只需要几个点击。从这里开始,自定义模板非常简单,您只需要添加您的内容即可。\n\n 想要确保您的演示文稿反映公司品牌形象吗?pitch 可以帮助您轻松创建符合品牌形象的演示文稿。您可以自定义您的调色板,甚至上传自定义字体以匹配您公司的样式指南。最重要的是,您可以与团队协作——通过评论和将幻灯片分配给团队成员进行异步协作,以及通过实时视频协作进行实时协作。当您的演示文稿准备好后,您可以与任何人分享它。只需单击“分享”,创建公共链接即可分享!"; },
        "platform--template-gallery--load-more": function(d) { return "展示更多模板"; },
        "platform--template-gallery--error-title": function(d) { return "出错了"; },
        "platform--template-gallery--error-description": function(d) { return "无法加载模板库,请尝试刷新页面。"; },
        "platform--template-gallery--template-preview-error": function(d) { return "无法显示此模板预览,请尝试刷新页面。"; },
        "platform--template-details--link-copied": function(d) { return "模板链接已复制到剪贴板"; },
        "platform--template-details--updated": function(d) { return "更新于 #[date]"; },
        "platform--template-details--browse-all-templates": function(d) { return "浏览所有模板 →"; },
        "platform--template-details--explore-similar": function(d) { return "发现类似模板"; },
        "platform--template-details--explore-by-category": function(d) { return "按类别浏览更多模板"; },
        "platform--template-details--cta": function(d) { return "使用此模板"; },
        "platform--template-details--free-label": function(d) { return "免费"; },
        "platform--template-details--error-title": function(d) { return "无法显示此模板"; },
        "platform--template-details--error-description": function(d) { return "可能已被删除或设置为私有。请从我们的模板库中选择一个新模板。"; },
        "platform--template-details--error-action": function(d) { return "浏览模板库"; },
        "platform--pp--page-title": function(d) { return "演示文稿库 | pitch"; },
        "platform--pp--explore": function(d) { return "浏览更多演示文稿"; },
        "platform--pp--views": function(d) { return plural(d.views, 0, zh, { "0": "无浏览量", one: "1 次浏览", other: number(d.views, "次浏览") }); },
        "platform--pp--draft-badge": function(d) { return "草稿"; },
        "platform--pp--published-badge": function(d) { return "已发布"; },
        "platform--pp--options-button--edit": function(d) { return "编辑标题和描述"; },
        "platform--pp--options-button--remove": function(d) { return "删除"; },
        "platform--pp--options-button--report": function(d) { return "报告"; },
        "platform--pp--options-dialog--title": function(d) { return "演示文稿选项"; },
        "platform--pp--remove-dialog--message": function(d) { return "从个人资料中删除此演示文稿?"; },
        "platform--pp--remove-dialog--comment": function(d) { return "我们将从我们的网站上删除此演示文稿,并且所有浏览量将丢失。这不会从您的 pitch 工作区中删除它。"; },
        "platform--pp--remove-dialog--confirm-text": function(d) { return "删除"; },
        "platform--pp--remove-dialog--cancel-text": function(d) { return "取消"; },
        "platform--pp--presentation-removed": function(d) { return "演示文稿已从个人资料中删除。"; },
        "platform--pp--presentation-removal-error": function(d) { return "出现错误,无法删除演示文稿。请稍后再试。"; },
        "platform--creator-profile--get-in-touch": function(d) { return "联系我"; },
        "platform--creator-profile--get-in-touch-subject": function(d) { return "我在 pitch 上找到了您的个人资料"; },
        "platform--creator-profile--setup-profile": function(d) { return "设置个人资料"; },
        "platform--creator-profile--edit-profile": function(d) { return "编辑个人资料"; },
        "platform--creator-profile--templates": function(d) { return "模板"; },
        "platform--creator-profile--presentations": function(d) { return "演示文稿"; },
        "platform--creator-profile-verified-badge--tooltip": function(d) { return "验证徽章表示此账户是真实的。"; },
        "platform--creator-profile-empty-state--header": function(d) { return "还没有内容"; },
        "platform--creator-profile-empty-state--cta1": function(d) { return "看看其他人发布的内容"; },
        "platform--creator-profile-empty-state--text": function(d) { return "在 pitch 上或者"; },
        "platform--creator-profile-empty-state--cta2": function(d) { return "分享您自己的演示文稿。"; },
        "platform--username-dialog--title": function(d) { return "欢迎!\n创建您的公开资料。"; },
        "platform--username-dialog--subtitle": function(d) { return "为您的伟大创意提供一个家,让其他人可以找到它们。"; },
        "platform--username-dialog--input--label": function(d) { return "创建用户名"; },
        "platform--username-dialog--input--secondary-label": function(d) { return "不用担心。您可以在设置中稍后更新它。"; },
        "platform--username-dialog--continue": function(d) { return "继续"; },
        "platform--username-dialog--info": function(d) { return "您的公开资料将在此链接中显示:#[profile_link]"; },
        "platform--new-me--error": function(d) { return "创建资料失败。请确保您登录的账户具有发布权限。#[editor_link]。"; },
        "platform--new-me--error--link-placeholder": function(d) { return "返回编辑器"; },
        "platform--edit-creator-profile--save": function(d) { return "保存"; },
        "platform--edit-creator-profile--reset": function(d) { return "撤销更改"; },
        "platform--edit-creator-profile--name-description": function(d) { return "姓名"; },
        "platform--edit-creator-profile--name-placeholder": function(d) { return "john doe"; },
        "platform--edit-creator-profile--username-description": function(d) { return "用户名"; },
        "platform--edit-creator-profile--username-placeholder": function(d) { return "用户名"; },
        "platform--edit-creator-profile--bio-description": function(d) { return "个人简介"; },
        "platform--edit-creator-profile--bio-placeholder": function(d) { return "介绍一下自己"; },
        "platform--edit-creator-profile--location-description": function(d) { return "位置"; },
        "platform--edit-creator-profile--location-placeholder": function(d) { return "你在哪里"; },
        "platform--edit-creator-profile--contact-section--title": function(d) { return "联系方式"; },
        "platform--edit-creator-profile--contact-section--description": function(d) { return "提供的任何联系方式将会公开显示。"; },
        "platform--edit-creator-profile--email-description": function(d) { return "电子邮件"; },
        "platform--edit-creator-profile--email-validation-error": function(d) { return "必须是有效的电子邮件。"; },
        "platform--edit-creator-profile--website-description": function(d) { return "网站 url"; },
        "platform--edit-creator-profile--website-placeholder": function(d) { return "https://example.com/"; },
        "platform--edit-creator-profile--website-validation-error": function(d) { return "必须是有效的 url。"; },
        "platform--edit-creator-profile--dribbble-description": function(d) { return "dribbble 个人资料 url"; },
        "platform--edit-creator-profile--dribbble-placeholder": function(d) { return "https://dribbble.com/"; },
        "platform--edit-creator-profile--dribbble-validation-error": function(d) { return "必须是有效的 dribbble url。"; },
        "platform--edit-creator-profile--twitter-description": function(d) { return "twitter 个人资料 url"; },
        "platform--edit-creator-profile--twitter-placeholder": function(d) { return "https://www.twitter.com/"; },
        "platform--edit-creator-profile--twitter-validation-error": function(d) { return "必须是有效的 twitter url。"; },
        "platform--edit-creator-profile--instagram-description": function(d) { return "instagram 个人资料 url"; },
        "platform--edit-creator-profile--instragram-placeholder": function(d) { return "https://www.instagram.com/"; },
        "platform--edit-creator-profile--instragram-validation-error": function(d) { return "必须是有效的 instagram url。"; },
        "platform--edit-creator-profile--linkedin-description": function(d) { return "linkedin url"; },
        "platform--edit-creator-profile--linkedin-placeholder": function(d) { return "https://www.linkedin.com/in/"; },
        "platform--edit-creator-profile--linkedin-validation-error": function(d) { return "必须是有效的 linkedin url。"; },
        "platform--edit-creator-profile--upload-error": function(d) { return "上传该资源时出错。请重试。"; },
        "platform--edit-creator-profile--username-taken": function(d) { return d.username + " 已被使用,请尝试其他的。"; },
        "platform--edit-creator-profile--username-error": function(d) { return "验证用户名时出错。请稍后再试。"; },
        "platform--edit-creator-profile--username-forbidden": function(d) { return "该用户名无法注册。"; },
        "platform--edit-creator-profile--username-validation-error": function(d) { return "选择一个长度为 1-25 个字符,没有特殊字符的用户名。"; },
        "platform--upsert-me--error": function(d) { return "由于错误,您的个人资料未能更新。请稍后再试。"; },
        "platform--publish-dialog--modal-title": function(d) { return "发布到个人资料"; },
        "platform--publish-dialog--title-placeholder": function(d) { return "您的演示文稿标题"; },
        "platform--publish-dialog--title-label": function(d) { return "标题"; },
        "platform--publish-dialog--description-placeholder": function(d) { return "您的演示文稿的主题是什么?添加简要说明以吸引受众。"; },
        "platform--publish-dialog--description-label": function(d) { return "说明"; },
        "platform--publish-dialog--guidelines--short": function(d) { return "指南"; },
        "platform--publish-dialog--guidelines--long": function(d) { return "了解有关我们内容指南的更多信息"; },
        "platform--publish-dialog--guidelines--href": function(d) { return "https://help.pitch.com/en/articles/4944638-how-to-submit-a-presentation"; },
        "platform--publish-dialog--save-draft": function(d) { return "保存草稿"; },
        "platform--publish-dialog--save-draft--tooltip": function(d) { return "草稿演示文稿仅供您和有链接的人使用"; },
        "platform--publish-dialog--publish": function(d) { return "发布"; },
        "platform--publish-dialog--save-changes": function(d) { return "保存更改"; },
        "platform--publish-dialog--cancel": function(d) { return "取消"; },
        "platform--publish-dialog--error": function(d) { return "发布此演示文稿时出现问题。"; },
        "platform--publish-dialog--access-error": function(d) { return "它可能是私有的-请向演示文稿的所有者请求发布许可。"; },
        "platform--published-presentation--link-copied": function(d) { return "演示文稿链接已复制到剪贴板"; },
        "platform--presentation-gallery-card-footer": function(d) { return "#[creator_link] · " + plural(d.views, 0, en, { "0": "无浏览量", one: "1 次浏览", other: number(d.views, "次浏览") + " 次浏览" }) + " · " + d.relative_date; },
        "platform--pg--title": function(d) { return "演示文稿库"; },
        "platform--pg--subtitle": function(d) { return "从全球的公司、团队和专业人士精选的卓越演示文稿集,获得灵感。"; },
        "platform--pg--collection-cta": function(d) { return "显示全部"; },
        "platform--pg--collection-all": function(d) { return "所有演示文稿"; },
        "platform--pg--collection-metadata": function(d) { return "由#[creator_link]精选 · 更新于" + d.date + " · " + plural(d.presentations, 0, zh, { "0": "没有演示文稿", one: "1个演示文稿", other: number(d.presentations, "个演示文稿") + "个演示文稿" }); },
        "platform--presentation-gallery--collection--link-copied": function(d) { return "演示文稿集合链接已复制到剪贴板"; },
        "platform--share-button--share": function(d) { return "分享"; },
        "platform--share-button--copy-link": function(d) { return "复制可分享链接"; },
        "platform--share-button--twitter": function(d) { return "twitter"; },
        "platform--share-button--linkedin": function(d) { return "linkedin"; },
        "platform--embed-player--previous-slide": function(d) { return "上一页"; },
        "platform--embed-player--current-slide": function(d) { return "当前页"; },
        "platform--embed-player--next-slide": function(d) { return "下一页"; },
        "platform--embed-player--open-action": function(d) { return "在以下打开"; },
        "platform--embed-player--share--title": function(d) { return "分享此演示文稿"; },
        "platform--embed-player--share--copy-url-title": function(d) { return "复制链接"; },
        "platform--embed-player--share--copy-url-action": function(d) { return "复制链接"; },
        "platform--embed-player--share--embed-title": function(d) { return "嵌入演示文稿"; },
        "platform--embed-player--share--embed-description": function(d) { return "在网站或博客等任何网页上嵌入您的演示文稿"; },
        "platform--embed-player--share--embed-action": function(d) { return "复制嵌入代码"; },
        "platform--cookie-consent--cookie-notice": function(d) { return "我们使用 cookies 分析网站性能并提供个性化内容。点击“同意”即表示您同意存储 cookies。您可以随时撤回您的同意。在我们的#[privacy-policy]中了解更多信息。"; },
        "platform--cookie-consent--privacy-policy": function(d) { return "隐私政策"; },
        "platform--cookie-consent--accept-label": function(d) { return "同意"; },
        "platform--cookie-consent--options-label": function(d) { return "更多选项"; },
        "platform--cookie-consent--modal--heading": function(d) { return "管理 cookie"; },
        "platform--cookie-consent--modal--body": function(d) { return "我们使用 cookie 来记住您的登录详细信息,提供安全的登录体验,收集统计信息以优化站点功能,并提供定制化的内容和广告。您可以在我们的 #[privacy-policy] 中查看我们使用的 cookie 类型的详细描述。"; },
        "platform--cookie-consent--modal--accept-label": function(d) { return "全部接受"; },
        "platform--cookie-consent--modal--custom-label": function(d) { return "保存设置"; },
        "platform--cookie-consent--category-essential--heading": function(d) { return "必需的 cookie"; },
        "platform--cookie-consent--category-essential--description": function(d) { return "这些 cookie 是 pitch.com 正常运行所必需的。"; },
        "platform--cookie-consent--category-essential--label": function(d) { return "必需的"; },
        "platform--cookie-consent--category-performance--heading": function(d) { return "性能 cookie"; },
        "platform--cookie-consent--category-performance--description": function(d) { return "这些 cookie 帮助监控站点性能、收集使用统计数据,提供增强的站点功能和个性化服务。"; },
        "platform--cookie-consent--category-performance--label": function(d) { return "性能"; },
        "platform--cookie-consent--category-marketing--heading": function(d) { return "营销 cookie"; },
        "platform--cookie-consent--category-marketing--description": function(d) { return "这些 cookie 允许我们衡量我们广告的有效性并根据您的兴趣调整我们的广告。"; },
        "platform--cookie-consent--category-marketing--label": function(d) { return "营销"; },
        "platform--auth-navbar--templates-title": function(d) { return "模板"; },
        "platform--auth-navbar--presentations-title": function(d) { return "演示文稿"; },
        "platform--auth-navbar--cta": function(d) { return "发布演示文稿"; },
        "platform--account-menu--view-profile": function(d) { return "查看个人资料"; },
        "platform--account-menu--edit-profile": function(d) { return "编辑个人资料"; },
        "platform--account-menu--dashboard": function(d) { return "进入控制面板"; },
        "platform--account-menu--logout": function(d) { return "退出登录"; },
        "platform--back-navbar--all-templates": function(d) { return "所有模板"; },
        "platform--back-navbar--templates": function(d) { return "模板"; },
        "platform--back-navbar--all-presentations": function(d) { return "所有演示文稿"; },
        "platform--submit-template-banner--heading": function(d) { return "在 pitch 上发布您最好的演示文稿"; },
        "platform--submit-template-banner--text": function(d) { return "有成功的融资演示文稿吗?想要分享您的创业、增长营销、业务发展、招聘或设计知识吗?申请加入发布测试版并为您的公共个人资料注册用户名。"; },
        "platform--submit-template-banner--cta-label": function(d) { return "现在申请"; },
        "platform--footer--logo-label": function(d) { return "pitch"; },
        "platform--footer--copyright-notice": function(d) { return "© 版权所有 " + d.year + " pitch software gmbh。保留所有权利。"; },
        "platform--footer--product-label": function(d) { return "产品"; },
        "platform--footer--product--item-1": function(d) { return "产品演示"; },
        "platform--footer--product--item-3": function(d) { return "定价"; },
        "platform--footer--product--item-4": function(d) { return "pitch 演示文稿"; },
        "platform--footer--product--item-5": function(d) { return "销售演示文稿"; },
        "platform--footer--product--item-6": function(d) { return "团队会议"; },
        "platform--footer--product--item-7": function(d) { return "董事会演示文稿"; },
        "platform--footer--product--item-8": function(d) { return "演示文稿制作工具"; },
        "platform--footer--product--item-9": function(d) { return "新功能"; },
        "platform--footer--product--item-10": function(d) { return "下载"; },
        "platform--footer--product--item-11": function(d) { return "帮助中心"; },
        "platform--footer--product--item-12": function(d) { return "状态"; },
        "platform--footer--templates": function(d) { return "模板"; },
        "platform--footer--legal-label": function(d) { return "法律声明"; },
        "platform--footer--legal--item-1": function(d) { return "使用条款"; },
        "platform--footer--legal--item-2": function(d) { return "隐私政策"; },
        "platform--footer--legal--item-3": function(d) { return "法律声明"; },
        "platform--footer--legal--item-4": function(d) { return "数据处理协议"; },
        "platform--footer--legal--item-5": function(d) { return "数字千年版权法(dmca)政策"; },
        "platform--footer--legal--item-6": function(d) { return "欧洲区域发展基金(erdf)支持"; },
        "platform--footer--legal--item-7": function(d) { return "gdpr"; },
        "platform--footer--legal--item-8": function(d) { return "安全政策"; },
        "platform--footer--legal--item-9": function(d) { return "cookie 设置"; },
        "platform--footer--company-label": function(d) { return "公司"; },
        "platform--footer--company--item-1": function(d) { return "关于我们"; },
        "platform--footer--company--item-2": function(d) { return "工作机会"; },
        "platform--footer--company--item-3": function(d) { return "新闻室"; },
        "platform--footer--company--item-4": function(d) { return "博客"; },
        "platform--footer--company--item-5": function(d) { return "社区"; },
        "platform--footer--socials--item-1": function(d) { return "在 tiktok 上关注 pitch"; },
        "platform--footer--socials--item-2": function(d) { return "在twitter上推广"; },
        "platform--footer--socials--item-3": function(d) { return "在facebook上推广"; },
        "platform--footer--socials--item-4": function(d) { return "在linkedin上推广"; },
        "platform--footer--socials--item-5": function(d) { return "在instagram上推广"; },
        "platform--footer--socials--item-6": function(d) { return "在youtube上推广"; },
        "platform--embed-player--error-title": function(d) { return "我们无法显示这个嵌入式演示文稿"; },
        "platform--embed-player--error-description": function(d) { return "它可能已被删除或设置为私有。请尝试向拥有者寻求帮助。"; },
        "platform--page-not-found--error-title": function(d) { return "好尴尬啊"; },
        "platform--page-not-found--error-description": function(d) { return "我们无法加载该页面。请尝试刷新,或浏览我们的模板库。"; },
        "platform--page-not-found--error-button": function(d) { return "浏览演示文稿模板"; },
        "platform--error--boundary-title": function(d) { return "好尴尬啊"; },
        "platform--error--boundary-description": function(d) { return "出了些问题,我们只知道这些。"; },
        "platform--error--boundary-help": function(d) { return "再试一次,如果问题继续,请联系支持人员。"; },
        "platform--error--boundary-action": function(d) { return "刷新"; },
        "platform--auth--mismatched-creator": function(d) { return "您需要权限才能查看此页面。请向工作区所有者寻求帮助。"; },
        "platform--public-player--error-title": function(d) { return "我们无法显示此演示文稿"; },
        "platform--public-player--error-description": function(d) { return "它可能已被删除或设置为私有。请尝试向拥有者寻求帮助。"; },
        "platform--notion-links-player--error-title": function(d) { return "我们无法加载此演示文稿"; },
        "platform--notion-links-player--error-description": function(d) { return "它可能已被删除或设置为私有。请尝试向拥有者寻求帮助。"; },
        "platform--managed-link-player--error-title": function(d) { return "我们无法获取该链接"; },
        "platform--managed-link-player--error-description": function(d) { return "请检查链接并重试。如果您一直看到这个消息,可能是演示文稿所有者删除了该链接。"; },
        "platform--congratulations-modal--title": function(d) { return "恭喜!"; },
        "platform--congratulations-modal--text": function(d) { return "您的第一份演示文稿已经在pitch.com上发布了-这是一个值得庆祝的里程碑!请随时回来查看是否获得更多的浏览量。想进一步提升?更新您的个人资料或访问并与同事、朋友和家人分享您的页面。"; },
        "platform--congratulations-modal--copy-link": function(d) { return "复制链接"; },
        "platform--congratulations-modal--twitter": function(d) { return "twitter"; },
        "platform--congratulations-modal--linkedin": function(d) { return "linkedin"; },
        "platform--beta-landing-page--title": function(d) { return "在pitch上发布您的演示文稿"; },
        "platform--beta-landing-page--description": function(d) { return "数百名创始人、投资者、品牌和创意人士已经发布了他们的演示文稿,供pitch社区欣赏。浏览他们的惊人作品,从销售演示到代理机构投资组合,在#[presentation-gallery-link]中了解。"; },
        "platform--beta-landing-page--description-pres-gallery": function(d) { return "演示文稿画廊"; },
        "platform--beta-landing-page--closed-beta-whats-new": function(d) { return "有什么新功能"; },
        "platform--beta-landing-page--closed-beta": function(d) { return "发布测试版目前已关闭,不再接受新的参与者。请持续关注#[whats-new-link]以获取有关演示文稿发布的进一步更新。"; },
        "platform--beta-landing-page--profile-title": function(d) { return "分享您的精彩作品"; },
        "platform--beta-landing-page--profile-subtitle": function(d) { return "演讲后发布您的幻灯片、突出最近的项目或展示您的思想领导力。"; },
        "platform--beta-landing-page--profile-description": function(d) { return "帮助其他人克服常见的挑战,从创建获胜的演示文稿到组织市场推广活动。只需从编辑器直接发布您的演示文稿,就可以分享您的专业知识。"; },
        "platform--beta-landing-page--profile-cta": function(d) { return "阅读完整指南"; },
        "platform--beta-landing-page--share-title": function(d) { return "建立听众群体"; },
        "platform--beta-landing-page--share-subtitle": function(d) { return "创建一个公共个人资料,供他人浏览您发布的演示文稿。"; },
        "platform--beta-landing-page--share-description": function(d) { return "测量演示文稿的浏览量,以了解哪些演示文稿更受欢迎,并将访问者引导至您的网站和社交渠道,以获得更多的参与。立即为您的个人资料预留一个独特的句柄。"; },
        "platform--beta-landing-page--share-cta": function(d) { return "了解个人资料"; },
        "platform--beta-landing-page--gallery-title": function(d) { return "引领讨论"; },
        "platform--beta-landing-page--gallery-subtitle": function(d) { return "与领先的品牌、机构、投资者和思想家并肩出现。"; },
        "platform--beta-landing-page--gallery-description": function(d) { return "pitch 团队精选最佳演示文稿,并展示在我们的画廊中,主题涵盖销售资料到产品手册等多个方面。浏览画廊中的启发性演示文稿,然后提交您自己的演示文稿以供考虑。"; },
        "platform--beta-landing-page--gallery-cta": function(d) { return "打开画廊"; },
        "platform--beta-landing-page--upsert-error": function(d) { return "由于错误,您的电子邮件未被提交。请稍后再试。"; },
        "platform--start-creating-banner--heading": function(d) { return "轻松制作类似这样的演示文稿"; },
        "platform--start-creating-banner--text": function(d) { return "pitch 帮助您构建能够传递信息的演示文稿。完全免费。"; },
        "platform--start-creating-banner--cta-label": function(d) { return "开始创建"; },
        "platform--eql-pledge-banner--heading": function(d) { return "被新投资者发现"; },
        "platform--eql-pledge-banner--text": function(d) { return "加入eql:pledge并将您的演示文稿添加到此收藏中。"; },
        "platform--eql-pledge-banner--cta-label": function(d) { return "立即申请"; },
        "platform--search--no-results--title": function(d) { return "没有结果。"; },
        "platform--search--no-results--templates--description": function(d) { return "请尝试下面的热门模板。"; },
        "platform--search--error--title": function(d) { return "发生了错误。"; },
        "platform--search--error--description": function(d) { return "请重试。"; },
        "platform--search--action": function(d) { return "搜索"; },
        "platform--search--popular": function(d) { return "热门搜索"; },
        "platform--search--placeholder--templates": function(d) { return "尝试演讲稿、营销、销售……"; },
        "platform--search--heading--templates": function(d) { return "搜索模板"; },
        "platform--player-access-layer--passcode-modal--sub-headline": function(d) { return "有人与您分享了一份演示文稿"; },
        "platform--player-access-layer--passcode-modal--prompt": function(d) { return "输入密码以继续"; },
        "platform--player-access-layer--passcode-modal--input--placeholder": function(d) { return "密码"; },
        "platform--player-access-layer--passcode-modal--error-msg": function(d) { return "密码不正确。请重试,或联系所有者。"; },
        "platform--player-access-layer--passcode-modal--checkbox-label": function(d) { return "记住密码"; },
        "platform--player-access-layer--passcode-modal--submit-button": function(d) { return "下一步"; },
        "platform--player-consent-layer--consent--sub-headline": function(d) { return "我们可以记录您的访问吗?"; },
        "platform--player-consent-layer--consent--text": function(d) { return "我们将匿名地让演示文稿的创建者知道有人打开了他们的演示文稿并查看了哪些幻灯片。这些信息与您的姓名或电子邮件地址无关,您可以随时选择退出。"; },
        "platform--player-consent-layer--config-button": function(d) { return "更改隐私设置"; },
        "platform--player-consent-layer--consent-button-1": function(d) { return "同意"; },
        "platform--player-consent-layer--consent-button-2": function(d) { return "保存"; },
        "platform--player-consent-layer--privacy-settings--headline": function(d) { return "隐私设置"; },
        "platform--player-consent-layer--privacy-settings--text": function(d) { return "我们会记录你在pitch演示文稿和我们网站上的匿名数据。你可以在下面选择我们收集多少数据。了解pitch的数据收集政策,请点击#[privacy-policy-link]。"; },
        "platform--player-consent-layer--privacy-settings-privacy-policy-link": function(d) { return "了解更多"; },
        "platform--player-consent-layer--privacy-settings-always-active-option": function(d) { return "始终激活"; },
        "platform--player-consent-layer--privacy-settings--section-toggle-expand": function(d) { return "展开"; },
        "platform--player-consent-layer--privacy-settings--section-toggle-collapse": function(d) { return "收起"; },
        "platform--player-consent-layer--privacy-settings--sub-headline-1": function(d) { return "为演示文稿创建者提供分析数据"; },
        "platform--player-consent-layer--privacy-settings--description-1": function(d) { return "帮助演示文稿创建者了解你如何查看他们的演示文稿。"; },
        "platform--player-consent-layer--privacy-settings--switch-1-label": function(d) { return "记录访问"; },
        "platform--player-consent-layer--privacy-settings--switch-1-text": function(d) { return "演示文稿的创建者将知道有人查看了它,以及你所在的国家,但不会知道其他信息。"; },
        "platform--player-consent-layer--privacy-settings--switch-2-label": function(d) { return "记录幻灯片的互动情况"; },
        "platform--player-consent-layer--privacy-settings--switch-2-text": function(d) { return "演示文稿的创建者将知道有人查看了它,查看了哪些幻灯片,以及你所在的国家。他们不会看到你的姓名或其他个人信息。"; },
        "player--chrome--comment-count": function(d) { return "评论数"; },
        "player--chrome--tooltip-player-prev": function(d) { return "上一个"; },
        "player--chrome--tooltip-player-next": function(d) { return "下一个"; },
        "player--chrome--tooltip-player-play": function(d) { return "播放"; },
        "player--chrome--tooltip-player-pause": function(d) { return "暂停"; },
        "player--chrome--tooltip-player-speed": function(d) { return "速度"; },
        "player--chrome--tooltip-player-reaction": function(d) { return "反应"; },
        "player--chrome--tooltip-player-comments": function(d) { return "评论"; },
        "player--chrome--tooltip-player-hide-controls": function(d) { return "隐藏控件"; },
        "player--chrome--tooltip-player-speaker-view": function(d) { return "演讲者视图"; },
        "player--chrome--tooltip-player-full-screen": function(d) { return "全屏"; },
        "player--chrome--tooltip-player-exit-full-screen": function(d) { return "退出全屏"; },
        "player--chrome--tooltip-player-share": function(d) { return "分享"; },
        "player--top-bar-edit": function(d) { return "编辑"; },
        "player--top-bar-share": function(d) { return "分享"; },
        "player--top-bar-back-to-dashboard": function(d) { return "返回工作区"; },
        "player--toast--speaker-view-button": function(d) { return "演讲者视图"; },
        "player--toast--exit-speaker-view": function(d) { return "按#[esc]键退出演讲者视图。"; },
        "player--toast--exit-full-screen": function(d) { return "按#[esc]键退出全屏。"; },
        "player--toast--hide-controls": function(d) { return "按#[esc]键重新显示控件。"; },
        "player--link-intercept-title": function(d) { return "访问外部网站"; },
        "player--link-intercept-message": function(d) { return "此链接将在新选项卡中打开。确认您要前往此外部网站。"; },
        "player--share--shared-by--title-sub-sentence": function(d) { return "分享者"; },
        "player--share--shared-by--title-sub": function(d) { return "#[sentence] #[name]"; },
        "player--share--copy-link": function(d) { return "复制链接"; },
        "player--share--copy-link-slide": function(d) { return "复制当前幻灯片链接"; },
        "player--multipresenter--avatars--lead-description": function(d) { return "点击成为主持人"; },
        "player--multipresenter--avatars--stop-lead-description": function(d) { return "点击停止主持人角色"; },
        "player--multipresenter--avatars--follow-description": function(d) { return "点击跟随主持人"; },
        "player--multipresenter--avatars--stop-follow-description": function(d) { return "点击停止跟随主持人"; },
        "player--multipresenter--avatars--viewer-list-header": function(d) { return "在本演示文稿中"; },
        "player--multipresenter--avatars--start-leading": function(d) { return "开始主持人角色"; },
        "player--multipresenter--avatars--leading-label": function(d) { return "主持人"; },
        "quick-menu--placeholder": function(d) { return "您想做什么?"; },
        "quick-menu--insert-slide--related": function(d) { return "创建 插入 添加 模板"; },
        "quick-menu--insert-slide--label": function(d) { return "从模板创建新幻灯片"; },
        "quick-menu--insert-blank-slide--related": function(d) { return "创建 插入 添加 空白"; },
        "quick-menu--insert-blank-slide--label": function(d) { return "创建新空白幻灯片"; },
        "quick-menu--insert-headline-big--label": function(d) { return "大标题"; },
        "quick-menu--insert-headline-big--related": function(d) { return "大标题 h1 文本 插入"; },
        "quick-menu--insert-headline-medium--label": function(d) { return "标题"; },
        "quick-menu--insert-headline-medium--related": function(d) { return "标题 h2 文本 插入"; },
        "quick-menu--insert-headline-small--label": function(d) { return "子标题"; },
        "quick-menu--insert-headline-small--related": function(d) { return "子标题 h3 文本 插入"; },
        "quick-menu--insert-paragraph--label": function(d) { return "正文"; },
        "quick-menu--insert-paragraph--alias": function(d) { return "文本"; },
        "quick-menu--insert-paragraph--related": function(d) { return "文本 段落 h4 插入"; },
        "quick-menu--insert-paragraph-small--label": function(d) { return "小号文本"; },
        "quick-menu--insert-paragraph-small--related": function(d) { return "段落 h5 文本 插入"; },
        "quick-menu--sub-shape--label": function(d) { return "形状"; },
        "quick-menu--insert-triangle--label": function(d) { return "三角形"; },
        "quick-menu--insert-triangle--related": function(d) { return "形状 插入"; },
        "quick-menu--insert-star--label": function(d) { return "星形"; },
        "quick-menu--insert-star--related": function(d) { return "形状 插入"; },
        "quick-menu--insert-rectangle--label": function(d) { return "矩形"; },
        "quick-menu--insert-rectangle--related": function(d) { return "正方形 形状 插入"; },
        "quick-menu--insert-circle--label": function(d) { return "圆形"; },
        "quick-menu--insert-circle--related": function(d) { return "形状 椭圆形 椭形 插入"; },
        "quick-menu--insert-line--label": function(d) { return "直线"; },
        "quick-menu--insert-line--related": function(d) { return "形状 插入"; },
        "quick-menu--insert-arrow--label": function(d) { return "箭头"; },
        "quick-menu--insert-arrow--related": function(d) { return "形状 插入"; },
        "quick-menu--insert-diamond--label": function(d) { return "菱形"; },
        "quick-menu--insert-diamond--related": function(d) { return "形状 插入"; },
        "quick-menu--sub-list--label": function(d) { return "列表"; },
        "quick-menu--sub-list--related": function(d) { return "项目符号、编号、复选框 插入"; },
        "quick-menu--insert-number-list--label": function(d) { return "编号列表"; },
        "quick-menu--insert-check-list--label": function(d) { return "复选框列表"; },
        "quick-menu--insert-bullet-list--label": function(d) { return "项目符号列表"; },
        "quick-menu--insert-line-chart--label": function(d) { return "折线图"; },
        "quick-menu--insert-line-chart--related": function(d) { return "插入图表"; },
        "quick-menu--insert-area-chart--label": function(d) { return "面积图"; },
        "quick-menu--insert-area-chart--related": function(d) { return "插入面积图表"; },
        "quick-menu--insert-stack-area-chart--label": function(d) { return "堆积面积图"; },
        "quick-menu--insert-stack-area-chart--related": function(d) { return "插入图表"; },
        "quick-menu--insert-bar-chart--label": function(d) { return "柱形图"; },
        "quick-menu--insert-bar-chart--related": function(d) { return "插入柱状图表"; },
        "quick-menu--insert-stack-bar-chart--label": function(d) { return "堆积柱形图"; },
        "quick-menu--insert-stack-bar-chart--related": function(d) { return "插入柱状图表"; },
        "quick-menu--insert-horizontal-bar-chart--label": function(d) { return "横向柱形图"; },
        "quick-menu--insert-horizontal-bar-chart--related": function(d) { return "插入横向柱状图表"; },
        "quick-menu--insert-stack-horizontal-bar-chart--label": function(d) { return "堆积横向柱形图"; },
        "quick-menu--insert-stack-horizontal-bar-chart--related": function(d) { return "插入横向柱状图表"; },
        "quick-menu--insert-pie-chart--label": function(d) { return "饼图"; },
        "quick-menu--insert-pie-chart--related": function(d) { return "插入图表"; },
        "quick-menu--insert-table--label": function(d) { return "表格"; },
        "quick-menu--media-picker-insert--label": function(d) { return "图像和媒体"; },
        "quick-menu--media-picker-replace--label": function(d) { return "替换图像"; },
        "quick-menu--media-picker-insert--related": function(d) { return "图片 媒体 giphy 插入 unsplash"; },
        "quick-menu--sub-arrange--label": function(d) { return "排列"; },
        "quick-menu--align-left--label": function(d) { return "左对齐"; },
        "quick-menu--align-center--label": function(d) { return "居中对齐"; },
        "quick-menu--align-right--label": function(d) { return "右对齐"; },
        "quick-menu--align-top--label": function(d) { return "顶部对齐"; },
        "quick-menu--align-middle--label": function(d) { return "垂直居中对齐"; },
        "quick-menu--align-bottom--label": function(d) { return "底部对齐"; },
        "quick-menu--distribute-horizontal--label": function(d) { return "水平分布"; },
        "quick-menu--distribute-vertical--label": function(d) { return "垂直分布"; },
        "quick-menu--position-center--label": function(d) { return "居中"; },
        "quick-menu--position-half-left--label": function(d) { return "左半边"; },
        "quick-menu--position-half-right--label": function(d) { return "右半边"; },
        "quick-menu--position-half-top--label": function(d) { return "上半部分"; },
        "quick-menu--position-half-bottom--label": function(d) { return "下半部分"; },
        "quick-menu--position-third-top--label": function(d) { return "上三分之一"; },
        "quick-menu--position-third-bottom--label": function(d) { return "下三分之一"; },
        "quick-menu--position-third-middle--label": function(d) { return "居中第三"; },
        "quick-menu--position-third-left--label": function(d) { return "左侧第三"; },
        "quick-menu--position-third-right--label": function(d) { return "右侧第三"; },
        "quick-menu--position-third-center--label": function(d) { return "中间第三"; },
        "quick-menu--position-quarter-topright--label": function(d) { return "右上方1/4"; },
        "quick-menu--position-quarter-topleft--label": function(d) { return "左上方1/4"; },
        "quick-menu--position-quarter-bottomright--label": function(d) { return "右下方1/4"; },
        "quick-menu--position-quarter-bottomleft--label": function(d) { return "左下方1/4"; },
        "quick-menu--position-full-width--label": function(d) { return "全宽"; },
        "quick-menu--position-full-height--label": function(d) { return "全高"; },
        "quick-menu--order-send-to-back--label": function(d) { return "置于底层"; },
        "quick-menu--order-send-to-back--related": function(d) { return "底层"; },
        "quick-menu--order-send-backward--label": function(d) { return "向后一层"; },
        "quick-menu--order-send-backward--related": function(d) { return "后移"; },
        "quick-menu--order-bring-to-front--label": function(d) { return "置于顶层"; },
        "quick-menu--order-bring-to-front--related": function(d) { return "顶层"; },
        "quick-menu--order-bring-forward--label": function(d) { return "向前一层"; },
        "quick-menu--order-bring-forward--related": function(d) { return "前移"; },
        "quick-menu--background-image-set--label": function(d) { return "设置为背景"; },
        "quick-menu--background-image-unset--label": function(d) { return "取消背景图片"; },
        "quick-menu--background-image-add--label": function(d) { return "添加背景图片"; },
        "quick-menu--background-image-replace--label": function(d) { return "替换背景图片"; },
        "quick-menu--background-image-remove--label": function(d) { return "移除背景图片"; },
        "quick-menu--assign-none--label": function(d) { return "取消幻灯片指定"; },
        "quick-menu--unassign-single--label": function(d) { return "取消指定"; },
        "quick-menu--unassign-multiple--label": function(d) { return "取消所有指定"; },
        "quick-menu--sub-assign--label": function(d) { return "指定给..."; },
        "quick-menu--sub-assign--placeholder": function(d) { return "您想将此幻灯片指定给谁?"; },
        "quick-menu--assign-to--label": function(d) { return "指定给"; },
        "quick-menu--unassign-me--label": function(d) { return "我 (" + d.user_name + ")"; },
        "quick-menu--create-folder--related": function(d) { return "新建添加"; },
        "quick-menu--create-folder--label": function(d) { return "创建文件夹"; },
        "quick-menu--create-private-folder--label": function(d) { return "创建私人文件夹"; },
        "quick-menu--sub-folder--placeholder": function(d) { return "您要查找哪个文件夹?"; },
        "quick-menu--sub-folders--label": function(d) { return "打开文件夹"; },
        "quick-menu--open-folder--placeholder": function(d) { return "打开"; },
        "quick-menu--sub-workspace--label": function(d) { return "转到工作区"; },
        "quick-menu--go-workspace--label": function(d) { return "转到"; },
        "quick-menu--sub-workspace--placeholder": function(d) { return "您要查找哪个工作区?"; },
        "quick-menu--go-account-settings--label": function(d) { return "账户设置"; },
        "quick-menu--go-settings--label": function(d) { return "工作区设置"; },
        "quick-menu--shared-folders--leave--label": function(d) { return "退出共享文件夹"; },
        "quick-menu--shared-folders--invite--label": function(d) { return "分享文件夹"; },
        "quick-menu--create-presentation--related": function(d) { return "新建"; },
        "quick-menu--create-presentation--label": function(d) { return "创建演示文稿"; },
        "quick-menu--create-presentation-blank--related": function(d) { return "新建"; },
        "quick-menu--create-presentation-blank--label": function(d) { return "创建空白演示文稿"; },
        "quick-menu--import-presentation--label": function(d) { return "导入演示文稿"; },
        "quick-menu--sub-document--placeholder": function(d) { return "你想打开什么?"; },
        "quick-menu--dashboard--empty-text": function(d) { return "试试“打开”、“创建”或“帮助”"; },
        "quick-menu--guest-dashboard--empty-text": function(d) { return "试试“打开”或“帮助”"; },
        "quick-menu--shared-space--empty-text": function(d) { return "试试“打开”或“帮助”"; },
        "quick-menu--shared-folder--empty-text": function(d) { return "试试“打开”或“帮助”"; },
        "quick-menu--sub-presentation--label": function(d) { return "打开演示文稿"; },
        "quick-menu--open-document--label": function(d) { return "打开"; },
        "quick-menu--sub-slide-status--label": function(d) { return "更改幻灯片状态"; },
        "quick-menu--sub-slide-status--placeholder": function(d) { return "这张幻灯片的状态是什么?"; },
        "quick-menu--set-slide-status--label": function(d) { return "将幻灯片状态更改为"; },
        "quick-menu--slide-number-toggle--label": function(d) { return "切换幻灯片编号"; },
        "quick-menu--skip-slide-toggle--label": function(d) { return "切换跳过幻灯片"; },
        "quick-menu--show-live-cursors--label": function(d) { return "显示实时光标"; },
        "quick-menu--hide-live-cursors--label": function(d) { return "隐藏实时光标"; },
        "quick-menu--sub-jump-to-slide--label": function(d) { return "跳转到幻灯片"; },
        "quick-menu--jump-to-slide--label": function(d) { return "跳转到幻灯片"; },
        "quick-menu--sub-jump-to-slide--placeholder": function(d) { return "输入幻灯片编号"; },
        "quick-menu--create-template--related": function(d) { return "新建添加"; },
        "quick-menu--create-template--label": function(d) { return "创建模板"; },
        "quick-menu--template-generator--label": function(d) { return "生成品牌模板"; },
        "quick-menu--sub-apply-style--label": function(d) { return "应用样式..."; },
        "quick-menu--apply-style--label": function(d) { return "应用"; },
        "quick-menu--sub-apply-style--placeholder": function(d) { return "输入幻灯片样式名称"; },
        "quick-menu--help-menu--label": function(d) { return "帮助菜单"; },
        "quick-menu--keyboard-shortcuts--label": function(d) { return "快捷键"; },
        "quick-menu--contact-us--label": function(d) { return "联系我们"; },
        "quick-menu--contact-us--related": function(d) { return "反馈"; },
        "quick-menu--dev-panel-toggle--label": function(d) { return "切换开发面板"; },
        "quick-menu--dev-panel-toggle-minimize--label": function(d) { return "切换最小化开发面板"; },
        "quick-menu--sub-feature-flags--placeholder": function(d) { return "搜索要激活/停用的功能标志"; },
        "quick-menu--sub-feature-flags--label": function(d) { return "功能标志"; },
        "quick-menu--feature-flags-clear-all-overrides--label": function(d) { return "重置所有功能标志"; },
        "quick-menu--feature-flags-clear-all-overrides--related": function(d) { return "清除特性"; },
        "quick-menu--activate-feature-flags--label": function(d) { return "激活"; },
        "quick-menu--deactivate-feature-flags--label": function(d) { return "停用"; },
        "quick-menu--play--label": function(d) { return "开始演示"; },
        "quick-menu--document--empty-text": function(d) { return "尝试“status”、“image”或“open”"; },
        "quick-menu--add-members--label": function(d) { return "邀请用户"; },
        "quick-menu--add-members--alias": function(d) { return "添加成员"; },
        "quick-menu--go-members--label": function(d) { return "工作区成员"; },
        "quick-menu--go-members--alias": function(d) { return "成员"; },
        "quick-menu--export-pdf--label": function(d) { return "导出为pdf"; },
        "quick-menu--export-pdf-uncompressed--label": function(d) { return "导出为pdf(高质量)"; },
        "quick-menu--export-ppt--label": function(d) { return "导出为powerpoint"; },
        "quick-menu--export-ppt-upsell--label": function(d) { return "导出为powerpoint(专业版)"; },
        "quick-menu--go-dashboard--label": function(d) { return "前往仪表板"; },
        "quick-menu--go-comment--related": function(d) { return "新建"; },
        "quick-menu--go-comment--label": function(d) { return "添加评论"; },
        "quick-menu--download-desktop-app--label": function(d) { return "下载桌面应用"; },
        "quick-menu--tooltip-education--title": function(d) { return "快速访问"; },
        "quick-menu--tooltip-education--content": function(d) { return "在快速菜单中找到您需要的所有功能"; },
        "quick-menu--tooltip-education--learn-more": function(d) { return "了解更多"; },
        "quick-menu--tooltip-education--dismiss": function(d) { return "知道了"; },
        "quick-menu--toggle-side-panel--label": function(d) { return "切换面板"; },
        "quick-menu--toggle-side-panel--related": function(d) { return "打开关闭"; },
        "quick-menu--live-collab-toggle-microphone--related": function(d) { return "静音取消静音音频"; },
        "quick-menu--live-collab-toggle-microphone--label": function(d) { return "切换麦克风"; },
        "quick-menu--toggle-version-history--label": function(d) { return "显示版本历史"; },
        "quick-menu--toggle-deleted-slides--label": function(d) { return "显示已删除的幻灯片"; },
        "quick-menu--product-tour-title": function(d) { return "了解更多"; },
        "quick-menu--group-create--label": function(d) { return "分组"; },
        "quick-menu--group-disband--label": function(d) { return "取消分组"; },
        "quick-menu--editor-lock--label": function(d) { return "锁定位置"; },
        "quick-menu--editor-unlock--label": function(d) { return "解除锁定位置"; },
        "quick-menu--sub-format-text--label": function(d) { return "格式化文本"; },
        "quick-menu--sub-format-text--placeholder": function(d) { return "可切换的格式化选项"; },
        "quick-menu--sub-format-text--toggle-bold": function(d) { return "切换加粗"; },
        "quick-menu--sub-format-text--toggle-bold--related": function(d) { return "强调 加粗 黑体"; },
        "quick-menu--sub-format-text--toggle-italic": function(d) { return "切换斜体"; },
        "quick-menu--sub-format-text--toggle-italic--related": function(d) { return "倾斜 斜体"; },
        "quick-menu--sub-format-text--toggle-strikethrough": function(d) { return "切换删除线"; },
        "quick-menu--sub-format-text--toggle-strikethrough--related": function(d) { return "穿越 划去 删除"; },
        "quick-menu--sub-format-text--toggle-underline": function(d) { return "切换下划线"; },
        "quick-menu--sub-format-text--toggle-underline--related": function(d) { return "下划线"; },
        "quick-menu--sub-format-text--toggle-case": function(d) { return "切换大写字母"; },
        "quick-menu--sub-format-text--toggle-case--related": function(d) { return "小写字母、全部大写、首字母大写等"; },
        "reader--public-reader--banner--message": function(d) { return "使用 pitch 创建像这样的精美演示文稿"; },
        "reader--public-reader--banner--discover-button": function(d) { return "了解更多"; },
        "reader--error-no-visible-slides--header": function(d) { return "我们无法显示您的幻灯片"; },
        "reader--error-no-visible-slides--description": function(d) { return "请确保它们未标记为跳过。刷新页面并重试。"; },
        "reader--bottom-bar--previous-slide-button-hint": function(d) { return "上一页幻灯片"; },
        "reader--bottom-bar--current-slide-hint": function(d) { return "当前幻灯片"; },
        "reader--bottom-bar--next-slide-button-hint": function(d) { return "下一页幻灯片"; },
        "reader--bottom-bar--toggle-slides-preview-button-hint": function(d) { return "切换幻灯片预览"; },
        "reader--bottom-bar--toggle-comments-button-hint": function(d) { return "切换评论"; },
        "shortcuts--separator--then": function(d) { return "然后"; },
        "shortcuts--separator--or": function(d) { return "或"; },
        "shortcuts--empty-message--title": function(d) { return "如果我们缺少您需要的快捷方式,请告诉我们!"; },
        "shortcuts--empty-message--button": function(d) { return "联系我们"; },
        "shortcuts--basic--category": function(d) { return "基础快捷方式"; },
        "shortcuts--basic--new-slide--label": function(d) { return "新幻灯片"; },
        "shortcuts--basic--new-blank-slide--label": function(d) { return "新空白幻灯片"; },
        "shortcuts--basic--quick-menu--label": function(d) { return "打开快捷菜单"; },
        "shortcuts--basic--toggle--option--panel": function(d) { return "显示/隐藏面板"; },
        "shortcuts--basic--search-presentation--label": function(d) { return "搜索演示文稿"; },
        "shortcuts--basic--cycle-tabs--label": function(d) { return "在选项卡之间切换"; },
        "shortcuts--basic--close-tab--label": function(d) { return "关闭标签页"; },
        "shortcuts--basic--select-tab--label": function(d) { return "选择标签页"; },
        "shortcuts--systemwide--category": function(d) { return "系统范围的快捷键"; },
        "shortcuts--systemwide--hide-app--label": function(d) { return "隐藏应用程序"; },
        "shortcuts--systemwide--min-window--label": function(d) { return "最小化窗口"; },
        "shortcuts--systemwide--cut--label": function(d) { return "剪切"; },
        "shortcuts--systemwide--copy--label": function(d) { return "复制"; },
        "shortcuts--systemwide--paste--label": function(d) { return "粘贴"; },
        "shortcuts--systemwide--undo--label": function(d) { return "撤销"; },
        "shortcuts--systemwide--redo--label": function(d) { return "重做"; },
        "shortcuts--systemwide--close-modal--label": function(d) { return "关闭弹出窗口"; },
        "shortcuts--editor--category": function(d) { return "编辑幻灯片"; },
        "shortcuts--editor--apply-styles--label": function(d) { return "应用样式"; },
        "shortcuts--editor--duplicate-drag--label": function(d) { return "复制对象"; },
        "shortcuts--editor--move-slide--label": function(d) { return "上下移动幻灯片"; },
        "shortcuts--editor--bring-to-front--label": function(d) { return "置于顶层"; },
        "shortcuts--editor--bring-forward--label": function(d) { return "上移一层"; },
        "shortcuts--editor--send-to-back--label": function(d) { return "置于底层"; },
        "shortcuts--editor--send-backward--label": function(d) { return "下移一层"; },
        "shortcuts--editor--show-guides--label": function(d) { return "显示对齐参考线"; },
        "shortcuts--editor--swap-blocks--label": function(d) { return "交换块"; },
        "shortcuts--editor--tidy-blocks--label": function(d) { return "整理多个块"; },
        "shortcuts--editor--deselect-block--label": function(d) { return "取消选择块"; },
        "shortcuts--editor--select-all-blocks--label": function(d) { return "选择幻灯片上的所有块"; },
        "shortcuts--editor--duplicate--label": function(d) { return "复制幻灯片或块"; },
        "shortcuts--editor--delete--label": function(d) { return "删除幻灯片或块"; },
        "shortcuts--editor--align-to-guide--label": function(d) { return "对齐到下一个参考线"; },
        "shortcuts--editor--move-1px--label": function(d) { return "移动位置1像素"; },
        "shortcuts--editor--move-10px--label": function(d) { return "移动位置10像素"; },
        "shortcuts--editor--group-blocks--label": function(d) { return "分组块"; },
        "shortcuts--editor--ungroup-blocks--label": function(d) { return "取消分组"; },
        "shortcuts--addblock--category": function(d) { return "添加块"; },
        "shortcuts--addblock--image--label": function(d) { return "添加图像或媒体"; },
        "shortcuts--addblock--arrow--label": function(d) { return "添加箭头"; },
        "shortcuts--addblock--circle--label": function(d) { return "添加圆形"; },
        "shortcuts--addblock--rectangle--label": function(d) { return "添加矩形"; },
        "shortcuts--addblock--numbered-list--label": function(d) { return "添加编号列表"; },
        "shortcuts--addblock--bullet-list--label": function(d) { return "添加项目符号列表"; },
        "shortcuts--addblock--normal-text--label": function(d) { return "添加普通文本"; },
        "shortcuts--addblock--headline--label": function(d) { return "添加标题"; },
        "shortcuts--addblock--text--label": function(d) { return "添加下方文本"; },
        "shortcuts--addblock--line--label": function(d) { return "添加线条"; },
        "shortcuts--text--category": function(d) { return "编辑文本"; },
        "shortcuts--text--link-toolbar--label": function(d) { return "打开链接工具栏"; },
        "shortcuts--text--cancel-edit--label": function(d) { return "退出文本编辑器"; },
        "shortcuts--text--indent--label": function(d) { return "增加缩进"; },
        "shortcuts--text--underline--label": function(d) { return "下划线"; },
        "shortcuts--text--strikethrough--label": function(d) { return "删除线"; },
        "shortcuts--text--bold--label": function(d) { return "加粗"; },
        "shortcuts--text--italic--label": function(d) { return "斜体"; },
        "shortcuts--navigate--category": function(d) { return "导航"; },
        "shortcuts--navigate--jump-to-slide--label": function(d) { return "跳转到幻灯片"; },
        "shortcuts--navigate--last-slide--label": function(d) { return "最后一张幻灯片"; },
        "shortcuts--navigate--first-slide--label": function(d) { return "第一张幻灯片"; },
        "shortcuts--navigate--prev-slide--label": function(d) { return "上一张幻灯片"; },
        "shortcuts--navigate--next-slide--label": function(d) { return "下一张幻灯片"; },
        "shortcuts--dashboard--category": function(d) { return "仪表盘"; },
        "shortcuts--dashboard--new-presentation--label": function(d) { return "创建演示文稿"; },
        "shortcuts--dashboard--new-presentation-blank--label": function(d) { return "创建空白演示文稿"; },
        "shortcuts--dashboard--go-to-workspace--label": function(d) { return "跳转到工作区"; },
        "shortcuts--dashboard--new-folder--label": function(d) { return "创建文件夹"; },
        "shortcuts--collab--category": function(d) { return "协作"; },
        "shortcuts--collab--change-status--label": function(d) { return "更改幻灯片状态"; },
        "shortcuts--collab--toggle-comments--label": function(d) { return "显示/隐藏评论面板"; },
        "shortcuts--collab--assign-slide--label": function(d) { return "分配幻灯片"; },
        "shortcuts--collab--create-comment--label": function(d) { return "添加评论"; },
        "shortcuts--collab--post-comment--label": function(d) { return "发布评论"; },
        "shortcuts--collab--toggle-microphone--label": function(d) { return "静音/取消静音麦克风"; },
        "shortcuts--present--category": function(d) { return "演示"; },
        "shortcuts--present--prev-slide--label": function(d) { return "上一张幻灯片"; },
        "shortcuts--present--next-slide--label": function(d) { return "下一张幻灯片"; },
        "shortcuts--present--stop--label": function(d) { return "停止演示"; },
        "shortcuts--present--start--label": function(d) { return "开始演示"; },
        "slide-picker--heading--templates": function(d) { return "所有模板"; },
        "slide-picker--tab--templates": function(d) { return "模板"; },
        "slide-picker--tab--layouts": function(d) { return "布局"; },
        "slide-picker--breadcrumb-hint": function(d) { return "返回模板"; },
        "slide-picker--breadcrumb-hint-v3": function(d) { return "探索所有模板"; },
        "slide-picker--template-section--show-all": function(d) { return "显示全部"; },
        "slide-picker--template-section--show-less": function(d) { return "显示较少"; },
        "slide-picker--template-section--workspace": function(d) { return d.name + " 库模板"; },
        "slide-picker--template-section--gallery-title": function(d) { return "pitch 图库模板"; },
        "slide-picker--offline-message--title": function(d) { return "您似乎处于离线状态。"; },
        "slide-picker--offline-message--body-one": function(d) { return "一旦您重新连接到互联网,模板就会显示出来。"; },
        "slide-picker--offline-message--body-two": function(d) { return "您仍然可以复制幻灯片,或使用 #[short-cut] 来创建一个新幻灯片。"; },
        "slide-picker--offline-message--add-blank-slide-button": function(d) { return "添加空白幻灯片"; },
        "slide-picker--offline-message--header": function(d) { return "模板"; },
        "slide-picker--layouts-default-category": function(d) { return "全部"; },
        "slide-picker-v2--add-all-slides--button-text": function(d) { return "添加所有幻灯片"; },
        "slide-picker--missing-slide-label": function(d) { return "缺少一张幻灯片?"; },
        "slide-picker--missing-slide-view-layouts-title": function(d) { return "查看布局"; },
        "slide-picker--missing-slide-view-layouts-subtitle": function(d) { return "查看可适应任何演示风格的幻灯片设计。"; },
        "slide-picker--missing-slide-explore-all-templates-title": function(d) { return "浏览所有模板"; },
        "slide-picker--missing-slide-explore-all-templates-subtitle": function(d) { return "浏览来自您的工作区或pitch的即用型模板。"; },
        "slide-picker--layouts-beta-footer": function(d) { return "试用布局?帮助我们改进它们。"; },
        "slide-picker--layouts-beta-footer-link": function(d) { return "分享您的反馈意见"; },
        "speaker-view--tab-hidden-error": function(d) { return "演讲者视图已暂停。请确保演示和此窗口都在屏幕上可见,以继续。"; },
        "speaker-view-v2--window-title": function(d) { return "演讲者视图"; },
        "speaker-view-v2--slide-grid-button": function(d) { return "幻灯片网格"; },
        "speaker-view-v2--slide-module--presentation-end": function(d) { return "演示结束"; },
        "speaker-view-v2--slide-module--next-slide": function(d) { return "下一张幻灯片:"; },
        "speaker-view-v2--settings--current-slide": function(d) { return "当前幻灯片"; },
        "speaker-view-v2--settings--next-slide": function(d) { return "下一张幻灯片"; },
        "speaker-view-v2--settings--slide-navigator": function(d) { return "幻灯片导航器"; },
        "speaker-view-v2--settings--speaker-notes": function(d) { return "演讲者注释"; },
        "speaker-view-v2--settings--clock": function(d) { return "时钟"; },
        "speaker-view-v2--settings--timer": function(d) { return "计时器"; },
        "speaker-view-v2--settings--progress-line": function(d) { return "进度条"; },
        "spreadsheet-importer-modal--header--title-import": function(d) { return "从\"" + d.source_label + "\"导入"; },
        "spreadsheet-importer-modal--header--title-clipboard": function(d) { return "从剪贴板导入"; },
        "spreadsheet-importer-modal--header--title-google-sheet": function(d) { return "从 google 表格\"" + d.source_label + "\"导入"; },
        "spreadsheet-importer-modal--footer--update-chart-button": function(d) { return "更新图表"; },
        "spreadsheet-importer-modal--footer--create-chart-button": function(d) { return "创建图表"; },
        "spreadsheet-importer-modal--footer--update-table-button": function(d) { return "更新表格"; },
        "spreadsheet-importer-modal--footer--create-table-button": function(d) { return "创建表格"; },
        "spreadsheet-importer-modal--setup--title": function(d) { return "设置"; },
        "spreadsheet-importer-modal--setup--first-column-label": function(d) { return "使用第一列作为类别标签"; },
        "spreadsheet-importer-modal--setup--first-row-headers": function(d) { return "使用第一行作为图表图例"; },
        "spreadsheet-importer-modal--setup--data-range-label": function(d) { return "数据范围"; },
        "spreadsheet-importer-modal--setup--separator-section-label": function(d) { return "分隔符类型"; },
        "spreadsheet-importer-modal--setup--data-size-warning": function(d) { return "所选数据范围太大无法预览。尝试选择较小的范围。"; },
        "spreadsheet-importer-modal--data-size-tooltip-warning": function(d) { return "所选数据范围太大。尝试选择较小的范围。"; },
        "spreadsheet-importer-modal--setup--separator-section-tooltip": function(d) { return "csv文件可以使用不同的符号来分隔列。#[br]如果您的csv未被正确导入,请尝试更改此设置。"; },
        "studio--navigation-controls--previous-slide": function(d) { return "上一张幻灯片"; },
        "studio--navigation-controls--next-slide": function(d) { return "下一张幻灯片"; },
        "studio--modules--view-btn": function(d) { return "查看"; },
        "studio--modules--notes--placeholder": function(d) { return "添加演讲者笔记"; },
        "studio--modules--notes--edit-btn": function(d) { return "编辑"; },
        "studio--modules--notes--done-btn": function(d) { return "完成"; },
        "studio--modules--notes--increase-font-size": function(d) { return "增大字体大小"; },
        "studio--modules--notes--decrease-font-size": function(d) { return "减小字体大小"; },
        "template-generator--toolbar--title": function(d) { return "创建品牌模板"; },
        "template-generator--toolbar--skip-button": function(d) { return "取消"; },
        "template-generator--toolbar--save-button": function(d) { return "使用模板"; },
        "template-generator--toolbar--upload-logo-button": function(d) { return "标志"; },
        "template-generator--toolbar--search-field-placeholder": function(d) { return "输入您的网站"; },
        "template-generator--toolbar--magic-button-hint": function(d) { return "没有网站?受受热门品牌的启发。"; },
        "template-generator--toolbar--search-field-hint": function(d) { return "我们将生成一些基本品牌以供您开始。别担心-您可以稍后更改它。"; },
        "templates--library--alert--failed-to-publish": function(d) { return "抱歉,出了些问题,模板发布失败。请再试一次或联系支持团队。"; },
        "templates--library--alert--failed-to-create": function(d) { return "抱歉,出了些问题,我们无法创建此模板。请再试一次或联系支持团队。"; },
        "template-info--header--viewing": function(d) { return "查看模板"; },
        "template-info--header--editing": function(d) { return "您正在编辑一个模板"; },
        "template-info--description--changes": function(d) { return "发布更改以更新此模板,使该工作区内的每个人都能使用。"; },
        "template-info--description--no-changes": function(d) { return "没有未发布的更改"; },
        "template-info--button--publish": function(d) { return "发布"; },
        "template-info--result--published": function(d) { return "已发布"; },
        "template-info--number-of-slides--label": function(d) { return plural(d.count, 0, en, { one: "个幻灯片", other: "个幻灯片" }); },
        "publish-template-confirmation--unpublished-new--headline": function(d) { return "发布该模板?"; },
        "publish-template-confirmation--unpublished-new--body": function(d) { return "您所做的更改仍处于草稿状态。发布此模板,以便工作区成员使用它。"; },
        "publish-template-confirmation--unpublished-new--confirm-btn": function(d) { return "发布模板"; },
        "publish-template-confirmation--unpublished-existing--headline": function(d) { return "更改现有模板?"; },
        "publish-template-confirmation--unpublished-existing--body": function(d) { return "您已对现有模板进行了更改。发布将更新整个工作区的模板。"; },
        "publish-template-confirmation--unpublished-existing--confirm-btn": function(d) { return "发布更改"; },
        "publish-template-confirmation--cancel-btn": function(d) { return "保留草稿"; },
        "create-template-dialog--heading": function(d) { return "创建模板"; },
        "create-template-dialog--close--tooltip": function(d) { return "关闭"; },
        "create-template-dialog--description": function(d) { return "将经常使用的演示文稿转换为模板。您的团队可以使用它们来节省时间并保持一致性。"; },
        "create-template-dialog--title-input--label": function(d) { return "模板名称"; },
        "create-template-dialog--title-input--placeholder": function(d) { return "选择一个独特且易记的名称……"; },
        "create-template-dialog--title-input--default": function(d) { return "无标题模板"; },
        "create-template-dialog--button--label": function(d) { return "创建模板"; },
        "convert-template-dialog--heading": function(d) { return "转换为模板"; },
        "convert-template-dialog--description": function(d) { return "原始演示文稿将保持不变"; },
        "convert-template-dialog--button--label": function(d) { return "转换为模板"; },
        "templates--stickers--category--otto-dog": function(d) { return "奥托狗"; },
        "templates--stickers--category--teamwork": function(d) { return "团队合作"; },
        "templates--stickers--category--graph-monsters": function(d) { return "图表怪兽"; },
        "templates--stickers--category--chubby-hands": function(d) { return "胖手指"; },
        "templates--stickers--category--badges": function(d) { return "徽章"; },
        "templates--stickers--category--look-at-this": function(d) { return "看这个"; },
        "templates--stickers--category--make-your-point": function(d) { return "表达你的观点"; },
        "templates--stickers--category--craft-a-plan": function(d) { return "制定计划"; },
        "templates--stickers--category--office-flashback": function(d) { return "办公室回忆录"; },
        "templates--stickers--category--thrive-together": function(d) { return "共同成长"; },
        "templates--stickers--category--cyberpunk": function(d) { return "赛博朋克"; },
        "templates--stickers--category--laws-of-reaction": function(d) { return "反应法则"; },
        "templates--stickers--category--mark-it-up": function(d) { return "涂鸦"; },
        "templates--stickers--category--women-at-work": function(d) { return "职场女性"; },
        "templates--stickers--category--remote-work": function(d) { return "远程工作"; },
        "templates--stickers--category--stay-in-sync": function(d) { return "保持同步"; },
        "templates--stickers--category--recorded-fun": function(d) { return "记录快乐"; },
        "templates--stickers--category--business-lingo": function(d) { return "商务术语"; },
        "templates--stickers--category--helping-hands": function(d) { return "援助之手"; },
        "templates--stickers--title-by-author": function(d) { return d.author + "的" + d.title; },
        "template-preview--image-alt-text": function(d) { return "模板预览图片"; },
        "template-preview--create-button-tooltip": function(d) { return "使用模板"; },
        "template-preview--go-to-profile": function(d) { return "转到个人资料"; },
        "template-preview--badge--new": function(d) { return "新"; },
        "template-preview--badge--not-published": function(d) { return "未发布"; },
        "template-picker--title": function(d) { return "创建演示文稿"; },
        "template-picker--gallery-tab-title": function(d) { return "pitch模板库"; },
        "template-picker--library-tab-title": function(d) { return "库模板"; },
        "template-picker--search-results--title": function(d) { return "搜索结果"; },
        "template-picker--library--title": function(d) { return "库模板"; },
        "template-picker--gallery--title": function(d) { return "所有模板"; },
        "template-picker--search-results--placeholder": function(d) { return "搜索"; },
        "template-picker--search-results--count": function(d) { return plural(d.count, 0, en, { one: "1个结果", other: number(d.count, "count") + "个结果" }); },
        "template-picker--empty-state--title": function(d) { return "一个小时的模板创作,节约一天的时间"; },
        "template-picker--empty-state--text": function(d) { return "您的模板将显示在此处。将演示文稿保存为模板或#[链接到库]。"; },
        "template-picker--empty-search--title": function(d) { return "未找到库模板"; },
        "template-picker--empty-search--description": function(d) { return "您的搜索没有找到任何结果。尝试其他搜索词或搜索pitch模板库。"; },
        "template-picker--empty-search--text-link": function(d) { return "搜索模板库"; },
        "template-picker--empty-state--action-button": function(d) { return "新建模板"; },
        "template-picker--back-button-label": function(d) { return "返回工作区"; },
        "template-picker--title--library": function(d) { return "库模板"; },
        "template-picker--no-search-results-banner--title": function(d) { return "未找到模板。"; },
        "template-picker--no-search-results-banner--body": function(d) { return "还有很多其他模板可供选择。在此处查看我们最受欢迎的模板。"; },
        "template-picker--gallery--suggestions--prompt": function(d) { return "您希望在此列表中看到哪些其他模板?"; },
        "template-picker--gallery--suggestions--link": function(d) { return "建议新模板"; },
        "template-picker--gallery--suggestions--url": function(d) { return "https://pitch.canny.io/template-requests"; },
        "folder-picker--label-current": function(d) { return d.label + " (当前)"; },
        "folder-picker--label-private": function(d) { return "私人"; },
        "folder-picker--label-workspace": function(d) { return "工作区"; },
        "folder-picker--label-shared-with-me": function(d) { return "与我共享"; },
        "folder-picker--label--modal": function(d) { return "在以下位置创建演示文稿:"; },
        "folder-picker--label--toolbar": function(d) { return "在"; },
        "folder-picker--private": function(d) { return "私人文件夹"; },
        "folder-picker--shared": function(d) { return "共享文件夹"; },
        "folder-picker--shared--read-only": function(d) { return "您无法在此文件夹中创建演示文稿"; },
        "folder-picker--workspace": function(d) { return "工作区文件夹"; },
        "template-details--button--close-modal": function(d) { return "关闭"; },
        "template-actions--use-template--button": function(d) { return "使用模板"; },
        "template-actions--edit--button": function(d) { return "编辑原始模板"; },
        "template-actions--duplicate--button": function(d) { return "复制"; },
        "template-actions--copy-link--button": function(d) { return "复制链接"; },
        "template-actions--open-in-desktop--button": function(d) { return "在桌面应用中打开"; },
        "template-details--templates-count": function(d) { return plural(d.count, 0, en, { one: "1个模板", other: number(d.count, "count") + "个模板" }); },
        "gallery-player--next-slide": function(d) { return "下一张幻灯片"; },
        "gallery-player--prev-slide": function(d) { return "上一张幻灯片"; },
        "template-gallery--all-category": function(d) { return "全部"; },
        "template-gallery--all-category-name": function(d) { return "所有模板"; },
        "template-gallery--all-category-desc": function(d) { return "适用于各种情况的演示文稿模板"; },
        "template-details--offline": function(d) { return "看起来您已经离线了。您仍然可以使用此模板创建演示文稿,在您重新联网后,模板幻灯片和图像将再次工作。"; },
        "templates-brand-style-modal--title": function(d) { return "应用品牌风格"; },
        "templates-brand-style-modal--action-button": function(d) { return "应用"; },
        "templates-brand-style-modal--upload-font-button": function(d) { return "上传字体"; },
        "templates-brand-style-modal--headline-font": function(d) { return "标题字体"; },
        "templates-brand-style-modal--body-text-font": function(d) { return "正文字体"; },
        "templates-brand-style-modal--slide-background-color": function(d) { return "幻灯片背景"; },
        "templates-brand-style-modal--accent-color": function(d) { return "强调色"; },
        "templates-brand-style-modal--text-color": function(d) { return "文本颜色"; },
        "templates-brand-style-modal--open-style-editor--text": function(d) { return "要完全自定义设计,包括字体大小、表格和图表,#[link]"; },
        "templates-brand-style-modal--open-style-editor--link": function(d) { return "打开样式编辑器。"; },
        "templates--invite-members-modal--confirmation-message": function(d) { return "模板已发布"; },
        "templates--invite-members-modal--title": function(d) { return "保持团队品牌统一"; },
        "templates--invite-members-modal--description": function(d) { return "您邀请到工作区的任何人现在都可以使用您的模板来创建自己的演示文稿。"; },
        "title-bar--present": function(d) { return "演示"; },
        "title-bar--play": function(d) { return "播放"; },
        "title-bar--view-options": function(d) { return "查看选项"; },
        "title-bar--quick-menu": function(d) { return "快捷菜单"; },
        "title-bar--undo-button-title": function(d) { return "撤销"; },
        "title-bar--undo-button-aria-label": function(d) { return "撤销按钮"; },
        "title-bar--presentation-menu": function(d) { return "演示菜单"; },
        "title-bar--back-to-dashboard": function(d) { return "返回工作区"; },
        "title-bar--template-not-published": function(d) { return "该模板尚未发布。"; },
        "title-bar--template-publish-prompt": function(d) { return "必须先发布该模板才能使用它。"; },
        "title-bar--phone--go-back": function(d) { return "返回"; },
        "title-bar--phone--reveal-sidebar": function(d) { return "显示侧边栏"; },
        "title-bar--badge--read-only": function(d) { return "只读"; },
        "title-bar--badge--guest": function(d) { return "访客"; },
        "title-bar--badge--pending": function(d) { return "待处理"; },
        "title-bar--badge--template": function(d) { return "模板"; },
        "title-bar--create-workspace": function(d) { return "创建新的工作区"; },
        "title-bar--invite-others": function(d) { return "邀请他人"; },
        "title-bar--workspaces": function(d) { return "工作区"; },
        "title-bar--style-editor": function(d) { return "样式构建器"; },
        "title-bar--shared-by--title-sub-sentence": function(d) { return "由以下人员共享"; },
        "title-bar--shared-by--title-sub": function(d) { return "#[sentence] #[name]"; },
        "title-bar--workspace-removing": function(d) { return "正在删除..."; },
        "title-bar--library-folder-templates": function(d) { return "模板"; },
        "title-bar--library-folder-fonts": function(d) { return "字体"; },
        "title-bar--library-folder-images": function(d) { return "图片"; },
        "title-bar--library-folder-videos": function(d) { return "视频"; },
        "title-bar--folder-shared-with-me": function(d) { return "与我共享"; },
        "title-bar--folder-private": function(d) { return "私人"; },
        "title-bar--folder-workspace": function(d) { return "工作区"; },
        "title-bar--folder-recent": function(d) { return "最近编辑"; },
        "title-bar--trash": function(d) { return "回收站"; },
        "title-bar--button-logout": function(d) { return "退出登录"; },
        "title-bar--button-share": function(d) { return "分享"; },
        "title-bar--button-cancel": function(d) { return "取消"; },
        "title-bar--button-save": function(d) { return "保存"; },
        "title-bar--button-use-template": function(d) { return "使用模板"; },
        "title-bar--button-edit-template": function(d) { return "编辑模板"; },
        "title-bar--button-edit-presentation": function(d) { return "编辑演示文稿"; },
        "title-bar--share-dialog--category--invite": function(d) { return "邀请他人"; },
        "title-bar--share-dialog--category--external": function(d) { return "与任何人分享"; },
        "title-bar--share-dialog--category--pdf-export": function(d) { return "导出为pdf"; },
        "title-bar--share-dialog--category--ppt-export": function(d) { return "导出为powerpoint"; },
        "title-bar--share-dialog--category--embed": function(d) { return "嵌入演示文稿"; },
        "title-bar--share-dialog--category--publish-to-platform": function(d) { return "发布至 pitch.com"; },
        "title-bar--share-dialog--button--copy-link": function(d) { return "复制链接"; },
        "title-bar--share-dialog--current-slide-link": function(d) { return "当前幻灯片的链接"; },
        "title-bar--share-dialog--title-invite-others": function(d) { return "邀请他人加入“#[title]”"; },
        "title-bar--share-dialog--public-access--title": function(d) { return "公开访问"; },
        "title-bar--share-dialog--invite-others--email-placeholder": function(d) { return "输入电子邮件地址..."; },
        "title-bar--share-dialog--suggestion-workspace": function(d) { return "所有工作区成员均可访问此演示文稿并邀请他人"; },
        "title-bar--tooltip--share-dialog--options": function(d) { return "共享选项"; },
        "title-bar--share-dialog--invite-others--member--title": function(d) { return "工作区成员"; },
        "title-bar--share-dialog--invite-others--member--description": function(d) { return "可以编辑和共享此工作区中的所有演示文稿"; },
        "title-bar--share-dialog--invite-others--can-view--title": function(d) { return "可查看"; },
        "title-bar--share-dialog--invite-others--can-view--label": function(d) { return "查看"; },
        "title-bar--share-dialog--invite-others--can-view--description": function(d) { return "查看幻灯片而不进行编辑"; },
        "title-bar--share-dialog--invite-others--can-edit--title": function(d) { return "可编辑"; },
        "title-bar--share-dialog--invite-others--can-edit--label": function(d) { return "编辑"; },
        "title-bar--share-dialog--invite-others--can-edit-and-invite--description": function(d) { return "编辑演示文稿并邀请他人"; },
        "title-bar--share-dialog--invite-others--can-edit--description": function(d) { return "编辑演示文稿"; },
        "title-bar--share-dialog--invite-others--can-comment--title": function(d) { return "可评论"; },
        "title-bar--share-dialog--invite-others--can-comment--label": function(d) { return "评论"; },
        "title-bar--share-dialog--invite-others--can-comment--description": function(d) { return "添加评论和回复"; },
        "title-bar--share-dialog--invite-others--upsell-cta--title": function(d) { return "访客#[pro-badge]"; },
        "title-bar--share-dialog--invite-others--upsell-cta--description": function(d) { return "访客可以编辑、评论或查看单个演示文稿"; },
        "title-bar--share-dialog--invite-others--upsell-cta--description--mac-app": function(d) { return "在入门版计划中,邀请访客编辑、评论或查看演示文稿不可用"; },
        "title-bar--share-dialog--error--existing-member": function(d) { return "#[first_line]#[br]#[second_line]"; },
        "title-bar--share-dialog--error--existing-member--first-line": function(d) { return d.sharee + "已经是此工作区的成员。"; },
        "title-bar--share-dialog--error--existing-member--second-line": function(d) { return "他们将通过电子邮件收到此演示文稿的链接。"; },
        "title-bar--share-dialog--error--already-shared": function(d) { return "此演示文稿已与" + d.sharee + "共享"; },
        "title-bar--share-dialog--error--couldnt-fetch-members": function(d) { return "我们无法显示已邀请的成员。确保您在线,并重试。"; },
        "title-bar--share-dialog--error-couldnt-revoke-invite": function(d) { return "撤销邀请时出现问题。确保您在线,并重试。"; },
        "title-bar--share-dialog--error-couldnt-update-permissions": function(d) { return "更新权限时出现问题。确保您在线,并重试。"; },
        "title-bar--share-dialog--error--couldnt-send-invite": function(d) { return "邀请未发送。确保您在线,并重试。"; },
        "title-bar--share-dialog--error--already-selected-email": function(d) { return "看起来您已选择此电子邮件地址。"; },
        "title-bar--share-dialog--error--member-invite-failed": function(d) { return "出现问题。我们向此演示文稿发送了邀请,但没有向此工作区发送邀请。转到工作区成员页面以添加新成员。"; },
        "title-bar--share-dialog--error--sharees-already-exist": function(d) { return "以下电子邮件地址的共享链接已存在:" + d.emails; },
        "title-bar--share-dialog--error--cant-invite-self": function(d) { return "您已经拥有此演示文稿。"; },
        "title-bar--share-dialog--invite-others--remove--title": function(d) { return "删除"; },
        "title-bar--share-dialog--invite-others--button": function(d) { return "邀请"; },
        "title-bar--share-dialog--invite--subtitle": function(d) { return "被邀请的成员和访客需要一个pitch帐户才能查看此演示文稿。"; },
        "title-bar--share-dialog--invite--current-slide": function(d) { return "复制当前幻灯片的链接"; },
        "title-bar--share-dialog--invite--first-slide": function(d) { return "复制链接到第一张幻灯片"; },
        "title-bar--share-dialog--invite--skipped-slide-tooltip": function(d) { return "当前幻灯片被跳过。请将其显示或转到其他幻灯片。"; },
        "title-bar--share-dialog--invite--offline": function(d) { return "您需要连接互联网才能共享演示文稿。请确保您在线并重试。"; },
        "title-bar--share-dialog--privilege-info-box--member": function(d) { return "#[user-type] 可以编辑和共享所有工作区演示文稿。"; },
        "title-bar--share-dialog--privilege-info-box--member--user-type": function(d) { return "工作区成员"; },
        "title-bar--share-dialog--privilege-info-box--edit": function(d) { return "#[user-type] 只能编辑此演示文稿。"; },
        "title-bar--share-dialog--privilege-info-box--edit--user-type": function(d) { return "访客"; },
        "title-bar--share-dialog--privilege-info-box--comment": function(d) { return "#[user-type] 只能对此演示文稿进行评论。"; },
        "title-bar--share-dialog--privilege-info-box--comment--user-type": function(d) { return "访客"; },
        "title-bar--share-dialog--privilege-info-box--read": function(d) { return "#[user-type] 只能查看此演示文稿。"; },
        "title-bar--share-dialog--privilege-info-box--read--user-type": function(d) { return "访客"; },
        "title-bar--share-dialog--confirmation-modal--comment": function(d) { return "这将会让#[invitees]" + plural(d.count, 0, en, { "1": "访客(在您的组织外)访问此工作区中的所有演示文稿。", other: "访客(在您的组织外)访问此工作区中的所有演示文稿。" }) + " #[learn_more_link]"; },
        "title-bar--share-dialog--confirmation-modal--comment-invitees": function(d) { return "#[email]" + plural(d.extra_count, 0, en, { "0": "", "1": "和另一个人", other: "和其他" + number(d.extra_count, "extra_count") + "人" }); },
        "title-bar--share-dialog--confirmation-modal--comment-learn-more": function(d) { return "了解更多"; },
        "title-bar--share-dialog--confirmation-modal--confirm-text": function(d) { return plural(d.count, 0, en, { "1": "邀请为成员", other: "邀请为成员" }); },
        "title-bar--share-dialog--confirmation-modal--message": function(d) { return plural(d.count, 0, en, { "1": "邀请外部成员?", other: "邀请外部成员?" }); },
        "title-bar--share-dialog--info-box--no-invite-allowed--headline": function(d) { return "私人文件夹中的演示文稿无法共享。"; },
        "title-bar--share-dialog--info-box--no-invite-allowed": function(d) { return "#[headline] 要与其他人合作,请将其移动到工作区文件夹或升级到pitch pro。"; },
        "title-bar--share-dialog--info-box--no-invite-allowed--no-upsell": function(d) { return "#[headline] 要与其他人合作,请将其移动到工作区文件夹。"; },
        "title-bar--share-dialog--info-box--no-invite-allowed--sharee--headline": function(d) { return "此演示文稿是私人的。"; },
        "title-bar--share-dialog--info-box--no-invite-allowed--sharee": function(d) { return "# [标题] 您无法邀请新的协作者,但您可以与已经有访问权限的人分享链接。"; },
        "title-bar--share-dialog--workspace-access--title": function(d) { return d.name + " 的成员"; },
        "title-bar--share-dialog--workspace-access--members": function(d) { return plural(d.count, 0, {"0": "...", "1": "1个人", "other": d.count + "人"}); },
        "title-bar--share-dialog--workspace-access--members--tooltip": function(d) { return "查看工作区成员"; },
        "title-bar--share-dialog--workspace-access--can-edit": function(d) { return "可以编辑"; },
        "title-bar--share-dialog--workspace-access--can-edit--tooltip": function(d) { return "工作区成员可以编辑和共享所有工作区文件夹中的幻灯片。"; },
        "title-bar--share-dialog--workspace-access--no-access": function(d) { return "没有访问权限"; },
        "title-bar--share-dialog--workspace-access--no-access--tooltip": function(d) { return "邀请单独的成员到此幻灯片以授予他们访问权限。"; },
        "title-bar--share-dialog--external--subtitle": function(d) { return "收件人可以在不注册pitch帐户的情况下打开链接。"; },
        "title-bar--share-dialog--external--public-access--hint": function(d) { return "任何拥有链接的人都可以查看您的演示文稿"; },
        "title-bar--share-dialog--external--create-managed-link": function(d) { return "新建自定义链接"; },
        "title-bar--share-dialog--external--create-managed-link--hint": function(d) { return "与特定组或频道共享,可选密码。"; },
        "title-bar--share-dialog--external--managed-link-menu--edit": function(d) { return "编辑链接设置"; },
        "title-bar--share-dialog--external--managed-link-menu--copy-access-code": function(d) { return "复制密码"; },
        "title-bar--share-dialog--external--managed-link-menu--revoke": function(d) { return "删除链接"; },
        "title-bar--share-dialog--external--managed-link--engagement-badge": function(d) { return "参与度"; },
        "title-bar--share-dialog--external--offline": function(d) { return "您需要连接到互联网才能共享演示文稿。请确保您已联网,然后重试。"; },
        "title-bar--share-dialog--managed-link-modal--create-title": function(d) { return "创建自定义链接"; },
        "title-bar--share-dialog--managed-link-modal--edit-title": function(d) { return "编辑自定义链接"; },
        "title-bar--share-dialog--managed-link-modal--name-header": function(d) { return "链接名称"; },
        "title-bar--share-dialog--managed-link-modal--access-code-checkbox-label": function(d) { return "通行码"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-checkbox-label": function(d) { return "启用参与度分析"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-with-consent-subheader": function(d) { return "使用参与度分析功能追踪访问您演示文稿的访客观看哪些幻灯片。#[line-break]#[line-break]您的工作区需要访客同意使用可以实现这些分析的cookie。#[了解更多]。#[line-break]#[line-break]如果您认为不需要获得同意,请联系工作区管理员。"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-with-consent-subheader--learn-more": function(d) { return "了解有关同意和分析的更多信息"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-subheader": function(d) { return "使用参与度分析功能追踪访问您演示文稿的访客观看哪些幻灯片。#[line-break]#[line-break]默认情况下,pitch不会要求访客同意使用可以实现这些分析的cookie。是否需要获得同意取决于访客来自哪里。#[了解更多]。#[line-break]#[line-break]如果您认为需要获得同意,请选择下面的选项。"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-subheader--learn-more": function(d) { return "了解有关同意和分析的更多信息"; },
        "title-bar--share-dialog--managed-link-modal--advanced-tracking-subheader--consent-collection": function(d) { return "在此链接上获取访客同意以进行参与度分析"; },
        "title-bar--share-dialog--managed-link-modal--create-button": function(d) { return "创建"; },
        "title-bar--share-dialog--managed-link-modal--save-button": function(d) { return "保存"; },
        "title-bar--share-dialog--managed-link-modal--link-title-preview": function(d) { return "示例"; },
        "title-bar--share-dialog--managed-link-modal--link-slug-placeholder": function(d) { return "abc123"; },
        "title-bar--share-dialog--managed-link-modal--confirm-delete--title": function(d) { return "删除链接?"; },
        "title-bar--share-dialog--managed-link-modal--confirm-delete--disabled--description": function(d) { return "您将失去所有分析数据,链接将不再起作用。"; },
        "title-bar--share-dialog--managed-link-modal--confirm-delete--enabled--description": function(d) { return "您将失去所有分析数据,链接将不再起作用。如果要保留分析数据但使链接不活动,请禁用它。"; },
        "title-bar--share-dialog--managed-link-modal--confirm-delete--confirm-button": function(d) { return "删除"; },
        "title-bar--share-dialog--pdf-export--title": function(d) { return "将 \"" + d.title + "\" 导出为 pdf"; },
        "title-bar--share-dialog--pdf-export--branded-description-title": function(d) { return "导出的文件将包含 pitch 的小徽标。 "; },
        "title-bar--share-dialog--pdf-export--branded-description": function(d) { return "专业工作区可以导出无水印的 pdf 文件。"; },
        "title-bar--share-dialog--pdf-export--branded-description--app-store-title": function(d) { return "导出的文件将包含 pitch 的小徽标。 "; },
        "title-bar--share-dialog--pdf-export--branded-description--app-store": function(d) { return "在入门版计划中无法导出不带水印的 pdf。"; },
        "title-bar--share-dialog--pdf-export--unbranded-description": function(d) { return "#[links_title]与pdf不同,共享链接始终保持最新状态,并具有交互式内容,如视频。#[share_link]"; },
        "title-bar--share-dialog--pdf-export--unbranded-description--links--title": function(d) { return "链接让你的作品更加出色。"; },
        "title-bar--share-dialog--pdf-export--unbranded-description--share--link": function(d) { return "分享链接"; },
        "title-bar--share-dialog--pdf-export--button": function(d) { return "导出为pdf"; },
        "title-bar--share-dialog--pdf-export--offline": function(d) { return "您需要连接到互联网才能将演示文稿导出为pdf。请确保您在线并重试。"; },
        "title-bar--share-dialog--pdf-export--upsell-cta": function(d) { return "去除水印"; },
        "title-bar--share-dialog--ppt-export--title": function(d) { return "将 \"" + d.title + "\" 导出为 powerpoint"; },
        "title-bar--share-dialog--ppt-export--description-starter": function(d) { return "将幻灯片转换为 powerpoint 文件,与客户、组织者或使用不同工具的其他人共享。"; },
        "title-bar--share-dialog--ppt-export--description-pro": function(d) { return "将幻灯片转换为 powerpoint 文件,与客户、组织者或使用不同工具的其他人共享。"; },
        "title-bar--share-dialog--ppt-export--unsupported-title": function(d) { return "powerpoint 文件不支持某些块。"; },
        "title-bar--share-dialog--ppt-export--unsupported-description": function(d) { return "视频、录音和其他块可能无法正确导出。"; },
        "title-bar--share-dialog--ppt-export--unsupported-promote-links": function(d) { return "为了让其他人看到您的演示文稿的最佳效果,#[try-link]。"; },
        "title-bar--share-dialog--ppt-export--unsupported-promote-links--try": function(d) { return "尝试共享链接"; },
        "title-bar--share-dialog--ppt-export--promote-links": function(d) { return "#[links_title]任何人都可以访问您演示文稿的链接并查看您的最新工作。#[share_link]"; },
        "title-bar--share-dialog--ppt-export--promote-links-title": function(d) { return "您仍然可以发送链接。"; },
        "title-bar--share-dialog--ppt-export--promote-links-share": function(d) { return "分享链接"; },
        "title-bar--share-dialog--ppt-export--button": function(d) { return "导出为 powerpoint"; },
        "title-bar--share-dialog--ppt-export--button-upsell": function(d) { return "发现 pitch pro"; },
        "title-bar--share-dialog--ppt-export--offline": function(d) { return "您需要连接到互联网才能将演示文稿导出为 powerpoint。请确保您在线并重试。"; },
        "title-bar--share-dialog--embed--title": function(d) { return "嵌入 \"" + d.title + "\""; },
        "title-bar--share-dialog--embed--description": function(d) { return "在任何网页中嵌入公共演示文稿。"; },
        "title-bar--share-dialog--embed--description-2": function(d) { return "为了使嵌入式演示文稿正常工作,需要打开公共访问权限。如果关闭了公共访问权限,嵌入式演示文稿将不再显示。嵌入式演示文稿的公共链接不会被搜索引擎索引。"; },
        "title-bar--share-dialog--embed--offline": function(d) { return "获取演示文稿嵌入代码需要连接到互联网。请确保您已连接并重试。"; },
        "title-bar--share-dialog--publish-to-platform--title": function(d) { return "发布 \"" + d.title + "\""; },
        "title-bar--share-dialog--publish-to-platform--description": function(d) { return "发布当前版本的演示文稿到 pitch,让其他人发现和享受。现在进行任何更改 - 您无法编辑已发布的演示文稿。"; },
        "title-bar--share-dialog--publish-to-platform--button": function(d) { return "继续"; },
        "title-bar--share-dialog--publish-to-platform--link": function(d) { return "了解发布"; },
        "title-bar--share-dialog--publsih--offline": function(d) { return "发布演示文稿需要连接到互联网。请确保您已连接并重试。"; },
        "title-bar--share-dialog--offline-image--alt-atr": function(d) { return "您处于离线状态的图片"; },
        "title-bar--share-dialog--avatar--alt-atr": function(d) { return "参与者头像"; },
        "title-bar--add-text-btn": function(d) { return "添加文本"; },
        "title-bar--add-image-or-media-btn": function(d) { return "添加图片或媒体"; },
        "title-bar--add-shape-btn": function(d) { return "添加形状"; },
        "title-bar--add-sticker-btn": function(d) { return "添加贴纸"; },
        "title-bar--add-charts-btn": function(d) { return "添加图表"; },
        "title-bar--add-table-btn": function(d) { return "添加表格"; },
        "title-bar--add-embed-btn": function(d) { return "添加嵌入"; },
        "title-bar--add-clip-btn": function(d) { return "添加录音"; },
        "versioning--overlay--header-tabs--version-history": function(d) { return "版本历史"; },
        "versioning-overlay--header-tabs--deleted-slides": function(d) { return "已删除幻灯片"; },
        "versioning-overlay--slide-action--view-history": function(d) { return "查看历史"; },
        "versioning-overlay--footer-info--deleted-by": function(d) { return "删除者"; },
        "versioning-overlay--footer-info--restore-back-to--label": function(d) { return "在 #[presentation_name] 中选择要恢复的幻灯片"; },
        "versioning-overlay--no-deleted-slides--label": function(d) { return "没有删除的幻灯片"; },
        "versioning-overlay--no-deleted-slides--description": function(d) { return "你删除的幻灯片将会显示在这里,但此演示文稿目前没有删除的幻灯片。"; },
        "versioning-overlay--restore-slide-button": function(d) { return "恢复幻灯片"; },
        "versioning-overlay--error-state": function(d) { return "看起来你处于离线状态或者无法连接到我们的服务器。请检查你的网络连接并重试。"; },
        "versioning--slide-history--breadcrumbs--all-slides": function(d) { return "所有幻灯片"; },
        "versioning--slide-history--breadcrumbs--numbered-slide": function(d) { return "第 " + d.slide_number + " 张幻灯片"; },
        "versioning--slide-history--breadcrumbs--hidden-slide": function(d) { return "隐藏幻灯片"; },
        "versioning--slide-history--version-info-line--created-by": function(d) { return "创建者"; },
        "versioning--slide-history--version-info-line--last-edited-by": function(d) { return "最后编辑者"; },
        "versioning--slide-history--version-info-line--edited-by": function(d) { return "编辑者"; },
        "versioning--slide-history--footer-info--no-older-versions": function(d) { return "此幻灯片没有更早的版本。"; },
        "versioning--slide-history--paste-as-new-slide-button": function(d) { return "粘贴为新幻灯片"; },
        "versioning--slide-history--deleted-user-label": function(d) { return "已删除用户"; },
        "versioning--upsell--title": function(d) { return "永不丢失编辑记录"; },
        "versioning--upsell--title--app-store": function(d) { return "版本历史记录不可用"; },
        "versioning--upsell--description": function(d) { return "查看和恢复此幻灯片的以前版本。如果需要恢复已删除的幻灯片,您可以随时免费操作。"; },
        "versioning--upsell--description--app-store": function(d) { return "在启动计划中,恢复此幻灯片的以前版本不包括在内。您可以随时免费恢复已删除的幻灯片。"; },
        "versioning--upsell--description--guests": function(d) { return "此演示文稿属于启动计划中的工作区。查看此幻灯片的以前版本不包括在内,但您可以随时免费恢复已删除的幻灯片。"; },
        "versioning--upsell--paste-slide-button-tooltip": function(d) { return "使用 pitch pro 恢复以前的幻灯片版本"; },
        "versioning--upsell--paste-slide-button-tooltip--app-store": function(d) { return "启动计划不包括此功能"; },
        "workspaces--members-count": function(d) { return plural(d.members, 0, en, { "0": "无成员", one: "1个成员", other: number(d.members, "个成员") }); },
        "workspaces--members-count-with-owner": function(d) { return plural(d.members, 0, en, { "0": "无成员", one: "1个成员", other: number(d.members, "个成员") }) + " | 由 " + d.ownername + " 创建"; },
        "workspaces--editor-list--my-editor-base-case-pronoun": function(d) { return "我(" + d.name + ")"; },
        "workspaces--editor-list--unassigned-editor-descriptor": function(d) { return "未指定"; },
        "workspace-settings--page-title": function(d) { return "工作区设置"; },
        "workspace-settings--sso-title": function(d) { return "管理单点登录 (sso)"; },
        "workspace-settings--sso-description": function(d) { return "设置或配置您的 sso 连接。"; },
        "workspace-settings--sso-button": function(d) { return "管理 sso"; },
        "workspace-settings--sso-link-title": function(d) { return "点击此处"; },
        "workspace-settings--sso-link": function(d) { return "应该会自动打开一个新的浏览器窗口。没有反应?#[link]"; },
        "workspace-settings--icon--title": function(d) { return "工作区图标"; },
        "workspace-settings--icon--description": function(d) { return "添加图标以更轻松地识别您的工作区。"; },
        "workspace-settings--icon--choose-icon-button": function(d) { return "上传图标"; },
        "workspace-settings--errors--icon-upload-failed": function(d) { return "上传您的图标时出了些问题。请检查您是否联网,然后再试一次。"; },
        "workspace-settings--rename--title": function(d) { return "重命名此工作区"; },
        "workspace-settings--rename--description": function(d) { return "更改您的工作区名称。"; },
        "workspace-settings--rename--name-input-placeholder": function(d) { return "工作区名称"; },
        "workspace-settings--rename--rename-button": function(d) { return "重命名工作区"; },
        "workspace-settings--rename--save-button": function(d) { return "保存"; },
        "workspace-settings--rename--cancel-button": function(d) { return "取消"; },
        "workspace-settings--errors--rename-failed": function(d) { return "重命名该工作区时出了些问题。请检查您是否联网,然后再试一次。"; },
        "workspace-settings--presentation-analytics-consent--title": function(d) { return "在自定义链接上要求访客同意参与度量分析"; },
        "workspace-settings--presentation-analytics-consent--link-1": function(d) { return "在 pitch 中的数据收集"; },
        "workspace-settings--presentation-analytics-consent--link-2": function(d) { return "该设置如何影响现有链接"; },
        "workspace-settings--presentation-analytics-consent--description": function(d) { return "开启此选项后,启用参与度分析的所有自定义链接都需要访问者同意使用 cookies。访问者将看到一个 cookie 同意屏幕并可以选择退出。在我们的帮助中心阅读有关#[link-1]和#[link-2]的内容。"; },
        "workspace-settings--billing-title": function(d) { return "计费"; },
        "workspace-settings--billing-description": function(d) { return "查看和修改工作区的计费详细信息。"; },
        "workspace-settings--billing-button": function(d) { return "前往计费"; },
        "workspace-settings--delete--title": function(d) { return "删除此工作区"; },
        "workspace-settings--delete--description": function(d) { return "您和此工作区中的所有其他人将无法访问所有内容。此操作无法撤消。"; },
        "workspace-settings--delete---delete-button": function(d) { return "删除工作区"; },
        "workspace-settings--warnings--delete-workspace-message": function(d) { return "注意!此操作无法撤消。单击“确定”以确认您要删除此工作区。"; },
        "workspaces--discoverable-domain-settings--title": function(d) { return "允许电子邮件域"; },
        "workspaces--discoverable-domain-settings--description": function(d) { return "拥有#[domain]电子邮件域的任何人都可以自动加入您的工作区。"; },
        "workspaces--discoverable-domain-settings--switch-on-button": function(d) { return "启用"; },
        "workspaces--discoverable-domain-settings--switch-off-button": function(d) { return "禁用"; },
        "workspaces--discoverable-domain-settings--error": function(d) { return "出了点问题。请检查您是否在线并重试。"; },
        "workspaces--create-new-workspace-button": function(d) { return "创建新工作区"; },
        "workspaces--join-workspace-page-title--first-workspace": function(d) { return "现在,您的第一个工作区"; },
        "workspaces--join-workspace-page-title": function(d) { return "协作是一件美好的事情"; },
        "workspaces--join-discoverable-workspace-button": function(d) { return "加入"; },
        "workspaces--join-workspace-by-invitation--button": function(d) { return "接受邀请"; },
        "workspaces--join-first-workspace-copy": function(d) { return "工作区是您和您的团队可以创建和协作演示文稿的地方。加入一个现有的工作区或创建一个新的工作区。"; },
        "workspaces--join-extra-workspace-copy": function(d) { return "工作区是您的团队可以共同完成伟大工作的地方。加入现有的工作区或创建一个新的工作区。"; },
        "workspaces--join-workspace-copy--footer": function(d) { return "您现在可以加入多个工作区(或以后加入),并随时离开。"; },
        "workspaces--more-about--button": function(d) { return "更多关于工作区的信息"; },
        "workspaces--learn-more-about--button": function(d) { return "了解更多关于工作区的信息"; },
        "workspaces--more-about-modal--title": function(d) { return "工作区是您的团队所有演示文稿的地方"; },
        "workspaces--more-about-modal--explanation": function(d) { return "工作区可以包含多个成员,他们可以一起访问、编辑和处理演示文稿。"; },
        "workspaces--more-about-modal--things-to-know": function(d) { return "需要了解的几个事项:"; },
        "workspaces--more-about-modal--bullet-point-1": function(d) { return "您可以加入尽可能多的工作区。"; },
        "workspaces--more-about-modal--bullet-point-2": function(d) { return "您可以随时加入或离开工作区。"; },
        "workspaces--more-about-modal--bullet-point-3": function(d) { return "您邀请加入工作区的任何人都可以查看工作区文件夹中的所有演示文稿。"; },
        "workspaces--more-about-modal--bullet-point-4": function(d) { return "在每个工作区中,您可以将演示文稿和文件夹设置为私有的、与特定队友共享或对所有工作区成员可用。"; },
        "workspaces--join-workspace--error": function(d) { return "出了点问题。请确保您在线并且此工作区未被删除。然后重试。"; },
        "workspaces--invite-members-page--title": function(d) { return "邀请朋友一起使用工作区"; },
        "workspaces--invite-members-page--copy": function(d) { return "邀请您的队友进行协作。您可以添加尽可能多的成员,并稍后管理权限。"; },
        "workspaces--invite-members-page--email-input-label": function(d) { return "电子邮件(逗号分隔)"; },
        "workspaces--invite-members-page--email-input-placeholder": function(d) { return "[email protected][email protected]"; },
        "workspaces--invite-members-page--email-input-placeholder-domain-known": function(d) { return "otto@" + d.domain + ",cici@" + d.domain; },
        "workspaces--invite-members-page--remove-email-button": function(d) { return "从列表中删除电子邮件"; },
        "workspaces--invite-members-page--workspace-discovery-copy-part-one": function(d) { return "让任何人在"; },
        "workspaces--invite-members-page--workspace-discovery-copy-part-two": function(d) { return "加入此工作区"; },
        "workspaces--invite-members-page--send-invites-button": function(d) { return plural(d.count, 0, en, { "0": "继续", one: "发送邀请", other: "发送邀请" }); },
        "workspaces--invite-members-page--skip-button": function(d) { return "暂不邀请"; },
        "workspaces--invite-members-page--billing-charge-notice--billed-per-seat": function(d) { return "了解更多关于计费"; },
        "workspaces--invite-members-page--multi-email-input--invites": function(d) { return "邀请"; },
        "workspaces--invite-members-page--multi-email-input--placeholder": function(d) { return "邮箱"; },
        "workspaces--invite-members-page--multi-email-input--add-email": function(d) { return "添加邮箱"; },
        "workspaces--invite-members-page--confirmation--message": function(d) { return "让任何来自" + d.domain + "的人员加入此工作区"; },
        "workspaces--invite-members-page--confirmation--description": function(d) { return "来自您的电子邮件域的人员将能够自动成为成员。"; },
        "workspaces--invite-members-page--confirmation--confirm-button": function(d) { return "允许"; },
        "workspaces--invite-members-page--domain-confirmation--headline": function(d) { return "确认您的电子邮件域名"; },
        "workspaces--invite-members-page--domain-confirmation--description": function(d) { return "在下方输入#[domain],以便任何具有此电子邮件域名的人员可以自动加入您的工作区。"; },
        "workspaces--invite-members-page--domain-confirmation--confirm": function(d) { return "确认"; },
        "workspaces--invite-members-page--domain-confirmation--cancel": function(d) { return "取消"; },
        "workspaces--invite-members--label": function(d) { return "团队成员的电子邮件(用逗号分隔)"; },
        "workspaces--invite-members--workspace-discovery--label": function(d) { return "允许任何在#[domain]的人加入您的工作区"; },
        "workspaces--invite-members--modal--submit": function(d) { return "邀请加入工作区"; },
        "workspaces--invite-members--modal--skip": function(d) { return "稍后再说"; },
        "workspace--workspace-editors--guests-number-of-visible-documents": function(d) { return plural(d.count, 0, en, { one: "1个演示文稿", other: number(d.count, "count") + "个演示文稿" }); },
        "workspaces--workspace-editors--guest-presentation-in-folder": function(d) { return "在#[folder]中"; },
        "workspaces--workspace-editors--guest-convert-member--button": function(d) { return "升级为成员"; },
        "workspaces--revoke-guest-access-modal-description-title": function(d) { return "取消访客权限"; },
        "workspaces--revoke-guest-access-modal-description": function(d) { return "如果您取消了访客的访问权限,他们将无法再访问这些共享的演示文稿。但是,如果您的工作区的另一个成员与该访客私下共享了文档,则该访客仍然可以访问该文档。"; },
        "workspaces--revoke-guest-access-modal-cancel-button": function(d) { return "取消"; },
        "workspaces--revoke-guest-access-modal-revoke-button": function(d) { return "移除访问权限"; },
        "workspaces--revoke-guest-access-dropdown-revoke-button": function(d) { return "移除访问权限"; },
        "workspaces--leave-guest-workspace-confirmation-modal-title": function(d) { return "离开工作区?"; },
        "workspaces--leave-guest-workspace-confirmation-modal-body": function(d) { return "您将失去对从此工作区共享的所有演示文稿的访问权限。"; },
        "workspaces--leave-guest-workspace-confirmation-modal-cancel-button": function(d) { return "取消"; },
        "workspaces--leave-guest-workspace-confirmation-modal-confirm-button": function(d) { return "离开工作区"; },
        "workspaces--folder-deletion-notification-description": function(d) { return "#[folder-title]和所有内容已删除"; },
        "workspaces--upgrade-guest-to-member-success-notification-description": function(d) { return "💪 成功!" + d.guestname + "现在是一个协作者。"; },
        "workspaces--upgrade-guest-to-admin-success-notification-description": function(d) { return "已添加为管理员。"; },
        "workspaces--guest-access-revoked-description": function(d) { return "不再可以访问" + d.workspacename + "工作区中的任何演示文稿。"; },
        "workspaces--upgrade-guest-to-member-success-notification-undo-button": function(d) { return "撤销"; },
        "workspaces--workspace-editors--sources--invitation": function(d) { return "由" + d.inviter + "邀请加入"; },
        "workspaces--workspace-editors--sources--invitation--legacy": function(d) { return "通过邀请加入"; },
        "workspaces--workspace-editors--sources--workspace-creation": function(d) { return "创建了工作区"; },
        "workspaces--workspace-editors--sources--guest-promotion": function(d) { return "通过访客用户晋升加入"; },
        "workspaces--workspace-editors--sources--discovery": function(d) { return "通过域名发现加入"; },
        "workspaces--workspace-editors--sources--creation": function(d) { return "成为会员自" + d.creation; },
        "workspaces--workspace-editors--sources--deleted-user": function(d) { return "已删除的用户"; },
        "workspace-creation--errors--invalid-emails": function(d) { return "您输入的电子邮件地址无效。请检查您的拼写并重试。"; },
        "workspace-creation--could-not-sent-invites": function(d) { return "发送邀请时出了些问题。请再试一次或先跳过此步骤。"; },
        "workspace-invitation--errors--no-active-invitation-found": function(d) { return "您没有任何有效邀请。"; },
        "workspace-invitation--errors--invitation-issued-for-different-email": function(d) { return "该邀请已经发送到另一个电子邮件地址。请检查您是否登录了正确的电子邮件帐户,然后重试。"; },
        "workspace-invitation--errors--invitation-issued-for-different-email--with-email": function(d) { return "该邀请已经发送到另一个电子邮件地址。您当前登录的电子邮件地址为:"; },
        "workspace-invitation--errors--unknown-retryable-error": function(d) { return "接受邀请时出了一些问题。请重试。"; },
        "workspace-invitation--errors--bad-request": function(d) { return "邀请链接可能已过期。请向发送邀请的人请求新链接。"; },
        "workspaces--user-selections--anonymous": function(d) { return "匿名"; },
        "workspaces--new-workspace--heading": function(d) { return "创建新工作区"; },
        "workspaces--new-workspace--copy": function(d) { return "工作区是您和团队可以创建和协作演示文稿的地方。给它起一个好听的名字。(您随时可以更改它。)"; },
        "workspaces--new-workspace--name": function(d) { return "我的工作区"; },
        "workspaces--new-workspace--name-placeholder": function(d) { return "例如:空间工作"; },
        "workspaces--new-workspace--name-help": function(d) { return "提示:大多数人使用他们团队或组织的名称。"; },
        "workspaces-new-workspace--creating-failed": function(d) { return "创建工作区时出了一些问题。请检查您的网络连接并重试。"; },
        "workspaces--new-workspace--button--next": function(d) { return "创建工作区"; },
        "workspaces--new-workspace--button--upload-image": function(d) { return "上传图片"; },
        "workspaces--new-workspace--button--use-default-logo": function(d) { return "使用默认"; },
        "workspaces--new-workspace--button--use-brand-logo": function(d) { return "使用品牌标志"; },
        "workspaces--workspace-editors--invite-expired": function(d) { return "邀请已过期"; },
        "workspaces--workspace-editors--invite-sent": function(d) { return "邀请已发送"; },
        "workspaces--workspace-editors--only-owner-and-admins-can-invite": function(d) { return "只有所有者和管理员可以邀请协作者。"; },
        "workspaces--workspace-editors--invitation-refresh-error": function(d) { return "刷新邀请时出了一些问题。请检查您的网络连接并重试。"; },
        "workspaces--workspace-editors--invitation-revoke-error": function(d) { return "撤销邀请时出错,请检查网络并重试。"; },
        "workspaces--workspace-editors--invitation-options-title": function(d) { return "更多选项"; },
        "workspaces--workspace-editors--invitation-options--resend-invite": function(d) { return "重新发送邀请"; },
        "workspaces--workspace-editors--invitation-options--revoke-invite": function(d) { return "撤销邀请"; },
        "workspaces--workspace-editors--row--owner": function(d) { return "所有者"; },
        "workspace--workspace-editors--row--owner--description": function(d) { return "所有者角色无法更改,但所有者仍可以将其角色转移给其他人。"; },
        "workspaces--workspace-editors--row--member": function(d) { return "协作者"; },
        "workspaces--workspace-editors--row--admin": function(d) { return "管理员"; },
        "workspaces--workspace-editors--transfer-ownership-dialog--title": function(d) { return "您即将更改工作区的所有者"; },
        "workspaces--workspace-editors--transfer-ownership-dialog--text": function(d) { return d.editorname + " 将成为此工作区的新所有者。更改后,您将成为管理员。"; },
        "workspaces--workspace-editors--transfer-ownership-dialog--submit-btn": function(d) { return "转让所有权"; },
        "workspaces--workspace-editors--transfer-ownership-dialog--cancel-btn": function(d) { return "取消"; },
        "workspaces--workspace-editors--member-remove-error": function(d) { return "删除成员时出错,请检查网络并重试。"; },
        "workspaces--workspace-editors--member-changing-role-error": function(d) { return "更改成员角色时出错,请检查网络并重试。"; },
        "workspaces--workspace-editors--editor-options-title": function(d) { return "更多选项"; },
        "workspaces--workspace-editors--editor-options--leave": function(d) { return "离开"; },
        "workspaces--workspace-editors--editor-options--remove": function(d) { return "删除"; },
        "workspaces--workspace-editors--invite-user--email-address-placeholder": function(d) { return "输入电子邮件地址..."; },
        "workspaces--workspace-editors--invite-member--button": function(d) { return "邀请成员"; },
        "workspaces--workspace-editors--dashboard-title": function(d) { return "工作区成员"; },
        "workspaces--workspace-editors--table-tab-team": function(d) { return "成员 (" + plural(d.count, 0, en, { "0": "…", other: number(d.count, "count") }) + select(d.fixedquantity, { null: "", other: "/#[fixed-quantity]" }) + ")"; },
        "workspaces--workspace-editors--table-tab-guests": function(d) { return "访客 (" + plural(d.count, 0, en, { "0": "…", other: number(d.count, "count") }) + ")"; },
        "workspaces--workspace-editors--table-tab-guests-not-pro": function(d) { return "访客#[pro-badge]"; },
        "workspaces--workspace-editors--no-search-results": function(d) { return "无结果。"; },
        "workspaces--workspace-editors--no-members-matching": function(d) { return "没有匹配的成员。"; },
        "workspaces--workspace-editors--no-members-matching--invite": function(d) { return "邀请#[email]"; },
        "workspaces--workspace-editors--try-different-search-terms": function(d) { return "尝试其他搜索词。"; },
        "workspaces--workspace-editors--search-placeholder": function(d) { return "按姓名或电子邮件搜索"; },
        "workspaces--workspace-editors--filter-applied": function(d) { return "尝试删除筛选器。"; },
        "workspaces--workspace-editors--filter-all": function(d) { return "全部"; },
        "workspaces--workspace-editors--filter-title": function(d) { return "角色:" + d.role; },
        "workspaces--workspace-editors--member-invite-error": function(d) { return "邀请该成员时出了些问题。请检查您的在线状态,然后重试。"; },
        "workspaces--workspace-editors--member-invite-email-in-use-error": function(d) { return "该电子邮件地址已属于此工作区。"; },
        "workspaces--workspace-editors--invite-guests-tooltip--header": function(d) { return "邀请任何人参加演示文稿"; },
        "workspaces--workspace-editors--invite-guests-tooltip--header--app-store": function(d) { return "访客共享"; },
        "workspaces--workspace-editors--invite-guests-tooltip--incentive": function(d) { return "向访客授予单个演示文稿的访问权限,并与工作区之外的人合作。"; },
        "workspaces--workspace-editors--invite-guests-tooltip--incentive--app-store": function(d) { return "在 starter 计划中,将客人邀请到特定演示文稿中未包含。"; },
        "workspaces--workspace-editors--members-roles-description": function(d) { return "如果您是工作区的所有者或管理员,则可以管理每个工作区成员的权限。"; },
        "workspaces--workspace-editors--members-tooltip-roles": function(d) { return "工作区角色"; },
        "workspaces--workspace-editors--members-tooltip-owner": function(d) { return "所有者:"; },
        "workspaces--workspace-editors--members-tooltip-admin": function(d) { return "管理员:"; },
        "workspaces--workspace-editors--members-tooltip-member": function(d) { return "合作者"; },
        "workspaces--workspace-editors--members-tooltip-guest": function(d) { return "访客"; },
        "workspaces--workspace-editors--members-tooltip-owner-text": function(d) { return "#[owner] 可访问所有账单和成员设置"; },
        "workspaces--workspace-editors--members-tooltip-admin-text": function(d) { return "#[admin] 可更改账单设置,但不能删除工作区"; },
        "workspaces--workspace-editors--members-tooltip-member-text": function(d) { return "#[member]#[pro-badge]#[colon] 可以工作和分享演示文稿,但不能更改工作区设置"; },
        "workspaces--workspace-editors--members-tooltip-guest-text": function(d) { return "#[guest]#[pro-badge]#[colon] 可以编辑、评论或查看单个演示文稿,但不能访问工作区或其设置"; },
        "workspaces--workspace-editors--members-tooltip-learn-more": function(d) { return "了解有关#[workspace-roles]和#[pricing]的更多信息"; },
        "workspaces--workspace-editors--members-tooltip-incentive--text": function(d) { return "使用pitch pro为团队成员分配不同的角色。"; },
        "workspaces--workspace-editors--members-tooltip-incentive--text--app-store": function(d) { return "为团队成员分配角色在pitch starter计划中不可用。"; },
        "workspaces--workspace-editors--no-free-seats": function(d) { return "任何额外的成员都将增加您的#[interval]费用。#[billing-learn-more]"; },
        "workspaces--workspace-editors--free-seats": function(d) { return "#[free-seats]。下一个接受邀请的人将免费填补#[seats-available]个位置。#[billing-learn-more]"; },
        "workspaces--workspace-editors--cancellation-info": function(d) { return "您的pitch pro订阅将于#[cancellation-date]到期。#[br] 在此之前," + select(d.freeseats, { true: "#[free-seats]", false: "#[no-seats]", other: "#[no-seats]" }) + "。#[billing-learn-more]"; },
        "workspaces--workspace-editors--cancellation-info--no-free-seats": function(d) { return "任何额外的成员都将增加您的#[interval]费用。"; },
        "workspaces--workspace-editors--cancellation-info--free-seats": function(d) { return "您有#[free-seats]。下一个接受邀请的人将免费填补#[seats-available]个位置。"; },
        "workspaces--workspace-editors--free-seats-amount": function(d) { return select(d.freeseatsamount, { "1": "#[free-seats-amount]个空位", other: "#[free-seats-amount]个空位" }); },
        "workspaces--workspace-editors--free-seats-available": function(d) { return select(d.freeseatsamount, { "1": "其中一个", other: "其中之一" }); },
        "workspaces--workspace-editors--interval": function(d) { return select(d.interval, { monthly: "每月", yearly: "每年", other: "" }); },
        "workspaces--upgrade-guest-failed-title": function(d) { return "我们无法升级" + d.guestname; },
        "workspaces--upgrade-guest-failed-description": function(d) { return "请重试,如果问题仍然存在,请联系支持人员。"; },
        "workspaces--guest-access-revoking-failed": function(d) { return "更改权限时出现了问题。请重试,如果问题继续存在,请联系支持人员。"; },
        "workspaces--leave-guest-workspace-failed": function(d) { return "无法将您从此工作区中删除。请重试,如果问题继续存在,请联系支持人员。"; },
        "workspaces--leave-guest-workspace-context-menu-title": function(d) { return "离开工作区"; },
        "mobile--workspace-switcher--title": function(d) { return "工作区"; }
    }); })()

// 补充中文翻译

// 定义秒格式
function miao(maxSeconds) {
    const timeAgoData = [];
    for (let i = 1; i <= maxSeconds; i++) {
        timeAgoData.push([`更新于 ${i} seconds ago`, `更新于 ${i} 秒前`]);
    }
    return timeAgoData;
}

// 定义分钟格式
function fenzhong(maxMinutes) {
    const timeAgoData = [];
    for (let i = 1; i <= maxMinutes; i++) {
        timeAgoData.push([`更新于 ${i} minutes ago`, `更新于 ${i} 分钟前`]);
    }
    return timeAgoData;
}
// 定义小时格式
function xiaoshi(maxHours) {
    const timeAgoData = [];
    for (let i = 1; i <= maxHours; i++) {
        timeAgoData.push([`更新于 ${i} hours ago`, `更新于 ${i} 小时前`]);
    }
    return timeAgoData;
}
// 定义天数格式
function tianshu(maxDays) {
    const timeAgoData = [];
    for (let i = 1; i <= maxDays; i++) {
        timeAgoData.push([`更新于 ${i} days ago`, `更新于 ${i} 天前`]);
    }
    return timeAgoData;
}
// 定义周数格式
function zhoushu(maxWeeks) {
    const timeAgoData = [];
    for (let i = 1; i <= maxWeeks; i++) {
        timeAgoData.push([`更新于 ${i} weeks ago`, `更新于 ${i} 周前`]);
    }
    return timeAgoData;
}
// 定义月数格式
function yueshu(maxMonths) {
    const timeAgoData = [];
    for (let i = 1; i <= maxMonths; i++) {
        timeAgoData.push([`更新于 ${i} months ago`, `更新于 ${i} 月前`]);
    }
    return timeAgoData;
}
// 定义年数格式
function nianshu(maxYears) {
    const timeAgoData = [];
    for (let i = 1; i <= maxYears; i++) {
        timeAgoData.push([`更新于 ${i} years ago`, `更新于 ${i} 年前`]);
    }
    return timeAgoData;
}
// 定义需要替换的文本
const allData = [
    [`Link`, `链接`],
    [`Title`, `标题`],
    [`Headline`, `大标题`],
    [`Subheadline`, `副标题`],
    [`Normal text`, `正文`],
    [`Small text`, `小字体正文`],
    [`History`, `历史记录`],
    [`None`, `无`],
    [`Inkwell`, `黑白`],
    [`Amaro`, `暖色`],
    [`Brannan`, `冷色`],
    [`Maven`, `高亮高饱和`],
    [`Helena`, `粉色调`],
    [`none`, `无`],
    [`soft`, `柔软`],
    [`regular`, `常规`],
    [`retro`, `复古`],
    [`Recording`, `录制`],
    [`Shape`, `形状`],
    [`Sticker`, `贴纸`],
    [`Image`, `图像`],
    [`Text`, `文本`],
    [`More text options`, `更多文本设置`],
    [`Circle`, `圆形`],
    [`Square`, `方形`],
    [`Portrait`, `竖屏`],
    [`Wide`, `横屏`],
    [`Column`, `柱形图`],
    [`Stacked column`, `堆积柱形图`],
    [`Bar`, `条形图`],
    [`Stacked bar`, `堆积条形图`],
    [`Line`, `折线图`],
    [`Pie`, `饼图`],
    [`Area`, `面积图`],
    [`Stacked area`, `堆积面积图`],
    [`Chart`, `图表`],
    [`Legend`, `图例`],
    [`Value labels`, `数值标签`],
    [`Category labels`, `分类标签`],
    [`Category axis`, `分类轴`],
    [`Scale labels`, `刻度标签`],
    [`Scale axis`, `刻度轴`],
    [`Grid`, `网格线`],
    [`Use as background`, `作为背景`],
    ...miao(60),
    ...fenzhong(60),
    ...xiaoshi(24),
    ...tianshu(7),
    ...zhoushu(4),
    ...yueshu(12),
    ...nianshu(10)
]
// 定义 MutationObserver 监听器
let MutationObserver = window.MutationObserver || window.WebKitMutationObserver;
let MutationObserverConfig = {
    childList: true,
    subtree: true,
    attributeFilter: ['data-label'],
    characterData: true
};
// 监听器
let observer = new MutationObserver(function (mutations) {
    // 遍历所有节点
    let treeWalker = document.createTreeWalker(
        document.body,
        NodeFilter.SHOW_ALL,
        {
            // 过滤器
            acceptNode: function (node) {
                // 过滤掉不需要的节点
                if (node.parentNode && node.parentNode.classList && node.parentNode.classList.contains('canvas-wrapper')) {
                    return NodeFilter.FILTER_SKIP;
                } else {
                    return NodeFilter.FILTER_ACCEPT;
                }
            }
        },
        false
    );
    // 去重
    let dataMap = new Map();
    allData.forEach(([key, val]) => {
        if (key && !dataMap.has(key)) {
            dataMap.set(key, val);
        }
    });
    // 替换
    let currentNode = treeWalker.currentNode;
    // 遍历所有节点
    while (currentNode) {
        // 文本节点
        if (currentNode.nodeType === 3) {
            // 替换文本
            let key1 = currentNode.textContent;
            if (dataMap.has(key1)) currentNode.textContent = dataMap.get(key1);
        }
        // 下一个节点
        currentNode = treeWalker.nextNode();
    }
});
// 开始监听
observer.observe(document.body, MutationObserverConfig);