From af99e658760045af266e570e126bf0aee2f82799 Mon Sep 17 00:00:00 2001 From: Jonas Zhang <106856363@qq.com> Date: Wed, 11 Oct 2017 09:51:52 +0800 Subject: [PATCH] Add notification-action.md file in Chinese Add notification-action.md file in Chinese --- .../api/structures/notification-action.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs-translations/zh-CN/api/structures/notification-action.md diff --git a/docs-translations/zh-CN/api/structures/notification-action.md b/docs-translations/zh-CN/api/structures/notification-action.md new file mode 100644 index 000000000000..1ceb880acced --- /dev/null +++ b/docs-translations/zh-CN/api/structures/notification-action.md @@ -0,0 +1,19 @@ +# NotificationAction 对象 + +* `type` 字符串 - 动作的类型, 可以是 `button`. +* `text` 字符串 - (可选) 指定动作的标签. + +## 平台 / 动作 支持 + +| 动作类型 | 平台支持 | `text`用法 | 默认 `text` | 限制 | +|-------------|------------------|-----------------|----------------|-------------| +| `button` | macOS | 用作按钮的标签 | "Show" | 最多只有一个按钮,如果仅提供多个,则仅使用最后一个按钮。 此操作也与 `hasReply` 不兼容,如果 `hasReply` 为 `true` ,将被忽略。 | + +### macOS 上的按钮支持 + +为了让额外的通知按钮在 MacOS 上工作,您的应用程序必须符合以下条件。 + +* 应用程序已签名。 +* 在 `info.plist` 中,将应用程序的 `NSUserNotificationAlertStyle` 设为 `alert` 。 + +如果这些要求中的任何一个都不符合,按钮就不会出现。