From b4847cca5612a0c2ff8c7ec5388202078c2d2f00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yann=20C=C3=A9bron?= Date: Wed, 23 Apr 2025 14:09:01 +0200 Subject: [PATCH] action_system.md: use label --- topics/basics/action_system.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/topics/basics/action_system.md b/topics/basics/action_system.md index 178f356d5..dc10c9cef 100644 --- a/topics/basics/action_system.md +++ b/topics/basics/action_system.md @@ -324,6 +324,8 @@ This and additional information can also be found by using the [Code Completion] #### Localizing Actions and Groups > Hard-coding presentation in the `AnAction` constructor is discouraged, use inspection Plugin DevKit | Code | Eager creation of action presentation (2023.3) to highlight such problems. +> +> See [Extending DefaultActionGroup](grouping_actions_tutorial.md#extending-defaultactiongroup) for a tutorial of localizing Actions and Groups. Action and group localization use [resource bundles](internationalization.md#message-bundles) containing property files named \$NAME\$Bundle.properties, each file consisting of `key=value` pairs. The [`action_basics`](%gh-sdk-samples-master%/action_basics) plugin demonstrates using a resource bundle to localize the group and action entries added to the Editor Popup Menu. @@ -338,7 +340,9 @@ In the case of `action_basics`, only a default localization resource bundle (messages.BasicActionsBundle ``` -_2020.1_
+##### Dedicated Resource Bundle + + If necessary, a dedicated resource bundle to use for actions and groups can be defined on [``](plugin_configuration_file.md#idea-plugin__actions): ```xml @@ -348,8 +352,6 @@ If necessary, a dedicated resource bundle to use for actions and groups can be d ``` -See [Extending DefaultActionGroup](grouping_actions_tutorial.md#extending-defaultactiongroup) for a tutorial of localizing Actions and Groups. -