commit
a220981c81
|
@ -0,0 +1,9 @@
|
|||
Validator:
|
||||
* fix bad eror message in german messages (issue 399)
|
||||
* better error messages when FHIRPath discriminators are invalid
|
||||
* clean up error messages
|
||||
|
||||
Other code changes:
|
||||
* remove unnecessary (& problem causing) Fragment-Host from OSGi manifest
|
||||
* move structuremap utilities to a package
|
||||
|
|
@ -205,7 +205,7 @@ Validation_VAL_Content_Unknown=Unerkannter Inhalt {0}
|
|||
Validation_VAL_NoType=Unbekannter Typ {0}
|
||||
Validation_VAL_Profile_MatchMultiple=Profil {0}, Element stimmt mit mehr als einem Slice überein - {1}, {2}
|
||||
Validation_VAL_Profile_Maximum={0}: maximal erlaubt = {1}, aber gefunden {2}
|
||||
Validation_VAL_Profile_Minimum={0}: mindestens erforderlich = {1}, aber nur gefunden {2}
|
||||
Validation_VAL_Profile_Minimum={2}: mindestens erforderlich = {6}, aber nur gefunden {7}
|
||||
Validation_VAL_Profile_MultipleMatches=Es wurden mehrere passende Profile unter den Auswahlmöglichkeiten gefunden: {0}
|
||||
Validation_VAL_Profile_NoCheckMax={0}: Kann die maximal zulässige Anzahl ({1}) aufgrund fehlender Slicing-Validierung nicht überprüfen.
|
||||
Validation_VAL_Profile_NoCheckMin={0}": Kann das erforderliche Minimum ({1}) aufgrund fehlender Slicing-Validierung nicht überprüfen
|
||||
|
|
|
@ -772,7 +772,7 @@ public class InstanceValidator extends BaseValidator implements IResourceValidat
|
|||
return true;
|
||||
if (s.isOk()) {
|
||||
if (s.getMessage() != null)
|
||||
throw new Error("Internal error: ok, but has error message '"+s.getMessage()+"'");
|
||||
txWarning(errors, s.getTxLink(), IssueType.CODEINVALID, element.line(), element.col(), path, s == null, I18nConstants.TERMINOLOGY_PASSTHROUGH_TX_MESSAGE, s.getMessage(), system, code);
|
||||
return true;
|
||||
}
|
||||
if (s.getErrorClass() != null && s.getErrorClass().isInfrastructure())
|
||||
|
|
Loading…
Reference in New Issue