-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes #1137, adds JP translation for custom routes #1169
Conversation
Codecov Report
@@ Coverage Diff @@
## main #1169 +/- ##
=======================================
Coverage 71.71% 71.71%
=======================================
Files 15 15
Lines 1354 1354
Branches 402 402
=======================================
Hits 971 971
Misses 312 312
Partials 71 71 Continue to review full report at Codecov.
|
docs/_advanced/ja_custom_routes.md
Outdated
@@ -6,9 +6,43 @@ order: 9 | |||
--- | |||
|
|||
<div class="section-content"> | |||
`v3.7.0` から `App` を初期化する時、 `customRoutes` というルートの配列を渡し、カスタムHTTPルートを簡単に追加できます。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
`v3.7.0` から `App` を初期化する時、 `customRoutes` というルートの配列を渡し、カスタムHTTPルートを簡単に追加できます。 | |
`v3.7.0` から `App` を初期化する際に `customRoutes` というルートの配列を渡すことでカスタムの HTTP ルートを簡単に追加できるようになりました。 |
docs/_advanced/ja_custom_routes.md
Outdated
|
||
Bolt の組み込みの `ExpressReceiver` を使っているなら、カスタムの HTTP ルートを追加するのはとても簡単です。`v2.1.0` から `ExpressReceiver` には `router` というプロパティが追加されています。これは、さらにルートを追加できるように `App` 内部で保持している Exprss の [Router](http://expressjs.com/en/4x/api.html#router) を public にしたものです。 | ||
各 `CustomRoute` オブジェクトには `path` 、 `method` と `handler` という三つのプロパティを必要とします。 HTTP 動詞に相当する `method` は文字列または文字列の配列です。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- You don't need to have "と" for "and" here.
- 必要とする is fine but perhaps 含まれている必要がある should be more natural here.
- Indeed, verb is 動詞 but "HTTP 動詞" does not make sense. Let's use HTTP メソッド instead (no need to revise the English sentence).
各 `CustomRoute` オブジェクトには `path` 、 `method` と `handler` という三つのプロパティを必要とします。 HTTP 動詞に相当する `method` は文字列または文字列の配列です。 | |
各 `CustomRoute` オブジェクトには `path` 、 `method`、 `handler` という三つのプロパティが含まれていなければなりません。 HTTP メソッドに相当する `method` は文字列または文字列の配列です。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for pointing that out!
Summary
Fixes #1137. Adds JP translation for custom routes.
Requirements (place an
x
in each[ ]
)