Skip to content

Commit fd17034

Browse files
committed
translate 02-sveltekit/01-concepts/03-server-and-client into Japanese
1 parent 9bdf1a8 commit fd17034

File tree

1 file changed

+5
-5
lines changed
  • content/tutorial/02-sveltekit/01-concepts/03-server-and-client

1 file changed

+5
-5
lines changed

content/tutorial/02-sveltekit/01-concepts/03-server-and-client/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
title: Server and client
33
---
44

5-
A SvelteKit app can be thought of as two distinct entities working in tandem — the _server_ and the _client_.
5+
SvelteKit アプリは、2つの異なる存在が連携して動作していると考えることができます。つまりそれは _サーバー__クライアント_ です。
66

7-
'Server' is, perhaps, a confusing word since your app will often be running in a _serverless_ environment (cloud/edge functions) or might even be deployed as a set of completely static files. But it's the best we've got. The server's basic job is to turn a request into a response.
7+
'サーバー' は、もしかしたら混乱を招く言葉かもしれません。なぜなら、アプリが _サーバーレス(serverless)_ 環境 (cloud/edge functions) で実行されたり、完全に静的なファイルのセットとしてデプロイされたりするからです。しかし、これがベストな言葉です。サーバーの基本的な仕事は、リクエストをレスポンスに変換することです。
88

9-
'Client' refers to the JavaScript that loads in the browser.
9+
'クライアント' は、ブラウザに読み込まれる JavaScript を指します。
1010

11-
SvelteKit makes the two communicate with each other seamlessly. On the initial page load, the server renders the HTML, meaning content is visible as quickly as possible. The client then takes over in a process called 'hydration', so that subsequent navigations happen without full page reloads. It will request additional code and data from the server as needed.
11+
SvelteKit はこの2つをお互いにシームレスに通信させるようにします。最初のページロードでは、サーバーが HTML をレンダリングし、コンテンツを可能な限り早く表示させます。その後、'ハイドレーション(hydration)' と呼ばれるプロセスでクライアントが引き継ぐため、以降のナビゲーションではページをフルで再読み込みすることはありません。クライアントは、必要に応じて追加のコードやデータをサーバーにリクエストします。
1212

13-
> You can [adjust this behavior](https://kit.svelte.dev/docs/page-options) as needed. SvelteKit is very versatile!
13+
> 必要に応じて [この動作を調整](https://kit.svelte.jp/docs/page-options) することができます。SvelteKit は非常に多機能です!

0 commit comments

Comments
 (0)