diff --git a/15/umbraco-cms/customizing/extending-overview/extension-types/localization.md b/15/umbraco-cms/customizing/extending-overview/extension-types/localization.md index ce00024f8d4..9efc9ffb4e5 100644 --- a/15/umbraco-cms/customizing/extending-overview/extension-types/localization.md +++ b/15/umbraco-cms/customizing/extending-overview/extension-types/localization.md @@ -6,7 +6,13 @@ description: Learn how to manage and use the Backoffice UI Localization files. ## Registering Localization -When registering localizations to a language, you must add a new manifest to the Extension API. The manifest can be added through the `umbraco-package.json` file. Usually, the localization keys are provided through a JavaScript module. In this example, we will use a file named `en.js`: +When registering localizations to a language, you must add a new manifest to the Extension API. The manifest can be added through the `umbraco-package.json` file. + +{% hint style="info" %} +The `umbraco-package.json` file is only registered when placed directly in the `/App_Plugins/` or `/App_Plugins/{YourPackageName}` folder. It will not be recognized in nested subfolders. +{% endhint %} + +Usually, the localization keys are provided through a JavaScript module. In this example, we will use a file named `en.js`: {% code title="umbraco-package.json" %} ```json diff --git a/15/umbraco-cms/fundamentals/data/defining-content/document-type-localization.md b/15/umbraco-cms/fundamentals/data/defining-content/document-type-localization.md index b137a15c5bc..692f49618d1 100644 --- a/15/umbraco-cms/fundamentals/data/defining-content/document-type-localization.md +++ b/15/umbraco-cms/fundamentals/data/defining-content/document-type-localization.md @@ -81,14 +81,14 @@ The localizations are applied by using the syntax `#{area alias}_{key alias}`. Property descriptions support [Umbraco Flavored Markdown](../../../reference/umbraco-flavored-markdown), which uses a different syntax (wrapped in brackets) to avoid conflicts with Markdown headers. {% endhint %} -![Applying localization to a property](../images/localization-document-type-editor-validation.png) +![Applying localization to a property](../images/localization-document-type-editor-validation-v15.png) * Add a **property** called `#properties_subTitle` with **alias** `subTitle`. * Set description to `{#properties_subTitle-desc}`. * Use a `TextString` editor. * Enable `Allow at root` in the **Structure** tab. -![Applying localization to a Document Type](../images/localization-document-type-editor.png) +![Applying localization to a Document Type](../images/localization-document-type-editor-v15.png) 3. When creating and editing the content, you will see that the backoffice now uses the configured localizations. @@ -96,7 +96,7 @@ Property descriptions support [Umbraco Flavored Markdown](../../../reference/umb 4. Create a new "Article" content: -![Localized document editing](../images/localization-document-editor.png) +![Localized document editing](../images/localization-document-editor-v15.png) 4. When trying to save the content without adding the mandatory content, you will see a warning as expected: diff --git a/15/umbraco-cms/fundamentals/data/images/localization-document-editor-v15.png b/15/umbraco-cms/fundamentals/data/images/localization-document-editor-v15.png new file mode 100644 index 00000000000..47ed19ed881 Binary files /dev/null and b/15/umbraco-cms/fundamentals/data/images/localization-document-editor-v15.png differ diff --git a/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-v15.png b/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-v15.png new file mode 100644 index 00000000000..9f3533c9eab Binary files /dev/null and b/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-v15.png differ diff --git a/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-validation-v15.png b/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-validation-v15.png new file mode 100644 index 00000000000..c14a6bb5ca3 Binary files /dev/null and b/15/umbraco-cms/fundamentals/data/images/localization-document-type-editor-validation-v15.png differ