diff --git a/docs/api.md b/docs/api.md index ec0f91ca8e6..70a3104c2e8 100644 --- a/docs/api.md +++ b/docs/api.md @@ -5,13 +5,13 @@ title: APIインデックス import APIList from '@components/page/api/APIList'; - API Index | Ionic Docs API Index for all API Custom Elements + API Index | すべての API カスタム要素の Ionic Docs API Index -Each Ionic [component](/docs/components) consists of one or more [custom elements](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements). Each custom element, in turn, may expose properties, methods, events, and CSS custom properties. +各Ionicの [コンポーネント](/docs/components) は、1つ以上の [カスタム要素](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) から構成されます。各カスタム要素は順番に、プロパティ、メソッド、イベント、およびCSSカスタムプロパティを公開できます。 diff --git a/docs/cli.md b/docs/cli.md index b9ceb42ea2c..23079d30f85 100644 --- a/docs/cli.md +++ b/docs/cli.md @@ -7,7 +7,7 @@ sidebar_label: 概要 Ionic CLI Framework: Command-Line Interface to Develop Apps diff --git a/docs/components.md b/docs/components.md index aff5738efa8..c50cab4498c 100644 --- a/docs/components.md +++ b/docs/components.md @@ -42,10 +42,6 @@ Ionic アプリは、コンポーネントと呼ばれる高レイヤーの構 -

Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.

-
- -

Cardは重要なコンテンツを表示するのに最適な方法で、画像、ボタン、テキストなどを含めることができます。

@@ -74,7 +70,7 @@ Ionic アプリは、コンポーネントと呼ばれる高レイヤーの構 -

Beautifully designed icons for use in web, iOS, and Android apps.

+

ウェブ、iOS、Androidアプリで使える美しいデザインのアイコン。

diff --git a/docs/native-faq.md b/docs/native-faq.md index 192a29a81d3..d32af53d10b 100644 --- a/docs/native-faq.md +++ b/docs/native-faq.md @@ -3,22 +3,22 @@ sidebar_label: よくある質問 slug: /native/faq --- -# Frequently Asked Question +#よくある質問 -## What is Capacitor? +## Capacitorとは何ですか? -Capacitor is a native runtime built by the Ionic team that offers web developers the ability to deploy their web apps to a native device. Capacitor is also exposing native device capabilities through JavaScript so developers can access features like native location services, filesystem access, or notifications as if they are interacting with any other JavaScript library. +CapacitorはIonicチームによって構築されたネイティブランタイムで、ウェブ開発者にウェブアプリをネイティブデバイスにデプロイする機能を提供します。Capacitorはまた、JavaScriptを通じてネイティブデバイスの機能を公開しているため、開発者は他のJavaScriptライブラリとやりとりしているかのように、ネイティブの位置情報サービス、ファイルシステムへのアクセス、通知などの機能にアクセスできます。 -## Permission Issues +## パーミッションの問題 -If you're using a plugin, it may require adding additional permissions to your native project after you install the plugin. For instance, the Capacitor Camera plugin requires the following permission for iOS: +プラグインを使用している場合、プラグインをインストールした後にネイティブプロジェクトに追加のパーミッションを追加する必要がある場合があります。例えば、Capacitor CameraプラグインはiOS用に以下のパーミッションが必要です: - `NSCameraUsageDescription` (`Privacy - Camera Usage Description`) - `NSPhotoLibraryAddUsageDescription` (`Privacy - Photo Library Additions Usage Description`) - `NSPhotoLibraryUsageDescription` (`Privacy - Photo Library Usage Description`) -You need to manually add those permissions to the `info.plist` in your native project. Otherwise, calls to the native camera API will fail. +これらのパーミッションをネイティブプロジェクトの `info.plist` に手動で追加する必要があります。そうしないと、ネイティブのカメラAPIの呼び出しに失敗します。 -## Unexpected behavior +## 予期せぬ動作 -If for some reason the plugin does not behave in a way that is unexpected, please [open an issue on our github repo](https://github.com/ionic-team/capacitor-plugins)! Providing a clear issue report along with a reproduction can help get your issue resolved. +何らかの理由でプラグインが予期しない動作をする場合は、 [github リポジトリに課題を登録してください](https://github.com/ionic-team/capacitor-plugins) !明確なissueレポートと再現例を提供することで、あなたの問題を解決することができます。 diff --git a/docs/native-setup.md b/docs/native-setup.md index 26a5469f3f9..9d52b43bde0 100644 --- a/docs/native-setup.md +++ b/docs/native-setup.md @@ -9,7 +9,7 @@ import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem'; - Capacitor Plugins | Capacitor Core Plugins for Ionic Apps + Capacitorプラグイン | Ionicアプリ用のCapacitor Coreプラグイン -Getting started with Capacitor is fairly straight forward for Ionic developers. Adding plugins to your project is no different than adding any dependencies you may need to a project. +Capacitorを使い始めるのは、Ionic開発者にとってかなり簡単です。プロジェクトにプラグインを追加するのは、プロジェクトに必要な依存関係を追加するのと変わりません。 -## Install +## インストール -To install a plugin, find the plugin you want to use and install it using your package manager, like npm: +プラグインをインストールするには、使いたいプラグインを見つけ、npmなどのパッケージマネージャーを使ってインストールする: ```shell # Install the Capacitor Plugins $ npm install @capacitor/camera ``` -## Usage +## 使い方 -Once installed, plugins can be imported into a component and you can call the native functionality directly from your code. +一度インストールすれば、プラグインをコンポーネントにインポートし、コードから直接ネイティブ機能を呼び出すことができます。 -Using the [Camera plugin](native/camera.md) as an example, first install it: +[Camera plugin](native/camera.md)を例にして、まずインストールしてみましょう: ````mdx-code-block -Add native functionality to your app with Capacitor, a native runtime built by the Ionic team. Install the core packages and easily add them to your project. Capacitor has a wide range of capabilities that developers can use to access features like the device file system, camera, and native location services. All of this is powered by a unified TypeScript API that automatically handles platform differences. +Ionicチームによって構築されたネイティブライブラリ、Capacitorを使ってアプリにネイティブ機能を追加しましょう。コアパッケージをインストールして、プロジェクトに簡単に追加できます。Capacitorには、開発者がデバイスのファイルシステム、カメラ、ネイティブの位置情報サービスなどの機能にアクセスするために使用できる幅広い機能があります。これらはすべて、プラットフォームの違いを自動的に処理する統一されたTypeScript APIによって提供されています。 -While the core features of Capacitor are free and open source, some enterprises might find themselves needing more features or custom third-party integrations. If you need such additional features, check out the [Ionic Enterprise SDK](https://ionic.io/enterprise-sdk). +Capacitorのコア機能は無料でオープンソースですが、企業によってはより多くの機能やカスタムサードパーティ統合が必要になるかもしれません。そのような追加機能が必要な場合は、 [Ionic Enterprise SDK](https://ionic.io/enterprise-sdk) をチェックしてください。 -> Looking for older Cordova plugins? Visit their new home at [Awesome Cordova Plugins.](https://danielsogl.gitbook.io/awesome-cordova-plugins/) +> 古いCordovaプラグインをお探しですか?新しいホーム [Awesome Cordova Plugins.](https://danielsogl.gitbook.io/awesome-cordova-plugins/) をご覧ください。