This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit a37f7a11a1b644c4e9e965da730824ea656d3a3a Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Jul 8 21:50:04 2021 +0100 Rename so strings get picked up by POEditor import/export code Because of the non-standard name, these strings were not exported so contributors providing translations have not been able to translate these strings. --- java/org/apache/el/{Messages.properties => LocalStrings.properties} | 0 .../apache/el/{Messages_es.properties => LocalStrings_es.properties} | 0 java/org/apache/el/util/MessageFactory.java | 3 +-- 3 files changed, 1 insertion(+), 2 deletions(-) diff --git a/java/org/apache/el/Messages.properties b/java/org/apache/el/LocalStrings.properties similarity index 100% rename from java/org/apache/el/Messages.properties rename to java/org/apache/el/LocalStrings.properties diff --git a/java/org/apache/el/Messages_es.properties b/java/org/apache/el/LocalStrings_es.properties similarity index 100% rename from java/org/apache/el/Messages_es.properties rename to java/org/apache/el/LocalStrings_es.properties diff --git a/java/org/apache/el/util/MessageFactory.java b/java/org/apache/el/util/MessageFactory.java index 9222204..40f2dde 100644 --- a/java/org/apache/el/util/MessageFactory.java +++ b/java/org/apache/el/util/MessageFactory.java @@ -25,8 +25,7 @@ import java.util.ResourceBundle; */ public final class MessageFactory { - static final ResourceBundle bundle = - ResourceBundle.getBundle("org.apache.el.Messages"); + static final ResourceBundle bundle = ResourceBundle.getBundle("org.apache.el.LocalStrings"); public MessageFactory() { super(); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org