Skip to content

Commit 0f0feab

Browse files
committed
Moji: Update translations
1 parent 371975c commit 0f0feab

4 files changed

Lines changed: 116 additions & 9 deletions

File tree

guides/applications/web-app-integrations/index.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,20 @@ fullyTranslated: true
2727

2828
## 機能
2929

30-
ウェブアプリ統合を使用した場合、ユーザーはサードパーティ製アプリケーションを使用して、Boxに保存されているコンテンツを変更、共有、または編集できます。また、ウェブアプリ統合では、Boxプレビューに表示される[推奨ウェブ統合][recommended-web-integrations]を通じて、Boxユーザーに新しい機能を提供することもできます。
30+
* **File interaction**. Users can modify, share, or edit content stored in Box using a third-party application.
31+
* **Recommended Apps support**. Integrations can appear in the Box Preview interface under **Recommended Apps**. For details, see [Recommended Web Integrations][recommended-web-integrations].
32+
33+
<ImageFrame shadow>
3134

3235
![統合の例](./images/recommended-apps-preview.png)
3336

34-
ウェブアプリ統合を有効にすると、アプリケーションを \[推奨アプリ] に追加できるため、ユーザーはそのアプリケーションでファイルを使用できるようになります。統合は、特定のコンテンツタイプとファイル拡張子に制限することができます。
37+
</ImageFrame>
38+
39+
* **Scoped availability**. Integrations can be restricted to certain content types and file extensions.
40+
41+
## Visibility in Recommended Apps
42+
43+
Your web application integration appears in **Recommended Apps** only if it is published in Integrations.
3544

3645
<CTA to="g://applications/web-app-integrations/configure">
3746

guides/box-mcp/remote/index.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Box MCPサーバーは、BoxのMain Beta Agreementに従い提供されるため
3232
1. Box管理コンソールのサイドバーにある \[**統合**] をクリックします。
3333
2. \[統合] ウィンドウで \[**Box統合とクライアント**] をクリックします。
3434
3. \[**統合の個別管理**] までスクロールします。
35-
4. **Box MCP Server for Copilot Studio (ベータ)** または**Box MCP Server for Azure API Center (ベータ)** のセクションに移動します。
36-
5. 選択したMCPサーバーの状態アイコンをクリックした後、有効にする状態を選択します。
35+
4. Search for predefined Box MCP Server, for example the **Box MCP Server for Copilot Studio (Beta)**.
36+
5. Hover on the chosen integration, then click **Configure**.
3737
6. \[保存] をクリックします。
3838

3939
## リストに記載されていないBox MCPサーバーを作成する
@@ -45,9 +45,9 @@ Box MCPサーバーは、BoxのMain Beta Agreementに従い提供されるため
4545
3. \[**Box MCP Server (Box MCPサーバー)**] を検索します。
4646
4. \[**Box MCP Server (Box MCPサーバー)**] アプリケーションにカーソルを合わせ、\[**構成**] をクリックします。
4747
5. \[**追加の構成**] セクションで \[**+ 統合資格情報を追加**] をクリックします。
48-
6. 生成されたクライアントIDとクライアントシークレットをコピーします。
49-
7. 外部MCPクライアントから提供されたリダイレクトURIを入力します
50-
8. \[Scopes (スコープ)]\[_AIを管理する_] が選択されていることを確認します。
48+
6. 外部MCPクライアントから提供されたリダイレクトURIを入力します。
49+
7. 生成されたクライアントIDとクライアントシークレットをコピーします
50+
8. Under Scopes, ensure that _Manage AI Requests_ is selected.
5151

5252
## MCPクライアントにBox MCPサーバーを追加する
5353

guides/box-mcp/self-hosted/index.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1092,6 +1092,104 @@ Job details
10921092

10931093
</table>
10941094

1095+
### Box Metadata tools
1096+
1097+
<table>
1098+
1099+
<thead>
1100+
1101+
<tr>
1102+
1103+
<th>
1104+
1105+
Tool
1106+
1107+
</th>
1108+
1109+
<th>
1110+
1111+
Description
1112+
1113+
</th>
1114+
1115+
<th>
1116+
1117+
Parameters
1118+
1119+
</th>
1120+
1121+
<th>
1122+
1123+
Returns
1124+
1125+
</th>
1126+
1127+
</tr>
1128+
1129+
</thead>
1130+
1131+
<tbody>
1132+
1133+
<tr>
1134+
1135+
<td>
1136+
1137+
`box_metadata_template_get_by_key_tool`
1138+
1139+
</td>
1140+
1141+
<td>
1142+
1143+
Retrieves a metadata template by its key.
1144+
1145+
</td>
1146+
1147+
<td>
1148+
1149+
`template_name (str)`: The key of the metadata template to retrieve.
1150+
1151+
</td>
1152+
1153+
<td>
1154+
1155+
The metadata template associated with the provided key.
1156+
1157+
</td>
1158+
1159+
</tr>
1160+
1161+
<tr>
1162+
1163+
<td>
1164+
1165+
`box_metadata_template_get_by_name_tool`
1166+
1167+
</td>
1168+
1169+
<td>
1170+
1171+
Retrieve a metadata template by its name.
1172+
1173+
</td>
1174+
1175+
<td>
1176+
1177+
`template_name (str)`: The name of the metadata template to retrieve.
1178+
1179+
</td>
1180+
1181+
<td>
1182+
1183+
The metadata template associated with the provided name.
1184+
1185+
</td>
1186+
1187+
</tr>
1188+
1189+
</tbody>
1190+
1191+
</table>
1192+
10951193
## Troubleshooting
10961194

10971195
In case of an `Error: spawn uv ENOENT` on MacOS when running the MCP server with Claude Desktop, you can:

guides/getting-started/sandbox.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ fullyTranslated: true
2222

2323
BoxのDeveloperサンドボックスでは、制御された安全な環境を提供しています。この環境で、開発者は、企業の実際のデータに影響を及ぼすことなく、アプリケーションの作成、テスト、コラボレーションを行うことができます。このようなサンドボックスは、Box APIの実験、設定のテスト、新しい統合の試用、外部パートナーとの連携を行うための安全な領域を提供します。
2424

25-
## Developerサンドボックスとは
25+
## What is a developer sandbox
2626

2727
Developerサンドボックスとは、実稼働 (ライブ) Enterpriseの設定から隔離された環境であり、開発アクティビティを実際のビジネスデータから切り離しておくことができます。
2828

29-
## サンドボックスを使用する理由
29+
## Why use a sandbox
3030

3131
サンドボックスを使用すると、以下のことが可能です。
3232

0 commit comments

Comments
 (0)