Skip to content

Commit 73dd401

Browse files
committed
Moji: Update translations
1 parent 142f1fb commit 73dd401

20 files changed

+101
-101
lines changed

guides/api-calls/allowing-domain-access.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ source_url: >-
2323
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/allowing-domain-access.md
2424
fullyTranslated: true
2525
---
26-
# Allow domain access
26+
# ドメインへのアクセスの許可
2727

2828
Box APIを使用する際に重要なのは、必要に応じてアプリケーションとユーザーが以下のドメインにアクセスできることです。
2929

30-
## File preview
30+
## ファイルプレビュー
3131

3232
ファイルプレビュー機能を有効にするために、アプリケーションは、Boxコンテンツ配信ネットワーク (CDN) からJavaScriptファイルを読み込むことが必要になる場合があります。このファイルは、以下のドメインから読み込まれます。
3333

guides/api-calls/api-versioning-strategy.md

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

guides/api-calls/ensure-consistency.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ source_url: >-
2929
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/ensure-consistency.md
3030
fullyTranslated: true
3131
---
32-
# Ensure consistency with headers
32+
# ヘッダーによる一貫性の確保
3333

34-
Some Box APIs support headers used to ensure consistency between your application and Box.
34+
一部のBox APIでは、アプリケーションとBox間の一貫性を確保するために使用されるヘッダーがサポートされています。
3535

3636
## `etag``if-match`、および`if-none-match`
3737

@@ -88,12 +88,12 @@ curl https://api.box.com/2.0/files/12345 \
8888

8989
これらのAPIコールのレスポンスは、項目が存在するかどうか、および`etag`値が最新バージョンと一致するかどうかによって異なります。
9090

91-
| 項目があるか? | Etagが一致するか? | HTTP status |
92-
| ------- | ----------- | ----------- |
93-
| はい | はい | 200 |
94-
| はい | いいえ | 412 |
95-
| いいえ | はい | 412 |
96-
| いいえ | いいえ | 404 |
91+
| 項目があるか? | Etagが一致するか? | HTTPステータス |
92+
| ------- | ----------- | --------- |
93+
| はい | はい | 200 |
94+
| はい | いいえ | 412 |
95+
| いいえ | はい | 412 |
96+
| いいえ | いいえ | 404 |
9797

9898
<Message type="warning">
9999

guides/api-calls/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fullyTranslated: true
2020
---
2121
# APIコール
2222

23-
The Box API is a restful API that follow common HTTP standards where possible. The following guides take a look at some of the useful features and common mistakes that a developer can encounter when working with these APIs.
23+
Box APIは、可能であれば共通のHTTP標準に準拠するRESTful APIです。以下のガイドでは、開発者がこれらのAPIを使用する際に利用できる便利な機能と直面するよくある間違いに注目します。
2424

2525
## APIコールのインサイト
2626

guides/api-calls/language-codes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ source_url: >-
1919
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/language-codes.md
2020
fullyTranslated: true
2121
---
22-
# Language codes
22+
# 言語コード
2323

24-
The Box API uses a modified version of the **ISO 639-1 Language Code** to specify a user's language.
24+
Box APIでは、**ISO 639-1言語コード**の修正版を使用して、ユーザーの言語を指定します。
2525

2626
以下は、[作成][create_user]または[更新][update_user]時に使用する言語コードのリストです。
2727

guides/api-calls/permissions-and-errors/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ source_url: >-
1818
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/permissions-and-errors/index.md
1919
fullyTranslated: true
2020
---
21-
# Permissions and errors
21+
# 権限とエラー
2222

2323
以下のガイドでは、Box APIに関連した権限やエラーについて説明します。[一般的なエラー][1][レート制限][2][スコープ][3][トークンおよびURLの有効期限][4][App Diagnosticsレポート][5]に関するページが用意されています。
2424

guides/api-calls/request-extra-fields.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ source_url: >-
2222
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/request-extra-fields.md
2323
fullyTranslated: true
2424
---
25-
# Request extra fields
25+
# 追加フィールドのリクエスト
2626

27-
The number of fields returned for a resource depends on the API endpoint used to request the resource.
27+
リソースに対して返されるフィールドの数は、リソースのリクエストに使用されるAPIエンドポイントに応じて異なります。
2828

29-
## Use the `fields` query parameter
29+
## `fields`クエリパラメータの使用
3030

3131
標準のレスポンスにデフォルトでは含まれない、リソースの特定のフィールドをリクエストするには、`fields`クエリパラメータをリクエストに追加します。このパラメータの値は、フィールド名のコンマ区切りリストです。
3232

@@ -49,17 +49,17 @@ curl https://api.box.com/2.0/files/12345?fields=is_package,lock \
4949

5050
<Message type="notice">
5151

52-
It is important to note that when a specific field is requested no other fields are returned except for those requested and the **base** set of fields. For a file, this base set is comprised of the `etag`, `id`, and `type` values.
52+
特定のフィールドがリクエストされると、リクエストされたフィールドとフィールドの**基本**セット以外のフィールドが返されない点に注意してください。ファイルの場合、この基本セットは`etag``id`、および`type`値で構成されます。
5353

5454
</Message>
5555

56-
## Resource variants
56+
## リソースバリアント
5757

58-
The following resource variants are available in the Box API.
58+
以下のリソースバリアントは、Box APIで使用できます。
5959

6060
### Standard
6161

62-
The default set of fields returned in an API response. The standard variant is returned when requesting a resource through the main APIs available for that resource. For example, when requesting the [`GET /files/:id`](endpoint://get_files_id) endpoint the API will return the standard variation of a file.
62+
APIレスポンスで返されるデフォルトのフィールドセットです。Standardバリアントは、リソースに対して使用できるメインのAPIを介してそのリソースがリクエストされたときに返されます。たとえば、[`GET /files/:id`](endpoint://get_files_id)エンドポイントをリクエストすると、APIはファイルの標準バリエーションを返します。
6363

6464
```curl
6565
curl https://api.box.com/2.0/files/12345 \
@@ -144,7 +144,7 @@ curl https://api.box.com/2.0/files/12345 \
144144

145145
### Full
146146

147-
The total set of fields that can be returned in an API response. The full variant is returned when requesting a resource through the main APIs available for that resource and by appending the `fields` query parameter.
147+
APIレスポンスで返すことができるフィールドセット全体です。Fullバリアントは、リソースに対して使用できるメインのAPIを介し、`fields`クエリパラメータを追加してそのリソースをリクエストしたときに返されます。
148148

149149
たとえば、`fields=is_package,lock`パラメータを指定して[`GET /files/:id`](endpoint://get_files_id)エンドポイントをリクエストすると、APIは、指定されたフィールドに加えて、そのファイルの基本的なフィールドを返します。
150150

guides/api-calls/sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ source_url: >-
1919
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/sorting.md
2020
fullyTranslated: true
2121
---
22-
# Sorting responses
22+
# レスポンスの並べ替え
2323

2424
APIから項目のコレクションが返される場合は、APIレスポンスの並べ替えがサポートされることがよくあります。
2525

guides/api-calls/status-codes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ source_url: >-
2020
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/status-codes.md
2121
fullyTranslated: true
2222
---
23-
# Status codes
23+
# ステータスコード
2424

25-
The following rules can be applied to interpret the HTTP status codes received when using the Box API.
25+
Box APIの使用時に受信したHTTPステータスコードの解釈に以下のルールを適用できます。
2626

2727
| HTTPステータス | |
2828
| --------- | --------------------------------------------------------------------------------------------------------------- |

guides/api-calls/suppress-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ source_url: >-
1818
https://github.com/box/developer.box.com/blob/main/content/guides/api-calls/suppress-notifications.md
1919
fullyTranslated: true
2020
---
21-
# Suppress notifications
21+
# 通知の抑制
2222

23-
For some API calls, you can block email and webhook notifications by including a `box-notifications: off` header with the API call.
23+
一部のAPIコールでは、APIコールに`box-notifications: off`ヘッダーを指定することで、メール通知およびWebhook通知をブロックできます。
2424

2525
<Tabs>
2626

0 commit comments

Comments
 (0)