You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/10/17 09:17:52 UTC

[royale-compiler] branch develop updated: fix entity report problem

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-compiler.git


The following commit(s) were added to refs/heads/develop by this push:
     new 31b77b9  fix entity report problem
31b77b9 is described below

commit 31b77b9b1d83b0b406f967c283843a831eeb81e5
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Wed Oct 17 11:17:46 2018 +0200

    fix entity report problem
---
 .../org/apache/royale/compiler/problems/MXMLInvalidEntityProblem.java   | 2 +-
 .../main/resources/org/apache/royale/compiler/messages_fr.properties    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/compiler/src/main/java/org/apache/royale/compiler/problems/MXMLInvalidEntityProblem.java b/compiler/src/main/java/org/apache/royale/compiler/problems/MXMLInvalidEntityProblem.java
index faedf22..a621669 100644
--- a/compiler/src/main/java/org/apache/royale/compiler/problems/MXMLInvalidEntityProblem.java
+++ b/compiler/src/main/java/org/apache/royale/compiler/problems/MXMLInvalidEntityProblem.java
@@ -27,7 +27,7 @@ import org.apache.royale.compiler.common.ISourceLocation;
 public final class MXMLInvalidEntityProblem extends ParserProblem
 {
     public static final String DESCRIPTION =
-        "Unknown entity '{entity}' found. It will be ignored.";
+        "Unknown entity '${entity}' found. It will be ignored.";
 
     public static final int errorCode = 1417;
     public MXMLInvalidEntityProblem(ISourceLocation site, String entity)
diff --git a/compiler/src/main/resources/org/apache/royale/compiler/messages_fr.properties b/compiler/src/main/resources/org/apache/royale/compiler/messages_fr.properties
index 93729f7..f7a9dd0 100644
--- a/compiler/src/main/resources/org/apache/royale/compiler/messages_fr.properties
+++ b/compiler/src/main/resources/org/apache/royale/compiler/messages_fr.properties
@@ -564,7 +564,7 @@ MXMLIncompatibleArrayElementProblem=Un \u00e9l\u00e9ment de tableau de type ${ac
 MXMLIncompatibleVectorElementProblem=Cet \u00e9l\u00e9ment est incompatible avec le type ${VECTOR}. Il sera ignor\u00e9.
 MXMLInvalidDatabindingExpressionProblem=L\u2019expression de liaison des donn\u00e9es est incorrecte.
 MXMLInvalidDefinitionNameProblem=${name} n\u2019est pas un ${name} valide pour une <${DEFINITION}>. Dans la mesure o\u00f9 il ne s\u2019agit pas d\u2019un nom de balise MXML valide, vous ne pourrez pas utiliser la classe d\u00e9finie.
-MXMLInvalidEntityProblem=Entit\u00e9 inconnue "{entity}" d\u00e9tect\u00e9e. Elle sera ignor\u00e9e.
+MXMLInvalidEntityProblem=Entit\u00e9 inconnue "${entity}" d\u00e9tect\u00e9e. Elle sera ignor\u00e9e.
 MXMLInvalidIDProblem=Cet ${ID} n\u2019est pas un identificateur ActionScript valide. Il sera ignor\u00e9.
 MXMLInvalidItemCreationPolicyProblem=Les valeurs valides de ${ITEM_CREATION_POLICY} sont {IMMEDIATE} et ${DEFERRED}. Cet attribut sera ignor\u00e9.
 MXMLInvalidItemDestructionPolicyProblem=Les valeurs valides de ${ITEM_DESTRUCTION_POLICY} sont ${AUTO} et ${NEVER}. Cet attribut sera ignor\u00e9.