Skip to content

Commit 266046b

Browse files
authored
Merge pull request #882 from IABTechLab/jpn-translation-update-848-856
Jpn translation update 848 856
2 parents 06a54ac + 6b792f5 commit 266046b

File tree

9 files changed

+165
-92
lines changed

9 files changed

+165
-92
lines changed

i18n/ja/docusaurus-plugin-content-docs/current/getting-started/gs-encryption-decryption.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ UID2 API のリクエストレスポンスワークフローは、以下のス
5757

5858
| Offset (Bytes) | Size (Bytes) | Description |
5959
| :--- | :--- | :--- |
60-
| 0 | 8 | <a href="../ref-info/glossary-uid#gl-unix-time">Unix</a> タイムスタンプ (ミリ秒単位) です。int64 のビッグエンディアンでなければなりません。 |
60+
| 0 | 8 | リクエストの <a href="../ref-info/glossary-uid#gl-unix-time">Unix</a> タイムスタンプ (ミリ秒単位) です。int64 のビッグエンディアンでなければなりません。<br/>サーバーがエンベローブを受信して復号化すると、埋め込まれたタイムスタンプを確認します。タイムスタンプが 60 秒以上古い場合、リクエストは古くなったとみなされ、拒否されます|
6161
| 8 | 8 | Nonce: リプレイ攻撃から保護するために使用されるランダムな 64 ビットのデータです。対応する [復号化済みレスポンスデータエンベローブ](#unencrypted-response-data-envelope) には、レスポンスが有効とみなされるために同じ nonce 値が含まれていなければなりません。 |
6262
| 16 | N | UTF-8 エンコーディングでシリアライズされたリクエスト JSON ドキュメントをペイロードとします。 |
6363

@@ -96,7 +96,7 @@ UID2 API のリクエストレスポンスワークフローは、以下のス
9696

9797
| Offset (Bytes) | Size (Bytes) | Description |
9898
| :--- | :--- | :--- |
99-
| 0 | 8 | Unix タイムスタンプ (ミリ秒単位) です。int64 のビッグエンディアンでなければなりません|
99+
| 0 | 8 | リクエストの Unix タイムスタンプ (ミリ秒単位) です。int64 のビッグエンディアンフォーマットでなければなりません|
100100
| 8 | 8 | Nonce: レスポンスが有効であるとみなされるためには、これは [暗号化前リクエストデータエンベローブ](#unencrypted-request-data-envelope) の nonce と一致する必要があります。 |
101101
| 16 | N | UTF-8 エンコーディングでシリアライズされたレスポンス JSON ドキュメントをペイロードとします。 |
102102

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-mobile-server-side.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: UID2 Server-Side Integration Guide for Mobile
33
sidebar_label: Server-Side Integration for Mobile
44
pagination_label: UID2 Server-Side Integration Guide for Mobile
5-
description: Setting up a mobile integration with token generate and refresh both on the server side.
5+
description: Server-Sideでのトークン生成とリフレッシュを行うモバイルインテグレーションの設定
66
hide_table_of_contents: false
77
sidebar_position: 04
88
---
@@ -11,18 +11,18 @@ import Link from '@docusaurus/Link';
1111

1212
# UID2 Server-Side Integration Guide for Mobile
1313

14-
This guide is for mobile app publishers who want to manage the UID2 token entirely on the server side:
14+
このガイドは、UID2 Token をServer-Sideで完全に管理したいモバイルアプリのパブリッシャー向けです:
1515

16-
- The token is generated on the server side.
17-
- The token is refreshed as needed on the server side.
16+
- トークンはServer-Sideで生成されます。
17+
- トークンは必要に応じてServer-Sideでリフレッシュされます。
1818

19-
This setup requires that most of the code changes are done on the server side, with minimal changes in the mobile app.
19+
この設定では、コードの変更の大部分はServer-Sideで行われ、モバイルアプリの変更は最小限に抑えられます。
2020

21-
One advantage of this approach is that if you're dealing with multiple platforms (Web / CTV / mobile), doing everything on the server side can reduce platform-specific efforts.
21+
このアプローチのメリットの一つは、複数のプラットフォーム(Web / CTV / mobile)を扱う場合、すべてをServer-Sideで行うことで、プラットフォーム固有の作業を減らすことができることです。
2222

23-
To implement using this approach, follow the instructions in [Publisher Integration Guide, Server-Side](integration-publisher-server-side.md).
23+
このアプローチを実装するには、[Publisher Integration Guide, Server-Side](integration-publisher-server-side.md)の手順に従ってください。
2424

25-
If your server-side code is in Java or Python, you can use one of the UID2 SDKs to make the HTTP requests to UID2, instead of writing your own source code. For details, refer to one of the following SDK guides:
25+
Server-side のコードが Java または Python の場合、UID2 SDK のいずれかを使用して、UID2 への HTTP リクエストを行うことができます。独自のソースコードを書く代わりに、次の SDK ガイドのいずれかを参照してください:
2626

2727
- [SDK for Java Reference Guide: Usage for Publishers](../sdks/sdk-ref-java.md#usage-for-publishers)
2828
- [SDK for Python Reference Guide: Usage for Publishers](../sdks/sdk-ref-python.md#usage-for-publishers)

i18n/ja/docusaurus-plugin-content-docs/current/guides/integration-options-private-operator.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ Privaet Operator は、Public Operator または他の Private Operator によ
4848
## Hosting Options for Private Operators
4949

5050
Private Operator を選択する場合、いくつかの実装オプションが利用可能です。UID2 は、以下のクラウドサービスプロバイダーで UID2 を <Link href="../ref-info/glossary-uid#gl-enclave">enclave</Link> にホストすることをサポートしています (実装には中程度の労力が必要です):
51-
- [Nitro Enclave](https://aws.amazon.com/ec2/nitro/) from AWS
52-
- [Confidential Space](https://cloud.google.com/confidential-computing#confidential-space), a confidential computing option from [Google Cloud](https://cloud.google.com/docs/overview/) Platform
53-
- [Confidential Containers](https://learn.microsoft.com/en-us/azure/confidential-computing/confidential-containers), a confidential computing option from Microsoft Azure
51+
- [Nitro Enclave](https://aws.amazon.com/ec2/nitro/) AWS から
52+
- [Confidential Space](https://cloud.google.com/confidential-computing#confidential-space), [Google Cloud](https://cloud.google.com/docs/overview/) Platform の機密コンピューティング オプション
53+
- [Confidential Containers](https://learn.microsoft.com/en-us/azure/confidential-computing/confidential-containers), Microsoft Azure の機密コンピューティング オプション
54+
- [Azure Kubernetes Service (AKS)](https://learn.microsoft.com/en-us/azure/aks/what-is-aks), Microsoft Azure コンテナインスタンス条の仮装ノードで実行され、Kubernetes を使用している機密コンピューティングソリューション
5455

5556
## Private Operator Workflow
5657

@@ -110,3 +111,4 @@ Private Operator のバージョン間に機能的な違いはありません。
110111
| AWS | [UID2 Private Operator for AWS Integration Guide](../guides/operator-guide-aws-marketplace.md) | AWS Marketplace の Private Operator Service の設定方法。 |
111112
| GCP Confidential Space | [UID2 Private Operator for GCP Integration Guide](../guides/operator-private-gcp-confidential-space.md) | [Google Cloud](https://cloud.google.com/docs/overview/) Platform の機密コンピューティング オプションである [Confidential Space](https://cloud.google.com/confidential-computing#confidential-space) に UID2 Operator Service を設定する方法。 |
112113
| Azure | [UID2 Private Operator for Azure Integration Guide](../guides/operator-guide-azure-enclave.md) | Microsoft Azure の機密コンピューティング オプションである Confidential Containers インスタンスで UID2 Operator Service を設定する方法。 |
114+
| AKS | [UID2 Private Operator for AKS Integration Guide](../guides/operator-guide-aks-enclave.md) | AKS のインスタンスで UID2 Operator Service を設定する方法。AKS は、Microsoft Azure コンテナインスタンスの仮想ノードで実行され、Kubernetes を使用する機密コンピューティングソリューションです。 |

0 commit comments

Comments
 (0)