From 20619a464b5a97836984bf1e2d18409a72fe203c Mon Sep 17 00:00:00 2001 From: "sergey.vasiliev" Date: Fri, 21 Aug 2020 14:56:19 +0200 Subject: [PATCH] javaee platform: i18n GitOrigin-RevId: 8251168faa83eb917db90116c7c9f827e64ee5c1 --- RegExpSupport/resources/messages/RegExpBundle.properties | 1 + .../src/com/intellij/util/descriptors/ConfigFileMetaData.java | 2 ++ 2 files changed, 3 insertions(+) diff --git a/RegExpSupport/resources/messages/RegExpBundle.properties b/RegExpSupport/resources/messages/RegExpBundle.properties index e1cdd3917b6b..c869d6aff382 100644 --- a/RegExpSupport/resources/messages/RegExpBundle.properties +++ b/RegExpSupport/resources/messages/RegExpBundle.properties @@ -149,4 +149,5 @@ weak.warning.fixed.repetition.range=Fixed repetition range weak.warning.repetition.range.replaceable.by.0=Repetition range replaceable by ''{0}'' weak.warning.single.repetition=Single repetition checker.sample.text=Sample Text +dialog.title.choose.package=Choose package parsing.error.opening.brace.expected='{' expected diff --git a/java/openapi/src/com/intellij/util/descriptors/ConfigFileMetaData.java b/java/openapi/src/com/intellij/util/descriptors/ConfigFileMetaData.java index 7b31ab61c8e8..5576a0a0890b 100644 --- a/java/openapi/src/com/intellij/util/descriptors/ConfigFileMetaData.java +++ b/java/openapi/src/com/intellij/util/descriptors/ConfigFileMetaData.java @@ -17,6 +17,7 @@ package com.intellij.util.descriptors; import com.intellij.openapi.diagnostic.Logger; +import com.intellij.openapi.util.NlsSafe; import org.jetbrains.annotations.Nls; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.Nullable; @@ -77,6 +78,7 @@ public class ConfigFileMetaData { return myId; } + @NlsSafe public String getFileName() { return myFileName; }