localize "Preferences | Version Control | Mercurial" configurable

GitOrigin-RevId: dde08a61470dd13191006f7316ec2485b727f708
This commit is contained in:
Dmitry.Krasilschikov
2020-01-16 08:11:51 +00:00
committed by intellij-monorepo-bot
parent eb48d79d7a
commit f18835387c
2 changed files with 3 additions and 2 deletions
@@ -705,4 +705,5 @@ settings.issue.navigation.patterns={0} will search for the specified patterns in
settings.shelf.content.larger=The base content of files larger than {0}K will not be stored
settings.change.shelves.location=Change Shelves Location
settings.current.location=Current location is
settings.default.location=Default location is
settings.default.location=Default location is
settings.auto.detected=Auto-detected:
@@ -98,7 +98,7 @@ public class VcsExecutablePathSelector {
@Nullable String projectPath,
@NotNull String autoDetectedPath) {
myAutoDetectedPath = autoDetectedPath;
((JBTextField)myPathSelector.getTextField()).getEmptyText().setText("Auto-detected: " + myAutoDetectedPath);
((JBTextField)myPathSelector.getTextField()).getEmptyText().setText(VcsBundle.message("settings.auto.detected") + myAutoDetectedPath);
myProjectPathCheckbox.setSelected(pathOverriddenForProject);
if (pathOverriddenForProject) {