Skip to content

Commit 48bef32

Browse files
committed
translate 02-sveltekit/01-concepts/01-introducing-sveltekit into Japanese
1 parent 70b1926 commit 48bef32

File tree

1 file changed

+14
-14
lines changed
  • content/tutorial/02-sveltekit/01-concepts/01-introducing-sveltekit

1 file changed

+14
-14
lines changed
Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
---
2-
title: What is SvelteKit?
2+
title: SvelteKit とは?
33
---
44

5-
SvelteKit is a framework for building extremely high-performance web apps. Whereas Svelte is a _component framework_, SvelteKit is an _app framework_ (or 'metaframework', depending on who you ask) that solves the tricky problems of building something production-ready:
5+
SvelteKit は非常にハイパフォーマンスな web アプリを開発するためのフレームワークです。Svelte _コンポーネントフレームワーク_ であるのに対し、SvelteKit _アプリケーションフレームワーク_ であり (または、'metaframework' と呼ぶ人もいます)、プロダクションレディ(production-ready)なものを開発する際のややこしい問題を解決します:
66

7-
- Routing
8-
- Server-side rendering
9-
- Data fetching
7+
- ルーティング
8+
- サーバーサイドレンダリング
9+
- データ取得
1010
- Service workers
11-
- TypeScript integration
12-
- Prerendering
13-
- Single-page apps
14-
- Library packaging
15-
- Optimised production builds
16-
- Deploying to different hosting providers
17-
- ...and so on
11+
- TypeScript インテグレーション
12+
- プリレンダリング
13+
- シングルページアプリ
14+
- ライブラリのパッケージング
15+
- プロダクション向けビルドの最適化
16+
- 様々なホスティングプロバイダーへのデプロイ
17+
- ...などなど
1818

19-
SvelteKit apps are server-rendered by default (like traditional 'multi-page apps' or MPAs) for excellent first load performance and SEO characteristics, but can then transition to client-side navigation (like modern 'single-page apps' or SPAs) to avoid jankily reloading everything (including things like third-party analytics code) when the user navigates. They can run anywhere JavaScript runs, though — as we'll see — your users may not need to run any JavaScript at all.
19+
SvelteKit アプリはデフォルトでは (従来の 'マルチページアプリ'、MPA のように) サーバーでレンダリングを行うため、優れた初期ロードパフォーマンスと SEO 特性を備えており、初回のロードのあとは (モダンな 'シングルページアプリ'、SPA のような) クライアントサイドナビゲーションに移行するため、ユーザーが移動する際の不愉快なフルリロードを回避することができます (サードパーティーの analytics コードを含む)。JavaScript が動作する場所ならどこでも実行できます。ただ、後ほど説明しますが、あなたのユーザーは JavaScript を実行する必要が無いかもしれません。
2020

21-
If that sounds complicated, worry not: SvelteKit is the framework that grows with you! Start simple and add new features as they come. This tutorial will go over the core concepts, while the [Advanced SvelteKit](/tutorial/handle) tutorial teaches you how to tackle more complex use cases.
21+
複雑そうに聞こえるかもしれませんが、ご心配なく。SvelteKit はあなたとともに成長するフレームワークです! シンプルに始めてみて、必要に応じて新しい機能を使っていきましょう。このチュートリアルではコアコンセプトを解説し、[Advanced SvelteKit](/tutorial/handle) チュートリアルではより複雑なユースケースに取り組む方法を教えます。

0 commit comments

Comments
 (0)