Merge remote-tracking branch 'origin/master' into do-20240122-base-engine
This commit is contained in:
commit
22ccbbfdfb
Binary file not shown.
Before Width: | Height: | Size: 31 KiB After Width: | Height: | Size: 31 KiB |
|
@ -2,4 +2,4 @@ Locale,Coverage #,Coverage %
|
|||
de,835,42%
|
||||
es,718,36%
|
||||
ja,906,46%
|
||||
nl,1376,70%
|
||||
nl,1376,69%
|
||||
|
|
|
|
@ -173,6 +173,9 @@ public class CodeSystemRenderer extends TerminologyRenderer {
|
|||
}
|
||||
|
||||
private String sentenceForContent(CodeSystemContentMode mode, CodeSystem cs) {
|
||||
if (mode == null) {
|
||||
return formatPhrase(RenderingContext.CODESYSTEM_CONTENT_NOTPRESENT);
|
||||
}
|
||||
switch (mode) {
|
||||
case COMPLETE: return formatPhrase(RenderingContext.CODESYSTEM_CONTENT_COMPLETE);
|
||||
case EXAMPLE: return formatPhrase(RenderingContext.CODESYSTEM_CONTENT_EXAMPLE);
|
||||
|
|
|
@ -273,6 +273,7 @@ public class ToolingExtensions {
|
|||
public static final String EXT_APPLICABLE_VERSION_VALUE = "http://hl7.org/fhir/StructureDefinition/version-specific-value";
|
||||
public static final String EXT_IG_URL = "http://hl7.org/fhir/tools/StructureDefinition/implementationguide-resource-uri";
|
||||
public static final String EXT_VS_CS_SUPPL_NEEDED = "http://hl7.org/fhir/StructureDefinition/valueset-supplement";
|
||||
public static final String EXT_TYPE_PARAMETER = "http://hl7.org/fhir/tools/StructureDefinition/type-parameter";
|
||||
|
||||
// specific extension helpers
|
||||
|
||||
|
|
|
@ -13,6 +13,7 @@ import java.io.InputStream;
|
|||
import java.io.UnsupportedEncodingException;
|
||||
import java.math.BigDecimal;
|
||||
import java.math.RoundingMode;
|
||||
import java.net.URI;
|
||||
import java.net.URLDecoder;
|
||||
import java.net.URLEncoder;
|
||||
import java.nio.file.Files;
|
||||
|
@ -2244,4 +2245,13 @@ public class Utilities {
|
|||
return text.replace("\r\n", " ").replace("\n", " ").replace("\r", " ");
|
||||
}
|
||||
|
||||
public static String extractDomain(String source) {
|
||||
try {
|
||||
URI uri = URI.create(source);
|
||||
return uri.getHost();
|
||||
} catch (Exception e) {
|
||||
return "??";
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -1074,4 +1074,9 @@ public class I18nConstants {
|
|||
public static final String TERMINOLOGY_TX_CODE_VALUESETMAX = "Terminology_TX_Code_ValueSetMax";
|
||||
public static final String TERMINOLOGY_TX_CODE_VALUESET_EXT = "Terminology_TX_Code_ValueSet_Ext";
|
||||
public static final String SD_ED_SHOULD_BIND = "SD_ED_SHOULD_BIND";
|
||||
public static final String SD_TYPE_PARAMETER_MISSING = "SD_TYPE_PARAMETER_MISSING";
|
||||
public static final String SD_TYPE_PARAMETER_UNKNOWN = "SD_TYPE_PARAMETER_UNKNOWN";
|
||||
public static final String SD_TYPE_PARAMETER_INVALID = "SD_TYPE_PARAMETER_INVALID";
|
||||
public static final String SD_TYPE_PARAMETER_INVALID_REF = "SD_TYPE_PARAMETER_INVALID_REF";
|
||||
public static final String SD_TYPE_PARAM_NOT_SPECIFIED = "SD_TYPE_PARAM_NOT_SPECIFIED";
|
||||
}
|
||||
|
|
|
@ -89,17 +89,19 @@ public class POGenerator {
|
|||
private void execute(String core, String igpub, String pascal) throws IOException {
|
||||
String source = Utilities.path(core, "/org.hl7.fhir.utilities/src/main/resources");
|
||||
if (checkState(source, core, igpub, pascal)) {
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-en.po", null, 2);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-de.po", "rendering-phrases_de.properties", 2);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-es.po", "rendering-phrases_es.properties", 3);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-ja.po", "rendering-phrases_ja.properties", 2);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-nl.po", "rendering-phrases_nl.properties", 2);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-pt-BR.po", "rendering-phrases_pt-BR.properties", 2);
|
||||
generate(source, "rendering-phrases.properties", "rendering-phrases-pt_BR.po", "rendering-phrases_pt-BR.properties", 2);
|
||||
|
||||
generate(source, "Messages.properties", "validator-messages-en.po", null, 2);
|
||||
generate(source, "Messages.properties", "validator-messages-de.po", "Messages_de.properties", 2);
|
||||
generate(source, "Messages.properties", "validator-messages-es.po", "Messages_es.properties", 3);
|
||||
generate(source, "Messages.properties", "validator-messages-ja.po", "Messages_ja.properties", 2);
|
||||
generate(source, "Messages.properties", "validator-messages-nl.po", "Messages_nl.properties", 2);
|
||||
generate(source, "Messages.properties", "validator-messages-pt-BR.po", "Messages_pt-BR.properties", 2);
|
||||
generate(source, "Messages.properties", "validator-messages-pt_BR.po", "Messages_pt-BR.properties", 2);
|
||||
|
||||
System.out.println("Finished");
|
||||
}
|
||||
|
@ -136,6 +138,9 @@ public class POGenerator {
|
|||
} else {
|
||||
System.out.println("Error: PV "+p.getName()+ " duplicated");
|
||||
}
|
||||
if (p.getValue().contains("\\n")) {
|
||||
System.out.println("Error: PV "+p.getName()+ " has a \\n");
|
||||
}
|
||||
}
|
||||
|
||||
for (ConstantDefinition cd : consts) {
|
||||
|
@ -179,7 +184,11 @@ public class POGenerator {
|
|||
pns.add(p.getName());
|
||||
} else {
|
||||
System.out.println("Error: PV "+p.getName()+ " duplicated");
|
||||
}
|
||||
if (p.getValue().contains("\\n")) {
|
||||
System.out.println("Error: PV "+p.getName()+ " has a \\n");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
for (ConstantDefinition cd : consts) {
|
||||
|
@ -345,8 +354,14 @@ public class POGenerator {
|
|||
}
|
||||
}
|
||||
savePOFile(Utilities.path(source, "source", dest), objects, count, false);
|
||||
savePOFile(Utilities.path(source, "source", "transifex", dest), objects, count, true);
|
||||
savePropFile(Utilities.path(source, tgt), objects);
|
||||
if (tgt == null) {
|
||||
savePOFile(Utilities.path(source, "source", "transifex", dest), objects, count, true);
|
||||
} else {
|
||||
savePOFile(Utilities.path(source, "source", "transifex", "translations", dest), objects, count, true);
|
||||
}
|
||||
if (tgt != null) {
|
||||
savePropFile(Utilities.path(source, tgt), objects);
|
||||
}
|
||||
}
|
||||
|
||||
private Set<String> listIds(List<POObject> objects, String msgid) {
|
||||
|
@ -369,16 +384,18 @@ public class POGenerator {
|
|||
}
|
||||
b.append("\r\n");
|
||||
for (POObject o : objects) {
|
||||
b.append("#: "+o.id+"\r\n");
|
||||
// for POEdit
|
||||
b.append("# "+o.comment+"\r\n");
|
||||
if (!tfxMode && o.oldMsgId != null) {
|
||||
b.append("#| "+o.oldMsgId+"\r\n");
|
||||
if (o.oldMsgId != null) {
|
||||
b.append("# "+o.comment+" (!!when last translated was: "+o.oldMsgId+")\r\n");
|
||||
} else {
|
||||
b.append("# "+o.comment+"\r\n");
|
||||
}
|
||||
b.append("#: "+o.id+"\r\n");
|
||||
if (o.duplicate) {
|
||||
b.append("msgctxt \""+o.id+"\"\r\n");
|
||||
}
|
||||
b.append("msgid \""+wrapQuotes(o.msgid)+"\"\r\n");
|
||||
String m = tfxMode && Utilities.noString(o.msgid) ? "-- no content: do not translate --" : o.msgid;
|
||||
b.append("msgid \""+wrapQuotes(m)+"\"\r\n");
|
||||
if (o.msgidPlural != null) {
|
||||
b.append("msgid_plural \""+wrapQuotes(o.msgidPlural)+"\"\r\n");
|
||||
while (o.msgstr.size() < count) {
|
||||
|
@ -468,15 +485,31 @@ public class POGenerator {
|
|||
if (Utilities.noString(line)) {
|
||||
// else
|
||||
} else if (line.startsWith("#:")) {
|
||||
obj = new POObject();
|
||||
obj.id = line.substring(2).trim();
|
||||
list.add(obj);
|
||||
if (obj == null || obj.id != null) {
|
||||
obj = new POObject();
|
||||
list.add(obj);
|
||||
}
|
||||
obj.id = line.substring(2).trim();
|
||||
} else if (line.startsWith("# ")) {
|
||||
if (obj == null || obj.comment != null) {
|
||||
obj = new POObject();
|
||||
list.add(obj);
|
||||
}
|
||||
obj.comment = line.substring(1).trim();
|
||||
if (obj.comment.contains("!!when")) {
|
||||
obj.oldMsgId = obj.comment.substring(obj.comment.indexOf("!!when"));
|
||||
obj.comment = obj.comment.substring(0, obj.comment.indexOf("!!when")-1);
|
||||
obj.oldMsgId = obj.oldMsgId.substring(obj.oldMsgId.indexOf(": ")+2).trim();
|
||||
obj.oldMsgId = obj.oldMsgId.substring(0, obj.oldMsgId.length()-1);
|
||||
}
|
||||
} else if (obj == null) {
|
||||
prefixes.add(line);
|
||||
} else if (line.startsWith("#|")) {
|
||||
// retired use of #| because it caused problems with the tools
|
||||
obj.oldMsgId = line.substring(2).trim();
|
||||
} else if (line.startsWith("# ")) {
|
||||
obj.comment = line.substring(1).trim();
|
||||
if (obj.oldMsgId.startsWith("msgid ")) {
|
||||
obj.oldMsgId = trimQuotes(obj.oldMsgId.substring(6));
|
||||
}
|
||||
} else if (line.startsWith("msgid ")) {
|
||||
obj.msgid = trimQuotes(line.substring(5).trim());
|
||||
if (obj.msgid.endsWith("("+obj.id+")")) {
|
||||
|
@ -493,7 +526,7 @@ public class POGenerator {
|
|||
int i = s.indexOf("]");
|
||||
int c = Integer.valueOf(s.substring(0, i));
|
||||
s = trimQuotes(s.substring(i+1).trim());
|
||||
if (s.startsWith("!!")) {
|
||||
while (s.startsWith("!!")) {
|
||||
s = s.substring(2);
|
||||
}
|
||||
if (c != obj.msgstr.size()) {
|
||||
|
@ -509,6 +542,7 @@ public class POGenerator {
|
|||
}
|
||||
|
||||
private String trimQuotes(String s) {
|
||||
s = s.trim();
|
||||
if (s.startsWith("\"")) {
|
||||
s = s.substring(1);
|
||||
}
|
||||
|
|
|
@ -889,6 +889,7 @@ public class RenderingI18nContext extends I18nBase {
|
|||
public static final String VS_ABSTRACT_CODE_HINT = "VS_ABSTRACT_CODE_HINT";
|
||||
public static final String GENERAL_CODE = "GENERAL_CODE";
|
||||
public static final String GENERAL_DESC = "GENERAL_DESC";
|
||||
public static final String STRUC_DEF_TYPE_PARAMETER = "STRUC_DEF_TYPE_PARAMETER";
|
||||
|
||||
protected String getMessagesSourceFileName() {
|
||||
return "rendering-phrases";
|
||||
|
|
|
@ -53,7 +53,7 @@ BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = This is not an OperationOutcom
|
|||
BUNDLE_SEARCH_NOSELF = SearchSet Bundles should have a self link that specifies what the search was
|
||||
BUNDLE_SEARCH_NO_MODE = SearchSet bundles should have search modes on the entries
|
||||
BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = No types could be determined from the search string, so the types can''t be checked
|
||||
Bad_file_path_error = \n********************\n* The file name you passed in, ''{0}'', doesn''t exist on the local filesystem.\n* Please verify that this is valid file location.\n********************\n\n
|
||||
Bad_file_path_error = ** Error: The file name you passed in, ''{0}'', doesn''t exist on the local filesystem. Please verify that this is valid file location **
|
||||
Base__Derived_profiles_have_different_types____vs___ = Base & Derived profiles have different types ({0} = {1} vs {2} = {3})
|
||||
Base_profile__has_no_type = Base profile {0} has no type
|
||||
Bundle_BUNDLE_Entry_Canonical = The canonical URL ({0}) cannot match the fullUrl ({1}) unless on the canonical server itself
|
||||
|
@ -84,14 +84,14 @@ CDA_UNKNOWN_TEMPLATE = The CDA Template {0} is not known
|
|||
CDA_UNKNOWN_TEMPLATE_EXT = The CDA Template {0} / {1} is not known
|
||||
CODESYSTEM_CS_COUNT_COMPLETE_WRONG = The code system is complete, but the number of concepts ({0}) does not match the stated total number ({1})
|
||||
CODESYSTEM_CS_COUNT_FRAGMENT_WRONG = The code system is a fragment/example, but the number of concepts ({0}) exceeds or matches the stated total number ({1})
|
||||
CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = The code system has no content, but the exceeds the stated total number is 0 concepts - check that this isn't a complete code system that has no concepts, or update/remove the stated count
|
||||
CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = The code system has no content, but the exceeds the stated total number is 0 concepts - check that this isn''t a complete code system that has no concepts, or update/remove the stated count
|
||||
CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED = The code system says it has no content present, but concepts are found
|
||||
CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG = The code system supplement states the total number of concepts as {1}, but this is different to the underlying code system that states a value of {0}
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = HL7 Defined CodeSystems SHALL have a stated value for the {0} element so that users know the status and meaning of the code system clearly
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = HL7 Defined CodeSystems SHOULD have a stated value for the {0} element so that users know the status and meaning of the code system clearly
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = CodeSystems SHOULD NOT have a stated value for the {0} element when they are a supplement
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = CodeSystem Supplements with a content value of 'supplement' SHALL have a supplements element that specifies which code system is being supplemented
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = CodeSystem Supplements SHALL have a content value of 'supplement'
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = CodeSystem Supplements with a content value of ''supplement'' SHALL have a supplements element that specifies which code system is being supplemented
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = CodeSystem Supplements SHALL have a content value of ''supplement''
|
||||
CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = CodeSystems SHOULD have a stated value for the {0} element so that users know the status and meaning of the code system clearly
|
||||
CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0} is a supplement, so can''t be used as a value in Coding.system
|
||||
CODESYSTEM_CS_NO_VS_NOTCOMPLETE = Review the All Codes Value Set - incomplete CodeSystems generally should not have an all codes value set specified
|
||||
|
@ -104,7 +104,7 @@ CODESYSTEM_CS_UNK_EXPANSION = The code provided ({2}) is not in the expansion in
|
|||
CODESYSTEM_CS_VS_EXP_MISMATCH = CodeSystem {0} has an ''all system'' value set of {1}, but it is an expansion with the wrong number of concepts (found {2}, expected {3})
|
||||
CODESYSTEM_DESIGNATION_DISP_CLASH_LANG = The designation ''{0}'' has no use and is in the same language (''{2}''), so is not differentiated from the base display (''{1}'')
|
||||
CODESYSTEM_DESIGNATION_DISP_CLASH_NO_LANG = The designation ''{0}'' has no use and no language, so is not differentiated from the base display (''{1}'')
|
||||
CODESYSTEM_NOT_CONTAINED = CodeSystems are referred to directly from Coding.system, so it's generally best for them not to be contained resources
|
||||
CODESYSTEM_NOT_CONTAINED = CodeSystems are referred to directly from Coding.system, so it''s generally best for them not to be contained resources
|
||||
CODESYSTEM_PROPERTY_BAD_HL7_URI = Unknown CodeSystem Property ''{0}''. If you are creating your own property, do not create it in the HL7 namespace
|
||||
CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH = Wrong type ''{2}'': The code ''{0}'' identifies a property that has the type ''{1}''
|
||||
CODESYSTEM_PROPERTY_CODE_WARNING = If the type is ''code'', then the valueSet property should be provided to clarify what kind of code will be found in the element
|
||||
|
@ -119,10 +119,10 @@ CODESYSTEM_PROPERTY_URI_CODE_MISMATCH = The URI ''{0}'' is normally assigned the
|
|||
CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH = Wrong type ''{2}'': The URI ''{0}'' identifies a property that has the type ''{1}''
|
||||
CODESYSTEM_PROPERTY_WRONG_TYPE = The property ''{0}'' has the invalid type ''{1}'', when it is defined to have the type ''{2}''
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING = Published code systems SHOULD conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} should be present, but it is not
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = Published code systems SHALL conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} should be present, but it is not
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = Code systems published by HL7 SHALL conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} should be present, but it is not
|
||||
CODESYSTEM_SHAREABLE_MISSING = Published code systems SHOULD conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} is mandatory, but it is not present
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = Published code systems SHALL conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} is mandatory, but it is not present
|
||||
CODESYSTEM_SUPP_NO_DISPLAY = This display (''{0}'') differs from that defined by the base code system (''{1}''). Both displays claim to be 'the "primary designation" for the same language (''{2}''), and the correct interpretation of this is undefined
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = Code systems published by HL7 SHALL conform to the ShareableCodeSystem profile, which says that the element CodeSystem.{0} is mandatory, but it is not present
|
||||
CODESYSTEM_SUPP_NO_DISPLAY = This display (''{0}'') differs from that defined by the base code system (''{1}''). Both displays claim to be the ''primary designation'' for the same language (''{2}''), and the correct interpretation of this is undefined
|
||||
CODESYSTEM_THO_CHECK = Most code systems defined in HL7 IGs will need to move to THO later during the process. Consider giving this code system a THO URL now (See https://confluence.hl7.org/display/TSMG/Terminology+Play+Book, and/or talk to TSMG)
|
||||
CODE_CASE_DIFFERENCE = The code ''{0}'' differs from the correct code ''{1}'' by case. Although the code system ''{2}'' is case insensitive, implementers are strongly encouraged to use the correct case anyway
|
||||
CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = The source code ''{0}'' is not valid in the code system {1}
|
||||
|
@ -145,9 +145,9 @@ CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = The code system {0} could
|
|||
CONCEPTMAP_GROUP_TARGET_SERVER_SIDE = Target Code System {0} is only supported on the terminology server, so the target codes are not validated for performance reasons
|
||||
CONCEPTMAP_GROUP_TARGET_UNKNOWN = The Target Code System {0} is not fully defined and populated, and no targetScope is specified, so the target code checking will not be performed
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING = Published concept maps SHOULD conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} should be present, but it is not
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = Published concept maps SHALL conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} should be present, but it is not
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = Concept maps published by HL7 SHALL conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} should be present, but it is not
|
||||
CONCEPTMAP_SHAREABLE_MISSING = Published concept maps SHOULD conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} is mandatory, but it is not present
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = Published concept maps SHALL conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} is mandatory, but it is not present
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = Concept maps published by HL7 SHALL conform to the ShareableConceptMap profile, which says that the element ConceptMap.{0} is mandatory, but it is not present
|
||||
CONCEPTMAP_VS_INVALID_CONCEPT_CODE = The code ''{1}'' in the system {0} is not valid in the value set ''{2}''
|
||||
CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER = The code ''{2}'' in the system {0} version {1} is not valid in the value set ''{3}''
|
||||
CONCEPTMAP_VS_TOO_MANY_CODES = The concept map has too many codes to validate ({0})
|
||||
|
@ -291,7 +291,7 @@ FHIRPATH_LEFT_VALUE_WRONG_TYPE = Error evaluating FHIRPath expression: left oper
|
|||
FHIRPATH_LEFT_VALUE_one =
|
||||
FHIRPATH_LEFT_VALUE_other = Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values
|
||||
FHIRPATH_LOCATION = (at {0})
|
||||
FHIRPATH_NOT_A_COLLECTION = Found a use of a collection operator on something that is not a collection at ''{0}'' - check that there's no mistakes in the expression syntax
|
||||
FHIRPATH_NOT_A_COLLECTION = Found a use of a collection operator on something that is not a collection at ''{0}'' - check that there''s no mistakes in the expression syntax
|
||||
FHIRPATH_NOT_IMPLEMENTED = Error evaluating FHIRPath expression: The function {0} is not implemented
|
||||
FHIRPATH_NO_COLLECTION = Error evaluating FHIRPath expression: The function {0} can only be used on a singleton value but found {1}
|
||||
FHIRPATH_NO_TYPE = Error evaluating FHIRPath expression: No type provided at {1}
|
||||
|
@ -351,7 +351,7 @@ LIQUID_SYNTAX_NOTERM = Script {0}: Unterminated Liquid statement {1}
|
|||
LIQUID_SYNTAX_NUMBER = Exception evaluating {0}: limit is not followed by a number
|
||||
LIQUID_SYNTAX_UNEXPECTED = Exception evaluating {0}: unexpected content at {1}
|
||||
LIQUID_SYNTAX_UNTERMINATED = Script {0}: Found unterminated string parsing cycle
|
||||
LIQUID_UNKNOWN_FILTER = Unknown Liquid filter '''{0}''
|
||||
LIQUID_UNKNOWN_FILTER = Unknown Liquid filter ''{0}''
|
||||
LIQUID_UNKNOWN_FLOW_STMT = Script {0}: Unknown flow control statement ''{1}''
|
||||
LIQUID_UNKNOWN_NOEND = Script {0}: Found end of script looking for {1}
|
||||
LIQUID_UNKNOWN_SYNTAX = Unexpected syntax parsing liquid statement
|
||||
|
@ -403,9 +403,9 @@ MEASURE_M_GROUP_STRATA_NO_CODE = A measure group stratifier should have a code w
|
|||
MEASURE_M_LIB_UNKNOWN = The Library {0} could not be resolved, so expression validation may not be correct
|
||||
MEASURE_M_NO_GROUPS = A measure should contain at least one group
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING = Published measures SHOULD conform to the ShareableMeasure profile, which says that the element Measure.{0} should be present, but it is not
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = Published measures SHALL conform to the ShareableMeasure profile, which says that the element Measure.{0} should be present, but it is not
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = Measures published by HL7 SHALL conform to the ShareableMeasure profile, which says that the element Measure.{0} should be present, but it is not
|
||||
MEASURE_SHAREABLE_MISSING = Published measures SHOULD conform to the ShareableMeasure profile, which says that the element Measure.{0} is mandatory, but it is not present
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = Published measures SHALL conform to the ShareableMeasure profile, which says that the element Measure.{0} is mandatory, but it is not present
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = Measures published by HL7 SHALL conform to the ShareableMeasure profile, which says that the element Measure.{0} is mandatory, but it is not present
|
||||
MSG_DEPENDS_ON_DEPRECATED = The {0} {1} is deprecated
|
||||
MSG_DEPENDS_ON_DRAFT = The {0} {1} is a draft resource
|
||||
MSG_DEPENDS_ON_EXPERIMENTAL = The {0} {1} is an experimental resource
|
||||
|
@ -566,7 +566,7 @@ SCT_NO_MRCM = Not validated against the Machine Readable Concept Model (MRCM)
|
|||
SD_CONSTRAINED_KIND_NO_MATCH = The kind {0} must be the same as the kind {1} in the base structure {3} (base type = {2})
|
||||
SD_CONSTRAINED_TYPE_NO_MATCH = The type {0} must be the same as the type in the base structure {1} that is being constrained
|
||||
SD_CONTEXT_SHOULD_NOT_BE_ELEMENT = Review the extension type for {1}: extensions should not have a context of {0} unless it''s really intended that they can be used anywhere
|
||||
SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH = Review the extension type for {1}: the context of {0} appears to be a simple element, so the context type should be 'element' not 'fhirpath'
|
||||
SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH = Review the extension type for {1}: the context of {0} appears to be a simple element, so the context type should be ''element'' not ''fhirpath''
|
||||
SD_DERIVATION_KIND_MISMATCH = The structure definition constrains a kind of {0}, but has a different kind ({1})
|
||||
SD_ED_BIND_MULTIPLE_TYPES = The element {0} has a binding, and has multiple types subject to bindings ({1}). The binding will apply to all the types
|
||||
SD_ED_BIND_NOT_VS = The valueSet reference {1} on element {0} points to something that is not a value set ({2})
|
||||
|
@ -608,15 +608,15 @@ SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = The element ''{0}'' has a binding when
|
|||
SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING = The element ''{0}'' has a binding property ''{1}'' which is not allowed in Obligation profiles
|
||||
SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE = The element ''{0}'' has an additional binding purpose of ''{1}'' which is not allowed in Obligation profiles
|
||||
SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH =The element ''{0}'' has a different binding strength (''{1}'') from the base (''{2}'') which is not allowed in Obligation profiles
|
||||
SD_OBGLIGATION_PROFILE_PATH_WRONG = The element ''{0}'' path value of ''{1}'' doesn't match the base path ''{2}''
|
||||
SD_OBGLIGATION_PROFILE_UKNOWN = The profile is marked as an obligation profile, but it's correctness cannot be checked since the base profile ''{0}'' is not known
|
||||
SD_OBGLIGATION_PROFILE_PATH_WRONG = The element ''{0}'' path value of ''{1}'' doesn''t match the base path ''{2}''
|
||||
SD_OBGLIGATION_PROFILE_UKNOWN = The profile is marked as an obligation profile, but it''s correctness cannot be checked since the base profile ''{0}'' is not known
|
||||
SD_OBGLIGATION_PROFILE_UNMATCHED = The element ''{0}'' has no equivalent in the profile ''{1}'' on which this Obligation Profile is based
|
||||
SD_PATH_TYPE_MISMATCH = The path {1} must start with the type of the structure {0}
|
||||
SD_SPECIALIZED_TYPE_MATCHES = The type {0} must not be the same as the type in the base structure {1} that is being specialised
|
||||
SD_TYPE_MISSING = No type found
|
||||
SD_TYPE_NOT_DERIVED = The type {0} can only be used as a type when constraining the base definition of the type
|
||||
SD_TYPE_NOT_LOCAL = The type {0} is not legal because it is not defined in the FHIR specification. Other types must have a namespace on them
|
||||
SD_TYPE_NOT_LOGICAL = The type {0} can only be defined if the kind is 'logical' not {1}
|
||||
SD_TYPE_NOT_LOGICAL = The type {0} can only be defined if the kind is ''logical'' not {1}
|
||||
SD_TYPE_NOT_MATCH_NS = The type namespace {0} SHOULD match the url namespace {1} for the definition of the type
|
||||
SD_VALUE_COMPLEX_FIXED = For the complex type {0}, consider using a pattern rather than a fixed value to avoid over-constraining the instance
|
||||
SD_VALUE_TYPE_IILEGAL = The element {0} has a {1} of type {2}, which is not in the list of allowed types ({3})
|
||||
|
@ -624,7 +624,7 @@ SD_VALUE_TYPE_REPEAT_HINT = The repeating element has a {1}. The {1} will apply
|
|||
SD_VALUE_TYPE_REPEAT_WARNING_DOTNET = The repeating element has a {1} value for a primitive type. The DotNet validator will not apply this to all the repeats - this is an error
|
||||
SEARCHPARAMETER_BASE_WRONG = The resource type {1} is not listed as a base in the SearchParameter this is derived from ({0})
|
||||
SEARCHPARAMETER_EXP_WRONG = The expression ''{2}'' is not compatible with the expression ''{1}'' in the derivedFrom SearchParameter {0}, and this likely indicates that the derivation relationship is not valid
|
||||
SEARCHPARAMETER_MISSING_COMPONENTS = When the SearchParameter has a type of 'composite', then the SearchParameter must define two or more components
|
||||
SEARCHPARAMETER_MISSING_COMPONENTS = When the SearchParameter has a type of ''composite'', then the SearchParameter must define two or more components
|
||||
SEARCHPARAMETER_NOTFOUND = Unable to find the base Search Parameter {0} so can''t check that this SearchParameter is a proper derivation from it
|
||||
SEARCHPARAMETER_TYPE_WRONG = The type {1} is different to the type {0} in the derivedFrom SearchParameter
|
||||
SECURITY_STRING_CONTENT_ERROR = The string value contains text that looks like embedded HTML tags, which are not allowed for security reasons in this context
|
||||
|
@ -687,7 +687,7 @@ SM_TARGET_TRANSLATE_BINDING_VS_TARGET = The target variable refers to an unknown
|
|||
SM_TARGET_TYPE_MULTIPLE_POSSIBLE = Multiple types are possible here ({0}) so further type checking is not possible
|
||||
SM_TARGET_TYPE_NOT_FOUND = No target type was found, so the default group for this implied dependent rule could not be determined
|
||||
SNAPSHOT_EXISTING_PROBLEM = The generated snapshot has a different number of elements {1} than the originally provided snapshot {0}
|
||||
SNAPSHOT_IS_EMPTY = The snapshot for the profile ''{0}'' is empty. This is usually due to a processing logged elsewhere
|
||||
SNAPSHOT_IS_EMPTY = The snapshot for the profile ''{0}'' is empty. This is usually due to a processing error logged elsewhere
|
||||
STATUS_CODE_HINT = The code is {0}
|
||||
STATUS_CODE_HINT_CODE = The code ''{1}'' is {0}
|
||||
STATUS_CODE_WARNING = The code is valid but is {0}
|
||||
|
@ -704,7 +704,7 @@ TERMINOLOGY_TX_NOSVC_BOUND_REQ = Could not confirm that the codes provided are f
|
|||
TERMINOLOGY_TX_OID_MULTIPLE_MATCHES = The OID ''{0}'' matches multiple resources ({1})
|
||||
TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN = The OID ''{0}'' matches multiple resources ({2}); {1} was chosen as the most appropriate
|
||||
TERMINOLOGY_TX_SYSTEM_HTTPS = The system URL ''{0}'' wrongly starts with https: not http:
|
||||
TERMINOLOGY_TX_SYSTEM_NOT_USABLE = The definition for the Code System with URI ''{0}'' doesn't provide any codes so the code cannot be validated
|
||||
TERMINOLOGY_TX_SYSTEM_NOT_USABLE = The definition for the Code System with URI ''{0}'' doesn''t provide any codes so the code cannot be validated
|
||||
TERMINOLOGY_TX_SYSTEM_NO_CODE = A code with no system has no defined meaning, and it cannot be validated. A system should be provided
|
||||
TERMINOLOGY_TX_SYSTEM_WRONG_BUILD = The code system reference {0} is wrong - the code system reference cannot be a reference to build.fhir.org. This may be the correct reference: {1}
|
||||
TERMINOLOGY_TX_SYSTEM_WRONG_HTML = The code system reference {0} is wrong - the code system reference cannot be to an HTML page. This may be the correct reference: {1}
|
||||
|
@ -787,8 +787,8 @@ Terminology_TX_Confirm_1_CC = Could not confirm that the codings provided are in
|
|||
Terminology_TX_Confirm_2_CC = Could not confirm that the codings provided are in the value set {0} and a coding should come from this value set unless it has no suitable code (the validator cannot judge what is suitable) (class = {1})
|
||||
Terminology_TX_Confirm_3_CC = Could not confirm that the codings provided are in the value set {0} and a coding is recommended to come from this value set (class = {1})
|
||||
Terminology_TX_Confirm_4a = The code provided ({2}) was not found in the value set {0}, and a code from this value set is required: {1}
|
||||
Terminology_TX_Confirm_5 = The code provided ({1}) is not in the value set in the value set {0}, and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)
|
||||
Terminology_TX_Confirm_6 = The code provided ({1}) is not in the value set in the value set {0}, and a code is recommended to come from this value set
|
||||
Terminology_TX_Confirm_5 = The code provided ({1}) is not in the value set {0}, and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable)
|
||||
Terminology_TX_Confirm_6 = The code provided ({1}) is not in the value set {0}, and a code is recommended to come from this value set
|
||||
Terminology_TX_Display_Wrong = Display should be ''{0}''
|
||||
Terminology_TX_Error_CodeableConcept = Error {0} validating CodeableConcept
|
||||
Terminology_TX_Error_CodeableConcept_Max = Error {0} validating CodeableConcept using maxValueSet
|
||||
|
@ -802,10 +802,10 @@ Terminology_TX_NoValid_14 = The Coding provided ({2}) was not found in the value
|
|||
Terminology_TX_NoValid_15 = The value provided (''{0}'') could not be validated in the absence of a terminology server
|
||||
Terminology_TX_NoValid_16 = The value provided (''{0}'') was not found in the value set {1}, and a code is required from this value set {2}
|
||||
Terminology_TX_NoValid_17 = The value provided (''{0}'') was not found in the value set {1}, and a code should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) {2}
|
||||
Terminology_TX_NoValid_18 = The value provided (''{0}'') was not found in the value set {1}, and a code is recommended to come from this value set){2}
|
||||
Terminology_TX_NoValid_18 = The value provided (''{0}'') was not found in the value set {1}, and a code is recommended to come from this value set{2}
|
||||
Terminology_TX_NoValid_1_CC = None of the codings provided are in the value set {0}, and a coding from this value set is required) (codes = {1})
|
||||
Terminology_TX_NoValid_2_CC = None of the codings provided are in the value set {0}, and a coding should come from this value set unless it has no suitable code (note that the validator cannot judge what is suitable) (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = None of the codings provided are in the value set {0}, and a coding is recommended to come from this value set) (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = None of the codings provided are in the value set {0}, and a coding is recommended to come from this value set (codes = {1})
|
||||
Terminology_TX_NoValid_4 = The Coding provided ({2}) was not found in the value set {0}, and a code is required from this value set {1}
|
||||
Terminology_TX_NoValid_5 = The Coding provided ({2}) was not found in the value set {0}, and a code should come from this value set unless it has no suitable code (the validator cannot judge what is suitable) {1}
|
||||
Terminology_TX_NoValid_6 = The Coding provided ({2}) was not found in the value set {0}, and a code is recommended to come from this value set {1}
|
||||
|
@ -872,12 +872,12 @@ Type_Specific_Checks_DT_URI_WS = URI values cannot have whitespace(''{0}'')
|
|||
Type_Specific_Checks_DT_URL_Resolve = URL value ''{0}'' does not resolve
|
||||
Type_Specific_Checks_DT_UUID_Strat = UUIDs must start with urn:uuid:
|
||||
Type_Specific_Checks_DT_UUID_Valid = UUIDs must be valid and lowercase ({0})
|
||||
Type_Specific_Checks_DT_XHTML_Resolve = Hyperlink ''{0}'' at ''{1}'' for ''{2}''' does not resolve
|
||||
Type_Specific_Checks_DT_XHTML_Resolve = Hyperlink ''{0}'' at ''{1}'' for ''{2}'' does not resolve
|
||||
Type_Specific_Checks_DT_XHTML_Resolve_Img = Image source ''{0}'' at ''{1}'' does not resolve
|
||||
UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ = Unable to check whether the code is in the value set ''{0}''
|
||||
UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_CS = Unable to check whether the code is in the value set ''{0}'' because the code system {1} was not found
|
||||
UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_VS = Unable to check whether the code is in the value set ''{0}'' because the value set {1} was not found
|
||||
UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV = The types could not be determined from the extension context, so the invariant can't be validated (types = {0})
|
||||
UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV = The types could not be determined from the extension context, so the invariant can''t be validated (types = {0})
|
||||
UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__ = Unable to handle system {0} property filter with op = {1}
|
||||
UNABLE_TO_INFER_CODESYSTEM = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}''
|
||||
UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT = Unable to resolve the content reference {0} on element {1} (path = {2}) in this context
|
||||
|
@ -983,7 +983,7 @@ VALUESET_BAD_FILTER_VALUE_CODED = The value for a filter based on property ''{0}
|
|||
VALUESET_BAD_FILTER_VALUE_CODED_INVALID = The value for a filter based on property ''{0}'' is ''{1}'' which is not a valid code ({2})
|
||||
VALUESET_BAD_FILTER_VALUE_DATETIME = The value for a filter based on property ''{0}'' must be a valid date(/time), not ''{1}''
|
||||
VALUESET_BAD_FILTER_VALUE_DECIMAL = The value for a filter based on property ''{0}'' must be a decimal value, not ''{1}''
|
||||
VALUESET_BAD_FILTER_VALUE_HAS_COMMA = The filter value has a comma, but the operation is different to 'in' and 'not-in', so the comma will be interpreted as part of the {0} value
|
||||
VALUESET_BAD_FILTER_VALUE_HAS_COMMA = The filter value has a comma, but the operation is different to ''in'' and ''not-in'', so the comma will be interpreted as part of the {0} value
|
||||
VALUESET_BAD_FILTER_VALUE_INTEGER = The value for a filter based on property ''{0}'' must be integer value, not ''{1}''
|
||||
VALUESET_BAD_FILTER_VALUE_VALID_CODE = The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3})
|
||||
VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE = The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3}). Note that this is change from the past; terminology servers are expected to still continue to support this filter
|
||||
|
@ -1001,7 +1001,7 @@ VALUESET_INCLUDE_CSVER_NOT_FOUND = No matching contained code system found for s
|
|||
VALUESET_INCLUDE_CSVER_SUPPLEMENT = The value set references CodeSystem ''{0}'' version ''{2}'' which is a supplement. It must reference the underlying CodeSystem ''{1}'' and use the http://hl7.org/fhir/StructureDefinition/valueset-supplement extension for the supplement
|
||||
VALUESET_INCLUDE_CS_CONTENT = The value set references CodeSystem ''{0}'' which has status ''{1}''
|
||||
VALUESET_INCLUDE_CS_MULTI_FOUND = Multiple matching contained code systems found for system ''{0}''
|
||||
VALUESET_INCLUDE_CS_NOT_CS = The include system ''{0}'' is a reference to a contained resource, but the contained resource with that id is not a CodeSystem, it's a {1}
|
||||
VALUESET_INCLUDE_CS_NOT_CS = The include system ''{0}'' is a reference to a contained resource, but the contained resource with that id is not a CodeSystem, it''s a {1}
|
||||
VALUESET_INCLUDE_CS_NOT_FOUND = No matching contained code system found for system ''{0}''
|
||||
VALUESET_INCLUDE_CS_SUPPLEMENT = The value set references CodeSystem ''{0}'' which is a supplement. It must reference the underlying CodeSystem ''{1}'' and use the http://hl7.org/fhir/StructureDefinition/valueset-supplement extension for the supplement
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE = The code ''{1}'' is not valid in the system {0} ({2})
|
||||
|
@ -1009,13 +1009,13 @@ VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = The code ''{2}'' is not valid in the
|
|||
VALUESET_INCLUDE_SYSTEM_ABSOLUTE = URI values in ValueSet.compose.include.system must be absolute
|
||||
VALUESET_INCLUDE_SYSTEM_ABSOLUTE_FRAG = URI values in ValueSet.compose.include.system must be absolute. To reference a contained code system, use the full CodeSystem URL and reference it using the http://hl7.org/fhir/StructureDefinition/valueset-system extension
|
||||
VALUESET_INC_TOO_MANY_CODES = The value set include has too many codes to validate ({0}), so each individual code has not been checked
|
||||
VALUESET_NO_SYSTEM_WARNING = No System specified, so Concepts and Filters can't be checked
|
||||
VALUESET_NO_SYSTEM_WARNING = No System specified, so Concepts and Filters can''t be checked
|
||||
VALUESET_REFERENCE_INVALID_TYPE = The value set import {0} points to a resource of type {1} which is not valid
|
||||
VALUESET_REFERENCE_UNKNOWN = The value set import {0} could not be found so cannot be checked
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING = Published value sets SHOULD conform to the ShareableValueSet profile, which says that the element ValueSet.{0} should be present, but it is not
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = Published value sets SHALL conform to the ShareableValueSet profile, which says that the element ValueSet.{0} should be present, but it is not
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = Value sets published by HL7 SHALL conform to the ShareableValueSet profile, which says that the element ValueSet.{0} should be present, but it is not
|
||||
VALUESET_SHAREABLE_MISSING = Published value sets SHOULD conform to the ShareableValueSet profile, which says that the element ValueSet.{0} is mandatory, but it is not present
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = Published value sets SHALL conform to the ShareableValueSet profile, which says that the element ValueSet.{0} is mandatory, but it is not present
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = Value sets published by HL7 SHALL conform to the ShareableValueSet profile, which says that the element ValueSet.{0} is mandatory, but it is not present
|
||||
VALUESET_SUPPLEMENT_MISSING_one = Required supplement not found: {1}
|
||||
VALUESET_SUPPLEMENT_MISSING_other = Required supplements not found: {1}
|
||||
VALUESET_TOO_COSTLY = The value set ''{0}'' expansion has too many codes to display ({1})
|
||||
|
@ -1102,3 +1102,8 @@ xml_attr_value_invalid = The XML Attribute {0} has an invalid character
|
|||
xml_encoding_invalid = The XML encoding is invalid (must be UTF-8)
|
||||
Bundle_BUNDLE_Entry_NotFound = Can''t find ''{0}'' in the bundle ({1})
|
||||
CONCEPTMAP_VS_CONCEPT_CODE_UNKNOWN_SYSTEM = The code ''{1}'' comes from the system {0} which could not be found, so it''s not known whether it''s valid in the value set ''{2}''
|
||||
SD_TYPE_PARAMETER_MISSING = The type definition ''{2}'' does not declare a type parameter, but it is derived from the type definition ''{0}'' which has the type parameter ''{1}''
|
||||
SD_TYPE_PARAMETER_UNKNOWN = The type definition ''{0}'' has the type parameter ''{1}'' but it is not a known type so derivation consistency cannot be checked
|
||||
SD_TYPE_PARAMETER_INVALID = The type definition ''{2}'' has a type parameter ''{3}'', which is not consistent with it''s ancestor type definition ''{0}'' which has the type parameter ''{1}''
|
||||
SD_TYPE_PARAMETER_INVALID_REF = The type ''{0}'' is a reference to ''{1}'' which has a type parameter ''{2}'' with a base type of {3} but the type parameter provided is ''{4}'' which is not the right type
|
||||
SD_TYPE_PARAM_NOT_SPECIFIED = The type ''{0}'' at {3} is a reference to ''{1}'' which needs a type parameter ''{2}'' but a type parameter is not provided for ''{2}''
|
||||
|
|
|
@ -38,7 +38,7 @@ BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = Dies ist kein OperationOutcome
|
|||
BUNDLE_SEARCH_NOSELF = SearchSet Bundles sollten einen Self-Link haben, der angibt, worum es bei der Suche ging
|
||||
BUNDLE_SEARCH_NO_MODE = SearchSet-Bundles sollten Suchmodi f\u00fcr die Eintr\u00e4ge enthalten
|
||||
BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = Es konnten keine Typen aus dem Suchstring ermittelt werden, so dass die Typen nicht \u00fcberpr\u00fcft werden k\u00f6nnen
|
||||
Bad_file_path_error = \n********************\n* Der \u00fcbergebene Dateiname ''{0}'' existiert nicht im lokalen Dateisystem.\n* Bitte \u00fcberpr\u00fcfen Sie, ob dies ein g\u00fcltiger Pfad f\u00fcr die Datei ist.\n********************\n\n
|
||||
Bad_file_path_error = !!\n********************\n* Der \u00fcbergebene Dateiname ''{0}'' existiert nicht im lokalen Dateisystem.\n* Bitte \u00fcberpr\u00fcfen Sie, ob dies ein g\u00fcltiger Pfad f\u00fcr die Datei ist.\n********************\n\n
|
||||
Base__Derived_profiles_have_different_types____vs___ = Basis- und abgeleitete Profile haben unterschiedliche Typen ({0} = {1} vs. {2} = {3})
|
||||
Base_profile__has_no_type = Das Basisprofil {0} hat keinen Typ
|
||||
Bundle_BUNDLE_Entry_Canonical = Die canonical URL ({0}) stimmt nicht mit der fullUrl Url ({1}) \u00fcberein sofern sie sich nicht auf dem canonical Server selbst befindet.
|
||||
|
@ -68,8 +68,8 @@ CDATA_is_not_allowed = CDATA ist nicht erlaubt
|
|||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = HL7 Defined CodeSystems M\u00dcSSEN einen angegebenen Wert f\u00fcr das {0}-Element haben, damit die Benutzer den Status und die Bedeutung des Codesystems eindeutig kennen
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = HL7 Defined CodeSysteme SOLLTEN einen angegebenen Wert f\u00fcr das {0}-Element haben, damit die Benutzer den Status und die Bedeutung des Codesystems eindeutig kennen
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = CodeSysteme SOLLTEN KEINEN angegebenen Wert f\u00fcr das Element {0} haben, wenn sie ein Supplement sind
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = CodeSystem-Erg\u00e4nzungen mit dem Content-Wert "supplement" M\u00dcSSEN ein supplements-Element haben, das angibt, welches Codesystem erg\u00e4nzt wird.
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = CodeSystem Supplements M\u00dcSSEN einen Content-Wert von "supplement" haben.
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = !!CodeSystem-Erg\u00e4nzungen mit dem Content-Wert "supplement" M\u00dcSSEN ein supplements-Element haben, das angibt, welches Codesystem erg\u00e4nzt wird.
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = !!CodeSystem Supplements M\u00dcSSEN einen Content-Wert von "supplement" haben.
|
||||
CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = CodeSysteme SOLLTEN einen angegebenen Wert f\u00fcr das {0}-Element haben, damit die Benutzer den Status und die Bedeutung des Codesystems eindeutig kennen
|
||||
CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0} ist ein Supplement, kann also nicht als Wert in Coding.system verwendet werden
|
||||
CODESYSTEM_CS_NO_VS_NOTCOMPLETE = \u00dcberpr\u00fcfen Sie das all-Codes-ValueSet - unvollst\u00e4ndige CodeSysteme sollten im Allgemeinen keinen all-codes ValueSet spezifizieren
|
||||
|
@ -78,9 +78,9 @@ CODESYSTEM_CS_SUPP_INVALID_CODE = Der Code ''{1}'' ist nicht im Basis-CodeSystem
|
|||
CODESYSTEM_CS_UNK_EXPANSION = !!Der angegebene Code ({2}) befindet sich nicht in der Expansion im ValueSet {0}, und es wird ein Code aus diesem ValueSet ben\u00f6tigt. Das System {1} ist unbekannt.
|
||||
CODESYSTEM_CS_VS_EXP_MISMATCH = CodeSystem {0} hat ein ''all system'' ValueSet von {1}, aber es ist eine Expansion mit der falschen Anzahl von Konzepten (gefunden {2}, erwartet {3})
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING = !!Das ShareableCodeSystem-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Codesysteme SOLLTEN mit dem ShareableCodeSystem-Profil \u00fcbereinstimmen
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!Das ShareableCodeSystem-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Code-Systeme M\u00dcSSEN dem ShareableCodeSystem-Profil entsprechen
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Das ShareableCodeSystem-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Code-Systeme M\u00dcSSEN dem ShareableCodeSystem-Profil entsprechen
|
||||
CODESYSTEM_SHAREABLE_MISSING = !!Das ShareableCodeSystem-Profil sagt, dass das {0}-Element obligatorisch ist, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Codesysteme SOLLTEN mit dem ShareableCodeSystem-Profil \u00fcbereinstimmen
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!Das ShareableCodeSystem-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Code-Systeme M\u00dcSSEN dem ShareableCodeSystem-Profil entsprechen
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!!!Das ShareableCodeSystem-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Code-Systeme M\u00dcSSEN dem ShareableCodeSystem-Profil entsprechen
|
||||
CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = Der Quell-Code ''{0}'' ist im Codesystem {1} nicht g\u00fcltig
|
||||
CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = !!Source display ''{0}'' ist nicht g\u00fcltig. M\u00f6gliche Codes {1}
|
||||
CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = Das Quellcode-System {0} hat nicht alle Inhalte (Inhalt = {1}), so dass die Codes nicht gepr\u00fcft werden k\u00f6nnen.
|
||||
|
@ -97,9 +97,9 @@ CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = Da kein System zur Verf\u00fcg
|
|||
CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = !!Das System {0} ist unbekannt, daher k\u00f6nnen die Codes nicht \u00fcberpr\u00fcft werden.
|
||||
CONCEPTMAP_GROUP_TARGET_UNKNOWN = !!Unbekanntes Zielcodesystem {0}, daher k\u00f6nnen die Zielcodes nicht \u00fcberpr\u00fcft werden
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING = !!Das ShareableConceptMap-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Concept Maps SOLLTEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = !!Das ShareableConceptMap-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Concept Maps M\u00dcSSEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Das ShareableConceptMap-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Concept Maps M\u00dcSSEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
CONCEPTMAP_SHAREABLE_MISSING = !!Das ShareableConceptMap-Profil sagt, dass das {0}-Element obligatorisch ist, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Concept Maps SOLLTEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = !!Das ShareableConceptMap-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Concept Maps M\u00dcSSEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = !!!!Das ShareableConceptMap-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Concept Maps M\u00dcSSEN mit dem ShareableConceptMap-Profil \u00fcbereinstimmen
|
||||
Can_only_specify_profile_in_the_context = Kann Profil nur im Kontext angeben
|
||||
Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_ = Kinder auf einem Element mit einem polymorphen Typ sind nicht erlaubt - Sie m\u00fcssen die Typen zuerst slicen und constrainen (sortElemente: {0}:{1})
|
||||
CapabalityStatement_CS_SP_WrongType = Typabweichung - SearchParameter ''{0}'' sollte type {1} sein, ist aber {2}
|
||||
|
@ -285,9 +285,9 @@ MEASURE_M_GROUP_STRATA_NO_CODE = Ein Measure-Group-Stratifier sollte einen Code
|
|||
MEASURE_M_LIB_UNKNOWN = Die Library {0} konnte nicht aufgel\u00f6st werden, so dass die Expression-Validierung m\u00f6glicherweise nicht korrekt ist
|
||||
MEASURE_M_NO_GROUPS = Eine Measure sollte mindestens eine Gruppe enthalten
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING = !!Das ShareableMeasure-Profil empfiehlt, dass das Element {0} ausgef\u00fcllt wird, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Ma\u00dfnahmen SOLLTEN mit dem ShareableMeasure-Profil \u00fcbereinstimmen
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!Das ShareableMeasure-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Measures M\u00dcSSEN dem ShareableMeasure-Profil entsprechen
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Das ShareableMeasure-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published Measures M\u00dcSSEN dem ShareableMeasure-Profil entsprechen
|
||||
MEASURE_SHAREABLE_MISSING = !!Das ShareableMeasure-Profil sagt, dass das {0}-Element obligatorisch ist, aber es ist nicht vorhanden. Ver\u00f6ffentlichte Ma\u00dfnahmen SOLLTEN mit dem ShareableMeasure-Profil \u00fcbereinstimmen
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!Das ShareableMeasure-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Measures M\u00dcSSEN dem ShareableMeasure-Profil entsprechen
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!!!Das ShareableMeasure-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published Measures M\u00dcSSEN dem ShareableMeasure-Profil entsprechen
|
||||
Measure_MR_M_None = Es wird keine ''Measure'' identifiziert, daher kann keine Validierung anhand der ''Measure'' durchgef\u00fchrt werden.
|
||||
Measure_MR_M_NotFound = Die Measure ''{0}'' konnte nicht aufgel\u00f6st werden, daher kann keine Validierung anhand der Measure durchgef\u00fchrt werden
|
||||
Meta_RES_Security_Duplicate = Dupliziertes Security Label {0}
|
||||
|
@ -434,7 +434,7 @@ SD_SPECIALIZED_TYPE_MATCHES = Der Typ {0} darf nicht derselbe sein wie der Typ i
|
|||
SD_TYPE_MISSING = Kein Typ gefunden
|
||||
SD_TYPE_NOT_DERIVED = Der Typ {0} kann nur als Typ verwendet werden, falls die Basisdefinition des Typs eingeschr\u00e4nkt wird
|
||||
SD_TYPE_NOT_LOCAL = Der Typ {0} ist nicht zul\u00e4ssig, da er nicht in der FHIR-Spezifikation definiert ist. Andere Typen m\u00fcssen mit einem Namespace versehen sein
|
||||
SD_TYPE_NOT_LOGICAL = Der Typ {0} kann nur definiert werden, wenn die Art 'logisch' ist, nicht {1}
|
||||
SD_TYPE_NOT_LOGICAL = !!Der Typ {0} kann nur definiert werden, wenn die Art 'logisch' ist, nicht {1}
|
||||
SD_TYPE_NOT_MATCH_NS = Der Typ-Namensraum {0} SOLLTE mit dem Url-Namensraum {1} f\u00fcr die Definition des Typs \u00fcbereinstimmen
|
||||
SD_VALUE_COMPLEX_FIXED = F\u00fcr den komplexen Typ {0} sollte eher ein Pattern als ein fester Wert verwendet werden, um die Instanz nicht zu sehr einzuschr\u00e4nken
|
||||
SD_VALUE_TYPE_IILEGAL = Das Element {0} hat ein {1} vom Typ {2}, das nicht in der Liste der erlaubten Typen ({3}) enthalten ist
|
||||
|
@ -583,8 +583,8 @@ Terminology_TX_Confirm_1_CC = Konnte nicht best\u00e4tigen, dass die angegebenen
|
|||
Terminology_TX_Confirm_2_CC = Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind und ein Code aus diesem ValueSet stammen sollte. Es sei denn, es enth\u00e4lt keinen geeigneten Code (class = {1})
|
||||
Terminology_TX_Confirm_3_CC = Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind, und es wird empfohlen einen Code aus diesem ValueSet zu verwenden (Klasse = {1})
|
||||
Terminology_TX_Confirm_4a = !!Der angegebene Code ({2}) befindet sich nicht im ValueSet {0}, und es wird ein Code aus diesem ValueSet ben\u00f6tigt: {1}
|
||||
Terminology_TX_Confirm_5 = !!Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind, und ein Code sollte aus diesem ValueSet stammen. Es sei denn, er hat enth\u00e4lt keinen geeigneten Code
|
||||
Terminology_TX_Confirm_6 = !!Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind, und es wird empfohlen, einen Code aus diesem ValueSet zu verwenden.
|
||||
Terminology_TX_Confirm_5 = !!!!Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind, und ein Code sollte aus diesem ValueSet stammen. Es sei denn, er hat enth\u00e4lt keinen geeigneten Code
|
||||
Terminology_TX_Confirm_6 = !!!!Konnte nicht best\u00e4tigen, dass die angegebenen Codes im ValueSet {0} enthalten sind, und es wird empfohlen, einen Code aus diesem ValueSet zu verwenden.
|
||||
Terminology_TX_Display_Wrong = Display sollte ''{0}'' sein
|
||||
Terminology_TX_Error_CodeableConcept = Fehler {0} bei der Validierung des CodeableConcepts
|
||||
Terminology_TX_Error_CodeableConcept_Max = Fehler {0} bei der Validierung des CodeableConcepts mit maxValueSet
|
||||
|
@ -598,10 +598,10 @@ Terminology_TX_NoValid_14 = !!Die angegebene Codierung ist nicht im ValueSet {0}
|
|||
Terminology_TX_NoValid_15 = Der angegebene Wert (''{0}'') konnte in Ermangelung eines Terminologieservers nicht validiert werden.
|
||||
Terminology_TX_NoValid_16 = !!Der angegebene Wert (''{0}'') ist nicht im ValueSet {1}, und ein Code aus diesem Valueset ist erforderlich){2}
|
||||
Terminology_TX_NoValid_17 = !!Der angegebene Wert (''{0}'') ist nicht im Valueset {1}, und ein Code sollte aus diesem Valueset stammen, es sei denn, er hat enth\u00e4lt geeigneten Code){2}
|
||||
Terminology_TX_NoValid_18 = !!Der angegebene Wert (''{0}'') ist nicht im Valueset {1}, und es wird empfohlen, einen Code aus diesem Valueset zu verwenden){2}
|
||||
Terminology_TX_NoValid_18 = !!!!Der angegebene Wert (''{0}'') ist nicht im Valueset {1}, und es wird empfohlen, einen Code aus diesem Valueset zu verwenden){2}
|
||||
Terminology_TX_NoValid_1_CC = Keiner der bereitgestellten Codes ist im ValueSet {0}, und ein Code aus diesem ValueSet ist erforderlich) (Codes = {1})
|
||||
Terminology_TX_NoValid_2_CC = Keiner der angegebenen Codes ist im Valueset {0}, und ein Code sollte aus diesem Valueset stammen, es sei denn, er enth\u00e4lt keinen geeigneten Code) (Codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = Keiner der angegebenen Codes ist im Valueset {0}, und es wird empfohlen, einen Code aus dieserm Valueset zu verwenden) (Codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = !!Keiner der angegebenen Codes ist im Valueset {0}, und es wird empfohlen, einen Code aus dieserm Valueset zu verwenden) (Codes = {1})
|
||||
Terminology_TX_NoValid_4 = !!Die bereitgestellte Codierung ist nicht im Valueset {0}, und es wird ein Code aus diesem Valueset ben\u00f6tigt{1}
|
||||
Terminology_TX_NoValid_5 = !!Die angegebene Codierung ist nicht im Valueset {0}, und ein Code sollte aus diesem Valueset stammen, es sei denn, er enth\u00e4lt keinen geeigneten Code{1}
|
||||
Terminology_TX_NoValid_6 = !!Die bereitgestellte Codierung ist nicht im Valueset {0} enthalten, und es wird empfohlen, einen Code aus diesem Valueset zu verwenden{1}
|
||||
|
@ -758,13 +758,13 @@ VALUESET_EXAMPLE_SYSTEM_HINT = Beispiel System ''{0}'' angegeben, so dass Konzep
|
|||
VALUESET_IMPORT_UNION_INTERSECTION = Dieser Wertesatz hat ein einzelnes Include mit mehreren importierten Wertes\u00e4tzen. Unter https://jira.hl7.org/browse/FHIR-25179 gab es in der Vergangenheit Verwirrung dar\u00fcber, ob es sich bei diesen Wertes\u00e4tzen um einen Zusammenschluss oder eine \u00dcberschneidung handelt. Wenn dieser Wertesatz in einem Paket enthalten ist, das vor dem 31. M\u00e4rz 2022 ver\u00f6ffentlicht wurde, wird er als Vereinigung behandelt, andernfalls als Schnittmenge. Wenn Sie eine Vereinigung w\u00fcnschen, teilen Sie die Importe der Wertemenge auf mehrere Includes auf
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE = !!Der Code {1} ist im System {0} nicht g\u00fcltig
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = !!Der Code {2} ist im System {0} Version {1} nicht g\u00fcltig
|
||||
VALUESET_NO_SYSTEM_WARNING = Kein System angegeben, daher k\u00f6nnen Konzepte und Filter nicht \u00fcberpr\u00fcft werden
|
||||
VALUESET_NO_SYSTEM_WARNING = !!Kein System angegeben, daher k\u00f6nnen Konzepte und Filter nicht \u00fcberpr\u00fcft werden
|
||||
VALUESET_REFERENCE_INVALID_TYPE = Der ValueSet-Import {0} verweist auf eine Ressource des Typs {1}, die nicht g\u00fcltig ist
|
||||
VALUESET_REFERENCE_UNKNOWN = Der ValueSet-Import {0} konnte nicht gefunden werden und kann daher nicht \u00fcberpr\u00fcft werden
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING = !!Das ShareableValueSet-Profil empfiehlt, dass das Element {0} gef\u00fcllt wird, aber es ist nicht vorhanden. Ver\u00f6ffentlichte ValueSets SOLLTEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!Das ShareableValueSet-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published ValueSets M\u00dcSSEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Das ShareableValueSet-Profil empfiehlt, dass das Element {0} bef\u00fcllt wird, aber es wird nicht gefunden. HL7 Published ValueSets M\u00dcSSEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_SHAREABLE_MISSING = !!Das ShareableValueSet-Profil sagt, dass das {0}-Element obligatorisch ist, aber es ist nicht vorhanden. Ver\u00f6ffentlichte ValueSets SOLLTEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!Das ShareableValueSet-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published ValueSets M\u00dcSSEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!!!Das ShareableValueSet-Profil sagt, dass das {0}-Element obligatorisch ist, aber es wird nicht gefunden. HL7 Published ValueSets M\u00dcSSEN mit dem ShareableValueSet-Profil \u00fcbereinstimmen
|
||||
VALUESET_TOO_COSTLY = !!Das ValueSet {0} hat zu viele Codes f\u00fcr die Anzeige ({1})
|
||||
VALUESET_UNC_SYSTEM_WARNING = Unbekanntes System ''{0}'' angegeben, daher k\u00f6nnen Konzepte und Filter nicht gepr\u00fcft werden (Details: {1})
|
||||
VALUESET_UNC_SYSTEM_WARNING_VER = Unbekanntes System/Version ''{0}'' angegeben, daher k\u00f6nnen Konzepte und Filter nicht gepr\u00fcft werden (Details: {1})
|
||||
|
|
|
@ -28,7 +28,7 @@ BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = Este no es un recurso Operatio
|
|||
BUNDLE_SEARCH_NOSELF = Los Bundles de tipo searchset deben tener un vinculo de tipo self que especifique cual fue la búsqueda
|
||||
BUNDLE_SEARCH_NO_MODE = Los bundles de tipo searchset deben tener modos de busqueda en los elementos entry
|
||||
BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = No se han podido determinar tipos por la cadena de búsqueda, asi que los tipos no pueden ser validados
|
||||
Bad_file_path_error = \n********************\n* El nombre del fichero especificado, ''{0}'', no existe en el sistema de archivos local.\n* Por favor verifique que sea una ubicación válida.\n********************\n\n
|
||||
Bad_file_path_error = !!\n********************\n* El nombre del fichero especificado, ''{0}'', no existe en el sistema de archivos local.\n* Por favor verifique que sea una ubicación válida.\n********************\n\n
|
||||
Base__Derived_profiles_have_different_types____vs___ = Los perfiles base y derivados tienen tipos distintos ({0} = {1} vs {2} = {3})
|
||||
Base_profile__has_no_type = El perfil basee {0} no tiene tipo
|
||||
Bundle_BUNDLE_Entry_Canonical = La URL canónica ({0}) no puede coincidir con la fullUrl ({1}) salvo en el servidor canónico
|
||||
|
@ -57,8 +57,8 @@ CDATA_is_not_allowed = CDATA no está permitido
|
|||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = Los CodeSystems definidos por HL7 DEBEN tener un valor definido para el elemento {0} para que los usuarios conozcan el estado y significado del sistema de codificación claramente
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = Los CodeSystems definidos por HL7 DEBERIAN tener un valor definido para el elemento {0} para que los usuarios conozcan el estado y significado del sistema de codificación claramente
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = Los CodeSystems NO DEBERIAN tener un valor definido para el elemento {0} si son un suplemento
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = Los CodeSystem suplementarios con un valor de content = 'supplement' CodeSystem deben tener un elemento suplements que documenta cual es el code system que suplementan
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = Los CodeSystem suplementarios DEBEN tener un valor de content = 'supplement'
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = !!Los CodeSystem suplementarios con un valor de content = 'supplement' CodeSystem deben tener un elemento suplements que documenta cual es el code system que suplementan
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = !!Los CodeSystem suplementarios DEBEN tener un valor de content = 'supplement'
|
||||
CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = Los CodeSystems no definidos por HL7 DEBERIAN tener un valor definido para el elemento {0} para que los usuarios conozcan el estado y significado del sistema de codificación claramente
|
||||
CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0} es un suplemento, asi que no puede usarse en Coding.system
|
||||
CODESYSTEM_CS_NO_VS_NOTCOMPLETE = Revisar odos los conjuntos de valores All Codes - los CodeSystems incompletos no deberian tener especificado ''All Codes''
|
||||
|
@ -67,9 +67,9 @@ CODESYSTEM_CS_SUPP_INVALID_CODE = El código ''{1}'' no se declaró en el CodeS
|
|||
CODESYSTEM_CS_UNK_EXPANSION = !!El código provisto ({2}) no está en el conjunto de valores {0}, y se requiere un código de este conjunto de valores. El sistema {1} es desconocido.
|
||||
CODESYSTEM_CS_VS_EXP_MISMATCH = El CodeSystem {0} tiene un set de valores ''all system'' de {1}, pero es una expansión con la cantidad incorrecta de conceptos (encontrados {2}, esperados {3})
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING = !!The ShareableCodeSystem profile recommends that the {0} element se complete, pero no está presente. Los conjuntos de valores publicados DEBERIAN conformar al perfil ShareableValueSet
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!El perfil ShareableValueSet recomienda que el elemento {0} se complete, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!!!El perfil ShareableValueSet recomienda que el elemento {0} se complete, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
CODESYSTEM_SHAREABLE_MISSING = !!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no está presente. Los conjuntos de valores publicados DEBERIAN conformar al perfil ShareableValueSet
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!!!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
Can_only_specify_profile_in_the_context = Solo se puede especificar perfil en el contexto
|
||||
Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_ = Un elemento polimórfico no puede tener hijos- debe particionar y restringir los tipos antes (sortElements: {0}:{1})
|
||||
CapabalityStatement_CS_SP_WrongType = Discordancia de Tipos - El tipo del parametro de busqueda SearchParameter ''{0}'' es {1}, pero el tipo aquí es {2}
|
||||
|
@ -253,9 +253,9 @@ MEASURE_M_GROUP_STRATA_NO_CODE = Un estratificador de un grupo de medidas debe t
|
|||
MEASURE_M_LIB_UNKNOWN = La Library {0} no pudo ser resuelta, asi que la expresión de validación puede no ser correcta
|
||||
MEASURE_M_NO_GROUPS = Una medida debe contener como mínimo un grupo
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING = !!El perfil ShareableMeasure recomienda que el elemento {0} se complete, pero no está presente. Las medidas publicadas DEBERIAN conformar al perfil ShareableMeasure
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!El perfil ShareableMeasure recomienda que el elemento {0} se complete, pero no se encontró. Las medidas publicadas por HL7 DEBEN conformar al perfil ShareableMeasure
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!!!El perfil ShareableMeasure recomienda que el elemento {0} se complete, pero no se encontró. Las medidas publicadas por HL7 DEBEN conformar al perfil ShareableMeasure
|
||||
MEASURE_SHAREABLE_MISSING = !!El perfil ShareableMeasure dice que el elemento {0} es obligatorio, pero no está presente. Las medidas publicadas DEBERIAN conformar al perfil ShareableMeasure
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!El perfil ShareableMeasure dice que el elemento {0} es obligatorio, pero no se encontró. Las medidas publicadas por HL7 DEBEN conformar al perfil ShareableMeasure
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!!!El perfil ShareableMeasure dice que el elemento {0} es obligatorio, pero no se encontró. Las medidas publicadas por HL7 DEBEN conformar al perfil ShareableMeasure
|
||||
MULTIPLE_LOGICAL_MODELS_many = {0} Modelos Lógicos encontrados en los perfiles provistos, asi que es imposible analizar el modelo lógico(puede ser solo uno, se encontraron {1})
|
||||
MULTIPLE_LOGICAL_MODELS_other = {0} Modelos Lógicos encontrados en los perfiles provistos, asi que es imposible analizar el modelo lógico(puede ser solo uno, se encontraron {1})
|
||||
Measure_MR_M_None = No se identifica un elemento Measure, asi que no se puede validar contra el elemento Measure
|
||||
|
@ -397,7 +397,7 @@ SD_SPECIALIZED_TYPE_MATCHES = El tipo {0} no debe ser la misma que el tipo en la
|
|||
SD_TYPE_MISSING = No se encontró tipo
|
||||
SD_TYPE_NOT_DERIVED = El tipo {0} solo puede ser usado como tipo cuando se restringe la definición base del tipo
|
||||
SD_TYPE_NOT_LOCAL = El tipo {0} no es legal porque no está definida en la especificación FHIR. Otros tipos deben tener un espacio de nombres sobre ellos
|
||||
SD_TYPE_NOT_LOGICAL = El tipo {0} solo puede ser definido si la categoria es 'logical' no {1}
|
||||
SD_TYPE_NOT_LOGICAL = !!El tipo {0} solo puede ser definido si la categoria es 'logical' no {1}
|
||||
SD_TYPE_NOT_MATCH_NS = El espacio de nombres para el tipo {0} DEBERIA coincidir con el espacio de nombres de la url {1} para la definición del tipo
|
||||
SD_VALUE_COMPLEX_FIXED = Para el tipo complejo {0}, considere usar un patrón en lugar de un valor fijo para evitar restringir la instancia más allá de lo imprescindible
|
||||
SD_VALUE_TYPE_IILEGAL = El elemento {0} tiene un {1} de tipo {2}, que no está en la lista de tipos permitidos ({3})
|
||||
|
@ -491,8 +491,8 @@ Terminology_TX_Confirm_1_CC = No se pudo confirmar que las codificaciones provis
|
|||
Terminology_TX_Confirm_2_CC = No se pudo confirmar que las codificaciones provistas estén en el set de valores{0} y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado) (class = {1})
|
||||
Terminology_TX_Confirm_3_CC = No se pudo confirmar que las codificaciones provistas estén en el set de valores{0} y se recomienda que los códigos provengan de este conjunto de valores (class = {1})
|
||||
Terminology_TX_Confirm_4a = !!El código provisto ({2}) no está en el conjunto de valores {0}, y un código de este conjunto de valores es requerido: {1}
|
||||
Terminology_TX_Confirm_5 = !!No se pudo confirmar que los códigos provistos vengan de este conjunto de valores {0}, y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado)
|
||||
Terminology_TX_Confirm_6 = !!No se pudo confirmar que los códigos provistos vengan de este conjunto de valores {0}, y se recomienda que los códigos provengan de este conjunto de valores
|
||||
Terminology_TX_Confirm_5 = !!!!No se pudo confirmar que los códigos provistos vengan de este conjunto de valores {0}, y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado)
|
||||
Terminology_TX_Confirm_6 = !!!!No se pudo confirmar que los códigos provistos vengan de este conjunto de valores {0}, y se recomienda que los códigos provengan de este conjunto de valores
|
||||
Terminology_TX_Display_Wrong = El elemento Display deberia ser igual a ''{0}''
|
||||
Terminology_TX_Error_CodeableConcept = Error {0} validando el CodeableConcept
|
||||
Terminology_TX_Error_CodeableConcept_Max = Error {0} validando el CodeableConcept usando maxValueSet
|
||||
|
@ -506,10 +506,10 @@ Terminology_TX_NoValid_14 = !!El Coding provisto ({2}) no está en el conjunto d
|
|||
Terminology_TX_NoValid_15 = El valor provisto (''{0}'') no pudo ser validado en ausencia de un servidor terminológico
|
||||
Terminology_TX_NoValid_16 = !!El valor provisto (''{0}'') no está en el conjunto de valores{1}, y se requiere un código de este conjunto de valores) {2}
|
||||
Terminology_TX_NoValid_17 = !!El valor provisto (''{0}'') no está en el conjunto de valores{1}, y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado) {2}
|
||||
Terminology_TX_NoValid_18 = !!El valor provisto (''{0}'') no está en el conjunto de valores{1}, y se recomienda que el código provengan de este conjunto de valores){2}
|
||||
Terminology_TX_NoValid_18 = !!!!El valor provisto (''{0}'') no está en el conjunto de valores{1}, y se recomienda que el código provengan de este conjunto de valores){2}
|
||||
Terminology_TX_NoValid_1_CC = Ninguno de los codings provistos están en el conjunto de valores {0}, y se requiere un código de este conjunto de valores) (codes = {1})
|
||||
Terminology_TX_NoValid_2_CC = Ninguno de los codings provistos están en el conjunto de valores {0}, y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado) (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = Ninguno de los codings provistos están en el conjunto de valores {0}, y se recomienda que los códigos provengan de este conjunto de valores ) (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = !!Ninguno de los codings provistos están en el conjunto de valores {0}, y se recomienda que los códigos provengan de este conjunto de valores ) (codes = {1})
|
||||
Terminology_TX_NoValid_4 = !!El Coding provisto ({2}) no está en el conjunto de valores {0}, y se requiere un código de este conjunto de valores {1}
|
||||
Terminology_TX_NoValid_5 = !!El Coding provisto ({2}) no está en el conjunto de valores {0}, y deberian provenir de este conjunto de valores a menos que no haya un código apropiado (el validador no pudo juzgar si era o no apropiado) {1}
|
||||
Terminology_TX_NoValid_6 = !!El Coding provisto ({2}) no está en el conjunto de valores {0}, y se recomienda que el código provengan de este conjunto de valores {1}
|
||||
|
@ -656,13 +656,13 @@ VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY = !!La referencia al perfil ''{0}'' no
|
|||
VALUESET_IMPORT_UNION_INTERSECTION = Este conjunto de valores tiene un sólo include con multiples conjunto de valores importados. Según el item https://jira.hl7.org/browse/FHIR-25179, ha habido confusión en el pasado sobre si estos conjunto de valores se unen o intersectan. Si este conjunto de valores está contenido en un paquete publicado antes del 31-Marzo-2022, se tratará como una unión, sino como una intersección. Si desea una unión, parta el conjunto de valores importado entre multiples includes
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE = !!El código {1} no es válido en el sistema {0}
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = !!El código {2} no es válido en el sistema {0} versión {1}
|
||||
VALUESET_NO_SYSTEM_WARNING = No se especifica System, así que los Conceptos y Filtros no pueden ser verificados
|
||||
VALUESET_NO_SYSTEM_WARNING = !!No se especifica System, así que los Conceptos y Filtros no pueden ser verificados
|
||||
VALUESET_REFERENCE_INVALID_TYPE = The conjunto de valores a importar {0} apunta a un recurso de tipo {1} que no es válido
|
||||
VALUESET_REFERENCE_UNKNOWN = El conjunto de valores a importar {0} no pudo ser encontrado por lo que no puede verificarse
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING = !!El perfil ShareableValueSet recomienda que el elemento {0} se complete, pero no está presente. Los conjuntos de valores publicados DEBERIAN conformar al perfil ShareableValueSet
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!El perfil ShareableValueSet recomienda que el elemento {0} se complete, pero no se encontró.Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!!!El perfil ShareableValueSet recomienda que el elemento {0} se complete, pero no se encontró.Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
VALUESET_SHAREABLE_MISSING = !!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no está presente. Los conjuntos de valores publicados DEBERIAN conformar al perfil ShareableValueSet
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!!!El perfil ShareableValueSet dice que el elemento {0} es obligatorio, pero no se encontró. Los conjuntos de valores publicados por HL7 DEBEN conformar al perfil ShareableValueSet
|
||||
VALUESET_UNC_SYSTEM_WARNING = Se especificó el sistema desconocido ''{0}'', así que los Conceptos y Filtros no pueden ser verificados (Detalles: {1})
|
||||
VALUESET_UNC_SYSTEM_WARNING_VER = Se especificó un sistema/versión desconocido ''{0}'', así que los Conceptos y Filtros no pueden ser verificados (Detalles: {1})
|
||||
Validation_BUNDLE_Message = La primera entry en un mensaje tiene que ser un recurso MessageHeader
|
||||
|
|
|
@ -39,7 +39,7 @@ BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = これはOperationOutcomeで
|
|||
BUNDLE_SEARCH_NOSELF = SearchSet Bundlesは検索内容を指定するself linkを持っているべきです
|
||||
BUNDLE_SEARCH_NO_MODE = SearchSet bundlesはエントリに検索モードを持っているべきです
|
||||
BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = 検索文字列からタイプを特定できないため、タイプを確認することはできません
|
||||
Bad_file_path_error = \n********************\n* あなたが指定したファイル名、 ''{0}'' はローカルファイルシステム上に存在しません。\n* これが有効なファイルの場所であることを確認してください。\n********************\n\n
|
||||
Bad_file_path_error = !!\n********************\n* あなたが指定したファイル名、 ''{0}'' はローカルファイルシステム上に存在しません。\n* これが有効なファイルの場所であることを確認してください。\n********************\n\n
|
||||
Base__Derived_profiles_have_different_types____vs___ = ベースと派生のプロファイルが異なるタイプを持っています ({0} = {1} vs {2} = {3})
|
||||
Base_profile__has_no_type = ベースのプロファイル {0} にはタイプがありません
|
||||
Bundle_BUNDLE_Entry_Canonical = 正規URL({0})は、正規サーバ上でなければ、fullUrl({1})と一致することはできません
|
||||
|
@ -68,14 +68,14 @@ Bundle_MSG_Event_Count = {0} が期待されましたが、{1} のイベント
|
|||
CDATA_is_not_allowed = CDATAは許可されていません
|
||||
CODESYSTEM_CS_COUNT_COMPLETE_WRONG = CodeSystem.contentがcompleteであるにもかかわらず、conceptの数 ({0})がCodeSystem.count ({1})と一致しません
|
||||
CODESYSTEM_CS_COUNT_FRAGMENT_WRONG = CodeSystem.contentがfragment/exampleであるにもかかわらず、conceptの数 ({0})がCodeSystem.count ({1})を超えています
|
||||
CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = CodeSystem.contentがnot-presentであるにもかかわらず、CodeSystem.countに0より大きい値が指定されています。これがconceptを持たないcompleteなコードシステムであることを確認するか、countの値を更新/削除してください。
|
||||
CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = !!CodeSystem.contentがnot-presentであるにもかかわらず、CodeSystem.countに0より大きい値が指定されています。これがconceptを持たないcompleteなコードシステムであることを確認するか、countの値を更新/削除してください。
|
||||
CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED = CodeSystem.contentがnot-presentであるにもかかわらず、conceptが見つかりました
|
||||
CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG = このsupplementコードシステムはcountの値が{1}ですが、配下のcodesysteのcountの値と一致しません
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = HL7 Defined CodeSystemsは、ユーザーがコードシステムの状態と意味を明確に理解できるように、{0} 要素に対する明確な値を持つべきです
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = HL7 Defined CodeSystemsは、ユーザーがコードシステムの状態と意味を明確に理解できるように、{0} 要素に対する明確な値を持つべきです
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = CodeSystemsがsupplementである場合は{0} 要素に対する明確な値を持つべきではありません
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = CodeSystem Supplementsは、ontent要素の値が'supplement'である場合、どのコードシステムが補足されているかを指定するsupplements要素を持つべきです
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = CodeSystem Supplementsは、content要素の値が'supplement'であるべきです
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = !!CodeSystem Supplementsは、ontent要素の値が'supplement'である場合、どのコードシステムが補足されているかを指定するsupplements要素を持つべきです
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = !!CodeSystem Supplementsは、content要素の値が'supplement'であるべきです
|
||||
CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = CodeSystemsは、ユーザーがコードシステムの状態と意味を明確に理解できるように、{0} 要素に対する明確な値を持つべきです
|
||||
CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0}はsupplementであるため、Coding.systemの値として使用できません
|
||||
CODESYSTEM_CS_NO_VS_NOTCOMPLETE = valueSetを確認してください - 一般的には、不完全なCodeSystemはvalueSetを指定してはいけません
|
||||
|
@ -84,9 +84,9 @@ CODESYSTEM_CS_SUPP_INVALID_CODE = 基本のCodeSystem {0}にはcode ''{1}''が
|
|||
CODESYSTEM_CS_UNK_EXPANSION = !!提供されたコード({2})は、ValueSet {0}のexpansionには含まれておらず、このValueSetからコードが必要です。system {1}は未知です。
|
||||
CODESYSTEM_CS_VS_EXP_MISMATCH = CodeSystem {0}は''all system''のValueSet {1}を持っていますが、それはconceptの数が異なるexpansionです(期待したのは {3} 件ですが、 {2} 件見つけました)
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING = 公開されたcode systemsはCodeSystem.{0}の存在を推奨しているShareableCodeSystemプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = 公開されたcode systemsはCodeSystem.{0}の存在を推奨しているShareableCodeSystemプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!公開されたcode systemsはCodeSystem.{0}の存在を推奨しているShareableCodeSystemプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CODESYSTEM_SHAREABLE_MISSING = 公開されたcode systemsはCodeSystem.{0}の存在を必須としているShareableCodeSystemプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = 公開されたcode systemsはCodeSystem.{0}の存在を必須としているShareableCodeSystemプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!公開されたcode systemsはCodeSystem.{0}の存在を必須としているShareableCodeSystemプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = source code ''{0}'' はCode System {1} で有効ではありません
|
||||
CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS = source code ''{0}'' はValue Set {1} で有効ではありません
|
||||
CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = !!source display ''{0}'' は有効ではありません。可能性のあるcode {1}
|
||||
|
@ -105,9 +105,9 @@ CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = systemが提供されていな
|
|||
CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = !!system {0} は未知なので、コードの値をチェックすることはできません
|
||||
CONCEPTMAP_GROUP_TARGET_UNKNOWN = Target Code System {0}は完全に定義されておらずデータが不足しています。また、targetScopeも指定されていないため、ソースコードのチェックは実行されません。
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING = 公開されたコンセプトマップはConceptMap.{0}の存在を推奨しているShareableConceptMapプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = 公開されたコンセプトマップはConceptMap.{0}の存在を必須としているShareableConceptMapプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = !!公開されたコンセプトマップはConceptMap.{0}の存在を必須としているShareableConceptMapプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CONCEPTMAP_SHAREABLE_MISSING = 公開されたコンセプトマップはConceptMap.{0}の存在を必須としているShareableConceptMapプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = 公開されたコンセプトマップはConceptMap.{0}の存在を必須としているShareableConceptMapプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = !!公開されたコンセプトマップはConceptMap.{0}の存在を必須としているShareableConceptMapプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
CONCEPTMAP_VS_INVALID_CONCEPT_CODE = システム {0}におけるcode "{1}"は value set "{2}"で有効ではありません
|
||||
CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER = バージョン {1}のシステム {0}におけるcode "{2}"は value set "{3}"で有効ではありません
|
||||
CONCEPTMAP_VS_TOO_MANY_CODES = concept mapに大量のcodeが含まれるため、バリデーションできません: {0}
|
||||
|
@ -282,7 +282,7 @@ LIQUID_SYNTAX_NOTERM = スクリプト {0}: 終了していないLiquidステー
|
|||
LIQUID_SYNTAX_NUMBER = {0}の評価例外: limitの後に数字が続いていません
|
||||
LIQUID_SYNTAX_UNEXPECTED = {0}の評価例外: {1}で予期しない内容があります
|
||||
LIQUID_SYNTAX_UNTERMINATED = スクリプト {0}: 解析サイクルで終了していない文字列を見つけました
|
||||
LIQUID_UNKNOWN_FILTER = 未知のLiquidフィルター '''{0}'''
|
||||
LIQUID_UNKNOWN_FILTER = !!未知のLiquidフィルター '''{0}'''
|
||||
LIQUID_UNKNOWN_FLOW_STMT = スクリプト {0}: 未知のフローコントロールステートメント ''{1}''
|
||||
LIQUID_UNKNOWN_NOEND = スクリプト {0}: {1}を探しているときにスクリプトの終了を見つけました
|
||||
LIQUID_UNKNOWN_SYNTAX = Liquidステートメントの解析中に予期しない構文がありました
|
||||
|
@ -466,15 +466,15 @@ SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = 要素 ''{0}'' は、基本要素が持
|
|||
SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING = 要素 ''{0}'' は、obligationプロファイルでは許可されていないバインディングプロパティ ''{1}'' を持っています
|
||||
SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE = 要素 ''{0}'' は、obligationプロファイルでは許可されていない追加のバインディング目的 ''{1}'' を持っています
|
||||
SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH = 要素 ''{0}'' は、基本 (''{2}'') とは異なるバインディング強度 (''{1}'') を持っていて、これはobligationプロファイルでは許可されていません
|
||||
SD_OBGLIGATION_PROFILE_PATH_WRONG = 要素 ''{0}'' のパス値 ''{1}'' は、基本パス ''{2}'' と一致しません
|
||||
SD_OBGLIGATION_PROFILE_UKNOWN = プロファイルはobligationプロファイルとしてマークされていますが、基本プロファイル ''{0}'' が不明なため、その正確さを確認することはできません
|
||||
SD_OBGLIGATION_PROFILE_PATH_WRONG = !!要素 ''{0}'' のパス値 ''{1}'' は、基本パス ''{2}'' と一致しません
|
||||
SD_OBGLIGATION_PROFILE_UKNOWN = !!プロファイルはobligationプロファイルとしてマークされていますが、基本プロファイル ''{0}'' が不明なため、その正確さを確認することはできません
|
||||
SD_OBGLIGATION_PROFILE_UNMATCHED = 要素 ''{0}'' は、このobligationプロファイルが基づいているプロファイル ''{1}'' に同等のものがありません
|
||||
SD_PATH_TYPE_MISMATCH = パス {1} は、構造 {0} のタイプで始まらなければなりません
|
||||
SD_SPECIALIZED_TYPE_MATCHES = タイプ {0} は、特殊化されている基本構造 {1} のタイプと同じであってはなりません
|
||||
SD_TYPE_MISSING = タイプが見つかりません
|
||||
SD_TYPE_NOT_DERIVED = タイプ {0} は、タイプの基本定義を制約するときにのみタイプとして使用できます
|
||||
SD_TYPE_NOT_LOCAL = タイプ {0} は、FHIR仕様で定義されていないため、合法的ではありません。他のタイプには名前空間が必要です
|
||||
SD_TYPE_NOT_LOGICAL = タイプ {0} は、種類が 'logical' でない {1} の場合にのみ定義できます
|
||||
SD_TYPE_NOT_LOGICAL = !!タイプ {0} は、種類が 'logical' でない {1} の場合にのみ定義できます
|
||||
SD_TYPE_NOT_MATCH_NS = タイプの名前空間 {0} は、タイプの定義のためのurl名前空間 {1} と一致すべきです
|
||||
SD_VALUE_COMPLEX_FIXED = 複合タイプ {0} の場合、インスタンスを過剰に制約することを避けるために、固定値ではなくパターンを使用することを検討してください
|
||||
SD_VALUE_TYPE_IILEGAL = 要素 {0} は、許可されたタイプのリスト ({3}) にないタイプ {2} の {1} を持っています
|
||||
|
@ -544,7 +544,7 @@ SM_TARGET_TRANSLATE_BINDING_VS_TARGET = ターゲット変数が不明なValueSe
|
|||
SM_TARGET_TYPE_MULTIPLE_POSSIBLE = ここでは複数のタイプが可能です({0})。したがって、さらなるタイプチェックは不可能です
|
||||
SM_TARGET_TYPE_NOT_FOUND = ターゲットタイプが見つからなかったため、この暗黙の依存ルールのデフォルトグループを決定できませんでした
|
||||
SNAPSHOT_EXISTING_PROBLEM = 生成されたsnapshotには、元の提供されたsnapshot{0}と要素数が異なります{1}
|
||||
SNAPSHOT_IS_EMPTY = !!プロファイル''{0}''のsnapshotが空です(これは起こるべきではありません)
|
||||
SNAPSHOT_IS_EMPTY = !!!!プロファイル''{0}''のsnapshotが空です(これは起こるべきではありません)
|
||||
STATUS_CODE_HINT = The code is {0}
|
||||
STATUS_CODE_HINT_CODE = The code ''{1}'' is {0}
|
||||
STATUS_CODE_WARNING = The code is valid but is {0}
|
||||
|
@ -558,7 +558,7 @@ StructureDefinition__at__illegal_constrained_type__from__in_ = StructureDefiniti
|
|||
TERMINOLOGY_TX_NOSVC_BOUND_EXT = 提供されたコードが拡張可能なValueSet {0}からであることを確認できませんでした。用語サービスがないためです
|
||||
TERMINOLOGY_TX_NOSVC_BOUND_REQ = 提供されたコードが必要なValueSet {0}からであることを確認できませんでした。用語サービスがないためです
|
||||
TERMINOLOGY_TX_SYSTEM_HTTPS = システムURL ''{0}''が誤ってhttps:で始まっています。http:で始まる必要があります
|
||||
TERMINOLOGY_TX_SYSTEM_NOT_USABLE = URIが''{0}''のCodeSystemの定義にはcodeが提供されていないため、codeを検証できません
|
||||
TERMINOLOGY_TX_SYSTEM_NOT_USABLE = !!URIが''{0}''のCodeSystemの定義にはcodeが提供されていないため、codeを検証できません
|
||||
TERMINOLOGY_TX_SYSTEM_NO_CODE = !!systemが提供されていないコードは定義された意味がありません。systemを提供する必要があります
|
||||
TERMINOLOGY_TX_SYSTEM_WRONG_BUILD = コードシステム参照{0}が間違っています - コードシステム参照はbuild.fhir.orgへの参照にすることはできません。これが正しい参照である可能性があります:{1}
|
||||
TERMINOLOGY_TX_SYSTEM_WRONG_HTML = コードシステム参照{0}が間違っています - コードシステム参照はHTMLページにすることはできません。これが正しい参照である可能性があります:{1}
|
||||
|
@ -631,8 +631,8 @@ Terminology_TX_Confirm_1_CC = 提供されたcodingがValueSet{0}に含まれて
|
|||
Terminology_TX_Confirm_2_CC = 提供されたcodingがValueSet{0}に含まれていることを確認できませんでした。適切なコードがない場合を除き、このValueSetからのcodingが必要です(バリデータは何が適切か判断できません)(クラス= {1})
|
||||
Terminology_TX_Confirm_3_CC = 提供されたcodingがValueSet{0}に含まれていることを確認できませんでした。このValueSetからのcodingが推奨されています(クラス= {1})
|
||||
Terminology_TX_Confirm_4a = !!提供されたcode({2})がValueSet{0}に含まれていません。このValueSetからのcodeが必要です:{1}
|
||||
Terminology_TX_Confirm_5 = !!提供されたcodeがValueSet{0}に含まれていることを確認できませんでした。適切なコードがない場合を除き、このValueSetからのcodeが必要です(バリデータは何が適切か判断できません)
|
||||
Terminology_TX_Confirm_6 = !!提供されたcodeがValueSet {0}に含まれていることを確認できませんでした。このValueSetからのcodeが推奨されています
|
||||
Terminology_TX_Confirm_5 = !!!!提供されたcodeがValueSet{0}に含まれていることを確認できませんでした。適切なコードがない場合を除き、このValueSetからのcodeが必要です(バリデータは何が適切か判断できません)
|
||||
Terminology_TX_Confirm_6 = !!!!提供されたcodeがValueSet {0}に含まれていることを確認できませんでした。このValueSetからのcodeが推奨されています
|
||||
Terminology_TX_Display_Wrong = displayは''{0}''である必要があります
|
||||
Terminology_TX_Error_CodeableConcept = CodeableConceptの検証中にエラーが発生しました {0}
|
||||
Terminology_TX_Error_CodeableConcept_Max = maxValueSetを使用してCodeableConceptを検証する際にエラーが発生しました {0}
|
||||
|
@ -646,10 +646,10 @@ Terminology_TX_NoValid_14 = !!提供されたCoding({2})がValueSet{0}に含
|
|||
Terminology_TX_NoValid_15 = 用語サーバーが存在しないため、提供された値(''{0}'')を検証できませんでした
|
||||
Terminology_TX_NoValid_16 = !!提供された値(''{0}'')はValueSet {1}に含まれていません。このValueSetからのcodeが必要です){2}
|
||||
Terminology_TX_NoValid_17 = !!提供された値(''{0}'')はValueSet {1}に含まれていません。適切なコードがない場合を除き、このValueSetからのcodeが必要です(バリデータは何が適切か判断できません){2}
|
||||
Terminology_TX_NoValid_18 = !!提供された値(''{0}'')はValueSet{1}に含まれていません。このValueSetからのcodeが推奨されています){2}
|
||||
Terminology_TX_NoValid_18 = !!!!提供された値(''{0}'')はValueSet{1}に含まれていません。このValueSetからのcodeが推奨されています){2}
|
||||
Terminology_TX_NoValid_1_CC = 提供されたcodingのいずれもがValueSet {0}に含まれておらず、このValueSetからのcodingが必要です(codes = {1})
|
||||
Terminology_TX_NoValid_2_CC = 提供されたcodingのいずれもがValueSet{0}に含まれていません。適切なコードがない場合を除き、このValueSetからのcodingが必要です(バリデータは何が適切か判断できません)(codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = 提供されたcodingのいずれもがValueSet{0}に含まれていないません。このValueSetからのcodingが推奨されています)(codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = !!提供されたcodingのいずれもがValueSet{0}に含まれていないません。このValueSetからのcodingが推奨されています)(codes = {1})
|
||||
Terminology_TX_NoValid_4 = !!提供されたCoding({2})がValueSet{0}に含まれていません。このValueSetからのcodeが必要です{1}
|
||||
Terminology_TX_NoValid_5 = !!提供されたCoding({2})がValueSet{0}に含まれていません。適切なコードがない場合を除き、このValueSetからのcodeが必要です(バリデータは何が適切か判断できません){1}
|
||||
Terminology_TX_NoValid_6 = !!提供されたCoding({2})がValueSet{0}に含まれていません。このValueSetからのcodeが推奨されています {1}
|
||||
|
@ -815,13 +815,13 @@ VALUESET_IMPORT_UNION_INTERSECTION = このValueSetには、複数のインポ
|
|||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE = !!code''{1}''はsystem{0}では有効ではありません
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = !!code''{2}''はsystem {0}のversion {1}では有効ではありません
|
||||
VALUESET_INC_TOO_MANY_CODES = !!value setに大量のcodeが含まれるため、バリデーションできません: {0}
|
||||
VALUESET_NO_SYSTEM_WARNING = systemが指定されていないため、conceptとfilterは確認できません
|
||||
VALUESET_NO_SYSTEM_WARNING = !!systemが指定されていないため、conceptとfilterは確認できません
|
||||
VALUESET_REFERENCE_INVALID_TYPE = ValueSetのインポート{0}は、無効な型{1}のリソースを指しています
|
||||
VALUESET_REFERENCE_UNKNOWN = ValueSetのインポート{0}が見つからないため、確認できません
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING = 公開されたvalue setsはValueSet.{0}の存在を推奨しているShareableValueSetプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = 公開されたvalue setsはValueSet.{0}の存在を推奨しているShareableValueSetプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!公開されたvalue setsはValueSet.{0}の存在を推奨しているShareableValueSetプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
VALUESET_SHAREABLE_MISSING = 公開されたvalue setsはValueSet.{0}の存在を必須としているShareableValueSetプロファイルに準拠すべき(SHOULD)ですが、要素が存在しません。
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = 公開されたvalue setsはValueSet.{0}の存在を必須としているShareableValueSetプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!公開されたvalue setsはValueSet.{0}の存在を必須としているShareableValueSetプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。
|
||||
VALUESET_SUPPLEMENT_MISSING_one = 必要なsupplementが見つかりません: {1}
|
||||
VALUESET_SUPPLEMENT_MISSING_other = 必要なsupplementが見つかりません: {1}
|
||||
VALUESET_TOO_COSTLY = !!ValueSet {0}には多すぎるコードがあり、表示できません({1})
|
||||
|
|
|
@ -38,7 +38,7 @@ BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = Dit is geen OperationOutcome (
|
|||
BUNDLE_SEARCH_NOSELF = SearchSet Bundles moeten een self link bevatten die specificeert waarmee is gezocht
|
||||
BUNDLE_SEARCH_NO_MODE = SearchSet bundles zouden search.mode op de entries moeten hebben
|
||||
BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = er kunnen geen typen worden bepaald uit een de zoekstring, dus de typen kunnen niet worden gecontroleerd
|
||||
Bad_file_path_error = \n********************\n* Het bestand dat je opgaf, ''{0}'', bestaat niet op het lokale bestandssysteem.\n* Controleer of de locatie klopt.\n********************\n\n
|
||||
Bad_file_path_error = !!\n********************\n* Het bestand dat je opgaf, ''{0}'', bestaat niet op het lokale bestandssysteem.\n* Controleer of de locatie klopt.\n********************\n\n
|
||||
Base__Derived_profiles_have_different_types____vs___ = Basis & afgeleide profielen hebben verschillende typen ({0} = {1} vs {2} = {3})
|
||||
Base_profile__has_no_type = Basisprofiel {0} heeft geen type
|
||||
Bundle_BUNDLE_Entry_Canonical = De canonical URL ({0}) kan niet gelijk zijn aan de fullUrl ({1}) tenzij op de canonical server zelf
|
||||
|
@ -68,8 +68,8 @@ CDATA_is_not_allowed = CDATA is niet toegestaan
|
|||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = HL7-gedefinieerde CodeSystems MOETEN een waarde hebben voor het {0} element zodat de status en betekenis van het codesysteem voor gebruikers duidelijk is
|
||||
CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = HL7-gedefinieerde CodeSystems ZOUDEN een waarde MOETEN hebben voor het {0} element zodat de status en betekenis van het codesysteem voor gebruikers duidelijk is
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = CodeSystems ZOUDEN GEEN waarde MOETEN hebben voor het {0} element als het een supplement betreft
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = CodeSystem Supplements met content-waarde 'supplement' MOETEN een supplements element hebben waarin staat voor welk codesysteem het een supplement is
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = CodeSystem Supplements MOETEN de content-waarde ''supplement'' hebben
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = !!CodeSystem Supplements met content-waarde 'supplement' MOETEN een supplements element hebben waarin staat voor welk codesysteem het een supplement is
|
||||
CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = !!CodeSystem Supplements MOETEN de content-waarde ''supplement'' hebben
|
||||
CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = CodeSystems ZOUDEN een waarde MOETEN hebben voor het {0} element zodat de status en betekenis van het codesysteem voor gebruikers duidelijk is
|
||||
CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0} is een supplement, dus kan niet worden gebruikt als waarde in Coding.system
|
||||
CODESYSTEM_CS_NO_VS_NOTCOMPLETE = Review de ''alle codes'' ValueSet - incomplete CodeSystems moeten generiek geen waardelijst voor ''alle codes'' specificeren
|
||||
|
@ -78,9 +78,9 @@ CODESYSTEM_CS_SUPP_INVALID_CODE = De code ''{1}'' is niet gedeclareerd in het ba
|
|||
CODESYSTEM_CS_UNK_EXPANSION = !!Het gevonden code ({2}) bestaat niet in de waardelijst {0} en een code uit deze waardelijst is verplicht. Het system {1} is onbekend.
|
||||
CODESYSTEM_CS_VS_EXP_MISMATCH = CodeSystem {0} heeft een ''volledig systeem'' waardelijst {1}, maar dit is een expansion met een onjuist aantal concepten (gevonden {2}, verwacht {3})
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING = !!Het ShareableCodeSystem profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Gepubliceerde codesystemen ZOUDEN zich MOETEN houden aan het ShareableCodeSystem profiel
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!Het ShareableCodeSystem profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde codesystemen MOETEN zich houden aan het ShareableCodeSystem profiel
|
||||
CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Het ShareableCodeSystem profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde codesystemen MOETEN zich houden aan het ShareableCodeSystem profiel
|
||||
CODESYSTEM_SHAREABLE_MISSING = !!Het ShareableCodeSystem profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Gepubliceerde codesystemen ZOUDEN zich MOETEN houden aan het ShareableCodeSystem profiel
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!Het ShareableCodeSystem profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde codesystemen MOETEN zich houden aan het ShareableCodeSystem profiel
|
||||
CODESYSTEM_SHAREABLE_MISSING_HL7 = !!!!Het ShareableCodeSystem profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde codesystemen MOETEN zich houden aan het ShareableCodeSystem profiel
|
||||
CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = De bron-code ''{0}'' is niet geldig in het codesysteem {1}
|
||||
CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = !!De bron-code ''{0}'' is niet geldig. Mogelijke codes {1}
|
||||
CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = Bron CodeSystem {0} heeft niet alle content (content = {1}), dus de broncodes kunnen niet worden gecontroleerd
|
||||
|
@ -97,9 +97,9 @@ CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = Aangezien er geen system is ge
|
|||
CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = !!Het system {0} is onbekend, dus codes kunnen niet worden gecontroleerd
|
||||
CONCEPTMAP_GROUP_TARGET_UNKNOWN = !!Onbekend doel CodeSystem {0}, dus de doel-codes kunnen niet worden gecontroleerd
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING = !!Het ShareableConceptMap profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Gepubliceerde conceptmaps ZOUDEN zich MOETEN houden aan het ShareableConceptMap profiel
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = !!Het ShareableConceptMap profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde conceptmaps MOETEN zich houden aan het ShareableConceptMap profiel
|
||||
CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Het ShareableConceptMap profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde conceptmaps MOETEN zich houden aan het ShareableConceptMap profiel
|
||||
CONCEPTMAP_SHAREABLE_MISSING = !!Het ShareableConceptMap profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Gepubliceerde conceptmaps ZOUDEN zich MOETEN houden aan het ShareableConceptMap profiel
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = !!Het ShareableConceptMap profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde conceptmaps MOETEN zich houden aan het ShareableConceptMap profiel
|
||||
CONCEPTMAP_SHAREABLE_MISSING_HL7 = !!!!Het ShareableConceptMap profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde conceptmaps MOETEN zich houden aan het ShareableConceptMap profiel
|
||||
Can_only_specify_profile_in_the_context = Kan alleen een profiel specificeren in de context
|
||||
Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_ = Kan geen onderliggende elementen hebben op een polymorf element - je moet deze eerst opdelen in slices per type (sortElements: {0}:{1})
|
||||
CapabalityStatement_CS_SP_WrongType = Type komt niet overeen - SearchParameter ''{0}'' type is {1}, maar type is hier {2}
|
||||
|
@ -291,9 +291,9 @@ MEASURE_M_GROUP_STRATA_NO_CODE = Een measure group stratifier moet een code beva
|
|||
MEASURE_M_LIB_UNKNOWN = De Library {0} is niet gevonden, dus validatie van expressies is mogelijk niet correct
|
||||
MEASURE_M_NO_GROUPS = Een measure moet tenminste een group bevatten
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING = !!Het ShareableMeasure profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Gepubliceerde measures ZOUDEN zich MOETEN houden aan het ShareableMeasure profiel
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!Het ShareableMeasure profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde measures MOETEN zich houden aan het ShareableMeasure profiel
|
||||
MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Het ShareableMeasure profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde measures MOETEN zich houden aan het ShareableMeasure profiel
|
||||
MEASURE_SHAREABLE_MISSING = !!Het ShareableMeasure profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Gepubliceerde measures ZOUDEN zich MOETEN houden aan het ShareableMeasure profiel
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!Het ShareableMeasure profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde measures MOETEN zich houden aan het ShareableMeasure profiel
|
||||
MEASURE_SHAREABLE_MISSING_HL7 = !!!!Het ShareableMeasure profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde measures MOETEN zich houden aan het ShareableMeasure profiel
|
||||
MULTIPLE_LOGICAL_MODELS_other = {0} logische modellen gevonden in de aangegeven profielen, dus niet in staat logische model te verwerken (kan er maar een zijn, gevonden {1})
|
||||
Measure_MR_M_None = Er is geen Measure aangegeven, dus er kan geen validatie worden gedaan tegen de Measure
|
||||
Measure_MR_M_NotFound = De Measure ''{0}'' is niet gevonden, dus er kan geen validatie worden gedaan tegen de Measure
|
||||
|
@ -438,7 +438,7 @@ SD_SPECIALIZED_TYPE_MATCHES = Het type {0} moet niet hetzelfde zijn als het type
|
|||
SD_TYPE_MISSING = Geen type gevonden
|
||||
SD_TYPE_NOT_DERIVED = Het type {0} kan alleen als type worden gebruikt bij het inperken van de basisdefinitie van het type
|
||||
SD_TYPE_NOT_LOCAL = Het type {0} is niet geldig omdat deze niet is gedefinieerd in de FHIR-specificatie. Andere typen moeten een namespace hebben
|
||||
SD_TYPE_NOT_LOGICAL = Het type {0} kan alleen worden gedefinieerd als het soort (kind) 'logical' is, niet {1}
|
||||
SD_TYPE_NOT_LOGICAL = !!Het type {0} kan alleen worden gedefinieerd als het soort (kind) 'logical' is, niet {1}
|
||||
SD_TYPE_NOT_MATCH_NS = De type namespace {0} ZOU overeen MOETEN komen met de url namespace {1} voor de definitie van het type
|
||||
SD_VALUE_COMPLEX_FIXED = Overweeg voor het the complex type {0} een pattern te gebruiken in plaats van een vaste waarde om te zware inperking van de instance te voorkomen
|
||||
SD_VALUE_TYPE_IILEGAL = Het element {0} heeft een {1} van type {2}, welke niet in de lijst van toegestane typen staat ({3})
|
||||
|
@ -584,8 +584,8 @@ Terminology_TX_Confirm_1_CC = Kan niet bevestigen dat de gevonden codings bestaa
|
|||
Terminology_TX_Confirm_2_CC = Kan niet bevestigen dat de gevonden codings bestaan in de waardelijst {0} en een coding uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is) (class = {1})
|
||||
Terminology_TX_Confirm_3_CC = Kan niet bevestigen dat de gevonden codings bestaan in de waardelijst {0} en een coding uit deze waardelijst is aanbevolen (class = {1})
|
||||
Terminology_TX_Confirm_4a = !!De gevonden code ({2}) bestaat niet in waardelijst {0} en een code uit deze waardelijst is verplicht: {1}
|
||||
Terminology_TX_Confirm_5 = !!Kan niet bevestigen dat de aanwezige codes bestaan in de waardelijst {0} en een coding uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is)
|
||||
Terminology_TX_Confirm_6 = !!Kan niet bevestigen dat de aanwezige codes bestaan in de waardelijst {0} en een coding uit deze waardelijst is aanbevolen
|
||||
Terminology_TX_Confirm_5 = !!!!Kan niet bevestigen dat de aanwezige codes bestaan in de waardelijst {0} en een coding uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is)
|
||||
Terminology_TX_Confirm_6 = !!!!Kan niet bevestigen dat de aanwezige codes bestaan in de waardelijst {0} en een coding uit deze waardelijst is aanbevolen
|
||||
Terminology_TX_Display_Wrong = Display moet zijn ''{0}''
|
||||
Terminology_TX_Error_CodeableConcept = Fout {0} bij valideren CodeableConcept
|
||||
Terminology_TX_Error_CodeableConcept_Max = Fout {0} bij valideren CodeableConcept met maxValueSet
|
||||
|
@ -599,10 +599,10 @@ Terminology_TX_NoValid_14 = !!De gevonden Coding ({2}) bestaat niet in de waarde
|
|||
Terminology_TX_NoValid_15 = De gevonden waarde (''{0}'') kan niet worden gevalideerd zonder een terminologieserver
|
||||
Terminology_TX_NoValid_16 = !!De gevonden waarde (''{0}'') bestaat niet in de waardelijst {1} en een code uit deze waardelijst is verplicht {2}
|
||||
Terminology_TX_NoValid_17 = !!De gevonden waarde (''{0}'') bestaat niet in de waardelijst {1} en een code uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is) {2}
|
||||
Terminology_TX_NoValid_18 = !!De gevonden waarde (''{0}'') bestaat niet in de waardelijst {1} en een code uit deze waardelijst is aanbevolen. {2}
|
||||
Terminology_TX_NoValid_18 = !!!!De gevonden waarde (''{0}'') bestaat niet in de waardelijst {1} en een code uit deze waardelijst is aanbevolen. {2}
|
||||
Terminology_TX_NoValid_1_CC = Geen van de gevonden codings bestaan in waardelijst {0} en een coding uit deze waardelijst is verplicht (codes = {1})
|
||||
Terminology_TX_NoValid_2_CC = Geen van de gevonden codings bestaat in de waardelijst {0} en een coding uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is) (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = Geen van de gevonden codings bestaat in de waardelijst {0} en een coding uit deze waardelijst is aanbevolen (codes = {1})
|
||||
Terminology_TX_NoValid_3_CC = !!Geen van de gevonden codings bestaat in de waardelijst {0} en een coding uit deze waardelijst is aanbevolen (codes = {1})
|
||||
Terminology_TX_NoValid_4 = !!De gevonden Coding ({2}) bestaat niet in de waardelijst {0} en een code uit deze waardelijst is verplicht {1}
|
||||
Terminology_TX_NoValid_5 = !!De gevonden Coding ({2}) bestaat niet in de waardelijst {0} en een code uit deze waardelijst is verplicht tenzij deze geen relevante code bevat (de validator kan niet bepalen wat relevant is) {1}
|
||||
Terminology_TX_NoValid_6 = !!De gevonden Coding ({2}) bestaat niet in de waardelijst {0} en een code uit deze waardelijst is aanbevolen {1}
|
||||
|
@ -758,13 +758,13 @@ VALUESET_EXAMPLE_SYSTEM_HINT = Example System ''{0}'' specified, so Concepts and
|
|||
VALUESET_IMPORT_UNION_INTERSECTION = Deze waardelijst heeft een enkele include met meerdere geimporteerde waardelijsten. Per issue https://jira.hl7.org/browse/FHIR-25179, is er onduidelijkheid geweest over of deze waardelijsten samen moeten worden genomen of juist de doorsnede hiervan. Als deze waardelijst stond in een package van voor 31 maart 2022, dan wordt deze als bundeling, anders als doorsnede. Als je een bundeling wilt, verdeel dan de waardelijst imports over meerdere includes
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE = !!De code {1} is niet geldig in het systeem {0}
|
||||
VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = !!De code {2} is niet geldig in het systeem {0} versie {1}
|
||||
VALUESET_NO_SYSTEM_WARNING = Geen System gespecificeerd, dus Concepts en Filters kunnen niet worden gecontroleerd
|
||||
VALUESET_NO_SYSTEM_WARNING = !!Geen System gespecificeerd, dus Concepts en Filters kunnen niet worden gecontroleerd
|
||||
VALUESET_REFERENCE_INVALID_TYPE = De waardelijst-import {0} wijst naar een resource van type {1} wat niet geldig is
|
||||
VALUESET_REFERENCE_UNKNOWN = De waardelijst-import {0} is niet gevonden dus kan niet worden gecontroleerd
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING = !!Het ShareableValueSet profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Gepubliceerde waardelijsten ZOUDEN zich MOETEN houden aan het ShareableValueSet profiel
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!Het ShareableValueSet profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde waardelijsten MOETEN zich houden aan het ShareableValueSet profiel
|
||||
VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = !!!!Het ShareableValueSet profiel beveelt aan om het {0} element een waarde te geven, maaar het ontbreekt. Door HL7 gepubliceerde waardelijsten MOETEN zich houden aan het ShareableValueSet profiel
|
||||
VALUESET_SHAREABLE_MISSING = !!Het ShareableValueSet profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Gepubliceerde waardelijsten ZOUDEN zich MOETEN houden aan het ShareableValueSet profiel
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!Het ShareableValueSet profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde waardelijsten MOETEN zich houden aan het ShareableValueSet profiel
|
||||
VALUESET_SHAREABLE_MISSING_HL7 = !!!!Het ShareableValueSet profiel zegt dat het {0} element verplicht is, maar het ontbreekt. Door HL7 gepubliceerde waardelijsten MOETEN zich houden aan het ShareableValueSet profiel
|
||||
VALUESET_TOO_COSTLY = !!De waardelijst {0} heeft teveel codes om weer te geven ({1})
|
||||
VALUESET_UNC_SYSTEM_WARNING = Onbekend system ''{0}'' gespecificeerd, dus Concepten en Filters kunnen niet worden gecontroleerd (Details: {1})
|
||||
VALUESET_UNC_SYSTEM_WARNING_VER = Onbekend systeem/versie ''{0}'' gespecificeerd, dus Concepten en Filters kunnen niet worden gecontroleerd (Details: {1})
|
||||
|
|
|
@ -56,7 +56,7 @@ BUNDLE_SEARCH = Search:
|
|||
BUNDLE_SEARCH_MODE = Mode = {0}
|
||||
BUNDLE_SEARCH_SCORE = Score = {0}
|
||||
BUND_REND_GEN_NARR = generating narrative
|
||||
BUND_REND_INVALID_DOC = Invalid document ''''{0}'''' - first entry is not a Composition ({0})
|
||||
BUND_REND_INVALID_DOC = Invalid document ''{0}'' - first entry is not a Composition ({0})
|
||||
CANON_REND_COMMITTEE = Committee
|
||||
GENERAL_COPYRIGHT = Copyright
|
||||
GENERAL_DEFINITION = Definition
|
||||
|
@ -276,7 +276,7 @@ EX_SCEN_REC = Receiver
|
|||
EX_SCEN_RES = Response
|
||||
EX_SCEN_SEE = See subprocess
|
||||
EX_SCEN_STEP = Step
|
||||
EX_SCEN_TIME = ... time passes ...\n
|
||||
EX_SCEN_TIME = ... time passes ...
|
||||
EX_SCEN_UN = Unknown ExampleScenario Renderer Mode {0}
|
||||
EX_SCEN_UN_ACT = Unable to find referenced actor {0}
|
||||
EX_SCEN_UN_INST = Unable to find referenced instance {0}
|
||||
|
@ -455,12 +455,12 @@ QUEST_VALUE = Value Set:
|
|||
REND_ADDED = Added:
|
||||
REND_CHANGED = Changed:
|
||||
REND_REMOVED = Removed:
|
||||
REND_ROW_CHANGED_SINCE_WAS = This row of content has been changed since {0} (was ''''{1}'''')
|
||||
REND_ROW_CHANGED_SINCE_WAS = This row of content has been changed since {0} (was ''{1}'')
|
||||
GENERAL_REMOVED_SINCE = This content has been removed since {0}
|
||||
REND_ROW_SINCE = This row of content has been added since {0}
|
||||
REND_SINCE_ADDED = This content has been added since {0}
|
||||
REND_SINCE_CHANGED = This content has been changed since {0}
|
||||
REND_SINCE_CHANGED_WAS = This content has been changed since {0} (was ''''{1}'''')
|
||||
REND_SINCE_CHANGED_WAS = This content has been changed since {0} (was ''{1}'')
|
||||
REND_STANDARDS = Standards Status = {0}
|
||||
REQ_ACTOR = These requirements apply to the actor
|
||||
REQ_DERIVE = These requirements derive from
|
||||
|
@ -893,3 +893,4 @@ VALUE_SET_CODES_FROM = codes from
|
|||
VALUE_SET_CODE_ITEM = The code for the item
|
||||
VALUE_SET_CODE_SELEC = This value set cannot be fully expanded, but a selection ( {0} codes) of the whole set of codes is shown here.
|
||||
LIST_REND_CODE = Code: {0}
|
||||
STRUC_DEF_TYPE_PARAMETER = Type Parameter
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Rendering = one,many,other
|
||||
BUNDLE_DOCUMENT_CONTENT = Contenido adicional del documento
|
||||
BUNDLE_ETAG = ETag = {0E_LAST_MOD = LastModified = {0}
|
||||
BUNDLE_ETAG = ETag = {0}
|
||||
BUNDLE_HEADER_DOC_ENTRY_RD = {0}. {2}/{3}
|
||||
BUNDLE_HEADER_DOC_ENTRY_U = {0}. {1}
|
||||
BUNDLE_HEADER_DOC_ENTRY_URD = {0}. {1} ({2}/{3})
|
||||
|
|
|
@ -47,7 +47,7 @@ BUNDLE_SEARCH = Zoeken:
|
|||
BUNDLE_SEARCH_MODE = Mode = {0}
|
||||
BUNDLE_SEARCH_SCORE = Score = {0}
|
||||
BUND_REND_GEN_NARR = narrative maken
|
||||
BUND_REND_INVALID_DOC = !!Ongeldig document ''{0}'' - eerste entry is geen Composition ({0})
|
||||
BUND_REND_INVALID_DOC = !!!!Ongeldig document ''{0}'' - eerste entry is geen Composition ({0})
|
||||
CANON_REND_COMMITTEE = Werkgroep
|
||||
CANON_REND_JSON = JSON
|
||||
CANON_REND_MATURITY = Volwassenheid
|
||||
|
@ -234,7 +234,7 @@ EX_SCEN_REC = Ontvanger
|
|||
EX_SCEN_RES = Antwoord
|
||||
EX_SCEN_SEE = Zie subprocess
|
||||
EX_SCEN_STEP = Stap
|
||||
EX_SCEN_TIME = ... tijd schrijdt voort ...\n
|
||||
EX_SCEN_TIME = !!... tijd schrijdt voort ...\n
|
||||
EX_SCEN_UN = Onbekende ExampleScenario weergavemodus {0}
|
||||
EX_SCEN_UN_ACT = Kan gerefereerde actor {0} niet vinden
|
||||
EX_SCEN_UN_INST = Kan gerefereerde instance {0} niet vinden
|
||||
|
@ -404,11 +404,11 @@ QUEST_VALUE = Waardelijst:
|
|||
REND_ADDED = Toegevoegd:
|
||||
REND_CHANGED = Gewijzigd:
|
||||
REND_REMOVED = Verwijderd:
|
||||
REND_ROW_CHANGED_SINCE_WAS = !!De rij met content is gewijzigd op {0} (was ''{1}'')
|
||||
REND_ROW_CHANGED_SINCE_WAS = !!!!De rij met content is gewijzigd op {0} (was ''{1}'')
|
||||
REND_ROW_SINCE = Deze rij met content is toegevoegd op {0}
|
||||
REND_SINCE_ADDED = Deze content is toegevoegd op {0}
|
||||
REND_SINCE_CHANGED = Deze content is gewijzigd op {0}
|
||||
REND_SINCE_CHANGED_WAS = !!Deze content is gewijzigd op {0} (was ''{1}'')
|
||||
REND_SINCE_CHANGED_WAS = !!!!Deze content is gewijzigd op {0} (was ''{1}'')
|
||||
REND_STANDARDS = Standaard status = {0}"
|
||||
REQ_ACTOR = Deze requirements zijn van toepassing op de actor
|
||||
REQ_DERIVE = Deze requirements zijn afgeleid van
|
||||
|
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -296,18 +296,22 @@ public class ValueSetValidator extends BaseValidator {
|
|||
cs = context.findTxResource(CodeSystem.class, system, version);
|
||||
}
|
||||
if (cs != null) { // if it's null, we can't analyse this
|
||||
switch (cs.getContent()) {
|
||||
case EXAMPLE:
|
||||
warning(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_CONTENT : I18nConstants.VALUESET_INCLUDE_CSVER_CONTENT, system, cs.getContent().toCode(), version);
|
||||
break;
|
||||
case FRAGMENT:
|
||||
hint(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_CONTENT : I18nConstants.VALUESET_INCLUDE_CSVER_CONTENT, system, cs.getContent().toCode(), version);
|
||||
break;
|
||||
case SUPPLEMENT:
|
||||
ok = rule(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_SUPPLEMENT : I18nConstants.VALUESET_INCLUDE_CSVER_SUPPLEMENT, system, cs.getSupplements(), version) && ok;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
if (cs.getContent() == null) {
|
||||
warning(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_CONTENT : I18nConstants.VALUESET_INCLUDE_CSVER_CONTENT, system, "null", version);
|
||||
} else {
|
||||
switch (cs.getContent()) {
|
||||
case EXAMPLE:
|
||||
warning(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_CONTENT : I18nConstants.VALUESET_INCLUDE_CSVER_CONTENT, system, cs.getContent().toCode(), version);
|
||||
break;
|
||||
case FRAGMENT:
|
||||
hint(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_CONTENT : I18nConstants.VALUESET_INCLUDE_CSVER_CONTENT, system, cs.getContent().toCode(), version);
|
||||
break;
|
||||
case SUPPLEMENT:
|
||||
ok = rule(errors, "2024-03-06", IssueType.INVALID, stack, false, version == null ? I18nConstants.VALUESET_INCLUDE_CS_SUPPLEMENT : I18nConstants.VALUESET_INCLUDE_CSVER_SUPPLEMENT, system, cs.getSupplements(), version) && ok;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,8 +1,7 @@
|
|||
git:
|
||||
filters:
|
||||
- filter_type: dir
|
||||
- filter_type: dynamic
|
||||
file_format: PO
|
||||
source_file_dir: org.hl7.fhir.utilities/src/main/resources/source/transifex
|
||||
source_language: en
|
||||
source_file_extension: .po
|
||||
translation_files_expression: 'rendering-phrases_<lang>.po'
|
||||
source_files_expression: org.hl7.fhir.utilities/src/main/resources/source/transifex/<file>-en.po
|
||||
translation_files_expression: 'org.hl7.fhir.utilities/src/main/resources/source/transifex/translations/<file>-<lang>.po'
|
||||
|
|
Loading…
Reference in New Issue