Skip to content

Commit 684677d

Browse files
committed
chore
1 parent aa555ea commit 684677d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

docs/main/updating/7-0.md

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,44 +4,44 @@ description: Guide for updating Capacitor from v6 to v7 in your app
44
slug: /updating/7-0
55
---
66

7-
# Updating from Capacitor 6 to Capacitor 7
7+
# Capacitor 6からCapacitor 7へのアップデート
88

9-
In this guide, you'll find steps to update your project to the current Capacitor 7 version as well as a list of breaking changes for our official plugins.
9+
このガイドでは、プロジェクトをCapacitor 7の最新バージョンにアップデートする手順と、公式プラグインの変更点を説明します。
1010

11-
## Breaking changes in Capacitor config file
11+
## Capacitor 設定ファイルの変更点
1212

13-
`bundledWebRuntime` configuration option has been removed. If you had it set it to `false` you can safely remove it. If you had it set to `true` you'll have to use a bundler to bundle `@capacitor/core` code within your app.
13+
`bundledWebRuntime` 設定オプションが削除されました。もし `false` に設定していた場合は、安全に削除できます。もし `true` に設定していた場合は、アプリ内で `@capacitor/core` のコードをバンドルするために bundler を使う必要があります。
1414

15-
`cordova.staticPlugins` configuration option has been removed. If you still have some Cordova plugin that needs to be static it should be updated to use `podspec` tag with `use-framework` attribute instead of using `framework` tag as that's not supported in cordova-ios 7+.
15+
`cordova.staticPlugins` 設定オプションが削除されました。もしstaticである必要のある Cordova プラグインがある場合は、cordova-ios 7+ ではサポートされていないため、`framework` タグを使う代わりに、`use-framework` 属性を持つ `podspec` タグを使うように更新する必要があります。
1616

1717
## NodeJS 20+
1818

19-
Node 18 has reached end of active support on October 18th, 2023. Capacitor 7 requires NodeJS 20 or greater. (Latest LTS version is recommended.)
19+
Node 18は2023年10月18日にアクティブサポートが終了しました。Capacitor 7はNodeJS 20以上を必要とします。(最新のLTSバージョンを推奨します)。
2020

21-
## Telemetry is now opt-out
21+
## テレメトリーはオプトアウトになりました。
2222

23-
This only affects new users as if you have used any Capacitor command before it will already have a preference saved. Also telemetry does not run in non-interactive environments, such as CI servers, ensuring no data is collected in those scenarios.
24-
It can be disabled with `npx cap telemetry off`.
23+
以前Capacitorコマンドを使用したことがある場合、すでにプリファレンスが保存されているので、これは新規ユーザーにのみ影響します。また、CIサーバーのような非インタラクティブな環境ではテレメトリーは実行されません。
24+
`npx cap telemetry off` で無効にできます。
2525

26-
## Using the CLI to Migrate
26+
## CLIを使って移行する
2727

28-
Install the `latest` version of the Capacitor CLI to your project:
28+
最新バージョンのCapacitor CLIをプロジェクトにインストールする:
2929

3030
```sh
3131
npm i -D @capacitor/cli@latest
3232
```
3333

34-
Once installed, simply run the following to have the CLI handle the migration for you.
34+
インストールしたら、以下を実行するだけで、CLIがマイグレーションを処理します:
3535

3636
```sh
3737
npx cap migrate
3838
```
3939

40-
If any of the steps for the migration are not able to be completed, additional information will be made available in the output in the terminal. The steps for doing the migration manually are listed out below.
40+
移行のステップのいずれかが完了できなかった場合、ターミナルの出力に追加情報が表示されます。手動で移行する手順を以下に示します。
4141

4242
## iOS
4343

44-
The following guide describes how to upgrade your Capacitor 6 iOS project to Capacitor 7.
44+
以下のガイドでは、Capacitor 6 iOSプロジェクトをCapacitor 7にアップグレードする方法を説明します。
4545

4646
### Upgrade Xcode
4747

@@ -59,7 +59,7 @@ platform :ios, '14.0'
5959

6060
## Android
6161

62-
The following guide describes how to upgrade your Capacitor 6 Android project to Capacitor 7.
62+
以下のガイドでは、Capacitor 6 AndroidプロジェクトをCapacitor 7にアップグレードする方法を説明します。
6363

6464
### Upgrade Android Studio
6565

@@ -142,11 +142,11 @@ Add `navigation` to `configChanges` of the app `activity` in `AndroidManifest.xm
142142
+ android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode|navigation"
143143
```
144144

145-
## Plugins
145+
## プラグイン
146146

147-
Plugins have been updated to version 7.0.0, make sure to update them to use latest version.
147+
プラグインがバージョン7.0.0にアップデートされました。
148148

149-
The following plugin functionality has been modified or removed. Update your code accordingly.
149+
以下のプラグインの機能が変更または削除されました。それに従ってコードを更新してください。
150150

151151
### Action Sheet
152152

0 commit comments

Comments
 (0)