diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d4990b1a19f3e1996d3e4c96d463610ca1fce2bb..cbbefa6e11e4299633fa67d0ae0dac2dc04733c5 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,19 @@ # Define templates include: - project: 'gazelle/private/gitlab-ci-templates' - file: 'extends.yaml' + file: 'extends-v2.yaml' ref: 'master' # Define stages stages: - build - - postbuild + - predeploy - deploy - - tests + - test + - publish - release - upgrade - - cleanup + - clean # Define global variables variables: @@ -23,15 +24,42 @@ variables: # Define jobs -code: +compile/unit-test: stage: build extends: - - .buildCodeForJava + - .buildJavaMavenTest + variables: + MAVEN_PHASE: "clean install" -quality: - stage: tests +package: + stage: build + extends: + - .buildJavaMavenPackage + needs: + - job: compile/unit-test + artifacts: true + variables: + P_MAVEN_EXTRA_ARGS: "-DskipTests" + +static-analysis: + stage: test + extends: + - .testJavaMavenSonarAnalysis + needs: + - job: compile/unit-test + artifacts: true + variables: + P_MAVEN_EXTRA_ARGS: "-Psonar -DskipTests" + +install-cache-repo: + stage: publish extends: - - .testQualityForJavaWithSonarqube + - .publishJavaMavenInstall + needs: + - job: package + artifacts: false + variables: + P_MAVEN_EXTRA_ARGS: "-DskipTests" release/code: stage: release diff --git a/MessageContentAnalyzer-ejb/pom.xml b/MessageContentAnalyzer-ejb/pom.xml index d8949cdafecabad2a0ce766e6baafdffbb943ed6..b6303519b9cc77d3d2cb8ae93baae1cf63a9fb85 100644 --- a/MessageContentAnalyzer-ejb/pom.xml +++ b/MessageContentAnalyzer-ejb/pom.xml @@ -55,7 +55,7 @@ <dependency> <groupId>net.ihe.gazelle</groupId> <artifactId>gazelle-evsclient-common</artifactId> - <version>2.0.0</version> + <version>2.0.1-SNAPSHOT</version> </dependency> <dependency> <groupId>ca.uhn.hapi</groupId> diff --git a/MessageContentAnalyzer-ejb/src/main/java/net/ihe/gazelle/mca/contentanalyzer/adapters/config/gui/ConfigBeanGui.java b/MessageContentAnalyzer-ejb/src/main/java/net/ihe/gazelle/mca/contentanalyzer/adapters/config/gui/ConfigBeanGui.java index 02996ed3dbc6443262d0722fc0c0ffacaf7cf482..31eecf0e3a5c753d7868e57b72b3b2912d6e1fdb 100644 --- a/MessageContentAnalyzer-ejb/src/main/java/net/ihe/gazelle/mca/contentanalyzer/adapters/config/gui/ConfigBeanGui.java +++ b/MessageContentAnalyzer-ejb/src/main/java/net/ihe/gazelle/mca/contentanalyzer/adapters/config/gui/ConfigBeanGui.java @@ -2,6 +2,7 @@ package net.ihe.gazelle.mca.contentanalyzer.adapters.config.gui; import net.ihe.gazelle.common.filter.list.GazelleListDataModel; import net.ihe.gazelle.evsclient.domain.validation.ValidationType; +import net.ihe.gazelle.evsclient.interlay.gui.I18n; import net.ihe.gazelle.evsclient.interlay.gui.processing.FileProcessingBeanGui; import net.ihe.gazelle.mca.contentanalyzer.application.config.McaConfigManager; import net.ihe.gazelle.mca.contentanalyzer.application.converters.ConfigToXmlConverter; @@ -528,4 +529,9 @@ public class ConfigBeanGui extends FileProcessingBeanGui implements Serializable } return false; } + + public String noConfigMessage(){ + return nbrAddedConfigs == 0 ? I18n.get("net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave") + : (nbrAddedConfigs + I18n.get("net.ihe.gazelle.mca.ConfigurationsHaveBeenAddedToTheDatabase")); + } } diff --git a/MessageContentAnalyzer-war/pom.xml b/MessageContentAnalyzer-war/pom.xml index d02e1c2fa169136426bda18622b3ffbe9382a72d..7cbab96077045af35bec45d738380e92fb8ea002 100644 --- a/MessageContentAnalyzer-war/pom.xml +++ b/MessageContentAnalyzer-war/pom.xml @@ -94,6 +94,8 @@ <ignoredParamName>styleClass</ignoredParamName> <ignoredParamName>validationType</ignoredParamName> <ignoredParamName>idToRender</ignoredParamName> + <ignoredParamName>options</ignoredParamName> + <ignoredParamName>documentViewerStyle</ignoredParamName> </ignoredParamNames> <targetDirectory /> <ramRootFolder /> diff --git a/MessageContentAnalyzer-war/src/main/crowdin/de/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/de/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/de/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/de/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/en/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/en/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 1c68964d87e51cf736c7ba83f20986c65a746402..020b914f4aefcfa410d108902628fc8964898ee9 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/en/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/en/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,17 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin -net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} -net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content -net.ihe.gazelle.document.expands-all=Expands/collapse all -net.ihe.gazelle.document.xpath-filter=Filter -net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: @@ -33,7 +55,7 @@ net.ihe.gazelle.mca.CannotValidateAFolder=Cannot validate folders. net.ihe.gazelle.mca.CannotValidateAZipFile=Cannot Validate a ZIP file. net.ihe.gazelle.mca.ClearAndImportConfiguration=Clear and import Configuration net.ihe.gazelle.mca.ClickToViewCrossValidationOutcome=Click to view Cross Validation Outcome -net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave=configBean.nbrAddedConfigs \=\= null?No configuration have been added to the database. \: +net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave=No configuration have been added to the database. net.ihe.gazelle.mca.ConfigurationFile=Configuration file \: net.ihe.gazelle.mca.ConfigurationType=Configuration Type net.ihe.gazelle.mca.ConfigurationsHaveBeenAddedToTheDatabase=configurations have been added to the database. @@ -134,23 +156,3 @@ net.ihe.gazelle.mca.YouAreAboutToDownloadTheContentOfASubpartFromThe=You are abo net.ihe.gazelle.mca.information=Information net.ihe.gazelle.mca.saml.oid=OID net.ihe.gazelle.mca.validation.login=User - -net.ihe.gazelle.document.plain-document-renderer=Plain Text -net.ihe.gazelle.document.xml-document-renderer=XML -net.ihe.gazelle.document.bin-document-renderer=Binary content -net.ihe.gazelle.document.er7-document-renderer=HL7 Message -net.ihe.gazelle.document.json-document-renderer=JSON -net.ihe.gazelle.document.pdf-document-renderer=PDF -net.ihe.gazelle.document.url-document-renderer=URL -net.ihe.gazelle.document.b64-document-renderer=Embedded document - -net.ihe.gazelle.document.xml-tree-renderer=XML Tree -net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree -net.ihe.gazelle.document.json-tree-renderer=JSON Tree - -net.ihe.gazelle.document.dicom-document-renderer=Metadata -net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) -net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) - -net.ihe.gazelle.document.pem-document-renderer=Certificate -net.ihe.gazelle.document.zip-document-renderer=Zip entries \ No newline at end of file diff --git a/MessageContentAnalyzer-war/src/main/crowdin/es-ES/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/es-ES/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/es-ES/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/es-ES/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/fi/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/fi/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index ebf3cf500dff4bd160fa19b938d38c707402fac4..708a565885e451c8a00bbb5690dc2405de3856be 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/fi/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/fi/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/fr/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/fr/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 94f6eff952fb0081e2f99be382c0cb8fc5155254..13125d5e94dc367ae830cf56f1eb489eb49a84e7 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/fr/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/fr/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,46 +1,69 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin -net.ihe.gazelle.document.unable-to-render=Impossible d\u2019afficher le contenu {0} \: {1} +net.ihe.gazelle.document.b64-document-renderer=Document inclus +net.ihe.gazelle.document.bin-document-renderer=Contenu binaire +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Le contenu binaire ne peut \u00EAtre affich\u00E9 -net.ihe.gazelle.document.empty-content=Le contenu ne doit pas \u00EAtre vide. +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=M\u00E9tadonn\u00E9es +net.ihe.gazelle.document.dicom-xml-document-renderer=M\u00E9tadonn\u00E9es (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=M\u00E9dias int\u00E9gr\u00E9s +net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=Vue arbre +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Type de fichier invalide. Les types de fichiers attendus sont \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=Vue arbre +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificat +net.ihe.gazelle.document.plain-document-renderer=Texte brut net.ihe.gazelle.document.prettified-content=Le contenu suivant a \u00E9t\u00E9 embelli pour une lecture plus ais\u00E9e. La validation sera effectu\u00E9e sur le contenu original -net.ihe.gazelle.document.prettified-validated-content=Le contenu suivant a \u00E9t\u00E9 embelli pour une lecture plus ais\u00E9e. La validation a \u00E9t\u00E9 effectu\u00E9e sur le contenu original. -net.ihe.gazelle.document.prettify-content=Embellir le contenu +net.ihe.gazelle.document.prettified-validated-content=Le contenu suivant a \u00E9t\u00E9 embelli pour une lecture plus ais\u00E9e. La validation sera effectu\u00E9e sur le contenu original +net.ihe.gazelle.document.prettify-content=Embellir le contenu. +net.ihe.gazelle.document.unable-to-prettify=Impossible d''embellir {0} \: {1} +net.ihe.gazelle.document.unable-to-render=Impossible d''afficher {0} \: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=Voir les num\u00E9ros de lignes -net.ihe.gazelle.document.expands-all=D\u00E9plier/replier tout -net.ihe.gazelle.document.xpath-filter=Filtre +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=Vue arbre net.ihe.gazelle.document.xpath-expression=Expression XPath -net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=Aucune configurations n\u2019a \u00E9t\u00E9 remplac\u00E9e. -net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=Une liste de cha\u00EEnes de caract\u00E8res. Le contenu de l\u2019object analys\u00E9 doit d\u00E9buter par une de ces cha\u00EEnes pour \u00EAtre associ\u00E9 \u00E0 cette configuration. +net.ihe.gazelle.document.xpath-filter=Filtrer +net.ihe.gazelle.document.zip-document-renderer=Liste des entr\u00E9es zipp\u00E9es +net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=Aucune configurations n'a \u00E9t\u00E9 remplac\u00E9e. +net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=Une liste de cha\u00EEnes de caract\u00E8res. Le contenu de l'object analys\u00E9 doit d\u00E9buter par une de ces cha\u00EEnes pour \u00EAtre associ\u00E9 \u00E0 cette configuration. net.ihe.gazelle.mca.AddedConfigurations=Configurations ajout\u00E9es \: -net.ihe.gazelle.mca.AnalysisDate=Date de l\u2019analyse +net.ihe.gazelle.mca.AnalysisDate=Date de l'analyse net.ihe.gazelle.mca.Analyze=Analyser net.ihe.gazelle.mca.AnalyzeThisEditedPart=Analyser cette partie \u00E9dit\u00E9e -net.ihe.gazelle.mca.AnalyzerVersion=Version de l\u2019analyseur \: +net.ihe.gazelle.mca.AnalyzerVersion=Version de l'analyseur \: net.ihe.gazelle.mca.AreYouSureYouWantToDeleteThisConfiguration=\u00CAtes-vous certain de que vouloir supprimer cette configuration ? net.ihe.gazelle.mca.AssociatedValidationType=Type de validation associ\u00E9 -net.ihe.gazelle.mca.ByChoosingThisOptionImportingAConfigurationFileW=By choosing this option, importing a configuration file will delete all previous configuration elements. Be sure to export your configuration first to create a save file. -net.ihe.gazelle.mca.ByChoosingThisOptionYouWillEraseTheCurrentConfig=By choosing this option you will erase the current configuration from your database and replace it with the configuration from the uploaded file. For safety, export current configuration first. -net.ihe.gazelle.mca.BytePattern=Motif d\u2019octet. -net.ihe.gazelle.mca.BytePatternThatMustBeDetectedAtTheBeginningOfThe=Motif d\u2019octet qui doit \u00EAtre d\u00E9tect\u00E9 au d\u00E9but du contenu de l\u2019objet analys\u00E9. Il est affich\u00E9 en hexadecimal. +net.ihe.gazelle.mca.ByChoosingThisOptionImportingAConfigurationFileW=En choisissant cette option, l'importation d'un fichier de configuration supprimera tous les \u00E9l\u00E9ments de configuration pr\u00E9c\u00E9dents. Assurez-vous d'abord d'exporter votre configuration pour cr\u00E9er un fichier de sauvegarde. +net.ihe.gazelle.mca.ByChoosingThisOptionYouWillEraseTheCurrentConfig=En choisissant cette option, vous effacerez la configuration actuelle de votre base de donn\u00E9es et la remplacerez par la configuration du fichier t\u00E9l\u00E9charg\u00E9. Pour des raisons de s\u00E9curit\u00E9, exportez d'abord la configuration actuelle. +net.ihe.gazelle.mca.BytePattern=Motif d'octet. +net.ihe.gazelle.mca.BytePatternThatMustBeDetectedAtTheBeginningOfThe=Motif d'octet qui doit \u00EAtre d\u00E9tect\u00E9 au d\u00E9but du contenu de l'objet analys\u00E9. Il est affich\u00E9 en hexadecimal. net.ihe.gazelle.mca.Cancel=Annuler -net.ihe.gazelle.mca.CannotAccessAnalysisResult=Impossible d\u2019acc\u00E9der au r\u00E9sultat de l\u2019analyse. -net.ihe.gazelle.mca.CannotDownloadFolders=Cannot download folders +net.ihe.gazelle.mca.CannotAccessAnalysisResult=Impossible d'acc\u00E9der au r\u00E9sultat de l'analyse. +net.ihe.gazelle.mca.CannotDownloadFolders=Impossible de t\u00E9l\u00E9charger les dossiers net.ihe.gazelle.mca.CannotRedirectToCrossValidation=Cannot redirect to Cross Validation. net.ihe.gazelle.mca.CannotValidateAFolder=Cannot validate folders. net.ihe.gazelle.mca.CannotValidateAZipFile=Cannot Validate a ZIP file. -net.ihe.gazelle.mca.ClearAndImportConfiguration=Clear and import Configuration +net.ihe.gazelle.mca.ClearAndImportConfiguration=Effacer et importer la configuration net.ihe.gazelle.mca.ClickToViewCrossValidationOutcome=Cliquez pour voir le r\u00E9sultat de la Cross Validation. -net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave=configBean.nbrAddedConfigs \=\= null?No configuration have been added to the database. \: +net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave=Aucune configuration n'a \u00E9t\u00E9 ajout\u00E9e \u00E0 la base de donn\u00E9e. net.ihe.gazelle.mca.ConfigurationFile=Fichier de configuration \: -net.ihe.gazelle.mca.ConfigurationType=Configuration Type +net.ihe.gazelle.mca.ConfigurationType=Type de configuration net.ihe.gazelle.mca.ConfigurationsHaveBeenAddedToTheDatabase=Les configurations ont \u00E9t\u00E9 ajout\u00E9es \u00E0 la base de donn\u00E9es. net.ihe.gazelle.mca.ConfigurationsHaveBeenRemovedFromDatabase=Les configurations ont \u00E9t\u00E9 supprim\u00E9es de la base de donn\u00E9es. -net.ihe.gazelle.mca.CreateContentAnalysisConfiguration=Configurations de l\u2019analyseur de contenu de message +net.ihe.gazelle.mca.CreateContentAnalysisConfiguration=Configurations de l'analyseur de contenu de message net.ihe.gazelle.mca.CreateMimeTypeConfiguration=Cr\u00E9er une configuration selon un "Mime Type" -net.ihe.gazelle.mca.CreateTagConfiguration=Create Tag Configuration -net.ihe.gazelle.mca.CrossValidatorNotAvailable=Le cross validateur n\u2019est pas disponible. +net.ihe.gazelle.mca.CreateTagConfiguration=Cr\u00E9er une configuration d'\u00E9l\u00E9ment XML +net.ihe.gazelle.mca.CrossValidatorNotAvailable=Le cross validateur n'est pas disponible. net.ihe.gazelle.mca.DataVisibility=Visibilit\u00E9 des donn\u00E9es\u00A0\: net.ihe.gazelle.mca.Date=Date net.ihe.gazelle.mca.Delete=Supprimer @@ -48,57 +71,57 @@ net.ihe.gazelle.mca.DeleteConfiguration=Supprimer la Configuration net.ihe.gazelle.mca.DoYouWantToDownloadTheOriginalContentOrTheAdjust=Voulez-vous t\u00E9l\u00E9charger le contenu original ou le contenu modifi\u00E9 ? net.ihe.gazelle.mca.DocumentType=Type de document net.ihe.gazelle.mca.DownloadAdjustedContent=T\u00E9l\u00E9charger le contenu modifi\u00E9. -net.ihe.gazelle.mca.DownloadAnalysisSubpart=Download Analysis Sub-part -net.ihe.gazelle.mca.DownloadConfigurationAsXMLFile=Download configuration as XML file +net.ihe.gazelle.mca.DownloadAnalysisSubpart=T\u00E9l\u00E9charger la sous-analyse +net.ihe.gazelle.mca.DownloadConfigurationAsXMLFile=T\u00E9l\u00E9charger la configuration au format XML net.ihe.gazelle.mca.DownloadOriginalContent=T\u00E9l\u00E9charger le contenu original. net.ihe.gazelle.mca.Edit=\u00C9diter net.ihe.gazelle.mca.EditConfiguration=Editer la configuration net.ihe.gazelle.mca.EditContent=Editer le message net.ihe.gazelle.mca.EverybodyWillHaveAccessToThisResult=Tout le monde aura acc\u00E8s \u00E0 ce r\u00E9sultat -net.ihe.gazelle.mca.ExampleOfAnalyzedObjectContentThatWouldMatchThis=Exemple de contenu d\u2019objet analys\u00E9 auquel cette configuration serait associ\u00E9e. -net.ihe.gazelle.mca.ExportFilteredConfiguration=Export filtered Configuration -net.ihe.gazelle.mca.FileBeingAnalyzed=Fichier en cours d\u2019analyse +net.ihe.gazelle.mca.ExampleOfAnalyzedObjectContentThatWouldMatchThis=Exemple de contenu d'objet analys\u00E9 auquel cette configuration serait associ\u00E9e. +net.ihe.gazelle.mca.ExportFilteredConfiguration=Exporter la configuration filtr\u00E9e +net.ihe.gazelle.mca.FileBeingAnalyzed=Fichier en cours d'analyse net.ihe.gazelle.mca.Filename=Nom du fichier net.ihe.gazelle.mca.FollowingConfigurationsHaveBeenOverwritten=Les configurations suivantes ont \u00E9t\u00E9 remplac\u00E9es \: -net.ihe.gazelle.mca.IdenticalConfigurationsWillBeIgnored=Identical configurations will be ignored -net.ihe.gazelle.mca.IfAConfigurationDoesDefineTheSameDetectionElemen=If a configuration does define the same detection elements, the Document Type and Validation Type will be updated with values from the uploaded file -net.ihe.gazelle.mca.IfAConfigurationDoesNotExistItWillBeAddedToTheLi=If a configuration does not exist, it will be added to the list -net.ihe.gazelle.mca.ImportConfiguration=Import Configuration -net.ihe.gazelle.mca.ImportConfigurations=Import Configurations +net.ihe.gazelle.mca.IdenticalConfigurationsWillBeIgnored=Les configurations identiques seront ignor\u00E9es +net.ihe.gazelle.mca.IfAConfigurationDoesDefineTheSameDetectionElemen=Si une configuration d\u00E9finit les m\u00EAmes \u00E9l\u00E9ments de d\u00E9tection, le type de document et le type de validation seront mis \u00E0 jour avec les valeurs du fichier t\u00E9l\u00E9charg\u00E9 +net.ihe.gazelle.mca.IfAConfigurationDoesNotExistItWillBeAddedToTheLi=Si une configuration n'existe pas, elle sera ajout\u00E9e \u00E0 la liste +net.ihe.gazelle.mca.ImportConfiguration=Importer la configuration +net.ihe.gazelle.mca.ImportConfigurations=Importer les configurations net.ihe.gazelle.mca.ImportResults=Importer des configurations net.ihe.gazelle.mca.MakeThisResultPrivate=Rendre ce r\u00E9sultat priv\u00E9 net.ihe.gazelle.mca.MakeThisResultPublic=Rendre ce r\u00E9sultat public -net.ihe.gazelle.mca.ManageMessageContentAnalyzerConfiguration=Configuration de l\u2019analyseur de contenu de message +net.ihe.gazelle.mca.ManageMessageContentAnalyzerConfiguration=Configuration de l'analyseur de contenu de message net.ihe.gazelle.mca.MessageContentAnalyzer=Analyseur de contenu de message -net.ihe.gazelle.mca.MessageContentAnalyzerConfigurations=Configurations de l\u2019analyseur de contenu de message -net.ihe.gazelle.mca.MessageContentAnalyzerDetailedResult=R\u00E9sultat d\u00E9taill\u00E9 de l\u2019analyseur de contenu de message -net.ihe.gazelle.mca.MessageContentAnalyzerResultLogs=R\u00E9sultats de l\u2019analyseur de contenu -net.ihe.gazelle.mca.MimeType=Mime Type -net.ihe.gazelle.mca.MimeTypeToBeDetectedForTheAnalyzedObjectToMatchT=Le "Mime Type" qui doit \u00EAtre d\u00E9t\u00E9ct\u00E9 pour l\u2019objet analys\u00E9 pour \u00EAtre associ\u00E9 \u00E0 cette configuration. +net.ihe.gazelle.mca.MessageContentAnalyzerConfigurations=Configurations de l'analyseur de contenu de message +net.ihe.gazelle.mca.MessageContentAnalyzerDetailedResult=R\u00E9sultat d\u00E9taill\u00E9 de l'analyseur de contenu de message +net.ihe.gazelle.mca.MessageContentAnalyzerResultLogs=R\u00E9sultats de l'analyseur de contenu +net.ihe.gazelle.mca.MimeType=Type Mime +net.ihe.gazelle.mca.MimeTypeToBeDetectedForTheAnalyzedObjectToMatchT=Le "Mime Type" qui doit \u00EAtre d\u00E9t\u00E9ct\u00E9 pour l'objet analys\u00E9 pour \u00EAtre associ\u00E9 \u00E0 cette configuration. net.ihe.gazelle.mca.NA=N/A net.ihe.gazelle.mca.Namespace=Espace de nommage net.ihe.gazelle.mca.NamespaceDefinedForTheTagIfNullThisConfiguration=Espace de nommage d\u00E9fini pour la balise. Si vide, cette configuration sera associ\u00E9e \u00E0 toutes les balises sans espace de nommage dont le nom de balise sp\u00E9cifi\u00E9 correspond. -net.ihe.gazelle.mca.NamespacesFromPreviousPartsMayBeReportedBeforeTh=L\u2019espace de nommage de la partie pr\u00E9c\u00E9dente peut \u00EAtre report\u00E9e avant l\u2019envoi du message au validateur. +net.ihe.gazelle.mca.NamespacesFromPreviousPartsMayBeReportedBeforeTh=L'espace de nommage de la partie pr\u00E9c\u00E9dente peut \u00EAtre report\u00E9e avant l'envoi du message au validateur. net.ihe.gazelle.mca.NamespacesHaveBeenReportedFromPreviousXMLSubpart=Des espaces de nommage de sous-parties XML pr\u00E9c\u00E9dentes ont \u00E9t\u00E9 report\u00E9s dans le message affich\u00E9. Ces ajustements seront envoy\u00E9s au validateur. net.ihe.gazelle.mca.New=Nouveau -net.ihe.gazelle.mca.NoNamespaceIsDefinedForThisTagSoWeCouldntLinkItT=Aucun espace de nommage n\u2019est d\u00E9fini pour cette balise ; en cons\u00E9quence, il n\u2019a pas \u00E9t\u00E9 possible de la reli\u00E9e \u00E0 un type de validation. -net.ihe.gazelle.mca.NoNamespacesWereFoundMissingThePartWillBeSendToT=Aucun espace de nommage n\u2019est manquant. La partie sera valid\u00E9e sans \u00EAtre modifi\u00E9e. +net.ihe.gazelle.mca.NoNamespaceIsDefinedForThisTagSoWeCouldntLinkItT=Aucun espace de nommage n'est d\u00E9fini pour cette balise ; en cons\u00E9quence, il n'a pas \u00E9t\u00E9 possible de la reli\u00E9e \u00E0 un type de validation. +net.ihe.gazelle.mca.NoNamespacesWereFoundMissingThePartWillBeSendToT=Aucun espace de nommage n'est manquant. La partie sera valid\u00E9e sans \u00EAtre modifi\u00E9e. net.ihe.gazelle.mca.NoValidationType=Aucun type de validation net.ihe.gazelle.mca.OnlyTheUsersWhoKnowThePermanentLinkWillHaveAcces=Seuls les utilisateurs qui connaissent le lien permanent auront acc\u00E8s \u00E0 ce r\u00E9sultat net.ihe.gazelle.mca.OverwrittenConfigurations=Configurations remplac\u00E9es \: net.ihe.gazelle.mca.Permanent.Link=Lien permanent -net.ihe.gazelle.mca.PleaseContactAnAdministrator={0} Please contact an administrator. -net.ihe.gazelle.mca.PleaseSelectAFile=Please select a file BEFORE requesting the analysis. +net.ihe.gazelle.mca.PleaseContactAnAdministrator={0} Veuillez contacter un administrateur. +net.ihe.gazelle.mca.PleaseSelectAFile=Veuillez s\u00E9lectionner un fichier avant de demander l'analyse. net.ihe.gazelle.mca.PleaseUploadTheMessageYouWantToAnalyzeOnlyFilesU=T\u00E9l\u00E9charger le message que vous souhaitez analyser. -net.ihe.gazelle.mca.PleaseUploadTheXMLFileContainingTheConfiguration=Please upload the XML file containing the configuration you want to import. By default, configuration will be compared based on the detection elements \: +net.ihe.gazelle.mca.PleaseUploadTheXMLFileContainingTheConfiguration=Veuillez t\u00E9l\u00E9charger le fichier XML contenant la configuration que vous souhaitez importer. Par d\u00E9faut, la configuration sera compar\u00E9e en fonction des \u00E9l\u00E9ments de d\u00E9tection \: net.ihe.gazelle.mca.Private=Priv\u00E9 net.ihe.gazelle.mca.Public=Publique net.ihe.gazelle.mca.ReAnalyze=Analyser net.ihe.gazelle.mca.Regex=Expression r\u00E9guli\u00E8re -net.ihe.gazelle.mca.RegularExpressionThatMustMatchPartOfTheAnalyzedO=Expression r\u00E9guli\u00E8re \u00E0 laquelle le contenu de l\u2019objet analys\u00E9 doit correspondre pour pouvoir \u00EAtre associ\u00E9 \u00E0 cette configuration. +net.ihe.gazelle.mca.RegularExpressionThatMustMatchPartOfTheAnalyzedO=Expression r\u00E9guli\u00E8re \u00E0 laquelle le contenu de l'objet analys\u00E9 doit correspondre pour pouvoir \u00EAtre associ\u00E9 \u00E0 cette configuration. net.ihe.gazelle.mca.RemovedConfigurations=Configurations supprim\u00E9es \: net.ihe.gazelle.mca.Reset=R\u00E9initialiser -net.ihe.gazelle.mca.ResetFilter=Reset Filter +net.ihe.gazelle.mca.ResetFilter=R\u00E9initialiser le filtre net.ihe.gazelle.mca.ResetFilters=R\u00E9initialiser les filtres net.ihe.gazelle.mca.Return=Retour net.ihe.gazelle.mca.Sample=\u00C9chantillon @@ -108,49 +131,28 @@ net.ihe.gazelle.mca.ShareThisResult=Partager ce r\u00E9sultat net.ihe.gazelle.mca.ShowContent=Afficher le contenu net.ihe.gazelle.mca.ShowReportedNamespacesFromOriginalMessage=Afficher les espaces de nommage du message original report\u00E9s. net.ihe.gazelle.mca.StartElements=Elements de d\u00E9but. -net.ihe.gazelle.mca.StartsWith=Starts With -net.ihe.gazelle.mca.StringPattern=String Pattern -net.ihe.gazelle.mca.StringThatIsNotWantedWithinTheStringContentOfThe=Partie qui n\u2019est pas d\u00E9sir\u00E9e dans le contenu de l\u2019objet analys\u00E9. +net.ihe.gazelle.mca.StartsWith=Commence par +net.ihe.gazelle.mca.StringPattern=Expression r\u00E9guli\u00E8re +net.ihe.gazelle.mca.StringThatIsNotWantedWithinTheStringContentOfThe=Partie qui n'est pas d\u00E9sir\u00E9e dans le contenu de l'objet analys\u00E9. net.ihe.gazelle.mca.Tag=Balise -net.ihe.gazelle.mca.TheApplicationHasNotBeenAbleToRetrieveTheObjectB=L\u2019application n\u2019a pas pu retrouv\u00E9 l\u2019analyse demand\u00E9e car l\u2019OID n\u2019existe pas ou parce que vous n\u2019avez pas les droits suffisants pour y acc\u00E9der. +net.ihe.gazelle.mca.TheApplicationHasNotBeenAbleToRetrieveTheObjectB=L'application n'a pas pu retrouv\u00E9 l'analyse demand\u00E9e car l'OID n'existe pas ou parce que vous n'avez pas les droits suffisants pour y acc\u00E9der. net.ihe.gazelle.mca.TheContentOfThisPartMayReferToNamespacesDefinedI=Le contenu de cette partie peut se r\u00E9f\u00E9rer \u00E0 des espaces de nommage d\u00E9finies dans des parties pr\u00E9c\u00E9dentes. net.ihe.gazelle.mca.TheFollowingContentHasBeenModifiedindentedForBet=Le contenu suivant a \u00E9t\u00E9 embelli pour une lecture plus ais\u00E9e. La validation sera effectu\u00E9e sur le contenu original -net.ihe.gazelle.mca.TheLabelThatWillBeUsedForDetectedPartsInAnalysis=Le libell\u00E9 qui sera utilis\u00E9 pour reconnaitre des parties dans le r\u00E9sultat d\u2019analyse. -net.ihe.gazelle.mca.TheValidationTypeThatWillBeSentToTheRemoteValida=Le type de validation qui sera envoy\u00E9 au validateur distant. Si vide, aucun type n\u2019est envoy\u00E9 et la validateur devra \u00EAtre choisi manuellement. +net.ihe.gazelle.mca.TheLabelThatWillBeUsedForDetectedPartsInAnalysis=Le libell\u00E9 qui sera utilis\u00E9 pour reconnaitre des parties dans le r\u00E9sultat d'analyse. +net.ihe.gazelle.mca.TheValidationTypeThatWillBeSentToTheRemoteValida=Le type de validation qui sera envoy\u00E9 au validateur distant. Si vide, aucun type n'est envoy\u00E9 et la validateur devra \u00EAtre choisi manuellement. net.ihe.gazelle.mca.ThisConfigurationCannotBeEdited=Cette configuration ne peut pas \u00EAtre \u00E9dit\u00E9e -net.ihe.gazelle.mca.ThisConfigurationCannotBeRemoved=This configuration cannot be removed +net.ihe.gazelle.mca.ThisConfigurationCannotBeRemoved=Cette configuration ne peut pas \u00EAtre supprim\u00E9e net.ihe.gazelle.mca.ThisIsADirectory=Ceci est un r\u00E9pertoire, pas de contenu \u00E0 afficher. net.ihe.gazelle.mca.ThisResultWillOnlyBeAccessibleByYouAndMonitors=Ce r\u00E9sultat ne sera accessible que par vous et les moniteurs -net.ihe.gazelle.mca.UnableToRedirectToTheAnalysisResult=Unable to redirect to the analysis result. +net.ihe.gazelle.mca.UnableToRedirectToTheAnalysisResult=Impossible de rediriger vers le r\u00E9sultat de l'analyse. net.ihe.gazelle.mca.UnwantedContent=Contenu non d\u00E9sir\u00E9. net.ihe.gazelle.mca.ValidationDate=Date de la validation net.ihe.gazelle.mca.ValidationType=Type de validation net.ihe.gazelle.mca.ValidationType_2=Type de validation net.ihe.gazelle.mca.Validator=Validateur net.ihe.gazelle.mca.ViewConfiguration=Voir la configuration -net.ihe.gazelle.mca.XMLTagNameToBeFoundInTheAnalyzedObjectContentItI=La balise XML qui doit \u00EAtre trouv\u00E9e dans contenu de l\u2019objet analys\u00E9. C\u2019est une expression r\u00E9guli\u00E8re \u00E0 laquelle doit correspondre le nom de la balkise dans le contenu de l\u2019objet analys\u00E9. -net.ihe.gazelle.mca.YouAreAboutToDownloadTheContentOfASubpartFromThe=Vous \u00EAtes sur le point de t\u00E9l\u00E9charger le contenu d\u2019une sous-partie de l\u2019analyse. +net.ihe.gazelle.mca.XMLTagNameToBeFoundInTheAnalyzedObjectContentItI=La balise XML qui doit \u00EAtre trouv\u00E9e dans contenu de l'objet analys\u00E9. C'est une expression r\u00E9guli\u00E8re \u00E0 laquelle doit correspondre le nom de la balkise dans le contenu de l'objet analys\u00E9. +net.ihe.gazelle.mca.YouAreAboutToDownloadTheContentOfASubpartFromThe=Vous \u00EAtes sur le point de t\u00E9l\u00E9charger le contenu d'une sous-partie de l'analyse. net.ihe.gazelle.mca.information=Informations net.ihe.gazelle.mca.saml.oid=OID net.ihe.gazelle.mca.validation.login=Utilisateur - -net.ihe.gazelle.document.plain-document-renderer=Texte -net.ihe.gazelle.document.xml-document-renderer=XML -net.ihe.gazelle.document.bin-document-renderer=Vue binaire (HEXA) -net.ihe.gazelle.document.er7-document-renderer=Message ER7 -net.ihe.gazelle.document.json-document-renderer=JSON -net.ihe.gazelle.document.pdf-document-renderer=PDF -net.ihe.gazelle.document.url-document-renderer=URL -net.ihe.gazelle.document.b64-document-renderer=Document inclus - -net.ihe.gazelle.document.xml-tree-renderer=Arbre -net.ihe.gazelle.document.er7-tree-renderer=Arbre -net.ihe.gazelle.document.json-tree-renderer=Arbre - -net.ihe.gazelle.document.dicom-document-renderer=Metadonn\u00E9es -net.ihe.gazelle.document.dicom-xml-document-renderer=Metadonn\u00E9es(XML) -net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadonn\u00E9es (Arbre) - -net.ihe.gazelle.document.pem-document-renderer=Certificat - -net.ihe.gazelle.document.zip-document-renderer=Liste des entr\u00E9es zipp\u00E9es \ No newline at end of file diff --git a/MessageContentAnalyzer-war/src/main/crowdin/ja/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/ja/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 4f9a123414248768f81420e470a885665b1d98f6..a42f0d0efcf5ae898ad1b0a90ef2e76f9a7ba104 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/ja/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/ja/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/pl/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/pl/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/pl/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/pl/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/sv-SE/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/sv-SE/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/sv-SE/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/sv-SE/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/zh-CN/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/zh-CN/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/zh-CN/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/zh-CN/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/crowdin/zh-TW/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/crowdin/zh-TW/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties index 774bb8d0a0437a99d9f5bca9e788814177329e76..fa640790ea76129c143cfa5ee98dac7e35070c70 100644 --- a/MessageContentAnalyzer-war/src/main/crowdin/zh-TW/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/crowdin/zh-TW/net.ihe.gazelle.message-content-analyzer-war/MessageContentAnalyzer.properties @@ -1,11 +1,39 @@ #This file is automatically generated. Please do not edit this file. If you'd like to change the content please use crowdin +net.ihe.gazelle.document.b64-document-renderer=Embedded document +net.ihe.gazelle.document.bin-document-renderer=Binary content +net.ihe.gazelle.document.cant-download-fragment=Fragment download failed. net.ihe.gazelle.document.cant-show-binary-content=Can't show binary content +net.ihe.gazelle.document.cant-show-fragment=Unable to show fragment. +net.ihe.gazelle.document.dicom-document-renderer=Metadata +net.ihe.gazelle.document.dicom-xml-document-renderer=Metadata (XML) +net.ihe.gazelle.document.dicom-xml-tree-renderer=Metadata (Tree) +net.ihe.gazelle.document.download-fragment=Download +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media net.ihe.gazelle.document.empty-content=Content object must be defined and not empty +net.ihe.gazelle.document.er7-document-renderer=HL7 Message +net.ihe.gazelle.document.er7-tree-renderer=HL7 Message as Tree +net.ihe.gazelle.document.expands-all=Expands/collapse all net.ihe.gazelle.document.invalid-file-type=Invalid file type. Expected file types are \: +net.ihe.gazelle.document.json-document-renderer=JSON +net.ihe.gazelle.document.json-tree-renderer=JSON Tree +net.ihe.gazelle.document.pdf-document-renderer=PDF +net.ihe.gazelle.document.pem-document-renderer=Certificate +net.ihe.gazelle.document.plain-document-renderer=Plain Text net.ihe.gazelle.document.prettified-content=The following content has been modified for better visualization. Validation will be performed on original content +net.ihe.gazelle.document.prettified-validated-content=The following content has been modified for better visualization. Validation has been performed on original content. net.ihe.gazelle.document.prettify-content=Prettify content +net.ihe.gazelle.document.unable-to-prettify=Unable to prettify {0}\: {1} +net.ihe.gazelle.document.unable-to-render=Unable to render {0}\: {1} +net.ihe.gazelle.document.url-document-renderer=URL +net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL\: {0}. URL syntax is probably wrong. +net.ihe.gazelle.document.view-fragment=View net.ihe.gazelle.document.view-lines-numbers=View lines numbers +net.ihe.gazelle.document.xml-document-renderer=XML +net.ihe.gazelle.document.xml-tree-renderer=XML Tree +net.ihe.gazelle.document.xpath-expression=XPath expression +net.ihe.gazelle.document.xpath-filter=Filter +net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.mca.0ConfigurationHaveBeenOverwritten=0 configuration have been overwritten. net.ihe.gazelle.mca.AListOfStringElementsAnalyzedObjectContentMustSt=A list of String elements. Analyzed object content must start with one of these elements in order to match this configuration. net.ihe.gazelle.mca.AddedConfigurations=Added configurations \: diff --git a/MessageContentAnalyzer-war/src/main/messages/MessageContentAnalyzer.properties b/MessageContentAnalyzer-war/src/main/messages/MessageContentAnalyzer.properties index 7b8fae1e16cb42143be4b9669e51457170dbcb7e..5c2787066efeec826411658c91e29fa6043b3705 100644 --- a/MessageContentAnalyzer-war/src/main/messages/MessageContentAnalyzer.properties +++ b/MessageContentAnalyzer-war/src/main/messages/MessageContentAnalyzer.properties @@ -164,3 +164,5 @@ net.ihe.gazelle.document.pem-document-renderer=Certificate net.ihe.gazelle.document.zip-document-renderer=Zip entries net.ihe.gazelle.document.url-prettify-error=Error encountered while prettifying URL: {0}. URL syntax is probably wrong. + +net.ihe.gazelle.document.embedded-media-tree-renderer=Embedded media \ No newline at end of file diff --git a/MessageContentAnalyzer-war/src/main/webapp/common/_documentRendererTab.xhtml b/MessageContentAnalyzer-war/src/main/webapp/common/_documentRendererTab.xhtml index ba360b61ff4da027b72976a2df87e229058f680b..7ab6d8bda3ef43238aa6cd9a0454c1bc0e8065ea 100755 --- a/MessageContentAnalyzer-war/src/main/webapp/common/_documentRendererTab.xhtml +++ b/MessageContentAnalyzer-war/src/main/webapp/common/_documentRendererTab.xhtml @@ -40,7 +40,7 @@ #{messages['net.ihe.gazelle.document.xpath-filter']} </ui:define> <rich:inplaceInput id="#{renderer.id}XpathFilter" value = "#{renderer.nodeFilter}" - defaultLabel = "#{messages['net.ihe.gazelle.document.xpath-expression']}"> + defaultLabel = "${renderer.getFilterLabel()}"> <a4j:ajax event="change" render="#{renderer.id}TreeTabPane"/> </rich:inplaceInput> </s:decorate> @@ -102,7 +102,7 @@ #{messages['net.ihe.gazelle.document.prettify-content']} </ui:define> <h:selectBooleanCheckbox id="#{renderer.id}cb2" value="#{opt.prettyView}"> - <a4j:ajax event="change" render="#{renderer.id}TabDocument"/> + <a4j:ajax event="change" render="#{renderer.id}TabDocument,validationResultsPanel"/> </h:selectBooleanCheckbox> </s:decorate> <s:decorate template="/layout/form/_checkbox.xhtml" rendered="#{opt.hasViewLineNumberMode()}" style="float: left; margin-right: 2em;"> diff --git a/MessageContentAnalyzer-war/src/main/webapp/common/_messageContentAnalyzerResultDiv.xhtml b/MessageContentAnalyzer-war/src/main/webapp/common/_messageContentAnalyzerResultDiv.xhtml index 11b57e40de7e8d39235a9f606438c795fb25f614..757e6d4ecb68695ac7a2ab20b080886e8963ac04 100644 --- a/MessageContentAnalyzer-war/src/main/webapp/common/_messageContentAnalyzerResultDiv.xhtml +++ b/MessageContentAnalyzer-war/src/main/webapp/common/_messageContentAnalyzerResultDiv.xhtml @@ -205,34 +205,6 @@ </h:inputTextarea> </s:div> <s:div id="#{analysisBeanGui.id}DisplayMessageMode" rendered="#{!analysisBeanGui.editMessageInGui}"> - <!-- - <s:div id="displayTopViewMessage"> - <s:decorate template="/layout/form/_checkbox.xhtml" rendered="#{analysisBeanGui.presenter.renderer.options.hasPrettyViewMode()}" style="float: left; margin-right: 2em;"> - <ui:param name="id" value="cb2"/> - <ui:define name="label"> - #{messages['net.ihe.gazelle.document.prettify-content']} - </ui:define> - <h:selectBooleanCheckbox id="cb2" value="#{analysisBeanGui.presenter.renderer.options.prettyView}"> - <a4j:ajax event="change" render="displayContentViewMessage"/> - </h:selectBooleanCheckbox> - </s:decorate> - <s:decorate template="/layout/form/_checkbox.xhtml" rendered="#{analysisBeanGui.presenter.renderer.options.hasViewLineNumberMode()}" style="float: left; margin-right: 2em;"> - <ui:param name="id" value="cb3"/> - <ui:define name="label"> - #{messages['net.ihe.gazelle.document.view-lines-numbers']} - </ui:define> - <h:selectBooleanCheckbox id="cb3" value="#{analysisBeanGui.presenter.renderer.options.viewLineNumber}"> - <a4j:ajax event="change" render="displayContentViewMessage"/> - </h:selectBooleanCheckbox> - </s:decorate> - <br/> - </s:div> - <s:div id="displayContentViewMessage" styleClass="document-long-viewer" > - <h:outputText id="message-content" - value="#{analysisBeanGui.presenter.render()}" - escape="false"/> - </s:div> - --> <ui:decorate template="/common/_documentRenderersTabs.xhtml"> <ui:param name="document" value="#{analysisBeanGui.presenter.document}"/> <ui:param name="renderers" value="#{analysisBeanGui.presenter.renderers}"/> diff --git a/MessageContentAnalyzer-war/src/main/webapp/config/messageContentAnalyzerConfig.xhtml b/MessageContentAnalyzer-war/src/main/webapp/config/messageContentAnalyzerConfig.xhtml index c66669fdc64c6e8a5519665d76f7bd4a2465ab91..c4eb0778e5528d0308b4ea5e0a8d544936a63b63 100644 --- a/MessageContentAnalyzer-war/src/main/webapp/config/messageContentAnalyzerConfig.xhtml +++ b/MessageContentAnalyzer-war/src/main/webapp/config/messageContentAnalyzerConfig.xhtml @@ -301,7 +301,7 @@ </ul> </s:div> <s:div rendered="configBeanGui.nbrAddedConfigs != null"> - <h:outputText value="#{messages['net.ihe.gazelle.mca.ConfigBeannbrAddedConfigsNullNoConfigurationHave']}#{configBeanGui.nbrAddedConfigs} #{messages['net.ihe.gazelle.mca.ConfigurationsHaveBeenAddedToTheDatabase']}"/> + <h:outputText value="#{configBeanGui.noConfigMessage()})"/> </s:div> </s:div>