From 6ded4227ec3f2b4bfa2c148e727a564eb3f48d3a Mon Sep 17 00:00:00 2001 From: Suzana Dirla Date: Fri, 13 Sep 2019 15:29:00 +0300 Subject: [PATCH] Japanese docs - add language picker with Japanese & fix links (#1202) --- docs/extending/README.md | 1 + docs/extending/application-features.md | 2 +- docs/extending/extension-format.md | 2 +- docs/extending/routes.md | 2 +- docs/index.html | 112 ++++++++++++++---- docs/ja/README.md | 11 +- docs/ja/extending/README.md | 26 ++-- docs/ja/extending/actions.md | 3 +- docs/ja/extending/application-actions.md | 1 + docs/ja/extending/application-features.md | 9 +- docs/ja/extending/components.md | 3 +- .../extending/creating-custom-evaluators.md | 3 +- docs/ja/extending/extensibility-features.md | 1 + docs/ja/extending/extension-format.md | 3 +- docs/ja/extending/icons.md | 1 + .../ja/extending/redistributable-libraries.md | 1 + docs/ja/extending/registration.md | 1 + docs/ja/extending/routes.md | 9 +- docs/ja/extending/rules.md | 3 +- docs/ja/extending/tutorials.md | 1 + docs/ja/features/README.md | 17 +-- docs/ja/features/document-list-layout.md | 1 + docs/ja/features/file-viewer.md | 1 + docs/ja/features/header.md | 7 +- docs/ja/features/info-drawer.md | 1 + docs/ja/features/search-results.md | 1 + docs/ja/features/side-navigation.md | 1 + docs/ja/features/user-interface-layout.md | 7 +- docs/ja/features/version-manager.md | 1 + docs/ja/getting-started/README.md | 17 +-- .../getting-started/building-from-source.md | 1 + docs/ja/getting-started/configuration.md | 1 + docs/ja/getting-started/cors.md | 1 + docs/ja/getting-started/docker.md | 1 + .../getting-started/internationalization.md | 1 + docs/ja/getting-started/navigation.md | 5 +- docs/ja/getting-started/prerequisites.md | 1 + docs/ja/getting-started/sso.md | 1 + docs/ja/help.md | 1 + docs/ja/toc.md | 78 ++++++------ docs/ja/tutorials/README.md | 7 +- .../tutorials/custom-route-with-parameters.md | 1 + docs/ja/tutorials/dialog-actions.md | 1 + .../ja/tutorials/introduction-to-extending.md | 1 + docs/toc.md | 4 +- 45 files changed, 227 insertions(+), 127 deletions(-) diff --git a/docs/extending/README.md b/docs/extending/README.md index 20c56a4a4..1a4c68a45 100644 --- a/docs/extending/README.md +++ b/docs/extending/README.md @@ -17,6 +17,7 @@ Learn how to extend the features of the Alfresco Content Application. - [Application actions](/extending/application-actions) - [Rules](/extending/rules) - [Application features](/extending/application-features) +- [Custom icons](/extending/icons) - [Registration](/extending/registration) - [Creating custom evaluators](/extending/creating-custom-evaluators) - [Tutorials](/extending/tutorials) diff --git a/docs/extending/application-features.md b/docs/extending/application-features.md index d9449fd15..1868862ac 100644 --- a/docs/extending/application-features.md +++ b/docs/extending/application-features.md @@ -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. diff --git a/docs/extending/extension-format.md b/docs/extending/extension-format.md index 1259eb654..24a259e06 100644 --- a/docs/extending/extension-format.md +++ b/docs/extending/extension-format.md @@ -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 diff --git a/docs/extending/routes.md b/docs/extending/routes.md index 5ba8af0db..f4ea2b63a 100644 --- a/docs/extending/routes.md +++ b/docs/extending/routes.md @@ -31,7 +31,7 @@ To create a new route, populate the `routes` section with the corresponding entr | **path** | Runtime path of the route. | | **component** | The main [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. | Use the `app.layout.main` value for the `layout` property to get the default application layout, diff --git a/docs/index.html b/docs/index.html index a7e9579a5..7e9a280eb 100644 --- a/docs/index.html +++ b/docs/index.html @@ -16,34 +16,94 @@