diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/TextFile.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/TextFile.java index cbe6f2baf..3662f0188 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/TextFile.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/TextFile.java @@ -51,6 +51,7 @@ import java.nio.file.StandardCopyOption; import java.nio.file.StandardOpenOption; import java.util.ArrayList; import java.util.List; +import java.util.regex.Pattern; import org.hl7.fhir.utilities.filesystem.CSFile; import org.hl7.fhir.utilities.filesystem.ManagedFileAccess; @@ -202,4 +203,9 @@ public class TextFile { public static void streamToFileNoClose(final InputStream stream, final String filename) throws IOException { Files.copy(stream, Path.of(filename), StandardCopyOption.REPLACE_EXISTING); } + + public static String[] fileToLines(String file) throws FileNotFoundException, IOException { + Pattern LINE_SEP_PATTERN = Pattern.compile("\\R"); + return LINE_SEP_PATTERN.split(fileToString(file)); + } } \ No newline at end of file diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java index da994d076..e99eb50e5 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/I18nConstants.java @@ -11,29 +11,38 @@ public class I18nConstants { public static final String ALL_OK = "ALL_OK"; public static final String ARRAY_CANNOT_BE_EMPTY = "ARRAY_CANNOT_BE_EMPTY"; public static final String ATTEMPT_TO_A_SLICE_AN_ELEMENT_THAT_DOES_NOT_REPEAT__FROM__IN_ = "Attempt_to_a_slice_an_element_that_does_not_repeat__from__in_"; + public static final String ATTEMPT_TO_CHANGE_SLICING = "ATTEMPT_TO_CHANGE_SLICING"; public static final String ATTEMPT_TO_REPLACE_ELEMENT_NAME_FOR_A_NONCHOICE_TYPE = "Attempt_to_replace_element_name_for_a_nonchoice_type"; public static final String ATTEMPT_TO_USE_A_SNAPSHOT_ON_PROFILE__AS__BEFORE_IT_IS_GENERATED = "Attempt_to_use_a_snapshot_on_profile__as__before_it_is_generated"; public static final String ATTEMPT_TO_USE_TERMINOLOGY_SERVER_WHEN_NO_TERMINOLOGY_SERVER_IS_AVAILABLE = "Attempt_to_use_Terminology_server_when_no_Terminology_server_is_available"; public static final String BAD_FILE_PATH_ERROR = "Bad_file_path_error"; public static final String BASE_PROFILE__HAS_NO_TYPE = "Base_profile__has_no_type"; public static final String BASE__DERIVED_PROFILES_HAVE_DIFFERENT_TYPES____VS___ = "Base__Derived_profiles_have_different_types____vs___"; + public static final String BINDING_ADDITIONAL = "BINDING_ADDITIONAL"; + public static final String BINDING_MAX = "BINDING_MAX"; public static final String BUNDLE_BUNDLE_ENTRY_CANONICAL = "Bundle_BUNDLE_Entry_Canonical"; public static final String BUNDLE_BUNDLE_ENTRY_DOCUMENT = "Bundle_BUNDLE_Entry_Document"; + public static final String BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE = "BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE"; + public static final String BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT = "BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT"; + public static final String BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED = "BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED"; public static final String BUNDLE_BUNDLE_ENTRY_IDURLMISMATCH = "Bundle_BUNDLE_Entry_IdUrlMismatch"; public static final String BUNDLE_BUNDLE_ENTRY_MISMATCHIDURL = "Bundle_BUNDLE_Entry_MismatchIdUrl"; + public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES"; + public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH"; + public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON"; public static final String BUNDLE_BUNDLE_ENTRY_NOFIRST = "Bundle_BUNDLE_Entry_NoFirst"; public static final String BUNDLE_BUNDLE_ENTRY_NOFIRSTRESOURCE = "Bundle_BUNDLE_Entry_NoFirstResource"; public static final String BUNDLE_BUNDLE_ENTRY_NOFULLURL = "Bundle_BUNDLE_Entry_NoFullUrl"; - public static final String BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED = "BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED"; public static final String BUNDLE_BUNDLE_ENTRY_NOPROFILE_EXPL = "Bundle_BUNDLE_Entry_NoProfile_EXPL"; public static final String BUNDLE_BUNDLE_ENTRY_NOPROFILE_TYPE = "Bundle_BUNDLE_Entry_NoProfile_TYPE"; public static final String BUNDLE_BUNDLE_ENTRY_NOTFOUND = "Bundle_BUNDLE_Entry_NotFound"; public static final String BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT = "BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT"; + public static final String BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT = "BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT"; public static final String BUNDLE_BUNDLE_ENTRY_ORPHAN_DOCUMENT = "Bundle_BUNDLE_Entry_Orphan_DOCUMENT"; public static final String BUNDLE_BUNDLE_ENTRY_ORPHAN_MESSAGE = "Bundle_BUNDLE_Entry_Orphan_MESSAGE"; + public static final String BUNDLE_BUNDLE_ENTRY_REVERSE_MSG = "BUNDLE_BUNDLE_ENTRY_REVERSE_MSG"; public static final String BUNDLE_BUNDLE_ENTRY_REVERSE_R4 = "BUNDLE_BUNDLE_ENTRY_REVERSE_R4"; public static final String BUNDLE_BUNDLE_ENTRY_REVERSE_R5 = "BUNDLE_BUNDLE_ENTRY_REVERSE_R5"; - public static final String BUNDLE_BUNDLE_ENTRY_REVERSE_MSG = "BUNDLE_BUNDLE_ENTRY_REVERSE_MSG"; public static final String BUNDLE_BUNDLE_ENTRY_TYPE = "Bundle_BUNDLE_Entry_Type"; public static final String BUNDLE_BUNDLE_ENTRY_TYPE2 = "Bundle_BUNDLE_Entry_Type2"; public static final String BUNDLE_BUNDLE_ENTRY_TYPE3 = "Bundle_BUNDLE_Entry_Type3"; @@ -41,32 +50,120 @@ public class I18nConstants { public static final String BUNDLE_BUNDLE_FULLURL_NEEDVERSION = "Bundle_BUNDLE_FullUrl_NeedVersion"; public static final String BUNDLE_BUNDLE_MULTIPLEMATCHES = "Bundle_BUNDLE_MultipleMatches"; public static final String BUNDLE_BUNDLE_NOT_LOCAL = "Bundle_BUNDLE_Not_Local"; - public static final String BUNDLE_LINK_UNKNOWN = "BUNDLE_LINK_UNKNOWN"; - public static final String BUNDLE_LINK_SEARCH_PROHIBITED = "BUNDLE_LINK_SEARCH_PROHIBITED"; + public static final String BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU = "BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU"; + public static final String BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU = "BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU"; + public static final String BUNDLE_ENTRY_URL_ABSOLUTE = "BUNDLE_ENTRY_URL_ABSOLUTE"; + public static final String BUNDLE_ENTRY_URL_MATCHES_NO_ID = "BUNDLE_ENTRY_URL_MATCHES_NO_ID"; + public static final String BUNDLE_ENTRY_URL_MATCHES_TYPE_ID = "BUNDLE_ENTRY_URL_MATCHES_TYPE_ID"; public static final String BUNDLE_LINK_SEARCH_NO_DUPLICATES = "BUNDLE_LINK_SEARCH_NO_DUPLICATES"; + public static final String BUNDLE_LINK_SEARCH_PROHIBITED = "BUNDLE_LINK_SEARCH_PROHIBITED"; public static final String BUNDLE_LINK_STYELSHEET_EXTERNAL = "BUNDLE_LINK_STYELSHEET_EXTERNAL"; public static final String BUNDLE_LINK_STYELSHEET_INSECURE = "BUNDLE_LINK_STYELSHEET_INSECURE"; public static final String BUNDLE_LINK_STYELSHEET_LINKABLE = "BUNDLE_LINK_STYELSHEET_LINKABLE"; public static final String BUNDLE_LINK_STYELSHEET_NOT_FOUND = "BUNDLE_LINK_STYELSHEET_NOT_FOUND"; + public static final String BUNDLE_LINK_UNKNOWN = "BUNDLE_LINK_UNKNOWN"; public static final String BUNDLE_MSG_EVENT_COUNT = "Bundle_MSG_Event_Count"; + public static final String BUNDLE_POSSSIBLE_MATCHES = "BUNDLE_POSSSIBLE_MATCHES"; + public static final String BUNDLE_RULE_INVALID_INDEX = "BUNDLE_RULE_INVALID_INDEX"; + public static final String BUNDLE_RULE_NONE = "BUNDLE_RULE_NONE"; + public static final String BUNDLE_RULE_PROFILE_UNKNOWN = "BUNDLE_RULE_PROFILE_UNKNOWN"; + public static final String BUNDLE_RULE_UNKNOWN = "BUNDLE_RULE_UNKNOWN"; + public static final String BUNDLE_SEARCH_ENTRY_NO_RESOURCE = "BUNDLE_SEARCH_ENTRY_NO_RESOURCE"; + public static final String BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID = "BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID"; + public static final String BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE = "BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE"; + public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE"; + public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE"; + public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME"; + public static final String BUNDLE_SEARCH_NOSELF = "BUNDLE_SEARCH_NOSELF"; + public static final String BUNDLE_SEARCH_NO_MODE = "BUNDLE_SEARCH_NO_MODE"; + public static final String BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = "BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD"; + public static final String Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL = "Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL"; public static final String CANT_HAVE_CHILDREN_ON_AN_ELEMENT_WITH_A_POLYMORPHIC_TYPE__YOU_MUST_SLICE_AND_CONSTRAIN_THE_TYPES_FIRST_SORTELEMENTS_ = "Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_"; public static final String CAN_ONLY_SPECIFY_PROFILE_IN_THE_CONTEXT = "Can_only_specify_profile_in_the_context"; public static final String CAPABALITYSTATEMENT_CS_SP_WRONGTYPE = "CapabalityStatement_CS_SP_WrongType"; public static final String CDATA_IS_NOT_ALLOWED = "CDATA_is_not_allowed"; + public static final String CDA_UNKNOWN_TEMPLATE = "CDA_UNKNOWN_TEMPLATE"; + public static final String CDA_UNKNOWN_TEMPLATE_EXT = "CDA_UNKNOWN_TEMPLATE_EXT"; public static final String CIRCULAR_SNAPSHOT_REFERENCES_DETECTED_CANNOT_GENERATE_SNAPSHOT_STACK__ = "Circular_snapshot_references_detected_cannot_generate_snapshot_stack__"; - public static final String CODESYSTEM_CS_NO_VS_NOTCOMPLETE = "CODESYSTEM_CS_NO_VS_NOTCOMPLETE"; - public static final String CODESYSTEM_CS_VS_INCLUDEDETAILS = "CodeSystem_CS_VS_IncludeDetails"; - public static final String CODESYSTEM_CS_VS_INVALID = "CodeSystem_CS_VS_Invalid"; - public static final String CODESYSTEM_CS_VS_EXP_MISMATCH = "CODESYSTEM_CS_VS_EXP_MISMATCH"; - public static final String CODESYSTEM_CS_VS_WRONGSYSTEM = "CodeSystem_CS_VS_WrongSystem"; + public static final String CODESYSTEM_CS_COUNT_COMPLETE_WRONG = "CODESYSTEM_CS_COUNT_COMPLETE_WRONG"; + public static final String CODESYSTEM_CS_COUNT_FRAGMENT_WRONG = "CODESYSTEM_CS_COUNT_FRAGMENT_WRONG"; + public static final String CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = "CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO"; + public static final String CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED = "CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED"; + public static final String CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG = "CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG"; + public static final String CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = "CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL"; + public static final String CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = "CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD"; + public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL"; + public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING"; + public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG"; + public static final String CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = "CODESYSTEM_CS_NONHL7_MISSING_ELEMENT"; public static final String CODESYSTEM_CS_NO_SUPPLEMENT = "CODESYSTEM_CS_NO_SUPPLEMENT"; + public static final String CODESYSTEM_CS_NO_VS_NOTCOMPLETE = "CODESYSTEM_CS_NO_VS_NOTCOMPLETE"; + public static final String CODESYSTEM_CS_NO_VS_SUPPLEMENT1 = "CODESYSTEM_CS_NO_VS_SUPPLEMENT1"; + public static final String CODESYSTEM_CS_NO_VS_SUPPLEMENT2 = "CODESYSTEM_CS_NO_VS_SUPPLEMENT2"; public static final String CODESYSTEM_CS_SUPP_CANT_CHECK = "CODESYSTEM_CS_SUPP_CANT_CHECK"; public static final String CODESYSTEM_CS_SUPP_INVALID_CODE = "CODESYSTEM_CS_SUPP_INVALID_CODE"; + public static final String CODESYSTEM_CS_SUPP_NO_SUPP = "CODESYSTEM_CS_SUPP_NO_SUPP"; public static final String CODESYSTEM_CS_UNK_EXPANSION = "CODESYSTEM_CS_UNK_EXPANSION"; + public static final String CODESYSTEM_CS_VS_EXP_MISMATCH = "CODESYSTEM_CS_VS_EXP_MISMATCH"; + public static final String CODESYSTEM_CS_VS_INCLUDEDETAILS = "CodeSystem_CS_VS_IncludeDetails"; + public static final String CODESYSTEM_CS_VS_INVALID = "CodeSystem_CS_VS_Invalid"; + public static final String CODESYSTEM_CS_VS_WRONGSYSTEM = "CodeSystem_CS_VS_WrongSystem"; + public static final String CODESYSTEM_DESIGNATION_DISP_CLASH_LANG = "CODESYSTEM_DESIGNATION_DISP_CLASH_LANG"; + public static final String CODESYSTEM_DESIGNATION_DISP_CLASH_NO_LANG = "CODESYSTEM_DESIGNATION_DISP_CLASH_NO_LANG"; + public static final String CODESYSTEM_NOT_CONTAINED = "CODESYSTEM_NOT_CONTAINED"; + public static final String CODESYSTEM_PROPERTY_BAD_HL7_URI = "CODESYSTEM_PROPERTY_BAD_HL7_URI"; + public static final String CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH = "CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH"; + public static final String CODESYSTEM_PROPERTY_CODE_WARNING = "CODESYSTEM_PROPERTY_CODE_WARNING"; + public static final String CODESYSTEM_PROPERTY_DUPLICATE_CODE = "CODESYSTEM_PROPERTY_DUPLICATE_CODE"; + public static final String CODESYSTEM_PROPERTY_DUPLICATE_URI = "CODESYSTEM_PROPERTY_DUPLICATE_URI"; + public static final String CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE = "CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE"; + public static final String CODESYSTEM_PROPERTY_NO_VALUE = "CODESYSTEM_PROPERTY_NO_VALUE"; + public static final String CODESYSTEM_PROPERTY_SYNONYM_CHECK = "CODESYSTEM_PROPERTY_SYNONYM_CHECK"; + public static final String CODESYSTEM_PROPERTY_UNDEFINED = "CODESYSTEM_PROPERTY_UNDEFINED"; + public static final String CODESYSTEM_PROPERTY_UNKNOWN_CODE = "CODESYSTEM_PROPERTY_UNKNOWN_CODE"; + public static final String CODESYSTEM_PROPERTY_URI_CODE_MISMATCH = "CODESYSTEM_PROPERTY_URI_CODE_MISMATCH"; + public static final String CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH = "CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH"; + public static final String CODESYSTEM_PROPERTY_WRONG_TYPE = "CODESYSTEM_PROPERTY_WRONG_TYPE"; + public static final String CODESYSTEM_SHAREABLE_EXTRA_MISSING = "CODESYSTEM_SHAREABLE_EXTRA_MISSING"; + public static final String CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = "CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7"; + public static final String CODESYSTEM_SHAREABLE_MISSING = "CODESYSTEM_SHAREABLE_MISSING"; + public static final String CODESYSTEM_SHAREABLE_MISSING_HL7 = "CODESYSTEM_SHAREABLE_MISSING_HL7"; + public static final String CODESYSTEM_SUPP_NO_DISPLAY = "CODESYSTEM_SUPP_NO_DISPLAY"; + public static final String CODESYSTEM_THO_CHECK = "CODESYSTEM_THO_CHECK"; + public static final String CODE_CASE_DIFFERENCE = "CODE_CASE_DIFFERENCE"; public static final String CODE_FOUND_IN_EXPANSION_HOWEVER_ = "Code_found_in_expansion_however_"; public static final String CODING_HAS_NO_SYSTEM__CANNOT_VALIDATE = "Coding_has_no_system__cannot_validate"; - public static final String Coding_has_no_system__cannot_validate_NO_INFER = "Coding_has_no_system__cannot_validate_NO_INFER"; + public static final String CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = "CONCEPTMAP_GROUP_SOURCE_CODE_INVALID"; + public static final String CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS = "CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS"; + public static final String CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = "CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID"; + public static final String CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = "CONCEPTMAP_GROUP_SOURCE_INCOMPLETE"; + public static final String CONCEPTMAP_GROUP_SOURCE_MISSING = "CONCEPTMAP_GROUP_SOURCE_MISSING"; + public static final String CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE = "CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE"; + public static final String CONCEPTMAP_GROUP_SOURCE_UNKNOWN = "CONCEPTMAP_GROUP_SOURCE_UNKNOWN"; + public static final String CONCEPTMAP_GROUP_TARGET_CODE_INVALID = "CONCEPTMAP_GROUP_TARGET_CODE_INVALID"; + public static final String CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS = "CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS"; + public static final String CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID = "CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID"; + public static final String CONCEPTMAP_GROUP_TARGET_INCOMPLETE = "CONCEPTMAP_GROUP_TARGET_INCOMPLETE"; + public static final String CONCEPTMAP_GROUP_TARGET_MISSING = "CONCEPTMAP_GROUP_TARGET_MISSING"; + public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID = "CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID"; + public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID = "CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID"; + public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH"; + public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM"; + public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM"; + public static final String CONCEPTMAP_GROUP_TARGET_SERVER_SIDE = "CONCEPTMAP_GROUP_TARGET_SERVER_SIDE"; + public static final String CONCEPTMAP_GROUP_TARGET_UNKNOWN = "CONCEPTMAP_GROUP_TARGET_UNKNOWN"; + public static final String CONCEPTMAP_SHAREABLE_EXTRA_MISSING = "CONCEPTMAP_SHAREABLE_EXTRA_MISSING"; + public static final String CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = "CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7"; + public static final String CONCEPTMAP_SHAREABLE_MISSING = "CONCEPTMAP_SHAREABLE_MISSING"; + public static final String CONCEPTMAP_SHAREABLE_MISSING_HL7 = "CONCEPTMAP_SHAREABLE_MISSING_HL7"; + public static final String CONCEPTMAP_VS_CONCEPT_CODE_UNKNOWN_SYSTEM = "CONCEPTMAP_VS_CONCEPT_CODE_UNKNOWN_SYSTEM"; + public static final String CONCEPTMAP_VS_INVALID_CONCEPT_CODE = "CONCEPTMAP_VS_INVALID_CONCEPT_CODE"; + public static final String CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER = "CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER"; + public static final String CONCEPTMAP_VS_TOO_MANY_CODES = "CONCEPTMAP_VS_TOO_MANY_CODES"; + public static final String CONTAINED_ORPHAN_DOM3 = "CONTAINED_ORPHAN_DOM3"; public static final String CONTAINED_RESOURCE_DOES_NOT_APPEAR_TO_BE_A_FHIR_RESOURCE_UNKNOWN_NAME_ = "Contained_resource_does_not_appear_to_be_a_FHIR_resource_unknown_name_"; + public static final String CS_SCT_IPS_NOT_IPS = "CS_SCT_IPS_NOT_IPS"; + public static final String Coding_has_no_system__cannot_validate_NO_INFER = "Coding_has_no_system__cannot_validate_NO_INFER"; public static final String Could_not_match_discriminator_for_slice_in_profile = "Could_not_match_discriminator_for_slice_in_profile"; public static final String DEFINED_IN_THE_PROFILE = "defined_in_the_profile"; public static final String DELIMITED_VERSIONS_HAVE_EXACT_MATCH_FOR_DELIMITER____VS_ = "Delimited_versions_have_exact_match_for_delimiter____vs_"; @@ -77,10 +174,10 @@ public class I18nConstants { public static final String DID_NOT_FIND_TYPE_ROOT_ = "Did_not_find_type_root_"; public static final String DIFFERENTIAL_DOES_NOT_HAVE_A_SLICE__B_OF_____IN_PROFILE_ = "Differential_does_not_have_a_slice__b_of_____in_profile_"; public static final String DIFFERENTIAL_WALKS_INTO____BUT_THE_BASE_DOES_NOT_AND_THERE_IS_NOT_A_SINGLE_FIXED_TYPE_THE_TYPE_IS__THIS_IS_NOT_HANDLED_YET = "Differential_walks_into____but_the_base_does_not_and_there_is_not_a_single_fixed_type_The_type_is__This_is_not_handled_yet"; + public static final String DISCRIMINATOR_BAD_PATH = "DISCRIMINATOR_BAD_PATH"; public static final String DISCRIMINATOR__IS_BASED_ON_ELEMENT_EXISTENCE_BUT_SLICE__NEITHER_SETS_MIN1_OR_MAX0 = "Discriminator__is_based_on_element_existence_but_slice__neither_sets_min1_or_max0"; public static final String DISCRIMINATOR__IS_BASED_ON_TYPE_BUT_SLICE__IN__HAS_MULTIPLE_TYPES = "Discriminator__is_based_on_type_but_slice__in__has_multiple_types"; public static final String DISCRIMINATOR__IS_BASED_ON_TYPE_BUT_SLICE__IN__HAS_NO_TYPES = "Discriminator__is_based_on_type_but_slice__in__has_no_types"; - public static final String DISCRIMINATOR_BAD_PATH = "DISCRIMINATOR_BAD_PATH"; public static final String DISPLAY_NAME_FOR__SHOULD_BE_ONE_OF__INSTEAD_OF = "Display_Name_for__should_be_one_of__instead_of"; public static final String DISPLAY_NAME_WS_FOR__SHOULD_BE_ONE_OF__INSTEAD_OF = "Display_Name_WS_for__should_be_one_of__instead_of"; public static final String DOCUMENT = "documentmsg"; @@ -88,13 +185,22 @@ public class I18nConstants { public static final String DOCUMENT_DATE_REQUIRED_HTML = "Bundle_Document_Date_Missing_html"; public static final String DOES_NOT_MATCH_SLICE_ = "Does_not_match_slice_"; public static final String DUPLICATE_ID = "DUPLICATE_ID"; + public static final String DUPLICATE_JSON_PROPERTY = "DUPLICATE_JSON_PROPERTY"; + public static final String DUPLICATE_JSON_PROPERTY_KEY = "DUPLICATE_JSON_PROPERTY_KEY"; public static final String DUPLICATE_RESOURCE_ = "Duplicate_Resource_"; -// public static final String DUPLICATE_RESOURCE_VERSION = "DUPLICATE_RESOURCE_VERSION"; + public static final String ED_CONTEXT_INVARIANT_EXPRESSION_ERROR = "ED_CONTEXT_INVARIANT_EXPRESSION_ERROR"; + public static final String ED_INVARIANT_DIFF_NO_SOURCE = "ED_INVARIANT_DIFF_NO_SOURCE"; + public static final String ED_INVARIANT_EXPRESSION_CONFLICT = "ED_INVARIANT_EXPRESSION_CONFLICT"; + public static final String ED_INVARIANT_EXPRESSION_ERROR = "ED_INVARIANT_EXPRESSION_ERROR"; + public static final String ED_INVARIANT_KEY_ALREADY_USED = "ED_INVARIANT_KEY_ALREADY_USED"; + public static final String ED_INVARIANT_NO_EXPRESSION = "ED_INVARIANT_NO_EXPRESSION"; + public static final String ED_INVARIANT_NO_KEY = "ED_INVARIANT_NO_KEY"; + public static final String ED_PATH_WRONG_TYPE_MATCH = "ED_PATH_WRONG_TYPE_MATCH"; + public static final String ED_SEARCH_EXPRESSION_ERROR = "ED_SEARCH_EXPRESSION_ERROR"; public static final String ELEMENT_CANNOT_BE_NULL = "ELEMENT_CANNOT_BE_NULL"; public static final String ELEMENT_ID__NULL__ON_ = "element_id__null__on_"; public static final String ELEMENT_MUST_HAVE_SOME_CONTENT = "Element_must_have_some_content"; public static final String ELEMENT__NULL_ = "element__null_"; - public static final String SLICING_CANNOT_BE_EVALUATED = "SLICING_CANNOT_BE_EVALUATED"; public static final String ERROR_AT_PATH__IN__TYPE_SLICING_WITH_SLICINGDISCRIMINATORCOUNT__1 = "Error_at_path__in__Type_slicing_with_slicingdiscriminatorcount__1"; public static final String ERROR_AT_PATH__IN__TYPE_SLICING_WITH_SLICINGDISCRIMINATORPATH__THIS = "Error_at_path__in__Type_slicing_with_slicingdiscriminatorpath__this"; public static final String ERROR_AT_PATH__IN__TYPE_SLICING_WITH_SLICINGDISCRIMINATORTYPE__TYPE = "Error_at_path__in__Type_slicing_with_slicingdiscriminatortype__type"; @@ -117,10 +223,12 @@ public class I18nConstants { public static final String ERROR_READING__FROM_PACKAGE__ = "Error_reading__from_package__"; public static final String ERROR_VALIDATING_CODE_RUNNING_WITHOUT_TERMINOLOGY_SERVICES = "Error_validating_code_running_without_terminology_services"; public static final String ERROR_WRITING_NUMBER__TO_JSON = "error_writing_number__to_JSON"; - public static final String EXTENSION_EXTP_CONTEXT_WRONG = "Extension_EXTP_Context_Wrong"; - public static final String EXTENSION_EXTP_CONTEXT_WRONG_XVER = "EXTENSION_EXTP_CONTEXT_WRONG_XVER"; + public static final String EXTENSION_CONTEXT_UNABLE_TO_CHECK_PROFILE = "EXTENSION_CONTEXT_UNABLE_TO_CHECK_PROFILE"; + public static final String EXTENSION_CONTEXT_UNABLE_TO_FIND_PROFILE = "EXTENSION_CONTEXT_UNABLE_TO_FIND_PROFILE"; public static final String EXTENSION_EXTM_CONTEXT_WRONG = "Extension_EXTM_Context_Wrong"; public static final String EXTENSION_EXTM_CONTEXT_WRONG_XVER = "EXTENSION_EXTM_CONTEXT_WRONG_XVER"; + public static final String EXTENSION_EXTP_CONTEXT_WRONG = "Extension_EXTP_Context_Wrong"; + public static final String EXTENSION_EXTP_CONTEXT_WRONG_XVER = "EXTENSION_EXTP_CONTEXT_WRONG_XVER"; public static final String EXTENSION_EXT_COUNT_MISMATCH = "Extension_EXT_Count_Mismatch"; public static final String EXTENSION_EXT_COUNT_NOTFOUND = "Extension_EXT_Count_NotFound"; public static final String EXTENSION_EXT_FIXED_BANNED = "Extension_EXT_Fixed_Banned"; @@ -141,14 +249,30 @@ public class I18nConstants { public static final String EXTENSION_EXT_VERSION_INVALIDID = "Extension_EXT_Version_InvalidId"; public static final String EXTENSION_EXT_VERSION_NOCHANGE = "Extension_EXT_Version_NoChange"; public static final String EXTENSION_PROF_TYPE = "Extension_PROF_Type"; + public static final String EXT_VER_URL_IGNORE = "EXT_VER_URL_IGNORE"; + public static final String EXT_VER_URL_MISLEADING = "EXT_VER_URL_MISLEADING"; + public static final String EXT_VER_URL_NOT_ALLOWED = "EXT_VER_URL_NOT_ALLOWED"; + public static final String EXT_VER_URL_NO_MATCH = "EXT_VER_URL_NO_MATCH"; + public static final String EXT_VER_URL_REVERSION = "EXT_VER_URL_REVERSION"; public static final String FHIRPATH_ALIAS_COLLECTION = "FHIRPATH_ALIAS_COLLECTION"; -// public static final String FHIRPATH_BAD_DATE = "FHIRPATH_BAD_DATE"; + public static final String FHIRPATH_ARITHMETIC_MINUS = "FHIRPATH_ARITHMETIC_MINUS"; + public static final String FHIRPATH_ARITHMETIC_PLUS = "FHIRPATH_ARITHMETIC_PLUS"; + public static final String FHIRPATH_ARITHMETIC_QTY = "FHIRPATH_ARITHMETIC_QTY"; + public static final String FHIRPATH_ARITHMETIC_UNIT = "FHIRPATH_ARITHMETIC_UNIT"; + public static final String FHIRPATH_AS_COLLECTION = "FHIRPATH_AS_COLLECTION"; + public static final String FHIRPATH_AS_IMPOSSIBLE = "FHIRPATH_AS_IMPOSSIBLE"; public static final String FHIRPATH_CANNOT_USE = "FHIRPATH_CANNOT_USE"; public static final String FHIRPATH_CANT_COMPARE = "FHIRPATH_CANT_COMPARE"; public static final String FHIRPATH_CHECK_FAILED = "FHIRPATH_CHECK_FAILED"; + public static final String FHIRPATH_CHOICE_NO_TYPE_SPECIFIER = "FHIRPATH_CHOICE_NO_TYPE_SPECIFIER"; + public static final String FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER = "FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER"; public static final String FHIRPATH_CODED_ONLY = "FHIRPATH_CODED_ONLY"; - public static final String FHIRPATH_DECIMAL_ONLY = "FHIRPATH_DECIMAL_ONLY"; + public static final String FHIRPATH_COLLECTION_STATUS_CONTEXT = "FHIRPATH_COLLECTION_STATUS_CONTEXT"; + public static final String FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT = "FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT"; + public static final String FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT = "FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT"; + public static final String FHIRPATH_COLLECTION_STATUS_PARAMETER = "FHIRPATH_COLLECTION_STATUS_PARAMETER"; public static final String FHIRPATH_CONTINUOUS_ONLY = "FHIRPATH_CONTINUOUS_ONLY"; + public static final String FHIRPATH_DECIMAL_ONLY = "FHIRPATH_DECIMAL_ONLY"; public static final String FHIRPATH_DISCRIMINATOR_BAD_NAME = "FHIRPATH_DISCRIMINATOR_BAD_NAME"; public static final String FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_CONST = "FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_CONST"; public static final String FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_GROUP = "FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_GROUP"; @@ -163,22 +287,24 @@ public class I18nConstants { public static final String FHIRPATH_DISCRIMINATOR_RESOLVE_NOT_REFERENCE = "FHIRPATH_DISCRIMINATOR_RESOLVE_NOT_REFERENCE"; public static final String FHIRPATH_DISCRIMINATOR_RESOLVE_NO_TYPE = "FHIRPATH_DISCRIMINATOR_RESOLVE_NO_TYPE"; public static final String FHIRPATH_DISCRIMINATOR_THIS_CANNOT_FIND = "FHIRPATH_DISCRIMINATOR_THIS_CANNOT_FIND"; -// public static final String FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE = "FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE"; public static final String FHIRPATH_DISCRIMINATOR_TYPE_NONE = "FHIRPATH_DISCRIMINATOR_TYPE_NONE"; public static final String FHIRPATH_FOCUS = "FHIRPATH_FOCUS"; public static final String FHIRPATH_HO_HOST_SERVICES = "FHIRPATH_HO_HOST_SERVICES"; + public static final String FHIRPATH_INVALID_TYPE = "FHIRPATH_INVALID_TYPE"; public static final String FHIRPATH_LEFT_VALUE = "FHIRPATH_LEFT_VALUE"; public static final String FHIRPATH_LEFT_VALUE_WRONG_TYPE = "FHIRPATH_LEFT_VALUE_WRONG_TYPE"; public static final String FHIRPATH_LOCATION = "FHIRPATH_LOCATION"; + public static final String FHIRPATH_NOT_A_COLLECTION = "FHIRPATH_NOT_A_COLLECTION"; public static final String FHIRPATH_NOT_IMPLEMENTED = "FHIRPATH_NOT_IMPLEMENTED"; public static final String FHIRPATH_NO_COLLECTION = "FHIRPATH_NO_COLLECTION"; public static final String FHIRPATH_NO_TYPE = "FHIRPATH_NO_TYPE"; - public static final String FHIRPATH_UNKNOWN_TYPE = "FHIRPATH_UNKNOWN_TYPE"; public static final String FHIRPATH_NUMERICAL_ONLY = "FHIRPATH_NUMERICAL_ONLY"; + public static final String FHIRPATH_OFTYPE_IMPOSSIBLE = "FHIRPATH_OFTYPE_IMPOSSIBLE"; public static final String FHIRPATH_OP_INCOMPATIBLE = "FHIRPATH_OP_INCOMPATIBLE"; public static final String FHIRPATH_ORDERED_ONLY = "FHIRPATH_ORDERED_ONLY"; public static final String FHIRPATH_PARAM_WRONG = "FHIRPATH_PARAM_WRONG"; public static final String FHIRPATH_PRIMITIVE_ONLY = "FHIRPATH_PRIMITIVE_ONLY"; + public static final String FHIRPATH_REDEFINE_VARIABLE = "FHIRPATH_REDEFINE_VARIABLE"; public static final String FHIRPATH_REFERENCE_ONLY = "FHIRPATH_REFERENCE_ONLY"; public static final String FHIRPATH_RESOLVE_DISCRIMINATOR_CANT_FIND = "FHIRPATH_RESOLVE_DISCRIMINATOR_CANT_FIND"; public static final String FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET = "FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET"; @@ -190,7 +316,9 @@ public class I18nConstants { public static final String FHIRPATH_UNKNOWN_CONSTANT = "FHIRPATH_UNKNOWN_CONSTANT"; public static final String FHIRPATH_UNKNOWN_CONTEXT = "FHIRPATH_UNKNOWN_CONTEXT"; public static final String FHIRPATH_UNKNOWN_CONTEXT_ELEMENT = "FHIRPATH_UNKNOWN_CONTEXT_ELEMENT"; + public static final String FHIRPATH_UNKNOWN_EXTENSION = "FHIRPATH_UNKNOWN_EXTENSION"; public static final String FHIRPATH_UNKNOWN_NAME = "FHIRPATH_UNKNOWN_NAME"; + public static final String FHIRPATH_UNKNOWN_TYPE = "FHIRPATH_UNKNOWN_TYPE"; public static final String FHIRPATH_WRONG_PARAM_TYPE = "FHIRPATH_WRONG_PARAM_TYPE"; public static final String FIXED_TYPE_CHECKS_DT_ADDRESS_LINE = "Fixed_Type_Checks_DT_Address_Line"; public static final String FIXED_TYPE_CHECKS_DT_NAME_FAMILY = "Fixed_Type_Checks_DT_Name_Family"; @@ -199,23 +327,47 @@ public class I18nConstants { public static final String FIXED_TYPE_CHECKS_DT_NAME_SUFFIX = "Fixed_Type_Checks_DT_Name_Suffix"; public static final String FOUND__ITEMS_FOR__RESOLVING_DISCRIMINATOR__FROM_ = "Found__items_for__resolving_discriminator__from_"; public static final String GETSLICELIST_SHOULD_ONLY_BE_CALLED_WHEN_THE_ELEMENT_HAS_SLICING = "getSliceList_should_only_be_called_when_the_element_has_slicing"; + public static final String ILLEGAL_COMMENT_TYPE = "ILLEGAL_COMMENT_TYPE"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__ILLEGAL_CHARACTERS_ = "Illegal_path__in_differential_in__illegal_characters_"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__ILLEGAL_CHARACTER_ = "Illegal_path__in_differential_in__illegal_character_"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__MUST_START_WITH_ = "Illegal_path__in_differential_in__must_start_with_"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__NAME_PORTION_EXCEEDS_64_CHARS_IN_LENGTH = "Illegal_path__in_differential_in__name_portion_exceeds_64_chars_in_length"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__NAME_PORTION_MISING_ = "Illegal_path__in_differential_in__name_portion_mising_"; public static final String ILLEGAL_PATH__IN_DIFFERENTIAL_IN__NO_UNICODE_WHITESPACE = "Illegal_path__in_differential_in__no_unicode_whitespace"; + public static final String ILLEGAL_PROPERTY = "ILLEGAL_PROPERTY"; public static final String INTERNAL_ERROR___TYPE_NOT_KNOWN_ = "Internal_error___type_not_known_"; public static final String INTERNAL_INT_BAD_TYPE = "Internal_INT_Bad_Type"; -// public static final String INTERNAL_RECURSION_DETECTION_FIND_LOOP_PATH_RECURSION____CHECK_PATHS_ARE_VALID_FOR_PATH_ = "Internal_recursion_detection_find_loop_path_recursion____check_paths_are_valid_for_path_"; + public static final String INVALID_SLICING__THERE_IS_MORE_THAN_ONE_TYPE_SLICE_AT__BUT_ONE_OF_THEM__HAS_MIN__1_SO_THE_OTHER_SLICES_CANNOT_EXIST = "Invalid_slicing__there_is_more_than_one_type_slice_at__but_one_of_them__has_min__1_so_the_other_slices_cannot_exist"; public static final String INV_FAILED = "INV_FAILED"; public static final String INV_FAILED_SOURCE = "INV_FAILED_SOURCE"; - public static final String INVALID_SLICING__THERE_IS_MORE_THAN_ONE_TYPE_SLICE_AT__BUT_ONE_OF_THEM__HAS_MIN__1_SO_THE_OTHER_SLICES_CANNOT_EXIST = "Invalid_slicing__there_is_more_than_one_type_slice_at__but_one_of_them__has_min__1_so_the_other_slices_cannot_exist"; + public static final String JSON_COMMA_EXTRA = "JSON_COMMA_EXTRA"; + public static final String JSON_COMMA_MISSING = "JSON_COMMA_MISSING"; + public static final String JSON_COMMENTS_NOT_ALLOWED = "JSON_COMMENTS_NOT_ALLOWED"; + public static final String JSON_PROPERTY_NO_QUOTES = "JSON_PROPERTY_NO_QUOTES"; + public static final String JSON_PROPERTY_VALUE_NO_QUOTES = "JSON_PROPERTY_VALUE_NO_QUOTES"; public static final String LANGUAGE_XHTML_LANG_DIFFERENT1 = "Language_XHTML_Lang_Different1"; public static final String LANGUAGE_XHTML_LANG_DIFFERENT2 = "Language_XHTML_Lang_Different2"; public static final String LANGUAGE_XHTML_LANG_MISSING1 = "Language_XHTML_Lang_Missing1"; public static final String LANGUAGE_XHTML_LANG_MISSING2 = "Language_XHTML_Lang_Missing2"; public static final String LANGUAGE_XHTML_LANG_MISSING3 = "Language_XHTML_Lang_Missing3"; + public static final String LIQUID_SYNTAX_COLON = "LIQUID_SYNTAX_COLON"; + public static final String LIQUID_SYNTAX_EXPECTING = "LIQUID_SYNTAX_EXPECTING"; + public static final String LIQUID_SYNTAX_INCLUDE = "LIQUID_SYNTAX_INCLUDE"; + public static final String LIQUID_SYNTAX_LOOP = "LIQUID_SYNTAX_LOOP"; + public static final String LIQUID_SYNTAX_NOTERM = "LIQUID_SYNTAX_NOTERM"; + public static final String LIQUID_SYNTAX_NUMBER = "LIQUID_SYNTAX_NUMBER"; + public static final String LIQUID_SYNTAX_UNEXPECTED = "LIQUID_SYNTAX_UNEXPECTED"; + public static final String LIQUID_SYNTAX_UNTERMINATED = "LIQUID_SYNTAX_UNTERMINATED"; + public static final String LIQUID_UNKNOWN_FILTER = "LIQUID_UNKNOWN_FILTER"; + public static final String LIQUID_UNKNOWN_FLOW_STMT = "LIQUID_UNKNOWN_FLOW_STMT"; + public static final String LIQUID_UNKNOWN_NOEND = "LIQUID_UNKNOWN_NOEND"; + public static final String LIQUID_UNKNOWN_NOTERM = "LIQUID_UNKNOWN_NOTERM"; + public static final String LIQUID_UNKNOWN_SYNTAX = "LIQUID_UNKNOWN_SYNTAX"; + public static final String LIQUID_VARIABLE_ALREADY_ASSIGNED = "LIQUID_VARIABLE_ALREADY_ASSIGNED"; + public static final String LIQUID_VARIABLE_ILLEGAL = "LIQUID_VARIABLE_ILLEGAL"; + public static final String LOGICAL_MODEL_NAME_MISMATCH = "LOGICAL_MODEL_NAME_MISMATCH"; + public static final String LOGICAL_MODEL_QNAME_MISMATCH = "LOGICAL_MODEL_QNAME_MISMATCH"; + public static final String MEASURE_MR_GRPST_POP_UNK_CODE = "MEASURE_MR_GRPST_POP_UNK_CODE"; public static final String MEASURE_MR_GRP_DUPL_CODE = "MEASURE_MR_GRP_DUPL_CODE"; public static final String MEASURE_MR_GRP_MISSING_BY_CODE = "MEASURE_MR_GRP_MISSING_BY_CODE"; public static final String MEASURE_MR_GRP_NO_CODE = "MEASURE_MR_GRP_NO_CODE"; @@ -223,12 +375,10 @@ public class I18nConstants { public static final String MEASURE_MR_GRP_NO_WRONG_CODE = "MEASURE_MR_GRP_NO_WRONG_CODE"; public static final String MEASURE_MR_GRP_POP_COUNT_MISMATCH = "MEASURE_MR_GRP_POP_COUNT_MISMATCH"; public static final String MEASURE_MR_GRP_POP_DUPL_CODE = "MEASURE_MR_GRP_POP_DUPL_CODE"; -// public static final String MEASURE_MR_GRP_POP_MISSING_BY_CODE = "MEASURE_MR_GRP_POP_MISSING_BY_CODE"; public static final String MEASURE_MR_GRP_POP_NO_CODE = "MEASURE_MR_GRP_POP_NO_CODE"; public static final String MEASURE_MR_GRP_POP_NO_COUNT = "MEASURE_MR_GRP_POP_NO_COUNT"; public static final String MEASURE_MR_GRP_POP_NO_SUBJECTS = "MEASURE_MR_GRP_POP_NO_SUBJECTS"; public static final String MEASURE_MR_GRP_POP_UNK_CODE = "MEASURE_MR_GRP_POP_UNK_CODE"; - public static final String MEASURE_MR_GRPST_POP_UNK_CODE = "MEASURE_MR_GRPST_POP_UNK_CODE"; public static final String MEASURE_MR_GRP_UNK_CODE = "MEASURE_MR_GRP_UNK_CODE"; public static final String MEASURE_MR_M_NONE = "Measure_MR_M_None"; public static final String MEASURE_MR_M_NOTFOUND = "Measure_MR_M_NotFound"; @@ -241,7 +391,6 @@ public class I18nConstants { public static final String MEASURE_MR_SCORE_UNIT_REQUIRED = "MEASURE_MR_SCORE_UNIT_REQUIRED"; public static final String MEASURE_MR_SCORE_VALUE_INVALID_01 = "MEASURE_MR_SCORE_VALUE_INVALID_01"; public static final String MEASURE_MR_SCORE_VALUE_REQUIRED = "MEASURE_MR_SCORE_VALUE_REQUIRED"; -// public static final String MEASURE_M_CQL_NOT_FOUND = "MEASURE_M_CQL_NOT_FOUND"; public static final String MEASURE_M_CRITERIA_CQL_ELM_NOT_VALID = "MEASURE_M_CRITERIA_CQL_ELM_NOT_VALID"; public static final String MEASURE_M_CRITERIA_CQL_ERROR = "MEASURE_M_CRITERIA_CQL_ERROR"; public static final String MEASURE_M_CRITERIA_CQL_LIB_DUPL = "MEASURE_M_CRITERIA_CQL_LIB_DUPL"; @@ -254,12 +403,32 @@ public class I18nConstants { public static final String MEASURE_M_GROUP_CODE = "MEASURE_M_GROUP_CODE"; public static final String MEASURE_M_GROUP_POP = "MEASURE_M_GROUP_POP"; public static final String MEASURE_M_GROUP_POP_NO_CODE = "MEASURE_M_GROUP_POP_NO_CODE"; -// public static final String MEASURE_M_GROUP_STRATA = "MEASURE_M_GROUP_STRATA"; public static final String MEASURE_M_GROUP_STRATA_COMP_NO_CODE = "MEASURE_M_GROUP_STRATA_COMP_NO_CODE"; public static final String MEASURE_M_GROUP_STRATA_NO_CODE = "MEASURE_M_GROUP_STRATA_NO_CODE"; public static final String MEASURE_M_LIB_UNKNOWN = "MEASURE_M_LIB_UNKNOWN"; public static final String MEASURE_M_NO_GROUPS = "MEASURE_M_NO_GROUPS"; + public static final String MEASURE_SHAREABLE_EXTRA_MISSING = "MEASURE_SHAREABLE_EXTRA_MISSING"; + public static final String MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = "MEASURE_SHAREABLE_EXTRA_MISSING_HL7"; + public static final String MEASURE_SHAREABLE_MISSING = "MEASURE_SHAREABLE_MISSING"; + public static final String MEASURE_SHAREABLE_MISSING_HL7 = "MEASURE_SHAREABLE_MISSING_HL7"; public static final String META_RES_SECURITY_DUPLICATE = "Meta_RES_Security_Duplicate"; + public static final String MSG_DEPENDS_ON_DEPRECATED = "MSG_DEPENDS_ON_DEPRECATED"; + public static final String MSG_DEPENDS_ON_DRAFT = "MSG_DEPENDS_ON_DRAFT"; + public static final String MSG_DEPENDS_ON_EXPERIMENTAL = "MSG_DEPENDS_ON_EXPERIMENTAL"; + public static final String MSG_DEPENDS_ON_EXTENSION = "MSG_DEPENDS_ON_EXTENSION"; + public static final String MSG_DEPENDS_ON_PROFILE = "MSG_DEPENDS_ON_PROFILE"; + public static final String MSG_DEPENDS_ON_RETIRED = "MSG_DEPENDS_ON_RETIRED"; + public static final String MSG_DEPENDS_ON_WITHDRAWN = "MSG_DEPENDS_ON_WITHDRAWN"; + public static final String MSG_DEPRECATED = "MSG_DEPRECATED"; + public static final String MSG_DEPRECATED_SRC = "MSG_DEPRECATED_SRC"; + public static final String MSG_DRAFT = "MSG_DRAFT"; + public static final String MSG_DRAFT_SRC = "MSG_DRAFT_SRC"; + public static final String MSG_EXPERIMENTAL = "MSG_EXPERIMENTAL"; + public static final String MSG_EXPERIMENTAL_SRC = "MSG_EXPERIMENTAL_SRC"; + public static final String MSG_RETIRED = "MSG_RETIRED"; + public static final String MSG_RETIRED_SRC = "MSG_RETIRED_SRC"; + public static final String MSG_WITHDRAWN = "MSG_WITHDRAWN"; + public static final String MSG_WITHDRAWN_SRC = "MSG_WITHDRAWN_SRC"; public static final String MULTIPLE_LOGICAL_MODELS = "MULTIPLE_LOGICAL_MODELS"; public static final String MUSTSUPPORT_VAL_MUSTSUPPORT = "MustSupport_VAL_MustSupport"; public static final String NAMED_ITEMS_ARE_OUT_OF_ORDER_IN_THE_SLICE = "Named_items_are_out_of_order_in_the_slice"; @@ -267,9 +436,6 @@ public class I18nConstants { public static final String NODE_TYPE__IS_NOT_ALLOWED = "Node_type__is_not_allowed"; public static final String NONE_OF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ = "None_of_the_provided_codes_are_in_the_value_set"; public static final String NONE_OF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ONE = "None_of_the_provided_codes_are_in_the_value_set_one"; - public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_CS = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_CS"; - public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_VS = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_VS"; - public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_"; public static final String NOT_DONE_YET = "Not_done_yet"; public static final String NOT_DONE_YET_CANT_FETCH_ = "not_done_yet_cant_fetch_"; public static final String NOT_DONE_YET_VALIDATORHOSTSERVICESCHECKFUNCTION = "Not_done_yet_ValidatorHostServicescheckFunction"; @@ -278,7 +444,6 @@ public class I18nConstants { public static final String NOT_DONE_YET_VALIDATORHOSTSERVICESRESOLVEFUNCTION_ = "Not_done_yet_ValidatorHostServicesresolveFunction_"; public static final String NOT_DONE_YET__RESOLVE__LOCALLY_2 = "Not_done_yet__resolve__locally_2"; public static final String NOT_HANDLED_YET_SORTELEMENTS_ = "Not_handled_yet_sortElements_"; -// public static final String NOT_SUPPORTED_YET = "Not_supported_yet"; public static final String NOT_THE_RIGHT_KIND_OF_STRUCTURE_TO_GENERATE_SCHEMATRONS_FOR = "not_the_right_kind_of_structure_to_generate_schematrons_for"; public static final String NO_BASE_PROFILE_PROVIDED = "no_base_profile_provided"; public static final String NO_DERIVED_STRUCTURE_PROVIDED = "no_derived_structure_provided"; @@ -294,12 +459,20 @@ public class I18nConstants { public static final String NO_URL_IN_EXPAND_VALUE_SET = "no_url_in_expand_value_set"; public static final String NO_URL_IN_EXPAND_VALUE_SET_2 = "no_url_in_expand_value_set_2"; public static final String NO_VALIDATOR_CONFIGURED = "No_validator_configured"; + public static final String NO_VALID_DISPLAY_FOUND = "NO_VALID_DISPLAY_FOUND"; public static final String NO_VALUE_SET_IN_URL = "no_value_set"; public static final String NULL_MIN = "null_min"; + public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT = "OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT"; + public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE = "OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE"; + public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST = "OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST"; + public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME = "OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME"; + public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE = "OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE"; public static final String OBJECT_MUST_HAVE_SOME_CONTENT = "Object_must_have_some_content"; public static final String PACKAGE_VERSION_MISMATCH = "PACKAGE_VERSION_MISMATCH"; public static final String PARSER_TYPE__NOT_SUPPORTED = "Parser_Type__not_supported"; public static final String PATTERN_CHECK_STRING = "PATTERN_CHECK_STRING"; + public static final String PRIMITIVE_MUSTHAVEVALUE_MESSAGE = "PRIMITIVE_MUSTHAVEVALUE_MESSAGE"; + public static final String PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE = "PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE"; public static final String PROBLEM_EVALUATING_SLICING_EXPRESSION_FOR_ELEMENT_IN_PROFILE__PATH__FHIRPATH___ = "Problem_evaluating_slicing_expression_for_element_in_profile__path__fhirPath___"; public static final String PROBLEM_PROCESSING_EXPRESSION__IN_PROFILE__PATH__ = "Problem_processing_expression__in_profile__path__"; public static final String PROFILE_BASED_DISCRIMINATORS_MUST_HAVE_A_TYPE_WITH_A_PROFILE__IN_PROFILE_ = "Profile_based_discriminators_must_have_a_type_with_a_profile__in_profile_"; @@ -334,7 +507,6 @@ public class I18nConstants { public static final String QUESTIONNAIRE_QR_ITEM_NOOPTIONSSTRING = "Questionnaire_QR_Item_NoOptionsString"; public static final String QUESTIONNAIRE_QR_ITEM_NOOPTIONSTIME = "Questionnaire_QR_Item_NoOptionsTime"; public static final String QUESTIONNAIRE_QR_ITEM_NOSTRING = "Questionnaire_QR_Item_NoString"; -// public static final String QUESTIONNAIRE_QR_ITEM_NOTENABLED = "Questionnaire_QR_Item_NotEnabled"; public static final String QUESTIONNAIRE_QR_ITEM_NOTENABLED2 = "Questionnaire_QR_Item_NotEnabled2"; public static final String QUESTIONNAIRE_QR_ITEM_NOTFOUND = "Questionnaire_QR_Item_NotFound"; public static final String QUESTIONNAIRE_QR_ITEM_NOTIME = "Questionnaire_QR_Item_NoTime"; @@ -348,11 +520,28 @@ public class I18nConstants { public static final String QUESTIONNAIRE_QR_ITEM_WRONGTYPE = "Questionnaire_QR_Item_WrongType"; public static final String QUESTIONNAIRE_QR_Q_NONE = "Questionnaire_QR_Q_None"; public static final String QUESTIONNAIRE_QR_Q_NOTFOUND = "Questionnaire_QR_Q_NotFound"; + public static final String QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED = "QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED"; + public static final String QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN = "QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN"; public static final String QUESTIONNAIRE_Q_ENABLEWHEN_AFTER = "Questionnaire_Q_EnableWhen_After"; public static final String QUESTIONNAIRE_Q_ENABLEWHEN_ISINNER = "Questionnaire_Q_EnableWhen_IsInner"; public static final String QUESTIONNAIRE_Q_ENABLEWHEN_NOLINK = "Questionnaire_Q_EnableWhen_NoLink"; public static final String QUESTIONNAIRE_Q_ENABLEWHEN_NOTARGET = "Questionnaire_Q_EnableWhen_NoTarget"; public static final String QUESTIONNAIRE_Q_ENABLEWHEN_SELF = "Questionnaire_Q_EnableWhen_Self"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS = "QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW = "QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION = "QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH = "QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE"; + public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS = "QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS"; + public static final String QUESTIONNAIRE_Q_ITEM_NOT_DERIVED = "QUESTIONNAIRE_Q_ITEM_NOT_DERIVED"; + public static final String QUESTIONNAIRE_Q_NO_DERIVATION_TYPE = "QUESTIONNAIRE_Q_NO_DERIVATION_TYPE"; + public static final String QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE = "QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE"; + public static final String QUESTIONNAIRE_Q_UNKNOWN_DERIVATION = "QUESTIONNAIRE_Q_UNKNOWN_DERIVATION"; public static final String REFERENCE_REF_AGGREGATION = "Reference_REF_Aggregation"; public static final String REFERENCE_REF_BADTARGETTYPE = "Reference_REF_BadTargetType"; public static final String REFERENCE_REF_BADTARGETTYPE2 = "Reference_REF_BadTargetType2"; @@ -366,12 +555,15 @@ public class I18nConstants { public static final String REFERENCE_REF_NODISPLAY = "Reference_REF_NoDisplay"; public static final String REFERENCE_REF_NOTFOUND_BUNDLE = "Reference_REF_NotFound_Bundle"; public static final String REFERENCE_REF_NOTYPE = "Reference_REF_NoType"; + public static final String REFERENCE_REF_QUERY_INVALID = "REFERENCE_REF_QUERY_INVALID"; public static final String REFERENCE_REF_RESOURCETYPE = "Reference_REF_ResourceType"; public static final String REFERENCE_REF_SUSPICIOUS = "REFERENCE_REF_SUSPICIOUS"; public static final String REFERENCE_REF_WRONGTARGET = "Reference_REF_WrongTarget"; public static final String REFERENCE_REF_WRONGTARGET_LOAD = "REFERENCE_REF_WRONGTARGET_LOAD"; public static final String REFERENCE_TO__CANNOT_BE_RESOLVED = "reference_to__cannot_be_resolved"; public static final String REFERENCE__REFERS_TO_A__NOT_A_VALUESET = "Reference__refers_to_a__not_a_ValueSet"; + public static final String REPEAT_SLICING_IGNORED = "REPEAT_SLICING_IGNORED"; + public static final String RESOURCETYPE_PROPERTY_WRONG_TYPE = "RESOURCETYPE_PROPERTY_WRONG_TYPE"; public static final String RESOURCE_RESOLUTION_SERVICES_NOT_PROVIDED = "Resource_resolution_services_not_provided"; public static final String RESOURCE_RES_ID_MALFORMED_CHARS = "Resource_RES_ID_Malformed_Chars"; public static final String RESOURCE_RES_ID_MALFORMED_LENGTH = "Resource_RES_ID_Malformed_Length"; @@ -379,40 +571,138 @@ public class I18nConstants { public static final String RESOURCE_RES_ID_PROHIBITED = "Resource_RES_ID_Prohibited"; public static final String RESOURCE_TYPE_MISMATCH_FOR___ = "Resource_type_mismatch_for___"; public static final String SAME_ID_ON_MULTIPLE_ELEMENTS__IN_ = "Same_id_on_multiple_elements__in_"; + public static final String SD_CONSTRAINED_KIND_NO_MATCH = "SD_CONSTRAINED_KIND_NO_MATCH"; + public static final String SD_CONSTRAINED_TYPE_NO_MATCH = "SD_CONSTRAINED_TYPE_NO_MATCH"; + public static final String SD_CONTEXT_SHOULD_NOT_BE_ELEMENT = "SD_CONTEXT_SHOULD_NOT_BE_ELEMENT"; + public static final String SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH = "SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH"; + public static final String SD_DERIVATION_KIND_MISMATCH = "SD_DERIVATION_KIND_MISMATCH"; + public static final String SD_ED_BIND_MULTIPLE_TYPES = "SD_ED_BIND_MULTIPLE_TYPES"; + public static final String SD_ED_BIND_NOT_VS = "SD_ED_BIND_NOT_VS"; + public static final String SD_ED_BIND_NO_BINDABLE = "SD_ED_BIND_NO_BINDABLE"; + public static final String SD_ED_BIND_UNKNOWN_VS = "SD_ED_BIND_UNKNOWN_VS"; + public static final String SD_ED_SHOULD_BIND_WITH_VS = "SD_ED_SHOULD_BIND_WITH_VS"; + public static final String SD_ED_TYPE_NO_TARGET_PROFILE = "SD_ED_TYPE_NO_TARGET_PROFILE"; + public static final String SD_ED_TYPE_PROFILE_IS_MODIFIER = "SD_ED_TYPE_PROFILE_IS_MODIFIER"; + public static final String SD_ED_TYPE_PROFILE_NOTYPE = "SD_ED_TYPE_PROFILE_NOTYPE"; + public static final String SD_ED_TYPE_PROFILE_NOT_MODIFIER = "SD_ED_TYPE_PROFILE_NOT_MODIFIER"; + public static final String SD_ED_TYPE_PROFILE_UNKNOWN = "SD_ED_TYPE_PROFILE_UNKNOWN"; + public static final String SD_ED_TYPE_PROFILE_WRONG = "SD_ED_TYPE_PROFILE_WRONG"; + public static final String SD_ED_TYPE_PROFILE_WRONG_TARGET = "SD_ED_TYPE_PROFILE_WRONG_TARGET"; + public static final String SD_ED_TYPE_PROFILE_WRONG_TYPE = "SD_ED_TYPE_PROFILE_WRONG_TYPE"; + public static final String SD_ELEMENT_FIXED_WRONG_TYPE = "SD_ELEMENT_FIXED_WRONG_TYPE"; + public static final String SD_ELEMENT_NOT_IN_CONSTRAINT = "SD_ELEMENT_NOT_IN_CONSTRAINT"; + public static final String SD_ELEMENT_PATTERN_WRONG_TYPE = "SD_ELEMENT_PATTERN_WRONG_TYPE"; + public static final String SD_ELEMENT_REASON_DERIVED = "SD_ELEMENT_REASON_DERIVED"; + public static final String SD_EXTENSION_URL_MISMATCH = "SD_EXTENSION_URL_MISMATCH"; + public static final String SD_EXTENSION_URL_MISSING = "SD_EXTENSION_URL_MISSING"; + public static final String SD_ILLEGAL_CHARACTERISTICS = "SD_ILLEGAL_CHARACTERISTICS"; public static final String SD_MUST_HAVE_DERIVATION = "SD_MUST_HAVE_DERIVATION"; public static final String SD_NESTED_MUST_SUPPORT_DIFF = "SD_NESTED_MUST_SUPPORT_DIFF"; public static final String SD_NESTED_MUST_SUPPORT_SNAPSHOT = "SD_NESTED_MUST_SUPPORT_SNAPSHOT"; - public static final String SD_DERIVATION_KIND_MISMATCH = "SD_DERIVATION_KIND_MISMATCH"; - public static final String SD_ED_TYPE_PROFILE_UNKNOWN = "SD_ED_TYPE_PROFILE_UNKNOWN"; - public static final String SD_ED_TYPE_PROFILE_NOTYPE = "SD_ED_TYPE_PROFILE_NOTYPE"; - public static final String SD_ED_TYPE_PROFILE_WRONG = "SD_ED_TYPE_PROFILE_WRONG"; - public static final String SD_ED_TYPE_PROFILE_IS_MODIFIER = "SD_ED_TYPE_PROFILE_IS_MODIFIER"; - public static final String SD_ED_TYPE_PROFILE_NOT_MODIFIER = "SD_ED_TYPE_PROFILE_NOT_MODIFIER"; - public static final String SD_ED_TYPE_PROFILE_WRONG_TARGET = "SD_ED_TYPE_PROFILE_WRONG_TARGET"; - public static final String SD_ED_TYPE_NO_TARGET_PROFILE = "SD_ED_TYPE_NO_TARGET_PROFILE"; -// public static final String SD_ED_SHOULD_BIND = "SD_ED_SHOULD_BIND"; - public static final String SD_ED_SHOULD_BIND_WITH_VS = "SD_ED_SHOULD_BIND_WITH_VS"; - public static final String SD_ED_BIND_UNKNOWN_VS = "SD_ED_BIND_UNKNOWN_VS"; - public static final String SD_ED_BIND_NOT_VS = "SD_ED_BIND_NOT_VS"; - public static final String SD_ED_BIND_NO_BINDABLE = "SD_ED_BIND_NO_BINDABLE"; - public static final String SD_ED_BIND_MULTIPLE_TYPES = "SD_ED_BIND_MULTIPLE_TYPES"; + public static final String SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION = "SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION"; + public static final String SD_NO_CONTEXT_WHEN_NOT_EXTENSION = "SD_NO_CONTEXT_WHEN_NOT_EXTENSION"; + public static final String SD_NO_SLICING_ON_ROOT = "SD_NO_SLICING_ON_ROOT"; + public static final String SD_NO_TYPES_OR_CONTENTREF = "SD_NO_TYPES_OR_CONTENTREF"; + public static final String SD_NO_TYPE_CODE_ON_CODE = "SD_NO_TYPE_CODE_ON_CODE"; + public static final String SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE = "SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE"; + public static final String SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE = "SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE"; + public static final String SD_OBGLIGATION_INHERITS_PROFILE_NO_TARGET = "SD_OBGLIGATION_INHERITS_PROFILE_NO_TARGET"; + public static final String SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND = "SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND"; + public static final String SD_OBGLIGATION_PROFILE_DERIVATION = "SD_OBGLIGATION_PROFILE_DERIVATION"; + public static final String SD_OBGLIGATION_PROFILE_ILLEGAL = "SD_OBGLIGATION_PROFILE_ILLEGAL"; + public static final String SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = "SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING"; + public static final String SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING = "SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING"; + public static final String SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE = "SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE"; + public static final String SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH = "SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH"; + public static final String SD_OBGLIGATION_PROFILE_PATH_WRONG = "SD_OBGLIGATION_PROFILE_PATH_WRONG"; + public static final String SD_OBGLIGATION_PROFILE_UKNOWN = "SD_OBGLIGATION_PROFILE_UKNOWN"; + public static final String SD_OBGLIGATION_PROFILE_UNMATCHED = "SD_OBGLIGATION_PROFILE_UNMATCHED"; + public static final String SD_PATH_TYPE_MISMATCH = "SD_PATH_TYPE_MISMATCH"; + public static final String SD_SPECIALIZED_TYPE_MATCHES = "SD_SPECIALIZED_TYPE_MATCHES"; + public static final String SD_TYPE_MISSING = "SD_TYPE_MISSING"; + public static final String SD_TYPE_NOT_DERIVED = "SD_TYPE_NOT_DERIVED"; + public static final String SD_TYPE_NOT_LOCAL = "SD_TYPE_NOT_LOCAL"; + public static final String SD_TYPE_NOT_LOGICAL = "SD_TYPE_NOT_LOGICAL"; + public static final String SD_TYPE_NOT_MATCH_NS = "SD_TYPE_NOT_MATCH_NS"; + public static final String SD_VALUE_COMPLEX_FIXED = "SD_VALUE_COMPLEX_FIXED"; public static final String SD_VALUE_TYPE_IILEGAL = "SD_VALUE_TYPE_IILEGAL"; public static final String SD_VALUE_TYPE_REPEAT_HINT = "SD_VALUE_TYPE_REPEAT_HINT"; - public static final String SD_VALUE_COMPLEX_FIXED = "SD_VALUE_COMPLEX_FIXED"; public static final String SD_VALUE_TYPE_REPEAT_WARNING_DOTNET = "SD_VALUE_TYPE_REPEAT_WARNING_DOTNET"; - public static final String SD_NO_TYPES_OR_CONTENTREF = "SD_NO_TYPES_OR_CONTENTREF"; - public static final String SD_ILLEGAL_CHARACTERISTICS = "SD_ILLEGAL_CHARACTERISTICS"; public static final String SEARCHPARAMETER_BASE_WRONG = "SEARCHPARAMETER_BASE_WRONG"; public static final String SEARCHPARAMETER_EXP_WRONG = "SEARCHPARAMETER_EXP_WRONG"; + public static final String SEARCHPARAMETER_MISSING_COMPONENTS = "SEARCHPARAMETER_MISSING_COMPONENTS"; public static final String SEARCHPARAMETER_NOTFOUND = "SEARCHPARAMETER_NOTFOUND"; public static final String SEARCHPARAMETER_TYPE_WRONG = "SEARCHPARAMETER_TYPE_WRONG"; public static final String SECURITY_STRING_CONTENT_ERROR = "SECURITY_STRING_CONTENT_ERROR"; public static final String SECURITY_STRING_CONTENT_WARNING = "SECURITY_STRING_CONTENT_WARNING"; public static final String SLICE_ENCOUNTERED_MIDWAY_THROUGH_SET_PATH___ID___ = "Slice_encountered_midway_through_set_path___id___"; + public static final String SLICING_CANNOT_BE_EVALUATED = "SLICING_CANNOT_BE_EVALUATED"; public static final String SLICING_RULES_ON_DIFFERENTIAL__DO_NOT_MATCH_THOSE_ON_BASE___DISCIMINATOR___ = "Slicing_rules_on_differential__do_not_match_those_on_base___disciminator___"; public static final String SLICING_RULES_ON_DIFFERENTIAL__DO_NOT_MATCH_THOSE_ON_BASE___ORDER___ = "Slicing_rules_on_differential__do_not_match_those_on_base___order___"; public static final String SLICING_RULES_ON_DIFFERENTIAL__DO_NOT_MATCH_THOSE_ON_BASE___RULE___ = "Slicing_rules_on_differential__do_not_match_those_on_base___rule___"; + public static final String SM_DEPENDENT_PARAM_MODE_MISMATCH = "SM_DEPENDENT_PARAM_MODE_MISMATCH"; + public static final String SM_DEPENDENT_PARAM_NOT_FOUND = "SM_DEPENDENT_PARAM_NOT_FOUND"; + public static final String SM_DEPENDENT_PARAM_TYPE_MISMATCH = "SM_DEPENDENT_PARAM_TYPE_MISMATCH"; + public static final String SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE = "SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE"; + public static final String SM_GROUP_INPUT_DUPLICATE = "SM_GROUP_INPUT_DUPLICATE"; + public static final String SM_GROUP_INPUT_MODE_INVALID = "SM_GROUP_INPUT_MODE_INVALID"; + public static final String SM_GROUP_INPUT_MODE_MISMATCH = "SM_GROUP_INPUT_MODE_MISMATCH"; + public static final String SM_GROUP_INPUT_NO_TYPE = "SM_GROUP_INPUT_NO_TYPE"; + public static final String SM_GROUP_INPUT_TYPE_NOT_DECLARED = "SM_GROUP_INPUT_TYPE_NOT_DECLARED"; + public static final String SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE = "SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE"; + public static final String SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE = "SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE"; + public static final String SM_GROUP_NAME_DUPLICATE = "SM_GROUP_NAME_DUPLICATE"; + public static final String SM_IMPORT_NOT_FOUND = "SM_IMPORT_NOT_FOUND"; + public static final String SM_LIST_RULE_ID_ONLY_WHEN_SHARE = "SM_LIST_RULE_ID_ONLY_WHEN_SHARE"; + public static final String SM_MATCHING_RULEGROUP_NOT_FOUND = "SM_MATCHING_RULEGROUP_NOT_FOUND"; + public static final String SM_NAME_INVALID = "SM_NAME_INVALID"; + public static final String SM_NO_LIST_MODE_NEEDED = "SM_NO_LIST_MODE_NEEDED"; + public static final String SM_NO_LIST_RULE_ID_NEEDED = "SM_NO_LIST_RULE_ID_NEEDED"; + public static final String SM_ORPHAN_GROUP = "SM_ORPHAN_GROUP"; + public static final String SM_RULEGROUP_NOT_FOUND = "SM_RULEGROUP_NOT_FOUND"; + public static final String SM_RULEGROUP_PARAM_COUNT_MISMATCH = "SM_RULEGROUP_PARAM_COUNT_MISMATCH"; + public static final String SM_RULE_SOURCE_LISTMODE_REDUNDANT = "SM_RULE_SOURCE_LISTMODE_REDUNDANT"; + public static final String SM_RULE_SOURCE_MAX_REDUNDANT = "SM_RULE_SOURCE_MAX_REDUNDANT"; + public static final String SM_RULE_SOURCE_MIN_REDUNDANT = "SM_RULE_SOURCE_MIN_REDUNDANT"; + public static final String SM_RULE_SOURCE_UNASSIGNED = "SM_RULE_SOURCE_UNASSIGNED"; + public static final String SM_SOURCE_CONTEXT_UNKNOWN = "SM_SOURCE_CONTEXT_UNKNOWN"; + public static final String SM_SOURCE_PATH_INVALID = "SM_SOURCE_PATH_INVALID"; + public static final String SM_SOURCE_TYPE_INVALID = "SM_SOURCE_TYPE_INVALID"; + public static final String SM_SOURCE_TYPE_NOT_FOUND = "SM_SOURCE_TYPE_NOT_FOUND"; + public static final String SM_TARGET_CONTEXT_UNKNOWN = "SM_TARGET_CONTEXT_UNKNOWN"; + public static final String SM_TARGET_NO_TRANSFORM_NO_CHECKED = "SM_TARGET_NO_TRANSFORM_NO_CHECKED"; + public static final String SM_TARGET_PATH_INVALID = "SM_TARGET_PATH_INVALID"; + public static final String SM_TARGET_PATH_MULTIPLE_MATCHES = "SM_TARGET_PATH_MULTIPLE_MATCHES"; + public static final String SM_TARGET_TRANSFORM_EXPRESSION_ERROR = "SM_TARGET_TRANSFORM_EXPRESSION_ERROR"; + public static final String SM_TARGET_TRANSFORM_MISSING_PARAMS = "SM_TARGET_TRANSFORM_MISSING_PARAMS"; + public static final String SM_TARGET_TRANSFORM_NOT_CHECKED = "SM_TARGET_TRANSFORM_NOT_CHECKED"; + public static final String SM_TARGET_TRANSFORM_OP_INVALID_TYPE = "SM_TARGET_TRANSFORM_OP_INVALID_TYPE"; + public static final String SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE = "SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE"; + public static final String SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE = "SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE"; + public static final String SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE = "SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE"; + public static final String SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE = "SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE"; + public static final String SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE = "SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE"; + public static final String SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND = "SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND"; + public static final String SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM = "SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM"; + public static final String SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE = "SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE"; + public static final String SM_TARGET_TRANSFORM_TYPE_UNKNOWN = "SM_TARGET_TRANSFORM_TYPE_UNKNOWN"; + public static final String SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE = "SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE"; + public static final String SM_TARGET_TRANSLATE_BINDING_SOURCE = "SM_TARGET_TRANSLATE_BINDING_SOURCE"; + public static final String SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED = "SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED"; + public static final String SM_TARGET_TRANSLATE_BINDING_TARGET = "SM_TARGET_TRANSLATE_BINDING_TARGET"; + public static final String SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG = "SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG"; + public static final String SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE = "SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE"; + public static final String SM_TARGET_TRANSLATE_BINDING_VSE_TARGET = "SM_TARGET_TRANSLATE_BINDING_VSE_TARGET"; + public static final String SM_TARGET_TRANSLATE_BINDING_VS_SOURCE = "SM_TARGET_TRANSLATE_BINDING_VS_SOURCE"; + public static final String SM_TARGET_TRANSLATE_BINDING_VS_TARGET = "SM_TARGET_TRANSLATE_BINDING_VS_TARGET"; + public static final String SM_TARGET_TYPE_MULTIPLE_POSSIBLE = "SM_TARGET_TYPE_MULTIPLE_POSSIBLE"; + public static final String SM_TARGET_TYPE_NOT_FOUND = "SM_TARGET_TYPE_NOT_FOUND"; public static final String SNAPSHOT_EXISTING_PROBLEM = "SNAPSHOT_EXISTING_PROBLEM"; + public static final String SNAPSHOT_IS_EMPTY = "SNAPSHOT_IS_EMPTY"; + public static final String STATUS_CODE_HINT = "STATUS_CODE_HINT"; + public static final String STATUS_CODE_HINT_CODE = "STATUS_CODE_HINT_CODE"; + public static final String STATUS_CODE_WARNING = "STATUS_CODE_WARNING"; + public static final String STATUS_CODE_WARNING_CODE = "STATUS_CODE_WARNING_CODE"; public static final String STRUCTUREDEFINITION__AT__ILLEGAL_CONSTRAINED_TYPE__FROM__IN_ = "StructureDefinition__at__illegal_constrained_type__from__in_"; public static final String TERMINOLOGY_PASSTHROUGH_TX_MESSAGE = "Terminology_PassThrough_TX_Message"; public static final String TERMINOLOGY_TX_BINDING_CANTCHECK = "Terminology_TX_Binding_CantCheck"; @@ -424,7 +714,6 @@ public class I18nConstants { public static final String TERMINOLOGY_TX_CODE_NOTVALID = "Terminology_TX_Code_NotValid"; public static final String TERMINOLOGY_TX_CODE_UNKNOWN = "Terminology_TX_Code_Unknown"; public static final String TERMINOLOGY_TX_CODE_VALUESET = "Terminology_TX_Code_ValueSet"; - public static final String Terminology_TX_Code_ValueSet_MISSING = "Terminology_TX_Code_ValueSet_MISSING"; 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 TERMINOLOGY_TX_CODING_COUNT = "Terminology_TX_Coding_Count"; @@ -432,7 +721,6 @@ public class I18nConstants { public static final String TERMINOLOGY_TX_CONFIRM_2_CC = "Terminology_TX_Confirm_2_CC"; public static final String TERMINOLOGY_TX_CONFIRM_3_CC = "Terminology_TX_Confirm_3_CC"; public static final String TERMINOLOGY_TX_CONFIRM_4a = "Terminology_TX_Confirm_4a"; -// public static final String TERMINOLOGY_TX_CONFIRM_4b = "Terminology_TX_Confirm_4b"; public static final String TERMINOLOGY_TX_CONFIRM_5 = "Terminology_TX_Confirm_5"; public static final String TERMINOLOGY_TX_CONFIRM_6 = "Terminology_TX_Confirm_6"; public static final String TERMINOLOGY_TX_DISPLAY_WRONG = "Terminology_TX_Display_Wrong"; @@ -440,7 +728,9 @@ public class I18nConstants { public static final String TERMINOLOGY_TX_ERROR_CODEABLECONCEPT_MAX = "Terminology_TX_Error_CodeableConcept_Max"; public static final String TERMINOLOGY_TX_ERROR_CODING1 = "Terminology_TX_Error_Coding1"; public static final String TERMINOLOGY_TX_ERROR_CODING2 = "Terminology_TX_Error_Coding2"; - public static final String TERMINOLOGY_TX_NOVALID_1_CC = "Terminology_TX_NoValid_1_CC"; + public static final String TERMINOLOGY_TX_HINT = "TERMINOLOGY_TX_HINT"; + public static final String TERMINOLOGY_TX_NOSVC_BOUND_EXT = "TERMINOLOGY_TX_NOSVC_BOUND_EXT"; + public static final String TERMINOLOGY_TX_NOSVC_BOUND_REQ = "TERMINOLOGY_TX_NOSVC_BOUND_REQ"; public static final String TERMINOLOGY_TX_NOVALID_10 = "Terminology_TX_NoValid_10"; public static final String TERMINOLOGY_TX_NOVALID_11 = "Terminology_TX_NoValid_11"; public static final String TERMINOLOGY_TX_NOVALID_12 = "Terminology_TX_NoValid_12"; @@ -451,6 +741,7 @@ public class I18nConstants { public static final String TERMINOLOGY_TX_NOVALID_16 = "Terminology_TX_NoValid_16"; public static final String TERMINOLOGY_TX_NOVALID_17 = "Terminology_TX_NoValid_17"; public static final String TERMINOLOGY_TX_NOVALID_18 = "Terminology_TX_NoValid_18"; + public static final String TERMINOLOGY_TX_NOVALID_1_CC = "Terminology_TX_NoValid_1_CC"; public static final String TERMINOLOGY_TX_NOVALID_2_CC = "Terminology_TX_NoValid_2_CC"; public static final String TERMINOLOGY_TX_NOVALID_3_CC = "Terminology_TX_NoValid_3_CC"; public static final String TERMINOLOGY_TX_NOVALID_4 = "Terminology_TX_NoValid_4"; @@ -459,20 +750,23 @@ public class I18nConstants { public static final String TERMINOLOGY_TX_NOVALID_7 = "Terminology_TX_NoValid_7"; public static final String TERMINOLOGY_TX_NOVALID_8 = "Terminology_TX_NoValid_8"; public static final String TERMINOLOGY_TX_NOVALID_9 = "Terminology_TX_NoValid_9"; + public static final String TERMINOLOGY_TX_OID_MULTIPLE_MATCHES = "TERMINOLOGY_TX_OID_MULTIPLE_MATCHES"; + public static final String TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN = "TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN"; public static final String TERMINOLOGY_TX_SYSTEM_HTTPS = "TERMINOLOGY_TX_SYSTEM_HTTPS"; public static final String TERMINOLOGY_TX_SYSTEM_INVALID = "Terminology_TX_System_Invalid"; public static final String TERMINOLOGY_TX_SYSTEM_NOTKNOWN = "Terminology_TX_System_NotKnown"; + public static final String TERMINOLOGY_TX_SYSTEM_NOT_USABLE = "TERMINOLOGY_TX_SYSTEM_NOT_USABLE"; public static final String TERMINOLOGY_TX_SYSTEM_NO_CODE = "TERMINOLOGY_TX_SYSTEM_NO_CODE"; public static final String TERMINOLOGY_TX_SYSTEM_RELATIVE = "Terminology_TX_System_Relative"; public static final String TERMINOLOGY_TX_SYSTEM_UNKNOWN = "Terminology_TX_System_Unknown"; - public static final String TERMINOLOGY_TX_SYSTEM_WRONG_BUILD = "TERMINOLOGY_TX_SYSTEM_WRONG_BUILD"; - public static final String TERMINOLOGY_TX_SYSTEM_WRONG_HTML = "TERMINOLOGY_TX_SYSTEM_WRONG_HTML"; public static final String TERMINOLOGY_TX_SYSTEM_VALUESET = "Terminology_TX_System_ValueSet"; public static final String TERMINOLOGY_TX_SYSTEM_VALUESET2 = "Terminology_TX_System_ValueSet2"; + public static final String TERMINOLOGY_TX_SYSTEM_WRONG_BUILD = "TERMINOLOGY_TX_SYSTEM_WRONG_BUILD"; + public static final String TERMINOLOGY_TX_SYSTEM_WRONG_HTML = "TERMINOLOGY_TX_SYSTEM_WRONG_HTML"; + public static final String TERMINOLOGY_TX_UNKNOWN_OID = "TERMINOLOGY_TX_UNKNOWN_OID"; public static final String TERMINOLOGY_TX_VALUESET_NOTFOUND = "Terminology_TX_ValueSet_NotFound"; public static final String TERMINOLOGY_TX_VALUESET_NOTFOUND_CS = "Terminology_TX_ValueSet_NotFound_CS"; - public static final String TERMINOLOGY_TX_NOSVC_BOUND_REQ = "TERMINOLOGY_TX_NOSVC_BOUND_REQ"; - public static final String TERMINOLOGY_TX_NOSVC_BOUND_EXT = "TERMINOLOGY_TX_NOSVC_BOUND_EXT"; + public static final String TERMINOLOGY_TX_WARNING = "TERMINOLOGY_TX_WARNING"; public static final String TEXT_SHOULD_NOT_BE_PRESENT = "Text_should_not_be_present"; public static final String THE_BASE_SNAPSHOT_MARKS_A_SLICING_AS_CLOSED_BUT_THE_DIFFERENTIAL_TRIES_TO_EXTEND_IT_IN__AT__ = "The_base_snapshot_marks_a_slicing_as_closed_but_the_differential_tries_to_extend_it_in__at__"; public static final String THIS_BASE_PROPERTY_MUST_BE_AN_ARRAY_NOT_ = "This_base_property_must_be_an_Array_not_"; @@ -486,12 +780,9 @@ public class I18nConstants { public static final String THIS_PROPERTY_MUST_BE_A_LITERAL_NOT_ = "This_property_must_be_a_Literal_not_"; public static final String THIS_PROPERTY_MUST_BE_A_URI_OR_BNODE_NOT_ = "This_property_must_be_a_URI_or_bnode_not_"; public static final String THIS_PROPERTY_MUST_BE__NOT_ = "This_property_must_be__not_"; - public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT = "OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT"; - public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME = "OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME"; - public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE = "OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE"; - public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE = "OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE"; - public static final String OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST = "OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST"; public static final String THIS__CANNOT_BE_PARSED_AS_A_FHIR_OBJECT_NO_NAMESPACE = "This__cannot_be_parsed_as_a_FHIR_object_no_namespace"; + public static final String TX_GENERAL_CC_ERROR_MESSAGE = "TX_GENERAL_CC_ERROR_MESSAGE"; + public static final String TX_SERVER_NO_BATCH_RESPONSE = "TX_SERVER_NO_BATCH_RESPONSE"; public static final String TYPE_CHECKS_FIXED_CC = "TYPE_CHECKS_FIXED_CC"; public static final String TYPE_CHECKS_FIXED_CC_US = "TYPE_CHECKS_FIXED_CC_US"; public static final String TYPE_CHECKS_PATTERN_CC = "TYPE_CHECKS_PATTERN_CC"; @@ -507,21 +798,26 @@ public class I18nConstants { public static final String TYPE_SPECIFIC_CHECKS_DT_ATT_TOO_LONG = "TYPE_SPECIFIC_CHECKS_DT_ATT_TOO_LONG"; public static final String TYPE_SPECIFIC_CHECKS_DT_ATT_UNKNOWN_URL_SCHEME = "TYPE_SPECIFIC_CHECKS_DT_ATT_UNKNOWN_URL_SCHEME"; public static final String TYPE_SPECIFIC_CHECKS_DT_ATT_URL_ERROR = "TYPE_SPECIFIC_CHECKS_DT_ATT_URL_ERROR"; + public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR = "TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR"; + public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING = "TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING"; public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_TOO_LONG = "TYPE_SPECIFIC_CHECKS_DT_BASE64_TOO_LONG"; public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_VALID = "Type_Specific_Checks_DT_Base64_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_BOOLEAN_VALUE = "Type_Specific_Checks_DT_Boolean_Value"; + public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS"; + public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC"; + public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE"; public static final String TYPE_SPECIFIC_CHECKS_DT_CODE_WS = "Type_Specific_Checks_DT_Code_WS"; - public static final String TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML = "TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML"; public static final String TYPE_SPECIFIC_CHECKS_DT_DATETIME_REASONABLE = "Type_Specific_Checks_DT_DateTime_Reasonable"; public static final String TYPE_SPECIFIC_CHECKS_DT_DATETIME_REGEX = "Type_Specific_Checks_DT_DateTime_Regex"; public static final String TYPE_SPECIFIC_CHECKS_DT_DATETIME_TZ = "Type_Specific_Checks_DT_DateTime_TZ"; public static final String TYPE_SPECIFIC_CHECKS_DT_DATETIME_VALID = "Type_Specific_Checks_DT_DateTime_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_DATE_VALID = "Type_Specific_Checks_DT_Date_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_CHARS = "TYPE_SPECIFIC_CHECKS_DT_DECIMAL_CHARS"; - public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_RANGE = "Type_Specific_Checks_DT_Decimal_Range"; - public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_VALID = "Type_Specific_Checks_DT_Decimal_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_GT = "Type_Specific_Checks_DT_Decimal_GT"; public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_LT = "Type_Specific_Checks_DT_Decimal_LT"; + public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_RANGE = "Type_Specific_Checks_DT_Decimal_Range"; + public static final String TYPE_SPECIFIC_CHECKS_DT_DECIMAL_VALID = "Type_Specific_Checks_DT_Decimal_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_IDENTIFIER_IETF_SYSTEM_VALUE = "TYPE_SPECIFIC_CHECKS_DT_IDENTIFIER_IETF_SYSTEM_VALUE"; public static final String TYPE_SPECIFIC_CHECKS_DT_IDENTIFIER_SYSTEM = "Type_Specific_Checks_DT_Identifier_System"; public static final String TYPE_SPECIFIC_CHECKS_DT_ID_VALID = "Type_Specific_Checks_DT_ID_Valid"; @@ -532,17 +828,47 @@ public class I18nConstants { public static final String TYPE_SPECIFIC_CHECKS_DT_INTEGER_LT0 = "Type_Specific_Checks_DT_Integer_LT0"; public static final String TYPE_SPECIFIC_CHECKS_DT_INTEGER_LT1 = "Type_Specific_Checks_DT_Integer_LT1"; public static final String TYPE_SPECIFIC_CHECKS_DT_INTEGER_VALID = "Type_Specific_Checks_DT_Integer_Valid"; + public static final String TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML = "TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML"; public static final String TYPE_SPECIFIC_CHECKS_DT_OID_START = "Type_Specific_Checks_DT_OID_Start"; public static final String TYPE_SPECIFIC_CHECKS_DT_OID_VALID = "Type_Specific_Checks_DT_OID_Valid"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_LENGTH = "Type_Specific_Checks_DT_Primitive_Length"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_NOTEMPTY = "Type_Specific_Checks_DT_Primitive_NotEmpty"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX = "Type_Specific_Checks_DT_Primitive_Regex"; + public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION = "TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_TYPE = "Type_Specific_Checks_DT_Primitive_Regex_Type"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_TYPE_ALT = "TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_TYPE_ALT"; - public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION = "TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_VALUEEXT = "Type_Specific_Checks_DT_Primitive_ValueExt"; public static final String TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_WS = "Type_Specific_Checks_DT_Primitive_WS"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM"; public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_NO_ANNOTATIONS = "TYPE_SPECIFIC_CHECKS_DT_QTY_NO_ANNOTATIONS"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT"; + public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT"; public static final String TYPE_SPECIFIC_CHECKS_DT_STRING_LENGTH = "Type_Specific_Checks_DT_String_Length"; public static final String TYPE_SPECIFIC_CHECKS_DT_STRING_WS = "Type_Specific_Checks_DT_String_WS"; public static final String TYPE_SPECIFIC_CHECKS_DT_STRING_WS_ALL = "Type_Specific_Checks_DT_String_WS_ALL"; @@ -550,17 +876,24 @@ public class I18nConstants { public static final String TYPE_SPECIFIC_CHECKS_DT_URI_OID = "Type_Specific_Checks_DT_URI_OID"; public static final String TYPE_SPECIFIC_CHECKS_DT_URI_UUID = "Type_Specific_Checks_DT_URI_UUID"; public static final String TYPE_SPECIFIC_CHECKS_DT_URI_WS = "Type_Specific_Checks_DT_URI_WS"; - public static final String TYPE_SPECIFIC_CHECKS_DT_URL_RESOLVE = "Type_Specific_Checks_DT_URL_Resolve"; - public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_RESOLVE = "Type_Specific_Checks_DT_XHTML_Resolve"; - public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_RESOLVE_IMG = "Type_Specific_Checks_DT_XHTML_Resolve_Img"; public static final String TYPE_SPECIFIC_CHECKS_DT_URL_EXAMPLE = "TYPE_SPECIFIC_CHECKS_DT_URL_EXAMPLE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC"; + public static final String TYPE_SPECIFIC_CHECKS_DT_URL_RESOLVE = "Type_Specific_Checks_DT_URL_Resolve"; public static final String TYPE_SPECIFIC_CHECKS_DT_UUID_STRAT = "Type_Specific_Checks_DT_UUID_Strat"; public static final String TYPE_SPECIFIC_CHECKS_DT_UUID_VALID = "Type_Specific_Checks_DT_UUID_Valid"; + public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES = "TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES"; + public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_RESOLVE = "Type_Specific_Checks_DT_XHTML_Resolve"; + public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_RESOLVE_IMG = "Type_Specific_Checks_DT_XHTML_Resolve_Img"; + public static final String TYPE_SPECIFIER_ABSTRACT_TYPE = "TYPE_SPECIFIER_ABSTRACT_TYPE"; + public static final String TYPE_SPECIFIER_ILLEGAL_TYPE = "TYPE_SPECIFIER_ILLEGAL_TYPE"; + public static final String TYPE_SPECIFIER_NM_ABSTRACT_TYPE = "TYPE_SPECIFIER_NM_ABSTRACT_TYPE"; + public static final String TYPE_SPECIFIER_NM_ILLEGAL_TYPE = "TYPE_SPECIFIER_NM_ILLEGAL_TYPE"; + public static final String Terminology_TX_Code_ValueSet_MISSING = "Terminology_TX_Code_ValueSet_MISSING"; + public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_ = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_"; + public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_CS = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_CS"; + public static final String UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_VS = "UNABLE_TO_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET_VS"; public static final String UNABLE_TO_CONNECT_TO_TERMINOLOGY_SERVER = "Unable_to_connect_to_terminology_server"; public static final String UNABLE_TO_CONNECT_TO_TERMINOLOGY_SERVER_USE_PARAMETER_TX_NA_TUN_RUN_WITHOUT_USING_TERMINOLOGY_SERVICES_TO_VALIDATE_LOINC_SNOMED_ICDX_ETC_ERROR__ = "Unable_to_connect_to_terminology_server_Use_parameter_tx_na_tun_run_without_using_terminology_services_to_validate_LOINC_SNOMED_ICDX_etc_Error__"; + public static final String UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV = "UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV"; public static final String UNABLE_TO_FIND_BASE_DEFINITION_FOR_LOGICAL_MODEL__FROM_ = "Unable_to_find_base_definition_for_logical_model__from_"; public static final String UNABLE_TO_FIND_BASE__FOR_ = "Unable_to_find_base__for_"; public static final String UNABLE_TO_FIND_ELEMENT_ = "Unable_to_find_element_"; @@ -568,16 +901,18 @@ public class I18nConstants { public static final String UNABLE_TO_FIND_ELEMENT__IN_ = "Unable_to_find_element__in_"; public static final String UNABLE_TO_FIND_PROFILE__AT_ = "Unable_to_find_profile__at_"; public static final String UNABLE_TO_FIND_RESOURCETYPE_PROPERTY = "Unable_to_find_resourceType_property"; - public static final String RESOURCETYPE_PROPERTY_WRONG_TYPE = "RESOURCETYPE_PROPERTY_WRONG_TYPE"; public static final String UNABLE_TO_FIND_RESOURCE__AT__RESOLVING_DISCRIMINATOR__FROM_ = "Unable_to_find_resource__at__resolving_discriminator__from_"; public static final String UNABLE_TO_FIND__RESOLVING_DISCRIMINATOR__FROM_ = "Unable_to_find__resolving_discriminator__from_"; public static final String UNABLE_TO_HANDLE_SYSTEM__CONCEPT_FILTER_WITH_OP__ = "Unable_to_handle_system__concept_filter_with_op__"; - public static final String UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__ = "UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__"; public static final String UNABLE_TO_HANDLE_SYSTEM__FILTER_WITH_PROPERTY__ = "Unable_to_handle_system__filter_with_property__"; + public static final String UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__ = "UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__"; + public static final String UNABLE_TO_INFER_CODESYSTEM = "UNABLE_TO_INFER_CODESYSTEM"; public static final String UNABLE_TO_LOCATE_THE_PROFILE__IN_ORDER_TO_VALIDATE_AGAINST_IT = "Unable_to_locate_the_profile__in_order_to_validate_against_it"; public static final String UNABLE_TO_PROCESS_REQUEST_FOR_RESOURCE_FOR___ = "Unable_to_process_request_for_resource_for___"; public static final String UNABLE_TO_RESOLVE_ = "Unable_to_resolve_"; public static final String UNABLE_TO_RESOLVE_ACTUAL_TYPE_ = "Unable_to_resolve_actual_type_"; + public static final String UNABLE_TO_RESOLVE_CONTENT_REFERENCE = "UNABLE_TO_RESOLVE_CONTENT_REFERENCE"; + public static final String UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT = "UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT"; public static final String UNABLE_TO_RESOLVE_ELEMENT__IN_PROFILE_ = "Unable_to_resolve_element__in_profile_"; public static final String UNABLE_TO_RESOLVE_NAME_REFERENCE__AT_PATH_ = "Unable_to_resolve_name_reference__at_path_"; public static final String UNABLE_TO_RESOLVE_PROFILE_ = "Unable_to_resolve_profile_"; @@ -585,15 +920,16 @@ public class I18nConstants { public static final String UNABLE_TO_RESOLVE_REFERENCE_TO_ = "Unable_to_resolve_reference_to_"; public static final String UNABLE_TO_RESOLVE_SLICE_MATCHING__NO_FIXED_VALUE_OR_REQUIRED_VALUE_SET = "Unable_to_resolve_slice_matching__no_fixed_value_or_required_value_set"; public static final String UNABLE_TO_RESOLVE_SLICE_MATCHING__SLICE_MATCHING_BY_VALUE_SET_NOT_DONE = "Unable_to_resolve_slice_matching__slice_matching_by_value_set_not_done"; + public static final String UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE = "UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE"; public static final String UNABLE_TO_RESOLVE_SYSTEM__NO_VALUE_SET = "Unable_to_resolve_system__no_value_set"; public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_EXPANSION_HAS_MULTIPLE_SYSTEMS = "Unable_to_resolve_system__value_set_expansion_has_multiple_systems"; public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_IMPORTS = "Unable_to_resolve_system__value_set_has_imports"; - public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_MULTIPLE_MATCHES = "Unable_to_resolve_system__value_set_has_multiple_matches"; - public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_NO_MATCHES = "Unable_to_resolve_system__value_set_has_no_matches"; + public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_INCLUDE_WITH_FILTER = "Unable_to_resolve_system__value_set_has_include_with_filter"; public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_INCLUDE_WITH_NO_SYSTEM = "Unable_to_resolve_system__value_set_has_include_with_no_system"; public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_INCLUDE_WITH_UNKNOWN_SYSTEM = "Unable_to_resolve_system__value_set_has_include_with_unknown_system"; - public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_INCLUDE_WITH_FILTER = "Unable_to_resolve_system__value_set_has_include_with_filter"; + public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_MULTIPLE_MATCHES = "Unable_to_resolve_system__value_set_has_multiple_matches"; public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_NO_INCLUDES_OR_EXPANSION = "Unable_to_resolve_system__value_set_has_no_includes_or_expansion"; + public static final String UNABLE_TO_RESOLVE_SYSTEM__VALUE_SET_HAS_NO_MATCHES = "Unable_to_resolve_system__value_set_has_no_matches"; public static final String UNABLE_TO_RESOLVE_VALUE_SET_ = "Unable_to_resolve_value_Set_"; public static final String UNABLE_TO_VALIDATE_CODE_WITHOUT_USING_SERVER = "Unable_to_validate_code_without_using_server"; public static final String UNABLE_TO_VALIDATE_LOCALLY = "UNABLE_TO_VALIDATE_LOCALLY"; @@ -603,9 +939,14 @@ public class I18nConstants { public static final String UNEXPECTED_CONDITION_IN_DIFFERENTIAL_TYPESLICETYPELISTSIZE__1_AT_ = "Unexpected_condition_in_differential_typeslicetypelistsize__1_at_"; public static final String UNEXPECTED_DATATYPE_FOR_RDFSTYPE = "Unexpected_datatype_for_rdfstype"; public static final String UNHANDLED_SITUATION_RESOURCE_IS_PROFILED_TO_MORE_THAN_ONE_OPTION__CANNOT_SORT_PROFILE = "Unhandled_situation_resource_is_profiled_to_more_than_one_option__cannot_sort_profile"; + public static final String UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED = "UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED"; + public static final String UNICODE_BIDI_CONTROLS_CHARS_MATCH = "UNICODE_BIDI_CONTROLS_CHARS_MATCH"; + public static final String UNICODE_XML_BAD_CHARS = "UNICODE_XML_BAD_CHARS"; + public static final String UNKNOWN_CODESYSTEM = "UNKNOWN_CODESYSTEM"; + public static final String UNKNOWN_CODESYSTEM_VERSION = "UNKNOWN_CODESYSTEM_VERSION"; public static final String UNKNOWN_CODE_IN = "Unknown_Code_in"; - public static final String UNKNOWN_CODE_IN_VERSION = "Unknown_Code_in_Version"; public static final String UNKNOWN_CODE_IN_FRAGMENT = "UNKNOWN_CODE_IN_FRAGMENT"; + public static final String UNKNOWN_CODE_IN_VERSION = "Unknown_Code_in_Version"; public static final String UNKNOWN_DATA_FORMAT_ = "Unknown_Data_format_"; public static final String UNKNOWN_DATE_FORMAT_ = "Unknown_Date_format_"; public static final String UNKNOWN_RESOURCE_TYPE_MISSING_RDFSTYPE = "Unknown_resource_type_missing_rdfstype"; @@ -620,23 +961,30 @@ public class I18nConstants { public static final String UNSUPPORTED_CODEABLECONCEPT_PATTERN__USING_TEXT__FOR_DISCRIMINATOR_FOR_SLICE_ = "Unsupported_CodeableConcept_pattern__using_text__for_discriminator_for_slice_"; public static final String UNSUPPORTED_FIXED_PATTERN_TYPE_FOR_DISCRIMINATOR_FOR_SLICE__ = "Unsupported_fixed_pattern_type_for_discriminator_for_slice__"; public static final String UNSUPPORTED_FIXED_VALUE_TYPE_FOR_DISCRIMINATOR_FOR_SLICE__ = "Unsupported_fixed_value_type_for_discriminator_for_slice__"; - public static final String UNSUPPORTED_IDENTIFIER_PATTERN__EXTENSIONS_ARE_NOT_ALLOWED__FOR_DISCRIMINATOR_FOR_SLICE_ = "Unsupported_Identifier_pattern__extensions_are_not_allowed__for_discriminator_for_slice_"; - public static final String UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = "UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE"; public static final String UNSUPPORTED_IDENTIFIER_PATTERN_NO_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = "UNSUPPORTED_IDENTIFIER_PATTERN_NO_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE"; + public static final String UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = "UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE"; + public static final String UNSUPPORTED_IDENTIFIER_PATTERN__EXTENSIONS_ARE_NOT_ALLOWED__FOR_DISCRIMINATOR_FOR_SLICE_ = "Unsupported_Identifier_pattern__extensions_are_not_allowed__for_discriminator_for_slice_"; public static final String UNSUPPORTED_VERSION_R1 = "Unsupported_version_R1"; public static final String UNSUPPORTED_VERSION_R2 = "Unsupported_version_R2"; public static final String UNSUPPORTED_VERSION_R2B = "Unsupported_version_R2B"; public static final String UNXPECTED_INTERNAL_CONDITION__NO_SOURCE_ON_DIFF_ELEMENT = "Unxpected_internal_condition__no_source_on_diff_element"; public static final String VALIDATION_BUNDLE_MESSAGE = "Validation_BUNDLE_Message"; + public static final String VALIDATION_HL7_PUBLISHER_MISMATCH = "VALIDATION_HL7_PUBLISHER_MISMATCH"; + public static final String VALIDATION_HL7_PUBLISHER_MISMATCH2 = "VALIDATION_HL7_PUBLISHER_MISMATCH2"; + public static final String VALIDATION_HL7_PUBLISHER_MISSING = "VALIDATION_HL7_PUBLISHER_MISSING"; + public static final String VALIDATION_HL7_WG_NEEDED = "VALIDATION_HL7_WG_NEEDED"; + public static final String VALIDATION_HL7_WG_UNKNOWN = "VALIDATION_HL7_WG_UNKNOWN"; + public static final String VALIDATION_HL7_WG_URL = "VALIDATION_HL7_WG_URL"; public static final String VALIDATION_VAL_CONTENT_UNKNOWN = "Validation_VAL_Content_Unknown"; public static final String VALIDATION_VAL_GLOBAL_PROFILE_UNKNOWN = "VALIDATION_VAL_GLOBAL_PROFILE_UNKNOWN"; public static final String VALIDATION_VAL_ILLEGAL_TYPE_CONSTRAINT = "VALIDATION_VAL_ILLEGAL_TYPE_CONSTRAINT"; public static final String VALIDATION_VAL_NOTYPE = "Validation_VAL_NoType"; + public static final String VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED = "VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED"; public static final String VALIDATION_VAL_PROFILE_MATCHMULTIPLE = "Validation_VAL_Profile_MatchMultiple"; public static final String VALIDATION_VAL_PROFILE_MAXIMUM = "Validation_VAL_Profile_Maximum"; public static final String VALIDATION_VAL_PROFILE_MINIMUM = "Validation_VAL_Profile_Minimum"; - public static final String VALIDATION_VAL_PROFILE_MINIMUM_SLICE = "Validation_VAL_Profile_Minimum_SLICE"; public static final String VALIDATION_VAL_PROFILE_MINIMUM_MAGIC = "VALIDATION_VAL_PROFILE_MINIMUM_MAGIC"; + public static final String VALIDATION_VAL_PROFILE_MINIMUM_SLICE = "Validation_VAL_Profile_Minimum_SLICE"; public static final String VALIDATION_VAL_PROFILE_MULTIPLEMATCHES = "Validation_VAL_Profile_MultipleMatches"; public static final String VALIDATION_VAL_PROFILE_NOCHECKMAX = "Validation_VAL_Profile_NoCheckMax"; public static final String VALIDATION_VAL_PROFILE_NOCHECKMIN = "Validation_VAL_Profile_NoCheckMin"; @@ -646,467 +994,117 @@ public class I18nConstants { public static final String VALIDATION_VAL_PROFILE_NOTALLOWED = "Validation_VAL_Profile_NotAllowed"; public static final String VALIDATION_VAL_PROFILE_NOTSLICE = "Validation_VAL_Profile_NotSlice"; public static final String VALIDATION_VAL_PROFILE_NOTYPE = "Validation_VAL_Profile_NoType"; + public static final String VALIDATION_VAL_PROFILE_OTHER_VERSION = "VALIDATION_VAL_PROFILE_OTHER_VERSION"; public static final String VALIDATION_VAL_PROFILE_OUTOFORDER = "Validation_VAL_Profile_OutOfOrder"; - public static final String VALIDATION_VAL_PROFILE_SIGNPOST_BASE = "VALIDATION_VAL_PROFILE_SIGNPOST_BASE"; public static final String VALIDATION_VAL_PROFILE_SIGNPOST = "VALIDATION_VAL_PROFILE_SIGNPOST"; + public static final String VALIDATION_VAL_PROFILE_SIGNPOST_BASE = "VALIDATION_VAL_PROFILE_SIGNPOST_BASE"; + public static final String VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM = "VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM"; + public static final String VALIDATION_VAL_PROFILE_SIGNPOST_DEP = "VALIDATION_VAL_PROFILE_SIGNPOST_DEP"; public static final String VALIDATION_VAL_PROFILE_SIGNPOST_GLOBAL = "VALIDATION_VAL_PROFILE_SIGNPOST_GLOBAL"; public static final String VALIDATION_VAL_PROFILE_SIGNPOST_META = "VALIDATION_VAL_PROFILE_SIGNPOST_META"; - public static final String VALIDATION_VAL_PROFILE_SIGNPOST_DEP = "VALIDATION_VAL_PROFILE_SIGNPOST_DEP"; - public static final String VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM = "VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM"; + public static final String VALIDATION_VAL_PROFILE_SIGNPOST_OBS = "VALIDATION_VAL_PROFILE_SIGNPOST_OBS"; public static final String VALIDATION_VAL_PROFILE_SLICEORDER = "Validation_VAL_Profile_SliceOrder"; - public static final String VALIDATION_VAL_PROFILE_OTHER_VERSION = "VALIDATION_VAL_PROFILE_OTHER_VERSION"; public static final String VALIDATION_VAL_PROFILE_THIS_VERSION_OK = "VALIDATION_VAL_PROFILE_THIS_VERSION_OK"; public static final String VALIDATION_VAL_PROFILE_THIS_VERSION_OTHER = "VALIDATION_VAL_PROFILE_THIS_VERSION_OTHER"; public static final String VALIDATION_VAL_PROFILE_UNKNOWN = "Validation_VAL_Profile_Unknown"; - public static final String VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY = "VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY"; public static final String VALIDATION_VAL_PROFILE_UNKNOWN_ERROR = "VALIDATION_VAL_PROFILE_UNKNOWN_ERROR"; public static final String VALIDATION_VAL_PROFILE_UNKNOWN_ERROR_NETWORK = "VALIDATION_VAL_PROFILE_UNKNOWN_ERROR_NETWORK"; + public static final String VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY = "VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY"; public static final String VALIDATION_VAL_PROFILE_WRONGTYPE = "Validation_VAL_Profile_WrongType"; public static final String VALIDATION_VAL_PROFILE_WRONGTYPE2 = "Validation_VAL_Profile_WrongType2"; + public static final String VALIDATION_VAL_STATUS_INCONSISTENT = "VALIDATION_VAL_STATUS_INCONSISTENT"; + public static final String VALIDATION_VAL_STATUS_INCONSISTENT_HINT = "VALIDATION_VAL_STATUS_INCONSISTENT_HINT"; public static final String VALIDATION_VAL_UNKNOWN_PROFILE = "Validation_VAL_Unknown_Profile"; - public static final String VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED = "VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED"; - + public static final String VALUESET_BAD_FILTER_OP = "VALUESET_BAD_FILTER_OP"; + public static final String VALUESET_BAD_FILTER_VALUE_BOOLEAN = "VALUESET_BAD_FILTER_VALUE_BOOLEAN"; + public static final String VALUESET_BAD_FILTER_VALUE_CODE = "VALUESET_BAD_FILTER_VALUE_CODE"; + public static final String VALUESET_BAD_FILTER_VALUE_CODED = "VALUESET_BAD_FILTER_VALUE_CODED"; + public static final String VALUESET_BAD_FILTER_VALUE_CODED_INVALID = "VALUESET_BAD_FILTER_VALUE_CODED_INVALID"; + public static final String VALUESET_BAD_FILTER_VALUE_DATETIME = "VALUESET_BAD_FILTER_VALUE_DATETIME"; + public static final String VALUESET_BAD_FILTER_VALUE_DECIMAL = "VALUESET_BAD_FILTER_VALUE_DECIMAL"; + public static final String VALUESET_BAD_FILTER_VALUE_HAS_COMMA = "VALUESET_BAD_FILTER_VALUE_HAS_COMMA"; + public static final String VALUESET_BAD_FILTER_VALUE_INTEGER = "VALUESET_BAD_FILTER_VALUE_INTEGER"; + public static final String VALUESET_BAD_FILTER_VALUE_VALID_CODE = "VALUESET_BAD_FILTER_VALUE_VALID_CODE"; + public static final String VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE = "VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE"; + public static final String VALUESET_BAD_FILTER_VALUE_VALID_REGEX = "VALUESET_BAD_FILTER_VALUE_VALID_REGEX"; + public static final String VALUESET_BAD_PROPERTY_NO_REGEX = "VALUESET_BAD_PROPERTY_NO_REGEX"; + public static final String VALUESET_CIRCULAR_REFERENCE = "VALUESET_CIRCULAR_REFERENCE"; + public static final String VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED = "VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED"; + public static final String VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED = "VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED"; + public static final String VALUESET_EXAMPLE_SYSTEM_ERROR = "VALUESET_EXAMPLE_SYSTEM_ERROR"; + public static final String VALUESET_EXAMPLE_SYSTEM_HINT = "VALUESET_EXAMPLE_SYSTEM_HINT"; + public static final String VALUESET_IMPORT_UNION_INTERSECTION = "VALUESET_IMPORT_UNION_INTERSECTION"; + public static final String VALUESET_INCLUDE_CSVER_CONTENT = "VALUESET_INCLUDE_CSVER_CONTENT"; + public static final String VALUESET_INCLUDE_CSVER_MULTI_FOUND = "VALUESET_INCLUDE_CSVER_MULTI_FOUND"; + public static final String VALUESET_INCLUDE_CSVER_NOT_FOUND = "VALUESET_INCLUDE_CSVER_NOT_FOUND"; + public static final String VALUESET_INCLUDE_CSVER_SUPPLEMENT = "VALUESET_INCLUDE_CSVER_SUPPLEMENT"; + public static final String VALUESET_INCLUDE_CS_CONTENT = "VALUESET_INCLUDE_CS_CONTENT"; + public static final String VALUESET_INCLUDE_CS_MULTI_FOUND = "VALUESET_INCLUDE_CS_MULTI_FOUND"; + public static final String VALUESET_INCLUDE_CS_NOT_CS = "VALUESET_INCLUDE_CS_NOT_CS"; + public static final String VALUESET_INCLUDE_CS_NOT_FOUND = "VALUESET_INCLUDE_CS_NOT_FOUND"; + public static final String VALUESET_INCLUDE_CS_SUPPLEMENT = "VALUESET_INCLUDE_CS_SUPPLEMENT"; public static final String VALUESET_INCLUDE_INVALID_CONCEPT_CODE = "VALUESET_INCLUDE_INVALID_CONCEPT_CODE"; public static final String VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = "VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER"; + public static final String VALUESET_INCLUDE_SYSTEM_ABSOLUTE = "VALUESET_INCLUDE_SYSTEM_ABSOLUTE"; + public static final String VALUESET_INCLUDE_SYSTEM_ABSOLUTE_FRAG = "VALUESET_INCLUDE_SYSTEM_ABSOLUTE_FRAG"; + public static final String VALUESET_INC_TOO_MANY_CODES = "VALUESET_INC_TOO_MANY_CODES"; public static final String VALUESET_NO_SYSTEM_WARNING = "VALUESET_NO_SYSTEM_WARNING"; public static final String VALUESET_REFERENCE_INVALID_TYPE = "VALUESET_REFERENCE_INVALID_TYPE"; public static final String VALUESET_REFERENCE_UNKNOWN = "VALUESET_REFERENCE_UNKNOWN"; + public static final String VALUESET_SHAREABLE_EXTRA_MISSING = "VALUESET_SHAREABLE_EXTRA_MISSING"; + public static final String VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = "VALUESET_SHAREABLE_EXTRA_MISSING_HL7"; public static final String VALUESET_SHAREABLE_MISSING = "VALUESET_SHAREABLE_MISSING"; public static final String VALUESET_SHAREABLE_MISSING_HL7 = "VALUESET_SHAREABLE_MISSING_HL7"; - public static final String VALUESET_SHAREABLE_EXTRA_MISSING_HL7 = "VALUESET_SHAREABLE_EXTRA_MISSING_HL7"; - public static final String VALUESET_SHAREABLE_EXTRA_MISSING = "VALUESET_SHAREABLE_EXTRA_MISSING"; - public static final String CODESYSTEM_SHAREABLE_MISSING = "CODESYSTEM_SHAREABLE_MISSING"; - public static final String CODESYSTEM_SHAREABLE_MISSING_HL7 = "CODESYSTEM_SHAREABLE_MISSING_HL7"; - public static final String CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7 = "CODESYSTEM_SHAREABLE_EXTRA_MISSING_HL7"; - public static final String CODESYSTEM_SHAREABLE_EXTRA_MISSING = "CODESYSTEM_SHAREABLE_EXTRA_MISSING"; - public static final String CONCEPTMAP_SHAREABLE_MISSING = "CONCEPTMAP_SHAREABLE_MISSING"; - public static final String CONCEPTMAP_SHAREABLE_MISSING_HL7 = "CONCEPTMAP_SHAREABLE_MISSING_HL7"; - public static final String CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7 = "CONCEPTMAP_SHAREABLE_EXTRA_MISSING_HL7"; - public static final String CONCEPTMAP_SHAREABLE_EXTRA_MISSING = "CONCEPTMAP_SHAREABLE_EXTRA_MISSING"; - public static final String MEASURE_SHAREABLE_MISSING = "MEASURE_SHAREABLE_MISSING"; - public static final String MEASURE_SHAREABLE_MISSING_HL7 = "MEASURE_SHAREABLE_MISSING_HL7"; - public static final String MEASURE_SHAREABLE_EXTRA_MISSING_HL7 = "MEASURE_SHAREABLE_EXTRA_MISSING_HL7"; - public static final String MEASURE_SHAREABLE_EXTRA_MISSING = "MEASURE_SHAREABLE_EXTRA_MISSING"; - public static final String VALUESET_EXAMPLE_SYSTEM_ERROR = "VALUESET_EXAMPLE_SYSTEM_ERROR"; - public static final String VALUESET_EXAMPLE_SYSTEM_HINT = "VALUESET_EXAMPLE_SYSTEM_HINT"; + public static final String VALUESET_SUPPLEMENT_MISSING = "VALUESET_SUPPLEMENT_MISSING"; + public static final String VALUESET_TOO_COSTLY = "VALUESET_TOO_COSTLY"; + public static final String VALUESET_TOO_COSTLY_COUNT = "VALUESET_TOO_COSTLY_COUNT"; + public static final String VALUESET_TOO_COSTLY_TIME = "VALUESET_TOO_COSTLY_TIME"; public static final String VALUESET_UNC_SYSTEM_WARNING = "VALUESET_UNC_SYSTEM_WARNING"; public static final String VALUESET_UNC_SYSTEM_WARNING_VER = "VALUESET_UNC_SYSTEM_WARNING_VER"; - public static final String VALUESET_IMPORT_UNION_INTERSECTION = "VALUESET_IMPORT_UNION_INTERSECTION"; + public static final String VALUESET_UNKNOWN_FILTER_PROPERTY = "VALUESET_UNKNOWN_FILTER_PROPERTY"; + public static final String VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS = "VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS"; public static final String VERSION_MISMATCH_THE_CONTEXT_HAS_VERSION__LOADED_AND_THE_NEW_CONTENT_BEING_LOADED_IS_VERSION_ = "Version_mismatch_The_context_has_version__loaded_and_the_new_content_being_loaded_is_version_"; public static final String WRONG_NAMESPACE__EXPECTED_ = "Wrong_namespace__expected_"; public static final String WRONG_TYPE_FOR_RESOURCE = "Wrong_type_for_resource"; + public static final String XHTML_IDREF_NOT_FOUND = "XHTML_IDREF_NOT_FOUND"; + public static final String XHTML_IDREF_NOT_MULTIPLE_MATCHES = "XHTML_IDREF_NOT_MULTIPLE_MATCHES"; + public static final String XHTML_URL_DATA_DATA_INVALID = "XHTML_URL_DATA_DATA_INVALID"; + public static final String XHTML_URL_DATA_DATA_INVALID_COMMA = "XHTML_URL_DATA_DATA_INVALID_COMMA"; + public static final String XHTML_URL_DATA_MIMETYPE = "XHTML_URL_DATA_MIMETYPE"; + public static final String XHTML_URL_DATA_NO_DATA = "XHTML_URL_DATA_NO_DATA"; public static final String XHTML_URL_EMPTY = "XHTML_URL_EMPTY"; public static final String XHTML_URL_INVALID = "XHTML_URL_INVALID"; public static final String XHTML_URL_INVALID_CHARS = "XHTML_URL_INVALID_CHARS"; - public static final String XHTML_URL_DATA_NO_DATA = "XHTML_URL_DATA_NO_DATA"; - public static final String XHTML_URL_DATA_DATA_INVALID_COMMA = "XHTML_URL_DATA_DATA_INVALID_COMMA"; - public static final String XHTML_URL_DATA_DATA_INVALID = "XHTML_URL_DATA_DATA_INVALID"; - public static final String XHTML_URL_DATA_MIMETYPE = "XHTML_URL_DATA_MIMETYPE"; - public static final String XHTML_XHTML_ATTRIBUTE_ILLEGAL = "XHTML_XHTML_Attribute_Illegal"; public static final String XHTML_XHTML_DOCTYPE_ILLEGAL = "XHTML_XHTML_DOCTYPE_ILLEGAL"; public static final String XHTML_XHTML_ELEMENT_ILLEGAL = "XHTML_XHTML_Element_Illegal"; public static final String XHTML_XHTML_ELEMENT_ILLEGAL_IN_PARA = "XHTML_XHTML_ELEMENT_ILLEGAL_IN_PARA"; + public static final String XHTML_XHTML_Entity_Illegal = "XHTML_XHTML_Entity_Illegal"; + public static final String XHTML_XHTML_Image_Reference_Illegal = "XHTML_XHTML_Image_Reference_Illegal"; public static final String XHTML_XHTML_NAME_INVALID = "XHTML_XHTML_Name_Invalid"; public static final String XHTML_XHTML_NS_INVALID = "XHTML_XHTML_NS_InValid"; public static final String XML_ATTR_VALUE_INVALID = "xml_attr_value_invalid"; public static final String XML_ENCODING_INVALID = "xml_encoding_invalid"; -// public static final String XML_STATED_ENCODING_INVALID = "xml_stated_encoding_invalid"; + public static final String XSI_TYPE_UNNECESSARY = "XSI_TYPE_UNNECESSARY"; + public static final String XSI_TYPE_WRONG = "XSI_TYPE_WRONG"; public static final String _DT_FIXED_WRONG = "_DT_Fixed_Wrong"; public static final String _HAS_CHILDREN__AND_MULTIPLE_TYPES__IN_PROFILE_ = "_has_children__and_multiple_types__in_profile_"; public static final String _HAS_CHILDREN__FOR_TYPE__IN_PROFILE__BUT_CANT_FIND_TYPE = "_has_children__for_type__in_profile__but_cant_find_type"; public static final String _HAS_NO_CHILDREN__AND_NO_TYPES_IN_PROFILE_ = "_has_no_children__and_no_types_in_profile_"; - - public static final String BUNDLE_RULE_NONE = "BUNDLE_RULE_NONE"; - public static final String BUNDLE_RULE_UNKNOWN = "BUNDLE_RULE_UNKNOWN"; - public static final String BUNDLE_RULE_INVALID_INDEX = "BUNDLE_RULE_INVALID_INDEX"; - public static final String BUNDLE_RULE_PROFILE_UNKNOWN = "BUNDLE_RULE_PROFILE_UNKNOWN"; - public static final String BUNDLE_SEARCH_NOSELF = "BUNDLE_SEARCH_NOSELF"; - public static final String BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = "BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD"; - public static final String BUNDLE_SEARCH_ENTRY_NO_RESOURCE = "BUNDLE_SEARCH_ENTRY_NO_RESOURCE"; - public static final String BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE = "BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE"; - public static final String BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID = "BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID"; - public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE"; - public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE"; - public static final String BUNDLE_SEARCH_NO_MODE = "BUNDLE_SEARCH_NO_MODE"; - public static final String BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = "BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME"; - public static final String UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED = "UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED"; - public static final String UNICODE_BIDI_CONTROLS_CHARS_MATCH = "UNICODE_BIDI_CONTROLS_CHARS_MATCH"; - public static final String CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL = "CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHALL"; - public static final String CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD = "CODESYSTEM_CS_HL7_MISSING_ELEMENT_SHOULD"; - public static final String CODESYSTEM_CS_NONHL7_MISSING_ELEMENT = "CODESYSTEM_CS_NONHL7_MISSING_ELEMENT"; - public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL"; - public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_WRONG"; - public static final String CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING = "CODESYSTEM_CS_HL7_PRESENT_ELEMENT_SUPPL_MISSING"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM = "TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM"; - public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR = "TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR"; - public static final String TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING = "TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING"; - public static final String TX_SERVER_NO_BATCH_RESPONSE = "TX_SERVER_NO_BATCH_RESPONSE"; - public static final String BUNDLE_POSSSIBLE_MATCHES = "BUNDLE_POSSSIBLE_MATCHES"; - public static final String BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU = "BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU"; - public static final String BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU = "BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU"; - public static final String TYPE_SPECIFIER_ILLEGAL_TYPE = "TYPE_SPECIFIER_ILLEGAL_TYPE"; - public static final String TYPE_SPECIFIER_ABSTRACT_TYPE = "TYPE_SPECIFIER_ABSTRACT_TYPE"; - public static final String TYPE_SPECIFIER_NM_ILLEGAL_TYPE = "TYPE_SPECIFIER_NM_ILLEGAL_TYPE"; - public static final String TYPE_SPECIFIER_NM_ABSTRACT_TYPE = "TYPE_SPECIFIER_NM_ABSTRACT_TYPE"; - public static final String Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL = "Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL"; - public static final String SD_TYPE_MISSING = "SD_TYPE_MISSING"; - public static final String SD_TYPE_NOT_MATCH_NS = "SD_TYPE_NOT_MATCH_NS"; - public static final String SD_TYPE_NOT_DERIVED = "SD_TYPE_NOT_DERIVED"; - public static final String SD_TYPE_NOT_LOCAL = "SD_TYPE_NOT_LOCAL"; - public static final String SD_TYPE_NOT_LOGICAL = "SD_TYPE_NOT_LOGICAL"; - public static final String SD_CONSTRAINED_TYPE_NO_MATCH = "SD_CONSTRAINED_TYPE_NO_MATCH"; - public static final String SD_SPECIALIZED_TYPE_MATCHES = "SD_SPECIALIZED_TYPE_MATCHES"; - public static final String SD_CONSTRAINED_KIND_NO_MATCH = "SD_CONSTRAINED_KIND_NO_MATCH"; - public static final String SD_PATH_TYPE_MISMATCH = "SD_PATH_TYPE_MISMATCH"; - public static final String XHTML_XHTML_Image_Reference_Illegal = "XHTML_XHTML_Image_Reference_Illegal"; - public static final String XHTML_XHTML_Entity_Illegal = "XHTML_XHTML_Entity_Illegal"; - public static final String UNABLE_TO_RESOLVE_CONTENT_REFERENCE = "UNABLE_TO_RESOLVE_CONTENT_REFERENCE"; - public static final String UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT = "UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT"; - public static final String DUPLICATE_JSON_PROPERTY = "DUPLICATE_JSON_PROPERTY"; - public static final String DUPLICATE_JSON_PROPERTY_KEY = "DUPLICATE_JSON_PROPERTY_KEY"; - public static final String JSON_PROPERTY_NO_QUOTES = "JSON_PROPERTY_NO_QUOTES"; - public static final String JSON_PROPERTY_VALUE_NO_QUOTES = "JSON_PROPERTY_VALUE_NO_QUOTES"; - public static final String JSON_COMMA_MISSING = "JSON_COMMA_MISSING"; - public static final String JSON_COMMA_EXTRA = "JSON_COMMA_EXTRA"; - public static final String JSON_COMMENTS_NOT_ALLOWED = "JSON_COMMENTS_NOT_ALLOWED"; - public static final String EXT_VER_URL_NO_MATCH = "EXT_VER_URL_NO_MATCH"; - public static final String EXT_VER_URL_IGNORE = "EXT_VER_URL_IGNORE"; - public static final String EXT_VER_URL_MISLEADING = "EXT_VER_URL_MISLEADING"; - public static final String EXT_VER_URL_NOT_ALLOWED = "EXT_VER_URL_NOT_ALLOWED"; - public static final String EXT_VER_URL_REVERSION = "EXT_VER_URL_REVERSION"; - public static final String ILLEGAL_COMMENT_TYPE = "ILLEGAL_COMMENT_TYPE"; - public static final String SD_NO_SLICING_ON_ROOT = "SD_NO_SLICING_ON_ROOT"; - public static final String REFERENCE_REF_QUERY_INVALID = "REFERENCE_REF_QUERY_INVALID"; - public static final String SM_RULEGROUP_NOT_FOUND = "SM_RULEGROUP_NOT_FOUND"; - public static final String SM_RULEGROUP_PARAM_COUNT_MISMATCH = "SM_RULEGROUP_PARAM_COUNT_MISMATCH"; - public static final String SM_NAME_INVALID = "SM_NAME_INVALID"; - public static final String SM_GROUP_INPUT_DUPLICATE = "SM_GROUP_INPUT_DUPLICATE"; - public static final String SM_GROUP_INPUT_MODE_INVALID = "SM_GROUP_INPUT_MODE_INVALID"; - public static final String SM_GROUP_INPUT_NO_TYPE = "SM_GROUP_INPUT_NO_TYPE"; - public static final String SM_GROUP_INPUT_TYPE_NOT_DECLARED = "SM_GROUP_INPUT_TYPE_NOT_DECLARED"; - public static final String SM_GROUP_INPUT_MODE_MISMATCH = "SM_GROUP_INPUT_MODE_MISMATCH"; - public static final String SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE = "SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE"; - public static final String SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE = "SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE"; - public static final String SM_SOURCE_CONTEXT_UNKNOWN = "SM_SOURCE_CONTEXT_UNKNOWN"; - public static final String SM_SOURCE_PATH_INVALID = "SM_SOURCE_PATH_INVALID"; - public static final String SM_RULE_SOURCE_MIN_REDUNDANT = "SM_RULE_SOURCE_MIN_REDUNDANT"; - public static final String SM_RULE_SOURCE_MAX_REDUNDANT = "SM_RULE_SOURCE_MAX_REDUNDANT"; - public static final String SM_RULE_SOURCE_LISTMODE_REDUNDANT = "SM_RULE_SOURCE_LISTMODE_REDUNDANT"; - public static final String SM_TARGET_CONTEXT_UNKNOWN = "SM_TARGET_CONTEXT_UNKNOWN"; - public static final String SM_TARGET_PATH_INVALID = "SM_TARGET_PATH_INVALID"; - public static final String SM_NO_LIST_MODE_NEEDED = "SM_NO_LIST_MODE_NEEDED"; - public static final String SM_NO_LIST_RULE_ID_NEEDED = "SM_NO_LIST_RULE_ID_NEEDED"; - public static final String SM_LIST_RULE_ID_ONLY_WHEN_SHARE = "SM_LIST_RULE_ID_ONLY_WHEN_SHARE"; - public static final String SM_RULE_SOURCE_UNASSIGNED = "SM_RULE_SOURCE_UNASSIGNED"; - public static final String SM_TARGET_PATH_MULTIPLE_MATCHES = "SM_TARGET_PATH_MULTIPLE_MATCHES"; - public static final String SM_SOURCE_TYPE_INVALID = "SM_SOURCE_TYPE_INVALID"; - public static final String SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE = "SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE"; - public static final String SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE = "SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE"; - public static final String SM_TARGET_TRANSFORM_NOT_CHECKED = "SM_TARGET_TRANSFORM_NOT_CHECKED"; - public static final String SM_TARGET_NO_TRANSFORM_NO_CHECKED = "SM_TARGET_NO_TRANSFORM_NO_CHECKED"; - public static final String SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE = "SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE"; - public static final String SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE = "SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE"; - public static final String SM_TARGET_TRANSFORM_EXPRESSION_ERROR = "SM_TARGET_TRANSFORM_EXPRESSION_ERROR"; - public static final String SM_IMPORT_NOT_FOUND = "SM_IMPORT_NOT_FOUND"; - public static final String SM_TARGET_TYPE_MULTIPLE_POSSIBLE = "SM_TARGET_TYPE_MULTIPLE_POSSIBLE"; - public static final String SM_TARGET_TRANSFORM_TYPE_UNKNOWN = "SM_TARGET_TRANSFORM_TYPE_UNKNOWN"; - public static final String SM_DEPENDENT_PARAM_NOT_FOUND = "SM_DEPENDENT_PARAM_NOT_FOUND"; - public static final String SM_DEPENDENT_PARAM_MODE_MISMATCH = "SM_DEPENDENT_PARAM_MODE_MISMATCH"; - public static final String SM_DEPENDENT_PARAM_TYPE_MISMATCH = "SM_DEPENDENT_PARAM_TYPE_MISMATCH"; - public static final String SM_ORPHAN_GROUP = "SM_ORPHAN_GROUP"; - public static final String SM_SOURCE_TYPE_NOT_FOUND = "SM_SOURCE_TYPE_NOT_FOUND"; - public static final String SM_TARGET_TYPE_NOT_FOUND = "SM_TARGET_TYPE_NOT_FOUND"; - public static final String SM_MATCHING_RULEGROUP_NOT_FOUND = "SM_MATCHING_RULEGROUP_NOT_FOUND"; - public static final String SM_TARGET_TRANSFORM_MISSING_PARAMS = "SM_TARGET_TRANSFORM_MISSING_PARAMS"; - public static final String SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM = "SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM"; - public static final String SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE = "SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE"; - public static final String SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND = "SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND"; - public static final String SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE = "SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE"; - public static final String SM_TARGET_TRANSLATE_BINDING_SOURCE = "SM_TARGET_TRANSLATE_BINDING_SOURCE"; - public static final String SM_TARGET_TRANSLATE_BINDING_VS_SOURCE = "SM_TARGET_TRANSLATE_BINDING_VS_SOURCE"; - public static final String SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE = "SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE"; - public static final String SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED = "SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED"; - public static final String SM_TARGET_TRANSLATE_BINDING_TARGET = "SM_TARGET_TRANSLATE_BINDING_TARGET"; - public static final String SM_TARGET_TRANSLATE_BINDING_VS_TARGET = "SM_TARGET_TRANSLATE_BINDING_VS_TARGET"; - public static final String SM_TARGET_TRANSLATE_BINDING_VSE_TARGET = "SM_TARGET_TRANSLATE_BINDING_VSE_TARGET"; - public static final String SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG = "SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG"; - public static final String SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE = "SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE"; - public static final String CONCEPTMAP_GROUP_SOURCE_MISSING = "CONCEPTMAP_GROUP_SOURCE_MISSING"; - public static final String CONCEPTMAP_GROUP_SOURCE_UNKNOWN = "CONCEPTMAP_GROUP_SOURCE_UNKNOWN"; - public static final String CONCEPTMAP_GROUP_TARGET_MISSING = "CONCEPTMAP_GROUP_TARGET_MISSING"; - public static final String CONCEPTMAP_GROUP_TARGET_UNKNOWN = "CONCEPTMAP_GROUP_TARGET_UNKNOWN"; - public static final String CONCEPTMAP_GROUP_SOURCE_CODE_INVALID = "CONCEPTMAP_GROUP_SOURCE_CODE_INVALID"; - public static final String CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS = "CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS"; - public static final String CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = "CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID"; - public static final String CONCEPTMAP_GROUP_TARGET_CODE_INVALID = "CONCEPTMAP_GROUP_TARGET_CODE_INVALID"; - public static final String CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS = "CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS"; - public static final String CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID = "CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID"; - public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID = "CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID"; - public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH"; - public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM"; - public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID = "CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID"; - public static final String CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = "CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM"; - public static final String SM_GROUP_NAME_DUPLICATE = "SM_GROUP_NAME_DUPLICATE"; - public static final String CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = "CONCEPTMAP_GROUP_SOURCE_INCOMPLETE"; - public static final String CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE = "CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE"; - public static final String CONCEPTMAP_GROUP_TARGET_INCOMPLETE = "CONCEPTMAP_GROUP_TARGET_INCOMPLETE"; - public static final String CONCEPTMAP_GROUP_TARGET_SERVER_SIDE = "CONCEPTMAP_GROUP_TARGET_SERVER_SIDE"; - public static final String UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE = "UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE"; - public static final String SD_NO_TYPE_CODE_ON_CODE = "SD_NO_TYPE_CODE_ON_CODE"; - public static final String UNKNOWN_CODESYSTEM = "UNKNOWN_CODESYSTEM"; - public static final String UNKNOWN_CODESYSTEM_VERSION = "UNKNOWN_CODESYSTEM_VERSION"; - public static final String VALUESET_TOO_COSTLY = "VALUESET_TOO_COSTLY"; - public static final String VALUESET_TOO_COSTLY_COUNT = "VALUESET_TOO_COSTLY_COUNT"; - public static final String VALUESET_TOO_COSTLY_TIME = "VALUESET_TOO_COSTLY_TIME"; - public static final String NO_VALID_DISPLAY_FOUND = "NO_VALID_DISPLAY_FOUND"; - public static final String SD_NO_CONTEXT_WHEN_NOT_EXTENSION = "SD_NO_CONTEXT_WHEN_NOT_EXTENSION"; - public static final String SD_CONTEXT_SHOULD_NOT_BE_ELEMENT = "SD_CONTEXT_SHOULD_NOT_BE_ELEMENT"; - public static final String SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION = "SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION"; - public static final String SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE = "SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE"; - public static final String SM_TARGET_TRANSFORM_OP_INVALID_TYPE = "SM_TARGET_TRANSFORM_OP_INVALID_TYPE"; - public static final String ED_PATH_WRONG_TYPE_MATCH = "ED_PATH_WRONG_TYPE_MATCH"; - public static final String ATTEMPT_TO_CHANGE_SLICING = "ATTEMPT_TO_CHANGE_SLICING"; - public static final String REPEAT_SLICING_IGNORED = "REPEAT_SLICING_IGNORED"; - public static final String SD_ELEMENT_NOT_IN_CONSTRAINT = "SD_ELEMENT_NOT_IN_CONSTRAINT"; - public static final String SD_OBGLIGATION_PROFILE_UKNOWN = "SD_OBGLIGATION_PROFILE_UKNOWN"; - public static final String SD_OBGLIGATION_PROFILE_DERIVATION = "SD_OBGLIGATION_PROFILE_DERIVATION"; - public static final String SD_OBGLIGATION_PROFILE_UNMATCHED = "SD_OBGLIGATION_PROFILE_UNMATCHED"; - public static final String SD_OBGLIGATION_PROFILE_PATH_WRONG = "SD_OBGLIGATION_PROFILE_PATH_WRONG"; - public static final String SD_OBGLIGATION_PROFILE_ILLEGAL = "SD_OBGLIGATION_PROFILE_ILLEGAL"; - public static final String SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING = "SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING"; - public static final String SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE = "SD_OBGLIGATION_PROFILE_INVALID_BINDING_CODE"; - public static final String SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH = "SD_OBGLIGATION_PROFILE_INVALID_BINDING_STRENGTH"; - public static final String SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = "SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING"; - public static final String SD_OBGLIGATION_INHERITS_PROFILE_NO_TARGET = "SD_OBGLIGATION_INHERITS_PROFILE_NO_TARGET"; - public static final String SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND = "SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND"; - public static final String SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE = "SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE"; - public static final String SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE = "SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE"; - public static final String QUESTIONNAIRE_Q_UNKNOWN_DERIVATION = "QUESTIONNAIRE_Q_UNKNOWN_DERIVATION"; - public static final String QUESTIONNAIRE_Q_NO_DERIVATION_TYPE = "QUESTIONNAIRE_Q_NO_DERIVATION_TYPE"; - public static final String QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE = "QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE"; - public static final String QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED = "QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED"; - public static final String QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN = "QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN"; - public static final String QUESTIONNAIRE_Q_ITEM_NOT_DERIVED = "QUESTIONNAIRE_Q_ITEM_NOT_DERIVED"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION = "QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH = "QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE = "QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS = "QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS = "QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS"; - public static final String QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW = "QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW"; - public static final String PRIMITIVE_MUSTHAVEVALUE_MESSAGE = "PRIMITIVE_MUSTHAVEVALUE_MESSAGE"; - public static final String PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE = "PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE"; - public static final String ED_INVARIANT_NO_KEY = "ED_INVARIANT_NO_KEY"; - public static final String ED_INVARIANT_NO_EXPRESSION = "ED_INVARIANT_NO_EXPRESSION"; - public static final String ED_INVARIANT_EXPRESSION_CONFLICT = "ED_INVARIANT_EXPRESSION_CONFLICT"; - public static final String ED_INVARIANT_EXPRESSION_ERROR = "ED_INVARIANT_EXPRESSION_ERROR"; - public static final String SNAPSHOT_IS_EMPTY = "SNAPSHOT_IS_EMPTY"; - public static final String EXTENSION_CONTEXT_UNABLE_TO_CHECK_PROFILE = "EXTENSION_CONTEXT_UNABLE_TO_CHECK_PROFILE"; - public static final String EXTENSION_CONTEXT_UNABLE_TO_FIND_PROFILE = "EXTENSION_CONTEXT_UNABLE_TO_FIND_PROFILE"; - public static final String TERMINOLOGY_TX_HINT = "TERMINOLOGY_TX_HINT"; - public static final String TERMINOLOGY_TX_WARNING = "TERMINOLOGY_TX_WARNING"; - public static final String SD_ED_TYPE_PROFILE_WRONG_TYPE = "SD_ED_TYPE_PROFILE_WRONG_TYPE"; - public static final String VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED = "VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED"; - public static final String VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED = "VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED"; - public static final String CS_SCT_IPS_NOT_IPS = "CS_SCT_IPS_NOT_IPS"; - public static final String UNICODE_XML_BAD_CHARS = "UNICODE_XML_BAD_CHARS"; - public static final String LIQUID_UNKNOWN_FILTER = "LIQUID_UNKNOWN_FILTER"; - public static final String LIQUID_UNKNOWN_SYNTAX = "LIQUID_UNKNOWN_SYNTAX"; - public static final String LIQUID_SYNTAX_EXPECTING = "LIQUID_SYNTAX_EXPECTING"; - public static final String LIQUID_SYNTAX_UNTERMINATED = "LIQUID_SYNTAX_UNTERMINATED"; - public static final String LIQUID_UNKNOWN_FLOW_STMT = "LIQUID_UNKNOWN_FLOW_STMT"; - public static final String LIQUID_UNKNOWN_NOEND = "LIQUID_UNKNOWN_NOEND"; - public static final String LIQUID_SYNTAX_INCLUDE = "LIQUID_SYNTAX_INCLUDE"; - public static final String LIQUID_SYNTAX_LOOP = "LIQUID_SYNTAX_LOOP"; - public static final String LIQUID_SYNTAX_NOTERM = "LIQUID_SYNTAX_NOTERM"; - public static final String LIQUID_UNKNOWN_NOTERM = "LIQUID_UNKNOWN_NOTERM"; - public static final String LIQUID_SYNTAX_COLON = "LIQUID_SYNTAX_COLON"; - public static final String LIQUID_SYNTAX_NUMBER = "LIQUID_SYNTAX_NUMBER"; - public static final String LIQUID_SYNTAX_UNEXPECTED = "LIQUID_SYNTAX_UNEXPECTED"; - public static final String LIQUID_VARIABLE_ALREADY_ASSIGNED = "LIQUID_VARIABLE_ALREADY_ASSIGNED"; - public static final String LIQUID_VARIABLE_ILLEGAL = "LIQUID_VARIABLE_ILLEGAL"; - public static final String TERMINOLOGY_TX_SYSTEM_NOT_USABLE = "TERMINOLOGY_TX_SYSTEM_NOT_USABLE"; - public static final String ED_INVARIANT_DIFF_NO_SOURCE = "ED_INVARIANT_DIFF_NO_SOURCE"; - public static final String FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT = "FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT"; - public static final String FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT = "FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT"; - public static final String ED_INVARIANT_KEY_ALREADY_USED = "ED_INVARIANT_KEY_ALREADY_USED"; - public static final String FHIRPATH_OFTYPE_IMPOSSIBLE = "FHIRPATH_OFTYPE_IMPOSSIBLE"; - public static final String FHIRPATH_AS_IMPOSSIBLE = "FHIRPATH_AS_IMPOSSIBLE"; - public static final String ED_SEARCH_EXPRESSION_ERROR = "ED_SEARCH_EXPRESSION_ERROR"; - public static final String SD_EXTENSION_URL_MISMATCH = "SD_EXTENSION_URL_MISMATCH"; - public static final String MSG_DEPRECATED = "MSG_DEPRECATED"; - public static final String MSG_WITHDRAWN = "MSG_WITHDRAWN"; - public static final String MSG_RETIRED = "MSG_RETIRED"; - public static final String MSG_EXPERIMENTAL = "MSG_EXPERIMENTAL"; - public static final String MSG_DRAFT = "MSG_DRAFT"; - public static final String MSG_DEPRECATED_SRC = "MSG_DEPRECATED_SRC"; - public static final String MSG_WITHDRAWN_SRC = "MSG_WITHDRAWN_SRC"; - public static final String MSG_RETIRED_SRC = "MSG_RETIRED_SRC"; - public static final String MSG_DRAFT_SRC = "MSG_DRAFT_SRC"; - public static final String MSG_EXPERIMENTAL_SRC = "MSG_EXPERIMENTAL_SRC"; - public static final String STATUS_CODE_WARNING = "STATUS_CODE_WARNING"; - public static final String STATUS_CODE_HINT = "STATUS_CODE_HINT"; - public static final String STATUS_CODE_WARNING_CODE = "STATUS_CODE_WARNING_CODE"; - public static final String STATUS_CODE_HINT_CODE = "STATUS_CODE_HINT_CODE"; - public static final String SD_EXTENSION_URL_MISSING = "SD_EXTENSION_URL_MISSING"; - public static final String MSG_DEPENDS_ON_DEPRECATED = "MSG_DEPENDS_ON_DEPRECATED"; - public static final String MSG_DEPENDS_ON_WITHDRAWN = "MSG_DEPENDS_ON_WITHDRAWN"; - public static final String MSG_DEPENDS_ON_RETIRED = "MSG_DEPENDS_ON_RETIRED"; - public static final String MSG_DEPENDS_ON_EXPERIMENTAL = "MSG_DEPENDS_ON_EXPERIMENTAL"; - public static final String MSG_DEPENDS_ON_DRAFT = "MSG_DEPENDS_ON_DRAFT"; - public static final String MSG_DEPENDS_ON_EXTENSION = "MSG_DEPENDS_ON_EXTENSION"; - public static final String MSG_DEPENDS_ON_PROFILE = "MSG_DEPENDS_ON_PROFILE"; - public static final String VALIDATION_VAL_STATUS_INCONSISTENT = "VALIDATION_VAL_STATUS_INCONSISTENT"; - public static final String VALIDATION_VAL_STATUS_INCONSISTENT_HINT = "VALIDATION_VAL_STATUS_INCONSISTENT_HINT"; - public static final String CODESYSTEM_CS_COUNT_COMPLETE_WRONG = "CODESYSTEM_CS_COUNT_COMPLETE_WRONG"; - public static final String CODESYSTEM_CS_COUNT_FRAGMENT_WRONG = "CODESYSTEM_CS_COUNT_FRAGMENT_WRONG"; - public static final String CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO = "CODESYSTEM_CS_COUNT_NOTPRESENT_ZERO"; - public static final String CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG = "CODESYSTEM_CS_COUNT_SUPPLEMENT_WRONG"; - public static final String CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED = "CODESYSTEM_CS_COUNT_NO_CONTENT_ALLOWED"; - public static final String VALUESET_CIRCULAR_REFERENCE = "VALUESET_CIRCULAR_REFERENCE"; - public static final String VALUESET_SUPPLEMENT_MISSING = "VALUESET_SUPPLEMENT_MISSING"; - public static final String CONCEPTMAP_VS_TOO_MANY_CODES = "CONCEPTMAP_VS_TOO_MANY_CODES"; - public static final String CONCEPTMAP_VS_INVALID_CONCEPT_CODE = "CONCEPTMAP_VS_INVALID_CONCEPT_CODE"; - public static final String CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER = "CONCEPTMAP_VS_INVALID_CONCEPT_CODE_VER"; - public static final String VALUESET_INC_TOO_MANY_CODES = "VALUESET_INC_TOO_MANY_CODES"; - public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH"; - public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES"; - public static final String BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON = "BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON"; - public static final String VALIDATION_HL7_WG_NEEDED = "VALIDATION_HL7_WG_NEEDED"; - public static final String VALIDATION_HL7_WG_UNKNOWN = "VALIDATION_HL7_WG_UNKNOWN"; - public static final String VALIDATION_HL7_PUBLISHER_MISMATCH = "VALIDATION_HL7_PUBLISHER_MISMATCH"; - public static final String VALIDATION_HL7_PUBLISHER_MISMATCH2 = "VALIDATION_HL7_PUBLISHER_MISMATCH2"; - public static final String VALIDATION_HL7_WG_URL = "VALIDATION_HL7_WG_URL"; - public static final String VALIDATION_HL7_PUBLISHER_MISSING = "VALIDATION_HL7_PUBLISHER_MISSING"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT"; - public static final String TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT = "TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT"; - public static final String CONCEPTMAP_VS_CONCEPT_CODE_UNKNOWN_SYSTEM = "CONCEPTMAP_VS_CONCEPT_CODE_UNKNOWN_SYSTEM"; - public static final String LOGICAL_MODEL_NAME_MISMATCH = "LOGICAL_MODEL_NAME_MISMATCH"; - public static final String LOGICAL_MODEL_QNAME_MISMATCH = "LOGICAL_MODEL_QNAME_MISMATCH"; - public static final String FHIRPATH_CHOICE_NO_TYPE_SPECIFIER = "FHIRPATH_CHOICE_NO_TYPE_SPECIFIER"; - public static final String FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER = "FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER"; - public static final String FHIRPATH_NOT_A_COLLECTION = "FHIRPATH_NOT_A_COLLECTION"; - public static final String TERMINOLOGY_TX_UNKNOWN_OID = "TERMINOLOGY_TX_UNKNOWN_OID"; - public static final String XSI_TYPE_WRONG = "XSI_TYPE_WRONG"; - public static final String XSI_TYPE_UNNECESSARY = "XSI_TYPE_UNNECESSARY"; - public static final String TERMINOLOGY_TX_OID_MULTIPLE_MATCHES = "TERMINOLOGY_TX_OID_MULTIPLE_MATCHES"; - public static final String TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN = "TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN"; - public static final String CDA_UNKNOWN_TEMPLATE = "CDA_UNKNOWN_TEMPLATE"; - public static final String CDA_UNKNOWN_TEMPLATE_EXT = "CDA_UNKNOWN_TEMPLATE_EXT"; - public static final String UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV = "UNABLE_TO_DETERMINE_TYPE_CONTEXT_INV"; - public static final String ED_CONTEXT_INVARIANT_EXPRESSION_ERROR = "ED_CONTEXT_INVARIANT_EXPRESSION_ERROR"; - public static final String VALIDATION_VAL_PROFILE_SIGNPOST_OBS = "VALIDATION_VAL_PROFILE_SIGNPOST_OBS"; - public static final String FHIRPATH_INVALID_TYPE = "FHIRPATH_INVALID_TYPE"; - public static final String FHIRPATH_AS_COLLECTION = "FHIRPATH_AS_COLLECTION"; - public static final String FHIRPATH_ARITHMETIC_QTY = "FHIRPATH_ARITHMETIC_QTY"; - public static final String FHIRPATH_ARITHMETIC_UNIT = "FHIRPATH_ARITHMETIC_UNIT"; - public static final String FHIRPATH_ARITHMETIC_PLUS = "FHIRPATH_ARITHMETIC_PLUS"; - public static final String FHIRPATH_ARITHMETIC_MINUS = "FHIRPATH_ARITHMETIC_MINUS"; - public static final String BUNDLE_ENTRY_URL_MATCHES_TYPE_ID = "BUNDLE_ENTRY_URL_MATCHES_TYPE_ID"; - public static final String BUNDLE_ENTRY_URL_MATCHES_NO_ID = "BUNDLE_ENTRY_URL_MATCHES_NO_ID"; - public static final String BUNDLE_ENTRY_URL_ABSOLUTE = "BUNDLE_ENTRY_URL_ABSOLUTE"; - public static final String BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE = "BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE"; - public static final String FHIRPATH_COLLECTION_STATUS_PARAMETER = "FHIRPATH_COLLECTION_STATUS_PARAMETER"; - public static final String FHIRPATH_COLLECTION_STATUS_CONTEXT = "FHIRPATH_COLLECTION_STATUS_CONTEXT"; - public static final String SEARCHPARAMETER_MISSING_COMPONENTS = "SEARCHPARAMETER_MISSING_COMPONENTS"; - public static final String BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT = "BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT"; - public static final String BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT = "BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT"; - public static final String XHTML_IDREF_NOT_FOUND = "XHTML_IDREF_NOT_FOUND"; - public static final String XHTML_IDREF_NOT_MULTIPLE_MATCHES = "XHTML_IDREF_NOT_MULTIPLE_MATCHES"; - public static final String SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH = "SD_CONTEXT_SHOULD_NOT_BE_FHIRPATH"; - public static final String TX_GENERAL_CC_ERROR_MESSAGE = "TX_GENERAL_CC_ERROR_MESSAGE"; - public static final String FHIRPATH_UNKNOWN_EXTENSION = "FHIRPATH_UNKNOWN_EXTENSION"; - public static final String TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES = "TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES"; - public static final String CONTAINED_ORPHAN_DOM3 = "CONTAINED_ORPHAN_DOM3"; - public static final String VALUESET_INCLUDE_CS_NOT_CS = "VALUESET_INCLUDE_CS_NOT_CS"; - public static final String VALUESET_INCLUDE_CS_NOT_FOUND = "VALUESET_INCLUDE_CS_NOT_FOUND"; - public static final String VALUESET_INCLUDE_CSVER_NOT_FOUND = "VALUESET_INCLUDE_CSVER_NOT_FOUND"; - public static final String VALUESET_INCLUDE_CS_MULTI_FOUND = "VALUESET_INCLUDE_CS_MULTI_FOUND"; - public static final String VALUESET_INCLUDE_CSVER_MULTI_FOUND = "VALUESET_INCLUDE_CSVER_MULTI_FOUND"; - public static final String UNABLE_TO_INFER_CODESYSTEM = "UNABLE_TO_INFER_CODESYSTEM"; - public static final String CODE_CASE_DIFFERENCE = "CODE_CASE_DIFFERENCE"; - public static final String ILLEGAL_PROPERTY = "ILLEGAL_PROPERTY"; - public static final String VALUESET_INCLUDE_SYSTEM_ABSOLUTE = "VALUESET_INCLUDE_SYSTEM_ABSOLUTE"; - public static final String VALUESET_INCLUDE_SYSTEM_ABSOLUTE_FRAG = "VALUESET_INCLUDE_SYSTEM_ABSOLUTE_FRAG"; - public static final String CODESYSTEM_CS_NO_VS_SUPPLEMENT1 = "CODESYSTEM_CS_NO_VS_SUPPLEMENT1"; - public static final String CODESYSTEM_CS_NO_VS_SUPPLEMENT2 = "CODESYSTEM_CS_NO_VS_SUPPLEMENT2"; - public static final String CODESYSTEM_CS_SUPP_NO_SUPP = "CODESYSTEM_CS_SUPP_NO_SUPP"; - public static final String VALUESET_INCLUDE_CS_CONTENT = "VALUESET_INCLUDE_CS_CONTENT"; - public static final String VALUESET_INCLUDE_CSVER_CONTENT = "VALUESET_INCLUDE_CSVER_CONTENT"; - public static final String VALUESET_INCLUDE_CS_SUPPLEMENT = "VALUESET_INCLUDE_CS_SUPPLEMENT"; - public static final String VALUESET_INCLUDE_CSVER_SUPPLEMENT = "VALUESET_INCLUDE_CSVER_SUPPLEMENT"; - public static final String CODESYSTEM_SUPP_NO_DISPLAY = "CODESYSTEM_SUPP_NO_DISPLAY"; - public static final String CODESYSTEM_NOT_CONTAINED = "CODESYSTEM_NOT_CONTAINED"; - public static final String CODESYSTEM_THO_CHECK = "CODESYSTEM_THO_CHECK"; - public static final String TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS = "TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS"; - public static final String CODESYSTEM_PROPERTY_DUPLICATE_URI = "CODESYSTEM_PROPERTY_DUPLICATE_URI"; - public static final String CODESYSTEM_PROPERTY_BAD_HL7_URI = "CODESYSTEM_PROPERTY_BAD_HL7_URI"; - public static final String CODESYSTEM_PROPERTY_SYNONYM_CHECK = "CODESYSTEM_PROPERTY_SYNONYM_CHECK"; - public static final String CODESYSTEM_PROPERTY_DUPLICATE_CODE = "CODESYSTEM_PROPERTY_DUPLICATE_CODE"; - public static final String CODESYSTEM_PROPERTY_URI_CODE_MISMATCH = "CODESYSTEM_PROPERTY_URI_CODE_MISMATCH"; - public static final String CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH = "CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH"; - public static final String CODESYSTEM_PROPERTY_UNKNOWN_CODE = "CODESYSTEM_PROPERTY_UNKNOWN_CODE"; - public static final String CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE = "CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE"; - public static final String CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH = "CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH"; - public static final String CODESYSTEM_PROPERTY_UNDEFINED = "CODESYSTEM_PROPERTY_UNDEFINED"; - public static final String CODESYSTEM_PROPERTY_NO_VALUE = "CODESYSTEM_PROPERTY_NO_VALUE"; - public static final String CODESYSTEM_PROPERTY_WRONG_TYPE = "CODESYSTEM_PROPERTY_WRONG_TYPE"; - public static final String CODESYSTEM_DESIGNATION_DISP_CLASH_NO_LANG = "CODESYSTEM_DESIGNATION_DISP_CLASH_NO_LANG"; - public static final String CODESYSTEM_DESIGNATION_DISP_CLASH_LANG = "CODESYSTEM_DESIGNATION_DISP_CLASH_LANG"; - public static final String VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS = "VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS"; - public static final String VALUESET_UNKNOWN_FILTER_PROPERTY = "VALUESET_UNKNOWN_FILTER_PROPERTY"; - public static final String VALUESET_BAD_FILTER_VALUE_BOOLEAN = "VALUESET_BAD_FILTER_VALUE_BOOLEAN"; - public static final String VALUESET_BAD_FILTER_VALUE_CODE = "VALUESET_BAD_FILTER_VALUE_CODE"; - public static final String VALUESET_BAD_FILTER_VALUE_DATETIME = "VALUESET_BAD_FILTER_VALUE_DATETIME"; - public static final String VALUESET_BAD_FILTER_VALUE_DECIMAL = "VALUESET_BAD_FILTER_VALUE_DECIMAL"; - public static final String VALUESET_BAD_FILTER_VALUE_INTEGER = "VALUESET_BAD_FILTER_VALUE_INTEGER"; - public static final String VALUESET_BAD_FILTER_VALUE_VALID_CODE = "VALUESET_BAD_FILTER_VALUE_VALID_CODE"; - public static final String VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE = "VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE"; - public static final String VALUESET_BAD_FILTER_VALUE_CODED = "VALUESET_BAD_FILTER_VALUE_CODED"; - public static final String VALUESET_BAD_FILTER_VALUE_CODED_INVALID = "VALUESET_BAD_FILTER_VALUE_CODED_INVALID"; - public static final String VALUESET_BAD_FILTER_OP = "VALUESET_BAD_FILTER_OP"; - public static final String VALUESET_BAD_FILTER_VALUE_HAS_COMMA = "VALUESET_BAD_FILTER_VALUE_HAS_COMMA"; - public static final String VALUESET_BAD_FILTER_VALUE_VALID_REGEX = "VALUESET_BAD_FILTER_VALUE_VALID_REGEX"; - public static final String VALUESET_BAD_PROPERTY_NO_REGEX = "VALUESET_BAD_PROPERTY_NO_REGEX"; - public static final String CODESYSTEM_PROPERTY_CODE_WARNING = "CODESYSTEM_PROPERTY_CODE_WARNING"; - public static final String SD_ELEMENT_FIXED_WRONG_TYPE = "SD_ELEMENT_FIXED_WRONG_TYPE"; - public static final String SD_ELEMENT_REASON_DERIVED = "SD_ELEMENT_REASON_DERIVED"; - public static final String SD_ELEMENT_PATTERN_WRONG_TYPE = "SD_ELEMENT_PATTERN_WRONG_TYPE"; - public static final String FHIRPATH_REDEFINE_VARIABLE = "FHIRPATH_REDEFINE_VARIABLE"; - public static final String BINDING_ADDITIONAL = "BINDING_ADDITIONAL"; - public static final String BINDING_MAX = "BINDING_MAX"; + //public static final String DUPLICATE_RESOURCE_VERSION = "DUPLICATE_RESOURCE_VERSION"; + //public static final String FHIRPATH_BAD_DATE = "FHIRPATH_BAD_DATE"; + //public static final String FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE = "FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE"; + //public static final String INTERNAL_RECURSION_DETECTION_FIND_LOOP_PATH_RECURSION____CHECK_PATHS_ARE_VALID_FOR_PATH_ = "Internal_recursion_detection_find_loop_path_recursion____check_paths_are_valid_for_path_"; + //public static final String MEASURE_MR_GRP_POP_MISSING_BY_CODE = "MEASURE_MR_GRP_POP_MISSING_BY_CODE"; + //public static final String MEASURE_M_CQL_NOT_FOUND = "MEASURE_M_CQL_NOT_FOUND"; + //public static final String MEASURE_M_GROUP_STRATA = "MEASURE_M_GROUP_STRATA"; + //public static final String NOT_SUPPORTED_YET = "Not_supported_yet"; + //public static final String QUESTIONNAIRE_QR_ITEM_NOTENABLED = "Questionnaire_QR_Item_NotEnabled"; + //public static final String SD_ED_SHOULD_BIND = "SD_ED_SHOULD_BIND"; + //public static final String TERMINOLOGY_TX_CONFIRM_4b = "Terminology_TX_Confirm_4b"; + //public static final String XML_STATED_ENCODING_INVALID = "xml_stated_encoding_invalid"; + } diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/POGenerator.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/POGenerator.java index b219d05d9..0e9fcfdbf 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/POGenerator.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/POGenerator.java @@ -1,129 +1,318 @@ package org.hl7.fhir.utilities.i18n; import java.io.File; +import java.io.FileNotFoundException; import java.io.IOException; import java.nio.file.Files; import java.util.ArrayList; -import java.util.HashMap; -import java.util.HashSet; +import java.util.Collections; +import java.util.Comparator; import java.util.List; -import java.util.Map; -import java.util.Set; +import org.hl7.fhir.utilities.StringPair; import org.hl7.fhir.utilities.TextFile; import org.hl7.fhir.utilities.Utilities; import org.hl7.fhir.utilities.filesystem.ManagedFileAccess; public class POGenerator { - public static void main(String[] args) throws IOException { -// if (true) { -// throw new Error("This needs to be rewritten for using existing .po files"); -// } - new POGenerator().execute(args[0], Integer.valueOf(args[1]), args[2], args[3], args[4], args.length == 6 ? args[5] : null); + public class POObjectSorter implements Comparator { + + @Override + public int compare(POObject o1, POObject o2) { + return o1.id.compareTo(o2.id); + } + } - private void execute(String lang, int count, String dest, String source, String current, String altVersion) throws IOException { - File dst = ManagedFileAccess.file(dest); - if (dst.exists()) { - dst.delete(); + private class POObject { + private String id; + private String msgid; + private String oldMsgId; + private String msgidPlural; + private List msgstr = new ArrayList(); + } + + public static void main(String[] args) throws IOException { + new POGenerator().execute(args[0], args[1]); + } + + private List prefixes = new ArrayList<>(); + + private void execute(String source, String dest) throws IOException { + generate(Utilities.path(source, "rendering-phrases.properties"), Utilities.path(dest, "rendering-phrases-de.po")); + generate(Utilities.path(source, "rendering-phrases.properties"), Utilities.path(dest, "rendering-phrases-es.po")); + generate(Utilities.path(source, "rendering-phrases.properties"), Utilities.path(dest, "rendering-phrases-ja.po")); + generate(Utilities.path(source, "rendering-phrases.properties"), Utilities.path(dest, "rendering-phrases-nl.po")); + + generate(Utilities.path(source, "Messages.properties"), Utilities.path(dest, "validator-messages-de.po")); + generate(Utilities.path(source, "Messages.properties"), Utilities.path(dest, "validator-messages-es.po")); + generate(Utilities.path(source, "Messages.properties"), Utilities.path(dest, "validator-messages-ja.po")); + generate(Utilities.path(source, "Messages.properties"), Utilities.path(dest, "validator-messages-nl.po")); + } + + private void generate(String source, String dest) throws IOException { + // load the destination file + // load the source file + // update the destination object set for changes from the source file + // save the destination file + List objects = loadPOFile(dest); + List props = loadProperties(source); + for (StringPair e : props) { + String name = e.getName(); + int mode = 0; + if (name.endsWith("_one")) { + mode = 1; + name = name.substring(0, name.length() - 4); + } else if (name.endsWith("_other")) { + mode = 2; + name = name.substring(0, name.length() - 6); + } + + POObject o = findObject(objects, name); + if (o == null) { + if (mode > 1) { + throw new Error("Not right"); + } + o = new POObject(); + o.id = name; + objects.add(o); + o.msgid = e.getValue(); + } else { + update(o, mode, e.getValue()); + } } - Map props = loadProperties(source); - Map curr = loadProperties(current); - Map past = loadProperties(altVersion); + Collections.sort(objects, new POObjectSorter()); + savePOFile(dest, objects); + + // File dst = ManagedFileAccess.file(dest); + // if (dst.exists()) { + // dst.delete(); + // } + // Map props = loadProperties(source); + // Map curr = loadProperties(current); + // Map past = loadProperties(altVersion); + // + // StringBuilder b = new StringBuilder(); + // b.append("en -> "+lang+"\r\n"); + // + // Set plurals = new HashSet<>(); + // + // for (String n : Utilities.sorted(curr.keySet())) { + // if (n.endsWith("_one") || n.endsWith("_other") || n.endsWith("_many")) { + // if (n.endsWith("_one")) { + // n = n.substring(0, n.length() - 4); + // } else if (n.endsWith("_other")) { + // n = n.substring(0, n.length() - 6); + // } else if (n.endsWith("_many")) { + // n = n.substring(0, n.length() - 5); + // } + // if (!plurals.contains(n)) { + // plurals.add(n); + // b.append("\r\n"); + // String v1 = curr.get(n+"_one"); + // String vO = curr.get(n+"_other"); + // List ll = new ArrayList<>(); + // addToList(ll, props, n+"_one"); + // addToList(ll, props, n+"_other"); + // addToList(ll, props, n+"_many"); + // String p1 = past == null ? null : past.get(n+"_one"); + // String pO = past == null ? null : past.get(n+"_other"); + // boolean changed = false; + // if (ll.size() > 0 && p1 != null) { + // if (!p1.equals(v1)) { + // changed = true; + // ll.set(0, "!!"+ll.get(0)); + // } + // } + // if (ll.size() > 1 && pO != null) { + // if (!pO.equals(vO)) { + // changed = true; + // ll.set(1, "!!"+ll.get(1)); + // if (ll.size() == 3) { + // ll.set(2, "!!"+ll.get(2)); + // } + // } + // } + // b.append("#: "+n+"\r\n"); + // if (changed) { + // b.append("#| one "+p1+"\r\n"); + // b.append("#| plural "+pO+"\r\n"); + // } + // b.append("msgid \""+v1+"\"\r\n"); + // b.append("msgid_plural \""+vO+"\"\r\n"); + // for (int i = 0; i < count; i++) { + // b.append("msgstr["+i+"] \""+(i < ll.size() ? ll.get(i) : "")+"\"\r\n"); + // } + // } + // } else { + // b.append("\r\n"); + // String v = curr.get(n); + // String l = props.get(n); + // String p = past == null ? null : past.get(n); + // boolean changed = false; + // if (l != null && p != null) { + // if (!p.equals(v)) { + // changed = true; + // l = "!!"+l; + // } + // } + // b.append("#: "+n+"\r\n"); + // if (changed) { + // b.append("#| "+p+"\r\n"); + // } + // b.append("msgid \""+v+"\"\r\n"); + // b.append("msgstr \""+(l == null ? "" : l)+"\"\r\n"); + // } + // } + // TextFile.stringToFile(b.toString(), dst); + } + + private void savePOFile(String dest, List objects) throws IOException { + prefixes.clear(); StringBuilder b = new StringBuilder(); - b.append("en -> "+lang+"\r\n"); - - Set plurals = new HashSet<>(); - - for (String n : Utilities.sorted(curr.keySet())) { - if (n.endsWith("_one") || n.endsWith("_other") || n.endsWith("_many")) { - if (n.endsWith("_one")) { - n = n.substring(0, n.length() - 4); - } else if (n.endsWith("_other")) { - n = n.substring(0, n.length() - 6); - } else if (n.endsWith("_many")) { - n = n.substring(0, n.length() - 5); + for (String p : prefixes) { + b.append(p); + b.append("\r\n"); + } + b.append("\r\n"); + for (POObject o : objects) { + b.append("#: "+o.id+"\r\n"); + if (o.oldMsgId != null) { + b.append("#| "+o.oldMsgId+"\r\n"); + } + b.append("msgid \""+o.msgid+"\"\r\n"); + if (o.msgidPlural != null) { + b.append("msgid_plural \""+o.msgidPlural+"\"\r\n"); + for (int i = 0; i < o.msgstr.size(); i++) { + b.append("msgstr["+i+"] \""+o.msgstr.get(i)+"\"\r\n"); } - if (!plurals.contains(n)) { - plurals.add(n); - b.append("\r\n"); - String v1 = curr.get(n+"_one"); - String vO = curr.get(n+"_other"); - List ll = new ArrayList<>(); - addToList(ll, props, n+"_one"); - addToList(ll, props, n+"_other"); - addToList(ll, props, n+"_many"); - String p1 = past == null ? null : past.get(n+"_one"); - String pO = past == null ? null : past.get(n+"_other"); - boolean changed = false; - if (ll.size() > 0 && p1 != null) { - if (!p1.equals(v1)) { - changed = true; - ll.set(0, "!!"+ll.get(0)); - } - } - if (ll.size() > 1 && pO != null) { - if (!pO.equals(vO)) { - changed = true; - ll.set(1, "!!"+ll.get(1)); - if (ll.size() == 3) { - ll.set(2, "!!"+ll.get(2)); - } - } - } - b.append("#: "+n+"\r\n"); - if (changed) { - b.append("#| one "+p1+"\r\n"); - b.append("#| plural "+pO+"\r\n"); - } - b.append("msgid \""+v1+"\"\r\n"); - b.append("msgid_plural \""+vO+"\"\r\n"); - for (int i = 0; i < count; i++) { - b.append("msgstr["+i+"] \""+(i < ll.size() ? ll.get(i) : "")+"\"\r\n"); + } else { + if (o.msgstr.size() == 0) { + b.append("msgstr \"\"\r\n"); + } else { + b.append("msgstr \""+o.msgstr.get(0)+"\"\r\n"); + } + } + b.append("\r\n"); + } + TextFile.stringToFile(b.toString(), dest); + } + + private void update(POObject o, int mode, String value) { + if (mode == 0) { + if (!value.equals(o.msgid)) { + // the english string has changed, and the other language string is now out of date + if (o.oldMsgId != null && !o.msgstr.isEmpty()) { + o.oldMsgId = o.msgid; + } + o.msgid = value; + for (int i = 0; i < o.msgstr.size(); i++) { + if (!Utilities.noString(o.msgstr.get(i))) { + o.msgstr.set(i, "!!"+o.msgstr.get(i)); } } } else { - b.append("\r\n"); - String v = curr.get(n); - String l = props.get(n); - String p = past == null ? null : past.get(n); - boolean changed = false; - if (l != null && p != null) { - if (!p.equals(v)) { - changed = true; - l = "!!"+l; - } - } - b.append("#: "+n+"\r\n"); - if (changed) { - b.append("#| "+p+"\r\n"); + // we don't care; nothing to do + } + } else if (mode == 1) { + if (!value.equals(o.msgid)) { + // the english string has changed, and the other language string is now out of date + if (o.oldMsgId != null && !o.msgstr.isEmpty()) { + o.oldMsgId = o.msgid; } - b.append("msgid \""+v+"\"\r\n"); - b.append("msgstr \""+(l == null ? "" : l)+"\"\r\n"); + o.msgid = value; + if (o.msgstr.size() > 0 && !Utilities.noString(o.msgstr.get(0))) { + o.msgstr.set(0, "!!"+o.msgstr.get(0)); + } + } else { + // we don't care; nothing to do + } + } else if (mode == 2) { + if (!value.equals(o.msgid)) { + // the english string has changed, and the other language string is now out of date +// if (o.oldMsgId != null) { +// o.oldMsgId = o.msgid; +// } + o.msgid = value; + if (o.msgstr.size() > 1 && !Utilities.noString(o.msgstr.get(1))) { + o.msgstr.set(1, "!!"+o.msgstr.get(1)); + } + } else { + // we don't care; nothing to do } } - TextFile.stringToFile(b.toString(), dst); } - private void addToList(List l, Map props, String string) { - // TODO Auto-generated method stub - - } - - private Map loadProperties(String source) throws IOException { - if (source == null) { - return null; + private POObject findObject(List objects, String name) { + for (POObject t : objects) { + if (t.id.equals(name)) { + return t; + } } - Map res = new HashMap<>(); + return null; + } + + private List loadPOFile(String dest) throws FileNotFoundException, IOException { + List list = new ArrayList(); + POObject obj = null; + for (String line : TextFile.fileToLines(dest)) { + if (Utilities.noString(line)) { + // else + } else if (line.startsWith("#:")) { + obj = new POObject(); + obj.id = line.substring(2).trim(); + list.add(obj); + } else if (obj == null) { + prefixes.add(line); + } else if (line.startsWith("#|")) { + obj.oldMsgId = line.substring(2).trim(); + } else if (line.startsWith("msgid ")) { + obj.msgid = trimQuotes(line.substring(5).trim()); + } else if (line.startsWith("msgid_plural ")) { + obj.msgidPlural = trimQuotes(line.substring(12).trim()); + } else if (line.startsWith("msgstr ")) { + obj.msgstr.add(trimQuotes(line.substring(6).trim())); + } else if (line.startsWith("msgstr[")) { + String s = line.substring(7); + int i = s.indexOf("]"); + int c = Integer.valueOf(s.substring(0, i)); + s = trimQuotes(s.substring(i+1).trim()); + if (s.startsWith("!!")) { + s = s.substring(2); + } + if (c != obj.msgstr.size()) { + System.out.println("index issue"); + } else { // if (!Utilities.noString(s)) { + obj.msgstr.add(s); + } + } else { + System.out.println("unknown line: "+line); + } + } + return list; + } + + private String trimQuotes(String s) { + if (s.startsWith("\"")) { + s = s.substring(1); + } + if (s.endsWith("\"")) { + s = s.substring(0, s.length()-1); + } + return s.trim(); + } + + private List loadProperties(String source) throws IOException { + List res = new ArrayList<>(); File src = ManagedFileAccess.file(source); List lines = Files.readAllLines(src.toPath()); for (String line : lines) { if (!line.startsWith("#") && line.contains("=")) { String n = line.substring(0, line.indexOf("=")).trim(); String v = line.substring(line.indexOf("=")+1).trim(); - res.put(n, v); + res.add(new StringPair(n, v)); } } return res; diff --git a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java index 510038bd0..39b722125 100644 --- a/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java +++ b/org.hl7.fhir.utilities/src/main/java/org/hl7/fhir/utilities/i18n/RenderingI18nContext.java @@ -1,6 +1,46 @@ package org.hl7.fhir.utilities.i18n; public class RenderingI18nContext extends I18nBase { + + public static final String ACTOR_DEF_ACT = "ACTOR_DEF_ACT"; + public static final String ACTOR_DEF_CAP = "ACTOR_DEF_CAP"; + public static final String ACTOR_DEF_DER = "ACTOR_DEF_DER"; + public static final String ACTOR_DEF_REF = "ACTOR_DEF_REF"; + public static final String ACTOR_DEF_TYP = "ACTOR_DEF_TYP"; + public static final String ADD_BIND_ADD_BIND = "ADD_BIND_ADD_BIND"; + public static final String ADD_BIND_ALL_REP = "ADD_BIND_ALL_REP"; + public static final String ADD_BIND_ANY = "ADD_BIND_ANY"; + public static final String ADD_BIND_ANY_REP = "ADD_BIND_ANY_REP"; + public static final String ADD_BIND_ANY_REPS = "ADD_BIND_ANY_REPS"; + public static final String ADD_BIND_COMPONENT = "ADD_BIND_COMPONENT"; + public static final String ADD_BIND_CURR_BIND = "ADD_BIND_CURR_BIND"; + public static final String ADD_BIND_DESIG_SYS = "ADD_BIND_DESIG_SYS"; + public static final String ADD_BIND_DOC = "ADD_BIND_DOC"; + public static final String ADD_BIND_EXT_PREF = "ADD_BIND_EXT_PREF"; + public static final String ADD_BIND_EX_BIND = "ADD_BIND_EX_BIND"; + public static final String ADD_BIND_GIVEN_CONT = "ADD_BIND_GIVEN_CONT"; + public static final String ADD_BIND_MAX = "ADD_BIND_MAX"; + public static final String ADD_BIND_MIN = "ADD_BIND_MIN"; + public static final String ADD_BIND_MIN_ALLOW = "ADD_BIND_MIN_ALLOW"; + public static final String ADD_BIND_NEW_REC = "ADD_BIND_NEW_REC"; + public static final String ADD_BIND_PREFERRED = "ADD_BIND_PREFERRED"; + public static final String ADD_BIND_PREF_BIND = "ADD_BIND_PREF_BIND"; + public static final String ADD_BIND_PUR = "ADD_BIND_PUR"; + public static final String ADD_BIND_RECOM_VALUE_SET = "ADD_BIND_RECOM_VALUE_SET"; + public static final String ADD_BIND_REQUIRED = "ADD_BIND_REQUIRED"; + public static final String ADD_BIND_REQ_BIND = "ADD_BIND_REQ_BIND"; + public static final String ADD_BIND_STARTER = "ADD_BIND_STARTER"; + public static final String ADD_BIND_UI = "ADD_BIND_UI"; + public static final String ADD_BIND_UI_BIND = "ADD_BIND_UI_BIND"; + public static final String ADD_BIND_UNKNOWN_PUR = "ADD_BIND_UNKNOWN_PUR"; + public static final String ADD_BIND_USE = "ADD_BIND_USE"; + public static final String ADD_BIND_VALID_EXT = "ADD_BIND_VALID_EXT"; + public static final String ADD_BIND_VALID_REQ = "ADD_BIND_VALID_REQ"; + public static final String ADD_BIND_VALUE_COMP = "ADD_BIND_VALUE_COMP"; + public static final String BIND_REND_CONT_TYPE = "BIND_REND_CONT_TYPE"; + public static final String BIND_REND_IMAGE_TYPE = "BIND_REND_IMAGE_TYPE"; + public static final String BIND_REND_NOT_REND = "BIND_REND_NOT_REND"; + public static final String BIND_REND_NO_CONTENT = "BIND_REND_NO_CONTENT"; public static final String BUNDLE_DOCUMENT_CONTENT = "BUNDLE_DOCUMENT_CONTENT"; public static final String BUNDLE_ETAG = "BUNDLE_ETAG"; public static final String BUNDLE_HEADER_DOC_ENTRY_RD = "BUNDLE_HEADER_DOC_ENTRY_RD"; @@ -18,10 +58,99 @@ public class RenderingI18nContext extends I18nBase { public static final String BUNDLE_REQUEST = "BUNDLE_REQUEST"; public static final String BUNDLE_RESOURCE = "BUNDLE_RESOURCE"; public static final String BUNDLE_RESPONSE = "BUNDLE_RESPONSE"; + public static final String BUNDLE_REV_EXCP = "BUNDLE_REV_EXCP"; + public static final String BUNDLE_REV_INV_DOC = "BUNDLE_REV_INV_DOC"; public static final String BUNDLE_SEARCH = "BUNDLE_SEARCH"; public static final String BUNDLE_SEARCH_MODE = "BUNDLE_SEARCH_MODE"; public static final String BUNDLE_SEARCH_SCORE = "BUNDLE_SEARCH_SCORE"; + public static final String BUND_REND_GEN_NARR = "BUND_REND_GEN_NARR"; + public static final String BUND_REND_INVALID_DOC = "BUND_REND_INVALID_DOC"; + public static final String BUND_REND_RES = "BUND_REND_RES"; + public static final String CANON_REND_COMMITTEE = "CANON_REND_COMMITTEE"; + public static final String CANON_REND_COPYRIGHT = "CANON_REND_COPYRIGHT"; + public static final String CANON_REND_DEFINITION = "CANON_REND_DEFINITION"; + public static final String CANON_REND_JSON = "CANON_REND_JSON"; + public static final String CANON_REND_MATURITY = "CANON_REND_MATURITY"; + public static final String CANON_REND_NAME = "CANON_REND_NAME"; + public static final String CANON_REND_PUBLISHER = "CANON_REND_PUBLISHER"; + public static final String CANON_REND_SOURCE_RES = "CANON_REND_SOURCE_RES"; + public static final String CANON_REND_STATUS = "CANON_REND_STATUS"; + public static final String CANON_REND_TITLE = "CANON_REND_TITLE"; + public static final String CANON_REND_TURTLE = "CANON_REND_TURTLE"; + public static final String CANON_REND_URL = "CANON_REND_URL"; + public static final String CANON_REND_VER = "CANON_REND_VER"; + public static final String CANON_REND_XML = "CANON_REND_XML"; + public static final String CAPABILITY_ADD_SUPP_PROF = "CAPABILITY_ADD_SUPP_PROF"; + public static final String CAPABILITY_BASE_SYS = "CAPABILITY_BASE_SYS"; + public static final String CAPABILITY_COMB_SEARCH_PAR = "CAPABILITY_COMB_SEARCH_PAR"; + public static final String CAPABILITY_CONF = "CAPABILITY_CONF"; + public static final String CAPABILITY_CORS_NO = "CAPABILITY_CORS_NO"; + public static final String CAPABILITY_CORS_YES = "CAPABILITY_CORS_YES"; + public static final String CAPABILITY_CREATE_INT = "CAPABILITY_CREATE_INT"; + public static final String CAPABILITY_CRIT = "CAPABILITY_CRIT"; + public static final String CAPABILITY_DELETE_INT = "CAPABILITY_DELETE_INT"; + public static final String CAPABILITY_DOC = "CAPABILITY_DOC"; + public static final String CAPABILITY_EXT_OP = "CAPABILITY_EXT_OP"; + public static final String CAPABILITY_FHIR = "CAPABILITY_FHIR"; + public static final String CAPABILITY_FHIR_VER = "CAPABILITY_FHIR_VER"; + public static final String CAPABILITY_HISTORY_INT = "CAPABILITY_HISTORY_INT"; + public static final String CAPABILITY_HISTORY_TYPE = "CAPABILITY_HISTORY_TYPE"; + public static final String CAPABILITY_IMP_VER = "CAPABILITY_IMP_VER"; + public static final String CAPABILITY_INT = "CAPABILITY_INT"; + public static final String CAPABILITY_INTER_SUPP = "CAPABILITY_INTER_SUPP"; + public static final String CAPABILITY_INT_DESC = "CAPABILITY_INT_DESC"; + public static final String CAPABILITY_INT_SUMM = "CAPABILITY_INT_SUMM"; + public static final String CAPABILITY_NOTE_CAP = "CAPABILITY_NOTE_CAP"; + public static final String CAPABILITY_OP = "CAPABILITY_OP"; + public static final String CAPABILITY_OPER = "CAPABILITY_OPER"; + public static final String CAPABILITY_OTH_RES_ENB = "CAPABILITY_OTH_RES_ENB"; + public static final String CAPABILITY_PAR = "CAPABILITY_PAR"; + public static final String CAPABILITY_PARS = "CAPABILITY_PARS"; + public static final String CAPABILITY_PATCH_INT = "CAPABILITY_PATCH_INT"; + public static final String CAPABILITY_PROF = "CAPABILITY_PROF"; + public static final String CAPABILITY_PROF_CONF = "CAPABILITY_PROF_CONF"; + public static final String CAPABILITY_PROF_MAP = "CAPABILITY_PROF_MAP"; + public static final String CAPABILITY_PUB_BY = "CAPABILITY_PUB_BY"; + public static final String CAPABILITY_PUB_ON = "CAPABILITY_PUB_ON"; + public static final String CAPABILITY_READ_INT = "CAPABILITY_READ_INT"; + public static final String CAPABILITY_REF_PROF = "CAPABILITY_REF_PROF"; + public static final String CAPABILITY_REQ_RECOM = "CAPABILITY_REQ_RECOM"; + public static final String CAPABILITY_REST_CAPS = "CAPABILITY_REST_CAPS"; + public static final String CAPABILITY_REST_CONFIG = "CAPABILITY_REST_CONFIG"; + public static final String CAPABILITY_RES_CONF = "CAPABILITY_RES_CONF"; + public static final String CAPABILITY_RES_ENB = "CAPABILITY_RES_ENB"; + public static final String CAPABILITY_RES_OPER = "CAPABILITY_RES_OPER"; + public static final String CAPABILITY_RES_PRO = "CAPABILITY_RES_PRO"; + public static final String CAPABILITY_RES_TYP = "CAPABILITY_RES_TYP"; + public static final String CAPABILITY_REV_PROF = "CAPABILITY_REV_PROF"; + public static final String CAPABILITY_SEARCHES = "CAPABILITY_SEARCHES"; + public static final String CAPABILITY_SEARCH_INT = "CAPABILITY_SEARCH_INT"; + public static final String CAPABILITY_SEARCH_PAR = "CAPABILITY_SEARCH_PAR"; + public static final String CAPABILITY_SEARCH_PARS = "CAPABILITY_SEARCH_PARS"; + public static final String CAPABILITY_SHOULD_SUPP = "CAPABILITY_SHOULD_SUPP"; + public static final String CAPABILITY_SUMM = "CAPABILITY_SUMM"; + public static final String CAPABILITY_SUMM_RES = "CAPABILITY_SUMM_RES"; + public static final String CAPABILITY_SUMM_SYS_INT = "CAPABILITY_SUMM_SYS_INT"; + public static final String CAPABILITY_SUPP = "CAPABILITY_SUPP"; + public static final String CAPABILITY_SUPPS = "CAPABILITY_SUPPS"; + public static final String CAPABILITY_SUPP_FORM = "CAPABILITY_SUPP_FORM"; + public static final String CAPABILITY_SUPP_PATCH_FORM = "CAPABILITY_SUPP_PATCH_FORM"; + public static final String CAPABILITY_SUPP_PROF = "CAPABILITY_SUPP_PROF"; + public static final String CAPABILITY_SUPP_PROFS = "CAPABILITY_SUPP_PROFS"; + public static final String CAPABILITY_SUPP_THE = "CAPABILITY_SUPP_THE"; + public static final String CAPABILITY_TYP = "CAPABILITY_TYP"; + public static final String CAPABILITY_TYPS = "CAPABILITY_TYPS"; + public static final String CAPABILITY_TYP_PRES = "CAPABILITY_TYP_PRES"; + public static final String CAPABILITY_UPDATE_INT = "CAPABILITY_UPDATE_INT"; + public static final String CAPABILITY_VREAD_INT = "CAPABILITY_VREAD_INT"; + public static final String CAPABILTY_ALLOW_CAP = "CAPABILTY_ALLOW_CAP"; + public static final String CAPABILTY_SHALL_SUPP = "CAPABILTY_SHALL_SUPP"; public static final String CODESYSTEM_CONCEPTS = "CODESYSTEM_CONCEPTS"; + public static final String CODESYSTEM_CONTENT_COMPLETE = "CODESYSTEM_CONTENT_COMPLETE"; + public static final String CODESYSTEM_CONTENT_EXAMPLE = "CODESYSTEM_CONTENT_EXAMPLE"; + public static final String CODESYSTEM_CONTENT_FRAGMENT = "CODESYSTEM_CONTENT_FRAGMENT"; + public static final String CODESYSTEM_CONTENT_NOTPRESENT = "CODESYSTEM_CONTENT_NOTPRESENT"; + public static final String CODESYSTEM_CONTENT_SUPPLEMENT = "CODESYSTEM_CONTENT_SUPPLEMENT"; public static final String CODESYSTEM_DEPRECATED = "CODESYSTEM_DEPRECATED"; public static final String CODESYSTEM_FILTERS = "CODESYSTEM_FILTERS"; public static final String CODESYSTEM_FILTER_CODE = "CODESYSTEM_FILTER_CODE"; @@ -35,12 +164,422 @@ public class RenderingI18nContext extends I18nBase { public static final String CODESYSTEM_PROP_NAME = "CODESYSTEM_PROP_NAME"; public static final String CODESYSTEM_PROP_TYPE = "CODESYSTEM_PROP_TYPE"; public static final String CODESYSTEM_PROP_URI = "CODESYSTEM_PROP_URI"; - public static final String CODESYSTEM_CONTENT_COMPLETE = "CODESYSTEM_CONTENT_COMPLETE"; - public static final String CODESYSTEM_CONTENT_EXAMPLE = "CODESYSTEM_CONTENT_EXAMPLE"; - public static final String CODESYSTEM_CONTENT_FRAGMENT = "CODESYSTEM_CONTENT_FRAGMENT"; - public static final String CODESYSTEM_CONTENT_NOTPRESENT = "CODESYSTEM_CONTENT_NOTPRESENT"; - public static final String CODESYSTEM_CONTENT_SUPPLEMENT = "CODESYSTEM_CONTENT_SUPPLEMENT"; + public static final String CODE_SYS_ADD_LANG = "CODE_SYS_ADD_LANG"; + public static final String CODE_SYS_CODE = "CODE_SYS_CODE"; + public static final String CODE_SYS_CODE_NOT_HERE = "CODE_SYS_CODE_NOT_HERE"; + public static final String CODE_SYS_COMPLETE = "CODE_SYS_COMPLETE"; + public static final String CODE_SYS_CONTENT = "CODE_SYS_CONTENT"; + public static final String CODE_SYS_COPY = "CODE_SYS_COPY"; + public static final String CODE_SYS_DISP = "CODE_SYS_DISP"; + public static final String CODE_SYS_DISP_PROP = "CODE_SYS_DISP_PROP"; + public static final String CODE_SYS_EXAMPLE = "CODE_SYS_EXAMPLE"; + public static final String CODE_SYS_FEAT = "CODE_SYS_FEAT"; + public static final String CODE_SYS_FOR_OID = "CODE_SYS_FOR_OID"; + public static final String CODE_SYS_FRAGMENT = "CODE_SYS_FRAGMENT"; + public static final String CODE_SYS_IN_A_HIERARCHY = "CODE_SYS_IN_A_HIERARCHY"; + public static final String CODE_SYS_NOTPRESENT = "CODE_SYS_NOTPRESENT"; + public static final String CODE_SYS_OID = "CODE_SYS_OID"; + public static final String CODE_SYS_PROP = "CODE_SYS_PROP"; + public static final String CODE_SYS_REPLACED_BY = "CODE_SYS_REPLACED_BY"; + public static final String CODE_SYS_SUPPLEMENT = "CODE_SYS_SUPPLEMENT"; + public static final String CODE_SYS_THE_VALUE_SET = "CODE_SYS_THE_VALUE_SET"; + public static final String CODE_SYS_UNDEF_HIER = "CODE_SYS_UNDEF_HIER"; + public static final String CODE_SYS_UNKN_MODE = "CODE_SYS_UNKN_MODE"; + public static final String CODE_SYS_VALUE_SET = "CODE_SYS_VALUE_SET"; + public static final String CONC_MAP_CMNT = "CONC_MAP_CMNT"; + public static final String CONC_MAP_CODE = "CONC_MAP_CODE"; + public static final String CONC_MAP_CODES = "CONC_MAP_CODES"; + public static final String CONC_MAP_CODE_SYS_UNSPEC = "CONC_MAP_CODE_SYS_UNSPEC"; + public static final String CONC_MAP_FRM = "CONC_MAP_FRM"; + public static final String CONC_MAP_FROM = "CONC_MAP_FROM"; + public static final String CONC_MAP_GRP = "CONC_MAP_GRP"; + public static final String CONC_MAP_NOT_SPEC = "CONC_MAP_NOT_SPEC"; + public static final String CONC_MAP_NO_PROD_USE = "CONC_MAP_NO_PROD_USE"; + public static final String CONC_MAP_PROP = "CONC_MAP_PROP"; + public static final String CONC_MAP_PUB_ON = "CONC_MAP_PUB_ON"; + public static final String CONC_MAP_REL = "CONC_MAP_REL"; + public static final String CONC_MAP_SOURCE = "CONC_MAP_SOURCE"; + public static final String CONC_MAP_SRC_DET = "CONC_MAP_SRC_DET"; + public static final String CONC_MAP_TO = "CONC_MAP_TO"; + public static final String CONC_MAP_TRGT = "CONC_MAP_TRGT"; + public static final String CONC_MAP_TRGT_DET = "CONC_MAP_TRGT_DET"; + public static final String DATA_REND_AFTRBKFST = "DATA_REND_AFTRBKFST"; + public static final String DATA_REND_AFTRDINR = "DATA_REND_AFTRDINR"; + public static final String DATA_REND_AFTRLUNCH = "DATA_REND_AFTRLUNCH"; + public static final String DATA_REND_AFTRMEALS = "DATA_REND_AFTRMEALS"; + public static final String DATA_REND_AFTRWKNG = "DATA_REND_AFTRWKNG"; + public static final String DATA_REND_ATBKFST = "DATA_REND_ATBKFST"; + public static final String DATA_REND_ATDINR = "DATA_REND_ATDINR"; + public static final String DATA_REND_ATLUNCH = "DATA_REND_ATLUNCH"; + public static final String DATA_REND_BASE64 = "DATA_REND_BASE64"; + public static final String DATA_REND_BFBKFST = "DATA_REND_BFBKFST"; + public static final String DATA_REND_BFDINR = "DATA_REND_BFDINR"; + public static final String DATA_REND_BFLUNCH = "DATA_REND_BFLUNCH"; + public static final String DATA_REND_BFMEALS = "DATA_REND_BFMEALS"; + public static final String DATA_REND_BFSLEEP = "DATA_REND_BFSLEEP"; + public static final String DATA_REND_BY = "DATA_REND_BY"; + public static final String DATA_REND_CODE = "DATA_REND_CODE"; + public static final String DATA_REND_CODES = "DATA_REND_CODES"; + public static final String DATA_REND_COND = "DATA_REND_COND"; + public static final String DATA_REND_COUNT = "DATA_REND_COUNT"; + public static final String DATA_REND_DATA = "DATA_REND_DATA"; + public static final String DATA_REND_DETAILS = "DATA_REND_DETAILS"; + public static final String DATA_REND_DETAILS_STATED = "DATA_REND_DETAILS_STATED"; + public static final String DATA_REND_DICOM = "DATA_REND_DICOM"; + public static final String DATA_REND_DIM = "DATA_REND_DIM"; + public static final String DATA_REND_DURATION = "DATA_REND_DURATION"; + public static final String DATA_REND_ERROR = "DATA_REND_ERROR"; + public static final String DATA_REND_EVENTS = "DATA_REND_EVENTS"; + public static final String DATA_REND_EXCEPTION = "DATA_REND_EXCEPTION"; + public static final String DATA_REND_FACT = "DATA_REND_FACT"; + public static final String DATA_REND_FAX = "DATA_REND_FAX"; + public static final String DATA_REND_FILT = "DATA_REND_FILT"; + public static final String DATA_REND_GETCODE = "DATA_REND_GETCODE"; + public static final String DATA_REND_GLN = "DATA_REND_GLN"; + public static final String DATA_REND_ICD = "DATA_REND_ICD"; + public static final String DATA_REND_INT = "DATA_REND_INT"; + public static final String DATA_REND_LIMIT = "DATA_REND_LIMIT"; + public static final String DATA_REND_LOINC = "DATA_REND_LOINC"; + public static final String DATA_REND_LOWER = "DATA_REND_LOWER"; + public static final String DATA_REND_MEALS = "DATA_REND_MEALS"; + public static final String DATA_REND_MKDWN_LNK = "DATA_REND_MKDWN_LNK"; + public static final String DATA_REND_NAME = "DATA_REND_NAME"; + public static final String DATA_REND_NOT_STAT = "DATA_REND_NOT_STAT"; + public static final String DATA_REND_NO_DISP = "DATA_REND_NO_DISP"; + public static final String DATA_REND_ONCE = "DATA_REND_ONCE"; + public static final String DATA_REND_ONGOING = "DATA_REND_ONGOING"; + public static final String DATA_REND_ORIGIN = "DATA_REND_ORIGIN"; + public static final String DATA_REND_PER = "DATA_REND_PER"; + public static final String DATA_REND_PERIOD = "DATA_REND_PERIOD"; + public static final String DATA_REND_PHONE = "DATA_REND_PHONE"; + public static final String DATA_REND_RXNORM = "DATA_REND_RXNORM"; + public static final String DATA_REND_SEARCH= "SDATA_REND_SEARCH"; + public static final String DATA_REND_SNOMED = "DATA_REND_SNOMED"; + public static final String DATA_REND_SORT = "DATA_REND_SORT"; + public static final String DATA_REND_SOURCE = "DATA_REND_SOURCE"; + public static final String DATA_REND_STARTING = "DATA_REND_STARTING"; + public static final String DATA_REND_SUB = "DATA_REND_SUB"; + public static final String DATA_REND_THESE_CODES = "DATA_REND_THESE_CODES"; + public static final String DATA_REND_TIMING = "DATA_REND_TIMING"; + public static final String DATA_REND_TO_DO = "DATA_REND_TO_DO"; + public static final String DATA_REND_TYPE = "DATA_REND_TYPE"; + public static final String DATA_REND_UCUM = "DATA_REND_UCUM"; + public static final String DATA_REND_UNKNWN = "DATA_REND_UNKNWN"; + public static final String DATA_REND_UNRD_EX = "DATA_REND_UNRD_EX"; + public static final String DATA_REND_UNTIL = "DATA_REND_UNTIL"; + public static final String DATA_REND_UP = "DATA_REND_UP"; + public static final String DATA_REND_USE = "DATA_REND_USE"; + public static final String DATA_REND_VALUE = "DATA_REND_VALUE"; + public static final String DATA_REND_VALUESET = "DATA_REND_VALUESET"; + public static final String DATA_REND_VERSION = "DATA_REND_VERSION"; + public static final String DIAG_REP_REND_AGE = "DIAG_REP_REND_AGE"; + public static final String DIAG_REP_REND_CODE = "DIAG_REP_REND_CODE"; + public static final String DIAG_REP_REND_CODECON = "DIAG_REP_REND_CODECON"; + public static final String DIAG_REP_REND_ERR = "DIAG_REP_REND_ERR"; + public static final String DIAG_REP_REND_FLAG = "DIAG_REP_REND_FLAG"; + public static final String DIAG_REP_REND_FOR = "DIAG_REP_REND_FOR"; + public static final String DIAG_REP_REND_IDEN = "DIAG_REP_REND_IDEN"; + public static final String DIAG_REP_REND_IDENTIFIER = "DIAG_REP_REND_IDENTIFIER"; + public static final String DIAG_REP_REND_NOTDONE = "DIAG_REP_REND_NOTDONE"; + public static final String DIAG_REP_REND_NOTE = "DIAG_REP_REND_NOTE"; + public static final String DIAG_REP_REND_NOTRES = "DIAG_REP_REND_NOTRES"; + public static final String DIAG_REP_REND_OBS = "DIAG_REP_REND_OBS"; + public static final String DIAG_REP_REND_PER = "DIAG_REP_REND_PER"; + public static final String DIAG_REP_REND_REFRAN = "DIAG_REP_REND_REFRAN"; + public static final String DIAG_REP_REND_REP = "DIAG_REP_REND_REP"; + public static final String DIAG_REP_REND_REPDET = "DIAG_REP_REND_REPDET"; + public static final String DIAG_REP_REND_REQ = "DIAG_REP_REND_REQ"; + public static final String DIAG_REP_REND_REQUEST = "DIAG_REP_REND_REQUEST"; + public static final String DIAG_REP_REND_SUB = "DIAG_REP_REND_SUB"; + public static final String DIAG_REP_REND_UNABLE = "DIAG_REP_REND_UNABLE"; + public static final String DIAG_REP_REND_VALUE = "DIAG_REP_REND_VALUE"; + public static final String DIAG_REP_REND_WHEN = "DIAG_REP_REND_WHEN"; + public static final String EXAMPLE_SCEN_STEP_SCEN = "EXAMPLE_SCEN_STEP_SCEN"; + public static final String EXAMPLE_SCEN_UNABLE_TO_FIND = "EXAMPLE_SCEN_UNABLE_TO_FIND"; + public static final String EX_SCEN_ALT = "EX_SCEN_ALT"; + public static final String EX_SCEN_BEL = "EX_SCEN_BEL"; + public static final String EX_SCEN_CONT = "EX_SCEN_CONT"; + public static final String EX_SCEN_CONTA = "EX_SCEN_CONTA"; + public static final String EX_SCEN_DESC = "EX_SCEN_DESC"; + public static final String EX_SCEN_ERR_REN = "EX_SCEN_ERR_REN"; + public static final String EX_SCEN_FVER = "EX_SCEN_FVER"; + public static final String EX_SCEN_IN = "EX_SCEN_IN"; + public static final String EX_SCEN_NAME = "EX_SCEN_NAME"; + public static final String EX_SCEN_OTH = "EX_SCEN_OTH"; + public static final String EX_SCEN_POSTCON = "EX_SCEN_POSTCON"; + public static final String EX_SCEN_PRECON = "EX_SCEN_PRECON"; + public static final String EX_SCEN_PROC = "EX_SCEN_PROC"; + public static final String EX_SCEN_REC = "EX_SCEN_REC"; + public static final String EX_SCEN_REQ = "EX_SCEN_REQ"; + public static final String EX_SCEN_RES = "EX_SCEN_RES"; + public static final String EX_SCEN_SEE = "EX_SCEN_SEE"; + public static final String EX_SCEN_STEP = "EX_SCEN_STEP"; + public static final String EX_SCEN_TIME = "EX_SCEN_TIME"; + public static final String EX_SCEN_TYPE = "EX_SCEN_TYPE"; + public static final String EX_SCEN_UN = "EX_SCEN_UN"; + public static final String EX_SCEN_UN_ACT = "EX_SCEN_UN_ACT"; + public static final String EX_SCEN_UN_INST = "EX_SCEN_UN_INST"; + public static final String EX_SCEN_VER = "EX_SCEN_VER"; + public static final String IMP_GUIDE_URL = "IMP_GUIDE_URL"; + public static final String LIB_REND_ART = "LIB_REND_ART"; + public static final String LIB_REND_AUT = "LIB_REND_AUT"; + public static final String LIB_REND_CONT = "LIB_REND_CONT"; + public static final String LIB_REND_ED = "LIB_REND_ED"; + public static final String LIB_REND_END = "LIB_REND_END"; + public static final String LIB_REND_NOCONT = "LIB_REND_NOCONT"; + public static final String LIB_REND_PAR = "LIB_REND_PAR"; + public static final String LIB_REND_PARA = "LIB_REND_PARA"; + public static final String LIB_REND_REQ = "LIB_REND_REQ"; + public static final String LIB_REND_REV = "LIB_REND_REV"; + public static final String LIB_REND_SHOW = "LIB_REND_SHOW"; + public static final String LIB_REND_SIZE = "LIB_REND_SIZE"; + public static final String LIST_REND_CODE = "LIST_REND_CODE"; + public static final String LIST_REND_DAT = "LIST_REND_DAT"; + public static final String LIST_REND_DATE = "LIST_REND_DATE"; + public static final String LIST_REND_DEL = "LIST_REND_DEL"; + public static final String LIST_REND_ENC = "LIST_REND_ENC"; + public static final String LIST_REND_FLAG = "LIST_REND_FLAG"; + public static final String LIST_REND_ITEM = "LIST_REND_ITEM"; + public static final String LIST_REND_MODE = "LIST_REND_MODE"; + public static final String LIST_REND_ORD = "LIST_REND_ORD"; + public static final String LIST_REND_SRC = "LIST_REND_SRC"; + public static final String LIST_REND_STAT = "LIST_REND_STAT"; + public static final String LIST_REND_SUB = "LIST_REND_SUB"; + public static final String MAP_DEFAULT_COMMENT = "MAP_DEFAULT_COMMENT"; + public static final String NAME_SYS_COM = "NAME_SYS_COM"; + public static final String NAME_SYS_COPY = "NAME_SYS_COPY"; + public static final String NAME_SYS_DEF = "NAME_SYS_DEF"; + public static final String NAME_SYS_FOROID = "NAME_SYS_FOROID"; + public static final String NAME_SYS_IDEN = "NAME_SYS_IDEN"; + public static final String NAME_SYS_NAME = "NAME_SYS_NAME"; + public static final String NAME_SYS_OID = "NAME_SYS_OID"; + public static final String NAME_SYS_PER = "NAME_SYS_PER"; + public static final String NAME_SYS_PREF = "NAME_SYS_PREF"; + public static final String NAME_SYS_PUB = "NAME_SYS_PUB"; + public static final String NAME_SYS_STAT = "NAME_SYS_STAT"; + public static final String NAME_SYS_SUM = "NAME_SYS_SUM"; + public static final String NAME_SYS_TITLE = "NAME_SYS_TITLE"; + public static final String NAME_SYS_TYPE = "NAME_SYS_TYPE"; + public static final String NAME_SYS_URL = "NAME_SYS_URL"; + public static final String NAME_SYS_VALUE = "NAME_SYS_VALUE"; + public static final String NAME_SYS_VER = "NAME_SYS_VER"; + public static final String OBLIG_ACT = "OBLIG_ACT"; + public static final String OBLIG_DOC = "OBLIG_DOC"; + public static final String OBLIG_ELE = "OBLIG_ELE"; + public static final String OBLIG_FILT = "OBLIG_FILT"; + public static final String OBLIG_OBLIG = "OBLIG_OBLIG"; + public static final String OBLIG_USE = "OBLIG_USE"; + public static final String OP_DEF_BIND = "OP_DEF_BIND"; + public static final String OP_DEF_CARD = "OP_DEF_CARD"; + public static final String OP_DEF_DOC = "OP_DEF_DOC"; + public static final String OP_DEF_INPAR = "OP_DEF_INPAR"; + public static final String OP_DEF_NAME = "OP_DEF_NAME"; + public static final String OP_DEF_OFFIC = "OP_DEF_OFFIC"; + public static final String OP_DEF_OUTPAR = "OP_DEF_OUTPAR"; + public static final String OP_DEF_PAR = "OP_DEF_PAR"; + public static final String OP_DEF_SCO = "OP_DEF_SCO"; + public static final String OP_DEF_TYPE = "OP_DEF_TYPE"; + public static final String OP_DEF_URL = "OP_DEF_URL"; + public static final String OP_DEF_URLS = "OP_DEF_URLS"; + public static final String OP_DEF_USE = "OP_DEF_USE"; + public static final String OP_OUT_CODE = "OP_OUT_CODE"; + public static final String OP_OUT_DET = "OP_OUT_DET"; + public static final String OP_OUT_DIAG = "OP_OUT_DIAG"; + public static final String OP_OUT_LOC = "OP_OUT_LOC"; + public static final String OP_OUT_NOT = "OP_OUT_NOT"; + public static final String OP_OUT_OK = "OP_OUT_OK"; + public static final String OP_OUT_SEV = "OP_OUT_SEV"; + public static final String OP_OUT_SRC = "OP_OUT_SRC"; + public static final String OP_OUT_TODO = "OP_OUT_TODO"; + public static final String PAR_REND_PAR = "PAR_REND_PAR"; + public static final String PAT_ACTIVE = "PAT_ACTIVE"; + public static final String PAT_ACTIVE_HINT = "PAT_ACTIVE_HINT"; + public static final String PAT_ALT_NAME = "PAT_ALT_NAME"; + public static final String PAT_ALT_NAME_HINT = "PAT_ALT_NAME_HINT"; + public static final String PAT_CONTACT = "PAT_CONTACT"; + public static final String PAT_CONTACT_HINT = "PAT_CONTACT_HINT"; + public static final String PAT_CONTAINED = "PAT_CONTAINED"; + public static final String PAT_DECEASED = "PAT_DECEASED"; + public static final String PAT_DECEASED_HINT = "PAT_DECEASED_HINT"; + public static final String PAT_DOB = "PAT_DOB"; + public static final String PAT_GENDER = "PAT_GENDER"; + public static final String PAT_GP = "PAT_GP"; + public static final String PAT_LANG = "PAT_LANG"; + public static final String PAT_LANG_HINT = "PAT_LANG_HINT"; + public static final String PAT_LANG_PREFERRED = "PAT_LANG_PREFERRED"; + public static final String PAT_LINKS = "PAT_LINKS"; + public static final String PAT_LINKS_HINT = "PAT_LINKS_HINT"; + public static final String PAT_LINK_REFER = "PAT_LINK_REFER"; + public static final String PAT_LINK_REPL = "PAT_LINK_REPL"; + public static final String PAT_LINK_REPLBY = "PAT_LINK_REPLBY"; + public static final String PAT_LINK_SEE = "PAT_LINK_SEE"; + public static final String PAT_MARITAL = "PAT_MARITAL"; + public static final String PAT_MARITAL_HINT = "PAT_MARITAL_HINT"; + public static final String PAT_MO = "PAT_MO"; + public static final String PAT_MUL_BIRTH = "PAT_MUL_BIRTH"; + public static final String PAT_MUL_BIRTH_HINT = "PAT_MUL_BIRTH_HINT"; + public static final String PAT_NOK_CONTACT = "PAT_NOK_CONTACT"; + public static final String PAT_NOK_CONTACT_HINT = "PAT_NOK_CONTACT_HINT"; + public static final String PAT_NOM_CONTACT = "PAT_NOM_CONTACT"; + public static final String PAT_NO_DOB = "PAT_NO_DOB"; + public static final String PAT_NO_GENDER = "PAT_NO_GENDER"; + public static final String PAT_NO_NAME = "PAT_NO_NAME"; + public static final String PAT_ORG = "PAT_ORG"; + public static final String PAT_OTHER_ID = "PAT_OTHER_ID"; + public static final String PAT_OTHER_ID_HINT = "PAT_OTHER_ID_HINT"; + public static final String PAT_PERIOD = "PAT_PERIOD"; + public static final String PAT_PHOTO = "PAT_PHOTO"; + public static final String PAT_RELN = "PAT_RELN"; + public static final String PROF_DRIV_ERR_GEN_NARR = "PROF_DRIV_ERR_GEN_NARR"; + public static final String PROF_DRIV_EXCP = "PROF_DRIV_EXCP"; + public static final String PROF_DRIV_FEXCP = "PROF_DRIV_FEXCP"; + public static final String PROF_DRIV_GEN_NARR = "PROF_DRIV_GEN_NARR"; + public static final String PROV_ACT = "PROV_ACT"; + public static final String PROV_AGE = "PROV_AGE"; + public static final String PROV_BEHALF = "PROV_BEHALF"; + public static final String PROV_FOR = "PROV_FOR"; + public static final String PROV_LOC = "PROV_LOC"; + public static final String PROV_NOT = "PROV_NOT"; + public static final String PROV_OCC = "PROV_OCC"; + public static final String PROV_POL = "PROV_POL"; + public static final String PROV_PROV = "PROV_PROV"; + public static final String PROV_PROVE = "PROV_PROVE"; + public static final String PROV_REC = "PROV_REC"; + public static final String PROV_ROLE = "PROV_ROLE"; + public static final String PROV_SUM = "PROV_SUM"; + public static final String PROV_TYPE = "PROV_TYPE"; + public static final String PROV_WHO = "PROV_WHO"; + public static final String QUEST_ADD_INFO = "QUEST_ADD_INFO"; + public static final String QUEST_ALLOWED = "QUEST_ALLOWED"; + public static final String QUEST_ANSW = "QUEST_ANSW"; + public static final String QUEST_ANSWER = "QUEST_ANSWER"; + public static final String QUEST_ANSWERS = "QUEST_ANSWERS"; + public static final String QUEST_APP = "QUEST_APP"; + public static final String QUEST_ARE_TRUE = "QUEST_ARE_TRUE"; + public static final String QUEST_ATTRIBUTES = "QUEST_ATTRIBUTES"; + public static final String QUEST_CALC = "QUEST_CALC"; + public static final String QUEST_CAND = "QUEST_CAND"; + public static final String QUEST_CARD = "QUEST_CARD"; + public static final String QUEST_CAT = "QUEST_CAT"; + public static final String QUEST_CODE = "QUEST_CODE"; + public static final String QUEST_CONT = "QUEST_CONT"; + public static final String QUEST_COPYRIGHT = "QUEST_COPYRIGHT"; + public static final String QUEST_DEF = "QUEST_DEF"; + public static final String QUEST_DEFINITION = "QUEST_DEFINITION"; + public static final String QUEST_DERIVED = "QUEST_DERIVED"; + public static final String QUEST_DESC = "QUEST_DESC"; + public static final String QUEST_DESCRIPTION = "QUEST_DESCRIPTION"; + public static final String QUEST_DISPLAY = "QUEST_DISPLAY"; + public static final String QUEST_DISPLAY_CAT = "QUEST_DISPLAY_CAT"; + public static final String QUEST_EFF_PERIOD = "QUEST_EFF_PERIOD"; + public static final String QUEST_EN = "QUEST_EN"; + public static final String QUEST_ENABLE = "QUEST_ENABLE"; + public static final String QUEST_EXP = "QUEST_EXP"; + public static final String QUEST_EXPER = "QUEST_EXPER"; + public static final String QUEST_FLAG = "QUEST_FLAG"; + public static final String QUEST_GROUP = "QUEST_GROUP"; + public static final String QUEST_HIDDEN = "QUEST_HIDDEN"; + public static final String QUEST_HIDDEN_ITEM = "QUEST_HIDDEN_ITEM"; + public static final String QUEST_ID = "QUEST_ID"; + public static final String QUEST_INITIAL = "QUEST_INITIAL"; + public static final String QUEST_INITIALLY = "QUEST_INITIALLY"; + public static final String QUEST_INITIAL_ANSWER = "QUEST_INITIAL_ANSWER"; + public static final String QUEST_INT = "QUEST_INT"; + public static final String QUEST_ITEM = "QUEST_ITEM"; + public static final String QUEST_ITEM_CONT = "QUEST_ITEM_CONT"; + public static final String QUEST_LINK = "QUEST_LINK"; + public static final String QUEST_LINKED = "QUEST_LINKED"; + public static final String QUEST_LINKID = "QUEST_LINKID"; + public static final String QUEST_MAND = "QUEST_MAND"; + public static final String QUEST_MAX = "QUEST_MAX"; + public static final String QUEST_MAX_LENGTH = "QUEST_MAX_LENGTH"; + public static final String QUEST_NAME = "QUEST_NAME"; + public static final String QUEST_NLM = "QUEST_NLM"; + public static final String QUEST_NONE_SPEC = "QUEST_NONE_SPEC"; + public static final String QUEST_NOT_DONE = "QUEST_NOT_DONE"; + public static final String QUEST_OBSERVATION = "QUEST_OBSERVATION"; + public static final String QUEST_OPT = "QUEST_OPT"; + public static final String QUEST_OPTIONS = "QUEST_OPTIONS"; + public static final String QUEST_ORIENTATION = "QUEST_ORIENTATION"; + public static final String QUEST_PREFIX = "QUEST_PREFIX"; + public static final String QUEST_PUB = "QUEST_PUB"; + public static final String QUEST_PURPOSE = "QUEST_PURPOSE"; + public static final String QUEST_QUEST = "QUEST_QUEST"; + public static final String QUEST_QUESTION = "QUEST_QUESTION"; + public static final String QUEST_QUESTIONNAIRE = "QUEST_QUESTIONNAIRE"; + public static final String QUEST_READONLY = "QUEST_READONLY"; + public static final String QUEST_READ_ONLY = "QUEST_READ_ONLY"; + public static final String QUEST_REP = "QUEST_REP"; + public static final String QUEST_REQ = "QUEST_REQ"; + public static final String QUEST_RESP = "QUEST_RESP"; + public static final String QUEST_RESP_ROOT = "QUEST_RESP_ROOT"; + public static final String QUEST_REV_DATE = "QUEST_REV_DATE"; + public static final String QUEST_ROOT = "QUEST_ROOT"; + public static final String QUEST_STATUS = "QUEST_STATUS"; + public static final String QUEST_STRUCT = "QUEST_STRUCT"; + public static final String QUEST_SUB = "QUEST_SUB"; + public static final String QUEST_SUBJECT = "QUEST_SUBJECT"; + public static final String QUEST_SUB_TYPE = "QUEST_SUB_TYPE"; + public static final String QUEST_TEXT = "QUEST_TEXT"; + public static final String QUEST_TEXTFOR = "QUEST_TEXTFOR"; + public static final String QUEST_TIMES = "QUEST_TIMES"; + public static final String QUEST_TITLE = "QUEST_TITLE"; + public static final String QUEST_TODO = "QUEST_TODO"; + public static final String QUEST_TRUE = "QUEST_TRUE"; + public static final String QUEST_TRY = "QUEST_TRY"; + public static final String QUEST_TRY_QUEST = "QUEST_TRY_QUEST"; + public static final String QUEST_TYPE = "QUEST_TYPE"; + public static final String QUEST_TYPE_ITEM = "QUEST_TYPE_ITEM"; + public static final String QUEST_UNKNOWN_MODE = "QUEST_UNKNOWN_MODE"; + public static final String QUEST_URL = "QUEST_URL"; + public static final String QUEST_VALUE = "QUEST_VALUE"; + public static final String QUEST_VALUE_SET = "QUEST_VALUE_SET"; + public static final String QUEST_VERSION = "QUEST_VERSION"; + public static final String REND_ADDED = "REND_ADDED"; + public static final String REND_CHANGED = "REND_CHANGED"; + public static final String REND_REMOVED = "REND_REMOVED"; + public static final String REND_ROW_CHANGED_SINCE = "REND_ROW_CHANGED_SINCE"; + public static final String REND_ROW_CHANGED_SINCE_WAS = "REND_ROW_CHANGED_SINCE_WAS"; + public static final String REND_ROW_REMOVED_SINCE = "REND_ROW_REMOVED_SINCE"; + public static final String REND_ROW_SINCE = "REND_ROW_SINCE"; + public static final String REND_SINCE_ADDED = "REND_SINCE_ADDED"; + public static final String REND_SINCE_CHANGED = "REND_SINCE_CHANGED"; + public static final String REND_SINCE_CHANGED_WAS = "REND_SINCE_CHANGED_WAS"; + public static final String REND_SINCE_DELETED = "REND_SINCE_DELETED"; + public static final String REND_STANDARDS = "REND_STANDARDS"; + public static final String REQ_ACTOR = "REQ_ACTOR"; + public static final String REQ_DERIVE = "REQ_DERIVE"; + public static final String REQ_DERIVED = "REQ_DERIVED"; + public static final String REQ_FOLLOWING_ACTOR = "REQ_FOLLOWING_ACTOR"; + public static final String REQ_FOLLOWING_REQ = "REQ_FOLLOWING_REQ"; + public static final String REQ_LINKS = "REQ_LINKS"; + public static final String REQ_REFERENCES = "REQ_REFERENCES"; + public static final String REQ_SATISFIED = "REQ_SATISFIED"; + public static final String REQ_SOURCES = "REQ_SOURCES"; public static final String RESOURCE_COPYRIGHT = "RESOURCE_COPYRIGHT"; + public static final String RES_REND_ACT = "RES_REND_ACT"; + public static final String RES_REND_COND_REF = "RES_REND_COND_REF"; + public static final String RES_REND_DESC = "RES_REND_DESC"; + public static final String RES_REND_DRAFT = "RES_REND_DRAFT"; + public static final String RES_REND_ERROR = "RES_REND_ERROR"; + public static final String RES_REND_EXP = "RES_REND_EXP"; + public static final String RES_REND_GEN_SUM = "RES_REND_GEN_SUM"; + public static final String RES_REND_INFO_SOURCE = "RES_REND_INFO_SOURCE"; + public static final String RES_REND_LANGUAGE = "RES_REND_LANGUAGE"; + public static final String RES_REND_PROF = "RES_REND_PROF"; + public static final String RES_REND_PROFILE = "RES_REND_PROFILE"; + public static final String RES_REND_RESOURCE = "RES_REND_RESOURCE"; + public static final String RES_REND_RET = "RES_REND_RET"; + public static final String RES_REND_SECURITY = "RES_REND_SECURITY"; + public static final String RES_REND_SECURITY_LABEL = "RES_REND_SECURITY_LABEL"; + public static final String RES_REND_SEE_ON_THIS_PAGE = "RES_REND_SEE_ON_THIS_PAGE"; + public static final String RES_REND_SPEC_RULES = "RES_REND_SPEC_RULES"; + public static final String RES_REND_TAG = "RES_REND_TAG"; + public static final String RES_REND_TODO = "RES_REND_TODO"; + public static final String RES_REND_UNKNOWN = "RES_REND_UNKNOWN"; + public static final String RES_REND_UPDATED = "RES_REND_UPDATED"; + public static final String RES_REND_VER = "RES_REND_VER"; + public static final String RES_REND_VERSION = "RES_REND_VERSION"; public static final String SD_COMP_HEAD_CARD_L = "SD_COMP_HEAD_CARD_L"; public static final String SD_COMP_HEAD_CARD_L_DESC ="SD_COMP_HEAD_CARD_L_DESC"; public static final String SD_COMP_HEAD_CARD_R = "SD_COMP_HEAD_CARD_R"; @@ -82,985 +621,447 @@ public class RenderingI18nContext extends I18nBase { public static final String SD_HEAD_TYPE_DESC = "SD_HEAD_TYPE_DESC"; public static final String SD_LEGEND = "SD_LEGEND"; public static final String SD_SLICING_INFO = "SD_SLICING_INFO"; + public static final String SD_SUMMARY_FIXED = "SD_SUMMARY_FIXED"; + public static final String SD_SUMMARY_INFO = "SD_SUMMARY_INFO"; + public static final String SD_SUMMARY_MANDATORY = "SD_SUMMARY_MANDATORY"; public static final String SD_SUMMARY_MAPPINGS = "SD_SUMMARY_MAPPINGS"; public static final String SD_SUMMARY_MISSING_EXTENSION = "SD_SUMMARY_MISSING_EXTENSION"; public static final String SD_SUMMARY_MISSING_PROFILE = "SD_SUMMARY_MISSING_PROFILE"; - public static final String SD_SUMMARY_PUBLICATION = "SD_SUMMARY_PUBLICATION"; - public static final String SD_SUMMARY_SLICES = "SD_SUMMARY_SLICES"; - public static final String SD_SUMMARY_SLICE = "SD_SUMMARY_SLICE"; - public static final String SD_SUMMARY_SLICE_NONE = "SD_SUMMARY_SLICE_NONE"; - public static final String SD_SUMMARY_MANDATORY = "SD_SUMMARY_MANDATORY"; public static final String SD_SUMMARY_MUST_SUPPORT = "SD_SUMMARY_MUST_SUPPORT"; - public static final String SD_SUMMARY_FIXED = "SD_SUMMARY_FIXED"; - public static final String SD_SUMMARY_INFO = "SD_SUMMARY_INFO"; - public static final String SD_SUMMARY_PROHIBITED = "SD_SUMMARY_PROHIBITED"; public static final String SD_SUMMARY_NESTED_MANDATORY = "SD_SUMMARY_NESTED_MANDATORY"; + public static final String SD_SUMMARY_PROHIBITED = "SD_SUMMARY_PROHIBITED"; + public static final String SD_SUMMARY_PUBLICATION = "SD_SUMMARY_PUBLICATION"; + public static final String SD_SUMMARY_SLICE = "SD_SUMMARY_SLICE"; + public static final String SD_SUMMARY_SLICES = "SD_SUMMARY_SLICES"; + public static final String SD_SUMMARY_SLICE_NONE = "SD_SUMMARY_SLICE_NONE"; + public static final String SEARCH_PAR_ALLOWED = "SEARCH_PAR_ALLOWED"; + public static final String SEARCH_PAR_CHAIN = "SEARCH_PAR_CHAIN"; + public static final String SEARCH_PAR_COMP = "SEARCH_PAR_COMP"; + public static final String SEARCH_PAR_EXP = "SEARCH_PAR_EXP"; + public static final String SEARCH_PAR_MOD = "SEARCH_PAR_MOD"; + public static final String SEARCH_PAR_MULTIPLES = "SEARCH_PAR_MULTIPLES"; + public static final String SEARCH_PAR_MULTIPLE_AND_APPEAR = "SEARCH_PAR_MULTIPLE_AND_APPEAR"; + public static final String SEARCH_PAR_MULTIPLE_AND_REPEAT = "SEARCH_PAR_MULTIPLE_AND_REPEAT"; + public static final String SEARCH_PAR_MULTIPLE_AND_SERVER = "SEARCH_PAR_MULTIPLE_AND_SERVER"; + public static final String SEARCH_PAR_MULTIPLE_OR_MULTIPLE = "SEARCH_PAR_MULTIPLE_OR_MULTIPLE"; + public static final String SEARCH_PAR_MULTIPLE_OR_ONE = "SEARCH_PAR_MULTIPLE_OR_ONE"; + public static final String SEARCH_PAR_MULTIPLE_OR_SERVER = "SEARCH_PAR_MULTIPLE_OR_SERVER"; + public static final String SEARCH_PAR_NONE = "SEARCH_PAR_NONE"; + public static final String SEARCH_PAR_PAR = "SEARCH_PAR_PAR"; + public static final String SEARCH_PAR_PROC = "SEARCH_PAR_PROC"; + public static final String SEARCH_PAR_REND_RES = "SEARCH_PAR_REND_RES"; + public static final String SEARCH_PAR_REND_TARGET = "SEARCH_PAR_REND_TARGET"; + public static final String SEARCH_PAR_RES = "SEARCH_PAR_RES"; + public static final String STRUC_DEF_ABSTRACT = "STRUC_DEF_ABSTRACT"; + public static final String STRUC_DEF_ACT = "STRUC_DEF_ACT"; + public static final String STRUC_DEF_AFFECT_CONSTRAINTS = "STRUC_DEF_AFFECT_CONSTRAINTS"; + public static final String STRUC_DEF_ALLOWED = "STRUC_DEF_ALLOWED"; + public static final String STRUC_DEF_ALL_ACTORS = "STRUC_DEF_ALL_ACTORS"; + public static final String STRUC_DEF_ALL_MAP_KEY = "STRUC_DEF_ALL_MAP_KEY"; + public static final String STRUC_DEF_ALL_SLICES = "STRUC_DEF_ALL_SLICES"; + public static final String STRUC_DEF_ALL_TYPES = "STRUC_DEF_ALL_TYPES"; + public static final String STRUC_DEF_ALT_NAME = "STRUC_DEF_ALT_NAME"; + public static final String STRUC_DEF_AND = "STRUC_DEF_AND"; + public static final String STRUC_DEF_APPROP_CON = "STRUC_DEF_APPROP_CON"; + public static final String STRUC_DEF_AS_SHOWN = "STRUC_DEF_AS_SHOWN"; + public static final String STRUC_DEF_BECAUSE = "STRUC_DEF_BECAUSE"; + public static final String STRUC_DEF_BINDING = "STRUC_DEF_BINDING"; + public static final String STRUC_DEF_BINDINGS = "STRUC_DEF_BINDINGS"; + public static final String STRUC_DEF_BINDING_STYLE = "STRUC_DEF_BINDING_STYLE"; + public static final String STRUC_DEF_BIND_STYLE = "STRUC_DEF_BIND_STYLE"; + public static final String STRUC_DEF_BLACK = "STRUC_DEF_BLACK"; + public static final String STRUC_DEF_BUSINESS_ID = "STRUC_DEF_BUSINESS_ID"; + public static final String STRUC_DEF_BUSINESS_VERID = "STRUC_DEF_BUSINESS_VERID"; + public static final String STRUC_DEF_CAND = "STRUC_DEF_CAND"; + public static final String STRUC_DEF_CAND_SUB = "STRUC_DEF_CAND_SUB"; + public static final String STRUC_DEF_CANNOT_TARGET = "STRUC_DEF_CANNOT_TARGET"; + public static final String STRUC_DEF_CANT_FIND = "STRUC_DEF_CANT_FIND"; + public static final String STRUC_DEF_CAN_TARGET = "STRUC_DEF_CAN_TARGET"; + public static final String STRUC_DEF_CAP = "STRUC_DEF_CAP"; + public static final String STRUC_DEF_CARD = "STRUC_DEF_CARD"; + public static final String STRUC_DEF_CDA = "STRUC_DEF_CDA"; + public static final String STRUC_DEF_CHILD = "STRUC_DEF_CHILD"; + public static final String STRUC_DEF_CHOICE = "STRUC_DEF_CHOICE"; + public static final String STRUC_DEF_CHOICE_DATA_TYPE = "STRUC_DEF_CHOICE_DATA_TYPE"; + public static final String STRUC_DEF_CHOICE_GRP = "STRUC_DEF_CHOICE_GRP"; + public static final String STRUC_DEF_CHOICE_OF = "STRUC_DEF_CHOICE_OF"; + public static final String STRUC_DEF_CLOSED = "STRUC_DEF_CLOSED"; + public static final String STRUC_DEF_COMMENT = "STRUC_DEF_COMMENT"; + public static final String STRUC_DEF_COMMENTS = "STRUC_DEF_COMMENTS"; + public static final String STRUC_DEF_COMP = "STRUC_DEF_COMP"; + public static final String STRUC_DEF_COMPLEX = "STRUC_DEF_COMPLEX"; + public static final String STRUC_DEF_COMPLEXBRACK = "STRUC_DEF_COMPLEXBRACK"; + public static final String STRUC_DEF_COMP_DOC = "STRUC_DEF_COMP_DOC"; + public static final String STRUC_DEF_COMP_EX = "STRUC_DEF_COMP_EX"; + public static final String STRUC_DEF_COMP_PROF = "STRUC_DEF_COMP_PROF"; + public static final String STRUC_DEF_CONC_SET = "STRUC_DEF_CONC_SET"; + public static final String STRUC_DEF_CONFORMANCE = "STRUC_DEF_CONFORMANCE"; + public static final String STRUC_DEF_CONSTRAINING = "STRUC_DEF_CONSTRAINING"; + public static final String STRUC_DEF_CONSTRAINTS = "STRUC_DEF_CONSTRAINTS"; + public static final String STRUC_DEF_CONTENT = "STRUC_DEF_CONTENT"; + public static final String STRUC_DEF_CONTROL = "STRUC_DEF_CONTROL"; + public static final String STRUC_DEF_CONT_RULE = "STRUC_DEF_CONT_RULE"; + public static final String STRUC_DEF_CONT_TYPE = "STRUC_DEF_CONT_TYPE"; + public static final String STRUC_DEF_COPY_URL = "STRUC_DEF_COPY_URL"; + public static final String STRUC_DEF_CURR = "STRUC_DEF_CURR"; + public static final String STRUC_DEF_CURR_RULE = "STRUC_DEF_CURR_RULE"; + public static final String STRUC_DEF_DATE = "STRUC_DEF_DATE"; + public static final String STRUC_DEF_DATE_FORM = "STRUC_DEF_DATE_FORM"; + public static final String STRUC_DEF_DEF = "STRUC_DEF_DEF"; + public static final String STRUC_DEF_DEFAULT_TYPE = "STRUC_DEF_DEFAULT_TYPE"; + public static final String STRUC_DEF_DEFAULT_VALUE = "STRUC_DEF_DEFAULT_VALUE"; + public static final String STRUC_DEF_DEFINITION = "STRUC_DEF_DEFINITION"; + public static final String STRUC_DEF_DEF_CODES = "STRUC_DEF_DEF_CODES"; + public static final String STRUC_DEF_DERIVED_PROFILE = "STRUC_DEF_DERIVED_PROFILE"; + public static final String STRUC_DEF_DESC = "STRUC_DEF_DESC"; + public static final String STRUC_DEF_DESCRIM = "STRUC_DEF_DESCRIM"; + public static final String STRUC_DEF_DESC_PROF = "STRUC_DEF_DESC_PROF"; + public static final String STRUC_DEF_DETAILS = "STRUC_DEF_DETAILS"; + public static final String STRUC_DEF_DISCUSSION = "STRUC_DEF_DISCUSSION"; + public static final String STRUC_DEF_ELE = "STRUC_DEF_ELE"; + public static final String STRUC_DEF_ELEMENT = "STRUC_DEF_ELEMENT"; + public static final String STRUC_DEF_ELEMENTS = "STRUC_DEF_ELEMENTS"; + public static final String STRUC_DEF_ELE_AFFECTED = "STRUC_DEF_ELE_AFFECTED"; + public static final String STRUC_DEF_ELE_INCLUDED = "STRUC_DEF_ELE_INCLUDED"; + public static final String STRUC_DEF_ELE_MUST_SUPP = "STRUC_DEF_ELE_MUST_SUPP"; + public static final String STRUC_DEF_ELE_OBLIG = "STRUC_DEF_ELE_OBLIG"; + public static final String STRUC_DEF_ELE_READ = "STRUC_DEF_ELE_READ"; + public static final String STRUC_DEF_ERROR = "STRUC_DEF_ERROR"; + public static final String STRUC_DEF_ERR_DESC = "STRUC_DEF_ERR_DESC"; + public static final String STRUC_DEF_EX = "STRUC_DEF_EX"; + public static final String STRUC_DEF_EXAM = "STRUC_DEF_EXAM"; + public static final String STRUC_DEF_EXAMPLE = "STRUC_DEF_EXAMPLE"; + public static final String STRUC_DEF_EXCOMMA = "STRUC_DEF_EXCOMMA"; + public static final String STRUC_DEF_EXT = "STRUC_DEF_EXT"; + public static final String STRUC_DEF_EXTENSIBLE = "STRUC_DEF_EXTENSIBLE"; + public static final String STRUC_DEF_EXTENSIONS = "STRUC_DEF_EXTENSIONS"; + public static final String STRUC_DEF_EXT_JSON = "STRUC_DEF_EXT_JSON"; + public static final String STRUC_DEF_EXT_STYLE = "STRUC_DEF_EXT_STYLE"; + public static final String STRUC_DEF_EX_CODE = "STRUC_DEF_EX_CODE"; + public static final String STRUC_DEF_EX_DESC = "STRUC_DEF_EX_DESC"; + public static final String STRUC_DEF_EX_TYPE = "STRUC_DEF_EX_TYPE"; + public static final String STRUC_DEF_EX_URL = "STRUC_DEF_EX_URL"; + public static final String STRUC_DEF_FHIR = "STRUC_DEF_FHIR"; + public static final String STRUC_DEF_FHIR_EXCEP = "STRUC_DEF_FHIR_EXCEP"; + public static final String STRUC_DEF_FII = "STRUC_DEF_FII"; + public static final String STRUC_DEF_FIXED = "STRUC_DEF_FIXED"; + public static final String STRUC_DEF_FIXED_VALUE = "STRUC_DEF_FIXED_VALUE"; + public static final String STRUC_DEF_FOR_CODE = "STRUC_DEF_FOR_CODE"; + public static final String STRUC_DEF_FURTHER_INFO = "STRUC_DEF_FURTHER_INFO"; + public static final String STRUC_DEF_GRADE = "STRUC_DEF_GRADE"; + public static final String STRUC_DEF_ID = "STRUC_DEF_ID"; + public static final String STRUC_DEF_ID_EXPECT = "STRUC_DEF_ID_EXPECT"; + public static final String STRUC_DEF_ID_IS = "STRUC_DEF_ID_IS"; + public static final String STRUC_DEF_ID_MAY = "STRUC_DEF_ID_MAY"; + public static final String STRUC_DEF_ID_NOT_ALLOW = "STRUC_DEF_ID_NOT_ALLOW"; + public static final String STRUC_DEF_ID_REQ = "STRUC_DEF_ID_REQ"; + public static final String STRUC_DEF_IF = "STRUC_DEF_IF"; + public static final String STRUC_DEF_IMPOSE_PROFILE = "STRUC_DEF_IMPOSE_PROFILE"; + public static final String STRUC_DEF_INFERRED_JSON = "STRUC_DEF_INFERRED_JSON"; + public static final String STRUC_DEF_INVAR = "STRUC_DEF_INVAR"; + public static final String STRUC_DEF_INVARIANT = "STRUC_DEF_INVARIANT"; + public static final String STRUC_DEF_JSON_ARRAY = "STRUC_DEF_JSON_ARRAY"; + public static final String STRUC_DEF_JSON_CAN_NAME = "STRUC_DEF_JSON_CAN_NAME"; + public static final String STRUC_DEF_JSON_CHILD = "STRUC_DEF_JSON_CHILD"; + public static final String STRUC_DEF_JSON_ELE = "STRUC_DEF_JSON_ELE"; + public static final String STRUC_DEF_JSON_EXT = "STRUC_DEF_JSON_EXT"; + public static final String STRUC_DEF_JSON_FORM = "STRUC_DEF_JSON_FORM"; + public static final String STRUC_DEF_JSON_IF = "STRUC_DEF_JSON_IF"; + public static final String STRUC_DEF_JSON_INFERRED = "STRUC_DEF_JSON_INFERRED"; + public static final String STRUC_DEF_JSON_IS = "STRUC_DEF_JSON_IS"; + public static final String STRUC_DEF_JSON_MAY = "STRUC_DEF_JSON_MAY"; + public static final String STRUC_DEF_JSON_MAY_PRESENT = "STRUC_DEF_JSON_MAY_PRESENT"; + public static final String STRUC_DEF_JSON_NAME = "STRUC_DEF_JSON_NAME"; + public static final String STRUC_DEF_JSON_NOT_PRESENT = "STRUC_DEF_JSON_NOT_PRESENT"; + public static final String STRUC_DEF_JSON_NULL = "STRUC_DEF_JSON_NULL"; + public static final String STRUC_DEF_JSON_PRESENT = "STRUC_DEF_JSON_PRESENT"; + public static final String STRUC_DEF_JSON_PROPERTY_NAME = "STRUC_DEF_JSON_PROPERTY_NAME"; + public static final String STRUC_DEF_JSON_SINGLE = "STRUC_DEF_JSON_SINGLE"; + public static final String STRUC_DEF_JSON_TYPE = "STRUC_DEF_JSON_TYPE"; + public static final String STRUC_DEF_LABEL = "STRUC_DEF_LABEL"; + public static final String STRUC_DEF_LEAST_FOLLOW = "STRUC_DEF_LEAST_FOLLOW"; + public static final String STRUC_DEF_LOGIC = "STRUC_DEF_LOGIC"; + public static final String STRUC_DEF_LOGICAL = "STRUC_DEF_LOGICAL"; + public static final String STRUC_DEF_LOGICAL_CONT = "STRUC_DEF_LOGICAL_CONT"; + public static final String STRUC_DEF_LOGIC_NAME = "STRUC_DEF_LOGIC_NAME"; + public static final String STRUC_DEF_LOINC = "STRUC_DEF_LOINC"; + public static final String STRUC_DEF_LOINC_CODE = "STRUC_DEF_LOINC_CODE"; + public static final String STRUC_DEF_MATURITY = "STRUC_DEF_MATURITY"; + public static final String STRUC_DEF_MAX = "STRUC_DEF_MAX"; + public static final String STRUC_DEF_MAX_LENGTH = "STRUC_DEF_MAX_LENGTH"; + public static final String STRUC_DEF_MAX_MIN = "STRUC_DEF_MAX_MIN"; + public static final String STRUC_DEF_MAX_VALUE = "STRUC_DEF_MAX_VALUE"; + public static final String STRUC_DEF_MEAN_MISS = "STRUC_DEF_MEAN_MISS"; + public static final String STRUC_DEF_MIN = "STRUC_DEF_MIN"; + public static final String STRUC_DEF_MIN_ALLOW = "STRUC_DEF_MIN_ALLOW"; + public static final String STRUC_DEF_MIN_VALUE = "STRUC_DEF_MIN_VALUE"; + public static final String STRUC_DEF_MISSING_LINK = "STRUC_DEF_MISSING_LINK"; + public static final String STRUC_DEF_MOD = "STRUC_DEF_MOD"; + public static final String STRUC_DEF_MODIF = "STRUC_DEF_MODIF"; + public static final String STRUC_DEF_MODIFIER = "STRUC_DEF_MODIFIER"; + public static final String STRUC_DEF_MOD_ELEMENT = "STRUC_DEF_MOD_ELEMENT"; + public static final String STRUC_DEF_MUST_SUPPORT = "STRUC_DEF_MUST_SUPPORT"; + public static final String STRUC_DEF_MUST_SUPPORT_TYPES = "STRUC_DEF_MUST_SUPPORT_TYPES"; + public static final String STRUC_DEF_NAME = "STRUC_DEF_NAME"; + public static final String STRUC_DEF_NAMESPACE = "STRUC_DEF_NAMESPACE"; + public static final String STRUC_DEF_NOTE_C = "STRUC_DEF_NOTE_C"; + public static final String STRUC_DEF_NOTE_X = "STRUC_DEF_NOTE_X"; + public static final String STRUC_DEF_NOT_MARK = "STRUC_DEF_NOT_MARK"; + public static final String STRUC_DEF_NOT_MARKED = "STRUC_DEF_NOT_MARKED"; + public static final String STRUC_DEF_NO_DESCRIM = "STRUC_DEF_NO_DESCRIM"; + public static final String STRUC_DEF_NO_MAPPINGS = "STRUC_DEF_NO_MAPPINGS"; + public static final String STRUC_DEF_NO_MUST_SUPPORT = "STRUC_DEF_NO_MUST_SUPPORT"; + public static final String STRUC_DEF_NO_SUMMARY = "STRUC_DEF_NO_SUMMARY"; + public static final String STRUC_DEF_NULL_JSON = "STRUC_DEF_NULL_JSON"; + public static final String STRUC_DEF_OBLIG = "STRUC_DEF_OBLIG"; + public static final String STRUC_DEF_OBLIGATIONS = "STRUC_DEF_OBLIGATIONS"; + public static final String STRUC_DEF_OBLIG_ADD = "STRUC_DEF_OBLIG_ADD"; + public static final String STRUC_DEF_OBLIG_ALL = "STRUC_DEF_OBLIG_ALL"; + public static final String STRUC_DEF_OBLIG_FROM = "STRUC_DEF_OBLIG_FROM"; + public static final String STRUC_DEF_OBLIG_SUPP = "STRUC_DEF_OBLIG_SUPP"; + public static final String STRUC_DEF_ONE_OF = "STRUC_DEF_ONE_OF"; + public static final String STRUC_DEF_OPEN = "STRUC_DEF_OPEN"; + public static final String STRUC_DEF_OPEN_END = "STRUC_DEF_OPEN_END"; + public static final String STRUC_DEF_ORDERED = "STRUC_DEF_ORDERED"; + public static final String STRUC_DEF_PATH = "STRUC_DEF_PATH"; + public static final String STRUC_DEF_PATHS = "STRUC_DEF_PATHS"; + public static final String STRUC_DEF_PATT_VALUE = "STRUC_DEF_PATT_VALUE"; + public static final String STRUC_DEF_PREF = "STRUC_DEF_PREF"; + public static final String STRUC_DEF_PREFERRED = "STRUC_DEF_PREFERRED"; + public static final String STRUC_DEF_PREFIXED = "STRUC_DEF_PREFIXED"; + public static final String STRUC_DEF_PREFIX_VALID = "STRUC_DEF_PREFIX_VALID"; + public static final String STRUC_DEF_PREF_CONT = "STRUC_DEF_PREF_CONT"; + public static final String STRUC_DEF_PRIMITIVE = "STRUC_DEF_PRIMITIVE"; + public static final String STRUC_DEF_PRIM_ELE = "STRUC_DEF_PRIM_ELE"; + public static final String STRUC_DEF_PRIM_TYPE_PRESENT = "STRUC_DEF_PRIM_TYPE_PRESENT"; + public static final String STRUC_DEF_PRIM_TYPE_VALUE = "STRUC_DEF_PRIM_TYPE_VALUE"; + public static final String STRUC_DEF_PROFILED = "STRUC_DEF_PROFILED"; + public static final String STRUC_DEF_PROFILE_BUILDS = "STRUC_DEF_PROFILE_BUILDS"; + public static final String STRUC_DEF_PROF_COMP = "STRUC_DEF_PROF_COMP"; + public static final String STRUC_DEF_PROF_REQ = "STRUC_DEF_PROF_REQ"; + public static final String STRUC_DEF_PROF_RES = "STRUC_DEF_PROF_RES"; + public static final String STRUC_DEF_PROF_SUPP = "STRUC_DEF_PROF_SUPP"; + public static final String STRUC_DEF_PROPERTY = "STRUC_DEF_PROPERTY"; + public static final String STRUC_DEF_REF = "STRUC_DEF_REF"; + public static final String STRUC_DEF_REFERS_EXT = "STRUC_DEF_REFERS_EXT"; + public static final String STRUC_DEF_REFER_PROFILE = "STRUC_DEF_REFER_PROFILE"; + public static final String STRUC_DEF_REND_UNABLE_RES = "STRUC_DEF_REND_UNABLE_RES"; + public static final String STRUC_DEF_REPEAT = "STRUC_DEF_REPEAT"; + public static final String STRUC_DEF_REPEAT_ELE = "STRUC_DEF_REPEAT_ELE"; + public static final String STRUC_DEF_REP_CHOICE = "STRUC_DEF_REP_CHOICE"; + public static final String STRUC_DEF_REQ = "STRUC_DEF_REQ"; + public static final String STRUC_DEF_REQUIRED = "STRUC_DEF_REQUIRED"; + public static final String STRUC_DEF_REQUIRED_PATT = "STRUC_DEF_REQUIRED_PATT"; + public static final String STRUC_DEF_REQUIREMENTS = "STRUC_DEF_REQUIREMENTS"; + public static final String STRUC_DEF_REQ_BIND = "STRUC_DEF_REQ_BIND"; + public static final String STRUC_DEF_REQ_PATT = "STRUC_DEF_REQ_PATT"; + public static final String STRUC_DEF_ROOT = "STRUC_DEF_ROOT"; + public static final String STRUC_DEF_SEE = "STRUC_DEF_SEE"; + public static final String STRUC_DEF_SET_ARE = "STRUC_DEF_SET_ARE"; + public static final String STRUC_DEF_SET_SLICES = "STRUC_DEF_SET_SLICES"; + public static final String STRUC_DEF_SHALL_CODE = "STRUC_DEF_SHALL_CODE"; + public static final String STRUC_DEF_SHORT = "STRUC_DEF_SHORT"; + public static final String STRUC_DEF_SHOULD_CODE = "STRUC_DEF_SHOULD_CODE"; + public static final String STRUC_DEF_SINGLE_JSON_OBJECTS = "STRUC_DEF_SINGLE_JSON_OBJECTS"; + public static final String STRUC_DEF_SLIC = "STRUC_DEF_SLIC"; + public static final String STRUC_DEF_SLICE = "STRUC_DEF_SLICE"; + public static final String STRUC_DEF_SLICES = "STRUC_DEF_SLICES"; + public static final String STRUC_DEF_SLICE_FOR = "STRUC_DEF_SLICE_FOR"; + public static final String STRUC_DEF_SLICE_NAME = "STRUC_DEF_SLICE_NAME"; + public static final String STRUC_DEF_SLICE_PAR = "STRUC_DEF_SLICE_PAR"; + public static final String STRUC_DEF_SNOMED = "STRUC_DEF_SNOMED"; + public static final String STRUC_DEF_SNOMED_CODE = "STRUC_DEF_SNOMED_CODE"; + public static final String STRUC_DEF_SNOMED_CT = "STRUC_DEF_SNOMED_CT"; + public static final String STRUC_DEF_STAND_STAT = "STRUC_DEF_STAND_STAT"; + public static final String STRUC_DEF_STAND_STATUS = "STRUC_DEF_STAND_STATUS"; + public static final String STRUC_DEF_START = "STRUC_DEF_START"; + public static final String STRUC_DEF_START_DEF = "STRUC_DEF_START_DEF"; + public static final String STRUC_DEF_STRING_FORM = "STRUC_DEF_STRING_FORM"; + public static final String STRUC_DEF_STRUCTURES = "STRUC_DEF_STRUCTURES"; + public static final String STRUC_DEF_SUIT_SHALL_CODE = "STRUC_DEF_SUIT_SHALL_CODE"; + public static final String STRUC_DEF_SUMM = "STRUC_DEF_SUMM"; + public static final String STRUC_DEF_SUMMARY = "STRUC_DEF_SUMMARY"; + public static final String STRUC_DEF_SUPP = "STRUC_DEF_SUPP"; + public static final String STRUC_DEF_TARG_SUPP = "STRUC_DEF_TARG_SUPP"; + public static final String STRUC_DEF_TEMPLATEID = "STRUC_DEF_TEMPLATEID"; + public static final String STRUC_DEF_TERM_BIND = "STRUC_DEF_TERM_BIND"; + public static final String STRUC_DEF_TERM_BINDS = "STRUC_DEF_TERM_BINDS"; + public static final String STRUC_DEF_THEN_TYPE = "STRUC_DEF_THEN_TYPE"; + public static final String STRUC_DEF_THIS_REFERS = "STRUC_DEF_THIS_REFERS"; + public static final String STRUC_DEF_TODO = "STRUC_DEF_TODO"; + public static final String STRUC_DEF_TYPE = "STRUC_DEF_TYPE"; + public static final String STRUC_DEF_TYPE_BOUND = "STRUC_DEF_TYPE_BOUND"; + public static final String STRUC_DEF_TYPE_SET = "STRUC_DEF_TYPE_SET"; + public static final String STRUC_DEF_TYPE_SPEC = "STRUC_DEF_TYPE_SPEC"; + public static final String STRUC_DEF_TYPE_SUPP = "STRUC_DEF_TYPE_SUPP"; + public static final String STRUC_DEF_UCUM = "STRUC_DEF_UCUM"; + public static final String STRUC_DEF_UI = "STRUC_DEF_UI"; + public static final String STRUC_DEF_UI_CONT = "STRUC_DEF_UI_CONT"; + public static final String STRUC_DEF_UNADORNED = "STRUC_DEF_UNADORNED"; + public static final String STRUC_DEF_UNDEF_ACT = "STRUC_DEF_UNDEF_ACT"; + public static final String STRUC_DEF_UNKNOWN_APPROACH = "STRUC_DEF_UNKNOWN_APPROACH"; + public static final String STRUC_DEF_UNKNOWN_REF = "STRUC_DEF_UNKNOWN_REF"; + public static final String STRUC_DEF_UNORDERED = "STRUC_DEF_UNORDERED"; + public static final String STRUC_DEF_UNSPECIFIED = "STRUC_DEF_UNSPECIFIED"; + public static final String STRUC_DEF_URI = "STRUC_DEF_URI"; + public static final String STRUC_DEF_URL = "STRUC_DEF_URL"; + public static final String STRUC_DEF_URLS = "STRUC_DEF_URLS"; + public static final String STRUC_DEF_VALID = "STRUC_DEF_VALID"; + public static final String STRUC_DEF_VALID_UNKNOWN = "STRUC_DEF_VALID_UNKNOWN"; + public static final String STRUC_DEF_VALUE = "STRUC_DEF_VALUE"; + public static final String STRUC_DEF_VALUESET = "STRUC_DEF_VALUESET"; + public static final String STRUC_DEF_VALUESET_CODE = "STRUC_DEF_VALUESET_CODE"; + public static final String STRUC_DEF_VALUE_ALT = "STRUC_DEF_VALUE_ALT"; + public static final String STRUC_DEF_VALUE_REQ = "STRUC_DEF_VALUE_REQ"; + public static final String STRUC_DEF_WHAT = "STRUC_DEF_WHAT"; + public static final String STRUC_DEF_XHTML = "STRUC_DEF_XHTML"; + public static final String STRUC_DEF_XML = "STRUC_DEF_XML"; + public static final String STRUC_DEF_XML_ACTUAL = "STRUC_DEF_XML_ACTUAL"; + public static final String STRUC_DEF_XML_ATTRIBUTE = "STRUC_DEF_XML_ATTRIBUTE"; + public static final String STRUC_DEF_XML_ELE = "STRUC_DEF_XML_ELE"; + public static final String STRUC_DEF_XML_FORM = "STRUC_DEF_XML_FORM"; + public static final String STRUC_DEF_XML_NAME = "STRUC_DEF_XML_NAME"; + public static final String STRUC_DEF_XSI = "STRUC_DEF_XSI"; + public static final String SUB_TOPIC_COMP = "SUB_TOPIC_COMP"; + public static final String SUB_TOPIC_CREATE = "SUB_TOPIC_CREATE"; + public static final String SUB_TOPIC_CRITERIA = "SUB_TOPIC_CRITERIA"; + public static final String SUB_TOPIC_DELETE = "SUB_TOPIC_DELETE"; + public static final String SUB_TOPIC_DESC = "SUB_TOPIC_DESC"; + public static final String SUB_TOPIC_EVENT = "SUB_TOPIC_EVENT"; + public static final String SUB_TOPIC_FHIR_PATH = "SUB_TOPIC_FHIR_PATH"; + public static final String SUB_TOPIC_FILT_DEF = "SUB_TOPIC_FILT_DEF"; + public static final String SUB_TOPIC_FILT_PAR = "SUB_TOPIC_FILT_PAR"; + public static final String SUB_TOPIC_INCL = "SUB_TOPIC_INCL"; + public static final String SUB_TOPIC_INT = "SUB_TOPIC_INT"; + public static final String SUB_TOPIC_MOD = "SUB_TOPIC_MOD"; + public static final String SUB_TOPIC_PREV = "SUB_TOPIC_PREV"; + public static final String SUB_TOPIC_REQ = "SUB_TOPIC_REQ"; + public static final String SUB_TOPIC_RES = "SUB_TOPIC_RES"; + public static final String SUB_TOPIC_RES_TRIG = "SUB_TOPIC_RES_TRIG"; + public static final String SUB_TOPIC_REV_INCL = "SUB_TOPIC_REV_INCL"; + public static final String TERMINOLOGY_LVL = "TERMINOLOGY_LVL"; + public static final String TERMINOLOGY_SNOMED = "TERMINOLOGY_SNOMED"; + public static final String TERM_REND_COPY = "TERM_REND_COPY"; + public static final String TEST_PLAN_ASS = "TEST_PLAN_ASS"; + public static final String TEST_PLAN_ASSERTION = "TEST_PLAN_ASSERTION"; + public static final String TEST_PLAN_CASE = "TEST_PLAN_CASE"; + public static final String TEST_PLAN_CASE_SEQ = "TEST_PLAN_CASE_SEQ"; + public static final String TEST_PLAN_CATEGORY = "TEST_PLAN_CATEGORY"; + public static final String TEST_PLAN_CONT = "TEST_PLAN_CONT"; + public static final String TEST_PLAN_CONTENT = "TEST_PLAN_CONTENT"; + public static final String TEST_PLAN_DATA = "TEST_PLAN_DATA"; + public static final String TEST_PLAN_DEP = "TEST_PLAN_DEP"; + public static final String TEST_PLAN_DEPEN = "TEST_PLAN_DEPEN"; + public static final String TEST_PLAN_DESC = "TEST_PLAN_DESC"; + public static final String TEST_PLAN_LANG = "TEST_PLAN_LANG"; + public static final String TEST_PLAN_RESULT = "TEST_PLAN_RESULT"; + public static final String TEST_PLAN_RUN = "TEST_PLAN_RUN"; + public static final String TEST_PLAN_SCOPE = "TEST_PLAN_SCOPE"; + public static final String TEST_PLAN_SCOPES = "TEST_PLAN_SCOPES"; + public static final String TEST_PLAN_SOURCE = "TEST_PLAN_SOURCE"; + public static final String TEST_PLAN_TEST_DATA = "TEST_PLAN_TEST_DATA"; + public static final String TEST_PLAN_TEST_RUN = "TEST_PLAN_TEST_RUN"; + public static final String TEST_PLAN_TYPE = "TEST_PLAN_TYPE"; + public static final String TEXT_ICON_CHOICE = "TEXT_ICON_CHOICE"; + public static final String TEXT_ICON_DATATYPE = "TEXT_ICON_DATATYPE"; + public static final String TEXT_ICON_ELEMENT = "TEXT_ICON_ELEMENT"; + public static final String TEXT_ICON_EXTENSION = "TEXT_ICON_EXTENSION"; + public static final String TEXT_ICON_EXTENSION_COMPLEX = "TEXT_ICON_EXTENSION_COMPLEX"; + public static final String TEXT_ICON_EXTENSION_SIMPLE = "TEXT_ICON_EXTENSION_SIMPLE"; + public static final String TEXT_ICON_FIXED = "TEXT_ICON_FIXED"; + public static final String TEXT_ICON_KEY = "TEXT_ICON_KEY"; + public static final String TEXT_ICON_OBJECT_BOX = "TEXT_ICON_OBJECT_BOX"; + public static final String TEXT_ICON_PRIMITIVE = "TEXT_ICON_PRIMITIVE"; + public static final String TEXT_ICON_PROFILE = "TEXT_ICON_PROFILE"; + public static final String TEXT_ICON_REFERENCE = "TEXT_ICON_REFERENCE"; + public static final String TEXT_ICON_RESOURCE = "TEXT_ICON_RESOURCE"; + public static final String TEXT_ICON_REUSE = "TEXT_ICON_REUSE"; + public static final String TEXT_ICON_SLICE = "TEXT_ICON_SLICE"; + public static final String TEXT_ICON_SLICE_ITEM = "TEXT_ICON_SLICE_ITEM"; public static final String TX_CODE = "TX_CODE"; public static final String TX_COMMENTS = "TX_COMMENTS"; public static final String TX_DEFINITION = "TX_DEFINITION"; public static final String TX_DEPRECATED = "TX_DEPRECATED"; public static final String TX_DISPLAY = "TX_DISPLAY"; public static final String TX_VERSION = "TX_VERSION"; - public static final String PAT_GENDER = "PAT_GENDER"; - public static final String PAT_NO_GENDER = "PAT_NO_GENDER"; - public static final String PAT_NO_DOB = "PAT_NO_DOB"; - public static final String PAT_DOB = "PAT_DOB"; - public static final String PAT_NO_NAME = "PAT_NO_NAME"; - public static final String PAT_CONTAINED = "PAT_CONTAINED"; - public static final String PAT_OTHER_ID = "PAT_OTHER_ID"; - public static final String PAT_OTHER_ID_HINT = "PAT_OTHER_ID_HINT"; - public static final String PAT_LANG = "PAT_LANG"; - public static final String PAT_LANG_HINT = "PAT_LANG_HINT"; - public static final String PAT_LANG_PREFERRED = "PAT_LANG_PREFERRED"; - public static final String PAT_GP = "PAT_GP"; - public static final String PAT_MO = "PAT_MO"; - public static final String PAT_LINKS = "PAT_LINKS"; - public static final String PAT_LINKS_HINT = "PAT_LINKS_HINT"; - public static final String PAT_LINK_REPLBY = "PAT_LINK_REPLBY"; - public static final String PAT_LINK_REPL = "PAT_LINK_REPL"; - public static final String PAT_LINK_REFER = "PAT_LINK_REFER"; - public static final String PAT_LINK_SEE = "PAT_LINK_SEE"; - public static final String PAT_NOM_CONTACT = "PAT_NOM_CONTACT"; - public static final String PAT_NOK_CONTACT = "PAT_NOK_CONTACT"; - public static final String PAT_NOK_CONTACT_HINT = "PAT_NOK_CONTACT_HINT"; - public static final String PAT_RELN = "PAT_RELN"; - public static final String PAT_ORG = "PAT_ORG"; - public static final String PAT_PERIOD = "PAT_PERIOD"; - public static final String PAT_ALT_NAME = "PAT_ALT_NAME"; - public static final String PAT_ALT_NAME_HINT = "PAT_ALT_NAME_HINT"; - public static final String PAT_CONTACT = "PAT_CONTACT"; - public static final String PAT_CONTACT_HINT = "PAT_CONTACT_HINT"; - public static final String PAT_ACTIVE = "PAT_ACTIVE"; - public static final String PAT_ACTIVE_HINT = "PAT_ACTIVE_HINT"; - public static final String PAT_DECEASED = "PAT_DECEASED"; - public static final String PAT_DECEASED_HINT = "PAT_DECEASED_HINT"; - public static final String PAT_MARITAL = "PAT_MARITAL"; - public static final String PAT_MARITAL_HINT = "PAT_MARITAL_HINT"; - public static final String PAT_MUL_BIRTH = "PAT_MUL_BIRTH"; - public static final String PAT_MUL_BIRTH_HINT = "PAT_MUL_BIRTH_HINT"; - public static final String PAT_PHOTO = "PAT_PHOTO"; - public static final String CAPABILITY_REST_CAPS = "CAPABILITY_REST_CAPS"; - public static final String CAPABILITY_RES_PRO = "CAPABILITY_RES_PRO"; - public static final String CAPABILTY_SHALL_SUPP = "CAPABILTY_SHALL_SUPP"; - public static final String CAPABILITY_SUMM = "CAPABILITY_SUMM"; - public static final String CAPABILITY_SHOULD_SUPP = "CAPABILITY_SHOULD_SUPP"; - public static final String CAPABILITY_SUPP_FORM = "CAPABILITY_SUPP_FORM"; - public static final String CAPABILITY_SUPP = "CAPABILITY_SUPP"; - public static final String CAPABILITY_SUPP_PATCH_FORM = "CAPABILITY_SUPP_PATCH_FORM"; - public static final String CAPABILITY_SUMM_SYS_INT = "CAPABILITY_SUMM_SYS_INT"; - public static final String CAPABILITY_SUPP_THE = "CAPABILITY_SUPP_THE"; - public static final String CAPABILITY_INT = "CAPABILITY_INT"; - public static final String CAPABILITY_SUPPS = "CAPABILITY_SUPPS"; - public static final String CAPABILITY_SUMM_RES = "CAPABILITY_SUMM_RES"; - public static final String CAPABILITY_REV_PROF = "CAPABILITY_REV_PROF"; - public static final String CAPABILITY_SEARCH_PAR = "CAPABILITY_SEARCH_PAR"; - public static final String CAPABILITY_RES_ENB = "CAPABILITY_RES_ENB"; - public static final String CAPABILITY_TYP_PRES = "CAPABILITY_TYP_PRES"; - public static final String CAPABILITY_OTH_RES_ENB = "CAPABILITY_OTH_RES_ENB"; - public static final String CAPABILITY_RES_OPER = "CAPABILITY_RES_OPER"; - public static final String CAPABILITY_RES_TYP = "CAPABILITY_RES_TYP"; - public static final String CAPABILITY_PROF = "CAPABILITY_PROF"; - public static final String CAPABILITY_OP = "CAPABILITY_OP"; - public static final String CAPABILITY_ADD_SUPP_PROF = "CAPABILITY_ADD_SUPP_PROF"; - public static final String CAPABILITY_SUPP_PROF = "CAPABILITY_SUPP_PROF"; - public static final String CAPABILITY_PROF_MAP = "CAPABILITY_PROF_MAP"; - public static final String CAPABILITY_CRIT = "CAPABILITY_CRIT"; - public static final String CAPABILITY_CONF = "CAPABILITY_CONF"; - public static final String CAPABILITY_OPER = "CAPABILITY_OPER"; - public static final String CAPABILITY_DOC = "CAPABILITY_DOC"; - public static final String CAPABILITY_PAR = "CAPABILITY_PAR"; - public static final String CAPABILITY_TYP = "CAPABILITY_TYP"; - public static final String CAPABILITY_PARS = "CAPABILITY_PARS"; - public static final String CAPABILITY_TYPS = "CAPABILITY_TYPS"; - public static final String CAPABILITY_NOTE_CAP = "CAPABILITY_NOTE_CAP"; - public static final String CAPABILTY_ALLOW_CAP = "CAPABILTY_ALLOW_CAP"; - public static final String CAPABILITY_INT_DESC = "CAPABILITY_INT_DESC"; - public static final String ACTOR_DEF_REF = "ACTOR_DEF_REF"; - public static final String ACTOR_DEF_CAP = "ACTOR_DEF_CAP"; - public static final String ACTOR_DEF_DER = "ACTOR_DEF_DER"; - public static final String ADD_BIND_ADD_BIND = "ADD_BIND_ADD_BIND"; - public static final String ADD_BIND_PUR = "ADD_BIND_PUR"; - public static final String ADD_BIND_USE = "ADD_BIND_USE"; - public static final String ADD_BIND_ANY = "ADD_BIND_ANY"; - public static final String ADD_BIND_DOC = "ADD_BIND_DOC"; - public static final String CAPABILITY_IMP_VER = "CAPABILITY_IMP_VER"; - public static final String CAPABILITY_FHIR_VER = "CAPABILITY_FHIR_VER"; - public static final String CAPABILITY_PUB_ON = "CAPABILITY_PUB_ON"; - public static final String CAPABILITY_PUB_BY = "CAPABILITY_PUB_BY"; - public static final String CAPABILITY_REST_CONFIG = "CAPABILITY_REST_CONFIG"; - public static final String CAPABILITY_RES_CONF = "CAPABILITY_RES_CONF"; - public static final String ACTOR_DEF_ACT = "ACTOR_DEF_ACT"; - public static final String ACTOR_DEF_TYP = "ACTOR_DEF_TYP"; - public static final String ADD_BIND_ANY_REP = "ADD_BIND_ANY_REP"; - public static final String BUNDLE_REV_EXCP = "BUNDLE_REV_EXCP"; - public static final String BUNDLE_REV_INV_DOC = "BUNDLE_REV_INV_DOC"; - public static final String CODE_SYS_UNKN_MODE = "CODE_SYS_UNKN_MODE"; - public static final String CODE_SYS_ADD_LANG = "CODE_SYS_ADD_LANG"; - public static final String CODE_SYS_UNDEF_HIER = "CODE_SYS_UNDEF_HIER"; - public static final String CODE_SYS_COPY = "CODE_SYS_COPY"; - public static final String CODE_SYS_DISP_PROP = "CODE_SYS_DISP_PROP"; - public static final String CODE_SYS_DISP = "CODE_SYS_DISP"; - public static final String CODE_SYS_PROP = "CODE_SYS_PROP"; - public static final String CODE_SYS_FEAT = "CODE_SYS_FEAT"; - public static final String CODE_SYS_CODE = "CODE_SYS_CODE"; - public static final String CONC_MAP_FROM = "CONC_MAP_FROM"; - public static final String CONC_MAP_NOT_SPEC = "CONC_MAP_NOT_SPEC"; - public static final String CONC_MAP_TO = "CONC_MAP_TO"; - public static final String CONC_MAP_NO_PROD_USE = "CONC_MAP_NO_PROD_USE"; - public static final String CONC_MAP_PUB_ON = "CONC_MAP_PUB_ON"; - public static final String CONC_MAP_GRP = "CONC_MAP_GRP"; - public static final String CONC_MAP_CODE_SYS_UNSPEC = "CONC_MAP_CODE_SYS_UNSPEC"; - public static final String CONC_MAP_SOURCE = "CONC_MAP_SOURCE"; - public static final String CONC_MAP_REL = "CONC_MAP_REL"; - public static final String CONC_MAP_TRGT = "CONC_MAP_TRGT"; - public static final String CONC_MAP_CMNT = "CONC_MAP_CMNT"; - public static final String CONC_MAP_CODE = "CONC_MAP_CODE"; - public static final String CONC_MAP_CODES = "CONC_MAP_CODES"; - public static final String CONC_MAP_FRM = "CONC_MAP_FRM"; - public static final String CONC_MAP_SRC_DET = "CONC_MAP_SRC_DET"; - public static final String CONC_MAP_TRGT_DET = "CONC_MAP_TRGT_DET"; - public static final String CONC_MAP_PROP = "CONC_MAP_PROP"; - public static final String DATA_REND_MKDWN_LNK = "DATA_REND_MKDWN_LNK"; - public static final String DATA_REND_UNRD_EX = "DATA_REND_UNRD_EX"; - public static final String DATA_REND_LOINC = "DATA_REND_LOINC"; - public static final String DATA_REND_SNOMED = "DATA_REND_SNOMED"; - public static final String DATA_REND_RXNORM = "DATA_REND_RXNORM"; - public static final String DATA_REND_ICD = "DATA_REND_ICD"; - public static final String DATA_REND_DICOM = "DATA_REND_DICOM"; - public static final String DATA_REND_UCUM = "DATA_REND_UCUM"; - public static final String DATA_REND_NOT_STAT = "DATA_REND_NOT_STAT"; - public static final String DATA_REND_UNKNWN = "DATA_REND_UNKNWN"; - public static final String DATA_REND_NO_DISP = "DATA_REND_NO_DISP"; - public static final String DATA_REND_TO_DO = "DATA_REND_TO_DO"; - public static final String DATA_REND_ERROR = "DATA_REND_ERROR"; - public static final String DATA_REND_BY = "DATA_REND_BY"; - public static final String DATA_REND_USE = "DATA_REND_USE"; - public static final String DATA_REND_PERIOD = "DATA_REND_PERIOD"; - public static final String DATA_REND_SOURCE = "DATA_REND_SOURCE"; - public static final String DATA_REND_PHONE = "DATA_REND_PHONE"; - public static final String DATA_REND_FAX = "DATA_REND_FAX"; - public static final String DATA_REND_TYPE = "DATA_REND_TYPE"; - public static final String DATA_REND_NAME = "DATA_REND_NAME"; - public static final String DATA_REND_CODE = "DATA_REND_CODE"; - public static final String DATA_REND_TIMING = "DATA_REND_TIMING"; - public static final String DATA_REND_COND = "DATA_REND_COND"; - public static final String DATA_REND_SUB = "DATA_REND_SUB"; - public static final String DATA_REND_FILT = "DATA_REND_FILT"; - public static final String DATA_REND_VALUE = "DATA_REND_VALUE"; - public static final String DATA_REND_SEARCH= "SDATA_REND_SEARCH"; - public static final String DATA_REND_VALUESET = "DATA_REND_VALUESET"; - public static final String DATA_REND_THESE_CODES = "DATA_REND_THESE_CODES"; - public static final String DATA_REND_LIMIT = "DATA_REND_LIMIT"; - public static final String DATA_REND_SORT = "DATA_REND_SORT"; - public static final String DATA_REND_GETCODE = "DATA_REND_GETCODE"; - public static final String DATA_REND_EVENTS = "DATA_REND_EVENTS"; - public static final String DATA_REND_STARTING = "DATA_REND_STARTING"; - public static final String DATA_REND_COUNT = "DATA_REND_COUNT"; - public static final String DATA_REND_DURATION = "DATA_REND_DURATION"; - public static final String DATA_REND_ONCE = "DATA_REND_ONCE"; - public static final String DATA_REND_UNTIL = "DATA_REND_UNTIL"; - public static final String DATA_REND_MEALS = "DATA_REND_MEALS"; - public static final String DATA_REND_ATLUNCH = "DATA_REND_ATLUNCH"; - public static final String DATA_REND_ATBKFST = "DATA_REND_ATBKFST"; - public static final String DATA_REND_ATDINR = "DATA_REND_ATDINR"; - public static final String DATA_REND_BFMEALS = "DATA_REND_BFMEALS"; - public static final String DATA_REND_BFLUNCH = "DATA_REND_BFLUNCH"; - public static final String DATA_REND_BFBKFST = "DATA_REND_BFBKFST"; - public static final String DATA_REND_BFDINR = "DATA_REND_BFDINR"; - public static final String DATA_REND_BFSLEEP = "DATA_REND_BFSLEEP"; - public static final String DATA_REND_AFTRMEALS = "DATA_REND_AFTRMEALS"; - public static final String DATA_REND_AFTRBKFST = "DATA_REND_AFTRBKFST"; - public static final String DATA_REND_AFTRLUNCH = "DATA_REND_AFTRLUNCH"; - public static final String DATA_REND_AFTRDINR = "DATA_REND_AFTRDINR"; - public static final String DATA_REND_AFTRWKNG = "DATA_REND_AFTRWKNG"; - public static final String DATA_REND_ORIGIN = "DATA_REND_ORIGIN"; - public static final String DATA_REND_INT = "DATA_REND_INT"; - public static final String DATA_REND_FACT = "DATA_REND_FACT"; - public static final String DATA_REND_LOWER = "DATA_REND_LOWER"; - public static final String DATA_REND_UP = "DATA_REND_UP"; - public static final String DATA_REND_DIM = "DATA_REND_DIM"; - public static final String DATA_REND_DATA = "DATA_REND_DATA"; - public static final String DIAG_REP_REND_SUB = "DIAG_REP_REND_SUB"; - public static final String DIAG_REP_REND_WHEN = "DIAG_REP_REND_WHEN"; - public static final String DIAG_REP_REND_REP = "DIAG_REP_REND_REP"; - public static final String DIAG_REP_REND_IDEN = "DIAG_REP_REND_IDEN"; - public static final String DIAG_REP_REND_REQ = "DIAG_REP_REND_REQ"; - public static final String DIAG_REP_REND_REPDET = "DIAG_REP_REND_REPDET"; - public static final String DIAG_REP_REND_CODECON = "DIAG_REP_REND_CODECON"; - public static final String DIAG_REP_REND_UNABLE = "DIAG_REP_REND_UNABLE"; - public static final String DIAG_REP_REND_NOTDONE = "DIAG_REP_REND_NOTDONE"; - public static final String DIAG_REP_REND_CODE = "DIAG_REP_REND_CODE"; - public static final String DIAG_REP_REND_VALUE = "DIAG_REP_REND_VALUE"; - public static final String DIAG_REP_REND_REFRAN = "DIAG_REP_REND_REFRAN"; - public static final String DIAG_REP_REND_FLAG = "DIAG_REP_REND_FLAG"; - public static final String DIAG_REP_REND_NOTE = "DIAG_REP_REND_NOTE"; - public static final String DIAG_REP_REND_NOTRES = "DIAG_REP_REND_NOTRES"; - public static final String DIAG_REP_REND_OBS = "DIAG_REP_REND_OBS"; - public static final String DIAG_REP_REND_ERR = "DIAG_REP_REND_ERR"; - public static final String DIAG_REP_REND_FOR = "DIAG_REP_REND_FOR"; - public static final String DIAG_REP_REND_AGE = "DIAG_REP_REND_AGE"; - public static final String EX_SCEN_UN = "EX_SCEN_UN"; - public static final String EX_SCEN_ERR_REN = "EX_SCEN_ERR_REN"; - public static final String EX_SCEN_TIME = "EX_SCEN_TIME"; - public static final String EX_SCEN_NAME = "EX_SCEN_NAME"; - public static final String EX_SCEN_TYPE = "EX_SCEN_TYPE"; - public static final String EX_SCEN_DESC = "EX_SCEN_DESC"; - public static final String EX_SCEN_CONT = "EX_SCEN_CONT"; - public static final String EX_SCEN_FVER = "EX_SCEN_FVER"; - public static final String EX_SCEN_VER = "EX_SCEN_VER"; - public static final String EX_SCEN_CONTA = "EX_SCEN_CONTA"; - public static final String EX_SCEN_PROC = "EX_SCEN_PROC"; - public static final String EX_SCEN_PRECON = "EX_SCEN_PRECON"; - public static final String EX_SCEN_POSTCON = "EX_SCEN_POSTCON"; - public static final String EX_SCEN_STEP = "EX_SCEN_STEP"; - public static final String EX_SCEN_IN = "EX_SCEN_IN"; - public static final String EX_SCEN_REC = "EX_SCEN_REC"; - public static final String EX_SCEN_REQ = "EX_SCEN_REQ"; - public static final String EX_SCEN_RES = "EX_SCEN_RES"; - public static final String EX_SCEN_SEE = "EX_SCEN_SEE"; - public static final String EX_SCEN_BEL = "EX_SCEN_BEL"; - public static final String EX_SCEN_OTH = "EX_SCEN_OTH"; - public static final String EX_SCEN_ALT = "EX_SCEN_ALT"; - public static final String EX_SCEN_UN_ACT = "EX_SCEN_UN_ACT"; - public static final String EX_SCEN_UN_INST = "EX_SCEN_UN_INST"; - public static final String IMP_GUIDE_URL = "IMP_GUIDE_URL"; - public static final String LIB_REND_PAR = "LIB_REND_PAR"; - public static final String LIB_REND_AUT = "LIB_REND_AUT"; - public static final String LIB_REND_ED = "LIB_REND_ED"; - public static final String LIB_REND_REV = "LIB_REND_REV"; - public static final String LIB_REND_END = "LIB_REND_END"; - public static final String LIB_REND_ART = "LIB_REND_ART"; - public static final String LIB_REND_PARA = "LIB_REND_PARA"; - public static final String LIB_REND_REQ = "LIB_REND_REQ"; - public static final String LIB_REND_CONT = "LIB_REND_CONT"; - public static final String LIB_REND_NOCONT = "LIB_REND_NOCONT"; - public static final String LIB_REND_SHOW = "LIB_REND_SHOW"; - public static final String LIB_REND_SIZE = "LIB_REND_SIZE"; - public static final String LIST_REND_DATE = "LIST_REND_DATE"; - public static final String LIST_REND_MODE = "LIST_REND_MODE"; - public static final String LIST_REND_STAT = "LIST_REND_STAT"; - public static final String LIST_REND_CODE = "LIST_REND_CODE"; - public static final String LIST_REND_SUB = "LIST_REND_SUB"; - public static final String LIST_REND_ENC = "LIST_REND_ENC"; - public static final String LIST_REND_SRC = "LIST_REND_SRC"; - public static final String LIST_REND_ORD = "LIST_REND_ORD"; - public static final String LIST_REND_ITEM = "LIST_REND_ITEM"; - public static final String LIST_REND_DAT = "LIST_REND_DAT"; - public static final String LIST_REND_FLAG = "LIST_REND_FLAG"; - public static final String LIST_REND_DEL = "LIST_REND_DEL"; - public static final String NAME_SYS_SUM = "NAME_SYS_SUM"; - public static final String NAME_SYS_URL = "NAME_SYS_URL"; - public static final String NAME_SYS_VER = "NAME_SYS_VER"; - public static final String NAME_SYS_NAME = "NAME_SYS_NAME"; - public static final String NAME_SYS_TITLE = "NAME_SYS_TITLE"; - public static final String NAME_SYS_STAT = "NAME_SYS_STAT"; - public static final String NAME_SYS_DEF = "NAME_SYS_DEF"; - public static final String NAME_SYS_PUB = "NAME_SYS_PUB"; - public static final String NAME_SYS_OID = "NAME_SYS_OID"; - public static final String NAME_SYS_FOROID = "NAME_SYS_FOROID"; - public static final String NAME_SYS_COPY = "NAME_SYS_COPY"; - public static final String NAME_SYS_IDEN = "NAME_SYS_IDEN"; - public static final String NAME_SYS_TYPE = "NAME_SYS_TYPE"; - public static final String NAME_SYS_VALUE = "NAME_SYS_VALUE"; - public static final String NAME_SYS_PREF = "NAME_SYS_PREF"; - public static final String NAME_SYS_PER = "NAME_SYS_PER"; - public static final String NAME_SYS_COM = "NAME_SYS_COM"; - public static final String OBLIG_OBLIG = "OBLIG_OBLIG"; - public static final String OBLIG_ACT = "OBLIG_ACT"; - public static final String OBLIG_ELE = "OBLIG_ELE"; - public static final String OBLIG_USE = "OBLIG_USE"; - public static final String OBLIG_DOC = "OBLIG_DOC"; - public static final String OBLIG_FILT = "OBLIG_FILT"; - public static final String OP_DEF_OFFIC = "OP_DEF_OFFIC"; - public static final String OP_DEF_URLS = "OP_DEF_URLS"; - public static final String OP_DEF_URL = "OP_DEF_URL"; - public static final String OP_DEF_INPAR = "OP_DEF_INPAR"; - public static final String OP_DEF_OUTPAR = "OP_DEF_OUTPAR"; - public static final String OP_DEF_PAR = "OP_DEF_PAR"; - public static final String OP_DEF_USE = "OP_DEF_USE"; - public static final String OP_DEF_NAME = "OP_DEF_NAME"; - public static final String OP_DEF_SCO = "OP_DEF_SCO"; - public static final String OP_DEF_CARD = "OP_DEF_CARD"; - public static final String OP_DEF_TYPE = "OP_DEF_TYPE"; - public static final String OP_DEF_BIND = "OP_DEF_BIND"; - public static final String OP_DEF_DOC = "OP_DEF_DOC"; - public static final String OP_OUT_OK = "OP_OUT_OK"; - public static final String OP_OUT_SEV = "OP_OUT_SEV"; - public static final String OP_OUT_LOC = "OP_OUT_LOC"; - public static final String OP_OUT_CODE = "OP_OUT_CODE"; - public static final String OP_OUT_DET = "OP_OUT_DET"; - public static final String OP_OUT_DIAG = "OP_OUT_DIAG"; - public static final String OP_OUT_SRC = "OP_OUT_SRC"; - public static final String OP_OUT_TODO = "OP_OUT_TODO"; - public static final String OP_OUT_NOT = "OP_OUT_NOT"; - public static final String PAR_REND_PAR = "PAR_REND_PAR"; - public static final String PROF_DRIV_FEXCP = "PROF_DRIV_FEXCP"; - public static final String PROF_DRIV_EXCP = "PROF_DRIV_EXCP"; - public static final String PROV_PROV = "PROV_PROV"; - public static final String PROV_PROVE = "PROV_PROVE"; - public static final String PROV_SUM = "PROV_SUM"; - public static final String PROV_OCC = "PROV_OCC"; - public static final String PROV_REC = "PROV_REC"; - public static final String PROV_POL = "PROV_POL"; - public static final String PROV_LOC = "PROV_LOC"; - public static final String PROV_ACT = "PROV_ACT"; - public static final String PROV_AGE = "PROV_AGE"; - public static final String PROV_TYPE = "PROV_TYPE"; - public static final String PROV_ROLE = "PROV_ROLE"; - public static final String PROV_WHO = "PROV_WHO"; - public static final String PROV_BEHALF = "PROV_BEHALF"; - public static final String PROV_FOR = "PROV_FOR"; - public static final String PROV_NOT = "PROV_NOT"; - public static final String QUEST_STRUCT = "QUEST_STRUCT"; - public static final String QUEST_LINKID = "QUEST_LINKID"; - public static final String QUEST_LINK = "QUEST_LINK"; - public static final String QUEST_TEXT = "QUEST_TEXT"; - public static final String QUEST_TEXTFOR = "QUEST_TEXTFOR"; - public static final String QUEST_CARD = "QUEST_CARD"; - public static final String QUEST_TIMES = "QUEST_TIMES"; - public static final String QUEST_TYPE = "QUEST_TYPE"; - public static final String QUEST_TYPE_ITEM = "QUEST_TYPE_ITEM"; - public static final String QUEST_FLAG = "QUEST_FLAG"; - public static final String QUEST_ATTRIBUTES = "QUEST_ATTRIBUTES"; - public static final String QUEST_DESC = "QUEST_DESC"; - public static final String QUEST_ADD_INFO = "QUEST_ADD_INFO"; - public static final String QUEST_OPT = "QUEST_OPT"; - public static final String QUEST_ANSW = "QUEST_ANSW"; - public static final String QUEST_ROOT = "QUEST_ROOT"; - public static final String QUEST_QUEST = "QUEST_QUEST"; - public static final String QUEST_READONLY = "QUEST_READONLY"; - public static final String QUEST_SUBJECT = "QUEST_SUBJECT"; - public static final String QUEST_DISPLAY = "QUEST_DISPLAY"; - public static final String QUEST_LINKED = "QUEST_LINKED"; - public static final String QUEST_HIDDEN = "QUEST_HIDDEN"; - public static final String QUEST_ORIENTATION = "QUEST_ORIENTATION"; - public static final String QUEST_CAT = "QUEST_CAT"; - public static final String QUEST_MAX = "QUEST_MAX"; - public static final String QUEST_DEF = "QUEST_DEF"; - public static final String QUEST_ENABLE = "QUEST_ENABLE"; - public static final String QUEST_VALUE = "QUEST_VALUE"; - public static final String QUEST_OPTIONS = "QUEST_OPTIONS"; - public static final String QUEST_INITIAL = "QUEST_INITIAL"; - public static final String QUEST_EXP = "QUEST_EXP"; - public static final String QUEST_INT = "QUEST_INT"; - public static final String QUEST_CONT = "QUEST_CONT"; - public static final String QUEST_ITEM_CONT = "QUEST_ITEM_CONT"; - public static final String QUEST_EN = "QUEST_EN"; - public static final String QUEST_CALC = "QUEST_CALC"; - public static final String QUEST_CAND = "QUEST_CAND"; - public static final String QUEST_TODO = "QUEST_TODO"; - public static final String QUEST_MAND = "QUEST_MAND"; - public static final String QUEST_ANSWERS = "QUEST_ANSWERS"; - public static final String QUEST_QUESTIONNAIRE = "QUEST_QUESTIONNAIRE"; - public static final String QUEST_TRY = "QUEST_TRY"; - public static final String QUEST_NLM = "QUEST_NLM"; - public static final String QUEST_URL = "QUEST_URL"; - public static final String QUEST_VERSION = "QUEST_VERSION"; - public static final String QUEST_NAME = "QUEST_NAME"; - public static final String QUEST_TITLE = "QUEST_TITLE"; - public static final String QUEST_DERIVED = "QUEST_DERIVED"; - public static final String QUEST_STATUS = "QUEST_STATUS"; - public static final String QUEST_EXPER = "QUEST_EXPER"; - public static final String QUEST_PUB = "QUEST_PUB"; - public static final String QUEST_APP = "QUEST_APP"; - public static final String QUEST_REV_DATE = "QUEST_REV_DATE"; - public static final String QUEST_EFF_PERIOD = "QUEST_EFF_PERIOD"; - public static final String QUEST_SUB_TYPE = "QUEST_SUB_TYPE"; - public static final String QUEST_DESCRIPTION = "QUEST_DESCRIPTION"; - public static final String QUEST_PURPOSE = "QUEST_PURPOSE"; - public static final String QUEST_COPYRIGHT = "QUEST_COPYRIGHT"; - public static final String QUEST_ID = "QUEST_ID"; - public static final String QUEST_PREFIX = "QUEST_PREFIX"; - public static final String QUEST_REQ = "QUEST_REQ"; - public static final String QUEST_REP = "QUEST_REP"; - public static final String QUEST_READ_ONLY = "QUEST_READ_ONLY"; - public static final String QUEST_SUB = "QUEST_SUB"; - public static final String QUEST_VALUE_SET = "QUEST_VALUE_SET"; - public static final String QUEST_MAX_LENGTH = "QUEST_MAX_LENGTH"; - public static final String QUEST_ALLOWED = "QUEST_ALLOWED"; - public static final String QUEST_INITIALLY = "QUEST_INITIALLY"; - public static final String QUEST_INITIAL_ANSWER = "QUEST_INITIAL_ANSWER"; - public static final String QUEST_HIDDEN_ITEM = "QUEST_HIDDEN_ITEM"; - public static final String QUEST_DEFINITION = "QUEST_DEFINITION"; - public static final String QUEST_CODE = "QUEST_CODE"; - public static final String QUEST_OBSERVATION = "QUEST_OBSERVATION"; - public static final String QUEST_TRUE = "QUEST_TRUE"; - public static final String QUEST_ARE_TRUE = "QUEST_ARE_TRUE"; - public static final String REND_STANDARDS = "REND_STANDARDS"; - public static final String REND_SINCE_ADDED = "REND_SINCE_ADDED"; - public static final String REND_SINCE_CHANGED = "REND_SINCE_CHANGED"; - public static final String REND_SINCE_CHANGED_WAS = "REND_SINCE_CHANGED_WAS"; - public static final String REND_SINCE_DELETED = "REND_SINCE_DELETED"; - public static final String REND_ADDED = "REND_ADDED"; - public static final String REND_CHANGED = "REND_CHANGED"; - public static final String REND_REMOVED = "REND_REMOVED"; - public static final String REND_ROW_SINCE = "REND_ROW_SINCE"; - public static final String REND_ROW_CHANGED_SINCE = "REND_ROW_CHANGED_SINCE"; - public static final String REND_ROW_REMOVED_SINCE = "REND_ROW_REMOVED_SINCE"; - public static final String REQ_ACTOR = "REQ_ACTOR"; - public static final String REQ_FOLLOWING_ACTOR = "REQ_FOLLOWING_ACTOR"; - public static final String REQ_DERIVE = "REQ_DERIVE"; - public static final String REQ_FOLLOWING_REQ = "REQ_FOLLOWING_REQ"; - public static final String REQ_REFERENCES = "REQ_REFERENCES"; - public static final String REQ_LINKS = "REQ_LINKS"; - public static final String REQ_DERIVED = "REQ_DERIVED"; - public static final String REQ_SATISFIED = "REQ_SATISFIED"; - public static final String REQ_SOURCES = "REQ_SOURCES"; - public static final String RES_REND_COND_REF = "RES_REND_COND_REF"; - public static final String RES_REND_SEE_ON_THIS_PAGE = "RES_REND_SEE_ON_THIS_PAGE"; - public static final String RES_REND_DESC = "RES_REND_DESC"; - public static final String RES_REND_GEN_SUM = "RES_REND_GEN_SUM"; - public static final String RES_REND_TODO = "RES_REND_TODO"; - public static final String RES_REND_EXP = "RES_REND_EXP"; - public static final String RES_REND_ACT = "RES_REND_ACT"; - public static final String RES_REND_DRAFT = "RES_REND_DRAFT"; - public static final String RES_REND_RET = "RES_REND_RET"; - public static final String RES_REND_UNKNOWN = "RES_REND_UNKNOWN"; - public static final String RES_REND_RESOURCE = "RES_REND_RESOURCE"; - public static final String RES_REND_PROF = "RES_REND_PROF"; - public static final String RES_REND_TAG = "RES_REND_TAG"; - public static final String RES_REND_SECURITY = "RES_REND_SECURITY"; - public static final String RES_REND_ERROR = "RES_REND_ERROR"; - public static final String SEARCH_PAR_PAR = "SEARCH_PAR_PAR"; - public static final String SEARCH_PAR_EXP = "SEARCH_PAR_EXP"; - public static final String SEARCH_PAR_NONE = "SEARCH_PAR_NONE"; - public static final String SEARCH_PAR_PROC = "SEARCH_PAR_PROC"; - public static final String SEARCH_PAR_RES = "SEARCH_PAR_RES"; - public static final String SEARCH_PAR_MULTIPLES = "SEARCH_PAR_MULTIPLES"; - public static final String SEARCH_PAR_MULTIPLE_AND_SERVER = "SEARCH_PAR_MULTIPLE_AND_SERVER"; - public static final String SEARCH_PAR_MULTIPLE_AND_REPEAT = "SEARCH_PAR_MULTIPLE_AND_REPEAT"; - public static final String SEARCH_PAR_MULTIPLE_AND_APPEAR = "SEARCH_PAR_MULTIPLE_AND_APPEAR"; - public static final String SEARCH_PAR_MULTIPLE_OR_SERVER = "SEARCH_PAR_MULTIPLE_OR_SERVER"; - public static final String SEARCH_PAR_MULTIPLE_OR_MULTIPLE = "SEARCH_PAR_MULTIPLE_OR_MULTIPLE"; - public static final String SEARCH_PAR_MULTIPLE_OR_ONE = "SEARCH_PAR_MULTIPLE_OR_ONE"; - public static final String SEARCH_PAR_COMP = "SEARCH_PAR_COMP"; - public static final String SEARCH_PAR_ALLOWED = "SEARCH_PAR_ALLOWED"; - public static final String SEARCH_PAR_MOD = "SEARCH_PAR_MOD"; - public static final String SEARCH_PAR_CHAIN = "SEARCH_PAR_CHAIN"; - public static final String SUB_TOPIC_RES_TRIG = "SUB_TOPIC_RES_TRIG"; - public static final String SUB_TOPIC_RES = "SUB_TOPIC_RES"; - public static final String SUB_TOPIC_INT = "SUB_TOPIC_INT"; - public static final String SUB_TOPIC_PREV = "SUB_TOPIC_PREV"; - public static final String SUB_TOPIC_CREATE = "SUB_TOPIC_CREATE"; - public static final String SUB_TOPIC_DELETE = "SUB_TOPIC_DELETE"; - public static final String SUB_TOPIC_REQ = "SUB_TOPIC_REQ"; - public static final String SUB_TOPIC_CRITERIA = "SUB_TOPIC_CRITERIA"; - public static final String SUB_TOPIC_FHIR_PATH = "SUB_TOPIC_FHIR_PATH"; - public static final String SUB_TOPIC_DESC = "SUB_TOPIC_DESC"; - public static final String SUB_TOPIC_EVENT = "SUB_TOPIC_EVENT"; - public static final String SUB_TOPIC_FILT_PAR = "SUB_TOPIC_FILT_PAR"; - public static final String SUB_TOPIC_FILT_DEF = "SUB_TOPIC_FILT_DEF"; - public static final String SUB_TOPIC_COMP = "SUB_TOPIC_COMP"; - public static final String SUB_TOPIC_MOD = "SUB_TOPIC_MOD"; - public static final String SUB_TOPIC_INCL = "SUB_TOPIC_INCL"; - public static final String SUB_TOPIC_REV_INCL = "SUB_TOPIC_REV_INCL"; - public static final String TERMINOLOGY_LVL = "TERMINOLOGY_LVL"; - public static final String TERMINOLOGY_SNOMED = "TERMINOLOGY_SNOMED"; - public static final String TEST_PLAN_CONT = "TEST_PLAN_CONT"; - public static final String TEST_PLAN_CATEGORY = "TEST_PLAN_CATEGORY"; - public static final String TEST_PLAN_SCOPE = "TEST_PLAN_SCOPE"; - public static final String TEST_PLAN_SCOPES = "TEST_PLAN_SCOPES"; - public static final String TEST_PLAN_DEP = "TEST_PLAN_DEP"; - public static final String TEST_PLAN_DEPEN = "TEST_PLAN_DEPEN"; - public static final String TEST_PLAN_DESC = "TEST_PLAN_DESC"; - public static final String TEST_PLAN_RUN = "TEST_PLAN_RUN"; - public static final String TEST_PLAN_TEST_RUN = "TEST_PLAN_TEST_RUN"; - public static final String TEST_PLAN_DATA = "TEST_PLAN_DATA"; - public static final String TEST_PLAN_TEST_DATA = "TEST_PLAN_TEST_DATA"; - public static final String TEST_PLAN_ASS = "TEST_PLAN_ASS"; - public static final String TEST_PLAN_ASSERTION = "TEST_PLAN_ASSERTION"; - public static final String TEST_PLAN_LANG = "TEST_PLAN_LANG"; - public static final String TEST_PLAN_SOURCE = "TEST_PLAN_SOURCE"; - public static final String TEST_PLAN_TYPE = "TEST_PLAN_TYPE"; - public static final String TEST_PLAN_CONTENT = "TEST_PLAN_CONTENT"; - public static final String TEST_PLAN_RESULT = "TEST_PLAN_RESULT"; - public static final String VALUE_SET_CONT = "VALUE_SET_CONT"; - public static final String VALUE_SET_INF = "VALUE_SET_INF"; - public static final String VALUE_SET_SEL = "VALUE_SET_SEL"; - public static final String VALUE_SET_TOO_COSTLY = "VALUE_SET_TOO_COSTLY"; - public static final String VALUE_SET_LEVEL = "VALUE_SET_LEVEL"; - public static final String VALUE_SET_CODE = "VALUE_SET_CODE"; - public static final String VALUE_SET_SYSTEM = "VALUE_SET_SYSTEM"; - public static final String VALUE_SET_DISPLAY = "VALUE_SET_DISPLAY"; - public static final String VALUE_SET_INACTIVE = "VALUE_SET_INACTIVE"; - public static final String VALUE_SET_DEF = "VALUE_SET_DEF"; - public static final String VALUE_SET_ADD_LANG = "VALUE_SET_ADD_LANG"; - public static final String VALUE_SET_DESIG = "VALUE_SET_DESIG"; public static final String VALUE_SET_ADD_DESIG = "VALUE_SET_ADD_DESIG"; - public static final String VALUE_SET_EXP = "VALUE_SET_EXP"; - public static final String VALUE_SET_EXP_FRAG = "VALUE_SET_EXP_FRAG"; - public static final String VALUE_SET_EXPANSION = "VALUE_SET_EXPANSION"; - public static final String VALUE_SET_EXPANSIONS = "VALUE_SET_EXPANSIONS"; - public static final String VALUE_SET_INT = "VALUE_SET_INT"; - public static final String VALUE_SET_US = "VALUE_SET_US"; + public static final String VALUE_SET_ADD_LANG = "VALUE_SET_ADD_LANG"; + public static final String VALUE_SET_ALL_CODE = "VALUE_SET_ALL_CODE"; + public static final String VALUE_SET_ALL_CODES_DEF = "VALUE_SET_ALL_CODES_DEF"; + public static final String VALUE_SET_AND = "VALUE_SET_AND"; + public static final String VALUE_SET_AT_LEAST = "VALUE_SET_AT_LEAST"; public static final String VALUE_SET_AUS = "VALUE_SET_AUS"; - public static final String VALUE_SET_SPAN = "VALUE_SET_SPAN"; + public static final String VALUE_SET_CODE = "VALUE_SET_CODE"; + public static final String VALUE_SET_CODES_FROM = "VALUE_SET_CODES_FROM"; + public static final String VALUE_SET_CODE_ITEM = "VALUE_SET_CODE_ITEM"; + public static final String VALUE_SET_CODE_SELEC = "VALUE_SET_CODE_SELEC"; + public static final String VALUE_SET_COMMA = "VALUE_SET_COMMA"; + public static final String VALUE_SET_CONT = "VALUE_SET_CONT"; + public static final String VALUE_SET_CONTAINS = "VALUE_SET_CONTAINS"; + public static final String VALUE_SET_CONT_STRUC = "VALUE_SET_CONT_STRUC"; public static final String VALUE_SET_DANISH = "VALUE_SET_DANISH"; + public static final String VALUE_SET_DEF = "VALUE_SET_DEF"; + public static final String VALUE_SET_DESCENDENTOF = "VALUE_SET_DESCENDENTOF"; + public static final String VALUE_SET_DESIG = "VALUE_SET_DESIG"; + public static final String VALUE_SET_DISPLAY = "VALUE_SET_DISPLAY"; + public static final String VALUE_SET_DISPLAY_ITEM = "VALUE_SET_DISPLAY_ITEM"; + public static final String VALUE_SET_DOESNT_EXIST = "VALUE_SET_DOESNT_EXIST"; public static final String VALUE_SET_DUTCH = "VALUE_SET_DUTCH"; - public static final String VALUE_SET_SWEDISH = "VALUE_SET_SWEDISH"; - public static final String VALUE_SET_UK = "VALUE_SET_UK"; - public static final String VALUE_SET_INACT = "VALUE_SET_INACT"; - public static final String VALUE_SET_RULES_INC = "VALUE_SET_RULES_INC"; - public static final String VALUE_SET_RULES_EXC = "VALUE_SET_RULES_EXC"; - public static final String VALUE_SET_INC = "VALUE_SET_INC"; + public static final String VALUE_SET_EQUAL = "VALUE_SET_EQUAL"; + public static final String VALUE_SET_ERROR = "VALUE_SET_ERROR"; public static final String VALUE_SET_EXC = "VALUE_SET_EXC"; public static final String VALUE_SET_EXCL = "VALUE_SET_EXCL"; - public static final String VALUE_SET_NOT_DEF = "VALUE_SET_NOT_DEF"; - public static final String VALUE_SET_ALL_CODE = "VALUE_SET_ALL_CODE"; - public static final String VALUE_SET_NOT_FOUND = "VALUE_SET_NOT_FOUND"; - public static final String VALUE_SET_CONT_STRUC = "VALUE_SET_CONT_STRUC"; - public static final String VALUE_SET_CODE_ITEM = "VALUE_SET_CODE_ITEM"; - public static final String VALUE_SET_DISPLAY_ITEM = "VALUE_SET_DISPLAY_ITEM"; - public static final String VALUE_SET_SPEC_NAME = "VALUE_SET_SPEC_NAME"; - public static final String VALUE_SET_SYNONYM = "VALUE_SET_SYNONYM"; - public static final String VALUE_SET_COMMA = "VALUE_SET_COMMA"; - public static final String VALUE_SET_WHERE_CODES = "VALUE_SET_WHERE_CODES"; + public static final String VALUE_SET_EXCLUDED_FROM = "VALUE_SET_EXCLUDED_FROM"; + public static final String VALUE_SET_EXISTS = "VALUE_SET_EXISTS"; + public static final String VALUE_SET_EXP = "VALUE_SET_EXP"; + public static final String VALUE_SET_EXPANSION = "VALUE_SET_EXPANSION"; + public static final String VALUE_SET_EXPANSIONS = "VALUE_SET_EXPANSIONS"; + public static final String VALUE_SET_EXP_FRAG = "VALUE_SET_EXP_FRAG"; + public static final String VALUE_SET_GENERALIZES = "VALUE_SET_GENERALIZES"; + public static final String VALUE_SET_HAS = "VALUE_SET_HAS"; public static final String VALUE_SET_IMPORT = "VALUE_SET_IMPORT"; - public static final String VALUE_SET_NOTE = "VALUE_SET_NOTE"; - public static final String VALUE_SET_ERROR = "VALUE_SET_ERROR"; - public static final String VALUE_SET_NULL = "VALUE_SET_NULL"; - public static final String VALUE_SET_EQUAL = "VALUE_SET_EQUAL"; + public static final String VALUE_SET_IN = "VALUE_SET_IN"; + public static final String VALUE_SET_INACT = "VALUE_SET_INACT"; + public static final String VALUE_SET_INACTIVE = "VALUE_SET_INACTIVE"; + public static final String VALUE_SET_INC = "VALUE_SET_INC"; + public static final String VALUE_SET_INCLUDED_INTO = "VALUE_SET_INCLUDED_INTO"; + public static final String VALUE_SET_INF = "VALUE_SET_INF"; + public static final String VALUE_SET_INT = "VALUE_SET_INT"; public static final String VALUE_SET_ISA = "VALUE_SET_ISA"; public static final String VALUE_SET_ISNOTA = "VALUE_SET_ISNOTA"; - public static final String VALUE_SET_REGEX = "VALUE_SET_REGEX"; - public static final String VALUE_SET_NULLS = "VALUE_SET_NULLS"; - public static final String VALUE_SET_IN = "VALUE_SET_IN"; - public static final String VALUE_SET_NOTIN = "VALUE_SET_NOTIN"; - public static final String VALUE_SET_DESCENDENTOF = "VALUE_SET_DESCENDENTOF"; - public static final String VALUE_SET_EXISTS = "VALUE_SET_EXISTS"; - public static final String VALUE_SET_GENERALIZES = "VALUE_SET_GENERALIZES"; - public static final String STRUC_DEF_FII = "STRUC_DEF_FII"; - public static final String STRUC_DEF_ERROR = "STRUC_DEF_ERROR"; - public static final String STRUC_DEF_REQ = "STRUC_DEF_REQ"; - public static final String STRUC_DEF_CONC_SET = "STRUC_DEF_CONC_SET"; - public static final String STRUC_DEF_EXT = "STRUC_DEF_EXT"; - public static final String STRUC_DEF_APPROP_CON = "STRUC_DEF_APPROP_CON"; - public static final String STRUC_DEF_MAX = "STRUC_DEF_MAX"; - public static final String STRUC_DEF_REQ_BIND = "STRUC_DEF_REQ_BIND"; - public static final String STRUC_DEF_MIN = "STRUC_DEF_MIN"; - public static final String STRUC_DEF_MIN_ALLOW = "STRUC_DEF_MIN_ALLOW"; - public static final String STRUC_DEF_CAND = "STRUC_DEF_CAND"; - public static final String STRUC_DEF_CAND_SUB = "STRUC_DEF_CAND_SUB"; - public static final String STRUC_DEF_CURR = "STRUC_DEF_CURR"; - public static final String STRUC_DEF_CURR_RULE = "STRUC_DEF_CURR_RULE"; - public static final String STRUC_DEF_PREF = "STRUC_DEF_PREF"; - public static final String STRUC_DEF_PREF_CONT = "STRUC_DEF_PREF_CONT"; - public static final String STRUC_DEF_UI = "STRUC_DEF_UI"; - public static final String STRUC_DEF_UI_CONT = "STRUC_DEF_UI_CONT"; - public static final String STRUC_DEF_START = "STRUC_DEF_START"; - public static final String STRUC_DEF_START_DEF = "STRUC_DEF_START_DEF"; - public static final String STRUC_DEF_COMP = "STRUC_DEF_COMP"; - public static final String STRUC_DEF_COMP_DOC = "STRUC_DEF_COMP_DOC"; - public static final String STRUC_DEF_EX = "STRUC_DEF_EX"; - public static final String STRUC_DEF_EX_DESC = "STRUC_DEF_EX_DESC"; - public static final String STRUC_DEF_EXAM = "STRUC_DEF_EXAM"; - public static final String STRUC_DEF_EXTENSIBLE = "STRUC_DEF_EXTENSIBLE"; - public static final String STRUC_DEF_PREFERRED = "STRUC_DEF_PREFERRED"; - public static final String STRUC_DEF_REQUIRED = "STRUC_DEF_REQUIRED"; - public static final String STRUC_DEF_ALL_ACTORS = "STRUC_DEF_ALL_ACTORS"; - public static final String STRUC_DEF_OBLIG = "STRUC_DEF_OBLIG"; - public static final String STRUC_DEF_OBLIG_ALL = "STRUC_DEF_OBLIG_ALL"; - public static final String STRUC_DEF_UNDEF_ACT = "STRUC_DEF_UNDEF_ACT"; - public static final String STRUC_DEF_ACT = "STRUC_DEF_ACT"; - public static final String STRUC_DEF_NAME = "STRUC_DEF_NAME"; - public static final String STRUC_DEF_LOGIC_NAME = "STRUC_DEF_LOGIC_NAME"; - public static final String STRUC_DEF_CONT_RULE = "STRUC_DEF_CONT_RULE"; - public static final String STRUC_DEF_ALL_TYPES = "STRUC_DEF_ALL_TYPES"; - public static final String STRUC_DEF_CONT_TYPE = "STRUC_DEF_CONT_TYPE"; - public static final String STRUC_DEF_SLICE = "STRUC_DEF_SLICE"; - public static final String STRUC_DEF_SLICE_PAR = "STRUC_DEF_SLICE_PAR"; - public static final String STRUC_DEF_SLICE_FOR = "STRUC_DEF_SLICE_FOR"; - public static final String STRUC_DEF_MOD = "STRUC_DEF_MOD"; - public static final String STRUC_DEF_OBLIG_SUPP = "STRUC_DEF_OBLIG_SUPP"; - public static final String STRUC_DEF_SUPP = "STRUC_DEF_SUPP"; - public static final String STRUC_DEF_ELE_OBLIG = "STRUC_DEF_ELE_OBLIG"; - public static final String STRUC_DEF_SUMM = "STRUC_DEF_SUMM"; - public static final String STRUC_DEF_ELE = "STRUC_DEF_ELE"; - public static final String STRUC_DEF_EX_URL = "STRUC_DEF_EX_URL"; - public static final String STRUC_DEF_COMPLEX = "STRUC_DEF_COMPLEX"; - public static final String STRUC_DEF_JSON_IS = "STRUC_DEF_JSON_IS"; - public static final String STRUC_DEF_JSON_MAY = "STRUC_DEF_JSON_MAY"; - public static final String STRUC_DEF_CHOICE = "STRUC_DEF_CHOICE"; - public static final String STRUC_DEF_XML_NAME = "STRUC_DEF_XML_NAME"; - public static final String STRUC_DEF_ELEMENTS = "STRUC_DEF_ELEMENTS"; - public static final String STRUC_DEF_URL = "STRUC_DEF_URL"; - public static final String STRUC_DEF_PROFILED = "STRUC_DEF_PROFILED"; - public static final String STRUC_DEF_BINDING = "STRUC_DEF_BINDING"; - public static final String STRUC_DEF_TYPE_SET = "STRUC_DEF_TYPE_SET"; - public static final String STRUC_DEF_BINDING_STYLE = "STRUC_DEF_BINDING_STYLE"; - public static final String STRUC_DEF_ELE_READ = "STRUC_DEF_ELE_READ"; - public static final String STRUC_DEF_PREFIXED = "STRUC_DEF_PREFIXED"; - public static final String STRUC_DEF_EXT_JSON = "STRUC_DEF_EXT_JSON"; - public static final String STRUC_DEF_DATE = "STRUC_DEF_DATE"; - public static final String STRUC_DEF_ID_IS = "STRUC_DEF_ID_IS"; - public static final String STRUC_DEF_ID_MAY = "STRUC_DEF_ID_MAY"; - public static final String STRUC_DEF_ID_NOT_ALLOW = "STRUC_DEF_ID_NOT_ALLOW"; - public static final String STRUC_DEF_CHOICE_GRP = "STRUC_DEF_CHOICE_GRP"; - public static final String STRUC_DEF_REPEAT = "STRUC_DEF_REPEAT"; - public static final String STRUC_DEF_XML = "STRUC_DEF_XML"; - public static final String STRUC_DEF_XML_ELE = "STRUC_DEF_XML_ELE"; - public static final String STRUC_DEF_JSON_NAME = "STRUC_DEF_JSON_NAME"; - public static final String STRUC_DEF_JSON_TYPE = "STRUC_DEF_JSON_TYPE"; - public static final String STRUC_DEF_JSON_INFERRED = "STRUC_DEF_JSON_INFERRED"; - public static final String STRUC_DEF_JSON_ARRAY = "STRUC_DEF_JSON_ARRAY"; - public static final String STRUC_DEF_JSON_NULL = "STRUC_DEF_JSON_NULL"; - public static final String STRUC_DEF_JSON_IF = "STRUC_DEF_JSON_IF"; - public static final String STRUC_DEF_THEN_TYPE = "STRUC_DEF_THEN_TYPE"; - public static final String STRUC_DEF_OBLIG_ADD = "STRUC_DEF_OBLIG_ADD"; - public static final String STRUC_DEF_NOT_MARK = "STRUC_DEF_NOT_MARK"; - public static final String STRUC_DEF_REF = "STRUC_DEF_REF"; - public static final String STRUC_DEF_TEMPLATEID = "STRUC_DEF_TEMPLATEID"; - public static final String STRUC_DEF_VALID_UNKNOWN = "STRUC_DEF_VALID_UNKNOWN"; - public static final String STRUC_DEF_LOGIC = "STRUC_DEF_LOGIC"; - public static final String STRUC_DEF_ROOT = "STRUC_DEF_ROOT"; - public static final String STRUC_DEF_REPEAT_ELE = "STRUC_DEF_REPEAT_ELE"; - public static final String STRUC_DEF_FIXED = "STRUC_DEF_FIXED"; - public static final String STRUC_DEF_AS_SHOWN = "STRUC_DEF_AS_SHOWN"; - public static final String STRUC_DEF_REQ_PATT = "STRUC_DEF_REQ_PATT"; - public static final String STRUC_DEF_LEAST_FOLLOW = "STRUC_DEF_LEAST_FOLLOW"; - public static final String STRUC_DEF_EXAMPLE = "STRUC_DEF_EXAMPLE"; - public static final String STRUC_DEF_UNKNOWN_REF = "STRUC_DEF_UNKNOWN_REF"; - public static final String STRUC_DEF_SEE = "STRUC_DEF_SEE"; - public static final String STRUC_DEF_TYPE_SUPP = "STRUC_DEF_TYPE_SUPP"; - public static final String STRUC_DEF_PROF_SUPP = "STRUC_DEF_PROF_SUPP"; - public static final String STRUC_DEF_TODO = "STRUC_DEF_TODO"; - public static final String STRUC_DEF_FIXED_VALUE = "STRUC_DEF_FIXED_VALUE"; - public static final String STRUC_DEF_COMPLEXBRACK = "STRUC_DEF_COMPLEXBRACK"; - public static final String STRUC_DEF_URLS = "STRUC_DEF_URLS"; - public static final String STRUC_DEF_SLICES = "STRUC_DEF_SLICES"; - public static final String STRUC_DEF_BINDINGS = "STRUC_DEF_BINDINGS"; - public static final String STRUC_DEF_REQUIRED_PATT = "STRUC_DEF_REQUIRED_PATT"; - public static final String STRUC_DEF_EXCOMMA = "STRUC_DEF_EXCOMMA"; - public static final String STRUC_DEF_MAX_LENGTH = "STRUC_DEF_MAX_LENGTH"; - public static final String STRUC_DEF_DEF = "STRUC_DEF_DEF"; - public static final String STRUC_DEF_COMMENT = "STRUC_DEF_COMMENT"; - public static final String STRUC_DEF_TARG_SUPP = "STRUC_DEF_TARG_SUPP"; - public static final String STRUC_DEF_ORDERED = "STRUC_DEF_ORDERED"; - public static final String STRUC_DEF_UNORDERED = "STRUC_DEF_UNORDERED"; - public static final String STRUC_DEF_UNSPECIFIED = "STRUC_DEF_UNSPECIFIED"; - public static final String STRUC_DEF_CLOSED = "STRUC_DEF_CLOSED"; - public static final String STRUC_DEF_OPEN = "STRUC_DEF_OPEN"; - public static final String STRUC_DEF_OPEN_END = "STRUC_DEF_OPEN_END"; - public static final String STRUC_DEF_FHIR = "STRUC_DEF_FHIR"; - public static final String STRUC_DEF_CAP = "STRUC_DEF_CAP"; - public static final String STRUC_DEF_PROPERTY = "STRUC_DEF_PROPERTY"; - public static final String STRUC_DEF_CARD = "STRUC_DEF_CARD"; - public static final String STRUC_DEF_CONTENT = "STRUC_DEF_CONTENT"; - public static final String STRUC_DEF_DESC = "STRUC_DEF_DESC"; - public static final String STRUC_DEF_PROF_RES = "STRUC_DEF_PROF_RES"; - public static final String STRUC_DEF_MAX_MIN = "STRUC_DEF_MAX_MIN"; - public static final String STRUC_DEF_WHAT = "STRUC_DEF_WHAT"; - public static final String STRUC_DEF_DESC_PROF = "STRUC_DEF_DESC_PROF"; - public static final String STRUC_DEF_IF = "STRUC_DEF_IF"; - public static final String STRUC_DEF_FHIR_EXCEP = "STRUC_DEF_FHIR_EXCEP"; - public static final String STRUC_DEF_SLICE_NAME = "STRUC_DEF_SLICE_NAME"; - public static final String STRUC_DEF_CONSTRAINING = "STRUC_DEF_CONSTRAINING"; - public static final String STRUC_DEF_DEFINITION = "STRUC_DEF_DEFINITION"; - public static final String STRUC_DEF_SHORT = "STRUC_DEF_SHORT"; - public static final String STRUC_DEF_COMMENTS = "STRUC_DEF_COMMENTS"; - public static final String STRUC_DEF_NOTE_X = "STRUC_DEF_NOTE_X"; - public static final String STRUC_DEF_NOTE_C = "STRUC_DEF_NOTE_C"; - public static final String STRUC_DEF_CONTROL = "STRUC_DEF_CONTROL"; - public static final String STRUC_DEF_TYPE = "STRUC_DEF_TYPE"; - public static final String STRUC_DEF_DEFAULT_TYPE = "STRUC_DEF_DEFAULT_TYPE"; - public static final String STRUC_DEF_MODIFIER = "STRUC_DEF_MODIFIER"; - public static final String STRUC_DEF_PRIMITIVE = "STRUC_DEF_PRIMITIVE"; - public static final String STRUC_DEF_ALLOWED = "STRUC_DEF_ALLOWED"; - public static final String STRUC_DEF_MUST_SUPPORT = "STRUC_DEF_MUST_SUPPORT"; - public static final String STRUC_DEF_LOGICAL = "STRUC_DEF_LOGICAL"; - public static final String STRUC_DEF_LOGICAL_CONT = "STRUC_DEF_LOGICAL_CONT"; - public static final String STRUC_DEF_VALID = "STRUC_DEF_VALID"; - public static final String STRUC_DEF_UNKNOWN_APPROACH = "STRUC_DEF_UNKNOWN_APPROACH"; - public static final String STRUC_DEF_IMPOSE_PROFILE = "STRUC_DEF_IMPOSE_PROFILE"; - public static final String STRUC_DEF_COMP_PROF = "STRUC_DEF_COMP_PROF"; - public static final String STRUC_DEF_PROF_COMP = "STRUC_DEF_PROF_COMP"; - public static final String STRUC_DEF_OBLIGATIONS = "STRUC_DEF_OBLIGATIONS"; - public static final String STRUC_DEF_EXT_STYLE = "STRUC_DEF_EXT_STYLE"; - public static final String STRUC_DEF_DATE_FORM = "STRUC_DEF_DATE_FORM"; - public static final String STRUC_DEF_BIND_STYLE = "STRUC_DEF_BIND_STYLE"; - public static final String STRUC_DEF_ID_EXPECT = "STRUC_DEF_ID_EXPECT"; - public static final String STRUC_DEF_ID_REQ = "STRUC_DEF_ID_REQ"; - public static final String STRUC_DEF_REP_CHOICE = "STRUC_DEF_REP_CHOICE"; - public static final String STRUC_DEF_JSON_FORM = "STRUC_DEF_JSON_FORM"; - public static final String STRUC_DEF_XML_FORM = "STRUC_DEF_XML_FORM"; - public static final String STRUC_DEF_STRING_FORM = "STRUC_DEF_STRING_FORM"; - public static final String STRUC_DEF_STAND_STAT = "STRUC_DEF_STAND_STAT"; - public static final String STRUC_DEF_REQUIREMENTS = "STRUC_DEF_REQUIREMENTS"; - public static final String STRUC_DEF_LABEL = "STRUC_DEF_LABEL"; - public static final String STRUC_DEF_ALT_NAME = "STRUC_DEF_ALT_NAME"; - public static final String STRUC_DEF_DEF_CODES = "STRUC_DEF_DEF_CODES"; - public static final String STRUC_DEF_MIN_VALUE = "STRUC_DEF_MIN_VALUE"; - public static final String STRUC_DEF_MAX_VALUE = "STRUC_DEF_MAX_VALUE"; - public static final String STRUC_DEF_VALUE_REQ = "STRUC_DEF_VALUE_REQ"; - public static final String STRUC_DEF_VALUE_ALT = "STRUC_DEF_VALUE_ALT"; - public static final String STRUC_DEF_DEFAULT_VALUE = "STRUC_DEF_DEFAULT_VALUE"; - public static final String STRUC_DEF_MEAN_MISS = "STRUC_DEF_MEAN_MISS"; - public static final String STRUC_DEF_PATT_VALUE = "STRUC_DEF_PATT_VALUE"; - public static final String STRUC_DEF_INVAR = "STRUC_DEF_INVAR"; - public static final String STRUC_DEF_LOINC = "STRUC_DEF_LOINC"; - public static final String STRUC_DEF_SNOMED = "STRUC_DEF_SNOMED"; - public static final String STRUC_DEF_BECAUSE = "STRUC_DEF_BECAUSE"; - public static final String STRUC_DEF_MUST_SUPPORT_TYPES = "STRUC_DEF_MUST_SUPPORT_TYPES"; - public static final String STRUC_DEF_NO_MUST_SUPPORT = "STRUC_DEF_NO_MUST_SUPPORT"; - public static final String STRUC_DEF_NOT_MARKED = "STRUC_DEF_NOT_MARKED"; - public static final String STRUC_DEF_CAN_TARGET = "STRUC_DEF_CAN_TARGET"; - public static final String STRUC_DEF_CANNOT_TARGET = "STRUC_DEF_CANNOT_TARGET"; - public static final String STRUC_DEF_JSON_ELE = "STRUC_DEF_JSON_ELE"; - public static final String STRUC_DEF_TYPE_BOUND = "STRUC_DEF_TYPE_BOUND"; - public static final String STRUC_DEF_SUMMARY = "STRUC_DEF_SUMMARY"; - public static final String STRUC_DEF_CDA = "STRUC_DEF_CDA"; - public static final String STRUC_DEF_XSI = "STRUC_DEF_XSI"; - public static final String STRUC_DEF_XHTML = "STRUC_DEF_XHTML"; - public static final String STRUC_DEF_XML_ATTRIBUTE = "STRUC_DEF_XML_ATTRIBUTE"; - public static final String STRUC_DEF_UNADORNED = "STRUC_DEF_UNADORNED"; - public static final String STRUC_DEF_NAMESPACE = "STRUC_DEF_NAMESPACE"; - public static final String STRUC_DEF_XML_ACTUAL = "STRUC_DEF_XML_ACTUAL"; - public static final String STRUC_DEF_JSON_PRESENT = "STRUC_DEF_JSON_PRESENT"; - public static final String STRUC_DEF_JSON_NOT_PRESENT = "STRUC_DEF_JSON_NOT_PRESENT"; - public static final String STRUC_DEF_JSON_MAY_PRESENT = "STRUC_DEF_JSON_MAY_PRESENT"; - public static final String STRUC_DEF_JSON_PROPERTY_NAME = "STRUC_DEF_JSON_PROPERTY_NAME"; - public static final String STRUC_DEF_JSON_CAN_NAME = "STRUC_DEF_JSON_CAN_NAME"; - public static final String STRUC_DEF_JSON_SINGLE = "STRUC_DEF_JSON_SINGLE"; - public static final String STRUC_DEF_NULL_JSON = "STRUC_DEF_NULL_JSON"; - public static final String STRUC_DEF_INFERRED_JSON = "STRUC_DEF_INFERRED_JSON"; - public static final String STRUC_DEF_OBLIG_FROM = "STRUC_DEF_OBLIG_FROM"; - public static final String STRUC_DEF_JSON_EXT = "STRUC_DEF_JSON_EXT"; - public static final String STRUC_DEF_JSON_CHILD = "STRUC_DEF_JSON_CHILD"; - public static final String STRUC_DEF_VALUE = "STRUC_DEF_VALUE"; - public static final String STRUC_DEF_ONE_OF = "STRUC_DEF_ONE_OF"; - public static final String STRUC_DEF_AND = "STRUC_DEF_AND"; - public static final String STRUC_DEF_SET_SLICES = "STRUC_DEF_SET_SLICES"; - public static final String STRUC_DEF_SET_ARE = "STRUC_DEF_SET_ARE"; - public static final String STRUC_DEF_DESCRIM = "STRUC_DEF_DESCRIM"; - public static final String STRUC_DEF_NO_DESCRIM = "STRUC_DEF_NO_DESCRIM"; - public static final String STRUC_DEF_BUSINESS_ID = "STRUC_DEF_BUSINESS_ID"; - public static final String STRUC_DEF_DISCUSSION = "STRUC_DEF_DISCUSSION"; - public static final String STRUC_DEF_BUSINESS_VERID = "STRUC_DEF_BUSINESS_VERID"; - public static final String STRUC_DEF_INVARIANT = "STRUC_DEF_INVARIANT"; - public static final String STRUC_DEF_CHOICE_OF = "STRUC_DEF_CHOICE_OF"; - public static final String STRUC_DEF_COMP_EX = "STRUC_DEF_COMP_EX"; - public static final String STRUC_DEF_EX_TYPE = "STRUC_DEF_EX_TYPE"; - public static final String STRUC_DEF_COPY_URL = "STRUC_DEF_COPY_URL"; - public static final String STRUC_DEF_FOR_CODE = "STRUC_DEF_FOR_CODE"; - public static final String STRUC_DEF_SHOULD_CODE = "STRUC_DEF_SHOULD_CODE"; - public static final String STRUC_DEF_EX_CODE = "STRUC_DEF_EX_CODE"; - public static final String STRUC_DEF_SUIT_SHALL_CODE = "STRUC_DEF_SUIT_SHALL_CODE"; - public static final String STRUC_DEF_SHALL_CODE = "STRUC_DEF_SHALL_CODE"; - public static final String STRUC_DEF_ERR_DESC = "STRUC_DEF_ERR_DESC"; - public static final String STRUC_DEF_LOINC_CODE = "STRUC_DEF_LOINC_CODE"; - public static final String STRUC_DEF_SNOMED_CODE = "STRUC_DEF_SNOMED_CODE"; - public static final String STRUC_DEF_UCUM = "STRUC_DEF_UCUM"; - public static final String STRUC_DEF_PREFIX_VALID = "STRUC_DEF_PREFIX_VALID"; - public static final String STRUC_DEF_PROF_REQ = "STRUC_DEF_PROF_REQ"; - public static final String ADD_BIND_ANY_REPS = "ADD_BIND_ANY_REPS"; - public static final String ADD_BIND_ALL_REP = "ADD_BIND_ALL_REP"; - public static final String ADD_BIND_MAX = "ADD_BIND_MAX"; - public static final String ADD_BIND_MIN = "ADD_BIND_MIN"; - public static final String ADD_BIND_REQ_BIND = "ADD_BIND_REQ_BIND"; - public static final String ADD_BIND_EX_BIND = "ADD_BIND_EX_BIND"; - public static final String ADD_BIND_CURR_BIND = "ADD_BIND_CURR_BIND"; - public static final String ADD_BIND_PREF_BIND = "ADD_BIND_PREF_BIND"; - public static final String ADD_BIND_EXT_PREF = "ADD_BIND_EXT_PREF"; - public static final String ADD_BIND_MIN_ALLOW = "ADD_BIND_MIN_ALLOW"; - public static final String ADD_BIND_VALID_REQ = "ADD_BIND_VALID_REQ"; - public static final String ADD_BIND_VALID_EXT = "ADD_BIND_VALID_EXT"; - public static final String ADD_BIND_NEW_REC = "ADD_BIND_NEW_REC"; - public static final String ADD_BIND_RECOM_VALUE_SET = "ADD_BIND_RECOM_VALUE_SET"; - public static final String ADD_BIND_PREFERRED = "ADD_BIND_PREFERRED"; - public static final String ADD_BIND_REQUIRED = "ADD_BIND_REQUIRED"; - public static final String ADD_BIND_GIVEN_CONT = "ADD_BIND_GIVEN_CONT"; - public static final String ADD_BIND_UI_BIND = "ADD_BIND_UI_BIND"; - public static final String ADD_BIND_UI = "ADD_BIND_UI"; - public static final String ADD_BIND_DESIG_SYS = "ADD_BIND_DESIG_SYS"; - public static final String ADD_BIND_STARTER = "ADD_BIND_STARTER"; - public static final String ADD_BIND_UNKNOWN_PUR = "ADD_BIND_UNKNOWN_PUR"; - public static final String ADD_BIND_COMPONENT = "ADD_BIND_COMPONENT"; - public static final String ADD_BIND_VALUE_COMP = "ADD_BIND_VALUE_COMP"; - public static final String BIND_REND_NO_CONTENT = "BIND_REND_NO_CONTENT"; - public static final String BIND_REND_IMAGE_TYPE = "BIND_REND_IMAGE_TYPE"; - public static final String BIND_REND_NOT_REND = "BIND_REND_NOT_REND"; - public static final String BIND_REND_CONT_TYPE = "BIND_REND_CONT_TYPE"; - public static final String BUND_REND_INVALID_DOC = "BUND_REND_INVALID_DOC"; - public static final String BUND_REND_RES = "BUND_REND_RES"; - public static final String BUND_REND_GEN_NARR = "BUND_REND_GEN_NARR"; - public static final String CAPABILITY_CORS_YES = "CAPABILITY_CORS_YES"; - public static final String CAPABILITY_CORS_NO = "CAPABILITY_CORS_NO"; - public static final String CAPABILITY_INTER_SUPP = "CAPABILITY_INTER_SUPP"; - public static final String CAPABILITY_READ_INT = "CAPABILITY_READ_INT"; - public static final String CAPABILITY_VREAD_INT = "CAPABILITY_VREAD_INT"; - public static final String CAPABILITY_SEARCH_INT = "CAPABILITY_SEARCH_INT"; - public static final String CAPABILITY_UPDATE_INT = "CAPABILITY_UPDATE_INT"; - public static final String CAPABILITY_PATCH_INT = "CAPABILITY_PATCH_INT"; - public static final String CAPABILITY_CREATE_INT = "CAPABILITY_CREATE_INT"; - public static final String CAPABILITY_DELETE_INT = "CAPABILITY_DELETE_INT"; - public static final String CAPABILITY_HISTORY_INT = "CAPABILITY_HISTORY_INT"; - public static final String CAPABILITY_HISTORY_TYPE = "CAPABILITY_HISTORY_TYPE"; - public static final String CAPABILITY_SEARCHES = "CAPABILITY_SEARCHES"; - public static final String CAPABILITY_REQ_RECOM = "CAPABILITY_REQ_RECOM"; - public static final String CAPABILITY_BASE_SYS = "CAPABILITY_BASE_SYS"; - public static final String CAPABILITY_PROF_CONF = "CAPABILITY_PROF_CONF"; - public static final String CAPABILITY_FHIR = "CAPABILITY_FHIR"; - public static final String CAPABILITY_REF_PROF = "CAPABILITY_REF_PROF"; - public static final String CAPABILITY_SUPP_PROFS = "CAPABILITY_SUPP_PROFS"; - public static final String CAPABILITY_EXT_OP = "CAPABILITY_EXT_OP"; - public static final String CAPABILITY_INT_SUMM = "CAPABILITY_INT_SUMM"; - public static final String CAPABILITY_SEARCH_PARS = "CAPABILITY_SEARCH_PARS"; - public static final String CAPABILITY_COMB_SEARCH_PAR = "CAPABILITY_COMB_SEARCH_PAR"; - public static final String CODE_SYS_IN_A_HIERARCHY = "CODE_SYS_IN_A_HIERARCHY"; - public static final String CODE_SYS_REPLACED_BY = "CODE_SYS_REPLACED_BY"; - public static final String DATA_REND_ONGOING = "DATA_REND_ONGOING"; - public static final String EXAMPLE_SCEN_UNABLE_TO_FIND = "EXAMPLE_SCEN_UNABLE_TO_FIND"; - public static final String EXAMPLE_SCEN_STEP_SCEN = "EXAMPLE_SCEN_STEP_SCEN"; - public static final String DATA_REND_DETAILS_STATED = "DATA_REND_DETAILS_STATED"; - public static final String DATA_REND_VERSION = "DATA_REND_VERSION"; - public static final String DATA_REND_BASE64 = "DATA_REND_BASE64"; - public static final String DATA_REND_CODES = "DATA_REND_CODES"; - public static final String DATA_REND_GLN = "DATA_REND_GLN"; - public static final String DATA_REND_DETAILS = "DATA_REND_DETAILS"; - public static final String DATA_REND_PER = "DATA_REND_PER"; - public static final String DATA_REND_EXCEPTION = "DATA_REND_EXCEPTION"; - public static final String DIAG_REP_REND_PER = "DIAG_REP_REND_PER"; - public static final String DIAG_REP_REND_IDENTIFIER = "DIAG_REP_REND_IDENTIFIER"; - public static final String DIAG_REP_REND_REQUEST = "DIAG_REP_REND_REQUEST"; - public static final String PROF_DRIV_GEN_NARR = "PROF_DRIV_GEN_NARR"; - public static final String PROF_DRIV_ERR_GEN_NARR = "PROF_DRIV_ERR_GEN_NARR"; - public static final String QUEST_UNKNOWN_MODE = "QUEST_UNKNOWN_MODE"; - public static final String QUEST_ANSWER = "QUEST_ANSWER"; - public static final String QUEST_RESP_ROOT = "QUEST_RESP_ROOT"; - public static final String QUEST_RESP = "QUEST_RESP"; - public static final String QUEST_QUESTION = "QUEST_QUESTION"; - public static final String QUEST_NONE_SPEC = "QUEST_NONE_SPEC"; - public static final String QUEST_GROUP = "QUEST_GROUP"; - public static final String QUEST_ITEM = "QUEST_ITEM"; - public static final String QUEST_TRY_QUEST = "QUEST_TRY_QUEST"; - public static final String QUEST_DISPLAY_CAT = "QUEST_DISPLAY_CAT"; - public static final String QUEST_NOT_DONE = "QUEST_NOT_DONE"; - public static final String RES_REND_VER = "RES_REND_VER"; - public static final String RES_REND_VERSION = "RES_REND_VERSION"; - public static final String RES_REND_UPDATED = "RES_REND_UPDATED"; - public static final String RES_REND_LANGUAGE = "RES_REND_LANGUAGE"; - public static final String RES_REND_SPEC_RULES = "RES_REND_SPEC_RULES"; - public static final String RES_REND_INFO_SOURCE = "RES_REND_INFO_SOURCE"; - public static final String RES_REND_PROFILE = "RES_REND_PROFILE"; - public static final String RES_REND_SECURITY_LABEL = "RES_REND_SECURITY_LABEL"; - public static final String SEARCH_PAR_REND_RES = "SEARCH_PAR_REND_RES"; - public static final String SEARCH_PAR_REND_TARGET = "SEARCH_PAR_REND_TARGET"; - public static final String STRUC_DEF_REND_UNABLE_RES = "STRUC_DEF_REND_UNABLE_RES"; - public static final String STRUC_DEF_CANT_FIND = "STRUC_DEF_CANT_FIND"; - public static final String STRUC_DEF_ALL_SLICES = "STRUC_DEF_ALL_SLICES"; - public static final String STRUC_DEF_ELE_AFFECTED = "STRUC_DEF_ELE_AFFECTED"; - public static final String STRUC_DEF_STAND_STATUS = "STRUC_DEF_STAND_STATUS"; - public static final String STRUC_DEF_BLACK = "STRUC_DEF_BLACK"; - public static final String STRUC_DEF_ABSTRACT = "STRUC_DEF_ABSTRACT"; - public static final String STRUC_DEF_CHILD = "STRUC_DEF_CHILD"; - public static final String STRUC_DEF_SINGLE_JSON_OBJECTS = "STRUC_DEF_SINGLE_JSON_OBJECTS"; - public static final String STRUC_DEF_TYPE_SPEC = "STRUC_DEF_TYPE_SPEC"; - public static final String STRUC_DEF_CHOICE_DATA_TYPE = "STRUC_DEF_CHOICE_DATA_TYPE"; - public static final String STRUC_DEF_FURTHER_INFO = "STRUC_DEF_FURTHER_INFO"; - public static final String STRUC_DEF_PRIM_TYPE_VALUE = "STRUC_DEF_PRIM_TYPE_VALUE"; - public static final String STRUC_DEF_PRIM_TYPE_PRESENT = "STRUC_DEF_PRIM_TYPE_PRESENT"; - public static final String STRUC_DEF_PRIM_ELE = "STRUC_DEF_PRIM_ELE"; - public static final String VALUE_SET_CODE_SELEC = "VALUE_SET_CODE_SELEC"; - public static final String VALUE_SET_HAS = "VALUE_SET_HAS"; - public static final String VALUE_SET_CONTAINS = "VALUE_SET_CONTAINS"; - public static final String VALUE_SET_AT_LEAST = "VALUE_SET_AT_LEAST"; - public static final String VALUE_SET_NUMBER_CONCEPTS = "VALUE_SET_NUMBER_CONCEPTS"; - public static final String VALUE_SET_VERSION = "VALUE_SET_VERSION"; - public static final String VALUE_SET_NO_VERSION = "VALUE_SET_NO_VERSION"; - public static final String VALUE_SET_NO_VER = "VALUE_SET_NO_VER"; - public static final String VALUE_SET_THESE_CODES_DEF = "VALUE_SET_THESE_CODES_DEF"; - public static final String VALUE_SET_ALL_CODES_DEF = "VALUE_SET_ALL_CODES_DEF"; - public static final String VALUE_SET_CODES_FROM = "VALUE_SET_CODES_FROM"; - public static final String VALUE_SET_WHERE = "VALUE_SET_WHERE"; - public static final String VALUE_SET_AND = "VALUE_SET_AND"; - public static final String VALUE_SET_DOESNT_EXIST = "VALUE_SET_DOESNT_EXIST"; - public static final String VALUE_SET_SNOMED_ADD = "VALUE_SET_SNOMED_ADD"; - public static final String VALUE_SET_SNOMED = "VALUE_SET_SNOMED"; + public static final String VALUE_SET_LEVEL = "VALUE_SET_LEVEL"; public static final String VALUE_SET_LOINCV = "VALUE_SET_LOINCV"; - public static final String CANON_REND_URL = "CANON_REND_URL"; - public static final String CANON_REND_VER = "CANON_REND_VER"; - public static final String CANON_REND_NAME = "CANON_REND_NAME"; - public static final String CANON_REND_TITLE = "CANON_REND_TITLE"; - public static final String CANON_REND_STATUS = "CANON_REND_STATUS"; - public static final String CANON_REND_DEFINITION = "CANON_REND_DEFINITION"; - public static final String CANON_REND_PUBLISHER = "CANON_REND_PUBLISHER"; - public static final String CANON_REND_COMMITTEE = "CANON_REND_COMMITTEE"; - public static final String CANON_REND_COPYRIGHT = "CANON_REND_COPYRIGHT"; - public static final String CANON_REND_MATURITY = "CANON_REND_MATURITY"; - public static final String CANON_REND_SOURCE_RES = "CANON_REND_SOURCE_RES"; - public static final String CANON_REND_XML = "CANON_REND_XML"; - public static final String CANON_REND_JSON = "CANON_REND_JSON"; - public static final String CANON_REND_TURTLE = "CANON_REND_TURTLE"; - public static final String CODE_SYS_CONTENT = "CODE_SYS_CONTENT"; - public static final String CODE_SYS_OID = "CODE_SYS_OID"; - public static final String CODE_SYS_VALUE_SET = "CODE_SYS_VALUE_SET"; - public static final String CODE_SYS_COMPLETE = "CODE_SYS_COMPLETE"; - public static final String CODE_SYS_NOTPRESENT = "CODE_SYS_NOTPRESENT"; - public static final String CODE_SYS_EXAMPLE = "CODE_SYS_EXAMPLE"; - public static final String CODE_SYS_FRAGMENT = "CODE_SYS_FRAGMENT"; - public static final String CODE_SYS_SUPPLEMENT = "CODE_SYS_SUPPLEMENT"; - public static final String CODE_SYS_CODE_NOT_HERE = "CODE_SYS_CODE_NOT_HERE"; - public static final String CODE_SYS_FOR_OID = "CODE_SYS_FOR_OID"; - public static final String CODE_SYS_THE_VALUE_SET = "CODE_SYS_THE_VALUE_SET"; - public static final String STRUC_DEF_NO_SUMMARY = "STRUC_DEF_NO_SUMMARY"; - public static final String STRUC_DEF_ELEMENT = "STRUC_DEF_ELEMENT"; - public static final String STRUC_DEF_STRUCTURES = "STRUC_DEF_STRUCTURES"; - public static final String STRUC_DEF_EXTENSIONS = "STRUC_DEF_EXTENSIONS"; - public static final String STRUC_DEF_SLIC = "STRUC_DEF_SLIC"; - public static final String STRUC_DEF_THIS_REFERS = "STRUC_DEF_THIS_REFERS"; - public static final String STRUC_DEF_REFERS_EXT = "STRUC_DEF_REFERS_EXT"; - public static final String STRUC_DEF_MATURITY = "STRUC_DEF_MATURITY"; - public static final String STRUC_DEF_MODIF = "STRUC_DEF_MODIF"; - public static final String STRUC_DEF_SNOMED_CT = "STRUC_DEF_SNOMED_CT"; - public static final String STRUC_DEF_TERM_BIND = "STRUC_DEF_TERM_BIND"; - public static final String STRUC_DEF_PATH = "STRUC_DEF_PATH"; - public static final String STRUC_DEF_TERM_BINDS = "STRUC_DEF_TERM_BINDS"; - public static final String STRUC_DEF_URI = "STRUC_DEF_URI"; - public static final String STRUC_DEF_MISSING_LINK = "STRUC_DEF_MISSING_LINK"; - public static final String STRUC_DEF_CONSTRAINTS = "STRUC_DEF_CONSTRAINTS"; - public static final String STRUC_DEF_GRADE = "STRUC_DEF_GRADE"; - public static final String STRUC_DEF_NO_MAPPINGS = "STRUC_DEF_NO_MAPPINGS"; - public static final String STRUC_DEF_ALL_MAP_KEY = "STRUC_DEF_ALL_MAP_KEY"; - public static final String STRUC_DEF_PROFILE_BUILDS = "STRUC_DEF_PROFILE_BUILDS"; - public static final String STRUC_DEF_DERIVED_PROFILE = "STRUC_DEF_DERIVED_PROFILE"; - public static final String STRUC_DEF_REFER_PROFILE = "STRUC_DEF_REFER_PROFILE"; - public static final String STRUC_DEF_MOD_ELEMENT = "STRUC_DEF_MOD_ELEMENT"; - public static final String STRUC_DEF_ELE_MUST_SUPP = "STRUC_DEF_ELE_MUST_SUPP"; - public static final String STRUC_DEF_ELE_INCLUDED = "STRUC_DEF_ELE_INCLUDED"; - public static final String STRUC_DEF_AFFECT_CONSTRAINTS = "STRUC_DEF_AFFECT_CONSTRAINTS"; - public static final String STRUC_DEF_CONFORMANCE = "STRUC_DEF_CONFORMANCE"; - public static final String STRUC_DEF_VALUESET_CODE = "STRUC_DEF_VALUESET_CODE"; - public static final String STRUC_DEF_VALUESET = "STRUC_DEF_VALUESET"; - public static final String STRUC_DEF_ID = "STRUC_DEF_ID"; - public static final String STRUC_DEF_PATHS = "STRUC_DEF_PATHS"; - public static final String STRUC_DEF_DETAILS = "STRUC_DEF_DETAILS"; + public static final String VALUE_SET_NOTE = "VALUE_SET_NOTE"; + public static final String VALUE_SET_NOTIN = "VALUE_SET_NOTIN"; + public static final String VALUE_SET_NOT_DEF = "VALUE_SET_NOT_DEF"; + public static final String VALUE_SET_NOT_FOUND = "VALUE_SET_NOT_FOUND"; + public static final String VALUE_SET_NO_VER = "VALUE_SET_NO_VER"; + public static final String VALUE_SET_NO_VERSION = "VALUE_SET_NO_VERSION"; + public static final String VALUE_SET_NULL = "VALUE_SET_NULL"; + public static final String VALUE_SET_NULLS = "VALUE_SET_NULLS"; + public static final String VALUE_SET_NUMBER_CONCEPTS = "VALUE_SET_NUMBER_CONCEPTS"; public static final String VALUE_SET_OID = "VALUE_SET_OID"; public static final String VALUE_SET_OID_TERM_SYS = "VALUE_SET_OID_TERM_SYS"; - public static final String VALUE_SET_INCLUDED_INTO = "VALUE_SET_INCLUDED_INTO"; - public static final String VALUE_SET_EXCLUDED_FROM = "VALUE_SET_EXCLUDED_FROM"; + public static final String VALUE_SET_REGEX = "VALUE_SET_REGEX"; + public static final String VALUE_SET_RULES_EXC = "VALUE_SET_RULES_EXC"; + public static final String VALUE_SET_RULES_INC = "VALUE_SET_RULES_INC"; + public static final String VALUE_SET_SEL = "VALUE_SET_SEL"; + public static final String VALUE_SET_SNOMED = "VALUE_SET_SNOMED"; + public static final String VALUE_SET_SNOMED_ADD = "VALUE_SET_SNOMED_ADD"; + public static final String VALUE_SET_SPAN = "VALUE_SET_SPAN"; + public static final String VALUE_SET_SPEC_NAME = "VALUE_SET_SPEC_NAME"; + public static final String VALUE_SET_SWEDISH = "VALUE_SET_SWEDISH"; + public static final String VALUE_SET_SYNONYM = "VALUE_SET_SYNONYM"; + public static final String VALUE_SET_SYSTEM = "VALUE_SET_SYSTEM"; + public static final String VALUE_SET_THESE_CODES_DEF = "VALUE_SET_THESE_CODES_DEF"; + public static final String VALUE_SET_TOO_COSTLY = "VALUE_SET_TOO_COSTLY"; + public static final String VALUE_SET_UK = "VALUE_SET_UK"; + public static final String VALUE_SET_US = "VALUE_SET_US"; public static final String VALUE_SET_USED_ELSEWHERE = "VALUE_SET_USED_ELSEWHERE"; - public static final String TEXT_ICON_REFERENCE = "TEXT_ICON_REFERENCE"; - public static final String TEXT_ICON_PRIMITIVE = "TEXT_ICON_PRIMITIVE"; - public static final String TEXT_ICON_KEY = "TEXT_ICON_KEY"; - public static final String TEXT_ICON_DATATYPE = "TEXT_ICON_DATATYPE"; - public static final String TEXT_ICON_RESOURCE = "TEXT_ICON_RESOURCE"; - public static final String TEXT_ICON_ELEMENT = "TEXT_ICON_ELEMENT"; - public static final String TEXT_ICON_OBJECT_BOX = "TEXT_ICON_OBJECT_BOX"; - public static final String TEXT_ICON_REUSE = "TEXT_ICON_REUSE"; - public static final String TEXT_ICON_EXTENSION = "TEXT_ICON_EXTENSION"; - public static final String TEXT_ICON_CHOICE = "TEXT_ICON_CHOICE"; - public static final String TEXT_ICON_SLICE = "TEXT_ICON_SLICE"; - public static final String TEXT_ICON_SLICE_ITEM = "TEXT_ICON_SLICE_ITEM"; - public static final String TEXT_ICON_FIXED = "TEXT_ICON_FIXED"; - public static final String TEXT_ICON_EXTENSION_SIMPLE = "TEXT_ICON_EXTENSION_SIMPLE"; - public static final String TEXT_ICON_PROFILE = "TEXT_ICON_PROFILE"; - public static final String TEXT_ICON_EXTENSION_COMPLEX = "TEXT_ICON_EXTENSION_COMPLEX"; - public static final String MAP_DEFAULT_COMMENT = "MAP_DEFAULT_COMMENT"; + public static final String VALUE_SET_VERSION = "VALUE_SET_VERSION"; + public static final String VALUE_SET_WHERE = "VALUE_SET_WHERE"; + public static final String VALUE_SET_WHERE_CODES = "VALUE_SET_WHERE_CODES"; public static final String VS_ABSTRACT_CODE_HINT = "VS_ABSTRACT_CODE_HINT"; - public static final String REND_ROW_CHANGED_SINCE_WAS = "REND_ROW_CHANGED_SINCE_WAS"; - public static final String TERM_REND_COPY = "TERM_REND_COPY"; - public static final String TEST_PLAN_CASE = "TEST_PLAN_CASE"; - public static final String TEST_PLAN_CASE_SEQ = "TEST_PLAN_CASE_SEQ"; protected String getMessagesSourceFileName() { return "rendering-phrases"; diff --git a/org.hl7.fhir.utilities/src/main/resources/Messages.properties b/org.hl7.fhir.utilities/src/main/resources/Messages.properties index 8ccfd2e54..e56d924e6 100644 --- a/org.hl7.fhir.utilities/src/main/resources/Messages.properties +++ b/org.hl7.fhir.utilities/src/main/resources/Messages.properties @@ -1,25 +1,74 @@ #InstanceValidator +ABSTRACT_CODE_NOT_ALLOWED = Code ''{0}#{1}'' is abstract, and not allowed in this context +ALL_OK = All OK +ARRAY_CANNOT_BE_EMPTY = Array cannot be empty - the property should not be present if it has no values +ATTEMPT_TO_CHANGE_SLICING = The element at {0} defines the slicing {1} but then an element in the slicing {2} tries to redefine the slicing to {3} +Adding_wrong_path = Adding wrong path +Adding_wrong_path__outcomegetPath___resultPathBase__ = Adding wrong path - outcome.getPath() = {0}, resultPathBase = {1} +Adding_wrong_path_in_profile___vs_ = Adding wrong path in profile {0}: {1} vs {2} +All_observations_should_have_a_performer = Best Practice Recommendation: In general, all observations should have a performer +All_observations_should_have_a_subject = Best Practice Recommendation: In general, all observations should have a subject +All_observations_should_have_an_effectiveDateTime_or_an_effectivePeriod = Best Practice Recommendation: In general, all observations should have an effective[x] ({0}) +Attempt_to_a_slice_an_element_that_does_not_repeat__from__in_ = Attempt to a slice an element that does not repeat: {0}/{1} from {2} in {3}, at element {4} (slice = {5}) +Attempt_to_replace_element_name_for_a_nonchoice_type=Attempt to replace element name for a non-choice type +Attempt_to_use_Terminology_server_when_no_Terminology_server_is_available = Attempt to use Terminology server when no Terminology server is available +Attempt_to_use_a_snapshot_on_profile__as__before_it_is_generated = Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated +BINDING_ADDITIONAL = {0} specified in an additional binding +BINDING_MAX = {0} specified in the max binding +BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE = Found {0} matches for ''{1}'' in the bundle ({2}) +BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT = Found {0} matches for fragment {2} in resource ''{1}'' in the bundle ({3}) +BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED = Except for transactions and batches, each entry in a Bundle must have a fullUrl which is the identity of the resource in the entry +BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES = The {1} resource matched more than one of the allowed profiles ({3}) +BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH = The {1} resource did not match any of the allowed profiles (Type {2}: {3}) +BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON = The {1} resource did not math the profile {2} because: {3} +BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT_one = Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``) +BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT_other = Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``) +BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT = Can''t find ''{0}'' in the bundle ({1}) +BUNDLE_BUNDLE_ENTRY_REVERSE_MSG = Entry {0} isn''t reachable by traversing forwards from the MessageHeader. Check that this is meant to be included (needed to process the message) +BUNDLE_BUNDLE_ENTRY_REVERSE_R4 = Entry {0} isn''t reachable by traversing forwards from the Composition. Only Provenance is approved to be used this way (R4 section 3.3.1) +BUNDLE_BUNDLE_ENTRY_REVERSE_R5 = Entry {0} isn''t reachable by traversing forwards from the Composition. Check whether this should be linked directly from the composition if it''s a source of narrative content +BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU = Entry {0} matches the reference {1} by type and id but it does not match the full target URL {2} by Bundle resolution rules +BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU = Entry {0} matches the reference {1} by type and id but it''s fullUrl {2} does not match the full target URL {3} by Bundle resolution rules +BUNDLE_ENTRY_URL_ABSOLUTE = The fullUrl must be an absolute URL (not ''{0}'') +BUNDLE_ENTRY_URL_MATCHES_NO_ID = The fullUrl ''{0}'' looks like a RESTful server URL, but the resource has no id +BUNDLE_ENTRY_URL_MATCHES_TYPE_ID = The fullUrl ''{0}'' looks like a RESTful server URL, so it must end with the correct type and id (/{1}/{2}) +BUNDLE_LINK_SEARCH_NO_DUPLICATES = The link relationship type ''{0}'' can only occur once +BUNDLE_LINK_SEARCH_PROHIBITED = The link relationship type ''{0}'' used in search sets is prohibited in this context +BUNDLE_LINK_STYELSHEET_EXTERNAL = External Stylesheets other than https://hl7.org/fhir/fhir.css SHOULD not be used +BUNDLE_LINK_STYELSHEET_INSECURE = The stylesheet reference is not secure +BUNDLE_LINK_STYELSHEET_LINKABLE = The stylesheet reference is not a resolvable link +BUNDLE_LINK_STYELSHEET_NOT_FOUND = The stylesheet reference could not be resolved in this bundle +BUNDLE_LINK_UNKNOWN = The link relationship type ''{0}'' is unknown and not allowed in this context +BUNDLE_POSSSIBLE_MATCHES = The bundle contains no match for {1} by the rules of Bundle reference resolution, but it has multiple resources that match {0} by resource type and id +BUNDLE_RULE_INVALID_INDEX = Bundle Rules index is invalid ({0}) +BUNDLE_RULE_NONE = No Rule +BUNDLE_RULE_PROFILE_UNKNOWN = Bundle Rules profile {1} is unknown for {0} +BUNDLE_RULE_UNKNOWN = Bundle Rule refers to invalid resource {0} +BUNDLE_SEARCH_ENTRY_NO_RESOURCE = SearchSet Bundle Entries must have resources +BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID = Search results must have ids +BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE = Unable to determine if this resource is a valid resource type for this search +BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE = This is not a matching resource type for the specified search ({0} expecting {1}) +BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE = This is not a matching resource type for the specified search (is a search mode needed?) ({0} expecting {1}) +BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = This is not an OperationOutcome ({0}) +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 +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 Bundle_BUNDLE_Entry_Document = The first entry in a document must be a composition Bundle_BUNDLE_Entry_IdUrlMismatch = Resource ID does not match the ID in the entry fullUrl (''{0}'' vs ''{1}'') Bundle_BUNDLE_Entry_MismatchIdUrl = The canonical URL ({0}) cannot match the fullUrl ({1}) unless the resource id ({2}) also matches +Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL = Specified logical model {1} not found for resource ''Binary/{0}'' Bundle_BUNDLE_Entry_NoFirst = Documents or Messages must contain at least one entry Bundle_BUNDLE_Entry_NoFirstResource = No resource on first entry Bundle_BUNDLE_Entry_NoFullUrl = Bundle entry missing fullUrl -BUNDLE_BUNDLE_ENTRY_FULLURL_REQUIRED = Except for transactions and batches, each entry in a Bundle must have a fullUrl which is the identity of the resource in the entry -Bundle_BUNDLE_Entry_NoProfile_TYPE = No profile found for {0} resource of type ''{1}'' Bundle_BUNDLE_Entry_NoProfile_EXPL = Specified profile {2} not found for {0} resource of type ''{0}'' -Bundle_BUNDLE_Entry_NO_LOGICAL_EXPL = Specified logical model {1} not found for resource ''Binary/{0}'' +Bundle_BUNDLE_Entry_NoProfile_TYPE = No profile found for {0} resource of type ''{1}'' Bundle_BUNDLE_Entry_NotFound = Can''t find ''{0}'' in the bundle ({1}) -BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE = Found {0} matches for ''{1}'' in the bundle ({2}) -BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT_one = Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``) -BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT_other = Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``) -Bundle_BUNDLE_Entry_Orphan_MESSAGE = Entry {0} isn''t reachable by traversing links (forward or backward) from the MessageHeader, so its presence should be reviewed (is it needed to process the message?) Bundle_BUNDLE_Entry_Orphan_DOCUMENT = Entry {0} isn''t reachable by traversing links (forward or backward) from the Composition -BUNDLE_BUNDLE_ENTRY_REVERSE_R4 = Entry {0} isn''t reachable by traversing forwards from the Composition. Only Provenance is approved to be used this way (R4 section 3.3.1) -BUNDLE_BUNDLE_ENTRY_REVERSE_R5 = Entry {0} isn''t reachable by traversing forwards from the Composition. Check whether this should be linked directly from the composition if it''s a source of narrative content -BUNDLE_BUNDLE_ENTRY_REVERSE_MSG = Entry {0} isn''t reachable by traversing forwards from the MessageHeader. Check that this is meant to be included (needed to process the message) +Bundle_BUNDLE_Entry_Orphan_MESSAGE = Entry {0} isn''t reachable by traversing links (forward or backward) from the MessageHeader, so its presence should be reviewed (is it needed to process the message?) Bundle_BUNDLE_Entry_Type = The type ''{0}'' is not valid - no resources allowed here (allowed = {1}) Bundle_BUNDLE_Entry_Type2 = The type ''{0}'' is not valid - must be {1} (allowed = {2}) Bundle_BUNDLE_Entry_Type3_one = The type ''{1}'' is not valid - must be of type {2} @@ -28,18 +77,162 @@ Bundle_BUNDLE_FullUrl_Missing = Relative Reference appears inside Bundle whose e Bundle_BUNDLE_FullUrl_NeedVersion = Entries matching fullURL {0} should declare meta/versionId because there are version-specific references Bundle_BUNDLE_MultipleMatches = Multiple matches in bundle for reference {0} Bundle_BUNDLE_Not_Local = URN reference is not locally contained within the bundle {0} -Bundle_MSG_Event_Count = Expected {0} but found {1} event elements Bundle_Document_Date_Missing = A document must have a date (Bundle.timestamp) Bundle_Document_Date_Missing_html = [(type = ''document'') implies (meta.lastUpdated.hasValue())] +Bundle_MSG_Event_Count = Expected {0} but found {1} event elements +CDATA_is_not_allowed = CDATA is not allowed +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_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_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 +CODESYSTEM_CS_NO_VS_SUPPLEMENT1 = CodeSystems supplements should not have an all codes value set specified, and if they do, it must match the base code system +CODESYSTEM_CS_NO_VS_SUPPLEMENT2 = CodeSystems supplements should not have an all codes value set specified, and if they do, it must match the base code system, and this one does not (''{0}'') +CODESYSTEM_CS_SUPP_CANT_CHECK = CodeSystem {0} cannot be found, so can''t check if concepts are valid +CODESYSTEM_CS_SUPP_INVALID_CODE = The code ''{1}'' is not declared in the base CodeSystem {0} so is not valid in the supplement +CODESYSTEM_CS_SUPP_NO_SUPP = The code system is marked as a supplement, but it does not define what code system it supplements +CODESYSTEM_CS_UNK_EXPANSION = The code provided ({2}) is not in the expansion in the value set {0}, and a code is required from this value set. The system {1} could not be found. +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_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 +CODESYSTEM_PROPERTY_DUPLICATE_CODE = A property is already defined with the code ''{0}'' +CODESYSTEM_PROPERTY_DUPLICATE_URI = A property is already defined with the URI ''{0}'' +CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE = This property has only the standard code (''{0}'') but not the standard URI ''{1}'', so it has no clearly defined meaning in the terminology ecosystem +CODESYSTEM_PROPERTY_NO_VALUE = The property ''{0}'' has no value, and cannot be understood +CODESYSTEM_PROPERTY_SYNONYM_CHECK = The synonym ''{0}'' is not also defined in the code system. The Synonym property should only used to declare equivalence to other existing codes +CODESYSTEM_PROPERTY_UNDEFINED = The property ''{0}'' has no definition in CodeSystem.property. Many terminology tools won''t know what to do with it +CODESYSTEM_PROPERTY_UNKNOWN_CODE = This property has only a code (''{0}'') and not a URI, so it has no clearly defined meaning in the terminology ecosystem +CODESYSTEM_PROPERTY_URI_CODE_MISMATCH = The URI ''{0}'' is normally assigned the code ''{1}''. Using the code ''{2}'' will usually create confusion in ValueSet filters etc +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_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_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} +CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS = The source code ''{0}'' is not valid in the value set {1} +CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = The source display ''{0}'' for the code ''{2}'' is not valid. Possible displays: {1} +CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = Source Code System {0} doesn''t have all content (content = {1}), so the source codes cannot be checked +CONCEPTMAP_GROUP_SOURCE_MISSING = No Source Code System, so the source codes cannot be checked +CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE = Source Code System {0} is only supported on the terminology server, so the source codes are not validated for performance reasons +CONCEPTMAP_GROUP_SOURCE_UNKNOWN = The Source Code System {0} is not fully defined and populated, and no sourceScope is specified, so the source code checking will not be performed +CONCEPTMAP_GROUP_TARGET_CODE_INVALID = The target code ''{0}'' is not valid in the code system {1} +CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS = The target code ''{0}'' is not valid in the value set {1} +CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID = The target display ''{0}'' for the code ''{2}'' is not valid. Possible displays: {1} +CONCEPTMAP_GROUP_TARGET_INCOMPLETE = Target Code System {0} doesn''t have all content (content = {1}), so the target codes cannot be checked +CONCEPTMAP_GROUP_TARGET_MISSING = No Target Code System, so the target codes cannot be checked +CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID = The code {0} is invalid in the system {1} +CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID = The property code ''{0}'' is not known +CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH = The type of this property should be {1} not {0} +CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = Since no system has been provided, a plain code cannot be used +CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = The code system {0} could not be found, so code values can''t be checked +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_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_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}) +CONTAINED_ORPHAN_DOM3 = The contained resource ''{0}'' is not referenced to from elsewhere in the containing resource nor does it refer to the containing resource (dom-3) +CS_SCT_IPS_NOT_IPS = The Snomed CT code {0} ({1}) is not a member of the IPS free set +Can_only_specify_profile_in_the_context = Can only specify profile in the context +Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_ = Can''t have children on an element with a polymorphic type - you must slice and constrain the types first (sortElements: {0}:{1}) CapabalityStatement_CS_SP_WrongType = Type mismatch - SearchParameter ''{0}'' type is {1}, but type here is {2} +Circular_snapshot_references_detected_cannot_generate_snapshot_stack__ = Circular snapshot references detected; cannot generate snapshot (stack = {0}) CodeSystem_CS_VS_IncludeDetails = CodeSystem {0} has an ''all system'' value set of {1}, but the include has extra details CodeSystem_CS_VS_Invalid = CodeSystem {0} has an ''all system'' value set of {1}, but the value set doesn''t have a single include -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_CS_VS_WrongSystem = CodeSystem {0} has an ''all system'' value set of {1}, but the value set doesn''t have a matching system ({2}) +Code_found_in_expansion_however_ = Code found in expansion, however: {0} +Coding_has_no_system__cannot_validate = Coding has no system. A code with no system has no defined meaning, and it cannot be validated. A system should be provided +Coding_has_no_system__cannot_validate_NO_INFER = Coding has no system, and inferring the code system is not possible in this context. A code with no system has no defined meaning, and it cannot be validated. A system should be provided +Contained_resource_does_not_appear_to_be_a_FHIR_resource_unknown_name_ = Contained resource does not appear to be a FHIR resource (unknown name ''{0}'') +Could_not_match_discriminator_for_slice_in_profile_one = Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions +Could_not_match_discriminator_for_slice_in_profile_other = Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions +DISCRIMINATOR_BAD_PATH = Error processing path expression for discriminator: {0} (src = ''{1}'') +DUPLICATE_ID = Duplicate id value ''{0}'' +DUPLICATE_JSON_PROPERTY = The JSON property ''{0}'' is a duplicate and will be ignored +DUPLICATE_JSON_PROPERTY_KEY = The JSON property ''{0}'' is a duplicate and will be ignored +DUPLICATE_RESOURCE_VERSION = Duplicate Resource {0} Version {1} of type {2} +Delimited_versions_have_exact_match_for_delimiter____vs_ = Delimited versions have exact match for delimiter ''{0}'' : {1} vs {2} +Derived_profile__has_no_derivation_value_and_so_cant_be_processed = Derived profile {0} has no derivation value and so can''t be processed +Derived_profile__has_no_type = Derived profile {0} has no type +Details_for__matching_against_Profile_ = Details for {0} matching against profile {1} +Did_not_find_single_slice_ = Did not find single slice: {0} +Did_not_find_type_root_ = Did not find type root: {0} +Differential_does_not_have_a_slice__b_of_____in_profile_ = Differential in profile {5} does not have a slice at {6} (on {0}, position {1} of {2} / {3} / {4}) +Differential_walks_into____but_the_base_does_not_and_there_is_not_a_single_fixed_type_The_type_is__This_is_not_handled_yet = Differential walks into ''{0} (@ {1})'', but the base does not, and there is not a single fixed type. The type is {2}. This is not handled yet +Discriminator__is_based_on_element_existence_but_slice__neither_sets_min1_or_max0 = Discriminator ({0}) is based on element existence, but slice {1} neither sets min>=1 or max=0 +Discriminator__is_based_on_type_but_slice__in__has_multiple_types_one = +Discriminator__is_based_on_type_but_slice__in__has_multiple_types_other = Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4} +Discriminator__is_based_on_type_but_slice__in__has_no_types = Discriminator ({0}) is based on type, but slice {1} in {2} has no types +Display_Name_WS_for__should_be_one_of__instead_of_one = Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'') +Display_Name_WS_for__should_be_one_of__instead_of_other = Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'') +Display_Name_for__should_be_one_of__instead_of_one = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'') +Display_Name_for__should_be_one_of__instead_of_other = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'') +Does_not_match_slice_ = Does not match slice ''{0}'' (discriminator: {1}) +Duplicate_Resource_ = Duplicate Resource {0} of type {3} (existing version {2}, new version {1}) +ED_CONTEXT_INVARIANT_EXPRESSION_ERROR = Error in constraint ''{0}'': {1} +ED_INVARIANT_DIFF_NO_SOURCE = The invariant {0} defined in the differential must have no source, or the source must be the same as the profile +ED_INVARIANT_EXPRESSION_CONFLICT = The constraint ''{0}'' has an expression ''{1}'', which differs from the earlier expression provided of ''{2}'' (invariants are allowed to repeat, but cannot differ) +ED_INVARIANT_EXPRESSION_ERROR = Error in constraint ''{0}'' with expression ''{1}'': {2} +ED_INVARIANT_KEY_ALREADY_USED = The constraint key ''{0}'' already exists in the base profile ''{1}'' +ED_INVARIANT_NO_EXPRESSION = The constraint ''{0}'' has no computable expression, so validators will not be able to check it +ED_INVARIANT_NO_KEY = The constraint has no key, so the content cannot be validated +ED_PATH_WRONG_TYPE_MATCH = The path must be ''{0}'' not ''{1}'' when the type list is not constrained +ED_SEARCH_EXPRESSION_ERROR = Error in search expression ''{0}'': {1} +ELEMENT_CANNOT_BE_NULL = The element is not allowed to be ''null'' +ERROR_GENERATING_SNAPSHOT = Error generating Snapshot: {0} (this usually arises from a problem in the differential) EXTENSION_CONTEXT_UNABLE_TO_CHECK_PROFILE = The extension {0} specifies a context of {1} but the validator cannot check whether the profile is valid or not at this time EXTENSION_CONTEXT_UNABLE_TO_FIND_PROFILE = The extension {0} specifies a context of {1} but the validator cannot find that profile -Extension_EXTP_Context_Wrong = The extension {0} is not allowed to be used at this point (allowed = {1}; this element is {2}) +EXTENSION_EXTM_CONTEXT_WRONG_XVER = The modifier extension {0} from FHIR version {3} is not allowed to be used at this point (allowed = {1}; this element is [{2}; this is a warning since contexts may be renamed between FHIR versions) +EXTENSION_EXTP_CONTEXT_WRONG_XVER = The extension {0} from FHIR version {3} is not allowed to be used at this point (allowed = {1}; this element is [{2}; this is a warning since contexts may be renamed between FHIR versions) +EXT_VER_URL_IGNORE = Extension URLs don''t have versions. The validator has ignored the version and processed the extension anyway +EXT_VER_URL_MISLEADING = The extension URL contains a ''|'' which makes it look like a versioned URL, but it''s not, and this is confusing for implementers +EXT_VER_URL_NOT_ALLOWED = The extension URL must not contain a version +EXT_VER_URL_NO_MATCH = Extension URLs don''t have versions. The validator wasn''t able to resolve this URL with or without version-based resolution +EXT_VER_URL_REVERSION = The extension URL must not contain a version. The extension was validated against version {0} of the extension +Element_must_have_some_content = Element must have some content +Error_at__The_target_profile__is_not__valid_constraint_on_the_base_ = Error at {0}#{1}: The target profile {2} is not a valid constraint on the base ({3}) +Error_at_path__Slice_for_type__has_more_than_one_type_ = Error at path {0}: Slice for type ''{1}'' has more than one type ''{2}'' +Error_at_path__Slice_for_type__has_wrong_type_ = Error at path {0}: Slice for type ''{1}'' has wrong type ''{2}'' +Error_at_path__Slice_name_must_be__but_is_ = Error at path {0}: Slice name must be ''{1}'' but is ''{2}'' +Error_at_path__in__Type_slicing_with_slicingdiscriminatorcount__1 = Error at path {0} in {1}: Type slicing with slicing.discriminator.count() > 1 +Error_at_path__in__Type_slicing_with_slicingdiscriminatorpath__this = Error at path {0} in {1}: Type slicing with slicing.discriminator.path != ''$this'' +Error_at_path__in__Type_slicing_with_slicingdiscriminatortype__type = Error at path {0} in {1}: Type slicing with slicing.discriminator.type != ''type'' +Error_at_path__in__Type_slicing_with_slicingordered__true = Error at path {0} in {1}: Type slicing with slicing.ordered = true +Error_expanding_ValueSet_running_without_terminology_services = Error expanding ValueSet: running without terminology services +Error_generating_table_for_profile__ = Error generating table for profile {0}: {1} +Error_in_profile__at__Base_isSummary___derived_isSummary__ = Error in profile {0} at {1}: Base isSummary = {2}, derived isSummary = {3} +Error_parsing_ = Error parsing {0}:{1} +Error_parsing_JSON_ = Error parsing JSON: {0} +Error_parsing_JSON_the_primitive_value_must_be_a_boolean = Error parsing JSON: the primitive value must be a boolean +Error_parsing_JSON_the_primitive_value_must_be_a_number = Error parsing JSON: the primitive value must be a number +Error_parsing_JSON_the_primitive_value_must_be_a_string = Error parsing JSON: the primitive value must be a string +Error_parsing_Turtle_ = Error parsing Turtle: {0} +Error_parsing_XHTML_ = Error parsing XHTML: {0} +Error_reading__from_package__ = Error reading {0} from package {1}#{2}: {3} +Error_validating_code_running_without_terminology_services = Unable to validate code ''{0}'' in system ''{1}'' because the validator is running without terminology services Extension_EXTM_Context_Wrong = The modifier extension {0} is not allowed to be used at this point (allowed = {1}; this element is {2}) +Extension_EXTP_Context_Wrong = The extension {0} is not allowed to be used at this point (allowed = {1}; this element is {2}) Extension_EXT_Count_Mismatch = Extensions count mismatch: expected {0} but found {1} Extension_EXT_Count_NotFound = Extension count mismatch: unable to find extension: {0} Extension_EXT_Fixed_Banned = No extensions allowed, as the specified fixed value doesn''t contain any extensions @@ -59,26 +252,266 @@ Extension_EXT_Version_Internal = Extension url ''{0}'' evaluation state invalid Extension_EXT_Version_Invalid = Extension url ''{0}'' is not valid (invalid Version ''{1}'') Extension_EXT_Version_InvalidId = Extension url ''{0}'' is not valid (invalid Element id ''{1}'') Extension_EXT_Version_NoChange = Extension url ''{0}'' is not valid (Element id ''{1}'' is valid, but cannot be used in a cross-version paradigm because there has been no changes across the relevant versions) +Extension_PROF_Type = The Profile ''{0}'' definition allows for the type {1} but found type {2} +FHIRPATH_ALIAS_COLLECTION = Attempt to alias a collection, not a singleton evaluating FHIRPath expression +FHIRPATH_ARITHMETIC_MINUS = Error in date arithmetic: Unable to subtract type {0} to {1} +FHIRPATH_ARITHMETIC_PLUS = Error in date arithmetic: Unable to add type {0} to {1} +FHIRPATH_ARITHMETIC_QTY = Error in date arithmetic: attempt to add a definite quantity duration time unit {0} +FHIRPATH_ARITHMETIC_UNIT = Error in date arithmetic: unrecognized time unit {0} +FHIRPATH_AS_COLLECTION = Attempt to use ''as()'' on more than one item (''{0}'', ''{1}'') +FHIRPATH_AS_IMPOSSIBLE = The type specified in as() is {1} which is not a possible candidate for the existing types ({0}) in the expression {2}. Check the paths and types to be sure this is what is intended +FHIRPATH_BAD_DATE = Unable to parse Date {0} +FHIRPATH_CANNOT_USE = Error evaluating FHIRPath expression: Cannot use {0} in this context because {1} +FHIRPATH_CANT_COMPARE = Error evaluating FHIRPath expression: Unable to compare values of type {0} and {1} +FHIRPATH_CHECK_FAILED = Error evaluating FHIRPath expression: The check {0} failed +FHIRPATH_CHOICE_NO_TYPE_SPECIFIER = The expression ''{0}'' refers to an element that is a choice, but doesn''t have an .ofType() so that SQL view runners can pre-determine the full element name +FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER = The expression ''{0}'' refers to an element that is not a choice, but has an .ofType(). SQL view runners are likely to pre-determine an incorrect full element name +FHIRPATH_CODED_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, code, uri, Coding, CodeableConcept but found {1} +FHIRPATH_COLLECTION_STATUS_CONTEXT = The context is inherently a collection, and so the expression ''{0}'' may fail, create an error, or return false if there is more than one item in the context ({2}) +FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT = The left side is inherently a collection, and so the expression ''{0}'' may fail or return false if there is more than one item in the content being evaluated +FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT = The right side is inherently a collection, and so this expression ''{0}'' may fail or return false if there is more than one item in the content being evaluated +FHIRPATH_COLLECTION_STATUS_PARAMETER = Parameter {1} is inherently a collection, and so the expression ''{0}'' may fail, create an error, or return false if there is more than one item in the parameter value ({2}) +FHIRPATH_CONTINUOUS_ONLY= Error evaluating FHIRPath expression: The function {0} can only be used on a decimal or date type but found {1} +FHIRPATH_DECIMAL_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on a decimal but found {1} +FHIRPATH_DISCRIMINATOR_BAD_NAME = Invalid function name {0}() in discriminator +FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_CONST = Invalid expression syntax in discriminator (const) +FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_GROUP = Invalid expression syntax in discriminator (group ''{0}'') +FHIRPATH_DISCRIMINATOR_CANT_FIND = Unable to resolve discriminator in definitions: {0} in profile {1} on element {2}, looking in profile {3} +FHIRPATH_DISCRIMINATOR_CANT_FIND_EXTENSION = Unable to resolve discriminator {0} on {2} found in the definitions because the extension {1} wasn''t found in the profile {3} +FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES_one = +FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES_other = Error in discriminator at {1}: no children, {0} type profiles +FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES_one = +FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES_other = Error in discriminator at {1}: no children, {0} types +FHIRPATH_DISCRIMINATOR_NAME_ALREADY_SLICED = Error in discriminator at {0}: found a sliced element while resolving the fixed value for one of the slices +FHIRPATH_DISCRIMINATOR_NOTYPE = Error in discriminator at {0}: no children, no type +FHIRPATH_DISCRIMINATOR_NO_CODE = Invalid use of ofType() in discriminator - Type has no code on {0} +FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES_one = +FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES_other = Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one) +FHIRPATH_DISCRIMINATOR_RESOLVE_NOT_REFERENCE = Invalid use of resolve() in discriminator - type on {0} is not Reference {1} +FHIRPATH_DISCRIMINATOR_RESOLVE_NO_TYPE = Invalid use of resolve() in discriminator - no type on element {0} +FHIRPATH_DISCRIMINATOR_THIS_CANNOT_FIND = Problem with use of resolve() - profile {0} on {1} could not be resolved +FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE = Invalid use of ofType() in discriminator - Multiple possible types on {0} +FHIRPATH_DISCRIMINATOR_TYPE_NONE = Invalid use of ofType() in discriminator - no type on element {0} +FHIRPATH_FOCUS_one = +FHIRPATH_FOCUS_other = Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values +FHIRPATH_HO_HOST_SERVICES = Internal Error evaluating FHIRPath expression: No host services are provided ({0}) +FHIRPATH_INVALID_TYPE = The type {0} is not valid +FHIRPATH_LEFT_VALUE_WRONG_TYPE = Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1} +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_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} +FHIRPATH_NUMERICAL_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on integer, decimal or Quantity but found {1} +FHIRPATH_OFTYPE_IMPOSSIBLE = The type specified in ofType() is {1} which is not a possible candidate for the existing types ({0}) in the expression {2}. Check the paths and types to be sure this is what is intended +FHIRPATH_OP_INCOMPATIBLE = Error evaluating FHIRPath expression {0}: left and right operand have incompatible or invalid types ({1}, {2}) +FHIRPATH_ORDERED_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered collections +FHIRPATH_PARAM_WRONG = Error evaluating FHIRPath expression: The expression type {0} is not supported for parameter {1} on function {2} +FHIRPATH_PRIMITIVE_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on primitives +FHIRPATH_REDEFINE_VARIABLE = The variable ''{0}'' cannot be redefined +FHIRPATH_REFERENCE_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1} +FHIRPATH_RESOLVE_DISCRIMINATOR_CANT_FIND = Problem with use of resolve() - profile {0} on {1} could not be resolved +FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET_one = +FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET_other = Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one) +FHIRPATH_RIGHT_VALUE_WRONG_TYPE = Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1} +FHIRPATH_RIGHT_VALUE_one = +FHIRPATH_RIGHT_VALUE_other = Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values +FHIRPATH_STRING_ORD_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1} +FHIRPATH_STRING_SING_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on string, uri, url, code, id but found {1} +FHIRPATH_UNABLE_BOOLEAN = Unable to evaluate as a boolean: {0} +FHIRPATH_UNKNOWN_CONSTANT = Error evaluating FHIRPath expression: Invalid FHIR Constant {0} +FHIRPATH_UNKNOWN_CONTEXT = Unknown context evaluating FHIRPath expression: {0} +FHIRPATH_UNKNOWN_CONTEXT_ELEMENT = Unknown context element evaluating FHIRPath expression: {0} +FHIRPATH_UNKNOWN_EXTENSION = Reference to an unknown extension - double check that the URL ''{0}'' is correct +FHIRPATH_UNKNOWN_NAME = Error evaluating FHIRPath expression: The name ''{0}'' is not valid for any of the possible types: {1} +FHIRPATH_UNKNOWN_TYPE = Error evaluating FHIRPath expression: The type ''{0}'' is unknown or not supported at {1} +FHIRPATH_WRONG_PARAM_TYPE = Error evaluating FHIRPath expression: The parameter type {2} is not legal for {0} parameter {1}. expecting {3} Fixed_Type_Checks_DT_Address_Line = Expected {0} but found {1} line elements Fixed_Type_Checks_DT_Name_Family = Expected {0} but found {1} family elements Fixed_Type_Checks_DT_Name_Given = Expected {0} but found {1} given elements Fixed_Type_Checks_DT_Name_Prefix = Expected {0} but found {1} prefix elements Fixed_Type_Checks_DT_Name_Suffix = Expected {0} but found {1} suffix elements +Found__items_for__resolving_discriminator__from_ = Found {0} items for {1} resolving discriminator {2} from {3} +ILLEGAL_COMMENT_TYPE = The fhir_comments property must be an array of strings +ILLEGAL_PROPERTY = The property ''{0}'' is invalid +INV_FAILED = Constraint failed: {0} +INV_FAILED_SOURCE = Constraint failed: {0} (defined in {1}) +Illegal_path__in_differential_in__illegal_character_ = Invalid path ''{0}'' in differential in {1}: invalid character ''{2}'' +Illegal_path__in_differential_in__illegal_characters_ = Invalid path ''{0}'' in differential in {1}: invalid characters [] +Illegal_path__in_differential_in__must_start_with_ = Invalid path ''{0}'' in input differential in {1}: must start with {2}.{3} +Illegal_path__in_differential_in__name_portion_exceeds_64_chars_in_length = Invalid path ''{0}'' in differential in {1}: name portion exceeds 64 chars in length +Illegal_path__in_differential_in__name_portion_mising_ = Invalid path ''{0}'' in differential in {1}: name portion missing (''..'') +Illegal_path__in_differential_in__no_unicode_whitespace = Invalid path ''{0}'' in differential in {1}: no unicode whitespace Internal_INT_Bad_Type = Unhandled fixed value type {0} +Internal_error___type_not_known_ = Internal error - type not known {0} +Internal_recursion_detection_find_loop_path_recursion____check_paths_are_valid_for_path_ = Internal recursion detection: find() loop path recursion > {0} - check paths are valid (for path {1}/{2}) +Invalid_slicing__there_is_more_than_one_type_slice_at__but_one_of_them__has_min__1_so_the_other_slices_cannot_exist=Invalid slicing: there is more than one type slice at {0}, but one of them ({1}) has min = 1, so the other slices cannot exist +JSON_COMMA_EXTRA = There is an extra comma at the end of the {0} in the JSON +JSON_COMMA_MISSING = A Comma is missing in the JSON +JSON_COMMENTS_NOT_ALLOWED = Comments are not allowed in JSON +JSON_PROPERTY_NO_QUOTES = The JSON property ''{0}'' has no quotes around the name of the property +JSON_PROPERTY_VALUE_NO_QUOTES = The JSON property ''{0}'' has no quotes around the value of the property ''{1}'' +LIQUID_SYNTAX_COLON = Exception evaluating {0}: limit is not followed by '':'' +LIQUID_SYNTAX_EXPECTING = Script {0}: Found ''{1}'' expecting ''{2}'' parsing cycle +LIQUID_SYNTAX_INCLUDE = Script {0}: Error reading include: {1} +LIQUID_SYNTAX_LOOP = Script {0}: Error reading loop: {1} +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_FLOW_STMT = Script {0}: Unknown flow control statement ''{1}'' +LIQUID_UNKNOWN_NOEND = Script {0}: Found end of script looking for {1} +LIQUID_UNKNOWN_NOTERM = Script {0}: Unterminated Liquid statement {1} +LIQUID_UNKNOWN_SYNTAX = Unexpected syntax parsing liquid statement +LIQUID_VARIABLE_ALREADY_ASSIGNED = Liquid Exception: The variable ''{0}'' already has an assigned value +LIQUID_VARIABLE_ILLEGAL = Liquid Exception: The variable name ''{0}'' cannot be used +LOGICAL_MODEL_NAME_MISMATCH = The name ''{0}'' does not match the expected name ''{1}'' +LOGICAL_MODEL_QNAME_MISMATCH = The QName ''{0}'' does not match the expected QName ''{1}'' Language_XHTML_Lang_Different1 = Resource has a language ({0}), and the XHTML has a lang ({1}), but they differ Language_XHTML_Lang_Different2 = Resource has a language ({0}), and the XHTML has an xml:lang ({1}), but they differ Language_XHTML_Lang_Missing1 = Resource has a language, but the XHTML does not have an lang or an xml:lang tag (needs both - see https://www.w3.org/TR/i18n-html-tech-lang/#langvalues) Language_XHTML_Lang_Missing2 = Resource has a language, but the XHTML does not have a lang tag (needs both lang and xml:lang - see https://www.w3.org/TR/i18n-html-tech-lang/#langvalues) Language_XHTML_Lang_Missing3 = Resource has a language, but the XHTML does not have an xml:lang tag (needs both lang and xml:lang - see https://www.w3.org/TR/i18n-html-tech-lang/#langvalues) +MEASURE_MR_GRPST_POP_UNK_CODE = The code for this group stratifier has no match in the measure definition +MEASURE_MR_GRP_DUPL_CODE = The code for this group is duplicated with another group +MEASURE_MR_GRP_MISSING_BY_CODE = The MeasureReport does not include a group for the group ''{0}'' +MEASURE_MR_GRP_NO_CODE = Group should have a code that matches the group definition in the measure +MEASURE_MR_GRP_NO_USABLE_CODE = None of the codes provided are usable for comparison - need both system and code on at least one code +MEASURE_MR_GRP_NO_WRONG_CODE = The code provided ({0}) does not match the code specified in the measure report ({1}) +MEASURE_MR_GRP_POP_COUNT_MISMATCH = Mismatch between count {0} and number of subjects {1} +MEASURE_MR_GRP_POP_DUPL_CODE = The code for this group population is duplicated with another group +MEASURE_MR_GRP_POP_MISSING_BY_CODE = The MeasureReport does not include a population group for the population group {0} +MEASURE_MR_GRP_POP_NO_CODE = Group should have a code that matches the group population definition in the measure +MEASURE_MR_GRP_POP_NO_COUNT = Count should be present for reports where type is not ''subject-list'' +MEASURE_MR_GRP_POP_NO_SUBJECTS = Reports where type is not ''subject-list'' don''t have subjects listed +MEASURE_MR_GRP_POP_UNK_CODE = The code for this group population has no match in the measure definition +MEASURE_MR_GRP_UNK_CODE = The code for this group has no match in the measure definition +MEASURE_MR_M_SCORING_UNK = The scoring system in this measure is unknown, so the measureScore values cannot be checked +MEASURE_MR_SCORE_FIXED = This value is fixed by the Measure to ''{0}'' +MEASURE_MR_SCORE_PROHIBITED_MS = No measureScore when the scoring of the message is ''cohort'' +MEASURE_MR_SCORE_PROHIBITED_RT = No measureScore when the type of the report is ''data-collection'' +MEASURE_MR_SCORE_REQUIRED = A measureScore is required when the Measure.scoring={0} +MEASURE_MR_SCORE_UNIT_PROHIBITED = A measureScore for this Measure Scoring ({0}) should not have units +MEASURE_MR_SCORE_UNIT_REQUIRED = A unit should be present when the scoring type is {0} +MEASURE_MR_SCORE_VALUE_INVALID_01 = The value is invalid - it must be between 0 and 1 +MEASURE_MR_SCORE_VALUE_REQUIRED = A value is required when the Measure.scoring = {0} +MEASURE_M_CQL_NOT_FOUND = None of the include CQL Libraries define a function {0} +MEASURE_M_CRITERIA_CQL_ELM_NOT_VALID = = Error in {0}: Compiled version of CQL is not valid +MEASURE_M_CRITERIA_CQL_ERROR = Error in {0}: ''{1}'' +MEASURE_M_CRITERIA_CQL_LIB_DUPL = Multiple matching libraries found for the namespace {0} +MEASURE_M_CRITERIA_CQL_LIB_NOT_FOUND = No matching Library found for the namespace {0} +MEASURE_M_CRITERIA_CQL_NOT_FOUND = The function {1} does not exist in the library {0} +MEASURE_M_CRITERIA_CQL_NO_ELM = Error in {0}: No compiled version of CQL found +MEASURE_M_CRITERIA_CQL_NO_LIB = No CQL Libraries found on this Measure +MEASURE_M_CRITERIA_CQL_ONLY_ONE_LIB = If the CQL expression does not include a namespace, there can only be one Library for the measure +MEASURE_M_CRITERIA_UNKNOWN = The expression language {0} is not supported, so can''t be validated +MEASURE_M_GROUP_CODE = Groups should have codes when there is more than one group +MEASURE_M_GROUP_POP = Measure Groups should have at least one population +MEASURE_M_GROUP_POP_NO_CODE = A measure group population should have a code when there is more than one population +MEASURE_M_GROUP_STRATA = Measure Groups should have at least one stratifier +MEASURE_M_GROUP_STRATA_COMP_NO_CODE = A measure group stratifier component should have a code when there is more than one population +MEASURE_M_GROUP_STRATA_NO_CODE = A measure group stratifier should have a code when there is more than one population +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_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 +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 +MSG_DEPENDS_ON_EXTENSION = extension +MSG_DEPENDS_ON_PROFILE = profile +MSG_DEPENDS_ON_RETIRED = The {0} {1} is retired +MSG_DEPENDS_ON_WITHDRAWN = The {0} {1} is withdrawn +MSG_DEPRECATED = Reference to deprecated {2} {0} +MSG_DEPRECATED_SRC = Reference to deprecated {2} {0} from {1} +MSG_DRAFT = Reference to draft {2} {0} +MSG_DRAFT_SRC = Reference to draft {2} {0} from {1} +MSG_EXPERIMENTAL = Reference to experimental {2} {0} +MSG_EXPERIMENTAL_SRC = Reference to experimental {2} {0} from {1} +MSG_RETIRED = Reference to retired {2} {0} +MSG_RETIRED_SRC = Reference to retired {2} {0} from {1} +MSG_WITHDRAWN = Reference to withdrawn {2} {0} +MSG_WITHDRAWN_SRC = Reference to withdrawn {2} {0} from {1} +MULTIPLE_LOGICAL_MODELS_one= +MULTIPLE_LOGICAL_MODELS_other={0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1}) +Measure_MR_M_None = No Measure is identified, so no validation can be performed against the Measure +Measure_MR_M_NotFound = The Measure ''{0}'' could not be resolved, so no validation can be performed against the Measure Meta_RES_Security_Duplicate = Duplicate Security Label {0} MustSupport_VAL_MustSupport = The element {0} is not marked as ''mustSupport'' in the profile {1}. Consider not using the element, or marking the element as must-Support in the profile +NO_VALID_DISPLAY_FOUND_one = No valid Display Names found for {1}#{2} in the language {4} +NO_VALID_DISPLAY_FOUND_other = No valid Display Names found for {1}#{2} in the languages {4} +Named_items_are_out_of_order_in_the_slice = Named items are out of order in the slice +No_ExpansionProfile_provided = No ExpansionProfile provided +No_Expansion_Parameters_provided = No Expansion Parameters provided +No_Parameters_provided_to_expandVS = No Parameters provided to expandVS +No_path_on_element_Definition__in_ = No path on element Definition {0} in {1} +No_path_on_element_in_differential_in_ = No path on element in differential in {0} +No_path_value_on_element_in_differential_in_ = No path value on element in differential in {0} +No_processing_instructions_allowed_in_resources = No processing instructions allowed in resources +No_reference_resolving_discriminator__from_ = No reference resolving discriminator {0} from {1} +No_type_found_on_ = No type found on ''{0}'' +No_validator_configured = No validator configured +Node_type__is_not_allowed = Node type {0} is not allowed +None_of_the_provided_codes_are_in_the_value_set_one = The provided code {2} was not found in the value set ''{1}'' +None_of_the_provided_codes_are_in_the_value_set_other = None of the provided codes [{2}] are in the value set ''{1}'' +Not_done_yet = Not done yet +Not_done_yet_ValidatorHostServicescheckFunction = Not done yet (ValidatorHostServices.checkFunction) +Not_done_yet_ValidatorHostServicesconformsToProfile_when_item_is_not_an_element = Not done yet (ValidatorHostServices.conformsToProfile), when item is not an element +Not_done_yet_ValidatorHostServicesexecuteFunction = Not done yet (ValidatorHostServices.executeFunction) +Not_done_yet_ValidatorHostServicesresolveFunction_ = Not done yet (ValidatorHostServices.resolveFunction): {0} +Not_done_yet__resolve__locally_2 = Not done yet - resolve {0} locally (2) +Not_handled_yet_sortElements_ = Not handled yet (sortElements: {0}:{1}) +Not_supported_yet = Not supported yet +OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT = This object cannot be an keyed Array in Json because it does not have two children in the definitions (children = {0}) +OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE = This object is defined as a keyed Array in Json but the value property named in the definitions is a choice - this is not supported (value property = {0}) +OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST = This object is defined as a keyed Array in Json but the value property named in the definitions is a list - this is not supported (value property = {0}) +OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME = This object is defined as a keyed Array in Json but the definition does not name the first child element as the key (children = {0}) +OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE = This object is defined as a keyed Array in Json but the key property named in the definitions is not a primitive type (children = {0}, type = {1}) +Object_must_have_some_content = Object must have some content +PACKAGE_VERSION_MISMATCH = FHIR Version mismatch in package {0}: version is {2} but must be {1} (path: {3}) +PATTERN_CHECK_STRING = The pattern [{0}] defined in the profile {1} not found. Issues: {2} +PRIMITIVE_MUSTHAVEVALUE_MESSAGE = The element definition ``{0}`` in the profile ''{1}'' requires that a value be present in this element +PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE_one = The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present +PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE_other = The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present +Parser_Type__not_supported = Parser Type {0} not supported +Problem_evaluating_slicing_expression_for_element_in_profile__path__fhirPath___ = Problem evaluating slicing expression for element in profile {0} path {1} (fhirPath = {2}): {3} +Problem_processing_expression__in_profile__path__ = Problem processing expression ''{0}'' in profile ''{1}'' at path ''{2}'': {3} Profile_EXT_Not_Here = The extension {0} is not allowed to be used at this point (based on context invariant ''{1}'') Profile_VAL_MissingElement = Missing element ''{0}'' - required by fixed value assigned in profile {1} Profile_VAL_NotAllowed = The element {0} is present in the instance but not allowed in the applicable {1} specified in profile -Measure_MR_M_None = No Measure is identified, so no validation can be performed against the Measure -Measure_MR_M_NotFound = The Measure ''{0}'' could not be resolved, so no validation can be performed against the Measure -Questionnaire_QR_Item_BadOption = The code ''{1}'' in the system ''{0}'' is not in the options value set ({2}) specified by the questionnaire. Terminology Error: {3} +Profile___Error_generating_snapshot = Profile {0} ({1}). Error generating snapshot +Profile___base__could_not_be_resolved = Profile {0} ({1}) base {2} could not be resolved +Profile___element__Error_generating_snapshot_ = Profile {0} ({1}), element {2}. Error generating snapshot: {3} +Profile___has_no_base_and_no_snapshot = Profile {0} ({1}) has no base and no snapshot +Profile__does_not_match_for__because_of_the_following_profile_issues__ = Profile {0} does not match for {1} because of the following profile issues: {2} +Profile_based_discriminators_must_have_a_type__in_profile_ = Profile based discriminators must have a type ({0} in profile {1}) +Profile_based_discriminators_must_have_a_type_with_a_profile__in_profile_ = Profile based discriminators must have a type with a profile ({0} in profile {1}) +Profile_based_discriminators_must_have_only_one_type__in_profile_one = +Profile_based_discriminators_must_have_only_one_type__in_profile_other = Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types QUESTIONNAIRE_QR_ITEM_BADOPTION_CS = The code provided {1} cannot be validated in the options value set ({2}) in the questionnaire because the system {0} could not be found +QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED = The derivation type ''{0}'' means that no derivation checking has been performed against this questionnaire +QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN = The derivation type ''{0}'' is unknown, which means that no derivation checking has been performed against this questionnaire +QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS = The item with linkId ''{1}'' found in questionnaire ''{0}'' has answerOptions, so this item must have some too +QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW = The item with linkId ''{1}'' found in questionnaire ''{0}'' does not have this answerOption, so it is not valid +QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}'', so this should be repeated here +QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}'', so this item must also have a max length +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE = The item with linkId ''{1}'' found in questionnaire ''{0}'' has answer{2}, while this has answer{3}. This might be valid, but the vaidator can''t check that (yet?) +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}''. Is it intended to change this? +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the maxLength of ''{2}'', so the max length cannot be greater than that +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS = The item with linkId ''{1}'' found in questionnaire ''{0}'' does not repeat, so it cannot repeat here +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED = The item with linkId ''{1}'' found in questionnaire ''{0}'' is required, so it must be required here +QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the type ''{2}'', and this cannot change to ''{3}'' +QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS = The validator can''t check derived item value set consistency (yet?) +QUESTIONNAIRE_Q_ITEM_NOT_DERIVED = No item with linkId ''{1}'' found in questionnaire ''{0}'' +QUESTIONNAIRE_Q_NO_DERIVATION_TYPE = The questionnaire ''{0}'' has no derivation type specified using the ''http://hl7.org/fhir/StructureDefinition/questionnaire-derivationType'' extension, so derivation has not been checked +QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE = The derivation extension has no value +QUESTIONNAIRE_Q_UNKNOWN_DERIVATION = The questionnaire ''{0}'' referred to in the derivation could not be found +Questionnaire_QR_Item_BadOption = The code ''{1}'' in the system ''{0}'' is not in the options value set ({2}) specified by the questionnaire. Terminology Error: {3} Questionnaire_QR_Item_Coding = Error {0} validating Coding against Questionnaire Options Questionnaire_QR_Item_CodingNoOptions = Cannot validate Coding option because no option list is provided Questionnaire_QR_Item_DateNoOptions = Cannot validate date answer option because no option list is provided @@ -104,7 +537,6 @@ Questionnaire_QR_Item_NotEnabled = Item has answer (2), even though it is not en Questionnaire_QR_Item_NotEnabled2 = Item has answer, even though it is not enabled (item id = ''{0}'') Questionnaire_QR_Item_NotFound = LinkId ''{0}'' not found in questionnaire Questionnaire_QR_Item_OnlyOneA = Only one response answer item with this linkId allowed -#The following error cannot occur for a single item. _one case left intentionally blank. Questionnaire_QR_Item_OnlyOneI_one = Questionnaire_QR_Item_OnlyOneI_other = Only one response item with the linkId {1} allowed - found {0} items Questionnaire_QR_Item_Order = Structural Error: items are out of order @@ -120,6 +552,11 @@ Questionnaire_Q_EnableWhen_IsInner = Questions with an enableWhen cannot refer t Questionnaire_Q_EnableWhen_NoLink = Questions with an enableWhen must have a value for the question link Questionnaire_Q_EnableWhen_NoTarget = Unable to find an item with the linkId ''{0}'' which is referenced in the enableWhen for ''{1}'' Questionnaire_Q_EnableWhen_Self = Target for this question enableWhen can''t reference itself +REFERENCE_REF_QUERY_INVALID = The query part of the conditional reference is not a valid query string ({0}) +REFERENCE_REF_SUSPICIOUS = The syntax of the reference ''{0}'' looks incorrect, and it should be checked +REFERENCE_REF_WRONGTARGET_LOAD = The type ''{2}'' is not a valid Target for the element {0} (must be {1}) +REPEAT_SLICING_IGNORED = The element at {0} defines the slicing but then an element in the slicing {2} repeats it, which is ignored +RESOURCETYPE_PROPERTY_WRONG_TYPE = The JSON element ''resourceType'' has the wrong JSON type: {0} Reference_REF_Aggregation = Reference is {0} which isn''t supported by the specified aggregation mode(s) for the reference ({1}) Reference_REF_BadTargetType = Invalid Resource target type. Found {0}, but expected one of ({1}) Reference_REF_BadTargetType2 = The type ''{0}'' implied by the reference URL {1} is not a valid Target for this element (must be one of {2}) @@ -135,11 +572,227 @@ Reference_REF_NoType = Unable to determine type of target resource Reference_REF_NotFound_Bundle = Bundled or contained reference not found within the bundle/resource {0} Reference_REF_ResourceType = Matching reference for reference {0} has resourceType {1} Reference_REF_WrongTarget = The type ''{0}'' is not a valid Target for this element (must be one of {1}) -REFERENCE_REF_WRONGTARGET_LOAD = The type ''{2}'' is not a valid Target for the element {0} (must be {1}) -Resource_RES_ID_Malformed_Length = Invalid Resource id: Too long ({0} chars) +Reference__refers_to_a__not_a_ValueSet = Reference {0} refers to a {1} not a ValueSet Resource_RES_ID_Malformed_Chars = Invalid Resource id: Invalid Characters (''{0}'') +Resource_RES_ID_Malformed_Length = Invalid Resource id: Too long ({0} chars) Resource_RES_ID_Missing = Resource requires an id, but none is present Resource_RES_ID_Prohibited = Resource has an id, but none is allowed +Resource_resolution_services_not_provided = Resource resolution services not provided +Resource_type_mismatch_for___ = Resource type mismatch for {0} / {1} +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_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}) +SD_ED_BIND_NO_BINDABLE = The element {0} has a binding, but no bindable types are present {1} +SD_ED_BIND_UNKNOWN_VS = The valueSet reference {1} on element {0} could not be resolved +SD_ED_SHOULD_BIND = The element {0} has a type that should have a binding ({1}), but no binding is present +SD_ED_SHOULD_BIND_WITH_VS = The element {0} has a type that should have a binding ({1}), but the binding has no value set +SD_ED_TYPE_NO_TARGET_PROFILE = Type {0} does not allow for target Profiles +SD_ED_TYPE_PROFILE_IS_MODIFIER = Profile {0} is for not for a modifier extension, but the {3} element is a modifier +SD_ED_TYPE_PROFILE_NOTYPE = Found profile {0}, but unable to determine the type it applies to +SD_ED_TYPE_PROFILE_NOT_MODIFIER = Profile {0} is for a modifier extension, but the {3} element is not a modifier +SD_ED_TYPE_PROFILE_UNKNOWN = Unable to resolve profile {0} +SD_ED_TYPE_PROFILE_WRONG = Profile {0} is for type {1}, but the {3} element has type {2} +SD_ED_TYPE_PROFILE_WRONG_TARGET = Profile {0} is for type {1}, which is not a {4} (which is required because the {3} element has type {2}) +SD_ED_TYPE_PROFILE_WRONG_TYPE_one = The type {0} is not in the list of allowed type {1} in the profile {2} +SD_ED_TYPE_PROFILE_WRONG_TYPE_other = The type {0} is not in the list of allowed types {1} in the profile {2} +SD_ED_TYPE_WRONG_TYPE_one = The element has a type {0} which is different to the type {1} on the base profile {2} +SD_ED_TYPE_WRONG_TYPE_other = The element has a type {0} which is not in the types {1} on the base profile {2} +SD_ELEMENT_FIXED_WRONG_TYPE = The base element has a fixed type of ''{0}'', so this element must have a fixed value of the same type, not ''{1}'' +SD_ELEMENT_NOT_IN_CONSTRAINT = The element definition for {1} has a property {0} which is not allowed in a profile +SD_ELEMENT_PATTERN_WRONG_TYPE = The base element has a pattern type of ''{0}'', so this element must have a pattern value of the same type, not ''{1}'' +SD_ELEMENT_REASON_DERIVED = , because the value must match the fixed value define in ''{0}'' +SD_EXTENSION_URL_MISMATCH = The fixed value for the extension URL is {1} which doesn''t match the canonical URL {0} +SD_EXTENSION_URL_MISSING = The value of Extension.url is not fixed to the extension URL {0} +SD_ILLEGAL_CHARACTERISTICS = This element has a {0} but the types {1} do not make this kind of constraint relevant +SD_MUST_HAVE_DERIVATION = StructureDefinition {0} must have a derivation, since it has a baseDefinition +SD_NESTED_MUST_SUPPORT_DIFF = The element {0} has types/profiles/targets that are marked as must support, but the element itself is not marked as must-support. The inner must-supports will be ignored unless the element inherits must-support = true +SD_NESTED_MUST_SUPPORT_SNAPSHOT = The element {0} has types/profiles/targets that are marked as must support, but the element itself is not marked as must-support +SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION = The type is {0} so an extension context invariants should not be specified +SD_NO_CONTEXT_WHEN_NOT_EXTENSION = The type is {0} so an extension context should not be specified +SD_NO_SLICING_ON_ROOT = Slicing is not allowed at the root of a profile +SD_NO_TYPES_OR_CONTENTREF = The element {0} has no assigned types, and no content reference +SD_NO_TYPE_CODE_ON_CODE = Snapshot for {1} element {0} has type.code without a value +SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE = The profile ''{0}'' has a different base ''{1}'' from that expected ''{2}'' +SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE = The profile ''{0}'' is not marked as an obligation profile +SD_OBGLIGATION_INHERITS_PROFILE_NO_TARGET = Unable to read a value from this extension +SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND = The profile ''{0}'' could not be found +SD_OBGLIGATION_PROFILE_DERIVATION = Only profiles that constrain another profile can be marked as an obligation profile +SD_OBGLIGATION_PROFILE_ILLEGAL = The element ''{0}'' has a property ''{1}'' which is not allowed in Obligation profiles +SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = The element ''{0}'' has a binding when the base element does not, and this is not allowed in Obligation profiles +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_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_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}) +SD_VALUE_TYPE_REPEAT_HINT = The repeating element has a {1}. The {1} will apply to all the repeats (this has not been clear to all users) +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_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 +SECURITY_STRING_CONTENT_WARNING = The string value contains text that looks like embedded HTML tags. If this content is rendered to HTML without appropriate post-processing, it may be a security risk +SLICING_CANNOT_BE_EVALUATED = Slicing cannot be evaluated: {0} +SM_DEPENDENT_PARAM_MODE_MISMATCH = The parameter {0} refers to the variable {1} but it''s mode is {2} which is not the same as the mode required for the group {3} +SM_DEPENDENT_PARAM_NOT_FOUND = The {1} parameter ''{0}'' was not found +SM_DEPENDENT_PARAM_TYPE_MISMATCH = The parameter ''{0}'' refers to the variable ''{1}'' but it''s type is ''{2}'' which is not compatible with the type required for the group ''{3}'', which is ''{4}'' (from map ''{5}'') +SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE = The group {0} has already been used with different parameters, so the type checking may be incorrect (other = [{1}]; this = [{2}]) +SM_GROUP_INPUT_DUPLICATE = The name {0} is already used +SM_GROUP_INPUT_MODE_INVALID = The group parameter {0} mode {1} isn''t valid +SM_GROUP_INPUT_MODE_MISMATCH = The type ''{0}'' has mode ''{1}'' which doesn''t match the structure definition mode of ''{2}'' +SM_GROUP_INPUT_NO_TYPE = Group {1} parameter {0} has no type, so the paths cannot be validated +SM_GROUP_INPUT_TYPE_NOT_DECLARED = The type {0} is not declared and is unknown +SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE = The type {0} which maps to the canonical URL {1} is not known, so the paths cannot be validated +SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE = The type {0} is not known, so the paths cannot be validated +SM_GROUP_NAME_DUPLICATE = The Group name ''{0}'' is already used +SM_IMPORT_NOT_FOUND = No maps were found to match {0} - validation may be wrong +SM_LIST_RULE_ID_ONLY_WHEN_SHARE = A ruleId should only be provided when the rule mode is ''share'' +SM_MATCHING_RULEGROUP_NOT_FOUND = Unable to find a default rule for the type pair source={0} and target={1} +SM_NAME_INVALID = The name {0} is not valid +SM_NO_LIST_MODE_NEEDED = A list mode should not be provided since this is a rule that can only be executed once +SM_NO_LIST_RULE_ID_NEEDED = A list ruleId should not be provided since this is a rule that can only be executed once +SM_ORPHAN_GROUP = The group {0} is not called successfully from within this mapping script, and does not have types on it''s inputs, so type verification is not possible +SM_RULEGROUP_NOT_FOUND = The group {0} could not be resolved +SM_RULEGROUP_PARAM_COUNT_MISMATCH = The group {0} is invoked using {1} parameters, but it actually takes {2} instead +SM_RULE_SOURCE_LISTMODE_REDUNDANT = The listMode value of {0} is redundant since the valid max is {0} +SM_RULE_SOURCE_MAX_REDUNDANT = The max value of {0} is redundant since the valid max is {0} +SM_RULE_SOURCE_MIN_REDUNDANT = The min value of {0} is redundant since the valid min is {0} +SM_RULE_SOURCE_UNASSIGNED = The source statement doesn''t assign a variable to the source - check that this is what is intended +SM_SOURCE_CONTEXT_UNKNOWN = The source context {0} is not known at this point +SM_SOURCE_PATH_INVALID = The source path {0}.{1} refers to the path {2} which is unknown +SM_SOURCE_TYPE_INVALID = The type {0} is not valid in the source context {1}. The possible types are [{2}] +SM_SOURCE_TYPE_NOT_FOUND = No source type was found, so the default group for this implied dependent rule could not be determined +SM_TARGET_CONTEXT_UNKNOWN = The target context ''{0}'' is not known at this point +SM_TARGET_NO_TRANSFORM_NO_CHECKED = When there is no transform, parameters can''t be provided +SM_TARGET_PATH_INVALID = The target path {0}.{1} refers to the path {2} which is unknown +SM_TARGET_PATH_MULTIPLE_MATCHES = The target path {0}.{1} refers to the path {2} which could be a reference to multiple elements ({3}). No further checking can be performed +SM_TARGET_TRANSFORM_EXPRESSION_ERROR = The FHIRPath expression passed as the evaluate parameter is invalid: {0} +SM_TARGET_TRANSFORM_MISSING_PARAMS = One or more parameters to the translate operation are missing (should be 3, was {0}) +SM_TARGET_TRANSFORM_NOT_CHECKED = Transform {0} not checked yet +SM_TARGET_TRANSFORM_OP_INVALID_TYPE = The {1} variable {0} type {2} is invalid - must be a primitive +SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE = The {1} variable {2} is unknown for the transform {0} +SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE = Transform {0} takes {1}-{2} parameter(s) but {3} were found +SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE = Transform {0} takes {1} parameter(s) but {2} were found +SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE = The parameter at index {0} could not be processed (type = {1}) +SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE = The value ''{0}'' for the output parameter is incorrect +SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND = The map_uri ''{0}'' could not be resolved, so the map can''t be checked +SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM = No value for the {0} parameter found +SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE = The source variable {0} is unknown +SM_TARGET_TRANSFORM_TYPE_UNKNOWN = The type ''{0}'' is not known +SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE = The value of the type parameter for {0} could not be processed +SM_TARGET_TRANSLATE_BINDING_SOURCE = The source variable does not have a required binding, so this concept map can''t be checked +SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED = The source value set includes one or more codes that the map does not translate: {0} +SM_TARGET_TRANSLATE_BINDING_TARGET = The target variable does not have a required binding, so this concept map can''t be checked +SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG = The map produces one or more codes that the target value set does not include: {0} +SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE = There was an error expanding the source value set, so this concept map can''t be checked: ''{0}'' +SM_TARGET_TRANSLATE_BINDING_VSE_TARGET = There was an error expanding the target value set, so this concept map can''t be checked: ''{0}'' +SM_TARGET_TRANSLATE_BINDING_VS_SOURCE = The source variable refers to an unknown value set ''{0}'', so this concept map can''t be checked +SM_TARGET_TRANSLATE_BINDING_VS_TARGET = The target variable refers to an unknown value set ''{0}'', so this concept map can''t be checked +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 +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} +STATUS_CODE_WARNING_CODE = The code ''{1}'' is valid but is {0} +Same_id_on_multiple_elements__in_ = Same id ''{0}'' on multiple elements {1}/{2} in {3} +Slice_encountered_midway_through_set_path___id___ = Slice encountered midway through set (path = {0}, id = {1}); {2} +Slicing_rules_on_differential__do_not_match_those_on_base___disciminator___ = Slicing rules on differential ({0}) do not match those on base ({1}) - discriminator @ {2} ({3}) +Slicing_rules_on_differential__do_not_match_those_on_base___order___ = Slicing rules on differential ({0}) do not match those on base ({1}) - order @ {2} ({3}) +Slicing_rules_on_differential__do_not_match_those_on_base___rule___ = Slicing rules on differential ({0}) do not match those on base ({1}) - rule @ {2} ({3}) +StructureDefinition__at__illegal_attempt_to_change_a_binding_from__to_ = StructureDefinition {0} at {1}: invalid attempt to change a binding from {2} to {3} +StructureDefinition__at__illegal_constrained_type__from__in_ = StructureDefinition {0} at {1}: invalid constrained type {2} from {3} in {4} +TERMINOLOGY_TX_HINT = {1} +TERMINOLOGY_TX_NOSVC_BOUND_EXT = Could not confirm that the codes provided are from the extensible value set {0} because there is no terminology service +TERMINOLOGY_TX_NOSVC_BOUND_REQ = Could not confirm that the codes provided are from the required value set {0} because there is no terminology service +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_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} +TERMINOLOGY_TX_UNKNOWN_OID = The OID ''{0}'' is not known, so the code can''t be validated +TERMINOLOGY_TX_WARNING = {1} +TX_GENERAL_CC_ERROR_MESSAGE = No valid coding was found for the value set ''{0}'' +TX_SERVER_NO_BATCH_RESPONSE = The server return null from a batch validation request +TYPE_CHECKS_FIXED_CC = The pattern [system {0}, code {1}, and display ''{2}''] defined in the profile {3} not found. Issues: {4} +TYPE_CHECKS_FIXED_CC_US = The pattern [system {0}, code {1}, display ''{2}'' and userSelected {5}] defined in the profile {3} not found. Issues: {4} +TYPE_CHECKS_PATTERN_CC = The pattern [system {0}, code {1}, and display ''{2}''] defined in the profile {3} not found. Issues: {4} +TYPE_CHECKS_PATTERN_CC_US = The pattern [system {0}, code {1}, display ''{2}'' and userSelected {5}] defined in the profile {3} not found. Issues: {4} +TYPE_SPECIFIC_CHECKS_CANONICAL_ABSOLUTE = Canonical URLs must be absolute URLs if they are not fragment references ({0}) +TYPE_SPECIFIC_CHECKS_CANONICAL_CONTAINED = Canonical URLs in contained resources must be absolute URLs if present ({0}) +TYPE_SPECIFIC_CHECKS_DT_ATT_NO_CONTENT = Attachments have data and/or url, or else SHOULD have either contentType and/or language +TYPE_SPECIFIC_CHECKS_DT_ATT_NO_FETCHER = Attachment size cannot be checked because the validator has not been set up to access the network (url = {0}) +TYPE_SPECIFIC_CHECKS_DT_ATT_SIZE_CORRECT = Stated Attachment Size {0} does not match actual attachment size {1} +TYPE_SPECIFIC_CHECKS_DT_ATT_SIZE_INVALID = Stated Attachment Size {0} is not valid +TYPE_SPECIFIC_CHECKS_DT_ATT_TOO_LONG = Attachment size is {0} bytes which exceeds the stated limit of {1} bytes +TYPE_SPECIFIC_CHECKS_DT_ATT_UNKNOWN_URL_SCHEME = Attachment size cannot be checked because the validator doesn''t understand how to access {0} +TYPE_SPECIFIC_CHECKS_DT_ATT_URL_ERROR = Attachment size cannot be checked because there was an error accesssing {0}: {1} +TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR = Base64 encoded values are not allowed to contain any whitespace (per RFC 4648). Note that non-validating readers are encouraged to accept whitespace anyway +TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING = Base64 encoded values SHOULD not contain any whitespace (per RFC 4648). Note that non-validating readers are encouraged to accept whitespace anyway +TYPE_SPECIFIC_CHECKS_DT_BASE64_TOO_LONG = Base64 size is {0} bytes which exceeds the stated limit of {1} bytes +TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS = There are multiple different potential matches for the url ''{0}''. It might be a good idea to fix to the correct version to reduce the likelihood of a wrong version being selected by an implementation/implementer. Using version ''{1}'', found versions: {2} +TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE = Canonical URL ''{0}'' does not resolve +TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC = Canonical URL ''{0}'' exists, but can''t be loaded, so it can''t be checked for validity +TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE = Canonical URL ''{0}'' refers to a resource that has the wrong type. Found {1} expecting one of {2} +TYPE_SPECIFIC_CHECKS_DT_DECIMAL_CHARS = Found {0} decimal places which exceeds the stated limit of {1} digits +TYPE_SPECIFIC_CHECKS_DT_IDENTIFIER_IETF_SYSTEM_VALUE = if identifier.system is ''urn:ietf:rfc:3986'', then the identifier.value must be a full URI (e.g. start with a scheme), not ''{0}'' +TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML = The markdown contains content that appears to be an embedded HTML tag starting at ''{0}''. This will (or SHOULD) be escaped by the presentation layer. The content should be checked to confirm that this is the desired behaviour +TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION = Exception evaluating regex ''{0}'' on type {1}: {2} +TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_TYPE_ALT = Neither the element value ''{0}'' or the formatted value ''{1}'' meet {2} regex ''{3}'' +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH = The maxValue in the profile has a system code of {0} which is different to the system code in the value {1} so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE = The maxValue in the profile has no code so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT = Unable to convert value {0} from unit {1} to maxValue unit {2} based on UCUM definitions; maximum value is not valid +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM = The maxValue in the profile has no system so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE = The maxValue in the profile doesn''t have an actual value, so the maximum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY = Found {0} of type {2} in the profile validating a Quantity (so it must be a Quantity) +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC = There is no UCUM service, and the UCUM codes aren''t identical, so the maximum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH = The maxValue in the profile has a system of {0} which is different to the system in the value {1} so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE = The value has no code so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM = The value has no system so the maximum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE = The quantity doesn''t have an actual value, so the maximum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG = The value in the instance ({2}) is greater than the specified maximum value ({3}) +TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM = The value in the instance ({0} {1}) is greater than the specified maxValue ({2} {3}) after UCUM conversion +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH = The minValue in the profile has a system code of {0} which is different to the system code in the value {1} so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE = The minValue in the profile has no code so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT = Unable to convert value {0} from unit {1} to minValue unit {2} based on UCUM definitions; minimum value is not valid +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM = The minValue in the profile has no system so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE = The minValue in the profile doesn''t have an actual value, so the minimum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY = Found {0} of type {2} in the profile validating a Quantity (so it must be a Quantity) +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC = There is no UCUM service, and the UCUM codes aren''t identical, so the minimum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH = The minValue in the profile has a system of {0} which is different to the system in the value {1} so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE = The value has no code so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM = The value has no system so the minimum value cannot be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE = The quantity doesn''t have an actual value, so the minimum value can''t be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG = The value in the instance ({2}) is less than the specified minimum value ({3}) +TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM = The value in the instance ({0} {1}) is less than the specified minValue ({2} {3}) after UCUM conversion +TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked +TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked, and the Quantity.unit ''{1}'' SHOULD contain the annotation (it does not) +TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked, and the Quantity.unit SHOULD contain the annotation +TYPE_SPECIFIC_CHECKS_DT_URL_EXAMPLE = Example URLs are not allowed in this context ({0}) +TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES = Hyperlink ''{0}'' at ''{1}'' for ''{2}'' resolves to multiple targets ({3}) +TYPE_SPECIFIER_ABSTRACT_TYPE = The Type specifier {1} specified an abstract type {0} +TYPE_SPECIFIER_ILLEGAL_TYPE = The Type specifier {1} specified an invalid type {0} +TYPE_SPECIFIER_NM_ABSTRACT_TYPE = No Type specifier matched, and the underlying type {0} is not abstract +TYPE_SPECIFIER_NM_ILLEGAL_TYPE = No Type specifier matched, and the underlying type {0} is not valid Terminology_PassThrough_TX_Message = {0} (for ''{1}#{2}'') Terminology_TX_Binding_CantCheck = Binding by URI reference cannot be checked Terminology_TX_Binding_Missing = Binding for CodeableConcept {0} missing @@ -150,9 +803,9 @@ Terminology_TX_Binding_NoSource2 = Binding has no source, so can''t be checked Terminology_TX_Code_NotValid = Code {0} is not a valid code in code system {1} Terminology_TX_Code_Unknown = Unknown Code ({0}#{1}) Terminology_TX_Code_ValueSet = No code provided, and a code is required from the value set {0} -Terminology_TX_Code_ValueSet_MISSING = No code provided, and a code is required from the value set Terminology_TX_Code_ValueSetMax = No code provided, and a code must be provided from the value set {0} (max value set {1}) Terminology_TX_Code_ValueSet_Ext = No code provided, and a code should be provided from the value set {0} +Terminology_TX_Code_ValueSet_MISSING = No code provided, and a code is required from the value set Terminology_TX_Coding_Count = Expected {0} but found {1} coding elements Terminology_TX_Confirm_1_CC = Could not confirm that the codings provided are in the value set {0} and a coding from this value set is required (class = {1}) 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}) @@ -166,7 +819,6 @@ Terminology_TX_Error_CodeableConcept = Error {0} validating CodeableConcept Terminology_TX_Error_CodeableConcept_Max = Error {0} validating CodeableConcept using maxValueSet Terminology_TX_Error_Coding1 = Error {0} validating Coding Terminology_TX_Error_Coding2 = Error {0} validating Coding: {1} -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_10 = The code provided is not in the maximum value set {0}, and a code from this value set is required) (code = {1}#{2}) Terminology_TX_NoValid_11 = The code provided is not in the maximum value set {0}, and a code from this value set is required) (code = {1}#{2}), error = {3}) Terminology_TX_NoValid_12 = The Coding provided ({2}) was not found in the value set {0}, and a code is required from this value set. {1} @@ -177,6 +829,7 @@ Terminology_TX_NoValid_15A = The value provided (''{0}'') could not be validated 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_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_4 = The Coding provided ({2}) was not found in the value set {0}, and a code is required from this value set {1} @@ -187,13 +840,26 @@ Terminology_TX_NoValid_8 = None of the codes provided are in the maximum value s Terminology_TX_NoValid_9 = The code provided ({2}) could not be validated against the maximum value set {0}, (error = {1}) Terminology_TX_System_Invalid = Invalid System URI: {0} Terminology_TX_System_NotKnown = A definition for CodeSystem ''{0}'' could not be found, 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_Relative = Coding.system must be an absolute reference, not a local reference Terminology_TX_System_Unknown = Unknown Code System ''{0}'' Terminology_TX_System_ValueSet = Invalid System URI: {0} - cannot use a value set URI as a system Terminology_TX_System_ValueSet2 = The Coding references a value set, not a code system (''{0}'') Terminology_TX_ValueSet_NotFound = ValueSet ''{0}'' not found Terminology_TX_ValueSet_NotFound_CS = Found a reference to a CodeSystem ''{0}'' where a ValueSet belongs +Text_should_not_be_present = Text should not be present (''{0}'') +The_base_snapshot_marks_a_slicing_as_closed_but_the_differential_tries_to_extend_it_in__at__ = The base snapshot marks a slicing as closed, but the differential tries to extend it in {0} at {1} ({2}) +This__cannot_be_parsed_as_a_FHIR_object_no_namespace = This ''{0}'' cannot be parsed (no namespace on the XML Root element) +This_base_property_must_be_an_Array_not_ = This base property must be an Array, not {0} +This_cannot_be_parsed_as_a_FHIR_object_no_name = This content cannot be parsed (no name) +This_does_not_appear_to_be_a_FHIR_resource_unknown_name_ = This content cannot be parsed (unknown or unrecognized resource name ''{0}'') +This_does_not_appear_to_be_a_FHIR_resource_unknown_namespacename_ = This content cannot be parsed (unknown or unrecognized XML Root element namespace/name ''{0}::{1}'') +This_element_does_not_match_any_known_slice_ = This element does not match any known slice {0} (this may not be a problem, but you should check that it''s not intended to match a slice) +This_property_must_be__not_ = The property {2} must be {0}, not {1} (at {3}) +This_property_must_be_a_Literal_not_ = This property must be a Literal, not {0} +This_property_must_be_a_URI_or_bnode_not_ = This property must be a URI or bnode, not {0} +This_property_must_be_an_Array_not_ = The property {1} must be a JSON Array, not {0} (at {2}) +This_property_must_be_an_object_not_ = This property must be an object, not {0} ({1} at {2}) +This_property_must_be_an_simple_value_not_ = This property must be a simple value, not {0} ({1} at {2}) Type_Specific_Checks_DT_Base64_Valid = The value ''{0}'' is not a valid Base64 value Type_Specific_Checks_DT_Boolean_Value = Boolean values must be ''true'' or ''false'' Type_Specific_Checks_DT_Code_WS = The code ''{0}'' is not valid (whitespace rules) @@ -202,10 +868,10 @@ Type_Specific_Checks_DT_DateTime_Regex = The instant ''{0}'' is not valid (by re Type_Specific_Checks_DT_DateTime_TZ = If a date has a time, it must have a timezone Type_Specific_Checks_DT_DateTime_Valid = Not a valid date/time ({0}) Type_Specific_Checks_DT_Date_Valid = Not a valid date ({0}) -Type_Specific_Checks_DT_Decimal_Range = The value ''{0}'' is outside the range of commonly/reasonably supported decimals -Type_Specific_Checks_DT_Decimal_Valid = The value ''{0}'' is not a valid decimal Type_Specific_Checks_DT_Decimal_GT = value is greater than permitted maximum value of {0} Type_Specific_Checks_DT_Decimal_LT = value is less than permitted minimum value of {0} +Type_Specific_Checks_DT_Decimal_Range = The value ''{0}'' is outside the range of commonly/reasonably supported decimals +Type_Specific_Checks_DT_Decimal_Valid = The value ''{0}'' is not a valid decimal Type_Specific_Checks_DT_ID_Valid = id value ''{0}'' is not valid Type_Specific_Checks_DT_Identifier_System = Identifier.system must be an absolute reference, not a local reference Type_Specific_Checks_DT_Instant_Valid = Not a valid instant ({0}) @@ -220,9 +886,7 @@ Type_Specific_Checks_DT_OID_Valid = OIDs must be valid ({0}) Type_Specific_Checks_DT_Primitive_Length = value is longer than permitted maximum length of {0} Type_Specific_Checks_DT_Primitive_NotEmpty = value cannot be empty Type_Specific_Checks_DT_Primitive_Regex = Element value ''{0}'' does not meet regex ''{1}'' -TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_EXCEPTION = Exception evaluating regex ''{0}'' on type {1}: {2} Type_Specific_Checks_DT_Primitive_Regex_Type = Element value ''{0}'' does not meet {1} regex ''{2}'' -TYPE_SPECIFIC_CHECKS_DT_PRIMITIVE_REGEX_TYPE_ALT = Neither the element value ''{0}'' or the formatted value ''{1}'' meet {2} regex ''{3}'' Type_Specific_Checks_DT_Primitive_ValueExt = Primitive types must have a value or must have child extensions Type_Specific_Checks_DT_Primitive_WS = Primitive types should not only be whitespace Type_Specific_Checks_DT_String_Length = value is longer than permitted maximum length of 1 MB (1048576 bytes) @@ -235,22 +899,179 @@ 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_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_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 = Unable to resolve the content reference {0} on element {1} (path = {2}) +UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT = Unable to resolve the content reference {0} on element {1} (path = {2}) in this context +UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE = The code system {1} referred to from value set {0} has a grammar, and the code might be valid in it +UNABLE_TO_VALIDATE_LOCALLY = Unable to validate code locally: {0} +UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED = The Unicode sequence has bi-di control characters which are not allowed in this context: {0} +UNICODE_BIDI_CONTROLS_CHARS_MATCH = The Unicode sequence has unterminated bi-di control characters (see CVE-2021-42574): {0} +UNICODE_XML_BAD_CHARS_one = This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters +UNICODE_XML_BAD_CHARS_other = This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters +UNKNOWN_CODESYSTEM = A definition for CodeSystem ''{0}'' could not be found, so the code cannot be validated +UNKNOWN_CODESYSTEM_VERSION = A definition for CodeSystem ''{0}'' version ''{1}'' could not be found, so the code cannot be validated. Valid versions: {2} +UNKNOWN_CODE_IN_FRAGMENT = Unknown Code ''{0}'' in the system ''{1}'' version ''{2}'' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment +UNRECOGNISED_PROPERTY_TYPE = Invalid JSON type {0} for the element {1}; valid types = {2} +UNRECOGNISED_PROPERTY_TYPE_WRONG = Invalid type {2} for the element {1}; valid types = {3}, JSON type = {0} +UNSUPPORTED_IDENTIFIER_PATTERN_NO_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = Unsupported: no properties with values found on type {2} for pattern for discriminator ({0}) for slice {1} +UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = Unsupported property {3} on type {2} for pattern for discriminator ({0}) for slice {1} +Unable_to_connect_to_terminology_server = Unable to connect to terminology server at {1}. Error = {0} +Unable_to_connect_to_terminology_server_Use_parameter_tx_na_tun_run_without_using_terminology_services_to_validate_LOINC_SNOMED_ICDX_etc_Error__ = Unable to connect to terminology server at {1}. Use parameter ''-tx n/a'' to run without using terminology services to validate LOINC, SNOMED, ICD-X etc. Error = {0} +Unable_to_find__resolving_discriminator__from_ = Unable to find {0} resolving discriminator {1} from {2} +Unable_to_find_base__for_ = Unable to find base {0} for {1} +Unable_to_find_base_definition_for_logical_model__from_ = Unable to find base definition for logical model: {0} from {1} +Unable_to_find_element_ = Unable to find element {0} +Unable_to_find_element__in_ = Unable to find element {0} in {1} +Unable_to_find_element_with_id_ = Unable to find element with id ''{0}'' +Unable_to_find_profile__at_ = Unable to find profile ''{0}'' at {1} +Unable_to_find_resourceType_property = Unable to find resourceType property +Unable_to_find_resource__at__resolving_discriminator__from_ = Unable to find resource {0} at {1} resolving discriminator {2} from {3} +Unable_to_handle_system__concept_filter_with_op__ = Unable to handle system {0} concept filter with op = {1} +Unable_to_handle_system__filter_with_property__ = Unable to handle system {0} filter with property = {1}, op = {2} +Unable_to_locate_the_profile__in_order_to_validate_against_it = Unable to locate the profile ''{0}'' in order to validate against it +Unable_to_process_request_for_resource_for___ = Unable to process request for resource for {0} / {1} +Unable_to_resolve_ = Unable to resolve the reference {0} +Unable_to_resolve_actual_type_ = Unable to resolve actual type {0} +Unable_to_resolve_element__in_profile_ = Unable to resolve element {0} in profile {1} +Unable_to_resolve_name_reference__at_path_ = Unable to resolve name reference {0} at path {1} +Unable_to_resolve_profile_ = Unable to resolve profile {0} +Unable_to_resolve_profile__in_element_ = Unable to resolve profile {0} in element {1} +Unable_to_resolve_reference_to_ = Unable to resolve reference to {0} +Unable_to_resolve_slice_matching__no_fixed_value_or_required_value_set = Unable to resolve slice matching - no fixed value or required value set +Unable_to_resolve_slice_matching__slice_matching_by_value_set_not_done = Unable to resolve slice matching - slice matching by value set not done +Unable_to_resolve_system__no_value_set = Unable to resolve system - no value set +Unable_to_resolve_system__value_set_expansion_has_multiple_systems = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set expansion has multiple systems +Unable_to_resolve_system__value_set_has_imports = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set has imports +Unable_to_resolve_system__value_set_has_include_with_filter = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4} +Unable_to_resolve_system__value_set_has_include_with_no_system = Unable to resolve system - value set {0} include #{1} has no system +Unable_to_resolve_system__value_set_has_include_with_unknown_system = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has system {3} which could not be found, and the server returned error {4} +Unable_to_resolve_system__value_set_has_multiple_matches = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set expansion has multiple matches: {2} +Unable_to_resolve_system__value_set_has_no_includes_or_expansion = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set has no includes or expansion +Unable_to_resolve_system__value_set_has_no_matches = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'' +Unable_to_resolve_value_Set_ = A definition for the value Set ''{0}'' could not be found +Unable_to_validate_code_without_using_server = Unable to validate code without using server because: {0} +Undefined_attribute__on__for_type__properties__ = Undefined attribute ''@{0}'' on {1} for type {2} +Undefined_element_ = Undefined element ''{0}'' at {1} +Unexpected_condition_in_differential_typeslicetypelistsize__10_and_implicit_slice_name_does_not_contain_a_valid_type__at_ = Unexpected condition in differential: implicit slice name does not contain a valid type (''{0}''?) at {1}/{2} +Unexpected_condition_in_differential_typeslicetypelistsize__1_at_ = Unexpected condition in differential: invalid type at {0}/{1} +Unexpected_datatype_for_rdfstype = Unexpected datatype for rdfs:type +Unhandled_situation_resource_is_profiled_to_more_than_one_option__cannot_sort_profile = Unhandled situation: resource is profiled to more than one option - cannot sort profile +Unknown_Code_in = Unknown code ''{0}'' in the CodeSystem ''{1}'' +Unknown_Code_in_Version = Unknown code ''{0}'' in the CodeSystem ''{1}'' version ''{2}'' +Unknown_Data_format_ = Unknown Data format ''{0}'' +Unknown_Date_format_ = Unknown Date format ''{0}'' +Unknown_resource_type_missing_rdfstype = Unknown resource type (missing rdfs:type) +Unknown_type__at_ = Unknown type {0} at {1} +Unrecognised_extension_context_ = Unrecognized extension context {0} +Unrecognised_predicate_ = Unrecognized predicate ''{0}'' +Unrecognised_property_ = Unrecognized property ''{0}'' +Unsupported_CodeableConcept_pattern__extensions_are_not_allowed__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - extensions are not allowed - for discriminator ({0}) for slice {1} +Unsupported_CodeableConcept_pattern__must_have_at_least_one_coding__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - must have at least one coding - for discriminator ({0}) for slice {1} +Unsupported_CodeableConcept_pattern__using_text__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - using text - for discriminator ({0}) for slice {1} +Unsupported_Identifier_pattern__extensions_are_not_allowed__for_discriminator_for_slice_ = Unsupported Identifier pattern - extensions are not allowed - for discriminator ({0}) for slice {1} +Unsupported_fixed_pattern_type_for_discriminator_for_slice__ = Unsupported fixed pattern type for discriminator ({0}) for slice {1}: {2} +Unsupported_fixed_value_type_for_discriminator_for_slice__ = Unsupported fixed value type for discriminator ({0}) for slice {1}: {2} +Unsupported_version_R1 = Unsupported version R1 +Unsupported_version_R2 = Unsupported version R2 +Unsupported_version_R2B = Unsupported version R2B +Unxpected_internal_condition__no_source_on_diff_element = Unexpected internal condition - no source on diff element +VALIDATION_HL7_PUBLISHER_MISMATCH = The nominated WG ''{0}'' means that the publisher should be ''{1}'' but ''{2}'' was found +VALIDATION_HL7_PUBLISHER_MISMATCH2 = The nominated WG ''{0}'' means that the publisher should be either ''{1}''or ''{2}'' but ''{3}'' was found +VALIDATION_HL7_PUBLISHER_MISSING = When HL7 is publishing a resource, the publisher must be provided, and for WG ''{0}'' it should be ''{1}'' +VALIDATION_HL7_WG_NEEDED = When HL7 is publishing a resource, the owning committee must be stated using the {0} extension +VALIDATION_HL7_WG_UNKNOWN = The nominated WG ''{0}'' is unknown +VALIDATION_HL7_WG_URL = The nominated WG ''{0}'' means that the contact url should be ''{1}'' but it was not found +VALIDATION_VAL_GLOBAL_PROFILE_UNKNOWN = Global Profile reference ''{0}'' from IG {1} could not be resolved, so has not been checked +VALIDATION_VAL_ILLEGAL_TYPE_CONSTRAINT = Invalid constraint in profile {0} at path {1} - cannot constrain to type {2} from base types {3} +VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED = Profile {1} identifies {2} as a dependency (using the extension http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies), but this profile could not be found +VALIDATION_VAL_PROFILE_MINIMUM_MAGIC = {0}: magic LOINC code {1} required, but not found (from {2}). Note that other Observation codes are allowed in addition to this required magic code +VALIDATION_VAL_PROFILE_OTHER_VERSION = Profile is for a different version of FHIR ({0}) so has been ignored +VALIDATION_VAL_PROFILE_SIGNPOST = Validate resource against profile {0} +VALIDATION_VAL_PROFILE_SIGNPOST_BASE = Validate resource against profile +VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM = Validate resource against profile {0} - provided as bundle param +VALIDATION_VAL_PROFILE_SIGNPOST_DEP = Validate resource against profile {0} (per http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies in {1}) +VALIDATION_VAL_PROFILE_SIGNPOST_GLOBAL = Validate resource against profile {0} - a global profile in {1} +VALIDATION_VAL_PROFILE_SIGNPOST_META = Validate resource against profile {0} (per meta) +VALIDATION_VAL_PROFILE_SIGNPOST_OBS = Validate Observation against the {1} profile ({0}) which is required by the FHIR specification because the {2} code {3} was found +VALIDATION_VAL_PROFILE_THIS_VERSION_OK = Profile for this version of FHIR - all OK +VALIDATION_VAL_PROFILE_THIS_VERSION_OTHER = Profile is for this version of FHIR, but is an invalid type {0} +VALIDATION_VAL_PROFILE_UNKNOWN_ERROR = Profile reference ''{0}'' has not been checked because it could not be found, and fetching it resulted in the error {1} +VALIDATION_VAL_PROFILE_UNKNOWN_ERROR_NETWORK = Profile reference ''{0}'' has not been checked because it could not be found, and the host {1} cannot be found +VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY = Profile reference ''{0}'' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles +VALIDATION_VAL_STATUS_INCONSISTENT = The resource status ''{0}'' and the standards status ''{1}'' are not consistent +VALIDATION_VAL_STATUS_INCONSISTENT_HINT = The resource status ''{0}'' and the standards status ''{1}'' may not be consistent and should be reviewed +VALUESET_BAD_FILTER_OP = The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2} +VALUESET_BAD_FILTER_VALUE_BOOLEAN = The value for a filter based on property ''{0}'' must be either ''true'' or ''false'', not ''{1}'' +VALUESET_BAD_FILTER_VALUE_CODE = The value for a filter based on property ''{0}'' must be a valid code, not ''{1}'' +VALUESET_BAD_FILTER_VALUE_CODED = The value for a filter based on property ''{0}'' must be in the format system(|version)#code, not ''{1}'' +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_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 +VALUESET_BAD_FILTER_VALUE_VALID_REGEX = The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'') +VALUESET_BAD_PROPERTY_NO_REGEX = Cannot apply a regex filter to the property ''{0}'' (usually regex filters are applied to the codes, or a named property of the code system) +VALUESET_CIRCULAR_REFERENCE = Found a circularity pointing to {0} processing ValueSet with pathway {1} +VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED = This include has some concepts with displays and some without - check that this is what is intended +VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED = This SNOMED-CT based include has some concepts with semantic tags (FSN terms) and some without (preferred terms) - check that this is what is intended (examples for FSN: {0} and examples for no FSN: {1}) +VALUESET_EXAMPLE_SYSTEM_ERROR = Example System ''{0}'' specified, which is illegal. Concepts and Filters can''t be checked +VALUESET_EXAMPLE_SYSTEM_HINT = Example System ''{0}'' specified, so Concepts and Filters can''t be checked +VALUESET_IMPORT_UNION_INTERSECTION = This value set has a single include with multiple imported value sets. Per issue https://jira.hl7.org/browse/FHIR-25179, there has been confusion in the past whether these value sets are unioned or intersectioned. If this value set is contained in a package published prior to March 31 2022, it will be treated as a union, otherwise it will be treated as an intersection. If want a union, split the value set imports across multiple includes +VALUESET_INCLUDE_CSVER_CONTENT = The value set references CodeSystem ''{0}'' version ''{2}'' which has status ''{1}'' +VALUESET_INCLUDE_CSVER_MULTI_FOUND = Multiple matching contained code systems found for system ''{0}'' version ''{1}'' +VALUESET_INCLUDE_CSVER_NOT_FOUND = No matching contained code system found for system ''{0}'' version ''{1}'' +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_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}) +VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = The code ''{2}'' is not valid in the system {0} version {1} ({2}) +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_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_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_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}) +VALUESET_TOO_COSTLY_COUNT = The value set ''{0}'' expansion has {2} codes, which is too many to display ({1}) +VALUESET_TOO_COSTLY_TIME = The value set ''{0}'' expansion took too long to process (>{1}sec) +VALUESET_UNC_SYSTEM_WARNING = Unknown System ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1}) +VALUESET_UNC_SYSTEM_WARNING_VER = Unknown System/Version ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1}) +VALUESET_UNKNOWN_FILTER_PROPERTY = The property ''{0}'' is not known for the system ''{1}'', so may not be understood by the terminology ecosystem. Known properties for this system: {2} +VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS = No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2} Validation_BUNDLE_Message = The first entry in a message must be a MessageHeader Validation_VAL_Content_Unknown = Unrecognized Content {0} Validation_VAL_NoType = Unknown type {0} Validation_VAL_Profile_MatchMultiple = Profile {0}, Element matches more than one slice - {1}, {2} -## for the next 4 messages, the available parameters are: 0: profile url, 1: ed.path, 2: ed.id, 3: ed.sliceName, 4: ed.label, 5: element.path, 6: ed.min and optionally 7: actual count Validation_VAL_Profile_Maximum_one = {3}: max allowed = {7}, but found {0} (from {1}) Validation_VAL_Profile_Maximum_other = {3}: max allowed = {7}, but found {0} (from {1}) +Validation_VAL_Profile_Minimum_SLICE_one = Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice +Validation_VAL_Profile_Minimum_SLICE_other = Slice ''{3}'': minimum required = {0}, but only found {7} (from {1}) Validation_VAL_Profile_Minimum_one = {3}: minimum required = {7}, but only found {0} (from {1}) Validation_VAL_Profile_Minimum_other = {3}: minimum required = {7}, but only found {0} (from {1}) -VALIDATION_VAL_PROFILE_MINIMUM_MAGIC = {0}: magic LOINC code {1} required, but not found (from {2}). Note that other Observation codes are allowed in addition to this required magic code +Validation_VAL_Profile_MultipleMatches_one = Found multiple matching profiles among {0} choice: {1} +Validation_VAL_Profile_MultipleMatches_other = Found multiple matching profiles among {0} choices: {1} Validation_VAL_Profile_NoCheckMax_one = {3}: Found {0} match, but unable to check max allowed ({2}) due to lack of slicing validation (from {1}) Validation_VAL_Profile_NoCheckMax_other = {3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1}) Validation_VAL_Profile_NoCheckMin_one = {3}: Found {0} match, but unable to check minimum required ({2}) due to lack of slicing validation (from {1}) Validation_VAL_Profile_NoCheckMin_other = {3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1}) -Validation_VAL_Profile_MultipleMatches_one = Found multiple matching profiles among {0} choice: {1} -Validation_VAL_Profile_MultipleMatches_other = Found multiple matching profiles among {0} choices: {1} Validation_VAL_Profile_NoDefinition = No definition found for resource type ''{0}'' Validation_VAL_Profile_NoMatch = Unable to find a match for the specified profile among choices: {0} Validation_VAL_Profile_NoSnapshot = StructureDefinition {0} has no snapshot - validation is against the snapshot, so it must be provided @@ -260,888 +1081,55 @@ Validation_VAL_Profile_NotSlice = This element does not match any known slice {0 Validation_VAL_Profile_OutOfOrder = As specified by profile {0}, Element ''{1}'' is out of order (found after {2}) Validation_VAL_Profile_SliceOrder = As specified by profile {0}, Element ''{1}'' is out of order in ordered slice Validation_VAL_Profile_Unknown = Profile reference ''{0}'' has not been checked because it could not be found -VALIDATION_VAL_PROFILE_UNKNOWN_NOT_POLICY = Profile reference ''{0}'' has not been checked because it could not be found, and the validator is set to not fetch unknown profiles -VALIDATION_VAL_PROFILE_UNKNOWN_ERROR = Profile reference ''{0}'' has not been checked because it could not be found, and fetching it resulted in the error {1} -VALIDATION_VAL_PROFILE_UNKNOWN_ERROR_NETWORK = Profile reference ''{0}'' has not been checked because it could not be found, and the host {1} cannot be found +Validation_VAL_Profile_WrongType = Specified profile type was ''{0}'' in profile ''{2}'', but found type ''{1}'' +Validation_VAL_Profile_WrongType2 = Type mismatch processing profile {0} at path {1}: The element type is {4}, but the profile {3} is for a different type {2} Validation_VAL_Unknown_Profile = Unknown profile {0} -VALIDATION_VAL_PROFILE_DEPENDS_NOT_RESOLVED = Profile {1} identifies {2} as a dependency (using the extension http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies), but this profile could not be found +Version_mismatch_The_context_has_version__loaded_and_the_new_content_being_loaded_is_version_ = Version mismatch. The context has version {0} loaded, and the new content being loaded is version {1} +Wrong_namespace__expected_ = Wrong namespace - expected ''{0}'' +Wrong_type_for_resource = Wrong type for resource +XHTML_IDREF_NOT_FOUND = The target of the HTML idref attribute ''{0}'' was not found in the resource +XHTML_IDREF_NOT_MULTIPLE_MATCHES = Multiple matching targets for the HTML idref attribute ''{0}'' were found in the resource +XHTML_URL_DATA_DATA_INVALID = The data should be valid base64 content for a data: URL: {0} +XHTML_URL_DATA_DATA_INVALID_COMMA = Comma found in data portion of data URL: {0} +XHTML_URL_DATA_MIMETYPE = The mimetype portion of the data: URL is not valid ({1}) in URL: {0} +XHTML_URL_DATA_NO_DATA = No data found in data: URL +XHTML_URL_EMPTY = URL is empty +XHTML_URL_INVALID = The URL is not valid because ''({1})'': {0} +XHTML_URL_INVALID_CHARS_one = URL contains Invalid Character ({1}) +XHTML_URL_INVALID_CHARS_other = URL contains {0} Invalid Characters ({1}) XHTML_XHTML_Attribute_Illegal = Invalid attribute name in the XHTML (''{0}'' on ''{1}'') +XHTML_XHTML_DOCTYPE_ILLEGAL = Malformed XHTML: Found a DocType declaration, and these are not allowed (XXE security vulnerability protection) +XHTML_XHTML_ELEMENT_ILLEGAL_IN_PARA = Invalid element name inside a paragraph in the XHTML (''{0}'') XHTML_XHTML_Element_Illegal = Invalid element name in the XHTML (''{0}'') XHTML_XHTML_Entity_Illegal = Invalid entity in the XHTML (''{0}'') XHTML_XHTML_Image_Reference_Illegal = Invalid Image Reference in the XHTML (''{0}'') XHTML_XHTML_NS_InValid = Wrong namespace on the XHTML (''{0}'', should be ''{1}'') XHTML_XHTML_Name_Invalid = Wrong name on the XHTML (''{0}'') - must start with div +XSI_TYPE_UNNECESSARY = xsi:type is unnecessary at this point +XSI_TYPE_WRONG = The xsi:type value ''{0}'' is wrong (should be ''{1}''). Note that xsi:type is unnecessary at this point _DT_Fixed_Wrong = Value is ''{0}'' but must be ''{1}''{2} -All_observations_should_have_an_effectiveDateTime_or_an_effectivePeriod = Best Practice Recommendation: In general, all observations should have an effective[x] ({0}) -All_observations_should_have_a_performer = Best Practice Recommendation: In general, all observations should have a performer -All_observations_should_have_a_subject = Best Practice Recommendation: In general, all observations should have a subject -Unable_to_resolve_slice_matching__no_fixed_value_or_required_value_set = Unable to resolve slice matching - no fixed value or required value set -Unable_to_resolve_slice_matching__slice_matching_by_value_set_not_done = Unable to resolve slice matching - slice matching by value set not done -Problem_processing_expression__in_profile__path__ = Problem processing expression ''{0}'' in profile ''{1}'' at path ''{2}'': {3} -Unable_to_find_element_with_id_ = Unable to find element with id ''{0}'' -Slice_encountered_midway_through_set_path___id___ = Slice encountered midway through set (path = {0}, id = {1}); {2} -Unable_to_resolve_actual_type_ = Unable to resolve actual type {0} -Unsupported_version_R1 = Unsupported version R1 -Unsupported_version_R2 = Unsupported version R2 -Unsupported_version_R2B = Unsupported version R2B -Unsupported_fixed_value_type_for_discriminator_for_slice__ = Unsupported fixed value type for discriminator ({0}) for slice {1}: {2} -Unsupported_CodeableConcept_pattern__extensions_are_not_allowed__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - extensions are not allowed - for discriminator ({0}) for slice {1} -Unsupported_CodeableConcept_pattern__must_have_at_least_one_coding__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - must have at least one coding - for discriminator ({0}) for slice {1} -Unsupported_CodeableConcept_pattern__using_text__for_discriminator_for_slice_ = Unsupported CodeableConcept pattern - using text - for discriminator ({0}) for slice {1} -Unsupported_Identifier_pattern__extensions_are_not_allowed__for_discriminator_for_slice_ = Unsupported Identifier pattern - extensions are not allowed - for discriminator ({0}) for slice {1} -Unsupported_fixed_pattern_type_for_discriminator_for_slice__ = Unsupported fixed pattern type for discriminator ({0}) for slice {1}: {2} -Problem_evaluating_slicing_expression_for_element_in_profile__path__fhirPath___ = Problem evaluating slicing expression for element in profile {0} path {1} (fhirPath = {2}): {3} -Could_not_match_discriminator_for_slice_in_profile_one = Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions -Could_not_match_discriminator_for_slice_in_profile_other = Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions -Discriminator__is_based_on_element_existence_but_slice__neither_sets_min1_or_max0 = Discriminator ({0}) is based on element existence, but slice {1} neither sets min>=1 or max=0 -Profile_based_discriminators_must_have_a_type_with_a_profile__in_profile_ = Profile based discriminators must have a type with a profile ({0} in profile {1}) -#The following error cannot occur for a single item. _one case left intentionally blank. -Profile_based_discriminators_must_have_only_one_type__in_profile_one = -Profile_based_discriminators_must_have_only_one_type__in_profile_other = Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types -Profile_based_discriminators_must_have_a_type__in_profile_ = Profile based discriminators must have a type ({0} in profile {1}) -Discriminator__is_based_on_type_but_slice__in__has_no_types = Discriminator ({0}) is based on type, but slice {1} in {2} has no types -#The following error cannot occur for a single item. _one case left intentionally blank. -Discriminator__is_based_on_type_but_slice__in__has_multiple_types_one = -Discriminator__is_based_on_type_but_slice__in__has_multiple_types_other = Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4} -Found__items_for__resolving_discriminator__from_ = Found {0} items for {1} resolving discriminator {2} from {3} -Unable_to_find__resolving_discriminator__from_ = Unable to find {0} resolving discriminator {1} from {2} -Unable_to_find_resource__at__resolving_discriminator__from_ = Unable to find resource {0} at {1} resolving discriminator {2} from {3} -No_reference_resolving_discriminator__from_ = No reference resolving discriminator {0} from {1} -Unable_to_resolve_element__in_profile_ = Unable to resolve element {0} in profile {1} -Unable_to_resolve_profile_ = Unable to resolve profile {0} -Resource_resolution_services_not_provided = Resource resolution services not provided -Unrecognised_extension_context_ = Unrecognized extension context {0} -Unable_to_locate_the_profile__in_order_to_validate_against_it = Unable to locate the profile ''{0}'' in order to validate against it -Reference__refers_to_a__not_a_ValueSet = Reference {0} refers to a {1} not a ValueSet -Not_done_yet_ValidatorHostServicesconformsToProfile_when_item_is_not_an_element = Not done yet (ValidatorHostServices.conformsToProfile), when item is not an element -Not_supported_yet = Not supported yet -Unable_to_resolve_ = Unable to resolve the reference {0} -Not_done_yet__resolve__locally_2 = Not done yet - resolve {0} locally (2) -Not_done_yet_ValidatorHostServicesexecuteFunction = Not done yet (ValidatorHostServices.executeFunction) -Not_done_yet_ValidatorHostServicescheckFunction = Not done yet (ValidatorHostServices.checkFunction) -Not_done_yet_ValidatorHostServicesresolveFunction_ = Not done yet (ValidatorHostServices.resolveFunction): {0} -Unable_to_find_base_definition_for_logical_model__from_ = Unable to find base definition for logical model: {0} from {1} -Same_id_on_multiple_elements__in_ = Same id ''{0}'' on multiple elements {1}/{2} in {3} -No_path_on_element_Definition__in_ = No path on element Definition {0} in {1} -needs_a_snapshot = Needs a snapshot -not_the_right_kind_of_structure_to_generate_schematrons_for = Not the right kind of structure to generate schematrons for -Not_handled_yet_sortElements_ = Not handled yet (sortElements: {0}:{1}) -Unable_to_resolve_profile__in_element_ = Unable to resolve profile {0} in element {1} -Cant_have_children_on_an_element_with_a_polymorphic_type__you_must_slice_and_constrain_the_types_first_sortElements_ = Can''t have children on an element with a polymorphic type - you must slice and constrain the types first (sortElements: {0}:{1}) -Unable_to_find_profile__at_ = Unable to find profile ''{0}'' at {1} -Unhandled_situation_resource_is_profiled_to_more_than_one_option__cannot_sort_profile = Unhandled situation: resource is profiled to more than one option - cannot sort profile -Internal_recursion_detection_find_loop_path_recursion____check_paths_are_valid_for_path_ = Internal recursion detection: find() loop path recursion > {0} - check paths are valid (for path {1}/{2}) -Internal_error___type_not_known_ = Internal error - type not known {0} -Unable_to_find_element_ = Unable to find element {0} -Error_generating_table_for_profile__ = Error generating table for profile {0}: {1} -StructureDefinition__at__illegal_constrained_type__from__in_ = StructureDefinition {0} at {1}: invalid constrained type {2} from {3} in {4} -Error_at__The_target_profile__is_not__valid_constraint_on_the_base_ = Error at {0}#{1}: The target profile {2} is not a valid constraint on the base ({3}) -Error_in_profile__at__Base_isSummary___derived_isSummary__ = Error in profile {0} at {1}: Base isSummary = {2}, derived isSummary = {3} -StructureDefinition__at__illegal_attempt_to_change_a_binding_from__to_ = StructureDefinition {0} at {1}: invalid attempt to change a binding from {2} to {3} -Unexpected_condition_in_differential_typeslicetypelistsize__1_at_ = Unexpected condition in differential: invalid type at {0}/{1} -Unexpected_condition_in_differential_typeslicetypelistsize__10_and_implicit_slice_name_does_not_contain_a_valid_type__at_ = Unexpected condition in differential: implicit slice name does not contain a valid type (''{0}''?) at {1}/{2} -Attempt_to_use_a_snapshot_on_profile__as__before_it_is_generated = Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated -null_min = Null min -_has_children__for_type__in_profile__but_cant_find_type = {0} has children ({1}) for type {2} in profile {3}, but can''t find type _has_children__and_multiple_types__in_profile_ = {0} has children ({1}) and multiple types ({2}) in profile {3} -Adding_wrong_path = Adding wrong path -Named_items_are_out_of_order_in_the_slice = Named items are out of order in the slice -The_base_snapshot_marks_a_slicing_as_closed_but_the_differential_tries_to_extend_it_in__at__ = The base snapshot marks a slicing as closed, but the differential tries to extend it in {0} at {1} ({2}) -Not_done_yet = Not done yet -Unknown_type__at_ = Unknown type {0} at {1} -Differential_walks_into____but_the_base_does_not_and_there_is_not_a_single_fixed_type_The_type_is__This_is_not_handled_yet = Differential walks into ''{0} (@ {1})'', but the base does not, and there is not a single fixed type. The type is {2}. This is not handled yet -Slicing_rules_on_differential__do_not_match_those_on_base___rule___ = Slicing rules on differential ({0}) do not match those on base ({1}) - rule @ {2} ({3}) -Slicing_rules_on_differential__do_not_match_those_on_base___disciminator___ = Slicing rules on differential ({0}) do not match those on base ({1}) - discriminator @ {2} ({3}) -Slicing_rules_on_differential__do_not_match_those_on_base___order___ = Slicing rules on differential ({0}) do not match those on base ({1}) - order @ {2} ({3}) -not_done_yet__slicing__types__ = Not done yet - slicing / types @ {0} -Invalid_slicing__there_is_more_than_one_type_slice_at__but_one_of_them__has_min__1_so_the_other_slices_cannot_exist=Invalid slicing: there is more than one type slice at {0}, but one of them ({1}) has min = 1, so the other slices cannot exist -Did_not_find_type_root_ = Did not find type root: {0} -Error_at_path__Slice_for_type__has_wrong_type_ = Error at path {0}: Slice for type ''{1}'' has wrong type ''{2}'' -Error_at_path__Slice_for_type__has_more_than_one_type_ = Error at path {0}: Slice for type ''{1}'' has more than one type ''{2}'' -Error_at_path__Slice_name_must_be__but_is_ = Error at path {0}: Slice name must be ''{1}'' but is ''{2}'' -Error_at_path__in__Type_slicing_with_slicingdiscriminatorpath__this = Error at path {0} in {1}: Type slicing with slicing.discriminator.path != ''$this'' -Error_at_path__in__Type_slicing_with_slicingdiscriminatortype__type = Error at path {0} in {1}: Type slicing with slicing.discriminator.type != ''type'' -Error_at_path__in__Type_slicing_with_slicingdiscriminatorcount__1 = Error at path {0} in {1}: Type slicing with slicing.discriminator.count() > 1 -Error_at_path__in__Type_slicing_with_slicingordered__true = Error at path {0} in {1}: Type slicing with slicing.ordered = true -Adding_wrong_path_in_profile___vs_ = Adding wrong path in profile {0}: {1} vs {2} +_has_children__for_type__in_profile__but_cant_find_type = {0} has children ({1}) for type {2} in profile {3}, but can''t find type _has_no_children__and_no_types_in_profile_ = {0} has no children ({1}) and no types in profile {2} -Did_not_find_single_slice_ = Did not find single slice: {0} -Differential_does_not_have_a_slice__b_of_____in_profile_ = Differential in profile {5} does not have a slice at {6} (on {0}, position {1} of {2} / {3} / {4}) -Attempt_to_a_slice_an_element_that_does_not_repeat__from__in_ = Attempt to a slice an element that does not repeat: {0}/{1} from {2} in {3}, at element {4} (slice = {5}) -Unable_to_resolve_reference_to_ = Unable to resolve reference to {0} -Unable_to_find_element__in_ = Unable to find element {0} in {1} -Unable_to_find_base__for_ = Unable to find base {0} for {1} -Adding_wrong_path__outcomegetPath___resultPathBase__ = Adding wrong path - outcome.getPath() = {0}, resultPathBase = {1} -Illegal_path__in_differential_in__illegal_characters_ = Invalid path ''{0}'' in differential in {1}: invalid characters [] -Illegal_path__in_differential_in__illegal_character_ = Invalid path ''{0}'' in differential in {1}: invalid character ''{2}'' -Illegal_path__in_differential_in__no_unicode_whitespace = Invalid path ''{0}'' in differential in {1}: no unicode whitespace -Illegal_path__in_differential_in__name_portion_exceeds_64_chars_in_length = Invalid path ''{0}'' in differential in {1}: name portion exceeds 64 chars in length -Illegal_path__in_differential_in__name_portion_mising_ = Invalid path ''{0}'' in differential in {1}: name portion missing (''..'') -Illegal_path__in_differential_in__must_start_with_ = Invalid path ''{0}'' in input differential in {1}: must start with {2}.{3} -No_path_value_on_element_in_differential_in_ = No path value on element in differential in {0} -No_path_on_element_in_differential_in_ = No path on element in differential in {0} -Unxpected_internal_condition__no_source_on_diff_element = Unexpected internal condition - no source on diff element -type_on_first_snapshot_element_for__in__from_ = Type on first snapshot element for {0} in {1} from {2} -type_on_first_differential_element = Type on first differential element! -Circular_snapshot_references_detected_cannot_generate_snapshot_stack__ = Circular snapshot references detected; cannot generate snapshot (stack = {0}) -Base__Derived_profiles_have_different_types____vs___ = Base & Derived profiles have different types ({0} = {1} vs {2} = {3}) -Derived_profile__has_no_derivation_value_and_so_cant_be_processed = Derived profile {0} has no derivation value and so can''t be processed -Derived_profile__has_no_type = Derived profile {0} has no type -Base_profile__has_no_type = Base profile {0} has no type -no_derived_structure_provided = No derived structure provided -no_base_profile_provided = No base profile provided -element_id__null__on_ = Element id = null: {0} on {1} -element__null_ = Element = null: {0} -getSliceList_should_only_be_called_when_the_element_has_slicing = getSliceList should only be called when the element has slicing -Unable_to_resolve_name_reference__at_path_ = Unable to resolve name reference {0} at path {1} -Details_for__matching_against_Profile_ = Details for {0} matching against profile {1} -Does_not_match_slice_ = Does not match slice ''{0}'' (discriminator: {1}) -Profile__does_not_match_for__because_of_the_following_profile_issues__ = Profile {0} does not match for {1} because of the following profile issues: {2} -This_element_does_not_match_any_known_slice_ = This element does not match any known slice {0} (this may not be a problem, but you should check that it''s not intended to match a slice) defined_in_the_profile = Defined in the profile -This_does_not_appear_to_be_a_FHIR_resource_unknown_name_ = This content cannot be parsed (unknown or unrecognized resource name ''{0}'') -This_cannot_be_parsed_as_a_FHIR_object_no_name = This content cannot be parsed (no name) -This_does_not_appear_to_be_a_FHIR_resource_unknown_namespacename_ = This content cannot be parsed (unknown or unrecognized XML Root element namespace/name ''{0}::{1}'') -This__cannot_be_parsed_as_a_FHIR_object_no_namespace = This ''{0}'' cannot be parsed (no namespace on the XML Root element) -Unable_to_find_resourceType_property = Unable to find resourceType property -Error_parsing_JSON_the_primitive_value_must_be_a_string = Error parsing JSON: the primitive value must be a string -Error_parsing_JSON_the_primitive_value_must_be_a_number = Error parsing JSON: the primitive value must be a number -Error_parsing_JSON_the_primitive_value_must_be_a_boolean = Error parsing JSON: the primitive value must be a boolean -Error_parsing_XHTML_ = Error parsing XHTML: {0} -This_property_must_be_an_object_not_ = This property must be an object, not {0} ({1} at {2}) -This_property_must_be_an_simple_value_not_ = This property must be a simple value, not {0} ({1} at {2}) -This_property_must_be__not_ = The property {2} must be {0}, not {1} (at {3}) -This_property_must_be_an_Array_not_ = The property {1} must be a JSON Array, not {0} (at {2}) -OBJECT_CANNOT_BE_KEYED_ARRAY_CHILD_COUNT = This object cannot be an keyed Array in Json because it does not have two children in the definitions (children = {0}) -OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_NAME = This object is defined as a keyed Array in Json but the definition does not name the first child element as the key (children = {0}) -OBJECT_CANNOT_BE_KEYED_ARRAY_PROP_TYPE = This object is defined as a keyed Array in Json but the key property named in the definitions is not a primitive type (children = {0}, type = {1}) -OBJECT_CANNOT_BE_KEYED_ARRAY_NO_CHOICE = This object is defined as a keyed Array in Json but the value property named in the definitions is a choice - this is not supported (value property = {0}) -OBJECT_CANNOT_BE_KEYED_ARRAY_NO_LIST = This object is defined as a keyed Array in Json but the value property named in the definitions is a list - this is not supported (value property = {0}) -Unrecognised_property_ = Unrecognized property ''{0}'' -Object_must_have_some_content = Object must have some content -Error_parsing_JSON_ = Error parsing JSON: {0} -Node_type__is_not_allowed = Node type {0} is not allowed -CDATA_is_not_allowed = CDATA is not allowed -Undefined_element_ = Undefined element ''{0}'' at {1} -Undefined_attribute__on__for_type__properties__ = Undefined attribute ''@{0}'' on {1} for type {2} -Text_should_not_be_present = Text should not be present (''{0}'') -Wrong_namespace__expected_ = Wrong namespace - expected ''{0}'' -Element_must_have_some_content = Element must have some content -No_processing_instructions_allowed_in_resources = No processing instructions allowed in resources -Unknown_resource_type_missing_rdfstype = Unknown resource type (missing rdfs:type) -reference_to__cannot_be_resolved = reference to {0} cannot be resolved -This_property_must_be_a_URI_or_bnode_not_ = This property must be a URI or bnode, not {0} -This_property_must_be_a_Literal_not_ = This property must be a Literal, not {0} -Unrecognised_predicate_ = Unrecognized predicate ''{0}'' -Error_parsing_Turtle_ = Error parsing Turtle: {0} -Unexpected_datatype_for_rdfstype = Unexpected datatype for rdfs:type -Attempt_to_replace_element_name_for_a_nonchoice_type=Attempt to replace element name for a non-choice type -Wrong_type_for_resource = Wrong type for resource -Contained_resource_does_not_appear_to_be_a_FHIR_resource_unknown_name_ = Contained resource does not appear to be a FHIR resource (unknown name ''{0}'') -Unknown_Date_format_ = Unknown Date format ''{0}'' -Unknown_Data_format_ = Unknown Data format ''{0}'' -No_type_found_on_ = No type found on ''{0}'' -error_writing_number__to_JSON = Error writing number ''{0}'' to JSON -Unable_to_process_request_for_resource_for___ = Unable to process request for resource for {0} / {1} -Resource_type_mismatch_for___ = Resource type mismatch for {0} / {1} -not_done_yet_cant_fetch_ = Not done yet: can''t fetch {0} -Attempt_to_use_Terminology_server_when_no_Terminology_server_is_available = Attempt to use Terminology server when no Terminology server is available -No_ExpansionProfile_provided = No ExpansionProfile provided -Can_only_specify_profile_in_the_context = Can only specify profile in the context -no_url_in_expand_value_set_2 = No url in expand value set 2 -no_url_in_expand_value_set = No url in expand value set -no_value_set = ValueSet has no url property -No_Parameters_provided_to_expandVS = No Parameters provided to expandVS -No_Expansion_Parameters_provided = No Expansion Parameters provided -Unable_to_resolve_value_Set_ = A definition for the value Set ''{0}'' could not be found -Delimited_versions_have_exact_match_for_delimiter____vs_ = Delimited versions have exact match for delimiter ''{0}'' : {1} vs {2} -Duplicate_Resource_ = Duplicate Resource {0} of type {3} (existing version {2}, new version {1}) -DUPLICATE_RESOURCE_VERSION = Duplicate Resource {0} Version {1} of type {2} -Error_expanding_ValueSet_running_without_terminology_services = Error expanding ValueSet: running without terminology services -Error_validating_code_running_without_terminology_services = Unable to validate code ''{0}'' in system ''{1}'' because the validator is running without terminology services -Unable_to_validate_code_without_using_server = Unable to validate code without using server because: {0} -UNABLE_TO_VALIDATE_LOCALLY = Unable to validate code locally: {0} -Profile___Error_generating_snapshot = Profile {0} ({1}). Error generating snapshot -Profile___element__Error_generating_snapshot_ = Profile {0} ({1}), element {2}. Error generating snapshot: {3} -Profile___base__could_not_be_resolved = Profile {0} ({1}) base {2} could not be resolved -Profile___has_no_base_and_no_snapshot = Profile {0} ({1}) has no base and no snapshot -No_validator_configured = No validator configured -Parser_Type__not_supported = Parser Type {0} not supported -Version_mismatch_The_context_has_version__loaded_and_the_new_content_being_loaded_is_version_ = Version mismatch. The context has version {0} loaded, and the new content being loaded is version {1} -Error_reading__from_package__ = Error reading {0} from package {1}#{2}: {3} -Error_parsing_ = Error parsing {0}:{1} -Unable_to_connect_to_terminology_server_Use_parameter_tx_na_tun_run_without_using_terminology_services_to_validate_LOINC_SNOMED_ICDX_etc_Error__ = Unable to connect to terminology server at {1}. Use parameter ''-tx n/a'' to run without using terminology services to validate LOINC, SNOMED, ICD-X etc. Error = {0} -Display_Name_for__should_be_one_of__instead_of_one = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'') -Display_Name_for__should_be_one_of__instead_of_other = Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'') -Display_Name_WS_for__should_be_one_of__instead_of_one = Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'') -Display_Name_WS_for__should_be_one_of__instead_of_other = Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'') -Unknown_Code_in = Unknown code ''{0}'' in the CodeSystem ''{1}'' -Unknown_Code_in_Version = Unknown code ''{0}'' in the CodeSystem ''{1}'' version ''{2}'' -UNKNOWN_CODE_IN_FRAGMENT = Unknown Code ''{0}'' in the system ''{1}'' version ''{2}'' - note that the code system is labeled as a fragment, so the code may be valid in some other fragment -Code_found_in_expansion_however_ = Code found in expansion, however: {0} -None_of_the_provided_codes_are_in_the_value_set_one = The provided code {2} was not found in the value set ''{1}'' -None_of_the_provided_codes_are_in_the_value_set_other = None of the provided codes [{2}] are in the value set ''{1}'' -Coding_has_no_system__cannot_validate = Coding has no system. A code with no system has no defined meaning, and it cannot be validated. A system should be provided -Coding_has_no_system__cannot_validate_NO_INFER = Coding has no system, and inferring the code system is not possible in this context. A code with no system has no defined meaning, and it cannot be validated. A system should be provided -Unable_to_handle_system__concept_filter_with_op__ = Unable to handle system {0} concept filter with op = {1} -UNABLE_TO_HANDLE_SYSTEM__PROPERTY_FILTER_WITH_OP__ = Unable to handle system {0} property filter with op = {1} -Unable_to_handle_system__filter_with_property__ = Unable to handle system {0} filter with property = {1}, op = {2} -Unable_to_resolve_system__value_set_has_include_with_no_system = Unable to resolve system - value set {0} include #{1} has no system -UNABLE_TO_RESOLVE_SYSTEM_SYSTEM_IS_INDETERMINATE = The code system {1} referred to from value set {0} has a grammar, and the code might be valid in it -Unable_to_resolve_system__value_set_has_include_with_unknown_system = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has system {3} which could not be found, and the server returned error {4} -Unable_to_resolve_system__value_set_has_include_with_filter = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4} -Unable_to_resolve_system__value_set_has_imports = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set has imports -Unable_to_resolve_system__value_set_has_multiple_matches = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set expansion has multiple matches: {2} -Unable_to_resolve_system__value_set_expansion_has_multiple_systems = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set expansion has multiple systems -Unable_to_resolve_system__value_set_has_no_includes_or_expansion = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': value set has no includes or expansion -Unable_to_resolve_system__no_value_set = Unable to resolve system - no value set -Unable_to_resolve_system__value_set_has_no_matches = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'' -This_base_property_must_be_an_Array_not_ = This base property must be an Array, not {0} documentmsg = (document) +element__null_ = Element = null: {0} +element_id__null__on_ = Element id = null: {0} on {1} +error_writing_number__to_JSON = Error writing number ''{0}'' to JSON +getSliceList_should_only_be_called_when_the_element_has_slicing = getSliceList should only be called when the element has slicing +needs_a_snapshot = Needs a snapshot +no_base_profile_provided = No base profile provided +no_derived_structure_provided = No derived structure provided +no_url_in_expand_value_set = No url in expand value set +no_url_in_expand_value_set_2 = No url in expand value set 2 +no_value_set = ValueSet has no url property +not_done_yet__slicing__types__ = Not done yet - slicing / types @ {0} +not_done_yet_cant_fetch_ = Not done yet: can''t fetch {0} +not_the_right_kind_of_structure_to_generate_schematrons_for = Not the right kind of structure to generate schematrons for +null_min = Null min +reference_to__cannot_be_resolved = reference to {0} cannot be resolved +type_on_first_differential_element = Type on first differential element! +type_on_first_snapshot_element_for__in__from_ = Type on first snapshot element for {0} in {1} from {2} xml_attr_value_invalid = The XML Attribute {0} has an invalid character xml_encoding_invalid = The XML encoding is invalid (must be UTF-8) xml_stated_encoding_invalid = The XML encoding stated in the header is invalid (must be ''UTF-8'' if stated) -XHTML_URL_INVALID = The URL is not valid because ''({1})'': {0} -MEASURE_MR_GRP_NO_CODE = Group should have a code that matches the group definition in the measure -MEASURE_MR_GRP_UNK_CODE = The code for this group has no match in the measure definition -MEASURE_MR_GRP_DUPL_CODE = The code for this group is duplicated with another group -MEASURE_MR_GRP_MISSING_BY_CODE = The MeasureReport does not include a group for the group ''{0}'' -MEASURE_MR_GRP_NO_USABLE_CODE = None of the codes provided are usable for comparison - need both system and code on at least one code -MEASURE_MR_GRP_NO_WRONG_CODE = The code provided ({0}) does not match the code specified in the measure report ({1}) -DUPLICATE_ID = Duplicate id value ''{0}'' -MEASURE_MR_GRP_POP_NO_CODE = Group should have a code that matches the group population definition in the measure -MEASURE_MR_GRP_POP_UNK_CODE = The code for this group population has no match in the measure definition -MEASURE_MR_GRPST_POP_UNK_CODE = The code for this group stratifier has no match in the measure definition -MEASURE_MR_GRP_POP_DUPL_CODE = The code for this group population is duplicated with another group -MEASURE_MR_GRP_POP_MISSING_BY_CODE = The MeasureReport does not include a population group for the population group {0} -MEASURE_MR_GRP_POP_COUNT_MISMATCH = Mismatch between count {0} and number of subjects {1} -MEASURE_MR_GRP_POP_NO_SUBJECTS = Reports where type is not ''subject-list'' don''t have subjects listed -MEASURE_MR_GRP_POP_NO_COUNT = Count should be present for reports where type is not ''subject-list'' -MEASURE_M_NO_GROUPS = A measure should contain at least one group -MEASURE_M_GROUP_CODE = Groups should have codes when there is more than one group -MEASURE_M_GROUP_POP = Measure Groups should have at least one population -MEASURE_M_GROUP_STRATA = Measure Groups should have at least one stratifier -MEASURE_M_GROUP_POP_NO_CODE = A measure group population should have a code when there is more than one population -MEASURE_M_GROUP_STRATA_NO_CODE = A measure group stratifier should have a code when there is more than one population -MEASURE_M_GROUP_STRATA_COMP_NO_CODE = A measure group stratifier component should have a code when there is more than one population -MEASURE_M_LIB_UNKNOWN = The Library {0} could not be resolved, so expression validation may not be correct -TYPE_SPECIFIC_CHECKS_CANONICAL_ABSOLUTE = Canonical URLs must be absolute URLs if they are not fragment references ({0}) -TYPE_SPECIFIC_CHECKS_CANONICAL_CONTAINED = Canonical URLs in contained resources must be absolute URLs if present ({0}) -MEASURE_MR_SCORE_PROHIBITED_RT = No measureScore when the type of the report is ''data-collection'' -MEASURE_MR_SCORE_PROHIBITED_MS = No measureScore when the scoring of the message is ''cohort'' -MEASURE_MR_SCORE_REQUIRED = A measureScore is required when the Measure.scoring={0} -MEASURE_MR_M_SCORING_UNK = The scoring system in this measure is unknown, so the measureScore values cannot be checked -MEASURE_MR_SCORE_UNIT_PROHIBITED = A measureScore for this Measure Scoring ({0}) should not have units -MEASURE_MR_SCORE_VALUE_REQUIRED = A value is required when the Measure.scoring = {0} -MEASURE_MR_SCORE_VALUE_INVALID_01 = The value is invalid - it must be between 0 and 1 -MEASURE_MR_SCORE_FIXED = This value is fixed by the Measure to ''{0}'' -MEASURE_MR_SCORE_UNIT_REQUIRED = A unit should be present when the scoring type is {0} -MEASURE_M_CRITERIA_UNKNOWN = The expression language {0} is not supported, so can''t be validated -MEASURE_M_CQL_NOT_FOUND = None of the include CQL Libraries define a function {0} -MEASURE_M_CRITERIA_CQL_NO_LIB = No CQL Libraries found on this Measure -MEASURE_M_CRITERIA_CQL_ONLY_ONE_LIB = If the CQL expression does not include a namespace, there can only be one Library for the measure -MEASURE_M_CRITERIA_CQL_LIB_NOT_FOUND = No matching Library found for the namespace {0} -MEASURE_M_CRITERIA_CQL_LIB_DUPL = Multiple matching libraries found for the namespace {0} -MEASURE_M_CRITERIA_CQL_ERROR = Error in {0}: ''{1}'' -MEASURE_M_CRITERIA_CQL_NO_ELM = Error in {0}: No compiled version of CQL found -MEASURE_M_CRITERIA_CQL_ELM_NOT_VALID = = Error in {0}: Compiled version of CQL is not valid -MEASURE_M_CRITERIA_CQL_NOT_FOUND = The function {1} does not exist in the library {0} -XHTML_URL_EMPTY = URL is empty -XHTML_URL_INVALID_CHARS_one = URL contains Invalid Character ({1}) -XHTML_URL_INVALID_CHARS_other = URL contains {0} Invalid Characters ({1}) -TERMINOLOGY_TX_SYSTEM_HTTPS = The system URL ''{0}'' wrongly starts with https: not http: -CODESYSTEM_CS_NO_VS_NOTCOMPLETE = Review the All Codes Value Set - incomplete CodeSystems generally should not have an all codes value set specified -CODESYSTEM_CS_NO_VS_SUPPLEMENT1 = CodeSystems supplements should not have an all codes value set specified, and if they do, it must match the base code system -CODESYSTEM_CS_NO_VS_SUPPLEMENT2 = CodeSystems supplements should not have an all codes value set specified, and if they do, it must match the base code system, and this one does not (''{0}'') -TYPE_SPECIFIC_CHECKS_DT_IDENTIFIER_IETF_SYSTEM_VALUE = if identifier.system is ''urn:ietf:rfc:3986'', then the identifier.value must be a full URI (e.g. start with a scheme), not ''{0}'' -TYPE_SPECIFIC_CHECKS_DT_ATT_SIZE_INVALID = Stated Attachment Size {0} is not valid -TYPE_SPECIFIC_CHECKS_DT_ATT_SIZE_CORRECT = Stated Attachment Size {0} does not match actual attachment size {1} -TYPE_SPECIFIC_CHECKS_DT_ATT_NO_FETCHER = Attachment size cannot be checked because the validator has not been set up to access the network (url = {0}) -TYPE_SPECIFIC_CHECKS_DT_ATT_UNKNOWN_URL_SCHEME = Attachment size cannot be checked because the validator doesn''t understand how to access {0} -TYPE_SPECIFIC_CHECKS_DT_ATT_URL_ERROR = Attachment size cannot be checked because there was an error accesssing {0}: {1} -TYPE_SPECIFIC_CHECKS_DT_ATT_TOO_LONG = Attachment size is {0} bytes which exceeds the stated limit of {1} bytes -TYPE_SPECIFIC_CHECKS_DT_ATT_NO_CONTENT = Attachments have data and/or url, or else SHOULD have either contentType and/or language -TYPE_SPECIFIC_CHECKS_DT_BASE64_TOO_LONG = Base64 size is {0} bytes which exceeds the stated limit of {1} bytes -TYPE_SPECIFIC_CHECKS_DT_DECIMAL_CHARS = Found {0} decimal places which exceeds the stated limit of {1} digits -Validation_VAL_Profile_WrongType = Specified profile type was ''{0}'' in profile ''{2}'', but found type ''{1}'' -Validation_VAL_Profile_WrongType2 = Type mismatch processing profile {0} at path {1}: The element type is {4}, but the profile {3} is for a different type {2} -VALIDATION_VAL_ILLEGAL_TYPE_CONSTRAINT = Invalid constraint in profile {0} at path {1} - cannot constrain to type {2} from base types {3} -EXTENSION_EXTP_CONTEXT_WRONG_XVER = The extension {0} from FHIR version {3} is not allowed to be used at this point (allowed = {1}; this element is [{2}; this is a warning since contexts may be renamed between FHIR versions) -EXTENSION_EXTM_CONTEXT_WRONG_XVER = The modifier extension {0} from FHIR version {3} is not allowed to be used at this point (allowed = {1}; this element is [{2}; this is a warning since contexts may be renamed between FHIR versions) -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 -SECURITY_STRING_CONTENT_WARNING = The string value contains text that looks like embedded HTML tags. If this content is rendered to HTML without appropriate post-processing, it may be a security risk -ALL_OK = All OK -SEARCHPARAMETER_NOTFOUND = Unable to find the base Search Parameter {0} so can''t check that this SearchParameter is a proper derivation from it -SEARCHPARAMETER_BASE_WRONG = The resource type {1} is not listed as a base in the SearchParameter this is derived from ({0}) -SEARCHPARAMETER_TYPE_WRONG = The type {1} is different to the type {0} in the derivedFrom SearchParameter -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 -VALUESET_NO_SYSTEM_WARNING = No System specified, so Concepts and Filters can't be checked -VALUESET_INCLUDE_INVALID_CONCEPT_CODE = The code ''{1}'' is not valid in the system {0} ({2}) -VALUESET_INCLUDE_INVALID_CONCEPT_CODE_VER = The code ''{2}'' is not valid in the system {0} version {1} ({2}) -VALUESET_EXAMPLE_SYSTEM_HINT = Example System ''{0}'' specified, so Concepts and Filters can''t be checked -VALUESET_EXAMPLE_SYSTEM_ERROR = Example System ''{0}'' specified, which is illegal. Concepts and Filters can''t be checked -VALUESET_UNC_SYSTEM_WARNING = Unknown System ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1}) -VALUESET_UNC_SYSTEM_WARNING_VER = Unknown System/Version ''{0}'' specified, so Concepts and Filters can''t be checked (Details: {1}) -Extension_PROF_Type = The Profile ''{0}'' definition allows for the type {1} but found type {2} -TYPE_CHECKS_PATTERN_CC = The pattern [system {0}, code {1}, and display ''{2}''] defined in the profile {3} not found. Issues: {4} -TYPE_CHECKS_PATTERN_CC_US = The pattern [system {0}, code {1}, display ''{2}'' and userSelected {5}] defined in the profile {3} not found. Issues: {4} -TYPE_CHECKS_FIXED_CC = The pattern [system {0}, code {1}, and display ''{2}''] defined in the profile {3} not found. Issues: {4} -TYPE_CHECKS_FIXED_CC_US = The pattern [system {0}, code {1}, display ''{2}'' and userSelected {5}] defined in the profile {3} not found. Issues: {4} -VALIDATION_VAL_GLOBAL_PROFILE_UNKNOWN = Global Profile reference ''{0}'' from IG {1} could not be resolved, so has not been checked -VALIDATION_VAL_PROFILE_SIGNPOST_BASE = Validate resource against profile -VALIDATION_VAL_PROFILE_SIGNPOST = Validate resource against profile {0} -VALIDATION_VAL_PROFILE_SIGNPOST_META = Validate resource against profile {0} (per meta) -VALIDATION_VAL_PROFILE_SIGNPOST_DEP = Validate resource against profile {0} (per http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies in {1}) -VALIDATION_VAL_PROFILE_SIGNPOST_BUNDLE_PARAM = Validate resource against profile {0} - provided as bundle param -VALIDATION_VAL_PROFILE_SIGNPOST_GLOBAL = Validate resource against profile {0} - a global profile in {1} -ERROR_GENERATING_SNAPSHOT = Error generating Snapshot: {0} (this usually arises from a problem in the differential) -SNAPSHOT_EXISTING_PROBLEM = The generated snapshot has a different number of elements {1} than the originally provided snapshot {0} -FHIRPATH_LOCATION = (at {0}) -FHIRPATH_UNKNOWN_CONTEXT = Unknown context evaluating FHIRPath expression: {0} -FHIRPATH_UNKNOWN_CONTEXT_ELEMENT = Unknown context element evaluating FHIRPath expression: {0} -FHIRPATH_ALIAS_COLLECTION = Attempt to alias a collection, not a singleton evaluating FHIRPath expression -FHIRPATH_UNKNOWN_NAME = Error evaluating FHIRPath expression: The name ''{0}'' is not valid for any of the possible types: {1} -FHIRPATH_UNKNOWN_CONSTANT = Error evaluating FHIRPath expression: Invalid FHIR Constant {0} -FHIRPATH_CANNOT_USE = Error evaluating FHIRPath expression: Cannot use {0} in this context because {1} -FHIRPATH_CANT_COMPARE = Error evaluating FHIRPath expression: Unable to compare values of type {0} and {1} -#The following error cannot occur for a single item. _one case left intentionally blank. -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_LEFT_VALUE_WRONG_TYPE = Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1} -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_RIGHT_VALUE_one = -FHIRPATH_RIGHT_VALUE_other = Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values -FHIRPATH_RIGHT_VALUE_WRONG_TYPE = Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1} -FHIRPATH_OP_INCOMPATIBLE = Error evaluating FHIRPath expression {0}: left and right operand have incompatible or invalid types ({1}, {2}) -FHIRPATH_HO_HOST_SERVICES = Internal Error evaluating FHIRPath expression: No host services are provided ({0}) -FHIRPATH_WRONG_PARAM_TYPE = Error evaluating FHIRPath expression: The parameter type {2} is not legal for {0} parameter {1}. expecting {3} -FHIRPATH_ORDERED_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered collections -FHIRPATH_PRIMITIVE_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on primitives -FHIRPATH_REFERENCE_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1} -FHIRPATH_CODED_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, code, uri, Coding, CodeableConcept but found {1} -FHIRPATH_STRING_ORD_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1} -FHIRPATH_STRING_SING_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on string, uri, url, code, id but found {1} -FHIRPATH_NO_COLLECTION = Error evaluating FHIRPath expression: The function {0} can only be used on a singleton value but found {1} -FHIRPATH_NOT_IMPLEMENTED = Error evaluating FHIRPath expression: The function {0} is not implemented -FHIRPATH_PARAM_WRONG = Error evaluating FHIRPath expression: The expression type {0} is not supported for parameter {1} on function {2} -FHIRPATH_CHECK_FAILED = Error evaluating FHIRPath expression: The check {0} failed -FHIRPATH_NO_TYPE = Error evaluating FHIRPath expression: No type provided at {1} -FHIRPATH_UNKNOWN_TYPE = Error evaluating FHIRPath expression: The type ''{0}'' is unknown or not supported at {1} -FHIRPATH_DISCRIMINATOR_NAME_ALREADY_SLICED = Error in discriminator at {0}: found a sliced element while resolving the fixed value for one of the slices -FHIRPATH_DISCRIMINATOR_THIS_CANNOT_FIND = Problem with use of resolve() - profile {0} on {1} could not be resolved -FHIRPATH_DISCRIMINATOR_RESOLVE_NO_TYPE = Invalid use of resolve() in discriminator - no type on element {0} -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES_one = -FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES_other = Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one) -FHIRPATH_DISCRIMINATOR_RESOLVE_NOT_REFERENCE = Invalid use of resolve() in discriminator - type on {0} is not Reference {1} -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET_one = -FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET_other = Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one) -FHIRPATH_RESOLVE_DISCRIMINATOR_CANT_FIND = Problem with use of resolve() - profile {0} on {1} could not be resolved -FHIRPATH_DISCRIMINATOR_TYPE_NONE = Invalid use of ofType() in discriminator - no type on element {0} -FHIRPATH_DISCRIMINATOR_TYPE_MULTIPLE = Invalid use of ofType() in discriminator - Multiple possible types on {0} -FHIRPATH_DISCRIMINATOR_NO_CODE = Invalid use of ofType() in discriminator - Type has no code on {0} -FHIRPATH_DISCRIMINATOR_BAD_NAME = Invalid function name {0}() in discriminator -FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_GROUP = Invalid expression syntax in discriminator (group ''{0}'') -FHIRPATH_DISCRIMINATOR_BAD_SYNTAX_CONST = Invalid expression syntax in discriminator (const) -FHIRPATH_DISCRIMINATOR_CANT_FIND = Unable to resolve discriminator in definitions: {0} in profile {1} on element {2}, looking in profile {3} -FHIRPATH_DISCRIMINATOR_CANT_FIND_EXTENSION = Unable to resolve discriminator {0} on {2} found in the definitions because the extension {1} wasn''t found in the profile {3} -FHIRPATH_DISCRIMINATOR_NOTYPE = Error in discriminator at {0}: no children, no type -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES_one = -FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES_other = Error in discriminator at {1}: no children, {0} types -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES_one = -FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES_other = Error in discriminator at {1}: no children, {0} type profiles -FHIRPATH_UNABLE_BOOLEAN = Unable to evaluate as a boolean: {0} -XHTML_XHTML_DOCTYPE_ILLEGAL = Malformed XHTML: Found a DocType declaration, and these are not allowed (XXE security vulnerability protection) -PACKAGE_VERSION_MISMATCH = FHIR Version mismatch in package {0}: version is {2} but must be {1} (path: {3}) -VALUESET_REFERENCE_UNKNOWN = The value set import {0} could not be found so cannot be checked -VALUESET_REFERENCE_INVALID_TYPE = The value set import {0} points to a resource of type {1} which is not valid -SD_MUST_HAVE_DERIVATION = StructureDefinition {0} must have a derivation, since it has a baseDefinition -VALIDATION_VAL_PROFILE_OTHER_VERSION = Profile is for a different version of FHIR ({0}) so has been ignored -VALIDATION_VAL_PROFILE_THIS_VERSION_OK = Profile for this version of FHIR - all OK -VALIDATION_VAL_PROFILE_THIS_VERSION_OTHER = Profile is for this version of FHIR, but is an invalid type {0} -BUNDLE_RULE_NONE = No Rule -BUNDLE_RULE_UNKNOWN = Bundle Rule refers to invalid resource {0} -BUNDLE_RULE_INVALID_INDEX = Bundle Rules index is invalid ({0}) -BUNDLE_RULE_PROFILE_UNKNOWN = Bundle Rules profile {1} is unknown for {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_CHECK_IF_THE_PROVIDED_CODES_ARE_IN_THE_VALUE_SET = Unable to check whether the code is in the value set ''{0}'' -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} -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} -FHIRPATH_BAD_DATE = Unable to parse Date {0} -FHIRPATH_NUMERICAL_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on integer, decimal or Quantity but found {1} -FHIRPATH_DECIMAL_ONLY = Error evaluating FHIRPath expression: The function {0} can only be used on a decimal but found {1} -FHIRPATH_CONTINUOUS_ONLY= Error evaluating FHIRPath expression: The function {0} can only be used on a decimal or date type but found {1} -#The following error cannot occur for a single item. _one case left intentionally blank. -FHIRPATH_FOCUS_one = -FHIRPATH_FOCUS_other = Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values -REFERENCE_REF_SUSPICIOUS = The syntax of the reference ''{0}'' looks incorrect, and it should be checked -XHTML_XHTML_ELEMENT_ILLEGAL_IN_PARA = Invalid element name inside a paragraph in the XHTML (''{0}'') -UNSUPPORTED_IDENTIFIER_PATTERN_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = Unsupported property {3} on type {2} for pattern for discriminator ({0}) for slice {1} -UNSUPPORTED_IDENTIFIER_PATTERN_NO_PROPERTY_NOT_SUPPORTED_FOR_DISCRIMINATOR_FOR_SLICE = Unsupported: no properties with values found on type {2} for pattern for discriminator ({0}) for slice {1} -SD_NESTED_MUST_SUPPORT_DIFF = The element {0} has types/profiles/targets that are marked as must support, but the element itself is not marked as must-support. The inner must-supports will be ignored unless the element inherits must-support = true -SD_NESTED_MUST_SUPPORT_SNAPSHOT = The element {0} has types/profiles/targets that are marked as must support, but the element itself is not marked as must-support -Unable_to_connect_to_terminology_server = Unable to connect to terminology server at {1}. Error = {0} -SD_ED_TYPE_PROFILE_UNKNOWN = Unable to resolve profile {0} -SD_ED_TYPE_PROFILE_NOTYPE = Found profile {0}, but unable to determine the type it applies to -SD_ED_TYPE_PROFILE_WRONG = Profile {0} is for type {1}, but the {3} element has type {2} -SD_ED_TYPE_PROFILE_IS_MODIFIER = Profile {0} is for not for a modifier extension, but the {3} element is a modifier -SD_ED_TYPE_PROFILE_NOT_MODIFIER = Profile {0} is for a modifier extension, but the {3} element is not a modifier -SD_ED_TYPE_PROFILE_WRONG_TARGET = Profile {0} is for type {1}, which is not a {4} (which is required because the {3} element has type {2}) -SD_ED_TYPE_NO_TARGET_PROFILE = Type {0} does not allow for target Profiles -TERMINOLOGY_TX_NOSVC_BOUND_REQ = Could not confirm that the codes provided are from the required value set {0} because there is no terminology service -TERMINOLOGY_TX_NOSVC_BOUND_EXT = Could not confirm that the codes provided are from the extensible value set {0} because there is no terminology service -ARRAY_CANNOT_BE_EMPTY = Array cannot be empty - the property should not be present if it has no values -XHTML_URL_DATA_NO_DATA = No data found in data: URL -XHTML_URL_DATA_DATA_INVALID_COMMA = Comma found in data portion of data URL: {0} -XHTML_URL_DATA_DATA_INVALID = The data should be valid base64 content for a data: URL: {0} -XHTML_URL_DATA_MIMETYPE = The mimetype portion of the data: URL is not valid ({1}) in URL: {0} -SD_ED_SHOULD_BIND = The element {0} has a type that should have a binding ({1}), but no binding is present -SD_ED_SHOULD_BIND_WITH_VS = The element {0} has a type that should have a binding ({1}), but the binding has no value set -SD_ED_BIND_UNKNOWN_VS = The valueSet reference {1} on element {0} could not be resolved -SD_ED_BIND_NOT_VS = The valueSet reference {1} on element {0} points to something that is not a value set ({2}) -SD_ED_BIND_NO_BINDABLE = The element {0} has a binding, but no bindable types are present {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 -DISCRIMINATOR_BAD_PATH = Error processing path expression for discriminator: {0} (src = ''{1}'') -SLICING_CANNOT_BE_EVALUATED = Slicing cannot be evaluated: {0} -TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE = Canonical URL ''{0}'' does not resolve -TYPE_SPECIFIC_CHECKS_DT_CANONICAL_RESOLVE_NC = Canonical URL ''{0}'' exists, but can''t be loaded, so it can''t be checked for validity -TYPE_SPECIFIC_CHECKS_DT_CANONICAL_TYPE = Canonical URL ''{0}'' refers to a resource that has the wrong type. Found {1} expecting one of {2} -CODESYSTEM_CS_NO_SUPPLEMENT = CodeSystem {0} is a supplement, so can''t be used as a value in Coding.system -CODESYSTEM_CS_SUPP_CANT_CHECK = CodeSystem {0} cannot be found, so can''t check if concepts are valid -CODESYSTEM_CS_SUPP_INVALID_CODE = The code ''{1}'' is not declared in the base CodeSystem {0} so is not valid in the supplement -SD_VALUE_TYPE_IILEGAL = The element {0} has a {1} of type {2}, which is not in the list of allowed types ({3}) -SD_VALUE_TYPE_REPEAT_HINT = The repeating element has a {1}. The {1} will apply to all the repeats (this has not been clear to all users) -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 -SD_NO_TYPES_OR_CONTENTREF = The element {0} has no assigned types, and no content reference -CODESYSTEM_CS_UNK_EXPANSION = The code provided ({2}) is not in the expansion in the value set {0}, and a code is required from this value set. The system {1} could not be found. -BUNDLE_SEARCH_NOSELF = SearchSet Bundles should have a self link that specifies what the search was -BUNDLE_SEARCH_SELF_NOT_UNDERSTOOD = No types could be determined from the search string, so the types can''t be checked -BUNDLE_SEARCH_ENTRY_NO_RESOURCE = SearchSet Bundle Entries must have resources -BUNDLE_SEARCH_ENTRY_TYPE_NOT_SURE = Unable to determine if this resource is a valid resource type for this search -BUNDLE_SEARCH_ENTRY_NO_RESOURCE_ID = Search results must have ids -BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_MODE = This is not a matching resource type for the specified search ({0} expecting {1}) -BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_OUTCOME = This is not an OperationOutcome ({0}) -BUNDLE_SEARCH_ENTRY_WRONG_RESOURCE_TYPE_NO_MODE = This is not a matching resource type for the specified search (is a search mode needed?) ({0} expecting {1}) -BUNDLE_SEARCH_NO_MODE = SearchSet bundles should have search modes on the entries -INV_FAILED = Constraint failed: {0} -INV_FAILED_SOURCE = Constraint failed: {0} (defined in {1}) -PATTERN_CHECK_STRING = The pattern [{0}] defined in the profile {1} not found. Issues: {2} -TYPE_SPECIFIC_CHECKS_DT_URL_EXAMPLE = Example URLs are not allowed in this context ({0}) -UNICODE_BIDI_CONTROLS_CHARS_DISALLOWED = The Unicode sequence has bi-di control characters which are not allowed in this context: {0} -UNICODE_BIDI_CONTROLS_CHARS_MATCH = The Unicode sequence has unterminated bi-di control characters (see CVE-2021-42574): {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_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_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_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 -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_QTY = Found {0} of type {2} in the profile validating a Quantity (so it must be a Quantity) -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_SYSTEM_MISMATCH = The minValue in the profile has a system of {0} which is different to the system in the value {1} so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_CODE_MISMATCH = The minValue in the profile has a system code of {0} which is different to the system code in the value {1} so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_VALUE = The minValue in the profile doesn''t have an actual value, so the minimum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_VALUE = The quantity doesn''t have an actual value, so the minimum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_SYSTEM = The minValue in the profile has no system so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_SYSTEM = The value has no system so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CODE = The minValue in the profile has no code so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_NO_CODE = The value has no code so the minimum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_NO_UCUM_SVC = There is no UCUM service, and the UCUM codes aren''t identical, so the minimum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_MIN_NO_CONVERT = Unable to convert value {0} from unit {1} to minValue unit {2} based on UCUM definitions; minimum value is not valid -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG = The value in the instance ({2}) is less than the specified minimum value ({3}) -TYPE_SPECIFIC_CHECKS_DT_QTY_MIN_VALUE_WRONG_UCUM = The value in the instance ({0} {1}) is less than the specified minValue ({2} {3}) after UCUM conversion -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_QTY = Found {0} of type {2} in the profile validating a Quantity (so it must be a Quantity) -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_SYSTEM_MISMATCH = The maxValue in the profile has a system of {0} which is different to the system in the value {1} so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_CODE_MISMATCH = The maxValue in the profile has a system code of {0} which is different to the system code in the value {1} so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_VALUE = The maxValue in the profile doesn''t have an actual value, so the maximum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_VALUE = The quantity doesn''t have an actual value, so the maximum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_SYSTEM = The maxValue in the profile has no system so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_SYSTEM = The value has no system so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CODE = The maxValue in the profile has no code so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_NO_CODE = The value has no code so the maximum value cannot be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_NO_UCUM_SVC = There is no UCUM service, and the UCUM codes aren''t identical, so the maximum value can''t be checked -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_MIN_NO_CONVERT = Unable to convert value {0} from unit {1} to maxValue unit {2} based on UCUM definitions; maximum value is not valid -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG = The value in the instance ({2}) is greater than the specified maximum value ({3}) -TYPE_SPECIFIC_CHECKS_DT_QTY_MAX_VALUE_WRONG_UCUM = The value in the instance ({0} {1}) is greater than the specified maxValue ({2} {3}) after UCUM conversion -TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_ERROR = Base64 encoded values are not allowed to contain any whitespace (per RFC 4648). Note that non-validating readers are encouraged to accept whitespace anyway -TYPE_SPECIFIC_CHECKS_DT_BASE64_NO_WS_WARNING = Base64 encoded values SHOULD not contain any whitespace (per RFC 4648). Note that non-validating readers are encouraged to accept whitespace anyway -SD_DERIVATION_KIND_MISMATCH = The structure definition constrains a kind of {0}, but has a different kind ({1}) -VALUESET_IMPORT_UNION_INTERSECTION = This value set has a single include with multiple imported value sets. Per issue https://jira.hl7.org/browse/FHIR-25179, there has been confusion in the past whether these value sets are unioned or intersectioned. If this value set is contained in a package published prior to March 31 2022, it will be treated as a union, otherwise it will be treated as an intersection. If want a union, split the value set imports across multiple includes -TX_SERVER_NO_BATCH_RESPONSE = The server return null from a batch validation request -BUNDLE_POSSSIBLE_MATCHES = The bundle contains no match for {1} by the rules of Bundle reference resolution, but it has multiple resources that match {0} by resource type and id -BUNDLE_BUNDLE_POSSIBLE_MATCH_NO_FU = Entry {0} matches the reference {1} by type and id but it does not match the full target URL {2} by Bundle resolution rules -BUNDLE_BUNDLE_POSSIBLE_MATCH_WRONG_FU = Entry {0} matches the reference {1} by type and id but it''s fullUrl {2} does not match the full target URL {3} by Bundle resolution rules -SD_ILLEGAL_CHARACTERISTICS = This element has a {0} but the types {1} do not make this kind of constraint relevant -SD_VALUE_COMPLEX_FIXED = For the complex type {0}, consider using a pattern rather than a fixed value to avoid over-constraining the instance -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_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_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_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 -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_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_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_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 -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_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_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_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 -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_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_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_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 -TYPE_SPECIFIC_CHECKS_DT_MARKDOWN_HTML = The markdown contains content that appears to be an embedded HTML tag starting at ''{0}''. This will (or SHOULD) be escaped by the presentation layer. The content should be checked to confirm that this is the desired behaviour -TYPE_SPECIFIER_ILLEGAL_TYPE = The Type specifier {1} specified an invalid type {0} -TYPE_SPECIFIER_ABSTRACT_TYPE = The Type specifier {1} specified an abstract type {0} -TYPE_SPECIFIER_NM_ILLEGAL_TYPE = No Type specifier matched, and the underlying type {0} is not valid -TYPE_SPECIFIER_NM_ABSTRACT_TYPE = No Type specifier matched, and the underlying type {0} is not abstract -ELEMENT_CANNOT_BE_NULL = The element is not allowed to be ''null'' -#The following error cannot occur for a single item. _one case left intentionally blank. -MULTIPLE_LOGICAL_MODELS_one= -MULTIPLE_LOGICAL_MODELS_other={0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1}) -UNRECOGNISED_PROPERTY_TYPE = Invalid JSON type {0} for the element {1}; valid types = {2} -UNRECOGNISED_PROPERTY_TYPE_WRONG = Invalid type {2} for the element {1}; valid types = {3}, JSON type = {0} -SD_TYPE_MISSING = No type found -SD_TYPE_NOT_MATCH_NS = The type namespace {0} SHOULD match the url namespace {1} for the definition of the type -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_CONSTRAINED_TYPE_NO_MATCH = The type {0} must be the same as the type in the base structure {1} that is being constrained -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_CONSTRAINED_KIND_NO_MATCH = The kind {0} must be the same as the kind {1} in the base structure {3} (base type = {2}) -SD_PATH_TYPE_MISMATCH = The path {1} must start with the type of the structure {0} -UNABLE_TO_RESOLVE_CONTENT_REFERENCE = Unable to resolve the content reference {0} on element {1} (path = {2}) -UNABLE_TO_RESOLVE_CONTENT_REFERENCE_IN_THIS_CONTEXT = Unable to resolve the content reference {0} on element {1} (path = {2}) in this context -RESOURCETYPE_PROPERTY_WRONG_TYPE = The JSON element ''resourceType'' has the wrong JSON type: {0} -DUPLICATE_JSON_PROPERTY = The JSON property ''{0}'' is a duplicate and will be ignored -DUPLICATE_JSON_PROPERTY_KEY = The JSON property ''{0}'' is a duplicate and will be ignored -JSON_PROPERTY_NO_QUOTES = The JSON property ''{0}'' has no quotes around the name of the property -JSON_PROPERTY_VALUE_NO_QUOTES = The JSON property ''{0}'' has no quotes around the value of the property ''{1}'' -JSON_COMMA_MISSING = A Comma is missing in the JSON -JSON_COMMA_EXTRA = There is an extra comma at the end of the {0} in the JSON -JSON_COMMENTS_NOT_ALLOWED = Comments are not allowed in JSON -BUNDLE_LINK_UNKNOWN = The link relationship type ''{0}'' is unknown and not allowed in this context -BUNDLE_LINK_SEARCH_PROHIBITED = The link relationship type ''{0}'' used in search sets is prohibited in this context -BUNDLE_LINK_SEARCH_NO_DUPLICATES = The link relationship type ''{0}'' can only occur once -BUNDLE_LINK_STYELSHEET_EXTERNAL = External Stylesheets other than https://hl7.org/fhir/fhir.css SHOULD not be used -BUNDLE_LINK_STYELSHEET_INSECURE = The stylesheet reference is not secure -BUNDLE_LINK_STYELSHEET_LINKABLE = The stylesheet reference is not a resolvable link -BUNDLE_LINK_STYELSHEET_NOT_FOUND = The stylesheet reference could not be resolved in this bundle -EXT_VER_URL_NO_MATCH = Extension URLs don''t have versions. The validator wasn''t able to resolve this URL with or without version-based resolution -EXT_VER_URL_IGNORE = Extension URLs don''t have versions. The validator has ignored the version and processed the extension anyway -EXT_VER_URL_MISLEADING = The extension URL contains a ''|'' which makes it look like a versioned URL, but it''s not, and this is confusing for implementers -EXT_VER_URL_NOT_ALLOWED = The extension URL must not contain a version -EXT_VER_URL_REVERSION = The extension URL must not contain a version. The extension was validated against version {0} of the extension -ILLEGAL_COMMENT_TYPE = The fhir_comments property must be an array of strings -SD_NO_SLICING_ON_ROOT = Slicing is not allowed at the root of a profile -REFERENCE_REF_QUERY_INVALID = The query part of the conditional reference is not a valid query string ({0}) -SM_RULEGROUP_NOT_FOUND = The group {0} could not be resolved -SM_RULEGROUP_PARAM_COUNT_MISMATCH = The group {0} is invoked using {1} parameters, but it actually takes {2} instead -SM_NAME_INVALID = The name {0} is not valid -SM_GROUP_NAME_DUPLICATE = The Group name ''{0}'' is already used -SM_GROUP_INPUT_DUPLICATE = The name {0} is already used -SM_GROUP_INPUT_MODE_INVALID = The group parameter {0} mode {1} isn''t valid -SM_GROUP_INPUT_NO_TYPE = Group {1} parameter {0} has no type, so the paths cannot be validated -SM_GROUP_INPUT_TYPE_NOT_DECLARED = The type {0} is not declared and is unknown -SM_GROUP_INPUT_MODE_MISMATCH = The type ''{0}'' has mode ''{1}'' which doesn''t match the structure definition mode of ''{2}'' -SM_GROUP_INPUT_TYPE_UNKNOWN_STRUCTURE = The type {0} which maps to the canonical URL {1} is not known, so the paths cannot be validated -SM_GROUP_INPUT_TYPE_UNKNOWN_TYPE = The type {0} is not known, so the paths cannot be validated -SM_SOURCE_CONTEXT_UNKNOWN = The source context {0} is not known at this point -SM_SOURCE_PATH_INVALID = The source path {0}.{1} refers to the path {2} which is unknown -SM_RULE_SOURCE_MIN_REDUNDANT = The min value of {0} is redundant since the valid min is {0} -SM_RULE_SOURCE_MAX_REDUNDANT = The max value of {0} is redundant since the valid max is {0} -SM_RULE_SOURCE_LISTMODE_REDUNDANT = The listMode value of {0} is redundant since the valid max is {0} -SM_TARGET_CONTEXT_UNKNOWN = The target context ''{0}'' is not known at this point -SM_TARGET_PATH_INVALID = The target path {0}.{1} refers to the path {2} which is unknown -SM_NO_LIST_MODE_NEEDED = A list mode should not be provided since this is a rule that can only be executed once -SM_NO_LIST_RULE_ID_NEEDED = A list ruleId should not be provided since this is a rule that can only be executed once -SM_LIST_RULE_ID_ONLY_WHEN_SHARE = A ruleId should only be provided when the rule mode is ''share'' -SM_RULE_SOURCE_UNASSIGNED = The source statement doesn''t assign a variable to the source - check that this is what is intended -SM_TARGET_PATH_MULTIPLE_MATCHES = The target path {0}.{1} refers to the path {2} which could be a reference to multiple elements ({3}). No further checking can be performed -SM_SOURCE_TYPE_INVALID = The type {0} is not valid in the source context {1}. The possible types are [{2}] -SM_TARGET_TRANSFORM_PARAM_COUNT_RANGE = Transform {0} takes {1}-{2} parameter(s) but {3} were found -SM_TARGET_TRANSFORM_PARAM_COUNT_SINGLE = Transform {0} takes {1} parameter(s) but {2} were found -SM_TARGET_TRANSFORM_NOT_CHECKED = Transform {0} not checked yet -SM_TARGET_NO_TRANSFORM_NO_CHECKED = When there is no transform, parameters can''t be provided -SM_TARGET_TRANSFORM_TYPE_UNPROCESSIBLE = The value of the type parameter for {0} could not be processed -SM_TARGET_TRANSFORM_PARAM_UNPROCESSIBLE = The parameter at index {0} could not be processed (type = {1}) -SM_TARGET_TRANSFORM_EXPRESSION_ERROR = The FHIRPath expression passed as the evaluate parameter is invalid: {0} -SM_IMPORT_NOT_FOUND = No maps were found to match {0} - validation may be wrong -SM_TARGET_TYPE_MULTIPLE_POSSIBLE = Multiple types are possible here ({0}) so further type checking is not possible -SM_TARGET_TRANSFORM_TYPE_UNKNOWN = The type ''{0}'' is not known -SM_DEPENDENT_PARAM_MODE_MISMATCH = The parameter {0} refers to the variable {1} but it''s mode is {2} which is not the same as the mode required for the group {3} -SM_DEPENDENT_PARAM_NOT_FOUND = The {1} parameter ''{0}'' was not found -SM_DEPENDENT_PARAM_TYPE_MISMATCH = The parameter ''{0}'' refers to the variable ''{1}'' but it''s type is ''{2}'' which is not compatible with the type required for the group ''{3}'', which is ''{4}'' (from map ''{5}'') -SM_ORPHAN_GROUP = The group {0} is not called successfully from within this mapping script, and does not have types on it''s inputs, so type verification is not possible -SM_SOURCE_TYPE_NOT_FOUND = No source type was found, so the default group for this implied dependent rule could not be determined -SM_TARGET_TYPE_NOT_FOUND = No target type was found, so the default group for this implied dependent rule could not be determined -SM_MATCHING_RULEGROUP_NOT_FOUND = Unable to find a default rule for the type pair source={0} and target={1} -SM_TARGET_TRANSFORM_MISSING_PARAMS = One or more parameters to the translate operation are missing (should be 3, was {0}) -SM_TARGET_TRANSFORM_TRANSLATE_NO_PARAM = No value for the {0} parameter found -SM_TARGET_TRANSFORM_TRANSLATE_UNKNOWN_SOURCE = The source variable {0} is unknown -SM_TARGET_TRANSFORM_OP_UNKNOWN_SOURCE = The {1} variable {2} is unknown for the transform {0} -SM_TARGET_TRANSFORM_OP_INVALID_TYPE = The {1} variable {0} type {2} is invalid - must be a primitive -SM_TARGET_TRANSFORM_TRANSLATE_CM_NOT_FOUND = The map_uri ''{0}'' could not be resolved, so the map can''t be checked -SM_TARGET_TRANSFORM_TRANSLATE_CM_BAD_MODE = The value ''{0}'' for the output parameter is incorrect -SM_TARGET_TRANSLATE_BINDING_SOURCE = The source variable does not have a required binding, so this concept map can''t be checked -SM_TARGET_TRANSLATE_BINDING_VS_SOURCE = The source variable refers to an unknown value set ''{0}'', so this concept map can''t be checked -SM_TARGET_TRANSLATE_BINDING_VSE_SOURCE = There was an error expanding the source value set, so this concept map can''t be checked: ''{0}'' -SM_TARGET_TRANSLATE_BINDING_SOURCE_UNMAPPED = The source value set includes one or more codes that the map does not translate: {0} -SM_TARGET_TRANSLATE_BINDING_TARGET = The target variable does not have a required binding, so this concept map can''t be checked -SM_TARGET_TRANSLATE_BINDING_VS_TARGET = The target variable refers to an unknown value set ''{0}'', so this concept map can''t be checked -SM_TARGET_TRANSLATE_BINDING_VSE_TARGET = There was an error expanding the target value set, so this concept map can''t be checked: ''{0}'' -SM_TARGET_TRANSLATE_BINDING_TARGET_WRONG = The map produces one or more codes that the target value set does not include: {0} -CONCEPTMAP_GROUP_SOURCE_MISSING = No Source Code System, so the source codes cannot be checked -CONCEPTMAP_GROUP_SOURCE_UNKNOWN = The Source Code System {0} is not fully defined and populated, and no sourceScope is specified, so the source code checking will not be performed -CONCEPTMAP_GROUP_TARGET_MISSING = No Target Code System, so the target codes cannot be checked -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_GROUP_SOURCE_CODE_INVALID = The source code ''{0}'' is not valid in the code system {1} -CONCEPTMAP_GROUP_SOURCE_CODE_INVALID_VS = The source code ''{0}'' is not valid in the value set {1} -CONCEPTMAP_GROUP_SOURCE_DISPLAY_INVALID = The source display ''{0}'' for the code ''{2}'' is not valid. Possible displays: {1} -CONCEPTMAP_GROUP_TARGET_CODE_INVALID = The target code ''{0}'' is not valid in the code system {1} -CONCEPTMAP_GROUP_TARGET_CODE_INVALID_VS = The target code ''{0}'' is not valid in the value set {1} -CONCEPTMAP_GROUP_TARGET_DISPLAY_INVALID = The target display ''{0}'' for the code ''{2}'' is not valid. Possible displays: {1} -CONCEPTMAP_GROUP_TARGET_PROPERTY_INVALID = The property code ''{0}'' is not known -CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_MISMATCH = The type of this property should be {1} not {0} -CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_NO_SYSTEM = Since no system has been provided, a plain code cannot be used -CONCEPTMAP_GROUP_TARGET_PROPERTY_CODE_INVALID = The code {0} is invalid in the system {1} -CONCEPTMAP_GROUP_TARGET_PROPERTY_TYPE_UNKNOWN_SYSTEM = The code system {0} could not be found, so code values can''t be checked -SM_DEPENDENT_PARAM_TYPE_MISMATCH_DUPLICATE = The group {0} has already been used with different parameters, so the type checking may be incorrect (other = [{1}]; this = [{2}]) -CONCEPTMAP_GROUP_SOURCE_INCOMPLETE = Source Code System {0} doesn''t have all content (content = {1}), so the source codes cannot be checked -CONCEPTMAP_GROUP_TARGET_INCOMPLETE = Target Code System {0} doesn''t have all content (content = {1}), so the target codes cannot be checked -CONCEPTMAP_GROUP_SOURCE_SERVER_SIDE = Source Code System {0} is only supported on the terminology server, so the source codes are not validated for performance reasons -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 -SD_NO_TYPE_CODE_ON_CODE = Snapshot for {1} element {0} has type.code without a value -UNKNOWN_CODESYSTEM = A definition for CodeSystem ''{0}'' could not be found, so the code cannot be validated -UNKNOWN_CODESYSTEM_VERSION = A definition for CodeSystem ''{0}'' version ''{1}'' could not be found, so the code cannot be validated. Valid versions: {2} -UNABLE_TO_INFER_CODESYSTEM = The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'' -VALUESET_TOO_COSTLY = The value set ''{0}'' expansion has too many codes to display ({1}) -VALUESET_TOO_COSTLY_COUNT = The value set ''{0}'' expansion has {2} codes, which is too many to display ({1}) -VALUESET_TOO_COSTLY_TIME = The value set ''{0}'' expansion took too long to process (>{1}sec) -NO_VALID_DISPLAY_FOUND_one = No valid Display Names found for {1}#{2} in the language {4} -NO_VALID_DISPLAY_FOUND_other = No valid Display Names found for {1}#{2} in the languages {4} -SD_NO_CONTEXT_WHEN_NOT_EXTENSION = The type is {0} so an extension context should not be specified -SD_NO_CONTEXT_INV_WHEN_NOT_EXTENSION = The type is {0} so an extension context invariants should not be specified -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' -ED_PATH_WRONG_TYPE_MATCH = The path must be ''{0}'' not ''{1}'' when the type list is not constrained -ATTEMPT_TO_CHANGE_SLICING = The element at {0} defines the slicing {1} but then an element in the slicing {2} tries to redefine the slicing to {3} -REPEAT_SLICING_IGNORED = The element at {0} defines the slicing but then an element in the slicing {2} repeats it, which is ignored -SD_ELEMENT_NOT_IN_CONSTRAINT = The element definition for {1} has a property {0} which is not allowed in a profile -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_DERIVATION = Only profiles that constrain another profile can be marked as an obligation profile -SD_OBGLIGATION_PROFILE_UNMATCHED = The element ''{0}'' has no equivalent in the profile ''{1}'' on which this Obligation Profile is based -SD_OBGLIGATION_PROFILE_PATH_WRONG = The element ''{0}'' path value of ''{1}'' doesn't match the base path ''{2}'' -SD_OBGLIGATION_PROFILE_ILLEGAL = The element ''{0}'' has a property ''{1}'' which is not allowed in Obligation profiles -SD_OBGLIGATION_PROFILE_ILLEGAL_ON_BINDING = The element ''{0}'' has a binding property ''{1}'' which is not allowed in Obligation profiles -SD_OBGLIGATION_PROFILE_ILLEGAL_BINDING = The element ''{0}'' has a binding when the base element does not, and this 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_INHERITS_PROFILE_NO_TARGET = Unable to read a value from this extension -SD_OBGLIGATION_INHERITS_PROFILE_TARGET_NOT_FOUND = The profile ''{0}'' could not be found -SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_TYPE = The profile ''{0}'' is not marked as an obligation profile -SD_OBGLIGATION_INHERITS_PROFILE_NOT_RIGHT_BASE = The profile ''{0}'' has a different base ''{1}'' from that expected ''{2}'' -QUESTIONNAIRE_Q_UNKNOWN_DERIVATION = The questionnaire ''{0}'' referred to in the derivation could not be found -QUESTIONNAIRE_Q_NO_DERIVATION_TYPE = The questionnaire ''{0}'' has no derivation type specified using the ''http://hl7.org/fhir/StructureDefinition/questionnaire-derivationType'' extension, so derivation has not been checked -QUESTIONNAIRE_Q_NO_DERIVATION_TYPE_VALUE = The derivation extension has no value -QUESTIONNAIRE_Q_DERIVATION_TYPE_IGNORED = The derivation type ''{0}'' means that no derivation checking has been performed against this questionnaire -QUESTIONNAIRE_Q_DERIVATION_TYPE_UNKNOWN = The derivation type ''{0}'' is unknown, which means that no derivation checking has been performed against this questionnaire -QUESTIONNAIRE_Q_ITEM_NOT_DERIVED = No item with linkId ''{1}'' found in questionnaire ''{0}'' -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_TYPE = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the type ''{2}'', and this cannot change to ''{3}'' -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REPEATS = The item with linkId ''{1}'' found in questionnaire ''{0}'' does not repeat, so it cannot repeat here -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_REQUIRED = The item with linkId ''{1}'' found in questionnaire ''{0}'' is required, so it must be required here -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_DEFINITION = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}''. Is it intended to change this? -QUESTIONNAIRE_Q_ITEM_DERIVED_DEFINITION = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}'', so this should be repeated here -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_MAXLENGTH = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the maxLength of ''{2}'', so the max length cannot be greater than that -QUESTIONNAIRE_Q_ITEM_DERIVED_MAXLENGTH = The item with linkId ''{1}'' found in questionnaire ''{0}'' has the definition ''{2}'', so this item must also have a max length -QUESTIONNAIRE_Q_ITEM_DERIVED_NC_ANSWER_TYPE = The item with linkId ''{1}'' found in questionnaire ''{0}'' has answer{2}, while this has answer{3}. This might be valid, but the vaidator can''t check that (yet?) -QUESTIONNAIRE_Q_ITEM_DERIVED_NI_ANSWER_VS = The validator can''t check derived item value set consistency (yet?) -QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS = The item with linkId ''{1}'' found in questionnaire ''{0}'' has answerOptions, so this item must have some too -QUESTIONNAIRE_Q_ITEM_DERIVED_ANSWER_OPTIONS_NEW = The item with linkId ''{1}'' found in questionnaire ''{0}'' does not have this answerOption, so it is not valid -PRIMITIVE_MUSTHAVEVALUE_MESSAGE = The element definition ``{0}`` in the profile ''{1}'' requires that a value be present in this element -PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE_one = The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present -PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE_other = The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present -ED_INVARIANT_NO_KEY = The constraint has no key, so the content cannot be validated -ED_INVARIANT_KEY_ALREADY_USED = The constraint key ''{0}'' already exists in the base profile ''{1}'' -ED_INVARIANT_NO_EXPRESSION = The constraint ''{0}'' has no computable expression, so validators will not be able to check it -ED_INVARIANT_EXPRESSION_CONFLICT = The constraint ''{0}'' has an expression ''{1}'', which differs from the earlier expression provided of ''{2}'' (invariants are allowed to repeat, but cannot differ) -ED_INVARIANT_EXPRESSION_ERROR = Error in constraint ''{0}'' with expression ''{1}'': {2} -SNAPSHOT_IS_EMPTY = The snapshot for the profile ''{0}'' is empty. This is usually due to a processing logged elsewhere -TERMINOLOGY_TX_HINT = {1} -TERMINOLOGY_TX_WARNING = {1} -SD_ED_TYPE_WRONG_TYPE_one = The element has a type {0} which is different to the type {1} on the base profile {2} -SD_ED_TYPE_WRONG_TYPE_other = The element has a type {0} which is not in the types {1} on the base profile {2} -VALUESET_CONCEPT_DISPLAY_PRESENCE_MIXED = This include has some concepts with displays and some without - check that this is what is intended -VALUESET_CONCEPT_DISPLAY_SCT_TAG_MIXED = This SNOMED-CT based include has some concepts with semantic tags (FSN terms) and some without (preferred terms) - check that this is what is intended (examples for FSN: {0} and examples for no FSN: {1}) -CS_SCT_IPS_NOT_IPS = The Snomed CT code {0} ({1}) is not a member of the IPS free set -UNICODE_XML_BAD_CHARS_one = This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters -UNICODE_XML_BAD_CHARS_other = This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters -LIQUID_UNKNOWN_FILTER = Unknown Liquid filter '''{0}'' -LIQUID_UNKNOWN_SYNTAX = Unexpected syntax parsing liquid statement -LIQUID_SYNTAX_EXPECTING = Script {0}: Found ''{1}'' expecting ''{2}'' parsing cycle -LIQUID_SYNTAX_UNTERMINATED = Script {0}: Found unterminated string parsing cycle -LIQUID_UNKNOWN_FLOW_STMT = Script {0}: Unknown flow control statement ''{1}'' -LIQUID_UNKNOWN_NOEND = Script {0}: Found end of script looking for {1} -LIQUID_SYNTAX_INCLUDE = Script {0}: Error reading include: {1} -LIQUID_SYNTAX_LOOP = Script {0}: Error reading loop: {1} -LIQUID_SYNTAX_NOTERM = Script {0}: Unterminated Liquid statement {1} -LIQUID_UNKNOWN_NOTERM = Script {0}: Unterminated Liquid statement {1} -LIQUID_SYNTAX_COLON = Exception evaluating {0}: limit is not followed by '':'' -LIQUID_SYNTAX_NUMBER = Exception evaluating {0}: limit is not followed by a number -LIQUID_SYNTAX_UNEXPECTED = Exception evaluating {0}: unexpected content at {1} -LIQUID_VARIABLE_ALREADY_ASSIGNED = Liquid Exception: The variable ''{0}'' already has an assigned value -LIQUID_VARIABLE_ILLEGAL = Liquid Exception: The variable name ''{0}'' cannot be used -ED_INVARIANT_DIFF_NO_SOURCE = The invariant {0} defined in the differential must have no source, or the source must be the same as the profile -FHIRPATH_COLLECTION_STATUS_OPERATION_LEFT = The left side is inherently a collection, and so the expression ''{0}'' may fail or return false if there is more than one item in the content being evaluated -FHIRPATH_COLLECTION_STATUS_OPERATION_RIGHT = The right side is inherently a collection, and so this expression ''{0}'' may fail or return false if there is more than one item in the content being evaluated -FHIRPATH_OFTYPE_IMPOSSIBLE = The type specified in ofType() is {1} which is not a possible candidate for the existing types ({0}) in the expression {2}. Check the paths and types to be sure this is what is intended -FHIRPATH_AS_IMPOSSIBLE = The type specified in as() is {1} which is not a possible candidate for the existing types ({0}) in the expression {2}. Check the paths and types to be sure this is what is intended -ED_SEARCH_EXPRESSION_ERROR = Error in search expression ''{0}'': {1} -SD_EXTENSION_URL_MISMATCH = The fixed value for the extension URL is {1} which doesn''t match the canonical URL {0} -SD_EXTENSION_URL_MISSING = The value of Extension.url is not fixed to the extension URL {0} -MSG_DEPRECATED = Reference to deprecated {2} {0} -MSG_WITHDRAWN = Reference to withdrawn {2} {0} -MSG_RETIRED = Reference to retired {2} {0} -MSG_EXPERIMENTAL = Reference to experimental {2} {0} -MSG_DRAFT = Reference to draft {2} {0} -MSG_DEPRECATED_SRC = Reference to deprecated {2} {0} from {1} -MSG_WITHDRAWN_SRC = Reference to withdrawn {2} {0} from {1} -MSG_RETIRED_SRC = Reference to retired {2} {0} from {1} -MSG_EXPERIMENTAL_SRC = Reference to experimental {2} {0} from {1} -MSG_DRAFT_SRC = Reference to draft {2} {0} from {1} -STATUS_CODE_WARNING = The code is valid but is {0} -STATUS_CODE_HINT = The code is {0} -STATUS_CODE_WARNING_CODE = The code ''{1}'' is valid but is {0} -STATUS_CODE_HINT_CODE = The code ''{1}'' is {0} -SD_ED_TYPE_PROFILE_WRONG_TYPE_one = The type {0} is not in the list of allowed type {1} in the profile {2} -SD_ED_TYPE_PROFILE_WRONG_TYPE_other = The type {0} is not in the list of allowed types {1} in the profile {2} -MSG_DEPENDS_ON_DEPRECATED = The {0} {1} is deprecated -MSG_DEPENDS_ON_WITHDRAWN = The {0} {1} is withdrawn -MSG_DEPENDS_ON_RETIRED = The {0} {1} is retired -MSG_DEPENDS_ON_EXPERIMENTAL = The {0} {1} is an experimental resource -MSG_DEPENDS_ON_DRAFT = The {0} {1} is a draft resource -MSG_DEPENDS_ON_EXTENSION = extension -MSG_DEPENDS_ON_PROFILE = profile -VALIDATION_VAL_STATUS_INCONSISTENT = The resource status ''{0}'' and the standards status ''{1}'' are not consistent -VALIDATION_VAL_STATUS_INCONSISTENT_HINT = The resource status ''{0}'' and the standards status ''{1}'' may not be consistent and should be reviewed -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_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_COUNT_NO_CONTENT_ALLOWED = The code system says it has no content present, but concepts are found -VALUESET_CIRCULAR_REFERENCE = Found a circularity pointing to {0} processing ValueSet with pathway {1} -VALUESET_SUPPLEMENT_MISSING_one = Required supplement not found: {1} -VALUESET_SUPPLEMENT_MISSING_other = Required supplements not found: {1} -CONCEPTMAP_VS_TOO_MANY_CODES = The concept map has too many codes to validate ({0}) -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}'' -VALUESET_INC_TOO_MANY_CODES = The value set include has too many codes to validate ({0}), so each individual code has not been checked -BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH = The {1} resource did not match any of the allowed profiles (Type {2}: {3}) -BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_MULTIPLE_MATCHES = The {1} resource matched more than one of the allowed profiles ({3}) -BUNDLE_BUNDLE_ENTRY_MULTIPLE_PROFILES_NO_MATCH_REASON = The {1} resource did not math the profile {2} because: {3} -VALIDATION_HL7_WG_NEEDED = When HL7 is publishing a resource, the owning committee must be stated using the {0} extension -VALIDATION_HL7_WG_UNKNOWN = The nominated WG ''{0}'' is unknown -VALIDATION_HL7_PUBLISHER_MISMATCH = The nominated WG ''{0}'' means that the publisher should be ''{1}'' but ''{2}'' was found -VALIDATION_HL7_PUBLISHER_MISMATCH2 = The nominated WG ''{0}'' means that the publisher should be either ''{1}''or ''{2}'' but ''{3}'' was found -VALIDATION_HL7_WG_URL = The nominated WG ''{0}'' means that the contact url should be ''{1}'' but it was not found -VALIDATION_HL7_PUBLISHER_MISSING = When HL7 is publishing a resource, the publisher must be provided, and for WG ''{0}'' it should be ''{1}'' -TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NO_UNIT = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked, and the Quantity.unit SHOULD contain the annotation -TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS_NOT_IN_UNIT = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked, and the Quantity.unit ''{1}'' SHOULD contain the annotation (it does not) -TYPE_SPECIFIC_CHECKS_DT_QTY_UCUM_ANNOTATIONS = UCUM Codes that contain human readable annotations like {0} can be misleading (e.g. they are ignored when comparing units). Best Practice is not to depend on annotations in the UCUM code, so this usage should be checked -LOGICAL_MODEL_NAME_MISMATCH = The name ''{0}'' does not match the expected name ''{1}'' -LOGICAL_MODEL_QNAME_MISMATCH = The QName ''{0}'' does not match the expected QName ''{1}'' -FHIRPATH_CHOICE_NO_TYPE_SPECIFIER = The expression ''{0}'' refers to an element that is a choice, but doesn''t have an .ofType() so that SQL view runners can pre-determine the full element name -FHIRPATH_CHOICE_SPURIOUS_TYPE_SPECIFIER = The expression ''{0}'' refers to an element that is not a choice, but has an .ofType(). SQL view runners are likely to pre-determine an incorrect full element name -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 -TERMINOLOGY_TX_UNKNOWN_OID = The OID ''{0}'' is not known, so the code can''t 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 -XSI_TYPE_WRONG = The xsi:type value ''{0}'' is wrong (should be ''{1}''). Note that xsi:type is unnecessary at this point -XSI_TYPE_UNNECESSARY = xsi:type is unnecessary at this point -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 -CDA_UNKNOWN_TEMPLATE = The CDA Template {0} is not known -CDA_UNKNOWN_TEMPLATE_EXT = The CDA Template {0} / {1} is not known -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}) -ED_CONTEXT_INVARIANT_EXPRESSION_ERROR = Error in constraint ''{0}'': {1} -VALIDATION_VAL_PROFILE_SIGNPOST_OBS = Validate Observation against the {1} profile ({0}) which is required by the FHIR specification because the {2} code {3} was found -FHIRPATH_INVALID_TYPE = The type {0} is not valid -FHIRPATH_AS_COLLECTION = Attempt to use ''as()'' on more than one item (''{0}'', ''{1}'') -FHIRPATH_ARITHMETIC_QTY = Error in date arithmetic: attempt to add a definite quantity duration time unit {0} -FHIRPATH_ARITHMETIC_UNIT = Error in date arithmetic: unrecognized time unit {0} -FHIRPATH_ARITHMETIC_PLUS = Error in date arithmetic: Unable to add type {0} to {1} -FHIRPATH_ARITHMETIC_MINUS = Error in date arithmetic: Unable to subtract type {0} to {1} -BUNDLE_ENTRY_URL_MATCHES_NO_ID = The fullUrl ''{0}'' looks like a RESTful server URL, but the resource has no id -BUNDLE_ENTRY_URL_MATCHES_TYPE_ID = The fullUrl ''{0}'' looks like a RESTful server URL, so it must end with the correct type and id (/{1}/{2}) -BUNDLE_ENTRY_URL_ABSOLUTE = The fullUrl must be an absolute URL (not ''{0}'') -FHIRPATH_COLLECTION_STATUS_PARAMETER = Parameter {1} is inherently a collection, and so the expression ''{0}'' may fail, create an error, or return false if there is more than one item in the parameter value ({2}) -FHIRPATH_COLLECTION_STATUS_CONTEXT = The context is inherently a collection, and so the expression ''{0}'' may fail, create an error, or return false if there is more than one item in the context ({2}) -BUNDLE_BUNDLE_ENTRY_NOTFOUND_FRAGMENT = Can''t find ''{0}'' in the bundle ({1}) -BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE_FRAGMENT = Found {0} matches for fragment {2} in resource ''{1}'' in the bundle ({3}) -XHTML_IDREF_NOT_FOUND = The target of the HTML idref attribute ''{0}'' was not found in the resource -XHTML_IDREF_NOT_MULTIPLE_MATCHES = Multiple matching targets for the HTML idref attribute ''{0}'' were found in the resource -TX_GENERAL_CC_ERROR_MESSAGE = No valid coding was found for the value set ''{0}'' -Validation_VAL_Profile_Minimum_SLICE_one = Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice -Validation_VAL_Profile_Minimum_SLICE_other = Slice ''{3}'': minimum required = {0}, but only found {7} (from {1}) -FHIRPATH_UNKNOWN_EXTENSION = Reference to an unknown extension - double check that the URL ''{0}'' is correct -FHIRPATH_REDEFINE_VARIABLE = The variable ''{0}'' cannot be redefined -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 -TYPE_SPECIFIC_CHECKS_DT_XHTML_MULTIPLE_MATCHES = Hyperlink ''{0}'' at ''{1}'' for ''{2}'' resolves to multiple targets ({3}) -CONTAINED_ORPHAN_DOM3 = The contained resource ''{0}'' is not referenced to from elsewhere in the containing resource nor does it refer to the containing resource (dom-3) -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_CSVER_NOT_FOUND = No matching contained code system found for system ''{0}'' version ''{1}'' -VALUESET_INCLUDE_CS_MULTI_FOUND = Multiple matching contained code systems found for system ''{0}'' -VALUESET_INCLUDE_CSVER_MULTI_FOUND = Multiple matching contained code systems found for system ''{0}'' version ''{1}'' -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 -SCT_NO_MRCM = Not validated against the Machine Readable Concept Model (MRCM) -ILLEGAL_PROPERTY = The property ''{0}'' is invalid -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 -CODESYSTEM_CS_SUPP_NO_SUPP = The code system is marked as a supplement, but it does not define what code system it supplements -VALUESET_INCLUDE_CS_CONTENT = The value set references CodeSystem ''{0}'' which has status ''{1}'' -VALUESET_INCLUDE_CSVER_CONTENT = The value set references CodeSystem ''{0}'' version ''{2}'' which has status ''{1}'' -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_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 -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_NOT_CONTAINED = CodeSystems are referred to directly from Coding.system, so it's generally best for them not to be contained resources -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) -TYPE_SPECIFIC_CHECKS_DT_CANONICAL_MULTIPLE_POSSIBLE_VERSIONS = There are multiple different potential matches for the url ''{0}''. It might be a good idea to fix to the correct version to reduce the likelihood of a wrong version being selected by an implementation/implementer. Using version ''{1}'', found versions: {2} -ABSTRACT_CODE_NOT_ALLOWED = Code ''{0}#{1}'' is abstract, and not allowed in this context -CODESYSTEM_PROPERTY_DUPLICATE_URI = A property is already defined with the URI ''{0}'' -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_SYNONYM_CHECK = The synonym ''{0}'' is not also defined in the code system. The Synonym property should only used to declare equivalence to other existing codes -CODESYSTEM_PROPERTY_DUPLICATE_CODE = A property is already defined with the code ''{0}'' -CODESYSTEM_PROPERTY_URI_CODE_MISMATCH = The URI ''{0}'' is normally assigned the code ''{1}''. Using the code ''{2}'' will usually create confusion in ValueSet filters etc -CODESYSTEM_PROPERTY_URI_TYPE_MISMATCH = Wrong type ''{2}'': The URI ''{0}'' identifies a property that has the type ''{1}'' -CODESYSTEM_PROPERTY_UNKNOWN_CODE = This property has only a code (''{0}'') and not a URI, so it has no clearly defined meaning in the terminology ecosystem -CODESYSTEM_PROPERTY_KNOWN_CODE_SUGGESTIVE = This property has only the standard code (''{0}'') but not the standard URI ''{1}'', so it has no clearly defined meaning in the terminology ecosystem -CODESYSTEM_PROPERTY_CODE_TYPE_MISMATCH = Wrong type ''{2}'': The code ''{0}'' identifies a property that has the type ''{1}'' -CODESYSTEM_PROPERTY_UNDEFINED = The property ''{0}'' has no definition in CodeSystem.property. Many terminology tools won''t know what to do with it -CODESYSTEM_PROPERTY_NO_VALUE = The property ''{0}'' has no value, and cannot be understood -CODESYSTEM_PROPERTY_WRONG_TYPE = The property ''{0}'' has the invalid type ''{1}'', when it is defined to have the type ''{2}'' -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_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}'') -VALUESET_UNKNOWN_FILTER_PROPERTY = The property ''{0}'' is not known for the system ''{1}'', so may not be understood by the terminology ecosystem. Known properties for this system: {2} -VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS = No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2} -VALUESET_BAD_FILTER_VALUE_BOOLEAN = The value for a filter based on property ''{0}'' must be either ''true'' or ''false'', not ''{1}'' -VALUESET_BAD_FILTER_VALUE_CODE = The value for a filter based on property ''{0}'' must be a valid code, not ''{1}'' -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_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 -VALUESET_BAD_FILTER_VALUE_CODED = The value for a filter based on property ''{0}'' must be in the format system(|version)#code, not ''{1}'' -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_OP = The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2} -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_VALID_REGEX = The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'') -VALUESET_BAD_PROPERTY_NO_REGEX = Cannot apply a regex filter to the property ''{0}'' (usually regex filters are applied to the codes, or a named property of the code system) -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 -SD_ELEMENT_FIXED_WRONG_TYPE = The base element has a fixed type of ''{0}'', so this element must have a fixed value of the same type, not ''{1}'' -SD_ELEMENT_REASON_DERIVED = , because the value must match the fixed value define in ''{0}'' -SD_ELEMENT_PATTERN_WRONG_TYPE = The base element has a pattern type of ''{0}'', so this element must have a pattern value of the same type, not ''{1}'' -BINDING_ADDITIONAL = {0} specified in an additional binding -BINDING_MAX = {0} specified in the max binding diff --git a/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties b/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties index 5d5dbef1f..bad67e462 100644 --- a/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties +++ b/org.hl7.fhir.utilities/src/main/resources/rendering-phrases.properties @@ -1,41 +1,585 @@ # Rendering -BUNDLE_HEADER_ROOT = Bundle {0} of type {1} +ACTOR_DEF_ACT = Actor: {0} +ACTOR_DEF_CAP = Capabilities: +ACTOR_DEF_DER = Derived from: +ACTOR_DEF_REF = References: +ACTOR_DEF_TYP = Type: {0} +ADD_BIND_ADD_BIND = Additional Bindings +ADD_BIND_ALL_REP = All repeats +ADD_BIND_ANY = Any +ADD_BIND_ANY_REP = any repeat +ADD_BIND_ANY_REPS = Any repeats +ADD_BIND_COMPONENT = Component +ADD_BIND_CURR_BIND = Current Binding +ADD_BIND_DESIG_SYS = This value set is a good set of codes to start with when designing your system +ADD_BIND_DOC = Documentation +ADD_BIND_EXT_PREF = A required binding, for use when the binding strength is 'extensible' or 'preferred' +ADD_BIND_EX_BIND = Extensible Binding +ADD_BIND_GIVEN_CONT = This value set is provided to user look up in a given context +ADD_BIND_MAX = Max Binding +ADD_BIND_MIN = Min Binding +ADD_BIND_MIN_ALLOW = The minimum allowable value set - any conformant system SHALL support all these codes +ADD_BIND_NEW_REC = New records are required to use this value set, but legacy records may use other codes +ADD_BIND_PREFERRED = Preferred +ADD_BIND_PREF_BIND = Preferred Binding +ADD_BIND_PUR = Purpose +ADD_BIND_RECOM_VALUE_SET = This is the value set that is recommended (documentation should explain why) +ADD_BIND_REQUIRED = Required +ADD_BIND_REQ_BIND = Required Binding +ADD_BIND_STARTER = Starter +ADD_BIND_UI = UI +ADD_BIND_UI_BIND = UI Binding +ADD_BIND_UNKNOWN_PUR = Unknown code for purpose +ADD_BIND_USE = Usage +ADD_BIND_VALID_EXT = Validators will check this binding (strength = extensible) +ADD_BIND_VALID_REQ = Validators will check this binding (strength = required) +ADD_BIND_VALUE_COMP = This value set is a component of the base value set +BIND_REND_NO_CONTENT = No Content Type +BUNDLE_DOCUMENT_CONTENT = Additional Document Content +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}) BUNDLE_HEADER_ENTRY = Entry {0} BUNDLE_HEADER_ENTRY_URL = Entry {0} - fullUrl = {1} +BUNDLE_HEADER_ROOT = Bundle {0} of type {1} +BUNDLE_IF_MATCH = If-Match = {0} +BUNDLE_IF_MOD = If-Modified-Since = {0} +BUNDLE_IF_NONE = If-None-Exist = {0} +BUNDLE_IF_NON_MATCH = If-None-Match = {0} +BUNDLE_LAST_MOD = LastModified = {0} +BUNDLE_LOCATION = Location = {0} +BUNDLE_REQUEST = Request: BUNDLE_RESOURCE = Resource {0}: +BUNDLE_RESPONSE = Response: +BUNDLE_REV_EXCP = Exception generating narrative: {0} +BUNDLE_REV_INV_DOC = Invalid document - first entry is not a Composition BUNDLE_SEARCH = Search: BUNDLE_SEARCH_MODE = Mode = {0} BUNDLE_SEARCH_SCORE = Score = {0} -BUNDLE_RESPONSE = Response: -BUNDLE_LOCATION = Location = {0} -BUNDLE_ETAG = ETag = {0} -BUNDLE_LAST_MOD = LastModified = {0} -BUNDLE_REQUEST = Request: -BUNDLE_IF_NON_MATCH = If-None-Match = {0} -BUNDLE_IF_MOD = If-Modified-Since = {0} -BUNDLE_IF_MATCH = If-Match = {0} -BUNDLE_IF_NONE = If-None-Exist = {0} +BUND_REND_GEN_NARR = generating narrative +BUND_REND_INVALID_DOC = Invalid document ''{0}'' - first entry is not a Composition ({0}) +BUND_REND_RES = resource +CANON_REND_COMMITTEE = Committee +CANON_REND_COPYRIGHT = Copyright +CANON_REND_DEFINITION = Definition +CANON_REND_JSON = JSON +CANON_REND_MATURITY = Maturity +CANON_REND_NAME = Name +CANON_REND_PUBLISHER = Publisher +CANON_REND_SOURCE_RES = Source Resource +CANON_REND_STATUS = Status +CANON_REND_TITLE = Title +CANON_REND_TURTLE = Turtle +CANON_REND_URL = Defining URL +CANON_REND_VER = Version +CANON_REND_XML = XML +CAPABILITY_ADD_SUPP_PROF = Additional supported profiles: +CAPABILITY_BASE_SYS = Base System Profile +CAPABILITY_COMB_SEARCH_PAR = Combined Search Parameters +CAPABILITY_CONF = Conformance +CAPABILITY_CORS_NO = Enable CORS: no +CAPABILITY_CORS_YES = Enable CORS: yes +CAPABILITY_CREATE_INT = POST a new resource (create interaction) +CAPABILITY_CRIT = Criteria +CAPABILITY_DELETE_INT = DELETE a resource (delete interaction) +CAPABILITY_DOC = Documentation +CAPABILITY_EXT_OP = Extended Operations +CAPABILITY_FHIR = Core FHIR Resource +CAPABILITY_FHIR_VER = FHIR Version: {0} +CAPABILITY_HISTORY_INT = GET changes to a resource (history interaction on instance) +CAPABILITY_HISTORY_TYPE = GET changes for all resources of the type (history interaction on type) +CAPABILITY_IMP_VER = Implementation Guide Version: {0} +CAPABILITY_INT = interaction. +CAPABILITY_INTER_SUPP = The interactions supported by each resource ( +CAPABILITY_INT_DESC = interaction described as follows: +CAPABILITY_INT_SUMM = Interaction summary +CAPABILITY_NOTE_CAP = Note to Implementers: FHIR Capabilities +CAPABILITY_OP = Operations +CAPABILITY_OPER = Operation +CAPABILITY_OTH_RES_ENB = The other resources enabled for +CAPABILITY_PAR = Parameter +CAPABILITY_PARS = Parameters +CAPABILITY_PATCH_INT = PATCH a new resource version (patch interaction) +CAPABILITY_PROF = Profile +CAPABILITY_PROF_CONF = Profile Conformance +CAPABILITY_PROF_MAP = Profile Mapping +CAPABILITY_PUB_BY = Published by: {0} +CAPABILITY_PUB_ON = Published on: {0} +CAPABILITY_READ_INT = GET a resource (read interaction) +CAPABILITY_REF_PROF = Reference Policy +CAPABILITY_REQ_RECOM = Required and recommended search parameters +CAPABILITY_REST_CAPS = FHIR RESTful Capabilities +CAPABILITY_REST_CONFIG = REST Configuration: {0} +CAPABILITY_RES_CONF = Resource Conformance: {0} +CAPABILITY_RES_ENB = The linked resources enabled for +CAPABILITY_RES_OPER = The operations on the resource (if any) +CAPABILITY_RES_PRO = Capabilities by Resource/Profile +CAPABILITY_RES_TYP = Resource Type +CAPABILITY_REV_PROF = The relevant profiles (if any) +CAPABILITY_SEARCHES = Searches +CAPABILITY_SEARCH_INT = GET all set of resources of the type (search interaction) +CAPABILITY_SEARCH_PAR = The required, recommended, and some optional search parameters (if any). +CAPABILITY_SEARCH_PARS = Search Parameters +CAPABILITY_SHOULD_SUPP = SHOULD Support the Following Implementation Guides +CAPABILITY_SUMM = Summary +CAPABILITY_SUMM_RES = The summary table lists the resources that are part of this configuration, and for each resource it lists: +CAPABILITY_SUMM_SYS_INT = Summary of System-wide Interactions +CAPABILITY_SUPP = support +CAPABILITY_SUPPS = Supports +CAPABILITY_SUPP_FORM = Supported Formats: +CAPABILITY_SUPP_PATCH_FORM = Supported Patch Formats: +CAPABILITY_SUPP_PROF = Supported Profiles +CAPABILITY_SUPP_PROFS = Supported Profiles +CAPABILITY_SUPP_THE = Supports the +CAPABILITY_TYP = Type +CAPABILITY_TYPS = Types +CAPABILITY_TYP_PRES = ype are only present if at least one of the resources has support for them. +CAPABILITY_UPDATE_INT = PUT a new resource version (update interaction) +CAPABILITY_VREAD_INT = GET past versions of resources (vread interaction) +CAPABILTY_ALLOW_CAP = Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case. +CAPABILTY_SHALL_SUPP = SHALL Support the Following Implementation Guides CODEPROP_CODE = Code -CODESYSTEM_PROPS = Properties CODESYSTEM_CONCEPTS = Concepts +CODESYSTEM_CONTENT_COMPLETE This code system defines the following codes: +CODESYSTEM_CONTENT_EXAMPLE = This code system provides some codes that are example only: +CODESYSTEM_CONTENT_FRAGMENT = This code system provides a fragment that includes following codes: +CODESYSTEM_CONTENT_NOTPRESENT = This code system defines codes, but no codes are represented here +CODESYSTEM_CONTENT_SUPPLEMENT = This code system defines {0} on the following codes: CODESYSTEM_DEPRECATED = Deprecated CODESYSTEM_DESC = Description CODESYSTEM_FILTERS = Filters CODESYSTEM_FILTER_CODE = Code CODESYSTEM_FILTER_OP = Op CODESYSTEM_FILTER_VALUE = Value -CODESYSTEM_PROP_CODE = Code -CODESYSTEM_PROP_NAME = Name -CODESYSTEM_PROP_URI = URI -CODESYSTEM_PROP_DESC = Description -CODESYSTEM_PROP_TYPE = Type +CODESYSTEM_PROPS = Properties CODESYSTEM_PROPS_DESC = This code system defines the following properties for its concepts -CODESYSTEM_CONTENT_COMPLETE This code system defines the following codes: -CODESYSTEM_CONTENT_EXAMPLE = This code system provides some codes that are example only: -CODESYSTEM_CONTENT_FRAGMENT = This code system provides a fragment that includes following codes: -CODESYSTEM_CONTENT_NOTPRESENT = This code system defines codes, but no codes are represented here -CODESYSTEM_CONTENT_SUPPLEMENT = This code system defines {0} on the following codes: +CODESYSTEM_PROP_CODE = Code +CODESYSTEM_PROP_DESC = Description +CODESYSTEM_PROP_NAME = Name +CODESYSTEM_PROP_TYPE = Type +CODESYSTEM_PROP_URI = URI +CODE_SYS_ADD_LANG = Additional Language Displays +CODE_SYS_CODE = Code +CODE_SYS_CODE_NOT_HERE = This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content) +CODE_SYS_COMPLETE = All the concepts defined by the code system are included in the code system resource +CODE_SYS_CONTENT = Content +CODE_SYS_COPY = Copy +CODE_SYS_DISP = displays +CODE_SYS_DISP_PROP = displays and properties +CODE_SYS_EXAMPLE = A few representative concepts are included in the code system resource +CODE_SYS_FEAT = features +CODE_SYS_FOR_OID = for OID based terminology systems +CODE_SYS_FRAGMENT = A subset of the code system concepts are included in the code system resource +CODE_SYS_IN_A_HIERARCHY = in a {0} hierarchy +CODE_SYS_NOTPRESENT = None of the concepts defined by the code system are included in the code system resource +CODE_SYS_OID = OID +CODE_SYS_PROP = properties +CODE_SYS_REPLACED_BY = (replaced by +CODE_SYS_SUPPLEMENT = This code system resource is a supplement to +CODE_SYS_THE_VALUE_SET = is the value set for all codes in this code system +CODE_SYS_UNDEF_HIER = in an undefined heirarchy +CODE_SYS_UNKN_MODE = Unknown CodeSystemContentMode mode +CODE_SYS_VALUE_SET = Value Set +CONC_MAP_CMNT = Comment +CONC_MAP_CODE = Code +CONC_MAP_CODES = Codes +CONC_MAP_CODE_SYS_UNSPEC = unspecified code system +CONC_MAP_FRM = from +CONC_MAP_FROM = Mapping from +CONC_MAP_GRP = Group {0} +CONC_MAP_NOT_SPEC = (not specified) +CONC_MAP_NO_PROD_USE = (not intended for production usage). +CONC_MAP_PROP = Properties +CONC_MAP_PUB_ON = Published on {0} +CONC_MAP_REL = Relationship +CONC_MAP_SOURCE = Source Code +CONC_MAP_SRC_DET = Source Concept Details +CONC_MAP_TO = to +CONC_MAP_TRGT = Target Code +CONC_MAP_TRGT_DET = Target Concept Details +DATA_REND_AFTRBKFST = after breakfast +DATA_REND_AFTRDINR = after dinner +DATA_REND_AFTRLUNCH = after lunch +DATA_REND_AFTRMEALS = after meals +DATA_REND_AFTRWKNG = after waking +DATA_REND_ATBKFST = at breakfast +DATA_REND_ATDINR = at dinner +DATA_REND_ATLUNCH = at lunch +DATA_REND_BASE64 = (base64 data - {0} bytes) +DATA_REND_BFBKFST = before breakfast +DATA_REND_BFDINR = before dinner +DATA_REND_BFLUNCH = before lunch +DATA_REND_BFMEALS = before meals +DATA_REND_BFSLEEP = before sleeping +DATA_REND_BY = By +DATA_REND_CODE = Code +DATA_REND_CODES = Codes: +DATA_REND_COND = Condition +DATA_REND_COUNT = Count {0} +DATA_REND_DATA = Data: {0} +DATA_REND_DETAILS = (Details: {0} code +DATA_REND_DETAILS_STATED = (Details: {0} code {1} {2} {3} ', stated as ' {4} {5} +DATA_REND_DICOM = DICOM +DATA_REND_DIM = Dimensions: {0} +DATA_REND_DURATION = Duration {0} +DATA_REND_ERROR = Error: {0} +DATA_REND_EVENTS = Events: {0} +DATA_REND_EXCEPTION = Exception +DATA_REND_FACT = Factor: {0} +DATA_REND_FAX = Fax: {0} +DATA_REND_FILT = Filter +DATA_REND_GETCODE = Code: {0} +DATA_REND_GLN = Global Location Number +DATA_REND_ICD = ICD-9 +DATA_REND_INT = Interval: {0} +DATA_REND_LIMIT = Limit +DATA_REND_LOINC = LOINC +DATA_REND_LOWER = Lower: {0} +DATA_REND_MEALS = at meals +DATA_REND_MKDWN_LNK = Unable to resolve markdown link +DATA_REND_NAME = Name +DATA_REND_NOT_STAT = [not stated] +DATA_REND_NO_DISP = No display for {0} +DATA_REND_ONCE = Once +DATA_REND_ONGOING = (ongoing) +DATA_REND_ORIGIN = Origin: {0} +DATA_REND_PER = per +DATA_REND_PERIOD = period: +DATA_REND_PHONE = Phone: {0} +DATA_REND_RXNORM = RxNorm +DATA_REND_SEARCH = Search on: {0} +DATA_REND_SNOMED = SNOMED CT +DATA_REND_SORT = Sort +DATA_REND_SOURCE = source +DATA_REND_STARTING = Starting {0} +DATA_REND_SUB = Subject +DATA_REND_THESE_CODES = One of these codes: +DATA_REND_TIMING = Timing +DATA_REND_TO_DO = to do: {0} +DATA_REND_TYPE = Type +DATA_REND_UCUM = UCUM +DATA_REND_UNKNWN = unknown +DATA_REND_UNRD_EX = WARNING: Unrenderable Modifier Extension! +DATA_REND_UNTIL = Until {0} +DATA_REND_UP = Upper: {0} +DATA_REND_USE = use: +DATA_REND_VALUE = Value +DATA_REND_VALUESET = In ValueSet +DATA_REND_VERSION = (version = {0} {1} +DIAG_REP_REND_AGE = Age +DIAG_REP_REND_CODE = Code +DIAG_REP_REND_CODECON = Coded Conclusions : +DIAG_REP_REND_ERR = Error: +DIAG_REP_REND_FLAG = Flags +DIAG_REP_REND_FOR = for +DIAG_REP_REND_IDEN = Identifier: {0} +DIAG_REP_REND_IDENTIFIER = Identifier +DIAG_REP_REND_NOTDONE = Not done yet +DIAG_REP_REND_NOTE = Note +DIAG_REP_REND_NOTRES = This Observation could not be resolved +DIAG_REP_REND_OBS = Observation +DIAG_REP_REND_PER = Performer +DIAG_REP_REND_REFRAN = Reference Range +DIAG_REP_REND_REP = Reported +DIAG_REP_REND_REPDET = Report Details +DIAG_REP_REND_REQ = Request: {0} +DIAG_REP_REND_REQUEST = Request +DIAG_REP_REND_SUB = Subject +DIAG_REP_REND_UNABLE = Unable to get Patient Details +DIAG_REP_REND_VALUE = Value +DIAG_REP_REND_WHEN = When For +EXAMPLE_SCEN_STEP_SCEN = Step {0} - See scenario\n {1} +EXAMPLE_SCEN_UNABLE_TO_FIND = Unable to find referenced version {0} within instance {1} +EX_SCEN_ALT = Alternative {0} +EX_SCEN_BEL = below +EX_SCEN_CONT = Content +EX_SCEN_CONTA = Contains: +EX_SCEN_DESC = Description +EX_SCEN_ERR_REN = Error rendering ExampleScenario {0} +EX_SCEN_FVER = FHIR version +EX_SCEN_IN = Initiator +EX_SCEN_NAME = Name +EX_SCEN_OTH = See other scenario +EX_SCEN_POSTCON = Post-conditions: +EX_SCEN_PRECON = Pre-conditions: +EX_SCEN_PROC = Process: {0} +EX_SCEN_REC = Receiver +EX_SCEN_REQ = Request +EX_SCEN_RES = Response +EX_SCEN_SEE = See subprocess +EX_SCEN_STEP = Step +EX_SCEN_TIME = ... time passes ...\n +EX_SCEN_TYPE = Type +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} +EX_SCEN_VER = version +IMP_GUIDE_URL = The official URL for this implementation guide is: +LIB_REND_ART = Related Artifacts +LIB_REND_AUT = Author +LIB_REND_CONT = Contents +LIB_REND_ED = Editor +LIB_REND_END = Endorser +LIB_REND_NOCONT = No Content +LIB_REND_PAR = Participants +LIB_REND_PARA = Parameters +LIB_REND_REQ = Data Requirements +LIB_REND_REV = Reviewer +LIB_REND_SHOW = Content not shown - ( +LIB_REND_SIZE = , size = {0} +LIST_REND_CODE = Code: {0} +LIST_REND_DAT = Date +LIST_REND_DATE = Date: {0} +LIST_REND_DEL = Deleted +LIST_REND_ENC = Encounter: +LIST_REND_FLAG = Flag +LIST_REND_ITEM = Items +LIST_REND_MODE = Mode: {0} +LIST_REND_ORD = Order: {0} +LIST_REND_SRC = Source: +LIST_REND_STAT = Status: {0} +LIST_REND_SUB = Subject: +MAP_DEFAULT_COMMENT = This element was not defined prior to R5 +NAME_SYS_COM = Comment +NAME_SYS_COPY = Copyright +NAME_SYS_DEF = Definition +NAME_SYS_FOROID = for OID based terminology systems +NAME_SYS_IDEN = Identifiers +NAME_SYS_NAME = Name +NAME_SYS_OID = OID +NAME_SYS_PER = Period +NAME_SYS_PREF = Preferred +NAME_SYS_PUB = Publisher +NAME_SYS_STAT = Status +NAME_SYS_SUM = Summary +NAME_SYS_TITLE = Title +NAME_SYS_TYPE = Type +NAME_SYS_URL = Defining URL +NAME_SYS_VALUE = Value +NAME_SYS_VER = Version +OBLIG_ACT = Actor +OBLIG_DOC = Documentation +OBLIG_ELE = Elements +OBLIG_FILT = Filter +OBLIG_OBLIG = Obligations +OBLIG_USE = Usage +OP_DEF_BIND = Binding +OP_DEF_CARD = Cardinality +OP_DEF_DOC = Documentation +OP_DEF_INPAR = Input parameters Profile: +OP_DEF_NAME = Name +OP_DEF_OFFIC = The official URL for this operation definition is: +OP_DEF_OUTPAR = Output parameters Profile: +OP_DEF_PAR = Parameters +OP_DEF_SCO = Scope +OP_DEF_TYPE = Type +OP_DEF_URL = URL: [base]/{0} +OP_DEF_URLS = URL: [base]/${0} +OP_DEF_USE = Use +OP_OUT_CODE = Code +OP_OUT_DET = Details +OP_OUT_DIAG = Diagnostics +OP_OUT_LOC = Location +OP_OUT_NOT = Not done yet +OP_OUT_OK = All OK +OP_OUT_SEV = Severity +OP_OUT_SRC = Source +OP_OUT_TODO = todo +PAR_REND_PAR = Parameters +PAT_ACTIVE = Active: +PAT_ACTIVE_HINT = Record is active +PAT_ALT_NAME = Alt. Name: +PAT_ALT_NAME_HINT = Alternate names (see the one above) +PAT_CONTACT = Contact Detail +PAT_CONTACT_HINT = Ways to contact the Patient +PAT_CONTAINED_one = Contained Resource +PAT_CONTAINED_other = Contained Resources +PAT_DECEASED = Deceased: +PAT_DECEASED_HINT = Known status of Patient +PAT_DOB = DoB: {0} +PAT_GENDER = Gender: {0} +PAT_GP = General Practitioner +PAT_LANG_HINT_one = Language spoken +PAT_LANG_HINT_other = Languages spoken +PAT_LANG_PREFERRED = (preferred) +PAT_LANG_one = Language: +PAT_LANG_other = Languages: +PAT_LINKS = Links: +PAT_LINKS_HINT = Patient Links +PAT_LINK_REFER = Please refer to +PAT_LINK_REPL = This record replaces +PAT_LINK_REPLBY = This record replaced by +PAT_LINK_SEE = Also see +PAT_MARITAL = Marital Status: +PAT_MARITAL_HINT = Known Marital status of Patient +PAT_MO = Managing Organization +PAT_MUL_BIRTH = Multiple Birth: +PAT_MUL_BIRTH_HINT = Known multipleBirth status of Patient +PAT_NOK_CONTACT = Contact: +PAT_NOK_CONTACT_HINT = Patient contact +PAT_NOM_CONTACT = Nominated Contact: +PAT_NO_DOB = DoB Unknown +PAT_NO_GENDER = (no stated gender) +PAT_NO_NAME = Anonymous Patient +PAT_ORG = Organization: +PAT_OTHER_ID_HINT_one = Other Id (see the one above) +PAT_OTHER_ID_HINT_other = Other Ids (see the one above) +PAT_OTHER_ID_one = Other Id: +PAT_OTHER_ID_other = Other Ids: +PAT_PERIOD = Valid Period: +PAT_PHOTO = Patient Photo +PAT_RELN = Relationships: +PROF_DRIV_ERR_GEN_NARR = Error Generating Narrative for +PROF_DRIV_EXCP = Exception Generating Narrative: {0} +PROF_DRIV_FEXCP = Cannot find definition for {0} +PROF_DRIV_GEN_NARR = Generated Narrative: {0} {1} +PROV_ACT = Activity +PROV_AGE = Agents +PROV_BEHALF = On Behalf Of +PROV_FOR = Provenance for {0} +PROV_LOC = Location +PROV_NOT = Not done yet +PROV_OCC = Occurrence +PROV_POL = Policy +PROV_PROV = Provenance for +PROV_PROVE = Provenance for: +PROV_REC = Recorded +PROV_ROLE = Role +PROV_SUM = Summary +PROV_TYPE = Type +PROV_WHO = who +QUEST_ADD_INFO = Additional information about the item +QUEST_ALLOWED = Allowed Answers +QUEST_ANSW = Answer options for {0} +QUEST_ANSWER = Answer +QUEST_ANSWERS = Answers +QUEST_APP = Approval Date +QUEST_ARE_TRUE = ?? are true: +QUEST_ATTRIBUTES = Other attributes of the item +QUEST_CALC = Calculated Value +QUEST_CAND = Candidates +QUEST_CARD = Cardinality +QUEST_CAT = Category: {0} +QUEST_CODE = Code +QUEST_CONT = Context +QUEST_COPYRIGHT = Copyright +QUEST_DEF = Definition: +QUEST_DEFINITION = Definition +QUEST_DERIVED = Derived From +QUEST_DESC = Description & Constraints +QUEST_DESCRIPTION = Description +QUEST_DISPLAY = Is optional to display +QUEST_DISPLAY_CAT = Display Category +QUEST_EFF_PERIOD = Effective Period +QUEST_EN = Enable When +QUEST_ENABLE = Enable When: +QUEST_EXP = Expressions: +QUEST_EXPER = Experimental +QUEST_FLAG = Flags +QUEST_GROUP = Group +QUEST_HIDDEN = Is a hidden item +QUEST_HIDDEN_ITEM = Hidden Item +QUEST_ID = Link Id +QUEST_INITIAL = Initial Value: +QUEST_INITIALLY = (initially selected) +QUEST_INITIAL_ANSWER = Initial Answer +QUEST_INT = Initial Values +QUEST_ITEM = Item +QUEST_ITEM_CONT = Item Context +QUEST_LINK = The linkID for the item +QUEST_LINKED = Is linked to an observation +QUEST_LINKID = LinkID +QUEST_MAND = Mandatory +QUEST_MAX = Max Length: +QUEST_MAX_LENGTH = Max Length +QUEST_NAME = Name +QUEST_NLM = NLM Forms Library +QUEST_NONE_SPEC = None specified +QUEST_NOT_DONE = Not done yet +QUEST_OBSERVATION = Observation Link Period +QUEST_OPT = Options Sets +QUEST_OPTIONS = Options: +QUEST_ORIENTATION = Orientation: {0} +QUEST_PREFIX = Prefix +QUEST_PUB = Publication Date +QUEST_PURPOSE = Purpose +QUEST_QUEST = Questionnaire +QUEST_QUESTION = Questionnaire: +QUEST_QUESTIONNAIRE = Questionnaire {0} +QUEST_READONLY = Is Read Only +QUEST_READ_ONLY = Read Only +QUEST_REP = Repeats +QUEST_REQ = Required +QUEST_RESP = QuestionnaireResponse +QUEST_RESP_ROOT = QuestionnaireResponseRoot +QUEST_REV_DATE = Last Review Date +QUEST_ROOT = QuestionnaireRoot +QUEST_STATUS = Status +QUEST_STRUCT = Structure +QUEST_SUB = Subject +QUEST_SUBJECT = Can change the subject of the questionnaire +QUEST_SUB_TYPE = Subject Type +QUEST_TEXT = Text +QUEST_TEXTFOR = Text for the item +QUEST_TIMES = Minimum and Maximum # of times the item can appear in the instance +QUEST_TITLE = Title +QUEST_TODO = todo +QUEST_TRUE = are true: +QUEST_TRY = Try this questionnaire out: +QUEST_TRY_QUEST = Try this QuestionnaireResponse out: +QUEST_TYPE = Type +QUEST_TYPE_ITEM = The type of the item +QUEST_UNKNOWN_MODE = Unknown QuestionnaireResponse Renderer Mode +QUEST_URL = URL +QUEST_VALUE = Value Set: +QUEST_VALUE_SET = Value Set +QUEST_VERSION = Version +REND_ADDED = Added: +REND_CHANGED = Changed: +REND_REMOVED = Removed: +REND_ROW_CHANGED_SINCE = This row of content has been changed since {0} +REND_ROW_CHANGED_SINCE_WAS = This row of content has been changed since {0} (was ''{1}'') +REND_ROW_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_DELETED = This content has been removed since {0} +REND_STANDARDS = Standards Status = {0} +REQ_ACTOR = These requirements apply to the actor +REQ_DERIVE = These requirements derive from +REQ_DERIVED = Derived From: +REQ_FOLLOWING_ACTOR = These requirements apply to the following actors: +REQ_FOLLOWING_REQ = These requirements are derived from the following requirements: +REQ_LINKS = Links: +REQ_REFERENCES = References: +REQ_SATISFIED = Satisfied By: +REQ_SOURCES = Source: RESOURCE_COPYRIGHT = Copyright Statement: +RES_REND_ACT = Active +RES_REND_COND_REF = Conditional Reference: +RES_REND_DESC = . Description: (todo) +RES_REND_DRAFT = draft +RES_REND_ERROR = Error rendering: {0} +RES_REND_EXP = Experimental +RES_REND_GEN_SUM = . Generated Summary: +RES_REND_INFO_SOURCE = Information Source: +RES_REND_LANGUAGE = (Language +RES_REND_PROF = Profile +RES_REND_PROFILE = Profile +RES_REND_RESOURCE = Resource +RES_REND_RET = retired +RES_REND_SECURITY = Security Label +RES_REND_SECURITY_LABEL = Security Label +RES_REND_SEE_ON_THIS_PAGE = See on this page: +RES_REND_SPEC_RULES = Special rules apply: +RES_REND_TAG = Tag +RES_REND_TODO = todo +RES_REND_UNKNOWN = Unknown +RES_REND_UPDATED = Updated +RES_REND_VER = (version +RES_REND_VERSION = Version SD_COMP_HEAD_CARD_L = L Card. SD_COMP_HEAD_CARD_L_DESC = Minimum and Maximum # of times the the element can appear in the instance - Left Structure SD_COMP_HEAD_CARD_R = R Card. @@ -69,998 +613,454 @@ SD_HEAD_CARD = Card. SD_HEAD_CARD_DESC = Minimum and Maximum # of times the the element can appear in the instance SD_HEAD_DESC = Description & Constraints SD_HEAD_DESC_DESC = Additional information about the element +SD_HEAD_FLAGS = Flags SD_HEAD_FLAGS_DESC = Information about the use of the element SD_HEAD_NAME = Name +SD_HEAD_NAME_DESC = The logical name of the element SD_HEAD_SC = The logical name of the elemHEAD_FLAGS = Flags SD_HEAD_TYPE = Type SD_HEAD_TYPE_DESC = Reference to the type of the element SD_LEGEND = Legend for this format +SD_SLICING_INFO = {0}, {1} by {2} SD_SUMMARY = Fixed Value: {0} {1} +SD_SUMMARY_FIXED = Fixed: {0} {1} +SD_SUMMARY_INFO = {0}, {1} by {2} +SD_SUMMARY_MANDATORY = Mandatory: {0} {1} SD_SUMMARY_MAPPINGS = Mappings for {0} ({2}{1}{3}) SD_SUMMARY_MISSING_EXTENSION = Unable to summarise extension {0} (no extension found) SD_SUMMARY_MISSING_PROFILE = Unable to summarise profile {0} (no profile found) +SD_SUMMARY_MUST_SUPPORT = Must-Support: {0} {1} +SD_SUMMARY_NESTED_MANDATORY = ({0} nested mandatory {1}) +SD_SUMMARY_PROHIBITED = Prohibited: {0} {1} SD_SUMMARY_PUBLICATION = This profile was published on {0} as a {1} by {2} SD_SUMMARY_SLICES = This structure defines the following {0}Slices{1} SD_SUMMARY_SLICE_NONE = There is a slice with no discriminator at {0} SD_SUMMARY_SLICE_one = The element {0} is sliced based on the value of {1} SD_SUMMARY_SLICE_other = The element {0} is sliced based on the values of {1} -SD_SUMMARY_MANDATORY = Mandatory: {0} {1} -SD_SUMMARY_MUST_SUPPORT = Must-Support: {0} {1} -SD_SUMMARY_FIXED = Fixed: {0} {1} -SD_SUMMARY_INFO = {0}, {1} by {2} -SD_SUMMARY_PROHIBITED = Prohibited: {0} {1} -SD_SUMMARY_NESTED_MANDATORY = ({0} nested mandatory {1}) +SEARCH_PAR_ALLOWED = Allowed: +SEARCH_PAR_CHAIN = Chains +SEARCH_PAR_COMP = Comparators +SEARCH_PAR_EXP = Expression +SEARCH_PAR_MOD = Modifiers +SEARCH_PAR_MULTIPLES = Multiples +SEARCH_PAR_MULTIPLE_AND_APPEAR = multipleAnd: The parameter may only appear once +SEARCH_PAR_MULTIPLE_AND_REPEAT = multipleAnd: The parameter may repeat in order to specify multiple values that must all be true +SEARCH_PAR_MULTIPLE_AND_SERVER = multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true +SEARCH_PAR_MULTIPLE_OR_MULTIPLE = multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true +SEARCH_PAR_MULTIPLE_OR_ONE = multipleOr: The parameter may only have one value (no comma separators) +SEARCH_PAR_MULTIPLE_OR_SERVER = multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true +SEARCH_PAR_NONE = (none) +SEARCH_PAR_PAR = Parameter +SEARCH_PAR_PROC = Processing Mode +SEARCH_PAR_REND_RES = Resource +SEARCH_PAR_REND_TARGET = Target Resources +SEARCH_PAR_RES = All Resources +STRUC_DEF_ABSTRACT = This is an abstract +STRUC_DEF_ACT = Obligations that apply to the actor {0} +STRUC_DEF_AFFECT_CONSTRAINTS = "This element has or is affected by constraints ( +STRUC_DEF_ALLOWED = Allowed Units +STRUC_DEF_ALL_ACTORS = All Actors +STRUC_DEF_ALL_MAP_KEY = All Mappings are Empty +STRUC_DEF_ALL_SLICES = :All Slices +STRUC_DEF_ALL_TYPES = All Types +STRUC_DEF_ALT_NAME = Alternate Names +STRUC_DEF_AND = and +STRUC_DEF_APPROP_CON = Concepts must come from this value set if appropriate concept is in this value set +STRUC_DEF_AS_SHOWN = As shown +STRUC_DEF_BECAUSE = because +STRUC_DEF_BINDING = Binding +STRUC_DEF_BINDINGS = Binding: +STRUC_DEF_BINDING_STYLE = binding style +STRUC_DEF_BIND_STYLE = Binding Style +STRUC_DEF_BLACK = black +STRUC_DEF_BUSINESS_ID = This is a business identifier, not a resource identifier (see +STRUC_DEF_BUSINESS_VERID = This is a business version Id, not a resource version Id (see +STRUC_DEF_CAND = Candidate +STRUC_DEF_CAND_SUB = This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation +STRUC_DEF_CANNOT_TARGET = Instances of this logical model cannot be the target of a Reference +STRUC_DEF_CANT_FIND = getElementByName: can't find {0} in {1} from {2} +STRUC_DEF_CAN_TARGET = Instances of this logical model can be the target of a Reference +STRUC_DEF_CAP = CAP Code +STRUC_DEF_CARD = Card. +STRUC_DEF_CDA = This property is represented as CDA Text in the XML. +STRUC_DEF_CHILD = Child +STRUC_DEF_CHOICE = (Choice of one) +STRUC_DEF_CHOICE_DATA_TYPE = Choice of Data Types +STRUC_DEF_CHOICE_GRP = Choice Group +STRUC_DEF_CHOICE_OF = Choice of: +STRUC_DEF_CLOSED = Closed +STRUC_DEF_COMMENT = Comments: +STRUC_DEF_COMMENTS = Comments +STRUC_DEF_COMP = Component +STRUC_DEF_COMPLEX = Complex +STRUC_DEF_COMPLEXBRACK = (complex) +STRUC_DEF_COMP_DOC = This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set +STRUC_DEF_COMP_EX = (Complex Extension) +STRUC_DEF_COMP_PROF = Complies with Profile +STRUC_DEF_CONC_SET = Concepts must come from this value set +STRUC_DEF_CONFORMANCE = Conformance +STRUC_DEF_CONSTRAINING = Slice Constraining +STRUC_DEF_CONSTRAINTS = Constraints +STRUC_DEF_CONTENT = Content +STRUC_DEF_CONTROL = Control +STRUC_DEF_CONT_RULE = Content/Rules for all slices +STRUC_DEF_CONT_TYPE = Content/Rules for all Types +STRUC_DEF_COPY_URL = Click to Copy URL +STRUC_DEF_CURR = Current +STRUC_DEF_CURR_RULE = New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this +STRUC_DEF_DATE = Date Format: {0} +STRUC_DEF_DATE_FORM = Date Format +STRUC_DEF_DEF = Definition: +STRUC_DEF_DEFAULT_TYPE = Default Type +STRUC_DEF_DEFAULT_VALUE = Default Value +STRUC_DEF_DEFINITION = Definition +STRUC_DEF_DEF_CODES = Definitional Codes +STRUC_DEF_DERIVED_PROFILE = In this IG, the following structures are derived from this profile: +STRUC_DEF_DESC = Description +STRUC_DEF_DESCRIM = , and can be differentiated using the following discriminators: +STRUC_DEF_DESC_PROF = Description of the profile +STRUC_DEF_DETAILS = Details +STRUC_DEF_DISCUSSION = discussion +STRUC_DEF_ELE = This primitive element must have a value +STRUC_DEF_ELEMENT = element +STRUC_DEF_ELEMENTS = Elements defined in Ancestors: +STRUC_DEF_ELE_AFFECTED = This element has or is affected by constraints ( {0} {1} +STRUC_DEF_ELE_INCLUDED = This element is included in summaries +STRUC_DEF_ELE_MUST_SUPP = This element must be supported +STRUC_DEF_ELE_READ = When this element is read +STRUC_DEF_ERROR = Unknown structure mode +STRUC_DEF_ERR_DESC = Error describing concept- not done yet (no codings, no text) +STRUC_DEF_EX = Example +STRUC_DEF_EXAM = example +STRUC_DEF_EXAMPLE = Example +STRUC_DEF_EXT = Extensible +STRUC_DEF_EXTENSIBLE = extensible +STRUC_DEF_EXTENSIONS = Extensions +STRUC_DEF_EXT_JSON = This element can be extended by named JSON elements +STRUC_DEF_EXT_STYLE = Extension Style +STRUC_DEF_EX_CODE = For example codes, see +STRUC_DEF_EX_DESC = Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included. +STRUC_DEF_EX_TYPE = (Extension Type: +STRUC_DEF_EX_URL = Extension URL = {0} +STRUC_DEF_FHIR = Base FHIR {0} +STRUC_DEF_FHIR_EXCEP = Unable to retrieve StructureDefinition with URL {0} +STRUC_DEF_FII = Formal Invariant Identifier +STRUC_DEF_FIXED = Fixed Value +STRUC_DEF_FIXED_VALUE = Fixed Value: +STRUC_DEF_FOR_CODE = For codes, see +STRUC_DEF_FURTHER_INFO = for further information about how to use [x] +STRUC_DEF_GRADE = Grade +STRUC_DEF_ID = Id +STRUC_DEF_ID_EXPECT = ID Expectation +STRUC_DEF_ID_IS = Id may or not be present (this is the default for elements but not resources) +STRUC_DEF_ID_MAY = Id is required to be present (this is the default for resources but not elements) +STRUC_DEF_ID_NOT_ALLOW = An id is not allowed in this context +STRUC_DEF_ID_REQ = Id is required to be present (this is the default for resources but not elements) +STRUC_DEF_IF = If +STRUC_DEF_IMPOSE_PROFILE = Impose Profile +STRUC_DEF_INFERRED_JSON = The type of this element is inferred from the JSON type in the instance +STRUC_DEF_INVAR = Invariants +STRUC_DEF_INVARIANT = This element is affected by the following invariants: +STRUC_DEF_JSON_ARRAY = JSON: This element may be present as a JSON Array even when there are no items in the instance +STRUC_DEF_JSON_CAN_NAME = This type can appear in JSON with the property name +STRUC_DEF_JSON_CHILD = child +STRUC_DEF_JSON_ELE = This element can be extended by named JSON elements +STRUC_DEF_JSON_EXT = (in elements using named extensions) +STRUC_DEF_JSON_FORM = JSON Format +STRUC_DEF_JSON_IF = JSON: If +STRUC_DEF_JSON_INFERRED = JSON: The type of this element is inferred from the JSON type in the instance +STRUC_DEF_JSON_IS = This element is present as a JSON Array even when there are no items in the instance +STRUC_DEF_JSON_MAY = This element may be present as a JSON Array even when there are no items in the instance +STRUC_DEF_JSON_MAY_PRESENT = The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array) +STRUC_DEF_JSON_NAME = JSON Property Name +STRUC_DEF_JSON_NOT_PRESENT = The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array) +STRUC_DEF_JSON_NULL = JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes) +STRUC_DEF_JSON_PRESENT = The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array) +STRUC_DEF_JSON_PROPERTY_NAME = This property appears in JSON with the property name +STRUC_DEF_JSON_SINGLE = This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the +STRUC_DEF_JSON_TYPE = JSON Property Name for Type +STRUC_DEF_LABEL = Label +STRUC_DEF_LEAST_FOLLOW = At least the following +STRUC_DEF_LOGIC = Logical Container +STRUC_DEF_LOGICAL = Logical Model +STRUC_DEF_LOGICAL_CONT = Logical Container +STRUC_DEF_LOGIC_NAME = The logical name of the element +STRUC_DEF_LOINC = LOINC Code +STRUC_DEF_LOINC_CODE = LOINC code +STRUC_DEF_MATURITY = Maturity +STRUC_DEF_MAX = Maximum +STRUC_DEF_MAX_LENGTH = Max Length: +STRUC_DEF_MAX_MIN = Minimum and Maximum # of times the element can appear in the instance +STRUC_DEF_MAX_VALUE = Max Value +STRUC_DEF_MEAN_MISS = Meaning if Missing +STRUC_DEF_MIN = Minimum +STRUC_DEF_MIN_ALLOW = The minimum allowable value set - any conformant system SHALL support all these codes +STRUC_DEF_MIN_VALUE = Min Value +STRUC_DEF_MISSING_LINK = missing link +STRUC_DEF_MOD = This element is a modifier element +STRUC_DEF_MODIF = Modifier +STRUC_DEF_MODIFIER = Is Modifier +STRUC_DEF_MOD_ELEMENT = This element is a modifier element +STRUC_DEF_MUST_SUPPORT = Must Support +STRUC_DEF_MUST_SUPPORT_TYPES = Must Support Types +STRUC_DEF_NAME = Name +STRUC_DEF_NAMESPACE = In the XML format, this property has the namespace +STRUC_DEF_NOTE_C = Note +STRUC_DEF_NOTE_X = [x] Note +STRUC_DEF_NOT_MARK = Instances of this logical model are not marked to be the target of a Reference +STRUC_DEF_NOT_MARKED = Instances of this logical model are not marked to be the target of a Reference +STRUC_DEF_NO_DESCRIM = , and defines no disciminators to differentiate the slices +STRUC_DEF_NO_MAPPINGS = No Mappings +STRUC_DEF_NO_MUST_SUPPORT = No must-support rules about the choice of types/profiles +STRUC_DEF_NO_SUMMARY = No Summary, as this profile has no differential +STRUC_DEF_NULL_JSON = This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes) +STRUC_DEF_OBLIG = This element has obligations +STRUC_DEF_OBLIGATIONS = Obligations +STRUC_DEF_OBLIG_ADD = This is an obligation profile that only contains obligations and additional bindings +STRUC_DEF_OBLIG_ALL = Obligations that apply to all actors +STRUC_DEF_OBLIG_FROM = This profile picks up obligations and additional bindings from +STRUC_DEF_OBLIG_SUPP = This element has obligations and must be supported +STRUC_DEF_ONE_OF = One of: +STRUC_DEF_OPEN = Open +STRUC_DEF_OPEN_END = Open At End +STRUC_DEF_ORDERED = Ordered +STRUC_DEF_PATH = Path +STRUC_DEF_PATHS = Path(s) +STRUC_DEF_PATT_VALUE = Pattern Value +STRUC_DEF_PREF = Preferred +STRUC_DEF_PREFERRED = preferred +STRUC_DEF_PREFIXED = is prefixed to the value before validation +STRUC_DEF_PREFIX_VALID = is prefixed to the value before validation +STRUC_DEF_PREF_CONT = This is the value set that is preferred in a given context (documentation should explain why) +STRUC_DEF_PRIMITIVE = Primitive Value +STRUC_DEF_PRIM_ELE = This primitive element may be present, or absent, or replaced by an extension +STRUC_DEF_PRIM_TYPE_PRESENT = This primitive type may be present, or absent if replaced by one of the following extensions: +STRUC_DEF_PRIM_TYPE_VALUE = This primitive type must have a value (the value must be present, and cannot be replaced by an extension) +STRUC_DEF_PROFILED = profiled by +STRUC_DEF_PROFILE_BUILDS = This profile builds on +STRUC_DEF_PROF_COMP = This profiles compiles with the profile +STRUC_DEF_PROF_REQ = This profile also requires that the instance also conform this additional profile: +STRUC_DEF_PROF_RES = A profiled resource +STRUC_DEF_PROF_SUPP = This profile must be supported +STRUC_DEF_PROPERTY = Property +STRUC_DEF_REF = Instances of this logical model can be the target of a Reference +STRUC_DEF_REFERS_EXT = This structure refers to these extensions +STRUC_DEF_REFER_PROFILE = In this IG, the following structures refer to this profile: +STRUC_DEF_REND_UNABLE_RES = Unable to resolve StructureDefinition {0} resolving content reference {1} +STRUC_DEF_REPEAT = This is a repeating choice group that does not appear directly in the instance +STRUC_DEF_REPEAT_ELE = This repeating element order: {0} +STRUC_DEF_REP_CHOICE = This is a repeating choice group that does not appear directly in the instance +STRUC_DEF_REQ = Required +STRUC_DEF_REQUIRED = required +STRUC_DEF_REQUIRED_PATT = Required Pattern: +STRUC_DEF_REQUIREMENTS = Requirements +STRUC_DEF_REQ_BIND = A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred' +STRUC_DEF_REQ_PATT = Required Pattern +STRUC_DEF_ROOT = The root class that contains instances of this class +STRUC_DEF_SEE = See +STRUC_DEF_SET_ARE = . The slices are +STRUC_DEF_SET_SLICES = This element introduces a set of slices on +STRUC_DEF_SHALL_CODE = The codes SHALL be taken from +STRUC_DEF_SHORT = Short +STRUC_DEF_SHOULD_CODE = The codes SHOULD be taken from +STRUC_DEF_SINGLE_JSON_OBJECTS = JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key +STRUC_DEF_SLIC = Slices +STRUC_DEF_SLICE = Slice +STRUC_DEF_SLICES = Slice: +STRUC_DEF_SLICE_FOR = Slices for {0} +STRUC_DEF_SLICE_NAME = Slice Name +STRUC_DEF_SLICE_PAR = Slice {0} +STRUC_DEF_SNOMED = SNOMED-CT Code +STRUC_DEF_SNOMED_CODE = SNOMED CT code +STRUC_DEF_SNOMED_CT = SNOMED CT +STRUC_DEF_STAND_STAT = Standard Status +STRUC_DEF_STAND_STATUS = Standards Status = +STRUC_DEF_START = Starter +STRUC_DEF_START_DEF = This value set is a good set of codes to start with when designing your system +STRUC_DEF_STRING_FORM = String Format +STRUC_DEF_STRUCTURES = Structures +STRUC_DEF_SUIT_SHALL_CODE = Unless not suitable, these codes SHALL be taken from +STRUC_DEF_SUMM = This element is included in summaries +STRUC_DEF_SUMMARY = Summary +STRUC_DEF_SUPP = This element must be supported +STRUC_DEF_TARG_SUPP = This target must be supported +STRUC_DEF_TEMPLATEID = Instance of this type are validated by templateId +STRUC_DEF_TERM_BIND = Terminology Bindings (Differential) +STRUC_DEF_TERM_BINDS = Terminology Bindings +STRUC_DEF_THEN_TYPE = then the type is +STRUC_DEF_THIS_REFERS = This structure refers to these other structures +STRUC_DEF_TODO = todo +STRUC_DEF_TYPE = Type +STRUC_DEF_TYPE_BOUND = This type can be bound to a value set using the {0} +STRUC_DEF_TYPE_SET = This type can be bound to a value set using the " +STRUC_DEF_TYPE_SPEC = Type Specifier +STRUC_DEF_TYPE_SUPP = This type must be supported +STRUC_DEF_UCUM = UCUM +STRUC_DEF_UI = UI +STRUC_DEF_UI_CONT = This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context +STRUC_DEF_UNADORNED = In the XML format, this property is represented as unadorned text. +STRUC_DEF_UNDEF_ACT = Obligations that apply to the undefined actor {0} +STRUC_DEF_UNKNOWN_APPROACH = Instances of this type are validated using an unknown approach: {0} +STRUC_DEF_UNKNOWN_REF = Unknown reference to {0} +STRUC_DEF_UNORDERED = Unordered +STRUC_DEF_UNSPECIFIED = Unspecified +STRUC_DEF_URI = URI +STRUC_DEF_URL = URL +STRUC_DEF_URLS = URL: +STRUC_DEF_VALID = Validation +STRUC_DEF_VALID_UNKNOWN = Instances of this type are validated using an unknown approach: {0} +STRUC_DEF_VALUE = Value Set +STRUC_DEF_VALUESET = ValueSet +STRUC_DEF_VALUESET_CODE = ValueSet / Code +STRUC_DEF_VALUE_ALT = Value Alternatives +STRUC_DEF_VALUE_REQ = Value Required +STRUC_DEF_WHAT = What goes here +STRUC_DEF_XHTML = This property is represented as XHTML Text in the XML. +STRUC_DEF_XML = XML +STRUC_DEF_XML_ACTUAL = In the XML format, this property has the actual name +STRUC_DEF_XML_ATTRIBUTE = In the XML format, this property is represented as an attribute. +STRUC_DEF_XML_ELE = XML Element Name +STRUC_DEF_XML_FORM = XML Format +STRUC_DEF_XML_NAME = XML Namespace +STRUC_DEF_XSI = The type of this property is determined using the " +SUB_TOPIC_COMP = Comparators +SUB_TOPIC_CREATE = * create result = {0} +SUB_TOPIC_CRITERIA = Criteria +SUB_TOPIC_DELETE = * delete result = {0} +SUB_TOPIC_DESC = Description +SUB_TOPIC_EVENT = Event +SUB_TOPIC_FHIR_PATH = FHIR Path +SUB_TOPIC_FILT_DEF = Filter Definition +SUB_TOPIC_FILT_PAR = Filter Parameter +SUB_TOPIC_INCL = Includes +SUB_TOPIC_INT = Interactions +SUB_TOPIC_MOD = Modifiers +SUB_TOPIC_PREV = * previous = {0} +SUB_TOPIC_REQ = * require both = {0} +SUB_TOPIC_RES = Resource +SUB_TOPIC_RES_TRIG = Resource Triggers +SUB_TOPIC_REV_INCL = Reverse Includes +TERMINOLOGY_LVL = Lvl +TERMINOLOGY_SNOMED = SNOMED-CT +TERM_REND_COPY = Copy {0} Format to clipboard +TEST_PLAN_ASS = Assertion +TEST_PLAN_ASSERTION = Assertion {0} +TEST_PLAN_CASE = Test Case +TEST_PLAN_CASE_SEQ = Test Case - Sequence {0} +TEST_PLAN_CATEGORY = Category: +TEST_PLAN_CONT = Contact: +TEST_PLAN_CONTENT = Content +TEST_PLAN_DATA = Test Data +TEST_PLAN_DEP = Test Plant Dependency: +TEST_PLAN_DEPEN = Test Plant Dependencies: +TEST_PLAN_DESC = Dependency - no description +TEST_PLAN_LANG = Language +TEST_PLAN_RESULT = Result +TEST_PLAN_RUN = Test Run +TEST_PLAN_SCOPE = Test Plant Scope: +TEST_PLAN_SCOPES = Test Plant Scopes: +TEST_PLAN_SOURCE = Source[x] +TEST_PLAN_TEST_DATA = Test Data {0} +TEST_PLAN_TEST_RUN = Test Run {0} +TEST_PLAN_TYPE = Type +TEXT_ICON_CHOICE = Choice of Types +TEXT_ICON_DATATYPE = Data Type +TEXT_ICON_ELEMENT = Element +TEXT_ICON_EXTENSION = Extension +TEXT_ICON_EXTENSION_COMPLEX = Complex Extension +TEXT_ICON_EXTENSION_SIMPLE = Simple Extension +TEXT_ICON_FIXED = Fixed Value +TEXT_ICON_KEY = JSON Key Value +TEXT_ICON_OBJECT_BOX = Object +TEXT_ICON_PRIMITIVE = Primitive Data Type +TEXT_ICON_PROFILE = Profile +TEXT_ICON_REFERENCE = Reference to another Resource +TEXT_ICON_RESOURCE = Resource +TEXT_ICON_REUSE = Reference to another Element +TEXT_ICON_SLICE = Slice Definition +TEXT_ICON_SLICE_ITEM = Slice Item TX_CODE = Code TX_COMMENTS = Comments TX_DEFINITION = Definition TX_DEPRECATED = Deprecated TX_DISPLAY = Display TX_VERSION = Version -PAT_NO_GENDER = (no stated gender) -PAT_GENDER = Gender: {0} -PAT_NO_DOB = DoB Unknown -PAT_DOB = DoB: {0} -PAT_NO_NAME = Anonymous Patient -PAT_CONTAINED_one = Contained Resource -PAT_CONTAINED_other = Contained Resources -PAT_OTHER_ID_one = Other Id: -PAT_OTHER_ID_other = Other Ids: -PAT_OTHER_ID_HINT_one = Other Id (see the one above) -PAT_OTHER_ID_HINT_other = Other Ids (see the one above) -PAT_LANG_one = Language: -PAT_LANG_other = Languages: -PAT_LANG_HINT_one = Language spoken -PAT_LANG_HINT_other = Languages spoken -PAT_LANG_PREFERRED = (preferred) -PAT_GP = General Practitioner -PAT_MO = Managing Organization -PAT_LINKS = Links: -PAT_LINKS_HINT = Patient Links -PAT_LINK_REPLBY = This record replaced by -PAT_LINK_REPL = This record replaces -PAT_LINK_REFER = Please refer to -PAT_LINK_SEE = Also see -PAT_NOM_CONTACT = Nominated Contact: -PAT_NOK_CONTACT = Contact: -PAT_NOK_CONTACT_HINT = Patient contact -PAT_RELN = Relationships: -PAT_ORG = Organization: -PAT_PERIOD = Valid Period: -PAT_ALT_NAME = Alt. Name: -PAT_ALT_NAME_HINT = Alternate names (see the one above) -PAT_CONTACT = Contact Detail -PAT_CONTACT_HINT = Ways to contact the Patient -PAT_ACTIVE = Active: -PAT_ACTIVE_HINT = Record is active -PAT_DECEASED = Deceased: -PAT_DECEASED_HINT = Known status of Patient -PAT_MARITAL = Marital Status: -PAT_MARITAL_HINT = Known Marital status of Patient -PAT_MUL_BIRTH = Multiple Birth: -PAT_MUL_BIRTH_HINT = Known multipleBirth status of Patient -PAT_PHOTO = Patient Photo -SD_HEAD_NAME_DESC = The logical name of the element -SD_HEAD_FLAGS = Flags -SD_SLICING_INFO = {0}, {1} by {2} -BUNDLE_DOCUMENT_CONTENT = Additional Document Content -BUNDLE_HEADER_DOC_ENTRY_URD = {0}. {1} ({2}/{3}) -BUNDLE_HEADER_DOC_ENTRY_U = {0}. {1} -BUNDLE_HEADER_DOC_ENTRY_RD = {0}. {2}/{3} -CAPABILITY_REST_CAPS = FHIR RESTful Capabilities -CAPABILITY_RES_PRO = Capabilities by Resource/Profile -CAPABILTY_SHALL_SUPP = SHALL Support the Following Implementation Guides -CAPABILITY_SUMM = Summary -CAPABILITY_SHOULD_SUPP = SHOULD Support the Following Implementation Guides -CAPABILITY_SUPP_FORM = Supported Formats: -CAPABILITY_SUPP = support -CAPABILITY_SUPP_PATCH_FORM = Supported Patch Formats: -CAPABILITY_SUMM_SYS_INT = Summary of System-wide Interactions -CAPABILITY_SUPP_THE = Supports the -CAPABILITY_INT = interaction. -CAPABILITY_SUPPS = Supports -CAPABILITY_SUMM_RES = The summary table lists the resources that are part of this configuration, and for each resource it lists: -CAPABILITY_REV_PROF = The relevant profiles (if any) -CAPABILITY_SEARCH_PAR = The required, recommended, and some optional search parameters (if any). -CAPABILITY_RES_ENB = The linked resources enabled for -CAPABILITY_TYP_PRES = ype are only present if at least one of the resources has support for them. -CAPABILITY_OTH_RES_ENB = The other resources enabled for -CAPABILITY_RES_OPER = The operations on the resource (if any) -CAPABILITY_RES_TYP = Resource Type -CAPABILITY_PROF = Profile -CAPABILITY_OP = Operations -CAPABILITY_ADD_SUPP_PROF = Additional supported profiles: -CAPABILITY_SUPP_PROF = Supported Profiles -CAPABILITY_PROF_MAP = Profile Mapping -CAPABILITY_CRIT = Criteria -CAPABILITY_CONF = Conformance -CAPABILITY_OPER = Operation -CAPABILITY_DOC = Documentation -CAPABILITY_PAR = Parameter -CAPABILITY_TYP = Type -CAPABILITY_PARS = Parameters -CAPABILITY_TYPS = Types -CAPABILITY_NOTE_CAP = Note to Implementers: FHIR Capabilities -CAPABILTY_ALLOW_CAP = Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case. -CAPABILITY_INT_DESC = interaction described as follows: -ACTOR_DEF_REF = References: -ACTOR_DEF_CAP = Capabilities: -ACTOR_DEF_DER = Derived from: -ADD_BIND_ADD_BIND = Additional Bindings -ADD_BIND_PUR = Purpose -ADD_BIND_USE = Usage -ADD_BIND_ANY = Any -ADD_BIND_DOC = Documentation -CAPABILITY_IMP_VER = Implementation Guide Version: {0} -CAPABILITY_FHIR_VER = FHIR Version: {0} -CAPABILITY_PUB_ON = Published on: {0} -CAPABILITY_PUB_BY = Published by: {0} -CAPABILITY_REST_CONFIG = REST Configuration: {0} -CAPABILITY_RES_CONF = Resource Conformance: {0} -ACTOR_DEF_ACT = Actor: {0} -ACTOR_DEF_TYP = Type: {0} -ADD_BIND_ANY_REP = any repeat -BUNDLE_REV_EXCP = Exception generating narrative: {0} -BUNDLE_REV_INV_DOC = Invalid document - first entry is not a Composition -CODE_SYS_UNKN_MODE = Unknown CodeSystemContentMode mode -CODE_SYS_ADD_LANG = Additional Language Displays -CODE_SYS_UNDEF_HIER = in an undefined heirarchy -CODE_SYS_COPY = Copy -CODE_SYS_DISP_PROP = displays and properties -CODE_SYS_DISP = displays -CODE_SYS_PROP = properties -CODE_SYS_FEAT = features -CODE_SYS_CODE = Code -CONC_MAP_FROM = Mapping from -CONC_MAP_NOT_SPEC = (not specified) -CONC_MAP_TO = to -CONC_MAP_NO_PROD_USE = (not intended for production usage). -CONC_MAP_PUB_ON = Published on {0} -CONC_MAP_GRP = Group {0} -CONC_MAP_CODE_SYS_UNSPEC = unspecified code system -CONC_MAP_SOURCE = Source Code -CONC_MAP_REL = Relationship -CONC_MAP_TRGT = Target Code -CONC_MAP_CMNT = Comment -CONC_MAP_CODE = Code -CONC_MAP_CODES = Codes -CONC_MAP_FRM = from -CONC_MAP_SRC_DET = Source Concept Details -CONC_MAP_TRGT_DET = Target Concept Details -CONC_MAP_PROP = Properties -DATA_REND_MKDWN_LNK = Unable to resolve markdown link -DATA_REND_UNRD_EX = WARNING: Unrenderable Modifier Extension! -DATA_REND_LOINC = LOINC -DATA_REND_SNOMED = SNOMED CT -DATA_REND_RXNORM = RxNorm -DATA_REND_ICD = ICD-9 -DATA_REND_DICOM = DICOM -DATA_REND_UCUM = UCUM -DATA_REND_NOT_STAT = [not stated] -DATA_REND_UNKNWN = unknown -DATA_REND_NO_DISP = No display for {0} -DATA_REND_TO_DO = to do: {0} -DATA_REND_ERROR = Error: {0} -DATA_REND_BY = By -DATA_REND_USE = use: -DATA_REND_PERIOD = period: -DATA_REND_SOURCE = source -DATA_REND_PHONE = Phone: {0} -DATA_REND_FAX = Fax: {0} -DATA_REND_TYPE = Type -DATA_REND_NAME = Name -DATA_REND_CODE = Code -DATA_REND_TIMING = Timing -DATA_REND_COND = Condition -DATA_REND_SUB = Subject -DATA_REND_FILT = Filter -DATA_REND_VALUE = Value -DATA_REND_SEARCH = Search on: {0} -DATA_REND_VALUESET = In ValueSet -DATA_REND_THESE_CODES = One of these codes: -DATA_REND_LIMIT = Limit -DATA_REND_SORT = Sort -DATA_REND_GETCODE = Code: {0} -DATA_REND_EVENTS = Events: {0} -DATA_REND_STARTING = Starting {0} -DATA_REND_COUNT = Count {0} -DATA_REND_DURATION = Duration {0} -DATA_REND_ONCE = Once -DATA_REND_UNTIL = Until {0} -DATA_REND_MEALS = at meals -DATA_REND_ATLUNCH = at lunch -DATA_REND_ATBKFST = at breakfast -DATA_REND_ATDINR = at dinner -DATA_REND_BFMEALS = before meals -DATA_REND_BFLUNCH = before lunch -DATA_REND_BFBKFST = before breakfast -DATA_REND_BFDINR = before dinner -DATA_REND_BFSLEEP = before sleeping -DATA_REND_AFTRMEALS = after meals -DATA_REND_AFTRBKFST = after breakfast -DATA_REND_AFTRLUNCH = after lunch -DATA_REND_AFTRDINR = after dinner -DATA_REND_AFTRWKNG = after waking -DATA_REND_ORIGIN = Origin: {0} -DATA_REND_INT = Interval: {0} -DATA_REND_FACT = Factor: {0} -DATA_REND_LOWER = Lower: {0} -DATA_REND_UP = Upper: {0} -DATA_REND_DIM = Dimensions: {0} -DATA_REND_DATA = Data: {0} -DIAG_REP_REND_SUB = Subject -DIAG_REP_REND_WHEN = When For -DIAG_REP_REND_REP = Reported -DIAG_REP_REND_IDEN = Identifier: {0} -DIAG_REP_REND_REQ = Request: {0} -DIAG_REP_REND_REPDET = Report Details -DIAG_REP_REND_CODECON = Coded Conclusions : -DIAG_REP_REND_UNABLE = Unable to get Patient Details -DIAG_REP_REND_NOTDONE = Not done yet -DIAG_REP_REND_CODE = Code -DIAG_REP_REND_VALUE = Value -DIAG_REP_REND_REFRAN = Reference Range -DIAG_REP_REND_FLAG = Flags -DIAG_REP_REND_NOTE = Note -DIAG_REP_REND_NOTRES = This Observation could not be resolved -DIAG_REP_REND_OBS = Observation -DIAG_REP_REND_ERR = Error: -DIAG_REP_REND_FOR = for -DIAG_REP_REND_AGE = Age -EX_SCEN_UN = Unknown ExampleScenario Renderer Mode {0} -EX_SCEN_ERR_REN = Error rendering ExampleScenario {0} -EX_SCEN_TIME = ... time passes ...\n -EX_SCEN_NAME = Name -EX_SCEN_TYPE = Type -EX_SCEN_DESC = Description -EX_SCEN_CONT = Content -EX_SCEN_FVER = FHIR version -EX_SCEN_VER = version -EX_SCEN_CONTA = Contains: -EX_SCEN_PROC = Process: {0} -EX_SCEN_PRECON = Pre-conditions: -EX_SCEN_POSTCON = Post-conditions: -EX_SCEN_STEP = Step -EX_SCEN_IN = Initiator -EX_SCEN_REC = Receiver -EX_SCEN_REQ = Request -EX_SCEN_RES = Response -EX_SCEN_SEE = See subprocess -EX_SCEN_BEL = below -EX_SCEN_OTH = See other scenario -EX_SCEN_ALT = Alternative {0} -EX_SCEN_UN_ACT = Unable to find referenced actor {0} -EX_SCEN_UN_INST = Unable to find referenced instance {0} -IMP_GUIDE_URL = The official URL for this implementation guide is: -LIB_REND_PAR = Participants -LIB_REND_AUT = Author -LIB_REND_ED = Editor -LIB_REND_REV = Reviewer -LIB_REND_END = Endorser -LIB_REND_ART = Related Artifacts -LIB_REND_PARA = Parameters -LIB_REND_REQ = Data Requirements -LIB_REND_CONT = Contents -LIB_REND_NOCONT = No Content -LIB_REND_SHOW = Content not shown - ( -LIB_REND_SIZE = , size = {0} -LIST_REND_DATE = Date: {0} -LIST_REND_MODE = Mode: {0} -LIST_REND_STAT = Status: {0} -LIST_REND_CODE = Code: {0} -LIST_REND_SUB = Subject: -LIST_REND_ENC = Encounter: -LIST_REND_SRC = Source: -LIST_REND_ORD = Order: {0} -LIST_REND_ITEM = Items -LIST_REND_DAT = Date -LIST_REND_FLAG = Flag -LIST_REND_DEL = Deleted -NAME_SYS_SUM = Summary -NAME_SYS_URL = Defining URL -NAME_SYS_VER = Version -NAME_SYS_NAME = Name -NAME_SYS_TITLE = Title -NAME_SYS_STAT = Status -NAME_SYS_DEF = Definition -NAME_SYS_PUB = Publisher -NAME_SYS_OID = OID -NAME_SYS_FOROID = for OID based terminology systems -NAME_SYS_COPY = Copyright -NAME_SYS_IDEN = Identifiers -NAME_SYS_TYPE = Type -NAME_SYS_VALUE = Value -NAME_SYS_PREF = Preferred -NAME_SYS_PER = Period -NAME_SYS_COM = Comment -OBLIG_OBLIG = Obligations -OBLIG_ACT = Actor -OBLIG_ELE = Elements -OBLIG_USE = Usage -OBLIG_DOC = Documentation -OBLIG_FILT = Filter -OP_DEF_OFFIC = The official URL for this operation definition is: -OP_DEF_URLS = URL: [base]/${0} -OP_DEF_URL = URL: [base]/{0} -OP_DEF_INPAR = Input parameters Profile: -OP_DEF_OUTPAR = Output parameters Profile: -OP_DEF_PAR = Parameters -OP_DEF_USE = Use -OP_DEF_NAME = Name -OP_DEF_SCO = Scope -OP_DEF_CARD = Cardinality -OP_DEF_TYPE = Type -OP_DEF_BIND = Binding -OP_DEF_DOC = Documentation -OP_OUT_OK = All OK -OP_OUT_SEV = Severity -OP_OUT_LOC = Location -OP_OUT_CODE = Code -OP_OUT_DET = Details -OP_OUT_DIAG = Diagnostics -OP_OUT_SRC = Source -OP_OUT_TODO = todo -OP_OUT_NOT = Not done yet -PAR_REND_PAR = Parameters -PROF_DRIV_FEXCP = Cannot find definition for {0} -PROF_DRIV_EXCP = Exception Generating Narrative: {0} -PROV_PROV = Provenance for -PROV_PROVE = Provenance for: -PROV_SUM = Summary -PROV_OCC = Occurrence -PROV_REC = Recorded -PROV_POL = Policy -PROV_LOC = Location -PROV_ACT = Activity -PROV_AGE = Agents -PROV_TYPE = Type -PROV_ROLE = Role -PROV_WHO = who -PROV_BEHALF = On Behalf Of -PROV_FOR = Provenance for {0} -PROV_NOT = Not done yet -QUEST_STRUCT = Structure -QUEST_LINKID = LinkID -QUEST_LINK = The linkID for the item -QUEST_TEXT = Text -QUEST_TEXTFOR = Text for the item -QUEST_CARD = Cardinality -QUEST_TIMES = Minimum and Maximum # of times the item can appear in the instance -QUEST_TYPE = Type -QUEST_TYPE_ITEM = The type of the item -QUEST_FLAG = Flags -QUEST_ATTRIBUTES = Other attributes of the item -QUEST_DESC = Description & Constraints -QUEST_ADD_INFO = Additional information about the item -QUEST_OPT = Options Sets -QUEST_ANSW = Answer options for {0} -QUEST_ROOT = QuestionnaireRoot -QUEST_QUEST = Questionnaire -QUEST_READONLY = Is Read Only -QUEST_SUBJECT = Can change the subject of the questionnaire -QUEST_DISPLAY = Is optional to display -QUEST_LINKED = Is linked to an observation -QUEST_HIDDEN = Is a hidden item -QUEST_ORIENTATION = Orientation: {0} -QUEST_CAT = Category: {0} -QUEST_MAX = Max Length: -QUEST_DEF = Definition: -QUEST_ENABLE = Enable When: -QUEST_VALUE = Value Set: -QUEST_OPTIONS = Options: -QUEST_INITIAL = Initial Value: -QUEST_EXP = Expressions: -QUEST_INT = Initial Values -QUEST_CONT = Context -QUEST_ITEM_CONT = Item Context -QUEST_EN = Enable When -QUEST_CALC = Calculated Value -QUEST_CAND = Candidates -QUEST_TODO = todo -QUEST_MAND = Mandatory -QUEST_ANSWERS = Answers -QUEST_QUESTIONNAIRE = Questionnaire {0} -QUEST_TRY = Try this questionnaire out: -QUEST_NLM = NLM Forms Library -QUEST_URL = URL -QUEST_VERSION = Version -QUEST_NAME = Name -QUEST_TITLE = Title -QUEST_DERIVED = Derived From -QUEST_STATUS = Status -QUEST_EXPER = Experimental -QUEST_PUB = Publication Date -QUEST_APP = Approval Date -QUEST_REV_DATE = Last Review Date -QUEST_EFF_PERIOD = Effective Period -QUEST_SUB_TYPE = Subject Type -QUEST_DESCRIPTION = Description -QUEST_PURPOSE = Purpose -QUEST_COPYRIGHT = Copyright -QUEST_ID = Link Id -QUEST_PREFIX = Prefix -QUEST_REQ = Required -QUEST_REP = Repeats -QUEST_READ_ONLY = Read Only -QUEST_SUB = Subject -QUEST_VALUE_SET = Value Set -QUEST_MAX_LENGTH = Max Length -QUEST_ALLOWED = Allowed Answers -QUEST_INITIALLY = (initially selected) -QUEST_INITIAL_ANSWER = Initial Answer -QUEST_HIDDEN_ITEM = Hidden Item -QUEST_DEFINITION = Definition -QUEST_CODE = Code -QUEST_OBSERVATION = Observation Link Period -QUEST_TRUE = are true: -QUEST_ARE_TRUE = ?? are true: -REND_STANDARDS = Standards Status = {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_DELETED = This content has been removed since {0} -REND_ADDED = Added: -REND_CHANGED = Changed: -REND_REMOVED = Removed: -REND_ROW_SINCE = This row of content has been added since {0} -REND_ROW_CHANGED_SINCE = This row of content has been changed since {0} -REND_ROW_CHANGED_SINCE_WAS = This row of content has been changed since {0} (was ''{1}'') -REND_ROW_REMOVED_SINCE = This content has been removed since {0} -REQ_ACTOR = These requirements apply to the actor -REQ_FOLLOWING_ACTOR = These requirements apply to the following actors: -REQ_DERIVE = These requirements derive from -REQ_FOLLOWING_REQ = These requirements are derived from the following requirements: -REQ_REFERENCES = References: -REQ_LINKS = Links: -REQ_DERIVED = Derived From: -REQ_SATISFIED = Satisfied By: -REQ_SOURCES = Source: -RES_REND_COND_REF = Conditional Reference: -RES_REND_SEE_ON_THIS_PAGE = See on this page: -RES_REND_DESC = . Description: (todo) -RES_REND_GEN_SUM = . Generated Summary: -RES_REND_TODO = todo -RES_REND_EXP = Experimental -RES_REND_ACT = Active -RES_REND_DRAFT = draft -RES_REND_RET = retired -RES_REND_UNKNOWN = Unknown -RES_REND_RESOURCE = Resource -RES_REND_PROF = Profile -RES_REND_TAG = Tag -RES_REND_SECURITY = Security Label -RES_REND_ERROR = Error rendering: {0} -SEARCH_PAR_PAR = Parameter -SEARCH_PAR_EXP = Expression -SEARCH_PAR_NONE = (none) -SEARCH_PAR_PROC = Processing Mode -SEARCH_PAR_RES = All Resources -SEARCH_PAR_MULTIPLES = Multiples -SEARCH_PAR_MULTIPLE_AND_SERVER = multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true -SEARCH_PAR_MULTIPLE_AND_REPEAT = multipleAnd: The parameter may repeat in order to specify multiple values that must all be true -SEARCH_PAR_MULTIPLE_AND_APPEAR = multipleAnd: The parameter may only appear once -SEARCH_PAR_MULTIPLE_OR_SERVER = multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true -SEARCH_PAR_MULTIPLE_OR_MULTIPLE = multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true -SEARCH_PAR_MULTIPLE_OR_ONE = multipleOr: The parameter may only have one value (no comma separators) -SEARCH_PAR_COMP = Comparators -SEARCH_PAR_ALLOWED = Allowed: -SEARCH_PAR_MOD = Modifiers -SEARCH_PAR_CHAIN = Chains -SUB_TOPIC_RES_TRIG = Resource Triggers -SUB_TOPIC_RES = Resource -SUB_TOPIC_INT = Interactions -SUB_TOPIC_PREV = * previous = {0} -SUB_TOPIC_CREATE = * create result = {0} -SUB_TOPIC_DELETE = * delete result = {0} -SUB_TOPIC_REQ = * require both = {0} -SUB_TOPIC_CRITERIA = Criteria -SUB_TOPIC_FHIR_PATH = FHIR Path -SUB_TOPIC_DESC = Description -SUB_TOPIC_EVENT = Event -SUB_TOPIC_FILT_PAR = Filter Parameter -SUB_TOPIC_FILT_DEF = Filter Definition -SUB_TOPIC_COMP = Comparators -SUB_TOPIC_MOD = Modifiers -SUB_TOPIC_INCL = Includes -SUB_TOPIC_REV_INCL = Reverse Includes -TERMINOLOGY_LVL = Lvl -TERMINOLOGY_SNOMED = SNOMED-CT -TEST_PLAN_CONT = Contact: -TEST_PLAN_CATEGORY = Category: -TEST_PLAN_SCOPE = Test Plant Scope: -TEST_PLAN_SCOPES = Test Plant Scopes: -TEST_PLAN_DEP = Test Plant Dependency: -TEST_PLAN_DEPEN = Test Plant Dependencies: -TEST_PLAN_DESC = Dependency - no description -TEST_PLAN_RUN = Test Run -TEST_PLAN_TEST_RUN = Test Run {0} -TEST_PLAN_DATA = Test Data -TEST_PLAN_TEST_DATA = Test Data {0} -TEST_PLAN_ASS = Assertion -TEST_PLAN_ASSERTION = Assertion {0} -TEST_PLAN_LANG = Language -TEST_PLAN_SOURCE = Source[x] -TEST_PLAN_TYPE = Type -TEST_PLAN_CONTENT = Content -TEST_PLAN_RESULT = Result -VALUE_SET_CONT = Value Set Contents -VALUE_SET_INF = This value set cannot be expanded because of the way it is defined - it has an infinite number of members. -VALUE_SET_SEL = This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown -VALUE_SET_TOO_COSTLY = This value set cannot be expanded because the terminology server(s) deemed it too costly to do so -VALUE_SET_LEVEL = Level -VALUE_SET_CODE = Code -VALUE_SET_SYSTEM = System -VALUE_SET_DISPLAY = Display -VALUE_SET_INACTIVE = Inactive -VALUE_SET_DEF = Definition -VALUE_SET_ADD_LANG = Additional Language Displays -VALUE_SET_DESIG = Additional Designations VALUE_SET_ADD_DESIG = Additional Designations and Language Displays -VALUE_SET_EXP = Expansion based on example code system -VALUE_SET_EXP_FRAG = Expansion based on code system fragment -VALUE_SET_EXPANSION = Expansion based on -VALUE_SET_EXPANSIONS = Expansion based on: -VALUE_SET_INT = International -VALUE_SET_US = United States +VALUE_SET_ADD_LANG = Additional Language Displays +VALUE_SET_ALL_CODE = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure: +VALUE_SET_ALL_CODES_DEF = all codes defined in +VALUE_SET_AND = and +VALUE_SET_AT_LEAST = at least VALUE_SET_AUS = Australian -VALUE_SET_SPAN = Spanish +VALUE_SET_CODE = Code +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. +VALUE_SET_COMMA = , +VALUE_SET_CONT = Value Set Contents +VALUE_SET_CONTAINS = This value set contains +VALUE_SET_CONT_STRUC = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure: VALUE_SET_DANISH = Danish +VALUE_SET_DEF = Definition +VALUE_SET_DESCENDENTOF = descends from +VALUE_SET_DESIG = Additional Designations +VALUE_SET_DISPLAY = Display +VALUE_SET_DISPLAY_ITEM = The display for the item +VALUE_SET_DOESNT_EXIST = doesn't exist VALUE_SET_DUTCH = Dutch -VALUE_SET_SWEDISH = Swedish -VALUE_SET_UK = United Kingdom -VALUE_SET_INACT = inactive -VALUE_SET_RULES_INC = This value set includes codes based on the following rules: -VALUE_SET_RULES_EXC = This value set excludes codes based on the following rules: -VALUE_SET_INC = Include +VALUE_SET_EQUAL = = +VALUE_SET_ERROR = Error Expanding ValueSet: {0} VALUE_SET_EXC = exclude VALUE_SET_EXCL = Exclude -VALUE_SET_NOT_DEF = This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined -VALUE_SET_ALL_CODE = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure: -VALUE_SET_NOT_FOUND = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure: -VALUE_SET_CONT_STRUC = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure: -VALUE_SET_CODE_ITEM = The code for the item -VALUE_SET_DISPLAY_ITEM = The display for the item -VALUE_SET_SPEC_NAME = Fully specified name -VALUE_SET_SYNONYM = Synonym -VALUE_SET_COMMA = , -VALUE_SET_WHERE_CODES = , where the codes are contained in +VALUE_SET_EXCLUDED_FROM = Excluded from +VALUE_SET_EXISTS = exists +VALUE_SET_EXP = Expansion based on example code system +VALUE_SET_EXPANSION = Expansion based on +VALUE_SET_EXPANSIONS = Expansion based on: +VALUE_SET_EXP_FRAG = Expansion based on code system fragment +VALUE_SET_GENERALIZES = generalizes +VALUE_SET_HAS = This value set has VALUE_SET_IMPORT_one = Import all the codes that are contained in VALUE_SET_IMPORT_other = Import all the codes that are contained in the intersection of -VALUE_SET_NOTE = Note: {0} -VALUE_SET_ERROR = Error Expanding ValueSet: {0} -VALUE_SET_NULL = null -VALUE_SET_EQUAL = = +VALUE_SET_IN = in +VALUE_SET_INACT = inactive +VALUE_SET_INACTIVE = Inactive +VALUE_SET_INC = Include +VALUE_SET_INCLUDED_INTO = Included into +VALUE_SET_INF = This value set cannot be expanded because of the way it is defined - it has an infinite number of members. +VALUE_SET_INT = International VALUE_SET_ISA = is-a VALUE_SET_ISNOTA = is-not-a -VALUE_SET_REGEX = matches (by regex) -VALUE_SET_NULLS = ?ngen-13? -VALUE_SET_IN = in -VALUE_SET_NOTIN = not in -VALUE_SET_DESCENDENTOF = descends from -VALUE_SET_EXISTS = exists -VALUE_SET_GENERALIZES = generalizes -STRUC_DEF_FII = Formal Invariant Identifier -STRUC_DEF_ERROR = Unknown structure mode -STRUC_DEF_REQ = Required -STRUC_DEF_CONC_SET = Concepts must come from this value set -STRUC_DEF_EXT = Extensible -STRUC_DEF_APPROP_CON = Concepts must come from this value set if appropriate concept is in this value set -STRUC_DEF_MAX = Maximum -STRUC_DEF_REQ_BIND = A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred' -STRUC_DEF_MIN = Minimum -STRUC_DEF_MIN_ALLOW = The minimum allowable value set - any conformant system SHALL support all these codes -STRUC_DEF_CAND = Candidate -STRUC_DEF_CAND_SUB = This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation -STRUC_DEF_CURR = Current -STRUC_DEF_CURR_RULE = New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this -STRUC_DEF_PREF = Preferred -STRUC_DEF_PREF_CONT = This is the value set that is preferred in a given context (documentation should explain why) -STRUC_DEF_UI = UI -STRUC_DEF_UI_CONT = This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context -STRUC_DEF_START = Starter -STRUC_DEF_START_DEF = This value set is a good set of codes to start with when designing your system -STRUC_DEF_COMP = Component -STRUC_DEF_COMP_DOC = This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set -STRUC_DEF_EX = Example -STRUC_DEF_EX_DESC = Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included. -STRUC_DEF_EXAM = example -STRUC_DEF_EXTENSIBLE = extensible -STRUC_DEF_PREFERRED = preferred -STRUC_DEF_REQUIRED = required -STRUC_DEF_ALL_ACTORS = All Actors -STRUC_DEF_OBLIG_ALL = Obligations that apply to all actors -STRUC_DEF_UNDEF_ACT = Obligations that apply to the undefined actor {0} -STRUC_DEF_ACT = Obligations that apply to the actor {0} -STRUC_DEF_NAME = Name -STRUC_DEF_LOGIC_NAME = The logical name of the element -STRUC_DEF_CONT_RULE = Content/Rules for all slices -STRUC_DEF_ALL_TYPES = All Types -STRUC_DEF_CONT_TYPE = Content/Rules for all Types -STRUC_DEF_SLICE = Slice -STRUC_DEF_SLICE_PAR = Slice {0} -STRUC_DEF_SLICE_FOR = Slices for {0} -STRUC_DEF_MOD = This element is a modifier element -STRUC_DEF_OBLIG_SUPP = This element has obligations and must be supported -STRUC_DEF_SUPP = This element must be supported -STRUC_DEF_OBLIG = This element has obligations -STRUC_DEF_SUMM = This element is included in summaries -STRUC_DEF_ELE = This primitive element must have a value -STRUC_DEF_EX_URL = Extension URL = {0} -STRUC_DEF_COMPLEX = Complex -STRUC_DEF_JSON_IS = This element is present as a JSON Array even when there are no items in the instance -STRUC_DEF_JSON_MAY = This element may be present as a JSON Array even when there are no items in the instance -STRUC_DEF_CHOICE = (Choice of one) -STRUC_DEF_XML_NAME = XML Namespace -STRUC_DEF_ELEMENTS = Elements defined in Ancestors: -STRUC_DEF_URL = URL -STRUC_DEF_PROFILED = profiled by -STRUC_DEF_BINDING = Binding -STRUC_DEF_TYPE_SET = This type can be bound to a value set using the " -STRUC_DEF_BINDING_STYLE = binding style -STRUC_DEF_ELE_READ = When this element is read -STRUC_DEF_PREFIXED = is prefixed to the value before validation -STRUC_DEF_EXT_JSON = This element can be extended by named JSON elements -STRUC_DEF_DATE = Date Format: {0} -STRUC_DEF_ID_IS = Id may or not be present (this is the default for elements but not resources) -STRUC_DEF_ID_MAY = Id is required to be present (this is the default for resources but not elements) -STRUC_DEF_ID_NOT_ALLOW = An id is not allowed in this context -STRUC_DEF_CHOICE_GRP = Choice Group -STRUC_DEF_REPEAT = This is a repeating choice group that does not appear directly in the instance -STRUC_DEF_XML = XML -STRUC_DEF_XML_ELE = XML Element Name -STRUC_DEF_JSON_NAME = JSON Property Name -STRUC_DEF_JSON_TYPE = JSON Property Name for Type -STRUC_DEF_JSON_INFERRED = JSON: The type of this element is inferred from the JSON type in the instance -STRUC_DEF_JSON_NULL = JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes) -STRUC_DEF_JSON_ARRAY = JSON: This element may be present as a JSON Array even when there are no items in the instance -STRUC_DEF_JSON_IF = JSON: If -STRUC_DEF_THEN_TYPE = then the type is -STRUC_DEF_OBLIG_ADD = This is an obligation profile that only contains obligations and additional bindings -STRUC_DEF_NOT_MARK = Instances of this logical model are not marked to be the target of a Reference -STRUC_DEF_REF = Instances of this logical model can be the target of a Reference -STRUC_DEF_TEMPLATEID = Instance of this type are validated by templateId -STRUC_DEF_VALID_UNKNOWN = Instances of this type are validated using an unknown approach: {0} -STRUC_DEF_LOGIC = Logical Container -STRUC_DEF_ROOT = The root class that contains instances of this class -STRUC_DEF_REPEAT_ELE = This repeating element order: {0} -STRUC_DEF_FIXED = Fixed Value -STRUC_DEF_AS_SHOWN = As shown -STRUC_DEF_REQ_PATT = Required Pattern -STRUC_DEF_LEAST_FOLLOW = At least the following -STRUC_DEF_EXAMPLE = Example -STRUC_DEF_UNKNOWN_REF = Unknown reference to {0} -STRUC_DEF_SEE = See -STRUC_DEF_TYPE_SUPP = This type must be supported -STRUC_DEF_PROF_SUPP = This profile must be supported -STRUC_DEF_TODO = todo -STRUC_DEF_FIXED_VALUE = Fixed Value: -STRUC_DEF_COMPLEXBRACK = (complex) -STRUC_DEF_URLS = URL: -STRUC_DEF_SLICES = Slice: -STRUC_DEF_BINDINGS = Binding: -STRUC_DEF_REQUIRED_PATT = Required Pattern: -STRUC_DEF_MAX_LENGTH = Max Length: -STRUC_DEF_DEF = Definition: -STRUC_DEF_COMMENT = Comments: -STRUC_DEF_TARG_SUPP = This target must be supported -STRUC_DEF_ORDERED = Ordered -STRUC_DEF_UNORDERED = Unordered -STRUC_DEF_UNSPECIFIED = Unspecified -STRUC_DEF_CLOSED = Closed -STRUC_DEF_OPEN = Open -STRUC_DEF_OPEN_END = Open At End -STRUC_DEF_FHIR = Base FHIR {0} -STRUC_DEF_CAP = CAP Code -STRUC_DEF_PROPERTY = Property -STRUC_DEF_CARD = Card. -STRUC_DEF_CONTENT = Content -STRUC_DEF_DESC = Description -STRUC_DEF_PROF_RES = A profiled resource -STRUC_DEF_MAX_MIN = Minimum and Maximum # of times the element can appear in the instance -STRUC_DEF_WHAT = What goes here -STRUC_DEF_DESC_PROF = Description of the profile -STRUC_DEF_IF = If -STRUC_DEF_FHIR_EXCEP = Unable to retrieve StructureDefinition with URL {0} -STRUC_DEF_SLICE_NAME = Slice Name -STRUC_DEF_CONSTRAINING = Slice Constraining -STRUC_DEF_DEFINITION = Definition -STRUC_DEF_SHORT = Short -STRUC_DEF_COMMENTS = Comments -STRUC_DEF_NOTE_X = [x] Note -STRUC_DEF_NOTE_C = Note -STRUC_DEF_CONTROL = Control -STRUC_DEF_TYPE = Type -STRUC_DEF_DEFAULT_TYPE = Default Type -STRUC_DEF_MODIFIER = Is Modifier -STRUC_DEF_PRIMITIVE = Primitive Value -STRUC_DEF_ALLOWED = Allowed Units -STRUC_DEF_MUST_SUPPORT = Must Support -STRUC_DEF_MUST_SUPPORT_TYPES = Must Support Types -STRUC_DEF_LOGICAL = Logical Model -STRUC_DEF_LOGICAL_CONT = Logical Container -STRUC_DEF_VALID = Validation -STRUC_DEF_UNKNOWN_APPROACH = Instances of this type are validated using an unknown approach: {0} -STRUC_DEF_IMPOSE_PROFILE = Impose Profile -STRUC_DEF_COMP_PROF = Complies with Profile -STRUC_DEF_PROF_COMP = This profiles compiles with the profile -STRUC_DEF_OBLIGATIONS = Obligations -STRUC_DEF_EXT_STYLE = Extension Style -STRUC_DEF_DATE_FORM = Date Format -STRUC_DEF_BIND_STYLE = Binding Style -STRUC_DEF_ID_EXPECT = ID Expectation -STRUC_DEF_ID_REQ = Id is required to be present (this is the default for resources but not elements) -STRUC_DEF_REP_CHOICE = This is a repeating choice group that does not appear directly in the instance -STRUC_DEF_JSON_FORM = JSON Format -STRUC_DEF_XML_FORM = XML Format -STRUC_DEF_STRING_FORM = String Format -STRUC_DEF_STAND_STAT = Standard Status -STRUC_DEF_REQUIREMENTS = Requirements -STRUC_DEF_LABEL = Label -STRUC_DEF_ALT_NAME = Alternate Names -STRUC_DEF_DEF_CODES = Definitional Codes -STRUC_DEF_MIN_VALUE = Min Value -STRUC_DEF_MAX_VALUE = Max Value -STRUC_DEF_VALUE_REQ = Value Required -STRUC_DEF_VALUE_ALT = Value Alternatives -STRUC_DEF_DEFAULT_VALUE = Default Value -STRUC_DEF_MEAN_MISS = Meaning if Missing -STRUC_DEF_PATT_VALUE = Pattern Value -STRUC_DEF_INVAR = Invariants -STRUC_DEF_LOINC = LOINC Code -STRUC_DEF_SNOMED = SNOMED-CT Code -STRUC_DEF_BECAUSE = because -STRUC_DEF_NO_MUST_SUPPORT = No must-support rules about the choice of types/profiles -STRUC_DEF_NOT_MARKED = Instances of this logical model are not marked to be the target of a Reference -STRUC_DEF_CAN_TARGET = Instances of this logical model can be the target of a Reference -STRUC_DEF_CANNOT_TARGET = Instances of this logical model cannot be the target of a Reference -STRUC_DEF_JSON_ELE = This element can be extended by named JSON elements -STRUC_DEF_TYPE_BOUND = This type can be bound to a value set using the {0} -STRUC_DEF_SUMMARY = Summary -STRUC_DEF_CDA = This property is represented as CDA Text in the XML. -STRUC_DEF_XSI = The type of this property is determined using the " -STRUC_DEF_XHTML = This property is represented as XHTML Text in the XML. -STRUC_DEF_XML_ATTRIBUTE = In the XML format, this property is represented as an attribute. -STRUC_DEF_UNADORNED = In the XML format, this property is represented as unadorned text. -STRUC_DEF_NAMESPACE = In the XML format, this property has the namespace -STRUC_DEF_XML_ACTUAL = In the XML format, this property has the actual name -STRUC_DEF_JSON_PRESENT = The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array) -STRUC_DEF_JSON_NOT_PRESENT = The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array) -STRUC_DEF_JSON_MAY_PRESENT = The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array) -STRUC_DEF_JSON_PROPERTY_NAME = This property appears in JSON with the property name -STRUC_DEF_JSON_CAN_NAME = This type can appear in JSON with the property name -STRUC_DEF_JSON_SINGLE = This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the -STRUC_DEF_NULL_JSON = This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes) -STRUC_DEF_INFERRED_JSON = The type of this element is inferred from the JSON type in the instance -STRUC_DEF_OBLIG_FROM = This profile picks up obligations and additional bindings from -STRUC_DEF_JSON_EXT = (in elements using named extensions) -STRUC_DEF_JSON_CHILD = child -STRUC_DEF_VALUE = Value Set -STRUC_DEF_ONE_OF = One of: -STRUC_DEF_AND = and -STRUC_DEF_SET_SLICES = This element introduces a set of slices on -STRUC_DEF_SET_ARE = . The slices are -STRUC_DEF_DESCRIM = , and can be differentiated using the following discriminators: -STRUC_DEF_NO_DESCRIM = , and defines no disciminators to differentiate the slices -STRUC_DEF_BUSINESS_ID = This is a business identifier, not a resource identifier (see -STRUC_DEF_DISCUSSION = discussion -STRUC_DEF_BUSINESS_VERID = This is a business version Id, not a resource version Id (see -STRUC_DEF_INVARIANT = This element is affected by the following invariants: -STRUC_DEF_CHOICE_OF = Choice of: -STRUC_DEF_COMP_EX = (Complex Extension) -STRUC_DEF_EX_TYPE = (Extension Type: -STRUC_DEF_COPY_URL = Click to Copy URL -STRUC_DEF_FOR_CODE = For codes, see -STRUC_DEF_EX_CODE = For example codes, see -STRUC_DEF_SHOULD_CODE = The codes SHOULD be taken from -STRUC_DEF_SUIT_SHALL_CODE = Unless not suitable, these codes SHALL be taken from -STRUC_DEF_SHALL_CODE = The codes SHALL be taken from -STRUC_DEF_ERR_DESC = Error describing concept- not done yet (no codings, no text) -STRUC_DEF_LOINC_CODE = LOINC code -STRUC_DEF_SNOMED_CODE = SNOMED CT code -STRUC_DEF_UCUM = UCUM -STRUC_DEF_PREFIX_VALID = is prefixed to the value before validation -STRUC_DEF_PROF_REQ = This profile also requires that the instance also conform this additional profile: -ADD_BIND_ANY_REPS = Any repeats -ADD_BIND_ALL_REP = All repeats -ADD_BIND_MAX = Max Binding -ADD_BIND_MIN = Min Binding -ADD_BIND_REQ_BIND = Required Binding -ADD_BIND_EX_BIND = Extensible Binding -ADD_BIND_CURR_BIND = Current Binding -ADD_BIND_PREF_BIND = Preferred Binding -ADD_BIND_EXT_PREF = A required binding, for use when the binding strength is 'extensible' or 'preferred' -ADD_BIND_MIN_ALLOW = The minimum allowable value set - any conformant system SHALL support all these codes -ADD_BIND_VALID_REQ = Validators will check this binding (strength = required) -ADD_BIND_VALID_EXT = Validators will check this binding (strength = extensible) -ADD_BIND_NEW_REC = New records are required to use this value set, but legacy records may use other codes -ADD_BIND_RECOM_VALUE_SET = This is the value set that is recommended (documentation should explain why) -ADD_BIND_PREFERRED = Preferred -ADD_BIND_REQUIRED = Required -ADD_BIND_GIVEN_CONT = This value set is provided to user look up in a given context -ADD_BIND_UI_BIND = UI Binding -ADD_BIND_UI = UI -ADD_BIND_DESIG_SYS = This value set is a good set of codes to start with when designing your system -ADD_BIND_STARTER = Starter -ADD_BIND_UNKNOWN_PUR = Unknown code for purpose -ADD_BIND_COMPONENT = Component -ADD_BIND_VALUE_COMP = This value set is a component of the base value set -BIND_REND_NO_CONTENT = No Content Type -BUND_REND_INVALID_DOC = Invalid document ''{0}'' - first entry is not a Composition ({0}) -BUND_REND_RES = resource -BUND_REND_GEN_NARR = generating narrative -CAPABILITY_CORS_YES = Enable CORS: yes -CAPABILITY_CORS_NO = Enable CORS: no -CAPABILITY_INTER_SUPP = The interactions supported by each resource ( -CAPABILITY_READ_INT = GET a resource (read interaction) -CAPABILITY_VREAD_INT = GET past versions of resources (vread interaction) -CAPABILITY_SEARCH_INT = GET all set of resources of the type (search interaction) -CAPABILITY_UPDATE_INT = PUT a new resource version (update interaction) -CAPABILITY_PATCH_INT = PATCH a new resource version (patch interaction) -CAPABILITY_CREATE_INT = POST a new resource (create interaction) -CAPABILITY_DELETE_INT = DELETE a resource (delete interaction) -CAPABILITY_HISTORY_INT = GET changes to a resource (history interaction on instance) -CAPABILITY_HISTORY_TYPE = GET changes for all resources of the type (history interaction on type) -CAPABILITY_SEARCHES = Searches -CAPABILITY_REQ_RECOM = Required and recommended search parameters -CAPABILITY_BASE_SYS = Base System Profile -CAPABILITY_PROF_CONF = Profile Conformance -CAPABILITY_FHIR = Core FHIR Resource -CAPABILITY_REF_PROF = Reference Policy -CAPABILITY_SUPP_PROFS = Supported Profiles -CAPABILITY_EXT_OP = Extended Operations -CAPABILITY_INT_SUMM = Interaction summary -CAPABILITY_SEARCH_PARS = Search Parameters -CAPABILITY_COMB_SEARCH_PAR = Combined Search Parameters -CODE_SYS_IN_A_HIERARCHY = in a {0} hierarchy -CODE_SYS_REPLACED_BY = (replaced by -DATA_REND_ONGOING = (ongoing) -EXAMPLE_SCEN_UNABLE_TO_FIND = Unable to find referenced version {0} within instance {1} -EXAMPLE_SCEN_STEP_SCEN = Step {0} - See scenario\n {1} -DATA_REND_DETAILS_STATED = (Details: {0} code {1} {2} {3} ', stated as ' {4} {5} -DATA_REND_VERSION = (version = {0} {1} -DATA_REND_BASE64 = (base64 data - {0} bytes) -DATA_REND_CODES = Codes: -DATA_REND_GLN = Global Location Number -DATA_REND_DETAILS = (Details: {0} code -DATA_REND_PER = per -DATA_REND_EXCEPTION = Exception -DIAG_REP_REND_PER = Performer -DIAG_REP_REND_IDENTIFIER = Identifier -DIAG_REP_REND_REQUEST = Request -PROF_DRIV_GEN_NARR = Generated Narrative: {0} {1} -PROF_DRIV_ERR_GEN_NARR = Error Generating Narrative for -QUEST_UNKNOWN_MODE = Unknown QuestionnaireResponse Renderer Mode -QUEST_ANSWER = Answer -QUEST_RESP_ROOT = QuestionnaireResponseRoot -QUEST_RESP = QuestionnaireResponse -QUEST_QUESTION = Questionnaire: -QUEST_NONE_SPEC = None specified -QUEST_GROUP = Group -QUEST_ITEM = Item -QUEST_TRY_QUEST = Try this QuestionnaireResponse out: -QUEST_DISPLAY_CAT = Display Category -QUEST_NOT_DONE = Not done yet -RES_REND_VER = (version -RES_REND_VERSION = Version -RES_REND_UPDATED = Updated -RES_REND_LANGUAGE = (Language -RES_REND_SPEC_RULES = Special rules apply: -RES_REND_INFO_SOURCE = Information Source: -RES_REND_PROFILE = Profile -RES_REND_SECURITY_LABEL = Security Label -SEARCH_PAR_REND_RES = Resource -SEARCH_PAR_REND_TARGET = Target Resources -STRUC_DEF_REND_UNABLE_RES = Unable to resolve StructureDefinition {0} resolving content reference {1} -STRUC_DEF_CANT_FIND = getElementByName: can't find {0} in {1} from {2} -STRUC_DEF_ALL_SLICES = :All Slices -STRUC_DEF_ELE_AFFECTED = This element has or is affected by constraints ( {0} {1} -STRUC_DEF_STAND_STATUS = Standards Status = -STRUC_DEF_BLACK = black -STRUC_DEF_ABSTRACT = This is an abstract -STRUC_DEF_CHILD = Child -STRUC_DEF_SINGLE_JSON_OBJECTS = JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key -STRUC_DEF_TYPE_SPEC = Type Specifier -STRUC_DEF_CHOICE_DATA_TYPE = Choice of Data Types -STRUC_DEF_FURTHER_INFO = for further information about how to use [x] -STRUC_DEF_PRIM_TYPE_VALUE = This primitive type must have a value (the value must be present, and cannot be replaced by an extension) -STRUC_DEF_PRIM_TYPE_PRESENT = This primitive type may be present, or absent if replaced by one of the following extensions: -STRUC_DEF_PRIM_ELE = This primitive element may be present, or absent, or replaced by an extension -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. -VALUE_SET_HAS = This value set has -VALUE_SET_CONTAINS = This value set contains -VALUE_SET_AT_LEAST = at least -VALUE_SET_NUMBER_CONCEPTS = This value set expansion contains {0} concepts. -VALUE_SET_VERSION = version -VALUE_SET_NO_VERSION = (no version) ( -VALUE_SET_NO_VER = (no version) -VALUE_SET_ALL_CODES_DEF = all codes defined in -VALUE_SET_THESE_CODES_DEF = these codes as defined in -VALUE_SET_CODES_FROM = codes from -VALUE_SET_WHERE = where -VALUE_SET_AND = and -VALUE_SET_DOESNT_EXIST = doesn't exist -VALUE_SET_SNOMED_ADD = SNOMED CT {0} edition {1} -VALUE_SET_SNOMED = SNOMED CT {0} edition +VALUE_SET_LEVEL = Level VALUE_SET_LOINCV = Loinc v -CANON_REND_URL = Defining URL -CANON_REND_VER = Version -CANON_REND_NAME = Name -CANON_REND_TITLE = Title -CANON_REND_STATUS = Status -CANON_REND_DEFINITION = Definition -CANON_REND_PUBLISHER = Publisher -CANON_REND_COMMITTEE = Committee -CANON_REND_COPYRIGHT = Copyright -CANON_REND_MATURITY = Maturity -CANON_REND_SOURCE_RES = Source Resource -CANON_REND_XML = XML -CANON_REND_JSON = JSON -CANON_REND_TURTLE = Turtle -CODE_SYS_CONTENT = Content -CODE_SYS_OID = OID -CODE_SYS_VALUE_SET = Value Set -CODE_SYS_COMPLETE = All the concepts defined by the code system are included in the code system resource -CODE_SYS_NOTPRESENT = None of the concepts defined by the code system are included in the code system resource -CODE_SYS_EXAMPLE = A few representative concepts are included in the code system resource -CODE_SYS_FRAGMENT = A subset of the code system concepts are included in the code system resource -CODE_SYS_SUPPLEMENT = This code system resource is a supplement to -CODE_SYS_CODE_NOT_HERE = This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content) -CODE_SYS_FOR_OID = for OID based terminology systems -CODE_SYS_THE_VALUE_SET = is the value set for all codes in this code system -STRUC_DEF_NO_SUMMARY = No Summary, as this profile has no differential -STRUC_DEF_ELEMENT = element -STRUC_DEF_STRUCTURES = Structures -STRUC_DEF_EXTENSIONS = Extensions -STRUC_DEF_SLIC = Slices -STRUC_DEF_THIS_REFERS = This structure refers to these other structures -STRUC_DEF_REFERS_EXT = This structure refers to these extensions -STRUC_DEF_MATURITY = Maturity -STRUC_DEF_MODIF = Modifier -STRUC_DEF_SNOMED_CT = SNOMED CT -STRUC_DEF_TERM_BIND = Terminology Bindings (Differential) -STRUC_DEF_PATH = Path -STRUC_DEF_TERM_BINDS = Terminology Bindings -STRUC_DEF_URI = URI -STRUC_DEF_MISSING_LINK = missing link -STRUC_DEF_CONSTRAINTS = Constraints -STRUC_DEF_GRADE = Grade -STRUC_DEF_NO_MAPPINGS = No Mappings -STRUC_DEF_ALL_MAP_KEY = All Mappings are Empty -STRUC_DEF_PROFILE_BUILDS = This profile builds on -STRUC_DEF_DERIVED_PROFILE = In this IG, the following structures are derived from this profile: -STRUC_DEF_REFER_PROFILE = In this IG, the following structures refer to this profile: -STRUC_DEF_MOD_ELEMENT = This element is a modifier element -STRUC_DEF_ELE_MUST_SUPP = This element must be supported -STRUC_DEF_ELE_INCLUDED = This element is included in summaries -STRUC_DEF_AFFECT_CONSTRAINTS = "This element has or is affected by constraints ( -STRUC_DEF_CONFORMANCE = Conformance -STRUC_DEF_VALUESET_CODE = ValueSet / Code -STRUC_DEF_VALUESET = ValueSet -STRUC_DEF_ID = Id -STRUC_DEF_PATHS = Path(s) -STRUC_DEF_DETAILS = Details +VALUE_SET_NOTE = Note: {0} +VALUE_SET_NOTIN = not in +VALUE_SET_NOT_DEF = This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined +VALUE_SET_NOT_FOUND = This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure: +VALUE_SET_NO_VER = (no version) +VALUE_SET_NO_VERSION = (no version) ( +VALUE_SET_NULL = null +VALUE_SET_NULLS = ?ngen-13? +VALUE_SET_NUMBER_CONCEPTS = This value set expansion contains {0} concepts. VALUE_SET_OID = OID VALUE_SET_OID_TERM_SYS = for OID based terminology systems -VALUE_SET_INCLUDED_INTO = Included into -VALUE_SET_EXCLUDED_FROM = Excluded from +VALUE_SET_REGEX = matches (by regex) +VALUE_SET_RULES_EXC = This value set excludes codes based on the following rules: +VALUE_SET_RULES_INC = This value set includes codes based on the following rules: +VALUE_SET_SEL = This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown +VALUE_SET_SNOMED = SNOMED CT {0} edition +VALUE_SET_SNOMED_ADD = SNOMED CT {0} edition {1} +VALUE_SET_SPAN = Spanish +VALUE_SET_SPEC_NAME = Fully specified name +VALUE_SET_SWEDISH = Swedish +VALUE_SET_SYNONYM = Synonym +VALUE_SET_SYSTEM = System +VALUE_SET_THESE_CODES_DEF = these codes as defined in +VALUE_SET_TOO_COSTLY = This value set cannot be expanded because the terminology server(s) deemed it too costly to do so +VALUE_SET_UK = United Kingdom +VALUE_SET_US = United States VALUE_SET_USED_ELSEWHERE = This value set is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content) -TEXT_ICON_REFERENCE = Reference to another Resource -TEXT_ICON_PRIMITIVE = Primitive Data Type -TEXT_ICON_KEY = JSON Key Value -TEXT_ICON_DATATYPE = Data Type -TEXT_ICON_RESOURCE = Resource -TEXT_ICON_ELEMENT = Element -TEXT_ICON_OBJECT_BOX = Object -TEXT_ICON_REUSE = Reference to another Element -TEXT_ICON_EXTENSION = Extension -TEXT_ICON_CHOICE = Choice of Types -TEXT_ICON_SLICE = Slice Definition -TEXT_ICON_SLICE_ITEM = Slice Item -TEXT_ICON_FIXED = Fixed Value -TEXT_ICON_EXTENSION_SIMPLE = Simple Extension -TEXT_ICON_PROFILE = Profile -TEXT_ICON_EXTENSION_COMPLEX = Complex Extension -MAP_DEFAULT_COMMENT = This element was not defined prior to R5 -VS_ABSTRACT_CODE_HINT = This code is not selectable ('Abstract') -TERM_REND_COPY = Copy {0} Format to clipboard -TEST_PLAN_CASE = Test Case -TEST_PLAN_CASE_SEQ = Test Case - Sequence {0} +VALUE_SET_VERSION = version +VALUE_SET_WHERE = where +VALUE_SET_WHERE_CODES = , where the codes are contained in +VS_ABSTRACT_CODE_HINT = This code is not selectable ('Abstract') \ No newline at end of file diff --git a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-de.po b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-de.po index 111864f12..fc7e6f574 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-de.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-de.po @@ -1,5 +1,147 @@ -// en -> de -Plural-Forms: nplurals=2; plural=n != 1; + +#: ACTOR_DEF_ACT +msgid "Actor: {0}" +msgstr "" + +#: ACTOR_DEF_CAP +msgid "Capabilities:" +msgstr "" + +#: ACTOR_DEF_DER +msgid "Derived from:" +msgstr "" + +#: ACTOR_DEF_REF +msgid "References:" +msgstr "" + +#: ACTOR_DEF_TYP +msgid "Type: {0}" +msgstr "" + +#: ADD_BIND_ADD_BIND +msgid "Additional Bindings" +msgstr "" + +#: ADD_BIND_ALL_REP +msgid "All repeats" +msgstr "" + +#: ADD_BIND_ANY +msgid "Any" +msgstr "" + +#: ADD_BIND_ANY_REP +msgid "any repeat" +msgstr "" + +#: ADD_BIND_ANY_REPS +msgid "Any repeats" +msgstr "" + +#: ADD_BIND_COMPONENT +msgid "Component" +msgstr "" + +#: ADD_BIND_CURR_BIND +msgid "Current Binding" +msgstr "" + +#: ADD_BIND_DESIG_SYS +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: ADD_BIND_DOC +msgid "Documentation" +msgstr "" + +#: ADD_BIND_EXT_PREF +msgid "A required binding, for use when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: ADD_BIND_EX_BIND +msgid "Extensible Binding" +msgstr "" + +#: ADD_BIND_GIVEN_CONT +msgid "This value set is provided to user look up in a given context" +msgstr "" + +#: ADD_BIND_MAX +msgid "Max Binding" +msgstr "" + +#: ADD_BIND_MIN +msgid "Min Binding" +msgstr "" + +#: ADD_BIND_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: ADD_BIND_NEW_REC +msgid "New records are required to use this value set, but legacy records may use other codes" +msgstr "" + +#: ADD_BIND_PREFERRED +msgid "Preferred" +msgstr "" + +#: ADD_BIND_PREF_BIND +msgid "Preferred Binding" +msgstr "" + +#: ADD_BIND_PUR +msgid "Purpose" +msgstr "" + +#: ADD_BIND_RECOM_VALUE_SET +msgid "This is the value set that is recommended (documentation should explain why)" +msgstr "" + +#: ADD_BIND_REQUIRED +msgid "Required" +msgstr "" + +#: ADD_BIND_REQ_BIND +msgid "Required Binding" +msgstr "" + +#: ADD_BIND_STARTER +msgid "Starter" +msgstr "" + +#: ADD_BIND_UI +msgid "UI" +msgstr "" + +#: ADD_BIND_UI_BIND +msgid "UI Binding" +msgstr "" + +#: ADD_BIND_UNKNOWN_PUR +msgid "Unknown code for purpose" +msgstr "" + +#: ADD_BIND_USE +msgid "Usage" +msgstr "" + +#: ADD_BIND_VALID_EXT +msgid "Validators will check this binding (strength = extensible)" +msgstr "" + +#: ADD_BIND_VALID_REQ +msgid "Validators will check this binding (strength = required)" +msgstr "" + +#: ADD_BIND_VALUE_COMP +msgid "This value set is a component of the base value set" +msgstr "" + +#: BIND_REND_NO_CONTENT +msgid "No Content Type" +msgstr "" #: BUNDLE_DOCUMENT_CONTENT msgid "Additional Document Content" @@ -69,6 +211,14 @@ msgstr "Resso}:" msgid "Response:" msgstr "" +#: BUNDLE_REV_EXCP +msgid "Exception generating narrative: {0}" +msgstr "" + +#: BUNDLE_REV_INV_DOC +msgid "Invalid document - first entry is not a Composition" +msgstr "" + #: BUNDLE_SEARCH msgid "Search:" msgstr "Suche:" @@ -81,6 +231,334 @@ msgstr "" msgid "Score = {0}" msgstr "" +#: BUND_REND_GEN_NARR +msgid "generating narrative" +msgstr "" + +#: BUND_REND_INVALID_DOC +msgid "Invalid document ''{0}'' - first entry is not a Composition ({0})" +msgstr "" + +#: BUND_REND_RES +msgid "resource" +msgstr "" + +#: CANON_REND_COMMITTEE +msgid "Committee" +msgstr "" + +#: CANON_REND_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: CANON_REND_DEFINITION +msgid "Definition" +msgstr "" + +#: CANON_REND_JSON +msgid "JSON" +msgstr "" + +#: CANON_REND_MATURITY +msgid "Maturity" +msgstr "" + +#: CANON_REND_NAME +msgid "Name" +msgstr "" + +#: CANON_REND_PUBLISHER +msgid "Publisher" +msgstr "" + +#: CANON_REND_SOURCE_RES +msgid "Source Resource" +msgstr "" + +#: CANON_REND_STATUS +msgid "Status" +msgstr "" + +#: CANON_REND_TITLE +msgid "Title" +msgstr "" + +#: CANON_REND_TURTLE +msgid "Turtle" +msgstr "" + +#: CANON_REND_URL +msgid "Defining URL" +msgstr "" + +#: CANON_REND_VER +msgid "Version" +msgstr "" + +#: CANON_REND_XML +msgid "XML" +msgstr "" + +#: CAPABILITY_ADD_SUPP_PROF +msgid "Additional supported profiles:" +msgstr "" + +#: CAPABILITY_BASE_SYS +msgid "Base System Profile" +msgstr "" + +#: CAPABILITY_COMB_SEARCH_PAR +msgid "Combined Search Parameters" +msgstr "" + +#: CAPABILITY_CONF +msgid "Conformance" +msgstr "" + +#: CAPABILITY_CORS_NO +msgid "Enable CORS: no" +msgstr "" + +#: CAPABILITY_CORS_YES +msgid "Enable CORS: yes" +msgstr "" + +#: CAPABILITY_CREATE_INT +msgid "POST a new resource (create interaction)" +msgstr "" + +#: CAPABILITY_CRIT +msgid "Criteria" +msgstr "" + +#: CAPABILITY_DELETE_INT +msgid "DELETE a resource (delete interaction)" +msgstr "" + +#: CAPABILITY_DOC +msgid "Documentation" +msgstr "" + +#: CAPABILITY_EXT_OP +msgid "Extended Operations" +msgstr "" + +#: CAPABILITY_FHIR +msgid "Core FHIR Resource" +msgstr "" + +#: CAPABILITY_FHIR_VER +msgid "FHIR Version: {0}" +msgstr "" + +#: CAPABILITY_HISTORY_INT +msgid "GET changes to a resource (history interaction on instance)" +msgstr "" + +#: CAPABILITY_HISTORY_TYPE +msgid "GET changes for all resources of the type (history interaction on type)" +msgstr "" + +#: CAPABILITY_IMP_VER +msgid "Implementation Guide Version: {0}" +msgstr "" + +#: CAPABILITY_INT +msgid "interaction." +msgstr "" + +#: CAPABILITY_INTER_SUPP +msgid "The interactions supported by each resource (" +msgstr "" + +#: CAPABILITY_INT_DESC +msgid "interaction described as follows:" +msgstr "" + +#: CAPABILITY_INT_SUMM +msgid "Interaction summary" +msgstr "" + +#: CAPABILITY_NOTE_CAP +msgid "Note to Implementers: FHIR Capabilities" +msgstr "" + +#: CAPABILITY_OP +msgid "Operations" +msgstr "" + +#: CAPABILITY_OPER +msgid "Operation" +msgstr "" + +#: CAPABILITY_OTH_RES_ENB +msgid "The other resources enabled for" +msgstr "" + +#: CAPABILITY_PAR +msgid "Parameter" +msgstr "" + +#: CAPABILITY_PARS +msgid "Parameters" +msgstr "" + +#: CAPABILITY_PATCH_INT +msgid "PATCH a new resource version (patch interaction)" +msgstr "" + +#: CAPABILITY_PROF +msgid "Profile" +msgstr "" + +#: CAPABILITY_PROF_CONF +msgid "Profile Conformance" +msgstr "" + +#: CAPABILITY_PROF_MAP +msgid "Profile Mapping" +msgstr "" + +#: CAPABILITY_PUB_BY +msgid "Published by: {0}" +msgstr "" + +#: CAPABILITY_PUB_ON +msgid "Published on: {0}" +msgstr "" + +#: CAPABILITY_READ_INT +msgid "GET a resource (read interaction)" +msgstr "" + +#: CAPABILITY_REF_PROF +msgid "Reference Policy" +msgstr "" + +#: CAPABILITY_REQ_RECOM +msgid "Required and recommended search parameters" +msgstr "" + +#: CAPABILITY_REST_CAPS +msgid "FHIR RESTful Capabilities" +msgstr "" + +#: CAPABILITY_REST_CONFIG +msgid "REST Configuration: {0}" +msgstr "" + +#: CAPABILITY_RES_CONF +msgid "Resource Conformance: {0}" +msgstr "" + +#: CAPABILITY_RES_ENB +msgid "The linked resources enabled for" +msgstr "" + +#: CAPABILITY_RES_OPER +msgid "The operations on the resource (if any)" +msgstr "" + +#: CAPABILITY_RES_PRO +msgid "Capabilities by Resource/Profile" +msgstr "" + +#: CAPABILITY_RES_TYP +msgid "Resource Type" +msgstr "" + +#: CAPABILITY_REV_PROF +msgid "The relevant profiles (if any)" +msgstr "" + +#: CAPABILITY_SEARCHES +msgid "Searches" +msgstr "" + +#: CAPABILITY_SEARCH_INT +msgid "GET all set of resources of the type (search interaction)" +msgstr "" + +#: CAPABILITY_SEARCH_PAR +msgid "The required, recommended, and some optional search parameters (if any)." +msgstr "" + +#: CAPABILITY_SEARCH_PARS +msgid "Search Parameters" +msgstr "" + +#: CAPABILITY_SHOULD_SUPP +msgid "SHOULD Support the Following Implementation Guides" +msgstr "" + +#: CAPABILITY_SUMM +msgid "Summary" +msgstr "" + +#: CAPABILITY_SUMM_RES +msgid "The summary table lists the resources that are part of this configuration, and for each resource it lists:" +msgstr "" + +#: CAPABILITY_SUMM_SYS_INT +msgid "Summary of System-wide Interactions" +msgstr "" + +#: CAPABILITY_SUPP +msgid "support" +msgstr "" + +#: CAPABILITY_SUPPS +msgid "Supports" +msgstr "" + +#: CAPABILITY_SUPP_FORM +msgid "Supported Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PATCH_FORM +msgid "Supported Patch Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PROF +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_PROFS +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_THE +msgid "Supports the" +msgstr "" + +#: CAPABILITY_TYP +msgid "Type" +msgstr "" + +#: CAPABILITY_TYPS +msgid "Types" +msgstr "" + +#: CAPABILITY_TYP_PRES +msgid "ype are only present if at least one of the resources has support for them." +msgstr "" + +#: CAPABILITY_UPDATE_INT +msgid "PUT a new resource version (update interaction)" +msgstr "" + +#: CAPABILITY_VREAD_INT +msgid "GET past versions of resources (vread interaction)" +msgstr "" + +#: CAPABILTY_ALLOW_CAP +msgid "Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case." +msgstr "" + +#: CAPABILTY_SHALL_SUPP +msgid "SHALL Support the Following Implementation Guides" +msgstr "" + #: CODEPROP_CODE msgid "Code" msgstr "" @@ -161,6 +639,918 @@ msgstr "" msgid "URI" msgstr "" +#: CODE_SYS_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: CODE_SYS_CODE +msgid "Code" +msgstr "" + +#: CODE_SYS_CODE_NOT_HERE +msgid "This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: CODE_SYS_COMPLETE +msgid "All the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_CONTENT +msgid "Content" +msgstr "" + +#: CODE_SYS_COPY +msgid "Copy" +msgstr "" + +#: CODE_SYS_DISP +msgid "displays" +msgstr "" + +#: CODE_SYS_DISP_PROP +msgid "displays and properties" +msgstr "" + +#: CODE_SYS_EXAMPLE +msgid "A few representative concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_FEAT +msgid "features" +msgstr "" + +#: CODE_SYS_FOR_OID +msgid "for OID based terminology systems" +msgstr "" + +#: CODE_SYS_FRAGMENT +msgid "A subset of the code system concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_IN_A_HIERARCHY +msgid "in a {0} hierarchy" +msgstr "" + +#: CODE_SYS_NOTPRESENT +msgid "None of the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_OID +msgid "OID" +msgstr "" + +#: CODE_SYS_PROP +msgid "properties" +msgstr "" + +#: CODE_SYS_REPLACED_BY +msgid "(replaced by" +msgstr "" + +#: CODE_SYS_SUPPLEMENT +msgid "This code system resource is a supplement to" +msgstr "" + +#: CODE_SYS_THE_VALUE_SET +msgid "is the value set for all codes in this code system" +msgstr "" + +#: CODE_SYS_UNDEF_HIER +msgid "in an undefined heirarchy" +msgstr "" + +#: CODE_SYS_UNKN_MODE +msgid "Unknown CodeSystemContentMode mode" +msgstr "" + +#: CODE_SYS_VALUE_SET +msgid "Value Set" +msgstr "" + +#: CONC_MAP_CMNT +msgid "Comment" +msgstr "" + +#: CONC_MAP_CODE +msgid "Code" +msgstr "" + +#: CONC_MAP_CODES +msgid "Codes" +msgstr "" + +#: CONC_MAP_CODE_SYS_UNSPEC +msgid "unspecified code system" +msgstr "" + +#: CONC_MAP_FRM +msgid "from" +msgstr "" + +#: CONC_MAP_FROM +msgid "Mapping from" +msgstr "" + +#: CONC_MAP_GRP +msgid "Group {0}" +msgstr "" + +#: CONC_MAP_NOT_SPEC +msgid "(not specified)" +msgstr "" + +#: CONC_MAP_NO_PROD_USE +msgid "(not intended for production usage)." +msgstr "" + +#: CONC_MAP_PROP +msgid "Properties" +msgstr "" + +#: CONC_MAP_PUB_ON +msgid "Published on {0}" +msgstr "" + +#: CONC_MAP_REL +msgid "Relationship" +msgstr "" + +#: CONC_MAP_SOURCE +msgid "Source Code" +msgstr "" + +#: CONC_MAP_SRC_DET +msgid "Source Concept Details" +msgstr "" + +#: CONC_MAP_TO +msgid "to" +msgstr "" + +#: CONC_MAP_TRGT +msgid "Target Code" +msgstr "" + +#: CONC_MAP_TRGT_DET +msgid "Target Concept Details" +msgstr "" + +#: DATA_REND_AFTRBKFST +msgid "after breakfast" +msgstr "" + +#: DATA_REND_AFTRDINR +msgid "after dinner" +msgstr "" + +#: DATA_REND_AFTRLUNCH +msgid "after lunch" +msgstr "" + +#: DATA_REND_AFTRMEALS +msgid "after meals" +msgstr "" + +#: DATA_REND_AFTRWKNG +msgid "after waking" +msgstr "" + +#: DATA_REND_ATBKFST +msgid "at breakfast" +msgstr "" + +#: DATA_REND_ATDINR +msgid "at dinner" +msgstr "" + +#: DATA_REND_ATLUNCH +msgid "at lunch" +msgstr "" + +#: DATA_REND_BASE64 +msgid "(base64 data - {0} bytes)" +msgstr "" + +#: DATA_REND_BFBKFST +msgid "before breakfast" +msgstr "" + +#: DATA_REND_BFDINR +msgid "before dinner" +msgstr "" + +#: DATA_REND_BFLUNCH +msgid "before lunch" +msgstr "" + +#: DATA_REND_BFMEALS +msgid "before meals" +msgstr "" + +#: DATA_REND_BFSLEEP +msgid "before sleeping" +msgstr "" + +#: DATA_REND_BY +msgid "By" +msgstr "" + +#: DATA_REND_CODE +msgid "Code" +msgstr "" + +#: DATA_REND_CODES +msgid "Codes:" +msgstr "" + +#: DATA_REND_COND +msgid "Condition" +msgstr "" + +#: DATA_REND_COUNT +msgid "Count {0}" +msgstr "" + +#: DATA_REND_DATA +msgid "Data: {0}" +msgstr "" + +#: DATA_REND_DETAILS +msgid "(Details: {0} code" +msgstr "" + +#: DATA_REND_DETAILS_STATED +msgid "(Details: {0} code {1} {2} {3} ', stated as ' {4} {5}" +msgstr "" + +#: DATA_REND_DICOM +msgid "DICOM" +msgstr "" + +#: DATA_REND_DIM +msgid "Dimensions: {0}" +msgstr "" + +#: DATA_REND_DURATION +msgid "Duration {0}" +msgstr "" + +#: DATA_REND_ERROR +msgid "Error: {0}" +msgstr "" + +#: DATA_REND_EVENTS +msgid "Events: {0}" +msgstr "" + +#: DATA_REND_EXCEPTION +msgid "Exception" +msgstr "" + +#: DATA_REND_FACT +msgid "Factor: {0}" +msgstr "" + +#: DATA_REND_FAX +msgid "Fax: {0}" +msgstr "" + +#: DATA_REND_FILT +msgid "Filter" +msgstr "" + +#: DATA_REND_GETCODE +msgid "Code: {0}" +msgstr "" + +#: DATA_REND_GLN +msgid "Global Location Number" +msgstr "" + +#: DATA_REND_ICD +msgid "ICD-9" +msgstr "" + +#: DATA_REND_INT +msgid "Interval: {0}" +msgstr "" + +#: DATA_REND_LIMIT +msgid "Limit" +msgstr "" + +#: DATA_REND_LOINC +msgid "LOINC" +msgstr "" + +#: DATA_REND_LOWER +msgid "Lower: {0}" +msgstr "" + +#: DATA_REND_MEALS +msgid "at meals" +msgstr "" + +#: DATA_REND_MKDWN_LNK +msgid "Unable to resolve markdown link" +msgstr "" + +#: DATA_REND_NAME +msgid "Name" +msgstr "" + +#: DATA_REND_NOT_STAT +msgid "[not stated]" +msgstr "" + +#: DATA_REND_NO_DISP +msgid "No display for {0}" +msgstr "" + +#: DATA_REND_ONCE +msgid "Once" +msgstr "" + +#: DATA_REND_ONGOING +msgid "(ongoing)" +msgstr "" + +#: DATA_REND_ORIGIN +msgid "Origin: {0}" +msgstr "" + +#: DATA_REND_PER +msgid "per" +msgstr "" + +#: DATA_REND_PERIOD +msgid "period:" +msgstr "" + +#: DATA_REND_PHONE +msgid "Phone: {0}" +msgstr "" + +#: DATA_REND_RXNORM +msgid "RxNorm" +msgstr "" + +#: DATA_REND_SEARCH +msgid "Search on: {0}" +msgstr "" + +#: DATA_REND_SNOMED +msgid "SNOMED CT" +msgstr "" + +#: DATA_REND_SORT +msgid "Sort" +msgstr "" + +#: DATA_REND_SOURCE +msgid "source" +msgstr "" + +#: DATA_REND_STARTING +msgid "Starting {0}" +msgstr "" + +#: DATA_REND_SUB +msgid "Subject" +msgstr "" + +#: DATA_REND_THESE_CODES +msgid "One of these codes:" +msgstr "" + +#: DATA_REND_TIMING +msgid "Timing" +msgstr "" + +#: DATA_REND_TO_DO +msgid "to do: {0}" +msgstr "" + +#: DATA_REND_TYPE +msgid "Type" +msgstr "" + +#: DATA_REND_UCUM +msgid "UCUM" +msgstr "" + +#: DATA_REND_UNKNWN +msgid "unknown" +msgstr "" + +#: DATA_REND_UNRD_EX +msgid "WARNING: Unrenderable Modifier Extension!" +msgstr "" + +#: DATA_REND_UNTIL +msgid "Until {0}" +msgstr "" + +#: DATA_REND_UP +msgid "Upper: {0}" +msgstr "" + +#: DATA_REND_USE +msgid "use:" +msgstr "" + +#: DATA_REND_VALUE +msgid "Value" +msgstr "" + +#: DATA_REND_VALUESET +msgid "In ValueSet" +msgstr "" + +#: DATA_REND_VERSION +msgid "(version = {0} {1}" +msgstr "" + +#: DIAG_REP_REND_AGE +msgid "Age" +msgstr "" + +#: DIAG_REP_REND_CODE +msgid "Code" +msgstr "" + +#: DIAG_REP_REND_CODECON +msgid "Coded Conclusions :" +msgstr "" + +#: DIAG_REP_REND_ERR +msgid "Error:" +msgstr "" + +#: DIAG_REP_REND_FLAG +msgid "Flags" +msgstr "" + +#: DIAG_REP_REND_FOR +msgid "for" +msgstr "" + +#: DIAG_REP_REND_IDEN +msgid "Identifier: {0}" +msgstr "" + +#: DIAG_REP_REND_IDENTIFIER +msgid "Identifier" +msgstr "" + +#: DIAG_REP_REND_NOTDONE +msgid "Not done yet" +msgstr "" + +#: DIAG_REP_REND_NOTE +msgid "Note" +msgstr "" + +#: DIAG_REP_REND_NOTRES +msgid "This Observation could not be resolved" +msgstr "" + +#: DIAG_REP_REND_OBS +msgid "Observation" +msgstr "" + +#: DIAG_REP_REND_PER +msgid "Performer" +msgstr "" + +#: DIAG_REP_REND_REFRAN +msgid "Reference Range" +msgstr "" + +#: DIAG_REP_REND_REP +msgid "Reported" +msgstr "" + +#: DIAG_REP_REND_REPDET +msgid "Report Details" +msgstr "" + +#: DIAG_REP_REND_REQ +msgid "Request: {0}" +msgstr "" + +#: DIAG_REP_REND_REQUEST +msgid "Request" +msgstr "" + +#: DIAG_REP_REND_SUB +msgid "Subject" +msgstr "" + +#: DIAG_REP_REND_UNABLE +msgid "Unable to get Patient Details" +msgstr "" + +#: DIAG_REP_REND_VALUE +msgid "Value" +msgstr "" + +#: DIAG_REP_REND_WHEN +msgid "When For" +msgstr "" + +#: EXAMPLE_SCEN_STEP_SCEN +msgid "Step {0} - See scenario\n {1}" +msgstr "" + +#: EXAMPLE_SCEN_UNABLE_TO_FIND +msgid "Unable to find referenced version {0} within instance {1}" +msgstr "" + +#: EX_SCEN_ALT +msgid "Alternative {0}" +msgstr "" + +#: EX_SCEN_BEL +msgid "below" +msgstr "" + +#: EX_SCEN_CONT +msgid "Content" +msgstr "" + +#: EX_SCEN_CONTA +msgid "Contains:" +msgstr "" + +#: EX_SCEN_DESC +msgid "Description" +msgstr "" + +#: EX_SCEN_ERR_REN +msgid "Error rendering ExampleScenario {0}" +msgstr "" + +#: EX_SCEN_FVER +msgid "FHIR version" +msgstr "" + +#: EX_SCEN_IN +msgid "Initiator" +msgstr "" + +#: EX_SCEN_NAME +msgid "Name" +msgstr "" + +#: EX_SCEN_OTH +msgid "See other scenario" +msgstr "" + +#: EX_SCEN_POSTCON +msgid "Post-conditions:" +msgstr "" + +#: EX_SCEN_PRECON +msgid "Pre-conditions:" +msgstr "" + +#: EX_SCEN_PROC +msgid "Process: {0}" +msgstr "" + +#: EX_SCEN_REC +msgid "Receiver" +msgstr "" + +#: EX_SCEN_REQ +msgid "Request" +msgstr "" + +#: EX_SCEN_RES +msgid "Response" +msgstr "" + +#: EX_SCEN_SEE +msgid "See subprocess" +msgstr "" + +#: EX_SCEN_STEP +msgid "Step" +msgstr "" + +#: EX_SCEN_TIME +msgid "... time passes ...\n" +msgstr "" + +#: EX_SCEN_TYPE +msgid "Type" +msgstr "" + +#: EX_SCEN_UN +msgid "Unknown ExampleScenario Renderer Mode {0}" +msgstr "" + +#: EX_SCEN_UN_ACT +msgid "Unable to find referenced actor {0}" +msgstr "" + +#: EX_SCEN_UN_INST +msgid "Unable to find referenced instance {0}" +msgstr "" + +#: EX_SCEN_VER +msgid "version" +msgstr "" + +#: IMP_GUIDE_URL +msgid "The official URL for this implementation guide is:" +msgstr "" + +#: LIB_REND_ART +msgid "Related Artifacts" +msgstr "" + +#: LIB_REND_AUT +msgid "Author" +msgstr "" + +#: LIB_REND_CONT +msgid "Contents" +msgstr "" + +#: LIB_REND_ED +msgid "Editor" +msgstr "" + +#: LIB_REND_END +msgid "Endorser" +msgstr "" + +#: LIB_REND_NOCONT +msgid "No Content" +msgstr "" + +#: LIB_REND_PAR +msgid "Participants" +msgstr "" + +#: LIB_REND_PARA +msgid "Parameters" +msgstr "" + +#: LIB_REND_REQ +msgid "Data Requirements" +msgstr "" + +#: LIB_REND_REV +msgid "Reviewer" +msgstr "" + +#: LIB_REND_SHOW +msgid "Content not shown - (" +msgstr "" + +#: LIB_REND_SIZE +msgid ", size = {0}" +msgstr "" + +#: LIST_REND_CODE +msgid "Code: {0}" +msgstr "" + +#: LIST_REND_DAT +msgid "Date" +msgstr "" + +#: LIST_REND_DATE +msgid "Date: {0}" +msgstr "" + +#: LIST_REND_DEL +msgid "Deleted" +msgstr "" + +#: LIST_REND_ENC +msgid "Encounter:" +msgstr "" + +#: LIST_REND_FLAG +msgid "Flag" +msgstr "" + +#: LIST_REND_ITEM +msgid "Items" +msgstr "" + +#: LIST_REND_MODE +msgid "Mode: {0}" +msgstr "" + +#: LIST_REND_ORD +msgid "Order: {0}" +msgstr "" + +#: LIST_REND_SRC +msgid "Source:" +msgstr "" + +#: LIST_REND_STAT +msgid "Status: {0}" +msgstr "" + +#: LIST_REND_SUB +msgid "Subject:" +msgstr "" + +#: MAP_DEFAULT_COMMENT +msgid "This element was not defined prior to R5" +msgstr "" + +#: NAME_SYS_COM +msgid "Comment" +msgstr "" + +#: NAME_SYS_COPY +msgid "Copyright" +msgstr "" + +#: NAME_SYS_DEF +msgid "Definition" +msgstr "" + +#: NAME_SYS_FOROID +msgid "for OID based terminology systems" +msgstr "" + +#: NAME_SYS_IDEN +msgid "Identifiers" +msgstr "" + +#: NAME_SYS_NAME +msgid "Name" +msgstr "" + +#: NAME_SYS_OID +msgid "OID" +msgstr "" + +#: NAME_SYS_PER +msgid "Period" +msgstr "" + +#: NAME_SYS_PREF +msgid "Preferred" +msgstr "" + +#: NAME_SYS_PUB +msgid "Publisher" +msgstr "" + +#: NAME_SYS_STAT +msgid "Status" +msgstr "" + +#: NAME_SYS_SUM +msgid "Summary" +msgstr "" + +#: NAME_SYS_TITLE +msgid "Title" +msgstr "" + +#: NAME_SYS_TYPE +msgid "Type" +msgstr "" + +#: NAME_SYS_URL +msgid "Defining URL" +msgstr "" + +#: NAME_SYS_VALUE +msgid "Value" +msgstr "" + +#: NAME_SYS_VER +msgid "Version" +msgstr "" + +#: OBLIG_ACT +msgid "Actor" +msgstr "" + +#: OBLIG_DOC +msgid "Documentation" +msgstr "" + +#: OBLIG_ELE +msgid "Elements" +msgstr "" + +#: OBLIG_FILT +msgid "Filter" +msgstr "" + +#: OBLIG_OBLIG +msgid "Obligations" +msgstr "" + +#: OBLIG_USE +msgid "Usage" +msgstr "" + +#: OP_DEF_BIND +msgid "Binding" +msgstr "" + +#: OP_DEF_CARD +msgid "Cardinality" +msgstr "" + +#: OP_DEF_DOC +msgid "Documentation" +msgstr "" + +#: OP_DEF_INPAR +msgid "Input parameters Profile:" +msgstr "" + +#: OP_DEF_NAME +msgid "Name" +msgstr "" + +#: OP_DEF_OFFIC +msgid "The official URL for this operation definition is:" +msgstr "" + +#: OP_DEF_OUTPAR +msgid "Output parameters Profile:" +msgstr "" + +#: OP_DEF_PAR +msgid "Parameters" +msgstr "" + +#: OP_DEF_SCO +msgid "Scope" +msgstr "" + +#: OP_DEF_TYPE +msgid "Type" +msgstr "" + +#: OP_DEF_URL +msgid "URL: [base]/{0}" +msgstr "" + +#: OP_DEF_URLS +msgid "URL: [base]/${0}" +msgstr "" + +#: OP_DEF_USE +msgid "Use" +msgstr "" + +#: OP_OUT_CODE +msgid "Code" +msgstr "" + +#: OP_OUT_DET +msgid "Details" +msgstr "" + +#: OP_OUT_DIAG +msgid "Diagnostics" +msgstr "" + +#: OP_OUT_LOC +msgid "Location" +msgstr "" + +#: OP_OUT_NOT +msgid "Not done yet" +msgstr "" + +#: OP_OUT_OK +msgid "All OK" +msgstr "" + +#: OP_OUT_SEV +msgid "Severity" +msgstr "" + +#: OP_OUT_SRC +msgid "Source" +msgstr "" + +#: OP_OUT_TODO +msgid "todo" +msgstr "" + +#: PAR_REND_PAR +msgid "Parameters" +msgstr "" + #: PAT_ACTIVE msgid "Active:" msgstr "" @@ -186,7 +1576,7 @@ msgid "Ways to contact the Patient" msgstr "" #: PAT_CONTAINED -msgid "Contained Resource" +msgid "Contained Resources" msgid_plural "Contained Resources" msgstr[0] "" msgstr[1] "" @@ -211,8 +1601,14 @@ msgstr "" msgid "General Practitioner" msgstr "" +#: PAT_LANG +msgid "Languages:" +msgid_plural "Languages:" +msgstr[0] "" +msgstr[1] "" + #: PAT_LANG_HINT -msgid "Language spoken" +msgid "Languages spoken" msgid_plural "Languages spoken" msgstr[0] "" msgstr[1] "" @@ -221,12 +1617,6 @@ msgstr[1] "" msgid "(preferred)" msgstr "" -#: PAT_LANG -msgid "Language:" -msgid_plural "Languages:" -msgstr[0] "" -msgstr[1] "" - #: PAT_LINKS msgid "Links:" msgstr "" @@ -299,15 +1689,15 @@ msgstr "" msgid "Organization:" msgstr "" -#: PAT_OTHER_ID_HINT -msgid "Other Id (see the one above)" -msgid_plural "Other Ids (see the one above)" +#: PAT_OTHER_ID +msgid "Other Ids:" +msgid_plural "Other Ids:" msgstr[0] "" msgstr[1] "" -#: PAT_OTHER_ID -msgid "Other Id:" -msgid_plural "Other Ids:" +#: PAT_OTHER_ID_HINT +msgid "Other Ids (see the one above)" +msgid_plural "Other Ids (see the one above)" msgstr[0] "" msgstr[1] "" @@ -323,10 +1713,606 @@ msgstr "" msgid "Relationships:" msgstr "" +#: PROF_DRIV_ERR_GEN_NARR +msgid "Error Generating Narrative for" +msgstr "" + +#: PROF_DRIV_EXCP +msgid "Exception Generating Narrative: {0}" +msgstr "" + +#: PROF_DRIV_FEXCP +msgid "Cannot find definition for {0}" +msgstr "" + +#: PROF_DRIV_GEN_NARR +msgid "Generated Narrative: {0} {1}" +msgstr "" + +#: PROV_ACT +msgid "Activity" +msgstr "" + +#: PROV_AGE +msgid "Agents" +msgstr "" + +#: PROV_BEHALF +msgid "On Behalf Of" +msgstr "" + +#: PROV_FOR +msgid "Provenance for {0}" +msgstr "" + +#: PROV_LOC +msgid "Location" +msgstr "" + +#: PROV_NOT +msgid "Not done yet" +msgstr "" + +#: PROV_OCC +msgid "Occurrence" +msgstr "" + +#: PROV_POL +msgid "Policy" +msgstr "" + +#: PROV_PROV +msgid "Provenance for" +msgstr "" + +#: PROV_PROVE +msgid "Provenance for:" +msgstr "" + +#: PROV_REC +msgid "Recorded" +msgstr "" + +#: PROV_ROLE +msgid "Role" +msgstr "" + +#: PROV_SUM +msgid "Summary" +msgstr "" + +#: PROV_TYPE +msgid "Type" +msgstr "" + +#: PROV_WHO +msgid "who" +msgstr "" + +#: QUEST_ADD_INFO +msgid "Additional information about the item" +msgstr "" + +#: QUEST_ALLOWED +msgid "Allowed Answers" +msgstr "" + +#: QUEST_ANSW +msgid "Answer options for {0}" +msgstr "" + +#: QUEST_ANSWER +msgid "Answer" +msgstr "" + +#: QUEST_ANSWERS +msgid "Answers" +msgstr "" + +#: QUEST_APP +msgid "Approval Date" +msgstr "" + +#: QUEST_ARE_TRUE +msgid "?? are true:" +msgstr "" + +#: QUEST_ATTRIBUTES +msgid "Other attributes of the item" +msgstr "" + +#: QUEST_CALC +msgid "Calculated Value" +msgstr "" + +#: QUEST_CAND +msgid "Candidates" +msgstr "" + +#: QUEST_CARD +msgid "Cardinality" +msgstr "" + +#: QUEST_CAT +msgid "Category: {0}" +msgstr "" + +#: QUEST_CODE +msgid "Code" +msgstr "" + +#: QUEST_CONT +msgid "Context" +msgstr "" + +#: QUEST_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: QUEST_DEF +msgid "Definition:" +msgstr "" + +#: QUEST_DEFINITION +msgid "Definition" +msgstr "" + +#: QUEST_DERIVED +msgid "Derived From" +msgstr "" + +#: QUEST_DESC +msgid "Description & Constraints" +msgstr "" + +#: QUEST_DESCRIPTION +msgid "Description" +msgstr "" + +#: QUEST_DISPLAY +msgid "Is optional to display" +msgstr "" + +#: QUEST_DISPLAY_CAT +msgid "Display Category" +msgstr "" + +#: QUEST_EFF_PERIOD +msgid "Effective Period" +msgstr "" + +#: QUEST_EN +msgid "Enable When" +msgstr "" + +#: QUEST_ENABLE +msgid "Enable When:" +msgstr "" + +#: QUEST_EXP +msgid "Expressions:" +msgstr "" + +#: QUEST_EXPER +msgid "Experimental" +msgstr "" + +#: QUEST_FLAG +msgid "Flags" +msgstr "" + +#: QUEST_GROUP +msgid "Group" +msgstr "" + +#: QUEST_HIDDEN +msgid "Is a hidden item" +msgstr "" + +#: QUEST_HIDDEN_ITEM +msgid "Hidden Item" +msgstr "" + +#: QUEST_ID +msgid "Link Id" +msgstr "" + +#: QUEST_INITIAL +msgid "Initial Value:" +msgstr "" + +#: QUEST_INITIALLY +msgid "(initially selected)" +msgstr "" + +#: QUEST_INITIAL_ANSWER +msgid "Initial Answer" +msgstr "" + +#: QUEST_INT +msgid "Initial Values" +msgstr "" + +#: QUEST_ITEM +msgid "Item" +msgstr "" + +#: QUEST_ITEM_CONT +msgid "Item Context" +msgstr "" + +#: QUEST_LINK +msgid "The linkID for the item" +msgstr "" + +#: QUEST_LINKED +msgid "Is linked to an observation" +msgstr "" + +#: QUEST_LINKID +msgid "LinkID" +msgstr "" + +#: QUEST_MAND +msgid "Mandatory" +msgstr "" + +#: QUEST_MAX +msgid "Max Length:" +msgstr "" + +#: QUEST_MAX_LENGTH +msgid "Max Length" +msgstr "" + +#: QUEST_NAME +msgid "Name" +msgstr "" + +#: QUEST_NLM +msgid "NLM Forms Library" +msgstr "" + +#: QUEST_NONE_SPEC +msgid "None specified" +msgstr "" + +#: QUEST_NOT_DONE +msgid "Not done yet" +msgstr "" + +#: QUEST_OBSERVATION +msgid "Observation Link Period" +msgstr "" + +#: QUEST_OPT +msgid "Options Sets" +msgstr "" + +#: QUEST_OPTIONS +msgid "Options:" +msgstr "" + +#: QUEST_ORIENTATION +msgid "Orientation: {0}" +msgstr "" + +#: QUEST_PREFIX +msgid "Prefix" +msgstr "" + +#: QUEST_PUB +msgid "Publication Date" +msgstr "" + +#: QUEST_PURPOSE +msgid "Purpose" +msgstr "" + +#: QUEST_QUEST +msgid "Questionnaire" +msgstr "" + +#: QUEST_QUESTION +msgid "Questionnaire:" +msgstr "" + +#: QUEST_QUESTIONNAIRE +msgid "Questionnaire {0}" +msgstr "" + +#: QUEST_READONLY +msgid "Is Read Only" +msgstr "" + +#: QUEST_READ_ONLY +msgid "Read Only" +msgstr "" + +#: QUEST_REP +msgid "Repeats" +msgstr "" + +#: QUEST_REQ +msgid "Required" +msgstr "" + +#: QUEST_RESP +msgid "QuestionnaireResponse" +msgstr "" + +#: QUEST_RESP_ROOT +msgid "QuestionnaireResponseRoot" +msgstr "" + +#: QUEST_REV_DATE +msgid "Last Review Date" +msgstr "" + +#: QUEST_ROOT +msgid "QuestionnaireRoot" +msgstr "" + +#: QUEST_STATUS +msgid "Status" +msgstr "" + +#: QUEST_STRUCT +msgid "Structure" +msgstr "" + +#: QUEST_SUB +msgid "Subject" +msgstr "" + +#: QUEST_SUBJECT +msgid "Can change the subject of the questionnaire" +msgstr "" + +#: QUEST_SUB_TYPE +msgid "Subject Type" +msgstr "" + +#: QUEST_TEXT +msgid "Text" +msgstr "" + +#: QUEST_TEXTFOR +msgid "Text for the item" +msgstr "" + +#: QUEST_TIMES +msgid "Minimum and Maximum # of times the item can appear in the instance" +msgstr "" + +#: QUEST_TITLE +msgid "Title" +msgstr "" + +#: QUEST_TODO +msgid "todo" +msgstr "" + +#: QUEST_TRUE +msgid "are true:" +msgstr "" + +#: QUEST_TRY +msgid "Try this questionnaire out:" +msgstr "" + +#: QUEST_TRY_QUEST +msgid "Try this QuestionnaireResponse out:" +msgstr "" + +#: QUEST_TYPE +msgid "Type" +msgstr "" + +#: QUEST_TYPE_ITEM +msgid "The type of the item" +msgstr "" + +#: QUEST_UNKNOWN_MODE +msgid "Unknown QuestionnaireResponse Renderer Mode" +msgstr "" + +#: QUEST_URL +msgid "URL" +msgstr "" + +#: QUEST_VALUE +msgid "Value Set:" +msgstr "" + +#: QUEST_VALUE_SET +msgid "Value Set" +msgstr "" + +#: QUEST_VERSION +msgid "Version" +msgstr "" + +#: REND_ADDED +msgid "Added:" +msgstr "" + +#: REND_CHANGED +msgid "Changed:" +msgstr "" + +#: REND_REMOVED +msgid "Removed:" +msgstr "" + +#: REND_ROW_CHANGED_SINCE +msgid "This row of content has been changed since {0}" +msgstr "" + +#: REND_ROW_CHANGED_SINCE_WAS +msgid "This row of content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_ROW_REMOVED_SINCE +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_ROW_SINCE +msgid "This row of content has been added since {0}" +msgstr "" + +#: REND_SINCE_ADDED +msgid "This content has been added since {0}" +msgstr "" + +#: REND_SINCE_CHANGED +msgid "This content has been changed since {0}" +msgstr "" + +#: REND_SINCE_CHANGED_WAS +msgid "This content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_SINCE_DELETED +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_STANDARDS +msgid "Standards Status = {0}" +msgstr "" + +#: REQ_ACTOR +msgid "These requirements apply to the actor" +msgstr "" + +#: REQ_DERIVE +msgid "These requirements derive from" +msgstr "" + +#: REQ_DERIVED +msgid "Derived From:" +msgstr "" + +#: REQ_FOLLOWING_ACTOR +msgid "These requirements apply to the following actors:" +msgstr "" + +#: REQ_FOLLOWING_REQ +msgid "These requirements are derived from the following requirements:" +msgstr "" + +#: REQ_LINKS +msgid "Links:" +msgstr "" + +#: REQ_REFERENCES +msgid "References:" +msgstr "" + +#: REQ_SATISFIED +msgid "Satisfied By:" +msgstr "" + +#: REQ_SOURCES +msgid "Source:" +msgstr "" + #: RESOURCE_COPYRIGHT msgid "Copyright Statement:" msgstr "" +#: RES_REND_ACT +msgid "Active" +msgstr "" + +#: RES_REND_COND_REF +msgid "Conditional Reference:" +msgstr "" + +#: RES_REND_DESC +msgid ". Description: (todo)" +msgstr "" + +#: RES_REND_DRAFT +msgid "draft" +msgstr "" + +#: RES_REND_ERROR +msgid "Error rendering: {0}" +msgstr "" + +#: RES_REND_EXP +msgid "Experimental" +msgstr "" + +#: RES_REND_GEN_SUM +msgid ". Generated Summary:" +msgstr "" + +#: RES_REND_INFO_SOURCE +msgid "Information Source:" +msgstr "" + +#: RES_REND_LANGUAGE +msgid "(Language" +msgstr "" + +#: RES_REND_PROF +msgid "Profile" +msgstr "" + +#: RES_REND_PROFILE +msgid "Profile" +msgstr "" + +#: RES_REND_RESOURCE +msgid "Resource" +msgstr "" + +#: RES_REND_RET +msgid "retired" +msgstr "" + +#: RES_REND_SECURITY +msgid "Security Label" +msgstr "" + +#: RES_REND_SECURITY_LABEL +msgid "Security Label" +msgstr "" + +#: RES_REND_SEE_ON_THIS_PAGE +msgid "See on this page:" +msgstr "" + +#: RES_REND_SPEC_RULES +msgid "Special rules apply:" +msgstr "" + +#: RES_REND_TAG +msgid "Tag" +msgstr "" + +#: RES_REND_TODO +msgid "todo" +msgstr "" + +#: RES_REND_UNKNOWN +msgid "Unknown" +msgstr "" + +#: RES_REND_UPDATED +msgid "Updated" +msgstr "" + +#: RES_REND_VER +msgid "(version" +msgstr "" + +#: RES_REND_VERSION +msgid "Version" +msgstr "" + #: SD_COMP_HEAD_CARD_L msgid "L Card." msgstr "" @@ -539,6 +2525,12 @@ msgstr "" msgid "This profile was published on {0} as a {1} by {2}" msgstr "" +#: SD_SUMMARY_SLICE +msgid "The element {0} is sliced based on the values of {1}" +msgid_plural "The element {0} is sliced based on the values of {1}" +msgstr[0] "" +msgstr[1] "" + #: SD_SUMMARY_SLICES msgid "This structure defines the following {0}Slices{1}" msgstr "" @@ -547,11 +2539,1373 @@ msgstr "" msgid "There is a slice with no discriminator at {0}" msgstr "" -#: SD_SUMMARY_SLICE -msgid "The element {0} is sliced based on the value of {1}" -msgid_plural "The element {0} is sliced based on the values of {1}" -msgstr[0] "" -msgstr[1] "" +#: SEARCH_PAR_ALLOWED +msgid "Allowed:" +msgstr "" + +#: SEARCH_PAR_CHAIN +msgid "Chains" +msgstr "" + +#: SEARCH_PAR_COMP +msgid "Comparators" +msgstr "" + +#: SEARCH_PAR_EXP +msgid "Expression" +msgstr "" + +#: SEARCH_PAR_MOD +msgid "Modifiers" +msgstr "" + +#: SEARCH_PAR_MULTIPLES +msgid "Multiples" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_APPEAR +msgid "multipleAnd: The parameter may only appear once" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_REPEAT +msgid "multipleAnd: The parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_SERVER +msgid "multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_MULTIPLE +msgid "multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_ONE +msgid "multipleOr: The parameter may only have one value (no comma separators)" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_SERVER +msgid "multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_NONE +msgid "(none)" +msgstr "" + +#: SEARCH_PAR_PAR +msgid "Parameter" +msgstr "" + +#: SEARCH_PAR_PROC +msgid "Processing Mode" +msgstr "" + +#: SEARCH_PAR_REND_RES +msgid "Resource" +msgstr "" + +#: SEARCH_PAR_REND_TARGET +msgid "Target Resources" +msgstr "" + +#: SEARCH_PAR_RES +msgid "All Resources" +msgstr "" + +#: STRUC_DEF_ABSTRACT +msgid "This is an abstract" +msgstr "" + +#: STRUC_DEF_ACT +msgid "Obligations that apply to the actor {0}" +msgstr "" + +#: STRUC_DEF_AFFECT_CONSTRAINTS +msgid ""This element has or is affected by constraints (" +msgstr "" + +#: STRUC_DEF_ALLOWED +msgid "Allowed Units" +msgstr "" + +#: STRUC_DEF_ALL_ACTORS +msgid "All Actors" +msgstr "" + +#: STRUC_DEF_ALL_MAP_KEY +msgid "All Mappings are Empty" +msgstr "" + +#: STRUC_DEF_ALL_SLICES +msgid ":All Slices" +msgstr "" + +#: STRUC_DEF_ALL_TYPES +msgid "All Types" +msgstr "" + +#: STRUC_DEF_ALT_NAME +msgid "Alternate Names" +msgstr "" + +#: STRUC_DEF_AND +msgid "and" +msgstr "" + +#: STRUC_DEF_APPROP_CON +msgid "Concepts must come from this value set if appropriate concept is in this value set" +msgstr "" + +#: STRUC_DEF_AS_SHOWN +msgid "As shown" +msgstr "" + +#: STRUC_DEF_BECAUSE +msgid "because" +msgstr "" + +#: STRUC_DEF_BINDING +msgid "Binding" +msgstr "" + +#: STRUC_DEF_BINDINGS +msgid "Binding:" +msgstr "" + +#: STRUC_DEF_BINDING_STYLE +msgid "binding style" +msgstr "" + +#: STRUC_DEF_BIND_STYLE +msgid "Binding Style" +msgstr "" + +#: STRUC_DEF_BLACK +msgid "black" +msgstr "" + +#: STRUC_DEF_BUSINESS_ID +msgid "This is a business identifier, not a resource identifier (see" +msgstr "" + +#: STRUC_DEF_BUSINESS_VERID +msgid "This is a business version Id, not a resource version Id (see" +msgstr "" + +#: STRUC_DEF_CAND +msgid "Candidate" +msgstr "" + +#: STRUC_DEF_CAND_SUB +msgid "This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation" +msgstr "" + +#: STRUC_DEF_CANNOT_TARGET +msgid "Instances of this logical model cannot be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CANT_FIND +msgid "getElementByName: can't find {0} in {1} from {2}" +msgstr "" + +#: STRUC_DEF_CAN_TARGET +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CAP +msgid "CAP Code" +msgstr "" + +#: STRUC_DEF_CARD +msgid "Card." +msgstr "" + +#: STRUC_DEF_CDA +msgid "This property is represented as CDA Text in the XML." +msgstr "" + +#: STRUC_DEF_CHILD +msgid "Child" +msgstr "" + +#: STRUC_DEF_CHOICE +msgid "(Choice of one)" +msgstr "" + +#: STRUC_DEF_CHOICE_DATA_TYPE +msgid "Choice of Data Types" +msgstr "" + +#: STRUC_DEF_CHOICE_GRP +msgid "Choice Group" +msgstr "" + +#: STRUC_DEF_CHOICE_OF +msgid "Choice of:" +msgstr "" + +#: STRUC_DEF_CLOSED +msgid "Closed" +msgstr "" + +#: STRUC_DEF_COMMENT +msgid "Comments:" +msgstr "" + +#: STRUC_DEF_COMMENTS +msgid "Comments" +msgstr "" + +#: STRUC_DEF_COMP +msgid "Component" +msgstr "" + +#: STRUC_DEF_COMPLEX +msgid "Complex" +msgstr "" + +#: STRUC_DEF_COMPLEXBRACK +msgid "(complex)" +msgstr "" + +#: STRUC_DEF_COMP_DOC +msgid "This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set" +msgstr "" + +#: STRUC_DEF_COMP_EX +msgid "(Complex Extension)" +msgstr "" + +#: STRUC_DEF_COMP_PROF +msgid "Complies with Profile" +msgstr "" + +#: STRUC_DEF_CONC_SET +msgid "Concepts must come from this value set" +msgstr "" + +#: STRUC_DEF_CONFORMANCE +msgid "Conformance" +msgstr "" + +#: STRUC_DEF_CONSTRAINING +msgid "Slice Constraining" +msgstr "" + +#: STRUC_DEF_CONSTRAINTS +msgid "Constraints" +msgstr "" + +#: STRUC_DEF_CONTENT +msgid "Content" +msgstr "" + +#: STRUC_DEF_CONTROL +msgid "Control" +msgstr "" + +#: STRUC_DEF_CONT_RULE +msgid "Content/Rules for all slices" +msgstr "" + +#: STRUC_DEF_CONT_TYPE +msgid "Content/Rules for all Types" +msgstr "" + +#: STRUC_DEF_COPY_URL +msgid "Click to Copy URL" +msgstr "" + +#: STRUC_DEF_CURR +msgid "Current" +msgstr "" + +#: STRUC_DEF_CURR_RULE +msgid "New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this" +msgstr "" + +#: STRUC_DEF_DATE +msgid "Date Format: {0}" +msgstr "" + +#: STRUC_DEF_DATE_FORM +msgid "Date Format" +msgstr "" + +#: STRUC_DEF_DEF +msgid "Definition:" +msgstr "" + +#: STRUC_DEF_DEFAULT_TYPE +msgid "Default Type" +msgstr "" + +#: STRUC_DEF_DEFAULT_VALUE +msgid "Default Value" +msgstr "" + +#: STRUC_DEF_DEFINITION +msgid "Definition" +msgstr "" + +#: STRUC_DEF_DEF_CODES +msgid "Definitional Codes" +msgstr "" + +#: STRUC_DEF_DERIVED_PROFILE +msgid "In this IG, the following structures are derived from this profile:" +msgstr "" + +#: STRUC_DEF_DESC +msgid "Description" +msgstr "" + +#: STRUC_DEF_DESCRIM +msgid ", and can be differentiated using the following discriminators:" +msgstr "" + +#: STRUC_DEF_DESC_PROF +msgid "Description of the profile" +msgstr "" + +#: STRUC_DEF_DETAILS +msgid "Details" +msgstr "" + +#: STRUC_DEF_DISCUSSION +msgid "discussion" +msgstr "" + +#: STRUC_DEF_ELE +msgid "This primitive element must have a value" +msgstr "" + +#: STRUC_DEF_ELEMENT +msgid "element" +msgstr "" + +#: STRUC_DEF_ELEMENTS +msgid "Elements defined in Ancestors:" +msgstr "" + +#: STRUC_DEF_ELE_AFFECTED +msgid "This element has or is affected by constraints ( {0} {1}" +msgstr "" + +#: STRUC_DEF_ELE_INCLUDED +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_ELE_MUST_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_ELE_READ +msgid "When this element is read" +msgstr "" + +#: STRUC_DEF_ERROR +msgid "Unknown structure mode" +msgstr "" + +#: STRUC_DEF_ERR_DESC +msgid "Error describing concept- not done yet (no codings, no text)" +msgstr "" + +#: STRUC_DEF_EX +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXAM +msgid "example" +msgstr "" + +#: STRUC_DEF_EXAMPLE +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXT +msgid "Extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIBLE +msgid "extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIONS +msgid "Extensions" +msgstr "" + +#: STRUC_DEF_EXT_JSON +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_EXT_STYLE +msgid "Extension Style" +msgstr "" + +#: STRUC_DEF_EX_CODE +msgid "For example codes, see" +msgstr "" + +#: STRUC_DEF_EX_DESC +msgid "Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included." +msgstr "" + +#: STRUC_DEF_EX_TYPE +msgid "(Extension Type:" +msgstr "" + +#: STRUC_DEF_EX_URL +msgid "Extension URL = {0}" +msgstr "" + +#: STRUC_DEF_FHIR +msgid "Base FHIR {0}" +msgstr "" + +#: STRUC_DEF_FHIR_EXCEP +msgid "Unable to retrieve StructureDefinition with URL {0}" +msgstr "" + +#: STRUC_DEF_FII +msgid "Formal Invariant Identifier" +msgstr "" + +#: STRUC_DEF_FIXED +msgid "Fixed Value" +msgstr "" + +#: STRUC_DEF_FIXED_VALUE +msgid "Fixed Value:" +msgstr "" + +#: STRUC_DEF_FOR_CODE +msgid "For codes, see" +msgstr "" + +#: STRUC_DEF_FURTHER_INFO +msgid "for further information about how to use [x]" +msgstr "" + +#: STRUC_DEF_GRADE +msgid "Grade" +msgstr "" + +#: STRUC_DEF_ID +msgid "Id" +msgstr "" + +#: STRUC_DEF_ID_EXPECT +msgid "ID Expectation" +msgstr "" + +#: STRUC_DEF_ID_IS +msgid "Id may or not be present (this is the default for elements but not resources)" +msgstr "" + +#: STRUC_DEF_ID_MAY +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_ID_NOT_ALLOW +msgid "An id is not allowed in this context" +msgstr "" + +#: STRUC_DEF_ID_REQ +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_IF +msgid "If" +msgstr "" + +#: STRUC_DEF_IMPOSE_PROFILE +msgid "Impose Profile" +msgstr "" + +#: STRUC_DEF_INFERRED_JSON +msgid "The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_INVAR +msgid "Invariants" +msgstr "" + +#: STRUC_DEF_INVARIANT +msgid "This element is affected by the following invariants:" +msgstr "" + +#: STRUC_DEF_JSON_ARRAY +msgid "JSON: This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_CAN_NAME +msgid "This type can appear in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_CHILD +msgid "child" +msgstr "" + +#: STRUC_DEF_JSON_ELE +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_JSON_EXT +msgid "(in elements using named extensions)" +msgstr "" + +#: STRUC_DEF_JSON_FORM +msgid "JSON Format" +msgstr "" + +#: STRUC_DEF_JSON_IF +msgid "JSON: If" +msgstr "" + +#: STRUC_DEF_JSON_INFERRED +msgid "JSON: The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_JSON_IS +msgid "This element is present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY +msgid "This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY_PRESENT +msgid "The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NAME +msgid "JSON Property Name" +msgstr "" + +#: STRUC_DEF_JSON_NOT_PRESENT +msgid "The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NULL +msgid "JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_JSON_PRESENT +msgid "The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_PROPERTY_NAME +msgid "This property appears in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_SINGLE +msgid "This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the" +msgstr "" + +#: STRUC_DEF_JSON_TYPE +msgid "JSON Property Name for Type" +msgstr "" + +#: STRUC_DEF_LABEL +msgid "Label" +msgstr "" + +#: STRUC_DEF_LEAST_FOLLOW +msgid "At least the following" +msgstr "" + +#: STRUC_DEF_LOGIC +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGICAL +msgid "Logical Model" +msgstr "" + +#: STRUC_DEF_LOGICAL_CONT +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGIC_NAME +msgid "The logical name of the element" +msgstr "" + +#: STRUC_DEF_LOINC +msgid "LOINC Code" +msgstr "" + +#: STRUC_DEF_LOINC_CODE +msgid "LOINC code" +msgstr "" + +#: STRUC_DEF_MATURITY +msgid "Maturity" +msgstr "" + +#: STRUC_DEF_MAX +msgid "Maximum" +msgstr "" + +#: STRUC_DEF_MAX_LENGTH +msgid "Max Length:" +msgstr "" + +#: STRUC_DEF_MAX_MIN +msgid "Minimum and Maximum # of times the element can appear in the instance" +msgstr "" + +#: STRUC_DEF_MAX_VALUE +msgid "Max Value" +msgstr "" + +#: STRUC_DEF_MEAN_MISS +msgid "Meaning if Missing" +msgstr "" + +#: STRUC_DEF_MIN +msgid "Minimum" +msgstr "" + +#: STRUC_DEF_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: STRUC_DEF_MIN_VALUE +msgid "Min Value" +msgstr "" + +#: STRUC_DEF_MISSING_LINK +msgid "missing link" +msgstr "" + +#: STRUC_DEF_MOD +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MODIF +msgid "Modifier" +msgstr "" + +#: STRUC_DEF_MODIFIER +msgid "Is Modifier" +msgstr "" + +#: STRUC_DEF_MOD_ELEMENT +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT +msgid "Must Support" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT_TYPES +msgid "Must Support Types" +msgstr "" + +#: STRUC_DEF_NAME +msgid "Name" +msgstr "" + +#: STRUC_DEF_NAMESPACE +msgid "In the XML format, this property has the namespace" +msgstr "" + +#: STRUC_DEF_NOTE_C +msgid "Note" +msgstr "" + +#: STRUC_DEF_NOTE_X +msgid "[x] Note" +msgstr "" + +#: STRUC_DEF_NOT_MARK +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NOT_MARKED +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NO_DESCRIM +msgid ", and defines no disciminators to differentiate the slices" +msgstr "" + +#: STRUC_DEF_NO_MAPPINGS +msgid "No Mappings" +msgstr "" + +#: STRUC_DEF_NO_MUST_SUPPORT +msgid "No must-support rules about the choice of types/profiles" +msgstr "" + +#: STRUC_DEF_NO_SUMMARY +msgid "No Summary, as this profile has no differential" +msgstr "" + +#: STRUC_DEF_NULL_JSON +msgid "This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_OBLIG +msgid "This element has obligations" +msgstr "" + +#: STRUC_DEF_OBLIGATIONS +msgid "Obligations" +msgstr "" + +#: STRUC_DEF_OBLIG_ADD +msgid "This is an obligation profile that only contains obligations and additional bindings" +msgstr "" + +#: STRUC_DEF_OBLIG_ALL +msgid "Obligations that apply to all actors" +msgstr "" + +#: STRUC_DEF_OBLIG_FROM +msgid "This profile picks up obligations and additional bindings from" +msgstr "" + +#: STRUC_DEF_OBLIG_SUPP +msgid "This element has obligations and must be supported" +msgstr "" + +#: STRUC_DEF_ONE_OF +msgid "One of:" +msgstr "" + +#: STRUC_DEF_OPEN +msgid "Open" +msgstr "" + +#: STRUC_DEF_OPEN_END +msgid "Open At End" +msgstr "" + +#: STRUC_DEF_ORDERED +msgid "Ordered" +msgstr "" + +#: STRUC_DEF_PATH +msgid "Path" +msgstr "" + +#: STRUC_DEF_PATHS +msgid "Path(s)" +msgstr "" + +#: STRUC_DEF_PATT_VALUE +msgid "Pattern Value" +msgstr "" + +#: STRUC_DEF_PREF +msgid "Preferred" +msgstr "" + +#: STRUC_DEF_PREFERRED +msgid "preferred" +msgstr "" + +#: STRUC_DEF_PREFIXED +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREFIX_VALID +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREF_CONT +msgid "This is the value set that is preferred in a given context (documentation should explain why)" +msgstr "" + +#: STRUC_DEF_PRIMITIVE +msgid "Primitive Value" +msgstr "" + +#: STRUC_DEF_PRIM_ELE +msgid "This primitive element may be present, or absent, or replaced by an extension" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_PRESENT +msgid "This primitive type may be present, or absent if replaced by one of the following extensions:" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_VALUE +msgid "This primitive type must have a value (the value must be present, and cannot be replaced by an extension)" +msgstr "" + +#: STRUC_DEF_PROFILED +msgid "profiled by" +msgstr "" + +#: STRUC_DEF_PROFILE_BUILDS +msgid "This profile builds on" +msgstr "" + +#: STRUC_DEF_PROF_COMP +msgid "This profiles compiles with the profile" +msgstr "" + +#: STRUC_DEF_PROF_REQ +msgid "This profile also requires that the instance also conform this additional profile:" +msgstr "" + +#: STRUC_DEF_PROF_RES +msgid "A profiled resource" +msgstr "" + +#: STRUC_DEF_PROF_SUPP +msgid "This profile must be supported" +msgstr "" + +#: STRUC_DEF_PROPERTY +msgid "Property" +msgstr "" + +#: STRUC_DEF_REF +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_REFERS_EXT +msgid "This structure refers to these extensions" +msgstr "" + +#: STRUC_DEF_REFER_PROFILE +msgid "In this IG, the following structures refer to this profile:" +msgstr "" + +#: STRUC_DEF_REND_UNABLE_RES +msgid "Unable to resolve StructureDefinition {0} resolving content reference {1}" +msgstr "" + +#: STRUC_DEF_REPEAT +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REPEAT_ELE +msgid "This repeating element order: {0}" +msgstr "" + +#: STRUC_DEF_REP_CHOICE +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REQ +msgid "Required" +msgstr "" + +#: STRUC_DEF_REQUIRED +msgid "required" +msgstr "" + +#: STRUC_DEF_REQUIRED_PATT +msgid "Required Pattern:" +msgstr "" + +#: STRUC_DEF_REQUIREMENTS +msgid "Requirements" +msgstr "" + +#: STRUC_DEF_REQ_BIND +msgid "A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: STRUC_DEF_REQ_PATT +msgid "Required Pattern" +msgstr "" + +#: STRUC_DEF_ROOT +msgid "The root class that contains instances of this class" +msgstr "" + +#: STRUC_DEF_SEE +msgid "See" +msgstr "" + +#: STRUC_DEF_SET_ARE +msgid ". The slices are" +msgstr "" + +#: STRUC_DEF_SET_SLICES +msgid "This element introduces a set of slices on" +msgstr "" + +#: STRUC_DEF_SHALL_CODE +msgid "The codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SHORT +msgid "Short" +msgstr "" + +#: STRUC_DEF_SHOULD_CODE +msgid "The codes SHOULD be taken from" +msgstr "" + +#: STRUC_DEF_SINGLE_JSON_OBJECTS +msgid "JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key" +msgstr "" + +#: STRUC_DEF_SLIC +msgid "Slices" +msgstr "" + +#: STRUC_DEF_SLICE +msgid "Slice" +msgstr "" + +#: STRUC_DEF_SLICES +msgid "Slice:" +msgstr "" + +#: STRUC_DEF_SLICE_FOR +msgid "Slices for {0}" +msgstr "" + +#: STRUC_DEF_SLICE_NAME +msgid "Slice Name" +msgstr "" + +#: STRUC_DEF_SLICE_PAR +msgid "Slice {0}" +msgstr "" + +#: STRUC_DEF_SNOMED +msgid "SNOMED-CT Code" +msgstr "" + +#: STRUC_DEF_SNOMED_CODE +msgid "SNOMED CT code" +msgstr "" + +#: STRUC_DEF_SNOMED_CT +msgid "SNOMED CT" +msgstr "" + +#: STRUC_DEF_STAND_STAT +msgid "Standard Status" +msgstr "" + +#: STRUC_DEF_STAND_STATUS +msgid "Standards Status =" +msgstr "" + +#: STRUC_DEF_START +msgid "Starter" +msgstr "" + +#: STRUC_DEF_START_DEF +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: STRUC_DEF_STRING_FORM +msgid "String Format" +msgstr "" + +#: STRUC_DEF_STRUCTURES +msgid "Structures" +msgstr "" + +#: STRUC_DEF_SUIT_SHALL_CODE +msgid "Unless not suitable, these codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SUMM +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_SUMMARY +msgid "Summary" +msgstr "" + +#: STRUC_DEF_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_TARG_SUPP +msgid "This target must be supported" +msgstr "" + +#: STRUC_DEF_TEMPLATEID +msgid "Instance of this type are validated by templateId" +msgstr "" + +#: STRUC_DEF_TERM_BIND +msgid "Terminology Bindings (Differential)" +msgstr "" + +#: STRUC_DEF_TERM_BINDS +msgid "Terminology Bindings" +msgstr "" + +#: STRUC_DEF_THEN_TYPE +msgid "then the type is" +msgstr "" + +#: STRUC_DEF_THIS_REFERS +msgid "This structure refers to these other structures" +msgstr "" + +#: STRUC_DEF_TODO +msgid "todo" +msgstr "" + +#: STRUC_DEF_TYPE +msgid "Type" +msgstr "" + +#: STRUC_DEF_TYPE_BOUND +msgid "This type can be bound to a value set using the {0}" +msgstr "" + +#: STRUC_DEF_TYPE_SET +msgid "This type can be bound to a value set using the "" +msgstr "" + +#: STRUC_DEF_TYPE_SPEC +msgid "Type Specifier" +msgstr "" + +#: STRUC_DEF_TYPE_SUPP +msgid "This type must be supported" +msgstr "" + +#: STRUC_DEF_UCUM +msgid "UCUM" +msgstr "" + +#: STRUC_DEF_UI +msgid "UI" +msgstr "" + +#: STRUC_DEF_UI_CONT +msgid "This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context" +msgstr "" + +#: STRUC_DEF_UNADORNED +msgid "In the XML format, this property is represented as unadorned text." +msgstr "" + +#: STRUC_DEF_UNDEF_ACT +msgid "Obligations that apply to the undefined actor {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_APPROACH +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_REF +msgid "Unknown reference to {0}" +msgstr "" + +#: STRUC_DEF_UNORDERED +msgid "Unordered" +msgstr "" + +#: STRUC_DEF_UNSPECIFIED +msgid "Unspecified" +msgstr "" + +#: STRUC_DEF_URI +msgid "URI" +msgstr "" + +#: STRUC_DEF_URL +msgid "URL" +msgstr "" + +#: STRUC_DEF_URLS +msgid "URL:" +msgstr "" + +#: STRUC_DEF_VALID +msgid "Validation" +msgstr "" + +#: STRUC_DEF_VALID_UNKNOWN +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_VALUE +msgid "Value Set" +msgstr "" + +#: STRUC_DEF_VALUESET +msgid "ValueSet" +msgstr "" + +#: STRUC_DEF_VALUESET_CODE +msgid "ValueSet / Code" +msgstr "" + +#: STRUC_DEF_VALUE_ALT +msgid "Value Alternatives" +msgstr "" + +#: STRUC_DEF_VALUE_REQ +msgid "Value Required" +msgstr "" + +#: STRUC_DEF_WHAT +msgid "What goes here" +msgstr "" + +#: STRUC_DEF_XHTML +msgid "This property is represented as XHTML Text in the XML." +msgstr "" + +#: STRUC_DEF_XML +msgid "XML" +msgstr "" + +#: STRUC_DEF_XML_ACTUAL +msgid "In the XML format, this property has the actual name" +msgstr "" + +#: STRUC_DEF_XML_ATTRIBUTE +msgid "In the XML format, this property is represented as an attribute." +msgstr "" + +#: STRUC_DEF_XML_ELE +msgid "XML Element Name" +msgstr "" + +#: STRUC_DEF_XML_FORM +msgid "XML Format" +msgstr "" + +#: STRUC_DEF_XML_NAME +msgid "XML Namespace" +msgstr "" + +#: STRUC_DEF_XSI +msgid "The type of this property is determined using the "" +msgstr "" + +#: SUB_TOPIC_COMP +msgid "Comparators" +msgstr "" + +#: SUB_TOPIC_CREATE +msgid "* create result = {0}" +msgstr "" + +#: SUB_TOPIC_CRITERIA +msgid "Criteria" +msgstr "" + +#: SUB_TOPIC_DELETE +msgid "* delete result = {0}" +msgstr "" + +#: SUB_TOPIC_DESC +msgid "Description" +msgstr "" + +#: SUB_TOPIC_EVENT +msgid "Event" +msgstr "" + +#: SUB_TOPIC_FHIR_PATH +msgid "FHIR Path" +msgstr "" + +#: SUB_TOPIC_FILT_DEF +msgid "Filter Definition" +msgstr "" + +#: SUB_TOPIC_FILT_PAR +msgid "Filter Parameter" +msgstr "" + +#: SUB_TOPIC_INCL +msgid "Includes" +msgstr "" + +#: SUB_TOPIC_INT +msgid "Interactions" +msgstr "" + +#: SUB_TOPIC_MOD +msgid "Modifiers" +msgstr "" + +#: SUB_TOPIC_PREV +msgid "* previous = {0}" +msgstr "" + +#: SUB_TOPIC_REQ +msgid "* require both = {0}" +msgstr "" + +#: SUB_TOPIC_RES +msgid "Resource" +msgstr "" + +#: SUB_TOPIC_RES_TRIG +msgid "Resource Triggers" +msgstr "" + +#: SUB_TOPIC_REV_INCL +msgid "Reverse Includes" +msgstr "" + +#: TERMINOLOGY_LVL +msgid "Lvl" +msgstr "" + +#: TERMINOLOGY_SNOMED +msgid "SNOMED-CT" +msgstr "" + +#: TERM_REND_COPY +msgid "Copy {0} Format to clipboard" +msgstr "" + +#: TEST_PLAN_ASS +msgid "Assertion" +msgstr "" + +#: TEST_PLAN_ASSERTION +msgid "Assertion {0}" +msgstr "" + +#: TEST_PLAN_CASE +msgid "Test Case" +msgstr "" + +#: TEST_PLAN_CASE_SEQ +msgid "Test Case - Sequence {0}" +msgstr "" + +#: TEST_PLAN_CATEGORY +msgid "Category:" +msgstr "" + +#: TEST_PLAN_CONT +msgid "Contact:" +msgstr "" + +#: TEST_PLAN_CONTENT +msgid "Content" +msgstr "" + +#: TEST_PLAN_DATA +msgid "Test Data" +msgstr "" + +#: TEST_PLAN_DEP +msgid "Test Plant Dependency:" +msgstr "" + +#: TEST_PLAN_DEPEN +msgid "Test Plant Dependencies:" +msgstr "" + +#: TEST_PLAN_DESC +msgid "Dependency - no description" +msgstr "" + +#: TEST_PLAN_LANG +msgid "Language" +msgstr "" + +#: TEST_PLAN_RESULT +msgid "Result" +msgstr "" + +#: TEST_PLAN_RUN +msgid "Test Run" +msgstr "" + +#: TEST_PLAN_SCOPE +msgid "Test Plant Scope:" +msgstr "" + +#: TEST_PLAN_SCOPES +msgid "Test Plant Scopes:" +msgstr "" + +#: TEST_PLAN_SOURCE +msgid "Source[x]" +msgstr "" + +#: TEST_PLAN_TEST_DATA +msgid "Test Data {0}" +msgstr "" + +#: TEST_PLAN_TEST_RUN +msgid "Test Run {0}" +msgstr "" + +#: TEST_PLAN_TYPE +msgid "Type" +msgstr "" + +#: TEXT_ICON_CHOICE +msgid "Choice of Types" +msgstr "" + +#: TEXT_ICON_DATATYPE +msgid "Data Type" +msgstr "" + +#: TEXT_ICON_ELEMENT +msgid "Element" +msgstr "" + +#: TEXT_ICON_EXTENSION +msgid "Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_COMPLEX +msgid "Complex Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_SIMPLE +msgid "Simple Extension" +msgstr "" + +#: TEXT_ICON_FIXED +msgid "Fixed Value" +msgstr "" + +#: TEXT_ICON_KEY +msgid "JSON Key Value" +msgstr "" + +#: TEXT_ICON_OBJECT_BOX +msgid "Object" +msgstr "" + +#: TEXT_ICON_PRIMITIVE +msgid "Primitive Data Type" +msgstr "" + +#: TEXT_ICON_PROFILE +msgid "Profile" +msgstr "" + +#: TEXT_ICON_REFERENCE +msgid "Reference to another Resource" +msgstr "" + +#: TEXT_ICON_RESOURCE +msgid "Resource" +msgstr "" + +#: TEXT_ICON_REUSE +msgid "Reference to another Element" +msgstr "" + +#: TEXT_ICON_SLICE +msgid "Slice Definition" +msgstr "" + +#: TEXT_ICON_SLICE_ITEM +msgid "Slice Item" +msgstr "" #: TX_CODE msgid "Code" @@ -576,3 +3930,316 @@ msgstr "" #: TX_VERSION msgid "Version" msgstr "" + +#: VALUE_SET_ADD_DESIG +msgid "Additional Designations and Language Displays" +msgstr "" + +#: VALUE_SET_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: VALUE_SET_ALL_CODE +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure:" +msgstr "" + +#: VALUE_SET_ALL_CODES_DEF +msgid "all codes defined in" +msgstr "" + +#: VALUE_SET_AND +msgid "and" +msgstr "" + +#: VALUE_SET_AT_LEAST +msgid "at least" +msgstr "" + +#: VALUE_SET_AUS +msgid "Australian" +msgstr "" + +#: VALUE_SET_CODE +msgid "Code" +msgstr "" + +#: VALUE_SET_CODES_FROM +msgid "codes from" +msgstr "" + +#: VALUE_SET_CODE_ITEM +msgid "The code for the item" +msgstr "" + +#: VALUE_SET_CODE_SELEC +msgid "This value set cannot be fully expanded, but a selection ( {0} codes) of the whole set of codes is shown here." +msgstr "" + +#: VALUE_SET_COMMA +msgid "," +msgstr "" + +#: VALUE_SET_CONT +msgid "Value Set Contents" +msgstr "" + +#: VALUE_SET_CONTAINS +msgid "This value set contains" +msgstr "" + +#: VALUE_SET_CONT_STRUC +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure:" +msgstr "" + +#: VALUE_SET_DANISH +msgid "Danish" +msgstr "" + +#: VALUE_SET_DEF +msgid "Definition" +msgstr "" + +#: VALUE_SET_DESCENDENTOF +msgid "descends from" +msgstr "" + +#: VALUE_SET_DESIG +msgid "Additional Designations" +msgstr "" + +#: VALUE_SET_DISPLAY +msgid "Display" +msgstr "" + +#: VALUE_SET_DISPLAY_ITEM +msgid "The display for the item" +msgstr "" + +#: VALUE_SET_DOESNT_EXIST +msgid "doesn't exist" +msgstr "" + +#: VALUE_SET_DUTCH +msgid "Dutch" +msgstr "" + +#: VALUE_SET_EQUAL +msgid "=" +msgstr "" + +#: VALUE_SET_ERROR +msgid "Error Expanding ValueSet: {0}" +msgstr "" + +#: VALUE_SET_EXC +msgid "exclude" +msgstr "" + +#: VALUE_SET_EXCL +msgid "Exclude" +msgstr "" + +#: VALUE_SET_EXCLUDED_FROM +msgid "Excluded from" +msgstr "" + +#: VALUE_SET_EXISTS +msgid "exists" +msgstr "" + +#: VALUE_SET_EXP +msgid "Expansion based on example code system" +msgstr "" + +#: VALUE_SET_EXPANSION +msgid "Expansion based on" +msgstr "" + +#: VALUE_SET_EXPANSIONS +msgid "Expansion based on:" +msgstr "" + +#: VALUE_SET_EXP_FRAG +msgid "Expansion based on code system fragment" +msgstr "" + +#: VALUE_SET_GENERALIZES +msgid "generalizes" +msgstr "" + +#: VALUE_SET_HAS +msgid "This value set has" +msgstr "" + +#: VALUE_SET_IMPORT +msgid "Import all the codes that are contained in the intersection of" +msgstr "" + +#: VALUE_SET_IN +msgid "in" +msgstr "" + +#: VALUE_SET_INACT +msgid "inactive" +msgstr "" + +#: VALUE_SET_INACTIVE +msgid "Inactive" +msgstr "" + +#: VALUE_SET_INC +msgid "Include" +msgstr "" + +#: VALUE_SET_INCLUDED_INTO +msgid "Included into" +msgstr "" + +#: VALUE_SET_INF +msgid "This value set cannot be expanded because of the way it is defined - it has an infinite number of members." +msgstr "" + +#: VALUE_SET_INT +msgid "International" +msgstr "" + +#: VALUE_SET_ISA +msgid "is-a" +msgstr "" + +#: VALUE_SET_ISNOTA +msgid "is-not-a" +msgstr "" + +#: VALUE_SET_LEVEL +msgid "Level" +msgstr "" + +#: VALUE_SET_LOINCV +msgid "Loinc v" +msgstr "" + +#: VALUE_SET_NOTE +msgid "Note: {0}" +msgstr "" + +#: VALUE_SET_NOTIN +msgid "not in" +msgstr "" + +#: VALUE_SET_NOT_DEF +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined" +msgstr "" + +#: VALUE_SET_NOT_FOUND +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure:" +msgstr "" + +#: VALUE_SET_NO_VER +msgid "(no version)" +msgstr "" + +#: VALUE_SET_NO_VERSION +msgid "(no version) (" +msgstr "" + +#: VALUE_SET_NULL +msgid "null" +msgstr "" + +#: VALUE_SET_NULLS +msgid "?ngen-13?" +msgstr "" + +#: VALUE_SET_NUMBER_CONCEPTS +msgid "This value set expansion contains {0} concepts." +msgstr "" + +#: VALUE_SET_OID +msgid "OID" +msgstr "" + +#: VALUE_SET_OID_TERM_SYS +msgid "for OID based terminology systems" +msgstr "" + +#: VALUE_SET_REGEX +msgid "matches (by regex)" +msgstr "" + +#: VALUE_SET_RULES_EXC +msgid "This value set excludes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_RULES_INC +msgid "This value set includes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_SEL +msgid "This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown" +msgstr "" + +#: VALUE_SET_SNOMED +msgid "SNOMED CT {0} edition" +msgstr "" + +#: VALUE_SET_SNOMED_ADD +msgid "SNOMED CT {0} edition {1}" +msgstr "" + +#: VALUE_SET_SPAN +msgid "Spanish" +msgstr "" + +#: VALUE_SET_SPEC_NAME +msgid "Fully specified name" +msgstr "" + +#: VALUE_SET_SWEDISH +msgid "Swedish" +msgstr "" + +#: VALUE_SET_SYNONYM +msgid "Synonym" +msgstr "" + +#: VALUE_SET_SYSTEM +msgid "System" +msgstr "" + +#: VALUE_SET_THESE_CODES_DEF +msgid "these codes as defined in" +msgstr "" + +#: VALUE_SET_TOO_COSTLY +msgid "This value set cannot be expanded because the terminology server(s) deemed it too costly to do so" +msgstr "" + +#: VALUE_SET_UK +msgid "United Kingdom" +msgstr "" + +#: VALUE_SET_US +msgid "United States" +msgstr "" + +#: VALUE_SET_USED_ELSEWHERE +msgid "This value set is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: VALUE_SET_VERSION +msgid "version" +msgstr "" + +#: VALUE_SET_WHERE +msgid "where" +msgstr "" + +#: VALUE_SET_WHERE_CODES +msgid ", where the codes are contained in" +msgstr "" + +#: VS_ABSTRACT_CODE_HINT +msgid "This code is not selectable ('Abstract')" +msgstr "" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-es.po b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-es.po index 22ca8d410..0277c9643 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-es.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-es.po @@ -1,5 +1,147 @@ -// en -> es -Plural-Forms: nplurals=2; plural=n != 1; + +#: ACTOR_DEF_ACT +msgid "Actor: {0}" +msgstr "" + +#: ACTOR_DEF_CAP +msgid "Capabilities:" +msgstr "" + +#: ACTOR_DEF_DER +msgid "Derived from:" +msgstr "" + +#: ACTOR_DEF_REF +msgid "References:" +msgstr "" + +#: ACTOR_DEF_TYP +msgid "Type: {0}" +msgstr "" + +#: ADD_BIND_ADD_BIND +msgid "Additional Bindings" +msgstr "" + +#: ADD_BIND_ALL_REP +msgid "All repeats" +msgstr "" + +#: ADD_BIND_ANY +msgid "Any" +msgstr "" + +#: ADD_BIND_ANY_REP +msgid "any repeat" +msgstr "" + +#: ADD_BIND_ANY_REPS +msgid "Any repeats" +msgstr "" + +#: ADD_BIND_COMPONENT +msgid "Component" +msgstr "" + +#: ADD_BIND_CURR_BIND +msgid "Current Binding" +msgstr "" + +#: ADD_BIND_DESIG_SYS +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: ADD_BIND_DOC +msgid "Documentation" +msgstr "" + +#: ADD_BIND_EXT_PREF +msgid "A required binding, for use when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: ADD_BIND_EX_BIND +msgid "Extensible Binding" +msgstr "" + +#: ADD_BIND_GIVEN_CONT +msgid "This value set is provided to user look up in a given context" +msgstr "" + +#: ADD_BIND_MAX +msgid "Max Binding" +msgstr "" + +#: ADD_BIND_MIN +msgid "Min Binding" +msgstr "" + +#: ADD_BIND_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: ADD_BIND_NEW_REC +msgid "New records are required to use this value set, but legacy records may use other codes" +msgstr "" + +#: ADD_BIND_PREFERRED +msgid "Preferred" +msgstr "" + +#: ADD_BIND_PREF_BIND +msgid "Preferred Binding" +msgstr "" + +#: ADD_BIND_PUR +msgid "Purpose" +msgstr "" + +#: ADD_BIND_RECOM_VALUE_SET +msgid "This is the value set that is recommended (documentation should explain why)" +msgstr "" + +#: ADD_BIND_REQUIRED +msgid "Required" +msgstr "" + +#: ADD_BIND_REQ_BIND +msgid "Required Binding" +msgstr "" + +#: ADD_BIND_STARTER +msgid "Starter" +msgstr "" + +#: ADD_BIND_UI +msgid "UI" +msgstr "" + +#: ADD_BIND_UI_BIND +msgid "UI Binding" +msgstr "" + +#: ADD_BIND_UNKNOWN_PUR +msgid "Unknown code for purpose" +msgstr "" + +#: ADD_BIND_USE +msgid "Usage" +msgstr "" + +#: ADD_BIND_VALID_EXT +msgid "Validators will check this binding (strength = extensible)" +msgstr "" + +#: ADD_BIND_VALID_REQ +msgid "Validators will check this binding (strength = required)" +msgstr "" + +#: ADD_BIND_VALUE_COMP +msgid "This value set is a component of the base value set" +msgstr "" + +#: BIND_REND_NO_CONTENT +msgid "No Content Type" +msgstr "" #: BUNDLE_DOCUMENT_CONTENT msgid "Additional Document Content" @@ -69,6 +211,14 @@ msgstr "Rec}:" msgid "Response:" msgstr "" +#: BUNDLE_REV_EXCP +msgid "Exception generating narrative: {0}" +msgstr "" + +#: BUNDLE_REV_INV_DOC +msgid "Invalid document - first entry is not a Composition" +msgstr "" + #: BUNDLE_SEARCH msgid "Search:" msgstr "Búsqueda:" @@ -81,6 +231,334 @@ msgstr "" msgid "Score = {0}" msgstr "" +#: BUND_REND_GEN_NARR +msgid "generating narrative" +msgstr "" + +#: BUND_REND_INVALID_DOC +msgid "Invalid document ''{0}'' - first entry is not a Composition ({0})" +msgstr "" + +#: BUND_REND_RES +msgid "resource" +msgstr "" + +#: CANON_REND_COMMITTEE +msgid "Committee" +msgstr "" + +#: CANON_REND_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: CANON_REND_DEFINITION +msgid "Definition" +msgstr "" + +#: CANON_REND_JSON +msgid "JSON" +msgstr "" + +#: CANON_REND_MATURITY +msgid "Maturity" +msgstr "" + +#: CANON_REND_NAME +msgid "Name" +msgstr "" + +#: CANON_REND_PUBLISHER +msgid "Publisher" +msgstr "" + +#: CANON_REND_SOURCE_RES +msgid "Source Resource" +msgstr "" + +#: CANON_REND_STATUS +msgid "Status" +msgstr "" + +#: CANON_REND_TITLE +msgid "Title" +msgstr "" + +#: CANON_REND_TURTLE +msgid "Turtle" +msgstr "" + +#: CANON_REND_URL +msgid "Defining URL" +msgstr "" + +#: CANON_REND_VER +msgid "Version" +msgstr "" + +#: CANON_REND_XML +msgid "XML" +msgstr "" + +#: CAPABILITY_ADD_SUPP_PROF +msgid "Additional supported profiles:" +msgstr "" + +#: CAPABILITY_BASE_SYS +msgid "Base System Profile" +msgstr "" + +#: CAPABILITY_COMB_SEARCH_PAR +msgid "Combined Search Parameters" +msgstr "" + +#: CAPABILITY_CONF +msgid "Conformance" +msgstr "" + +#: CAPABILITY_CORS_NO +msgid "Enable CORS: no" +msgstr "" + +#: CAPABILITY_CORS_YES +msgid "Enable CORS: yes" +msgstr "" + +#: CAPABILITY_CREATE_INT +msgid "POST a new resource (create interaction)" +msgstr "" + +#: CAPABILITY_CRIT +msgid "Criteria" +msgstr "" + +#: CAPABILITY_DELETE_INT +msgid "DELETE a resource (delete interaction)" +msgstr "" + +#: CAPABILITY_DOC +msgid "Documentation" +msgstr "" + +#: CAPABILITY_EXT_OP +msgid "Extended Operations" +msgstr "" + +#: CAPABILITY_FHIR +msgid "Core FHIR Resource" +msgstr "" + +#: CAPABILITY_FHIR_VER +msgid "FHIR Version: {0}" +msgstr "" + +#: CAPABILITY_HISTORY_INT +msgid "GET changes to a resource (history interaction on instance)" +msgstr "" + +#: CAPABILITY_HISTORY_TYPE +msgid "GET changes for all resources of the type (history interaction on type)" +msgstr "" + +#: CAPABILITY_IMP_VER +msgid "Implementation Guide Version: {0}" +msgstr "" + +#: CAPABILITY_INT +msgid "interaction." +msgstr "" + +#: CAPABILITY_INTER_SUPP +msgid "The interactions supported by each resource (" +msgstr "" + +#: CAPABILITY_INT_DESC +msgid "interaction described as follows:" +msgstr "" + +#: CAPABILITY_INT_SUMM +msgid "Interaction summary" +msgstr "" + +#: CAPABILITY_NOTE_CAP +msgid "Note to Implementers: FHIR Capabilities" +msgstr "" + +#: CAPABILITY_OP +msgid "Operations" +msgstr "" + +#: CAPABILITY_OPER +msgid "Operation" +msgstr "" + +#: CAPABILITY_OTH_RES_ENB +msgid "The other resources enabled for" +msgstr "" + +#: CAPABILITY_PAR +msgid "Parameter" +msgstr "" + +#: CAPABILITY_PARS +msgid "Parameters" +msgstr "" + +#: CAPABILITY_PATCH_INT +msgid "PATCH a new resource version (patch interaction)" +msgstr "" + +#: CAPABILITY_PROF +msgid "Profile" +msgstr "" + +#: CAPABILITY_PROF_CONF +msgid "Profile Conformance" +msgstr "" + +#: CAPABILITY_PROF_MAP +msgid "Profile Mapping" +msgstr "" + +#: CAPABILITY_PUB_BY +msgid "Published by: {0}" +msgstr "" + +#: CAPABILITY_PUB_ON +msgid "Published on: {0}" +msgstr "" + +#: CAPABILITY_READ_INT +msgid "GET a resource (read interaction)" +msgstr "" + +#: CAPABILITY_REF_PROF +msgid "Reference Policy" +msgstr "" + +#: CAPABILITY_REQ_RECOM +msgid "Required and recommended search parameters" +msgstr "" + +#: CAPABILITY_REST_CAPS +msgid "FHIR RESTful Capabilities" +msgstr "" + +#: CAPABILITY_REST_CONFIG +msgid "REST Configuration: {0}" +msgstr "" + +#: CAPABILITY_RES_CONF +msgid "Resource Conformance: {0}" +msgstr "" + +#: CAPABILITY_RES_ENB +msgid "The linked resources enabled for" +msgstr "" + +#: CAPABILITY_RES_OPER +msgid "The operations on the resource (if any)" +msgstr "" + +#: CAPABILITY_RES_PRO +msgid "Capabilities by Resource/Profile" +msgstr "" + +#: CAPABILITY_RES_TYP +msgid "Resource Type" +msgstr "" + +#: CAPABILITY_REV_PROF +msgid "The relevant profiles (if any)" +msgstr "" + +#: CAPABILITY_SEARCHES +msgid "Searches" +msgstr "" + +#: CAPABILITY_SEARCH_INT +msgid "GET all set of resources of the type (search interaction)" +msgstr "" + +#: CAPABILITY_SEARCH_PAR +msgid "The required, recommended, and some optional search parameters (if any)." +msgstr "" + +#: CAPABILITY_SEARCH_PARS +msgid "Search Parameters" +msgstr "" + +#: CAPABILITY_SHOULD_SUPP +msgid "SHOULD Support the Following Implementation Guides" +msgstr "" + +#: CAPABILITY_SUMM +msgid "Summary" +msgstr "" + +#: CAPABILITY_SUMM_RES +msgid "The summary table lists the resources that are part of this configuration, and for each resource it lists:" +msgstr "" + +#: CAPABILITY_SUMM_SYS_INT +msgid "Summary of System-wide Interactions" +msgstr "" + +#: CAPABILITY_SUPP +msgid "support" +msgstr "" + +#: CAPABILITY_SUPPS +msgid "Supports" +msgstr "" + +#: CAPABILITY_SUPP_FORM +msgid "Supported Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PATCH_FORM +msgid "Supported Patch Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PROF +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_PROFS +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_THE +msgid "Supports the" +msgstr "" + +#: CAPABILITY_TYP +msgid "Type" +msgstr "" + +#: CAPABILITY_TYPS +msgid "Types" +msgstr "" + +#: CAPABILITY_TYP_PRES +msgid "ype are only present if at least one of the resources has support for them." +msgstr "" + +#: CAPABILITY_UPDATE_INT +msgid "PUT a new resource version (update interaction)" +msgstr "" + +#: CAPABILITY_VREAD_INT +msgid "GET past versions of resources (vread interaction)" +msgstr "" + +#: CAPABILTY_ALLOW_CAP +msgid "Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case." +msgstr "" + +#: CAPABILTY_SHALL_SUPP +msgid "SHALL Support the Following Implementation Guides" +msgstr "" + #: CODEPROP_CODE msgid "Code" msgstr "" @@ -161,6 +639,918 @@ msgstr "" msgid "URI" msgstr "" +#: CODE_SYS_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: CODE_SYS_CODE +msgid "Code" +msgstr "" + +#: CODE_SYS_CODE_NOT_HERE +msgid "This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: CODE_SYS_COMPLETE +msgid "All the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_CONTENT +msgid "Content" +msgstr "" + +#: CODE_SYS_COPY +msgid "Copy" +msgstr "" + +#: CODE_SYS_DISP +msgid "displays" +msgstr "" + +#: CODE_SYS_DISP_PROP +msgid "displays and properties" +msgstr "" + +#: CODE_SYS_EXAMPLE +msgid "A few representative concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_FEAT +msgid "features" +msgstr "" + +#: CODE_SYS_FOR_OID +msgid "for OID based terminology systems" +msgstr "" + +#: CODE_SYS_FRAGMENT +msgid "A subset of the code system concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_IN_A_HIERARCHY +msgid "in a {0} hierarchy" +msgstr "" + +#: CODE_SYS_NOTPRESENT +msgid "None of the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_OID +msgid "OID" +msgstr "" + +#: CODE_SYS_PROP +msgid "properties" +msgstr "" + +#: CODE_SYS_REPLACED_BY +msgid "(replaced by" +msgstr "" + +#: CODE_SYS_SUPPLEMENT +msgid "This code system resource is a supplement to" +msgstr "" + +#: CODE_SYS_THE_VALUE_SET +msgid "is the value set for all codes in this code system" +msgstr "" + +#: CODE_SYS_UNDEF_HIER +msgid "in an undefined heirarchy" +msgstr "" + +#: CODE_SYS_UNKN_MODE +msgid "Unknown CodeSystemContentMode mode" +msgstr "" + +#: CODE_SYS_VALUE_SET +msgid "Value Set" +msgstr "" + +#: CONC_MAP_CMNT +msgid "Comment" +msgstr "" + +#: CONC_MAP_CODE +msgid "Code" +msgstr "" + +#: CONC_MAP_CODES +msgid "Codes" +msgstr "" + +#: CONC_MAP_CODE_SYS_UNSPEC +msgid "unspecified code system" +msgstr "" + +#: CONC_MAP_FRM +msgid "from" +msgstr "" + +#: CONC_MAP_FROM +msgid "Mapping from" +msgstr "" + +#: CONC_MAP_GRP +msgid "Group {0}" +msgstr "" + +#: CONC_MAP_NOT_SPEC +msgid "(not specified)" +msgstr "" + +#: CONC_MAP_NO_PROD_USE +msgid "(not intended for production usage)." +msgstr "" + +#: CONC_MAP_PROP +msgid "Properties" +msgstr "" + +#: CONC_MAP_PUB_ON +msgid "Published on {0}" +msgstr "" + +#: CONC_MAP_REL +msgid "Relationship" +msgstr "" + +#: CONC_MAP_SOURCE +msgid "Source Code" +msgstr "" + +#: CONC_MAP_SRC_DET +msgid "Source Concept Details" +msgstr "" + +#: CONC_MAP_TO +msgid "to" +msgstr "" + +#: CONC_MAP_TRGT +msgid "Target Code" +msgstr "" + +#: CONC_MAP_TRGT_DET +msgid "Target Concept Details" +msgstr "" + +#: DATA_REND_AFTRBKFST +msgid "after breakfast" +msgstr "" + +#: DATA_REND_AFTRDINR +msgid "after dinner" +msgstr "" + +#: DATA_REND_AFTRLUNCH +msgid "after lunch" +msgstr "" + +#: DATA_REND_AFTRMEALS +msgid "after meals" +msgstr "" + +#: DATA_REND_AFTRWKNG +msgid "after waking" +msgstr "" + +#: DATA_REND_ATBKFST +msgid "at breakfast" +msgstr "" + +#: DATA_REND_ATDINR +msgid "at dinner" +msgstr "" + +#: DATA_REND_ATLUNCH +msgid "at lunch" +msgstr "" + +#: DATA_REND_BASE64 +msgid "(base64 data - {0} bytes)" +msgstr "" + +#: DATA_REND_BFBKFST +msgid "before breakfast" +msgstr "" + +#: DATA_REND_BFDINR +msgid "before dinner" +msgstr "" + +#: DATA_REND_BFLUNCH +msgid "before lunch" +msgstr "" + +#: DATA_REND_BFMEALS +msgid "before meals" +msgstr "" + +#: DATA_REND_BFSLEEP +msgid "before sleeping" +msgstr "" + +#: DATA_REND_BY +msgid "By" +msgstr "" + +#: DATA_REND_CODE +msgid "Code" +msgstr "" + +#: DATA_REND_CODES +msgid "Codes:" +msgstr "" + +#: DATA_REND_COND +msgid "Condition" +msgstr "" + +#: DATA_REND_COUNT +msgid "Count {0}" +msgstr "" + +#: DATA_REND_DATA +msgid "Data: {0}" +msgstr "" + +#: DATA_REND_DETAILS +msgid "(Details: {0} code" +msgstr "" + +#: DATA_REND_DETAILS_STATED +msgid "(Details: {0} code {1} {2} {3} ', stated as ' {4} {5}" +msgstr "" + +#: DATA_REND_DICOM +msgid "DICOM" +msgstr "" + +#: DATA_REND_DIM +msgid "Dimensions: {0}" +msgstr "" + +#: DATA_REND_DURATION +msgid "Duration {0}" +msgstr "" + +#: DATA_REND_ERROR +msgid "Error: {0}" +msgstr "" + +#: DATA_REND_EVENTS +msgid "Events: {0}" +msgstr "" + +#: DATA_REND_EXCEPTION +msgid "Exception" +msgstr "" + +#: DATA_REND_FACT +msgid "Factor: {0}" +msgstr "" + +#: DATA_REND_FAX +msgid "Fax: {0}" +msgstr "" + +#: DATA_REND_FILT +msgid "Filter" +msgstr "" + +#: DATA_REND_GETCODE +msgid "Code: {0}" +msgstr "" + +#: DATA_REND_GLN +msgid "Global Location Number" +msgstr "" + +#: DATA_REND_ICD +msgid "ICD-9" +msgstr "" + +#: DATA_REND_INT +msgid "Interval: {0}" +msgstr "" + +#: DATA_REND_LIMIT +msgid "Limit" +msgstr "" + +#: DATA_REND_LOINC +msgid "LOINC" +msgstr "" + +#: DATA_REND_LOWER +msgid "Lower: {0}" +msgstr "" + +#: DATA_REND_MEALS +msgid "at meals" +msgstr "" + +#: DATA_REND_MKDWN_LNK +msgid "Unable to resolve markdown link" +msgstr "" + +#: DATA_REND_NAME +msgid "Name" +msgstr "" + +#: DATA_REND_NOT_STAT +msgid "[not stated]" +msgstr "" + +#: DATA_REND_NO_DISP +msgid "No display for {0}" +msgstr "" + +#: DATA_REND_ONCE +msgid "Once" +msgstr "" + +#: DATA_REND_ONGOING +msgid "(ongoing)" +msgstr "" + +#: DATA_REND_ORIGIN +msgid "Origin: {0}" +msgstr "" + +#: DATA_REND_PER +msgid "per" +msgstr "" + +#: DATA_REND_PERIOD +msgid "period:" +msgstr "" + +#: DATA_REND_PHONE +msgid "Phone: {0}" +msgstr "" + +#: DATA_REND_RXNORM +msgid "RxNorm" +msgstr "" + +#: DATA_REND_SEARCH +msgid "Search on: {0}" +msgstr "" + +#: DATA_REND_SNOMED +msgid "SNOMED CT" +msgstr "" + +#: DATA_REND_SORT +msgid "Sort" +msgstr "" + +#: DATA_REND_SOURCE +msgid "source" +msgstr "" + +#: DATA_REND_STARTING +msgid "Starting {0}" +msgstr "" + +#: DATA_REND_SUB +msgid "Subject" +msgstr "" + +#: DATA_REND_THESE_CODES +msgid "One of these codes:" +msgstr "" + +#: DATA_REND_TIMING +msgid "Timing" +msgstr "" + +#: DATA_REND_TO_DO +msgid "to do: {0}" +msgstr "" + +#: DATA_REND_TYPE +msgid "Type" +msgstr "" + +#: DATA_REND_UCUM +msgid "UCUM" +msgstr "" + +#: DATA_REND_UNKNWN +msgid "unknown" +msgstr "" + +#: DATA_REND_UNRD_EX +msgid "WARNING: Unrenderable Modifier Extension!" +msgstr "" + +#: DATA_REND_UNTIL +msgid "Until {0}" +msgstr "" + +#: DATA_REND_UP +msgid "Upper: {0}" +msgstr "" + +#: DATA_REND_USE +msgid "use:" +msgstr "" + +#: DATA_REND_VALUE +msgid "Value" +msgstr "" + +#: DATA_REND_VALUESET +msgid "In ValueSet" +msgstr "" + +#: DATA_REND_VERSION +msgid "(version = {0} {1}" +msgstr "" + +#: DIAG_REP_REND_AGE +msgid "Age" +msgstr "" + +#: DIAG_REP_REND_CODE +msgid "Code" +msgstr "" + +#: DIAG_REP_REND_CODECON +msgid "Coded Conclusions :" +msgstr "" + +#: DIAG_REP_REND_ERR +msgid "Error:" +msgstr "" + +#: DIAG_REP_REND_FLAG +msgid "Flags" +msgstr "" + +#: DIAG_REP_REND_FOR +msgid "for" +msgstr "" + +#: DIAG_REP_REND_IDEN +msgid "Identifier: {0}" +msgstr "" + +#: DIAG_REP_REND_IDENTIFIER +msgid "Identifier" +msgstr "" + +#: DIAG_REP_REND_NOTDONE +msgid "Not done yet" +msgstr "" + +#: DIAG_REP_REND_NOTE +msgid "Note" +msgstr "" + +#: DIAG_REP_REND_NOTRES +msgid "This Observation could not be resolved" +msgstr "" + +#: DIAG_REP_REND_OBS +msgid "Observation" +msgstr "" + +#: DIAG_REP_REND_PER +msgid "Performer" +msgstr "" + +#: DIAG_REP_REND_REFRAN +msgid "Reference Range" +msgstr "" + +#: DIAG_REP_REND_REP +msgid "Reported" +msgstr "" + +#: DIAG_REP_REND_REPDET +msgid "Report Details" +msgstr "" + +#: DIAG_REP_REND_REQ +msgid "Request: {0}" +msgstr "" + +#: DIAG_REP_REND_REQUEST +msgid "Request" +msgstr "" + +#: DIAG_REP_REND_SUB +msgid "Subject" +msgstr "" + +#: DIAG_REP_REND_UNABLE +msgid "Unable to get Patient Details" +msgstr "" + +#: DIAG_REP_REND_VALUE +msgid "Value" +msgstr "" + +#: DIAG_REP_REND_WHEN +msgid "When For" +msgstr "" + +#: EXAMPLE_SCEN_STEP_SCEN +msgid "Step {0} - See scenario\n {1}" +msgstr "" + +#: EXAMPLE_SCEN_UNABLE_TO_FIND +msgid "Unable to find referenced version {0} within instance {1}" +msgstr "" + +#: EX_SCEN_ALT +msgid "Alternative {0}" +msgstr "" + +#: EX_SCEN_BEL +msgid "below" +msgstr "" + +#: EX_SCEN_CONT +msgid "Content" +msgstr "" + +#: EX_SCEN_CONTA +msgid "Contains:" +msgstr "" + +#: EX_SCEN_DESC +msgid "Description" +msgstr "" + +#: EX_SCEN_ERR_REN +msgid "Error rendering ExampleScenario {0}" +msgstr "" + +#: EX_SCEN_FVER +msgid "FHIR version" +msgstr "" + +#: EX_SCEN_IN +msgid "Initiator" +msgstr "" + +#: EX_SCEN_NAME +msgid "Name" +msgstr "" + +#: EX_SCEN_OTH +msgid "See other scenario" +msgstr "" + +#: EX_SCEN_POSTCON +msgid "Post-conditions:" +msgstr "" + +#: EX_SCEN_PRECON +msgid "Pre-conditions:" +msgstr "" + +#: EX_SCEN_PROC +msgid "Process: {0}" +msgstr "" + +#: EX_SCEN_REC +msgid "Receiver" +msgstr "" + +#: EX_SCEN_REQ +msgid "Request" +msgstr "" + +#: EX_SCEN_RES +msgid "Response" +msgstr "" + +#: EX_SCEN_SEE +msgid "See subprocess" +msgstr "" + +#: EX_SCEN_STEP +msgid "Step" +msgstr "" + +#: EX_SCEN_TIME +msgid "... time passes ...\n" +msgstr "" + +#: EX_SCEN_TYPE +msgid "Type" +msgstr "" + +#: EX_SCEN_UN +msgid "Unknown ExampleScenario Renderer Mode {0}" +msgstr "" + +#: EX_SCEN_UN_ACT +msgid "Unable to find referenced actor {0}" +msgstr "" + +#: EX_SCEN_UN_INST +msgid "Unable to find referenced instance {0}" +msgstr "" + +#: EX_SCEN_VER +msgid "version" +msgstr "" + +#: IMP_GUIDE_URL +msgid "The official URL for this implementation guide is:" +msgstr "" + +#: LIB_REND_ART +msgid "Related Artifacts" +msgstr "" + +#: LIB_REND_AUT +msgid "Author" +msgstr "" + +#: LIB_REND_CONT +msgid "Contents" +msgstr "" + +#: LIB_REND_ED +msgid "Editor" +msgstr "" + +#: LIB_REND_END +msgid "Endorser" +msgstr "" + +#: LIB_REND_NOCONT +msgid "No Content" +msgstr "" + +#: LIB_REND_PAR +msgid "Participants" +msgstr "" + +#: LIB_REND_PARA +msgid "Parameters" +msgstr "" + +#: LIB_REND_REQ +msgid "Data Requirements" +msgstr "" + +#: LIB_REND_REV +msgid "Reviewer" +msgstr "" + +#: LIB_REND_SHOW +msgid "Content not shown - (" +msgstr "" + +#: LIB_REND_SIZE +msgid ", size = {0}" +msgstr "" + +#: LIST_REND_CODE +msgid "Code: {0}" +msgstr "" + +#: LIST_REND_DAT +msgid "Date" +msgstr "" + +#: LIST_REND_DATE +msgid "Date: {0}" +msgstr "" + +#: LIST_REND_DEL +msgid "Deleted" +msgstr "" + +#: LIST_REND_ENC +msgid "Encounter:" +msgstr "" + +#: LIST_REND_FLAG +msgid "Flag" +msgstr "" + +#: LIST_REND_ITEM +msgid "Items" +msgstr "" + +#: LIST_REND_MODE +msgid "Mode: {0}" +msgstr "" + +#: LIST_REND_ORD +msgid "Order: {0}" +msgstr "" + +#: LIST_REND_SRC +msgid "Source:" +msgstr "" + +#: LIST_REND_STAT +msgid "Status: {0}" +msgstr "" + +#: LIST_REND_SUB +msgid "Subject:" +msgstr "" + +#: MAP_DEFAULT_COMMENT +msgid "This element was not defined prior to R5" +msgstr "" + +#: NAME_SYS_COM +msgid "Comment" +msgstr "" + +#: NAME_SYS_COPY +msgid "Copyright" +msgstr "" + +#: NAME_SYS_DEF +msgid "Definition" +msgstr "" + +#: NAME_SYS_FOROID +msgid "for OID based terminology systems" +msgstr "" + +#: NAME_SYS_IDEN +msgid "Identifiers" +msgstr "" + +#: NAME_SYS_NAME +msgid "Name" +msgstr "" + +#: NAME_SYS_OID +msgid "OID" +msgstr "" + +#: NAME_SYS_PER +msgid "Period" +msgstr "" + +#: NAME_SYS_PREF +msgid "Preferred" +msgstr "" + +#: NAME_SYS_PUB +msgid "Publisher" +msgstr "" + +#: NAME_SYS_STAT +msgid "Status" +msgstr "" + +#: NAME_SYS_SUM +msgid "Summary" +msgstr "" + +#: NAME_SYS_TITLE +msgid "Title" +msgstr "" + +#: NAME_SYS_TYPE +msgid "Type" +msgstr "" + +#: NAME_SYS_URL +msgid "Defining URL" +msgstr "" + +#: NAME_SYS_VALUE +msgid "Value" +msgstr "" + +#: NAME_SYS_VER +msgid "Version" +msgstr "" + +#: OBLIG_ACT +msgid "Actor" +msgstr "" + +#: OBLIG_DOC +msgid "Documentation" +msgstr "" + +#: OBLIG_ELE +msgid "Elements" +msgstr "" + +#: OBLIG_FILT +msgid "Filter" +msgstr "" + +#: OBLIG_OBLIG +msgid "Obligations" +msgstr "" + +#: OBLIG_USE +msgid "Usage" +msgstr "" + +#: OP_DEF_BIND +msgid "Binding" +msgstr "" + +#: OP_DEF_CARD +msgid "Cardinality" +msgstr "" + +#: OP_DEF_DOC +msgid "Documentation" +msgstr "" + +#: OP_DEF_INPAR +msgid "Input parameters Profile:" +msgstr "" + +#: OP_DEF_NAME +msgid "Name" +msgstr "" + +#: OP_DEF_OFFIC +msgid "The official URL for this operation definition is:" +msgstr "" + +#: OP_DEF_OUTPAR +msgid "Output parameters Profile:" +msgstr "" + +#: OP_DEF_PAR +msgid "Parameters" +msgstr "" + +#: OP_DEF_SCO +msgid "Scope" +msgstr "" + +#: OP_DEF_TYPE +msgid "Type" +msgstr "" + +#: OP_DEF_URL +msgid "URL: [base]/{0}" +msgstr "" + +#: OP_DEF_URLS +msgid "URL: [base]/${0}" +msgstr "" + +#: OP_DEF_USE +msgid "Use" +msgstr "" + +#: OP_OUT_CODE +msgid "Code" +msgstr "" + +#: OP_OUT_DET +msgid "Details" +msgstr "" + +#: OP_OUT_DIAG +msgid "Diagnostics" +msgstr "" + +#: OP_OUT_LOC +msgid "Location" +msgstr "" + +#: OP_OUT_NOT +msgid "Not done yet" +msgstr "" + +#: OP_OUT_OK +msgid "All OK" +msgstr "" + +#: OP_OUT_SEV +msgid "Severity" +msgstr "" + +#: OP_OUT_SRC +msgid "Source" +msgstr "" + +#: OP_OUT_TODO +msgid "todo" +msgstr "" + +#: PAR_REND_PAR +msgid "Parameters" +msgstr "" + #: PAT_ACTIVE msgid "Active:" msgstr "" @@ -186,7 +1576,7 @@ msgid "Ways to contact the Patient" msgstr "" #: PAT_CONTAINED -msgid "Contained Resource" +msgid "Contained Resources" msgid_plural "Contained Resources" msgstr[0] "" msgstr[1] "" @@ -212,8 +1602,15 @@ msgstr "" msgid "General Practitioner" msgstr "" +#: PAT_LANG +msgid "Languages:" +msgid_plural "Languages:" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: PAT_LANG_HINT -msgid "Language spoken" +msgid "Languages spoken" msgid_plural "Languages spoken" msgstr[0] "" msgstr[1] "" @@ -223,13 +1620,6 @@ msgstr[2] "" msgid "(preferred)" msgstr "" -#: PAT_LANG -msgid "Language:" -msgid_plural "Languages:" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: PAT_LINKS msgid "Links:" msgstr "" @@ -302,16 +1692,16 @@ msgstr "" msgid "Organization:" msgstr "" -#: PAT_OTHER_ID_HINT -msgid "Other Id (see the one above)" -msgid_plural "Other Ids (see the one above)" +#: PAT_OTHER_ID +msgid "Other Ids:" +msgid_plural "Other Ids:" msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: PAT_OTHER_ID -msgid "Other Id:" -msgid_plural "Other Ids:" +#: PAT_OTHER_ID_HINT +msgid "Other Ids (see the one above)" +msgid_plural "Other Ids (see the one above)" msgstr[0] "" msgstr[1] "" msgstr[2] "" @@ -328,10 +1718,606 @@ msgstr "" msgid "Relationships:" msgstr "" +#: PROF_DRIV_ERR_GEN_NARR +msgid "Error Generating Narrative for" +msgstr "" + +#: PROF_DRIV_EXCP +msgid "Exception Generating Narrative: {0}" +msgstr "" + +#: PROF_DRIV_FEXCP +msgid "Cannot find definition for {0}" +msgstr "" + +#: PROF_DRIV_GEN_NARR +msgid "Generated Narrative: {0} {1}" +msgstr "" + +#: PROV_ACT +msgid "Activity" +msgstr "" + +#: PROV_AGE +msgid "Agents" +msgstr "" + +#: PROV_BEHALF +msgid "On Behalf Of" +msgstr "" + +#: PROV_FOR +msgid "Provenance for {0}" +msgstr "" + +#: PROV_LOC +msgid "Location" +msgstr "" + +#: PROV_NOT +msgid "Not done yet" +msgstr "" + +#: PROV_OCC +msgid "Occurrence" +msgstr "" + +#: PROV_POL +msgid "Policy" +msgstr "" + +#: PROV_PROV +msgid "Provenance for" +msgstr "" + +#: PROV_PROVE +msgid "Provenance for:" +msgstr "" + +#: PROV_REC +msgid "Recorded" +msgstr "" + +#: PROV_ROLE +msgid "Role" +msgstr "" + +#: PROV_SUM +msgid "Summary" +msgstr "" + +#: PROV_TYPE +msgid "Type" +msgstr "" + +#: PROV_WHO +msgid "who" +msgstr "" + +#: QUEST_ADD_INFO +msgid "Additional information about the item" +msgstr "" + +#: QUEST_ALLOWED +msgid "Allowed Answers" +msgstr "" + +#: QUEST_ANSW +msgid "Answer options for {0}" +msgstr "" + +#: QUEST_ANSWER +msgid "Answer" +msgstr "" + +#: QUEST_ANSWERS +msgid "Answers" +msgstr "" + +#: QUEST_APP +msgid "Approval Date" +msgstr "" + +#: QUEST_ARE_TRUE +msgid "?? are true:" +msgstr "" + +#: QUEST_ATTRIBUTES +msgid "Other attributes of the item" +msgstr "" + +#: QUEST_CALC +msgid "Calculated Value" +msgstr "" + +#: QUEST_CAND +msgid "Candidates" +msgstr "" + +#: QUEST_CARD +msgid "Cardinality" +msgstr "" + +#: QUEST_CAT +msgid "Category: {0}" +msgstr "" + +#: QUEST_CODE +msgid "Code" +msgstr "" + +#: QUEST_CONT +msgid "Context" +msgstr "" + +#: QUEST_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: QUEST_DEF +msgid "Definition:" +msgstr "" + +#: QUEST_DEFINITION +msgid "Definition" +msgstr "" + +#: QUEST_DERIVED +msgid "Derived From" +msgstr "" + +#: QUEST_DESC +msgid "Description & Constraints" +msgstr "" + +#: QUEST_DESCRIPTION +msgid "Description" +msgstr "" + +#: QUEST_DISPLAY +msgid "Is optional to display" +msgstr "" + +#: QUEST_DISPLAY_CAT +msgid "Display Category" +msgstr "" + +#: QUEST_EFF_PERIOD +msgid "Effective Period" +msgstr "" + +#: QUEST_EN +msgid "Enable When" +msgstr "" + +#: QUEST_ENABLE +msgid "Enable When:" +msgstr "" + +#: QUEST_EXP +msgid "Expressions:" +msgstr "" + +#: QUEST_EXPER +msgid "Experimental" +msgstr "" + +#: QUEST_FLAG +msgid "Flags" +msgstr "" + +#: QUEST_GROUP +msgid "Group" +msgstr "" + +#: QUEST_HIDDEN +msgid "Is a hidden item" +msgstr "" + +#: QUEST_HIDDEN_ITEM +msgid "Hidden Item" +msgstr "" + +#: QUEST_ID +msgid "Link Id" +msgstr "" + +#: QUEST_INITIAL +msgid "Initial Value:" +msgstr "" + +#: QUEST_INITIALLY +msgid "(initially selected)" +msgstr "" + +#: QUEST_INITIAL_ANSWER +msgid "Initial Answer" +msgstr "" + +#: QUEST_INT +msgid "Initial Values" +msgstr "" + +#: QUEST_ITEM +msgid "Item" +msgstr "" + +#: QUEST_ITEM_CONT +msgid "Item Context" +msgstr "" + +#: QUEST_LINK +msgid "The linkID for the item" +msgstr "" + +#: QUEST_LINKED +msgid "Is linked to an observation" +msgstr "" + +#: QUEST_LINKID +msgid "LinkID" +msgstr "" + +#: QUEST_MAND +msgid "Mandatory" +msgstr "" + +#: QUEST_MAX +msgid "Max Length:" +msgstr "" + +#: QUEST_MAX_LENGTH +msgid "Max Length" +msgstr "" + +#: QUEST_NAME +msgid "Name" +msgstr "" + +#: QUEST_NLM +msgid "NLM Forms Library" +msgstr "" + +#: QUEST_NONE_SPEC +msgid "None specified" +msgstr "" + +#: QUEST_NOT_DONE +msgid "Not done yet" +msgstr "" + +#: QUEST_OBSERVATION +msgid "Observation Link Period" +msgstr "" + +#: QUEST_OPT +msgid "Options Sets" +msgstr "" + +#: QUEST_OPTIONS +msgid "Options:" +msgstr "" + +#: QUEST_ORIENTATION +msgid "Orientation: {0}" +msgstr "" + +#: QUEST_PREFIX +msgid "Prefix" +msgstr "" + +#: QUEST_PUB +msgid "Publication Date" +msgstr "" + +#: QUEST_PURPOSE +msgid "Purpose" +msgstr "" + +#: QUEST_QUEST +msgid "Questionnaire" +msgstr "" + +#: QUEST_QUESTION +msgid "Questionnaire:" +msgstr "" + +#: QUEST_QUESTIONNAIRE +msgid "Questionnaire {0}" +msgstr "" + +#: QUEST_READONLY +msgid "Is Read Only" +msgstr "" + +#: QUEST_READ_ONLY +msgid "Read Only" +msgstr "" + +#: QUEST_REP +msgid "Repeats" +msgstr "" + +#: QUEST_REQ +msgid "Required" +msgstr "" + +#: QUEST_RESP +msgid "QuestionnaireResponse" +msgstr "" + +#: QUEST_RESP_ROOT +msgid "QuestionnaireResponseRoot" +msgstr "" + +#: QUEST_REV_DATE +msgid "Last Review Date" +msgstr "" + +#: QUEST_ROOT +msgid "QuestionnaireRoot" +msgstr "" + +#: QUEST_STATUS +msgid "Status" +msgstr "" + +#: QUEST_STRUCT +msgid "Structure" +msgstr "" + +#: QUEST_SUB +msgid "Subject" +msgstr "" + +#: QUEST_SUBJECT +msgid "Can change the subject of the questionnaire" +msgstr "" + +#: QUEST_SUB_TYPE +msgid "Subject Type" +msgstr "" + +#: QUEST_TEXT +msgid "Text" +msgstr "" + +#: QUEST_TEXTFOR +msgid "Text for the item" +msgstr "" + +#: QUEST_TIMES +msgid "Minimum and Maximum # of times the item can appear in the instance" +msgstr "" + +#: QUEST_TITLE +msgid "Title" +msgstr "" + +#: QUEST_TODO +msgid "todo" +msgstr "" + +#: QUEST_TRUE +msgid "are true:" +msgstr "" + +#: QUEST_TRY +msgid "Try this questionnaire out:" +msgstr "" + +#: QUEST_TRY_QUEST +msgid "Try this QuestionnaireResponse out:" +msgstr "" + +#: QUEST_TYPE +msgid "Type" +msgstr "" + +#: QUEST_TYPE_ITEM +msgid "The type of the item" +msgstr "" + +#: QUEST_UNKNOWN_MODE +msgid "Unknown QuestionnaireResponse Renderer Mode" +msgstr "" + +#: QUEST_URL +msgid "URL" +msgstr "" + +#: QUEST_VALUE +msgid "Value Set:" +msgstr "" + +#: QUEST_VALUE_SET +msgid "Value Set" +msgstr "" + +#: QUEST_VERSION +msgid "Version" +msgstr "" + +#: REND_ADDED +msgid "Added:" +msgstr "" + +#: REND_CHANGED +msgid "Changed:" +msgstr "" + +#: REND_REMOVED +msgid "Removed:" +msgstr "" + +#: REND_ROW_CHANGED_SINCE +msgid "This row of content has been changed since {0}" +msgstr "" + +#: REND_ROW_CHANGED_SINCE_WAS +msgid "This row of content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_ROW_REMOVED_SINCE +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_ROW_SINCE +msgid "This row of content has been added since {0}" +msgstr "" + +#: REND_SINCE_ADDED +msgid "This content has been added since {0}" +msgstr "" + +#: REND_SINCE_CHANGED +msgid "This content has been changed since {0}" +msgstr "" + +#: REND_SINCE_CHANGED_WAS +msgid "This content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_SINCE_DELETED +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_STANDARDS +msgid "Standards Status = {0}" +msgstr "" + +#: REQ_ACTOR +msgid "These requirements apply to the actor" +msgstr "" + +#: REQ_DERIVE +msgid "These requirements derive from" +msgstr "" + +#: REQ_DERIVED +msgid "Derived From:" +msgstr "" + +#: REQ_FOLLOWING_ACTOR +msgid "These requirements apply to the following actors:" +msgstr "" + +#: REQ_FOLLOWING_REQ +msgid "These requirements are derived from the following requirements:" +msgstr "" + +#: REQ_LINKS +msgid "Links:" +msgstr "" + +#: REQ_REFERENCES +msgid "References:" +msgstr "" + +#: REQ_SATISFIED +msgid "Satisfied By:" +msgstr "" + +#: REQ_SOURCES +msgid "Source:" +msgstr "" + #: RESOURCE_COPYRIGHT msgid "Copyright Statement:" msgstr "" +#: RES_REND_ACT +msgid "Active" +msgstr "" + +#: RES_REND_COND_REF +msgid "Conditional Reference:" +msgstr "" + +#: RES_REND_DESC +msgid ". Description: (todo)" +msgstr "" + +#: RES_REND_DRAFT +msgid "draft" +msgstr "" + +#: RES_REND_ERROR +msgid "Error rendering: {0}" +msgstr "" + +#: RES_REND_EXP +msgid "Experimental" +msgstr "" + +#: RES_REND_GEN_SUM +msgid ". Generated Summary:" +msgstr "" + +#: RES_REND_INFO_SOURCE +msgid "Information Source:" +msgstr "" + +#: RES_REND_LANGUAGE +msgid "(Language" +msgstr "" + +#: RES_REND_PROF +msgid "Profile" +msgstr "" + +#: RES_REND_PROFILE +msgid "Profile" +msgstr "" + +#: RES_REND_RESOURCE +msgid "Resource" +msgstr "" + +#: RES_REND_RET +msgid "retired" +msgstr "" + +#: RES_REND_SECURITY +msgid "Security Label" +msgstr "" + +#: RES_REND_SECURITY_LABEL +msgid "Security Label" +msgstr "" + +#: RES_REND_SEE_ON_THIS_PAGE +msgid "See on this page:" +msgstr "" + +#: RES_REND_SPEC_RULES +msgid "Special rules apply:" +msgstr "" + +#: RES_REND_TAG +msgid "Tag" +msgstr "" + +#: RES_REND_TODO +msgid "todo" +msgstr "" + +#: RES_REND_UNKNOWN +msgid "Unknown" +msgstr "" + +#: RES_REND_UPDATED +msgid "Updated" +msgstr "" + +#: RES_REND_VER +msgid "(version" +msgstr "" + +#: RES_REND_VERSION +msgid "Version" +msgstr "" + #: SD_COMP_HEAD_CARD_L msgid "L Card." msgstr "" @@ -544,6 +2530,13 @@ msgstr "" msgid "This profile was published on {0} as a {1} by {2}" msgstr "" +#: SD_SUMMARY_SLICE +msgid "The element {0} is sliced based on the values of {1}" +msgid_plural "The element {0} is sliced based on the values of {1}" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: SD_SUMMARY_SLICES msgid "This structure defines the following {0}Slices{1}" msgstr "" @@ -552,12 +2545,1373 @@ msgstr "" msgid "There is a slice with no discriminator at {0}" msgstr "" -#: SD_SUMMARY_SLICE -msgid "The element {0} is sliced based on the value of {1}" -msgid_plural "The element {0} is sliced based on the values of {1}" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" +#: SEARCH_PAR_ALLOWED +msgid "Allowed:" +msgstr "" + +#: SEARCH_PAR_CHAIN +msgid "Chains" +msgstr "" + +#: SEARCH_PAR_COMP +msgid "Comparators" +msgstr "" + +#: SEARCH_PAR_EXP +msgid "Expression" +msgstr "" + +#: SEARCH_PAR_MOD +msgid "Modifiers" +msgstr "" + +#: SEARCH_PAR_MULTIPLES +msgid "Multiples" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_APPEAR +msgid "multipleAnd: The parameter may only appear once" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_REPEAT +msgid "multipleAnd: The parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_SERVER +msgid "multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_MULTIPLE +msgid "multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_ONE +msgid "multipleOr: The parameter may only have one value (no comma separators)" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_SERVER +msgid "multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_NONE +msgid "(none)" +msgstr "" + +#: SEARCH_PAR_PAR +msgid "Parameter" +msgstr "" + +#: SEARCH_PAR_PROC +msgid "Processing Mode" +msgstr "" + +#: SEARCH_PAR_REND_RES +msgid "Resource" +msgstr "" + +#: SEARCH_PAR_REND_TARGET +msgid "Target Resources" +msgstr "" + +#: SEARCH_PAR_RES +msgid "All Resources" +msgstr "" + +#: STRUC_DEF_ABSTRACT +msgid "This is an abstract" +msgstr "" + +#: STRUC_DEF_ACT +msgid "Obligations that apply to the actor {0}" +msgstr "" + +#: STRUC_DEF_AFFECT_CONSTRAINTS +msgid ""This element has or is affected by constraints (" +msgstr "" + +#: STRUC_DEF_ALLOWED +msgid "Allowed Units" +msgstr "" + +#: STRUC_DEF_ALL_ACTORS +msgid "All Actors" +msgstr "" + +#: STRUC_DEF_ALL_MAP_KEY +msgid "All Mappings are Empty" +msgstr "" + +#: STRUC_DEF_ALL_SLICES +msgid ":All Slices" +msgstr "" + +#: STRUC_DEF_ALL_TYPES +msgid "All Types" +msgstr "" + +#: STRUC_DEF_ALT_NAME +msgid "Alternate Names" +msgstr "" + +#: STRUC_DEF_AND +msgid "and" +msgstr "" + +#: STRUC_DEF_APPROP_CON +msgid "Concepts must come from this value set if appropriate concept is in this value set" +msgstr "" + +#: STRUC_DEF_AS_SHOWN +msgid "As shown" +msgstr "" + +#: STRUC_DEF_BECAUSE +msgid "because" +msgstr "" + +#: STRUC_DEF_BINDING +msgid "Binding" +msgstr "" + +#: STRUC_DEF_BINDINGS +msgid "Binding:" +msgstr "" + +#: STRUC_DEF_BINDING_STYLE +msgid "binding style" +msgstr "" + +#: STRUC_DEF_BIND_STYLE +msgid "Binding Style" +msgstr "" + +#: STRUC_DEF_BLACK +msgid "black" +msgstr "" + +#: STRUC_DEF_BUSINESS_ID +msgid "This is a business identifier, not a resource identifier (see" +msgstr "" + +#: STRUC_DEF_BUSINESS_VERID +msgid "This is a business version Id, not a resource version Id (see" +msgstr "" + +#: STRUC_DEF_CAND +msgid "Candidate" +msgstr "" + +#: STRUC_DEF_CAND_SUB +msgid "This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation" +msgstr "" + +#: STRUC_DEF_CANNOT_TARGET +msgid "Instances of this logical model cannot be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CANT_FIND +msgid "getElementByName: can't find {0} in {1} from {2}" +msgstr "" + +#: STRUC_DEF_CAN_TARGET +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CAP +msgid "CAP Code" +msgstr "" + +#: STRUC_DEF_CARD +msgid "Card." +msgstr "" + +#: STRUC_DEF_CDA +msgid "This property is represented as CDA Text in the XML." +msgstr "" + +#: STRUC_DEF_CHILD +msgid "Child" +msgstr "" + +#: STRUC_DEF_CHOICE +msgid "(Choice of one)" +msgstr "" + +#: STRUC_DEF_CHOICE_DATA_TYPE +msgid "Choice of Data Types" +msgstr "" + +#: STRUC_DEF_CHOICE_GRP +msgid "Choice Group" +msgstr "" + +#: STRUC_DEF_CHOICE_OF +msgid "Choice of:" +msgstr "" + +#: STRUC_DEF_CLOSED +msgid "Closed" +msgstr "" + +#: STRUC_DEF_COMMENT +msgid "Comments:" +msgstr "" + +#: STRUC_DEF_COMMENTS +msgid "Comments" +msgstr "" + +#: STRUC_DEF_COMP +msgid "Component" +msgstr "" + +#: STRUC_DEF_COMPLEX +msgid "Complex" +msgstr "" + +#: STRUC_DEF_COMPLEXBRACK +msgid "(complex)" +msgstr "" + +#: STRUC_DEF_COMP_DOC +msgid "This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set" +msgstr "" + +#: STRUC_DEF_COMP_EX +msgid "(Complex Extension)" +msgstr "" + +#: STRUC_DEF_COMP_PROF +msgid "Complies with Profile" +msgstr "" + +#: STRUC_DEF_CONC_SET +msgid "Concepts must come from this value set" +msgstr "" + +#: STRUC_DEF_CONFORMANCE +msgid "Conformance" +msgstr "" + +#: STRUC_DEF_CONSTRAINING +msgid "Slice Constraining" +msgstr "" + +#: STRUC_DEF_CONSTRAINTS +msgid "Constraints" +msgstr "" + +#: STRUC_DEF_CONTENT +msgid "Content" +msgstr "" + +#: STRUC_DEF_CONTROL +msgid "Control" +msgstr "" + +#: STRUC_DEF_CONT_RULE +msgid "Content/Rules for all slices" +msgstr "" + +#: STRUC_DEF_CONT_TYPE +msgid "Content/Rules for all Types" +msgstr "" + +#: STRUC_DEF_COPY_URL +msgid "Click to Copy URL" +msgstr "" + +#: STRUC_DEF_CURR +msgid "Current" +msgstr "" + +#: STRUC_DEF_CURR_RULE +msgid "New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this" +msgstr "" + +#: STRUC_DEF_DATE +msgid "Date Format: {0}" +msgstr "" + +#: STRUC_DEF_DATE_FORM +msgid "Date Format" +msgstr "" + +#: STRUC_DEF_DEF +msgid "Definition:" +msgstr "" + +#: STRUC_DEF_DEFAULT_TYPE +msgid "Default Type" +msgstr "" + +#: STRUC_DEF_DEFAULT_VALUE +msgid "Default Value" +msgstr "" + +#: STRUC_DEF_DEFINITION +msgid "Definition" +msgstr "" + +#: STRUC_DEF_DEF_CODES +msgid "Definitional Codes" +msgstr "" + +#: STRUC_DEF_DERIVED_PROFILE +msgid "In this IG, the following structures are derived from this profile:" +msgstr "" + +#: STRUC_DEF_DESC +msgid "Description" +msgstr "" + +#: STRUC_DEF_DESCRIM +msgid ", and can be differentiated using the following discriminators:" +msgstr "" + +#: STRUC_DEF_DESC_PROF +msgid "Description of the profile" +msgstr "" + +#: STRUC_DEF_DETAILS +msgid "Details" +msgstr "" + +#: STRUC_DEF_DISCUSSION +msgid "discussion" +msgstr "" + +#: STRUC_DEF_ELE +msgid "This primitive element must have a value" +msgstr "" + +#: STRUC_DEF_ELEMENT +msgid "element" +msgstr "" + +#: STRUC_DEF_ELEMENTS +msgid "Elements defined in Ancestors:" +msgstr "" + +#: STRUC_DEF_ELE_AFFECTED +msgid "This element has or is affected by constraints ( {0} {1}" +msgstr "" + +#: STRUC_DEF_ELE_INCLUDED +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_ELE_MUST_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_ELE_READ +msgid "When this element is read" +msgstr "" + +#: STRUC_DEF_ERROR +msgid "Unknown structure mode" +msgstr "" + +#: STRUC_DEF_ERR_DESC +msgid "Error describing concept- not done yet (no codings, no text)" +msgstr "" + +#: STRUC_DEF_EX +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXAM +msgid "example" +msgstr "" + +#: STRUC_DEF_EXAMPLE +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXT +msgid "Extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIBLE +msgid "extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIONS +msgid "Extensions" +msgstr "" + +#: STRUC_DEF_EXT_JSON +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_EXT_STYLE +msgid "Extension Style" +msgstr "" + +#: STRUC_DEF_EX_CODE +msgid "For example codes, see" +msgstr "" + +#: STRUC_DEF_EX_DESC +msgid "Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included." +msgstr "" + +#: STRUC_DEF_EX_TYPE +msgid "(Extension Type:" +msgstr "" + +#: STRUC_DEF_EX_URL +msgid "Extension URL = {0}" +msgstr "" + +#: STRUC_DEF_FHIR +msgid "Base FHIR {0}" +msgstr "" + +#: STRUC_DEF_FHIR_EXCEP +msgid "Unable to retrieve StructureDefinition with URL {0}" +msgstr "" + +#: STRUC_DEF_FII +msgid "Formal Invariant Identifier" +msgstr "" + +#: STRUC_DEF_FIXED +msgid "Fixed Value" +msgstr "" + +#: STRUC_DEF_FIXED_VALUE +msgid "Fixed Value:" +msgstr "" + +#: STRUC_DEF_FOR_CODE +msgid "For codes, see" +msgstr "" + +#: STRUC_DEF_FURTHER_INFO +msgid "for further information about how to use [x]" +msgstr "" + +#: STRUC_DEF_GRADE +msgid "Grade" +msgstr "" + +#: STRUC_DEF_ID +msgid "Id" +msgstr "" + +#: STRUC_DEF_ID_EXPECT +msgid "ID Expectation" +msgstr "" + +#: STRUC_DEF_ID_IS +msgid "Id may or not be present (this is the default for elements but not resources)" +msgstr "" + +#: STRUC_DEF_ID_MAY +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_ID_NOT_ALLOW +msgid "An id is not allowed in this context" +msgstr "" + +#: STRUC_DEF_ID_REQ +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_IF +msgid "If" +msgstr "" + +#: STRUC_DEF_IMPOSE_PROFILE +msgid "Impose Profile" +msgstr "" + +#: STRUC_DEF_INFERRED_JSON +msgid "The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_INVAR +msgid "Invariants" +msgstr "" + +#: STRUC_DEF_INVARIANT +msgid "This element is affected by the following invariants:" +msgstr "" + +#: STRUC_DEF_JSON_ARRAY +msgid "JSON: This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_CAN_NAME +msgid "This type can appear in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_CHILD +msgid "child" +msgstr "" + +#: STRUC_DEF_JSON_ELE +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_JSON_EXT +msgid "(in elements using named extensions)" +msgstr "" + +#: STRUC_DEF_JSON_FORM +msgid "JSON Format" +msgstr "" + +#: STRUC_DEF_JSON_IF +msgid "JSON: If" +msgstr "" + +#: STRUC_DEF_JSON_INFERRED +msgid "JSON: The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_JSON_IS +msgid "This element is present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY +msgid "This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY_PRESENT +msgid "The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NAME +msgid "JSON Property Name" +msgstr "" + +#: STRUC_DEF_JSON_NOT_PRESENT +msgid "The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NULL +msgid "JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_JSON_PRESENT +msgid "The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_PROPERTY_NAME +msgid "This property appears in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_SINGLE +msgid "This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the" +msgstr "" + +#: STRUC_DEF_JSON_TYPE +msgid "JSON Property Name for Type" +msgstr "" + +#: STRUC_DEF_LABEL +msgid "Label" +msgstr "" + +#: STRUC_DEF_LEAST_FOLLOW +msgid "At least the following" +msgstr "" + +#: STRUC_DEF_LOGIC +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGICAL +msgid "Logical Model" +msgstr "" + +#: STRUC_DEF_LOGICAL_CONT +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGIC_NAME +msgid "The logical name of the element" +msgstr "" + +#: STRUC_DEF_LOINC +msgid "LOINC Code" +msgstr "" + +#: STRUC_DEF_LOINC_CODE +msgid "LOINC code" +msgstr "" + +#: STRUC_DEF_MATURITY +msgid "Maturity" +msgstr "" + +#: STRUC_DEF_MAX +msgid "Maximum" +msgstr "" + +#: STRUC_DEF_MAX_LENGTH +msgid "Max Length:" +msgstr "" + +#: STRUC_DEF_MAX_MIN +msgid "Minimum and Maximum # of times the element can appear in the instance" +msgstr "" + +#: STRUC_DEF_MAX_VALUE +msgid "Max Value" +msgstr "" + +#: STRUC_DEF_MEAN_MISS +msgid "Meaning if Missing" +msgstr "" + +#: STRUC_DEF_MIN +msgid "Minimum" +msgstr "" + +#: STRUC_DEF_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: STRUC_DEF_MIN_VALUE +msgid "Min Value" +msgstr "" + +#: STRUC_DEF_MISSING_LINK +msgid "missing link" +msgstr "" + +#: STRUC_DEF_MOD +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MODIF +msgid "Modifier" +msgstr "" + +#: STRUC_DEF_MODIFIER +msgid "Is Modifier" +msgstr "" + +#: STRUC_DEF_MOD_ELEMENT +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT +msgid "Must Support" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT_TYPES +msgid "Must Support Types" +msgstr "" + +#: STRUC_DEF_NAME +msgid "Name" +msgstr "" + +#: STRUC_DEF_NAMESPACE +msgid "In the XML format, this property has the namespace" +msgstr "" + +#: STRUC_DEF_NOTE_C +msgid "Note" +msgstr "" + +#: STRUC_DEF_NOTE_X +msgid "[x] Note" +msgstr "" + +#: STRUC_DEF_NOT_MARK +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NOT_MARKED +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NO_DESCRIM +msgid ", and defines no disciminators to differentiate the slices" +msgstr "" + +#: STRUC_DEF_NO_MAPPINGS +msgid "No Mappings" +msgstr "" + +#: STRUC_DEF_NO_MUST_SUPPORT +msgid "No must-support rules about the choice of types/profiles" +msgstr "" + +#: STRUC_DEF_NO_SUMMARY +msgid "No Summary, as this profile has no differential" +msgstr "" + +#: STRUC_DEF_NULL_JSON +msgid "This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_OBLIG +msgid "This element has obligations" +msgstr "" + +#: STRUC_DEF_OBLIGATIONS +msgid "Obligations" +msgstr "" + +#: STRUC_DEF_OBLIG_ADD +msgid "This is an obligation profile that only contains obligations and additional bindings" +msgstr "" + +#: STRUC_DEF_OBLIG_ALL +msgid "Obligations that apply to all actors" +msgstr "" + +#: STRUC_DEF_OBLIG_FROM +msgid "This profile picks up obligations and additional bindings from" +msgstr "" + +#: STRUC_DEF_OBLIG_SUPP +msgid "This element has obligations and must be supported" +msgstr "" + +#: STRUC_DEF_ONE_OF +msgid "One of:" +msgstr "" + +#: STRUC_DEF_OPEN +msgid "Open" +msgstr "" + +#: STRUC_DEF_OPEN_END +msgid "Open At End" +msgstr "" + +#: STRUC_DEF_ORDERED +msgid "Ordered" +msgstr "" + +#: STRUC_DEF_PATH +msgid "Path" +msgstr "" + +#: STRUC_DEF_PATHS +msgid "Path(s)" +msgstr "" + +#: STRUC_DEF_PATT_VALUE +msgid "Pattern Value" +msgstr "" + +#: STRUC_DEF_PREF +msgid "Preferred" +msgstr "" + +#: STRUC_DEF_PREFERRED +msgid "preferred" +msgstr "" + +#: STRUC_DEF_PREFIXED +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREFIX_VALID +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREF_CONT +msgid "This is the value set that is preferred in a given context (documentation should explain why)" +msgstr "" + +#: STRUC_DEF_PRIMITIVE +msgid "Primitive Value" +msgstr "" + +#: STRUC_DEF_PRIM_ELE +msgid "This primitive element may be present, or absent, or replaced by an extension" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_PRESENT +msgid "This primitive type may be present, or absent if replaced by one of the following extensions:" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_VALUE +msgid "This primitive type must have a value (the value must be present, and cannot be replaced by an extension)" +msgstr "" + +#: STRUC_DEF_PROFILED +msgid "profiled by" +msgstr "" + +#: STRUC_DEF_PROFILE_BUILDS +msgid "This profile builds on" +msgstr "" + +#: STRUC_DEF_PROF_COMP +msgid "This profiles compiles with the profile" +msgstr "" + +#: STRUC_DEF_PROF_REQ +msgid "This profile also requires that the instance also conform this additional profile:" +msgstr "" + +#: STRUC_DEF_PROF_RES +msgid "A profiled resource" +msgstr "" + +#: STRUC_DEF_PROF_SUPP +msgid "This profile must be supported" +msgstr "" + +#: STRUC_DEF_PROPERTY +msgid "Property" +msgstr "" + +#: STRUC_DEF_REF +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_REFERS_EXT +msgid "This structure refers to these extensions" +msgstr "" + +#: STRUC_DEF_REFER_PROFILE +msgid "In this IG, the following structures refer to this profile:" +msgstr "" + +#: STRUC_DEF_REND_UNABLE_RES +msgid "Unable to resolve StructureDefinition {0} resolving content reference {1}" +msgstr "" + +#: STRUC_DEF_REPEAT +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REPEAT_ELE +msgid "This repeating element order: {0}" +msgstr "" + +#: STRUC_DEF_REP_CHOICE +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REQ +msgid "Required" +msgstr "" + +#: STRUC_DEF_REQUIRED +msgid "required" +msgstr "" + +#: STRUC_DEF_REQUIRED_PATT +msgid "Required Pattern:" +msgstr "" + +#: STRUC_DEF_REQUIREMENTS +msgid "Requirements" +msgstr "" + +#: STRUC_DEF_REQ_BIND +msgid "A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: STRUC_DEF_REQ_PATT +msgid "Required Pattern" +msgstr "" + +#: STRUC_DEF_ROOT +msgid "The root class that contains instances of this class" +msgstr "" + +#: STRUC_DEF_SEE +msgid "See" +msgstr "" + +#: STRUC_DEF_SET_ARE +msgid ". The slices are" +msgstr "" + +#: STRUC_DEF_SET_SLICES +msgid "This element introduces a set of slices on" +msgstr "" + +#: STRUC_DEF_SHALL_CODE +msgid "The codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SHORT +msgid "Short" +msgstr "" + +#: STRUC_DEF_SHOULD_CODE +msgid "The codes SHOULD be taken from" +msgstr "" + +#: STRUC_DEF_SINGLE_JSON_OBJECTS +msgid "JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key" +msgstr "" + +#: STRUC_DEF_SLIC +msgid "Slices" +msgstr "" + +#: STRUC_DEF_SLICE +msgid "Slice" +msgstr "" + +#: STRUC_DEF_SLICES +msgid "Slice:" +msgstr "" + +#: STRUC_DEF_SLICE_FOR +msgid "Slices for {0}" +msgstr "" + +#: STRUC_DEF_SLICE_NAME +msgid "Slice Name" +msgstr "" + +#: STRUC_DEF_SLICE_PAR +msgid "Slice {0}" +msgstr "" + +#: STRUC_DEF_SNOMED +msgid "SNOMED-CT Code" +msgstr "" + +#: STRUC_DEF_SNOMED_CODE +msgid "SNOMED CT code" +msgstr "" + +#: STRUC_DEF_SNOMED_CT +msgid "SNOMED CT" +msgstr "" + +#: STRUC_DEF_STAND_STAT +msgid "Standard Status" +msgstr "" + +#: STRUC_DEF_STAND_STATUS +msgid "Standards Status =" +msgstr "" + +#: STRUC_DEF_START +msgid "Starter" +msgstr "" + +#: STRUC_DEF_START_DEF +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: STRUC_DEF_STRING_FORM +msgid "String Format" +msgstr "" + +#: STRUC_DEF_STRUCTURES +msgid "Structures" +msgstr "" + +#: STRUC_DEF_SUIT_SHALL_CODE +msgid "Unless not suitable, these codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SUMM +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_SUMMARY +msgid "Summary" +msgstr "" + +#: STRUC_DEF_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_TARG_SUPP +msgid "This target must be supported" +msgstr "" + +#: STRUC_DEF_TEMPLATEID +msgid "Instance of this type are validated by templateId" +msgstr "" + +#: STRUC_DEF_TERM_BIND +msgid "Terminology Bindings (Differential)" +msgstr "" + +#: STRUC_DEF_TERM_BINDS +msgid "Terminology Bindings" +msgstr "" + +#: STRUC_DEF_THEN_TYPE +msgid "then the type is" +msgstr "" + +#: STRUC_DEF_THIS_REFERS +msgid "This structure refers to these other structures" +msgstr "" + +#: STRUC_DEF_TODO +msgid "todo" +msgstr "" + +#: STRUC_DEF_TYPE +msgid "Type" +msgstr "" + +#: STRUC_DEF_TYPE_BOUND +msgid "This type can be bound to a value set using the {0}" +msgstr "" + +#: STRUC_DEF_TYPE_SET +msgid "This type can be bound to a value set using the "" +msgstr "" + +#: STRUC_DEF_TYPE_SPEC +msgid "Type Specifier" +msgstr "" + +#: STRUC_DEF_TYPE_SUPP +msgid "This type must be supported" +msgstr "" + +#: STRUC_DEF_UCUM +msgid "UCUM" +msgstr "" + +#: STRUC_DEF_UI +msgid "UI" +msgstr "" + +#: STRUC_DEF_UI_CONT +msgid "This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context" +msgstr "" + +#: STRUC_DEF_UNADORNED +msgid "In the XML format, this property is represented as unadorned text." +msgstr "" + +#: STRUC_DEF_UNDEF_ACT +msgid "Obligations that apply to the undefined actor {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_APPROACH +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_REF +msgid "Unknown reference to {0}" +msgstr "" + +#: STRUC_DEF_UNORDERED +msgid "Unordered" +msgstr "" + +#: STRUC_DEF_UNSPECIFIED +msgid "Unspecified" +msgstr "" + +#: STRUC_DEF_URI +msgid "URI" +msgstr "" + +#: STRUC_DEF_URL +msgid "URL" +msgstr "" + +#: STRUC_DEF_URLS +msgid "URL:" +msgstr "" + +#: STRUC_DEF_VALID +msgid "Validation" +msgstr "" + +#: STRUC_DEF_VALID_UNKNOWN +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_VALUE +msgid "Value Set" +msgstr "" + +#: STRUC_DEF_VALUESET +msgid "ValueSet" +msgstr "" + +#: STRUC_DEF_VALUESET_CODE +msgid "ValueSet / Code" +msgstr "" + +#: STRUC_DEF_VALUE_ALT +msgid "Value Alternatives" +msgstr "" + +#: STRUC_DEF_VALUE_REQ +msgid "Value Required" +msgstr "" + +#: STRUC_DEF_WHAT +msgid "What goes here" +msgstr "" + +#: STRUC_DEF_XHTML +msgid "This property is represented as XHTML Text in the XML." +msgstr "" + +#: STRUC_DEF_XML +msgid "XML" +msgstr "" + +#: STRUC_DEF_XML_ACTUAL +msgid "In the XML format, this property has the actual name" +msgstr "" + +#: STRUC_DEF_XML_ATTRIBUTE +msgid "In the XML format, this property is represented as an attribute." +msgstr "" + +#: STRUC_DEF_XML_ELE +msgid "XML Element Name" +msgstr "" + +#: STRUC_DEF_XML_FORM +msgid "XML Format" +msgstr "" + +#: STRUC_DEF_XML_NAME +msgid "XML Namespace" +msgstr "" + +#: STRUC_DEF_XSI +msgid "The type of this property is determined using the "" +msgstr "" + +#: SUB_TOPIC_COMP +msgid "Comparators" +msgstr "" + +#: SUB_TOPIC_CREATE +msgid "* create result = {0}" +msgstr "" + +#: SUB_TOPIC_CRITERIA +msgid "Criteria" +msgstr "" + +#: SUB_TOPIC_DELETE +msgid "* delete result = {0}" +msgstr "" + +#: SUB_TOPIC_DESC +msgid "Description" +msgstr "" + +#: SUB_TOPIC_EVENT +msgid "Event" +msgstr "" + +#: SUB_TOPIC_FHIR_PATH +msgid "FHIR Path" +msgstr "" + +#: SUB_TOPIC_FILT_DEF +msgid "Filter Definition" +msgstr "" + +#: SUB_TOPIC_FILT_PAR +msgid "Filter Parameter" +msgstr "" + +#: SUB_TOPIC_INCL +msgid "Includes" +msgstr "" + +#: SUB_TOPIC_INT +msgid "Interactions" +msgstr "" + +#: SUB_TOPIC_MOD +msgid "Modifiers" +msgstr "" + +#: SUB_TOPIC_PREV +msgid "* previous = {0}" +msgstr "" + +#: SUB_TOPIC_REQ +msgid "* require both = {0}" +msgstr "" + +#: SUB_TOPIC_RES +msgid "Resource" +msgstr "" + +#: SUB_TOPIC_RES_TRIG +msgid "Resource Triggers" +msgstr "" + +#: SUB_TOPIC_REV_INCL +msgid "Reverse Includes" +msgstr "" + +#: TERMINOLOGY_LVL +msgid "Lvl" +msgstr "" + +#: TERMINOLOGY_SNOMED +msgid "SNOMED-CT" +msgstr "" + +#: TERM_REND_COPY +msgid "Copy {0} Format to clipboard" +msgstr "" + +#: TEST_PLAN_ASS +msgid "Assertion" +msgstr "" + +#: TEST_PLAN_ASSERTION +msgid "Assertion {0}" +msgstr "" + +#: TEST_PLAN_CASE +msgid "Test Case" +msgstr "" + +#: TEST_PLAN_CASE_SEQ +msgid "Test Case - Sequence {0}" +msgstr "" + +#: TEST_PLAN_CATEGORY +msgid "Category:" +msgstr "" + +#: TEST_PLAN_CONT +msgid "Contact:" +msgstr "" + +#: TEST_PLAN_CONTENT +msgid "Content" +msgstr "" + +#: TEST_PLAN_DATA +msgid "Test Data" +msgstr "" + +#: TEST_PLAN_DEP +msgid "Test Plant Dependency:" +msgstr "" + +#: TEST_PLAN_DEPEN +msgid "Test Plant Dependencies:" +msgstr "" + +#: TEST_PLAN_DESC +msgid "Dependency - no description" +msgstr "" + +#: TEST_PLAN_LANG +msgid "Language" +msgstr "" + +#: TEST_PLAN_RESULT +msgid "Result" +msgstr "" + +#: TEST_PLAN_RUN +msgid "Test Run" +msgstr "" + +#: TEST_PLAN_SCOPE +msgid "Test Plant Scope:" +msgstr "" + +#: TEST_PLAN_SCOPES +msgid "Test Plant Scopes:" +msgstr "" + +#: TEST_PLAN_SOURCE +msgid "Source[x]" +msgstr "" + +#: TEST_PLAN_TEST_DATA +msgid "Test Data {0}" +msgstr "" + +#: TEST_PLAN_TEST_RUN +msgid "Test Run {0}" +msgstr "" + +#: TEST_PLAN_TYPE +msgid "Type" +msgstr "" + +#: TEXT_ICON_CHOICE +msgid "Choice of Types" +msgstr "" + +#: TEXT_ICON_DATATYPE +msgid "Data Type" +msgstr "" + +#: TEXT_ICON_ELEMENT +msgid "Element" +msgstr "" + +#: TEXT_ICON_EXTENSION +msgid "Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_COMPLEX +msgid "Complex Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_SIMPLE +msgid "Simple Extension" +msgstr "" + +#: TEXT_ICON_FIXED +msgid "Fixed Value" +msgstr "" + +#: TEXT_ICON_KEY +msgid "JSON Key Value" +msgstr "" + +#: TEXT_ICON_OBJECT_BOX +msgid "Object" +msgstr "" + +#: TEXT_ICON_PRIMITIVE +msgid "Primitive Data Type" +msgstr "" + +#: TEXT_ICON_PROFILE +msgid "Profile" +msgstr "" + +#: TEXT_ICON_REFERENCE +msgid "Reference to another Resource" +msgstr "" + +#: TEXT_ICON_RESOURCE +msgid "Resource" +msgstr "" + +#: TEXT_ICON_REUSE +msgid "Reference to another Element" +msgstr "" + +#: TEXT_ICON_SLICE +msgid "Slice Definition" +msgstr "" + +#: TEXT_ICON_SLICE_ITEM +msgid "Slice Item" +msgstr "" #: TX_CODE msgid "Code" @@ -582,3 +3936,316 @@ msgstr "" #: TX_VERSION msgid "Version" msgstr "" + +#: VALUE_SET_ADD_DESIG +msgid "Additional Designations and Language Displays" +msgstr "" + +#: VALUE_SET_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: VALUE_SET_ALL_CODE +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure:" +msgstr "" + +#: VALUE_SET_ALL_CODES_DEF +msgid "all codes defined in" +msgstr "" + +#: VALUE_SET_AND +msgid "and" +msgstr "" + +#: VALUE_SET_AT_LEAST +msgid "at least" +msgstr "" + +#: VALUE_SET_AUS +msgid "Australian" +msgstr "" + +#: VALUE_SET_CODE +msgid "Code" +msgstr "" + +#: VALUE_SET_CODES_FROM +msgid "codes from" +msgstr "" + +#: VALUE_SET_CODE_ITEM +msgid "The code for the item" +msgstr "" + +#: VALUE_SET_CODE_SELEC +msgid "This value set cannot be fully expanded, but a selection ( {0} codes) of the whole set of codes is shown here." +msgstr "" + +#: VALUE_SET_COMMA +msgid "," +msgstr "" + +#: VALUE_SET_CONT +msgid "Value Set Contents" +msgstr "" + +#: VALUE_SET_CONTAINS +msgid "This value set contains" +msgstr "" + +#: VALUE_SET_CONT_STRUC +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure:" +msgstr "" + +#: VALUE_SET_DANISH +msgid "Danish" +msgstr "" + +#: VALUE_SET_DEF +msgid "Definition" +msgstr "" + +#: VALUE_SET_DESCENDENTOF +msgid "descends from" +msgstr "" + +#: VALUE_SET_DESIG +msgid "Additional Designations" +msgstr "" + +#: VALUE_SET_DISPLAY +msgid "Display" +msgstr "" + +#: VALUE_SET_DISPLAY_ITEM +msgid "The display for the item" +msgstr "" + +#: VALUE_SET_DOESNT_EXIST +msgid "doesn't exist" +msgstr "" + +#: VALUE_SET_DUTCH +msgid "Dutch" +msgstr "" + +#: VALUE_SET_EQUAL +msgid "=" +msgstr "" + +#: VALUE_SET_ERROR +msgid "Error Expanding ValueSet: {0}" +msgstr "" + +#: VALUE_SET_EXC +msgid "exclude" +msgstr "" + +#: VALUE_SET_EXCL +msgid "Exclude" +msgstr "" + +#: VALUE_SET_EXCLUDED_FROM +msgid "Excluded from" +msgstr "" + +#: VALUE_SET_EXISTS +msgid "exists" +msgstr "" + +#: VALUE_SET_EXP +msgid "Expansion based on example code system" +msgstr "" + +#: VALUE_SET_EXPANSION +msgid "Expansion based on" +msgstr "" + +#: VALUE_SET_EXPANSIONS +msgid "Expansion based on:" +msgstr "" + +#: VALUE_SET_EXP_FRAG +msgid "Expansion based on code system fragment" +msgstr "" + +#: VALUE_SET_GENERALIZES +msgid "generalizes" +msgstr "" + +#: VALUE_SET_HAS +msgid "This value set has" +msgstr "" + +#: VALUE_SET_IMPORT +msgid "Import all the codes that are contained in the intersection of" +msgstr "" + +#: VALUE_SET_IN +msgid "in" +msgstr "" + +#: VALUE_SET_INACT +msgid "inactive" +msgstr "" + +#: VALUE_SET_INACTIVE +msgid "Inactive" +msgstr "" + +#: VALUE_SET_INC +msgid "Include" +msgstr "" + +#: VALUE_SET_INCLUDED_INTO +msgid "Included into" +msgstr "" + +#: VALUE_SET_INF +msgid "This value set cannot be expanded because of the way it is defined - it has an infinite number of members." +msgstr "" + +#: VALUE_SET_INT +msgid "International" +msgstr "" + +#: VALUE_SET_ISA +msgid "is-a" +msgstr "" + +#: VALUE_SET_ISNOTA +msgid "is-not-a" +msgstr "" + +#: VALUE_SET_LEVEL +msgid "Level" +msgstr "" + +#: VALUE_SET_LOINCV +msgid "Loinc v" +msgstr "" + +#: VALUE_SET_NOTE +msgid "Note: {0}" +msgstr "" + +#: VALUE_SET_NOTIN +msgid "not in" +msgstr "" + +#: VALUE_SET_NOT_DEF +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined" +msgstr "" + +#: VALUE_SET_NOT_FOUND +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure:" +msgstr "" + +#: VALUE_SET_NO_VER +msgid "(no version)" +msgstr "" + +#: VALUE_SET_NO_VERSION +msgid "(no version) (" +msgstr "" + +#: VALUE_SET_NULL +msgid "null" +msgstr "" + +#: VALUE_SET_NULLS +msgid "?ngen-13?" +msgstr "" + +#: VALUE_SET_NUMBER_CONCEPTS +msgid "This value set expansion contains {0} concepts." +msgstr "" + +#: VALUE_SET_OID +msgid "OID" +msgstr "" + +#: VALUE_SET_OID_TERM_SYS +msgid "for OID based terminology systems" +msgstr "" + +#: VALUE_SET_REGEX +msgid "matches (by regex)" +msgstr "" + +#: VALUE_SET_RULES_EXC +msgid "This value set excludes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_RULES_INC +msgid "This value set includes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_SEL +msgid "This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown" +msgstr "" + +#: VALUE_SET_SNOMED +msgid "SNOMED CT {0} edition" +msgstr "" + +#: VALUE_SET_SNOMED_ADD +msgid "SNOMED CT {0} edition {1}" +msgstr "" + +#: VALUE_SET_SPAN +msgid "Spanish" +msgstr "" + +#: VALUE_SET_SPEC_NAME +msgid "Fully specified name" +msgstr "" + +#: VALUE_SET_SWEDISH +msgid "Swedish" +msgstr "" + +#: VALUE_SET_SYNONYM +msgid "Synonym" +msgstr "" + +#: VALUE_SET_SYSTEM +msgid "System" +msgstr "" + +#: VALUE_SET_THESE_CODES_DEF +msgid "these codes as defined in" +msgstr "" + +#: VALUE_SET_TOO_COSTLY +msgid "This value set cannot be expanded because the terminology server(s) deemed it too costly to do so" +msgstr "" + +#: VALUE_SET_UK +msgid "United Kingdom" +msgstr "" + +#: VALUE_SET_US +msgid "United States" +msgstr "" + +#: VALUE_SET_USED_ELSEWHERE +msgid "This value set is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: VALUE_SET_VERSION +msgid "version" +msgstr "" + +#: VALUE_SET_WHERE +msgid "where" +msgstr "" + +#: VALUE_SET_WHERE_CODES +msgid ", where the codes are contained in" +msgstr "" + +#: VS_ABSTRACT_CODE_HINT +msgid "This code is not selectable ('Abstract')" +msgstr "" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-ja.po b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-ja.po index 7f481c1df..dd140831a 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-ja.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-ja.po @@ -1,5 +1,147 @@ -// en -> ja -Plural-Forms: nplurals=1; plural=0; + +#: ACTOR_DEF_ACT +msgid "Actor: {0}" +msgstr "" + +#: ACTOR_DEF_CAP +msgid "Capabilities:" +msgstr "" + +#: ACTOR_DEF_DER +msgid "Derived from:" +msgstr "" + +#: ACTOR_DEF_REF +msgid "References:" +msgstr "" + +#: ACTOR_DEF_TYP +msgid "Type: {0}" +msgstr "" + +#: ADD_BIND_ADD_BIND +msgid "Additional Bindings" +msgstr "" + +#: ADD_BIND_ALL_REP +msgid "All repeats" +msgstr "" + +#: ADD_BIND_ANY +msgid "Any" +msgstr "" + +#: ADD_BIND_ANY_REP +msgid "any repeat" +msgstr "" + +#: ADD_BIND_ANY_REPS +msgid "Any repeats" +msgstr "" + +#: ADD_BIND_COMPONENT +msgid "Component" +msgstr "" + +#: ADD_BIND_CURR_BIND +msgid "Current Binding" +msgstr "" + +#: ADD_BIND_DESIG_SYS +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: ADD_BIND_DOC +msgid "Documentation" +msgstr "" + +#: ADD_BIND_EXT_PREF +msgid "A required binding, for use when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: ADD_BIND_EX_BIND +msgid "Extensible Binding" +msgstr "" + +#: ADD_BIND_GIVEN_CONT +msgid "This value set is provided to user look up in a given context" +msgstr "" + +#: ADD_BIND_MAX +msgid "Max Binding" +msgstr "" + +#: ADD_BIND_MIN +msgid "Min Binding" +msgstr "" + +#: ADD_BIND_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: ADD_BIND_NEW_REC +msgid "New records are required to use this value set, but legacy records may use other codes" +msgstr "" + +#: ADD_BIND_PREFERRED +msgid "Preferred" +msgstr "" + +#: ADD_BIND_PREF_BIND +msgid "Preferred Binding" +msgstr "" + +#: ADD_BIND_PUR +msgid "Purpose" +msgstr "" + +#: ADD_BIND_RECOM_VALUE_SET +msgid "This is the value set that is recommended (documentation should explain why)" +msgstr "" + +#: ADD_BIND_REQUIRED +msgid "Required" +msgstr "" + +#: ADD_BIND_REQ_BIND +msgid "Required Binding" +msgstr "" + +#: ADD_BIND_STARTER +msgid "Starter" +msgstr "" + +#: ADD_BIND_UI +msgid "UI" +msgstr "" + +#: ADD_BIND_UI_BIND +msgid "UI Binding" +msgstr "" + +#: ADD_BIND_UNKNOWN_PUR +msgid "Unknown code for purpose" +msgstr "" + +#: ADD_BIND_USE +msgid "Usage" +msgstr "" + +#: ADD_BIND_VALID_EXT +msgid "Validators will check this binding (strength = extensible)" +msgstr "" + +#: ADD_BIND_VALID_REQ +msgid "Validators will check this binding (strength = required)" +msgstr "" + +#: ADD_BIND_VALUE_COMP +msgid "This value set is a component of the base value set" +msgstr "" + +#: BIND_REND_NO_CONTENT +msgid "No Content Type" +msgstr "" #: BUNDLE_DOCUMENT_CONTENT msgid "Additional Document Content" @@ -69,6 +211,14 @@ msgstr "Resource {0}:" msgid "Response:" msgstr "Response:" +#: BUNDLE_REV_EXCP +msgid "Exception generating narrative: {0}" +msgstr "" + +#: BUNDLE_REV_INV_DOC +msgid "Invalid document - first entry is not a Composition" +msgstr "" + #: BUNDLE_SEARCH msgid "Search:" msgstr "Search:" @@ -81,6 +231,334 @@ msgstr "Mode = {0}" msgid "Score = {0}" msgstr "Score = {0}" +#: BUND_REND_GEN_NARR +msgid "generating narrative" +msgstr "" + +#: BUND_REND_INVALID_DOC +msgid "Invalid document ''{0}'' - first entry is not a Composition ({0})" +msgstr "" + +#: BUND_REND_RES +msgid "resource" +msgstr "" + +#: CANON_REND_COMMITTEE +msgid "Committee" +msgstr "" + +#: CANON_REND_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: CANON_REND_DEFINITION +msgid "Definition" +msgstr "" + +#: CANON_REND_JSON +msgid "JSON" +msgstr "" + +#: CANON_REND_MATURITY +msgid "Maturity" +msgstr "" + +#: CANON_REND_NAME +msgid "Name" +msgstr "" + +#: CANON_REND_PUBLISHER +msgid "Publisher" +msgstr "" + +#: CANON_REND_SOURCE_RES +msgid "Source Resource" +msgstr "" + +#: CANON_REND_STATUS +msgid "Status" +msgstr "" + +#: CANON_REND_TITLE +msgid "Title" +msgstr "" + +#: CANON_REND_TURTLE +msgid "Turtle" +msgstr "" + +#: CANON_REND_URL +msgid "Defining URL" +msgstr "" + +#: CANON_REND_VER +msgid "Version" +msgstr "" + +#: CANON_REND_XML +msgid "XML" +msgstr "" + +#: CAPABILITY_ADD_SUPP_PROF +msgid "Additional supported profiles:" +msgstr "" + +#: CAPABILITY_BASE_SYS +msgid "Base System Profile" +msgstr "" + +#: CAPABILITY_COMB_SEARCH_PAR +msgid "Combined Search Parameters" +msgstr "" + +#: CAPABILITY_CONF +msgid "Conformance" +msgstr "" + +#: CAPABILITY_CORS_NO +msgid "Enable CORS: no" +msgstr "" + +#: CAPABILITY_CORS_YES +msgid "Enable CORS: yes" +msgstr "" + +#: CAPABILITY_CREATE_INT +msgid "POST a new resource (create interaction)" +msgstr "" + +#: CAPABILITY_CRIT +msgid "Criteria" +msgstr "" + +#: CAPABILITY_DELETE_INT +msgid "DELETE a resource (delete interaction)" +msgstr "" + +#: CAPABILITY_DOC +msgid "Documentation" +msgstr "" + +#: CAPABILITY_EXT_OP +msgid "Extended Operations" +msgstr "" + +#: CAPABILITY_FHIR +msgid "Core FHIR Resource" +msgstr "" + +#: CAPABILITY_FHIR_VER +msgid "FHIR Version: {0}" +msgstr "" + +#: CAPABILITY_HISTORY_INT +msgid "GET changes to a resource (history interaction on instance)" +msgstr "" + +#: CAPABILITY_HISTORY_TYPE +msgid "GET changes for all resources of the type (history interaction on type)" +msgstr "" + +#: CAPABILITY_IMP_VER +msgid "Implementation Guide Version: {0}" +msgstr "" + +#: CAPABILITY_INT +msgid "interaction." +msgstr "" + +#: CAPABILITY_INTER_SUPP +msgid "The interactions supported by each resource (" +msgstr "" + +#: CAPABILITY_INT_DESC +msgid "interaction described as follows:" +msgstr "" + +#: CAPABILITY_INT_SUMM +msgid "Interaction summary" +msgstr "" + +#: CAPABILITY_NOTE_CAP +msgid "Note to Implementers: FHIR Capabilities" +msgstr "" + +#: CAPABILITY_OP +msgid "Operations" +msgstr "" + +#: CAPABILITY_OPER +msgid "Operation" +msgstr "" + +#: CAPABILITY_OTH_RES_ENB +msgid "The other resources enabled for" +msgstr "" + +#: CAPABILITY_PAR +msgid "Parameter" +msgstr "" + +#: CAPABILITY_PARS +msgid "Parameters" +msgstr "" + +#: CAPABILITY_PATCH_INT +msgid "PATCH a new resource version (patch interaction)" +msgstr "" + +#: CAPABILITY_PROF +msgid "Profile" +msgstr "" + +#: CAPABILITY_PROF_CONF +msgid "Profile Conformance" +msgstr "" + +#: CAPABILITY_PROF_MAP +msgid "Profile Mapping" +msgstr "" + +#: CAPABILITY_PUB_BY +msgid "Published by: {0}" +msgstr "" + +#: CAPABILITY_PUB_ON +msgid "Published on: {0}" +msgstr "" + +#: CAPABILITY_READ_INT +msgid "GET a resource (read interaction)" +msgstr "" + +#: CAPABILITY_REF_PROF +msgid "Reference Policy" +msgstr "" + +#: CAPABILITY_REQ_RECOM +msgid "Required and recommended search parameters" +msgstr "" + +#: CAPABILITY_REST_CAPS +msgid "FHIR RESTful Capabilities" +msgstr "" + +#: CAPABILITY_REST_CONFIG +msgid "REST Configuration: {0}" +msgstr "" + +#: CAPABILITY_RES_CONF +msgid "Resource Conformance: {0}" +msgstr "" + +#: CAPABILITY_RES_ENB +msgid "The linked resources enabled for" +msgstr "" + +#: CAPABILITY_RES_OPER +msgid "The operations on the resource (if any)" +msgstr "" + +#: CAPABILITY_RES_PRO +msgid "Capabilities by Resource/Profile" +msgstr "" + +#: CAPABILITY_RES_TYP +msgid "Resource Type" +msgstr "" + +#: CAPABILITY_REV_PROF +msgid "The relevant profiles (if any)" +msgstr "" + +#: CAPABILITY_SEARCHES +msgid "Searches" +msgstr "" + +#: CAPABILITY_SEARCH_INT +msgid "GET all set of resources of the type (search interaction)" +msgstr "" + +#: CAPABILITY_SEARCH_PAR +msgid "The required, recommended, and some optional search parameters (if any)." +msgstr "" + +#: CAPABILITY_SEARCH_PARS +msgid "Search Parameters" +msgstr "" + +#: CAPABILITY_SHOULD_SUPP +msgid "SHOULD Support the Following Implementation Guides" +msgstr "" + +#: CAPABILITY_SUMM +msgid "Summary" +msgstr "" + +#: CAPABILITY_SUMM_RES +msgid "The summary table lists the resources that are part of this configuration, and for each resource it lists:" +msgstr "" + +#: CAPABILITY_SUMM_SYS_INT +msgid "Summary of System-wide Interactions" +msgstr "" + +#: CAPABILITY_SUPP +msgid "support" +msgstr "" + +#: CAPABILITY_SUPPS +msgid "Supports" +msgstr "" + +#: CAPABILITY_SUPP_FORM +msgid "Supported Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PATCH_FORM +msgid "Supported Patch Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PROF +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_PROFS +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_THE +msgid "Supports the" +msgstr "" + +#: CAPABILITY_TYP +msgid "Type" +msgstr "" + +#: CAPABILITY_TYPS +msgid "Types" +msgstr "" + +#: CAPABILITY_TYP_PRES +msgid "ype are only present if at least one of the resources has support for them." +msgstr "" + +#: CAPABILITY_UPDATE_INT +msgid "PUT a new resource version (update interaction)" +msgstr "" + +#: CAPABILITY_VREAD_INT +msgid "GET past versions of resources (vread interaction)" +msgstr "" + +#: CAPABILTY_ALLOW_CAP +msgid "Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case." +msgstr "" + +#: CAPABILTY_SHALL_SUPP +msgid "SHALL Support the Following Implementation Guides" +msgstr "" + #: CODEPROP_CODE msgid "Code" msgstr "" @@ -161,6 +639,918 @@ msgstr "" msgid "URI" msgstr "" +#: CODE_SYS_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: CODE_SYS_CODE +msgid "Code" +msgstr "" + +#: CODE_SYS_CODE_NOT_HERE +msgid "This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: CODE_SYS_COMPLETE +msgid "All the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_CONTENT +msgid "Content" +msgstr "" + +#: CODE_SYS_COPY +msgid "Copy" +msgstr "" + +#: CODE_SYS_DISP +msgid "displays" +msgstr "" + +#: CODE_SYS_DISP_PROP +msgid "displays and properties" +msgstr "" + +#: CODE_SYS_EXAMPLE +msgid "A few representative concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_FEAT +msgid "features" +msgstr "" + +#: CODE_SYS_FOR_OID +msgid "for OID based terminology systems" +msgstr "" + +#: CODE_SYS_FRAGMENT +msgid "A subset of the code system concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_IN_A_HIERARCHY +msgid "in a {0} hierarchy" +msgstr "" + +#: CODE_SYS_NOTPRESENT +msgid "None of the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_OID +msgid "OID" +msgstr "" + +#: CODE_SYS_PROP +msgid "properties" +msgstr "" + +#: CODE_SYS_REPLACED_BY +msgid "(replaced by" +msgstr "" + +#: CODE_SYS_SUPPLEMENT +msgid "This code system resource is a supplement to" +msgstr "" + +#: CODE_SYS_THE_VALUE_SET +msgid "is the value set for all codes in this code system" +msgstr "" + +#: CODE_SYS_UNDEF_HIER +msgid "in an undefined heirarchy" +msgstr "" + +#: CODE_SYS_UNKN_MODE +msgid "Unknown CodeSystemContentMode mode" +msgstr "" + +#: CODE_SYS_VALUE_SET +msgid "Value Set" +msgstr "" + +#: CONC_MAP_CMNT +msgid "Comment" +msgstr "" + +#: CONC_MAP_CODE +msgid "Code" +msgstr "" + +#: CONC_MAP_CODES +msgid "Codes" +msgstr "" + +#: CONC_MAP_CODE_SYS_UNSPEC +msgid "unspecified code system" +msgstr "" + +#: CONC_MAP_FRM +msgid "from" +msgstr "" + +#: CONC_MAP_FROM +msgid "Mapping from" +msgstr "" + +#: CONC_MAP_GRP +msgid "Group {0}" +msgstr "" + +#: CONC_MAP_NOT_SPEC +msgid "(not specified)" +msgstr "" + +#: CONC_MAP_NO_PROD_USE +msgid "(not intended for production usage)." +msgstr "" + +#: CONC_MAP_PROP +msgid "Properties" +msgstr "" + +#: CONC_MAP_PUB_ON +msgid "Published on {0}" +msgstr "" + +#: CONC_MAP_REL +msgid "Relationship" +msgstr "" + +#: CONC_MAP_SOURCE +msgid "Source Code" +msgstr "" + +#: CONC_MAP_SRC_DET +msgid "Source Concept Details" +msgstr "" + +#: CONC_MAP_TO +msgid "to" +msgstr "" + +#: CONC_MAP_TRGT +msgid "Target Code" +msgstr "" + +#: CONC_MAP_TRGT_DET +msgid "Target Concept Details" +msgstr "" + +#: DATA_REND_AFTRBKFST +msgid "after breakfast" +msgstr "" + +#: DATA_REND_AFTRDINR +msgid "after dinner" +msgstr "" + +#: DATA_REND_AFTRLUNCH +msgid "after lunch" +msgstr "" + +#: DATA_REND_AFTRMEALS +msgid "after meals" +msgstr "" + +#: DATA_REND_AFTRWKNG +msgid "after waking" +msgstr "" + +#: DATA_REND_ATBKFST +msgid "at breakfast" +msgstr "" + +#: DATA_REND_ATDINR +msgid "at dinner" +msgstr "" + +#: DATA_REND_ATLUNCH +msgid "at lunch" +msgstr "" + +#: DATA_REND_BASE64 +msgid "(base64 data - {0} bytes)" +msgstr "" + +#: DATA_REND_BFBKFST +msgid "before breakfast" +msgstr "" + +#: DATA_REND_BFDINR +msgid "before dinner" +msgstr "" + +#: DATA_REND_BFLUNCH +msgid "before lunch" +msgstr "" + +#: DATA_REND_BFMEALS +msgid "before meals" +msgstr "" + +#: DATA_REND_BFSLEEP +msgid "before sleeping" +msgstr "" + +#: DATA_REND_BY +msgid "By" +msgstr "" + +#: DATA_REND_CODE +msgid "Code" +msgstr "" + +#: DATA_REND_CODES +msgid "Codes:" +msgstr "" + +#: DATA_REND_COND +msgid "Condition" +msgstr "" + +#: DATA_REND_COUNT +msgid "Count {0}" +msgstr "" + +#: DATA_REND_DATA +msgid "Data: {0}" +msgstr "" + +#: DATA_REND_DETAILS +msgid "(Details: {0} code" +msgstr "" + +#: DATA_REND_DETAILS_STATED +msgid "(Details: {0} code {1} {2} {3} ', stated as ' {4} {5}" +msgstr "" + +#: DATA_REND_DICOM +msgid "DICOM" +msgstr "" + +#: DATA_REND_DIM +msgid "Dimensions: {0}" +msgstr "" + +#: DATA_REND_DURATION +msgid "Duration {0}" +msgstr "" + +#: DATA_REND_ERROR +msgid "Error: {0}" +msgstr "" + +#: DATA_REND_EVENTS +msgid "Events: {0}" +msgstr "" + +#: DATA_REND_EXCEPTION +msgid "Exception" +msgstr "" + +#: DATA_REND_FACT +msgid "Factor: {0}" +msgstr "" + +#: DATA_REND_FAX +msgid "Fax: {0}" +msgstr "" + +#: DATA_REND_FILT +msgid "Filter" +msgstr "" + +#: DATA_REND_GETCODE +msgid "Code: {0}" +msgstr "" + +#: DATA_REND_GLN +msgid "Global Location Number" +msgstr "" + +#: DATA_REND_ICD +msgid "ICD-9" +msgstr "" + +#: DATA_REND_INT +msgid "Interval: {0}" +msgstr "" + +#: DATA_REND_LIMIT +msgid "Limit" +msgstr "" + +#: DATA_REND_LOINC +msgid "LOINC" +msgstr "" + +#: DATA_REND_LOWER +msgid "Lower: {0}" +msgstr "" + +#: DATA_REND_MEALS +msgid "at meals" +msgstr "" + +#: DATA_REND_MKDWN_LNK +msgid "Unable to resolve markdown link" +msgstr "" + +#: DATA_REND_NAME +msgid "Name" +msgstr "" + +#: DATA_REND_NOT_STAT +msgid "[not stated]" +msgstr "" + +#: DATA_REND_NO_DISP +msgid "No display for {0}" +msgstr "" + +#: DATA_REND_ONCE +msgid "Once" +msgstr "" + +#: DATA_REND_ONGOING +msgid "(ongoing)" +msgstr "" + +#: DATA_REND_ORIGIN +msgid "Origin: {0}" +msgstr "" + +#: DATA_REND_PER +msgid "per" +msgstr "" + +#: DATA_REND_PERIOD +msgid "period:" +msgstr "" + +#: DATA_REND_PHONE +msgid "Phone: {0}" +msgstr "" + +#: DATA_REND_RXNORM +msgid "RxNorm" +msgstr "" + +#: DATA_REND_SEARCH +msgid "Search on: {0}" +msgstr "" + +#: DATA_REND_SNOMED +msgid "SNOMED CT" +msgstr "" + +#: DATA_REND_SORT +msgid "Sort" +msgstr "" + +#: DATA_REND_SOURCE +msgid "source" +msgstr "" + +#: DATA_REND_STARTING +msgid "Starting {0}" +msgstr "" + +#: DATA_REND_SUB +msgid "Subject" +msgstr "" + +#: DATA_REND_THESE_CODES +msgid "One of these codes:" +msgstr "" + +#: DATA_REND_TIMING +msgid "Timing" +msgstr "" + +#: DATA_REND_TO_DO +msgid "to do: {0}" +msgstr "" + +#: DATA_REND_TYPE +msgid "Type" +msgstr "" + +#: DATA_REND_UCUM +msgid "UCUM" +msgstr "" + +#: DATA_REND_UNKNWN +msgid "unknown" +msgstr "" + +#: DATA_REND_UNRD_EX +msgid "WARNING: Unrenderable Modifier Extension!" +msgstr "" + +#: DATA_REND_UNTIL +msgid "Until {0}" +msgstr "" + +#: DATA_REND_UP +msgid "Upper: {0}" +msgstr "" + +#: DATA_REND_USE +msgid "use:" +msgstr "" + +#: DATA_REND_VALUE +msgid "Value" +msgstr "" + +#: DATA_REND_VALUESET +msgid "In ValueSet" +msgstr "" + +#: DATA_REND_VERSION +msgid "(version = {0} {1}" +msgstr "" + +#: DIAG_REP_REND_AGE +msgid "Age" +msgstr "" + +#: DIAG_REP_REND_CODE +msgid "Code" +msgstr "" + +#: DIAG_REP_REND_CODECON +msgid "Coded Conclusions :" +msgstr "" + +#: DIAG_REP_REND_ERR +msgid "Error:" +msgstr "" + +#: DIAG_REP_REND_FLAG +msgid "Flags" +msgstr "" + +#: DIAG_REP_REND_FOR +msgid "for" +msgstr "" + +#: DIAG_REP_REND_IDEN +msgid "Identifier: {0}" +msgstr "" + +#: DIAG_REP_REND_IDENTIFIER +msgid "Identifier" +msgstr "" + +#: DIAG_REP_REND_NOTDONE +msgid "Not done yet" +msgstr "" + +#: DIAG_REP_REND_NOTE +msgid "Note" +msgstr "" + +#: DIAG_REP_REND_NOTRES +msgid "This Observation could not be resolved" +msgstr "" + +#: DIAG_REP_REND_OBS +msgid "Observation" +msgstr "" + +#: DIAG_REP_REND_PER +msgid "Performer" +msgstr "" + +#: DIAG_REP_REND_REFRAN +msgid "Reference Range" +msgstr "" + +#: DIAG_REP_REND_REP +msgid "Reported" +msgstr "" + +#: DIAG_REP_REND_REPDET +msgid "Report Details" +msgstr "" + +#: DIAG_REP_REND_REQ +msgid "Request: {0}" +msgstr "" + +#: DIAG_REP_REND_REQUEST +msgid "Request" +msgstr "" + +#: DIAG_REP_REND_SUB +msgid "Subject" +msgstr "" + +#: DIAG_REP_REND_UNABLE +msgid "Unable to get Patient Details" +msgstr "" + +#: DIAG_REP_REND_VALUE +msgid "Value" +msgstr "" + +#: DIAG_REP_REND_WHEN +msgid "When For" +msgstr "" + +#: EXAMPLE_SCEN_STEP_SCEN +msgid "Step {0} - See scenario\n {1}" +msgstr "" + +#: EXAMPLE_SCEN_UNABLE_TO_FIND +msgid "Unable to find referenced version {0} within instance {1}" +msgstr "" + +#: EX_SCEN_ALT +msgid "Alternative {0}" +msgstr "" + +#: EX_SCEN_BEL +msgid "below" +msgstr "" + +#: EX_SCEN_CONT +msgid "Content" +msgstr "" + +#: EX_SCEN_CONTA +msgid "Contains:" +msgstr "" + +#: EX_SCEN_DESC +msgid "Description" +msgstr "" + +#: EX_SCEN_ERR_REN +msgid "Error rendering ExampleScenario {0}" +msgstr "" + +#: EX_SCEN_FVER +msgid "FHIR version" +msgstr "" + +#: EX_SCEN_IN +msgid "Initiator" +msgstr "" + +#: EX_SCEN_NAME +msgid "Name" +msgstr "" + +#: EX_SCEN_OTH +msgid "See other scenario" +msgstr "" + +#: EX_SCEN_POSTCON +msgid "Post-conditions:" +msgstr "" + +#: EX_SCEN_PRECON +msgid "Pre-conditions:" +msgstr "" + +#: EX_SCEN_PROC +msgid "Process: {0}" +msgstr "" + +#: EX_SCEN_REC +msgid "Receiver" +msgstr "" + +#: EX_SCEN_REQ +msgid "Request" +msgstr "" + +#: EX_SCEN_RES +msgid "Response" +msgstr "" + +#: EX_SCEN_SEE +msgid "See subprocess" +msgstr "" + +#: EX_SCEN_STEP +msgid "Step" +msgstr "" + +#: EX_SCEN_TIME +msgid "... time passes ...\n" +msgstr "" + +#: EX_SCEN_TYPE +msgid "Type" +msgstr "" + +#: EX_SCEN_UN +msgid "Unknown ExampleScenario Renderer Mode {0}" +msgstr "" + +#: EX_SCEN_UN_ACT +msgid "Unable to find referenced actor {0}" +msgstr "" + +#: EX_SCEN_UN_INST +msgid "Unable to find referenced instance {0}" +msgstr "" + +#: EX_SCEN_VER +msgid "version" +msgstr "" + +#: IMP_GUIDE_URL +msgid "The official URL for this implementation guide is:" +msgstr "" + +#: LIB_REND_ART +msgid "Related Artifacts" +msgstr "" + +#: LIB_REND_AUT +msgid "Author" +msgstr "" + +#: LIB_REND_CONT +msgid "Contents" +msgstr "" + +#: LIB_REND_ED +msgid "Editor" +msgstr "" + +#: LIB_REND_END +msgid "Endorser" +msgstr "" + +#: LIB_REND_NOCONT +msgid "No Content" +msgstr "" + +#: LIB_REND_PAR +msgid "Participants" +msgstr "" + +#: LIB_REND_PARA +msgid "Parameters" +msgstr "" + +#: LIB_REND_REQ +msgid "Data Requirements" +msgstr "" + +#: LIB_REND_REV +msgid "Reviewer" +msgstr "" + +#: LIB_REND_SHOW +msgid "Content not shown - (" +msgstr "" + +#: LIB_REND_SIZE +msgid ", size = {0}" +msgstr "" + +#: LIST_REND_CODE +msgid "Code: {0}" +msgstr "" + +#: LIST_REND_DAT +msgid "Date" +msgstr "" + +#: LIST_REND_DATE +msgid "Date: {0}" +msgstr "" + +#: LIST_REND_DEL +msgid "Deleted" +msgstr "" + +#: LIST_REND_ENC +msgid "Encounter:" +msgstr "" + +#: LIST_REND_FLAG +msgid "Flag" +msgstr "" + +#: LIST_REND_ITEM +msgid "Items" +msgstr "" + +#: LIST_REND_MODE +msgid "Mode: {0}" +msgstr "" + +#: LIST_REND_ORD +msgid "Order: {0}" +msgstr "" + +#: LIST_REND_SRC +msgid "Source:" +msgstr "" + +#: LIST_REND_STAT +msgid "Status: {0}" +msgstr "" + +#: LIST_REND_SUB +msgid "Subject:" +msgstr "" + +#: MAP_DEFAULT_COMMENT +msgid "This element was not defined prior to R5" +msgstr "" + +#: NAME_SYS_COM +msgid "Comment" +msgstr "" + +#: NAME_SYS_COPY +msgid "Copyright" +msgstr "" + +#: NAME_SYS_DEF +msgid "Definition" +msgstr "" + +#: NAME_SYS_FOROID +msgid "for OID based terminology systems" +msgstr "" + +#: NAME_SYS_IDEN +msgid "Identifiers" +msgstr "" + +#: NAME_SYS_NAME +msgid "Name" +msgstr "" + +#: NAME_SYS_OID +msgid "OID" +msgstr "" + +#: NAME_SYS_PER +msgid "Period" +msgstr "" + +#: NAME_SYS_PREF +msgid "Preferred" +msgstr "" + +#: NAME_SYS_PUB +msgid "Publisher" +msgstr "" + +#: NAME_SYS_STAT +msgid "Status" +msgstr "" + +#: NAME_SYS_SUM +msgid "Summary" +msgstr "" + +#: NAME_SYS_TITLE +msgid "Title" +msgstr "" + +#: NAME_SYS_TYPE +msgid "Type" +msgstr "" + +#: NAME_SYS_URL +msgid "Defining URL" +msgstr "" + +#: NAME_SYS_VALUE +msgid "Value" +msgstr "" + +#: NAME_SYS_VER +msgid "Version" +msgstr "" + +#: OBLIG_ACT +msgid "Actor" +msgstr "" + +#: OBLIG_DOC +msgid "Documentation" +msgstr "" + +#: OBLIG_ELE +msgid "Elements" +msgstr "" + +#: OBLIG_FILT +msgid "Filter" +msgstr "" + +#: OBLIG_OBLIG +msgid "Obligations" +msgstr "" + +#: OBLIG_USE +msgid "Usage" +msgstr "" + +#: OP_DEF_BIND +msgid "Binding" +msgstr "" + +#: OP_DEF_CARD +msgid "Cardinality" +msgstr "" + +#: OP_DEF_DOC +msgid "Documentation" +msgstr "" + +#: OP_DEF_INPAR +msgid "Input parameters Profile:" +msgstr "" + +#: OP_DEF_NAME +msgid "Name" +msgstr "" + +#: OP_DEF_OFFIC +msgid "The official URL for this operation definition is:" +msgstr "" + +#: OP_DEF_OUTPAR +msgid "Output parameters Profile:" +msgstr "" + +#: OP_DEF_PAR +msgid "Parameters" +msgstr "" + +#: OP_DEF_SCO +msgid "Scope" +msgstr "" + +#: OP_DEF_TYPE +msgid "Type" +msgstr "" + +#: OP_DEF_URL +msgid "URL: [base]/{0}" +msgstr "" + +#: OP_DEF_URLS +msgid "URL: [base]/${0}" +msgstr "" + +#: OP_DEF_USE +msgid "Use" +msgstr "" + +#: OP_OUT_CODE +msgid "Code" +msgstr "" + +#: OP_OUT_DET +msgid "Details" +msgstr "" + +#: OP_OUT_DIAG +msgid "Diagnostics" +msgstr "" + +#: OP_OUT_LOC +msgid "Location" +msgstr "" + +#: OP_OUT_NOT +msgid "Not done yet" +msgstr "" + +#: OP_OUT_OK +msgid "All OK" +msgstr "" + +#: OP_OUT_SEV +msgid "Severity" +msgstr "" + +#: OP_OUT_SRC +msgid "Source" +msgstr "" + +#: OP_OUT_TODO +msgid "todo" +msgstr "" + +#: PAR_REND_PAR +msgid "Parameters" +msgstr "" + #: PAT_ACTIVE msgid "Active:" msgstr "" @@ -186,7 +1576,7 @@ msgid "Ways to contact the Patient" msgstr "" #: PAT_CONTAINED -msgid "Contained Resource" +msgid "Contained Resources" msgid_plural "Contained Resources" msgstr[0] "" @@ -210,8 +1600,13 @@ msgstr "" msgid "General Practitioner" msgstr "" +#: PAT_LANG +msgid "Languages:" +msgid_plural "Languages:" +msgstr[0] "" + #: PAT_LANG_HINT -msgid "Language spoken" +msgid "Languages spoken" msgid_plural "Languages spoken" msgstr[0] "" @@ -219,11 +1614,6 @@ msgstr[0] "" msgid "(preferred)" msgstr "" -#: PAT_LANG -msgid "Language:" -msgid_plural "Languages:" -msgstr[0] "" - #: PAT_LINKS msgid "Links:" msgstr "" @@ -296,14 +1686,14 @@ msgstr "" msgid "Organization:" msgstr "" -#: PAT_OTHER_ID_HINT -msgid "Other Id (see the one above)" -msgid_plural "Other Ids (see the one above)" +#: PAT_OTHER_ID +msgid "Other Ids:" +msgid_plural "Other Ids:" msgstr[0] "" -#: PAT_OTHER_ID -msgid "Other Id:" -msgid_plural "Other Ids:" +#: PAT_OTHER_ID_HINT +msgid "Other Ids (see the one above)" +msgid_plural "Other Ids (see the one above)" msgstr[0] "" #: PAT_PERIOD @@ -318,10 +1708,606 @@ msgstr "" msgid "Relationships:" msgstr "" +#: PROF_DRIV_ERR_GEN_NARR +msgid "Error Generating Narrative for" +msgstr "" + +#: PROF_DRIV_EXCP +msgid "Exception Generating Narrative: {0}" +msgstr "" + +#: PROF_DRIV_FEXCP +msgid "Cannot find definition for {0}" +msgstr "" + +#: PROF_DRIV_GEN_NARR +msgid "Generated Narrative: {0} {1}" +msgstr "" + +#: PROV_ACT +msgid "Activity" +msgstr "" + +#: PROV_AGE +msgid "Agents" +msgstr "" + +#: PROV_BEHALF +msgid "On Behalf Of" +msgstr "" + +#: PROV_FOR +msgid "Provenance for {0}" +msgstr "" + +#: PROV_LOC +msgid "Location" +msgstr "" + +#: PROV_NOT +msgid "Not done yet" +msgstr "" + +#: PROV_OCC +msgid "Occurrence" +msgstr "" + +#: PROV_POL +msgid "Policy" +msgstr "" + +#: PROV_PROV +msgid "Provenance for" +msgstr "" + +#: PROV_PROVE +msgid "Provenance for:" +msgstr "" + +#: PROV_REC +msgid "Recorded" +msgstr "" + +#: PROV_ROLE +msgid "Role" +msgstr "" + +#: PROV_SUM +msgid "Summary" +msgstr "" + +#: PROV_TYPE +msgid "Type" +msgstr "" + +#: PROV_WHO +msgid "who" +msgstr "" + +#: QUEST_ADD_INFO +msgid "Additional information about the item" +msgstr "" + +#: QUEST_ALLOWED +msgid "Allowed Answers" +msgstr "" + +#: QUEST_ANSW +msgid "Answer options for {0}" +msgstr "" + +#: QUEST_ANSWER +msgid "Answer" +msgstr "" + +#: QUEST_ANSWERS +msgid "Answers" +msgstr "" + +#: QUEST_APP +msgid "Approval Date" +msgstr "" + +#: QUEST_ARE_TRUE +msgid "?? are true:" +msgstr "" + +#: QUEST_ATTRIBUTES +msgid "Other attributes of the item" +msgstr "" + +#: QUEST_CALC +msgid "Calculated Value" +msgstr "" + +#: QUEST_CAND +msgid "Candidates" +msgstr "" + +#: QUEST_CARD +msgid "Cardinality" +msgstr "" + +#: QUEST_CAT +msgid "Category: {0}" +msgstr "" + +#: QUEST_CODE +msgid "Code" +msgstr "" + +#: QUEST_CONT +msgid "Context" +msgstr "" + +#: QUEST_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: QUEST_DEF +msgid "Definition:" +msgstr "" + +#: QUEST_DEFINITION +msgid "Definition" +msgstr "" + +#: QUEST_DERIVED +msgid "Derived From" +msgstr "" + +#: QUEST_DESC +msgid "Description & Constraints" +msgstr "" + +#: QUEST_DESCRIPTION +msgid "Description" +msgstr "" + +#: QUEST_DISPLAY +msgid "Is optional to display" +msgstr "" + +#: QUEST_DISPLAY_CAT +msgid "Display Category" +msgstr "" + +#: QUEST_EFF_PERIOD +msgid "Effective Period" +msgstr "" + +#: QUEST_EN +msgid "Enable When" +msgstr "" + +#: QUEST_ENABLE +msgid "Enable When:" +msgstr "" + +#: QUEST_EXP +msgid "Expressions:" +msgstr "" + +#: QUEST_EXPER +msgid "Experimental" +msgstr "" + +#: QUEST_FLAG +msgid "Flags" +msgstr "" + +#: QUEST_GROUP +msgid "Group" +msgstr "" + +#: QUEST_HIDDEN +msgid "Is a hidden item" +msgstr "" + +#: QUEST_HIDDEN_ITEM +msgid "Hidden Item" +msgstr "" + +#: QUEST_ID +msgid "Link Id" +msgstr "" + +#: QUEST_INITIAL +msgid "Initial Value:" +msgstr "" + +#: QUEST_INITIALLY +msgid "(initially selected)" +msgstr "" + +#: QUEST_INITIAL_ANSWER +msgid "Initial Answer" +msgstr "" + +#: QUEST_INT +msgid "Initial Values" +msgstr "" + +#: QUEST_ITEM +msgid "Item" +msgstr "" + +#: QUEST_ITEM_CONT +msgid "Item Context" +msgstr "" + +#: QUEST_LINK +msgid "The linkID for the item" +msgstr "" + +#: QUEST_LINKED +msgid "Is linked to an observation" +msgstr "" + +#: QUEST_LINKID +msgid "LinkID" +msgstr "" + +#: QUEST_MAND +msgid "Mandatory" +msgstr "" + +#: QUEST_MAX +msgid "Max Length:" +msgstr "" + +#: QUEST_MAX_LENGTH +msgid "Max Length" +msgstr "" + +#: QUEST_NAME +msgid "Name" +msgstr "" + +#: QUEST_NLM +msgid "NLM Forms Library" +msgstr "" + +#: QUEST_NONE_SPEC +msgid "None specified" +msgstr "" + +#: QUEST_NOT_DONE +msgid "Not done yet" +msgstr "" + +#: QUEST_OBSERVATION +msgid "Observation Link Period" +msgstr "" + +#: QUEST_OPT +msgid "Options Sets" +msgstr "" + +#: QUEST_OPTIONS +msgid "Options:" +msgstr "" + +#: QUEST_ORIENTATION +msgid "Orientation: {0}" +msgstr "" + +#: QUEST_PREFIX +msgid "Prefix" +msgstr "" + +#: QUEST_PUB +msgid "Publication Date" +msgstr "" + +#: QUEST_PURPOSE +msgid "Purpose" +msgstr "" + +#: QUEST_QUEST +msgid "Questionnaire" +msgstr "" + +#: QUEST_QUESTION +msgid "Questionnaire:" +msgstr "" + +#: QUEST_QUESTIONNAIRE +msgid "Questionnaire {0}" +msgstr "" + +#: QUEST_READONLY +msgid "Is Read Only" +msgstr "" + +#: QUEST_READ_ONLY +msgid "Read Only" +msgstr "" + +#: QUEST_REP +msgid "Repeats" +msgstr "" + +#: QUEST_REQ +msgid "Required" +msgstr "" + +#: QUEST_RESP +msgid "QuestionnaireResponse" +msgstr "" + +#: QUEST_RESP_ROOT +msgid "QuestionnaireResponseRoot" +msgstr "" + +#: QUEST_REV_DATE +msgid "Last Review Date" +msgstr "" + +#: QUEST_ROOT +msgid "QuestionnaireRoot" +msgstr "" + +#: QUEST_STATUS +msgid "Status" +msgstr "" + +#: QUEST_STRUCT +msgid "Structure" +msgstr "" + +#: QUEST_SUB +msgid "Subject" +msgstr "" + +#: QUEST_SUBJECT +msgid "Can change the subject of the questionnaire" +msgstr "" + +#: QUEST_SUB_TYPE +msgid "Subject Type" +msgstr "" + +#: QUEST_TEXT +msgid "Text" +msgstr "" + +#: QUEST_TEXTFOR +msgid "Text for the item" +msgstr "" + +#: QUEST_TIMES +msgid "Minimum and Maximum # of times the item can appear in the instance" +msgstr "" + +#: QUEST_TITLE +msgid "Title" +msgstr "" + +#: QUEST_TODO +msgid "todo" +msgstr "" + +#: QUEST_TRUE +msgid "are true:" +msgstr "" + +#: QUEST_TRY +msgid "Try this questionnaire out:" +msgstr "" + +#: QUEST_TRY_QUEST +msgid "Try this QuestionnaireResponse out:" +msgstr "" + +#: QUEST_TYPE +msgid "Type" +msgstr "" + +#: QUEST_TYPE_ITEM +msgid "The type of the item" +msgstr "" + +#: QUEST_UNKNOWN_MODE +msgid "Unknown QuestionnaireResponse Renderer Mode" +msgstr "" + +#: QUEST_URL +msgid "URL" +msgstr "" + +#: QUEST_VALUE +msgid "Value Set:" +msgstr "" + +#: QUEST_VALUE_SET +msgid "Value Set" +msgstr "" + +#: QUEST_VERSION +msgid "Version" +msgstr "" + +#: REND_ADDED +msgid "Added:" +msgstr "" + +#: REND_CHANGED +msgid "Changed:" +msgstr "" + +#: REND_REMOVED +msgid "Removed:" +msgstr "" + +#: REND_ROW_CHANGED_SINCE +msgid "This row of content has been changed since {0}" +msgstr "" + +#: REND_ROW_CHANGED_SINCE_WAS +msgid "This row of content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_ROW_REMOVED_SINCE +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_ROW_SINCE +msgid "This row of content has been added since {0}" +msgstr "" + +#: REND_SINCE_ADDED +msgid "This content has been added since {0}" +msgstr "" + +#: REND_SINCE_CHANGED +msgid "This content has been changed since {0}" +msgstr "" + +#: REND_SINCE_CHANGED_WAS +msgid "This content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_SINCE_DELETED +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_STANDARDS +msgid "Standards Status = {0}" +msgstr "" + +#: REQ_ACTOR +msgid "These requirements apply to the actor" +msgstr "" + +#: REQ_DERIVE +msgid "These requirements derive from" +msgstr "" + +#: REQ_DERIVED +msgid "Derived From:" +msgstr "" + +#: REQ_FOLLOWING_ACTOR +msgid "These requirements apply to the following actors:" +msgstr "" + +#: REQ_FOLLOWING_REQ +msgid "These requirements are derived from the following requirements:" +msgstr "" + +#: REQ_LINKS +msgid "Links:" +msgstr "" + +#: REQ_REFERENCES +msgid "References:" +msgstr "" + +#: REQ_SATISFIED +msgid "Satisfied By:" +msgstr "" + +#: REQ_SOURCES +msgid "Source:" +msgstr "" + #: RESOURCE_COPYRIGHT msgid "Copyright Statement:" msgstr "" +#: RES_REND_ACT +msgid "Active" +msgstr "" + +#: RES_REND_COND_REF +msgid "Conditional Reference:" +msgstr "" + +#: RES_REND_DESC +msgid ". Description: (todo)" +msgstr "" + +#: RES_REND_DRAFT +msgid "draft" +msgstr "" + +#: RES_REND_ERROR +msgid "Error rendering: {0}" +msgstr "" + +#: RES_REND_EXP +msgid "Experimental" +msgstr "" + +#: RES_REND_GEN_SUM +msgid ". Generated Summary:" +msgstr "" + +#: RES_REND_INFO_SOURCE +msgid "Information Source:" +msgstr "" + +#: RES_REND_LANGUAGE +msgid "(Language" +msgstr "" + +#: RES_REND_PROF +msgid "Profile" +msgstr "" + +#: RES_REND_PROFILE +msgid "Profile" +msgstr "" + +#: RES_REND_RESOURCE +msgid "Resource" +msgstr "" + +#: RES_REND_RET +msgid "retired" +msgstr "" + +#: RES_REND_SECURITY +msgid "Security Label" +msgstr "" + +#: RES_REND_SECURITY_LABEL +msgid "Security Label" +msgstr "" + +#: RES_REND_SEE_ON_THIS_PAGE +msgid "See on this page:" +msgstr "" + +#: RES_REND_SPEC_RULES +msgid "Special rules apply:" +msgstr "" + +#: RES_REND_TAG +msgid "Tag" +msgstr "" + +#: RES_REND_TODO +msgid "todo" +msgstr "" + +#: RES_REND_UNKNOWN +msgid "Unknown" +msgstr "" + +#: RES_REND_UPDATED +msgid "Updated" +msgstr "" + +#: RES_REND_VER +msgid "(version" +msgstr "" + +#: RES_REND_VERSION +msgid "Version" +msgstr "" + #: SD_COMP_HEAD_CARD_L msgid "L Card." msgstr "" @@ -534,6 +2520,11 @@ msgstr "" msgid "This profile was published on {0} as a {1} by {2}" msgstr "" +#: SD_SUMMARY_SLICE +msgid "The element {0} is sliced based on the values of {1}" +msgid_plural "The element {0} is sliced based on the values of {1}" +msgstr[0] "" + #: SD_SUMMARY_SLICES msgid "This structure defines the following {0}Slices{1}" msgstr "" @@ -542,10 +2533,1373 @@ msgstr "" msgid "There is a slice with no discriminator at {0}" msgstr "" -#: SD_SUMMARY_SLICE -msgid "The element {0} is sliced based on the value of {1}" -msgid_plural "The element {0} is sliced based on the values of {1}" -msgstr[0] "" +#: SEARCH_PAR_ALLOWED +msgid "Allowed:" +msgstr "" + +#: SEARCH_PAR_CHAIN +msgid "Chains" +msgstr "" + +#: SEARCH_PAR_COMP +msgid "Comparators" +msgstr "" + +#: SEARCH_PAR_EXP +msgid "Expression" +msgstr "" + +#: SEARCH_PAR_MOD +msgid "Modifiers" +msgstr "" + +#: SEARCH_PAR_MULTIPLES +msgid "Multiples" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_APPEAR +msgid "multipleAnd: The parameter may only appear once" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_REPEAT +msgid "multipleAnd: The parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_SERVER +msgid "multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_MULTIPLE +msgid "multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_ONE +msgid "multipleOr: The parameter may only have one value (no comma separators)" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_SERVER +msgid "multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_NONE +msgid "(none)" +msgstr "" + +#: SEARCH_PAR_PAR +msgid "Parameter" +msgstr "" + +#: SEARCH_PAR_PROC +msgid "Processing Mode" +msgstr "" + +#: SEARCH_PAR_REND_RES +msgid "Resource" +msgstr "" + +#: SEARCH_PAR_REND_TARGET +msgid "Target Resources" +msgstr "" + +#: SEARCH_PAR_RES +msgid "All Resources" +msgstr "" + +#: STRUC_DEF_ABSTRACT +msgid "This is an abstract" +msgstr "" + +#: STRUC_DEF_ACT +msgid "Obligations that apply to the actor {0}" +msgstr "" + +#: STRUC_DEF_AFFECT_CONSTRAINTS +msgid ""This element has or is affected by constraints (" +msgstr "" + +#: STRUC_DEF_ALLOWED +msgid "Allowed Units" +msgstr "" + +#: STRUC_DEF_ALL_ACTORS +msgid "All Actors" +msgstr "" + +#: STRUC_DEF_ALL_MAP_KEY +msgid "All Mappings are Empty" +msgstr "" + +#: STRUC_DEF_ALL_SLICES +msgid ":All Slices" +msgstr "" + +#: STRUC_DEF_ALL_TYPES +msgid "All Types" +msgstr "" + +#: STRUC_DEF_ALT_NAME +msgid "Alternate Names" +msgstr "" + +#: STRUC_DEF_AND +msgid "and" +msgstr "" + +#: STRUC_DEF_APPROP_CON +msgid "Concepts must come from this value set if appropriate concept is in this value set" +msgstr "" + +#: STRUC_DEF_AS_SHOWN +msgid "As shown" +msgstr "" + +#: STRUC_DEF_BECAUSE +msgid "because" +msgstr "" + +#: STRUC_DEF_BINDING +msgid "Binding" +msgstr "" + +#: STRUC_DEF_BINDINGS +msgid "Binding:" +msgstr "" + +#: STRUC_DEF_BINDING_STYLE +msgid "binding style" +msgstr "" + +#: STRUC_DEF_BIND_STYLE +msgid "Binding Style" +msgstr "" + +#: STRUC_DEF_BLACK +msgid "black" +msgstr "" + +#: STRUC_DEF_BUSINESS_ID +msgid "This is a business identifier, not a resource identifier (see" +msgstr "" + +#: STRUC_DEF_BUSINESS_VERID +msgid "This is a business version Id, not a resource version Id (see" +msgstr "" + +#: STRUC_DEF_CAND +msgid "Candidate" +msgstr "" + +#: STRUC_DEF_CAND_SUB +msgid "This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation" +msgstr "" + +#: STRUC_DEF_CANNOT_TARGET +msgid "Instances of this logical model cannot be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CANT_FIND +msgid "getElementByName: can't find {0} in {1} from {2}" +msgstr "" + +#: STRUC_DEF_CAN_TARGET +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CAP +msgid "CAP Code" +msgstr "" + +#: STRUC_DEF_CARD +msgid "Card." +msgstr "" + +#: STRUC_DEF_CDA +msgid "This property is represented as CDA Text in the XML." +msgstr "" + +#: STRUC_DEF_CHILD +msgid "Child" +msgstr "" + +#: STRUC_DEF_CHOICE +msgid "(Choice of one)" +msgstr "" + +#: STRUC_DEF_CHOICE_DATA_TYPE +msgid "Choice of Data Types" +msgstr "" + +#: STRUC_DEF_CHOICE_GRP +msgid "Choice Group" +msgstr "" + +#: STRUC_DEF_CHOICE_OF +msgid "Choice of:" +msgstr "" + +#: STRUC_DEF_CLOSED +msgid "Closed" +msgstr "" + +#: STRUC_DEF_COMMENT +msgid "Comments:" +msgstr "" + +#: STRUC_DEF_COMMENTS +msgid "Comments" +msgstr "" + +#: STRUC_DEF_COMP +msgid "Component" +msgstr "" + +#: STRUC_DEF_COMPLEX +msgid "Complex" +msgstr "" + +#: STRUC_DEF_COMPLEXBRACK +msgid "(complex)" +msgstr "" + +#: STRUC_DEF_COMP_DOC +msgid "This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set" +msgstr "" + +#: STRUC_DEF_COMP_EX +msgid "(Complex Extension)" +msgstr "" + +#: STRUC_DEF_COMP_PROF +msgid "Complies with Profile" +msgstr "" + +#: STRUC_DEF_CONC_SET +msgid "Concepts must come from this value set" +msgstr "" + +#: STRUC_DEF_CONFORMANCE +msgid "Conformance" +msgstr "" + +#: STRUC_DEF_CONSTRAINING +msgid "Slice Constraining" +msgstr "" + +#: STRUC_DEF_CONSTRAINTS +msgid "Constraints" +msgstr "" + +#: STRUC_DEF_CONTENT +msgid "Content" +msgstr "" + +#: STRUC_DEF_CONTROL +msgid "Control" +msgstr "" + +#: STRUC_DEF_CONT_RULE +msgid "Content/Rules for all slices" +msgstr "" + +#: STRUC_DEF_CONT_TYPE +msgid "Content/Rules for all Types" +msgstr "" + +#: STRUC_DEF_COPY_URL +msgid "Click to Copy URL" +msgstr "" + +#: STRUC_DEF_CURR +msgid "Current" +msgstr "" + +#: STRUC_DEF_CURR_RULE +msgid "New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this" +msgstr "" + +#: STRUC_DEF_DATE +msgid "Date Format: {0}" +msgstr "" + +#: STRUC_DEF_DATE_FORM +msgid "Date Format" +msgstr "" + +#: STRUC_DEF_DEF +msgid "Definition:" +msgstr "" + +#: STRUC_DEF_DEFAULT_TYPE +msgid "Default Type" +msgstr "" + +#: STRUC_DEF_DEFAULT_VALUE +msgid "Default Value" +msgstr "" + +#: STRUC_DEF_DEFINITION +msgid "Definition" +msgstr "" + +#: STRUC_DEF_DEF_CODES +msgid "Definitional Codes" +msgstr "" + +#: STRUC_DEF_DERIVED_PROFILE +msgid "In this IG, the following structures are derived from this profile:" +msgstr "" + +#: STRUC_DEF_DESC +msgid "Description" +msgstr "" + +#: STRUC_DEF_DESCRIM +msgid ", and can be differentiated using the following discriminators:" +msgstr "" + +#: STRUC_DEF_DESC_PROF +msgid "Description of the profile" +msgstr "" + +#: STRUC_DEF_DETAILS +msgid "Details" +msgstr "" + +#: STRUC_DEF_DISCUSSION +msgid "discussion" +msgstr "" + +#: STRUC_DEF_ELE +msgid "This primitive element must have a value" +msgstr "" + +#: STRUC_DEF_ELEMENT +msgid "element" +msgstr "" + +#: STRUC_DEF_ELEMENTS +msgid "Elements defined in Ancestors:" +msgstr "" + +#: STRUC_DEF_ELE_AFFECTED +msgid "This element has or is affected by constraints ( {0} {1}" +msgstr "" + +#: STRUC_DEF_ELE_INCLUDED +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_ELE_MUST_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_ELE_READ +msgid "When this element is read" +msgstr "" + +#: STRUC_DEF_ERROR +msgid "Unknown structure mode" +msgstr "" + +#: STRUC_DEF_ERR_DESC +msgid "Error describing concept- not done yet (no codings, no text)" +msgstr "" + +#: STRUC_DEF_EX +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXAM +msgid "example" +msgstr "" + +#: STRUC_DEF_EXAMPLE +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXT +msgid "Extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIBLE +msgid "extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIONS +msgid "Extensions" +msgstr "" + +#: STRUC_DEF_EXT_JSON +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_EXT_STYLE +msgid "Extension Style" +msgstr "" + +#: STRUC_DEF_EX_CODE +msgid "For example codes, see" +msgstr "" + +#: STRUC_DEF_EX_DESC +msgid "Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included." +msgstr "" + +#: STRUC_DEF_EX_TYPE +msgid "(Extension Type:" +msgstr "" + +#: STRUC_DEF_EX_URL +msgid "Extension URL = {0}" +msgstr "" + +#: STRUC_DEF_FHIR +msgid "Base FHIR {0}" +msgstr "" + +#: STRUC_DEF_FHIR_EXCEP +msgid "Unable to retrieve StructureDefinition with URL {0}" +msgstr "" + +#: STRUC_DEF_FII +msgid "Formal Invariant Identifier" +msgstr "" + +#: STRUC_DEF_FIXED +msgid "Fixed Value" +msgstr "" + +#: STRUC_DEF_FIXED_VALUE +msgid "Fixed Value:" +msgstr "" + +#: STRUC_DEF_FOR_CODE +msgid "For codes, see" +msgstr "" + +#: STRUC_DEF_FURTHER_INFO +msgid "for further information about how to use [x]" +msgstr "" + +#: STRUC_DEF_GRADE +msgid "Grade" +msgstr "" + +#: STRUC_DEF_ID +msgid "Id" +msgstr "" + +#: STRUC_DEF_ID_EXPECT +msgid "ID Expectation" +msgstr "" + +#: STRUC_DEF_ID_IS +msgid "Id may or not be present (this is the default for elements but not resources)" +msgstr "" + +#: STRUC_DEF_ID_MAY +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_ID_NOT_ALLOW +msgid "An id is not allowed in this context" +msgstr "" + +#: STRUC_DEF_ID_REQ +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_IF +msgid "If" +msgstr "" + +#: STRUC_DEF_IMPOSE_PROFILE +msgid "Impose Profile" +msgstr "" + +#: STRUC_DEF_INFERRED_JSON +msgid "The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_INVAR +msgid "Invariants" +msgstr "" + +#: STRUC_DEF_INVARIANT +msgid "This element is affected by the following invariants:" +msgstr "" + +#: STRUC_DEF_JSON_ARRAY +msgid "JSON: This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_CAN_NAME +msgid "This type can appear in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_CHILD +msgid "child" +msgstr "" + +#: STRUC_DEF_JSON_ELE +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_JSON_EXT +msgid "(in elements using named extensions)" +msgstr "" + +#: STRUC_DEF_JSON_FORM +msgid "JSON Format" +msgstr "" + +#: STRUC_DEF_JSON_IF +msgid "JSON: If" +msgstr "" + +#: STRUC_DEF_JSON_INFERRED +msgid "JSON: The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_JSON_IS +msgid "This element is present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY +msgid "This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY_PRESENT +msgid "The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NAME +msgid "JSON Property Name" +msgstr "" + +#: STRUC_DEF_JSON_NOT_PRESENT +msgid "The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NULL +msgid "JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_JSON_PRESENT +msgid "The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_PROPERTY_NAME +msgid "This property appears in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_SINGLE +msgid "This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the" +msgstr "" + +#: STRUC_DEF_JSON_TYPE +msgid "JSON Property Name for Type" +msgstr "" + +#: STRUC_DEF_LABEL +msgid "Label" +msgstr "" + +#: STRUC_DEF_LEAST_FOLLOW +msgid "At least the following" +msgstr "" + +#: STRUC_DEF_LOGIC +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGICAL +msgid "Logical Model" +msgstr "" + +#: STRUC_DEF_LOGICAL_CONT +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGIC_NAME +msgid "The logical name of the element" +msgstr "" + +#: STRUC_DEF_LOINC +msgid "LOINC Code" +msgstr "" + +#: STRUC_DEF_LOINC_CODE +msgid "LOINC code" +msgstr "" + +#: STRUC_DEF_MATURITY +msgid "Maturity" +msgstr "" + +#: STRUC_DEF_MAX +msgid "Maximum" +msgstr "" + +#: STRUC_DEF_MAX_LENGTH +msgid "Max Length:" +msgstr "" + +#: STRUC_DEF_MAX_MIN +msgid "Minimum and Maximum # of times the element can appear in the instance" +msgstr "" + +#: STRUC_DEF_MAX_VALUE +msgid "Max Value" +msgstr "" + +#: STRUC_DEF_MEAN_MISS +msgid "Meaning if Missing" +msgstr "" + +#: STRUC_DEF_MIN +msgid "Minimum" +msgstr "" + +#: STRUC_DEF_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: STRUC_DEF_MIN_VALUE +msgid "Min Value" +msgstr "" + +#: STRUC_DEF_MISSING_LINK +msgid "missing link" +msgstr "" + +#: STRUC_DEF_MOD +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MODIF +msgid "Modifier" +msgstr "" + +#: STRUC_DEF_MODIFIER +msgid "Is Modifier" +msgstr "" + +#: STRUC_DEF_MOD_ELEMENT +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT +msgid "Must Support" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT_TYPES +msgid "Must Support Types" +msgstr "" + +#: STRUC_DEF_NAME +msgid "Name" +msgstr "" + +#: STRUC_DEF_NAMESPACE +msgid "In the XML format, this property has the namespace" +msgstr "" + +#: STRUC_DEF_NOTE_C +msgid "Note" +msgstr "" + +#: STRUC_DEF_NOTE_X +msgid "[x] Note" +msgstr "" + +#: STRUC_DEF_NOT_MARK +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NOT_MARKED +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NO_DESCRIM +msgid ", and defines no disciminators to differentiate the slices" +msgstr "" + +#: STRUC_DEF_NO_MAPPINGS +msgid "No Mappings" +msgstr "" + +#: STRUC_DEF_NO_MUST_SUPPORT +msgid "No must-support rules about the choice of types/profiles" +msgstr "" + +#: STRUC_DEF_NO_SUMMARY +msgid "No Summary, as this profile has no differential" +msgstr "" + +#: STRUC_DEF_NULL_JSON +msgid "This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_OBLIG +msgid "This element has obligations" +msgstr "" + +#: STRUC_DEF_OBLIGATIONS +msgid "Obligations" +msgstr "" + +#: STRUC_DEF_OBLIG_ADD +msgid "This is an obligation profile that only contains obligations and additional bindings" +msgstr "" + +#: STRUC_DEF_OBLIG_ALL +msgid "Obligations that apply to all actors" +msgstr "" + +#: STRUC_DEF_OBLIG_FROM +msgid "This profile picks up obligations and additional bindings from" +msgstr "" + +#: STRUC_DEF_OBLIG_SUPP +msgid "This element has obligations and must be supported" +msgstr "" + +#: STRUC_DEF_ONE_OF +msgid "One of:" +msgstr "" + +#: STRUC_DEF_OPEN +msgid "Open" +msgstr "" + +#: STRUC_DEF_OPEN_END +msgid "Open At End" +msgstr "" + +#: STRUC_DEF_ORDERED +msgid "Ordered" +msgstr "" + +#: STRUC_DEF_PATH +msgid "Path" +msgstr "" + +#: STRUC_DEF_PATHS +msgid "Path(s)" +msgstr "" + +#: STRUC_DEF_PATT_VALUE +msgid "Pattern Value" +msgstr "" + +#: STRUC_DEF_PREF +msgid "Preferred" +msgstr "" + +#: STRUC_DEF_PREFERRED +msgid "preferred" +msgstr "" + +#: STRUC_DEF_PREFIXED +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREFIX_VALID +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREF_CONT +msgid "This is the value set that is preferred in a given context (documentation should explain why)" +msgstr "" + +#: STRUC_DEF_PRIMITIVE +msgid "Primitive Value" +msgstr "" + +#: STRUC_DEF_PRIM_ELE +msgid "This primitive element may be present, or absent, or replaced by an extension" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_PRESENT +msgid "This primitive type may be present, or absent if replaced by one of the following extensions:" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_VALUE +msgid "This primitive type must have a value (the value must be present, and cannot be replaced by an extension)" +msgstr "" + +#: STRUC_DEF_PROFILED +msgid "profiled by" +msgstr "" + +#: STRUC_DEF_PROFILE_BUILDS +msgid "This profile builds on" +msgstr "" + +#: STRUC_DEF_PROF_COMP +msgid "This profiles compiles with the profile" +msgstr "" + +#: STRUC_DEF_PROF_REQ +msgid "This profile also requires that the instance also conform this additional profile:" +msgstr "" + +#: STRUC_DEF_PROF_RES +msgid "A profiled resource" +msgstr "" + +#: STRUC_DEF_PROF_SUPP +msgid "This profile must be supported" +msgstr "" + +#: STRUC_DEF_PROPERTY +msgid "Property" +msgstr "" + +#: STRUC_DEF_REF +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_REFERS_EXT +msgid "This structure refers to these extensions" +msgstr "" + +#: STRUC_DEF_REFER_PROFILE +msgid "In this IG, the following structures refer to this profile:" +msgstr "" + +#: STRUC_DEF_REND_UNABLE_RES +msgid "Unable to resolve StructureDefinition {0} resolving content reference {1}" +msgstr "" + +#: STRUC_DEF_REPEAT +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REPEAT_ELE +msgid "This repeating element order: {0}" +msgstr "" + +#: STRUC_DEF_REP_CHOICE +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REQ +msgid "Required" +msgstr "" + +#: STRUC_DEF_REQUIRED +msgid "required" +msgstr "" + +#: STRUC_DEF_REQUIRED_PATT +msgid "Required Pattern:" +msgstr "" + +#: STRUC_DEF_REQUIREMENTS +msgid "Requirements" +msgstr "" + +#: STRUC_DEF_REQ_BIND +msgid "A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: STRUC_DEF_REQ_PATT +msgid "Required Pattern" +msgstr "" + +#: STRUC_DEF_ROOT +msgid "The root class that contains instances of this class" +msgstr "" + +#: STRUC_DEF_SEE +msgid "See" +msgstr "" + +#: STRUC_DEF_SET_ARE +msgid ". The slices are" +msgstr "" + +#: STRUC_DEF_SET_SLICES +msgid "This element introduces a set of slices on" +msgstr "" + +#: STRUC_DEF_SHALL_CODE +msgid "The codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SHORT +msgid "Short" +msgstr "" + +#: STRUC_DEF_SHOULD_CODE +msgid "The codes SHOULD be taken from" +msgstr "" + +#: STRUC_DEF_SINGLE_JSON_OBJECTS +msgid "JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key" +msgstr "" + +#: STRUC_DEF_SLIC +msgid "Slices" +msgstr "" + +#: STRUC_DEF_SLICE +msgid "Slice" +msgstr "" + +#: STRUC_DEF_SLICES +msgid "Slice:" +msgstr "" + +#: STRUC_DEF_SLICE_FOR +msgid "Slices for {0}" +msgstr "" + +#: STRUC_DEF_SLICE_NAME +msgid "Slice Name" +msgstr "" + +#: STRUC_DEF_SLICE_PAR +msgid "Slice {0}" +msgstr "" + +#: STRUC_DEF_SNOMED +msgid "SNOMED-CT Code" +msgstr "" + +#: STRUC_DEF_SNOMED_CODE +msgid "SNOMED CT code" +msgstr "" + +#: STRUC_DEF_SNOMED_CT +msgid "SNOMED CT" +msgstr "" + +#: STRUC_DEF_STAND_STAT +msgid "Standard Status" +msgstr "" + +#: STRUC_DEF_STAND_STATUS +msgid "Standards Status =" +msgstr "" + +#: STRUC_DEF_START +msgid "Starter" +msgstr "" + +#: STRUC_DEF_START_DEF +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: STRUC_DEF_STRING_FORM +msgid "String Format" +msgstr "" + +#: STRUC_DEF_STRUCTURES +msgid "Structures" +msgstr "" + +#: STRUC_DEF_SUIT_SHALL_CODE +msgid "Unless not suitable, these codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SUMM +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_SUMMARY +msgid "Summary" +msgstr "" + +#: STRUC_DEF_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_TARG_SUPP +msgid "This target must be supported" +msgstr "" + +#: STRUC_DEF_TEMPLATEID +msgid "Instance of this type are validated by templateId" +msgstr "" + +#: STRUC_DEF_TERM_BIND +msgid "Terminology Bindings (Differential)" +msgstr "" + +#: STRUC_DEF_TERM_BINDS +msgid "Terminology Bindings" +msgstr "" + +#: STRUC_DEF_THEN_TYPE +msgid "then the type is" +msgstr "" + +#: STRUC_DEF_THIS_REFERS +msgid "This structure refers to these other structures" +msgstr "" + +#: STRUC_DEF_TODO +msgid "todo" +msgstr "" + +#: STRUC_DEF_TYPE +msgid "Type" +msgstr "" + +#: STRUC_DEF_TYPE_BOUND +msgid "This type can be bound to a value set using the {0}" +msgstr "" + +#: STRUC_DEF_TYPE_SET +msgid "This type can be bound to a value set using the "" +msgstr "" + +#: STRUC_DEF_TYPE_SPEC +msgid "Type Specifier" +msgstr "" + +#: STRUC_DEF_TYPE_SUPP +msgid "This type must be supported" +msgstr "" + +#: STRUC_DEF_UCUM +msgid "UCUM" +msgstr "" + +#: STRUC_DEF_UI +msgid "UI" +msgstr "" + +#: STRUC_DEF_UI_CONT +msgid "This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context" +msgstr "" + +#: STRUC_DEF_UNADORNED +msgid "In the XML format, this property is represented as unadorned text." +msgstr "" + +#: STRUC_DEF_UNDEF_ACT +msgid "Obligations that apply to the undefined actor {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_APPROACH +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_REF +msgid "Unknown reference to {0}" +msgstr "" + +#: STRUC_DEF_UNORDERED +msgid "Unordered" +msgstr "" + +#: STRUC_DEF_UNSPECIFIED +msgid "Unspecified" +msgstr "" + +#: STRUC_DEF_URI +msgid "URI" +msgstr "" + +#: STRUC_DEF_URL +msgid "URL" +msgstr "" + +#: STRUC_DEF_URLS +msgid "URL:" +msgstr "" + +#: STRUC_DEF_VALID +msgid "Validation" +msgstr "" + +#: STRUC_DEF_VALID_UNKNOWN +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_VALUE +msgid "Value Set" +msgstr "" + +#: STRUC_DEF_VALUESET +msgid "ValueSet" +msgstr "" + +#: STRUC_DEF_VALUESET_CODE +msgid "ValueSet / Code" +msgstr "" + +#: STRUC_DEF_VALUE_ALT +msgid "Value Alternatives" +msgstr "" + +#: STRUC_DEF_VALUE_REQ +msgid "Value Required" +msgstr "" + +#: STRUC_DEF_WHAT +msgid "What goes here" +msgstr "" + +#: STRUC_DEF_XHTML +msgid "This property is represented as XHTML Text in the XML." +msgstr "" + +#: STRUC_DEF_XML +msgid "XML" +msgstr "" + +#: STRUC_DEF_XML_ACTUAL +msgid "In the XML format, this property has the actual name" +msgstr "" + +#: STRUC_DEF_XML_ATTRIBUTE +msgid "In the XML format, this property is represented as an attribute." +msgstr "" + +#: STRUC_DEF_XML_ELE +msgid "XML Element Name" +msgstr "" + +#: STRUC_DEF_XML_FORM +msgid "XML Format" +msgstr "" + +#: STRUC_DEF_XML_NAME +msgid "XML Namespace" +msgstr "" + +#: STRUC_DEF_XSI +msgid "The type of this property is determined using the "" +msgstr "" + +#: SUB_TOPIC_COMP +msgid "Comparators" +msgstr "" + +#: SUB_TOPIC_CREATE +msgid "* create result = {0}" +msgstr "" + +#: SUB_TOPIC_CRITERIA +msgid "Criteria" +msgstr "" + +#: SUB_TOPIC_DELETE +msgid "* delete result = {0}" +msgstr "" + +#: SUB_TOPIC_DESC +msgid "Description" +msgstr "" + +#: SUB_TOPIC_EVENT +msgid "Event" +msgstr "" + +#: SUB_TOPIC_FHIR_PATH +msgid "FHIR Path" +msgstr "" + +#: SUB_TOPIC_FILT_DEF +msgid "Filter Definition" +msgstr "" + +#: SUB_TOPIC_FILT_PAR +msgid "Filter Parameter" +msgstr "" + +#: SUB_TOPIC_INCL +msgid "Includes" +msgstr "" + +#: SUB_TOPIC_INT +msgid "Interactions" +msgstr "" + +#: SUB_TOPIC_MOD +msgid "Modifiers" +msgstr "" + +#: SUB_TOPIC_PREV +msgid "* previous = {0}" +msgstr "" + +#: SUB_TOPIC_REQ +msgid "* require both = {0}" +msgstr "" + +#: SUB_TOPIC_RES +msgid "Resource" +msgstr "" + +#: SUB_TOPIC_RES_TRIG +msgid "Resource Triggers" +msgstr "" + +#: SUB_TOPIC_REV_INCL +msgid "Reverse Includes" +msgstr "" + +#: TERMINOLOGY_LVL +msgid "Lvl" +msgstr "" + +#: TERMINOLOGY_SNOMED +msgid "SNOMED-CT" +msgstr "" + +#: TERM_REND_COPY +msgid "Copy {0} Format to clipboard" +msgstr "" + +#: TEST_PLAN_ASS +msgid "Assertion" +msgstr "" + +#: TEST_PLAN_ASSERTION +msgid "Assertion {0}" +msgstr "" + +#: TEST_PLAN_CASE +msgid "Test Case" +msgstr "" + +#: TEST_PLAN_CASE_SEQ +msgid "Test Case - Sequence {0}" +msgstr "" + +#: TEST_PLAN_CATEGORY +msgid "Category:" +msgstr "" + +#: TEST_PLAN_CONT +msgid "Contact:" +msgstr "" + +#: TEST_PLAN_CONTENT +msgid "Content" +msgstr "" + +#: TEST_PLAN_DATA +msgid "Test Data" +msgstr "" + +#: TEST_PLAN_DEP +msgid "Test Plant Dependency:" +msgstr "" + +#: TEST_PLAN_DEPEN +msgid "Test Plant Dependencies:" +msgstr "" + +#: TEST_PLAN_DESC +msgid "Dependency - no description" +msgstr "" + +#: TEST_PLAN_LANG +msgid "Language" +msgstr "" + +#: TEST_PLAN_RESULT +msgid "Result" +msgstr "" + +#: TEST_PLAN_RUN +msgid "Test Run" +msgstr "" + +#: TEST_PLAN_SCOPE +msgid "Test Plant Scope:" +msgstr "" + +#: TEST_PLAN_SCOPES +msgid "Test Plant Scopes:" +msgstr "" + +#: TEST_PLAN_SOURCE +msgid "Source[x]" +msgstr "" + +#: TEST_PLAN_TEST_DATA +msgid "Test Data {0}" +msgstr "" + +#: TEST_PLAN_TEST_RUN +msgid "Test Run {0}" +msgstr "" + +#: TEST_PLAN_TYPE +msgid "Type" +msgstr "" + +#: TEXT_ICON_CHOICE +msgid "Choice of Types" +msgstr "" + +#: TEXT_ICON_DATATYPE +msgid "Data Type" +msgstr "" + +#: TEXT_ICON_ELEMENT +msgid "Element" +msgstr "" + +#: TEXT_ICON_EXTENSION +msgid "Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_COMPLEX +msgid "Complex Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_SIMPLE +msgid "Simple Extension" +msgstr "" + +#: TEXT_ICON_FIXED +msgid "Fixed Value" +msgstr "" + +#: TEXT_ICON_KEY +msgid "JSON Key Value" +msgstr "" + +#: TEXT_ICON_OBJECT_BOX +msgid "Object" +msgstr "" + +#: TEXT_ICON_PRIMITIVE +msgid "Primitive Data Type" +msgstr "" + +#: TEXT_ICON_PROFILE +msgid "Profile" +msgstr "" + +#: TEXT_ICON_REFERENCE +msgid "Reference to another Resource" +msgstr "" + +#: TEXT_ICON_RESOURCE +msgid "Resource" +msgstr "" + +#: TEXT_ICON_REUSE +msgid "Reference to another Element" +msgstr "" + +#: TEXT_ICON_SLICE +msgid "Slice Definition" +msgstr "" + +#: TEXT_ICON_SLICE_ITEM +msgid "Slice Item" +msgstr "" #: TX_CODE msgid "Code" @@ -570,3 +3924,316 @@ msgstr "" #: TX_VERSION msgid "Version" msgstr "" + +#: VALUE_SET_ADD_DESIG +msgid "Additional Designations and Language Displays" +msgstr "" + +#: VALUE_SET_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: VALUE_SET_ALL_CODE +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure:" +msgstr "" + +#: VALUE_SET_ALL_CODES_DEF +msgid "all codes defined in" +msgstr "" + +#: VALUE_SET_AND +msgid "and" +msgstr "" + +#: VALUE_SET_AT_LEAST +msgid "at least" +msgstr "" + +#: VALUE_SET_AUS +msgid "Australian" +msgstr "" + +#: VALUE_SET_CODE +msgid "Code" +msgstr "" + +#: VALUE_SET_CODES_FROM +msgid "codes from" +msgstr "" + +#: VALUE_SET_CODE_ITEM +msgid "The code for the item" +msgstr "" + +#: VALUE_SET_CODE_SELEC +msgid "This value set cannot be fully expanded, but a selection ( {0} codes) of the whole set of codes is shown here." +msgstr "" + +#: VALUE_SET_COMMA +msgid "," +msgstr "" + +#: VALUE_SET_CONT +msgid "Value Set Contents" +msgstr "" + +#: VALUE_SET_CONTAINS +msgid "This value set contains" +msgstr "" + +#: VALUE_SET_CONT_STRUC +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure:" +msgstr "" + +#: VALUE_SET_DANISH +msgid "Danish" +msgstr "" + +#: VALUE_SET_DEF +msgid "Definition" +msgstr "" + +#: VALUE_SET_DESCENDENTOF +msgid "descends from" +msgstr "" + +#: VALUE_SET_DESIG +msgid "Additional Designations" +msgstr "" + +#: VALUE_SET_DISPLAY +msgid "Display" +msgstr "" + +#: VALUE_SET_DISPLAY_ITEM +msgid "The display for the item" +msgstr "" + +#: VALUE_SET_DOESNT_EXIST +msgid "doesn't exist" +msgstr "" + +#: VALUE_SET_DUTCH +msgid "Dutch" +msgstr "" + +#: VALUE_SET_EQUAL +msgid "=" +msgstr "" + +#: VALUE_SET_ERROR +msgid "Error Expanding ValueSet: {0}" +msgstr "" + +#: VALUE_SET_EXC +msgid "exclude" +msgstr "" + +#: VALUE_SET_EXCL +msgid "Exclude" +msgstr "" + +#: VALUE_SET_EXCLUDED_FROM +msgid "Excluded from" +msgstr "" + +#: VALUE_SET_EXISTS +msgid "exists" +msgstr "" + +#: VALUE_SET_EXP +msgid "Expansion based on example code system" +msgstr "" + +#: VALUE_SET_EXPANSION +msgid "Expansion based on" +msgstr "" + +#: VALUE_SET_EXPANSIONS +msgid "Expansion based on:" +msgstr "" + +#: VALUE_SET_EXP_FRAG +msgid "Expansion based on code system fragment" +msgstr "" + +#: VALUE_SET_GENERALIZES +msgid "generalizes" +msgstr "" + +#: VALUE_SET_HAS +msgid "This value set has" +msgstr "" + +#: VALUE_SET_IMPORT +msgid "Import all the codes that are contained in the intersection of" +msgstr "" + +#: VALUE_SET_IN +msgid "in" +msgstr "" + +#: VALUE_SET_INACT +msgid "inactive" +msgstr "" + +#: VALUE_SET_INACTIVE +msgid "Inactive" +msgstr "" + +#: VALUE_SET_INC +msgid "Include" +msgstr "" + +#: VALUE_SET_INCLUDED_INTO +msgid "Included into" +msgstr "" + +#: VALUE_SET_INF +msgid "This value set cannot be expanded because of the way it is defined - it has an infinite number of members." +msgstr "" + +#: VALUE_SET_INT +msgid "International" +msgstr "" + +#: VALUE_SET_ISA +msgid "is-a" +msgstr "" + +#: VALUE_SET_ISNOTA +msgid "is-not-a" +msgstr "" + +#: VALUE_SET_LEVEL +msgid "Level" +msgstr "" + +#: VALUE_SET_LOINCV +msgid "Loinc v" +msgstr "" + +#: VALUE_SET_NOTE +msgid "Note: {0}" +msgstr "" + +#: VALUE_SET_NOTIN +msgid "not in" +msgstr "" + +#: VALUE_SET_NOT_DEF +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined" +msgstr "" + +#: VALUE_SET_NOT_FOUND +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure:" +msgstr "" + +#: VALUE_SET_NO_VER +msgid "(no version)" +msgstr "" + +#: VALUE_SET_NO_VERSION +msgid "(no version) (" +msgstr "" + +#: VALUE_SET_NULL +msgid "null" +msgstr "" + +#: VALUE_SET_NULLS +msgid "?ngen-13?" +msgstr "" + +#: VALUE_SET_NUMBER_CONCEPTS +msgid "This value set expansion contains {0} concepts." +msgstr "" + +#: VALUE_SET_OID +msgid "OID" +msgstr "" + +#: VALUE_SET_OID_TERM_SYS +msgid "for OID based terminology systems" +msgstr "" + +#: VALUE_SET_REGEX +msgid "matches (by regex)" +msgstr "" + +#: VALUE_SET_RULES_EXC +msgid "This value set excludes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_RULES_INC +msgid "This value set includes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_SEL +msgid "This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown" +msgstr "" + +#: VALUE_SET_SNOMED +msgid "SNOMED CT {0} edition" +msgstr "" + +#: VALUE_SET_SNOMED_ADD +msgid "SNOMED CT {0} edition {1}" +msgstr "" + +#: VALUE_SET_SPAN +msgid "Spanish" +msgstr "" + +#: VALUE_SET_SPEC_NAME +msgid "Fully specified name" +msgstr "" + +#: VALUE_SET_SWEDISH +msgid "Swedish" +msgstr "" + +#: VALUE_SET_SYNONYM +msgid "Synonym" +msgstr "" + +#: VALUE_SET_SYSTEM +msgid "System" +msgstr "" + +#: VALUE_SET_THESE_CODES_DEF +msgid "these codes as defined in" +msgstr "" + +#: VALUE_SET_TOO_COSTLY +msgid "This value set cannot be expanded because the terminology server(s) deemed it too costly to do so" +msgstr "" + +#: VALUE_SET_UK +msgid "United Kingdom" +msgstr "" + +#: VALUE_SET_US +msgid "United States" +msgstr "" + +#: VALUE_SET_USED_ELSEWHERE +msgid "This value set is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: VALUE_SET_VERSION +msgid "version" +msgstr "" + +#: VALUE_SET_WHERE +msgid "where" +msgstr "" + +#: VALUE_SET_WHERE_CODES +msgid ", where the codes are contained in" +msgstr "" + +#: VS_ABSTRACT_CODE_HINT +msgid "This code is not selectable ('Abstract')" +msgstr "" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-nl.po b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-nl.po index c26db29ea..7589a2fe9 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-nl.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/rendering-phrases-nl.po @@ -1,5 +1,147 @@ -// en -> nl -Plural-Forms: nplurals=2; plural=n != 1; + +#: ACTOR_DEF_ACT +msgid "Actor: {0}" +msgstr "" + +#: ACTOR_DEF_CAP +msgid "Capabilities:" +msgstr "" + +#: ACTOR_DEF_DER +msgid "Derived from:" +msgstr "" + +#: ACTOR_DEF_REF +msgid "References:" +msgstr "" + +#: ACTOR_DEF_TYP +msgid "Type: {0}" +msgstr "" + +#: ADD_BIND_ADD_BIND +msgid "Additional Bindings" +msgstr "" + +#: ADD_BIND_ALL_REP +msgid "All repeats" +msgstr "" + +#: ADD_BIND_ANY +msgid "Any" +msgstr "" + +#: ADD_BIND_ANY_REP +msgid "any repeat" +msgstr "" + +#: ADD_BIND_ANY_REPS +msgid "Any repeats" +msgstr "" + +#: ADD_BIND_COMPONENT +msgid "Component" +msgstr "" + +#: ADD_BIND_CURR_BIND +msgid "Current Binding" +msgstr "" + +#: ADD_BIND_DESIG_SYS +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: ADD_BIND_DOC +msgid "Documentation" +msgstr "" + +#: ADD_BIND_EXT_PREF +msgid "A required binding, for use when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: ADD_BIND_EX_BIND +msgid "Extensible Binding" +msgstr "" + +#: ADD_BIND_GIVEN_CONT +msgid "This value set is provided to user look up in a given context" +msgstr "" + +#: ADD_BIND_MAX +msgid "Max Binding" +msgstr "" + +#: ADD_BIND_MIN +msgid "Min Binding" +msgstr "" + +#: ADD_BIND_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: ADD_BIND_NEW_REC +msgid "New records are required to use this value set, but legacy records may use other codes" +msgstr "" + +#: ADD_BIND_PREFERRED +msgid "Preferred" +msgstr "" + +#: ADD_BIND_PREF_BIND +msgid "Preferred Binding" +msgstr "" + +#: ADD_BIND_PUR +msgid "Purpose" +msgstr "" + +#: ADD_BIND_RECOM_VALUE_SET +msgid "This is the value set that is recommended (documentation should explain why)" +msgstr "" + +#: ADD_BIND_REQUIRED +msgid "Required" +msgstr "" + +#: ADD_BIND_REQ_BIND +msgid "Required Binding" +msgstr "" + +#: ADD_BIND_STARTER +msgid "Starter" +msgstr "" + +#: ADD_BIND_UI +msgid "UI" +msgstr "" + +#: ADD_BIND_UI_BIND +msgid "UI Binding" +msgstr "" + +#: ADD_BIND_UNKNOWN_PUR +msgid "Unknown code for purpose" +msgstr "" + +#: ADD_BIND_USE +msgid "Usage" +msgstr "" + +#: ADD_BIND_VALID_EXT +msgid "Validators will check this binding (strength = extensible)" +msgstr "" + +#: ADD_BIND_VALID_REQ +msgid "Validators will check this binding (strength = required)" +msgstr "" + +#: ADD_BIND_VALUE_COMP +msgid "This value set is a component of the base value set" +msgstr "" + +#: BIND_REND_NO_CONTENT +msgid "No Content Type" +msgstr "" #: BUNDLE_DOCUMENT_CONTENT msgid "Additional Document Content" @@ -69,6 +211,14 @@ msgstr "Resource {0}:" msgid "Response:" msgstr "Response:" +#: BUNDLE_REV_EXCP +msgid "Exception generating narrative: {0}" +msgstr "" + +#: BUNDLE_REV_INV_DOC +msgid "Invalid document - first entry is not a Composition" +msgstr "" + #: BUNDLE_SEARCH msgid "Search:" msgstr "Zoeken:" @@ -81,6 +231,334 @@ msgstr "mode = {0}" msgid "Score = {0}" msgstr "score = {0}" +#: BUND_REND_GEN_NARR +msgid "generating narrative" +msgstr "" + +#: BUND_REND_INVALID_DOC +msgid "Invalid document ''{0}'' - first entry is not a Composition ({0})" +msgstr "" + +#: BUND_REND_RES +msgid "resource" +msgstr "" + +#: CANON_REND_COMMITTEE +msgid "Committee" +msgstr "" + +#: CANON_REND_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: CANON_REND_DEFINITION +msgid "Definition" +msgstr "" + +#: CANON_REND_JSON +msgid "JSON" +msgstr "" + +#: CANON_REND_MATURITY +msgid "Maturity" +msgstr "" + +#: CANON_REND_NAME +msgid "Name" +msgstr "" + +#: CANON_REND_PUBLISHER +msgid "Publisher" +msgstr "" + +#: CANON_REND_SOURCE_RES +msgid "Source Resource" +msgstr "" + +#: CANON_REND_STATUS +msgid "Status" +msgstr "" + +#: CANON_REND_TITLE +msgid "Title" +msgstr "" + +#: CANON_REND_TURTLE +msgid "Turtle" +msgstr "" + +#: CANON_REND_URL +msgid "Defining URL" +msgstr "" + +#: CANON_REND_VER +msgid "Version" +msgstr "" + +#: CANON_REND_XML +msgid "XML" +msgstr "" + +#: CAPABILITY_ADD_SUPP_PROF +msgid "Additional supported profiles:" +msgstr "" + +#: CAPABILITY_BASE_SYS +msgid "Base System Profile" +msgstr "" + +#: CAPABILITY_COMB_SEARCH_PAR +msgid "Combined Search Parameters" +msgstr "" + +#: CAPABILITY_CONF +msgid "Conformance" +msgstr "" + +#: CAPABILITY_CORS_NO +msgid "Enable CORS: no" +msgstr "" + +#: CAPABILITY_CORS_YES +msgid "Enable CORS: yes" +msgstr "" + +#: CAPABILITY_CREATE_INT +msgid "POST a new resource (create interaction)" +msgstr "" + +#: CAPABILITY_CRIT +msgid "Criteria" +msgstr "" + +#: CAPABILITY_DELETE_INT +msgid "DELETE a resource (delete interaction)" +msgstr "" + +#: CAPABILITY_DOC +msgid "Documentation" +msgstr "" + +#: CAPABILITY_EXT_OP +msgid "Extended Operations" +msgstr "" + +#: CAPABILITY_FHIR +msgid "Core FHIR Resource" +msgstr "" + +#: CAPABILITY_FHIR_VER +msgid "FHIR Version: {0}" +msgstr "" + +#: CAPABILITY_HISTORY_INT +msgid "GET changes to a resource (history interaction on instance)" +msgstr "" + +#: CAPABILITY_HISTORY_TYPE +msgid "GET changes for all resources of the type (history interaction on type)" +msgstr "" + +#: CAPABILITY_IMP_VER +msgid "Implementation Guide Version: {0}" +msgstr "" + +#: CAPABILITY_INT +msgid "interaction." +msgstr "" + +#: CAPABILITY_INTER_SUPP +msgid "The interactions supported by each resource (" +msgstr "" + +#: CAPABILITY_INT_DESC +msgid "interaction described as follows:" +msgstr "" + +#: CAPABILITY_INT_SUMM +msgid "Interaction summary" +msgstr "" + +#: CAPABILITY_NOTE_CAP +msgid "Note to Implementers: FHIR Capabilities" +msgstr "" + +#: CAPABILITY_OP +msgid "Operations" +msgstr "" + +#: CAPABILITY_OPER +msgid "Operation" +msgstr "" + +#: CAPABILITY_OTH_RES_ENB +msgid "The other resources enabled for" +msgstr "" + +#: CAPABILITY_PAR +msgid "Parameter" +msgstr "" + +#: CAPABILITY_PARS +msgid "Parameters" +msgstr "" + +#: CAPABILITY_PATCH_INT +msgid "PATCH a new resource version (patch interaction)" +msgstr "" + +#: CAPABILITY_PROF +msgid "Profile" +msgstr "" + +#: CAPABILITY_PROF_CONF +msgid "Profile Conformance" +msgstr "" + +#: CAPABILITY_PROF_MAP +msgid "Profile Mapping" +msgstr "" + +#: CAPABILITY_PUB_BY +msgid "Published by: {0}" +msgstr "" + +#: CAPABILITY_PUB_ON +msgid "Published on: {0}" +msgstr "" + +#: CAPABILITY_READ_INT +msgid "GET a resource (read interaction)" +msgstr "" + +#: CAPABILITY_REF_PROF +msgid "Reference Policy" +msgstr "" + +#: CAPABILITY_REQ_RECOM +msgid "Required and recommended search parameters" +msgstr "" + +#: CAPABILITY_REST_CAPS +msgid "FHIR RESTful Capabilities" +msgstr "" + +#: CAPABILITY_REST_CONFIG +msgid "REST Configuration: {0}" +msgstr "" + +#: CAPABILITY_RES_CONF +msgid "Resource Conformance: {0}" +msgstr "" + +#: CAPABILITY_RES_ENB +msgid "The linked resources enabled for" +msgstr "" + +#: CAPABILITY_RES_OPER +msgid "The operations on the resource (if any)" +msgstr "" + +#: CAPABILITY_RES_PRO +msgid "Capabilities by Resource/Profile" +msgstr "" + +#: CAPABILITY_RES_TYP +msgid "Resource Type" +msgstr "" + +#: CAPABILITY_REV_PROF +msgid "The relevant profiles (if any)" +msgstr "" + +#: CAPABILITY_SEARCHES +msgid "Searches" +msgstr "" + +#: CAPABILITY_SEARCH_INT +msgid "GET all set of resources of the type (search interaction)" +msgstr "" + +#: CAPABILITY_SEARCH_PAR +msgid "The required, recommended, and some optional search parameters (if any)." +msgstr "" + +#: CAPABILITY_SEARCH_PARS +msgid "Search Parameters" +msgstr "" + +#: CAPABILITY_SHOULD_SUPP +msgid "SHOULD Support the Following Implementation Guides" +msgstr "" + +#: CAPABILITY_SUMM +msgid "Summary" +msgstr "" + +#: CAPABILITY_SUMM_RES +msgid "The summary table lists the resources that are part of this configuration, and for each resource it lists:" +msgstr "" + +#: CAPABILITY_SUMM_SYS_INT +msgid "Summary of System-wide Interactions" +msgstr "" + +#: CAPABILITY_SUPP +msgid "support" +msgstr "" + +#: CAPABILITY_SUPPS +msgid "Supports" +msgstr "" + +#: CAPABILITY_SUPP_FORM +msgid "Supported Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PATCH_FORM +msgid "Supported Patch Formats:" +msgstr "" + +#: CAPABILITY_SUPP_PROF +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_PROFS +msgid "Supported Profiles" +msgstr "" + +#: CAPABILITY_SUPP_THE +msgid "Supports the" +msgstr "" + +#: CAPABILITY_TYP +msgid "Type" +msgstr "" + +#: CAPABILITY_TYPS +msgid "Types" +msgstr "" + +#: CAPABILITY_TYP_PRES +msgid "ype are only present if at least one of the resources has support for them." +msgstr "" + +#: CAPABILITY_UPDATE_INT +msgid "PUT a new resource version (update interaction)" +msgstr "" + +#: CAPABILITY_VREAD_INT +msgid "GET past versions of resources (vread interaction)" +msgstr "" + +#: CAPABILTY_ALLOW_CAP +msgid "Any FHIR capability may be 'allowed' by the system unless explicitly marked as \"SHALL NOT\". A few items are marked as MAY in the Implementation Guide to highlight their potential relevance to the use case." +msgstr "" + +#: CAPABILTY_SHALL_SUPP +msgid "SHALL Support the Following Implementation Guides" +msgstr "" + #: CODEPROP_CODE msgid "Code" msgstr "" @@ -161,6 +639,918 @@ msgstr "" msgid "URI" msgstr "" +#: CODE_SYS_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: CODE_SYS_CODE +msgid "Code" +msgstr "" + +#: CODE_SYS_CODE_NOT_HERE +msgid "This CodeSystem is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: CODE_SYS_COMPLETE +msgid "All the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_CONTENT +msgid "Content" +msgstr "" + +#: CODE_SYS_COPY +msgid "Copy" +msgstr "" + +#: CODE_SYS_DISP +msgid "displays" +msgstr "" + +#: CODE_SYS_DISP_PROP +msgid "displays and properties" +msgstr "" + +#: CODE_SYS_EXAMPLE +msgid "A few representative concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_FEAT +msgid "features" +msgstr "" + +#: CODE_SYS_FOR_OID +msgid "for OID based terminology systems" +msgstr "" + +#: CODE_SYS_FRAGMENT +msgid "A subset of the code system concepts are included in the code system resource" +msgstr "" + +#: CODE_SYS_IN_A_HIERARCHY +msgid "in a {0} hierarchy" +msgstr "" + +#: CODE_SYS_NOTPRESENT +msgid "None of the concepts defined by the code system are included in the code system resource" +msgstr "" + +#: CODE_SYS_OID +msgid "OID" +msgstr "" + +#: CODE_SYS_PROP +msgid "properties" +msgstr "" + +#: CODE_SYS_REPLACED_BY +msgid "(replaced by" +msgstr "" + +#: CODE_SYS_SUPPLEMENT +msgid "This code system resource is a supplement to" +msgstr "" + +#: CODE_SYS_THE_VALUE_SET +msgid "is the value set for all codes in this code system" +msgstr "" + +#: CODE_SYS_UNDEF_HIER +msgid "in an undefined heirarchy" +msgstr "" + +#: CODE_SYS_UNKN_MODE +msgid "Unknown CodeSystemContentMode mode" +msgstr "" + +#: CODE_SYS_VALUE_SET +msgid "Value Set" +msgstr "" + +#: CONC_MAP_CMNT +msgid "Comment" +msgstr "" + +#: CONC_MAP_CODE +msgid "Code" +msgstr "" + +#: CONC_MAP_CODES +msgid "Codes" +msgstr "" + +#: CONC_MAP_CODE_SYS_UNSPEC +msgid "unspecified code system" +msgstr "" + +#: CONC_MAP_FRM +msgid "from" +msgstr "" + +#: CONC_MAP_FROM +msgid "Mapping from" +msgstr "" + +#: CONC_MAP_GRP +msgid "Group {0}" +msgstr "" + +#: CONC_MAP_NOT_SPEC +msgid "(not specified)" +msgstr "" + +#: CONC_MAP_NO_PROD_USE +msgid "(not intended for production usage)." +msgstr "" + +#: CONC_MAP_PROP +msgid "Properties" +msgstr "" + +#: CONC_MAP_PUB_ON +msgid "Published on {0}" +msgstr "" + +#: CONC_MAP_REL +msgid "Relationship" +msgstr "" + +#: CONC_MAP_SOURCE +msgid "Source Code" +msgstr "" + +#: CONC_MAP_SRC_DET +msgid "Source Concept Details" +msgstr "" + +#: CONC_MAP_TO +msgid "to" +msgstr "" + +#: CONC_MAP_TRGT +msgid "Target Code" +msgstr "" + +#: CONC_MAP_TRGT_DET +msgid "Target Concept Details" +msgstr "" + +#: DATA_REND_AFTRBKFST +msgid "after breakfast" +msgstr "" + +#: DATA_REND_AFTRDINR +msgid "after dinner" +msgstr "" + +#: DATA_REND_AFTRLUNCH +msgid "after lunch" +msgstr "" + +#: DATA_REND_AFTRMEALS +msgid "after meals" +msgstr "" + +#: DATA_REND_AFTRWKNG +msgid "after waking" +msgstr "" + +#: DATA_REND_ATBKFST +msgid "at breakfast" +msgstr "" + +#: DATA_REND_ATDINR +msgid "at dinner" +msgstr "" + +#: DATA_REND_ATLUNCH +msgid "at lunch" +msgstr "" + +#: DATA_REND_BASE64 +msgid "(base64 data - {0} bytes)" +msgstr "" + +#: DATA_REND_BFBKFST +msgid "before breakfast" +msgstr "" + +#: DATA_REND_BFDINR +msgid "before dinner" +msgstr "" + +#: DATA_REND_BFLUNCH +msgid "before lunch" +msgstr "" + +#: DATA_REND_BFMEALS +msgid "before meals" +msgstr "" + +#: DATA_REND_BFSLEEP +msgid "before sleeping" +msgstr "" + +#: DATA_REND_BY +msgid "By" +msgstr "" + +#: DATA_REND_CODE +msgid "Code" +msgstr "" + +#: DATA_REND_CODES +msgid "Codes:" +msgstr "" + +#: DATA_REND_COND +msgid "Condition" +msgstr "" + +#: DATA_REND_COUNT +msgid "Count {0}" +msgstr "" + +#: DATA_REND_DATA +msgid "Data: {0}" +msgstr "" + +#: DATA_REND_DETAILS +msgid "(Details: {0} code" +msgstr "" + +#: DATA_REND_DETAILS_STATED +msgid "(Details: {0} code {1} {2} {3} ', stated as ' {4} {5}" +msgstr "" + +#: DATA_REND_DICOM +msgid "DICOM" +msgstr "" + +#: DATA_REND_DIM +msgid "Dimensions: {0}" +msgstr "" + +#: DATA_REND_DURATION +msgid "Duration {0}" +msgstr "" + +#: DATA_REND_ERROR +msgid "Error: {0}" +msgstr "" + +#: DATA_REND_EVENTS +msgid "Events: {0}" +msgstr "" + +#: DATA_REND_EXCEPTION +msgid "Exception" +msgstr "" + +#: DATA_REND_FACT +msgid "Factor: {0}" +msgstr "" + +#: DATA_REND_FAX +msgid "Fax: {0}" +msgstr "" + +#: DATA_REND_FILT +msgid "Filter" +msgstr "" + +#: DATA_REND_GETCODE +msgid "Code: {0}" +msgstr "" + +#: DATA_REND_GLN +msgid "Global Location Number" +msgstr "" + +#: DATA_REND_ICD +msgid "ICD-9" +msgstr "" + +#: DATA_REND_INT +msgid "Interval: {0}" +msgstr "" + +#: DATA_REND_LIMIT +msgid "Limit" +msgstr "" + +#: DATA_REND_LOINC +msgid "LOINC" +msgstr "" + +#: DATA_REND_LOWER +msgid "Lower: {0}" +msgstr "" + +#: DATA_REND_MEALS +msgid "at meals" +msgstr "" + +#: DATA_REND_MKDWN_LNK +msgid "Unable to resolve markdown link" +msgstr "" + +#: DATA_REND_NAME +msgid "Name" +msgstr "" + +#: DATA_REND_NOT_STAT +msgid "[not stated]" +msgstr "" + +#: DATA_REND_NO_DISP +msgid "No display for {0}" +msgstr "" + +#: DATA_REND_ONCE +msgid "Once" +msgstr "" + +#: DATA_REND_ONGOING +msgid "(ongoing)" +msgstr "" + +#: DATA_REND_ORIGIN +msgid "Origin: {0}" +msgstr "" + +#: DATA_REND_PER +msgid "per" +msgstr "" + +#: DATA_REND_PERIOD +msgid "period:" +msgstr "" + +#: DATA_REND_PHONE +msgid "Phone: {0}" +msgstr "" + +#: DATA_REND_RXNORM +msgid "RxNorm" +msgstr "" + +#: DATA_REND_SEARCH +msgid "Search on: {0}" +msgstr "" + +#: DATA_REND_SNOMED +msgid "SNOMED CT" +msgstr "" + +#: DATA_REND_SORT +msgid "Sort" +msgstr "" + +#: DATA_REND_SOURCE +msgid "source" +msgstr "" + +#: DATA_REND_STARTING +msgid "Starting {0}" +msgstr "" + +#: DATA_REND_SUB +msgid "Subject" +msgstr "" + +#: DATA_REND_THESE_CODES +msgid "One of these codes:" +msgstr "" + +#: DATA_REND_TIMING +msgid "Timing" +msgstr "" + +#: DATA_REND_TO_DO +msgid "to do: {0}" +msgstr "" + +#: DATA_REND_TYPE +msgid "Type" +msgstr "" + +#: DATA_REND_UCUM +msgid "UCUM" +msgstr "" + +#: DATA_REND_UNKNWN +msgid "unknown" +msgstr "" + +#: DATA_REND_UNRD_EX +msgid "WARNING: Unrenderable Modifier Extension!" +msgstr "" + +#: DATA_REND_UNTIL +msgid "Until {0}" +msgstr "" + +#: DATA_REND_UP +msgid "Upper: {0}" +msgstr "" + +#: DATA_REND_USE +msgid "use:" +msgstr "" + +#: DATA_REND_VALUE +msgid "Value" +msgstr "" + +#: DATA_REND_VALUESET +msgid "In ValueSet" +msgstr "" + +#: DATA_REND_VERSION +msgid "(version = {0} {1}" +msgstr "" + +#: DIAG_REP_REND_AGE +msgid "Age" +msgstr "" + +#: DIAG_REP_REND_CODE +msgid "Code" +msgstr "" + +#: DIAG_REP_REND_CODECON +msgid "Coded Conclusions :" +msgstr "" + +#: DIAG_REP_REND_ERR +msgid "Error:" +msgstr "" + +#: DIAG_REP_REND_FLAG +msgid "Flags" +msgstr "" + +#: DIAG_REP_REND_FOR +msgid "for" +msgstr "" + +#: DIAG_REP_REND_IDEN +msgid "Identifier: {0}" +msgstr "" + +#: DIAG_REP_REND_IDENTIFIER +msgid "Identifier" +msgstr "" + +#: DIAG_REP_REND_NOTDONE +msgid "Not done yet" +msgstr "" + +#: DIAG_REP_REND_NOTE +msgid "Note" +msgstr "" + +#: DIAG_REP_REND_NOTRES +msgid "This Observation could not be resolved" +msgstr "" + +#: DIAG_REP_REND_OBS +msgid "Observation" +msgstr "" + +#: DIAG_REP_REND_PER +msgid "Performer" +msgstr "" + +#: DIAG_REP_REND_REFRAN +msgid "Reference Range" +msgstr "" + +#: DIAG_REP_REND_REP +msgid "Reported" +msgstr "" + +#: DIAG_REP_REND_REPDET +msgid "Report Details" +msgstr "" + +#: DIAG_REP_REND_REQ +msgid "Request: {0}" +msgstr "" + +#: DIAG_REP_REND_REQUEST +msgid "Request" +msgstr "" + +#: DIAG_REP_REND_SUB +msgid "Subject" +msgstr "" + +#: DIAG_REP_REND_UNABLE +msgid "Unable to get Patient Details" +msgstr "" + +#: DIAG_REP_REND_VALUE +msgid "Value" +msgstr "" + +#: DIAG_REP_REND_WHEN +msgid "When For" +msgstr "" + +#: EXAMPLE_SCEN_STEP_SCEN +msgid "Step {0} - See scenario\n {1}" +msgstr "" + +#: EXAMPLE_SCEN_UNABLE_TO_FIND +msgid "Unable to find referenced version {0} within instance {1}" +msgstr "" + +#: EX_SCEN_ALT +msgid "Alternative {0}" +msgstr "" + +#: EX_SCEN_BEL +msgid "below" +msgstr "" + +#: EX_SCEN_CONT +msgid "Content" +msgstr "" + +#: EX_SCEN_CONTA +msgid "Contains:" +msgstr "" + +#: EX_SCEN_DESC +msgid "Description" +msgstr "" + +#: EX_SCEN_ERR_REN +msgid "Error rendering ExampleScenario {0}" +msgstr "" + +#: EX_SCEN_FVER +msgid "FHIR version" +msgstr "" + +#: EX_SCEN_IN +msgid "Initiator" +msgstr "" + +#: EX_SCEN_NAME +msgid "Name" +msgstr "" + +#: EX_SCEN_OTH +msgid "See other scenario" +msgstr "" + +#: EX_SCEN_POSTCON +msgid "Post-conditions:" +msgstr "" + +#: EX_SCEN_PRECON +msgid "Pre-conditions:" +msgstr "" + +#: EX_SCEN_PROC +msgid "Process: {0}" +msgstr "" + +#: EX_SCEN_REC +msgid "Receiver" +msgstr "" + +#: EX_SCEN_REQ +msgid "Request" +msgstr "" + +#: EX_SCEN_RES +msgid "Response" +msgstr "" + +#: EX_SCEN_SEE +msgid "See subprocess" +msgstr "" + +#: EX_SCEN_STEP +msgid "Step" +msgstr "" + +#: EX_SCEN_TIME +msgid "... time passes ...\n" +msgstr "" + +#: EX_SCEN_TYPE +msgid "Type" +msgstr "" + +#: EX_SCEN_UN +msgid "Unknown ExampleScenario Renderer Mode {0}" +msgstr "" + +#: EX_SCEN_UN_ACT +msgid "Unable to find referenced actor {0}" +msgstr "" + +#: EX_SCEN_UN_INST +msgid "Unable to find referenced instance {0}" +msgstr "" + +#: EX_SCEN_VER +msgid "version" +msgstr "" + +#: IMP_GUIDE_URL +msgid "The official URL for this implementation guide is:" +msgstr "" + +#: LIB_REND_ART +msgid "Related Artifacts" +msgstr "" + +#: LIB_REND_AUT +msgid "Author" +msgstr "" + +#: LIB_REND_CONT +msgid "Contents" +msgstr "" + +#: LIB_REND_ED +msgid "Editor" +msgstr "" + +#: LIB_REND_END +msgid "Endorser" +msgstr "" + +#: LIB_REND_NOCONT +msgid "No Content" +msgstr "" + +#: LIB_REND_PAR +msgid "Participants" +msgstr "" + +#: LIB_REND_PARA +msgid "Parameters" +msgstr "" + +#: LIB_REND_REQ +msgid "Data Requirements" +msgstr "" + +#: LIB_REND_REV +msgid "Reviewer" +msgstr "" + +#: LIB_REND_SHOW +msgid "Content not shown - (" +msgstr "" + +#: LIB_REND_SIZE +msgid ", size = {0}" +msgstr "" + +#: LIST_REND_CODE +msgid "Code: {0}" +msgstr "" + +#: LIST_REND_DAT +msgid "Date" +msgstr "" + +#: LIST_REND_DATE +msgid "Date: {0}" +msgstr "" + +#: LIST_REND_DEL +msgid "Deleted" +msgstr "" + +#: LIST_REND_ENC +msgid "Encounter:" +msgstr "" + +#: LIST_REND_FLAG +msgid "Flag" +msgstr "" + +#: LIST_REND_ITEM +msgid "Items" +msgstr "" + +#: LIST_REND_MODE +msgid "Mode: {0}" +msgstr "" + +#: LIST_REND_ORD +msgid "Order: {0}" +msgstr "" + +#: LIST_REND_SRC +msgid "Source:" +msgstr "" + +#: LIST_REND_STAT +msgid "Status: {0}" +msgstr "" + +#: LIST_REND_SUB +msgid "Subject:" +msgstr "" + +#: MAP_DEFAULT_COMMENT +msgid "This element was not defined prior to R5" +msgstr "" + +#: NAME_SYS_COM +msgid "Comment" +msgstr "" + +#: NAME_SYS_COPY +msgid "Copyright" +msgstr "" + +#: NAME_SYS_DEF +msgid "Definition" +msgstr "" + +#: NAME_SYS_FOROID +msgid "for OID based terminology systems" +msgstr "" + +#: NAME_SYS_IDEN +msgid "Identifiers" +msgstr "" + +#: NAME_SYS_NAME +msgid "Name" +msgstr "" + +#: NAME_SYS_OID +msgid "OID" +msgstr "" + +#: NAME_SYS_PER +msgid "Period" +msgstr "" + +#: NAME_SYS_PREF +msgid "Preferred" +msgstr "" + +#: NAME_SYS_PUB +msgid "Publisher" +msgstr "" + +#: NAME_SYS_STAT +msgid "Status" +msgstr "" + +#: NAME_SYS_SUM +msgid "Summary" +msgstr "" + +#: NAME_SYS_TITLE +msgid "Title" +msgstr "" + +#: NAME_SYS_TYPE +msgid "Type" +msgstr "" + +#: NAME_SYS_URL +msgid "Defining URL" +msgstr "" + +#: NAME_SYS_VALUE +msgid "Value" +msgstr "" + +#: NAME_SYS_VER +msgid "Version" +msgstr "" + +#: OBLIG_ACT +msgid "Actor" +msgstr "" + +#: OBLIG_DOC +msgid "Documentation" +msgstr "" + +#: OBLIG_ELE +msgid "Elements" +msgstr "" + +#: OBLIG_FILT +msgid "Filter" +msgstr "" + +#: OBLIG_OBLIG +msgid "Obligations" +msgstr "" + +#: OBLIG_USE +msgid "Usage" +msgstr "" + +#: OP_DEF_BIND +msgid "Binding" +msgstr "" + +#: OP_DEF_CARD +msgid "Cardinality" +msgstr "" + +#: OP_DEF_DOC +msgid "Documentation" +msgstr "" + +#: OP_DEF_INPAR +msgid "Input parameters Profile:" +msgstr "" + +#: OP_DEF_NAME +msgid "Name" +msgstr "" + +#: OP_DEF_OFFIC +msgid "The official URL for this operation definition is:" +msgstr "" + +#: OP_DEF_OUTPAR +msgid "Output parameters Profile:" +msgstr "" + +#: OP_DEF_PAR +msgid "Parameters" +msgstr "" + +#: OP_DEF_SCO +msgid "Scope" +msgstr "" + +#: OP_DEF_TYPE +msgid "Type" +msgstr "" + +#: OP_DEF_URL +msgid "URL: [base]/{0}" +msgstr "" + +#: OP_DEF_URLS +msgid "URL: [base]/${0}" +msgstr "" + +#: OP_DEF_USE +msgid "Use" +msgstr "" + +#: OP_OUT_CODE +msgid "Code" +msgstr "" + +#: OP_OUT_DET +msgid "Details" +msgstr "" + +#: OP_OUT_DIAG +msgid "Diagnostics" +msgstr "" + +#: OP_OUT_LOC +msgid "Location" +msgstr "" + +#: OP_OUT_NOT +msgid "Not done yet" +msgstr "" + +#: OP_OUT_OK +msgid "All OK" +msgstr "" + +#: OP_OUT_SEV +msgid "Severity" +msgstr "" + +#: OP_OUT_SRC +msgid "Source" +msgstr "" + +#: OP_OUT_TODO +msgid "todo" +msgstr "" + +#: PAR_REND_PAR +msgid "Parameters" +msgstr "" + #: PAT_ACTIVE msgid "Active:" msgstr "" @@ -186,7 +1576,7 @@ msgid "Ways to contact the Patient" msgstr "" #: PAT_CONTAINED -msgid "Contained Resource" +msgid "Contained Resources" msgid_plural "Contained Resources" msgstr[0] "" msgstr[1] "" @@ -211,8 +1601,14 @@ msgstr "" msgid "General Practitioner" msgstr "" +#: PAT_LANG +msgid "Languages:" +msgid_plural "Languages:" +msgstr[0] "" +msgstr[1] "" + #: PAT_LANG_HINT -msgid "Language spoken" +msgid "Languages spoken" msgid_plural "Languages spoken" msgstr[0] "" msgstr[1] "" @@ -221,12 +1617,6 @@ msgstr[1] "" msgid "(preferred)" msgstr "" -#: PAT_LANG -msgid "Language:" -msgid_plural "Languages:" -msgstr[0] "" -msgstr[1] "" - #: PAT_LINKS msgid "Links:" msgstr "" @@ -299,15 +1689,15 @@ msgstr "" msgid "Organization:" msgstr "" -#: PAT_OTHER_ID_HINT -msgid "Other Id (see the one above)" -msgid_plural "Other Ids (see the one above)" +#: PAT_OTHER_ID +msgid "Other Ids:" +msgid_plural "Other Ids:" msgstr[0] "" msgstr[1] "" -#: PAT_OTHER_ID -msgid "Other Id:" -msgid_plural "Other Ids:" +#: PAT_OTHER_ID_HINT +msgid "Other Ids (see the one above)" +msgid_plural "Other Ids (see the one above)" msgstr[0] "" msgstr[1] "" @@ -323,10 +1713,606 @@ msgstr "" msgid "Relationships:" msgstr "" +#: PROF_DRIV_ERR_GEN_NARR +msgid "Error Generating Narrative for" +msgstr "" + +#: PROF_DRIV_EXCP +msgid "Exception Generating Narrative: {0}" +msgstr "" + +#: PROF_DRIV_FEXCP +msgid "Cannot find definition for {0}" +msgstr "" + +#: PROF_DRIV_GEN_NARR +msgid "Generated Narrative: {0} {1}" +msgstr "" + +#: PROV_ACT +msgid "Activity" +msgstr "" + +#: PROV_AGE +msgid "Agents" +msgstr "" + +#: PROV_BEHALF +msgid "On Behalf Of" +msgstr "" + +#: PROV_FOR +msgid "Provenance for {0}" +msgstr "" + +#: PROV_LOC +msgid "Location" +msgstr "" + +#: PROV_NOT +msgid "Not done yet" +msgstr "" + +#: PROV_OCC +msgid "Occurrence" +msgstr "" + +#: PROV_POL +msgid "Policy" +msgstr "" + +#: PROV_PROV +msgid "Provenance for" +msgstr "" + +#: PROV_PROVE +msgid "Provenance for:" +msgstr "" + +#: PROV_REC +msgid "Recorded" +msgstr "" + +#: PROV_ROLE +msgid "Role" +msgstr "" + +#: PROV_SUM +msgid "Summary" +msgstr "" + +#: PROV_TYPE +msgid "Type" +msgstr "" + +#: PROV_WHO +msgid "who" +msgstr "" + +#: QUEST_ADD_INFO +msgid "Additional information about the item" +msgstr "" + +#: QUEST_ALLOWED +msgid "Allowed Answers" +msgstr "" + +#: QUEST_ANSW +msgid "Answer options for {0}" +msgstr "" + +#: QUEST_ANSWER +msgid "Answer" +msgstr "" + +#: QUEST_ANSWERS +msgid "Answers" +msgstr "" + +#: QUEST_APP +msgid "Approval Date" +msgstr "" + +#: QUEST_ARE_TRUE +msgid "?? are true:" +msgstr "" + +#: QUEST_ATTRIBUTES +msgid "Other attributes of the item" +msgstr "" + +#: QUEST_CALC +msgid "Calculated Value" +msgstr "" + +#: QUEST_CAND +msgid "Candidates" +msgstr "" + +#: QUEST_CARD +msgid "Cardinality" +msgstr "" + +#: QUEST_CAT +msgid "Category: {0}" +msgstr "" + +#: QUEST_CODE +msgid "Code" +msgstr "" + +#: QUEST_CONT +msgid "Context" +msgstr "" + +#: QUEST_COPYRIGHT +msgid "Copyright" +msgstr "" + +#: QUEST_DEF +msgid "Definition:" +msgstr "" + +#: QUEST_DEFINITION +msgid "Definition" +msgstr "" + +#: QUEST_DERIVED +msgid "Derived From" +msgstr "" + +#: QUEST_DESC +msgid "Description & Constraints" +msgstr "" + +#: QUEST_DESCRIPTION +msgid "Description" +msgstr "" + +#: QUEST_DISPLAY +msgid "Is optional to display" +msgstr "" + +#: QUEST_DISPLAY_CAT +msgid "Display Category" +msgstr "" + +#: QUEST_EFF_PERIOD +msgid "Effective Period" +msgstr "" + +#: QUEST_EN +msgid "Enable When" +msgstr "" + +#: QUEST_ENABLE +msgid "Enable When:" +msgstr "" + +#: QUEST_EXP +msgid "Expressions:" +msgstr "" + +#: QUEST_EXPER +msgid "Experimental" +msgstr "" + +#: QUEST_FLAG +msgid "Flags" +msgstr "" + +#: QUEST_GROUP +msgid "Group" +msgstr "" + +#: QUEST_HIDDEN +msgid "Is a hidden item" +msgstr "" + +#: QUEST_HIDDEN_ITEM +msgid "Hidden Item" +msgstr "" + +#: QUEST_ID +msgid "Link Id" +msgstr "" + +#: QUEST_INITIAL +msgid "Initial Value:" +msgstr "" + +#: QUEST_INITIALLY +msgid "(initially selected)" +msgstr "" + +#: QUEST_INITIAL_ANSWER +msgid "Initial Answer" +msgstr "" + +#: QUEST_INT +msgid "Initial Values" +msgstr "" + +#: QUEST_ITEM +msgid "Item" +msgstr "" + +#: QUEST_ITEM_CONT +msgid "Item Context" +msgstr "" + +#: QUEST_LINK +msgid "The linkID for the item" +msgstr "" + +#: QUEST_LINKED +msgid "Is linked to an observation" +msgstr "" + +#: QUEST_LINKID +msgid "LinkID" +msgstr "" + +#: QUEST_MAND +msgid "Mandatory" +msgstr "" + +#: QUEST_MAX +msgid "Max Length:" +msgstr "" + +#: QUEST_MAX_LENGTH +msgid "Max Length" +msgstr "" + +#: QUEST_NAME +msgid "Name" +msgstr "" + +#: QUEST_NLM +msgid "NLM Forms Library" +msgstr "" + +#: QUEST_NONE_SPEC +msgid "None specified" +msgstr "" + +#: QUEST_NOT_DONE +msgid "Not done yet" +msgstr "" + +#: QUEST_OBSERVATION +msgid "Observation Link Period" +msgstr "" + +#: QUEST_OPT +msgid "Options Sets" +msgstr "" + +#: QUEST_OPTIONS +msgid "Options:" +msgstr "" + +#: QUEST_ORIENTATION +msgid "Orientation: {0}" +msgstr "" + +#: QUEST_PREFIX +msgid "Prefix" +msgstr "" + +#: QUEST_PUB +msgid "Publication Date" +msgstr "" + +#: QUEST_PURPOSE +msgid "Purpose" +msgstr "" + +#: QUEST_QUEST +msgid "Questionnaire" +msgstr "" + +#: QUEST_QUESTION +msgid "Questionnaire:" +msgstr "" + +#: QUEST_QUESTIONNAIRE +msgid "Questionnaire {0}" +msgstr "" + +#: QUEST_READONLY +msgid "Is Read Only" +msgstr "" + +#: QUEST_READ_ONLY +msgid "Read Only" +msgstr "" + +#: QUEST_REP +msgid "Repeats" +msgstr "" + +#: QUEST_REQ +msgid "Required" +msgstr "" + +#: QUEST_RESP +msgid "QuestionnaireResponse" +msgstr "" + +#: QUEST_RESP_ROOT +msgid "QuestionnaireResponseRoot" +msgstr "" + +#: QUEST_REV_DATE +msgid "Last Review Date" +msgstr "" + +#: QUEST_ROOT +msgid "QuestionnaireRoot" +msgstr "" + +#: QUEST_STATUS +msgid "Status" +msgstr "" + +#: QUEST_STRUCT +msgid "Structure" +msgstr "" + +#: QUEST_SUB +msgid "Subject" +msgstr "" + +#: QUEST_SUBJECT +msgid "Can change the subject of the questionnaire" +msgstr "" + +#: QUEST_SUB_TYPE +msgid "Subject Type" +msgstr "" + +#: QUEST_TEXT +msgid "Text" +msgstr "" + +#: QUEST_TEXTFOR +msgid "Text for the item" +msgstr "" + +#: QUEST_TIMES +msgid "Minimum and Maximum # of times the item can appear in the instance" +msgstr "" + +#: QUEST_TITLE +msgid "Title" +msgstr "" + +#: QUEST_TODO +msgid "todo" +msgstr "" + +#: QUEST_TRUE +msgid "are true:" +msgstr "" + +#: QUEST_TRY +msgid "Try this questionnaire out:" +msgstr "" + +#: QUEST_TRY_QUEST +msgid "Try this QuestionnaireResponse out:" +msgstr "" + +#: QUEST_TYPE +msgid "Type" +msgstr "" + +#: QUEST_TYPE_ITEM +msgid "The type of the item" +msgstr "" + +#: QUEST_UNKNOWN_MODE +msgid "Unknown QuestionnaireResponse Renderer Mode" +msgstr "" + +#: QUEST_URL +msgid "URL" +msgstr "" + +#: QUEST_VALUE +msgid "Value Set:" +msgstr "" + +#: QUEST_VALUE_SET +msgid "Value Set" +msgstr "" + +#: QUEST_VERSION +msgid "Version" +msgstr "" + +#: REND_ADDED +msgid "Added:" +msgstr "" + +#: REND_CHANGED +msgid "Changed:" +msgstr "" + +#: REND_REMOVED +msgid "Removed:" +msgstr "" + +#: REND_ROW_CHANGED_SINCE +msgid "This row of content has been changed since {0}" +msgstr "" + +#: REND_ROW_CHANGED_SINCE_WAS +msgid "This row of content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_ROW_REMOVED_SINCE +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_ROW_SINCE +msgid "This row of content has been added since {0}" +msgstr "" + +#: REND_SINCE_ADDED +msgid "This content has been added since {0}" +msgstr "" + +#: REND_SINCE_CHANGED +msgid "This content has been changed since {0}" +msgstr "" + +#: REND_SINCE_CHANGED_WAS +msgid "This content has been changed since {0} (was ''{1}'')" +msgstr "" + +#: REND_SINCE_DELETED +msgid "This content has been removed since {0}" +msgstr "" + +#: REND_STANDARDS +msgid "Standards Status = {0}" +msgstr "" + +#: REQ_ACTOR +msgid "These requirements apply to the actor" +msgstr "" + +#: REQ_DERIVE +msgid "These requirements derive from" +msgstr "" + +#: REQ_DERIVED +msgid "Derived From:" +msgstr "" + +#: REQ_FOLLOWING_ACTOR +msgid "These requirements apply to the following actors:" +msgstr "" + +#: REQ_FOLLOWING_REQ +msgid "These requirements are derived from the following requirements:" +msgstr "" + +#: REQ_LINKS +msgid "Links:" +msgstr "" + +#: REQ_REFERENCES +msgid "References:" +msgstr "" + +#: REQ_SATISFIED +msgid "Satisfied By:" +msgstr "" + +#: REQ_SOURCES +msgid "Source:" +msgstr "" + #: RESOURCE_COPYRIGHT msgid "Copyright Statement:" msgstr "" +#: RES_REND_ACT +msgid "Active" +msgstr "" + +#: RES_REND_COND_REF +msgid "Conditional Reference:" +msgstr "" + +#: RES_REND_DESC +msgid ". Description: (todo)" +msgstr "" + +#: RES_REND_DRAFT +msgid "draft" +msgstr "" + +#: RES_REND_ERROR +msgid "Error rendering: {0}" +msgstr "" + +#: RES_REND_EXP +msgid "Experimental" +msgstr "" + +#: RES_REND_GEN_SUM +msgid ". Generated Summary:" +msgstr "" + +#: RES_REND_INFO_SOURCE +msgid "Information Source:" +msgstr "" + +#: RES_REND_LANGUAGE +msgid "(Language" +msgstr "" + +#: RES_REND_PROF +msgid "Profile" +msgstr "" + +#: RES_REND_PROFILE +msgid "Profile" +msgstr "" + +#: RES_REND_RESOURCE +msgid "Resource" +msgstr "" + +#: RES_REND_RET +msgid "retired" +msgstr "" + +#: RES_REND_SECURITY +msgid "Security Label" +msgstr "" + +#: RES_REND_SECURITY_LABEL +msgid "Security Label" +msgstr "" + +#: RES_REND_SEE_ON_THIS_PAGE +msgid "See on this page:" +msgstr "" + +#: RES_REND_SPEC_RULES +msgid "Special rules apply:" +msgstr "" + +#: RES_REND_TAG +msgid "Tag" +msgstr "" + +#: RES_REND_TODO +msgid "todo" +msgstr "" + +#: RES_REND_UNKNOWN +msgid "Unknown" +msgstr "" + +#: RES_REND_UPDATED +msgid "Updated" +msgstr "" + +#: RES_REND_VER +msgid "(version" +msgstr "" + +#: RES_REND_VERSION +msgid "Version" +msgstr "" + #: SD_COMP_HEAD_CARD_L msgid "L Card." msgstr "" @@ -539,6 +2525,12 @@ msgstr "" msgid "This profile was published on {0} as a {1} by {2}" msgstr "" +#: SD_SUMMARY_SLICE +msgid "The element {0} is sliced based on the values of {1}" +msgid_plural "The element {0} is sliced based on the values of {1}" +msgstr[0] "" +msgstr[1] "" + #: SD_SUMMARY_SLICES msgid "This structure defines the following {0}Slices{1}" msgstr "" @@ -547,11 +2539,1373 @@ msgstr "" msgid "There is a slice with no discriminator at {0}" msgstr "" -#: SD_SUMMARY_SLICE -msgid "The element {0} is sliced based on the value of {1}" -msgid_plural "The element {0} is sliced based on the values of {1}" -msgstr[0] "" -msgstr[1] "" +#: SEARCH_PAR_ALLOWED +msgid "Allowed:" +msgstr "" + +#: SEARCH_PAR_CHAIN +msgid "Chains" +msgstr "" + +#: SEARCH_PAR_COMP +msgid "Comparators" +msgstr "" + +#: SEARCH_PAR_EXP +msgid "Expression" +msgstr "" + +#: SEARCH_PAR_MOD +msgid "Modifiers" +msgstr "" + +#: SEARCH_PAR_MULTIPLES +msgid "Multiples" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_APPEAR +msgid "multipleAnd: The parameter may only appear once" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_REPEAT +msgid "multipleAnd: The parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_AND_SERVER +msgid "multipleAnd: It's up to the server whether the parameter may repeat in order to specify multiple values that must all be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_MULTIPLE +msgid "multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_ONE +msgid "multipleOr: The parameter may only have one value (no comma separators)" +msgstr "" + +#: SEARCH_PAR_MULTIPLE_OR_SERVER +msgid "multipleOr: It's up to the server whether the parameter can have multiple values (separated by comma) where at least one must be true" +msgstr "" + +#: SEARCH_PAR_NONE +msgid "(none)" +msgstr "" + +#: SEARCH_PAR_PAR +msgid "Parameter" +msgstr "" + +#: SEARCH_PAR_PROC +msgid "Processing Mode" +msgstr "" + +#: SEARCH_PAR_REND_RES +msgid "Resource" +msgstr "" + +#: SEARCH_PAR_REND_TARGET +msgid "Target Resources" +msgstr "" + +#: SEARCH_PAR_RES +msgid "All Resources" +msgstr "" + +#: STRUC_DEF_ABSTRACT +msgid "This is an abstract" +msgstr "" + +#: STRUC_DEF_ACT +msgid "Obligations that apply to the actor {0}" +msgstr "" + +#: STRUC_DEF_AFFECT_CONSTRAINTS +msgid ""This element has or is affected by constraints (" +msgstr "" + +#: STRUC_DEF_ALLOWED +msgid "Allowed Units" +msgstr "" + +#: STRUC_DEF_ALL_ACTORS +msgid "All Actors" +msgstr "" + +#: STRUC_DEF_ALL_MAP_KEY +msgid "All Mappings are Empty" +msgstr "" + +#: STRUC_DEF_ALL_SLICES +msgid ":All Slices" +msgstr "" + +#: STRUC_DEF_ALL_TYPES +msgid "All Types" +msgstr "" + +#: STRUC_DEF_ALT_NAME +msgid "Alternate Names" +msgstr "" + +#: STRUC_DEF_AND +msgid "and" +msgstr "" + +#: STRUC_DEF_APPROP_CON +msgid "Concepts must come from this value set if appropriate concept is in this value set" +msgstr "" + +#: STRUC_DEF_AS_SHOWN +msgid "As shown" +msgstr "" + +#: STRUC_DEF_BECAUSE +msgid "because" +msgstr "" + +#: STRUC_DEF_BINDING +msgid "Binding" +msgstr "" + +#: STRUC_DEF_BINDINGS +msgid "Binding:" +msgstr "" + +#: STRUC_DEF_BINDING_STYLE +msgid "binding style" +msgstr "" + +#: STRUC_DEF_BIND_STYLE +msgid "Binding Style" +msgstr "" + +#: STRUC_DEF_BLACK +msgid "black" +msgstr "" + +#: STRUC_DEF_BUSINESS_ID +msgid "This is a business identifier, not a resource identifier (see" +msgstr "" + +#: STRUC_DEF_BUSINESS_VERID +msgid "This is a business version Id, not a resource version Id (see" +msgstr "" + +#: STRUC_DEF_CAND +msgid "Candidate" +msgstr "" + +#: STRUC_DEF_CAND_SUB +msgid "This value set is a candidate to substitute for the overall conformance value set in some situations; usually these are defined in the documentation" +msgstr "" + +#: STRUC_DEF_CANNOT_TARGET +msgid "Instances of this logical model cannot be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CANT_FIND +msgid "getElementByName: can't find {0} in {1} from {2}" +msgstr "" + +#: STRUC_DEF_CAN_TARGET +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_CAP +msgid "CAP Code" +msgstr "" + +#: STRUC_DEF_CARD +msgid "Card." +msgstr "" + +#: STRUC_DEF_CDA +msgid "This property is represented as CDA Text in the XML." +msgstr "" + +#: STRUC_DEF_CHILD +msgid "Child" +msgstr "" + +#: STRUC_DEF_CHOICE +msgid "(Choice of one)" +msgstr "" + +#: STRUC_DEF_CHOICE_DATA_TYPE +msgid "Choice of Data Types" +msgstr "" + +#: STRUC_DEF_CHOICE_GRP +msgid "Choice Group" +msgstr "" + +#: STRUC_DEF_CHOICE_OF +msgid "Choice of:" +msgstr "" + +#: STRUC_DEF_CLOSED +msgid "Closed" +msgstr "" + +#: STRUC_DEF_COMMENT +msgid "Comments:" +msgstr "" + +#: STRUC_DEF_COMMENTS +msgid "Comments" +msgstr "" + +#: STRUC_DEF_COMP +msgid "Component" +msgstr "" + +#: STRUC_DEF_COMPLEX +msgid "Complex" +msgstr "" + +#: STRUC_DEF_COMPLEXBRACK +msgid "(complex)" +msgstr "" + +#: STRUC_DEF_COMP_DOC +msgid "This value set is a component of the base value set. Usually this is called out so that documentation can be written about a portion of the value set" +msgstr "" + +#: STRUC_DEF_COMP_EX +msgid "(Complex Extension)" +msgstr "" + +#: STRUC_DEF_COMP_PROF +msgid "Complies with Profile" +msgstr "" + +#: STRUC_DEF_CONC_SET +msgid "Concepts must come from this value set" +msgstr "" + +#: STRUC_DEF_CONFORMANCE +msgid "Conformance" +msgstr "" + +#: STRUC_DEF_CONSTRAINING +msgid "Slice Constraining" +msgstr "" + +#: STRUC_DEF_CONSTRAINTS +msgid "Constraints" +msgstr "" + +#: STRUC_DEF_CONTENT +msgid "Content" +msgstr "" + +#: STRUC_DEF_CONTROL +msgid "Control" +msgstr "" + +#: STRUC_DEF_CONT_RULE +msgid "Content/Rules for all slices" +msgstr "" + +#: STRUC_DEF_CONT_TYPE +msgid "Content/Rules for all Types" +msgstr "" + +#: STRUC_DEF_COPY_URL +msgid "Click to Copy URL" +msgstr "" + +#: STRUC_DEF_CURR +msgid "Current" +msgstr "" + +#: STRUC_DEF_CURR_RULE +msgid "New records are required to use this value set, but legacy records may use other codes. The definition of 'new record' is difficult, since systems often create new records based on pre-existing data. Usually 'current' bindings are mandated by an external authority that makes clear rules around this" +msgstr "" + +#: STRUC_DEF_DATE +msgid "Date Format: {0}" +msgstr "" + +#: STRUC_DEF_DATE_FORM +msgid "Date Format" +msgstr "" + +#: STRUC_DEF_DEF +msgid "Definition:" +msgstr "" + +#: STRUC_DEF_DEFAULT_TYPE +msgid "Default Type" +msgstr "" + +#: STRUC_DEF_DEFAULT_VALUE +msgid "Default Value" +msgstr "" + +#: STRUC_DEF_DEFINITION +msgid "Definition" +msgstr "" + +#: STRUC_DEF_DEF_CODES +msgid "Definitional Codes" +msgstr "" + +#: STRUC_DEF_DERIVED_PROFILE +msgid "In this IG, the following structures are derived from this profile:" +msgstr "" + +#: STRUC_DEF_DESC +msgid "Description" +msgstr "" + +#: STRUC_DEF_DESCRIM +msgid ", and can be differentiated using the following discriminators:" +msgstr "" + +#: STRUC_DEF_DESC_PROF +msgid "Description of the profile" +msgstr "" + +#: STRUC_DEF_DETAILS +msgid "Details" +msgstr "" + +#: STRUC_DEF_DISCUSSION +msgid "discussion" +msgstr "" + +#: STRUC_DEF_ELE +msgid "This primitive element must have a value" +msgstr "" + +#: STRUC_DEF_ELEMENT +msgid "element" +msgstr "" + +#: STRUC_DEF_ELEMENTS +msgid "Elements defined in Ancestors:" +msgstr "" + +#: STRUC_DEF_ELE_AFFECTED +msgid "This element has or is affected by constraints ( {0} {1}" +msgstr "" + +#: STRUC_DEF_ELE_INCLUDED +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_ELE_MUST_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_ELE_READ +msgid "When this element is read" +msgstr "" + +#: STRUC_DEF_ERROR +msgid "Unknown structure mode" +msgstr "" + +#: STRUC_DEF_ERR_DESC +msgid "Error describing concept- not done yet (no codings, no text)" +msgstr "" + +#: STRUC_DEF_EX +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXAM +msgid "example" +msgstr "" + +#: STRUC_DEF_EXAMPLE +msgid "Example" +msgstr "" + +#: STRUC_DEF_EXT +msgid "Extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIBLE +msgid "extensible" +msgstr "" + +#: STRUC_DEF_EXTENSIONS +msgid "Extensions" +msgstr "" + +#: STRUC_DEF_EXT_JSON +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_EXT_STYLE +msgid "Extension Style" +msgstr "" + +#: STRUC_DEF_EX_CODE +msgid "For example codes, see" +msgstr "" + +#: STRUC_DEF_EX_DESC +msgid "Instances are not expected or even encouraged to draw from the specified value set. The value set merely provides examples of the types of concepts intended to be included." +msgstr "" + +#: STRUC_DEF_EX_TYPE +msgid "(Extension Type:" +msgstr "" + +#: STRUC_DEF_EX_URL +msgid "Extension URL = {0}" +msgstr "" + +#: STRUC_DEF_FHIR +msgid "Base FHIR {0}" +msgstr "" + +#: STRUC_DEF_FHIR_EXCEP +msgid "Unable to retrieve StructureDefinition with URL {0}" +msgstr "" + +#: STRUC_DEF_FII +msgid "Formal Invariant Identifier" +msgstr "" + +#: STRUC_DEF_FIXED +msgid "Fixed Value" +msgstr "" + +#: STRUC_DEF_FIXED_VALUE +msgid "Fixed Value:" +msgstr "" + +#: STRUC_DEF_FOR_CODE +msgid "For codes, see" +msgstr "" + +#: STRUC_DEF_FURTHER_INFO +msgid "for further information about how to use [x]" +msgstr "" + +#: STRUC_DEF_GRADE +msgid "Grade" +msgstr "" + +#: STRUC_DEF_ID +msgid "Id" +msgstr "" + +#: STRUC_DEF_ID_EXPECT +msgid "ID Expectation" +msgstr "" + +#: STRUC_DEF_ID_IS +msgid "Id may or not be present (this is the default for elements but not resources)" +msgstr "" + +#: STRUC_DEF_ID_MAY +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_ID_NOT_ALLOW +msgid "An id is not allowed in this context" +msgstr "" + +#: STRUC_DEF_ID_REQ +msgid "Id is required to be present (this is the default for resources but not elements)" +msgstr "" + +#: STRUC_DEF_IF +msgid "If" +msgstr "" + +#: STRUC_DEF_IMPOSE_PROFILE +msgid "Impose Profile" +msgstr "" + +#: STRUC_DEF_INFERRED_JSON +msgid "The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_INVAR +msgid "Invariants" +msgstr "" + +#: STRUC_DEF_INVARIANT +msgid "This element is affected by the following invariants:" +msgstr "" + +#: STRUC_DEF_JSON_ARRAY +msgid "JSON: This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_CAN_NAME +msgid "This type can appear in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_CHILD +msgid "child" +msgstr "" + +#: STRUC_DEF_JSON_ELE +msgid "This element can be extended by named JSON elements" +msgstr "" + +#: STRUC_DEF_JSON_EXT +msgid "(in elements using named extensions)" +msgstr "" + +#: STRUC_DEF_JSON_FORM +msgid "JSON Format" +msgstr "" + +#: STRUC_DEF_JSON_IF +msgid "JSON: If" +msgstr "" + +#: STRUC_DEF_JSON_INFERRED +msgid "JSON: The type of this element is inferred from the JSON type in the instance" +msgstr "" + +#: STRUC_DEF_JSON_IS +msgid "This element is present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY +msgid "This element may be present as a JSON Array even when there are no items in the instance" +msgstr "" + +#: STRUC_DEF_JSON_MAY_PRESENT +msgid "The JSON Array for this property may be present even when there are no items in the instance (e.g. may be present as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NAME +msgid "JSON Property Name" +msgstr "" + +#: STRUC_DEF_JSON_NOT_PRESENT +msgid "The JSON Array for this property is not present when there are no items in the instance (e.g. never as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_NULL +msgid "JSON: This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_JSON_PRESENT +msgid "The JSON Array for this property is present even when there are no items in the instance (e.g. as an empty array)" +msgstr "" + +#: STRUC_DEF_JSON_PROPERTY_NAME +msgid "This property appears in JSON with the property name" +msgstr "" + +#: STRUC_DEF_JSON_SINGLE +msgid "This repeating object is represented as a single JSON object with named properties. The name of the property (key) is the value of the" +msgstr "" + +#: STRUC_DEF_JSON_TYPE +msgid "JSON Property Name for Type" +msgstr "" + +#: STRUC_DEF_LABEL +msgid "Label" +msgstr "" + +#: STRUC_DEF_LEAST_FOLLOW +msgid "At least the following" +msgstr "" + +#: STRUC_DEF_LOGIC +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGICAL +msgid "Logical Model" +msgstr "" + +#: STRUC_DEF_LOGICAL_CONT +msgid "Logical Container" +msgstr "" + +#: STRUC_DEF_LOGIC_NAME +msgid "The logical name of the element" +msgstr "" + +#: STRUC_DEF_LOINC +msgid "LOINC Code" +msgstr "" + +#: STRUC_DEF_LOINC_CODE +msgid "LOINC code" +msgstr "" + +#: STRUC_DEF_MATURITY +msgid "Maturity" +msgstr "" + +#: STRUC_DEF_MAX +msgid "Maximum" +msgstr "" + +#: STRUC_DEF_MAX_LENGTH +msgid "Max Length:" +msgstr "" + +#: STRUC_DEF_MAX_MIN +msgid "Minimum and Maximum # of times the element can appear in the instance" +msgstr "" + +#: STRUC_DEF_MAX_VALUE +msgid "Max Value" +msgstr "" + +#: STRUC_DEF_MEAN_MISS +msgid "Meaning if Missing" +msgstr "" + +#: STRUC_DEF_MIN +msgid "Minimum" +msgstr "" + +#: STRUC_DEF_MIN_ALLOW +msgid "The minimum allowable value set - any conformant system SHALL support all these codes" +msgstr "" + +#: STRUC_DEF_MIN_VALUE +msgid "Min Value" +msgstr "" + +#: STRUC_DEF_MISSING_LINK +msgid "missing link" +msgstr "" + +#: STRUC_DEF_MOD +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MODIF +msgid "Modifier" +msgstr "" + +#: STRUC_DEF_MODIFIER +msgid "Is Modifier" +msgstr "" + +#: STRUC_DEF_MOD_ELEMENT +msgid "This element is a modifier element" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT +msgid "Must Support" +msgstr "" + +#: STRUC_DEF_MUST_SUPPORT_TYPES +msgid "Must Support Types" +msgstr "" + +#: STRUC_DEF_NAME +msgid "Name" +msgstr "" + +#: STRUC_DEF_NAMESPACE +msgid "In the XML format, this property has the namespace" +msgstr "" + +#: STRUC_DEF_NOTE_C +msgid "Note" +msgstr "" + +#: STRUC_DEF_NOTE_X +msgid "[x] Note" +msgstr "" + +#: STRUC_DEF_NOT_MARK +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NOT_MARKED +msgid "Instances of this logical model are not marked to be the target of a Reference" +msgstr "" + +#: STRUC_DEF_NO_DESCRIM +msgid ", and defines no disciminators to differentiate the slices" +msgstr "" + +#: STRUC_DEF_NO_MAPPINGS +msgid "No Mappings" +msgstr "" + +#: STRUC_DEF_NO_MUST_SUPPORT +msgid "No must-support rules about the choice of types/profiles" +msgstr "" + +#: STRUC_DEF_NO_SUMMARY +msgid "No Summary, as this profile has no differential" +msgstr "" + +#: STRUC_DEF_NULL_JSON +msgid "This object can be represented as null in the JSON structure (which counts as 'present' for cardinality purposes)" +msgstr "" + +#: STRUC_DEF_OBLIG +msgid "This element has obligations" +msgstr "" + +#: STRUC_DEF_OBLIGATIONS +msgid "Obligations" +msgstr "" + +#: STRUC_DEF_OBLIG_ADD +msgid "This is an obligation profile that only contains obligations and additional bindings" +msgstr "" + +#: STRUC_DEF_OBLIG_ALL +msgid "Obligations that apply to all actors" +msgstr "" + +#: STRUC_DEF_OBLIG_FROM +msgid "This profile picks up obligations and additional bindings from" +msgstr "" + +#: STRUC_DEF_OBLIG_SUPP +msgid "This element has obligations and must be supported" +msgstr "" + +#: STRUC_DEF_ONE_OF +msgid "One of:" +msgstr "" + +#: STRUC_DEF_OPEN +msgid "Open" +msgstr "" + +#: STRUC_DEF_OPEN_END +msgid "Open At End" +msgstr "" + +#: STRUC_DEF_ORDERED +msgid "Ordered" +msgstr "" + +#: STRUC_DEF_PATH +msgid "Path" +msgstr "" + +#: STRUC_DEF_PATHS +msgid "Path(s)" +msgstr "" + +#: STRUC_DEF_PATT_VALUE +msgid "Pattern Value" +msgstr "" + +#: STRUC_DEF_PREF +msgid "Preferred" +msgstr "" + +#: STRUC_DEF_PREFERRED +msgid "preferred" +msgstr "" + +#: STRUC_DEF_PREFIXED +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREFIX_VALID +msgid "is prefixed to the value before validation" +msgstr "" + +#: STRUC_DEF_PREF_CONT +msgid "This is the value set that is preferred in a given context (documentation should explain why)" +msgstr "" + +#: STRUC_DEF_PRIMITIVE +msgid "Primitive Value" +msgstr "" + +#: STRUC_DEF_PRIM_ELE +msgid "This primitive element may be present, or absent, or replaced by an extension" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_PRESENT +msgid "This primitive type may be present, or absent if replaced by one of the following extensions:" +msgstr "" + +#: STRUC_DEF_PRIM_TYPE_VALUE +msgid "This primitive type must have a value (the value must be present, and cannot be replaced by an extension)" +msgstr "" + +#: STRUC_DEF_PROFILED +msgid "profiled by" +msgstr "" + +#: STRUC_DEF_PROFILE_BUILDS +msgid "This profile builds on" +msgstr "" + +#: STRUC_DEF_PROF_COMP +msgid "This profiles compiles with the profile" +msgstr "" + +#: STRUC_DEF_PROF_REQ +msgid "This profile also requires that the instance also conform this additional profile:" +msgstr "" + +#: STRUC_DEF_PROF_RES +msgid "A profiled resource" +msgstr "" + +#: STRUC_DEF_PROF_SUPP +msgid "This profile must be supported" +msgstr "" + +#: STRUC_DEF_PROPERTY +msgid "Property" +msgstr "" + +#: STRUC_DEF_REF +msgid "Instances of this logical model can be the target of a Reference" +msgstr "" + +#: STRUC_DEF_REFERS_EXT +msgid "This structure refers to these extensions" +msgstr "" + +#: STRUC_DEF_REFER_PROFILE +msgid "In this IG, the following structures refer to this profile:" +msgstr "" + +#: STRUC_DEF_REND_UNABLE_RES +msgid "Unable to resolve StructureDefinition {0} resolving content reference {1}" +msgstr "" + +#: STRUC_DEF_REPEAT +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REPEAT_ELE +msgid "This repeating element order: {0}" +msgstr "" + +#: STRUC_DEF_REP_CHOICE +msgid "This is a repeating choice group that does not appear directly in the instance" +msgstr "" + +#: STRUC_DEF_REQ +msgid "Required" +msgstr "" + +#: STRUC_DEF_REQUIRED +msgid "required" +msgstr "" + +#: STRUC_DEF_REQUIRED_PATT +msgid "Required Pattern:" +msgstr "" + +#: STRUC_DEF_REQUIREMENTS +msgid "Requirements" +msgstr "" + +#: STRUC_DEF_REQ_BIND +msgid "A required binding for additional codes, for us when the binding strength is 'extensible' or 'preferred'" +msgstr "" + +#: STRUC_DEF_REQ_PATT +msgid "Required Pattern" +msgstr "" + +#: STRUC_DEF_ROOT +msgid "The root class that contains instances of this class" +msgstr "" + +#: STRUC_DEF_SEE +msgid "See" +msgstr "" + +#: STRUC_DEF_SET_ARE +msgid ". The slices are" +msgstr "" + +#: STRUC_DEF_SET_SLICES +msgid "This element introduces a set of slices on" +msgstr "" + +#: STRUC_DEF_SHALL_CODE +msgid "The codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SHORT +msgid "Short" +msgstr "" + +#: STRUC_DEF_SHOULD_CODE +msgid "The codes SHOULD be taken from" +msgstr "" + +#: STRUC_DEF_SINGLE_JSON_OBJECTS +msgid "JSON: Represented as a single JSON Object with named properties using the value of the {0} child as the key" +msgstr "" + +#: STRUC_DEF_SLIC +msgid "Slices" +msgstr "" + +#: STRUC_DEF_SLICE +msgid "Slice" +msgstr "" + +#: STRUC_DEF_SLICES +msgid "Slice:" +msgstr "" + +#: STRUC_DEF_SLICE_FOR +msgid "Slices for {0}" +msgstr "" + +#: STRUC_DEF_SLICE_NAME +msgid "Slice Name" +msgstr "" + +#: STRUC_DEF_SLICE_PAR +msgid "Slice {0}" +msgstr "" + +#: STRUC_DEF_SNOMED +msgid "SNOMED-CT Code" +msgstr "" + +#: STRUC_DEF_SNOMED_CODE +msgid "SNOMED CT code" +msgstr "" + +#: STRUC_DEF_SNOMED_CT +msgid "SNOMED CT" +msgstr "" + +#: STRUC_DEF_STAND_STAT +msgid "Standard Status" +msgstr "" + +#: STRUC_DEF_STAND_STATUS +msgid "Standards Status =" +msgstr "" + +#: STRUC_DEF_START +msgid "Starter" +msgstr "" + +#: STRUC_DEF_START_DEF +msgid "This value set is a good set of codes to start with when designing your system" +msgstr "" + +#: STRUC_DEF_STRING_FORM +msgid "String Format" +msgstr "" + +#: STRUC_DEF_STRUCTURES +msgid "Structures" +msgstr "" + +#: STRUC_DEF_SUIT_SHALL_CODE +msgid "Unless not suitable, these codes SHALL be taken from" +msgstr "" + +#: STRUC_DEF_SUMM +msgid "This element is included in summaries" +msgstr "" + +#: STRUC_DEF_SUMMARY +msgid "Summary" +msgstr "" + +#: STRUC_DEF_SUPP +msgid "This element must be supported" +msgstr "" + +#: STRUC_DEF_TARG_SUPP +msgid "This target must be supported" +msgstr "" + +#: STRUC_DEF_TEMPLATEID +msgid "Instance of this type are validated by templateId" +msgstr "" + +#: STRUC_DEF_TERM_BIND +msgid "Terminology Bindings (Differential)" +msgstr "" + +#: STRUC_DEF_TERM_BINDS +msgid "Terminology Bindings" +msgstr "" + +#: STRUC_DEF_THEN_TYPE +msgid "then the type is" +msgstr "" + +#: STRUC_DEF_THIS_REFERS +msgid "This structure refers to these other structures" +msgstr "" + +#: STRUC_DEF_TODO +msgid "todo" +msgstr "" + +#: STRUC_DEF_TYPE +msgid "Type" +msgstr "" + +#: STRUC_DEF_TYPE_BOUND +msgid "This type can be bound to a value set using the {0}" +msgstr "" + +#: STRUC_DEF_TYPE_SET +msgid "This type can be bound to a value set using the "" +msgstr "" + +#: STRUC_DEF_TYPE_SPEC +msgid "Type Specifier" +msgstr "" + +#: STRUC_DEF_TYPE_SUPP +msgid "This type must be supported" +msgstr "" + +#: STRUC_DEF_UCUM +msgid "UCUM" +msgstr "" + +#: STRUC_DEF_UI +msgid "UI" +msgstr "" + +#: STRUC_DEF_UI_CONT +msgid "This value set is provided for user look up in a given context. Typically, these valuesets only include a subset of codes relevant for input in a context" +msgstr "" + +#: STRUC_DEF_UNADORNED +msgid "In the XML format, this property is represented as unadorned text." +msgstr "" + +#: STRUC_DEF_UNDEF_ACT +msgid "Obligations that apply to the undefined actor {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_APPROACH +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_UNKNOWN_REF +msgid "Unknown reference to {0}" +msgstr "" + +#: STRUC_DEF_UNORDERED +msgid "Unordered" +msgstr "" + +#: STRUC_DEF_UNSPECIFIED +msgid "Unspecified" +msgstr "" + +#: STRUC_DEF_URI +msgid "URI" +msgstr "" + +#: STRUC_DEF_URL +msgid "URL" +msgstr "" + +#: STRUC_DEF_URLS +msgid "URL:" +msgstr "" + +#: STRUC_DEF_VALID +msgid "Validation" +msgstr "" + +#: STRUC_DEF_VALID_UNKNOWN +msgid "Instances of this type are validated using an unknown approach: {0}" +msgstr "" + +#: STRUC_DEF_VALUE +msgid "Value Set" +msgstr "" + +#: STRUC_DEF_VALUESET +msgid "ValueSet" +msgstr "" + +#: STRUC_DEF_VALUESET_CODE +msgid "ValueSet / Code" +msgstr "" + +#: STRUC_DEF_VALUE_ALT +msgid "Value Alternatives" +msgstr "" + +#: STRUC_DEF_VALUE_REQ +msgid "Value Required" +msgstr "" + +#: STRUC_DEF_WHAT +msgid "What goes here" +msgstr "" + +#: STRUC_DEF_XHTML +msgid "This property is represented as XHTML Text in the XML." +msgstr "" + +#: STRUC_DEF_XML +msgid "XML" +msgstr "" + +#: STRUC_DEF_XML_ACTUAL +msgid "In the XML format, this property has the actual name" +msgstr "" + +#: STRUC_DEF_XML_ATTRIBUTE +msgid "In the XML format, this property is represented as an attribute." +msgstr "" + +#: STRUC_DEF_XML_ELE +msgid "XML Element Name" +msgstr "" + +#: STRUC_DEF_XML_FORM +msgid "XML Format" +msgstr "" + +#: STRUC_DEF_XML_NAME +msgid "XML Namespace" +msgstr "" + +#: STRUC_DEF_XSI +msgid "The type of this property is determined using the "" +msgstr "" + +#: SUB_TOPIC_COMP +msgid "Comparators" +msgstr "" + +#: SUB_TOPIC_CREATE +msgid "* create result = {0}" +msgstr "" + +#: SUB_TOPIC_CRITERIA +msgid "Criteria" +msgstr "" + +#: SUB_TOPIC_DELETE +msgid "* delete result = {0}" +msgstr "" + +#: SUB_TOPIC_DESC +msgid "Description" +msgstr "" + +#: SUB_TOPIC_EVENT +msgid "Event" +msgstr "" + +#: SUB_TOPIC_FHIR_PATH +msgid "FHIR Path" +msgstr "" + +#: SUB_TOPIC_FILT_DEF +msgid "Filter Definition" +msgstr "" + +#: SUB_TOPIC_FILT_PAR +msgid "Filter Parameter" +msgstr "" + +#: SUB_TOPIC_INCL +msgid "Includes" +msgstr "" + +#: SUB_TOPIC_INT +msgid "Interactions" +msgstr "" + +#: SUB_TOPIC_MOD +msgid "Modifiers" +msgstr "" + +#: SUB_TOPIC_PREV +msgid "* previous = {0}" +msgstr "" + +#: SUB_TOPIC_REQ +msgid "* require both = {0}" +msgstr "" + +#: SUB_TOPIC_RES +msgid "Resource" +msgstr "" + +#: SUB_TOPIC_RES_TRIG +msgid "Resource Triggers" +msgstr "" + +#: SUB_TOPIC_REV_INCL +msgid "Reverse Includes" +msgstr "" + +#: TERMINOLOGY_LVL +msgid "Lvl" +msgstr "" + +#: TERMINOLOGY_SNOMED +msgid "SNOMED-CT" +msgstr "" + +#: TERM_REND_COPY +msgid "Copy {0} Format to clipboard" +msgstr "" + +#: TEST_PLAN_ASS +msgid "Assertion" +msgstr "" + +#: TEST_PLAN_ASSERTION +msgid "Assertion {0}" +msgstr "" + +#: TEST_PLAN_CASE +msgid "Test Case" +msgstr "" + +#: TEST_PLAN_CASE_SEQ +msgid "Test Case - Sequence {0}" +msgstr "" + +#: TEST_PLAN_CATEGORY +msgid "Category:" +msgstr "" + +#: TEST_PLAN_CONT +msgid "Contact:" +msgstr "" + +#: TEST_PLAN_CONTENT +msgid "Content" +msgstr "" + +#: TEST_PLAN_DATA +msgid "Test Data" +msgstr "" + +#: TEST_PLAN_DEP +msgid "Test Plant Dependency:" +msgstr "" + +#: TEST_PLAN_DEPEN +msgid "Test Plant Dependencies:" +msgstr "" + +#: TEST_PLAN_DESC +msgid "Dependency - no description" +msgstr "" + +#: TEST_PLAN_LANG +msgid "Language" +msgstr "" + +#: TEST_PLAN_RESULT +msgid "Result" +msgstr "" + +#: TEST_PLAN_RUN +msgid "Test Run" +msgstr "" + +#: TEST_PLAN_SCOPE +msgid "Test Plant Scope:" +msgstr "" + +#: TEST_PLAN_SCOPES +msgid "Test Plant Scopes:" +msgstr "" + +#: TEST_PLAN_SOURCE +msgid "Source[x]" +msgstr "" + +#: TEST_PLAN_TEST_DATA +msgid "Test Data {0}" +msgstr "" + +#: TEST_PLAN_TEST_RUN +msgid "Test Run {0}" +msgstr "" + +#: TEST_PLAN_TYPE +msgid "Type" +msgstr "" + +#: TEXT_ICON_CHOICE +msgid "Choice of Types" +msgstr "" + +#: TEXT_ICON_DATATYPE +msgid "Data Type" +msgstr "" + +#: TEXT_ICON_ELEMENT +msgid "Element" +msgstr "" + +#: TEXT_ICON_EXTENSION +msgid "Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_COMPLEX +msgid "Complex Extension" +msgstr "" + +#: TEXT_ICON_EXTENSION_SIMPLE +msgid "Simple Extension" +msgstr "" + +#: TEXT_ICON_FIXED +msgid "Fixed Value" +msgstr "" + +#: TEXT_ICON_KEY +msgid "JSON Key Value" +msgstr "" + +#: TEXT_ICON_OBJECT_BOX +msgid "Object" +msgstr "" + +#: TEXT_ICON_PRIMITIVE +msgid "Primitive Data Type" +msgstr "" + +#: TEXT_ICON_PROFILE +msgid "Profile" +msgstr "" + +#: TEXT_ICON_REFERENCE +msgid "Reference to another Resource" +msgstr "" + +#: TEXT_ICON_RESOURCE +msgid "Resource" +msgstr "" + +#: TEXT_ICON_REUSE +msgid "Reference to another Element" +msgstr "" + +#: TEXT_ICON_SLICE +msgid "Slice Definition" +msgstr "" + +#: TEXT_ICON_SLICE_ITEM +msgid "Slice Item" +msgstr "" #: TX_CODE msgid "Code" @@ -576,3 +3930,316 @@ msgstr "" #: TX_VERSION msgid "Version" msgstr "" + +#: VALUE_SET_ADD_DESIG +msgid "Additional Designations and Language Displays" +msgstr "" + +#: VALUE_SET_ADD_LANG +msgid "Additional Language Displays" +msgstr "" + +#: VALUE_SET_ALL_CODE +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure:" +msgstr "" + +#: VALUE_SET_ALL_CODES_DEF +msgid "all codes defined in" +msgstr "" + +#: VALUE_SET_AND +msgid "and" +msgstr "" + +#: VALUE_SET_AT_LEAST +msgid "at least" +msgstr "" + +#: VALUE_SET_AUS +msgid "Australian" +msgstr "" + +#: VALUE_SET_CODE +msgid "Code" +msgstr "" + +#: VALUE_SET_CODES_FROM +msgid "codes from" +msgstr "" + +#: VALUE_SET_CODE_ITEM +msgid "The code for the item" +msgstr "" + +#: VALUE_SET_CODE_SELEC +msgid "This value set cannot be fully expanded, but a selection ( {0} codes) of the whole set of codes is shown here." +msgstr "" + +#: VALUE_SET_COMMA +msgid "," +msgstr "" + +#: VALUE_SET_CONT +msgid "Value Set Contents" +msgstr "" + +#: VALUE_SET_CONTAINS +msgid "This value set contains" +msgstr "" + +#: VALUE_SET_CONT_STRUC +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure:" +msgstr "" + +#: VALUE_SET_DANISH +msgid "Danish" +msgstr "" + +#: VALUE_SET_DEF +msgid "Definition" +msgstr "" + +#: VALUE_SET_DESCENDENTOF +msgid "descends from" +msgstr "" + +#: VALUE_SET_DESIG +msgid "Additional Designations" +msgstr "" + +#: VALUE_SET_DISPLAY +msgid "Display" +msgstr "" + +#: VALUE_SET_DISPLAY_ITEM +msgid "The display for the item" +msgstr "" + +#: VALUE_SET_DOESNT_EXIST +msgid "doesn't exist" +msgstr "" + +#: VALUE_SET_DUTCH +msgid "Dutch" +msgstr "" + +#: VALUE_SET_EQUAL +msgid "=" +msgstr "" + +#: VALUE_SET_ERROR +msgid "Error Expanding ValueSet: {0}" +msgstr "" + +#: VALUE_SET_EXC +msgid "exclude" +msgstr "" + +#: VALUE_SET_EXCL +msgid "Exclude" +msgstr "" + +#: VALUE_SET_EXCLUDED_FROM +msgid "Excluded from" +msgstr "" + +#: VALUE_SET_EXISTS +msgid "exists" +msgstr "" + +#: VALUE_SET_EXP +msgid "Expansion based on example code system" +msgstr "" + +#: VALUE_SET_EXPANSION +msgid "Expansion based on" +msgstr "" + +#: VALUE_SET_EXPANSIONS +msgid "Expansion based on:" +msgstr "" + +#: VALUE_SET_EXP_FRAG +msgid "Expansion based on code system fragment" +msgstr "" + +#: VALUE_SET_GENERALIZES +msgid "generalizes" +msgstr "" + +#: VALUE_SET_HAS +msgid "This value set has" +msgstr "" + +#: VALUE_SET_IMPORT +msgid "Import all the codes that are contained in the intersection of" +msgstr "" + +#: VALUE_SET_IN +msgid "in" +msgstr "" + +#: VALUE_SET_INACT +msgid "inactive" +msgstr "" + +#: VALUE_SET_INACTIVE +msgid "Inactive" +msgstr "" + +#: VALUE_SET_INC +msgid "Include" +msgstr "" + +#: VALUE_SET_INCLUDED_INTO +msgid "Included into" +msgstr "" + +#: VALUE_SET_INF +msgid "This value set cannot be expanded because of the way it is defined - it has an infinite number of members." +msgstr "" + +#: VALUE_SET_INT +msgid "International" +msgstr "" + +#: VALUE_SET_ISA +msgid "is-a" +msgstr "" + +#: VALUE_SET_ISNOTA +msgid "is-not-a" +msgstr "" + +#: VALUE_SET_LEVEL +msgid "Level" +msgstr "" + +#: VALUE_SET_LOINCV +msgid "Loinc v" +msgstr "" + +#: VALUE_SET_NOTE +msgid "Note: {0}" +msgstr "" + +#: VALUE_SET_NOTIN +msgid "not in" +msgstr "" + +#: VALUE_SET_NOT_DEF +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined" +msgstr "" + +#: VALUE_SET_NOT_FOUND +msgid "This include specifies a heirarchy for when value sets are generated for use in a User Interface. The expansion contains this structure, and any codes not found in the structure:" +msgstr "" + +#: VALUE_SET_NO_VER +msgid "(no version)" +msgstr "" + +#: VALUE_SET_NO_VERSION +msgid "(no version) (" +msgstr "" + +#: VALUE_SET_NULL +msgid "null" +msgstr "" + +#: VALUE_SET_NULLS +msgid "?ngen-13?" +msgstr "" + +#: VALUE_SET_NUMBER_CONCEPTS +msgid "This value set expansion contains {0} concepts." +msgstr "" + +#: VALUE_SET_OID +msgid "OID" +msgstr "" + +#: VALUE_SET_OID_TERM_SYS +msgid "for OID based terminology systems" +msgstr "" + +#: VALUE_SET_REGEX +msgid "matches (by regex)" +msgstr "" + +#: VALUE_SET_RULES_EXC +msgid "This value set excludes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_RULES_INC +msgid "This value set includes codes based on the following rules:" +msgstr "" + +#: VALUE_SET_SEL +msgid "This value set has >1000 codes in it. In order to keep the publication size manageable, only a selection (1000 codes) of the whole set of codes is shown" +msgstr "" + +#: VALUE_SET_SNOMED +msgid "SNOMED CT {0} edition" +msgstr "" + +#: VALUE_SET_SNOMED_ADD +msgid "SNOMED CT {0} edition {1}" +msgstr "" + +#: VALUE_SET_SPAN +msgid "Spanish" +msgstr "" + +#: VALUE_SET_SPEC_NAME +msgid "Fully specified name" +msgstr "" + +#: VALUE_SET_SWEDISH +msgid "Swedish" +msgstr "" + +#: VALUE_SET_SYNONYM +msgid "Synonym" +msgstr "" + +#: VALUE_SET_SYSTEM +msgid "System" +msgstr "" + +#: VALUE_SET_THESE_CODES_DEF +msgid "these codes as defined in" +msgstr "" + +#: VALUE_SET_TOO_COSTLY +msgid "This value set cannot be expanded because the terminology server(s) deemed it too costly to do so" +msgstr "" + +#: VALUE_SET_UK +msgid "United Kingdom" +msgstr "" + +#: VALUE_SET_US +msgid "United States" +msgstr "" + +#: VALUE_SET_USED_ELSEWHERE +msgid "This value set is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)" +msgstr "" + +#: VALUE_SET_VERSION +msgid "version" +msgstr "" + +#: VALUE_SET_WHERE +msgid "where" +msgstr "" + +#: VALUE_SET_WHERE_CODES +msgid ", where the codes are contained in" +msgstr "" + +#: VS_ABSTRACT_CODE_HINT +msgid "This code is not selectable ('Abstract')" +msgstr "" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-de.po b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-de.po index c74766f8c..731172ad7 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-de.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-de.po @@ -1,6 +1,3 @@ -// en -> de -Plural-Forms: nplurals=2; plural=n != 1; - #: ABSTRACT_CODE_NOT_ALLOWED msgid "Code ''{0}#{1}'' is abstract, and not allowed in this context" @@ -61,6 +58,14 @@ msgstr "Versuch den Terminologieserver zu verwenden, wenn kein Terminologieserve msgid "Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated" msgstr "Versuch einen Schnappschuss f\u00fcr das Profil ''{0}'' als {1} zu verwenden, bevor er generiert wird" +#: BINDING_ADDITIONAL +msgid "{0} specified in an additional binding" +msgstr "" + +#: BINDING_MAX +msgid "{0} specified in the max binding" +msgstr "" + #: BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE msgid "Found {0} matches for ''{1}'' in the bundle ({2})" msgstr "" @@ -86,7 +91,7 @@ msgid "The {1} resource did not math the profile {2} because: {3}" msgstr "" #: BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT -msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``)" +msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgid_plural "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgstr[0] "" msgstr[1] "" @@ -284,7 +289,7 @@ msgid "The type ''{0}'' is not valid - must be {1} (allowed = {2})" msgstr "Der type ''{0}'' ist nicht g\u00fcltig - muss {1} sein" #: Bundle_BUNDLE_Entry_Type3 -msgid "The type ''{1}'' is not valid - must be of type {2}" +msgid "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgid_plural "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgstr[0] "" msgstr[1] "" @@ -447,7 +452,7 @@ msgid "This property has only the standard code (''{0}'') but not the standard U msgstr "" #: CODESYSTEM_PROPERTY_NO_VALUE -msgid "The property ''{0}'' has no value, and cannot be understoof" +msgid "The property ''{0}'' has no value, and cannot be understood" msgstr "" #: CODESYSTEM_PROPERTY_SYNONYM_CHECK @@ -673,7 +678,7 @@ msgid "Contained resource does not appear to be a FHIR resource (unknown name '' msgstr "Enthaltene Ressource scheint keine FHIR-Ressource zu sein (unbekannter Name ''{0}'')" #: Could_not_match_discriminator_for_slice_in_profile -msgid "Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions" +msgid "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgid_plural "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgstr[0] "" msgstr[1] "" @@ -735,7 +740,7 @@ msgid "Discriminator ({0}) is based on element existence, but slice {1} neither msgstr "Der Diskriminator ({0}) basiert auf der Existenz von Elementen, aber Slice {1} setzt weder min>=1 noch max=0" #: Discriminator__is_based_on_type_but_slice__in__has_multiple_types -msgid "" +msgid "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgid_plural "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgstr[0] "" msgstr[1] "" @@ -745,13 +750,13 @@ msgid "Discriminator ({0}) is based on type, but slice {1} in {2} has no types" msgstr "Der Diskriminator ({0}) basiert auf dem Typ, aber das Slice {1} in {2} hat keine Typen" #: Display_Name_WS_for__should_be_one_of__instead_of -msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" #: Display_Name_for__should_be_one_of__instead_of -msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" @@ -1120,13 +1125,13 @@ msgid "Unable to resolve discriminator {0} on {2} found in the definitions becau msgstr "Der in den Definitionen gefundene Diskriminator {0} auf {2} kann nicht aufgel\u00f6st werden, da die Erweiterung {1} nicht im Profil {3} gefunden wurde." #: FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} type profiles" msgid_plural "Error in discriminator at {1}: no children, {0} type profiles" msgstr[0] "" msgstr[1] "" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} types" msgid_plural "Error in discriminator at {1}: no children, {0} types" msgstr[0] "" msgstr[1] "" @@ -1144,7 +1149,7 @@ msgid "Invalid use of ofType() in discriminator - Type has no code on {0}" msgstr "Ung\u00fcltige Verwendung von ofType() in Diskriminator - Typ verf\u00fcgt \u00fcber keinen Code auf {0}" #: FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgstr[0] "" msgstr[1] "" @@ -1170,7 +1175,7 @@ msgid "Invalid use of ofType() in discriminator - no type on element {0}" msgstr "Unzul\u00e4ssige Verwendung von ofType() im Diskriminator - kein Typ in Element {0} definiert" #: FHIRPATH_FOCUS -msgid "" +msgid "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgstr[0] "" msgstr[1] "" @@ -1183,16 +1188,16 @@ msgstr "Interner Fehler beim Auswerten des FHIRPath-Ausdrucks: Es werden keine H msgid "The type {0} is not valid" msgstr "" -#: FHIRPATH_LEFT_VALUE_WRONG_TYPE -msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" -msgstr "Fehler bei der Auswertung eines FHIRPath-Ausdrucks: Der linke Operand zu {0} hat den falschen Typ {1}" - #: FHIRPATH_LEFT_VALUE -msgid "" +msgid "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgstr[0] "" msgstr[1] "" +#: FHIRPATH_LEFT_VALUE_WRONG_TYPE +msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" +msgstr "Fehler bei der Auswertung eines FHIRPath-Ausdrucks: Der linke Operand zu {0} hat den falschen Typ {1}" + #: FHIRPATH_LOCATION msgid "(at {0})" msgstr "(bei {0})" @@ -1238,6 +1243,10 @@ msgstr "Fehler bei der Auswertung des FHIRPath-Ausdrucks: Der Ausdruckstyp {0} w msgid "Error evaluating FHIRPath expression: The function {0} can only be used on primitives" msgstr "" +#: FHIRPATH_REDEFINE_VARIABLE +msgid "The variable ''{0}'' cannot be redefined" +msgstr "" + #: FHIRPATH_REFERENCE_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1}" msgstr "Fehler bei der Auswertung des FHIRPath-Ausdrucks: Die Funktion {0} kann nur auf einen geordneten String, uri, canonical oder Reference angewendet werden, wurde aber gefunden {1}" @@ -1247,21 +1256,21 @@ msgid "Problem with use of resolve() - profile {0} on {1} could not be resolved" msgstr "Problem bei der Verwendung von resolve() - Profil {0} auf {1} konnte nicht aufgel\u00f6st werden" #: FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgstr[0] "" msgstr[1] "" +#: FHIRPATH_RIGHT_VALUE +msgid "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgstr[0] "" +msgstr[1] "" + #: FHIRPATH_RIGHT_VALUE_WRONG_TYPE msgid "Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1}" msgstr "Fehler bei der Auswertung eines FHIRPath-Ausdrucks: der rechte Operand zu {0} hat den falschen Typ {1}" -#: FHIRPATH_RIGHT_VALUE -msgid "" -msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" -msgstr[0] "" -msgstr[1] "" - #: FHIRPATH_STRING_ORD_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1}" msgstr "Fehler bei der Auswertung des FHIRPath-Ausdrucks: Die Funktion {0} kann nur auf eine geordnete Sammlung von string, uri, code, id angewendet werden, wurde aber {1} gefunden" @@ -1746,7 +1755,7 @@ msgid "Reference to withdrawn {2} {0} from {1}" msgstr "" #: MULTIPLE_LOGICAL_MODELS -msgid "" +msgid "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgid_plural "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgstr[0] "" msgstr[1] "" @@ -1768,7 +1777,7 @@ msgid "The element {0} is not marked as ''mustSupport'' in the profile {1}. Cons msgstr "Das Element {0} ist im Profil {1} nicht als ''mustSupport'' gekennzeichnet. Erw\u00e4gen Sie, das Element nicht zu verwenden oder das Element als ''must-Support'' im Profil zu markieren." #: NO_VALID_DISPLAY_FOUND -msgid "No valid Display Names found for {1}#{2} in the language {4}" +msgid "No valid Display Names found for {1}#{2} in the languages {4}" msgid_plural "No valid Display Names found for {1}#{2} in the languages {4}" msgstr[0] "" msgstr[1] "" @@ -1822,7 +1831,7 @@ msgid "Node type {0} is not allowed" msgstr "Nodetyp {0} ist nicht erlaubt" #: None_of_the_provided_codes_are_in_the_value_set -msgid "The provided code {2} was not found in the value set ''{1}''" +msgid "None of the provided codes [{2}] are in the value set ''{1}''" msgid_plural "None of the provided codes [{2}] are in the value set ''{1}''" msgstr[0] "" msgstr[1] "" @@ -1896,7 +1905,7 @@ msgid "The element definition ``{0}`` in the profile ''{1}'' requires that a val msgstr "" #: PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE -msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present" +msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgid_plural "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgstr[0] "" msgstr[1] "" @@ -1954,7 +1963,7 @@ msgid "Profile based discriminators must have a type with a profile ({0} in prof msgstr "Profilbasierte Diskriminatoren m\u00fcssen einen Typ mit einem Profil ({0} im Profil {1}) haben." #: Profile_based_discriminators_must_have_only_one_type__in_profile -msgid "" +msgid "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgid_plural "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgstr[0] "" msgstr[1] "" @@ -2138,7 +2147,7 @@ msgid "Only one response answer item with this linkId allowed" msgstr "Nur ein Antwortelement mit dieser LinkId zul\u00e4ssig" #: Questionnaire_QR_Item_OnlyOneI -msgid "" +msgid "Only one response item with the linkId {1} allowed - found {0} items" msgid_plural "Only one response item with the linkId {1} allowed - found {0} items" msgstr[0] "" msgstr[1] "" @@ -2160,7 +2169,7 @@ msgid "Cannot validate time answer option because no option list is provided" msgstr "Kann die time answer option nicht validieren, weil keine Optionsliste zur Verf\u00fcgung steht" #: Questionnaire_QR_Item_WrongType -msgid "Answer value must be of the type {1}" +msgid "Answer value must be one of the {0} types {1}" msgid_plural "Answer value must be one of the {0} types {1}" msgstr[0] "" msgstr[1] "" @@ -2379,13 +2388,13 @@ msgid "Profile {0} is for type {1}, which is not a {4} (which is required becaus msgstr "Profil {0} ist f\u00fcr den Typ {1}, der kein {4} ist (was erforderlich ist, weil das Element {3} den Typ {2} hat)" #: SD_ED_TYPE_PROFILE_WRONG_TYPE -msgid "The type {0} is not in the list of allowed type {1} in the profile {2}" +msgid "The type {0} is not in the list of allowed types {1} in the profile {2}" msgid_plural "The type {0} is not in the list of allowed types {1} in the profile {2}" msgstr[0] "" msgstr[1] "" #: SD_ED_TYPE_WRONG_TYPE -msgid "The element has a type {0} which is different to the type {1} on the base profile {2}" +msgid "The element has a type {0} which is not in the types {1} on the base profile {2}" msgid_plural "The element has a type {0} which is not in the types {1} on the base profile {2}" msgstr[0] "" msgstr[1] "" @@ -2874,7 +2883,11 @@ msgid "Could not confirm that the codes provided are from the required value set msgstr "Es konnte nicht best\u00e4tigt werden, dass die angegebenen Codes aus dem required ValueSet {0} stammen, da es keinen Terminologiedienst gibt" #: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES -msgid "The OID ''{0}'' matches multiple code systems ({1})" +msgid "The OID ''{0}'' matches multiple resources ({1})" +msgstr "" + +#: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN +msgid "The OID ''{0}'' matches multiple resources ({2}); {1} was chosen as the most appropriate" msgstr "" #: TERMINOLOGY_TX_SYSTEM_HTTPS @@ -2899,7 +2912,7 @@ msgid "The code system reference {0} is wrong - the code system reference cannot msgstr "Die Code-System-Referenz {0} ist falsch - die Code-System-Referenz kann nicht auf eine HTML-Seite verweisen. Dies k\u00f6nnte die richtige Referenz sein: {1}" #: TERMINOLOGY_TX_UNKNOWN_OID -msgid "The OID ''{0}'' is not known, so the code can't be validated" +msgid "The OID ''{0}'' is not known, so the code can''t be validated" msgstr "" #: TERMINOLOGY_TX_WARNING @@ -3661,7 +3674,7 @@ msgid "The Unicode sequence has unterminated bi-di control characters (see CVE-2 msgstr "!!Die Unicode-Sequenz hat unterminierte bi-di Steuerzeichen (siehe CVE-2021-42574): {1}" #: UNICODE_XML_BAD_CHARS -msgid "This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters" +msgid "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgid_plural "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgstr[0] "" msgstr[1] "" @@ -3809,9 +3822,9 @@ msgid "The System URI could not be determined for the code ''{0}'' in the ValueS msgstr "!!System nicht aufl\u00f6sbar - ValueSet enth\u00e4lt Importe" #: Unable_to_resolve_system__value_set_has_include_with_filter -#| Unable to resolve system - value set {0} include #{1} has a filter on system {2} -msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}" -msgstr "!!System kann nicht aufgel\u00f6st werden - ValueSet {0} include #{1} hat einen Filter auf System {2}" +#| The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3} +msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4}" +msgstr "!!!!System kann nicht aufgel\u00f6st werden - ValueSet {0} include #{1} hat einen Filter auf System {2}" #: Unable_to_resolve_system__value_set_has_include_with_no_system msgid "Unable to resolve system - value set {0} include #{1} has no system" @@ -4052,7 +4065,7 @@ msgid "The resource status ''{0}'' and the standards status ''{1}'' may not be c msgstr "" #: VALUESET_BAD_FILTER_OP -msgid "The operation ''{0}'' is not allowed for property ''{1}''. Allowed ops: {2}" +msgid "The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2}" msgstr "" #: VALUESET_BAD_FILTER_VALUE_BOOLEAN @@ -4091,6 +4104,10 @@ msgstr "" msgid "The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3})" msgstr "" +#: VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE +msgid "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" +msgstr "" + #: VALUESET_BAD_FILTER_VALUE_VALID_REGEX msgid "The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'')" msgstr "" @@ -4214,7 +4231,7 @@ msgid "Published value sets SHALL conform to the ShareableValueSet profile, whic msgstr "!!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_SUPPLEMENT_MISSING -msgid "Required supplement not found: {1}" +msgid "Required supplements not found: {1}" msgid_plural "Required supplements not found: {1}" msgstr[0] "" msgstr[1] "" @@ -4245,7 +4262,7 @@ msgid "The property ''{0}'' is not known for the system ''{1}'', so may not be u msgstr "" #: VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS -msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it's useful, the list of generally known properties for all systems is {2}" +msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2}" msgstr "" #: Validation_BUNDLE_Message @@ -4271,32 +4288,32 @@ msgid_plural "{3}: max allowed = {7}, but found {0} (from {1})" msgstr[0] "" msgstr[1] "" -#: Validation_VAL_Profile_Minimum_SLICE -msgid "Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice" -msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" -msgstr[0] "" -msgstr[1] "" - #: Validation_VAL_Profile_Minimum msgid "{3}: minimum required = {7}, but only found {0} (from {1})" msgid_plural "{3}: minimum required = {7}, but only found {0} (from {1})" msgstr[0] "" msgstr[1] "" +#: Validation_VAL_Profile_Minimum_SLICE +msgid "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgstr[0] "" +msgstr[1] "" + #: Validation_VAL_Profile_MultipleMatches -msgid "Found multiple matching profiles among {0} choice: {1}" +msgid "Found multiple matching profiles among {0} choices: {1}" msgid_plural "Found multiple matching profiles among {0} choices: {1}" msgstr[0] "" msgstr[1] "" #: Validation_VAL_Profile_NoCheckMax -msgid "{3}: Found {0} match, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" #: Validation_VAL_Profile_NoCheckMin -msgid "{3}: Found {0} match, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" @@ -4396,7 +4413,7 @@ msgid "The URL is not valid because ''({1})'': {0}" msgstr "Die URL ist nicht g\u00fcltig, weil ''({1})'': {0}" #: XHTML_URL_INVALID_CHARS -msgid "URL contains Invalid Character ({1})" +msgid "URL contains {0} Invalid Characters ({1})" msgid_plural "URL contains {0} Invalid Characters ({1})" msgstr[0] "" msgstr[1] "" @@ -4546,3 +4563,4 @@ msgstr "Die XML-Kodierung ist ung\u00fcltig (muss UTF-8 sein)" #: xml_stated_encoding_invalid msgid "The XML encoding stated in the header is invalid (must be ''UTF-8'' if stated)" msgstr "Die im Header angegebene XML-Kodierung ist ung\u00fcltig (muss ''UTF-8'' sein, wenn angegeben)" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-es.po b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-es.po index bc2bcabfd..789b6cf8b 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-es.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-es.po @@ -1,5 +1,3 @@ -// en -> es -Plural-Forms: nplurals=2; plural=n != 1; #: ABSTRACT_CODE_NOT_ALLOWED msgid "Code ''{0}#{1}'' is abstract, and not allowed in this context" @@ -60,6 +58,14 @@ msgstr "Intento de utilizar el servidor terminológico pero no hay ninguno dispo msgid "Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated" msgstr "Intento de usar un snapshot en el perfil ''{0}'' como {1} antes que se genere" +#: BINDING_ADDITIONAL +msgid "{0} specified in an additional binding" +msgstr "" + +#: BINDING_MAX +msgid "{0} specified in the max binding" +msgstr "" + #: BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE msgid "Found {0} matches for ''{1}'' in the bundle ({2})" msgstr "" @@ -85,7 +91,7 @@ msgid "The {1} resource did not math the profile {2} because: {3}" msgstr "" #: BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT -msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``)" +msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgid_plural "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgstr[0] "" msgstr[1] "" @@ -284,7 +290,7 @@ msgid "The type ''{0}'' is not valid - must be {1} (allowed = {2})" msgstr "El tipo ''{0}'' no es válido - debe ser {1} (permitido = {2})" #: Bundle_BUNDLE_Entry_Type3 -msgid "The type ''{1}'' is not valid - must be of type {2}" +msgid "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgid_plural "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgstr[0] "" msgstr[1] "" @@ -449,7 +455,7 @@ msgid "This property has only the standard code (''{0}'') but not the standard U msgstr "" #: CODESYSTEM_PROPERTY_NO_VALUE -msgid "The property ''{0}'' has no value, and cannot be understoof" +msgid "The property ''{0}'' has no value, and cannot be understood" msgstr "" #: CODESYSTEM_PROPERTY_SYNONYM_CHECK @@ -668,7 +674,7 @@ msgid "Contained resource does not appear to be a FHIR resource (unknown name '' msgstr "El recurso contenido no parece ser un recurso FHIR (nombre desconocido ''{0}'')" #: Could_not_match_discriminator_for_slice_in_profile -msgid "Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions" +msgid "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgid_plural "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgstr[0] "" msgstr[1] "" @@ -731,7 +737,7 @@ msgid "Discriminator ({0}) is based on element existence, but slice {1} neither msgstr "El discriminador ({0}) está basado en la existencia de un elemento, pero la partición {1} no define cardinalidad min>=1 o max=0" #: Discriminator__is_based_on_type_but_slice__in__has_multiple_types -msgid "" +msgid "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgid_plural "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgstr[0] "" msgstr[1] "" @@ -742,14 +748,14 @@ msgid "Discriminator ({0}) is based on type, but slice {1} in {2} has no types" msgstr "El discriminador ({0}) se basa en tipo, pero la partición {1} en {2} no tiene tipos" #: Display_Name_WS_for__should_be_one_of__instead_of -msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: Display_Name_for__should_be_one_of__instead_of -msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" @@ -1120,14 +1126,14 @@ msgid "Unable to resolve discriminator {0} on {2} found in the definitions becau msgstr "Imposible resolver el discriminador{0} en {2} encontrado en las definiciones porque la extension {1} no ha sido encontrada en el perfil {3}" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} type profiles" msgid_plural "Error in discriminator at {1}: no children, {0} type profiles" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} types" msgid_plural "Error in discriminator at {1}: no children, {0} types" msgstr[0] "" msgstr[1] "" @@ -1146,7 +1152,7 @@ msgid "Invalid use of ofType() in discriminator - Type has no code on {0}" msgstr "Uso ilegal de ofType() en el discriminador - Type no tiene codigo en {0}" #: FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgstr[0] "" msgstr[1] "" @@ -1173,7 +1179,7 @@ msgid "Invalid use of ofType() in discriminator - no type on element {0}" msgstr "Uso ilegal de ofType() en el discriminador - no hay tipo en el elemento {0}" #: FHIRPATH_FOCUS -msgid "" +msgid "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgstr[0] "" msgstr[1] "" @@ -1187,17 +1193,17 @@ msgstr "Internal Error evaluando la expresión FHIRPath: No se proveen servicios msgid "The type {0} is not valid" msgstr "" -#: FHIRPATH_LEFT_VALUE_WRONG_TYPE -msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" -msgstr "Error evaluando la expresión FHIRPath: el operando a la izquierda de {0} tiene el tipo incorrecto {1}" - #: FHIRPATH_LEFT_VALUE -msgid "" +msgid "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: FHIRPATH_LEFT_VALUE_WRONG_TYPE +msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" +msgstr "Error evaluando la expresión FHIRPath: el operando a la izquierda de {0} tiene el tipo incorrecto {1}" + #: FHIRPATH_LOCATION msgid "(at {0})" msgstr "(en {0})" @@ -1243,6 +1249,10 @@ msgstr "Error evaluando la expresión FHIRPath: El tipo de expresión {0} no est msgid "Error evaluating FHIRPath expression: The function {0} can only be used on primitives" msgstr "" +#: FHIRPATH_REDEFINE_VARIABLE +msgid "The variable ''{0}'' cannot be redefined" +msgstr "" + #: FHIRPATH_REFERENCE_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1}" msgstr "Error evaluando la expresión FHIRPath: La función {0} solo puede ser utilizada para los tipos string, uri, canonical or Reference pero se han encontrado {1}" @@ -1252,23 +1262,23 @@ msgid "Problem with use of resolve() - profile {0} on {1} could not be resolved" msgstr "Problema con el uso de resolve() - el perfil {0} en {1} no pudo ser resuelta" #: FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: FHIRPATH_RIGHT_VALUE +msgid "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: FHIRPATH_RIGHT_VALUE_WRONG_TYPE msgid "Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1}" msgstr "Error evaluando la expresión FHIRPath: el operando a la derecha de {0} tiene el tipo incorrecto {1}" -#: FHIRPATH_RIGHT_VALUE -msgid "" -msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: FHIRPATH_STRING_ORD_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1}" msgstr "Error evaluando la expresión FHIRPath: La función {0} solo puede ser utilizada para colecciones ordenadas de tipo string, uri, code, id pero se han encontrado {1}" @@ -1754,7 +1764,7 @@ msgid "Reference to withdrawn {2} {0} from {1}" msgstr "" #: MULTIPLE_LOGICAL_MODELS -msgid "" +msgid "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgid_plural "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgstr[0] "" msgstr[1] "" @@ -1777,7 +1787,7 @@ msgid "The element {0} is not marked as ''mustSupport'' in the profile {1}. Cons msgstr "El elemento {0} no está marcado como ''mustSupport'' en el perfil {1}. Considere no usar el elemento, o marcar el elemento como must-Support en el perfil" #: NO_VALID_DISPLAY_FOUND -msgid "No valid Display Names found for {1}#{2} in the language {4}" +msgid "No valid Display Names found for {1}#{2} in the languages {4}" msgid_plural "No valid Display Names found for {1}#{2} in the languages {4}" msgstr[0] "" msgstr[1] "" @@ -1832,7 +1842,7 @@ msgid "Node type {0} is not allowed" msgstr "El tipo de nodo {0} no está permitido" #: None_of_the_provided_codes_are_in_the_value_set -msgid "The provided code {2} was not found in the value set ''{1}''" +msgid "None of the provided codes [{2}] are in the value set ''{1}''" msgid_plural "None of the provided codes [{2}] are in the value set ''{1}''" msgstr[0] "" msgstr[1] "" @@ -1907,7 +1917,7 @@ msgid "The element definition ``{0}`` in the profile ''{1}'' requires that a val msgstr "" #: PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE -msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present" +msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgid_plural "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgstr[0] "" msgstr[1] "" @@ -1966,7 +1976,7 @@ msgid "Profile based discriminators must have a type with a profile ({0} in prof msgstr "Los discriminadores basados en perfiles deben tener un tipo con un perfil ({0} en el perfil {1})" #: Profile_based_discriminators_must_have_only_one_type__in_profile -msgid "" +msgid "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgid_plural "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgstr[0] "" msgstr[1] "" @@ -2150,7 +2160,7 @@ msgid "Only one response answer item with this linkId allowed" msgstr "Solo un item con respuesta se permite para items que tengan este linkId" #: Questionnaire_QR_Item_OnlyOneI -msgid "" +msgid "Only one response item with the linkId {1} allowed - found {0} items" msgid_plural "Only one response item with the linkId {1} allowed - found {0} items" msgstr[0] "" msgstr[1] "" @@ -2173,7 +2183,7 @@ msgid "Cannot validate time answer option because no option list is provided" msgstr "No se puede validar la opción de respuesta de tipo time porque no se ha provisto una lista de opciones" #: Questionnaire_QR_Item_WrongType -msgid "Answer value must be of the type {1}" +msgid "Answer value must be one of the {0} types {1}" msgid_plural "Answer value must be one of the {0} types {1}" msgstr[0] "" msgstr[1] "" @@ -2394,14 +2404,14 @@ msgid "Profile {0} is for type {1}, which is not a {4} (which is required becaus msgstr "El perfil {0} es para tipo {1}, que no es un {4} (que es requerido porque el elemento {3} es de tipo {2})" #: SD_ED_TYPE_PROFILE_WRONG_TYPE -msgid "The type {0} is not in the list of allowed type {1} in the profile {2}" +msgid "The type {0} is not in the list of allowed types {1} in the profile {2}" msgid_plural "The type {0} is not in the list of allowed types {1} in the profile {2}" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: SD_ED_TYPE_WRONG_TYPE -msgid "The element has a type {0} which is different to the type {1} on the base profile {2}" +msgid "The element has a type {0} which is not in the types {1} on the base profile {2}" msgid_plural "The element has a type {0} which is not in the types {1} on the base profile {2}" msgstr[0] "" msgstr[1] "" @@ -2889,7 +2899,11 @@ msgid "Could not confirm that the codes provided are from the required value set msgstr "No se pudo confirmar que los códigos provistos pertenezcan al conjunto de valores requerido {0} porque no hay servicio terminológico" #: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES -msgid "The OID ''{0}'' matches multiple code systems ({1})" +msgid "The OID ''{0}'' matches multiple resources ({1})" +msgstr "" + +#: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN +msgid "The OID ''{0}'' matches multiple resources ({2}); {1} was chosen as the most appropriate" msgstr "" #: TERMINOLOGY_TX_SYSTEM_HTTPS @@ -2914,7 +2928,7 @@ msgid "The code system reference {0} is wrong - the code system reference cannot msgstr "La referencia al sistema de codificación {0} es errónea - no puede apuntar a una página HTML. Esta puede ser la referencia correcta: {1}" #: TERMINOLOGY_TX_UNKNOWN_OID -msgid "The OID ''{0}'' is not known, so the code can't be validated" +msgid "The OID ''{0}'' is not known, so the code can''t be validated" msgstr "" #: TERMINOLOGY_TX_WARNING @@ -3684,7 +3698,7 @@ msgid "The Unicode sequence has unterminated bi-di control characters (see CVE-2 msgstr "!!La secuencia Unicode tiene caracteres de control bi-di inconclusos (see CVE-2021-42574): {1}" #: UNICODE_XML_BAD_CHARS -msgid "This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters" +msgid "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgid_plural "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgstr[0] "" msgstr[1] "" @@ -3831,9 +3845,9 @@ msgid "The System URI could not be determined for the code ''{0}'' in the ValueS msgstr "!!Incapaz de resolver el sistema - el conjunto de valores tiene imports" #: Unable_to_resolve_system__value_set_has_include_with_filter -#| Unable to resolve system - value set {0} include #{1} has a filter on system {2} -msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}" -msgstr "!!Incapaz de resolver el sistema - conjunto de valores {0} include #{1} tiene un filtro en system {2}" +#| The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3} +msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4}" +msgstr "!!!!Incapaz de resolver el sistema - conjunto de valores {0} include #{1} tiene un filtro en system {2}" #: Unable_to_resolve_system__value_set_has_include_with_no_system msgid "Unable to resolve system - value set {0} include #{1} has no system" @@ -4075,7 +4089,7 @@ msgid "The resource status ''{0}'' and the standards status ''{1}'' may not be c msgstr "" #: VALUESET_BAD_FILTER_OP -msgid "The operation ''{0}'' is not allowed for property ''{1}''. Allowed ops: {2}" +msgid "The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2}" msgstr "" #: VALUESET_BAD_FILTER_VALUE_BOOLEAN @@ -4114,6 +4128,10 @@ msgstr "" msgid "The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3})" msgstr "" +#: VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE +msgid "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" +msgstr "" + #: VALUESET_BAD_FILTER_VALUE_VALID_REGEX msgid "The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'')" msgstr "" @@ -4237,7 +4255,7 @@ msgid "Published value sets SHALL conform to the ShareableValueSet profile, whic msgstr "!!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_SUPPLEMENT_MISSING -msgid "Required supplement not found: {1}" +msgid "Required supplements not found: {1}" msgid_plural "Required supplements not found: {1}" msgstr[0] "" msgstr[1] "" @@ -4268,7 +4286,7 @@ msgid "The property ''{0}'' is not known for the system ''{1}'', so may not be u msgstr "" #: VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS -msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it's useful, the list of generally known properties for all systems is {2}" +msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2}" msgstr "" #: Validation_BUNDLE_Message @@ -4295,13 +4313,6 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: Validation_VAL_Profile_Minimum_SLICE -msgid "Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice" -msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - #: Validation_VAL_Profile_Minimum msgid "{3}: minimum required = {7}, but only found {0} (from {1})" msgid_plural "{3}: minimum required = {7}, but only found {0} (from {1})" @@ -4309,22 +4320,29 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" +#: Validation_VAL_Profile_Minimum_SLICE +msgid "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgstr[0] "" +msgstr[1] "" +msgstr[2] "" + #: Validation_VAL_Profile_MultipleMatches -msgid "Found multiple matching profiles among {0} choice: {1}" +msgid "Found multiple matching profiles among {0} choices: {1}" msgid_plural "Found multiple matching profiles among {0} choices: {1}" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: Validation_VAL_Profile_NoCheckMax -msgid "{3}: Found {0} match, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" msgstr[2] "" #: Validation_VAL_Profile_NoCheckMin -msgid "{3}: Found {0} match, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" @@ -4425,7 +4443,7 @@ msgid "The URL is not valid because ''({1})'': {0}" msgstr "La URL no es válida porque ''({1})'': {0}" #: XHTML_URL_INVALID_CHARS -msgid "URL contains Invalid Character ({1})" +msgid "URL contains {0} Invalid Characters ({1})" msgid_plural "URL contains {0} Invalid Characters ({1})" msgstr[0] "" msgstr[1] "" @@ -4576,3 +4594,4 @@ msgstr "La codificación de XML es inválida (debe ser UTF-8)" #: xml_stated_encoding_invalid msgid "The XML encoding stated in the header is invalid (must be ''UTF-8'' if stated)" msgstr "La codificación de XML declarada en la cabecera es inválida (debe ser ''UTF-8'' si se declara)" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-ja.po b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-ja.po index 58ecf8ce1..0613b0d56 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-ja.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-ja.po @@ -1,5 +1,3 @@ -// en -> ja -Plural-Forms: nplurals=1; plural=0; #: ABSTRACT_CODE_NOT_ALLOWED msgid "Code ''{0}#{1}'' is abstract, and not allowed in this context" @@ -60,6 +58,14 @@ msgstr "利用可能なTerminologyサーバがないときにTerminologyサー msgid "Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated" msgstr "プロファイル ''{0}'' のsnapshotを生成する前に {1} として使用しようとしました" +#: BINDING_ADDITIONAL +msgid "{0} specified in an additional binding" +msgstr "" + +#: BINDING_MAX +msgid "{0} specified in the max binding" +msgstr "" + #: BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE msgid "Found {0} matches for ''{1}'' in the bundle ({2})" msgstr "" @@ -85,7 +91,7 @@ msgid "The {1} resource did not math the profile {2} because: {3}" msgstr "" #: BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT -msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``)" +msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgid_plural "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgstr[0] "" @@ -282,7 +288,7 @@ msgid "The type ''{0}'' is not valid - must be {1} (allowed = {2})" msgstr "タイプ''{0}''は有効ではありません - {1}でなければなりません(allowed = {2})" #: Bundle_BUNDLE_Entry_Type3 -msgid "The type ''{1}'' is not valid - must be of type {2}" +msgid "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgid_plural "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgstr[0] "" @@ -444,7 +450,7 @@ msgid "This property has only the standard code (''{0}'') but not the standard U msgstr "" #: CODESYSTEM_PROPERTY_NO_VALUE -msgid "The property ''{0}'' has no value, and cannot be understoof" +msgid "The property ''{0}'' has no value, and cannot be understood" msgstr "" #: CODESYSTEM_PROPERTY_SYNONYM_CHECK @@ -660,7 +666,7 @@ msgid "Contained resource does not appear to be a FHIR resource (unknown name '' msgstr "含まれているリソースはFHIRリソースではないようです(未知の名前 ''{0}'')" #: Could_not_match_discriminator_for_slice_in_profile -msgid "Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions" +msgid "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgid_plural "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgstr[0] "" @@ -721,7 +727,7 @@ msgid "Discriminator ({0}) is based on element existence, but slice {1} neither msgstr "discriminator ({0}) は要素の存在に基づいていますが、スライス {1} は min>=1 も max=0 も設定していません" #: Discriminator__is_based_on_type_but_slice__in__has_multiple_types -msgid "" +msgid "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgid_plural "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgstr[0] "" @@ -730,12 +736,12 @@ msgid "Discriminator ({0}) is based on type, but slice {1} in {2} has no types" msgstr "discriminator ({0}) はタイプに基づいていますが、{2} のスライス {1} にはタイプがありません" #: Display_Name_WS_for__should_be_one_of__instead_of -msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" #: Display_Name_for__should_be_one_of__instead_of -msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" @@ -1103,12 +1109,12 @@ msgid "Unable to resolve discriminator {0} on {2} found in the definitions becau msgstr "定義内でdiscriminator {0} を {2} 上で見つけたが、extension {1} がプロファイル {3} に見つからなかったため解決できません" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} type profiles" msgid_plural "Error in discriminator at {1}: no children, {0} type profiles" msgstr[0] "" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} types" msgid_plural "Error in discriminator at {1}: no children, {0} types" msgstr[0] "" @@ -1125,7 +1131,7 @@ msgid "Invalid use of ofType() in discriminator - Type has no code on {0}" msgstr "discriminatorでのofType()の使用が無効 - タイプにコードがありません {0}" #: FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgstr[0] "" @@ -1150,7 +1156,7 @@ msgid "Invalid use of ofType() in discriminator - no type on element {0}" msgstr "discriminatorでのofType()の使用が無効 - 要素 {0} にタイプがありません" #: FHIRPATH_FOCUS -msgid "" +msgid "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgstr[0] "" @@ -1162,15 +1168,15 @@ msgstr "FHIRPath式を評価する際の内部エラー: ホストサービス msgid "The type {0} is not valid" msgstr "" +#: FHIRPATH_LEFT_VALUE +msgid "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" +msgid_plural "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" +msgstr[0] "" + #: FHIRPATH_LEFT_VALUE_WRONG_TYPE msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" msgstr "FHIRPath式の評価エラー: {0}への左オペランドは間違ったタイプ {1} を持っています" -#: FHIRPATH_LEFT_VALUE -msgid "" -msgid_plural "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" -msgstr[0] "" - #: FHIRPATH_LOCATION msgid "(at {0})" msgstr "(at {0})" @@ -1215,6 +1221,10 @@ msgstr "FHIRPath式の評価エラー: 式タイプ {0} は関数 {2} のパラ msgid "Error evaluating FHIRPath expression: The function {0} can only be used on primitives" msgstr "FHIRPath式の評価エラー: 関数 {0} はプリミティブに対してのみ使用できます" +#: FHIRPATH_REDEFINE_VARIABLE +msgid "The variable ''{0}'' cannot be redefined" +msgstr "" + #: FHIRPATH_REFERENCE_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1}" msgstr "FHIRPath式の評価エラー: 関数 {0} は順序付けされた文字列、URI、canonical、Referenceに対してのみ使用できますが、{1} を見つけました" @@ -1224,19 +1234,19 @@ msgid "Problem with use of resolve() - profile {0} on {1} could not be resolved" msgstr "resolve()の使用に問題 - {1}上のプロファイル{0}を解決できません" #: FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgstr[0] "" +#: FHIRPATH_RIGHT_VALUE +msgid "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgstr[0] "" + #: FHIRPATH_RIGHT_VALUE_WRONG_TYPE msgid "Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1}" msgstr "FHIRPath式の評価エラー: {0}への右オペランドは間違ったタイプ {1} を持っています" -#: FHIRPATH_RIGHT_VALUE -msgid "" -msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" -msgstr[0] "" - #: FHIRPATH_STRING_ORD_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1}" msgstr "FHIRPath式の評価エラー: 関数 {0} は順序付けされた文字列、URI、code、idのコレクションに対してのみ使用できますが、{1} を見つけました" @@ -1717,7 +1727,7 @@ msgid "Reference to withdrawn {2} {0} from {1}" msgstr "" #: MULTIPLE_LOGICAL_MODELS -msgid "" +msgid "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgid_plural "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgstr[0] "" @@ -1738,7 +1748,7 @@ msgid "The element {0} is not marked as ''mustSupport'' in the profile {1}. Cons msgstr "" #: NO_VALID_DISPLAY_FOUND -msgid "No valid Display Names found for {1}#{2} in the language {4}" +msgid "No valid Display Names found for {1}#{2} in the languages {4}" msgid_plural "No valid Display Names found for {1}#{2} in the languages {4}" msgstr[0] "" @@ -1791,7 +1801,7 @@ msgid "Node type {0} is not allowed" msgstr "ノードタイプ {0} は許可されていません" #: None_of_the_provided_codes_are_in_the_value_set -msgid "The provided code {2} was not found in the value set ''{1}''" +msgid "None of the provided codes [{2}] are in the value set ''{1}''" msgid_plural "None of the provided codes [{2}] are in the value set ''{1}''" msgstr[0] "" @@ -1864,7 +1874,7 @@ msgid "The element definition ``{0}`` in the profile ''{1}'' requires that a val msgstr "プロファイル ''{1}'' の要素定義 {0} では、この要素に値が存在することが必要です" #: PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE -msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present" +msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgid_plural "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgstr[0] "" @@ -1921,7 +1931,7 @@ msgid "Profile based discriminators must have a type with a profile ({0} in prof msgstr "プロファイルベースのディスクリミネータはプロファイルを持つタイプを持つ必要があります(プロファイル {1} の {0})" #: Profile_based_discriminators_must_have_only_one_type__in_profile -msgid "" +msgid "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgid_plural "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgstr[0] "" @@ -2104,7 +2114,7 @@ msgid "Only one response answer item with this linkId allowed" msgstr "このLinkIdを持つ回答アイテムは1つだけ許可されます" #: Questionnaire_QR_Item_OnlyOneI -msgid "" +msgid "Only one response item with the linkId {1} allowed - found {0} items" msgid_plural "Only one response item with the linkId {1} allowed - found {0} items" msgstr[0] "" @@ -2125,7 +2135,7 @@ msgid "Cannot validate time answer option because no option list is provided" msgstr "オプションリストが提供されていないため、時間型の回答オプションを検証することはできません" #: Questionnaire_QR_Item_WrongType -msgid "Answer value must be of the type {1}" +msgid "Answer value must be one of the {0} types {1}" msgid_plural "Answer value must be one of the {0} types {1}" msgstr[0] "" @@ -2343,12 +2353,12 @@ msgid "Profile {0} is for type {1}, which is not a {4} (which is required becaus msgstr "プロファイル {0} はタイプ {1} のためのもので、これは {4} ではありません(これは必要です、なぜなら {3} 要素はタイプ {2} だからです)" #: SD_ED_TYPE_PROFILE_WRONG_TYPE -msgid "The type {0} is not in the list of allowed type {1} in the profile {2}" +msgid "The type {0} is not in the list of allowed types {1} in the profile {2}" msgid_plural "The type {0} is not in the list of allowed types {1} in the profile {2}" msgstr[0] "" #: SD_ED_TYPE_WRONG_TYPE -msgid "The element has a type {0} which is different to the type {1} on the base profile {2}" +msgid "The element has a type {0} which is not in the types {1} on the base profile {2}" msgid_plural "The element has a type {0} which is not in the types {1} on the base profile {2}" msgstr[0] "" @@ -2834,7 +2844,11 @@ msgid "Could not confirm that the codes provided are from the required value set msgstr "提供されたコードが必要なValueSet {0}からであることを確認できませんでした。用語サービスがないためです" #: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES -msgid "The OID ''{0}'' matches multiple code systems ({1})" +msgid "The OID ''{0}'' matches multiple resources ({1})" +msgstr "" + +#: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN +msgid "The OID ''{0}'' matches multiple resources ({2}); {1} was chosen as the most appropriate" msgstr "" #: TERMINOLOGY_TX_SYSTEM_HTTPS @@ -2859,7 +2873,7 @@ msgid "The code system reference {0} is wrong - the code system reference cannot msgstr "コードシステム参照{0}が間違っています - コードシステム参照はHTMLページにすることはできません。これが正しい参照である可能性があります:{1}" #: TERMINOLOGY_TX_UNKNOWN_OID -msgid "The OID ''{0}'' is not known, so the code can't be validated" +msgid "The OID ''{0}'' is not known, so the code can''t be validated" msgstr "" #: TERMINOLOGY_TX_WARNING @@ -3617,7 +3631,7 @@ msgid "The Unicode sequence has unterminated bi-di control characters (see CVE-2 msgstr "終端されていない制御文字を含むUnicodeシーケンス(CVE-2021-42574参照): {0}" #: UNICODE_XML_BAD_CHARS -msgid "This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters" +msgid "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgid_plural "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgstr[0] "" @@ -3762,9 +3776,9 @@ msgid "The System URI could not be determined for the code ''{0}'' in the ValueS msgstr "!!systemを解決できません - ValueSetにインポートがあります" #: Unable_to_resolve_system__value_set_has_include_with_filter -#| Unable to resolve system - value set {0} include #{1} has a filter on system {2} -msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}" -msgstr "!!systemを解決できません - ValueSet {0}のインクルード#{1}にsystem {2}のフィルターがあります" +#| The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3} +msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4}" +msgstr "!!!!systemを解決できません - ValueSet {0}のインクルード#{1}にsystem {2}のフィルターがあります" #: Unable_to_resolve_system__value_set_has_include_with_no_system msgid "Unable to resolve system - value set {0} include #{1} has no system" @@ -4004,7 +4018,7 @@ msgid "The resource status ''{0}'' and the standards status ''{1}'' may not be c msgstr "リソースのステータス "{0}"は標準のステータス "{1}"と一貫しないため、確認すべきです" #: VALUESET_BAD_FILTER_OP -msgid "The operation ''{0}'' is not allowed for property ''{1}''. Allowed ops: {2}" +msgid "The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2}" msgstr "" #: VALUESET_BAD_FILTER_VALUE_BOOLEAN @@ -4043,6 +4057,10 @@ msgstr "" msgid "The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3})" msgstr "" +#: VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE +msgid "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" +msgstr "" + #: VALUESET_BAD_FILTER_VALUE_VALID_REGEX msgid "The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'')" msgstr "" @@ -4164,7 +4182,7 @@ msgid "Published value sets SHALL conform to the ShareableValueSet profile, whic msgstr "公開されたvalue setsはValueSet.{0}の存在を必須としているShareableValueSetプロファイルに準拠しなければなりません(SHALL)が、要素が存在しません。" #: VALUESET_SUPPLEMENT_MISSING -msgid "Required supplement not found: {1}" +msgid "Required supplements not found: {1}" msgid_plural "Required supplements not found: {1}" msgstr[0] "" @@ -4195,7 +4213,7 @@ msgid "The property ''{0}'' is not known for the system ''{1}'', so may not be u msgstr "" #: VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS -msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it's useful, the list of generally known properties for all systems is {2}" +msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2}" msgstr "" #: Validation_BUNDLE_Message @@ -4220,28 +4238,28 @@ msgid "{3}: max allowed = {7}, but found {0} (from {1})" msgid_plural "{3}: max allowed = {7}, but found {0} (from {1})" msgstr[0] "" -#: Validation_VAL_Profile_Minimum_SLICE -msgid "Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice" -msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" -msgstr[0] "" - #: Validation_VAL_Profile_Minimum msgid "{3}: minimum required = {7}, but only found {0} (from {1})" msgid_plural "{3}: minimum required = {7}, but only found {0} (from {1})" msgstr[0] "" +#: Validation_VAL_Profile_Minimum_SLICE +msgid "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgstr[0] "" + #: Validation_VAL_Profile_MultipleMatches -msgid "Found multiple matching profiles among {0} choice: {1}" +msgid "Found multiple matching profiles among {0} choices: {1}" msgid_plural "Found multiple matching profiles among {0} choices: {1}" msgstr[0] "" #: Validation_VAL_Profile_NoCheckMax -msgid "{3}: Found {0} match, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" #: Validation_VAL_Profile_NoCheckMin -msgid "{3}: Found {0} match, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" @@ -4340,7 +4358,7 @@ msgid "The URL is not valid because ''({1})'': {0}" msgstr "URLは''({1})''のため有効ではありません:{0}" #: XHTML_URL_INVALID_CHARS -msgid "URL contains Invalid Character ({1})" +msgid "URL contains {0} Invalid Characters ({1})" msgid_plural "URL contains {0} Invalid Characters ({1})" msgstr[0] "" @@ -4489,3 +4507,4 @@ msgstr "XMLエンコーディングが無効です(UTF-8でなければなり #: xml_stated_encoding_invalid msgid "The XML encoding stated in the header is invalid (must be ''UTF-8'' if stated)" msgstr "ヘッダーで指定されたXMLエンコーディングが無効です(指定されている場合は''UTF-8''でなければなりません)" + diff --git a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-nl.po b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-nl.po index 6534cb625..6c3cf3bc7 100644 --- a/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-nl.po +++ b/org.hl7.fhir.utilities/src/main/resources/source/validator-messages-nl.po @@ -1,5 +1,3 @@ -// en -> nl -Plural-Forms: nplurals=2; plural=n != 1; #: ABSTRACT_CODE_NOT_ALLOWED msgid "Code ''{0}#{1}'' is abstract, and not allowed in this context" @@ -60,6 +58,14 @@ msgstr "Poging om terminologieserver te gebruiken terwijl er geen terminologiese msgid "Attempt to use a snapshot on profile ''{0}'' as {1} before it is generated" msgstr "Poging om een snapshot van profiel ''{0}'' te gebruiken als {1} voordat deze is gegenereerd" +#: BINDING_ADDITIONAL +msgid "{0} specified in an additional binding" +msgstr "" + +#: BINDING_MAX +msgid "{0} specified in the max binding" +msgstr "" + #: BUNDLE_BUNDLE_ENTRY_FOUND_MULTIPLE msgid "Found {0} matches for ''{1}'' in the bundle ({2})" msgstr "" @@ -85,7 +91,7 @@ msgid "The {1} resource did not math the profile {2} because: {3}" msgstr "" #: BUNDLE_BUNDLE_ENTRY_NOTFOUND_APPARENT -msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there is a resource in the bundle with the same type and id, but it does not match because of the fullUrl based rules around matching relative references (must be ``{3}``)" +msgid "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgid_plural "Can''t find ''{1}'' in the bundle ({2}). Note that there are {0} resources in the bundle with the same type and id, but they do not match because of the fullUrl based rules around matching relative references (one of ``{3}``)" msgstr[0] "" msgstr[1] "" @@ -283,7 +289,7 @@ msgid "The type ''{0}'' is not valid - must be {1} (allowed = {2})" msgstr "Het type ''{0}'' is niet geldig - moet zijn {1} (toegestaan = {2})" #: Bundle_BUNDLE_Entry_Type3 -msgid "The type ''{1}'' is not valid - must be of type {2}" +msgid "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgid_plural "The type ''{1}'' is not valid - must be one of {0} types: {2}" msgstr[0] "" msgstr[1] "" @@ -446,7 +452,7 @@ msgid "This property has only the standard code (''{0}'') but not the standard U msgstr "" #: CODESYSTEM_PROPERTY_NO_VALUE -msgid "The property ''{0}'' has no value, and cannot be understoof" +msgid "The property ''{0}'' has no value, and cannot be understood" msgstr "" #: CODESYSTEM_PROPERTY_SYNONYM_CHECK @@ -672,7 +678,7 @@ msgid "Contained resource does not appear to be a FHIR resource (unknown name '' msgstr "Contained resource lijkt geen FHIR-type hebben (onbekende naam ''{0}'')" #: Could_not_match_discriminator_for_slice_in_profile -msgid "Could not match discriminator ({0}) for slice {1} in profile {2} - the discriminator {3} does not have fixed value, binding or existence assertions" +msgid "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgid_plural "Could not match any discriminators ({1}) for slice {2} in profile {3} - None of the {0} discriminators {4} have fixed value, binding or existence assertions" msgstr[0] "" msgstr[1] "" @@ -734,7 +740,7 @@ msgid "Discriminator ({0}) is based on element existence, but slice {1} neither msgstr "Discriminator ({0}) is gebaseerd op elementaanwezigheid, maar slice {1} heeft geen min>=1 of max=0" #: Discriminator__is_based_on_type_but_slice__in__has_multiple_types -msgid "" +msgid "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgid_plural "Discriminator ({1}) is based on type, but slice {2} in {3} has {0} types: {4}" msgstr[0] "" msgstr[1] "" @@ -744,13 +750,13 @@ msgid "Discriminator ({0}) is based on type, but slice {1} in {2} has no types" msgstr "Discriminator ({0}) is gebaseerd op type, maar slice {1} in {2} heeft geen typen" #: Display_Name_WS_for__should_be_one_of__instead_of -msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong whitespace in Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" #: Display_Name_for__should_be_one_of__instead_of -msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is {3} (for the language(s) ''{5}'')" +msgid "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgid_plural "Wrong Display Name ''{4}'' for {1}#{2}. Valid display is one of {0} choices: {3} (for the language(s) ''{5}'')" msgstr[0] "" msgstr[1] "" @@ -1120,13 +1126,13 @@ msgid "Unable to resolve discriminator {0} on {2} found in the definitions becau msgstr "Unable to resolve discriminator {0} on {2} found in the definitions because the extension {1} wasn''t found in the profile {3}" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_PROFILES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} type profiles" msgid_plural "Error in discriminator at {1}: no children, {0} type profiles" msgstr[0] "" msgstr[1] "" #: FHIRPATH_DISCRIMINATOR_MULTIPLE_TYPES -msgid "" +msgid "Error in discriminator at {1}: no children, {0} types" msgid_plural "Error in discriminator at {1}: no children, {0} types" msgstr[0] "" msgstr[1] "" @@ -1144,7 +1150,7 @@ msgid "Invalid use of ofType() in discriminator - Type has no code on {0}" msgstr "onjuist gebruik van ofType() in discriminator - Type heeft geen code op {0}" #: FHIRPATH_DISCRIMINATOR_RESOLVE_MULTIPLE_TYPES -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible types on {1} (can only be one)" msgstr[0] "" msgstr[1] "" @@ -1170,7 +1176,7 @@ msgid "Invalid use of ofType() in discriminator - no type on element {0}" msgstr "onjuist gebruik van ofType() in discriminator - geen type op element {0}" #: FHIRPATH_FOCUS -msgid "" +msgid "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: focus for {0} can only have one value, but has {0} values" msgstr[0] "" msgstr[1] "" @@ -1183,16 +1189,16 @@ msgstr "Interne fout bij evalueren FHIRPath expressie: er zijn geen host service msgid "The type {0} is not valid" msgstr "" -#: FHIRPATH_LEFT_VALUE_WRONG_TYPE -msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" -msgstr "Fout bij evalueren FHIRPath expressie: linker operandus van {0} heeft het verkeerde type {1}" - #: FHIRPATH_LEFT_VALUE -msgid "" +msgid "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgid_plural "Error evaluating FHIRPath expression: left operand to {1} can only have 1 value, but has {0} values" msgstr[0] "" msgstr[1] "" +#: FHIRPATH_LEFT_VALUE_WRONG_TYPE +msgid "Error evaluating FHIRPath expression: left operand to {0} has the wrong type {1}" +msgstr "Fout bij evalueren FHIRPath expressie: linker operandus van {0} heeft het verkeerde type {1}" + #: FHIRPATH_LOCATION msgid "(at {0})" msgstr "(bij {0})" @@ -1238,6 +1244,10 @@ msgstr "Fout bij evalueren FHIRPath expressie: Het expressietype {0} wordt niet msgid "Error evaluating FHIRPath expression: The function {0} can only be used on primitives" msgstr "" +#: FHIRPATH_REDEFINE_VARIABLE +msgid "The variable ''{0}'' cannot be redefined" +msgstr "" + #: FHIRPATH_REFERENCE_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered string, uri, canonical or Reference but found {1}" msgstr "Fout bij evalueren FHIRPath expressie: De functie {0} kan alleen worden gebruikt op een string, uri, canonical of Reference met volgorde maar gevonden {1}" @@ -1247,21 +1257,21 @@ msgid "Problem with use of resolve() - profile {0} on {1} could not be resolved" msgstr "Probleem met gebruik van resolve() - profiel {0} op {1} is niet gevonden" #: FHIRPATH_RESOLVE_DISCRIMINATOR_NO_TARGET -msgid "" +msgid "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgid_plural "Invalid use of resolve() in discriminator - {0} possible target type profiles on {1} (can only be one)" msgstr[0] "" msgstr[1] "" +#: FHIRPATH_RIGHT_VALUE +msgid "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" +msgstr[0] "" +msgstr[1] "" + #: FHIRPATH_RIGHT_VALUE_WRONG_TYPE msgid "Error evaluating FHIRPath expression: right operand to {0} has the wrong type {1}" msgstr "Fout bij evalueren FHIRPath expressie: rechter operandus van {0} heeft het verkeerde type {1}" -#: FHIRPATH_RIGHT_VALUE -msgid "" -msgid_plural "Error evaluating FHIRPath expression: right operand to {1} can only have 1 value, but has {0} values" -msgstr[0] "" -msgstr[1] "" - #: FHIRPATH_STRING_ORD_ONLY msgid "Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1}" msgstr "Error evaluating FHIRPath expression: The function {0} can only be used on ordered collection of string, uri, code, id but found {1}" @@ -1746,7 +1756,7 @@ msgid "Reference to withdrawn {2} {0} from {1}" msgstr "" #: MULTIPLE_LOGICAL_MODELS -msgid "" +msgid "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgid_plural "{0} Logical Models found in supplied profiles, so unable to parse logical model (can only be one, found {1})" msgstr[0] "" msgstr[1] "" @@ -1768,7 +1778,7 @@ msgid "The element {0} is not marked as ''mustSupport'' in the profile {1}. Cons msgstr "Het element {0} is niet gemarkeerd als ''mustSupport'' in het profiel {1}. Overweeg het element niet gebruiken, of om het element als mustSupport te markeren in het profiel" #: NO_VALID_DISPLAY_FOUND -msgid "No valid Display Names found for {1}#{2} in the language {4}" +msgid "No valid Display Names found for {1}#{2} in the languages {4}" msgid_plural "No valid Display Names found for {1}#{2} in the languages {4}" msgstr[0] "" msgstr[1] "" @@ -1822,7 +1832,7 @@ msgid "Node type {0} is not allowed" msgstr "Nodetype {0} is niet toegestaan" #: None_of_the_provided_codes_are_in_the_value_set -msgid "The provided code {2} was not found in the value set ''{1}''" +msgid "None of the provided codes [{2}] are in the value set ''{1}''" msgid_plural "None of the provided codes [{2}] are in the value set ''{1}''" msgstr[0] "" msgstr[1] "" @@ -1896,7 +1906,7 @@ msgid "The element definition ``{0}`` in the profile ''{1}'' requires that a val msgstr "" #: PRIMITIVE_VALUE_ALTERNATIVES_MESSAGE -msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, the extension ''{2}'' must be present" +msgid "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgid_plural "The element definition ``{0}`` in the profile ''{1}'' requires that if a value is not present, one of the extensions ''{2}'' must be present" msgstr[0] "" msgstr[1] "" @@ -1954,7 +1964,7 @@ msgid "Profile based discriminators must have a type with a profile ({0} in prof msgstr "Profiel-gebaseerde discriminators moeten een type hebben met een profiel ({0} in profiel {1})" #: Profile_based_discriminators_must_have_only_one_type__in_profile -msgid "" +msgid "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgid_plural "Profile based discriminators must have only one type ({1} in profile {2}) but found {0} types" msgstr[0] "" msgstr[1] "" @@ -2138,7 +2148,7 @@ msgid "Only one response answer item with this linkId allowed" msgstr "Er is slechts een antwoorditem toegestaan bij dit linkId" #: Questionnaire_QR_Item_OnlyOneI -msgid "" +msgid "Only one response item with the linkId {1} allowed - found {0} items" msgid_plural "Only one response item with the linkId {1} allowed - found {0} items" msgstr[0] "" msgstr[1] "" @@ -2160,7 +2170,7 @@ msgid "Cannot validate time answer option because no option list is provided" msgstr "Kan tijd-antwoord niet valideren omdat er geen optielijst is gespecificeerd" #: Questionnaire_QR_Item_WrongType -msgid "Answer value must be of the type {1}" +msgid "Answer value must be one of the {0} types {1}" msgid_plural "Answer value must be one of the {0} types {1}" msgstr[0] "" msgstr[1] "" @@ -2378,13 +2388,13 @@ msgid "Profile {0} is for type {1}, which is not a {4} (which is required becaus msgstr "Profiel {0} is voor type {1}, wat geen {4} is (welke wordt vereist om het {3} element type {2} heeft)" #: SD_ED_TYPE_PROFILE_WRONG_TYPE -msgid "The type {0} is not in the list of allowed type {1} in the profile {2}" +msgid "The type {0} is not in the list of allowed types {1} in the profile {2}" msgid_plural "The type {0} is not in the list of allowed types {1} in the profile {2}" msgstr[0] "" msgstr[1] "" #: SD_ED_TYPE_WRONG_TYPE -msgid "The element has a type {0} which is different to the type {1} on the base profile {2}" +msgid "The element has a type {0} which is not in the types {1} on the base profile {2}" msgid_plural "The element has a type {0} which is not in the types {1} on the base profile {2}" msgstr[0] "" msgstr[1] "" @@ -2874,7 +2884,11 @@ msgid "Could not confirm that the codes provided are from the required value set msgstr "Kan niet bevestigen dat de gevonden codes bestaan in de verplichte waardelijst {0} omdat er geen terminologieservice is" #: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES -msgid "The OID ''{0}'' matches multiple code systems ({1})" +msgid "The OID ''{0}'' matches multiple resources ({1})" +msgstr "" + +#: TERMINOLOGY_TX_OID_MULTIPLE_MATCHES_CHOSEN +msgid "The OID ''{0}'' matches multiple resources ({2}); {1} was chosen as the most appropriate" msgstr "" #: TERMINOLOGY_TX_SYSTEM_HTTPS @@ -2899,7 +2913,7 @@ msgid "The code system reference {0} is wrong - the code system reference cannot msgstr "De codesysteemverwijzing {0} is incorrect - de codesysteemverwijzing kan niet naar een HTML-pagina leiden. Mogelijk is dit de juiste verwijzing: {1}" #: TERMINOLOGY_TX_UNKNOWN_OID -msgid "The OID ''{0}'' is not known, so the code can't be validated" +msgid "The OID ''{0}'' is not known, so the code can''t be validated" msgstr "" #: TERMINOLOGY_TX_WARNING @@ -3663,7 +3677,7 @@ msgid "The Unicode sequence has unterminated bi-di control characters (see CVE-2 msgstr "!!De Unicode sequence heeft niet-beeindigde bidirectionele stuurtekens (zie CVE-2021-42574): {1}" #: UNICODE_XML_BAD_CHARS -msgid "This content includes the character {1} (hex value). This character is illegal in the XML version of FHIR, and there is generally no valid use for such characters" +msgid "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgid_plural "This content includes the characters {1} (hex values). These characters are illegal in the XML version of FHIR, and there is generally no valid use for such characters" msgstr[0] "" msgstr[1] "" @@ -3810,9 +3824,9 @@ msgid "The System URI could not be determined for the code ''{0}'' in the ValueS msgstr "!!Kan system niet vinden - waardelijst heeft imports" #: Unable_to_resolve_system__value_set_has_include_with_filter -#| Unable to resolve system - value set {0} include #{1} has a filter on system {2} -msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}" -msgstr "!!Unable to resolve system - value set {0} include #{1} has a filter on system {2}" +#| The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3} +msgid "The System URI could not be determined for the code ''{0}'' in the ValueSet ''{1}'': include #{2} has a filter on system {3}: {4}" +msgstr "!!!!Unable to resolve system - value set {0} include #{1} has a filter on system {2}" #: Unable_to_resolve_system__value_set_has_include_with_no_system msgid "Unable to resolve system - value set {0} include #{1} has no system" @@ -4053,7 +4067,7 @@ msgid "The resource status ''{0}'' and the standards status ''{1}'' may not be c msgstr "" #: VALUESET_BAD_FILTER_OP -msgid "The operation ''{0}'' is not allowed for property ''{1}''. Allowed ops: {2}" +msgid "The operation ''{0}'' is not allowed for property ''{1}'' in system ''{3}''. Allowed ops: {2}" msgstr "" #: VALUESET_BAD_FILTER_VALUE_BOOLEAN @@ -4092,6 +4106,10 @@ msgstr "" msgid "The value for a filter based on property ''{0}'' must be a valid code from the system ''{2}'', and ''{1}'' is not ({3})" msgstr "" +#: VALUESET_BAD_FILTER_VALUE_VALID_CODE_CHANGE +msgid "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" +msgstr "" + #: VALUESET_BAD_FILTER_VALUE_VALID_REGEX msgid "The value for a filter based on property ''{0}'' should be a valid regex, not ''{1}'' (err = ''{2}'')" msgstr "" @@ -4215,7 +4233,7 @@ msgid "Published value sets SHALL conform to the ShareableValueSet profile, whic msgstr "!!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_SUPPLEMENT_MISSING -msgid "Required supplement not found: {1}" +msgid "Required supplements not found: {1}" msgid_plural "Required supplements not found: {1}" msgstr[0] "" msgstr[1] "" @@ -4246,7 +4264,7 @@ msgid "The property ''{0}'' is not known for the system ''{1}'', so may not be u msgstr "" #: VALUESET_UNKNOWN_FILTER_PROPERTY_NO_CS -msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it's useful, the list of generally known properties for all systems is {2}" +msgid "No definition can be found for the system {1}, and the property ''{0}'' is not a generally known property, so the property might not be valid, or understood by the terminology ecosystem. In case it''s useful, the list of generally known properties for all systems is {2}" msgstr "" #: Validation_BUNDLE_Message @@ -4272,32 +4290,32 @@ msgid_plural "{3}: max allowed = {7}, but found {0} (from {1})" msgstr[0] "" msgstr[1] "" -#: Validation_VAL_Profile_Minimum_SLICE -msgid "Slice ''{3}'': a matching slice is required, but not found (from {1}). Note that other slices are allowed in addition to this required slice" -msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" -msgstr[0] "" -msgstr[1] "" - #: Validation_VAL_Profile_Minimum msgid "{3}: minimum required = {7}, but only found {0} (from {1})" msgid_plural "{3}: minimum required = {7}, but only found {0} (from {1})" msgstr[0] "" msgstr[1] "" +#: Validation_VAL_Profile_Minimum_SLICE +msgid "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgid_plural "Slice ''{3}'': minimum required = {0}, but only found {7} (from {1})" +msgstr[0] "" +msgstr[1] "" + #: Validation_VAL_Profile_MultipleMatches -msgid "Found multiple matching profiles among {0} choice: {1}" +msgid "Found multiple matching profiles among {0} choices: {1}" msgid_plural "Found multiple matching profiles among {0} choices: {1}" msgstr[0] "" msgstr[1] "" #: Validation_VAL_Profile_NoCheckMax -msgid "{3}: Found {0} match, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check max allowed ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" #: Validation_VAL_Profile_NoCheckMin -msgid "{3}: Found {0} match, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" +msgid "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgid_plural "{3}: Found {0} matches, but unable to check minimum required ({2}) due to lack of slicing validation (from {1})" msgstr[0] "" msgstr[1] "" @@ -4397,7 +4415,7 @@ msgid "The URL is not valid because ''({1})'': {0}" msgstr "De URL is ongeldig vanwege ''({1})'' : {0}" #: XHTML_URL_INVALID_CHARS -msgid "URL contains Invalid Character ({1})" +msgid "URL contains {0} Invalid Characters ({1})" msgid_plural "URL contains {0} Invalid Characters ({1})" msgstr[0] "" msgstr[1] "" @@ -4547,3 +4565,4 @@ msgstr "De XML encoding is onjuist (moet UTF-8 zijn)" #: xml_stated_encoding_invalid msgid "The XML encoding stated in the header is invalid (must be ''UTF-8'' if stated)" msgstr "De XML encoding in de header is onjuist (moet ''UTF-8'' zijn, indien gespecificeerd)" +