Skip to content

Commit fefde5b

Browse files
committed
Moji: Update translations
1 parent 8e8a516 commit fefde5b

File tree

15 files changed

+316
-283
lines changed

15 files changed

+316
-283
lines changed

guides/cli/quick-start/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fullyTranslated: true
2424

2525
<!--alex ignore executed-->
2626

27-
Box CLIは、使い勝手の良いコマンドラインツールです。これにより、開発者でも開発者以外のユーザーでもBox APIを利用してルーチンや一括操作を実行できるようになります。コードを書く必要はありません。これらの操作は、一連の[コマンド][commands]によって実行されます。
27+
The Box CLI is a user-friendly command line tool that allows both technical and non-technical users to leverage the Box API to perform routine or bulk actions. There is no need to write any code, as these actions are executed through a set of [commands][commands].
2828

2929
<YouTube id="whxT3Bdx3E0">
3030

guides/tooling/sdks/dotnet-gen.md

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
---
2-
rank: 1
2+
rank: 9
33
related_endpoints: []
4-
related_guides:
5-
- authentication/jwt
6-
- authentication/oauth2
74
related_pages:
85
- sdks-and-tools
96
required_guides: []
@@ -14,32 +11,33 @@ subcategory_id: tooling/sdks
1411
is_index: false
1512
id: tooling/sdks/dotnet-gen
1613
type: guide
17-
total_steps: 9
14+
total_steps: 11
1815
sibling_id: tooling/sdks
1916
parent_id: tooling/sdks
20-
next_page_id: tooling/sdks/java
21-
previous_page_id: ''
17+
next_page_id: tooling/sdks/java-gen
18+
previous_page_id: tooling/sdks/python-gen
2219
source_url: >-
2320
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/dotnet-gen.md
2421
fullyTranslated: true
2522
---
26-
# .NET SDK (Generated) のインストール
23+
# Deprecated Box Next Gen .NET SDK
2724

28-
.NETプロジェクトでは、Box .NET SDKを使用してBox APIを呼び出すことができます。
25+
<Message type="warning">
2926

30-
このSDKは、.NET Framework 4.5以上および.NET Core 1.0以上の両方で利用できます。SDKのインストール方法は、使用しているフレームワークによって異なります。
27+
As of September 17, 2025 Box Next Generation SDKs are no longer supported as separate artifacts.
3128

32-
<CTA to="https://github.com/box/box-dotnet-sdk-gen">
29+
Don’t worry, your existing code will continue to work without changes. You can still use your applications based on Box Next Generation SDKs with no impact, but you won't receive new features, updates, or bug fixes.
3330

34-
GitHubで.NET SDKの詳細を確認する
31+
All future development, including new features and updates for the Next Generation SDKs, will be delivered through Box core SDKs starting with version `v10`. Currently, `v10` is available as a separate [branch][branch].
3532

36-
</CTA>
33+
For more details, see our [SDK versioning strategy document][versioning].
3734

38-
.NET Frameworkに.NET SDKをインストールするには、[Nuget][nuget]パッケージマネージャを使用して以下のコマンドを実行します。
35+
</Message>
3936

40-
```shell
41-
PM> Install-Package Box.Sdk.Gen
37+
Check the [migration guide][migration] to learn how to switch from Box Next Generation SDK to Box core SDK `v10`.
4238

43-
```
39+
[versioning]: g://tooling/sdks/sdk-versioning
4440

45-
[nuget]: https://www.nuget.org/
41+
[branch]: https://github.com/box/box-windows-sdk-v2/tree/sdk-gen
42+
43+
[migration]: https://github.com/box/box-windows-sdk-v2/blob/sdk-gen/migration-guides/from-dotnet-sdk-gen-v1-to-box-windows-sdk-v10.md

guides/tooling/sdks/dotnet.md

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
rank: 1
2+
rank: 2
33
related_endpoints: []
44
related_guides:
55
- authentication/jwt
@@ -14,26 +14,20 @@ subcategory_id: tooling/sdks
1414
is_index: false
1515
id: tooling/sdks/dotnet
1616
type: guide
17-
total_steps: 9
17+
total_steps: 11
1818
sibling_id: tooling/sdks
1919
parent_id: tooling/sdks
2020
next_page_id: tooling/sdks/java
21-
previous_page_id: ''
21+
previous_page_id: tooling/sdks/sdk-versioning
2222
source_url: >-
2323
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/dotnet.md
2424
fullyTranslated: true
2525
---
26-
# .NET SDK (公式サポート終了) のインストール
26+
# .NET SDKのインストール
2727

2828
.NETプロジェクトでは、Box .NET SDKを使用してBox APIを呼び出すことができます。
2929

30-
<Message type="notice">
31-
32-
[.NET SDK](https://github.com/box/box-windows-sdk-v2)は、現在メンテナンスモードであり、まもなく公式サポートが終了する予定です。つまり、実装されるのは重要なセキュリティ更新プログラムとバグ修正のみになります。[自動生成された.NET SDK][dotnetgensdk]を使用することをお勧めします。
33-
34-
</Message>
35-
36-
このSDKは、.NET Framework 4.5以上および.NET Core 1.0以上の両方で利用できます。SDKのインストール方法は、使用しているフレームワークによって異なります。
30+
Up to version `5.8.0` the SDK is available for both .NET Framework `4.5` and .NET Core `1.0` or above. Starting from version `10.0.0`, SDK is available for both .NET Framework `4.6.2` and .NET `8.0` or above. The installation of the SDK depends on the framework used.
3731

3832
<CTA to="https://github.com/box/box-windows-sdk-v2">
3933

@@ -46,7 +40,7 @@ GitHubで.NET SDKの詳細を確認する
4640
.NET Frameworkに.NET SDKをインストールするには、[Nuget][nuget]パッケージマネージャを使用して以下のコマンドを実行します。
4741

4842
```shell
49-
PM> Install-Package Box.V2
43+
PM> Install-Package Box.V2.Core
5044

5145
```
5246

@@ -60,5 +54,3 @@ PM> Install-Package Box.V2.Core
6054
```
6155

6256
[nuget]: https://www.nuget.org/
63-
64-
[dotnetgensdk]: https://github.com/box/box-dotnet-sdk-gen

guides/tooling/sdks/index.md

Lines changed: 34 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ subcategory_id: tooling/sdks
1313
is_index: true
1414
id: tooling/sdks
1515
type: guide
16-
total_steps: 9
16+
total_steps: 11
1717
sibling_id: tooling
1818
parent_id: tooling
1919
next_page_id: ''
20-
previous_page_id: tooling/sdks/salesforce
20+
previous_page_id: tooling/sdks/java-gen
2121
source_url: >-
2222
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/index.md
2323
fullyTranslated: true
2424
---
25-
# SDK
25+
# Box SDKs
2626

27-
Boxには、アプリケーションの作成に使用できる一連のSDKが用意されています。次世代の.NET SDKもここに新しく追加されました。これはまだベータ機能ですが、試しに使用して、備わっているすべての機能を確認することができます。
27+
Box offers a set of SDKs you can use to build your application.
2828

2929
<Message type="notice">
3030

@@ -36,53 +36,49 @@ Boxには、アプリケーションの作成に使用できる一連のSDKが
3636

3737
</Message>
3838

39-
## 次世代のSDK
39+
The table lists Box SDKs that you can use when building your applications. For latest API support and features, use the next generation SDKs.
4040

41-
最新世代のBox Python SDK、Box TypeScript SDK、.NET SDK、Swift SDKは、開発者エクスペリエンスを向上させ、Boxコンテンツクラウドとの統合を効率化することを目的としています。
41+
| プラットフォーム | メンテナンスの有無 | APIパリティ |
42+
| --------------------------------- | --------- | ------- |
43+
| [Java SDK][javasdk] | はい | Full |
44+
| [iOS Content SDK][iossdk] | はい | Full |
45+
| [.NET SDK][dotnetsdk] | はい | Full |
46+
| [Python SDK][pythonsdk] | はい | Full |
47+
| [Node SDK][nodesdk] | はい | Full |
48+
| [Android Content SDK][androidsdk] | いいえ | Full |
4249

43-
<Message type="notice">
50+
<Message type="warning">
51+
52+
日本時間2023年6月1日をもって、Android SDKのサポートは終了しました。既存のAndroid SDKアプリケーションは影響なく引き続きご利用いただけますが、新機能、更新、バグ修正は提供されなくなります。
4453

45-
Swift SDKはパブリックベータ段階です
54+
最新のAndroid機能を引き続き利用するには、Java SDKを使用してAndroid版アプリを作成してください。詳細については、[こちら][android-docs]のドキュメントを参照してください
4655

4756
</Message>
4857

49-
新しいSDKに実装予定の機能を以下に示します。
58+
## Next Generation SDKs
5059

51-
* **APIの全面的なサポート**: 新しいBox SDKにより、開発者はBox APIエコシステム全体をカバーできるようになります。Boxが提供する最新機能をすべて利用して、機能豊富なアプリケーションを作成できます。
52-
* **迅速なAPIの更新**: 自動生成による新しい開発アプローチにより、SDKへのBox APIの追加がさらに速いペースで (数日中に) 可能になります。これは、最新の機能をすぐにアプリケーションで利用できるようになることを意味します。
53-
* **ドキュメントへの埋め込み**: 必要な情報すべてが1か所に保存されるように、すべてのオブジェクトおよびパラメータはSDKのソースコードに直接記述されます。
54-
* **便利なメソッドの強化**: 新しく導入された便利なメソッドは、認証、分割アップロード、指数バックオフ、自動再試行、型チェック (変数を正しく使用しているかどうかの確認に役立ちます) など、さまざまな側面をカバーします。
60+
<Message type="warning">
5561

56-
任意のプログラミング言語の**Box Platform** SDKをダウンロードして開始します。
62+
As of September 17, 2025 Box Next Generation SDKs are no longer supported as separate artifacts.
5763

58-
| プラットフォーム | メンテナンスの有無 | APIパリティ |
59-
| --------------------------------- | --------- | ------- |
60-
| [Pythonの次世代SDK][pythongensdk] | はい | Full |
61-
| [TypeScriptの次世代SDK][tsgensdk] | はい | Full |
62-
| [.NETの次世代SDK][dotnetgensdk] | はい | Full |
63-
| [Swiftの次世代SDK][swiftgensdk] (ベータ) | はい | Full |
64-
| [Javaの次世代SDK][javagensdk] (ベータ) | はい | Full |
64+
Don't worry, your existing code will continue to work without changes. You can still use your applications based on Box Next Generation SDKs with no impact, but you won't receive new features, updates, or bug fixes.
6565

66-
## 従来のSDK
66+
In keeping with industry best practices, we are consolidating the Box Next Generation SDKs and Box core SDKs into a single package for each programming language. This makes migration efforts much easier and allows seamless additions of new capabilities to existing applications still powered by Box core SDKs, which were maintained manually.
6767

68-
次の表に、アプリケーションの作成時に使用できる従来のBox SDKを示します。最新のAPIサポートや機能には、次世代のSDKを使用してください。
68+
All future development, including new features and updates for the Next Generation SDKs, will be delivered through Box core SDKs starting with version `v10`. Currently, `v10` is available as a separate branch.
6969

70-
| プラットフォーム | メンテナンスの有無 | APIパリティ |
71-
| --------------------------------- | --------------------------------------- | ------- |
72-
| [Java SDK][javasdk] | はい | Full |
73-
| [iOS Content SDK][iossdk] | はい | Full |
74-
| [Android Content SDK][androidsdk] | いいえ | 部分的 |
75-
| [.NET SDK][dotnetsdk] | 公式サポート終了。重要なセキュリティ更新プログラムとバグ修正のみ実装されます。 | Full |
76-
| [Python SDK][pythonsdk] | 公式サポート終了。重要なセキュリティ更新プログラムとバグ修正のみ実装されます。 | Full |
77-
| [Node SDK][nodesdk] | 公式サポート終了。重要なセキュリティ更新プログラムとバグ修正のみ実装されます。 | Full |
70+
For more details, see our [SDK versioning strategy document][versioning].
7871

79-
<Message type="warning">
72+
</Message>
8073

81-
日本時間2023年6月1日をもって、Android SDKのサポートは終了しました。既存のAndroid SDKアプリケーションは影響なく引き続きご利用いただけますが、新機能、更新、バグ修正は提供されなくなります。
74+
The latest generation Box Python SDK, Box TypeScript SDK, Box .NET SDK, and Box Swift SDK are designed to elevate the developer experience and streamline your integration with Box Content Cloud.
8275

83-
最新のAndroid機能を引き続き利用するには、Java SDKを使用してAndroid版アプリを作成してください。詳細については、[こちら][android-docs]のドキュメントを参照してください
76+
新しいSDKに実装予定の機能を以下に示します
8477

85-
</Message>
78+
* **Full API support**: New Box SDKs empower developers with complete coverage of the Box API ecosystem. You can access all the latest features and functionalities offered by Box and build feature-rich applications.
79+
* **Rapid API updates**: The new auto-generation development approach allows you to add Box APIs to SDKs at a much faster pace (in a matter of days). This means you can leverage the most up-to-date features in your applications without delay.
80+
* **Embedded documentation**: All objects and parameters are documented directly in the source code of the SDK so all the necessary information is stored in one place.
81+
* **Enhanced convenience methods**: The newly introduced convenience methods cover various aspects such as authentication, chunk uploads, exponential back-offs, automatic retries, type checkers that help to ensure that you’re using variables correctly, and much more.
8682

8783
<!-- i18n-enable localize-links -->
8884

@@ -98,18 +94,10 @@ Swift SDKはパブリックベータ段階です。
9894

9995
[androidsdk]: https://github.com/box/box-android-sdk
10096

101-
[pythongensdk]: https://github.com/box/box-python-sdk-gen
102-
103-
[tsgensdk]: https://github.com/box/box-typescript-sdk-gen
104-
105-
[dotnetgensdk]: https://github.com/box/box-dotnet-sdk-gen
106-
107-
[swiftgensdk]: https://github.com/box/box-swift-sdk-gen
108-
109-
[javagensdk]: https://github.com/box/box-java-sdk-gen
110-
11197
[android-docs]: https://github.com/box/box-java-sdk/blob/main/doc/android.md
11298

113-
[forum]: https://support.box.com/hc/ja/community/topics/360001932973-Platform-and-Developer-Forum
99+
[versioning]: g://tooling/sdks/sdk-versioning
100+
101+
[forum]: https://community.box.com/sdks-and-tools-7
114102

115103
<!-- i18n-disable localize-links -->

guides/tooling/sdks/java-gen.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
---
2+
rank: 10
3+
related_endpoints: []
4+
related_pages:
5+
- sdks-and-tools
6+
required_guides: []
7+
related_resources: []
8+
alias_paths: []
9+
category_id: tooling
10+
subcategory_id: tooling/sdks
11+
is_index: false
12+
id: tooling/sdks/java-gen
13+
type: guide
14+
total_steps: 11
15+
sibling_id: tooling/sdks
16+
parent_id: tooling/sdks
17+
next_page_id: tooling/sdks
18+
previous_page_id: tooling/sdks/dotnet-gen
19+
source_url: >-
20+
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/java-gen.md
21+
fullyTranslated: true
22+
---
23+
# Deprecated Box Next Gen Java SDK
24+
25+
<Message type="warning">
26+
27+
As of September 17, 2025 Box Next Generation SDKs are no longer supported as separate artifacts.
28+
29+
Don’t worry, your existing code will continue to work without changes. You can still use your applications based on Box Next Generation SDKs with no impact, but you won't receive new features, updates, or bug fixes.
30+
31+
All future development, including new features and updates for the Next Generation SDKs, will be delivered through Box core SDKs starting with version `v10`. Currently, `v10` is available as a separate [branch][branch].
32+
33+
For more details, see our [SDK versioning strategy document][versioning].
34+
35+
</Message>
36+
37+
Check the [migration guide][migration] to learn how to switch from Box Next Generation SDK to Box core SDK `v10`.
38+
39+
[versioning]: g://tooling/sdks/sdk-versioning
40+
41+
[branch]: https://github.com/box/box-java-sdk/tree/sdk-gen
42+
43+
[migration]: https://github.com/box/box-java-sdk/blob/sdk-gen/migration-guides/from-box-java-sdk-gen-v0-to-box-java-sdk-v10.md

guides/tooling/sdks/java.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
rank: 2
2+
rank: 3
33
related_endpoints: []
44
related_guides:
55
- authentication/jwt
@@ -14,11 +14,11 @@ subcategory_id: tooling/sdks
1414
is_index: false
1515
id: tooling/sdks/java
1616
type: guide
17-
total_steps: 9
17+
total_steps: 11
1818
sibling_id: tooling/sdks
1919
parent_id: tooling/sdks
20-
next_page_id: tooling/sdks/python-gen
21-
previous_page_id: tooling/sdks/dotnet-gen
20+
next_page_id: tooling/sdks/python
21+
previous_page_id: tooling/sdks/dotnet
2222
source_url: >-
2323
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/java.md
2424
fullyTranslated: true

guides/tooling/sdks/node.md

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
rank: 4
2+
rank: 5
33
related_endpoints: []
44
related_guides:
55
- authentication/jwt
@@ -14,25 +14,19 @@ subcategory_id: tooling/sdks
1414
is_index: false
1515
id: tooling/sdks/node
1616
type: guide
17-
total_steps: 9
17+
total_steps: 11
1818
sibling_id: tooling/sdks
1919
parent_id: tooling/sdks
2020
next_page_id: tooling/sdks/salesforce
21-
previous_page_id: tooling/sdks/python-gen
21+
previous_page_id: tooling/sdks/python
2222
source_url: >-
2323
https://github.com/box/developer.box.com/blob/main/content/guides/tooling/sdks/node.md
2424
fullyTranslated: true
2525
---
26-
# Node SDK (公式サポート終了) のインストール
26+
# Node SDKのインストール
2727

2828
Nodeプロジェクトでは、Box Node SDKを使用してBox APIを呼び出すことができます。
2929

30-
<Message type="notice">
31-
32-
[Node SDK][node]は、現在メンテナンスモードであり、まもなく公式サポートが終了する予定です。つまり、実装されるのは重要なセキュリティ更新プログラムとバグ修正のみになります。[自動生成されたTypeScript SDK][ts-gen]を使用することをお勧めします。
33-
34-
</Message>
35-
3630
<CTA to="https://github.com/box/box-node-sdk">
3731

3832
GitHubでNode SDKの詳細を確認する
@@ -61,6 +55,4 @@ yarn add box-node-sdk
6155

6256
[yarn]: https://yarnpkg.com/
6357

64-
[ts-gen]: g://tooling/sdks/typescript-gen
65-
6658
[node]: https://github.com/box/box-node-sdk

0 commit comments

Comments
 (0)