Skip to content

Commit 99bff15

Browse files
committed
translate(): shallow doc is translated
1 parent 8d24a0b commit 99bff15

File tree

6 files changed

+24
-27
lines changed

6 files changed

+24
-27
lines changed

docs/api.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,14 @@ title: APIインデックス
55
import APIList from '@components/page/api/APIList';
66

77
<head>
8-
<title>API Index | Ionic Docs API Index for all API Custom Elements</title>
8+
<title>API Index | すべての API カスタム要素の Ionic Docs API Index
9+
</title>
910
<meta
1011
name="description"
11-
content="Each component in the Ionic Docs API Index consists of one or more custom elements—which each, in turn, may expose methods, events, and CSS custom properties."
12+
content="Ionic Docs API Indexの各コンポーネントは、1つまたは複数のカスタム要素で構成され、それぞれがメソッド、イベント、CSSカスタムプロパティを公開します。"
1213
/>
1314
</head>
1415

15-
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.
16+
各Ionicの [コンポーネント](/docs/components) は、1つ以上の [カスタム要素](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) から構成されます。各カスタム要素は順番に、プロパティ、メソッド、イベント、およびCSSカスタムプロパティを公開できます。
1617

1718
<APIList sidebar={require('@site/sidebars.js').default} />

docs/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ sidebar_label: 概要
77
<title>Ionic CLI Framework: Command-Line Interface to Develop Apps</title>
88
<meta
99
name="description"
10-
content="The Ionic command-line interface (CLI) is the go-to tool for developing Ionic apps. Install our framework globally with npm."
10+
content="Ionicのコマンドラインインターフェイス(CLI)は、Ionicアプリの開発に最適なツールです。npmでフレームワークをグローバルにインストールします。"
1111
/>
1212
</head>
1313

docs/components.md

+1-5
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ Ionic アプリは、コンポーネントと呼ばれる高レイヤーの構
4242

4343
<DocsCard header="Card" href="api/card" icon="/icons/component-card-icon.png">
4444
<!-- prettier-ignore -->
45-
<p>Cards are a great way to display an important piece of content, and can contain images, buttons, text, and more.</p>
46-
</DocsCard>
47-
48-
<DocsCard header="Card" href="api/card" icon="/icons/component-card-icon.png">
4945
<p>Cardは重要なコンテンツを表示するのに最適な方法で、画像、ボタン、テキストなどを含めることができます。</p>
5046
</DocsCard>
5147

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

7672
<DocsCard header="Icons" href="api/icon" img="/icons/feature-component-icons-icon.png">
77-
<p>Beautifully designed icons for use in web, iOS, and Android apps.</p>
73+
<p>ウェブ、iOS、Androidアプリで使える美しいデザインのアイコン。</p>
7874
</DocsCard>
7975

8076
<DocsCard header="Grid" href="api/grid" icon="/icons/component-grid-icon.png">

docs/native-faq.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,22 @@ sidebar_label: よくある質問
33
slug: /native/faq
44
---
55

6-
# Frequently Asked Question
6+
#よくある質問
77

8-
## What is Capacitor?
8+
## Capacitorとは何ですか?
99

10-
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.
10+
CapacitorはIonicチームによって構築されたネイティブランタイムで、ウェブ開発者にウェブアプリをネイティブデバイスにデプロイする機能を提供します。Capacitorはまた、JavaScriptを通じてネイティブデバイスの機能を公開しているため、開発者は他のJavaScriptライブラリとやりとりしているかのように、ネイティブの位置情報サービス、ファイルシステムへのアクセス、通知などの機能にアクセスできます。
1111

12-
## Permission Issues
12+
## パーミッションの問題
1313

14-
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:
14+
プラグインを使用している場合、プラグインをインストールした後にネイティブプロジェクトに追加のパーミッションを追加する必要がある場合があります。例えば、Capacitor CameraプラグインはiOS用に以下のパーミッションが必要です:
1515

1616
- `NSCameraUsageDescription` (`Privacy - Camera Usage Description`)
1717
- `NSPhotoLibraryAddUsageDescription` (`Privacy - Photo Library Additions Usage Description`)
1818
- `NSPhotoLibraryUsageDescription` (`Privacy - Photo Library Usage Description`)
1919

20-
You need to manually add those permissions to the `info.plist` in your native project. Otherwise, calls to the native camera API will fail.
20+
これらのパーミッションをネイティブプロジェクトの `info.plist` に手動で追加する必要があります。そうしないと、ネイティブのカメラAPIの呼び出しに失敗します。
2121

22-
## Unexpected behavior
22+
## 予期せぬ動作
2323

24-
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.
24+
何らかの理由でプラグインが予期しない動作をする場合は、 [github リポジトリに課題を登録してください](https://github.com/ionic-team/capacitor-plugins) !明確なissueレポートと再現例を提供することで、あなたの問題を解決することができます。

docs/native-setup.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import Tabs from '@theme/Tabs';
99
import TabItem from '@theme/TabItem';
1010

1111
<head>
12-
<title>Capacitor Plugins | Capacitor Core Plugins for Ionic Apps</title>
12+
<title>Capacitorプラグイン | Ionicアプリ用のCapacitor Coreプラグイン</title>
1313
<meta
1414
name="description"
1515
content="Capacitor offers a collection APIs that make adding native functionality to your Ionic app as simple as using any JavaScript library."
@@ -21,23 +21,23 @@ import TabItem from '@theme/TabItem';
2121
`}</style>
2222
</head>
2323

24-
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.
24+
Capacitorを使い始めるのは、Ionic開発者にとってかなり簡単です。プロジェクトにプラグインを追加するのは、プロジェクトに必要な依存関係を追加するのと変わりません。
2525
<intro-end />
2626

27-
## Install
27+
## インストール
2828

29-
To install a plugin, find the plugin you want to use and install it using your package manager, like npm:
29+
プラグインをインストールするには、使いたいプラグインを見つけ、npmなどのパッケージマネージャーを使ってインストールする:
3030

3131
```shell
3232
# Install the Capacitor Plugins
3333
$ npm install @capacitor/camera
3434
```
3535

36-
## Usage
36+
## 使い方
3737

38-
Once installed, plugins can be imported into a component and you can call the native functionality directly from your code.
38+
一度インストールすれば、プラグインをコンポーネントにインポートし、コードから直接ネイティブ機能を呼び出すことができます。
3939

40-
Using the [Camera plugin](native/camera.md) as an example, first install it:
40+
[Camera plugin](native/camera.md)を例にして、まずインストールしてみましょう:
4141

4242
````mdx-code-block
4343
<Tabs

docs/native.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ import NativeEnterpriseCard from '@components/page/native/NativeEnterpriseCard';
2323

2424
<intro-end />
2525

26-
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.
26+
Ionicチームによって構築されたネイティブライブラリ、Capacitorを使ってアプリにネイティブ機能を追加しましょう。コアパッケージをインストールして、プロジェクトに簡単に追加できます。Capacitorには、開発者がデバイスのファイルシステム、カメラ、ネイティブの位置情報サービスなどの機能にアクセスするために使用できる幅広い機能があります。これらはすべて、プラットフォームの違いを自動的に処理する統一されたTypeScript APIによって提供されています。
2727

28-
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).
28+
Capacitorのコア機能は無料でオープンソースですが、企業によってはより多くの機能やカスタムサードパーティ統合が必要になるかもしれません。そのような追加機能が必要な場合は、 [Ionic Enterprise SDK](https://ionic.io/enterprise-sdk) をチェックしてください。
2929

3030
<NativeEnterpriseCard />
3131

32-
> Looking for older Cordova plugins? Visit their new home at [Awesome Cordova Plugins.](https://danielsogl.gitbook.io/awesome-cordova-plugins/)
32+
> 古いCordovaプラグインをお探しですか?新しいホーム [Awesome Cordova Plugins.](https://danielsogl.gitbook.io/awesome-cordova-plugins/) をご覧ください。

0 commit comments

Comments
 (0)