From b97c3c8bf8bcf08ca41288eca2b66ad764d00e76 Mon Sep 17 00:00:00 2001 From: Karol Lewandowski Date: Thu, 5 Oct 2023 13:29:11 +0200 Subject: [PATCH] localization_guide.md: Use forward slash for paths The path was wrongly rendered as: INSTALL_HOME\plugins$Plugin$\lib\resources_en.jar instead of: INSTALL_HOME\plugins\$Plugin$\lib\resources_en.jar --- topics/reference_guide/localization_guide.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/topics/reference_guide/localization_guide.md b/topics/reference_guide/localization_guide.md index 63d5bf51c..a9517368e 100644 --- a/topics/reference_guide/localization_guide.md +++ b/topics/reference_guide/localization_guide.md @@ -11,9 +11,9 @@ The purpose of the document is to describe steps necessary to create localized v In regard to localization purpose all the resources (in English) that need to be translated are located in jar files called resources_en.jar. There's one such jar file for IDEA core functionality located at -INSTALL_HOME\lib\resources_en.jar +INSTALL_HOME/lib/resources_en.jar and one jar for each of bundled plugins at -INSTALL_HOME\plugins\$Plugin$\lib\resources_en.jar. +INSTALL_HOME/plugins/$Plugin$/lib/resources_en.jar. Translated resources should be jarred and placed exactly in the same folder original jar comes from. So localization pack should have exactly the same number of jar files, and they have to be laid out in exactly the same way original jars are laid out.