fhirsmith 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (277) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/FHIRsmith.png +0 -0
  3. package/README.md +277 -0
  4. package/config-template.json +144 -0
  5. package/library/folder-setup.js +58 -0
  6. package/library/html-server.js +166 -0
  7. package/library/html.js +835 -0
  8. package/library/i18nsupport.js +259 -0
  9. package/library/languages.js +779 -0
  10. package/library/logger-telnet.js +205 -0
  11. package/library/logger.js +279 -0
  12. package/library/package-manager.js +876 -0
  13. package/library/utilities.js +196 -0
  14. package/library/version-utilities.js +1056 -0
  15. package/npmprojector/config-example.json +13 -0
  16. package/npmprojector/indexer.js +394 -0
  17. package/npmprojector/npmprojector.js +395 -0
  18. package/npmprojector/readme.md +174 -0
  19. package/npmprojector/watcher.js +335 -0
  20. package/package.json +119 -0
  21. package/packages/package-crawler.js +846 -0
  22. package/packages/packages-template.html +126 -0
  23. package/packages/packages.js +2838 -0
  24. package/passwords.ini +2 -0
  25. package/publisher/publisher-template.html +208 -0
  26. package/publisher/publisher.js +2167 -0
  27. package/publisher/task-draft.js +458 -0
  28. package/registry/api.js +735 -0
  29. package/registry/crawler.js +637 -0
  30. package/registry/model.js +513 -0
  31. package/registry/readme.md +243 -0
  32. package/registry/registry-data.json +121015 -0
  33. package/registry/registry-template.html +126 -0
  34. package/registry/registry.js +1395 -0
  35. package/registry/test-runner.js +237 -0
  36. package/root-template.html +124 -0
  37. package/server.js +524 -0
  38. package/shl/private-key.pem +5 -0
  39. package/shl/public-key.pem +18 -0
  40. package/shl/shl.js +1125 -0
  41. package/shl/vhl.js +69 -0
  42. package/static/FHIRsmith128.png +0 -0
  43. package/static/FHIRsmith16.png +0 -0
  44. package/static/FHIRsmith32.png +0 -0
  45. package/static/FHIRsmith64.png +0 -0
  46. package/static/assets/css/bootstrap-fhir.css +5302 -0
  47. package/static/assets/css/bootstrap-glyphicons.css +2 -0
  48. package/static/assets/css/bootstrap.css +4097 -0
  49. package/static/assets/css/jquery-ui.css +523 -0
  50. package/static/assets/css/jquery-ui.structure.css +863 -0
  51. package/static/assets/css/jquery-ui.structure.min.css +5 -0
  52. package/static/assets/css/jquery-ui.theme.css +439 -0
  53. package/static/assets/css/jquery-ui.theme.min.css +5 -0
  54. package/static/assets/css/jquery.ui.all.css +7 -0
  55. package/static/assets/css/modules.css +18 -0
  56. package/static/assets/css/project.css +367 -0
  57. package/static/assets/css/pygments-manni.css +66 -0
  58. package/static/assets/css/tags.css +74 -0
  59. package/static/assets/css/xml.css +2 -0
  60. package/static/assets/fonts/glyphiconshalflings-regular.eot +0 -0
  61. package/static/assets/fonts/glyphiconshalflings-regular.otf +0 -0
  62. package/static/assets/fonts/glyphiconshalflings-regular.svg +175 -0
  63. package/static/assets/fonts/glyphiconshalflings-regular.ttf +0 -0
  64. package/static/assets/fonts/glyphiconshalflings-regular.woff +0 -0
  65. package/static/assets/ico/apple-touch-icon-114-precomposed.png +0 -0
  66. package/static/assets/ico/apple-touch-icon-144-precomposed.png +0 -0
  67. package/static/assets/ico/apple-touch-icon-57-precomposed.png +0 -0
  68. package/static/assets/ico/apple-touch-icon-72-precomposed.png +0 -0
  69. package/static/assets/ico/favicon.ico +0 -0
  70. package/static/assets/ico/favicon.png +0 -0
  71. package/static/assets/images/fhir-logo-www.png +0 -0
  72. package/static/assets/images/fhir-logo.png +0 -0
  73. package/static/assets/images/hl7-logo.png +0 -0
  74. package/static/assets/images/logo_ansinew.jpg +0 -0
  75. package/static/assets/images/search.png +0 -0
  76. package/static/assets/images/stripe.png +0 -0
  77. package/static/assets/images/target.png +0 -0
  78. package/static/assets/images/tx-registry-root.gif +0 -0
  79. package/static/assets/images/tx-registry.png +0 -0
  80. package/static/assets/images/tx-server.png +0 -0
  81. package/static/assets/images/tx-version.png +0 -0
  82. package/static/assets/js/bootstrap.min.js +6 -0
  83. package/static/assets/js/fhir-gw.js +259 -0
  84. package/static/assets/js/fhir.js +2 -0
  85. package/static/assets/js/html5shiv.js +8 -0
  86. package/static/assets/js/jcookie.js +96 -0
  87. package/static/assets/js/jquery-ui.min.js +6 -0
  88. package/static/assets/js/jquery.js +10716 -0
  89. package/static/assets/js/jquery.min.js +2 -0
  90. package/static/assets/js/jquery.ui.core.js +314 -0
  91. package/static/assets/js/jquery.ui.draggable.js +825 -0
  92. package/static/assets/js/jquery.ui.mouse.js +162 -0
  93. package/static/assets/js/jquery.ui.resizable.js +842 -0
  94. package/static/assets/js/jquery.ui.widget.js +268 -0
  95. package/static/assets/js/json2.js +487 -0
  96. package/static/assets/js/jtip.js +97 -0
  97. package/static/assets/js/respond.min.js +6 -0
  98. package/static/assets/js/statuspage.js +70 -0
  99. package/static/assets/js/xml.js +2 -0
  100. package/static/dist/js/bootstrap.js +1964 -0
  101. package/static/favicon.png +0 -0
  102. package/static/fhir.css +626 -0
  103. package/static/icon-fhir-16.png +0 -0
  104. package/static/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  105. package/static/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  106. package/static/images/ui-bg_flat_10_000000_40x100.png +0 -0
  107. package/static/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  108. package/static/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  109. package/static/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  110. package/static/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  111. package/static/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  112. package/static/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  113. package/static/images/ui-icons_222222_256x240.png +0 -0
  114. package/static/images/ui-icons_228ef1_256x240.png +0 -0
  115. package/static/images/ui-icons_ef8c08_256x240.png +0 -0
  116. package/static/images/ui-icons_ffd27a_256x240.png +0 -0
  117. package/static/images/ui-icons_ffffff_256x240.png +0 -0
  118. package/static/js/jquery.effects.blind.js +49 -0
  119. package/static/js/jquery.effects.bounce.js +78 -0
  120. package/static/js/jquery.effects.clip.js +54 -0
  121. package/static/js/jquery.effects.core.js +763 -0
  122. package/static/js/jquery.effects.drop.js +50 -0
  123. package/static/js/jquery.effects.explode.js +79 -0
  124. package/static/js/jquery.effects.fade.js +32 -0
  125. package/static/js/jquery.effects.fold.js +56 -0
  126. package/static/js/jquery.effects.highlight.js +50 -0
  127. package/static/js/jquery.effects.pulsate.js +51 -0
  128. package/static/js/jquery.effects.scale.js +178 -0
  129. package/static/js/jquery.effects.shake.js +57 -0
  130. package/static/js/jquery.effects.slide.js +50 -0
  131. package/static/js/jquery.effects.transfer.js +45 -0
  132. package/static/js/jquery.ui.accordion.js +611 -0
  133. package/static/js/jquery.ui.autocomplete.js +612 -0
  134. package/static/js/jquery.ui.button.js +416 -0
  135. package/static/js/jquery.ui.datepicker.js +1823 -0
  136. package/static/js/jquery.ui.dialog.js +878 -0
  137. package/static/js/jquery.ui.droppable.js +296 -0
  138. package/static/js/jquery.ui.position.js +252 -0
  139. package/static/js/jquery.ui.progressbar.js +109 -0
  140. package/static/js/jquery.ui.selectable.js +266 -0
  141. package/static/js/jquery.ui.slider.js +666 -0
  142. package/static/js/jquery.ui.sortable.js +1077 -0
  143. package/static/js/jquery.ui.tabs.js +758 -0
  144. package/stats.js +80 -0
  145. package/test-cache/vsac/vsac-valuesets.db +0 -0
  146. package/token/nginx_passport_setup.md +383 -0
  147. package/token/security_guide.md +294 -0
  148. package/token/token-template.html +330 -0
  149. package/token/token.js +1300 -0
  150. package/translations/Messages.properties +1510 -0
  151. package/translations/Messages_ar.properties +1399 -0
  152. package/translations/Messages_de.properties +836 -0
  153. package/translations/Messages_es.properties +737 -0
  154. package/translations/Messages_fr.properties +1 -0
  155. package/translations/Messages_ja.properties +893 -0
  156. package/translations/Messages_nl.properties +1357 -0
  157. package/translations/Messages_pt.properties +1302 -0
  158. package/translations/Messages_ru.properties +1 -0
  159. package/translations/Messages_uz.properties +1 -0
  160. package/translations/Messages_zh.properties +1 -0
  161. package/translations/rendering-phrases.properties +1128 -0
  162. package/translations/rendering-phrases_ar.properties +1091 -0
  163. package/translations/rendering-phrases_de.properties +6 -0
  164. package/translations/rendering-phrases_es.properties +6 -0
  165. package/translations/rendering-phrases_fr.properties +624 -0
  166. package/translations/rendering-phrases_ja.properties +21 -0
  167. package/translations/rendering-phrases_nl.properties +970 -0
  168. package/translations/rendering-phrases_pt.properties +1020 -0
  169. package/translations/rendering-phrases_ru.properties +1094 -0
  170. package/translations/rendering-phrases_uz.properties +1 -0
  171. package/translations/rendering-phrases_zh.properties +1 -0
  172. package/tx/README.md +418 -0
  173. package/tx/cm/cm-api.js +110 -0
  174. package/tx/cm/cm-database.js +735 -0
  175. package/tx/cm/cm-package.js +325 -0
  176. package/tx/cs/cs-api.js +789 -0
  177. package/tx/cs/cs-areacode.js +615 -0
  178. package/tx/cs/cs-country.js +1110 -0
  179. package/tx/cs/cs-cpt.js +785 -0
  180. package/tx/cs/cs-cs.js +1579 -0
  181. package/tx/cs/cs-currency.js +539 -0
  182. package/tx/cs/cs-db.js +1321 -0
  183. package/tx/cs/cs-hgvs.js +329 -0
  184. package/tx/cs/cs-lang.js +465 -0
  185. package/tx/cs/cs-loinc.js +1485 -0
  186. package/tx/cs/cs-mimetypes.js +238 -0
  187. package/tx/cs/cs-ndc.js +704 -0
  188. package/tx/cs/cs-omop.js +1025 -0
  189. package/tx/cs/cs-provider-api.js +43 -0
  190. package/tx/cs/cs-provider-list.js +37 -0
  191. package/tx/cs/cs-rxnorm.js +808 -0
  192. package/tx/cs/cs-snomed.js +1102 -0
  193. package/tx/cs/cs-ucum.js +514 -0
  194. package/tx/cs/cs-unii.js +271 -0
  195. package/tx/cs/cs-uri.js +218 -0
  196. package/tx/cs/cs-usstates.js +305 -0
  197. package/tx/dev.fhir.org.yml +14 -0
  198. package/tx/fixtures/test-cases-setup.json +18 -0
  199. package/tx/fixtures/test-cases.yml +16 -0
  200. package/tx/html/codesystem-operations.liquid +25 -0
  201. package/tx/html/home-metrics.liquid +247 -0
  202. package/tx/html/operations-form.liquid +148 -0
  203. package/tx/html/search-form.liquid +62 -0
  204. package/tx/html/tx-template.html +133 -0
  205. package/tx/html/valueset-operations.liquid +54 -0
  206. package/tx/importers/atc-to-fhir.js +316 -0
  207. package/tx/importers/import-loinc.module.js +1536 -0
  208. package/tx/importers/import-ndc.module.js +1088 -0
  209. package/tx/importers/import-rxnorm.module.js +898 -0
  210. package/tx/importers/import-sct.module.js +2457 -0
  211. package/tx/importers/import-unii.module.js +601 -0
  212. package/tx/importers/readme.md +453 -0
  213. package/tx/importers/subset-loinc.module.js +1081 -0
  214. package/tx/importers/subset-rxnorm.module.js +938 -0
  215. package/tx/importers/tx-import-base.js +351 -0
  216. package/tx/importers/tx-import-settings.js +310 -0
  217. package/tx/importers/tx-import.js +357 -0
  218. package/tx/library/canonical-resource.js +88 -0
  219. package/tx/library/capabilitystatement.js +292 -0
  220. package/tx/library/codesystem.js +774 -0
  221. package/tx/library/conceptmap.js +568 -0
  222. package/tx/library/designations.js +932 -0
  223. package/tx/library/errors.js +77 -0
  224. package/tx/library/extensions.js +117 -0
  225. package/tx/library/namingsystem.js +322 -0
  226. package/tx/library/operation-outcome.js +127 -0
  227. package/tx/library/parameters.js +105 -0
  228. package/tx/library/renderer.js +1559 -0
  229. package/tx/library/terminologycapabilities.js +418 -0
  230. package/tx/library/ucum-parsers.js +1029 -0
  231. package/tx/library/ucum-service.js +370 -0
  232. package/tx/library/ucum-types.js +1099 -0
  233. package/tx/library/valueset.js +543 -0
  234. package/tx/library.js +676 -0
  235. package/tx/ocl/cm-ocl.js +106 -0
  236. package/tx/ocl/cs-ocl.js +39 -0
  237. package/tx/ocl/vs-ocl.js +105 -0
  238. package/tx/operation-context.js +568 -0
  239. package/tx/params.js +613 -0
  240. package/tx/provider.js +403 -0
  241. package/tx/sct/ecl.js +1560 -0
  242. package/tx/sct/expressions.js +2077 -0
  243. package/tx/sct/structures.js +1396 -0
  244. package/tx/tx-html.js +1063 -0
  245. package/tx/tx.fhir.org.yml +39 -0
  246. package/tx/tx.js +927 -0
  247. package/tx/vs/vs-api.js +112 -0
  248. package/tx/vs/vs-database.js +786 -0
  249. package/tx/vs/vs-package.js +358 -0
  250. package/tx/vs/vs-vsac.js +366 -0
  251. package/tx/workers/batch-validate.js +129 -0
  252. package/tx/workers/batch.js +361 -0
  253. package/tx/workers/closure.js +32 -0
  254. package/tx/workers/expand.js +1845 -0
  255. package/tx/workers/lookup.js +407 -0
  256. package/tx/workers/metadata.js +467 -0
  257. package/tx/workers/operations.js +34 -0
  258. package/tx/workers/read.js +164 -0
  259. package/tx/workers/search.js +384 -0
  260. package/tx/workers/subsumes.js +334 -0
  261. package/tx/workers/translate.js +492 -0
  262. package/tx/workers/validate.js +2504 -0
  263. package/tx/workers/worker.js +904 -0
  264. package/tx/xml/capabilitystatement-xml.js +63 -0
  265. package/tx/xml/codesystem-xml.js +62 -0
  266. package/tx/xml/conceptmap-xml.js +65 -0
  267. package/tx/xml/namingsystem-xml.js +65 -0
  268. package/tx/xml/operationoutcome-xml.js +127 -0
  269. package/tx/xml/parameters-xml.js +312 -0
  270. package/tx/xml/terminologycapabilities-xml.js +64 -0
  271. package/tx/xml/valueset-xml.js +64 -0
  272. package/tx/xml/xml-base.js +603 -0
  273. package/vcl/vcl-parser.js +1098 -0
  274. package/vcl/vcl.js +253 -0
  275. package/windows-install.js +19 -0
  276. package/xig/xig-template.html +124 -0
  277. package/xig/xig.js +3049 -0
@@ -0,0 +1,1128 @@
1
+ # Rendering
2
+ ACTOR_DEF_ACT = Actor: {0}
3
+ ACTOR_DEF_CAP = Capabilities:
4
+ ACTOR_DEF_DER = Derived from:
5
+ GENERAL_REFS = References:
6
+ ACTOR_DEF_TYP = Type: {0}
7
+ ADD_BIND_ADD_BIND = Additional Bindings
8
+ ADD_BIND_ALL_REP = All repeats
9
+ ADD_BIND_ANY = Any
10
+ ADD_BIND_ANY_REP = any repeat
11
+ GENERAL_COMPONENT = Component
12
+ ADD_BIND_CURR_BIND = Current
13
+ ADD_BIND_DESIG_SYS = This value set is a good set of codes to start with when designing your system
14
+ GENERAL_DOCUMENTATION = Documentation
15
+ ADD_BIND_EXT_PREF = A required binding, for use when the binding strength is ''extensible'' or ''preferred''
16
+ ADD_BIND_EX_BIND = Extensible
17
+ ADD_BIND_GIVEN_CONT = This value set is provided to user look up in a given context
18
+ ADD_BIND_MAX = Max Binding
19
+ ADD_BIND_MIN = Min Binding
20
+ GENERAL_BIND_MIN_ALLOW = The minimum allowable value set - any conformant system SHALL support all these codes
21
+ ADD_BIND_NEW_REC = New records are required to use this value set, but legacy records may use other codes
22
+ GENERAL_PREFERRED = Preferred
23
+ ADD_BIND_PREF_BIND = Preferred
24
+ GENERAL_PURPOSE = Purpose
25
+ ADD_BIND_RECOM_VALUE_SET = This is the value set that is recommended (documentation should explain why)
26
+ GENERAL_REQUIRED = Required
27
+ ADD_BIND_REQ_BIND = Required
28
+ GENERAL_STARTER = Starter
29
+ ADD_BIND_UI = UI
30
+ ADD_BIND_UI_BIND = UI Binding
31
+ ADD_BIND_UNKNOWN_PUR = Unknown code for purpose
32
+ GENERAL_USAGE = Usage
33
+ ADD_BIND_VALID_EXT = Validators will check this binding (strength = extensible)
34
+ ADD_BIND_VALID_REQ = Validators will check this binding (strength = required)
35
+ ADD_BIND_VALUE_COMP = This value set is a component of the base value set
36
+ BUNDLE_ETAG = ETag = {0}
37
+ BUNDLE_HEADER_ENTRY = Entry {0}
38
+ BUNDLE_HEADER_ENTRY_URL = Entry {0} - fullUrl = {1}
39
+ BUNDLE_HEADER_ROOT = Bundle {0} of type {1}
40
+ BUNDLE_IF_MATCH = If-Match = {0}
41
+ BUNDLE_IF_MOD = If-Modified-Since = {0}
42
+ BUNDLE_IF_NONE = If-None-Exist = {0}
43
+ BUNDLE_IF_NON_MATCH = If-None-Match = {0}
44
+ BUNDLE_LAST_MOD = LastModified = {0}
45
+ BUNDLE_LOCATION = Location = {0}
46
+ BUNDLE_REQUEST = Request:
47
+ BUNDLE_RESOURCE = Resource {0}:
48
+ BUNDLE_RESPONSE = Response:
49
+ BUNDLE_REV_EXCP = Exception generating narrative: {0}
50
+ BUNDLE_SEARCH = Search:
51
+ BUNDLE_SEARCH_MODE = Mode = {0}
52
+ BUNDLE_SEARCH_SCORE = Score = {0}
53
+ BUND_REND_INVALID_DOC = Invalid document ''{0}'' - first entry is not a Composition ({0})
54
+ CANON_REND_COMMITTEE = Committee
55
+ GENERAL_COPYRIGHT = Copyright
56
+ GENERAL_DEFINITION = Definition
57
+ CANON_REND_JSON = JSON
58
+ CANON_REND_MATURITY = Maturity
59
+ GENERAL_NAME = Name
60
+ CANON_REND_PUBLISHER = Publisher
61
+ CANON_REND_SOURCE_RES = Source Resource
62
+ GENERAL_STATUS = Status
63
+ GENERAL_TITLE = Title
64
+ CANON_REND_TURTLE = Turtle
65
+ GENERAL_DEFINING_URL = Defining URL
66
+ GENERAL_VER = Version
67
+ GENERAL_XML = XML
68
+ CAPABILITY_ADD_SUPP_PROF = Additional supported profiles:
69
+ CAPABILITY_BASE_SYS = Base System Profile
70
+ CAPABILITY_COMB_SEARCH_PAR = Combined Search Parameters
71
+ GENERAL_CONFORMANCE = Conformance
72
+ CAPABILITY_CORS_NO = Enable CORS: no
73
+ CAPABILITY_CORS_YES = Enable CORS: yes
74
+ CAPABILITY_CREATE_INT = POST a new resource (create interaction)
75
+ GENERAL_CRIT = Criteria
76
+ CAPABILITY_DELETE_INT = DELETE a resource (delete interaction)
77
+ CAPABILITY_ERR_DET = Error detected
78
+ CAPABILITY_EXT_OP = Extended Operations
79
+ CAPABILITY_FHIR = Core FHIR Resource
80
+ CAPABILITY_FHIR_VER = FHIR Version: {0}
81
+ CAPABILITY_HISTORY_INT = GET changes to a resource (history interaction on instance)
82
+ CAPABILITY_HISTORY_TYPE = GET changes for all resources of the type (history interaction on type)
83
+ CAPABILITY_IMP_VER = Implementation Guide Version: {0}
84
+ CAPABILITY_INT = interaction.
85
+ CAPABILITY_INTER_SUPP = The interactions supported by each resource (
86
+ CAPABILITY_INT_DESC = interaction described as follows:
87
+ CAPABILITY_INT_SUMM = Interaction summary
88
+ CAPABILITY_MAY_SUPP = MAY Support the Following Implementation Guides
89
+ CAPABILITY_MULT_EXT = this mark indicates that there are more than one expectation extensions present
90
+ CAPABILITY_NOTE_CAP = Note to Implementers: FHIR Capabilities
91
+ CAPABILITY_OP = Operations
92
+ CAPABILITY_OPER = Operation
93
+ CAPABILITY_OTH_RES_ENB = The other resources enabled for
94
+ GENERAL_PAR = Parameter
95
+ GENERAL_PARS = Parameters
96
+ PARS_SUMMARY_SIZE = Parameters ({0} parameters)
97
+ PARS_SUMMARY_LIST = Parameters: {0}
98
+ CAPABILITY_PATCH_INT = PATCH a new resource version (patch interaction)
99
+ GENERAL_PROF = Profile
100
+ CAPABILITY_PROF_CONF = Profile Conformance
101
+ CAPABILITY_PROF_RES_DOC = Document Resource Profile
102
+ CAPABILITY_PROF_MAP = Profile Mapping
103
+ CAPABILITY_PUB_BY = Published by: {0}
104
+ CAPABILITY_PUB_ON = Published on: {0}
105
+ CAPABILITY_READ_INT = GET a resource (read interaction)
106
+ CAPABILITY_REF_PROF = Reference Policy
107
+ CAPABILITY_REQ_RECOM = Required and recommended search parameters
108
+ CAPABILITY_REST_CAPS = FHIR RESTful Capabilities
109
+ CAPABILITY_DOCUMENT_CAPS = FHIR Document Capabilities
110
+ CAPABILITY_MESSAGING_CAPS = FHIR Messaging Capabilities
111
+ CAPABILITY_MESSAGING_CAP = Messaging Capability
112
+ CAPABILITY_REST_CONFIG = REST Configuration: {0}
113
+ CAPABILITY_RES_CONF = Resource Conformance: {0}
114
+ CAPABILITY_RES_ENB = The linked resources enabled for
115
+ CAPABILITY_RES_OPER = The operations on the resource (if any)
116
+ CAPABILITY_RES_PRO = Capabilities by Resource/Profile
117
+ CAPABILITY_RES_TYP = Resource Type
118
+ CAPABILITY_REV_PROF = The relevant profiles (if any)
119
+ CAPABILITY_SEARCHES = Searches
120
+ CAPABILITY_SEARCH_INT = GET all set of resources of the type (search interaction)
121
+ CAPABILITY_SEARCH_PAR = The required, recommended, and some optional search parameters (if any).
122
+ CAPABILITY_SEARCH_PARS = Search Parameters
123
+ CAPABILITY_SHOULD_SUPP = SHOULD Support the Following Implementation Guides
124
+ GENERAL_SUMM = Summary
125
+ CAPABILITY_SUMM_RES = The summary table lists the resources that are part of this configuration, and for each resource it lists:
126
+ CAPABILITY_SUMM_SYS_INT = Summary of System-wide Interactions
127
+ CAPABILITY_SUMM_SYS_OP = Summary of System-wide Operations
128
+ CAPABILITY_SUMM_SYS_SP = Summary of System-wide Search Parameters
129
+ CAPABILITY_SUPP = support
130
+ CAPABILITY_SUPPS = Supports
131
+ CAPABILITY_SUPP_FORM = Supported Formats:
132
+ CAPABILITY_SUPP_PATCH_FORM = Supported Patch Formats:
133
+ CAPABILITY_SUPP_PROFS = Supported Profiles
134
+ CAPABILITY_SUPP_MSGS = Supported Message(s)
135
+ CAPABILITY_ENDPOINTS = Endpoint(s)
136
+ CAPABILITY_SUPP_THE = support the
137
+ CAPABILITY_SUPPS_THE = Supports the
138
+ GENERAL_TYPE = Type
139
+ CAPABILITY_TYPS = Types
140
+ CAPABILITY_TYP_PRES = ype are only present if at least one of the resources has support for them.
141
+ CAPABILITY_UPDATE_INT = PUT a new resource version (update interaction)
142
+ CAPABILITY_VREAD_INT = GET past versions of resources (vread interaction)
143
+ 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.
144
+ CAPABILTY_SHALL_SUPP = SHALL Support the Following Implementation Guides
145
+ CODESYSTEM_CONCEPTS = Concepts
146
+ CODESYSTEM_CONTENT_COMPLETE = This <param name="cased"/> code system <param name="cs"/> defines the following code<if test="code-count != 1">s</if><param name="h"/>:
147
+ CODESYSTEM_CONTENT_EXAMPLE = This <param name="cased"/> code system <param name="cs"/> provides some code<if test="code-count != 1">s</if><param name="h"/> <b>that are example only</b>:
148
+ CODESYSTEM_CONTENT_FRAGMENT = This <param name="cased"/> code system <param name="cs"/> provides <b>a fragment</b> that includes following code<if test="code-count != 1">s</if><param name="h"/>:
149
+ CODESYSTEM_CONTENT_NOTPRESENT = This <param name="cased"/> code system <param name="cs"/> defines codes<param name="h"/>, but no codes are represented here
150
+ CODESYSTEM_CONTENT_SUPPLEMENT = This code system supplement <param name="cs"/> defines {0} on the following code<if test="code-count != 1">s</if>:
151
+ CODESYSTEM_DEPRECATED = Deprecated
152
+ GENERAL_DESC = Description
153
+ CODESYSTEM_FILTERS = Filters
154
+ GENERAL_CODE = Code
155
+ CODESYSTEM_FILTER_OP = Op
156
+ GENERAL_VALUE = Value
157
+ GENERAL_PROPS = Properties
158
+ CODESYSTEM_PROPS_DESC = This code system defines the following properties for its concepts
159
+ GENERAL_URI = URI
160
+ GENERAL_ADD_LANG = Additional Language Displays
161
+ CODE_SYS_COMPLETE = All the concepts defined by the code system are included in the code system resource
162
+ GENERAL_CONTENT = Content
163
+ CODE_SYS_COPY = Copy
164
+ CODE_SYS_DISP = displays
165
+ CODE_SYS_DISP_PROP = displays and properties
166
+ CODE_SYS_EXAMPLE = A few representative concepts are included in the code system resource
167
+ CODE_SYS_FEAT = features
168
+ CODE_SYS_FOR_OID = {0} (for OID based terminology systems)
169
+ CODE_SYS_FRAGMENT = A subset of the code system concepts are included in the code system resource
170
+ CODE_SYS_IN_A_HIERARCHY = in a {0} hierarchy
171
+ CODE_SYS_NOTPRESENT = None of the concepts defined by the code system are included in the code system resource
172
+ GENERAL_OID = OID
173
+ CODE_SYS_PROP = properties
174
+ CODE_SYS_REPLACED_BY = (replaced by
175
+ CODE_SYS_SUPPLEMENT = This code system resource is a supplement to
176
+ CODE_SYS_THE_VALUE_SET = {0} is the value set for all codes in this code system
177
+ CODE_SYS_UNDEF_HIER = in an undefined hierarchy
178
+ CODE_SYS_UNKN_MODE = Unknown CodeSystemContentMode mode
179
+ GENERAL_VALUESET = Value Set
180
+ GENERAL_CODESYSTEM = Code System
181
+ GENERAL_COMMENT = Comment
182
+ CONC_MAP_FRM = from
183
+ CONC_MAP_FROM = Mapping from
184
+ CONC_MAP_GRP = Group {0}
185
+ CONC_MAP_NOT_SPEC = (not specified)
186
+ CONC_MAP_REL = Relationship
187
+ CONC_MAP_SOURCE = Source Code
188
+ CONC_MAP_SOURCE_CARD = Card.
189
+ CONC_MAP_SOURCE_TYPE = Type
190
+ CONC_MAP_SRC_DET = Source Concept Details
191
+ CONC_MAP_TO = to
192
+ CONC_MAP_TRGT = Target Code
193
+ CONC_MAP_TRGT_CARD = Card.
194
+ CONC_MAP_TRGT_TYPE = Type
195
+ CONC_MAP_TRGT_DET = Target Concept Details
196
+ DATA_REND_AFTRBKFST = after breakfast
197
+ DATA_REND_AFTRDINR = after dinner
198
+ DATA_REND_AFTRLUNCH = after lunch
199
+ DATA_REND_AFTRMEALS = after meals
200
+ DATA_REND_AFTRWKNG = after waking
201
+ DATA_REND_ATBKFST = at breakfast
202
+ DATA_REND_ATDINR = at dinner
203
+ DATA_REND_ATLUNCH = at lunch
204
+ DATA_REND_BASE64 = (base64 data - {0} base64 chars)
205
+ DATA_REND_BFBKFST = before breakfast
206
+ DATA_REND_BFDINR = before dinner
207
+ DATA_REND_BFLUNCH = before lunch
208
+ DATA_REND_BFMEALS = before meals
209
+ DATA_REND_BFSLEEP = before sleeping
210
+ DATA_REND_BY = By
211
+ DATA_REND_COND = Condition
212
+ DATA_REND_COUNT = Count {0}
213
+ DATA_REND_DATA = Data: {0}
214
+ DATA_REND_DETAILS = (Details: {0} code
215
+ DATA_REND_DETAILS_STATED = (Details: {0} code {1} = ''{2}'')
216
+ DATA_REND_DETAILS_STATED_ND = (Details: {0} code {1})
217
+ DATA_REND_DICOM = DICOM
218
+ DATA_REND_DIM = Dimensions: {0}
219
+ DATA_REND_DURATION = Duration {0}
220
+ DATA_REND_ERROR = Error: {0}
221
+ DATA_REND_EVENTS = Events: {0}
222
+ DATA_REND_EXCEPTION = Exception
223
+ DATA_REND_FACT = Factor: {0}
224
+ DATA_REND_FAX = Fax: {0}
225
+ GENERAL_FILTER = Filter
226
+ GENERAL_SOURCE = Source
227
+ DATA_REND_GLN = Global Location Number
228
+ DATA_REND_ICD = ICD-9
229
+ DATA_REND_INT = Interval: {0}
230
+ DATA_REND_LIMIT = Limit
231
+ DATA_REND_LOINC = LOINC
232
+ DATA_REND_LOWER = Lower: {0}
233
+ DATA_REND_MEALS = at meals
234
+ DATA_REND_MKDWN_LNK = Unable to resolve markdown link ''{0}''
235
+ DATA_REND_NOT_STAT = [not stated]
236
+ DATA_REND_NO_DISP = No display for {0}
237
+ DATA_REND_ONCE = Once
238
+ DATA_REND_ONGOING = (ongoing)
239
+ DATA_REND_ORIGIN = Origin: {0}
240
+ DATA_REND_PER = per
241
+ DATA_REND_PERIOD = period:
242
+ DATA_REND_PHONE = Phone: {0}
243
+ DATA_REND_RXNORM = RxNorm
244
+ DATA_REND_SEARCH = Search on: {0}
245
+ DATA_REND_SNOMED = SNOMED CT
246
+ DATA_REND_SORT = Sort
247
+ DATA_REND_SOURCE = source
248
+ DATA_REND_STARTING = Starting {0}
249
+ GENERAL_SUBJ = Subject
250
+ DATA_REND_THESE_CODES = One of these codes:
251
+ DATA_REND_TIMING = Timing
252
+ DATA_REND_TO_DO = to do: {0}
253
+ GENERAL_UCUM = UCUM
254
+ GENERAL_NCI_THES = NCI Thesaurus
255
+ DATA_REND_UNKNWN = unknown
256
+ DATA_REND_UNRD_EX = WARNING: Unrenderable Modifier Extension!
257
+ DATA_REND_UNTIL = Until {0}
258
+ DATA_REND_UP = Upper: {0}
259
+ DATA_REND_USE = use:
260
+ DATA_REND_VALUESET = In ValueSet
261
+ DATA_REND_VERSION = (version = {0} {1}
262
+ DIAG_REP_REND_AGE = Age
263
+ DIAG_REP_REND_ERR = Error:
264
+ GENERAL_FLAGS = Flags
265
+ DIAG_REP_REND_FOR = for
266
+ DIAG_REP_REND_IDENTIFIER = Identifier
267
+ GENERAL_TODO = Not done yet
268
+ GENERAL_NOTE = Note
269
+ DIAG_REP_REND_NOTRES = The observation ''{0}'' could not be resolved
270
+ DIAG_REP_REND_OBS = Observation
271
+ DIAG_REP_REND_PER = Performer
272
+ DIAG_REP_REND_REFRAN = Reference Range
273
+ DIAG_REP_REND_REP = Reported
274
+ DIAG_REP_REND_REPDET = Report Details
275
+ GENERAL_REQUEST = Request
276
+ DIAG_REP_REND_UNABLE = Unable to get Patient Details
277
+ DIAG_REP_REND_WHEN = When For
278
+ EXAMPLE_SCEN_STEP_SCEN = Step {0} - See scenario {1}
279
+ EX_SCEN_ALT = Alternative {0}
280
+ EX_SCEN_BEL = below
281
+ EX_SCEN_CONTA = Contains:
282
+ EX_SCEN_ERR_REN = Error rendering ExampleScenario {0}
283
+ EX_SCEN_FVER = FHIR version
284
+ EX_SCEN_IN = Initiator
285
+ EX_SCEN_OTH = See other scenario
286
+ EX_SCEN_POSTCON = Post-conditions:
287
+ EX_SCEN_PRECON = Pre-conditions:
288
+ EX_SCEN_PROC = Process: {0}
289
+ EX_SCEN_REC = Receiver
290
+ EX_SCEN_RES = Response
291
+ EX_SCEN_SEE = See subprocess
292
+ EX_SCEN_STEP = Step
293
+ EX_SCEN_TIME = ... time passes ...
294
+ EX_SCEN_UN = Unknown ExampleScenario Renderer Mode {0}
295
+ EX_SCEN_UN_ACT = Unable to find referenced actor {0}
296
+ GENERAL_VER_LOW = version
297
+ IMP_GUIDE_URL = The official URL for this implementation guide is:
298
+ LIB_REND_ART = Related Artifacts
299
+ LIB_REND_AUT = Author
300
+ LIB_REND_CONT = Contents
301
+ LIB_REND_ED = Editor
302
+ LIB_REND_END = Endorser
303
+ LIB_REND_NOCONT = No Content
304
+ LIB_REND_PAR = Participants
305
+ LIB_REND_REQ = Data Requirements
306
+ LIB_REND_REV = Reviewer
307
+ LIB_REND_SHOW = Content not shown - (
308
+ LIB_REND_SIZE = , size = {0}
309
+ LIST_REND_DAT = Date
310
+ LIST_REND_DATE = Date: {0}
311
+ LIST_REND_DEL = Deleted
312
+ LIST_REND_ENC = Encounter:
313
+ LIST_REND_FLAG = Flag
314
+ LIST_REND_ITEM = Items
315
+ LIST_REND_MODE = Mode: {0}
316
+ LIST_REND_ORD = Order: {0}
317
+ GENERAL_SRC = Source:
318
+ LIST_REND_STAT = Status: {0}
319
+ LIST_REND_SUB = Subject:
320
+ MAP_DEFAULT_COMMENT = This element was not defined prior to R5
321
+ NAME_SYS_IDEN = Identifiers
322
+ NAME_SYS_PER = Period
323
+ OBLIG_ACT = Actor
324
+ OBLIG_ELE = Elements
325
+ GENERAL_OBLIG = Obligations
326
+ GENERAL_BINDING = Binding
327
+ GENERAL_BINDING_NO_VS_1 = Binding Description
328
+ GENERAL_BINDING_NO_VS_2 = This binding doesn''t define a testable ValueSet
329
+ GENERAL_BINDING_NO_DESC = No description provided
330
+ GENERAL_CARDINALITY = Cardinality
331
+ OP_DEF_INPAR = Input parameters Profile:
332
+ OP_DEF_OFFIC = The official URL for this operation definition is:
333
+ OP_DEF_OUTPAR = Output parameters Profile:
334
+ OP_DEF_SCO = Scope
335
+ OP_DEF_URL = URL: [base]/{0}
336
+ OP_DEF_USE = Use
337
+ GENERAL_DETAILS = Details
338
+ OP_OUT_DIAG = Diagnostics
339
+ GENERAL_LOCATION = Location
340
+ OP_OUT_OK = All OK
341
+ OP_OUT_SEV = Severity
342
+ OP_OUT_SRC = Source
343
+ PAT_ACTIVE = Active:
344
+ PAT_ACTIVE_HINT = Record is active
345
+ PAT_ALT_NAME = Alt. Name:
346
+ PAT_ALT_NAME_HINT = Alternate names (see the one above)
347
+ PAT_CONTACT = Contact Detail
348
+ PAT_CONTACT_HINT = Ways to contact the Patient
349
+ PAT_CONTAINED_one = Contained Resource
350
+ PAT_CONTAINED_other = Contained Resources
351
+ PAT_DECEASED = Deceased:
352
+ PAT_DECEASED_HINT = Known status of Patient
353
+ PAT_DOB = DoB: {0}
354
+ PAT_GENDER = Gender: {0}
355
+ PAT_GP = General Practitioner
356
+ PAT_LANG_HINT_one = Language spoken
357
+ PAT_LANG_HINT_other = Languages spoken
358
+ PAT_LANG_PREFERRED = (preferred)
359
+ PAT_LANG_one = Language:
360
+ PAT_LANG_other = Languages:
361
+ PAT_LINKS = Links:
362
+ PAT_LINKS_HINT = Patient Links
363
+ PAT_LINK_REFER = Please refer to
364
+ PAT_LINK_REPL = This record replaces
365
+ PAT_LINK_REPLBY = This record replaced by
366
+ PAT_LINK_SEE = Also see
367
+ PAT_MARITAL = Marital Status:
368
+ PAT_MARITAL_HINT = Known Marital status of Patient
369
+ PAT_MO = Managing Organization
370
+ PAT_MUL_BIRTH = Multiple Birth:
371
+ PAT_MUL_BIRTH_HINT = Known multipleBirth status of Patient
372
+ GENERAL_CONTACT = Contact:
373
+ PAT_NOK_CONTACT_HINT = Patient contact
374
+ PAT_NOM_CONTACT = Nominated Contact:
375
+ PAT_NO_DOB = DoB Unknown
376
+ PAT_NO_GENDER = (no stated gender)
377
+ PAT_NO_NAME = Anonymous Patient
378
+ PAT_ORG = Organization:
379
+ PAT_OTHER_ID_HINT_one = Other Id (see the one above)
380
+ PAT_OTHER_ID_HINT_other = Other Ids (see the one above)
381
+ PAT_OTHER_ID_one = Other Id:
382
+ PAT_OTHER_ID_other = Other Ids:
383
+ PAT_PERIOD = Valid Period:
384
+ PAT_PHOTO = Patient Photo
385
+ PAT_RELN = Relationships:
386
+ PROF_DRIV_ERR_GEN_NARR = Error Generating Narrative for
387
+ PROF_DRIV_EXCP = Exception Generating Narrative: {0}
388
+ PROF_DRIV_FEXCP = Cannot find definition for {0}
389
+ PROF_DRIV_GEN_NARR = {0} {1}
390
+ PROF_DRIV_GEN_NARR_TECH = Generated Narrative: {0} {1}
391
+ PROV_ACT = Activity
392
+ PROV_AGE = Agents
393
+ PROV_BEHALF = On Behalf Of
394
+ PROV_FOR = Provenance for {0}
395
+ PROV_OCC = Occurrence
396
+ PROV_POL = Policy
397
+ PROV_PROV = Provenance for
398
+ PROV_PROVE = Provenance for:
399
+ PROV_REC = Recorded
400
+ PROV_ROLE = Role
401
+ PROV_WHO = who
402
+ QUEST_ADD_INFO = Additional information about the item
403
+ QUEST_ALLOWED = Allowed Answers
404
+ QUEST_ANSW = Answer options for {0}
405
+ QUEST_ANSWER = Answer
406
+ QUEST_ANSWERS = Answers
407
+ QUEST_APP = Approval Date
408
+ QUEST_ARE_TRUE = ?? are true:
409
+ QUEST_ATTRIBUTES = Other attributes of the item
410
+ QUEST_CALC = Calculated Value
411
+ QUEST_CAND = Candidates
412
+ QUEST_CAT = Category: {0}
413
+ QUEST_CONT = Context
414
+ GENERAL_DEFINITION_COLON = Definition:
415
+ QUEST_DERIVED = Derived From
416
+ GENERAL_DESC_CONST = Description & Constraints
417
+ QUEST_DISPLAY = Is optional to display
418
+ QUEST_DISPLAY_CAT = Display Category
419
+ QUEST_EFF_PERIOD = Effective Period
420
+ QUEST_EN = Enable When
421
+ QUEST_ENABLE = Enable When:
422
+ QUEST_EXP = Expressions:
423
+ GENERAL_EXPER = Experimental
424
+ QUEST_GROUP = Group
425
+ QUEST_HIDDEN = Is a hidden item
426
+ QUEST_HIDDEN_ITEM = Hidden Item
427
+ QUEST_ID = Link Id
428
+ QUEST_INITIAL = Initial Value:
429
+ QUEST_INITIALLY = (initially selected)
430
+ QUEST_INITIAL_ANSWER = Initial Answer
431
+ QUEST_INT = Initial Values
432
+ QUEST_ITEM = Item
433
+ QUEST_ITEM_CONT = Item Context
434
+ QUEST_LINK = The linkID for the item
435
+ QUEST_LINKED = Is linked to an observation
436
+ QUEST_LINKID = LinkID
437
+ QUEST_MAND = Mandatory
438
+ GENERAL_MAX_LENGTH = Max Length:
439
+ GENERAL_MIN_LENGTH = Min Length:
440
+ QUEST_MAX_LENGTH = Max Length
441
+ QUEST_NLM = NLM Forms Library
442
+ QUEST_NONE_SPEC = None specified
443
+ QUEST_OBSERVATION = Observation Link Period
444
+ QUEST_OPT = Options Sets
445
+ QUEST_OPTIONS = Options:
446
+ QUEST_ORIENTATION = Orientation: {0}
447
+ QUEST_PREFIX = Prefix
448
+ QUEST_PUB = Publication Date
449
+ QUEST_QUEST = Questionnaire
450
+ QUEST_QUESTION = Questionnaire:
451
+ QUEST_READONLY = Is Read Only
452
+ QUEST_READ_ONLY = Read Only
453
+ QUEST_REP = Repeats
454
+ QUEST_RESP_ROOT = QuestionnaireResponseRoot
455
+ QUEST_REV_DATE = Last Review Date
456
+ QUEST_ROOT = QuestionnaireRoot
457
+ QUEST_STRUCT = Structure
458
+ QUEST_SUBJECT = Can change the subject of the questionnaire
459
+ QUEST_SUB_TYPE = Subject Type
460
+ QUEST_TEXT = Text
461
+ QUEST_TEXTFOR = Text for the item
462
+ QUEST_TIMES = Minimum and Maximum # of times the item can appear in the instance
463
+ QUEST_TRUE = are true:
464
+ QUEST_TRY = Try this questionnaire out:
465
+ QUEST_TRY_QUEST = Try this QuestionnaireResponse out:
466
+ QUEST_TYPE_ITEM = The type of the item
467
+ QUEST_UNKNOWN_MODE = Unknown QuestionnaireResponse Renderer Mode
468
+ QUEST_UNSPECIFIED_QUESTIONNAIRE = Unspecified Questionnaire
469
+ QUEST_UNSPECIFIED_SUBJECT = Unspecified Subject
470
+ QUEST_SUMMARY = Response to Questionnaire ''{0}'' about ''{1}''
471
+ DIAG_REP_UNSPECIFIED_CODE = Unspecified Report Type
472
+ DIAG_REP_UNSPECIFIED_SUBJECT = Unspecified Subject
473
+ DIAG_REP_SUMMARY = Diagnostic Report for ''{0}'' for ''{1}''
474
+ LIST_UNSPECIFIED_CODE = Unspecified List Type
475
+ LIST_UNSPECIFIED_SUBJECT = Unspecified Subject
476
+ LIST_SUMMARY = List for ''{0}'' for ''{1}''
477
+ GENERAL_URL = URL
478
+ QUEST_VALUE = Value Set:
479
+ REND_ADDED = Added:
480
+ REND_CHANGED = Changed:
481
+ REND_REMOVED = Removed:
482
+ REND_ROW_CHANGED_SINCE_WAS = This row of content has been changed since {0} (was ''{1}'')
483
+ GENERAL_REMOVED_SINCE = This content has been removed since {0}
484
+ REND_ROW_SINCE = This row of content has been added since {0}
485
+ REND_SINCE_ADDED = This content has been added since {0}
486
+ REND_SINCE_CHANGED = This content has been changed since {0}
487
+ REND_SINCE_CHANGED_WAS = This content has been changed since {0} (was ''{1}'')
488
+ REND_STANDARDS = Standards Status = {0}
489
+ REQ_ACTOR = These requirements apply to the actor
490
+ REQ_DERIVE = These requirements derive from
491
+ REQ_DERIVED = Derived From:
492
+ REQ_FOLLOWING_ACTOR = These requirements apply to the following actors:
493
+ REQ_FOLLOWING_REQ = These requirements are derived from the following requirements:
494
+ REQ_LINKS = Links:
495
+ REQ_SATISFIED = Satisfied By:
496
+ RESOURCE_COPYRIGHT = Copyright Statement:
497
+ RES_REND_ACT = Active
498
+ RES_REND_COND_REF = Conditional Reference:
499
+ RES_REND_DESC = . Description: (todo)
500
+ RES_REND_DRAFT = draft
501
+ RES_REND_ERROR = Error rendering: {0}
502
+ RES_REND_INFO_SOURCE = Information Source: <param name="source"/>
503
+ RES_REND_LANGUAGE = Language: {0}
504
+ GENERAL_RESOURCE = Resource
505
+ RES_REND_RET = retired
506
+ GENERAL_SECURITY_LABEL = Security Label
507
+ RES_REND_SEE_ON_THIS_PAGE = See on this page:
508
+ RES_REND_SPEC_RULES = Special rules apply: {0}!
509
+ RES_REND_TAG = Tag
510
+ RES_REND_UNKNOWN = Unknown
511
+ RES_REND_UPDATED = Last updated: {0}
512
+ RES_REND_VER = version: {0}
513
+ RES_REND_TEMPLATE_ID = templateId: {0}
514
+ SD_COMP_HEAD_CARD_L = L Card.
515
+ SD_COMP_HEAD_CARD_L_DESC = Minimum and Maximum # of times the element can appear in the instance - Left Structure
516
+ SD_COMP_HEAD_CARD_R = R Card.
517
+ SD_COMP_HEAD_CARD_R_DESC = Minimum and Maximum # of times the element can appear in the instance - Right Structure
518
+ GENERAL_COMMENTS = Comments
519
+ SD_COMP_HEAD_COMP_DESC = Comments about the comparison
520
+ SD_COMP_HEAD_DESC_L = L Description & Constraints
521
+ SD_COMP_HEAD_DESC_L_DESC = Additional information about the element - Left Structure
522
+ SD_COMP_HEAD_DESC_R = R Description & Constraints
523
+ SD_COMP_HEAD_DESC_R_DESC = Additional information about the element - Right Structure
524
+ SD_COMP_HEAD_FLAGS_L = L Flags
525
+ SD_COMP_HEAD_FLAGS_L_DESC = Information about the use of the element - Left Structure
526
+ SD_COMP_HEAD_FLAGS_R = R Flags
527
+ SD_COMP_HEAD_FLAGS_R_DESC = Information about the use of the element - Right Structure
528
+ GENERAL_LOGICAL_NAME = The logical name of the element
529
+ SD_COMP_HEAD_TYPE_L = L Type
530
+ SD_COMP_HEAD_TYPE_L_DESC = Reference to the type of the element - Left Structure
531
+ SD_COMP_HEAD_TYPE_R = R Type
532
+ SD_COMP_HEAD_TYPE_R_DESC = Reference to the type of the element - Right Structure
533
+ SD_DOCO = Documentation for this format
534
+ GENERAL_CARD = Card.
535
+ SD_GRID_HEAD_DESC = Constraints and Usage
536
+ SD_GRID_HEAD_DESC_DESC = Fixed values, length limits, vocabulary bindings and other usage notes
537
+ SD_GRID_HEAD_NAME_DESC = The name of the element (Slice name in brackets). Mouse-over provides definition
538
+ SD_GRID_HEAD_TYPE_DESC = Reference to the type of the element
539
+ SD_HEAD_DESC_DESC = Additional information about the element
540
+ SD_HEAD_FLAGS_DESC = Information about the use of the element
541
+ SD_LEGEND = Legend for this format
542
+ SD_SLICING_INFO = {0}, {1} by {2}
543
+ SD_SUMMARY_FIXED = Fixed: {0} {1}
544
+ SD_SUMMARY_MANDATORY = Mandatory: {0} {1}
545
+ SD_SUMMARY_MISSING_EXTENSION = Unable to summarise extension {0} (no extension found)
546
+ SD_SUMMARY_MISSING_PROFILE = Unable to summarise profile {0} (no profile found)
547
+ SD_SUMMARY_MUST_SUPPORT = Must-Support: {0} {1}
548
+ SD_SUMMARY_NESTED_MANDATORY = ({0} nested mandatory {1})
549
+ SD_SUMMARY_PROHIBITED = Prohibited: {0} {1}
550
+ SD_SUMMARY_PUBLICATION = This profile was published on {0} as a {1} by {2}
551
+ SD_SUMMARY_SLICES = This structure defines the following {0}Slices{1}
552
+ SD_SUMMARY_SLICE_NONE = There is a slice with no discriminator at {0}
553
+ SD_SUMMARY_SLICE_one = The element {0} is sliced based on the value of {1}
554
+ SD_SUMMARY_SLICE_other = The element {0} is sliced based on the values of {1}
555
+ SEARCH_PAR_ALLOWED = Allowed:
556
+ SEARCH_PAR_CHAIN = Chains
557
+ GENERAL_COMPARATORS = Comparators
558
+ SEARCH_PAR_EXP = Expression
559
+ GENERAL_MODIFIERS = Modifiers
560
+ SEARCH_PAR_MULTIPLES = Multiples
561
+ SEARCH_PAR_MULTIPLE_AND_APPEAR = multipleAnd: The parameter may only appear once
562
+ SEARCH_PAR_MULTIPLE_AND_REPEAT = multipleAnd: The parameter may repeat in order to specify multiple values that must all be true
563
+ 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
564
+ SEARCH_PAR_MULTIPLE_OR_MULTIPLE = multipleOr: The parameter may have multiple values (separated by comma) where at least one must be true
565
+ SEARCH_PAR_MULTIPLE_OR_ONE = multipleOr: The parameter may only have one value (no comma separators)
566
+ 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
567
+ SEARCH_PAR_NONE = (none)
568
+ SEARCH_PAR_PROC = Processing Mode
569
+ SEARCH_PAR_REND_TARGET = Target Resources
570
+ SEARCH_PAR_RES = All Resources
571
+ STRUC_DEF_ABSTRACT = This is an abstract
572
+ STRUC_DEF_ACT = Obligations that apply to the actor {0}
573
+ STRUC_DEF_AFFECT_CONSTRAINTS = This element has or is affected by constraints (
574
+ STRUC_DEF_ALLOWED = Allowed Units
575
+ STRUC_DEF_ALL_ACTORS = All Actors
576
+ STRUC_DEF_ALL_SLICES = :All Slices
577
+ STRUC_DEF_ALL_TYPES = All Types
578
+ STRUC_DEF_ALT_NAME = Alternate Names
579
+ STRUC_DEF_AND = and
580
+ STRUC_DEF_APPROP_CON = Concepts must come from this value set if appropriate concept is in this value set
581
+ STRUC_DEF_AS_SHOWN = As shown
582
+ STRUC_DEF_BECAUSE = because
583
+ STRUC_DEF_BLACK = black
584
+ STRUC_DEF_BUSINESS_ID = This is a business identifier, not a resource identifier (see
585
+ STRUC_DEF_BUSINESS_VERID = This is a business version Id, not a resource version Id (see
586
+ STRUC_DEF_CAND = Candidate
587
+ 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
588
+ STRUC_DEF_CANNOT_TARGET = Instances of this logical model cannot be the target of a Reference
589
+ STRUC_DEF_CANT_FIND = getElementByName: can''t find {0} in {1} from {2}
590
+ STRUC_DEF_CAN_TARGET = Instances of this logical model can be the target of a Reference
591
+ STRUC_DEF_CAP = CAP Code
592
+ STRUC_DEF_CDA = This property is represented as CDA Text in the XML.
593
+ STRUC_DEF_CHILD = Child
594
+ STRUC_DEF_CHOICE = (Choice of one)
595
+ STRUC_DEF_CHOICE_DATA_TYPE = Choice of Data Types
596
+ STRUC_DEF_CHOICE_GRP = Choice Group
597
+ STRUC_DEF_CHOICE_OF = Choice of:
598
+ STRUC_DEF_CLOSED = Closed
599
+ STRUC_DEF_COMMENT = Comments:
600
+ STRUC_DEF_COMPLEX = Complex
601
+ STRUC_DEF_COMPLEXBRACK = (Complex)
602
+ 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
603
+ STRUC_DEF_COMP_EX = (Complex Extension)
604
+ STRUC_DEF_COMP_PROF = Complies with Profile
605
+ STRUC_DEF_CONC_SET = Concepts must come from this value set
606
+ STRUC_DEF_CONSTRAINING = Slice Constraining
607
+ STRUC_DEF_CONSTRAINTS = Constraints
608
+ STRUC_DEF_CONTROL = Control
609
+ STRUC_DEF_CONT_RULE = Content/Rules for all slices
610
+ STRUC_DEF_CONT_TYPE = Content/Rules for all Types
611
+ STRUC_DEF_COPY_URL = Click to Copy URL
612
+ STRUC_DEF_COPY_CODING = Click to Copy as Coding
613
+ STRUC_DEF_CURR = Current
614
+ 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
615
+ STRUC_DEF_DATE = Date Format: {0}
616
+ STRUC_DEF_DATE_FORM = Date Format
617
+ STRUC_DEF_DEFAULT_TYPE = Default Type
618
+ STRUC_DEF_DEFAULT_VALUE = Default Value
619
+ STRUC_DEF_DEF_CODES = Definitional Codes
620
+ STRUC_DEF_DERIVED_PROFILE = In this IG, the following structures are derived from this profile:
621
+ STRUC_DEF_DESCRIM = , and can be differentiated using the following discriminators:
622
+ STRUC_DEF_DESC_PROF = Description of the profile
623
+ STRUC_DEF_DISCUSSION = discussion
624
+ STRUC_DEF_ELE = This primitive element must have a value
625
+ STRUC_DEF_ELEMENT = element
626
+ STRUC_DEF_ELEMENTS = Elements defined in Ancestors:
627
+ STRUC_DEF_ELE_AFFECTED = This element has or is affected by constraints ( {0} {1}
628
+ STRUC_DEF_ELE_INCLUDED = This element is included in summaries
629
+ STRUC_DEF_ELE_MUST_SUPP = This element must be supported
630
+ STRUC_DEF_ELE_READ = When this element is read
631
+ STRUC_DEF_ERROR = Unknown structure mode
632
+ STRUC_DEF_ERR_DESC = Error describing concept- not done yet (no codings, no text)
633
+ GENERAL_EXAMPLE = Example
634
+ STRUC_DEF_EXAM = example
635
+ STRUC_DEF_EXT = Extensible
636
+ STRUC_DEF_EXTENSIBLE = extensible
637
+ STRUC_DEF_EXTENSIONS = Extensions
638
+ STRUC_DEF_EXT_JSON = This element can be extended by named JSON elements
639
+ STRUC_DEF_EXT_STYLE = Extension Style
640
+ STRUC_DEF_EX_CODE = For example codes, see
641
+ 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.
642
+ STRUC_DEF_EX_TYPE = (Extension Type:
643
+ STRUC_DEF_EX_URL = Extension URL = {0}
644
+ STRUC_DEF_FHIR = Base FHIR {0}
645
+ STRUC_DEF_FHIR_EXCEP = Unable to retrieve StructureDefinition with URL {0}
646
+ STRUC_DEF_FII = Formal Invariant Identifier
647
+ STRUC_DEF_FIXED = Fixed Value
648
+ STRUC_DEF_FIXED_VALUE = Fixed Value:
649
+ STRUC_DEF_FOR_CODE = For codes, see
650
+ STRUC_DEF_FURTHER_INFO = for further information about how to use [x]
651
+ STRUC_DEF_GRADE = Grade
652
+ STRUC_DEF_ID = Id
653
+ STRUC_DEF_ID_EXPECT = ID Expectation
654
+ STRUC_DEF_ID_IS = Id may or not be present (this is the default for elements but not resources)
655
+ STRUC_DEF_ID_MAY = Id is required to be present (this is the default for resources but not elements)
656
+ STRUC_DEF_ID_NOT_ALLOW = An id is not allowed in this context
657
+ STRUC_DEF_IF = If
658
+ STRUC_DEF_IMPOSE_PROFILE = Impose Profile
659
+ STRUC_DEF_INFERRED_JSON = The type of this element is inferred from the JSON type in the instance
660
+ STRUC_DEF_INVAR = Invariants
661
+ STRUC_DEF_INVARIANT = This element is affected by the following invariants:
662
+ STRUC_DEF_JSON_ARRAY = JSON: This element may be present as a JSON Array even when there are no items in the instance
663
+ STRUC_DEF_JSON_CAN_NAME = This type can appear in JSON with the property name
664
+ STRUC_DEF_JSON_CHILD = child
665
+ STRUC_DEF_JSON_EXT = (in elements using named extensions)
666
+ STRUC_DEF_JSON_FORM = JSON Format
667
+ STRUC_DEF_JSON_IF = JSON: If
668
+ STRUC_DEF_JSON_INFERRED = JSON: The type of this element is inferred from the JSON type in the instance
669
+ STRUC_DEF_JSON_IS = This element is present as a JSON Array even when there are no items in the instance
670
+ STRUC_DEF_JSON_MAY = This element may be present as a JSON Array even when there are no items in the instance
671
+ 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)
672
+ STRUC_DEF_JSON_NAME = JSON Property Name
673
+ 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)
674
+ STRUC_DEF_JSON_NULL = JSON: This object can be represented as null in the JSON structure (which counts as ''present'' for cardinality purposes)
675
+ 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)
676
+ STRUC_DEF_JSON_PROPERTY_NAME = This property appears in JSON with the property name
677
+ 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
678
+ STRUC_DEF_JSON_TYPE = JSON Property Name for Type
679
+ STRUC_DEF_LABEL = Label
680
+ STRUC_DEF_LEAST_FOLLOW = At least the following
681
+ STRUC_DEF_LOGICAL = Logical Model
682
+ STRUC_DEF_LOGICAL_CONT = Logical Container
683
+ STRUC_DEF_LOINC = LOINC Code
684
+ STRUC_DEF_LOINC_CODE = LOINC code
685
+ STRUC_DEF_MAX = Maximum
686
+ STRUC_DEF_MAX_MIN = Minimum and Maximum # of times the element can appear in the instance
687
+ STRUC_DEF_MAX_VALUE = Max Value
688
+ STRUC_DEF_MEAN_MISS = Meaning if Missing
689
+ STRUC_DEF_MIN = Minimum
690
+ STRUC_DEF_MIN_VALUE = Min Value
691
+ STRUC_DEF_MISSING_LINK = missing link
692
+ STRUC_DEF_MOD = This element is a modifier element
693
+ STRUC_DEF_MODIF = Modifier
694
+ STRUC_DEF_MODIFIER = Is Modifier
695
+ STRUC_DEF_MODIFIER_EXT = This is a modifier extension
696
+ STRUC_DEF_MUST_SUPPORT = Must Support
697
+ STRUC_DEF_MUST_SUPPORT_TYPES = Must Support Types
698
+ STRUC_DEF_NAMESPACE = In the XML format, this property has the namespace
699
+ STRUC_DEF_NOTE_X = [x] Note
700
+ STRUC_DEF_NOT_MARK = Instances of this logical model are not marked to be the target of a Reference
701
+ STRUC_DEF_NO_DESCRIM = , and defines no disciminators to differentiate the slices
702
+ STRUC_DEF_NO_MAPPINGS = No Mappings
703
+ STRUC_DEF_NO_MUST_SUPPORT = No must-support rules about the choice of types/profiles
704
+ STRUC_DEF_NO_SUMMARY = No Summary, as this profile has no differential
705
+ STRUC_DEF_NULL_JSON = This object can be represented as null in the JSON structure (which counts as ''present'' for cardinality purposes)
706
+ STRUC_DEF_OBLIG = This element has obligations
707
+ STRUC_DEF_OBLIG_ADD = This is an obligation profile that only contains obligations and additional bindings
708
+ STRUC_DEF_OBLIG_ALL = Obligations that apply to all actors
709
+ STRUC_DEF_OBLIG_FROM = This profile picks up obligations and additional bindings from
710
+ STRUC_DEF_OBLIG_SUPP = This element has obligations and must be supported
711
+ STRUC_DEF_ONE_OF = One of:
712
+ STRUC_DEF_OPEN = Open
713
+ STRUC_DEF_OPEN_END = Open At End
714
+ STRUC_DEF_ORDERED = Ordered
715
+ STRUC_DEF_PATH = Path
716
+ STRUC_DEF_PATHS = Path(s)
717
+ STRUC_DEF_PATT_VALUE = Pattern Value
718
+ STRUC_DEF_PREFERRED = preferred
719
+ STRUC_DEF_PREFIXED = is prefixed to the value before validation
720
+ STRUC_DEF_PREF_CONT = This is the value set that is preferred in a given context (documentation should explain why)
721
+ STRUC_DEF_PRIMITIVE = Primitive Value
722
+ STRUC_DEF_PRIM_ELE = This primitive element may be present, or absent, or replaced by an extension
723
+ STRUC_DEF_PRIM_TYPE_PRESENT = This primitive type may be present, or absent if replaced by one of the following extensions:
724
+ STRUC_DEF_PRIM_TYPE_VALUE = This primitive type must have a value (the value must be present, and cannot be replaced by an extension)
725
+ STRUC_DEF_PROFILED = profiled by
726
+ STRUC_DEF_PROFILE_BUILDS = This profile builds on
727
+ STRUC_DEF_PROF_COMP = This profile complies with the profile
728
+ STRUC_DEF_PROF_REQ = This profile also requires that the instance also conform this additional profile:
729
+ STRUC_DEF_PROF_RES = A profiled resource
730
+ STRUC_DEF_PROF_SUPP = This profile must be supported
731
+ STRUC_DEF_PROPERTY = Property
732
+ STRUC_DEF_REFERS_EXT = This structure refers to these extensions
733
+ STRUC_DEF_REFER_PROFILE = In this IG, the following structures refer to this profile:
734
+ STRUC_DEF_REND_UNABLE_RES = Unable to resolve StructureDefinition {0} resolving content reference {1}
735
+ STRUC_DEF_REPEAT = This is a repeating choice group that does not appear directly in the instance
736
+ STRUC_DEF_REPEAT_ELE = This repeating element order: {0}
737
+ STRUC_DEF_REQUIRED = required
738
+ STRUC_DEF_REQUIRED_PATT = Required Pattern:
739
+ STRUC_DEF_REQUIREMENTS = Requirements
740
+ STRUC_DEF_REQ_BIND = A required binding for additional codes, for us when the binding strength is ''extensible'' or ''preferred''
741
+ STRUC_DEF_REQ_PATT = Required Pattern
742
+ STRUC_DEF_ROOT = The root class that contains instances of this class
743
+ STRUC_DEF_SEE = See
744
+ STRUC_DEF_SET_ARE = . The slices are
745
+ STRUC_DEF_SET_SLICES = This element introduces a set of slices on
746
+ STRUC_DEF_SHALL_CODE = The codes SHALL be taken from
747
+ STRUC_DEF_SHORT = Short
748
+ STRUC_DEF_SHOULD_CODE = The codes SHOULD be taken from
749
+ 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
750
+ STRUC_DEF_SLIC = Slices
751
+ STRUC_DEF_SLICE = Slice
752
+ STRUC_DEF_SLICES = Slice:
753
+ STRUC_DEF_SLICE_FOR = Slices for {0}
754
+ STRUC_DEF_SLICE_NAME = Slice Name
755
+ STRUC_DEF_SLICE_PAR = Slice {0}
756
+ STRUC_DEF_SNOMED_CODE = SNOMED-CT Code
757
+ STRUC_DEF_SNOMED = SNOMED-CT
758
+ STRUC_DEF_STAND_STAT = Standard Status
759
+ STRUC_DEF_STAND_STATUS = Standards Status =
760
+ STRUC_DEF_STRING_FORM = String Format
761
+ STRUC_DEF_STRUCTURES = Structures
762
+ STRUC_DEF_SUIT_SHALL_CODE = Unless not suitable, these codes SHALL be taken from
763
+ STRUC_DEF_TARG_SUPP = This target must be supported
764
+ STRUC_DEF_TEMPLATEID = Instance of this type are validated by templateId
765
+ STRUC_DEF_TERM_BIND = Terminology Bindings (Differential)
766
+ STRUC_DEF_TERM_BINDS = Terminology Bindings
767
+ STRUC_DEF_THEN_TYPE = then the type is
768
+ STRUC_DEF_THIS_REFERS = This structure refers to these other structures
769
+ STRUC_DEF_TYPE_BOUND = This type can be bound to a value set using the {0}
770
+ STRUC_DEF_TYPE_SET = This type can be bound to a value set using the
771
+ STRUC_DEF_TYPE_SPEC = Type Specifier
772
+ STRUC_DEF_TYPE_SUPP = This type must be supported
773
+ STRUC_DEF_UI = UI
774
+ 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
775
+ STRUC_DEF_UNADORNED = In the XML format, this property is represented as unadorned text.
776
+ STRUC_DEF_UNDEF_ACT = Obligations that apply to the undefined actor {0}
777
+ STRUC_DEF_UNKNOWN_APPROACH = Instances of this type are validated using an unknown approach: {0}
778
+ STRUC_DEF_UNKNOWN_REF = Unknown reference to {0}
779
+ STRUC_DEF_UNORDERED = Unordered
780
+ STRUC_DEF_UNSPECIFIED = Unspecified
781
+ STRUC_DEF_URLS = URL:
782
+ STRUC_DEF_VALID = Validation
783
+ STRUC_DEF_VALUESET = ValueSet
784
+ STRUC_DEF_VALUESET_CODE = ValueSet / Code
785
+ STRUC_DEF_VALUE_ALT = Value Alternatives
786
+ STRUC_DEF_VALUE_REQ = Value Required
787
+ STRUC_DEF_WHAT = What goes here
788
+ STRUC_DEF_XHTML = This property is represented as XHTML Text in the XML.
789
+ STRUC_DEF_XML_ACTUAL = In the XML format, this property has the actual name
790
+ STRUC_DEF_XML_ATTRIBUTE = In the XML format, this property is represented as an attribute.
791
+ STRUC_DEF_XML_ELE = XML Element Name
792
+ STRUC_DEF_XML_FORM = XML Format
793
+ STRUC_DEF_XML_NAME = XML Namespace
794
+ STRUC_DEF_XSI = The type of this property is determined using the
795
+ SUB_TOPIC_CREATE = * create result = {0}
796
+ SUB_TOPIC_DELETE = * delete result = {0}
797
+ SUB_TOPIC_EVENT = Event
798
+ SUB_TOPIC_FHIR_PATH = FHIR Path
799
+ SUB_TOPIC_FILT_DEF = Filter Definition
800
+ SUB_TOPIC_FILT_PAR = Filter Parameter
801
+ SUB_TOPIC_INCL = Includes
802
+ SUB_TOPIC_INT = Interactions
803
+ SUB_TOPIC_CURR = * current = {0}
804
+ SUB_TOPIC_PREV = * previous = {0}
805
+ SUB_TOPIC_REQ = * require both = {0}
806
+ SUB_TOPIC_RES_TRIG = Resource Triggers
807
+ SUB_TOPIC_REV_INCL = Reverse Includes
808
+ TERMINOLOGY_LVL = Lvl
809
+ TERM_REND_COPY = Copy {0} Format to clipboard
810
+ TEST_PLAN_ASS = Assertion
811
+ TEST_PLAN_ASSERTION = Assertion {0}
812
+ TEST_PLAN_CASE = Test Case
813
+ TEST_PLAN_CASE_SEQ = Test Case - Sequence {0}
814
+ TEST_PLAN_CATEGORY = Category:
815
+ TEST_PLAN_DATA = Test Data
816
+ TEST_PLAN_DEP = Test Plan Dependency:
817
+ TEST_PLAN_DEPEN = Test Plan Dependencies:
818
+ TEST_PLAN_DESC = Dependency - no description
819
+ TEST_PLAN_LANG = Language
820
+ TEST_PLAN_RESULT = Result
821
+ TEST_PLAN_RUN = Test Run
822
+ TEST_PLAN_SCOPE = Test Plan Scope:
823
+ TEST_PLAN_SCOPES = Test Plan Scopes:
824
+ TEST_PLAN_SOURCE = Source[x]
825
+ TEST_PLAN_TEST_DATA = Test Data {0}
826
+ TEST_PLAN_TEST_RUN = Test Run {0}
827
+ TEXT_ICON_CHOICE = Choice of Types
828
+ TEXT_ICON_DATATYPE = Data Type
829
+ TEXT_ICON_ELEMENT = Element
830
+ TEXT_ICON_EXTENSION_COMPLEX = Complex Extension
831
+ TEXT_ICON_EXTENSION_SIMPLE = Simple Extension
832
+ TEXT_ICON_KEY = JSON Key Value
833
+ TEXT_ICON_OBJECT_BOX = Object
834
+ TEXT_ICON_PRIMITIVE = Primitive Data Type
835
+ TEXT_ICON_REFERENCE = Reference to another Resource
836
+ TEXT_ICON_REUSE = Reference to another Element
837
+ TEXT_ICON_SLICE = Slice Definition
838
+ TEXT_ICON_SLICE_ITEM = Slice Item
839
+ TX_DISPLAY = Display
840
+ TX_DISPLAY_LANG = Display ({0})
841
+ VALUE_SET_ADD_DESIG = Additional Designations and Language Displays
842
+ VALUE_SET_ALL_CODE = This include specifies a hierarchy for when value sets are generated for use in a User Interface. The expansion contains all the codes, and also this structure:
843
+ VALUE_SET_ALL_CODES_DEF = all codes defined in
844
+ VALUE_SET_AND = and
845
+ VALUE_SET_AUS = Australian Edition
846
+ VALUE_SET_COMMA = ,
847
+ VALUE_SET_CONT = Value Set Contents
848
+ VALUE_SET_CONTAINS = This value set contains {0} concepts
849
+ VALUE_SET_CONTAINS_AT_LEAST = This value set contains at least {0} concepts
850
+ VALUE_SET_CONT_STRUC = This include specifies a hierarchy for when value sets are generated for use in a User Interface. The expansion contains this structure:
851
+ VALUE_SET_DANISH = Danish
852
+ VALUE_SET_DESCENDENTOF = descends from
853
+ VALUE_SET_DESIG = Additional Designations
854
+ VALUE_SET_DISPLAY_ITEM = The display for the item
855
+ VALUE_SET_DOESNT_EXIST = doesn''t exist
856
+ VALUE_SET_DUTCH = Dutch
857
+ VALUE_SET_EQUAL = =
858
+ VALUE_SET_ERROR = Error Expanding ValueSet: {0}
859
+ VALUE_SET_EXCL = Exclude
860
+ VALUE_SET_EXCLUDED_FROM = Excluded from
861
+ VALUE_SET_EXISTS = exists
862
+ VALUE_SET_EXP = Expansion based on example code system
863
+ VALUE_SET_EXPANSION = Expansion based on
864
+ VALUE_SET_EXPANSIONS = Expansion based on:
865
+ VALUE_SET_EXPANSION_SRVR = Expansion from {0} based on
866
+ VALUE_SET_EXPANSIONS_SRVR = Expansion from {0} based on:
867
+ VALUE_SET_EXPANSION_INTERNAL = Expansion performed internally based on
868
+ VALUE_SET_EXPANSIONS_INTERNAL = Expansion performed internally based on:
869
+ VALUE_SET_EXP_FRAG = Expansion based on code system fragment
870
+ VALUE_SET_GENERALIZES = generalizes
871
+ VALUE_SET_HAS = This value set has {0} codes in it. In order to keep the publication size manageable, only a selection ({1} codes) of the whole set of codes is shown.
872
+ VALUE_SET_HAS_AT_LEAST = This value set has at least {0} codes in it. In order to keep the publication size manageable, only a selection ({1} codes) of the whole set of codes is shown.
873
+ VALUE_SET_IMPORT_one = Import all the codes that are contained in
874
+ VALUE_SET_IMPORT_other = Import all the codes that are contained in the intersection of
875
+ VALUE_SET_IN = in
876
+ VALUE_SET_INACT = inactive
877
+ VALUE_SET_INACTIVE = Inactive
878
+ VALUE_SET_INC = Include
879
+ VALUE_SET_INCLUDED_INTO = Included into
880
+ VALUE_SET_INT = International
881
+ VALUE_SET_ISA = is-a
882
+ VALUE_SET_ISNOTA = is-not-a
883
+ VALUE_SET_LEVEL = Level
884
+ VALUE_SET_LOINCV = Loinc v
885
+ VALUE_SET_NOTE = Note: {0}
886
+ VALUE_SET_NOTIN = not in
887
+ VALUE_SET_NOT_DEF = This include specifies a hierarchy for when value sets are generated for use in a User Interface, but the rules are not properly defined
888
+ VALUE_SET_NOT_FOUND = This include specifies a hierarchy 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:
889
+ VALUE_SET_NO_VER = (no version)
890
+ VALUE_SET_NO_VERSION = (no version) (
891
+ VALUE_SET_NULL = null
892
+ VALUE_SET_NULLS = ?ngen-13?
893
+ VALUE_SET_NUMBER_CONCEPTS = This value set expansion contains {0} concepts.
894
+ VALUE_SET_REGEX = matches (by regex)
895
+ VALUE_SET_RULES_EXC = This value set excludes codes based on the following rules:
896
+ VALUE_SET_RULES_INC = This value set includes codes based on the following rules:
897
+ 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
898
+ VALUE_SET_SNOMED = SNOMED CT {0} edition
899
+ VALUE_SET_SNOMED_ADD = SNOMED CT {0} edition {1}
900
+ VALUE_SET_SPAN = Spanish
901
+ VALUE_SET_SPEC_NAME = Fully specified name
902
+ VALUE_SET_SWEDISH = Swedish
903
+ VALUE_SET_SYNONYM = Synonym
904
+ VALUE_SET_SYSTEM = System
905
+ VALUE_SET_THESE_CODES_DEF = these codes as defined in
906
+ VALUE_SET_TOO_COSTLY = This value set cannot be expanded because the terminology server(s) deemed it too costly to do so
907
+ VALUE_SET_UK = United Kingdom
908
+ VALUE_SET_US = United States
909
+ 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)
910
+ VALUE_SET_WHERE = where
911
+ VALUE_SET_WHERE_CODES = , where the codes are contained in
912
+ VS_ABSTRACT_CODE_HINT = This code is not selectable (''Abstract'')
913
+ 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)
914
+ CODE_SYS_SUPP_CODE_NOT_HERE = This CodeSystem Supplement is not used here; it may be used elsewhere (e.g. specifications and/or implementations that use this content)
915
+ CONC_MAP_CODES = Codes
916
+ CONC_MAP_CODE_SYS_UNSPEC = unspecified code system
917
+ DATA_REND_CODES = Codes:
918
+ DIAG_REP_REND_CODECON = Coded Conclusions:
919
+ SD_GRID_HEAD_CARD_DESC = Minimum and Maximum # of times the element can appear in the instance. Super-scripts indicate additional constraints on appearance
920
+ SD_HEAD_CARD_DESC = Minimum and Maximum # of times the element can appear in the instance
921
+ STRUC_DEF_BINDINGS = Binding:
922
+ STRUC_DEF_BINDING_STYLE = binding style
923
+ VALUE_SET_CODES_FROM = codes from
924
+ VALUE_SET_CODE_ITEM = The code for the item
925
+ 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.
926
+ LIST_REND_CODE = Code: {0}
927
+ STRUC_DEF_TYPE_PARAMETER = Type Parameter
928
+ OP_OUT_SUMM_ALL_OK = OperationOutcome (ALL OK)
929
+ OP_OUT_SUMM_NOHINT = OperationOutcome ({0} Error(s), {1} Warning(s))
930
+ OP_OUT_SUMM = OperationOutcome ({0} Error(s), {1} Warning(s), {2} Hint(s))
931
+ BUNDLE_SUMMARY = {0} Bundle, {1} Entries
932
+ PROF_DRIV_SUMM_PROP = {0} = {1}
933
+ PROF_DRIV_SUMM_NONE = {0}
934
+ PROF_DRIV_SUMM = {0}: {1}
935
+ BUNDLE_HEADER_DOCUMENT_CONTENTS = Additional Resources Included in Document
936
+ DOCUMENT_SUMMARY = <param name="status"/> Document at <param name="date"/> by <param name="author"/> for <param name="subject"/> <if test="has-encounter = true"> in encounter <param name="encounter"/></if>
937
+ DATA_REND_ATT_URL = {0} @ {1}
938
+ DATA_REND_ATT_DATA = {0}: {1}
939
+ GENERAL_DATA_DISPLAY_PROPERTY = {0}: {1}
940
+ DATA_REND_CURRENCY = {1} {0}
941
+ _NA = n/a
942
+ FMM_TABLE = <table class="cols" data-fhir="generated"><tbody><tr><td><a href="http://hl7.org/fhir/versions.html#maturity">Maturity Level</a>: {0}</td><td>&nbsp;<a href="{1}versions.html#std-process" title="Standard Status">{2}</a></td></tr></tbody></table>
943
+ KIND_EXTENSION = extension
944
+ KIND_LOGICAL = logical model
945
+ KIND_PROFILE = profile
946
+ IP_NONE = No use of external IP
947
+ IP_NONE_EXT = No use of external IP (other than from the FHIR specification)
948
+ IP_INTRO = This {0} includes IP covered under the following statements.
949
+ MATURITY_PUBLISHER = Publisher: {0}
950
+ MATURITY_STATUS = Status
951
+ MATURITY_MATURITY = Maturity Level: {0}
952
+ MATURITY_STDS_STATUS = Standards Status: {0}
953
+ DATA_REND_MORNING = Morning
954
+ DATA_REND_MORNING_EARLY = Early Morning
955
+ DATA_REND_MORNING_LATE = Late Morning
956
+ DATA_REND_NOON = Noon
957
+ DATA_REND_AFTERNOON = Afternoon
958
+ DATA_REND_AFTERNOON_EARLY = Early Afternoon
959
+ DATA_REND_AFTERNOON_LATE = Late Afternoon
960
+ DATA_REND_EVENING = Evening
961
+ DATA_REND_EVENING_EARLY = Early Evening
962
+ DATA_REND_EVENING_LATE = Late Evening
963
+ DATA_REND_NIGHT = Night
964
+ DATA_REND_AFTER_SLEEP = After Sleep
965
+ DATA_REND_IMMEDIATE = Immediate
966
+ VALUE_SET_AR = Argentinian Edition
967
+ VALUE_SET_AT = Austrian Edition
968
+ VALUE_SET_BE = Belgian Edition
969
+ VALUE_SET_CA_EN = Canadian English Edition
970
+ VALUE_SET_CA = Canadian Edition
971
+ VALUE_SET_EE = Estonian Edition
972
+ VALUE_SET_FI = Finnish Edition
973
+ VALUE_SET_DE = German Edition
974
+ VALUE_SET_IE = Irish Edition
975
+ VALUE_SET_NZ = New Zealand Edition
976
+ VALUE_SET_NO = Norwegian Edition
977
+ VALUE_SET_KR = Republic of Korea Edition (South Korea)
978
+ VALUE_ES_ES = Spanish National Edition
979
+ VALUE_SET_CH = Swiss Edition
980
+ VALUE_SET_UK_CLIN = UK Clinical Edition
981
+ VALUE_SET_UY = Uruguay Edition
982
+ VALUE_SET_US_ICD10CM = US Edition (with ICD-10-CM maps)
983
+ VALUE_SET_OTHER_DISPLAY = Other Display ({0})
984
+ GENERAL_VALUE_BOUNDED = The value must be between {0} and {1} (or equal)
985
+ GENERAL_VALUE_MAX = The value must be less or equal to {0}
986
+ GENERAL_VALUE_MIN = The value must be greater or equal to {0}
987
+ GENERAL_REQUIRED_BINDING = Required Binding to ValueSet {0}
988
+ GENERAL_ADDITIONAL_BINDING = This element has additional bindings
989
+ GENERAL_FIXED_VALUE = Fixed Value: {0}
990
+ GENERAL_PATTERN_VALUE = Pattern Value: {0}
991
+ GENERAL_TYPE_PROFILE = This element has profiles on it's type: {0}
992
+ GENERAL_TYPE_TARGET_PROFILE = This element has restrictions/profiles on it's targets: {0}
993
+ OBLIGATION_SOURCE = This obligation is defined in the profile {0}
994
+ SDR_EXTENSION_SUMMARY = Simple Extension with the type {0}: {1}
995
+ SDR_EXTENSION_SUMMARY_MODIFIER = Simple <b>Modifier</b> Extension with the type {0}: {1}
996
+ STATUS_MSG_AUTOBUILD = {0}, published by {1}. This guide is not an authorized publication; it is the continuous build for version {2} built by the FHIR (HL7&reg; FHIR&reg; Standard) CI Build. This version is based on the current content of <a href=''{3}''>{3}</a> and changes regularly. See the <a href=''{4}/history.html''>Directory of published versions</a>
997
+ STATUS_MSG_PUBLICATION_HOLDER = Publication Build: This will be filled in by the publication tooling
998
+ STATUS_MSG_LOCAL_BUILD = {0} - Local Development build (v{1}) built by the FHIR (HL7® FHIR® Standard) Build Tools. See the <a href=''{2}/history.html''>Directory of published versions</a>
999
+ SDT_OBLIGATION_PROFILE = Obligation Profile
1000
+ SDT_EXTENSION = Extension
1001
+ SDT_DT_PROF = DataType Profile
1002
+ SDT_DT = DataType
1003
+ SDT_LM_PROF = Logical Model Profile
1004
+ SDT_LM = Logical Model
1005
+ SDT_PT_PROF = Primitive Type Profile
1006
+ SDT_PT = Primitive Type
1007
+ SDT_RES_PROF = Profile
1008
+ SDT_RES = Resource
1009
+ SDT_DEF = Definition
1010
+ SDT_ORIGINAL_SOURCE = Original Source
1011
+ SDR_USAGE = Usages
1012
+ SDR_DERIVED = Derived from this {0}
1013
+ SDR_DRAW_IN = Draw in Obligations & Additional Bindings from this {0}
1014
+ SDR_IMPOSE = Impose this profile {0}
1015
+ SDR_COMPLY = Comply with this profile {0}
1016
+ SDR_USE = Use this {0}
1017
+ SDR_REFER = Refer to this {0}
1018
+ SDR_EXAMPLE = Examples for this {0}
1019
+ SDR_SEARCH= Search Parameters using this {0}
1020
+ SDR_CAPSTMT = CapabilityStatements using this {0}
1021
+ SDR_NOT_USED = This {0} is not used by any profiles in this Implementation Guide
1022
+ GENERAL_OBLIGATIONS = Obligations
1023
+ GENERAL_CONSTRAINTS = Constraints
1024
+ GENERAL_BINDINGS = Bindings
1025
+ SDR_MULTIPLE_PROFILES = Multiple profiles are not supported at this time
1026
+ SDR_UNK_EXT = Not handled yet: unknown extension ''{0}''
1027
+ SDR_ONE_OF = One of these {0}
1028
+ SDR_NOT_HANDLED_EXT = Not handled yet: complex extension ''{0}''
1029
+ SDR_REQUIRED = This element is required
1030
+ SDR_LIMITED_ONE = This element is an array in the base standard, but the profile only allows one element
1031
+ SDR_ONLY_ONE = Only One!
1032
+ SDR_NOT_GEN = Generating text summary of fixed value not yet done for type {0}
1033
+ SDR_NOT_DONE_CC = Error describing concept - not done yet (no codings, no text)
1034
+ SDR_VER_FOR = For version {0}
1035
+ SDR_VER_RANGE = For versions {0} to {1}
1036
+ SDR_VER_ON = For versions {0} onwards
1037
+ SDR_VER_BEF = For versions until {0}
1038
+ SDR_VER_UNK = For unknown versions
1039
+ SDR_FIXED_VALUE = Fixed Value: {0}
1040
+ SDR_PATTERN_VALUE = Pattern Value: {0}
1041
+ SDR_CLICK_COPY = Click to copy URL
1042
+ SDR_FROM = From {0}
1043
+ SDR_SRC_FHIR = FHIR Std.
1044
+ SDR_SRC_IG = This IG
1045
+ SDR_CODE_FROM = (a valid code from {0})
1046
+ SDR_ALL_ELEM = **ALL** elements
1047
+ SDR_ALL_EXT = **ALL** extensions
1048
+ SDR_BP = best practice
1049
+ SDR_GUIDANCE_PFX = Guidance on how to interpret the contents of this table can be found
1050
+ SDR_GUIDANCE_HERE = here
1051
+ SDR_GUIDANCE_SFX =
1052
+ SDR_OFF_URL = The official URL for this profile is
1053
+ SDR_FROM_ELEM = // from Element: <a href="{0}">extension</a>
1054
+ SDR_MOD_SUPP = (this element modifies the meaning of other elements, and must be supported)
1055
+ SDR_MOD = (this element modifies the meaning of other elements)
1056
+ SDR_SUPP = (this element must be supported)
1057
+ SDR_ANY_ORDER = // sliced by {0} in any order
1058
+ SDR_SORTED = // sliced by {0} in the specified order {1}
1059
+ SDR_PRIM_VALUE = Primitive Value {0}
1060
+ SDR_META_CH_NO = Unable to evaluate changes to metadata
1061
+ SDR_META_CH_DET = The resource metadata has changed ({0})
1062
+ SDR_CONT_CH_NO = Unable to evaluate changes to content
1063
+ SDR_CONT_CH_DET_SD = The data elements list has changed
1064
+ SDR_CONT_CH_DET_CS = The list of codes defined by the code system has changed
1065
+ SDR_DEFN_CH_NO = Unable to evaluate changes to definitions
1066
+ SDR_DEFN_CH_DET_SD = One or more text definitions, invariants or bindings have changed
1067
+ SDR_DEFN_CH_DET_CS = One or more text definitions/displays have changed
1068
+ SDR_CONT_CH_DET_VS = The logical definition of the value set has changed
1069
+ SDR_DEFN_CH_DET_VS = One or more text definitions/displays have changed
1070
+ SDR_INTRP_CH_NO_VS = Unable to evaluate changes to the expansion
1071
+ SDR_INTRP_CH_DET_VS = The expansion has changed
1072
+ SDR_CH_DET = New Content
1073
+ SDR_CH_NO = No changes
1074
+ SDR_DRAFT = This is an draft extension definition; the committee is seeking implementation feedback, and the definition or contents of the extension may change in future versions
1075
+ SDR_EXPERIMENTAL = This is an experimental extension definition; the definition is intended for testing purposes, education or evaluation, and the definition is not anticipated to be matured to a point where it is intended for genuine usage.
1076
+ SDR_EXT_DEPR = This extension is deprecated and should no longer be used
1077
+ SDR_EXT_ANY = This extension does not specify which elements it should be used on
1078
+ SDR_EXT_ELEM = This extension may be used on the following element(s)
1079
+ SDR_EXT_MOD = This extension is a modifier extension.
1080
+ SDR_EXT_ELEM_ID = Element ID
1081
+ SDR_EXT_EXT = Extension
1082
+ SDR_EXT_PATH = Path
1083
+ SDR_EXT_CTXT_PATH = In addition, the extension can only be used when this FHIRPath expression is true
1084
+ SDR_EXT_CTXT_PATHS = In addition, the extension can only be used when these FHIRPath expressions are true
1085
+ SDR_EXT_VER_PFX = This extension is allowed for use with
1086
+ SDR_EXT_VER_SFX = .
1087
+ SDR_VER_TO_PFX = FHIR versions up to
1088
+ SDR_VER_TO_SFX =
1089
+ SDR_VER_FROM_PFX = FHIR versions
1090
+ SDR_VER_FROM_SFX = and after
1091
+ SDR_VER_RANGE_PFX = FHIR versions
1092
+ SDR_VER_RANGE_MID = to
1093
+ SDR_VER_RANGE_SFX =
1094
+ SDR_EXT_UNCHANGED = The extension is unchanged in {0}
1095
+ SDR_EXT_CHANGED = The extension is represented a little differently in {0}
1096
+ VSR_LOGICAL = Logical Definition (CLD)
1097
+ VSR_TRIGGER = Used as a trigger criteria in
1098
+ VSR_NO_DEF = No formal definition provided for this value set
1099
+ SDR_CONCEPT_DOMAIN = Concept Domain
1100
+ BUNDLE_DOCUMENT_DETAILS = Document Details
1101
+ BUNDLE_DOCUMENT_CONTENT = Document Content
1102
+ R44B_DERIVES_FROM = derives from
1103
+ R44B_HAS_TYPE = has type
1104
+ R44B_REFERS_TO = <a href="{0}">{1}}</a> refers to the canonical type at {2}
1105
+ R44B_HAS_TARGET = has target
1106
+ R44B_WRONG_MSG = Something went wrong with the cross-version analysis because
1107
+ R44B_USE_OK = This is an {0} IG. None of the features it uses are changed in {1}, so it can be used as is with {1} systems.
1108
+ R44B_PACKAGE_REF = Packages for both <a href="{0}">R4 ({1}.r4)</a> and <a href=\"{2}\">R4B ({3}.r4b)</a> are available.
1109
+ R44B_NOT_COMP = This is an {0} IG that is not compatible with {1}" because
1110
+ R44B_NOT_IN = The following resources are not in the {0} version
1111
+ R44B_ONLY_IN = The following resources are only in the {0} version
1112
+ R44B_PROBLEMS = While checking for {0} compatibility, the following {1} problems were found
1113
+ ACTOR_DERIVED_FROM = Derived From
1114
+ ACTOR_DERIVED_FROM_NONE = (none)
1115
+ VALUE_SET_NEEDS_SUPPL_one = This ValueSet requires the Code system Supplement
1116
+ VALUE_SET_NEEDS_SUPPL_other = This ValueSet requires the Code system Supplements
1117
+ SD_XIG_LINK = <p>You can also check for <a href="https://packages2.fhir.org/xig/{0}|current/StructureDefinition/{1}">usages in the FHIR IG Statistics</a></p>
1118
+ VS_VERSION_STATED = Version is explicitly stated to be {0}
1119
+ VS_VERSION_WILDCARD_BY_PACKAGE = Version is stated to be {0}, which means it is fixed to {1}, the version found through the package references
1120
+ VS_VERSION_WILDCARD = Version is stated to be {0}. When building this specification, the most recent matching version {1} has been used
1121
+ VS_VERSION_BY_PACKAGE = Version is not explicitly stated, which means it is fixed to {0}, the version found through the package references
1122
+ VS_VERSION_THIS_PACKAGE = Version is not explicitly stated, which means it is fixed to the version provided in this specification
1123
+ VS_VERSION_FOUND = Version is not explicity stated. When building this specification, the most recent version {0} has been used
1124
+ VS_VERSION_NONE = Version is not explicity stated, and the target {0} has no stated version either
1125
+ VS_VERSION_NOTHING = Version is not explicity stated. No matching {0} found
1126
+ CS_VERSION_NOTHING_TEXT = Not Stated (use latest from terminology server)
1127
+ VS_VERSION_NOTHING_TEXT = Not State
1128
+ STRUC_DEF_IMPLEMENTS = Interfaces Implemented