Skip to content

Commit a4fb6ec

Browse files
nav reorg follow-up
1 parent fda705f commit a4fb6ec

File tree

14 files changed

+453
-697
lines changed

14 files changed

+453
-697
lines changed

docs/content/concepts/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Listening and responding to commands
2+
title: Listening & responding to commands
33
lang: en
44
slug: /concepts/commands
55
---

docs/content/concepts/custom-steps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Listening and responding to custom steps
3-
sidebar_label: Custom steps
3+
sidebar_label: Custom Steps
44
lang: en
55
slug: /concepts/custom-steps
66
---

docs/content/concepts/shortcuts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Listening and responding to shortcuts
2+
title: Listening & responding to shortcuts
33
lang: en
44
slug: /concepts/shortcuts
55
---

docs/content/concepts/steps-from-apps.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ slug: /legacy/steps-from-apps
66

77
:::danger
88

9-
Steps from apps are a deprecated feature.
9+
Steps from Apps is a deprecated feature.
1010

11-
Steps from apps are different than, and not interchangeable with, Slack automation workflows. We encourage those who are currently publishing steps from apps to consider the new [Slack automation features](https://api.slack.com/automation), such as [custom steps for Bolt](https://api.slack.com/automation/functions/custom-bolt),
11+
Steps from Apps are different than, and not interchangeable with, Slack automation workflows. We encourage those who are currently publishing steps from apps to consider the new [Slack automation features](https://api.slack.com/automation), such as [custom steps for Bolt](https://api.slack.com/automation/functions/custom-bolt).
1212

1313
Please [read the Slack API changelog entry](https://api.slack.com/changelog/2023-08-workflow-steps-from-apps-step-back) for more information.
1414

@@ -171,7 +171,7 @@ ws = WorkflowStep(
171171
app.step(ws)
172172
```
173173

174-
## Executing steps from app
174+
## Executing steps from apps
175175

176176
When your step from app is executed by an end user, your app will receive a [`workflow_step_execute` event](https://api.slack.com/events/workflow_step_execute). The `execute` callback in your `WorkflowStep` configuration will be run when this event is received.
177177

docs/content/concepts/updating-pushing-views.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Updating and pushing views
2+
title: Updating & pushing views
33
lang: en
44
slug: /concepts/updating-pushing-views
55
---

docs/content/concepts/view-submissions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Listening for view submissions
2+
title: Listening to views
33
lang: en
44
slug: /concepts/view_submissions
55
---

docs/content/getting-started.md

Lines changed: 176 additions & 20 deletions
Large diffs are not rendered by default.

docs/content/tutorial/getting-started-http.md

Lines changed: 0 additions & 322 deletions
This file was deleted.

docs/i18n/ja-jp/code.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,5 +285,37 @@
285285
"theme.unlistedContent.message": {
286286
"message": "このページは非公開です。 検索対象外となり、このページのリンクに直接アクセスできるユーザーのみに公開されます。",
287287
"description": "The unlisted content banner message"
288+
},
289+
"theme.blog.author.pageTitle": {
290+
"message": "{authorName} - {nPosts}",
291+
"description": "The title of the page for a blog author"
292+
},
293+
"theme.blog.authorsList.pageTitle": {
294+
"message": "著者一覧",
295+
"description": "The title of the authors page"
296+
},
297+
"theme.blog.authorsList.viewAll": {
298+
"message": "すべての著者を見る",
299+
"description": "The label of the link targeting the blog authors page"
300+
},
301+
"theme.blog.author.noPosts": {
302+
"message": "この著者による投稿はまだありません。",
303+
"description": "The text for authors with 0 blog post"
304+
},
305+
"theme.contentVisibility.unlistedBanner.title": {
306+
"message": "非公開のページ",
307+
"description": "The unlisted content banner title"
308+
},
309+
"theme.contentVisibility.unlistedBanner.message": {
310+
"message": "このページは非公開です。 検索対象外となり、このページのリンクに直接アクセスできるユーザーのみに公開されます。",
311+
"description": "The unlisted content banner message"
312+
},
313+
"theme.contentVisibility.draftBanner.title": {
314+
"message": "下書きのページ",
315+
"description": "The draft content banner title"
316+
},
317+
"theme.contentVisibility.draftBanner.message": {
318+
"message": "このページは下書きです。開発環境でのみ表示され、本番環境のビルドには含まれません。",
319+
"description": "The draft content banner message"
288320
}
289321
}

docs/i18n/ja-jp/docusaurus-plugin-content-docs/current.json

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,53 @@
2626
"sidebar.sidebarBoltPy.link.Contributors Guide": {
2727
"message": "貢献",
2828
"description": "The label for link Contributors Guide in sidebar sidebarBoltPy, linking to https://github.com/SlackAPI/bolt-python/blob/main/.github/contributing.md"
29+
},
30+
"sidebar.sidebarBoltPy.category.Guides": {
31+
"message": "Guides",
32+
"description": "The label for category Guides in sidebar sidebarBoltPy"
33+
},
34+
"sidebar.sidebarBoltPy.category.Slack API calls": {
35+
"message": "Slack API コール",
36+
"description": "The label for category Slack API calls in sidebar sidebarBoltPy"
37+
},
38+
"sidebar.sidebarBoltPy.category.Events": {
39+
"message": "イベント API",
40+
"description": "The label for category Events in sidebar sidebarBoltPy"
41+
},
42+
"sidebar.sidebarBoltPy.category.App UI & Interactivity": {
43+
"message": "インタラクティビティ & ショートカット",
44+
"description": "The label for category App UI & Interactivity in sidebar sidebarBoltPy"
45+
},
46+
"sidebar.sidebarBoltPy.category.App Configuration": {
47+
"message": "App の設定",
48+
"description": "The label for category App Configuration in sidebar sidebarBoltPy"
49+
},
50+
"sidebar.sidebarBoltPy.category.Middleware & Context": {
51+
"message": "ミドルウェア & コンテキスト",
52+
"description": "The label for category Middleware & Context in sidebar sidebarBoltPy"
53+
},
54+
"sidebar.sidebarBoltPy.category.Adaptors": {
55+
"message": "Adaptors",
56+
"description": "The label for category Adaptors in sidebar sidebarBoltPy"
57+
},
58+
"sidebar.sidebarBoltPy.category.Authorization & Security": {
59+
"message": "認可 & セキュリティ",
60+
"description": "The label for category Authorization & Security in sidebar sidebarBoltPy"
61+
},
62+
"sidebar.sidebarBoltPy.category.Legacy": {
63+
"message": "レガシー(非推奨)",
64+
"description": "The label for category Legacy in sidebar sidebarBoltPy"
65+
},
66+
"sidebar.sidebarBoltPy.link.Reference": {
67+
"message": "Reference",
68+
"description": "The label for link Reference in sidebar sidebarBoltPy, linking to https://tools.slack.dev/bolt-python/api-docs/slack_bolt/"
69+
},
70+
"sidebar.sidebarBoltPy.link.Release notes": {
71+
"message": "リリースノート",
72+
"description": "The label for link Release notes in sidebar sidebarBoltPy, linking to https://github.com/slackapi/bolt-python/releases"
73+
},
74+
"sidebar.sidebarBoltPy.doc.Bolt for Python": {
75+
"message": "Bolt for Python",
76+
"description": "The label for the doc item Bolt for Python in sidebar sidebarBoltPy, linking to the doc index"
2977
}
3078
}

0 commit comments

Comments
 (0)