mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-05-12 17:04:46 +00:00
Japanese docs - add language picker with Japanese & fix links (#1202)
This commit is contained in:
parent
7591710fd0
commit
6ded4227ec
@ -17,6 +17,7 @@ Learn how to extend the features of the Alfresco Content Application.
|
|||||||
- [Application actions](/extending/application-actions)
|
- [Application actions](/extending/application-actions)
|
||||||
- [Rules](/extending/rules)
|
- [Rules](/extending/rules)
|
||||||
- [Application features](/extending/application-features)
|
- [Application features](/extending/application-features)
|
||||||
|
- [Custom icons](/extending/icons)
|
||||||
- [Registration](/extending/registration)
|
- [Registration](/extending/registration)
|
||||||
- [Creating custom evaluators](/extending/creating-custom-evaluators)
|
- [Creating custom evaluators](/extending/creating-custom-evaluators)
|
||||||
- [Tutorials](/extending/tutorials)
|
- [Tutorials](/extending/tutorials)
|
||||||
|
@ -115,7 +115,7 @@ You can populate the menu with an extra entries like in the example below:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
Please refer to the [Content Actions](/extending/application-features#content-actions) section for more details on supported properties.
|
Please refer to the [Content Actions](#content-actions) section for more details on supported properties.
|
||||||
|
|
||||||
**Tip:** It is also possible to update or disable existing entries from within the external extension files. You will need to know the `id` of the target element to customize.
|
**Tip:** It is also possible to update or disable existing entries from within the external extension files. You will need to know the `id` of the target element to customize.
|
||||||
|
|
||||||
|
@ -201,7 +201,7 @@ Final result:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
You can find more details in the [Disabling Content](/extending/extension-format#disabling-content) section
|
You can find more details in the [Disabling Content](#disabling-content) section
|
||||||
|
|
||||||
### Merging arrays
|
### Merging arrays
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ To create a new route, populate the `routes` section with the corresponding entr
|
|||||||
| **path** | Runtime path of the route. |
|
| **path** | Runtime path of the route. |
|
||||||
| **component** | The main [component](/extending/components) to use for the route. |
|
| **component** | The main [component](/extending/components) to use for the route. |
|
||||||
| layout | The layout [component](/extending/components) to use for the route. |
|
| layout | The layout [component](/extending/components) to use for the route. |
|
||||||
| auth | List of [authentication guards](/extending/routes#authentication-guards). Defaults to `[ "app.auth" ]`. |
|
| auth | List of [authentication guards](#authentication-guards). Defaults to `[ "app.auth" ]`. |
|
||||||
| data | Custom property bag to carry with the route. |
|
| data | Custom property bag to carry with the route. |
|
||||||
|
|
||||||
Use the `app.layout.main` value for the `layout` property to get the default application layout,
|
Use the `app.layout.main` value for the `layout` property to get the default application layout,
|
||||||
|
112
docs/index.html
112
docs/index.html
@ -16,34 +16,94 @@
|
|||||||
<script src="https://unpkg.com/docute@3/dist/docute.js"></script>
|
<script src="https://unpkg.com/docute@3/dist/docute.js"></script>
|
||||||
<script src="https://unpkg.com/prismjs/components/prism-typescript.js"></script>
|
<script src="https://unpkg.com/prismjs/components/prism-typescript.js"></script>
|
||||||
<script>
|
<script>
|
||||||
|
var langs = [
|
||||||
|
{ title: 'English', path: '/' },
|
||||||
|
{ title: '日本語', path: '/ja/', matchPath: /^\/ja[\/$]/ }
|
||||||
|
];
|
||||||
|
|
||||||
docute.init({
|
docute.init({
|
||||||
toc: 'toc.md',
|
url: '.',
|
||||||
nav: [
|
toc: $route => {
|
||||||
{
|
const isJapaneseLang = $route.path.split('/')[1] === 'ja';
|
||||||
title: 'Home',
|
const wasJapaneseLang = $route.from.path.split('/')[1] === 'ja';
|
||||||
path: '/'
|
|
||||||
},
|
if (wasJapaneseLang !== isJapaneseLang) {
|
||||||
{
|
const isFirstPageLoad =
|
||||||
title: 'App features',
|
$route.from.path === '/' && $route.from.meta.name !== 'home';
|
||||||
path: '/features/'
|
if (!isFirstPageLoad) {
|
||||||
},
|
document.location.reload();
|
||||||
{
|
}
|
||||||
title: 'Getting Started',
|
|
||||||
path: '/getting-started/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Extending',
|
|
||||||
path: '/extending/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Tutorials',
|
|
||||||
path: '/tutorials/'
|
|
||||||
},
|
|
||||||
{
|
|
||||||
title: 'Get Help',
|
|
||||||
path: '/help'
|
|
||||||
}
|
}
|
||||||
],
|
|
||||||
|
if (isJapaneseLang) {
|
||||||
|
return './ja/toc.md';
|
||||||
|
}
|
||||||
|
return './toc.md';
|
||||||
|
},
|
||||||
|
nav: {
|
||||||
|
default: [
|
||||||
|
{
|
||||||
|
title: 'English',
|
||||||
|
type: 'dropdown',
|
||||||
|
items: langs
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Home',
|
||||||
|
path: '/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'App features',
|
||||||
|
path: '/features/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Getting Started',
|
||||||
|
path: '/getting-started/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Extending',
|
||||||
|
path: '/extending/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Tutorials',
|
||||||
|
path: '/tutorials/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'Get Help',
|
||||||
|
path: '/help'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
ja: [
|
||||||
|
{
|
||||||
|
title: '日本語',
|
||||||
|
type: 'dropdown',
|
||||||
|
items: langs
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'ホーム',
|
||||||
|
path: '/ja/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'アプリの機能',
|
||||||
|
path: '/ja/features/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '入門',
|
||||||
|
path: '/ja/getting-started/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '拡張',
|
||||||
|
path: '/ja/extending/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'チュートリアル',
|
||||||
|
path: '/ja/tutorials/'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: 'ヘルプ',
|
||||||
|
path: '/ja/help'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
icons: [
|
icons: [
|
||||||
{
|
{
|
||||||
icon: 'github',
|
icon: 'github',
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Title: Alfresco Content Application
|
Title: Alfresco Content Application
|
||||||
Github only: true
|
Github only: true
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# Alfresco Content Application
|
# Alfresco Content Application
|
||||||
@ -14,11 +15,11 @@ Alfresco Content Application は、[Alfresco Application Development Framework (
|
|||||||
|
|
||||||
ドキュメントは次のセクションに分かれています:
|
ドキュメントは次のセクションに分かれています:
|
||||||
|
|
||||||
- [アプリの機能](/features/): ユーザーインターフェイスとアプリの使用方法の詳細。
|
- [アプリの機能](/ja/features/): ユーザーインターフェイスとアプリの使用方法の詳細。
|
||||||
- [入門](/getting-started/): 開発環境とアプリの構成。
|
- [入門](/ja/getting-started/): 開発環境とアプリの構成。
|
||||||
- [拡張](/extending/): 独自のコードでアプリの機能を拡張する方法。
|
- [拡張](/ja/extending/): 独自のコードでアプリの機能を拡張する方法。
|
||||||
- [チュートリアル](/tutorials/): 開発技術の詳細な調査。
|
- [チュートリアル](/ja/tutorials/): 開発技術の詳細な調査。
|
||||||
- [ヘルプ](/help): さらなるヘルプとサポートの詳細が利用可能です。
|
- [ヘルプ](/ja/help): さらなるヘルプとサポートの詳細が利用可能です。
|
||||||
|
|
||||||
## 互換性
|
## 互換性
|
||||||
|
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Title: 拡張
|
Title: 拡張
|
||||||
Github only: true
|
Github only: true
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 拡張
|
# 拡張
|
||||||
@ -9,15 +10,16 @@ Alfresco Content Application の機能を拡張する方法を学びます。
|
|||||||
|
|
||||||
## コンテンツ
|
## コンテンツ
|
||||||
|
|
||||||
- [拡張機能](/extending/extensibility-features)
|
- [拡張機能](/ja/extending/extensibility-features)
|
||||||
- [拡張フォーマット](/extending/extension-format)
|
- [拡張フォーマット](/ja/extending/extension-format)
|
||||||
- [ルート](/extending/routes)
|
- [ルート](/ja/extending/routes)
|
||||||
- [コンポーネント](/extending/components)
|
- [コンポーネント](/ja/extending/components)
|
||||||
- [アクション](/extending/actions)
|
- [アクション](/ja/extending/actions)
|
||||||
- [アプリケーションアクション](/extending/application-actions)
|
- [アプリケーションアクション](/ja/extending/application-actions)
|
||||||
- [ルール](/extending/rules)
|
- [ルール](/ja/extending/rules)
|
||||||
- [アプリケーションの機能](/extending/application-features)
|
- [アプリケーションの機能](/ja/extending/application-features)
|
||||||
- [登録](/extending/registration)
|
- [カスタムアイコン](/ja/extending/icons)
|
||||||
- [カスタムエバリュエータの作成](/extending/creating-custom-evaluators)
|
- [登録](/ja/extending/registration)
|
||||||
- [チュートリアル](/extending/tutorials)
|
- [カスタムエバリュエータの作成](/ja/extending/creating-custom-evaluators)
|
||||||
- [再配布可能なライブラリ](/extending/redistributable-libraries)
|
- [チュートリアル](/ja/extending/tutorials)
|
||||||
|
- [再配布可能なライブラリ](/ja/extending/redistributable-libraries)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: アクション
|
Title: アクション
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# アクション
|
# アクション
|
||||||
@ -9,7 +10,7 @@ Title: アクション
|
|||||||
| プロパティ名 | 説明 |
|
| プロパティ名 | 説明 |
|
||||||
| -- | -- |
|
| -- | -- |
|
||||||
| **id** | 一意の識別子。 |
|
| **id** | 一意の識別子。 |
|
||||||
| **type** | アクションタイプ。詳細については、[アプリケーションアクション](/extending/application-actions) を参照してください。 |
|
| **type** | アクションタイプ。詳細については、[アプリケーションアクション](/ja/extending/application-actions) を参照してください。 |
|
||||||
| **payload** | アクションペイロード、値または式を含む文字列。 |
|
| **payload** | アクションペイロード、値または式を含む文字列。 |
|
||||||
|
|
||||||
```json
|
```json
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: アプリケーションアクション
|
Title: アプリケーションアクション
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# アプリケーションアクション
|
# アプリケーションアクション
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: アプリケーションの機能
|
Title: アプリケーションの機能
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# アプリケーションの機能
|
# アプリケーションの機能
|
||||||
@ -115,7 +116,7 @@ interface ContentActionRef {
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
サポートされているプロパティの詳細については、[コンテンツアクション](/extending/application-features#content-actions) セクションを参照してください。
|
サポートされているプロパティの詳細については、[コンテンツアクション](#コンテンツアクション) セクションを参照してください。
|
||||||
|
|
||||||
**Tip:** 外部拡張ファイル内から既存のエントリを更新または無効にすることもできます。カスタマイズするには、ターゲット要素の `id` を知る必要があります。
|
**Tip:** 外部拡張ファイル内から既存のエントリを更新または無効にすることもできます。カスタマイズするには、ターゲット要素の `id` を知る必要があります。
|
||||||
|
|
||||||
@ -234,14 +235,14 @@ export interface NavBarLinkRef {
|
|||||||
対応するすべてのコンポーネントは、実行環境で使用するために登録する必要があります。
|
対応するすべてのコンポーネントは、実行環境で使用するために登録する必要があります。
|
||||||
|
|
||||||
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
||||||
[登録](/extending/registration) セクションを参照してください。
|
[登録](/ja/extending/registration) セクションを参照してください。
|
||||||
|
|
||||||
### タブプロパティ
|
### タブプロパティ
|
||||||
|
|
||||||
| プロパティ名 | 説明 |
|
| プロパティ名 | 説明 |
|
||||||
| ------------- | ----------------------------------------------------------------- |
|
| ------------- | ----------------------------------------------------------------- |
|
||||||
| **id** | 一意の識別子。 |
|
| **id** | 一意の識別子。 |
|
||||||
| **component** | ルートに使用するメインの[コンポーネント](/extending/components)。 |
|
| **component** | ルートに使用するメインの[コンポーネント](/ja/extending/components)。 |
|
||||||
| **title** | タブのタイトルまたはリソースのキー |
|
| **title** | タブのタイトルまたはリソースのキー |
|
||||||
| icon | タブのアイコン |
|
| icon | タブのアイコン |
|
||||||
| disabled | 無効状態を切り替えます。他のプラグインから割り当てることができます。 |
|
| disabled | 無効状態を切り替えます。他のプラグインから割り当てることができます。 |
|
||||||
@ -584,7 +585,7 @@ export interface ViewerRules {
|
|||||||
|
|
||||||
`app.extensions.json` からこれらのプリセットを設定すると、デフォルトのアプリケーション設定が上書きされます。
|
`app.extensions.json` からこれらのプリセットを設定すると、デフォルトのアプリケーション設定が上書きされます。
|
||||||
カスタムプラグインから設定すると、これらのプリセットを無効化、更新、または拡張できます。
|
カスタムプラグインから設定すると、これらのプリセットを無効化、更新、または拡張できます。
|
||||||
拡張機能のマージに関する詳細はこちらをご覧ください[here](/extending/extension-format#merging-properties)。
|
拡張機能のマージに関する詳細はこちらをご覧ください[here](/ja/extending/extension-format#プロパティのマージ)。
|
||||||
|
|
||||||
`content-metadata-presets` 要素は、`disabled` プロパティを設定することでオフにできます。
|
`content-metadata-presets` 要素は、`disabled` プロパティを設定することでオフにできます。
|
||||||
これはネストされたアイテムにも適用でき、アスペクトレベルまで無効にできます。
|
これはネストされたアイテムにも適用でき、アスペクトレベルまで無効にできます。
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: コンポーネント
|
Title: コンポーネント
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# コンポーネント
|
# コンポーネント
|
||||||
@ -22,7 +23,7 @@ Title: コンポーネント
|
|||||||
| app.toolbar.viewNode | ViewNodeComponent | ファイルを表示するアクションコンポーネント。 |
|
| app.toolbar.viewNode | ViewNodeComponent | ファイルを表示するアクションコンポーネント。 |
|
||||||
|
|
||||||
実行時に再利用される独自のエントリを登録する方法の詳細については、
|
実行時に再利用される独自のエントリを登録する方法の詳細については、
|
||||||
[登録](/extending/registration) セクションを参照してください。
|
[登録](/ja/extending/registration) セクションを参照してください。
|
||||||
|
|
||||||
カスタム拡張機能は、新しいコンポーネントを登録するだけでなく、
|
カスタム拡張機能は、新しいコンポーネントを登録するだけでなく、
|
||||||
実行時に既存のコンポーネントを既知の識別子で置き換えることもできます。
|
実行時に既存のコンポーネントを既知の識別子で置き換えることもできます。
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: カスタムエバリュエータの作成
|
Title: カスタムエバリュエータの作成
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# カスタムエバリュエータの作成
|
# カスタムエバリュエータの作成
|
||||||
@ -66,4 +67,4 @@ extensions.setEvaluators({
|
|||||||
`core.every` のような複合ルールの一部として使用したりできます。
|
`core.every` のような複合ルールの一部として使用したりできます。
|
||||||
|
|
||||||
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
||||||
[登録](/extending/registration) セクションを参照してください。
|
[登録](/ja/extending/registration) セクションを参照してください。
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 拡張機能
|
Title: 拡張機能
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 拡張機能
|
# 拡張機能
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 拡張フォーマット
|
Title: 拡張フォーマット
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 拡張フォーマット
|
# 拡張フォーマット
|
||||||
@ -201,7 +202,7 @@ JSON 構造およびネストのレベルに制限はありません。
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
詳細については、[コンテンツの無効化](/extending/extension-format#disabling-content) セクションをご覧ください。
|
詳細については、[コンテンツの無効化](#コンテンツを無効にする) セクションをご覧ください。
|
||||||
|
|
||||||
### 配列のマージ
|
### 配列のマージ
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: カスタムアイコン
|
Title: カスタムアイコン
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# カスタムアイコン
|
# カスタムアイコン
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 再配布可能なライブラリ
|
Title: 再配布可能なライブラリ
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 再配布可能なライブラリ
|
# 再配布可能なライブラリ
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 登録
|
Title: 登録
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 登録
|
# 登録
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ルート
|
Title: ルート
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ルート
|
# ルート
|
||||||
@ -29,9 +30,9 @@ Title: ルート
|
|||||||
| ------------- | -------------------------------------------------------------------------------------- |
|
| ------------- | -------------------------------------------------------------------------------------- |
|
||||||
| **id** | 一意の識別子。 |
|
| **id** | 一意の識別子。 |
|
||||||
| **path** | ルートの実行パス。 |
|
| **path** | ルートの実行パス。 |
|
||||||
| **component** | ルートに使用するメインの[コンポーネント](/extending/components)。 |
|
| **component** | ルートに使用するメインの[コンポーネント](/ja/extending/components)。 |
|
||||||
| layout | ルートに使用するレイアウト[コンポーネント](/extending/components)。 |
|
| layout | ルートに使用するレイアウト[コンポーネント](/ja/extending/components)。 |
|
||||||
| auth | [認証ガード](/extending/routes#authentication-guards)のリスト。デフォルトは `[ "app.auth" ]` です。 |
|
| auth | [認証ガード](#認証ガード)のリスト。デフォルトは `[ "app.auth" ]` です。 |
|
||||||
| data | ルートとともに移すカスタムプロパティバッグ。 |
|
| data | ルートとともに移すカスタムプロパティバッグ。 |
|
||||||
|
|
||||||
レイアウトプロパティの `app.layout.main` の値を使用して、
|
レイアウトプロパティの `app.layout.main` の値を使用して、
|
||||||
@ -76,4 +77,4 @@ Title: ルート
|
|||||||
| app.auth | AuthGuardEcm | ADF ガードは、ACS の認証を検証し、必要に応じてログインにリダイレクトします。 |
|
| app.auth | AuthGuardEcm | ADF ガードは、ACS の認証を検証し、必要に応じてログインにリダイレクトします。 |
|
||||||
|
|
||||||
カスタムエクステンション内からこれらのガードを参照するか、
|
カスタムエクステンション内からこれらのガードを参照するか、
|
||||||
カスタム実装を [登録](/extending/registration) できます。
|
カスタム実装を [登録](/ja/extending/registration) できます。
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ルール
|
Title: ルール
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ルール
|
# ルール
|
||||||
@ -200,7 +201,7 @@ Title: ルール
|
|||||||
| 1.7.0 | app.navigation.isLibraryFiles | 現在のページは**ライブラリファイル**です。 |
|
| 1.7.0 | app.navigation.isLibraryFiles | 現在のページは**ライブラリファイル**です。 |
|
||||||
|
|
||||||
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
**Tip:** 実行時に再利用される独自のエントリを登録する方法の詳細については、
|
||||||
[登録](/extending/registration) セクションを参照してください。
|
[登録](/ja/extending/registration) セクションを参照してください。
|
||||||
|
|
||||||
### 例
|
### 例
|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: チュートリアル
|
Title: チュートリアル
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# チュートリアル
|
# チュートリアル
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Title: アプリの機能
|
Title: アプリの機能
|
||||||
Github only: true
|
Github only: true
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# アプリの機能
|
# アプリの機能
|
||||||
@ -16,11 +17,11 @@ Github only: true
|
|||||||
|
|
||||||
## コンテンツ
|
## コンテンツ
|
||||||
|
|
||||||
- [ユーザーインターフェイスのレイアウト](/features/user-interface-layout)
|
- [ユーザーインターフェイスのレイアウト](/ja/features/user-interface-layout)
|
||||||
- [ヘッダー](/features/header)
|
- [ヘッダー](/ja/features/header)
|
||||||
- [サイドナビゲーション](/features/side-navigation)
|
- [サイドナビゲーション](/ja/features/side-navigation)
|
||||||
- [ドキュメントリストのレイアウト](/features/document-list-layout)
|
- [ドキュメントリストのレイアウト](/ja/features/document-list-layout)
|
||||||
- [ファイルビューア](/features/file-viewer)
|
- [ファイルビューア](/ja/features/file-viewer)
|
||||||
- [情報ドロワー](/features/info-drawer)
|
- [情報ドロワー](/ja/features/info-drawer)
|
||||||
- [バージョンマネージャ](/features/version-manager)
|
- [バージョンマネージャ](/ja/features/version-manager)
|
||||||
- [検索結果](/features/search-results)
|
- [検索結果](/ja/features/search-results)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ドキュメントリストのレイアウト
|
Title: ドキュメントリストのレイアウト
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ドキュメントリストのレイアウト
|
# ドキュメントリストのレイアウト
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ファイルビューア
|
Title: ファイルビューア
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ファイルビューア
|
# ファイルビューア
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
---
|
---
|
||||||
Title: Header
|
Title: Header
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ヘッダー
|
# ヘッダー
|
||||||
|
|
||||||
アプリケーションの [ヘッダー](../../src/app/components/header) には3つの主要な要素があります。
|
アプリケーションの [ヘッダー](../../src/app/components/header) には3つの主要な要素があります。
|
||||||
|
|
||||||
1. [ロゴと色](#logo-and-color)
|
1. [ロゴと色](#ロゴと色)
|
||||||
2. [検索](#search)
|
2. [検索](#検索)
|
||||||
3. [現在のユーザ](#current-user)
|
3. [現在のユーザ](#現在のユーザ)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 情報ドロワー
|
Title: 情報ドロワー
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 情報ドロワー
|
# 情報ドロワー
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 検索結果
|
Title: 検索結果
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 検索結果
|
# 検索結果
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: サイドナビゲーション
|
Title: サイドナビゲーション
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# サイドナビゲーション
|
# サイドナビゲーション
|
||||||
|
@ -1,13 +1,14 @@
|
|||||||
---
|
---
|
||||||
Title: ユーザーインターフェイス - レイアウト
|
Title: ユーザーインターフェイス - レイアウト
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ユーザーインターフェイス - レイアウト
|
# ユーザーインターフェイス - レイアウト
|
||||||
|
|
||||||
[Layout component](../../src/app/components/layout) によって制御されるアプリケーションの3つの主要な領域があります:
|
[Layout component](../../src/app/components/layout) によって制御されるアプリケーションの3つの主要な領域があります:
|
||||||
|
|
||||||
1. [アプリケーションヘッダー](/features/header)
|
1. [アプリケーションヘッダー](/ja/features/header)
|
||||||
2. [サイドナビゲーション](/features/side-navigation)
|
2. [サイドナビゲーション](/ja/features/side-navigation)
|
||||||
3. [ドキュメントリスト](/features/document-list-layout)
|
3. [ドキュメントリスト](/ja/features/document-list-layout)
|
||||||
|
|
||||||

|

|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: バージョンマネージャ
|
Title: バージョンマネージャ
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# バージョンマネージャ
|
# バージョンマネージャ
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Title: 入門
|
Title: 入門
|
||||||
Github only: true
|
Github only: true
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 入門
|
# 入門
|
||||||
@ -9,11 +10,11 @@ Alfresco Content Application で開発を開始する方法を学びます。
|
|||||||
|
|
||||||
## コンテンツ
|
## コンテンツ
|
||||||
|
|
||||||
- [前提条件](/getting-started/prerequisites)
|
- [前提条件](/ja/getting-started/prerequisites)
|
||||||
- [ソースからビルド](/getting-started/building-from-source)
|
- [ソースからビルド](/ja/getting-started/building-from-source)
|
||||||
- [国際化 (i18n)](/getting-started/internationalization)
|
- [国際化 (i18n)](/ja/getting-started/internationalization)
|
||||||
- [CORS](/getting-started/cors)
|
- [CORS](/ja/getting-started/cors)
|
||||||
- [シングルサインオン](/getting-started/sso)
|
- [シングルサインオン](/ja/getting-started/sso)
|
||||||
- [設定](/getting-started/configuration)
|
- [設定](/ja/getting-started/configuration)
|
||||||
- [ナビゲーション](/getting-started/navigation)
|
- [ナビゲーション](/ja/getting-started/navigation)
|
||||||
- [Docker](/getting-started/docker)
|
- [Docker](/ja/getting-started/docker)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ソースからビルド
|
Title: ソースからビルド
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ソースからビルド
|
# ソースからビルド
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 設定
|
Title: 設定
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 設定
|
# 設定
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: CORS
|
Title: CORS
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# CORS
|
# CORS
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: Docker
|
Title: Docker
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# Docker
|
# Docker
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 国際化
|
Title: 国際化
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 国際化 (i18n)
|
# 国際化 (i18n)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ナビゲーション
|
Title: ナビゲーション
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ナビゲーション
|
# ナビゲーション
|
||||||
@ -76,7 +77,7 @@ Title: ナビゲーション
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
国際化の詳細については、[国際化 (i18n)](/getting-started/internationalization) セクションを参照してください。
|
国際化の詳細については、[国際化 (i18n)](/ja/getting-started/internationalization) セクションを参照してください。
|
||||||
|
|
||||||
## ユーザー定義のナビゲーション
|
## ユーザー定義のナビゲーション
|
||||||
|
|
||||||
@ -210,4 +211,4 @@ export class CustomPage {
|
|||||||
|
|
||||||
コンポーネントは app モジュールの下で entryComponents として宣言する必要があることに注意してください。
|
コンポーネントは app モジュールの下で entryComponents として宣言する必要があることに注意してください。
|
||||||
|
|
||||||
カスタムページのコンテンツの詳細については、[ドキュメントリストのレイアウト](/features/document-list-layout) セクションを参照してください。
|
カスタムページのコンテンツの詳細については、[ドキュメントリストのレイアウト](/ja/features/document-list-layout) セクションを参照してください。
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 前提条件
|
Title: 前提条件
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 前提条件
|
# 前提条件
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: シングルサインオン
|
Title: シングルサインオン
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# シングルサインオン
|
# シングルサインオン
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: 助けを求める
|
Title: 助けを求める
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# 助けを得る場所
|
# 助けを得る場所
|
||||||
|
@ -1,39 +1,39 @@
|
|||||||
- [ホーム](/)
|
- [ホーム](/ja/)
|
||||||
- [ドキュメント](/#documentation)
|
- [ドキュメント](/ja/READMe#ドキュメント)
|
||||||
- [貢献する方法](/#how-to-contribute)
|
- [貢献する方法](/ja/README#貢献する方法)
|
||||||
- [アプリの機能](/features/)
|
- [アプリの機能](/ja/features/)
|
||||||
- [ユーザーインターフェイスのレイアウト](/features/user-interface-layout)
|
- [ユーザーインターフェイスのレイアウト](/ja/features/user-interface-layout)
|
||||||
- [ヘッダー](/features/header)
|
- [ヘッダー](/ja/features/header)
|
||||||
- [サイドナビゲーション](/features/side-navigation)
|
- [サイドナビゲーション](/ja/features/side-navigation)
|
||||||
- [ドキュメントリストのレイアウト](/features/document-list-layout)
|
- [ドキュメントリストのレイアウト](/ja/features/document-list-layout)
|
||||||
- [ファイルビューア](/features/file-viewer)
|
- [ファイルビューア](/ja/features/file-viewer)
|
||||||
- [情報ドロワー](/features/info-drawer)
|
- [情報ドロワー](/ja/features/info-drawer)
|
||||||
- [バージョンマネージャ](/features/version-manager)
|
- [バージョンマネージャ](/ja/features/version-manager)
|
||||||
- [検索結果](/features/search-results)
|
- [検索結果](/ja/features/search-results)
|
||||||
- [入門](/getting-started/)
|
- [入門](/ja/getting-started/)
|
||||||
- [前提条件](/getting-started/prerequisites)
|
- [前提条件](/ja/getting-started/prerequisites)
|
||||||
- [ソースからビルド](/getting-started/building-from-source)
|
- [ソースからビルド](/ja/getting-started/building-from-source)
|
||||||
- [国際化 (i18n)](/getting-started/internationalization)
|
- [国際化 (i18n)](/ja/getting-started/internationalization)
|
||||||
- [CORS](/getting-started/cors)
|
- [CORS](/ja/getting-started/cors)
|
||||||
- [設定](/getting-started/configuration)
|
- [設定](/ja/getting-started/configuration)
|
||||||
- [ナビゲーション](/getting-started/navigation)
|
- [ナビゲーション](/ja/getting-started/navigation)
|
||||||
- [Docker](/getting-started/docker)
|
- [Docker](/ja/getting-started/docker)
|
||||||
- [拡張](/extending/)
|
- [拡張](/ja/extending/)
|
||||||
- [拡張機能](/extending/extensibility-features)
|
- [拡張機能](/ja/extending/extensibility-features)
|
||||||
- [拡張フォーマット](/extending/extension-format)
|
- [拡張フォーマット](/ja/extending/extension-format)
|
||||||
- [ルート](/extending/routes)
|
- [ルート](/ja/extending/routes)
|
||||||
- [コンポーネント](/extending/components)
|
- [コンポーネント](/ja/extending/components)
|
||||||
- [アクション](/extending/actions)
|
- [アクション](/ja/extending/actions)
|
||||||
- [アプリケーションアクション](/extending/application-actions)
|
- [アプリケーションアクション](/ja/extending/application-actions)
|
||||||
- [ルール](/extending/rules)
|
- [ルール](/ja/extending/rules)
|
||||||
- [アプリケーション機能](/extending/application-features)
|
- [アプリケーション機能](/ja/extending/application-features)
|
||||||
- [カスタムアイコン](/extending/icons)
|
- [カスタムアイコン](/ja/extending/icons)
|
||||||
- [レジストレーション](/extending/registration)
|
- [レジストレーション](/ja/extending/registration)
|
||||||
- [カスタムエバリュエーターの作成](/extending/creating-custom-evaluators)
|
- [カスタムエバリュエーターの作成](/ja/extending/creating-custom-evaluators)
|
||||||
- [チュートリアル](/extending/tutorials)
|
- [チュートリアル](/ja/extending/tutorials)
|
||||||
- [再配布可能なライブラリ](/extending/redistributable-libraries)
|
- [再配布可能なライブラリ](/ja/extending/redistributable-libraries)
|
||||||
- [チュートリアル](/tutorials/)
|
- [チュートリアル](/ja/tutorials/)
|
||||||
- [ACAの拡張の概要](/tutorials/introduction-to-extending)
|
- [ACAの拡張の概要](/ja/tutorials/introduction-to-extending)
|
||||||
- [パラメータ付きのカスタムルート](/tutorials/custom-route-with-parameters)
|
- [パラメータ付きのカスタムルート](/ja/tutorials/custom-route-with-parameters)
|
||||||
- [ダイアログアクション](/tutorials/dialog-actions)
|
- [ダイアログアクション](/ja/tutorials/dialog-actions)
|
||||||
- [助けを求める](/help)
|
- [助けを求める](/ja/help)
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
---
|
---
|
||||||
Title: チュートリアル
|
Title: チュートリアル
|
||||||
Github only: true
|
Github only: true
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# チュートリアル
|
# チュートリアル
|
||||||
@ -9,6 +10,6 @@ Alfresco Content Application を使用した開発の詳細を学習しましょ
|
|||||||
|
|
||||||
## コンテンツ
|
## コンテンツ
|
||||||
|
|
||||||
- [ACA の拡張の概要](/tutorials/introduction-to-extending)
|
- [ACA の拡張の概要](/ja/tutorials/introduction-to-extending)
|
||||||
- [パラメータ付きのカスタムルート](/tutorials/custom-route-with-parameters)
|
- [パラメータ付きのカスタムルート](/ja/tutorials/custom-route-with-parameters)
|
||||||
- [ダイアログアクション](/tutorials/dialog-actions)
|
- [ダイアログアクション](/ja/tutorials/dialog-actions)
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: パラメータ付きのカスタムルート
|
Title: パラメータ付きのカスタムルート
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# パラメータ付きのカスタムルート
|
# パラメータ付きのカスタムルート
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ダイアログアクション
|
Title: ダイアログアクション
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# ダイアログアクション
|
# ダイアログアクション
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
Title: ACA の拡張の概要
|
Title: ACA の拡張の概要
|
||||||
|
nav: ja
|
||||||
---
|
---
|
||||||
|
|
||||||
# Alfresco Content Application の拡張の概要
|
# Alfresco Content Application の拡張の概要
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
- [Home](/)
|
- [Home](/)
|
||||||
- [Documentation](/#documentation)
|
- [Documentation](/READMe#documentation)
|
||||||
- [How to contribute](/#how-to-contribute)
|
- [How to contribute](/README#how-to-contribute)
|
||||||
- [App features](/features/)
|
- [App features](/features/)
|
||||||
- [User interface layout](/features/user-interface-layout)
|
- [User interface layout](/features/user-interface-layout)
|
||||||
- [Header](/features/header)
|
- [Header](/features/header)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user