0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-03-24 22:41:28 -05:00
logto/packages/phrases/src/locales/zh-cn/translation/admin-console/webhook-details.ts
Charles Zhao bb77850e62
chore(phrases): remove unnecessary exclamation points from phrases ()
* chore(phrases): remove unnecessary exclamation points from phrases

* chore: remove unnecessary white spaces
2023-05-29 06:31:07 +00:00

49 lines
2.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const webhook_details = {
page_title: 'Webhook 详情',
back_to_webhooks: '返回 Webhooks',
not_in_use: '未使用',
success_rate: '成功率',
requests: '24 小时内请求次数:{{value, number}}',
disable_webhook: '禁用 Webhook',
disable_reminder: '是否确定重新激活此 Webhook重新激活后将不会向端点 URL 发送 HTTP 请求。',
webhook_disabled: 'Webhook 已被禁用。',
webhook_reactivated: 'Webhook 已经重新激活。',
reactivate_webhook: '重新激活 Webhook',
delete_webhook: '删除 Webhook',
deletion_reminder: '您正在删除此 Webhook。删除后将不会向端点 URL 发送 HTTP 请求。',
deleted: 'Webhook 已成功删除。',
settings_tab: '设置',
recent_requests_tab: '最近请求24小时',
settings: {
settings: '设置',
settings_description:
'Webhook 允许您通过向端点 URL 发送 POST 请求,实时接收特定事件的更新。这使您可以根据接收到的新信息立即采取行动。',
events: '事件',
events_description: '选择 Logto 将发送 POST 请求的触发事件。',
name: '名称',
endpoint_url: '端点 URL',
endpoint_url_tip: '输入 HTTPS 端点的 URL事件发生时 Webhook 负载将发送到此 URL。',
signing_key: '签名密钥',
signing_key_tip:
'将由 Logto 提供的密钥作为请求标头添加到您的端点中,以确保 Webhook 负载的真实性。',
regenerate: '重新生成',
regenerate_key_title: '重新生成签名密钥',
regenerate_key_reminder:
'是否确定要修改签名密钥?重新生成后将立即生效。请在您的端点中同步修改签名密钥。',
regenerated: '签名密钥已重新生成。',
custom_headers: '自定义标头',
custom_headers_tip:
'选择性地,您可以向 Webhook 负载添加自定义标头,以提供事件的其他上下文或元数据。',
key_duplicated_error: 'Key 不能重复。',
key_missing_error: '必须填写 Key。',
value_missing_error: '必须填写值。',
test: '测试',
test_webhook: '测试您的 Webhook',
test_webhook_description:
'请完成上面的 Webhook 配置。单击测试按钮,我们将向您的端点 URL 发送每个选定事件的单独负载示例。这将使您能够验证您的端点是否正确接收和处理负载。',
send_test_payload: '发送测试负载',
test_payload_sent: '负载已成功发送。',
},
};
export default webhook_details;