diff --git a/doc/sphinx-guides/source/admin/metadatacustomization.rst b/doc/sphinx-guides/source/admin/metadatacustomization.rst index 9880f4f9def..66b9b02fc87 100644 --- a/doc/sphinx-guides/source/admin/metadatacustomization.rst +++ b/doc/sphinx-guides/source/admin/metadatacustomization.rst @@ -16,7 +16,7 @@ Much more customization of metadata is possible, but this is an advanced topic s - Editing and adding metadata fields - Editing and adding instructional text (field label tooltips and text - box watermarks, but see the note below about internationalization) + box watermarks) - Editing and adding controlled vocabularies @@ -40,7 +40,7 @@ good organizational practice to define only one in each file. The metadata block TSVs shipped with Dataverse are in `this folder in the Dataverse github -repo `__. +repo `__ and the corresponding ResourceBundle property files are `here `__. Human-readable copies are available in `this Google Sheets document `__ but they tend to get out of sync with the TSV files, which should be considered authoritative. The Dataverse installation process operates on the TSVs, not the Google spreadsheet. @@ -522,19 +522,67 @@ Please note that metadata fields share a common namespace so they must be unique We'll use this command again below to update the Solr schema to accomodate metadata fields we've added. -We are aware that English goes into the TSV files but we are working toward internationalization of metadata blocks in https://github.com/IQSS/dataverse/issues/4684 - Loading TSV files into Dataverse ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ A number of TSV files are loaded into Dataverse on every new installation, becoming the metadata blocks you see in the UI. For the list of metadata blocks that are included with Dataverse out of the box, see the :doc:`/user/appendix` section of the User Guide. +Along with TSV file, there are corresponding ResourceBundle property files with key=value pair `here `__. To add other language files, see the :doc:`/installation/config` for dataverse.lang.directory JVM Options section, and add a file, for example: "citation_lang.properties" to the path you specified for the ``dataverse.lang.directory`` JVM option, and then restart Glassfish. + If you are improving an existing metadata block, the Dataverse installation process will load the TSV for you, assuming you edited the TSV file in place. The TSV file for the Citation metadata block, for example, can be found at ``scripts/api/data/metadatablocks/citation.tsv``. +If any of the below mentioned property values are changed, corresponsing ResourceBundle property file has to be edited and stored under ``dataverse.lang.directory`` location + +- name, displayName property under #metadataBlock +- name, title, description, watermark properties under #datasetfield +- DatasetField, Value property under #controlledVocabulary If you are creating a new custom metadata block (hopefully with the idea of contributing it back to the community if you feel like it would provide value to others), the Dataverse installation process won't know about your new TSV file so you must load it manually. The script that loads the TSV files into the system is ``scripts/api/setup-datasetfields.sh`` and contains a series of curl commands. Here's an example of the necessary curl command with the new custom metadata block in the "/tmp" directory. ``curl http://localhost:8080/api/admin/datasetfield/load -H "Content-type: text/tab-separated-values" -X POST --upload-file /tmp/new-metadata-block.tsv`` +To create a new ResourceBundle, here are the steps to generate key=value pair for the three main sections: + +#metadataBlock properties +~~~~~~~~~~~~~~~~~~~~~~~~~ +metadatablock.name=(the value of **name** property from #metadatablock) + +metadatablock.displayName=(the value of **displayName** property from #metadatablock) + +example: + +metadatablock.name=citation + +metadatablock.displayName=Citation Metadata + +#datasetField (field) properties +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +datasetfieldtype.(the value of **name** property from #datasetField).title=(the value of **title** property from #datasetField) + +datasetfieldtype.(the value of **name** property from #datasetField).description=(the value of **description** property from #datasetField) + +datasetfieldtype.(the value of **name** property from #datasetField).watermark=(the value of **watermark** property from #datasetField) + +example: + +datasetfieldtype.title.title=Title + +datasetfieldtype.title.description=Full title by which the Dataset is known. + +datasetfieldtype.title.watermark=Enter title... + +#controlledVocabulary (enumerated) properties +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +controlledvocabulary.(the value of **DatasetField** property from #controlledVocabulary).(the value of **Value** property from #controlledVocabulary)=(the value of **Value** property from #controlledVocabulary) + +Since the **Value** property from #controlledVocabulary is free text, while creating the key, it has to be converted to lowercase, replace space with underscore, and strip accents. + +example: + +controlledvocabulary.subject.agricultural_sciences=Agricultural Sciences + +controlledvocabulary.language.marathi_(marathi)=Marathi (Mar\u0101\u1E6Dh\u012B) + + Enabling a Metadata Block ~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/src/main/java/astrophysics.properties b/src/main/java/astrophysics.properties new file mode 100644 index 00000000000..f91095eca2c --- /dev/null +++ b/src/main/java/astrophysics.properties @@ -0,0 +1,104 @@ +metadatablock.name=astrophysics +metadatablock.displayName=Astronomy and Astrophysics Metadata +datasetfieldtype.astroType.title=Type +datasetfieldtype.astroFacility.title=Facility +datasetfieldtype.astroInstrument.title=Instrument +datasetfieldtype.astroObject.title=Object +datasetfieldtype.resolution.Spatial.title=Spatial Resolution +datasetfieldtype.resolution.Spectral.title=Spectral Resolution +datasetfieldtype.resolution.Temporal.title=Time Resolution +datasetfieldtype.coverage.Spectral.Bandpass.title=Bandpass +datasetfieldtype.coverage.Spectral.CentralWavelength.title=Central Wavelength (m) +datasetfieldtype.coverage.Spectral.Wavelength.title=Wavelength Range +datasetfieldtype.coverage.Spectral.MinimumWavelength.title=Minimum (m) +datasetfieldtype.coverage.Spectral.MaximumWavelength.title=Maximum (m) +datasetfieldtype.coverage.Temporal.title=Dataset Date Range +datasetfieldtype.coverage.Temporal.StartTime.title=Start +datasetfieldtype.coverage.Temporal.StopTime.title=End +datasetfieldtype.coverage.Spatial.title=Sky Coverage +datasetfieldtype.coverage.Depth.title=Depth Coverage +datasetfieldtype.coverage.ObjectDensity.title=Object Density +datasetfieldtype.coverage.ObjectCount.title=Object Count +datasetfieldtype.coverage.SkyFraction.title=Fraction of Sky +datasetfieldtype.coverage.Polarization.title=Polarization +datasetfieldtype.redshiftType.title=RedshiftType +datasetfieldtype.resolution.Redshift.title=Redshift Resolution +datasetfieldtype.coverage.RedshiftValue.title=Redshift Value +datasetfieldtype.coverage.Redshift.MinimumValue.title=Minimum +datasetfieldtype.coverage.Redshift.MaximumValue.title=Maximum +datasetfieldtype.astroType.description=The nature or genre of the content of the files in the dataset. +datasetfieldtype.astroFacility.description=The observatory or facility where the data was obtained. +datasetfieldtype.astroInstrument.description=The instrument used to collect the data. +datasetfieldtype.astroObject.description=Astronomical Objects represented in the data (Given as SIMBAD recognizable names preferred). +datasetfieldtype.resolution.Spatial.description=The spatial (angular) resolution that is typical of the observations, in decimal degrees. +datasetfieldtype.resolution.Spectral.description=The spectral resolution that is typical of the observations, given as the ratio λ/Δλ. +datasetfieldtype.resolution.Temporal.description=The temporal resolution that is typical of the observations, given in seconds. +datasetfieldtype.coverage.Spectral.Bandpass.description=Conventional bandpass name +datasetfieldtype.coverage.Spectral.CentralWavelength.description=The central wavelength of the spectral bandpass, in meters. +datasetfieldtype.coverage.Spectral.Wavelength.description=The minimum and maximum wavelength of the spectral bandpass. +datasetfieldtype.coverage.Spectral.MinimumWavelength.description=The minimum wavelength of the spectral bandpass, in meters. +datasetfieldtype.coverage.Spectral.MaximumWavelength.description=The maximum wavelength of the spectral bandpass, in meters. +datasetfieldtype.coverage.Temporal.description= Time period covered by the data. +datasetfieldtype.coverage.Temporal.StartTime.description=Dataset Start Date +datasetfieldtype.coverage.Temporal.StopTime.description=Dataset End Date +datasetfieldtype.coverage.Spatial.description=The sky coverage of the data object. +datasetfieldtype.coverage.Depth.description=The (typical) depth coverage, or sensitivity, of the data object in Jy. +datasetfieldtype.coverage.ObjectDensity.description=The (typical) density of objects, catalog entries, telescope pointings, etc., on the sky, in number per square degree. +datasetfieldtype.coverage.ObjectCount.description=The total number of objects, catalog entries, etc., in the data object. +datasetfieldtype.coverage.SkyFraction.description=The fraction of the sky represented in the observations, ranging from 0 to 1. +datasetfieldtype.coverage.Polarization.description=The polarization coverage +datasetfieldtype.redshiftType.description=RedshiftType string C "Redshift"; or "Optical" or "Radio" definitions of Doppler velocity used in the data object. +datasetfieldtype.resolution.Redshift.description=The resolution in redshift (unitless) or Doppler velocity (km/s) in the data object. +datasetfieldtype.coverage.RedshiftValue.description=The value of the redshift (unitless) or Doppler velocity (km/s in the data object. +datasetfieldtype.coverage.Redshift.MinimumValue.description=The minimum value of the redshift (unitless) or Doppler velocity (km/s in the data object. +datasetfieldtype.coverage.Redshift.MaximumValue.description=The maximum value of the redshift (unitless) or Doppler velocity (km/s in the data object. +datasetfieldtype.astroType.watermark= +datasetfieldtype.astroFacility.watermark= +datasetfieldtype.astroInstrument.watermark= +datasetfieldtype.astroObject.watermark= +datasetfieldtype.resolution.Spatial.watermark= +datasetfieldtype.resolution.Spectral.watermark= +datasetfieldtype.resolution.Temporal.watermark= +datasetfieldtype.coverage.Spectral.Bandpass.watermark= +datasetfieldtype.coverage.Spectral.CentralWavelength.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Spectral.Wavelength.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Spectral.MinimumWavelength.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Spectral.MaximumWavelength.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Temporal.watermark= +datasetfieldtype.coverage.Temporal.StartTime.watermark=YYYY-MM-DD +datasetfieldtype.coverage.Temporal.StopTime.watermark=YYYY-MM-DD +datasetfieldtype.coverage.Spatial.watermark= +datasetfieldtype.coverage.Depth.watermark=Enter a floating-point number. +datasetfieldtype.coverage.ObjectDensity.watermark=Enter a floating-point number. +datasetfieldtype.coverage.ObjectCount.watermark=Enter an integer. +datasetfieldtype.coverage.SkyFraction.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Polarization.watermark= +datasetfieldtype.redshiftType.watermark= +datasetfieldtype.resolution.Redshift.watermark=Enter a floating-point number. +datasetfieldtype.coverage.RedshiftValue.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Redshift.MinimumValue.watermark=Enter a floating-point number. +datasetfieldtype.coverage.Redshift.MaximumValue.watermark=Enter a floating-point number. +controlledvocabulary.astroType.image=Image +controlledvocabulary.astroType.mosaic=Mosaic +controlledvocabulary.astroType.eventlist=EventList +controlledvocabulary.astroType.spectrum=Spectrum +controlledvocabulary.astroType.cube=Cube +controlledvocabulary.astroType.table=Table +controlledvocabulary.astroType.catalog=Catalog +controlledvocabulary.astroType.lightcurve=LightCurve +controlledvocabulary.astroType.simulation=Simulation +controlledvocabulary.astroType.figure=Figure +controlledvocabulary.astroType.artwork=Artwork +controlledvocabulary.astroType.animation=Animation +controlledvocabulary.astroType.prettypicture=PrettyPicture +controlledvocabulary.astroType.documentation=Documentation +controlledvocabulary.astroType.other=Other +controlledvocabulary.astroType.library=Library +controlledvocabulary.astroType.press_release=Press Release +controlledvocabulary.astroType.facsimile=Facsimile +controlledvocabulary.astroType.historical=Historical +controlledvocabulary.astroType.observation=Observation +controlledvocabulary.astroType.object=Object +controlledvocabulary.astroType.value=Value +controlledvocabulary.astroType.valuepair=ValuePair +controlledvocabulary.astroType.survey=Survey \ No newline at end of file diff --git a/src/main/java/astrophysics_fr.properties b/src/main/java/astrophysics_fr.properties new file mode 100644 index 00000000000..41b8cf121bf --- /dev/null +++ b/src/main/java/astrophysics_fr.properties @@ -0,0 +1,104 @@ +metadatablock.name=astrophysics +metadatablock.displayName=Métadonnées liées à l'astronomie et à l'astrophysique +datasetfieldtype.astroType.title=Type +datasetfieldtype.astroFacility.title=Installation +datasetfieldtype.astroInstrument.title=Instrument +datasetfieldtype.astroObject.title=Objet +datasetfieldtype.resolution.Spatial.title=Résolution spatiale +datasetfieldtype.resolution.Spectral.title=Résolution spectrale +datasetfieldtype.resolution.Temporal.title=Résolution temporelle +datasetfieldtype.coverage.Spectral.Bandpass.title=Largeur de bande +datasetfieldtype.coverage.Spectral.CentralWavelength.title=Longueur d'onde centrale (m) +datasetfieldtype.coverage.Spectral.Wavelength.title=Gamme de longueurs d'onde +datasetfieldtype.coverage.Spectral.MinimumWavelength.title=Minimum (m) +datasetfieldtype.coverage.Spectral.MaximumWavelength.title=Maximum (m) +datasetfieldtype.coverage.Temporal.title=Période de l'ensemble de données +datasetfieldtype.coverage.Temporal.StartTime.title=Début +datasetfieldtype.coverage.Temporal.StopTime.title=Fin +datasetfieldtype.coverage.Spatial.title=Partie du ciel couverte +datasetfieldtype.coverage.Depth.title=Étendue +datasetfieldtype.coverage.ObjectDensity.title=Densité de l'objet +datasetfieldtype.coverage.ObjectCount.title=Nombre d'objets +datasetfieldtype.coverage.SkyFraction.title=Fraction de ciel +datasetfieldtype.coverage.Polarization.title=Polarisation +datasetfieldtype.redshiftType.title=TypeDeDécalageVersLeRouge +datasetfieldtype.resolution.Redshift.title=Résolution du décalage vers le rouge +datasetfieldtype.coverage.RedshiftValue.title=Valeur du décalage vers le rouge +datasetfieldtype.coverage.Redshift.MinimumValue.title=Minimum +datasetfieldtype.coverage.Redshift.MaximumValue.title=Maximum +datasetfieldtype.astroType.description=La nature ou le genre du contenu des fichiers dans l'ensemble de données. +datasetfieldtype.astroFacility.description=L'observatoire ou l'installation où les données ont été obtenues. +datasetfieldtype.astroInstrument.description=L'instrument utilisé pour recueillir les données. +datasetfieldtype.astroObject.description=Les objets astronomiques représentés dans les données (Il faut donner, de préférence, des noms reconnaissables par SIMBAD.) +datasetfieldtype.resolution.Spatial.description=La résolution spatiale (angulaire) typique des observations, en degrés décimaux. +datasetfieldtype.resolution.Spectral.description=La résolution spectrale typique des observations, indiquée sous forme de ratio ?/??. +datasetfieldtype.resolution.Temporal.description=La résolution temporelle typique des observations, indiquée en secondes. +datasetfieldtype.coverage.Spectral.Bandpass.description=Nom courant de la largeur de bande +datasetfieldtype.coverage.Spectral.CentralWavelength.description=La longueur d'onde centrale de la largeur de bande spectrale, en mètres. +datasetfieldtype.coverage.Spectral.Wavelength.description=La longueur d'onde minimale et maximale de la largeur de bande spectrale. +datasetfieldtype.coverage.Spectral.MinimumWavelength.description=La longueur d'onde minimale de la largeur de bande spectrale, en mètres. +datasetfieldtype.coverage.Spectral.MaximumWavelength.description=La longueur d'onde maximale de la largeur de bande spectrale, en mètres. +datasetfieldtype.coverage.Temporal.description=Période visée par les données. +datasetfieldtype.coverage.Temporal.StartTime.description=Date de début de l'ensemble de données +datasetfieldtype.coverage.Temporal.StopTime.description=Date de fin de l'ensemble de données +datasetfieldtype.coverage.Spatial.description=Partie du ciel couverte par l'objet. +datasetfieldtype.coverage.Depth.description=L'étendue (typique) ou sensibilité de l'objet de données en Jy. +datasetfieldtype.coverage.ObjectDensity.description=La densité (typique) des objets, des entrées du catalogue, des visées du télescope, etc. dans le ciel, en chiffres par degré carré. +datasetfieldtype.coverage.ObjectCount.description=Le nombre total d'objets, d'entrées au catalogue, etc. dans l'objet de données. +datasetfieldtype.coverage.SkyFraction.description=La fraction de ciel représentée dans les observations, variant de 0 à 1. +datasetfieldtype.coverage.Polarization.description=La couverture de la polarisation +datasetfieldtype.redshiftType.description=La chaîne TypeDeDécalageVersLeRouge C «\u00A0décalage vers le rouge\u00A0» ou les définitions «\u00A0optiques\u00A0» ou «\u00A0radio\u00A0» de la vitesse Doppler utilisées dans l'objet de données. +datasetfieldtype.resolution.Redshift.description=La résolution en décalage vers le rouge (sans unité) ou la vitesse Doppler (km/s) dans l'objet de données. +datasetfieldtype.coverage.RedshiftValue.description=La valeur du décalage vers le rouge (sans unité) ou la vitesse Doppler (km/s dans l'objet de données). +datasetfieldtype.coverage.Redshift.MinimumValue.description=La valeur minimale du décalage vers le rouge (sans unité) ou la vitesse Doppler (km/s dans l'objet de données). +datasetfieldtype.coverage.Redshift.MaximumValue.description=La valeur maximale du décalage vers le rouge (sans unité) ou la vitesse Doppler (km/s dans l'objet de données). +datasetfieldtype.astroType.watermark= +datasetfieldtype.astroFacility.watermark= +datasetfieldtype.astroInstrument.watermark= +datasetfieldtype.astroObject.watermark= +datasetfieldtype.resolution.Spatial.watermark= +datasetfieldtype.resolution.Spectral.watermark= +datasetfieldtype.resolution.Temporal.watermark= +datasetfieldtype.coverage.Spectral.Bandpass.watermark= +datasetfieldtype.coverage.Spectral.CentralWavelength.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Spectral.Wavelength.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Spectral.MinimumWavelength.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Spectral.MaximumWavelength.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Temporal.watermark= +datasetfieldtype.coverage.Temporal.StartTime.watermark=AAAA-MM-JJ +datasetfieldtype.coverage.Temporal.StopTime.watermark=AAAA-MM-JJ +datasetfieldtype.coverage.Spatial.watermark= +datasetfieldtype.coverage.Depth.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.ObjectDensity.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.ObjectCount.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.SkyFraction.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Polarization.watermark= +datasetfieldtype.redshiftType.watermark= +datasetfieldtype.resolution.Redshift.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.RedshiftValue.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Redshift.MinimumValue.watermark=Entrer un nombre à virgule flottante. +datasetfieldtype.coverage.Redshift.MaximumValue.watermark=Entrer un nombre à virgule flottante. +controlledvocabulary.astroType.image=Image +controlledvocabulary.astroType.mosaic=Mosaïque +controlledvocabulary.astroType.eventlist=Liste d'événements +controlledvocabulary.astroType.spectrum=Spectre +controlledvocabulary.astroType.cube=Cube +controlledvocabulary.astroType.table=Tableau +controlledvocabulary.astroType.catalog=Catalogue +controlledvocabulary.astroType.lightcurve=Courbe de lumière +controlledvocabulary.astroType.simulation=Simulation +controlledvocabulary.astroType.figure=Figure +controlledvocabulary.astroType.artwork=Illustration +controlledvocabulary.astroType.animation=Animation +controlledvocabulary.astroType.prettypicture=Image décorative +controlledvocabulary.astroType.documentation=Documentation +controlledvocabulary.astroType.other=Autre +controlledvocabulary.astroType.library=Bibliothèque +controlledvocabulary.astroType.press_release=Communiqué +controlledvocabulary.astroType.facsimile=Télécopie +controlledvocabulary.astroType.historical=Historique +controlledvocabulary.astroType.observation=Observation +controlledvocabulary.astroType.object=Objet +controlledvocabulary.astroType.value=Valeur +controlledvocabulary.astroType.valuepair=Couple de valeur +controlledvocabulary.astroType.survey=Enquête \ No newline at end of file diff --git a/src/main/java/biomedical.properties b/src/main/java/biomedical.properties new file mode 100644 index 00000000000..c3fd3f81bc7 --- /dev/null +++ b/src/main/java/biomedical.properties @@ -0,0 +1,311 @@ +metadatablock.name=biomedical +metadatablock.displayName=Life Sciences Metadata +datasetfieldtype.studyDesignType.title=Design Type +datasetfieldtype.studyFactorType.title=Factor Type +datasetfieldtype.studyAssayOrganism.title=Organism +datasetfieldtype.studyAssayOtherOrganism.title=Other Organism +datasetfieldtype.studyAssayMeasurementType.title=Measurement Type +datasetfieldtype.studyAssayOtherMeasurmentType.title=Other Measurement Type +datasetfieldtype.studyAssayTechnologyType.title=Technology Type +datasetfieldtype.studyAssayPlatform.title=Technology Platform +datasetfieldtype.studyAssayCellType.title=Cell Type +datasetfieldtype.studyDesignType.description=Design types that are based on the overall experimental design. +datasetfieldtype.studyFactorType.description=Factors used in the Dataset. +datasetfieldtype.studyAssayOrganism.description=The taxonomic name of the organism used in the Dataset or from which the starting biological material derives. +datasetfieldtype.studyAssayOtherOrganism.description=If Other was selected in Organism, list any other organisms that were used in this Dataset. Terms from the NCBI Taxonomy are recommended. +datasetfieldtype.studyAssayMeasurementType.description=A term to qualify the endpoint, or what is being measured (e.g. gene expression profiling; protein identification). +datasetfieldtype.studyAssayOtherMeasurmentType.description=If Other was selected in Measurement Type, list any other measurement types that were used. Terms from NCBO Bioportal are recommended. +datasetfieldtype.studyAssayTechnologyType.description=A term to identify the technology used to perform the measurement (e.g. DNA microarray; mass spectrometry). +datasetfieldtype.studyAssayPlatform.description=The manufacturer and name of the technology platform used in the assay (e.g. Bruker AVANCE). +datasetfieldtype.studyAssayCellType.description=The name of the cell line from which the source or sample derives. +datasetfieldtype.studyDesignType.watermark= +datasetfieldtype.studyFactorType.watermark= +datasetfieldtype.studyAssayOrganism.watermark= +datasetfieldtype.studyAssayOtherOrganism.watermark= +datasetfieldtype.studyAssayMeasurementType.watermark= +datasetfieldtype.studyAssayOtherMeasurmentType.watermark= +datasetfieldtype.studyAssayTechnologyType.watermark= +datasetfieldtype.studyAssayPlatform.watermark= +datasetfieldtype.studyAssayCellType.watermark= +controlledvocabulary.studyDesignType.case_control=Case Control +controlledvocabulary.studyDesignType.cross_sectional=Cross Sectional +controlledvocabulary.studyDesignType.cohort_study=Cohort Study +controlledvocabulary.studyDesignType.nested_case_control_design=Nested Case Control Design +controlledvocabulary.studyDesignType.not_specified=Not Specified +controlledvocabulary.studyDesignType.parallel_group_design=Parallel Group Design +controlledvocabulary.studyDesignType.perturbation_design=Perturbation Design +controlledvocabulary.studyDesignType.randomized_controlled_trial=Randomized Controlled Trial +controlledvocabulary.studyDesignType.technological_design=Technological Design +controlledvocabulary.studyFactorType.age=Age +controlledvocabulary.studyFactorType.biomarkers=Biomarkers +controlledvocabulary.studyFactorType.cell_surface_markers=Cell Surface Markers +controlledvocabulary.studyFactorType.cell_type/cell_line=Cell Type/Cell Line +controlledvocabulary.studyFactorType.developmental_stage=Developmental Stage +controlledvocabulary.studyFactorType.disease_state=Disease State +controlledvocabulary.studyFactorType.drug_susceptibility=Drug Susceptibility +controlledvocabulary.studyFactorType.extract_molecule=Extract Molecule +controlledvocabulary.studyFactorType.genetic_characteristics=Genetic Characteristics +controlledvocabulary.studyFactorType.immunoprecipitation_antibody=Immunoprecipitation Antibody +controlledvocabulary.studyFactorType.organism=Organism +controlledvocabulary.studyFactorType.other=Other +controlledvocabulary.studyFactorType.passages=Passages +controlledvocabulary.studyFactorType.platform=Platform +controlledvocabulary.studyFactorType.sex=Sex +controlledvocabulary.studyFactorType.strain=Strain +controlledvocabulary.studyFactorType.time_point=Time Point +controlledvocabulary.studyFactorType.tissue_type=Tissue Type +controlledvocabulary.studyFactorType.treatment_compound=Treatment Compound +controlledvocabulary.studyFactorType.treatment_type=Treatment Type +controlledvocabulary.studyAssayMeasurementType.cell_counting=cell counting +controlledvocabulary.studyAssayMeasurementType.cell_sorting=cell sorting +controlledvocabulary.studyAssayMeasurementType.clinical_chemistry_analysis=clinical chemistry analysis +controlledvocabulary.studyAssayMeasurementType.copy_number_variation_profiling=copy number variation profiling +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling=DNA methylation profiling +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling_(bisulfite-seq)=DNA methylation profiling (Bisulfite-Seq) +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling_(medip-seq)=DNA methylation profiling (MeDIP-Seq) +controlledvocabulary.studyAssayMeasurementType.drug_susceptibility=drug susceptibility +controlledvocabulary.studyAssayMeasurementType.environmental_gene_survey=environmental gene survey +controlledvocabulary.studyAssayMeasurementType.genome_sequencing=genome sequencing +controlledvocabulary.studyAssayMeasurementType.hematology=hematology +controlledvocabulary.studyAssayMeasurementType.histology=histology +controlledvocabulary.studyAssayMeasurementType.histone_modification_(chip-seq)=Histone Modification (ChIP-Seq) +controlledvocabulary.studyAssayMeasurementType.loss_of_heterozygosity_profiling=loss of heterozygosity profiling +controlledvocabulary.studyAssayMeasurementType.metabolite_profiling=metabolite profiling +controlledvocabulary.studyAssayMeasurementType.metagenome_sequencing=metagenome sequencing +controlledvocabulary.studyAssayMeasurementType.protein_expression_profiling=protein expression profiling +controlledvocabulary.studyAssayMeasurementType.protein_identification=protein identification +controlledvocabulary.studyAssayMeasurementType.protein-dna_binding_site_identification=protein-DNA binding site identification +controlledvocabulary.studyAssayMeasurementType.protein-protein_interaction_detection=protein-protein interaction detection +controlledvocabulary.studyAssayMeasurementType.protein-rna_binding_(rip-seq)=protein-RNA binding (RIP-Seq) +controlledvocabulary.studyAssayMeasurementType.snp_analysis=SNP analysis +controlledvocabulary.studyAssayMeasurementType.targeted_sequencing=targeted sequencing +controlledvocabulary.studyAssayMeasurementType.transcription_factor_binding_(chip-seq)=transcription factor binding (ChIP-Seq) +controlledvocabulary.studyAssayMeasurementType.transcription_factor_binding_site_identification=transcription factor binding site identification +controlledvocabulary.studyAssayMeasurementType.transcription_profiling=transcription profiling +controlledvocabulary.studyAssayMeasurementType.transcription_profiling=transcription profiling +controlledvocabulary.studyAssayMeasurementType.transcription_profiling_(microarray)=transcription profiling (Microarray) +controlledvocabulary.studyAssayMeasurementType.transcription_profiling_(rna-seq)=transcription profiling (RNA-Seq) +controlledvocabulary.studyAssayMeasurementType.trap_translational_profiling=TRAP translational profiling +controlledvocabulary.studyAssayMeasurementType.other=Other +controlledvocabulary.studyAssayOrganism.arabidopsis_thaliana=Arabidopsis thaliana +controlledvocabulary.studyAssayOrganism.bos_taurus=Bos taurus +controlledvocabulary.studyAssayOrganism.caenorhabditis_elegans=Caenorhabditis elegans +controlledvocabulary.studyAssayOrganism.chlamydomonas_reinhardtii=Chlamydomonas reinhardtii +controlledvocabulary.studyAssayOrganism.danio_rerio_(zebrafish)=Danio rerio (zebrafish) +controlledvocabulary.studyAssayOrganism.dictyostelium_discoideum=Dictyostelium discoideum +controlledvocabulary.studyAssayOrganism.drosophila_melanogaster=Drosophila melanogaster +controlledvocabulary.studyAssayOrganism.escherichia_coli=Escherichia coli +controlledvocabulary.studyAssayOrganism.hepatitis_c_virus=Hepatitis C virus +controlledvocabulary.studyAssayOrganism.homo_sapiens=Homo sapiens +controlledvocabulary.studyAssayOrganism.mus_musculus=Mus musculus +controlledvocabulary.studyAssayOrganism.mycobacterium_africanum=Mycobacterium africanum +controlledvocabulary.studyAssayOrganism.mycobacterium_canetti=Mycobacterium canetti +controlledvocabulary.studyAssayOrganism.mycobacterium_tuberculosis=Mycobacterium tuberculosis +controlledvocabulary.studyAssayOrganism.mycoplasma_pneumoniae=Mycoplasma pneumoniae +controlledvocabulary.studyAssayOrganism.oryza_sativa=Oryza sativa +controlledvocabulary.studyAssayOrganism.plasmodium_falciparum=Plasmodium falciparum +controlledvocabulary.studyAssayOrganism.pneumocystis_carinii=Pneumocystis carinii +controlledvocabulary.studyAssayOrganism.rattus_norvegicus=Rattus norvegicus +controlledvocabulary.studyAssayOrganism.saccharomyces_cerevisiae_(brewer's_yeast)=Saccharomyces cerevisiae (brewer's yeast) +controlledvocabulary.studyAssayOrganism.schizosaccharomyces_pombe=Schizosaccharomyces pombe +controlledvocabulary.studyAssayOrganism.takifugu_rubripes=Takifugu rubripes +controlledvocabulary.studyAssayOrganism.xenopus_laevis=Xenopus laevis +controlledvocabulary.studyAssayOrganism.zea_mays=Zea mays +controlledvocabulary.studyAssayOrganism.other=Other +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_single_concentration=culture based drug susceptibility testing, single concentration +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_two_concentrations=culture based drug susceptibility testing, two concentrations +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_three_or_more_concentrations_(minimium_inhibitory_concentration_measurement)=culture based drug susceptibility testing, three or more concentrations (minimium inhibitory concentration measurement) +controlledvocabulary.studyAssayTechnologyType.dna_microarray=DNA microarray +controlledvocabulary.studyAssayTechnologyType.flow_cytometry=flow cytometry +controlledvocabulary.studyAssayTechnologyType.gel_electrophoresis=gel electrophoresis +controlledvocabulary.studyAssayTechnologyType.mass_spectrometry=mass spectrometry +controlledvocabulary.studyAssayTechnologyType.nmr_spectroscopy=NMR spectroscopy +controlledvocabulary.studyAssayTechnologyType.nucleotide_sequencing=nucleotide sequencing +controlledvocabulary.studyAssayTechnologyType.protein_microarray=protein microarray +controlledvocabulary.studyAssayTechnologyType.real_time_pcr=real time PCR +controlledvocabulary.studyAssayTechnologyType.no_technology_required=no technology required +controlledvocabulary.studyAssayTechnologyType.other=Other +controlledvocabulary.studyAssayPlatform.210-ms_gc_ion_trap_(varian)=210-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.220-ms_gc_ion_trap_(varian)=220-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.225-ms_gc_ion_trap_(varian)=225-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.240-ms_gc_ion_trap_(varian)=240-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.300-ms_quadrupole_gc/ms_(varian)=300-MS quadrupole GC/MS (Varian) +controlledvocabulary.studyAssayPlatform.320-ms_lc/ms_(varian)=320-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.325-ms_lc/ms_(varian)=325-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.320-ms_gc/ms_(varian)=320-MS GC/MS (Varian) +controlledvocabulary.studyAssayPlatform.500-ms_lc/ms_(varian)=500-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.800d_(jeol)=800D (Jeol) +controlledvocabulary.studyAssayPlatform.910-ms_tq-ft_(varian)=910-MS TQ-FT (Varian) +controlledvocabulary.studyAssayPlatform.920-ms_tq-ft_(varian)=920-MS TQ-FT (Varian) +controlledvocabulary.studyAssayPlatform.3100_mass_detector_(waters)=3100 Mass Detector (Waters) +controlledvocabulary.studyAssayPlatform.6110_quadrupole_lc/ms_(agilent)=6110 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6120_quadrupole_lc/ms_(agilent)=6120 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6130_quadrupole_lc/ms_(agilent)=6130 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6140_quadrupole_lc/ms_(agilent)=6140 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6310_ion_trap_lc/ms_(agilent)=6310 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6320_ion_trap_lc/ms_(agilent)=6320 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6330_ion_trap_lc/ms_(agilent)=6330 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6340_ion_trap_lc/ms_(agilent)=6340 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6410_triple_quadrupole_lc/ms_(agilent)=6410 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6430_triple_quadrupole_lc/ms_(agilent)=6430 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6460_triple_quadrupole_lc/ms_(agilent)=6460 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6490_triple_quadrupole_lc/ms_(agilent)=6490 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6530_q-tof_lc/ms_(agilent)=6530 Q-TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6540_q-tof_lc/ms_(agilent)=6540 Q-TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6210_tof_lc/ms_(agilent)=6210 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6220_tof_lc/ms_(agilent)=6220 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6230_tof_lc/ms_(agilent)=6230 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.7000b_triple_quadrupole_gc/ms_(agilent)=7000B Triple Quadrupole GC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.accuto_dart_(jeol)=AccuTO DART (Jeol) +controlledvocabulary.studyAssayPlatform.accutof_gc_(jeol)=AccuTOF GC (Jeol) +controlledvocabulary.studyAssayPlatform.accutof_lc_(jeol)=AccuTOF LC (Jeol) +controlledvocabulary.studyAssayPlatform.acquity_sqd_(waters)=ACQUITY SQD (Waters) +controlledvocabulary.studyAssayPlatform.acquity_tqd_(waters)=ACQUITY TQD (Waters) +controlledvocabulary.studyAssayPlatform.agilent=Agilent +controlledvocabulary.studyAssayPlatform.agilent_5975e_gc/msd_(agilent)=Agilent 5975E GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.agilent_5975t_ltm_gc/msd_(agilent)=Agilent 5975T LTM GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.5975c_series_gc/msd_(agilent)=5975C Series GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.affymetrix=Affymetrix +controlledvocabulary.studyAssayPlatform.amazon_etd_esi_ion_trap_(bruker)=amaZon ETD ESI Ion Trap (Bruker) +controlledvocabulary.studyAssayPlatform.amazon_x_esi_ion_trap_(bruker)=amaZon X ESI Ion Trap (Bruker) +controlledvocabulary.studyAssayPlatform.apex-ultra_hybrid_qq-ftms_(bruker)=apex-ultra hybrid Qq-FTMS (Bruker) +controlledvocabulary.studyAssayPlatform.api_2000_(ab_sciex)=API 2000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_3200_(ab_sciex)=API 3200 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_3200_qtrap_(ab_sciex)=API 3200 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_4000_(ab_sciex)=API 4000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_4000_qtrap_(ab_sciex)=API 4000 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5000_(ab_sciex)=API 5000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5500_(ab_sciex)=API 5500 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5500_qtrap_(ab_sciex)=API 5500 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.applied_biosystems_group_(abi)=Applied Biosystems Group (ABI) +controlledvocabulary.studyAssayPlatform.aqi_biosciences=AQI Biosciences +controlledvocabulary.studyAssayPlatform.atmospheric_pressure_gc_(waters)=Atmospheric Pressure GC (Waters) +controlledvocabulary.studyAssayPlatform.autoflex_iii_maldi-tof_ms_(bruker)=autoflex III MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.autoflex_speed(bruker)=autoflex speed(Bruker) +controlledvocabulary.studyAssayPlatform.autospec_premier_(waters)=AutoSpec Premier (Waters) +controlledvocabulary.studyAssayPlatform.axima_mega_tof_(shimadzu)=AXIMA Mega TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.axima_performance_maldi_tof/tof_(shimadzu)=AXIMA Performance MALDI TOF/TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.a-10_analyzer_(apogee)=A-10 Analyzer (Apogee) +controlledvocabulary.studyAssayPlatform.a-40-minifcm_(apogee)=A-40-MiniFCM (Apogee) +controlledvocabulary.studyAssayPlatform.bactiflow_(chemunex_sa)=Bactiflow (Chemunex SA) +controlledvocabulary.studyAssayPlatform.base4innovation=Base4innovation +controlledvocabulary.studyAssayPlatform.bd_bactec_mgit_320=BD BACTEC MGIT 320 +controlledvocabulary.studyAssayPlatform.bd_bactec_mgit_960=BD BACTEC MGIT 960 +controlledvocabulary.studyAssayPlatform.bd_radiometric_bactec_460tb=BD Radiometric BACTEC 460TB +controlledvocabulary.studyAssayPlatform.bionanomatrix=BioNanomatrix +controlledvocabulary.studyAssayPlatform.cell_lab_quanta_sc_(becman_coulter)=Cell Lab Quanta SC (Becman Coulter) +controlledvocabulary.studyAssayPlatform.clarus_560_d_gc/ms_(perkinelmer)=Clarus 560 D GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.clarus_560_s_gc/ms_(perkinelmer)=Clarus 560 S GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.clarus_600_gc/ms_(perkinelmer)=Clarus 600 GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.complete_genomics=Complete Genomics +controlledvocabulary.studyAssayPlatform.cyan_(dako_cytomation)=Cyan (Dako Cytomation) +controlledvocabulary.studyAssayPlatform.cyflow_ml_(partec)=CyFlow ML (Partec) +controlledvocabulary.studyAssayPlatform.cyow_sl_(partec)=Cyow SL (Partec) +controlledvocabulary.studyAssayPlatform.cyflow_sl3_(partec)=CyFlow SL3 (Partec) +controlledvocabulary.studyAssayPlatform.cytobuoy_(cyto_buoy_inc)=CytoBuoy (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.cytosence_(cyto_buoy_inc)=CytoSence (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.cytosub_(cyto_buoy_inc)=CytoSub (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.danaher=Danaher +controlledvocabulary.studyAssayPlatform.dfs_(thermo_scientific)=DFS (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.exactive(thermo_scientific)=Exactive(Thermo Scientific) +controlledvocabulary.studyAssayPlatform.facs_canto_(becton_dickinson)=FACS Canto (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.facs_canto2_(becton_dickinson)=FACS Canto2 (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.facs_scan_(becton_dickinson)=FACS Scan (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.fc_500_(becman_coulter)=FC 500 (Becman Coulter) +controlledvocabulary.studyAssayPlatform.gcmate_ii_gc/ms_(jeol)=GCmate II GC/MS (Jeol) +controlledvocabulary.studyAssayPlatform.gcms-qp2010_plus_(shimadzu)=GCMS-QP2010 Plus (Shimadzu) +controlledvocabulary.studyAssayPlatform.gcms-qp2010s_plus_(shimadzu)=GCMS-QP2010S Plus (Shimadzu) +controlledvocabulary.studyAssayPlatform.gct_premier_(waters)=GCT Premier (Waters) +controlledvocabulary.studyAssayPlatform.geneq=GENEQ +controlledvocabulary.studyAssayPlatform.genome_corp.=Genome Corp. +controlledvocabulary.studyAssayPlatform.genovoxx=GenoVoxx +controlledvocabulary.studyAssayPlatform.gnubio=GnuBio +controlledvocabulary.studyAssayPlatform.guava_easycyte_mini_(millipore)=Guava EasyCyte Mini (Millipore) +controlledvocabulary.studyAssayPlatform.guava_easycyte_plus_(millipore)=Guava EasyCyte Plus (Millipore) +controlledvocabulary.studyAssayPlatform.guava_personal_cell_analysis_(millipore)=Guava Personal Cell Analysis (Millipore) +controlledvocabulary.studyAssayPlatform.guava_personal_cell_analysis-96_(millipore)=Guava Personal Cell Analysis-96 (Millipore) +controlledvocabulary.studyAssayPlatform.helicos_biosciences=Helicos BioSciences +controlledvocabulary.studyAssayPlatform.illumina=Illumina +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_lj_medium=Indirect proportion method on LJ medium +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h9=Indirect proportion method on Middlebrook Agar 7H9 +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h10=Indirect proportion method on Middlebrook Agar 7H10 +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h11=Indirect proportion method on Middlebrook Agar 7H11 +controlledvocabulary.studyAssayPlatform.influx_analyzer_(cytopeia)=inFlux Analyzer (Cytopeia) +controlledvocabulary.studyAssayPlatform.intelligent_bio-systems=Intelligent Bio-Systems +controlledvocabulary.studyAssayPlatform.itq_700_(thermo_scientific)=ITQ 700 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.itq_900_(thermo_scientific)=ITQ 900 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.itq_1100_(thermo_scientific)=ITQ 1100 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.jms-53000_spiraltof_(jeol)=JMS-53000 SpiralTOF (Jeol) +controlledvocabulary.studyAssayPlatform.lasergen=LaserGen +controlledvocabulary.studyAssayPlatform.lcms-2020_(shimadzu)=LCMS-2020 (Shimadzu) +controlledvocabulary.studyAssayPlatform.lcms-2010ev_(shimadzu)=LCMS-2010EV (Shimadzu) +controlledvocabulary.studyAssayPlatform.lcms-it-tof_(shimadzu)=LCMS-IT-TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.li-cor=Li-Cor +controlledvocabulary.studyAssayPlatform.life_tech=Life Tech +controlledvocabulary.studyAssayPlatform.lightspeed_genomics=LightSpeed Genomics +controlledvocabulary.studyAssayPlatform.lct_premier_xe_(waters)=LCT Premier XE (Waters) +controlledvocabulary.studyAssayPlatform.lcq_deca_xp_max_(thermo_scientific)=LCQ Deca XP MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.lcq_fleet_(thermo_scientific)=LCQ Fleet (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.lxq_(thermo_scientific)=LXQ (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_classic_(thermo_scientific)=LTQ Classic (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_xl_(thermo_scientific)=LTQ XL (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_velos_(thermo_scientific)=LTQ Velos (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_classic_(thermo_scientific)=LTQ Orbitrap Classic (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_xl_(thermo_scientific)=LTQ Orbitrap XL (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_discovery_(thermo_scientific)=LTQ Orbitrap Discovery (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_velos_(thermo_scientific)=LTQ Orbitrap Velos (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.luminex_100_(luminex)=Luminex 100 (Luminex) +controlledvocabulary.studyAssayPlatform.luminex_200_(luminex)=Luminex 200 (Luminex) +controlledvocabulary.studyAssayPlatform.macs_quant_(miltenyi)=MACS Quant (Miltenyi) +controlledvocabulary.studyAssayPlatform.maldi_synapt_g2_hdms_(waters)=MALDI SYNAPT G2 HDMS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_g2_ms_(waters)=MALDI SYNAPT G2 MS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_hdms_(waters)=MALDI SYNAPT HDMS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_ms_(waters)=MALDI SYNAPT MS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_micro_mx_(waters)=MALDI micro MX (Waters) +controlledvocabulary.studyAssayPlatform.maxis_(bruker)=maXis (Bruker) +controlledvocabulary.studyAssayPlatform.maxis_g4_(bruker)=maXis G4 (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_lt_maldi-tof_ms_(bruker)=microflex LT MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_lrf_maldi-tof_ms_(bruker)=microflex LRF MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_iii_maldi-tof_ms_(bruker)=microflex III MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microtof_ii_esi_tof_(bruker)=micrOTOF II ESI TOF (Bruker) +controlledvocabulary.studyAssayPlatform.microtof-q_ii_esi-qq-tof_(bruker)=micrOTOF-Q II ESI-Qq-TOF (Bruker) +controlledvocabulary.studyAssayPlatform.microplate_alamar_blue_(resazurin)_colorimetric_method=microplate Alamar Blue (resazurin) colorimetric method +controlledvocabulary.studyAssayPlatform.mstation_(jeol)=Mstation (Jeol) +controlledvocabulary.studyAssayPlatform.msq_plus_(thermo_scientific)=MSQ Plus (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.nabsys=NABsys +controlledvocabulary.studyAssayPlatform.nanophotonics_biosciences=Nanophotonics Biosciences +controlledvocabulary.studyAssayPlatform.network_biosystems=Network Biosystems +controlledvocabulary.studyAssayPlatform.nimblegen=Nimblegen +controlledvocabulary.studyAssayPlatform.oxford_nanopore_technologies=Oxford Nanopore Technologies +controlledvocabulary.studyAssayPlatform.pacific_biosciences=Pacific Biosciences +controlledvocabulary.studyAssayPlatform.population_genetics_technologies=Population Genetics Technologies +controlledvocabulary.studyAssayPlatform.q1000gc_ultraquad_(jeol)=Q1000GC UltraQuad (Jeol) +controlledvocabulary.studyAssayPlatform.quattro_micro_api_(waters)=Quattro micro API (Waters) +controlledvocabulary.studyAssayPlatform.quattro_micro_gc_(waters)=Quattro micro GC (Waters) +controlledvocabulary.studyAssayPlatform.quattro_premier_xe_(waters)=Quattro Premier XE (Waters) +controlledvocabulary.studyAssayPlatform.qstar_(ab_sciex)=QSTAR (AB Sciex) +controlledvocabulary.studyAssayPlatform.reveo=Reveo +controlledvocabulary.studyAssayPlatform.roche=Roche +controlledvocabulary.studyAssayPlatform.seirad=Seirad +controlledvocabulary.studyAssayPlatform.solarix_hybrid_qq-ftms_(bruker)=solariX hybrid Qq-FTMS (Bruker) +controlledvocabulary.studyAssayPlatform.somacount_(bently_instruments)=Somacount (Bently Instruments) +controlledvocabulary.studyAssayPlatform.somascope_(bently_instruments)=SomaScope (Bently Instruments) +controlledvocabulary.studyAssayPlatform.synapt_g2_hdms_(waters)=SYNAPT G2 HDMS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_g2_ms_(waters)=SYNAPT G2 MS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_hdms_(waters)=SYNAPT HDMS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_ms_(waters)=SYNAPT MS (Waters) +controlledvocabulary.studyAssayPlatform.tripletof_5600_(ab_sciex)=TripleTOF 5600 (AB Sciex) +controlledvocabulary.studyAssayPlatform.tsq_quantum_ultra_(thermo_scientific)=TSQ Quantum Ultra (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_access_(thermo_scientific)=TSQ Quantum Access (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_access_max_(thermo_scientific)=TSQ Quantum Access MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_discovery_max_(thermo_scientific)=TSQ Quantum Discovery MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_gc_(thermo_scientific)=TSQ Quantum GC (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_xls_(thermo_scientific)=TSQ Quantum XLS (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_vantage_(thermo_scientific)=TSQ Vantage (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ultraflextreme_maldi-tof_ms_(bruker)=ultrafleXtreme MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.visigen_biotechnologies=VisiGen Biotechnologies +controlledvocabulary.studyAssayPlatform.xevo_g2_qtof_(waters)=Xevo G2 QTOF (Waters) +controlledvocabulary.studyAssayPlatform.xevo_qtof_ms_(waters)=Xevo QTof MS (Waters) +controlledvocabulary.studyAssayPlatform.xevo_tq_ms_(waters)=Xevo TQ MS (Waters) +controlledvocabulary.studyAssayPlatform.xevo_tq-s_(waters)=Xevo TQ-S (Waters) +controlledvocabulary.studyAssayPlatform.other=Other \ No newline at end of file diff --git a/src/main/java/biomedical_fr.properties b/src/main/java/biomedical_fr.properties new file mode 100644 index 00000000000..0d41f937f0a --- /dev/null +++ b/src/main/java/biomedical_fr.properties @@ -0,0 +1,311 @@ +metadatablock.name=biomedical +metadatablock.displayName=Métadonnées liées aux sciences de la vie +datasetfieldtype.studyDesignType.title=Type de modèle +datasetfieldtype.studyFactorType.title=Type de facteur +datasetfieldtype.studyAssayOrganism.title=Organisme +datasetfieldtype.studyAssayOtherOrganism.title=Autre organisme +datasetfieldtype.studyAssayMeasurementType.title=Type de mesure +datasetfieldtype.studyAssayOtherMeasurmentType.title=Autre type de mesure +datasetfieldtype.studyAssayTechnologyType.title=Type de technologie +datasetfieldtype.studyAssayPlatform.title=Plateforme technologique +datasetfieldtype.studyAssayCellType.title=Type de cellule +datasetfieldtype.studyDesignType.description=Types de modèle fondés sur le modèle expérimental général. +datasetfieldtype.studyFactorType.description=Facteurs utilisés dans l'ensemble de données. +datasetfieldtype.studyAssayOrganism.description=Le nom taxonomique de l'organisme utilisé dans l'ensemble de données ou duquel le matériel biologique de départ provient. +datasetfieldtype.studyAssayOtherOrganism.description=Si «\u00A0Autre\u00A0»  est sélectionné dans «\u00A0Organisme\u00A0», lister ici tout autre organisme utilisé dans cet ensemble de données. L'utilisation des termes provenant de la taxonomie NCBI est recommandée. +datasetfieldtype.studyAssayMeasurementType.description=Un terme pour définir le résultat final ou ce qui est mesuré (p. ex. le profilage de l'expression génétique, l'identification des protéines). +datasetfieldtype.studyAssayOtherMeasurmentType.description=Si «\u00A0Autre\u00A0» est sélectionné dans «\u00A0Type de mesure\u00A0», il faut indiquer tous les autres types de mesure utilisés. On recommande d'utiliser les termes du BioPortal NCBO. +datasetfieldtype.studyAssayTechnologyType.description=Un terme pour indiquer la technologie utilisée pour procéder à la mesure (p. ex. microréseau à ADN, spectrométrie de masse). +datasetfieldtype.studyAssayPlatform.description=Le fabricant et le nom de la plateforme technologique utilisée dans l'essai (p. ex. AVANCE de Bruker). +datasetfieldtype.studyAssayCellType.description=Nom de la lignée cellulaire de laquelle provient la source ou l'échantillon. +datasetfieldtype.studyDesignType.watermark= +datasetfieldtype.studyFactorType.watermark= +datasetfieldtype.studyAssayOrganism.watermark= +datasetfieldtype.studyAssayOtherOrganism.watermark= +datasetfieldtype.studyAssayMeasurementType.watermark= +datasetfieldtype.studyAssayOtherMeasurmentType.watermark= +datasetfieldtype.studyAssayTechnologyType.watermark= +datasetfieldtype.studyAssayPlatform.watermark= +datasetfieldtype.studyAssayCellType.watermark= +controlledvocabulary.studyDesignType.case_control=Cas-témoin +controlledvocabulary.studyDesignType.cross_sectional=En coupe +controlledvocabulary.studyDesignType.cohort_study=Étude de cohorte +controlledvocabulary.studyDesignType.nested_case_control_design=Modèle d'étude cas-témoins imbriquée +controlledvocabulary.studyDesignType.not_specified=Non précisé +controlledvocabulary.studyDesignType.parallel_group_design=Modèle à groupes parallèles +controlledvocabulary.studyDesignType.perturbation_design=Modèle des perturbations +controlledvocabulary.studyDesignType.randomized_controlled_trial=Essai randomisé contrôlé +controlledvocabulary.studyDesignType.technological_design=Modèle technologique +controlledvocabulary.studyFactorType.age=Âge +controlledvocabulary.studyFactorType.biomarkers=Marqueurs biologiques +controlledvocabulary.studyFactorType.cell_surface_markers=Marqueurs de surface +controlledvocabulary.studyFactorType.cell_type/cell_line=Type de cellule/lignée cellulaire +controlledvocabulary.studyFactorType.developmental_stage=Stade de développement +controlledvocabulary.studyFactorType.disease_state=État de la maladie +controlledvocabulary.studyFactorType.drug_susceptibility=Sensibilité aux médicaments +controlledvocabulary.studyFactorType.extract_molecule=Extraire la molécule +controlledvocabulary.studyFactorType.genetic_characteristics=Caractéristiques génétiques +controlledvocabulary.studyFactorType.immunoprecipitation_antibody=Anticorps d'immunoprécipitation +controlledvocabulary.studyFactorType.organism=Organisme +controlledvocabulary.studyFactorType.other=Autre +controlledvocabulary.studyFactorType.passages=Passages +controlledvocabulary.studyFactorType.platform=Plateforme +controlledvocabulary.studyFactorType.sex=Sexe +controlledvocabulary.studyFactorType.strain=Souche +controlledvocabulary.studyFactorType.time_point=Point dans le temps +controlledvocabulary.studyFactorType.tissue_type=Type de tissu +controlledvocabulary.studyFactorType.treatment_compound=Composé pour le traitement +controlledvocabulary.studyFactorType.treatment_type=Type de traitement +controlledvocabulary.studyAssayMeasurementType.cell_counting=Dénombrement cellulaire +controlledvocabulary.studyAssayMeasurementType.cell_sorting=Tri cellulaire +controlledvocabulary.studyAssayMeasurementType.clinical_chemistry_analysis=Analyse de la chimie clinique +controlledvocabulary.studyAssayMeasurementType.copy_number_variation_profiling=Profilage de la variation du nombre de copies +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling=Profilage de la méthylation de l'ADN +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling_(bisulfite-seq)=Profilage de la méthylation de l'ADN (séquençage du bisulfite) +controlledvocabulary.studyAssayMeasurementType.dna_methylation_profiling_(medip-seq)=Profilage de la méthylation de l'ADN (séquençage MeDIP) +controlledvocabulary.studyAssayMeasurementType.drug_susceptibility=drug susceptibility +controlledvocabulary.studyAssayMeasurementType.environmental_gene_survey=Enquête génomique environnementale +controlledvocabulary.studyAssayMeasurementType.genome_sequencing=Séquençage génomique +controlledvocabulary.studyAssayMeasurementType.hematology=Hématologie +controlledvocabulary.studyAssayMeasurementType.histology=Histologie +controlledvocabulary.studyAssayMeasurementType.histone_modification_(chip-seq)=Modification des histones (séquençage ChIP) +controlledvocabulary.studyAssayMeasurementType.loss_of_heterozygosity_profiling=Profilage de la perte d'hétérozygotie +controlledvocabulary.studyAssayMeasurementType.metabolite_profiling=Profilage des métabolites +controlledvocabulary.studyAssayMeasurementType.metagenome_sequencing=Séquençage des métagénomes +controlledvocabulary.studyAssayMeasurementType.protein_expression_profiling=Profilage de l'expression des protéines +controlledvocabulary.studyAssayMeasurementType.protein_identification=Identification des protéines +controlledvocabulary.studyAssayMeasurementType.protein-dna_binding_site_identification=Identification du site de fixation de la protéine-ADN +controlledvocabulary.studyAssayMeasurementType.protein-protein_interaction_detection=Détection de l'interaction protéine-protéine +controlledvocabulary.studyAssayMeasurementType.protein-rna_binding_(rip-seq)=Fixation de la protéine-ARN (séquençage RIP) +controlledvocabulary.studyAssayMeasurementType.snp_analysis=Analyse SNP +controlledvocabulary.studyAssayMeasurementType.targeted_sequencing=targeted sequencing +controlledvocabulary.studyAssayMeasurementType.transcription_factor_binding_(chip-seq)=Fixation du facteur de transcription (séquençage ChIP) +controlledvocabulary.studyAssayMeasurementType.transcription_factor_binding_site_identification=Identification du site de fixation du facteur de transcription +controlledvocabulary.studyAssayMeasurementType.transcription_profiling=Profilage transcriptionnel +controlledvocabulary.studyAssayMeasurementType.transcription_profiling=Profilage transcriptionnel +controlledvocabulary.studyAssayMeasurementType.transcription_profiling_(microarray)=Profilage transcriptionnel (microréseau) +controlledvocabulary.studyAssayMeasurementType.transcription_profiling_(rna-seq)=Profilage transcriptionnel (séquençage de l'ARN) +controlledvocabulary.studyAssayMeasurementType.trap_translational_profiling=Profilage transcriptionnel +controlledvocabulary.studyAssayMeasurementType.other=Autre +controlledvocabulary.studyAssayOrganism.arabidopsis_thaliana=Arabidopsis thaliana +controlledvocabulary.studyAssayOrganism.bos_taurus=Bos taurus +controlledvocabulary.studyAssayOrganism.caenorhabditis_elegans=Caenorhabditis elegans +controlledvocabulary.studyAssayOrganism.chlamydomonas_reinhardtii=Chlamydomonas reinhardtii +controlledvocabulary.studyAssayOrganism.danio_rerio_(zebrafish)=Danio rerio (zebrafish) +controlledvocabulary.studyAssayOrganism.dictyostelium_discoideum=Dictyostelium discoideum +controlledvocabulary.studyAssayOrganism.drosophila_melanogaster=Drosophila melanogaster +controlledvocabulary.studyAssayOrganism.escherichia_coli=Escherichia coli +controlledvocabulary.studyAssayOrganism.hepatitis_c_virus=Hepatitis C virus +controlledvocabulary.studyAssayOrganism.homo_sapiens=Homo sapiens +controlledvocabulary.studyAssayOrganism.mus_musculus=Mus musculus +controlledvocabulary.studyAssayOrganism.mycobacterium_africanum=Mycobacterium africanum +controlledvocabulary.studyAssayOrganism.mycobacterium_canetti=Mycobacterium canetti +controlledvocabulary.studyAssayOrganism.mycobacterium_tuberculosis=Mycobacterium tuberculosis +controlledvocabulary.studyAssayOrganism.mycoplasma_pneumoniae=Saccharomyces cerevisiae (levure de bière) +controlledvocabulary.studyAssayOrganism.oryza_sativa=Oryza sativa +controlledvocabulary.studyAssayOrganism.plasmodium_falciparum=Plasmodium falciparum +controlledvocabulary.studyAssayOrganism.pneumocystis_carinii=Pneumocystis carinii +controlledvocabulary.studyAssayOrganism.rattus_norvegicus=Rattus norvegicus +controlledvocabulary.studyAssayOrganism.saccharomyces_cerevisiae_(brewer's_yeast)=Autre +controlledvocabulary.studyAssayOrganism.schizosaccharomyces_pombe=Détermination des séquences nucléotidiques +controlledvocabulary.studyAssayOrganism.takifugu_rubripes=Cytométrie de flux +controlledvocabulary.studyAssayOrganism.xenopus_laevis=Microréseau à ADN +controlledvocabulary.studyAssayOrganism.zea_mays=Spectrométrie de masse +controlledvocabulary.studyAssayOrganism.other=Électrophorèse en gel +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_single_concentration=Microréseau de protéines +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_two_concentrations=PCR en temps réel +controlledvocabulary.studyAssayTechnologyType.culture_based_drug_susceptibility_testing,_three_or_more_concentrations_(minimium_inhibitory_concentration_measurement)=Spectroscopie RMN +controlledvocabulary.studyAssayTechnologyType.dna_microarray=Aucune technologie requise +controlledvocabulary.studyAssayTechnologyType.flow_cytometry=Autre +controlledvocabulary.studyAssayTechnologyType.gel_electrophoresis=gel electrophoresis +controlledvocabulary.studyAssayTechnologyType.mass_spectrometry=mass spectrometry +controlledvocabulary.studyAssayTechnologyType.nmr_spectroscopy=NMR spectroscopy +controlledvocabulary.studyAssayTechnologyType.nucleotide_sequencing=nucleotide sequencing +controlledvocabulary.studyAssayTechnologyType.protein_microarray=protein microarray +controlledvocabulary.studyAssayTechnologyType.real_time_pcr=real time PCR +controlledvocabulary.studyAssayTechnologyType.no_technology_required=no technology required +controlledvocabulary.studyAssayTechnologyType.other=Other +controlledvocabulary.studyAssayPlatform.210-ms_gc_ion_trap_(varian)=210-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.220-ms_gc_ion_trap_(varian)=220-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.225-ms_gc_ion_trap_(varian)=225-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.240-ms_gc_ion_trap_(varian)=240-MS GC Ion Trap (Varian) +controlledvocabulary.studyAssayPlatform.300-ms_quadrupole_gc/ms_(varian)=300-MS quadrupole GC/MS (Varian) +controlledvocabulary.studyAssayPlatform.320-ms_lc/ms_(varian)=320-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.325-ms_lc/ms_(varian)=325-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.320-ms_gc/ms_(varian)=320-MS GC/MS (Varian) +controlledvocabulary.studyAssayPlatform.500-ms_lc/ms_(varian)=500-MS LC/MS (Varian) +controlledvocabulary.studyAssayPlatform.800d_(jeol)=800D (Jeol) +controlledvocabulary.studyAssayPlatform.910-ms_tq-ft_(varian)=910-MS TQ-FT (Varian) +controlledvocabulary.studyAssayPlatform.920-ms_tq-ft_(varian)=920-MS TQ-FT (Varian) +controlledvocabulary.studyAssayPlatform.3100_mass_detector_(waters)=3100 Mass Detector (Waters) +controlledvocabulary.studyAssayPlatform.6110_quadrupole_lc/ms_(agilent)=6110 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6120_quadrupole_lc/ms_(agilent)=6120 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6130_quadrupole_lc/ms_(agilent)=6130 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6140_quadrupole_lc/ms_(agilent)=6140 Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6310_ion_trap_lc/ms_(agilent)=6310 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6320_ion_trap_lc/ms_(agilent)=6320 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6330_ion_trap_lc/ms_(agilent)=6330 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6340_ion_trap_lc/ms_(agilent)=6340 Ion Trap LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6410_triple_quadrupole_lc/ms_(agilent)=6410 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6430_triple_quadrupole_lc/ms_(agilent)=6430 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6460_triple_quadrupole_lc/ms_(agilent)=6460 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6490_triple_quadrupole_lc/ms_(agilent)=6490 Triple Quadrupole LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6530_q-tof_lc/ms_(agilent)=6530 Q-TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6540_q-tof_lc/ms_(agilent)=6540 Q-TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6210_tof_lc/ms_(agilent)=6210 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6220_tof_lc/ms_(agilent)=6220 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.6230_tof_lc/ms_(agilent)=6230 TOF LC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.7000b_triple_quadrupole_gc/ms_(agilent)=7000B Triple Quadrupole GC/MS (Agilent) +controlledvocabulary.studyAssayPlatform.accuto_dart_(jeol)=AccuTO DART (Jeol) +controlledvocabulary.studyAssayPlatform.accutof_gc_(jeol)=AccuTOF GC (Jeol) +controlledvocabulary.studyAssayPlatform.accutof_lc_(jeol)=AccuTOF LC (Jeol) +controlledvocabulary.studyAssayPlatform.acquity_sqd_(waters)=ACQUITY SQD (Waters) +controlledvocabulary.studyAssayPlatform.acquity_tqd_(waters)=ACQUITY TQD (Waters) +controlledvocabulary.studyAssayPlatform.agilent=Agilent +controlledvocabulary.studyAssayPlatform.agilent_5975e_gc/msd_(agilent)=Agilent 5975E GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.agilent_5975t_ltm_gc/msd_(agilent)=Agilent 5975T LTM GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.5975c_series_gc/msd_(agilent)=5975C Series GC/MSD (Agilent) +controlledvocabulary.studyAssayPlatform.affymetrix=Affymetrix +controlledvocabulary.studyAssayPlatform.amazon_etd_esi_ion_trap_(bruker)=amaZon ETD ESI Ion Trap (Bruker) +controlledvocabulary.studyAssayPlatform.amazon_x_esi_ion_trap_(bruker)=amaZon X ESI Ion Trap (Bruker) +controlledvocabulary.studyAssayPlatform.apex-ultra_hybrid_qq-ftms_(bruker)=apex-ultra hybrid Qq-FTMS (Bruker) +controlledvocabulary.studyAssayPlatform.api_2000_(ab_sciex)=API 2000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_3200_(ab_sciex)=API 3200 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_3200_qtrap_(ab_sciex)=API 3200 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_4000_(ab_sciex)=API 4000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_4000_qtrap_(ab_sciex)=API 4000 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5000_(ab_sciex)=API 5000 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5500_(ab_sciex)=API 5500 (AB Sciex) +controlledvocabulary.studyAssayPlatform.api_5500_qtrap_(ab_sciex)=API 5500 QTRAP (AB Sciex) +controlledvocabulary.studyAssayPlatform.applied_biosystems_group_(abi)=Applied Biosystems Group (ABI) +controlledvocabulary.studyAssayPlatform.aqi_biosciences=AQI Biosciences +controlledvocabulary.studyAssayPlatform.atmospheric_pressure_gc_(waters)=Atmospheric Pressure GC (Waters) +controlledvocabulary.studyAssayPlatform.autoflex_iii_maldi-tof_ms_(bruker)=autoflex III MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.autoflex_speed(bruker)=autoflex speed(Bruker) +controlledvocabulary.studyAssayPlatform.autospec_premier_(waters)=AutoSpec Premier (Waters) +controlledvocabulary.studyAssayPlatform.axima_mega_tof_(shimadzu)=AXIMA Mega TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.axima_performance_maldi_tof/tof_(shimadzu)=AXIMA Performance MALDI TOF/TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.a-10_analyzer_(apogee)=A-10 Analyzer (Apogee) +controlledvocabulary.studyAssayPlatform.a-40-minifcm_(apogee)=A-40-MiniFCM (Apogee) +controlledvocabulary.studyAssayPlatform.bactiflow_(chemunex_sa)=Bactiflow (Chemunex SA) +controlledvocabulary.studyAssayPlatform.base4innovation=Base4innovation +controlledvocabulary.studyAssayPlatform.bd_bactec_mgit_320=BD BACTEC MGIT 320 +controlledvocabulary.studyAssayPlatform.bd_bactec_mgit_960=BD BACTEC MGIT 960 +controlledvocabulary.studyAssayPlatform.bd_radiometric_bactec_460tb=BD Radiometric BACTEC 460TB +controlledvocabulary.studyAssayPlatform.bionanomatrix=BioNanomatrix +controlledvocabulary.studyAssayPlatform.cell_lab_quanta_sc_(becman_coulter)=Cell Lab Quanta SC (Becman Coulter) +controlledvocabulary.studyAssayPlatform.clarus_560_d_gc/ms_(perkinelmer)=Clarus 560 D GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.clarus_560_s_gc/ms_(perkinelmer)=Clarus 560 S GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.clarus_600_gc/ms_(perkinelmer)=Clarus 600 GC/MS (PerkinElmer) +controlledvocabulary.studyAssayPlatform.complete_genomics=Complete Genomics +controlledvocabulary.studyAssayPlatform.cyan_(dako_cytomation)=Cyan (Dako Cytomation) +controlledvocabulary.studyAssayPlatform.cyflow_ml_(partec)=CyFlow ML (Partec) +controlledvocabulary.studyAssayPlatform.cyow_sl_(partec)=Cyow SL (Partec) +controlledvocabulary.studyAssayPlatform.cyflow_sl3_(partec)=CyFlow SL3 (Partec) +controlledvocabulary.studyAssayPlatform.cytobuoy_(cyto_buoy_inc)=CytoBuoy (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.cytosence_(cyto_buoy_inc)=CytoSence (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.cytosub_(cyto_buoy_inc)=CytoSub (Cyto Buoy Inc) +controlledvocabulary.studyAssayPlatform.danaher=Danaher +controlledvocabulary.studyAssayPlatform.dfs_(thermo_scientific)=DFS (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.exactive(thermo_scientific)=Exactive(Thermo Scientific) +controlledvocabulary.studyAssayPlatform.facs_canto_(becton_dickinson)=FACS Canto (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.facs_canto2_(becton_dickinson)=FACS Canto2 (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.facs_scan_(becton_dickinson)=FACS Scan (Becton Dickinson) +controlledvocabulary.studyAssayPlatform.fc_500_(becman_coulter)=FC 500 (Becman Coulter) +controlledvocabulary.studyAssayPlatform.gcmate_ii_gc/ms_(jeol)=GCmate II GC/MS (Jeol) +controlledvocabulary.studyAssayPlatform.gcms-qp2010_plus_(shimadzu)=GCMS-QP2010 Plus (Shimadzu) +controlledvocabulary.studyAssayPlatform.gcms-qp2010s_plus_(shimadzu)=GCMS-QP2010S Plus (Shimadzu) +controlledvocabulary.studyAssayPlatform.gct_premier_(waters)=GCT Premier (Waters) +controlledvocabulary.studyAssayPlatform.geneq=GENEQ +controlledvocabulary.studyAssayPlatform.genome_corp.=Genome Corp. +controlledvocabulary.studyAssayPlatform.genovoxx=GenoVoxx +controlledvocabulary.studyAssayPlatform.gnubio=GnuBio +controlledvocabulary.studyAssayPlatform.guava_easycyte_mini_(millipore)=Guava EasyCyte Mini (Millipore) +controlledvocabulary.studyAssayPlatform.guava_easycyte_plus_(millipore)=Guava EasyCyte Plus (Millipore) +controlledvocabulary.studyAssayPlatform.guava_personal_cell_analysis_(millipore)=Guava Personal Cell Analysis (Millipore) +controlledvocabulary.studyAssayPlatform.guava_personal_cell_analysis-96_(millipore)=Guava Personal Cell Analysis-96 (Millipore) +controlledvocabulary.studyAssayPlatform.helicos_biosciences=Helicos BioSciences +controlledvocabulary.studyAssayPlatform.illumina=Illumina +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_lj_medium=Indirect proportion method on LJ medium +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h9=Indirect proportion method on Middlebrook Agar 7H9 +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h10=Indirect proportion method on Middlebrook Agar 7H10 +controlledvocabulary.studyAssayPlatform.indirect_proportion_method_on_middlebrook_agar_7h11=Indirect proportion method on Middlebrook Agar 7H11 +controlledvocabulary.studyAssayPlatform.influx_analyzer_(cytopeia)=inFlux Analyzer (Cytopeia) +controlledvocabulary.studyAssayPlatform.intelligent_bio-systems=Intelligent Bio-Systems +controlledvocabulary.studyAssayPlatform.itq_700_(thermo_scientific)=ITQ 700 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.itq_900_(thermo_scientific)=ITQ 900 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.itq_1100_(thermo_scientific)=ITQ 1100 (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.jms-53000_spiraltof_(jeol)=JMS-53000 SpiralTOF (Jeol) +controlledvocabulary.studyAssayPlatform.lasergen=LaserGen +controlledvocabulary.studyAssayPlatform.lcms-2020_(shimadzu)=LCMS-2020 (Shimadzu) +controlledvocabulary.studyAssayPlatform.lcms-2010ev_(shimadzu)=LCMS-2010EV (Shimadzu) +controlledvocabulary.studyAssayPlatform.lcms-it-tof_(shimadzu)=LCMS-IT-TOF (Shimadzu) +controlledvocabulary.studyAssayPlatform.li-cor=Li-Cor +controlledvocabulary.studyAssayPlatform.life_tech=Life Tech +controlledvocabulary.studyAssayPlatform.lightspeed_genomics=LightSpeed Genomics +controlledvocabulary.studyAssayPlatform.lct_premier_xe_(waters)=LCT Premier XE (Waters) +controlledvocabulary.studyAssayPlatform.lcq_deca_xp_max_(thermo_scientific)=LCQ Deca XP MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.lcq_fleet_(thermo_scientific)=LCQ Fleet (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.lxq_(thermo_scientific)=LXQ (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_classic_(thermo_scientific)=LTQ Classic (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_xl_(thermo_scientific)=LTQ XL (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_velos_(thermo_scientific)=LTQ Velos (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_classic_(thermo_scientific)=LTQ Orbitrap Classic (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_xl_(thermo_scientific)=LTQ Orbitrap XL (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_discovery_(thermo_scientific)=LTQ Orbitrap Discovery (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ltq_orbitrap_velos_(thermo_scientific)=LTQ Orbitrap Velos (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.luminex_100_(luminex)=Luminex 100 (Luminex) +controlledvocabulary.studyAssayPlatform.luminex_200_(luminex)=Luminex 200 (Luminex) +controlledvocabulary.studyAssayPlatform.macs_quant_(miltenyi)=MACS Quant (Miltenyi) +controlledvocabulary.studyAssayPlatform.maldi_synapt_g2_hdms_(waters)=MALDI SYNAPT G2 HDMS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_g2_ms_(waters)=MALDI SYNAPT G2 MS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_hdms_(waters)=MALDI SYNAPT HDMS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_synapt_ms_(waters)=MALDI SYNAPT MS (Waters) +controlledvocabulary.studyAssayPlatform.maldi_micro_mx_(waters)=MALDI micro MX (Waters) +controlledvocabulary.studyAssayPlatform.maxis_(bruker)=maXis (Bruker) +controlledvocabulary.studyAssayPlatform.maxis_g4_(bruker)=maXis G4 (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_lt_maldi-tof_ms_(bruker)=microflex LT MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_lrf_maldi-tof_ms_(bruker)=microflex LRF MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microflex_iii_maldi-tof_ms_(bruker)=microflex III MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.microtof_ii_esi_tof_(bruker)=micrOTOF II ESI TOF (Bruker) +controlledvocabulary.studyAssayPlatform.microtof-q_ii_esi-qq-tof_(bruker)=micrOTOF-Q II ESI-Qq-TOF (Bruker) +controlledvocabulary.studyAssayPlatform.microplate_alamar_blue_(resazurin)_colorimetric_method=microplate Alamar Blue (resazurin) colorimetric method +controlledvocabulary.studyAssayPlatform.mstation_(jeol)=Mstation (Jeol) +controlledvocabulary.studyAssayPlatform.msq_plus_(thermo_scientific)=MSQ Plus (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.nabsys=NABsys +controlledvocabulary.studyAssayPlatform.nanophotonics_biosciences=Nanophotonics Biosciences +controlledvocabulary.studyAssayPlatform.network_biosystems=Network Biosystems +controlledvocabulary.studyAssayPlatform.nimblegen=Nimblegen +controlledvocabulary.studyAssayPlatform.oxford_nanopore_technologies=Oxford Nanopore Technologies +controlledvocabulary.studyAssayPlatform.pacific_biosciences=Pacific Biosciences +controlledvocabulary.studyAssayPlatform.population_genetics_technologies=Population Genetics Technologies +controlledvocabulary.studyAssayPlatform.q1000gc_ultraquad_(jeol)=Q1000GC UltraQuad (Jeol) +controlledvocabulary.studyAssayPlatform.quattro_micro_api_(waters)=Quattro micro API (Waters) +controlledvocabulary.studyAssayPlatform.quattro_micro_gc_(waters)=Quattro micro GC (Waters) +controlledvocabulary.studyAssayPlatform.quattro_premier_xe_(waters)=Quattro Premier XE (Waters) +controlledvocabulary.studyAssayPlatform.qstar_(ab_sciex)=QSTAR (AB Sciex) +controlledvocabulary.studyAssayPlatform.reveo=Reveo +controlledvocabulary.studyAssayPlatform.roche=Roche +controlledvocabulary.studyAssayPlatform.seirad=Seirad +controlledvocabulary.studyAssayPlatform.solarix_hybrid_qq-ftms_(bruker)=solariX hybrid Qq-FTMS (Bruker) +controlledvocabulary.studyAssayPlatform.somacount_(bently_instruments)=Somacount (Bently Instruments) +controlledvocabulary.studyAssayPlatform.somascope_(bently_instruments)=SomaScope (Bently Instruments) +controlledvocabulary.studyAssayPlatform.synapt_g2_hdms_(waters)=SYNAPT G2 HDMS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_g2_ms_(waters)=SYNAPT G2 MS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_hdms_(waters)=SYNAPT HDMS (Waters) +controlledvocabulary.studyAssayPlatform.synapt_ms_(waters)=SYNAPT MS (Waters) +controlledvocabulary.studyAssayPlatform.tripletof_5600_(ab_sciex)=TripleTOF 5600 (AB Sciex) +controlledvocabulary.studyAssayPlatform.tsq_quantum_ultra_(thermo_scientific)=TSQ Quantum Ultra (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_access_(thermo_scientific)=TSQ Quantum Access (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_access_max_(thermo_scientific)=TSQ Quantum Access MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_discovery_max_(thermo_scientific)=TSQ Quantum Discovery MAX (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_gc_(thermo_scientific)=TSQ Quantum GC (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_quantum_xls_(thermo_scientific)=TSQ Quantum XLS (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.tsq_vantage_(thermo_scientific)=TSQ Vantage (Thermo Scientific) +controlledvocabulary.studyAssayPlatform.ultraflextreme_maldi-tof_ms_(bruker)=ultrafleXtreme MALDI-TOF MS (Bruker) +controlledvocabulary.studyAssayPlatform.visigen_biotechnologies=VisiGen Biotechnologies +controlledvocabulary.studyAssayPlatform.xevo_g2_qtof_(waters)=Xevo G2 QTOF (Waters) +controlledvocabulary.studyAssayPlatform.xevo_qtof_ms_(waters)=Xevo QTof MS (Waters) +controlledvocabulary.studyAssayPlatform.xevo_tq_ms_(waters)=Xevo TQ MS (Waters) +controlledvocabulary.studyAssayPlatform.xevo_tq-s_(waters)=Xevo TQ-S (Waters) +controlledvocabulary.studyAssayPlatform.other=Other \ No newline at end of file diff --git a/src/main/java/citation.properties b/src/main/java/citation.properties new file mode 100644 index 00000000000..8f3d8b109f2 --- /dev/null +++ b/src/main/java/citation.properties @@ -0,0 +1,475 @@ +metadatablock.name=citation +metadatablock.displayName=Citation Metadata +datasetfieldtype.title.title=Title +datasetfieldtype.subtitle.title=Subtitle +datasetfieldtype.alternativeTitle.title=Alternative Title +datasetfieldtype.alternativeURL.title=Alternative URL +datasetfieldtype.otherId.title=Other ID +datasetfieldtype.otherIdAgency.title=Agency +datasetfieldtype.otherIdValue.title=Identifier +datasetfieldtype.author.title=Author +datasetfieldtype.authorName.title=Name +datasetfieldtype.authorAffiliation.title=Affiliation +datasetfieldtype.authorIdentifierScheme.title=Identifier Scheme +datasetfieldtype.authorIdentifier.title=Identifier +datasetfieldtype.datasetContact.title=Contact +datasetfieldtype.datasetContactName.title=Name +datasetfieldtype.datasetContactAffiliation.title=Affiliation +datasetfieldtype.datasetContactEmail.title=E-mail +datasetfieldtype.dsDescription.title=Description +datasetfieldtype.dsDescriptionValue.title=Text +datasetfieldtype.dsDescriptionDate.title=Date +datasetfieldtype.subject.title=Subject +datasetfieldtype.keyword.title=Keyword +datasetfieldtype.keywordValue.title=Term +datasetfieldtype.keywordVocabulary.title=Vocabulary +datasetfieldtype.keywordVocabularyURI.title=Vocabulary URL +datasetfieldtype.topicClassification.title=Topic Classification +datasetfieldtype.topicClassValue.title=Term +datasetfieldtype.topicClassVocab.title=Vocabulary +datasetfieldtype.topicClassVocabURI.title=Vocabulary URL +datasetfieldtype.publication.title=Related Publication +datasetfieldtype.publicationCitation.title=Citation +datasetfieldtype.publicationIDType.title=ID Type +datasetfieldtype.publicationIDNumber.title=ID Number +datasetfieldtype.publicationURL.title=URL +datasetfieldtype.notesText.title=Notes +datasetfieldtype.language.title=Language +datasetfieldtype.producer.title=Producer +datasetfieldtype.producerName.title=Name +datasetfieldtype.producerAffiliation.title=Affiliation +datasetfieldtype.producerAbbreviation.title=Abbreviation +datasetfieldtype.producerURL.title=URL +datasetfieldtype.producerLogoURL.title=Logo URL +datasetfieldtype.productionDate.title=Production Date +datasetfieldtype.productionPlace.title=Production Place +datasetfieldtype.contributor.title=Contributor +datasetfieldtype.contributorType.title=Type +datasetfieldtype.contributorName.title=Name +datasetfieldtype.grantNumber.title=Grant Information +datasetfieldtype.grantNumberAgency.title=Grant Agency +datasetfieldtype.grantNumberValue.title=Grant Number +datasetfieldtype.distributor.title=Distributor +datasetfieldtype.distributorName.title=Name +datasetfieldtype.distributorAffiliation.title=Affiliation +datasetfieldtype.distributorAbbreviation.title=Abbreviation +datasetfieldtype.distributorURL.title=URL +datasetfieldtype.distributorLogoURL.title=Logo URL +datasetfieldtype.distributionDate.title=Distribution Date +datasetfieldtype.depositor.title=Depositor +datasetfieldtype.dateOfDeposit.title=Deposit Date +datasetfieldtype.timePeriodCovered.title=Time Period Covered +datasetfieldtype.timePeriodCoveredStart.title=Start +datasetfieldtype.timePeriodCoveredEnd.title=End +datasetfieldtype.dateOfCollection.title=Date of Collection +datasetfieldtype.dateOfCollectionStart.title=Start +datasetfieldtype.dateOfCollectionEnd.title=End +datasetfieldtype.kindOfData.title=Kind of Data +datasetfieldtype.series.title=Series +datasetfieldtype.seriesName.title=Name +datasetfieldtype.seriesInformation.title=Information +datasetfieldtype.software.title=Software +datasetfieldtype.softwareName.title=Name +datasetfieldtype.softwareVersion.title=Version +datasetfieldtype.relatedMaterial.title=Related Material +datasetfieldtype.relatedDatasets.title=Related Datasets +datasetfieldtype.otherReferences.title=Other References +datasetfieldtype.dataSources.title=Data Sources +datasetfieldtype.originOfSources.title=Origin of Sources +datasetfieldtype.characteristicOfSources.title=Characteristic of Sources Noted +datasetfieldtype.accessToSources.title=Documentation and Access to Sources +datasetfieldtype.title.description=Full title by which the Dataset is known. +datasetfieldtype.subtitle.description=A secondary title used to amplify or state certain limitations on the main title. +datasetfieldtype.alternativeTitle.description=A title by which the work is commonly referred, or an abbreviation of the title. +datasetfieldtype.alternativeURL.description=A URL where the dataset can be viewed, such as a personal or project website. +datasetfieldtype.otherId.description=Another unique identifier that identifies this Dataset (e.g., producer's or another repository's number). +datasetfieldtype.otherIdAgency.description=Name of agency which generated this identifier. +datasetfieldtype.otherIdValue.description=Other identifier that corresponds to this Dataset. +datasetfieldtype.author.description=The person(s), corporate body(ies), or agency(ies) responsible for creating the work. +datasetfieldtype.authorName.description=The author's Family Name, Given Name or the name of the organization responsible for this Dataset. +datasetfieldtype.authorAffiliation.description=The organization with which the author is affiliated. +datasetfieldtype.authorIdentifierScheme.description=Name of the identifier scheme (ORCID, ISNI). +datasetfieldtype.authorIdentifier.description=Uniquely identifies an individual author or organization, according to various schemes. +datasetfieldtype.datasetContact.description=The contact(s) for this Dataset. +datasetfieldtype.datasetContactName.description=The contact's Family Name, Given Name or the name of the organization. +datasetfieldtype.datasetContactAffiliation.description=The organization with which the contact is affiliated. +datasetfieldtype.datasetContactEmail.description=The e-mail address(es) of the contact(s) for the Dataset. This will not be displayed. +datasetfieldtype.dsDescription.description=A summary describing the purpose, nature, and scope of the Dataset. +datasetfieldtype.dsDescriptionValue.description=A summary describing the purpose, nature, and scope of the Dataset. +datasetfieldtype.dsDescriptionDate.description=In cases where a Dataset contains more than one description (for example, one might be supplied by the data producer and another prepared by the data repository where the data are deposited), the date attribute is used to distinguish between the two descriptions. The date attribute follows the ISO convention of YYYY-MM-DD. +datasetfieldtype.subject.description=Domain-specific Subject Categories that are topically relevant to the Dataset. +datasetfieldtype.keyword.description=Key terms that describe important aspects of the Dataset. +datasetfieldtype.keywordValue.description=Key terms that describe important aspects of the Dataset. Can be used for building keyword indexes and for classification and retrieval purposes. A controlled vocabulary can be employed. The vocab attribute is provided for specification of the controlled vocabulary in use, such as LCSH, MeSH, or others. The vocabURI attribute specifies the location for the full controlled vocabulary. +datasetfieldtype.keywordVocabulary.description=For the specification of the keyword controlled vocabulary in use, such as LCSH, MeSH, or others. +datasetfieldtype.keywordVocabularyURI.description=Keyword vocabulary URL points to the web presence that describes the keyword vocabulary, if appropriate. Enter an absolute URL where the keyword vocabulary web site is found, such as http://www.my.org. +datasetfieldtype.topicClassification.description=The classification field indicates the broad important topic(s) and subjects that the data cover. Library of Congress subject terms may be used here. +datasetfieldtype.topicClassValue.description=Topic or Subject term that is relevant to this Dataset. +datasetfieldtype.topicClassVocab.description=Provided for specification of the controlled vocabulary in use, e.g., LCSH, MeSH, etc. +datasetfieldtype.topicClassVocabURI.description=Specifies the URL location for the full controlled vocabulary. +datasetfieldtype.publication.description=Publications that use the data from this Dataset. +datasetfieldtype.publicationCitation.description=The full bibliographic citation for this related publication. +datasetfieldtype.publicationIDType.description=The type of digital identifier used for this publication (e.g., Digital Object Identifier (DOI)). +datasetfieldtype.publicationIDNumber.description=The identifier for the selected ID type. +datasetfieldtype.publicationURL.description=Link to the publication web page (e.g., journal article page, archive record page, or other). +datasetfieldtype.notesText.description=Additional important information about the Dataset. +datasetfieldtype.language.description=Language of the Dataset +datasetfieldtype.producer.description=Person or organization with the financial or administrative responsibility over this Dataset +datasetfieldtype.producerName.description=Producer name +datasetfieldtype.producerAffiliation.description=The organization with which the producer is affiliated. +datasetfieldtype.producerAbbreviation.description=The abbreviation by which the producer is commonly known. (ex. IQSS, ICPSR) +datasetfieldtype.producerURL.description=Producer URL points to the producer's web presence, if appropriate. Enter an absolute URL where the producer's web site is found, such as http://www.my.org. +datasetfieldtype.producerLogoURL.description=URL for the producer's logo, which points to this producer's web-accessible logo image. Enter an absolute URL where the producer's logo image is found, such as http://www.my.org/images/logo.gif. +datasetfieldtype.productionDate.description=Date when the data collection or other materials were produced (not distributed, published or archived). +datasetfieldtype.productionPlace.description=The location where the data collection and any other related materials were produced. +datasetfieldtype.contributor.description=The organization or person responsible for either collecting, managing, or otherwise contributing in some form to the development of the resource. +datasetfieldtype.contributorType.description=The type of contributor of the resource. +datasetfieldtype.contributorName.description=The Family Name, Given Name or organization name of the contributor. +datasetfieldtype.grantNumber.description=Grant Information +datasetfieldtype.grantNumberAgency.description=Grant Number Agency +datasetfieldtype.grantNumberValue.description=The grant or contract number of the project that sponsored the effort. +datasetfieldtype.distributor.description=The organization designated by the author or producer to generate copies of the particular work including any necessary editions or revisions. +datasetfieldtype.distributorName.description=Distributor name +datasetfieldtype.distributorAffiliation.description=The organization with which the distributor contact is affiliated. +datasetfieldtype.distributorAbbreviation.description=The abbreviation by which this distributor is commonly known (e.g., IQSS, ICPSR). +datasetfieldtype.distributorURL.description=Distributor URL points to the distributor's web presence, if appropriate. Enter an absolute URL where the distributor's web site is found, such as http://www.my.org. +datasetfieldtype.distributorLogoURL.description=URL of the distributor's logo, which points to this distributor's web-accessible logo image. Enter an absolute URL where the distributor's logo image is found, such as http://www.my.org/images/logo.gif. +datasetfieldtype.distributionDate.description=Date that the work was made available for distribution/presentation. +datasetfieldtype.depositor.description=The person (Family Name, Given Name) or the name of the organization that deposited this Dataset to the repository. +datasetfieldtype.dateOfDeposit.description=Date that the Dataset was deposited into the repository. +datasetfieldtype.timePeriodCovered.description=Time period to which the data refer. This item reflects the time period covered by the data, not the dates of coding or making documents machine-readable or the dates the data were collected. Also known as span. +datasetfieldtype.timePeriodCoveredStart.description=Start date which reflects the time period covered by the data, not the dates of coding or making documents machine-readable or the dates the data were collected. +datasetfieldtype.timePeriodCoveredEnd.description=End date which reflects the time period covered by the data, not the dates of coding or making documents machine-readable or the dates the data were collected. +datasetfieldtype.dateOfCollection.description=Contains the date(s) when the data were collected. +datasetfieldtype.dateOfCollectionStart.description=Date when the data collection started. +datasetfieldtype.dateOfCollectionEnd.description=Date when the data collection ended. +datasetfieldtype.kindOfData.description=Type of data included in the file: survey data, census/enumeration data, aggregate data, clinical data, event/transaction data, program source code, machine-readable text, administrative records data, experimental data, psychological test, textual data, coded textual, coded documents, time budget diaries, observation data/ratings, process-produced data, or other. +datasetfieldtype.series.description=Information about the Dataset series. +datasetfieldtype.seriesName.description=Name of the dataset series to which the Dataset belongs. +datasetfieldtype.seriesInformation.description=History of the series and summary of those features that apply to the series as a whole. +datasetfieldtype.software.description=Information about the software used to generate the Dataset. +datasetfieldtype.softwareName.description=Name of software used to generate the Dataset. +datasetfieldtype.softwareVersion.description=Version of the software used to generate the Dataset. +datasetfieldtype.relatedMaterial.description=Any material related to this Dataset. +datasetfieldtype.relatedDatasets.description=Any Datasets that are related to this Dataset, such as previous research on this subject. +datasetfieldtype.otherReferences.description=Any references that would serve as background or supporting material to this Dataset. +datasetfieldtype.dataSources.description=List of books, articles, serials, or machine-readable data files that served as the sources of the data collection. +datasetfieldtype.originOfSources.description=For historical materials, information about the origin of the sources and the rules followed in establishing the sources should be specified. +datasetfieldtype.characteristicOfSources.description=Assessment of characteristics and source material. +datasetfieldtype.accessToSources.description=Level of documentation of the original sources. +datasetfieldtype.title.watermark=Enter title... +datasetfieldtype.subtitle.watermark= +datasetfieldtype.alternativeTitle.watermark= +datasetfieldtype.alternativeURL.watermark=Enter full URL, starting with http:// +datasetfieldtype.otherId.watermark= +datasetfieldtype.otherIdAgency.watermark= +datasetfieldtype.otherIdValue.watermark= +datasetfieldtype.author.watermark= +datasetfieldtype.authorName.watermark=FamilyName, GivenName or Organization +datasetfieldtype.authorAffiliation.watermark= +datasetfieldtype.authorIdentifierScheme.watermark= +datasetfieldtype.authorIdentifier.watermark= +datasetfieldtype.datasetContact.watermark= +datasetfieldtype.datasetContactName.watermark=FamilyName, GivenName or Organization +datasetfieldtype.datasetContactAffiliation.watermark= +datasetfieldtype.datasetContactEmail.watermark= +datasetfieldtype.dsDescription.watermark= +datasetfieldtype.dsDescriptionValue.watermark= +datasetfieldtype.dsDescriptionDate.watermark=YYYY-MM-DD +datasetfieldtype.subject.watermark= +datasetfieldtype.keyword.watermark= +datasetfieldtype.keywordValue.watermark= +datasetfieldtype.keywordVocabulary.watermark= +datasetfieldtype.keywordVocabularyURI.watermark=Enter full URL, starting with http:// +datasetfieldtype.topicClassification.watermark= +datasetfieldtype.topicClassValue.watermark= +datasetfieldtype.topicClassVocab.watermark= +datasetfieldtype.topicClassVocabURI.watermark=Enter full URL, starting with http:// +datasetfieldtype.publication.watermark= +datasetfieldtype.publicationCitation.watermark= +datasetfieldtype.publicationIDType.watermark= +datasetfieldtype.publicationIDNumber.watermark= +datasetfieldtype.publicationURL.watermark=Enter full URL, starting with http:// +datasetfieldtype.notesText.watermark= +datasetfieldtype.language.watermark= +datasetfieldtype.producer.watermark= +datasetfieldtype.producerName.watermark=FamilyName, GivenName or Organization +datasetfieldtype.producerAffiliation.watermark= +datasetfieldtype.producerAbbreviation.watermark= +datasetfieldtype.producerURL.watermark=Enter full URL, starting with http:// +datasetfieldtype.producerLogoURL.watermark=Enter full URL for image, starting with http:// +datasetfieldtype.productionDate.watermark=YYYY-MM-DD +datasetfieldtype.productionPlace.watermark= +datasetfieldtype.contributor.watermark= +datasetfieldtype.contributorType.watermark= +datasetfieldtype.contributorName.watermark=FamilyName, GivenName or Organization +datasetfieldtype.grantNumber.watermark= +datasetfieldtype.grantNumberAgency.watermark= +datasetfieldtype.grantNumberValue.watermark= +datasetfieldtype.distributor.watermark= +datasetfieldtype.distributorName.watermark=FamilyName, GivenName or Organization +datasetfieldtype.distributorAffiliation.watermark= +datasetfieldtype.distributorAbbreviation.watermark= +datasetfieldtype.distributorURL.watermark=Enter full URL, starting with http:// +datasetfieldtype.distributorLogoURL.watermark=Enter full URL for image, starting with http:// +datasetfieldtype.distributionDate.watermark=YYYY-MM-DD +datasetfieldtype.depositor.watermark= +datasetfieldtype.dateOfDeposit.watermark=YYYY-MM-DD +datasetfieldtype.timePeriodCovered.watermark= +datasetfieldtype.timePeriodCoveredStart.watermark=YYYY-MM-DD +datasetfieldtype.timePeriodCoveredEnd.watermark=YYYY-MM-DD +datasetfieldtype.dateOfCollection.watermark= +datasetfieldtype.dateOfCollectionStart.watermark=YYYY-MM-DD +datasetfieldtype.dateOfCollectionEnd.watermark=YYYY-MM-DD +datasetfieldtype.kindOfData.watermark= +datasetfieldtype.series.watermark= +datasetfieldtype.seriesName.watermark= +datasetfieldtype.seriesInformation.watermark= +datasetfieldtype.software.watermark= +datasetfieldtype.softwareName.watermark= +datasetfieldtype.softwareVersion.watermark= +datasetfieldtype.relatedMaterial.watermark= +datasetfieldtype.relatedDatasets.watermark= +datasetfieldtype.otherReferences.watermark= +datasetfieldtype.dataSources.watermark= +datasetfieldtype.originOfSources.watermark= +datasetfieldtype.characteristicOfSources.watermark= +datasetfieldtype.accessToSources.watermark= +controlledvocabulary.subject.agricultural_sciences=Agricultural Sciences +controlledvocabulary.subject.arts_and_humanities=Arts and Humanities +controlledvocabulary.subject.astronomy_and_astrophysics=Astronomy and Astrophysics +controlledvocabulary.subject.business_and_management=Business and Management +controlledvocabulary.subject.chemistry=Chemistry +controlledvocabulary.subject.computer_and_information_science=Computer and Information Science +controlledvocabulary.subject.earth_and_environmental_sciences=Earth and Environmental Sciences +controlledvocabulary.subject.engineering=Engineering +controlledvocabulary.subject.law=Law +controlledvocabulary.subject.mathematical_sciences=Mathematical Sciences +controlledvocabulary.subject.medicine,_health_and_life_sciences=Medicine, Health and Life Sciences +controlledvocabulary.subject.physics=Physics +controlledvocabulary.subject.social_sciences=Social Sciences +controlledvocabulary.subject.other=Other +controlledvocabulary.publicationIDType.ark=ark +controlledvocabulary.publicationIDType.arxiv=arXiv +controlledvocabulary.publicationIDType.bibcode=bibcode +controlledvocabulary.publicationIDType.doi=doi +controlledvocabulary.publicationIDType.ean13=ean13 +controlledvocabulary.publicationIDType.eissn=eissn +controlledvocabulary.publicationIDType.handle=handle +controlledvocabulary.publicationIDType.isbn=isbn +controlledvocabulary.publicationIDType.issn=issn +controlledvocabulary.publicationIDType.istc=istc +controlledvocabulary.publicationIDType.lissn=lissn +controlledvocabulary.publicationIDType.lsid=lsid +controlledvocabulary.publicationIDType.pmid=pmid +controlledvocabulary.publicationIDType.purl=purl +controlledvocabulary.publicationIDType.upc=upc +controlledvocabulary.publicationIDType.url=url +controlledvocabulary.publicationIDType.urn=urn +controlledvocabulary.contributorType.data_collector=Data Collector +controlledvocabulary.contributorType.data_curator=Data Curator +controlledvocabulary.contributorType.data_manager=Data Manager +controlledvocabulary.contributorType.editor=Editor +controlledvocabulary.contributorType.funder=Funder +controlledvocabulary.contributorType.hosting_institution=Hosting Institution +controlledvocabulary.contributorType.project_leader=Project Leader +controlledvocabulary.contributorType.project_manager=Project Manager +controlledvocabulary.contributorType.project_member=Project Member +controlledvocabulary.contributorType.related_person=Related Person +controlledvocabulary.contributorType.researcher=Researcher +controlledvocabulary.contributorType.research_group=Research Group +controlledvocabulary.contributorType.rights_holder=Rights Holder +controlledvocabulary.contributorType.sponsor=Sponsor +controlledvocabulary.contributorType.supervisor=Supervisor +controlledvocabulary.contributorType.work_package_leader=Work Package Leader +controlledvocabulary.contributorType.other=Other +controlledvocabulary.authorIdentifierScheme.orcid=ORCID +controlledvocabulary.authorIdentifierScheme.isni=ISNI +controlledvocabulary.authorIdentifierScheme.lcna=LCNA +controlledvocabulary.authorIdentifierScheme.viaf=VIAF +controlledvocabulary.authorIdentifierScheme.gnd=GND +controlledvocabulary.language.abkhaz=Abkhaz +controlledvocabulary.language.afar=Afar +controlledvocabulary.language.afrikaans=Afrikaans +controlledvocabulary.language.akan=Akan +controlledvocabulary.language.albanian=Albanian +controlledvocabulary.language.amharic=Amharic +controlledvocabulary.language.arabic=Arabic +controlledvocabulary.language.aragonese=Aragonese +controlledvocabulary.language.armenian=Armenian +controlledvocabulary.language.assamese=Assamese +controlledvocabulary.language.avaric=Avaric +controlledvocabulary.language.avestan=Avestan +controlledvocabulary.language.aymara=Aymara +controlledvocabulary.language.azerbaijani=Azerbaijani +controlledvocabulary.language.bambara=Bambara +controlledvocabulary.language.bashkir=Bashkir +controlledvocabulary.language.basque=Basque +controlledvocabulary.language.belarusian=Belarusian +controlledvocabulary.language.bengali,_bangla=Bengali, Bangla +controlledvocabulary.language.bihari=Bihari +controlledvocabulary.language.bislama=Bislama +controlledvocabulary.language.bosnian=Bosnian +controlledvocabulary.language.breton=Breton +controlledvocabulary.language.bulgarian=Bulgarian +controlledvocabulary.language.burmese=Burmese +controlledvocabulary.language.catalan,valencian=Catalan,Valencian +controlledvocabulary.language.chamorro=Chamorro +controlledvocabulary.language.chechen=Chechen +controlledvocabulary.language.chichewa,_chewa,_nyanja=Chichewa, Chewa, Nyanja +controlledvocabulary.language.chinese=Chinese +controlledvocabulary.language.chuvash=Chuvash +controlledvocabulary.language.cornish=Cornish +controlledvocabulary.language.corsican=Corsican +controlledvocabulary.language.cree=Cree +controlledvocabulary.language.croatian=Croatian +controlledvocabulary.language.czech=Czech +controlledvocabulary.language.danish=Danish +controlledvocabulary.language.divehi,_dhivehi,_maldivian=Divehi, Dhivehi, Maldivian +controlledvocabulary.language.dutch=Dutch +controlledvocabulary.language.dzongkha=Dzongkha +controlledvocabulary.language.english=English +controlledvocabulary.language.esperanto=Esperanto +controlledvocabulary.language.estonian=Estonian +controlledvocabulary.language.ewe=Ewe +controlledvocabulary.language.faroese=Faroese +controlledvocabulary.language.fijian=Fijian +controlledvocabulary.language.finnish=Finnish +controlledvocabulary.language.french=French +controlledvocabulary.language.fula,_fulah,_pulaar,_pular=Fula, Fulah, Pulaar, Pular +controlledvocabulary.language.galician=Galician +controlledvocabulary.language.georgian=Georgian +controlledvocabulary.language.german=German +controlledvocabulary.language.greek_(modern)=Greek (modern) +controlledvocabulary.language.guarani=Guaraní +controlledvocabulary.language.gujarati=Gujarati +controlledvocabulary.language.haitian,_haitian_creole=Haitian, Haitian Creole +controlledvocabulary.language.hausa=Hausa +controlledvocabulary.language.hebrew_(modern)=Hebrew (modern) +controlledvocabulary.language.herero=Herero +controlledvocabulary.language.hindi=Hindi +controlledvocabulary.language.hiri_motu=Hiri Motu +controlledvocabulary.language.hungarian=Hungarian +controlledvocabulary.language.interlingua=Interlingua +controlledvocabulary.language.indonesian=Indonesian +controlledvocabulary.language.interlingue=Interlingue +controlledvocabulary.language.irish=Irish +controlledvocabulary.language.igbo=Igbo +controlledvocabulary.language.inupiaq=Inupiaq +controlledvocabulary.language.ido=Ido +controlledvocabulary.language.icelandic=Icelandic +controlledvocabulary.language.italian=Italian +controlledvocabulary.language.inuktitut=Inuktitut +controlledvocabulary.language.japanese=Japanese +controlledvocabulary.language.javanese=Javanese +controlledvocabulary.language.kalaallisut,_greenlandic=Kalaallisut, Greenlandic +controlledvocabulary.language.kannada=Kannada +controlledvocabulary.language.kanuri=Kanuri +controlledvocabulary.language.kashmiri=Kashmiri +controlledvocabulary.language.kazakh=Kazakh +controlledvocabulary.language.khmer=Khmer +controlledvocabulary.language.kikuyu,_gikuyu=Kikuyu, Gikuyu +controlledvocabulary.language.kinyarwanda=Kinyarwanda +controlledvocabulary.language.kyrgyz=Kyrgyz +controlledvocabulary.language.komi=Komi +controlledvocabulary.language.kongo=Kongo +controlledvocabulary.language.korean=Korean +controlledvocabulary.language.kurdish=Kurdish +controlledvocabulary.language.kwanyama,_kuanyama=Kwanyama, Kuanyama +controlledvocabulary.language.latin=Latin +controlledvocabulary.language.luxembourgish,_letzeburgesch=Luxembourgish, Letzeburgesch +controlledvocabulary.language.ganda=Ganda +controlledvocabulary.language.limburgish,_limburgan,_limburger=Limburgish, Limburgan, Limburger +controlledvocabulary.language.lingala=Lingala +controlledvocabulary.language.lao=Lao +controlledvocabulary.language.lithuanian=Lithuanian +controlledvocabulary.language.luba-katanga=Luba-Katanga +controlledvocabulary.language.latvian=Latvian +controlledvocabulary.language.manx=Manx +controlledvocabulary.language.macedonian=Macedonian +controlledvocabulary.language.malagasy=Malagasy +controlledvocabulary.language.malay=Malay +controlledvocabulary.language.malayalam=Malayalam +controlledvocabulary.language.maltese=Maltese +controlledvocabulary.language.maori=M\u0101ori +controlledvocabulary.language.marathi_(marathi)=Marathi (Mar\u0101\u1E6Dh\u012B) +controlledvocabulary.language.marshallese=Marshallese +controlledvocabulary.language.mixtepec_mixtec=Mixtepec Mixtec +controlledvocabulary.language.mongolian=Mongolian +controlledvocabulary.language.nauru=Nauru +controlledvocabulary.language.navajo,_navaho=Navajo, Navaho +controlledvocabulary.language.northern_ndebele=Northern Ndebele +controlledvocabulary.language.nepali=Nepali +controlledvocabulary.language.ndonga=Ndonga +controlledvocabulary.language.norwegian_bokmal=Norwegian Bokmål +controlledvocabulary.language.norwegian_nynorsk=Norwegian Nynorsk +controlledvocabulary.language.norwegian=Norwegian +controlledvocabulary.language.nuosu=Nuosu +controlledvocabulary.language.southern_ndebele=Southern Ndebele +controlledvocabulary.language.occitan=Occitan +controlledvocabulary.language.ojibwe,_ojibwa=Ojibwe, Ojibwa +controlledvocabulary.language.old_church_slavonic,church_slavonic,old_bulgarian=Old Church Slavonic,Church Slavonic,Old Bulgarian +controlledvocabulary.language.oromo=Oromo +controlledvocabulary.language.oriya=Oriya +controlledvocabulary.language.ossetian,_ossetic=Ossetian, Ossetic +controlledvocabulary.language.panjabi,_punjabi=Panjabi, Punjabi +controlledvocabulary.language.pali=P\u0101li +controlledvocabulary.language.persian_(farsi)=Persian (Farsi) +controlledvocabulary.language.polish=Polish +controlledvocabulary.language.pashto,_pushto=Pashto, Pushto +controlledvocabulary.language.portuguese=Portuguese +controlledvocabulary.language.quechua=Quechua +controlledvocabulary.language.romansh=Romansh +controlledvocabulary.language.kirundi=Kirundi +controlledvocabulary.language.romanian=Romanian +controlledvocabulary.language.russian=Russian +controlledvocabulary.language.sanskrit_(samskrta)=Sanskrit (Sa\u1E41sk\u1E5Bta) +controlledvocabulary.language.sardinian=Sardinian +controlledvocabulary.language.sindhi=Sindhi +controlledvocabulary.language.northern_sami=Northern Sami +controlledvocabulary.language.samoan=Samoan +controlledvocabulary.language.sango=Sango +controlledvocabulary.language.serbian=Serbian +controlledvocabulary.language.scottish_gaelic,_gaelic=Scottish Gaelic, Gaelic +controlledvocabulary.language.shona=Shona +controlledvocabulary.language.sinhala,_sinhalese=Sinhala, Sinhalese +controlledvocabulary.language.slovak=Slovak +controlledvocabulary.language.slovene=Slovene +controlledvocabulary.language.somali=Somali +controlledvocabulary.language.southern_sotho=Southern Sotho +controlledvocabulary.language.spanish,_castilian=Spanish, Castilian +controlledvocabulary.language.sundanese=Sundanese +controlledvocabulary.language.swahili=Swahili +controlledvocabulary.language.swati=Swati +controlledvocabulary.language.swedish=Swedish +controlledvocabulary.language.tamil=Tamil +controlledvocabulary.language.telugu=Telugu +controlledvocabulary.language.tajik=Tajik +controlledvocabulary.language.thai=Thai +controlledvocabulary.language.tigrinya=Tigrinya +controlledvocabulary.language.tibetan_standard,_tibetan,_central=Tibetan Standard, Tibetan, Central +controlledvocabulary.language.turkmen=Turkmen +controlledvocabulary.language.tagalog=Tagalog +controlledvocabulary.language.tswana=Tswana +controlledvocabulary.language.tonga_(tonga_islands)=Tonga (Tonga Islands) +controlledvocabulary.language.turkish=Turkish +controlledvocabulary.language.tsonga=Tsonga +controlledvocabulary.language.tatar=Tatar +controlledvocabulary.language.twi=Twi +controlledvocabulary.language.tahitian=Tahitian +controlledvocabulary.language.uyghur,_uighur=Uyghur, Uighur +controlledvocabulary.language.ukrainian=Ukrainian +controlledvocabulary.language.urdu=Urdu +controlledvocabulary.language.uzbek=Uzbek +controlledvocabulary.language.venda=Venda +controlledvocabulary.language.vietnamese=Vietnamese +controlledvocabulary.language.volapuk=Volapük +controlledvocabulary.language.walloon=Walloon +controlledvocabulary.language.welsh=Welsh +controlledvocabulary.language.wolof=Wolof +controlledvocabulary.language.western_frisian=Western Frisian +controlledvocabulary.language.xhosa=Xhosa +controlledvocabulary.language.yiddish=Yiddish +controlledvocabulary.language.yoruba=Yoruba +controlledvocabulary.language.zhuang,_chuang=Zhuang, Chuang +controlledvocabulary.language.zulu=Zulu +controlledvocabulary.language.not_applicable=Not applicable \ No newline at end of file diff --git a/src/main/java/citation_fr.properties b/src/main/java/citation_fr.properties new file mode 100644 index 00000000000..bfa135e8bc9 --- /dev/null +++ b/src/main/java/citation_fr.properties @@ -0,0 +1,475 @@ +metadatablock.name=citation +metadatablock.displayName=Métadonnées de la référence bibliographique +datasetfieldtype.title.title=Titre +datasetfieldtype.subtitle.title=Sous-titre +datasetfieldtype.alternativeTitle.title=Autre titre +datasetfieldtype.alternativeURL.title=Autre URL +datasetfieldtype.otherId.title=Autre identifiant +datasetfieldtype.otherIdAgency.title=Organisme +datasetfieldtype.otherIdValue.title=Identifiant +datasetfieldtype.author.title=Auteur +datasetfieldtype.authorName.title=Nom +datasetfieldtype.authorAffiliation.title=Affiliation +datasetfieldtype.authorIdentifierScheme.title=Schéma de l'identifiant +datasetfieldtype.authorIdentifier.title=Identifiant +datasetfieldtype.datasetContact.title=Personne-ressource +datasetfieldtype.datasetContactName.title=Nom +datasetfieldtype.datasetContactAffiliation.title=Affiliation +datasetfieldtype.datasetContactEmail.title=Courriel +datasetfieldtype.dsDescription.title=Description +datasetfieldtype.dsDescriptionValue.title=Texte +datasetfieldtype.dsDescriptionDate.title=Date +datasetfieldtype.subject.title=Sujet +datasetfieldtype.keyword.title=Mot-clé +datasetfieldtype.keywordValue.title=Terme +datasetfieldtype.keywordVocabulary.title=Vocabulaire +datasetfieldtype.keywordVocabularyURI.title=Adresse URL du vocabulaire +datasetfieldtype.topicClassification.title=Classification des sujets +datasetfieldtype.topicClassValue.title=Terme +datasetfieldtype.topicClassVocab.title=Vocabulaire +datasetfieldtype.topicClassVocabURI.title=Adresse URL du vocabulaire +datasetfieldtype.publication.title=Publication connexe +datasetfieldtype.publicationCitation.title=Référence +datasetfieldtype.publicationIDType.title=Type d'identifiant +datasetfieldtype.publicationIDNumber.title=Numéro d'identification +datasetfieldtype.publicationURL.title=Adresse URL +datasetfieldtype.notesText.title=Remarques +datasetfieldtype.language.title=Langue +datasetfieldtype.producer.title=Producteur +datasetfieldtype.producerName.title=Nom +datasetfieldtype.producerAffiliation.title=Affiliation +datasetfieldtype.producerAbbreviation.title=Abréviation +datasetfieldtype.producerURL.title=Adresse URL +datasetfieldtype.producerLogoURL.title=Adresse URL du logo +datasetfieldtype.productionDate.title=Date de production +datasetfieldtype.productionPlace.title=Endroit de production +datasetfieldtype.contributor.title=Collaborateur +datasetfieldtype.contributorType.title=Type +datasetfieldtype.contributorName.title=Nom +datasetfieldtype.grantNumber.title=Renseignements sur la subvention +datasetfieldtype.grantNumberAgency.title=Organisme subventionnaire +datasetfieldtype.grantNumberValue.title=Numéro de la subvention +datasetfieldtype.distributor.title=Diffuseur +datasetfieldtype.distributorName.title=Nom +datasetfieldtype.distributorAffiliation.title=Affiliation +datasetfieldtype.distributorAbbreviation.title=Abréviation +datasetfieldtype.distributorURL.title=Adresse URL +datasetfieldtype.distributorLogoURL.title=Adresse URL du logo +datasetfieldtype.distributionDate.title=Date de disponibilité +datasetfieldtype.depositor.title=Déposant +datasetfieldtype.dateOfDeposit.title=Date de dépôt +datasetfieldtype.timePeriodCovered.title=Période couverte +datasetfieldtype.timePeriodCoveredStart.title=Début +datasetfieldtype.timePeriodCoveredEnd.title=Fin +datasetfieldtype.dateOfCollection.title=Date de la collecte +datasetfieldtype.dateOfCollectionStart.title=Début +datasetfieldtype.dateOfCollectionEnd.title=Fin +datasetfieldtype.kindOfData.title=Type de données +datasetfieldtype.series.title=Série +datasetfieldtype.seriesName.title=Nom +datasetfieldtype.seriesInformation.title=Renseignements +datasetfieldtype.software.title=Logiciel +datasetfieldtype.softwareName.title=Nom +datasetfieldtype.softwareVersion.title=Version +datasetfieldtype.relatedMaterial.title=Document connexe +datasetfieldtype.relatedDatasets.title=Ensembles de données connexes +datasetfieldtype.otherReferences.title=Autres références +datasetfieldtype.dataSources.title=Sources de données +datasetfieldtype.originOfSources.title=Origine des sources +datasetfieldtype.characteristicOfSources.title=Caractéristiques des sources notées +datasetfieldtype.accessToSources.title=Documentation et accès aux sources +datasetfieldtype.title.description=Titre complet sous lequel l'ensemble de données est connu. +datasetfieldtype.subtitle.description=Un titre secondaire utilisé pour amplifier ou énoncer certaines limites du titre principal. +datasetfieldtype.alternativeTitle.description=Un titre sous lequel le travail est communément appelé ou une abréviation du titre. +datasetfieldtype.alternativeURL.description=Une adresse URL où l'ensemble de données peut être consulté, tel un site web personnel ou de projet. +datasetfieldtype.otherId.description=Un autre identifiant unique qui identifie cet ensemble de données (p. ex. le numéro du producteur ou d'un autre dépôt). +datasetfieldtype.otherIdAgency.description=Nom de l'organisme qui a généré cet identifiant +datasetfieldtype.otherIdValue.description=Autre identifiant qui correspond à cet ensemble de données. +datasetfieldtype.author.description=Les personnes, personnes morales ou organismes qui ont créé le travail. +datasetfieldtype.authorName.description=Le nom ou le prénom de l'auteur ou le nom de l'organisation responsable de cet ensemble de données. +datasetfieldtype.authorAffiliation.description=L'organisme avec lequel l'auteur est affilié. +datasetfieldtype.authorIdentifierScheme.description=Nom du schéma de l'identifiant (ORCID, ISNI). +datasetfieldtype.authorIdentifier.description=Identifie de façon unique un auteur individuel ou une organisation selon divers schémas. +datasetfieldtype.datasetContact.description=La ou les personnes-ressources pour cet ensemble de données. +datasetfieldtype.datasetContactName.description=Le nom ou le prénom de la personne-ressource ou le nom de l'organisation. +datasetfieldtype.datasetContactAffiliation.description=L'organisation avec laquelle la personne-ressource est affiliée. +datasetfieldtype.datasetContactEmail.description=L'adresse courriel du ou des personnes-ressources pour l'ensemble de données. Ces renseignements ne seront pas affichés. +datasetfieldtype.dsDescription.description=Un résumé décrivant l'objet, la nature et la portée de l'ensemble de données. +datasetfieldtype.dsDescriptionValue.description=Un résumé décrivant l'objet, la nature et la portée de l'ensemble de données +datasetfieldtype.dsDescriptionDate.description=Dans les cas où un ensemble de données contient plus d'une description (par exemple, une peut être fournie par le producteur de données et une autre peut être préparée par le dépôt de données où les données sont déposées), la date à laquelle l'attribut est utilisé pour faire la distinction entre deux descriptions. La date de l'attribut respecte la convention de l'ISO AAAA-MM-JJ. +datasetfieldtype.subject.description=Catégories de sujets propres aux domaines qui sont pertinents du point de vue du sujet à l'ensemble de données. +datasetfieldtype.keyword.description=Les mots-clés qui décrivent les aspects importants de l'ensemble de données. +datasetfieldtype.keywordValue.description=Les termes-clés qui décrivent les aspects importants de l'ensemble de données. Ils peuvent servir à créer des index de mots-clés et être utilisés aux fins de classification et de récupération. Un vocabulaire contrôlé peut être utilisé. L'attribut «\u00A0vocab\u00A0» permet de préciser le type de vocabulaire contrôlé utilisé, p. ex., LCSH, MeSH ou autres. L'attribut «\u00A0vocabURI\u00A0» précise l'emplacement du vocabulaire contrôlé complet. +datasetfieldtype.keywordVocabulary.description=Pour préciser le type de vocabulaire contrôlé par mot-clé utilisé, p. ex., LCSH, MeSH ou autres. +datasetfieldtype.keywordVocabularyURI.description=Le cas échéant, adresse URL où est décrit le vocabulaire de mots-clés utilisé. Indiquer une adresse URL absolue, par exemple http://www.my.org. +datasetfieldtype.topicClassification.description=Le champ classification indique les sujets et thèmes généraux importants couverts par les données. La classification de la Library of Congress peut être utilisée. +datasetfieldtype.topicClassValue.description=Terme décrivant un thème ou un sujet couvert par cet ensemble de données. +datasetfieldtype.topicClassVocab.description=Pour préciser le type de vocabulaire contrôlé utilisé, p. ex., LCSH, MeSH ou autres. +datasetfieldtype.topicClassVocabURI.description=Précise l'adresse URL de la liste complète du vocabulaire contrôlé. +datasetfieldtype.publication.description=Les publications qui utilisent les données provenant de cet ensemble de données. +datasetfieldtype.publicationCitation.description=La référence bibliographique complète de cette publication connexe. +datasetfieldtype.publicationIDType.description=Le type d'identifiant numérique utilisé pour cette publication (p. ex. identificateur d'objet numérique (DOI)). +datasetfieldtype.publicationIDNumber.description=L'identifiant du type d'identification sélectionné. +datasetfieldtype.publicationURL.description=Lien vers la page Web de la publication (p. ex. page de l'article paru dans une revue, notice du dépôt ou autre). +datasetfieldtype.notesText.description=Autres renseignements importants sur l'ensemble de données. +datasetfieldtype.language.description=Langue de l'ensemble de données +datasetfieldtype.producer.description=Personne ou organisation qui détient la responsabilité financière ou administrative de cet ensemble de données. +datasetfieldtype.producerName.description=Nom du producteur +datasetfieldtype.producerAffiliation.description=L'organisation avec laquelle le producteur est affilié. +datasetfieldtype.producerAbbreviation.description=L'abréviation sous laquelle le producteur est communément connu (p. ex. IQSS, ICPSR). +datasetfieldtype.producerURL.description=L'adresse URL du producteur indique la présence sur le Web du producteur, le cas échéant. Indiquer une adresse URL absolue où le site Web du producteur se trouve, par exemple http://www.my.org. +datasetfieldtype.producerLogoURL.description=Adresse URL du logo du producteur qui pointe vers le logo accessible sur le Web. Indiquer une adresse URL absolue où l'image se trouve, par exemple http://www.my.org/images/logo.gif. +datasetfieldtype.productionDate.description=Date à laquelle la collecte de données ou d'autres documents ont été produits (non distribués, publiés ou archivés). +datasetfieldtype.productionPlace.description=L'emplacement où la collecte de données et autres documents connexes ont été produits. +datasetfieldtype.contributor.description=L'organisation ou la personne responsable de la collecte ou de la gestion d'une ressource, ou contribuant autrement à son développement. +datasetfieldtype.contributorType.description=Le type de collaborateur à la ressource. +datasetfieldtype.contributorName.description=Le nom du collaborateur (nom, prénom ou nom de l'organisation) +datasetfieldtype.grantNumber.description=Renseignements sur la subvention +datasetfieldtype.grantNumberAgency.description=Organisme - numéro de la subvention +datasetfieldtype.grantNumberValue.description=Le numéro de subvention ou de contrat lié au financement. +datasetfieldtype.distributor.description=L'organisation désignée par l'auteur ou le producteur pour la mise en disponibilité de copies d'un travail particulier, y compris toute édition ou révision. +datasetfieldtype.distributorName.description=Nom du diffuseur +datasetfieldtype.distributorAffiliation.description=L'organisation avec laquelle la personne-ressource du diffuseur est affiliée. +datasetfieldtype.distributorAbbreviation.description=L'abréviation sous laquelle le diffuseur est communément connu (p. ex. IQSS, ICPSR). +datasetfieldtype.distributorURL.description=L'adresse URL du diffuseur indique la présence sur le Web du diffuseur, le cas échéant. Indiquer une adresse URL absolue où le site Web du diffuseur se trouve, par exemple http://www.my.org. +datasetfieldtype.distributorLogoURL.description=Adresse URL du logo du diffuseur qui pointe vers l'image Web accessible de ce logo. Indiquer une adresse URL absolue où l'image se trouve, par exemple http://www.my.org/images/logo.gif. +datasetfieldtype.distributionDate.description=Date à laquelle les travaux ont été rendus disponibles aux fins de diffusion/présentation. +datasetfieldtype.depositor.description=La personne (nom, prénom) ou le nom de l'organisation qui a déposé cet ensemble de données dans le dépôt. +datasetfieldtype.dateOfDeposit.description=Date à laquelle l'ensemble de données a été déposé dans le dépôt. +datasetfieldtype.timePeriodCovered.description=Période à laquelle les données se rapportent. Ceci fait référence à la période couverte par les données et non aux dates de codage ou de création des fichiers ou aux dates de collecte des données. Aussi appelé l'étendue. +datasetfieldtype.timePeriodCoveredStart.description=Date de début qui correspond à la période couverte par les données et non aux dates de codage ou de création des fichiers ou aux dates de collecte des données. +datasetfieldtype.timePeriodCoveredEnd.description=Date de fin qui correspond à la période couverte par les données et non aux dates de codage ou de création des fichiers ou aux dates de collecte des données. +datasetfieldtype.dateOfCollection.description=Comprend la date à laquelle les données ont été recueillies. +datasetfieldtype.dateOfCollectionStart.description=Date à laquelle la collecte de données a débuté. +datasetfieldtype.dateOfCollectionEnd.description=Date à laquelle la collecte de données a pris fin. +datasetfieldtype.kindOfData.description=Le type de données incluses dans le fichier : données d'enquête, données de recensement, données agrégées, données cliniques, données issues de transactions, code source de programme, texte lisible par machine, données de dossiers administratifs, données expérimentales, test psychologique, données textuelles, texte codé, document codé, calendriers de vérification, données d'observation, données produites par traitement ou autres. +datasetfieldtype.series.description=Renseignements sur la série d'ensembles de données +datasetfieldtype.seriesName.description=Nom de la série de l'ensemble de données à laquelle l'ensemble de données appartient. +datasetfieldtype.seriesInformation.description=Historique de la série et résumé des caractéristiques qui s'appliquent à la série dans son ensemble. +datasetfieldtype.software.description=Renseignements sur le logiciel utilisé pour générer l'ensemble de données. +datasetfieldtype.softwareName.description=Nom du logiciel utilisé pour générer l'ensemble de données. +datasetfieldtype.softwareVersion.description=Version du logiciel utilisé pour générer l'ensemble de données. +datasetfieldtype.relatedMaterial.description=Tout document lié à cet ensemble de données. +datasetfieldtype.relatedDatasets.description=Tout ensemble de données lié à cet ensemble de données, comme la recherche précédente sur ce sujet. +datasetfieldtype.otherReferences.description=Toute référence qui servira de contexte ou de document de soutien pour cet ensemble de données. +datasetfieldtype.dataSources.description=Liste des livres, articles, séries ou fichiers de données lisibles par machine qui ont servi de sources pour la collecte de données. +datasetfieldtype.originOfSources.description=En ce qui concerne les documents historiques, les renseignements sur l'origine des sources et les règles suivies dans l'établissement des sources doivent être indiqués. +datasetfieldtype.characteristicOfSources.description=Évaluation et caractéristiques des sources de données. +datasetfieldtype.accessToSources.description=Niveau de documentation des sources originales +datasetfieldtype.title.watermark=Entrer le titre\u2026 +datasetfieldtype.subtitle.watermark= +datasetfieldtype.alternativeTitle.watermark= +datasetfieldtype.alternativeURL.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.otherId.watermark= +datasetfieldtype.otherIdAgency.watermark= +datasetfieldtype.otherIdValue.watermark= +datasetfieldtype.author.watermark= +datasetfieldtype.authorName.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.authorAffiliation.watermark= +datasetfieldtype.authorIdentifierScheme.watermark= +datasetfieldtype.authorIdentifier.watermark= +datasetfieldtype.datasetContact.watermark= +datasetfieldtype.datasetContactName.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.datasetContactAffiliation.watermark= +datasetfieldtype.datasetContactEmail.watermark= +datasetfieldtype.dsDescription.watermark= +datasetfieldtype.dsDescriptionValue.watermark= +datasetfieldtype.dsDescriptionDate.watermark=AAAA-MM-JJ +datasetfieldtype.subject.watermark= +datasetfieldtype.keyword.watermark= +datasetfieldtype.keywordValue.watermark= +datasetfieldtype.keywordVocabulary.watermark= +datasetfieldtype.keywordVocabularyURI.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.topicClassification.watermark= +datasetfieldtype.topicClassValue.watermark= +datasetfieldtype.topicClassVocab.watermark= +datasetfieldtype.topicClassVocabURI.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.publication.watermark= +datasetfieldtype.publicationCitation.watermark= +datasetfieldtype.publicationIDType.watermark= +datasetfieldtype.publicationIDNumber.watermark= +datasetfieldtype.publicationURL.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.notesText.watermark= +datasetfieldtype.language.watermark= +datasetfieldtype.producer.watermark= +datasetfieldtype.producerName.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.producerAffiliation.watermark= +datasetfieldtype.producerAbbreviation.watermark= +datasetfieldtype.producerURL.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.producerLogoURL.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.productionDate.watermark=AAAA-MM-JJ +datasetfieldtype.productionPlace.watermark= +datasetfieldtype.contributor.watermark= +datasetfieldtype.contributorType.watermark= +datasetfieldtype.contributorName.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.grantNumber.watermark= +datasetfieldtype.grantNumberAgency.watermark= +datasetfieldtype.grantNumberValue.watermark= +datasetfieldtype.distributor.watermark= +datasetfieldtype.distributorName.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.distributorAffiliation.watermark= +datasetfieldtype.distributorAbbreviation.watermark= +datasetfieldtype.distributorURL.watermark=Entrer l'adresse URL complète commençant par http:// +datasetfieldtype.distributorLogoURL.watermark=Entrer l'adresse URL complète de l'image commençant par http:// +datasetfieldtype.distributionDate.watermark=AAAA-MM-JJ +datasetfieldtype.depositor.watermark= +datasetfieldtype.dateOfDeposit.watermark=AAAA-MM-JJ +datasetfieldtype.timePeriodCovered.watermark= +datasetfieldtype.timePeriodCoveredStart.watermark=AAAA-MM-JJ +datasetfieldtype.timePeriodCoveredEnd.watermark=AAAA-MM-JJ +datasetfieldtype.dateOfCollection.watermark= +datasetfieldtype.dateOfCollectionStart.watermark=AAAA-MM-JJ +datasetfieldtype.dateOfCollectionEnd.watermark=AAAA-MM-JJ +datasetfieldtype.kindOfData.watermark= +datasetfieldtype.series.watermark= +datasetfieldtype.seriesName.watermark= +datasetfieldtype.seriesInformation.watermark= +datasetfieldtype.software.watermark= +datasetfieldtype.softwareName.watermark= +datasetfieldtype.softwareVersion.watermark= +datasetfieldtype.relatedMaterial.watermark= +datasetfieldtype.relatedDatasets.watermark= +datasetfieldtype.otherReferences.watermark= +datasetfieldtype.dataSources.watermark= +datasetfieldtype.originOfSources.watermark= +datasetfieldtype.characteristicOfSources.watermark= +datasetfieldtype.accessToSources.watermark= +controlledvocabulary.subject.agricultural_sciences=Sciences de l'agriculture +controlledvocabulary.subject.arts_and_humanities=Arts et sciences humaines +controlledvocabulary.subject.astronomy_and_astrophysics=Astronomie et astrophysique +controlledvocabulary.subject.business_and_management=Affaires et gestion +controlledvocabulary.subject.chemistry=Chimie +controlledvocabulary.subject.computer_and_information_science=Informatique et science de l'information +controlledvocabulary.subject.earth_and_environmental_sciences=Sciences de la terre et de l'environnement +controlledvocabulary.subject.engineering=Génie +controlledvocabulary.subject.law=Droit +controlledvocabulary.subject.mathematical_sciences=Sciences mathématiques +controlledvocabulary.subject.medicine,_health_and_life_sciences=Médecine, santé et sciences de la vie +controlledvocabulary.subject.physics=Physique +controlledvocabulary.subject.social_sciences=Sciences sociales +controlledvocabulary.subject.other=Autre +controlledvocabulary.publicationIDType.ark=ark +controlledvocabulary.publicationIDType.arxiv=arXiv +controlledvocabulary.publicationIDType.bibcode=bibcode +controlledvocabulary.publicationIDType.doi=doi +controlledvocabulary.publicationIDType.ean13=ean13 +controlledvocabulary.publicationIDType.eissn=eissn +controlledvocabulary.publicationIDType.handle=handle +controlledvocabulary.publicationIDType.isbn=isbn +controlledvocabulary.publicationIDType.issn=issn +controlledvocabulary.publicationIDType.istc=istc +controlledvocabulary.publicationIDType.lissn=lissn +controlledvocabulary.publicationIDType.lsid=lsid +controlledvocabulary.publicationIDType.pmid=pmid +controlledvocabulary.publicationIDType.purl=purl +controlledvocabulary.publicationIDType.upc=upc +controlledvocabulary.publicationIDType.url=url +controlledvocabulary.publicationIDType.urn=urn +controlledvocabulary.contributorType.data_collector=Chargé de la collecte de données +controlledvocabulary.contributorType.data_curator=Intendant des données +controlledvocabulary.contributorType.data_manager=Gestionnaire de données +controlledvocabulary.contributorType.editor=Éditeur +controlledvocabulary.contributorType.funder=Bailleur de fonds +controlledvocabulary.contributorType.hosting_institution=Établissement hôte +controlledvocabulary.contributorType.project_leader=Chef de projet +controlledvocabulary.contributorType.project_manager=Gestionnaire de projet +controlledvocabulary.contributorType.project_member=Membre du projet +controlledvocabulary.contributorType.related_person=Personne liée +controlledvocabulary.contributorType.researcher=Chercheur +controlledvocabulary.contributorType.research_group=Groupe de recherche +controlledvocabulary.contributorType.rights_holder=Détenteur de droits +controlledvocabulary.contributorType.sponsor=Commanditaire +controlledvocabulary.contributorType.supervisor=Superviseur +controlledvocabulary.contributorType.work_package_leader=Chef d'un bloc de tâches +controlledvocabulary.contributorType.other=Autre +controlledvocabulary.authorIdentifierScheme.orcid=ORCID +controlledvocabulary.authorIdentifierScheme.isni=ISNI +controlledvocabulary.authorIdentifierScheme.lcna=LCNA +controlledvocabulary.authorIdentifierScheme.viaf=VIAF +controlledvocabulary.authorIdentifierScheme.gnd=GND +controlledvocabulary.language.abkhaz=Abkhaz +controlledvocabulary.language.afar=Afar +controlledvocabulary.language.afrikaans=Afrikaans +controlledvocabulary.language.akan=Akan +controlledvocabulary.language.albanian=Albanais +controlledvocabulary.language.amharic=Amharique +controlledvocabulary.language.arabic=Arabe +controlledvocabulary.language.aragonese=Aragonais +controlledvocabulary.language.armenian=Arménien +controlledvocabulary.language.assamese=Assamais +controlledvocabulary.language.avaric=Avar +controlledvocabulary.language.avestan=Avesta +controlledvocabulary.language.aymara=Aïmara +controlledvocabulary.language.azerbaijani=Azerbaïdjanais +controlledvocabulary.language.bambara=Bambara +controlledvocabulary.language.bashkir=Bachkir +controlledvocabulary.language.basque=Basque +controlledvocabulary.language.belarusian=Biélorusse +controlledvocabulary.language.bengali,_bangla=Bengali, bangla +controlledvocabulary.language.bihari=Magahi +controlledvocabulary.language.bislama=Bislama +controlledvocabulary.language.bosnian=Bosnien +controlledvocabulary.language.breton=Breton +controlledvocabulary.language.bulgarian=Bulgare +controlledvocabulary.language.burmese=Birman +controlledvocabulary.language.catalan,valencian=Catalan, valencien +controlledvocabulary.language.chamorro=Chamorro +controlledvocabulary.language.chechen=Tchétchène +controlledvocabulary.language.chichewa,_chewa,_nyanja=Chewa, cewa, nyanja +controlledvocabulary.language.chinese=Mandarin, chinois +controlledvocabulary.language.chuvash=Tchouvache +controlledvocabulary.language.cornish=Cornique +controlledvocabulary.language.corsican=Corse +controlledvocabulary.language.cree=Cri +controlledvocabulary.language.croatian=Croate +controlledvocabulary.language.czech=Tchèque +controlledvocabulary.language.danish=Danois +controlledvocabulary.language.divehi,_dhivehi,_maldivian=Divehi, maldivian +controlledvocabulary.language.dutch=Hollandais, néerlandais +controlledvocabulary.language.dzongkha=Dzonga +controlledvocabulary.language.english=Anglais +controlledvocabulary.language.esperanto=Espéranto +controlledvocabulary.language.estonian=Estonien +controlledvocabulary.language.ewe=Éwé +controlledvocabulary.language.faroese=Féroïen +controlledvocabulary.language.fijian=Fidjien +controlledvocabulary.language.finnish=Finnois, finlandais +controlledvocabulary.language.french=Français +controlledvocabulary.language.fula,_fulah,_pulaar,_pular=Fulfulde, foulani, pulaar +controlledvocabulary.language.galician=Galicien +controlledvocabulary.language.georgian=Géorgien +controlledvocabulary.language.german=Allemand +controlledvocabulary.language.greek_(modern)=Grec (moderne) +controlledvocabulary.language.guarani=Guarani +controlledvocabulary.language.gujarati=Gujarati +controlledvocabulary.language.haitian,_haitian_creole=Haïtien, créole haïtien +controlledvocabulary.language.hausa=Haoussa +controlledvocabulary.language.hebrew_(modern)=Hébreu (moderne) +controlledvocabulary.language.herero=Herero +controlledvocabulary.language.hindi=Hindi +controlledvocabulary.language.hiri_motu=Hiri-motu +controlledvocabulary.language.hungarian=Hongrois +controlledvocabulary.language.interlingua=Interlingua +controlledvocabulary.language.indonesian=Indonésien +controlledvocabulary.language.interlingue=Interlingue +controlledvocabulary.language.irish=Irlandais +controlledvocabulary.language.igbo=Igbo +controlledvocabulary.language.inupiaq=Inupiaq +controlledvocabulary.language.ido=Ido +controlledvocabulary.language.icelandic=Islandais +controlledvocabulary.language.italian=Italien +controlledvocabulary.language.inuktitut=Inuktitut +controlledvocabulary.language.japanese=Japonais +controlledvocabulary.language.javanese=Javanais +controlledvocabulary.language.kalaallisut,_greenlandic=Groenlandais +controlledvocabulary.language.kannada=Kannada +controlledvocabulary.language.kanuri=Kanuri +controlledvocabulary.language.kashmiri=Kashmiri +controlledvocabulary.language.kazakh=Kazakh +controlledvocabulary.language.khmer=Khmer, cambodgien +controlledvocabulary.language.kikuyu,_gikuyu=Kikuyu, gikuyu +controlledvocabulary.language.kinyarwanda=Kinyarwanda +controlledvocabulary.language.kyrgyz=Kirghiz +controlledvocabulary.language.komi=Komi +controlledvocabulary.language.kongo=Kikongo +controlledvocabulary.language.korean=Coréen +controlledvocabulary.language.kurdish=Kurde +controlledvocabulary.language.kwanyama,_kuanyama=Ovambo, cuanhama +controlledvocabulary.language.latin=Latin +controlledvocabulary.language.luxembourgish,_letzeburgesch=Luxembourgeois +controlledvocabulary.language.ganda=Ganda +controlledvocabulary.language.limburgish,_limburgan,_limburger=Limbourgeois, +controlledvocabulary.language.lingala=Lingala +controlledvocabulary.language.lao=Lao +controlledvocabulary.language.lithuanian=Lituanien +controlledvocabulary.language.luba-katanga=Luba-Katanga +controlledvocabulary.language.latvian=Letton +controlledvocabulary.language.manx=Manx +controlledvocabulary.language.macedonian=Macédonien +controlledvocabulary.language.malagasy=Malgache +controlledvocabulary.language.malay=Malais +controlledvocabulary.language.malayalam=Malayalam +controlledvocabulary.language.maltese=Maltais +controlledvocabulary.language.maori=Maori +controlledvocabulary.language.marathi_(marathi)=Marathi (Mar\u0101\u1E6Dh\u012B) +controlledvocabulary.language.marshallese=Marshallais +controlledvocabulary.language.mixtepec_mixtec=Mixtepec Mixtec +controlledvocabulary.language.mongolian=Mongol +controlledvocabulary.language.nauru=Nauru +controlledvocabulary.language.navajo,_navaho=Navaho +controlledvocabulary.language.northern_ndebele=Ndébélé du Nord +controlledvocabulary.language.nepali=Népalais +controlledvocabulary.language.ndonga=Ndonga +controlledvocabulary.language.norwegian_bokmal=Bokmal +controlledvocabulary.language.norwegian_nynorsk=Néonorvégien +controlledvocabulary.language.norwegian=Norvégien +controlledvocabulary.language.nuosu=Nuosu +controlledvocabulary.language.southern_ndebele=Ndébélé du Sud +controlledvocabulary.language.occitan=Occitan +controlledvocabulary.language.ojibwe,_ojibwa=Ojibwé, ojibwa +controlledvocabulary.language.old_church_slavonic,church_slavonic,old_bulgarian=Slavon liturgique, slavon d'église, vieux bulgare +controlledvocabulary.language.oromo=Oromo +controlledvocabulary.language.oriya=Oriya +controlledvocabulary.language.ossetian,_ossetic=Ossète +controlledvocabulary.language.panjabi,_punjabi=Pendjabi +controlledvocabulary.language.pali=Pali +controlledvocabulary.language.persian_(farsi)=Persan (dari) +controlledvocabulary.language.polish=Polonais +controlledvocabulary.language.pashto,_pushto=Pachto +controlledvocabulary.language.portuguese=Portugais +controlledvocabulary.language.quechua=Quechua +controlledvocabulary.language.romansh=Romanche +controlledvocabulary.language.kirundi=Kiroundi +controlledvocabulary.language.romanian=Roumain +controlledvocabulary.language.russian=Russe +controlledvocabulary.language.sanskrit_(samskrta)=Sanskrit (Sa\u1E41sk\u1E5Bta) +controlledvocabulary.language.sardinian=Sarde +controlledvocabulary.language.sindhi=Sindhi +controlledvocabulary.language.northern_sami=Lapon du Nord +controlledvocabulary.language.samoan=Samoan +controlledvocabulary.language.sango=Sango +controlledvocabulary.language.serbian=Serbe +controlledvocabulary.language.scottish_gaelic,_gaelic=Gaélique d'Écosse, gaélique +controlledvocabulary.language.shona=Shona +controlledvocabulary.language.sinhala,_sinhalese=Singhalais, cinghalais +controlledvocabulary.language.slovak=Slovaque +controlledvocabulary.language.slovene=Slovène +controlledvocabulary.language.somali=Somali +controlledvocabulary.language.southern_sotho=Sotho du Sud +controlledvocabulary.language.spanish,_castilian=Espagnol, castillan +controlledvocabulary.language.sundanese=Soundanais +controlledvocabulary.language.swahili=Swahili +controlledvocabulary.language.swati=Swati +controlledvocabulary.language.swedish=Suédois +controlledvocabulary.language.tamil=Tamoul +controlledvocabulary.language.telugu=Télougou +controlledvocabulary.language.tajik=Tadjik +controlledvocabulary.language.thai=Thaï +controlledvocabulary.language.tigrinya=Tigrigna +controlledvocabulary.language.tibetan_standard,_tibetan,_central=Tibétain standard, tibétain central +controlledvocabulary.language.turkmen=Türkmène +controlledvocabulary.language.tagalog=Tagalog +controlledvocabulary.language.tswana=Bechouana +controlledvocabulary.language.tonga_(tonga_islands)=Tonga (Tonga) +controlledvocabulary.language.turkish=Turc +controlledvocabulary.language.tsonga=Tsonga +controlledvocabulary.language.tatar=Tatar +controlledvocabulary.language.twi=Akuapem-twi +controlledvocabulary.language.tahitian=Tahitien +controlledvocabulary.language.uyghur,_uighur=Ouïghour, uygur +controlledvocabulary.language.ukrainian=Ukrainien +controlledvocabulary.language.urdu=Urdu +controlledvocabulary.language.uzbek=Ouzbek +controlledvocabulary.language.venda=Venda +controlledvocabulary.language.vietnamese=Vietnamien +controlledvocabulary.language.volapuk=Volapük +controlledvocabulary.language.walloon=Walloon +controlledvocabulary.language.welsh=Gallois +controlledvocabulary.language.wolof=Yolof +controlledvocabulary.language.western_frisian=Frison de l'Ouest +controlledvocabulary.language.xhosa=Xhosa +controlledvocabulary.language.yiddish=Yiddish +controlledvocabulary.language.yoruba=Yoruba +controlledvocabulary.language.zhuang,_chuang=Zhuang, chuang +controlledvocabulary.language.zulu=Zoulou +controlledvocabulary.language.not_applicable=Sans objet \ No newline at end of file diff --git a/src/main/java/customARCS.properties b/src/main/java/customARCS.properties new file mode 100644 index 00000000000..e6665b94e64 --- /dev/null +++ b/src/main/java/customARCS.properties @@ -0,0 +1,29 @@ +metadatablock.name=customARCS +metadatablock.displayName=Alliance for Research on Corporate Sustainability Metadata +datasetfieldtype.ARCS1.title=1) Were any of these data sets a) purchased, b) obtained through licensed databases, or c) provided by an organization under a nondisclosure or other agreement? +datasetfieldtype.ARCS2.title=2) If you responded Yes to Q1, have you ensured that sharing the data does not violate terms of the agreement? If you responded No to Q1, please enter N/A here. +datasetfieldtype.ARCS3.title=3) Do any of these data sets include individual-level data (either collected or pre-existing in the dataset) that might make them subject to U.S. or international human subjects considerations? +datasetfieldtype.ARCS4.title=4) If you responded Yes to Q3, are these data sets totally de-identified or was sharing approved by your institutional review board ( IRB)? If you responded No to Q3 please enter N/A here. +datasetfieldtype.ARCS5.title=5) Do these datasets contain sensitive or personally identifiable private information? (Harvard Research Data Security Policy {www.security.harvard.edu/research-data-security-policy} may apply because this Dataverse is hosted by Harvard University.) +datasetfieldtype.ARCS1.description=Licensed agreement of deposited data. +datasetfieldtype.ARCS2.description=Data sharing does not violate terms. +datasetfieldtype.ARCS3.description=Human subjects consideration. +datasetfieldtype.ARCS4.description=Deidentified data/sharing approved by IRB. +datasetfieldtype.ARCS5.description=Data contain sensitive/identifiable private information. +datasetfieldtype.ARCS1.watermark= +datasetfieldtype.ARCS2.watermark= +datasetfieldtype.ARCS3.watermark= +datasetfieldtype.ARCS4.watermark= +datasetfieldtype.ARCS5.watermark= +controlledvocabulary.ARCS1.no=No +controlledvocabulary.ARCS1.yes=Yes +controlledvocabulary.ARCS2.na=NA +controlledvocabulary.ARCS2.no=No +controlledvocabulary.ARCS2.yes=Yes +controlledvocabulary.ARCS3.no=No +controlledvocabulary.ARCS3.yes=Yes +controlledvocabulary.ARCS4.na=NA +controlledvocabulary.ARCS4.no=No +controlledvocabulary.ARCS4.yes=Yes +controlledvocabulary.ARCS5.no=No +controlledvocabulary.ARCS5.yes=Yes \ No newline at end of file diff --git a/src/main/java/customCHIA.properties b/src/main/java/customCHIA.properties new file mode 100644 index 00000000000..0b05e388cee --- /dev/null +++ b/src/main/java/customCHIA.properties @@ -0,0 +1,20 @@ +metadatablock.name=customCHIA +metadatablock.displayName=CHIA Metadata +datasetfieldtype.sourceCHIA.title=Source +datasetfieldtype.datesAdditionalInformationCHIA.title=Dates - Additional Information +datasetfieldtype.variablesCHIA.title=Variables +datasetfieldtype.classificationSchemaCHIA.title=Classification Schema +datasetfieldtype.provenanceCHIA.title=Provenance +datasetfieldtype.rightsAvailabilityCHIA.title=Rights/Availability +datasetfieldtype.sourceCHIA.description=Source - This describes the source of the data. Is it from the Bureau of Labor and Statistics? Is it data from the United Nations? +datasetfieldtype.datesAdditionalInformationCHIA.description=Dates - Additional Information - Note any additional information about dates or time periods in the dataset including intervals (annual, decennial, centennial, etc.) Also note the column(s) in the dataset where dates and other temporal information can be found. +datasetfieldtype.variablesCHIA.description=Variables - Define the variables in this dataset. Please note the column in the dataset where variable information can be found. +datasetfieldtype.classificationSchemaCHIA.description=Classification Schema - If there is a classification scheme in this dataset, please describe it. For example, M_20_24 should be read as Males, aged 20-24. +datasetfieldtype.provenanceCHIA.description=Provenance - The provenance of the datasets is the record of ownership and will be used as a guide to the authenticity or quality of the data. For example, the Provenance statement might be, "This dataset was created from data collected by David Ruvolo during a data collection trip to Spain in 1992. Since that time, the data has not been altered other than to migrate it to more current formats." +datasetfieldtype.rightsAvailabilityCHIA.description=Rights/Availability - Do you have the rights to share this data? +datasetfieldtype.sourceCHIA.watermark= +datasetfieldtype.datesAdditionalInformationCHIA.watermark= +datasetfieldtype.variablesCHIA.watermark= +datasetfieldtype.classificationSchemaCHIA.watermark= +datasetfieldtype.provenanceCHIA.watermark= +datasetfieldtype.rightsAvailabilityCHIA.watermark= \ No newline at end of file diff --git a/src/main/java/customDigaai.properties b/src/main/java/customDigaai.properties new file mode 100644 index 00000000000..85d7df1f2b7 --- /dev/null +++ b/src/main/java/customDigaai.properties @@ -0,0 +1,55 @@ +metadatablock.name=customDigaai +metadatablock.displayName=Digaai Metadata +datasetfieldtype.titulo.title=Título +datasetfieldtype.numero.title=Número +datasetfieldtype.datadePublicao.title=Data de Publicação +datasetfieldtype.localdePublicao.title=Local de Publicação +datasetfieldtype.proprietrio.title=Proprietário +datasetfieldtype.titulo.description=Título do jornal ou revista. +datasetfieldtype.numero.description=Número do jornal ou revista. +datasetfieldtype.datadePublicao.description=Entrar dia/mes/ano. +datasetfieldtype.localdePublicao.description=Local de Publicação. +datasetfieldtype.proprietrio.description=Proprietário +datasetfieldtype.titulo.watermark= +datasetfieldtype.numero.watermark= +datasetfieldtype.datadePublicao.watermark=dia/mes/ano +datasetfieldtype.localdePublicao.watermark= +datasetfieldtype.proprietrio.watermark= +controlledvocabulary.titulo.achei_usa=Achei USA +controlledvocabulary.titulo.acontece_magazine=Acontece Magazine +controlledvocabulary.titulo.a_noticia=A Notícia +controlledvocabulary.titulo.brasil_best=Brasil Best +controlledvocabulary.titulo.brasileiros_&_brasileiras=Brasileiros & Brasileiras +controlledvocabulary.titulo.brasil_usa=Brasil USA +controlledvocabulary.titulo.brazil_explore=Brazil Explore +controlledvocabulary.titulo.brazilian_press=Brazilian Press +controlledvocabulary.titulo.brazilian_voice=Brazilian Voice +controlledvocabulary.titulo.brazil_news=Brazil News +controlledvocabulary.titulo.brazuca=Brazuca +controlledvocabulary.titulo.cia_brasil=Cia Brasil +controlledvocabulary.titulo.comunidade_news=Comunidade News +controlledvocabulary.titulo.diario_do_brasil=Diário do Brasil +controlledvocabulary.titulo.facebrasil=FaceBrasil +controlledvocabulary.titulo.green_and_yellow_news=Green and Yellow News +controlledvocabulary.titulo.jornal_dos_sports=Jornal dos Sports +controlledvocabulary.titulo.jornal_moderno=Jornal Moderno +controlledvocabulary.titulo.metropolitan=Metropolitan +controlledvocabulary.titulo.national=National +controlledvocabulary.titulo.negocio_fechado=Negócio Fechado +controlledvocabulary.titulo.nossa_gente=Nossa Gente +controlledvocabulary.titulo.nossa_terra=Nossa Terra +controlledvocabulary.titulo.o_brasileirinho=O Brasileirinho +controlledvocabulary.titulo.o_imigrante_cristao=O Imigrante Cristão +controlledvocabulary.titulo.o_jornal_brasileiro=O Jornal Brasileiro +controlledvocabulary.titulo.o_novo_mundo=O Novo Mundo +controlledvocabulary.titulo.o_popular=O Popular +controlledvocabulary.titulo.revista_linha_aberta=Revista Linha Aberta +controlledvocabulary.titulo.revista_massa=Revista MASSA +controlledvocabulary.titulo.revista_tititi=Revista Tititi +controlledvocabulary.titulo.sucesso_usa=Sucesso USA +controlledvocabulary.titulo.ta_na_mao=Ta na Mão +controlledvocabulary.titulo.tc_brazil=TC Brazil +controlledvocabulary.titulo.texas_magazine=Texas Magazine +controlledvocabulary.titulo.the_brazilian_journal=The Brazilian Journal +controlledvocabulary.titulo.today_magazine=Today Magazine +controlledvocabulary.titulo.viver_magazine=Viver Magazine \ No newline at end of file diff --git a/src/main/java/customGSD.properties b/src/main/java/customGSD.properties new file mode 100644 index 00000000000..15f118c73c4 --- /dev/null +++ b/src/main/java/customGSD.properties @@ -0,0 +1,552 @@ +metadatablock.name=customGSD +metadatablock.displayName=Graduate School of Design Metadata +datasetfieldtype.gsdStudentName.title=Student Name +datasetfieldtype.gsdStudentProgram.title=Student's Program of Study +datasetfieldtype.gsdCourseName.title=Course Name +datasetfieldtype.gsdFacultyName.title=Faculty Name +datasetfieldtype.gsdCoordinator.title=Core Studio Coordinator +datasetfieldtype.gsdSemester.title=Semester / Year +datasetfieldtype.gsdRecommendation.title=Faculty Recommendation +datasetfieldtype.gsdAccreditation.title=Accreditation +datasetfieldtype.gsdSiteType.title=Site Type +datasetfieldtype.gsdProgramBrief.title=Program / Brief +datasetfieldtype.gsdTypes.title=Types of Representation/ Medium/ Format +datasetfieldtype.gsdPrizes.title=Prizes +datasetfieldtype.gsdTags.title=GSD Tags +datasetfieldtype.gsdStudentName.description=Full name of the student: Last Name, First Name (example: Smith, Jane). Use the name that the GSD Administrator has on file. +datasetfieldtype.gsdStudentProgram.description=Student's program of study. +datasetfieldtype.gsdCourseName.description=Name of the course. +datasetfieldtype.gsdFacultyName.description=Name of the studio instructor. +datasetfieldtype.gsdCoordinator.description=Name of the studio coordinator(s). +datasetfieldtype.gsdSemester.description=Select the semester / year. +datasetfieldtype.gsdRecommendation.description=Indicate the recommendation(s) from the faculty for this project. +datasetfieldtype.gsdAccreditation.description=Selection made by faculty. +datasetfieldtype.gsdSiteType.description=Describe the type of building or site, based on function / purpose. Example: Military base. +datasetfieldtype.gsdProgramBrief.description=Example: redevelopment, restoration. +datasetfieldtype.gsdTypes.description=Choose from the list. +datasetfieldtype.gsdPrizes.description=Choose from the list. +datasetfieldtype.gsdTags.description=Use tags to describe the project. Write one keyword per field. To add more tags, click on the plus sign on the right. +datasetfieldtype.gsdStudentName.watermark=LastName, FirstName +datasetfieldtype.gsdStudentProgram.watermark= +datasetfieldtype.gsdCourseName.watermark= +datasetfieldtype.gsdFacultyName.watermark= +datasetfieldtype.gsdCoordinator.watermark= +datasetfieldtype.gsdSemester.watermark= +datasetfieldtype.gsdRecommendation.watermark= +datasetfieldtype.gsdAccreditation.watermark= +datasetfieldtype.gsdSiteType.watermark= +datasetfieldtype.gsdProgramBrief.watermark= +datasetfieldtype.gsdTypes.watermark= +datasetfieldtype.gsdPrizes.watermark= +datasetfieldtype.gsdTags.watermark= +controlledvocabulary.gsdFacultyName.abalos,_inaki=Abalos, Inaki +controlledvocabulary.gsdFacultyName.adjaye,_david=Adjaye, David +controlledvocabulary.gsdFacultyName.adofo-wilson,_baye=Adofo-Wilson, Baye +controlledvocabulary.gsdFacultyName.agre,_claire=Agre, Claire +controlledvocabulary.gsdFacultyName.altringer,_beth=Altringer, Beth +controlledvocabulary.gsdFacultyName.apfelbaum,_steven=Apfelbaum, Steven +controlledvocabulary.gsdFacultyName.aquino,_gerdo=Aquino, Gerdo +controlledvocabulary.gsdFacultyName.asensio_villoria,_leire=Asensio Villoria, Leire +controlledvocabulary.gsdFacultyName.baines,_bridget=Baines, Bridget +controlledvocabulary.gsdFacultyName.bandy,_vincent=Bandy, Vincent +controlledvocabulary.gsdFacultyName.barkan,_katy=Barkan, Katy +controlledvocabulary.gsdFacultyName.barkow,_frank=Barkow, Frank +controlledvocabulary.gsdFacultyName.beard,_peter=Beard, Peter +controlledvocabulary.gsdFacultyName.belanger,_pierre=Belanger, Pierre +controlledvocabulary.gsdFacultyName.benedito,_silvia=Benedito, Silvia +controlledvocabulary.gsdFacultyName.berrizbeitia,_ann=Berrizbeitia, Ann +controlledvocabulary.gsdFacultyName.bewtra,_manisha=Bewtra, Manisha +controlledvocabulary.gsdFacultyName.blau,_eve=Blau, Eve +controlledvocabulary.gsdFacultyName.bozdogan,_sibel=Bozdogan, Sibel +controlledvocabulary.gsdFacultyName.brandlhuber,_arno=Brandlhuber, Arno +controlledvocabulary.gsdFacultyName.brenner,_neil=Brenner, Neil +controlledvocabulary.gsdFacultyName.buchard,_jeffry=Buchard, Jeffry +controlledvocabulary.gsdFacultyName.buckler,_julie=Buckler, Julie +controlledvocabulary.gsdFacultyName.burchard,_jeffry=Burchard, Jeffry +controlledvocabulary.gsdFacultyName.busquets,_joan=Busquets, Joan +controlledvocabulary.gsdFacultyName.callejas_mujica,_luis_rodrigo=Callejas Mujica, Luis Rodrigo +controlledvocabulary.gsdFacultyName.calvillo,_nerea=Calvillo, Nerea +controlledvocabulary.gsdFacultyName.cantrell,_bradley=Cantrell, Bradley +controlledvocabulary.gsdFacultyName.carras,_james=Carras, James +controlledvocabulary.gsdFacultyName.castillo,_jose=Castillo, Jose +controlledvocabulary.gsdFacultyName.cephas,_jana=Cephas, Jana +controlledvocabulary.gsdFacultyName.cheng,_christine=Cheng, Christine +controlledvocabulary.gsdFacultyName.cohen,_preston_scott=Cohen, Preston Scott +controlledvocabulary.gsdFacultyName.coignet,_philippe=Coignet, Philippe +controlledvocabulary.gsdFacultyName.cook,_peter=Cook, Peter +controlledvocabulary.gsdFacultyName.corneil,_janne=Corneil, Janne +controlledvocabulary.gsdFacultyName.correa,_felipe=Correa, Felipe +controlledvocabulary.gsdFacultyName.craig,_salmaan=Craig, Salmaan +controlledvocabulary.gsdFacultyName.curtis,_lawrence=Curtis, Lawrence +controlledvocabulary.gsdFacultyName.daoust,_renee=Daoust, Renee +controlledvocabulary.gsdFacultyName.davis,_diane=Davis, Diane +controlledvocabulary.gsdFacultyName.de_broche_des_combes,_eric=de Broche des Combes, Eric +controlledvocabulary.gsdFacultyName.de_castro_mazarro,_alejandro=de Castro Mazarro, Alejandro +controlledvocabulary.gsdFacultyName.de_meuron,_pierre=de Meuron, Pierre +controlledvocabulary.gsdFacultyName.del_tredici,_peter=Del Tredici, Peter +controlledvocabulary.gsdFacultyName.desimini,_jill=Desimini, Jill +controlledvocabulary.gsdFacultyName.desvigne,_michel=Desvigne, Michel +controlledvocabulary.gsdFacultyName.d'oca,_daniel=D'Oca, Daniel +controlledvocabulary.gsdFacultyName.doherty,_gareth=Doherty, Gareth +controlledvocabulary.gsdFacultyName.doran,_kelly=Doran, Kelly +controlledvocabulary.gsdFacultyName.duempelmann,_sonja=Duempelmann, Sonja +controlledvocabulary.gsdFacultyName.echeverria,_inaki=Echeverria, Inaki +controlledvocabulary.gsdFacultyName.eigen,_ed=Eigen, Ed +controlledvocabulary.gsdFacultyName.elkin,_rosetta=Elkin, Rosetta +controlledvocabulary.gsdFacultyName.ellis,_erle=Ellis, Erle +controlledvocabulary.gsdFacultyName.etzler,_danielle=Etzler, Danielle +controlledvocabulary.gsdFacultyName.evans,_teman=Evans, Teman +controlledvocabulary.gsdFacultyName.flores_dewey,_onesimo=Flores Dewey, Onesimo +controlledvocabulary.gsdFacultyName.forsyth,_ann=Forsyth, Ann +controlledvocabulary.gsdFacultyName.frederickson,_kristin=Frederickson, Kristin +controlledvocabulary.gsdFacultyName.gamble,_david=Gamble, David +controlledvocabulary.gsdFacultyName.garcia_grinda,_efren=Garcia Grinda, Efren +controlledvocabulary.gsdFacultyName.garciavelez_alfaro,_carlos=Garciavelez Alfaro, Carlos +controlledvocabulary.gsdFacultyName.geers,_kersten=Geers, Kersten +controlledvocabulary.gsdFacultyName.gelabert-sanchez,_ana=Gelabert-Sanchez, Ana +controlledvocabulary.gsdFacultyName.georgoulias,_andreas=Georgoulias, Andreas +controlledvocabulary.gsdFacultyName.geuze,_adriaan=Geuze, Adriaan +controlledvocabulary.gsdFacultyName.gillies-smith,_shauna=Gillies-Smith, Shauna +controlledvocabulary.gsdFacultyName.ham,_derek=Ham, Derek +controlledvocabulary.gsdFacultyName.hansch,_inessa=Hansch, Inessa +controlledvocabulary.gsdFacultyName.hansen,_andrea=Hansen, Andrea +controlledvocabulary.gsdFacultyName.harabasz,_ewa=Harabasz, Ewa +controlledvocabulary.gsdFacultyName.hays,_k._michael=Hays, K. Michael +controlledvocabulary.gsdFacultyName.herzog,_jacques=Herzog, Jacques +controlledvocabulary.gsdFacultyName.hilderbrand,_gary=Hilderbrand, Gary +controlledvocabulary.gsdFacultyName.hoberman,_chuck=Hoberman, Chuck +controlledvocabulary.gsdFacultyName.hong,_zaneta=Hong, Zaneta +controlledvocabulary.gsdFacultyName.hooftman,_eelco=Hooftman, Eelco +controlledvocabulary.gsdFacultyName.hooper,_michael=Hooper, Michael +controlledvocabulary.gsdFacultyName.howeler,_eric=Howeler, Eric +controlledvocabulary.gsdFacultyName.hoxie,_christopher=Hoxie, Christopher +controlledvocabulary.gsdFacultyName.hung,_ying-yu=Hung, Ying-Yu +controlledvocabulary.gsdFacultyName.hunt,_john=Hunt, John +controlledvocabulary.gsdFacultyName.hutton,_jane=Hutton, Jane +controlledvocabulary.gsdFacultyName.hyde,_timothy=Hyde, Timothy +controlledvocabulary.gsdFacultyName.ibanez,_mariana=Ibanez, Mariana +controlledvocabulary.gsdFacultyName.idenburg,_florian=Idenburg, Florian +controlledvocabulary.gsdFacultyName.johnston,_sharon=Johnston, Sharon +controlledvocabulary.gsdFacultyName.kayden,_jerold=Kayden, Jerold +controlledvocabulary.gsdFacultyName.khamsi,_james=Khamsi, James +controlledvocabulary.gsdFacultyName.kiefer,_matthew=Kiefer, Matthew +controlledvocabulary.gsdFacultyName.kirkwood,_niall=Kirkwood, Niall +controlledvocabulary.gsdFacultyName.koolhaas,_remment=Koolhaas, Remment +controlledvocabulary.gsdFacultyName.krieger,_alex=Krieger, Alex +controlledvocabulary.gsdFacultyName.kuo,_max=Kuo, Max +controlledvocabulary.gsdFacultyName.la,_grace=La, Grace +controlledvocabulary.gsdFacultyName.lacaton,_anne=Lacaton, Anne +controlledvocabulary.gsdFacultyName.laszlo_tait,_rachel=Laszlo Tait, Rachel +controlledvocabulary.gsdFacultyName.leach,_neil=Leach, Neil +controlledvocabulary.gsdFacultyName.lee,_chris=Lee, Chris +controlledvocabulary.gsdFacultyName.lee,_christopher=Lee, Christopher +controlledvocabulary.gsdFacultyName.lee,_mark=Lee, Mark +controlledvocabulary.gsdFacultyName.legendre,_george_l.=Legendre, George L. +controlledvocabulary.gsdFacultyName.lehrer,_mia=Lehrer, Mia +controlledvocabulary.gsdFacultyName.liaropoulos-legendre,_george=Liaropoulos-Legendre, George +controlledvocabulary.gsdFacultyName.long,_judith=Long, Judith +controlledvocabulary.gsdFacultyName.lopez-pineiro,_sergio=Lopez-Pineiro, Sergio +controlledvocabulary.gsdFacultyName.lott,_jonathan=Lott, Jonathan +controlledvocabulary.gsdFacultyName.madden,_kathryn=Madden, Kathryn +controlledvocabulary.gsdFacultyName.mah,_david=Mah, David +controlledvocabulary.gsdFacultyName.malkawi,_ali=Malkawi, Ali +controlledvocabulary.gsdFacultyName.maltzan,_michael=Maltzan, Michael +controlledvocabulary.gsdFacultyName.manfredi,_michael=Manfredi, Michael +controlledvocabulary.gsdFacultyName.marchant,_edward=Marchant, Edward +controlledvocabulary.gsdFacultyName.mateo,_josep_lluis=Mateo, Josep Lluis +controlledvocabulary.gsdFacultyName.mccafferty,_patrick=McCafferty, Patrick +controlledvocabulary.gsdFacultyName.mcintosh,_alistair=McIntosh, Alistair +controlledvocabulary.gsdFacultyName.mcloskey,_karen=MCloskey, Karen +controlledvocabulary.gsdFacultyName.mehrotra,_rahul=Mehrotra, Rahul +controlledvocabulary.gsdFacultyName.menchaca,_alejandra=Menchaca, Alejandra +controlledvocabulary.gsdFacultyName.menges,_achim=Menges, Achim +controlledvocabulary.gsdFacultyName.menges,_achim=Menges, Achim +controlledvocabulary.gsdFacultyName.michalatos,_panagiotis=Michalatos, Panagiotis +controlledvocabulary.gsdFacultyName.moe,_kiel=Moe, Kiel +controlledvocabulary.gsdFacultyName.molinsky,_jennifer=Molinsky, Jennifer +controlledvocabulary.gsdFacultyName.moreno,_cristina_diaz=Moreno, Cristina Diaz +controlledvocabulary.gsdFacultyName.mori,_toshiko=Mori, Toshiko +controlledvocabulary.gsdFacultyName.moussavi,_farshid=Moussavi, Farshid +controlledvocabulary.gsdFacultyName.mulligan,_mark=Mulligan, Mark +controlledvocabulary.gsdFacultyName.muro,_carles=Muro, Carles +controlledvocabulary.gsdFacultyName.naginski,_erika=Naginski, Erika +controlledvocabulary.gsdFacultyName.najle,_ciro=Najle, Ciro +controlledvocabulary.gsdFacultyName.nakazawa,_paul=Nakazawa, Paul +controlledvocabulary.gsdFacultyName.navarro_rios,_victor=Navarro Rios, Victor +controlledvocabulary.gsdFacultyName.nichols,_albert=Nichols, Albert +controlledvocabulary.gsdFacultyName.o'carroll,_aisling=O'Carroll, Aisling +controlledvocabulary.gsdFacultyName.o'donnell,_sheila=O'Donnell, Sheila +controlledvocabulary.gsdFacultyName.oman,_rok=Oman, Rok +controlledvocabulary.gsdFacultyName.o'neill-uzgiris,_kelly_ann=O'Neill-Uzgiris, Kelly Ann +controlledvocabulary.gsdFacultyName.oppenheim,_chad=Oppenheim, Chad +controlledvocabulary.gsdFacultyName.other=Other +controlledvocabulary.gsdFacultyName.ozay,_erkin=Ozay, Erkin +controlledvocabulary.gsdFacultyName.panzano,_megan=Panzano, Megan +controlledvocabulary.gsdFacultyName.park,_peter=Park, Peter +controlledvocabulary.gsdFacultyName.parsons,_katharine=Parsons, Katharine +controlledvocabulary.gsdFacultyName.peiser,_richard=Peiser, Richard +controlledvocabulary.gsdFacultyName.petcu,_constantin=Petcu, Constantin +controlledvocabulary.gsdFacultyName.petrescu,_doina=Petrescu, Doina +controlledvocabulary.gsdFacultyName.pietrusko,_robert=Pietrusko, Robert +controlledvocabulary.gsdFacultyName.rahm,_philippe=Rahm, Philippe +controlledvocabulary.gsdFacultyName.raspall_galli,_carlos_felix=Raspall Galli, Carlos Felix +controlledvocabulary.gsdFacultyName.reed,_chris=Reed, Chris +controlledvocabulary.gsdFacultyName.rein-cano,_martin=Rein-Cano, Martin +controlledvocabulary.gsdFacultyName.restrepo_ochoa,_camilo=Restrepo Ochoa, Camilo +controlledvocabulary.gsdFacultyName.rich,_damon=Rich, Damon +controlledvocabulary.gsdFacultyName.rocker,_ingeborg=Rocker, Ingeborg +controlledvocabulary.gsdFacultyName.rojo,_marcos=Rojo, Marcos +controlledvocabulary.gsdFacultyName.rosenthal,_joyce_klein=Rosenthal, Joyce Klein +controlledvocabulary.gsdFacultyName.rowe,_peter=Rowe, Peter +controlledvocabulary.gsdFacultyName.ryan,_thomas=Ryan, Thomas +controlledvocabulary.gsdFacultyName.samuelson,_holly=Samuelson, Holly +controlledvocabulary.gsdFacultyName.sarkis,_a._hashim=Sarkis, A. Hashim +controlledvocabulary.gsdFacultyName.schumacher,_patrik=Schumacher, Patrik +controlledvocabulary.gsdFacultyName.schwartz,_martha=Schwartz, Martha +controlledvocabulary.gsdFacultyName.scogin,_buford=Scogin, Buford +controlledvocabulary.gsdFacultyName.scogin,_mack=Scogin, Mack +controlledvocabulary.gsdFacultyName.sennett,_richard=Sennett, Richard +controlledvocabulary.gsdFacultyName.sentkiewicz,_renata=Sentkiewicz, Renata +controlledvocabulary.gsdFacultyName.shigematsu,_shohei=Shigematsu, Shohei +controlledvocabulary.gsdFacultyName.silman,_robert=Silman, Robert +controlledvocabulary.gsdFacultyName.silver,_mitchell=Silver, Mitchell +controlledvocabulary.gsdFacultyName.silvetti,_jorge=Silvetti, Jorge +controlledvocabulary.gsdFacultyName.smith,_christine=Smith, Christine +controlledvocabulary.gsdFacultyName.snyder,_susan=Snyder, Susan +controlledvocabulary.gsdFacultyName.solano,_laura=Solano, Laura +controlledvocabulary.gsdFacultyName.sorkin,_michael=Sorkin, Michael +controlledvocabulary.gsdFacultyName.spiegelman,_kathy=Spiegelman, Kathy +controlledvocabulary.gsdFacultyName.stilgoe,_john=Stilgoe, John +controlledvocabulary.gsdFacultyName.stockard,_james=Stockard, James +controlledvocabulary.gsdFacultyName.tato,_belinda=Tato, Belinda +controlledvocabulary.gsdFacultyName.thomas,_george=Thomas, George +controlledvocabulary.gsdFacultyName.thompson,_maryann=Thompson, Maryann +controlledvocabulary.gsdFacultyName.torto,_raymond=Torto, Raymond +controlledvocabulary.gsdFacultyName.tuomey,_john=Tuomey, John +controlledvocabulary.gsdFacultyName.urbanski,_matthew=Urbanski, Matthew +controlledvocabulary.gsdFacultyName.valenzuela,_luis=Valenzuela, Luis +controlledvocabulary.gsdFacultyName.vallejo,_jose_luis=Vallejo, Jose Luis +controlledvocabulary.gsdFacultyName.van_valkenburgh,_michael=Van Valkenburgh, Michael +controlledvocabulary.gsdFacultyName.vandersys,_keith=VanDerSys, Keith +controlledvocabulary.gsdFacultyName.vecitis,_chad=Vecitis, Chad +controlledvocabulary.gsdFacultyName.videcnik,_spela=Videcnik, Spela +controlledvocabulary.gsdFacultyName.waldheim,_charles=Waldheim, Charles +controlledvocabulary.gsdFacultyName.wang,_bing=Wang, Bing +controlledvocabulary.gsdFacultyName.weitz,_david=Weitz, David +controlledvocabulary.gsdFacultyName.wendel,_delia=Wendel, Delia +controlledvocabulary.gsdFacultyName.whittaker,_elizabeth=Whittaker, Elizabeth +controlledvocabulary.gsdFacultyName.wickersham,_jay=Wickersham, Jay +controlledvocabulary.gsdFacultyName.witt,_andrew=Witt, Andrew +controlledvocabulary.gsdFacultyName.wodiczko,_krzysztof=Wodiczko, Krzysztof +controlledvocabulary.gsdFacultyName.wood,_robert=Wood, Robert +controlledvocabulary.gsdFacultyName.wu,_cameron=Wu, Cameron +controlledvocabulary.gsdFacultyName.zickler,_todd=Zickler, Todd +controlledvocabulary.gsdCoordinator.abalos,_inaki=Abalos, Inaki +controlledvocabulary.gsdCoordinator.belanger,_pierre=Belanger, Pierre +controlledvocabulary.gsdCoordinator.correa,_felipe=Correa, Felipe +controlledvocabulary.gsdCoordinator.desimini,_jill=Desimini, Jill +controlledvocabulary.gsdCoordinator.forsyth,_ann=Forsyth, Ann +controlledvocabulary.gsdCoordinator.etzler,_danielle=Etzler, Danielle +controlledvocabulary.gsdCoordinator.gelabert-sanchez,_ana=Gelabert-Sanchez, Ana +controlledvocabulary.gsdCoordinator.hilderbrand,_gary=Hilderbrand, Gary +controlledvocabulary.gsdCoordinator.howeler,_eric=Howeler, Eric +controlledvocabulary.gsdCoordinator.howler,_eric=Howler, Eric +controlledvocabulary.gsdCoordinator.hutton,_jane=Hutton, Jane +controlledvocabulary.gsdCoordinator.ibanez,_mariana=Ibanez, Mariana +controlledvocabulary.gsdCoordinator.idenburg,_florian=Idenburg, Florian +controlledvocabulary.gsdCoordinator.la,_grace=La, Grace +controlledvocabulary.gsdCoordinator.long,_judith_grant=Long, Judith Grant +controlledvocabulary.gsdCoordinator.moe,_kiel=Moe, Kiel +controlledvocabulary.gsdCoordinator.muro,_carles=Muro, Carles +controlledvocabulary.gsdCoordinator.wu,_cameron=Wu, Cameron +controlledvocabulary.gsdCoordinator.other=Other +controlledvocabulary.gsdStudentProgram.ddes=DDes +controlledvocabulary.gsdStudentProgram.march_i=MArch I +controlledvocabulary.gsdStudentProgram.march_ii=MArch II +controlledvocabulary.gsdStudentProgram.maud_or_mlaud=MAUD or MLAUD +controlledvocabulary.gsdStudentProgram.mdes=MDes +controlledvocabulary.gsdStudentProgram.mla_i=MLA I +controlledvocabulary.gsdStudentProgram.mla_i_ap=MLA I AP +controlledvocabulary.gsdStudentProgram.mla_ii=MLA II +controlledvocabulary.gsdStudentProgram.mud=MUD +controlledvocabulary.gsdStudentProgram.mup=MUP +controlledvocabulary.gsdStudentProgram.mup/march=MUP/MArch +controlledvocabulary.gsdStudentProgram.mup/maud_or_mlaud=MUP/MAUD or MLAUD +controlledvocabulary.gsdStudentProgram.mup/mdes=MUP/MDes +controlledvocabulary.gsdStudentProgram.mup/mla=MUP/MLA +controlledvocabulary.gsdStudentProgram.other=Other +controlledvocabulary.gsdStudentProgram.phd=PhD +controlledvocabulary.gsdSemester.fall_2013=Fall 2013 +controlledvocabulary.gsdSemester.spring_2014=Spring 2014 +controlledvocabulary.gsdSemester.fall_2014=Fall 2014 +controlledvocabulary.gsdSemester.spring_2015=Spring 2015 +controlledvocabulary.gsdSemester.fall_2015=Fall 2015 +controlledvocabulary.gsdSemester.spring_2016=Spring 2016 +controlledvocabulary.gsdSemester.fall_2016=Fall 2016 +controlledvocabulary.gsdRecommendation.accreditation=Accreditation +controlledvocabulary.gsdRecommendation.open_house=Open House +controlledvocabulary.gsdRecommendation.platform=Platform +controlledvocabulary.gsdRecommendation.website=Website +controlledvocabulary.gsdTypes.animations=Animations +controlledvocabulary.gsdTypes.axonometric_drawings=Axonometric drawings +controlledvocabulary.gsdTypes.axonometric_projections=Axonometric projections +controlledvocabulary.gsdTypes.diagrams=Diagrams +controlledvocabulary.gsdTypes.drawings=Drawings +controlledvocabulary.gsdTypes.elevations_(drawings)=Elevations (drawings) +controlledvocabulary.gsdTypes.floor_plans=Floor plans +controlledvocabulary.gsdTypes.isometric_drawings=Isometric drawings +controlledvocabulary.gsdTypes.isometric_projections=Isometric projections +controlledvocabulary.gsdTypes.maps=Maps +controlledvocabulary.gsdTypes.master_plans=Master plans +controlledvocabulary.gsdTypes.models_(representations)=Models (representations) +controlledvocabulary.gsdTypes.other=Other +controlledvocabulary.gsdTypes.perspective_drawings=Perspective drawings +controlledvocabulary.gsdTypes.photographs=Photographs +controlledvocabulary.gsdTypes.plans_(drawings)=Plans (drawings) +controlledvocabulary.gsdTypes.plans_(maps)=Plans (maps) +controlledvocabulary.gsdTypes.renderings=Renderings +controlledvocabulary.gsdTypes.sectional_elevations=Sectional elevations +controlledvocabulary.gsdTypes.sectional_perspectives=Sectional perspectives +controlledvocabulary.gsdTypes.sections=Sections +controlledvocabulary.gsdTypes.sections_(orthographic_projections)=Sections (orthographic projections) +controlledvocabulary.gsdTypes.site_plans=Site plans +controlledvocabulary.gsdTypes.sketches=Sketches +controlledvocabulary.gsdTypes.videos=Videos +controlledvocabulary.gsdPrizes.araldo_cossutta_annual_prize_for_design_excellence=Araldo Cossutta Annual Prize for Design Excellence +controlledvocabulary.gsdPrizes.award_for_academic_excellence_in_urban_design=Award for Academic Excellence in Urban Design +controlledvocabulary.gsdPrizes.award_for_academic_excellence_in_urban_planning=Award for Academic Excellence in Urban Planning +controlledvocabulary.gsdPrizes.award_for_outstanding_leadership_in_urban_design=Award for Outstanding Leadership in Urban Design +controlledvocabulary.gsdPrizes.award_for_outstanding_leadership_in_urban_planning=Award for Outstanding Leadership in Urban Planning +controlledvocabulary.gsdPrizes.charles_eliot_traveling_fellowship_in_landscape_architecture=Charles Eliot Traveling Fellowship in Landscape Architecture +controlledvocabulary.gsdPrizes.clifford_wong_prize_in_housing_design=Clifford Wong Prize in Housing Design +controlledvocabulary.gsdPrizes.digital_design_prize=Digital Design Prize +controlledvocabulary.gsdPrizes.dimitris_pikionis_award=Dimitris Pikionis Award +controlledvocabulary.gsdPrizes.druker_traveling_fellowship=Druker Traveling Fellowship +controlledvocabulary.gsdPrizes.ferdinand_colloredo-mansfeld_prize_for_superior_achievement_in_real_estate_studies=Ferdinand Colloredo-Mansfeld Prize for Superior Achievement in Real Estate Studies +controlledvocabulary.gsdPrizes.frederick_sheldon_traveling_fellowship=Frederick Sheldon Traveling Fellowship +controlledvocabulary.gsdPrizes.howard_t._fisher_prize_for_excellence_in_geographic_information_science=Howard T. Fisher Prize for Excellence in Geographic Information Science +controlledvocabulary.gsdPrizes.jacob_weidenmann_prize=Jacob Weidenmann Prize +controlledvocabulary.gsdPrizes.julia_amory_appleton_traveling_fellowship_in_architecture=Julia Amory Appleton Traveling Fellowship in Architecture +controlledvocabulary.gsdPrizes.kevin_v._kieran_prize_(kevin_kieran_memorial_scholarship)=Kevin V. Kieran Prize (Kevin Kieran Memorial Scholarship) +controlledvocabulary.gsdPrizes.norman_t._newton_prize=Norman T. Newton Prize +controlledvocabulary.gsdPrizes.peter_rice_prize_for_innovation_in_architecture_and_structural_design=Peter Rice Prize for Innovation in Architecture and Structural Design +controlledvocabulary.gsdPrizes.peter_walker_&_partners_fellowship_for_landscape_architecture=Peter Walker & Partners Fellowship for Landscape Architecture +controlledvocabulary.gsdPrizes.sinclair_kennedy_traveling_fellowship=Sinclair Kennedy Traveling Fellowship +controlledvocabulary.gsdPrizes.the_daniel_l._schodek_award_for_technology_and_sustainability=The Daniel L. Schodek Award for Technology and Sustainability +controlledvocabulary.gsdAccreditation.high=High +controlledvocabulary.gsdAccreditation.medium=Medium +controlledvocabulary.gsdAccreditation.low=Low +controlledvocabulary.gsdCourseName.01101:_first_semester_core:_project=01101: First Semester Core: PROJECT +controlledvocabulary.gsdCourseName.01102:_second_semester_core:_situate=01102: Second Semester Core: SITUATE +controlledvocabulary.gsdCourseName.01111:_la_i:_first_semester_core_studio=01111: LA I: First Semester Core Studio +controlledvocabulary.gsdCourseName.01112:_landscape_architecture_ii=01112: Landscape Architecture II +controlledvocabulary.gsdCourseName.01121:_first_semester_core_urban_planning_studio=01121: First Semester Core Urban Planning Studio +controlledvocabulary.gsdCourseName.01122:_second_semester_core_urban_planning_studio=01122: Second Semester Core Urban Planning Studio +controlledvocabulary.gsdCourseName.01201:_third_semester_core:_integrate=01201: Third Semester Core: INTEGRATE +controlledvocabulary.gsdCourseName.01202:_fourth_semester_core:_relate=01202: Fourth Semester Core: RELATE +controlledvocabulary.gsdCourseName.01211:_la_iii:_third_semester_core_studio=01211: LA III: Third Semester Core Studio +controlledvocabulary.gsdCourseName.01212:_landscape_architecture_iv=01212: Landscape Architecture IV +controlledvocabulary.gsdCourseName.01221:_elements_of_urban_design=01221: Elements of Urban Design +controlledvocabulary.gsdCourseName.01301:_kyoto_studio_ii:_seasons_and_architecture=01301: Kyoto Studio II: Seasons and Architecture +controlledvocabulary.gsdCourseName.01301:_the_function_of_time=01301: The Function of Time +controlledvocabulary.gsdCourseName.01302:_architecture_club_london=01302: Architecture Club London +controlledvocabulary.gsdCourseName.01302:_unfinished_work_iii=01302: Unfinished Work III +controlledvocabulary.gsdCourseName.01303:_alimentary_design=01303: Alimentary Design +controlledvocabulary.gsdCourseName.01303:_workplan=01303: Workplan +controlledvocabulary.gsdCourseName.01304:_alimentary_design=01304: Alimentary Design +controlledvocabulary.gsdCourseName.01304:_socio-environmental_responsive_design=01304: Socio-Environmental Responsive Design +controlledvocabulary.gsdCourseName.01305:_built_climates=01305: Built Climates +controlledvocabulary.gsdCourseName.01305:_parametric_semiology_-_high_performance_architecture_for_apple,_google_and_facebook=01305: Parametric Semiology - High Performance Architecture for Apple, Google and Facebook +controlledvocabulary.gsdCourseName.01306:_21st_cent._arch.of_africa_and_the_diaspora=01306: 21st Cent. Arch.of Africa and the Diaspora +controlledvocabulary.gsdCourseName.01306:_material_performance_-_fibrous_tectonics=01306: Material Performance - Fibrous Tectonics +controlledvocabulary.gsdCourseName.01307:_la_strada_novissima=01307: La Strada Novissima +controlledvocabulary.gsdCourseName.01307:_material_performance=01307: Material Performance +controlledvocabulary.gsdCourseName.01308:_city_of_artificial_extrusions=01308: City of Artificial Extrusions +controlledvocabulary.gsdCourseName.01308:_green_card_conversations=01308: Green Card Conversations +controlledvocabulary.gsdCourseName.01309:_studio_alaska=01309: Studio Alaska +controlledvocabulary.gsdCourseName.01309:_theatre_and_the_city=01309: Theatre and the City +controlledvocabulary.gsdCourseName.01310:_architecture_of_cultural_prosthetics=01310: Architecture of Cultural Prosthetics +controlledvocabulary.gsdCourseName.01310:_rotterdam_study_abroad_studio_option:_elements_of_architecture=01310: Rotterdam Study Abroad Studio Option: Elements of Architecture +controlledvocabulary.gsdCourseName.01311:_apres_ski:_eco_village_les_diablerets=01311: Apres Ski: Eco Village Les Diablerets +controlledvocabulary.gsdCourseName.01311:_the_forms_of_transition=01311: The Forms of Transition +controlledvocabulary.gsdCourseName.01312:_"you_can't_die_in_disney_world"_a_zoo=01312: "You Can't Die in Disney World" A ZOO +controlledvocabulary.gsdCourseName.01312:_basel_study_abroad_studio_option=01312: Basel Study Abroad Studio Option +controlledvocabulary.gsdCourseName.01313:_indebted_architecture=01313: Indebted Architecture +controlledvocabulary.gsdCourseName.01314:_in_the_land_of_nanduti:_following_the_lines,_threads,_and_figures_of_the_river=01314: IN THE LAND OF NANDUTi: following the lines, threads, and figures of the river +controlledvocabulary.gsdCourseName.01315:_real_and_imaginary_variables_(final):_global_arenas=01315: Real and Imaginary Variables (Final): Global Arenas +controlledvocabulary.gsdCourseName.01316:_high-rise_/_high-density=01316: High-rise / High-density +controlledvocabulary.gsdCourseName.01317:_another_nature=01317: Another nature +controlledvocabulary.gsdCourseName.01318:_borrominations,_or_the_auratic_dome=01318: Borrominations, or the Auratic Dome +controlledvocabulary.gsdCourseName.01319:_thermodynamic_materialism_applied_to_dense_urban_conglomerates,_two_chinese_case_studies=01319: Thermodynamic Materialism Applied to Dense Urban Conglomerates, Two Chinese Case Studies +controlledvocabulary.gsdCourseName.01401:_a_new_[landscape]_infrastructure_for_los_angeles=01401: A New [Landscape] Infrastructure for Los Angeles +controlledvocabulary.gsdCourseName.01401:_liminal_space=01401: Liminal Space +controlledvocabulary.gsdCourseName.01402:_parallel_motion:_walden_pond,_concord_/_central_park,_new_york=01402: Parallel Motion: Walden Pond, Concord / Central Park, New York +controlledvocabulary.gsdCourseName.01402:_parallel_motion:_walden_pond,_concord/_central_park_,_ny=01402: Parallel Motion: Walden Pond, Concord/ Central Park , NY +controlledvocabulary.gsdCourseName.01402:_the_endless_landscape_-_river_hudson=01402: The Endless Landscape - River Hudson +controlledvocabulary.gsdCourseName.01403:_after_la_villette=01403: After La Villette +controlledvocabulary.gsdCourseName.01403:_after_la_vilette_(paris)=01403: After La Vilette (Paris) +controlledvocabulary.gsdCourseName.01403:_life-styled_-_china-town=01403: LIFE-STYLED - CHINA-TOWN +controlledvocabulary.gsdCourseName.01404:_california_limnolarium=01404: California Limnolarium +controlledvocabulary.gsdCourseName.01404:_california_limnolarium_(experiments_in_projective_processes)=01404: California Limnolarium (experiments in projective processes) +controlledvocabulary.gsdCourseName.01404:_post-suburb_-_nashua_nh=01404: Post-suburb - Nashua NH +controlledvocabulary.gsdCourseName.01405:_airport_park_zurich=01405: Airport Park Zurich +controlledvocabulary.gsdCourseName.01405:_envisioning_miami:_simulated_natures=01405: Envisioning Miami: Simulated Natures +controlledvocabulary.gsdCourseName.01406:_the_ocean_state=01406: The Ocean State +controlledvocabulary.gsdCourseName.01407:_from_the_city_to_the_object:_terre_des_hommes_2017=01407: From the City to the Object: Terre des Hommes 2017 +controlledvocabulary.gsdCourseName.01408:_caen_island:_public_space=01408: Caen Island: Public Space +controlledvocabulary.gsdCourseName.01409:_negative_planning_in_nanshahe,_haidian_district,_beijing=01409: Negative Planning in Nanshahe, Haidian District, Beijing +controlledvocabulary.gsdCourseName.01501:_haters_make_me_famous:_the_newark_riverfront_and_the_post-great_migration_city=01501: Haters Make Me Famous: The Newark Riverfront and the Post-Great Migration City +controlledvocabulary.gsdCourseName.01501:_rurban=01501: RURBAN +controlledvocabulary.gsdCourseName.01502:_networked_urbanism:_urban_waste_-_urban_design=01502: Networked Urbanism: Urban Waste - Urban Design +controlledvocabulary.gsdCourseName.01502:_the_storm,_the_strife,_and_everyday_life=01502: The Storm, the Strife, and Everyday Life +controlledvocabulary.gsdCourseName.01503:_planning_and_development_on_the_east_boston_waterfront=01503: Planning and Development on the East Boston Waterfront +controlledvocabulary.gsdCourseName.01503:_the_countryside_as_a_city=01503: The Countryside as a City +controlledvocabulary.gsdCourseName.01504:_retrofitting_the_(post?)_industrial_metropolis=01504: Retrofitting the (post?) Industrial Metropolis +controlledvocabulary.gsdCourseName.01505:_medellin:_urban_porosity_as_social_infrastructure=01505: Medellin: Urban Porosity as Social Infrastructure +controlledvocabulary.gsdCourseName.01506:_obsolescence_and_pathways_to_redevelopment:=01506: Obsolescence and Pathways to Redevelopment: +controlledvocabulary.gsdCourseName.01507:_design_and_politics_-_managing_risks_and_vulnerabilities=01507: Design and Politics - Managing Risks and Vulnerabilities +controlledvocabulary.gsdCourseName.01601:_macau:_cross-border_cities=01601: Macau: Cross-border Cities +controlledvocabulary.gsdCourseName.01602:_territorialism_ii=01602: Territorialism II +controlledvocabulary.gsdCourseName.01603:_meydan:_designing_the_surfaces_of_public_space_around_beyazit_square,_istanbul=01603: Meydan: Designing the Surfaces of Public Space around Beyazit Square, Istanbul +controlledvocabulary.gsdCourseName.01606:_los_angeles_study_abroad_studio:_the_possibilities_of_the_wrong_scale=01606: Los Angeles Study Abroad Studio: The Possibilities of the Wrong Scale +controlledvocabulary.gsdCourseName.02121:_visual_studies=02121: Visual Studies +controlledvocabulary.gsdCourseName.02122:_projective_representation_in_architecture=02122: Projective Representation in Architecture +controlledvocabulary.gsdCourseName.02129:_spatial_analysis_and_representation=02129: Spatial Analysis and Representation +controlledvocabulary.gsdCourseName.02141:_landscape_representation_i=02141: Landscape Representation I +controlledvocabulary.gsdCourseName.02142:_landscape_representation_i=02142: Landscape Representation I +controlledvocabulary.gsdCourseName.02223:_digital_media_i=02223: Digital Media I +controlledvocabulary.gsdCourseName.02224:_digital_media_ii=02224: Digital Media II +controlledvocabulary.gsdCourseName.02241:_landscape_representation_ii=02241: Landscape Representation II +controlledvocabulary.gsdCourseName.02241:_landscape_representation_iii=02241: Landscape Representation III +controlledvocabulary.gsdCourseName.02322:_digital_media_for_design=02322: Digital Media for Design +controlledvocabulary.gsdCourseName.02341:_communication_for_designer=02341: Communication for Designer +controlledvocabulary.gsdCourseName.02415:_paper_or_plastic=02415: Paper or Plastic +controlledvocabulary.gsdCourseName.02444:_landscape_material_design_practice_and_digital_media=02444: Landscape Material Design Practice and Digital Media +controlledvocabulary.gsdCourseName.02446:_drawing_for_designers=02446: Drawing for Designers +controlledvocabulary.gsdCourseName.02448:_landscape_as_painting=02448: Landscape as Painting +controlledvocabulary.gsdCourseName.02449:_immersive_landscape=02449: Immersive Landscape +controlledvocabulary.gsdCourseName.02449:_landscape_as_video_game=02449: Landscape as Video Game +controlledvocabulary.gsdCourseName.02450:_landscape_as_weather/atmosphere=02450: Landscape as Weather/Atmosphere +controlledvocabulary.gsdCourseName.02482:_art,_design_and_the_public_domain=02482: Art, Design and the Public Domain +controlledvocabulary.gsdCourseName.02602:_basel_study_abroad_seminar=02602: Basel Study Abroad Seminar +controlledvocabulary.gsdCourseName.03241:_theories_of_landscape_as_urbanism=03241: Theories of Landscape as Urbanism +controlledvocabulary.gsdCourseName.03241:_theories_of_landscape_as_urbanism,_landscape_as_infrastructure=03241: Theories of Landscape as Urbanism, Landscape as Infrastructure +controlledvocabulary.gsdCourseName.03242:_theories_of_landscape_architecture=03242: Theories of Landscape Architecture +controlledvocabulary.gsdCourseName.03330:_conservation_of_older_buildings=03330: Conservation of Older Buildings +controlledvocabulary.gsdCourseName.03333:_culture,_conservation_and_design=03333: Culture, Conservation and Design +controlledvocabulary.gsdCourseName.03338:_carbonurbanism=03338: carbonurbanism +controlledvocabulary.gsdCourseName.03345:_emergence_in_landscape_architecture=03345: Emergence in Landscape Architecture +controlledvocabulary.gsdCourseName.03375:_planning_for_conservation:=03375: Planning for Conservation: +controlledvocabulary.gsdCourseName.03453:_light_structure_i=03453: Light Structure I +controlledvocabulary.gsdCourseName.03494:_design_for_learning=03494: Design for Learning +controlledvocabulary.gsdCourseName.03499:_the_aperture_analyzed=03499: The Aperture Analyzed +controlledvocabulary.gsdCourseName.03602:_study_abroad_seminar:_islands=03602: Study Abroad Seminar: Islands +controlledvocabulary.gsdCourseName.03603:_the_hitchhikers_guide_to_hyperreality=03603: The Hitchhikers Guide to Hyperreality +controlledvocabulary.gsdCourseName.04105:_studies_of_the_built_north_american_environment=04105: Studies of the Built North American Environment +controlledvocabulary.gsdCourseName.04105:_studies_of_the_built_north_american_environment_1580_-_present=04105: Studies of the Built North American Environment 1580 - Present +controlledvocabulary.gsdCourseName.04115:_history_and_theory_of_urban_interventions=04115: History and Theory of Urban Interventions +controlledvocabulary.gsdCourseName.04121:_buildings,_texts,_and_contexts_i=04121: Buildings, Texts, and Contexts I +controlledvocabulary.gsdCourseName.04141:_histories_of_landscape_architecture=04141: Histories of Landscape Architecture +controlledvocabulary.gsdCourseName.04142:_histories_of_landscape_architecture_ii=04142: Histories of Landscape Architecture II +controlledvocabulary.gsdCourseName.04223:_buildings,_texts,_and_contexts_iii=04223: Buildings, Texts, and Contexts III +controlledvocabulary.gsdCourseName.04303:_modernization_in_the_visual_u.s._environment=04303: Modernization in the Visual U.S. Environment +controlledvocabulary.gsdCourseName.04304:_north_american_seacoasts_+_landscapes_discovery_period_to_the_present=04304: North American Seacoasts + Landscapes Discovery Period to the Present +controlledvocabulary.gsdCourseName.04304:_north_american_seacoasts_and_landscape=04304: North American Seacoasts and Landscape +controlledvocabulary.gsdCourseName.04305:_adventure_+_fantasy_simulation_1871-2036=04305: Adventure + Fantasy Simulation 1871-2036 +controlledvocabulary.gsdCourseName.04329:_urbanization_in_the_east_asian_region=04329: Urbanization in the East Asian Region +controlledvocabulary.gsdCourseName.04358:_authority_and_invention:_medieval_art_and_architecture=04358: Authority and Invention: Medieval Art and Architecture +controlledvocabulary.gsdCourseName.04362:_structuring_urban_experience=04362: Structuring Urban Experience +controlledvocabulary.gsdCourseName.04363:_walking=04363: Walking +controlledvocabulary.gsdCourseName.04405:_istanbul=04405: Istanbul +controlledvocabulary.gsdCourseName.04408:_situating_the_modern=04408: Situating the Modern +controlledvocabulary.gsdCourseName.04439:_"in_the_manner_of_a_picture"=04439: "In the Manner of a Picture" +controlledvocabulary.gsdCourseName.04444:_historical_ground=04444: Historical Ground +controlledvocabulary.gsdCourseName.04445:_envisioning_landscape:_cultures_of_vision_in_the_air_and_on_the_ground=04445: Envisioning Landscape: Cultures of Vision in the Air and on the Ground +controlledvocabulary.gsdCourseName.04446:_a_history_of_nature_conservation_and_cultural_landscape_preservation=04446: A History of Nature Conservation and Cultural Landscape Preservation +controlledvocabulary.gsdCourseName.04447:_forest,_grove,_tree=04447: Forest, Grove, Tree +controlledvocabulary.gsdCourseName.04477:_slums_in_architectural_history=04477: Slums in Architectural History +controlledvocabulary.gsdCourseName.05204:_real_estate_finance_and_development=05204: Real Estate Finance and Development +controlledvocabulary.gsdCourseName.05206:_land_use_and_environmental_law=05206: Land Use and Environmental Law +controlledvocabulary.gsdCourseName.05210:_cities_by_design_i=05210: Cities by Design I +controlledvocabulary.gsdCourseName.05212:_field_studies_in_real_estate,_planning,_and_urban_design=05212: Field Studies in Real Estate, Planning, and Urban Design +controlledvocabulary.gsdCourseName.05213:_policy_making_in_urban_settings=05213: Policy Making in Urban Settings +controlledvocabulary.gsdCourseName.05222:_markets_and_market_failures_with_cases=05222: Markets and Market Failures with Cases +controlledvocabulary.gsdCourseName.05304:_transportation_planning_and_development=05304: Transportation Planning and Development +controlledvocabulary.gsdCourseName.05326:_housing_and_urbanization_in_the_united_states=05326: Housing and Urbanization in the United States +controlledvocabulary.gsdCourseName.05330:_healthy_places=05330: Healthy Places +controlledvocabulary.gsdCourseName.05338:_planning_for_the_21st_century=05338: Planning for the 21st Century +controlledvocabulary.gsdCourseName.05342:_creating_resilient_cities=05342: Creating Resilient Cities +controlledvocabulary.gsdCourseName.05343:_critical_and_social_cartography=05343: Critical and Social Cartography +controlledvocabulary.gsdCourseName.05360:_territorial_intelligence=05360: Territorial Intelligence +controlledvocabulary.gsdCourseName.05433:_modern_housing_and_urban_districts=05433: Modern Housing and Urban Districts +controlledvocabulary.gsdCourseName.05492:_real_estate_finance_and_development_fundamentals_=05492: Real Estate Finance and Development Fundamentals +controlledvocabulary.gsdCourseName.05495:_market_analysis_and_urban_economics=05495: Market Analysis and Urban Economics +controlledvocabulary.gsdCourseName.05502:_urban_governance_and_the_politics_of_planning_in_the_developing_world=05502: Urban Governance and the Politics of Planning in the Developing World +controlledvocabulary.gsdCourseName.06121_construction_lab=06121 Construction Lab +controlledvocabulary.gsdCourseName.06122_energy_in_architecture=06122 Energy in Architecture +controlledvocabulary.gsdCourseName.06141:_ecologies,_techniques,_technologies_i=06141: Ecologies, Techniques, Technologies I +controlledvocabulary.gsdCourseName.06141:_ecologies,_techniques,_techs._i=06141: Ecologies, Techniques, Techs. I +controlledvocabulary.gsdCourseName.06142:_ecologies,_techniques,_techs._ii=06142: Ecologies, Techniques, Techs. II +controlledvocabulary.gsdCourseName.06227:_structural_design_1=06227: Structural Design 1 +controlledvocabulary.gsdCourseName.06230:_cases_in_contemporary_construction=06230: Cases in Contemporary Construction +controlledvocabulary.gsdCourseName.06241:_ecologies,_techniques,_technologies_iii=06241: Ecologies, Techniques, Technologies III +controlledvocabulary.gsdCourseName.06241:_ecologies,_techniques,_techs._iii=06241: Ecologies, Techniques, Techs. III +controlledvocabulary.gsdCourseName.06242:_ecologies,_techniques,_techs._iv=06242: Ecologies, Techniques, Techs. IV +controlledvocabulary.gsdCourseName.06243:_ecologies,_techniques,_techs._v=06243: Ecologies, Techniques, Techs. V +controlledvocabulary.gsdCourseName.06251:_research_seminar_on_urban_ecology=06251: Research Seminar on Urban Ecology +controlledvocabulary.gsdCourseName.06271:_the_innovative_practice=06271: The Innovative Practice +controlledvocabulary.gsdCourseName.06272:_innovation_in_science_and_engineering=06272: Innovation in Science and Engineering +controlledvocabulary.gsdCourseName.06273:_water_engineering=06273: Water Engineering +controlledvocabulary.gsdCourseName.06274:_advanced_introduction_to_robotics=06274: Advanced Introduction to Robotics +controlledvocabulary.gsdCourseName.06275:_computer_vision_=06275: Computer Vision +controlledvocabulary.gsdCourseName.06317:_material_practice_as_research=06317: Material Practice as Research +controlledvocabulary.gsdCourseName.06318:_urban_and_suburban_ecology=06318: Urban and Suburban Ecology +controlledvocabulary.gsdCourseName.06322:_mapping:_geographic_representation=06322: Mapping: Geographic Representation +controlledvocabulary.gsdCourseName.06323:_brownfields_practicum=06323: Brownfields Practicum +controlledvocabulary.gsdCourseName.06333:_aquatic_ecology=06333: Aquatic Ecology +controlledvocabulary.gsdCourseName.06335:_phytotechnologies=06335: Phytotechnologies +controlledvocabulary.gsdCourseName.06337:_changing_natural_and_built_coastal_environments=06337: Changing Natural and Built Coastal Environments +controlledvocabulary.gsdCourseName.06337:_changing_natural_and_built_coastal_environments=06337: Changing Natural and Built Coastal Environments +controlledvocabulary.gsdCourseName.06338:_introduction_to_computational_design=06338: Introduction to Computational Design +controlledvocabulary.gsdCourseName.06436:_expanded_mechanisms_/_empirical_materialisms=06436: Expanded Mechanisms / Empirical Materialisms +controlledvocabulary.gsdCourseName.06450:_high_performance_buildings_and_systems_integration=06450: High Performance Buildings and Systems Integration +controlledvocabulary.gsdCourseName.06451:_research_seminar_on_urban_ecology=06451: Research Seminar on Urban Ecology +controlledvocabulary.gsdCourseName.06454:_poetics_of_construction:_detail_design=06454: Poetics of Construction: Detail Design +controlledvocabulary.gsdCourseName.06468:_design_by_committee=06468: Design By Committee +controlledvocabulary.gsdCourseName.06470:_energy_simulation_for_design=06470: Energy Simulation for Design +controlledvocabulary.gsdCourseName.06474:_natural_ventilation=06474: Natural Ventilation +controlledvocabulary.gsdCourseName.06478:_informal_robotics=06478: Informal Robotics +controlledvocabulary.gsdCourseName.06479:_daylighting=06479: Daylighting +controlledvocabulary.gsdCourseName.07241:_practices_of_la=07241: Practices of LA +controlledvocabulary.gsdCourseName.07241:_practices_of_landscape_architecture=07241: Practices of Landscape Architecture +controlledvocabulary.gsdCourseName.07408:_frameworks_of_contemporary_practice=07408: Frameworks of Contemporary Practice +controlledvocabulary.gsdCourseName.07410:_the_architect_in_history=07410: The Architect in History +controlledvocabulary.gsdCourseName.09123:_the_fourth_typology=09123: The Fourth Typology +controlledvocabulary.gsdCourseName.09123:_the_fourth_typology:_dominant_type_+_the_idea_of_the_city=09123: The Fourth Typology: Dominant Type + the Idea of the City +controlledvocabulary.gsdCourseName.09127:_real_estate_and_city_making_in_china=09127: Real Estate and City Making in China +controlledvocabulary.gsdCourseName.09131:_cultivating_scale:_territorial_planting_strategies=09131: Cultivating Scale: Territorial Planting Strategies +controlledvocabulary.gsdCourseName.09136:_teaching_creativity=09136: Teaching Creativity +controlledvocabulary.gsdCourseName.09137:_mapping_cultural_space=09137: Mapping Cultural Space +controlledvocabulary.gsdCourseName.09201:_independent_study__masters_degrees=09201: Independent Study Masters Degrees +controlledvocabulary.gsdCourseName.09204:_preparation_for_independent_thesis_proposal_for_mup,_maud,_or_mlaud=09204: Preparation for Independent Thesis Proposal for MUP, MAUD, or MLAUD +controlledvocabulary.gsdCourseName.09204:_thesis_prep_for_mup,_maud,_or_mlaud=09204: Thesis Prep for MUP, MAUD, or MLAUD +controlledvocabulary.gsdCourseName.09301:_independent_thesis_in_satisfaction_of_degree_march=09301: Independent Thesis in Satisfaction of Degree MArch +controlledvocabulary.gsdCourseName.09302:_independent_thesis_in_satisfaction_of_the_degree_maud,_mlaud,_or_mup=09302: Independent Thesis in Satisfaction of the Degree MAUD, MLAUD, or MUP +controlledvocabulary.gsdCourseName.09304:_independent_thesis_for_mdes=09304: Independent Thesis for Mdes +controlledvocabulary.gsdCourseName.09304:_independent_thesis_for_the_degree_master_in_design_studies=09304: Independent Thesis for the Degree Master in Design Studies +controlledvocabulary.gsdCourseName.09305:_master_of_design_studies_final_project=09305: Master of Design Studies Final Project +controlledvocabulary.gsdCourseName.09341:_preparation_of_design_thesis_proposal_for_mla=09341: Preparation of Design Thesis Proposal for MLA +controlledvocabulary.gsdCourseName.09341:_thesis_prep_for_mla=09341: Thesis Prep for MLA +controlledvocabulary.gsdCourseName.09342:_independent_thesis=09342: Independent Thesis +controlledvocabulary.gsdCourseName.09342:_independent_thesis_in_satisfaction_of_the_degree_mla=09342: Independent Thesis in Satisfaction of the Degree MLA +controlledvocabulary.gsdCourseName.09503:_preparation_of_doctoral_thesis_proposal=09503: Preparation of Doctoral Thesis Proposal +controlledvocabulary.gsdCourseName.09504:_thesis_in_satisfaction_of_the_degree_doctor_of_design=09504: Thesis in Satisfaction of the Degree Doctor of Design +controlledvocabulary.gsdCourseName.09506:_thesis_extension_in_satisfaction_of_degree_doctor_of_design=09506: Thesis Extension in Satisfaction of Degree Doctor of Design +controlledvocabulary.gsdCourseName.09601:_march_ii_proseminar=09601: MArch II Proseminar +controlledvocabulary.gsdCourseName.09630:_urban_design_proseminar=09630: Urban Design Proseminar +controlledvocabulary.gsdCourseName.09641:_mla_proseminar=09641: MLA Proseminar +controlledvocabulary.gsdCourseName.09641:_proseminar_in_landscape_architecture=09641: Proseminar in Landscape Architecture +controlledvocabulary.gsdCourseName.09661:_proseminar_in_urbanism,_landscape,_ecology=09661: Proseminar in Urbanism, Landscape, Ecology +controlledvocabulary.gsdCourseName.09663:_risk_and_resilience_proseminar=09663: Risk and Resilience Proseminar +controlledvocabulary.gsdCourseName.09691:_doctoral_program_proseminar=09691: Doctoral Program Proseminar +controlledvocabulary.gsdCourseName.other=Other \ No newline at end of file diff --git a/src/main/java/customMRA.properties b/src/main/java/customMRA.properties new file mode 100644 index 00000000000..8d905d266f0 --- /dev/null +++ b/src/main/java/customMRA.properties @@ -0,0 +1,16 @@ +metadatablock.name=customMRA +metadatablock.displayName=MRA Metadata +datasetfieldtype.mraCollection.title=Murray Research Archive Collection +datasetfieldtype.mraCollection.description=Browse the Murray Research Archive collection with the following terms. +datasetfieldtype.mraCollection.watermark= +controlledvocabulary.mraCollection.diversity_samples:_race,_ethnicity,_sexual_orientation,_religion=Diversity samples: Race, Ethnicity, Sexual Orientation, Religion +controlledvocabulary.mraCollection.early_head_start_research_and_evaluation_project,_1996_-_2001=Early Head Start Research and Evaluation Project, 1996 - 2001 +controlledvocabulary.mraCollection.economic_theory_and_demography=Economic Theory and Demography +controlledvocabulary.mraCollection.education=Education +controlledvocabulary.mraCollection.family._marriage._women=Family. Marriage. Women +controlledvocabulary.mraCollection.health=Health +controlledvocabulary.mraCollection.politics_and_government=Politics and Government +controlledvocabulary.mraCollection.replications,_extensions_and_followups=Replications, Extensions and Followups +controlledvocabulary.mraCollection.studies_with_audio_data=Studies with Audio Data +controlledvocabulary.mraCollection.studies_with_video_data=Studies with Video Data +controlledvocabulary.mraCollection.work=Work \ No newline at end of file diff --git a/src/main/java/customPSI.properties b/src/main/java/customPSI.properties new file mode 100644 index 00000000000..e72e4e50222 --- /dev/null +++ b/src/main/java/customPSI.properties @@ -0,0 +1,120 @@ +metadatablock.name=customPSI +metadatablock.displayName=PSI Metadata +datasetfieldtype.psiBehavior.title=Behavior +datasetfieldtype.psiDonor.title=Donor +datasetfieldtype.psiHealthArea.title=Health Area +datasetfieldtype.psiIntervention.title=Intervention +datasetfieldtype.psiPopulation.title=Population +datasetfieldtype.psiProductsServices.title=Products/Services +datasetfieldtype.psiStudyDesignElement.title=Study Design Element +datasetfieldtype.psiStudyType.title=Study Type +datasetfieldtype.psiBehavior.description=Behavior +datasetfieldtype.psiDonor.description=Donor +datasetfieldtype.psiHealthArea.description=Health Area +datasetfieldtype.psiIntervention.description=Intervention +datasetfieldtype.psiPopulation.description=Population +datasetfieldtype.psiProductsServices.description=Products/Services +datasetfieldtype.psiStudyDesignElement.description=Study Design Element +datasetfieldtype.psiStudyType.description=Study Type +datasetfieldtype.psiBehavior.watermark= +datasetfieldtype.psiDonor.watermark= +datasetfieldtype.psiHealthArea.watermark= +datasetfieldtype.psiIntervention.watermark= +datasetfieldtype.psiPopulation.watermark= +datasetfieldtype.psiProductsServices.watermark= +datasetfieldtype.psiStudyDesignElement.watermark= +datasetfieldtype.psiStudyType.watermark= +controlledvocabulary.psiBehavior.abstinence=Abstinence +controlledvocabulary.psiBehavior.birth_spacing=Birth spacing +controlledvocabulary.psiBehavior.cervical_cancer_screening=Cervical cancer screening +controlledvocabulary.psiBehavior.condom_use=Condom use +controlledvocabulary.psiBehavior.fgm=FGM +controlledvocabulary.psiBehavior.hiv_risk_behaviors=HIV risk behaviors +controlledvocabulary.psiBehavior.hiv/sti_testing=HIV/STI testing +controlledvocabulary.psiBehavior.llin_use=LLIN use +controlledvocabulary.psiBehavior.male_circumcision=Male circumcision +controlledvocabulary.psiBehavior.modern_contraceptive_use=Modern contraceptive use +controlledvocabulary.psiBehavior.ors_use=ORS use +controlledvocabulary.psiBehavior.partner_reduction=Partner reduction +controlledvocabulary.psiBehavior.referral_uptake=Referral uptake +controlledvocabulary.psiBehavior.treatment_adherence=Treatment adherence +controlledvocabulary.psiBehavior.water_treatment=Water treatment +controlledvocabulary.psiDonor.cdc=CDC +controlledvocabulary.psiDonor.dfid=DFID +controlledvocabulary.psiDonor.dutch=Dutch +controlledvocabulary.psiDonor.gates_foundation=Gates Foundation +controlledvocabulary.psiDonor.global_fund=Global Fund +controlledvocabulary.psiDonor.kfw=KfW +controlledvocabulary.psiDonor.lad=LAD +controlledvocabulary.psiDonor.other=Other +controlledvocabulary.psiDonor.pepfar=PEPFAR +controlledvocabulary.psiDonor.unfpa=UNFPA +controlledvocabulary.psiDonor.usaid=USAID +controlledvocabulary.psiHealthArea.diarrhea=Diarrhea +controlledvocabulary.psiHealthArea.gbv=GBV +controlledvocabulary.psiHealthArea.hiv=HIV +controlledvocabulary.psiHealthArea.icm=ICM +controlledvocabulary.psiHealthArea.malaria=Malaria +controlledvocabulary.psiHealthArea.ncds=NCDs +controlledvocabulary.psiHealthArea.nutrition=Nutrition +controlledvocabulary.psiHealthArea.pneumonia=Pneumonia +controlledvocabulary.psiHealthArea.reproductive_health=Reproductive health +controlledvocabulary.psiHealthArea.tb=TB +controlledvocabulary.psiIntervention.bcc=BCC +controlledvocabulary.psiIntervention.ipc=IPC +controlledvocabulary.psiIntervention.medical_detailing=Medical detailing +controlledvocabulary.psiIntervention.mhealth=mHealth +controlledvocabulary.psiIntervention.provider_training=Provider training +controlledvocabulary.psiIntervention.social_franchising=Social franchising +controlledvocabulary.psiPopulation.caregivers=Caregivers +controlledvocabulary.psiPopulation.couples=Couples +controlledvocabulary.psiPopulation.fsw=FSW +controlledvocabulary.psiPopulation.general_population=General population +controlledvocabulary.psiPopulation.idus=IDUs +controlledvocabulary.psiPopulation.marps=MARPs +controlledvocabulary.psiPopulation.men=Men +controlledvocabulary.psiPopulation.msm=MSM +controlledvocabulary.psiPopulation.plhiv=PLHIV +controlledvocabulary.psiPopulation.providers=Providers +controlledvocabulary.psiPopulation.truck_drivers=Truck drivers +controlledvocabulary.psiPopulation.women=Women +controlledvocabulary.psiPopulation.wra=WRA +controlledvocabulary.psiPopulation.youth=Youth +controlledvocabulary.psiProductsServices.act=ACT +controlledvocabulary.psiProductsServices.anc=ANC +controlledvocabulary.psiProductsServices.antibiotics=Antibiotics +controlledvocabulary.psiProductsServices.art=ART +controlledvocabulary.psiProductsServices.clean_delivery_kit=Clean delivery kit +controlledvocabulary.psiProductsServices.condoms=Condoms +controlledvocabulary.psiProductsServices.household_water_treatment=Household water treatment +controlledvocabulary.psiProductsServices.htc=HTC +controlledvocabulary.psiProductsServices.llin=LLIN +controlledvocabulary.psiProductsServices.long-term_methods=Long-term Methods +controlledvocabulary.psiProductsServices.medicated_abortion=Medicated Abortion +controlledvocabulary.psiProductsServices.misoprostol=Misoprostol +controlledvocabulary.psiProductsServices.multivitamin=Multivitamin +controlledvocabulary.psiProductsServices.needle_and_syringe=Needle and syringe +controlledvocabulary.psiProductsServices.nevirapine=Nevirapine +controlledvocabulary.psiProductsServices.ors=ORS +controlledvocabulary.psiProductsServices.pmtct=PMTCT +controlledvocabulary.psiProductsServices.short-term_methods=Short-term methods +controlledvocabulary.psiProductsServices.sti_kit=STI kit +controlledvocabulary.psiProductsServices.tb_dots=TB DOTS +controlledvocabulary.psiProductsServices.vmc=VMC +controlledvocabulary.psiProductsServices.zinc=Zinc +controlledvocabulary.psiStudyDesignElement.cem=CEM +controlledvocabulary.psiStudyDesignElement.client_exit_interview=Client exit interview +controlledvocabulary.psiStudyDesignElement.control_group=Control group +controlledvocabulary.psiStudyDesignElement.cross-sectional=Cross-sectional +controlledvocabulary.psiStudyDesignElement.focus_group=Focus group +controlledvocabulary.psiStudyDesignElement.in-depth_interview=In-depth interview +controlledvocabulary.psiStudyDesignElement.longitudinal=Longitudinal +controlledvocabulary.psiStudyDesignElement.lqas=LQAS +controlledvocabulary.psiStudyDesignElement.mystery_client=Mystery client +controlledvocabulary.psiStudyDesignElement.pretesting=Pretesting +controlledvocabulary.psiStudyDesignElement.trac=TRaC +controlledvocabulary.psiStudyType.map=MAP +controlledvocabulary.psiStudyType.mixed_methods=Mixed Methods +controlledvocabulary.psiStudyType.qualitative=Qualitative +controlledvocabulary.psiStudyType.quantitative=Quantitative +controlledvocabulary.psiStudyType.retail_audit=Retail audit \ No newline at end of file diff --git a/src/main/java/customPSRI.properties b/src/main/java/customPSRI.properties new file mode 100644 index 00000000000..61370bb9fd1 --- /dev/null +++ b/src/main/java/customPSRI.properties @@ -0,0 +1,58 @@ +metadatablock.name=customPSRI +metadatablock.displayName=Political Science Replication Initiative Metadata +datasetfieldtype.PSRI1.title=Are the original data publicly available? +datasetfieldtype.PSRI2.title=Is the original code available? +datasetfieldtype.PSRI3.title=Where are the original data archived (name and url)? +datasetfieldtype.PSRI4.title=Where is the original code publicly archived (name and url)? +datasetfieldtype.PSRI5.title=Will you submit your replication code to this Dataverse (This is a PSRI requirement)? +datasetfieldtype.PSRI6.title=Will you submit your replication write-up to this Dataverse (This is a PSRI requirement)? +datasetfieldtype.PSRI7.title=Did you send the replication materials to the original author(s) and notify them that you'd be posting your replication on PSRI? +datasetfieldtype.PSRI8.title=Was the replication done in a course? (If so, please continue to answer the subsequent questions, and if not, select N/A) +datasetfieldtype.PSRI9.title=Did another student attempt to replicate the replication in the class? +datasetfieldtype.PSRI10.title=Did another student replicate this replication successfully? +datasetfieldtype.PSRI11.title=Did a professor read/review a draft before the final version? +datasetfieldtype.PSRI1.description=Select from the list of options. +datasetfieldtype.PSRI2.description=Select from the list of options. +datasetfieldtype.PSRI3.description=Answer if the data are publicly available. +datasetfieldtype.PSRI4.description=Answer if the code is publicly available. +datasetfieldtype.PSRI5.description=Select from the list of options. +datasetfieldtype.PSRI6.description=Select from the list of options. +datasetfieldtype.PSRI7.description=Select from the list of options. +datasetfieldtype.PSRI8.description=Select from the list of options. +datasetfieldtype.PSRI9.description=Select from the list of options. +datasetfieldtype.PSRI10.description=Select from the list of options. +datasetfieldtype.PSRI11.description=Select from the list of options. +datasetfieldtype.PSRI1.watermark= +datasetfieldtype.PSRI2.watermark= +datasetfieldtype.PSRI3.watermark= +datasetfieldtype.PSRI4.watermark= +datasetfieldtype.PSRI5.watermark= +datasetfieldtype.PSRI6.watermark= +datasetfieldtype.PSRI7.watermark= +datasetfieldtype.PSRI8.watermark= +datasetfieldtype.PSRI9.watermark= +datasetfieldtype.PSRI10.watermark= +datasetfieldtype.PSRI11.watermark= +controlledvocabulary.PSRI1.no=No +controlledvocabulary.PSRI1.yes=Yes +controlledvocabulary.PSRI2.no=No +controlledvocabulary.PSRI2.yes=Yes +controlledvocabulary.PSRI2.na=NA +controlledvocabulary.PSRI5.no=No +controlledvocabulary.PSRI5.yes=Yes +controlledvocabulary.PSRI6.no=No +controlledvocabulary.PSRI6.yes=Yes +controlledvocabulary.PSRI7.no=No +controlledvocabulary.PSRI7.yes=Yes +controlledvocabulary.PSRI8.no=No +controlledvocabulary.PSRI8.yes=Yes +controlledvocabulary.PSRI8.na=NA +controlledvocabulary.PSRI9.na=NA +controlledvocabulary.PSRI9.no=No +controlledvocabulary.PSRI9.yes=Yes +controlledvocabulary.PSRI10.na=NA +controlledvocabulary.PSRI10.no=No +controlledvocabulary.PSRI10.yes=Yes +controlledvocabulary.PSRI11.na=NA +controlledvocabulary.PSRI11.no=No +controlledvocabulary.PSRI11.yes=Yes \ No newline at end of file diff --git a/src/main/java/custom_hbgdki.properties b/src/main/java/custom_hbgdki.properties new file mode 100644 index 00000000000..087c706d014 --- /dev/null +++ b/src/main/java/custom_hbgdki.properties @@ -0,0 +1,116 @@ +metadatablock.name=custom_hbgdki +metadatablock.displayName=HBGDki Custom Metadata +datasetfieldtype.hbgdkiStudyName.title=Name of Study +datasetfieldtype.hbgdkiStudyRegistry.title=Study Registry +datasetfieldtype.hbgdkiStudyRegistryType.title=ID Type +datasetfieldtype.hbgdkiStudyRegistryNumber.title=ID Number +datasetfieldtype.hbgdkiStudyType.title=Type of study +datasetfieldtype.hbgdkiIntervention.title=Intervention +datasetfieldtype.hbgdkiLowerLimitAge.title=Lower limit of age at enrollment +datasetfieldtype.hbgdkiUnitsLowerLimitAge.title=Units for lower age limit +datasetfieldtype.hbgdkiUpperLimitAge.title=Upper limit of age at enrollment +datasetfieldtype.hbgdkiUnitsUpperLimitAge.title=Units for upper age limit +datasetfieldtype.hbgdkiOther.title=Other entry criteria +datasetfieldtype.hbgdkiBiosampleType.title=Types of biosamples collected, if any +datasetfieldtype.hbgdkiGestationalAge.title=Gestational age +datasetfieldtype.hbgdkiAnthropometry.title=Anthropometry +datasetfieldtype.hbgdkiBirthWeight.title=Birth weight +datasetfieldtype.hbgdkiNeurocognitiveDev.title=Neurocognitive development +datasetfieldtype.hbgdkiMaternalChar.title=Maternal characteristics +datasetfieldtype.hbgdkiPregnancyBirth.title=Pregnancy and birth +datasetfieldtype.hbgdkiSocioeconomicChar.title=Socioeconomic characteristics +datasetfieldtype.hbgdkiFeedingCare.title=Feeding care & practice +datasetfieldtype.hbgdkiImmunizations.title=Immunizations +datasetfieldtype.hbgdkiInfantChildhoodMorbidity.title=Morbidity in infancy and childhood +datasetfieldtype.hbgdkiWaterSanHygiene.title=Water, sanitation and hygiene standards +datasetfieldtype.hbgdkiStudyName.description=Name of the study. +datasetfieldtype.hbgdkiStudyRegistry.description=Which study registry was used? +datasetfieldtype.hbgdkiStudyRegistryType.description=Which study registry was used? +datasetfieldtype.hbgdkiStudyRegistryNumber.description=ID number for the study per the registry. +datasetfieldtype.hbgdkiStudyType.description=Type of study. +datasetfieldtype.hbgdkiIntervention.description=If an interventional study, describe the interventions. +datasetfieldtype.hbgdkiLowerLimitAge.description=Lower limit of age at enrollment. +datasetfieldtype.hbgdkiUnitsLowerLimitAge.description=Units for lower age limit. +datasetfieldtype.hbgdkiUpperLimitAge.description=Upper limit of age at enrollment. +datasetfieldtype.hbgdkiUnitsUpperLimitAge.description=Units for upper age limit. +datasetfieldtype.hbgdkiOther.description=Other entry criteria. +datasetfieldtype.hbgdkiBiosampleType.description=Types of biosamples used (e.g., Blood, Stool,...). +datasetfieldtype.hbgdkiGestationalAge.description=Gestational age +datasetfieldtype.hbgdkiAnthropometry.description=Anthropometry +datasetfieldtype.hbgdkiBirthWeight.description=Birth weight +datasetfieldtype.hbgdkiNeurocognitiveDev.description=Neurocognitive development +datasetfieldtype.hbgdkiMaternalChar.description=Dataset parameters can include: age, height, weight, obstetric history. +datasetfieldtype.hbgdkiPregnancyBirth.description=Dataset parameters can include: Morbidity, nutrition, ANC, delivery method and setting. +datasetfieldtype.hbgdkiSocioeconomicChar.description=Socioeconomic characteristics +datasetfieldtype.hbgdkiFeedingCare.description=Feeding care & practice +datasetfieldtype.hbgdkiImmunizations.description=Immunizations +datasetfieldtype.hbgdkiInfantChildhoodMorbidity.description=Morbidity in infancy and childhood +datasetfieldtype.hbgdkiWaterSanHygiene.description=Water, sanitation and hygiene standards +datasetfieldtype.hbgdkiStudyName.watermark=Limit to 20 characters. +datasetfieldtype.hbgdkiStudyRegistry.watermark= +datasetfieldtype.hbgdkiStudyRegistryType.watermark= +datasetfieldtype.hbgdkiStudyRegistryNumber.watermark= +datasetfieldtype.hbgdkiStudyType.watermark= +datasetfieldtype.hbgdkiIntervention.watermark= +datasetfieldtype.hbgdkiLowerLimitAge.watermark= +datasetfieldtype.hbgdkiUnitsLowerLimitAge.watermark= +datasetfieldtype.hbgdkiUpperLimitAge.watermark= +datasetfieldtype.hbgdkiUnitsUpperLimitAge.watermark= +datasetfieldtype.hbgdkiOther.watermark= +datasetfieldtype.hbgdkiBiosampleType.watermark= +datasetfieldtype.hbgdkiGestationalAge.watermark= +datasetfieldtype.hbgdkiAnthropometry.watermark= +datasetfieldtype.hbgdkiBirthWeight.watermark= +datasetfieldtype.hbgdkiNeurocognitiveDev.watermark= +datasetfieldtype.hbgdkiMaternalChar.watermark= +datasetfieldtype.hbgdkiPregnancyBirth.watermark= +datasetfieldtype.hbgdkiSocioeconomicChar.watermark= +datasetfieldtype.hbgdkiFeedingCare.watermark= +datasetfieldtype.hbgdkiImmunizations.watermark= +datasetfieldtype.hbgdkiInfantChildhoodMorbidity.watermark= +datasetfieldtype.hbgdkiWaterSanHygiene.watermark= +controlledvocabulary.hbgdkiStudyRegistryType.international_clinical_trials_registry_platform_(ictrp)=International Clinical Trials Registry Platform (ICTRP) +controlledvocabulary.hbgdkiStudyRegistryType.australian_new_zealand_clinical_trials_registry_(anzctr)=Australian New Zealand Clinical Trials Registry (ANZCTR) +controlledvocabulary.hbgdkiStudyRegistryType.brazilian_clinical_trials_registry_(rebec)=Brazilian Clinical Trials Registry (ReBec) +controlledvocabulary.hbgdkiStudyRegistryType.chinese_clinical_trial_registry_(chictr)=Chinese Clinical Trial Registry (ChiCTR) +controlledvocabulary.hbgdkiStudyRegistryType.clinical_research_information_service_(cris),_republic_of_korea=Clinical Research Information Service (CRiS), Republic of Korea +controlledvocabulary.hbgdkiStudyRegistryType.clinical_trials_registry_-_india_(ctri)=Clinical Trials Registry - India (CTRI) +controlledvocabulary.hbgdkiStudyRegistryType.cuban_public_registry_of_clinical_trials_(rpcec)=Cuban Public Registry of Clinical Trials (RPCEC) +controlledvocabulary.hbgdkiStudyRegistryType.eu_clinical_trials_register_(eu-ctr)=EU Clinical Trials Register (EU-CTR) +controlledvocabulary.hbgdkiStudyRegistryType.german_clinical_trials_register_(drks)=German Clinical Trials Register (DRKS) +controlledvocabulary.hbgdkiStudyRegistryType.iranian_registry_of_clinical_trials_(irct)=Iranian Registry of Clinical Trials (IRCT) +controlledvocabulary.hbgdkiStudyRegistryType.isrctn=ISRCTN +controlledvocabulary.hbgdkiStudyRegistryType.japan_primary_registries_network_(jprn)=Japan Primary Registries Network (JPRN) +controlledvocabulary.hbgdkiStudyRegistryType.pan_african_clinical_trial_registry_(pactr)=Pan African Clinical Trial Registry (PACTR) +controlledvocabulary.hbgdkiStudyRegistryType.sri_lanka_clinical_trials_registry_(slctr)=Sri Lanka Clinical Trials Registry (SLCTR) +controlledvocabulary.hbgdkiStudyRegistryType.thai_clinical_trials_registry_(tctr)=Thai Clinical Trials Registry (TCTR) +controlledvocabulary.hbgdkiStudyRegistryType.the_netherlands_national_trial_register_(ntr)=The Netherlands National Trial Register (NTR) +controlledvocabulary.hbgdkiStudyRegistryType.us_clinical_trials_registry_(clinicaltrials.gov)=US Clinical Trials Registry (clinicaltrials.gov) +controlledvocabulary.hbgdkiStudyType.interventional=Interventional +controlledvocabulary.hbgdkiStudyType.observational=Observational +controlledvocabulary.hbgdkiStudyType.case_control=Case Control +controlledvocabulary.hbgdkiStudyType.meta-analysis=Meta-analysis +controlledvocabulary.hbgdkiStudyType.demographic_&_health_survey=Demographic & Health Survey +controlledvocabulary.hbgdkiStudyType.other_survey=Other Survey +controlledvocabulary.hbgdkiGestationalAge.yes=Yes +controlledvocabulary.hbgdkiGestationalAge.no=No +controlledvocabulary.hbgdkiAnthropometry.yes=Yes +controlledvocabulary.hbgdkiAnthropometry.no=No +controlledvocabulary.hbgdkiBirthWeight.yes=Yes +controlledvocabulary.hbgdkiBirthWeight.no=No +controlledvocabulary.hbgdkiNeurocognitiveDev.yes=Yes +controlledvocabulary.hbgdkiNeurocognitiveDev.no=No +controlledvocabulary.hbgdkiMaternalChar.yes=Yes +controlledvocabulary.hbgdkiMaternalChar.no=No +controlledvocabulary.hbgdkiPregnancyBirth.yes=Yes +controlledvocabulary.hbgdkiPregnancyBirth.no=No +controlledvocabulary.hbgdkiSocioeconomicChar.yes=Yes +controlledvocabulary.hbgdkiSocioeconomicChar.no=No +controlledvocabulary.hbgdkiFeedingCare.yes=Yes +controlledvocabulary.hbgdkiFeedingCare.no=No +controlledvocabulary.hbgdkiImmunizations.yes=Yes +controlledvocabulary.hbgdkiImmunizations.no=No +controlledvocabulary.hbgdkiInfantChildhoodMorbidity.yes=Yes +controlledvocabulary.hbgdkiInfantChildhoodMorbidity.no=No +controlledvocabulary.hbgdkiWaterSanHygiene.yes=Yes +controlledvocabulary.hbgdkiWaterSanHygiene.no=No \ No newline at end of file diff --git a/src/main/java/edu/harvard/iq/dataverse/ControlledVocabularyValue.java b/src/main/java/edu/harvard/iq/dataverse/ControlledVocabularyValue.java index 1b1eb6460f6..00c264afeb7 100644 --- a/src/main/java/edu/harvard/iq/dataverse/ControlledVocabularyValue.java +++ b/src/main/java/edu/harvard/iq/dataverse/ControlledVocabularyValue.java @@ -6,11 +6,15 @@ package edu.harvard.iq.dataverse; +import edu.harvard.iq.dataverse.util.BundleUtil; +import org.apache.commons.lang3.StringUtils; + import java.io.Serializable; import java.util.ArrayList; import java.util.Collection; import java.util.Comparator; import java.util.Objects; +import java.util.MissingResourceException; import javax.persistence.CascadeType; import javax.persistence.Column; import javax.persistence.Entity; @@ -107,6 +111,16 @@ public void setControlledVocabAlternates(Collection co this.controlledVocabAlternates = controlledVocabAlternates; } + public String getLocaleStrValue() + { + String key = strValue.toLowerCase().replace(" " , "_"); + key = StringUtils.stripAccents(key); + try { + return BundleUtil.getStringFromPropertyFile("controlledvocabulary." + this.datasetFieldType.getName() + "." + key, getDatasetFieldType().getMetadataBlock().getName()); + } catch (MissingResourceException e) { + return strValue; + } + } @Override public int hashCode() { diff --git a/src/main/java/edu/harvard/iq/dataverse/DatasetFieldType.java b/src/main/java/edu/harvard/iq/dataverse/DatasetFieldType.java index eef0f8fc22c..04901264455 100644 --- a/src/main/java/edu/harvard/iq/dataverse/DatasetFieldType.java +++ b/src/main/java/edu/harvard/iq/dataverse/DatasetFieldType.java @@ -1,6 +1,8 @@ package edu.harvard.iq.dataverse; import edu.harvard.iq.dataverse.search.SolrField; +import edu.harvard.iq.dataverse.util.BundleUtil; + import java.util.Collection; import java.io.Serializable; @@ -9,6 +11,7 @@ import java.util.Map; import java.util.Set; import java.util.TreeMap; +import java.util.MissingResourceException; import javax.faces.model.SelectItem; import javax.persistence.*; @@ -507,9 +510,9 @@ public int compareTo(DatasetFieldType o) { public String getDisplayName() { if (isHasParent() && !parentDatasetFieldType.getTitle().equals(title)) { - return parentDatasetFieldType.getTitle() + " " + title; + return parentDatasetFieldType.getLocaleTitle() + " " + getLocaleTitle(); } else { - return title; + return getLocaleTitle(); } } @@ -556,6 +559,43 @@ public SolrField getSolrField() { } } + public String getLocaleTitle() { + if(getMetadataBlock() == null) { + return title; + } + else { + try { + return BundleUtil.getStringFromPropertyFile("datasetfieldtype." + getName() + ".title", getMetadataBlock().getName()); + } catch (MissingResourceException e) { + return title; + } + } + } + + public String getLocaleDescription() { + if(getMetadataBlock() == null) { + return description; + } else { + try { + return BundleUtil.getStringFromPropertyFile("datasetfieldtype." + getName() + ".description", getMetadataBlock().getName()); + } catch (MissingResourceException e) { + return description; + } + } + } + + public String getLocaleWatermark() { + if(getMetadataBlock() == null) { + return watermark; + } else { + try { + return BundleUtil.getStringFromPropertyFile("datasetfieldtype." + getName() + ".watermark", getMetadataBlock().getName()); + } catch (MissingResourceException e) { + return watermark; + } + } + } + // help us identify fields that have null fieldType values public String getTmpNullFieldTypeIdentifier() { return "NullFieldType_s"; diff --git a/src/main/java/edu/harvard/iq/dataverse/MetadataBlock.java b/src/main/java/edu/harvard/iq/dataverse/MetadataBlock.java index 9d6b8dd9651..1a1a87b1b87 100644 --- a/src/main/java/edu/harvard/iq/dataverse/MetadataBlock.java +++ b/src/main/java/edu/harvard/iq/dataverse/MetadataBlock.java @@ -1,7 +1,10 @@ package edu.harvard.iq.dataverse; +import edu.harvard.iq.dataverse.util.BundleUtil; + import java.io.Serializable; import java.util.List; +import java.util.MissingResourceException; import java.util.Objects; import javax.persistence.CascadeType; import javax.persistence.Column; @@ -178,6 +181,14 @@ public boolean equals(Object object) { @Override public String toString() { return "edu.harvard.iq.dataverse.MetadataBlock[ id=" + id + " ]"; - } - + } + + public String getLocaleDisplayName() + { + try { + return BundleUtil.getStringFromPropertyFile("metadatablock.displayName", getName()); + } catch (MissingResourceException e) { + return displayName; + } + } } diff --git a/src/main/java/edu/harvard/iq/dataverse/util/LocalBundle.java b/src/main/java/edu/harvard/iq/dataverse/util/LocalBundle.java index 1431969cee9..01d1d9afc76 100644 --- a/src/main/java/edu/harvard/iq/dataverse/util/LocalBundle.java +++ b/src/main/java/edu/harvard/iq/dataverse/util/LocalBundle.java @@ -25,20 +25,14 @@ public class LocalBundle extends ResourceBundle { public LocalBundle(){ DataverseLocaleBean d = new DataverseLocaleBean(); - bundle_locale= new Locale(d.getLocaleCode()); + bundle_locale = new Locale(d.getLocaleCode()); String filesRootDirectory = System.getProperty("dataverse.lang.directory"); - if (filesRootDirectory == null || filesRootDirectory.isEmpty()) { - filesRootDirectory = "/tmp/lang"; - } - File bundleFileDir = new File(filesRootDirectory); - if (!bundleFileDir.exists()) - { + if (filesRootDirectory == null || filesRootDirectory.isEmpty()) { bundle = ResourceBundle.getBundle(defaultBundleFile, bundle_locale); - } - else { - + } else { + File bundleFileDir = new File(filesRootDirectory); URL[] urls = null; try { urls = new URL[]{bundleFileDir.toURI().toURL()}; diff --git a/src/main/java/geospatial.properties b/src/main/java/geospatial.properties new file mode 100644 index 00000000000..e47982377cb --- /dev/null +++ b/src/main/java/geospatial.properties @@ -0,0 +1,284 @@ +metadatablock.name=geospatial +metadatablock.displayName=Geospatial Metadata +datasetfieldtype.geographicCoverage.title=Geographic Coverage +datasetfieldtype.country.title=Country / Nation +datasetfieldtype.state.title=State / Province +datasetfieldtype.city.title=City +datasetfieldtype.otherGeographicCoverage.title=Other +datasetfieldtype.geographicUnit.title=Geographic Unit +datasetfieldtype.geographicBoundingBox.title=Geographic Bounding Box +datasetfieldtype.westLongitude.title=West Longitude +datasetfieldtype.eastLongitude.title=East Longitude +datasetfieldtype.northLongitude.title=North Latitude +datasetfieldtype.southLongitude.title=South Latitude +datasetfieldtype.geographicCoverage.description=Information on the geographic coverage of the data. Includes the total geographic scope of the data. +datasetfieldtype.country.description=The country or nation that the Dataset is about. +datasetfieldtype.state.description=The state or province that the Dataset is about. Use GeoNames for correct spelling and avoid abbreviations. +datasetfieldtype.city.description=The name of the city that the Dataset is about. Use GeoNames for correct spelling and avoid abbreviations. +datasetfieldtype.otherGeographicCoverage.description=Other information on the geographic coverage of the data. +datasetfieldtype.geographicUnit.description=Lowest level of geographic aggregation covered by the Dataset, e.g., village, county, region. +datasetfieldtype.geographicBoundingBox.description=The fundamental geometric description for any Dataset that models geography is the geographic bounding box. It describes the minimum box, defined by west and east longitudes and north and south latitudes, which includes the largest geographic extent of the Dataset's geographic coverage. This element is used in the first pass of a coordinate-based search. Inclusion of this element in the codebook is recommended, but is required if the bound polygon box is included. +datasetfieldtype.westLongitude.description=Westernmost coordinate delimiting the geographic extent of the Dataset. A valid range of values, expressed in decimal degrees, is -180,0 <= West Bounding Longitude Value <= 180,0. +datasetfieldtype.eastLongitude.description=Easternmost coordinate delimiting the geographic extent of the Dataset. A valid range of values, expressed in decimal degrees, is -180,0 <= East Bounding Longitude Value <= 180,0. +datasetfieldtype.northLongitude.description=Northernmost coordinate delimiting the geographic extent of the Dataset. A valid range of values, expressed in decimal degrees, is -90,0 <= North Bounding Latitude Value <= 90,0. +datasetfieldtype.southLongitude.description=Southernmost coordinate delimiting the geographic extent of the Dataset. A valid range of values, expressed in decimal degrees, is -90,0 <= South Bounding Latitude Value <= 90,0. +datasetfieldtype.geographicCoverage.watermark= +datasetfieldtype.country.watermark= +datasetfieldtype.state.watermark= +datasetfieldtype.city.watermark= +datasetfieldtype.otherGeographicCoverage.watermark= +datasetfieldtype.geographicUnit.watermark= +datasetfieldtype.geographicBoundingBox.watermark= +datasetfieldtype.westLongitude.watermark= +datasetfieldtype.eastLongitude.watermark= +datasetfieldtype.northLongitude.watermark= +datasetfieldtype.southLongitude.watermark= +controlledvocabulary.country.afghanistan=Afghanistan +controlledvocabulary.country.albania=Albania +controlledvocabulary.country.algeria=Algeria +controlledvocabulary.country.american_samoa=American Samoa +controlledvocabulary.country.andorra=Andorra +controlledvocabulary.country.angola=Angola +controlledvocabulary.country.anguilla=Anguilla +controlledvocabulary.country.antarctica=Antarctica +controlledvocabulary.country.antigua_and_barbuda=Antigua and Barbuda +controlledvocabulary.country.argentina=Argentina +controlledvocabulary.country.armenia=Armenia +controlledvocabulary.country.aruba=Aruba +controlledvocabulary.country.australia=Australia +controlledvocabulary.country.austria=Austria +controlledvocabulary.country.azerbaijan=Azerbaijan +controlledvocabulary.country.bahamas=Bahamas +controlledvocabulary.country.bahrain=Bahrain +controlledvocabulary.country.bangladesh=Bangladesh +controlledvocabulary.country.barbados=Barbados +controlledvocabulary.country.belarus=Belarus +controlledvocabulary.country.belgium=Belgium +controlledvocabulary.country.belize=Belize +controlledvocabulary.country.benin=Benin +controlledvocabulary.country.bermuda=Bermuda +controlledvocabulary.country.bhutan=Bhutan +controlledvocabulary.country.bolivia,_plurinational_state_of=Bolivia, Plurinational State of +controlledvocabulary.country.bonaire,_sint_eustatius_and_saba=Bonaire, Sint Eustatius and Saba +controlledvocabulary.country.bosnia_and_herzegovina=Bosnia and Herzegovina +controlledvocabulary.country.botswana=Botswana +controlledvocabulary.country.bouvet_island=Bouvet Island +controlledvocabulary.country.brazil=Brazil +controlledvocabulary.country.british_indian_ocean_territory=British Indian Ocean Territory +controlledvocabulary.country.brunei_darussalam=Brunei Darussalam +controlledvocabulary.country.bulgaria=Bulgaria +controlledvocabulary.country.burkina_faso=Burkina Faso +controlledvocabulary.country.burundi=Burundi +controlledvocabulary.country.cambodia=Cambodia +controlledvocabulary.country.cameroon=Cameroon +controlledvocabulary.country.canada=Canada +controlledvocabulary.country.cape_verde=Cape Verde +controlledvocabulary.country.cayman_islands=Cayman Islands +controlledvocabulary.country.central_african_republic=Central African Republic +controlledvocabulary.country.chad=Chad +controlledvocabulary.country.chile=Chile +controlledvocabulary.country.china=China +controlledvocabulary.country.christmas_island=Christmas Island +controlledvocabulary.country.cocos_(keeling)_islands=Cocos (Keeling) Islands +controlledvocabulary.country.colombia=Colombia +controlledvocabulary.country.comoros=Comoros +controlledvocabulary.country.congo=Congo +controlledvocabulary.country.congo,_the_democratic_republic_of_the=Congo, the Democratic Republic of the +controlledvocabulary.country.cook_islands=Cook Islands +controlledvocabulary.country.costa_rica=Costa Rica +controlledvocabulary.country.croatia=Croatia +controlledvocabulary.country.cuba=Cuba +controlledvocabulary.country.curacao=Curaçao +controlledvocabulary.country.cyprus=Cyprus +controlledvocabulary.country.czech_republic=Czech Republic +controlledvocabulary.country.cote_d'ivoire=Côte d'Ivoire +controlledvocabulary.country.denmark=Denmark +controlledvocabulary.country.djibouti=Djibouti +controlledvocabulary.country.dominica=Dominica +controlledvocabulary.country.dominican_republic=Dominican Republic +controlledvocabulary.country.ecuador=Ecuador +controlledvocabulary.country.egypt=Egypt +controlledvocabulary.country.el_salvador=El Salvador +controlledvocabulary.country.equatorial_guinea=Equatorial Guinea +controlledvocabulary.country.eritrea=Eritrea +controlledvocabulary.country.estonia=Estonia +controlledvocabulary.country.ethiopia=Ethiopia +controlledvocabulary.country.falkland_islands_(malvinas)=Falkland Islands (Malvinas) +controlledvocabulary.country.faroe_islands=Faroe Islands +controlledvocabulary.country.fiji=Fiji +controlledvocabulary.country.finland=Finland +controlledvocabulary.country.france=France +controlledvocabulary.country.french_guiana=French Guiana +controlledvocabulary.country.french_polynesia=French Polynesia +controlledvocabulary.country.french_southern_territories=French Southern Territories +controlledvocabulary.country.gabon=Gabon +controlledvocabulary.country.gambia=Gambia +controlledvocabulary.country.georgia=Georgia +controlledvocabulary.country.germany=Germany +controlledvocabulary.country.ghana=Ghana +controlledvocabulary.country.gibraltar=Gibraltar +controlledvocabulary.country.greece=Greece +controlledvocabulary.country.greenland=Greenland +controlledvocabulary.country.grenada=Grenada +controlledvocabulary.country.guadeloupe=Guadeloupe +controlledvocabulary.country.guam=Guam +controlledvocabulary.country.guatemala=Guatemala +controlledvocabulary.country.guernsey=Guernsey +controlledvocabulary.country.guinea=Guinea +controlledvocabulary.country.guinea-bissau=Guinea-Bissau +controlledvocabulary.country.guyana=Guyana +controlledvocabulary.country.haiti=Haiti +controlledvocabulary.country.heard_island_and_mcdonald_islands=Heard Island and Mcdonald Islands +controlledvocabulary.country.holy_see_(vatican_city_state)=Holy See (Vatican City State) +controlledvocabulary.country.honduras=Honduras +controlledvocabulary.country.hong_kong=Hong Kong +controlledvocabulary.country.hungary=Hungary +controlledvocabulary.country.iceland=Iceland +controlledvocabulary.country.india=India +controlledvocabulary.country.indonesia=Indonesia +controlledvocabulary.country.iran,_islamic_republic_of=Iran, Islamic Republic of +controlledvocabulary.country.iraq=Iraq +controlledvocabulary.country.ireland=Ireland +controlledvocabulary.country.isle_of_man=Isle of Man +controlledvocabulary.country.israel=Israel +controlledvocabulary.country.italy=Italy +controlledvocabulary.country.jamaica=Jamaica +controlledvocabulary.country.japan=Japan +controlledvocabulary.country.jersey=Jersey +controlledvocabulary.country.jordan=Jordan +controlledvocabulary.country.kazakhstan=Kazakhstan +controlledvocabulary.country.kenya=Kenya +controlledvocabulary.country.kiribati=Kiribati +controlledvocabulary.country.korea,_democratic_people's_republic_of=Korea, Democratic People's Republic of +controlledvocabulary.country.korea,_republic_of=Korea, Republic of +controlledvocabulary.country.kuwait=Kuwait +controlledvocabulary.country.kyrgyzstan=Kyrgyzstan +controlledvocabulary.country.lao_people's_democratic_republic=Lao People's Democratic Republic +controlledvocabulary.country.latvia=Latvia +controlledvocabulary.country.lebanon=Lebanon +controlledvocabulary.country.lesotho=Lesotho +controlledvocabulary.country.liberia=Liberia +controlledvocabulary.country.libya=Libya +controlledvocabulary.country.liechtenstein=Liechtenstein +controlledvocabulary.country.lithuania=Lithuania +controlledvocabulary.country.luxembourg=Luxembourg +controlledvocabulary.country.macao=Macao +controlledvocabulary.country.macedonia,_the_former_yugoslav_republic_of=Macedonia, the Former Yugoslav Republic of +controlledvocabulary.country.madagascar=Madagascar +controlledvocabulary.country.malawi=Malawi +controlledvocabulary.country.malaysia=Malaysia +controlledvocabulary.country.maldives=Maldives +controlledvocabulary.country.mali=Mali +controlledvocabulary.country.malta=Malta +controlledvocabulary.country.marshall_islands=Marshall Islands +controlledvocabulary.country.martinique=Martinique +controlledvocabulary.country.mauritania=Mauritania +controlledvocabulary.country.mauritius=Mauritius +controlledvocabulary.country.mayotte=Mayotte +controlledvocabulary.country.mexico=Mexico +controlledvocabulary.country.micronesia,_federated_states_of=Micronesia, Federated States of +controlledvocabulary.country.moldova,_republic_of=Moldova, Republic of +controlledvocabulary.country.monaco=Monaco +controlledvocabulary.country.mongolia=Mongolia +controlledvocabulary.country.montenegro=Montenegro +controlledvocabulary.country.montserrat=Montserrat +controlledvocabulary.country.morocco=Morocco +controlledvocabulary.country.mozambique=Mozambique +controlledvocabulary.country.myanmar=Myanmar +controlledvocabulary.country.namibia=Namibia +controlledvocabulary.country.nauru=Nauru +controlledvocabulary.country.nepal=Nepal +controlledvocabulary.country.netherlands=Netherlands +controlledvocabulary.country.new_caledonia=New Caledonia +controlledvocabulary.country.new_zealand=New Zealand +controlledvocabulary.country.nicaragua=Nicaragua +controlledvocabulary.country.niger=Niger +controlledvocabulary.country.nigeria=Nigeria +controlledvocabulary.country.niue=Niue +controlledvocabulary.country.norfolk_island=Norfolk Island +controlledvocabulary.country.northern_mariana_islands=Northern Mariana Islands +controlledvocabulary.country.norway=Norway +controlledvocabulary.country.oman=Oman +controlledvocabulary.country.pakistan=Pakistan +controlledvocabulary.country.palau=Palau +controlledvocabulary.country.palestine,_state_of=Palestine, State of +controlledvocabulary.country.panama=Panama +controlledvocabulary.country.papua_new_guinea=Papua New Guinea +controlledvocabulary.country.paraguay=Paraguay +controlledvocabulary.country.peru=Peru +controlledvocabulary.country.philippines=Philippines +controlledvocabulary.country.pitcairn=Pitcairn +controlledvocabulary.country.poland=Poland +controlledvocabulary.country.portugal=Portugal +controlledvocabulary.country.puerto_rico=Puerto Rico +controlledvocabulary.country.qatar=Qatar +controlledvocabulary.country.romania=Romania +controlledvocabulary.country.russian_federation=Russian Federation +controlledvocabulary.country.rwanda=Rwanda +controlledvocabulary.country.reunion=Réunion +controlledvocabulary.country.saint_barthelemy=Saint Barthélemy +controlledvocabulary.country.saint_helena,_ascension_and_tristan_da_cunha=Saint Helena, Ascension and Tristan da Cunha +controlledvocabulary.country.saint_kitts_and_nevis=Saint Kitts and Nevis +controlledvocabulary.country.saint_lucia=Saint Lucia +controlledvocabulary.country.saint_martin_(french_part)=Saint Martin (French part) +controlledvocabulary.country.saint_pierre_and_miquelon=Saint Pierre and Miquelon +controlledvocabulary.country.saint_vincent_and_the_grenadines=Saint Vincent and the Grenadines +controlledvocabulary.country.samoa=Samoa +controlledvocabulary.country.san_marino=San Marino +controlledvocabulary.country.sao_tome_and_principe=Sao Tome and Principe +controlledvocabulary.country.saudi_arabia=Saudi Arabia +controlledvocabulary.country.senegal=Senegal +controlledvocabulary.country.serbia=Serbia +controlledvocabulary.country.seychelles=Seychelles +controlledvocabulary.country.sierra_leone=Sierra Leone +controlledvocabulary.country.singapore=Singapore +controlledvocabulary.country.sint_maarten_(dutch_part)=Sint Maarten (Dutch part) +controlledvocabulary.country.slovakia=Slovakia +controlledvocabulary.country.slovenia=Slovenia +controlledvocabulary.country.solomon_islands=Solomon Islands +controlledvocabulary.country.somalia=Somalia +controlledvocabulary.country.south_africa=South Africa +controlledvocabulary.country.south_georgia_and_the_south_sandwich_islands=South Georgia and the South Sandwich Islands +controlledvocabulary.country.south_sudan=South Sudan +controlledvocabulary.country.spain=Spain +controlledvocabulary.country.sri_lanka=Sri Lanka +controlledvocabulary.country.sudan=Sudan +controlledvocabulary.country.suriname=Suriname +controlledvocabulary.country.svalbard_and_jan_mayen=Svalbard and Jan Mayen +controlledvocabulary.country.swaziland=Swaziland +controlledvocabulary.country.sweden=Sweden +controlledvocabulary.country.switzerland=Switzerland +controlledvocabulary.country.syrian_arab_republic=Syrian Arab Republic +controlledvocabulary.country.taiwan,_province_of_china=Taiwan, Province of China +controlledvocabulary.country.tajikistan=Tajikistan +controlledvocabulary.country.tanzania,_united_republic_of=Tanzania, United Republic of +controlledvocabulary.country.thailand=Thailand +controlledvocabulary.country.timor-leste=Timor-Leste +controlledvocabulary.country.togo=Togo +controlledvocabulary.country.tokelau=Tokelau +controlledvocabulary.country.tonga=Tonga +controlledvocabulary.country.trinidad_and_tobago=Trinidad and Tobago +controlledvocabulary.country.tunisia=Tunisia +controlledvocabulary.country.turkey=Turkey +controlledvocabulary.country.turkmenistan=Turkmenistan +controlledvocabulary.country.turks_and_caicos_islands=Turks and Caicos Islands +controlledvocabulary.country.tuvalu=Tuvalu +controlledvocabulary.country.uganda=Uganda +controlledvocabulary.country.ukraine=Ukraine +controlledvocabulary.country.united_arab_emirates=United Arab Emirates +controlledvocabulary.country.united_kingdom=United Kingdom +controlledvocabulary.country.united_states=United States +controlledvocabulary.country.united_states_minor_outlying_islands=United States Minor Outlying Islands +controlledvocabulary.country.uruguay=Uruguay +controlledvocabulary.country.uzbekistan=Uzbekistan +controlledvocabulary.country.vanuatu=Vanuatu +controlledvocabulary.country.venezuela,_bolivarian_republic_of=Venezuela, Bolivarian Republic of +controlledvocabulary.country.viet_nam=Viet Nam +controlledvocabulary.country.virgin_islands,_british=Virgin Islands, British +controlledvocabulary.country.virgin_islands,_u.s.=Virgin Islands, U.S. +controlledvocabulary.country.wallis_and_futuna=Wallis and Futuna +controlledvocabulary.country.western_sahara=Western Sahara +controlledvocabulary.country.yemen=Yemen +controlledvocabulary.country.zambia=Zambia +controlledvocabulary.country.zimbabwe=Zimbabwe +controlledvocabulary.country.aland_islands=Åland Islands \ No newline at end of file diff --git a/src/main/java/geospatial_fr.properties b/src/main/java/geospatial_fr.properties new file mode 100644 index 00000000000..f900bc4d5a7 --- /dev/null +++ b/src/main/java/geospatial_fr.properties @@ -0,0 +1,284 @@ +metadatablock.name=geospatial +metadatablock.displayName=Métadonnées géospatiales +datasetfieldtype.geographicCoverage.title=Couverture géographique +datasetfieldtype.country.title=Pays / Nation +datasetfieldtype.state.title=État / Province +datasetfieldtype.city.title=Ville +datasetfieldtype.otherGeographicCoverage.title=Autre +datasetfieldtype.geographicUnit.title=Unité géographique +datasetfieldtype.geographicBoundingBox.title=Zone de délimitation géographique +datasetfieldtype.westLongitude.title=Longitude ouest +datasetfieldtype.eastLongitude.title=Longitude est +datasetfieldtype.northLongitude.title=Latitude nord +datasetfieldtype.southLongitude.title=Latitude sud +datasetfieldtype.geographicCoverage.description=Renseignements sur la couverture géographique des données, notamment la portée géographique totale des données. +datasetfieldtype.country.description=Le pays ou la nation visé par l'ensemble de données. +datasetfieldtype.state.description=L'état ou la province dont l'ensemble de données traite. Utiliser GeoNames pour connaître l'orthographe exact et éviter les abréviations. +datasetfieldtype.city.description=Le nom de la ville dont l'ensemble de données traite. Utiliser GeoNames pour connaître l'orthographe exact et éviter les abréviations. +datasetfieldtype.otherGeographicCoverage.description=Autres renseignements sur la couverture géographique des données. +datasetfieldtype.geographicUnit.description=Niveau de regroupement géographique le plus bas couvert par l'ensemble de données, p. ex. village, pays, région. +datasetfieldtype.geographicBoundingBox.description=La zone de délimitation géographique est la description géographique fondamentale de tout ensemble de données qui modélise la géographie. Elle décrit la zone minimale, définie par des longitudes ouest et est et des latitudes nord et sud, qui comprend la plus importante étendue géographique de la couverture géographique de l'ensemble de données. Cet élément est utilisé dans le premier survol d'une recherche fondée sur les coordonnées. L'inclusion de cet élément dans le manuel de codes est recommandée et est obligatoire si la zone polygone délimitée est incluse. +datasetfieldtype.westLongitude.description=Les coordonnées les plus à l'ouest délimitant l'étendue géographique de l'ensemble de données. Une fourchette de valeurs valide, exprimée en degrés décimaux, correspond à -180,0 <= Valeur de longitude ouest de délimitation <= 180,0. +datasetfieldtype.eastLongitude.description=Les coordonnées les plus à l'est délimitant l'étendue géographique de l'ensemble de données. Une fourchette de valeurs valide, exprimée en degrés décimaux, correspond à -180,0 <= Valeur de longitude est de délimitation <= 180,0. +datasetfieldtype.northLongitude.description=Les coordonnées les plus au nord délimitant l'étendue géographique de l'ensemble de données. Une fourchette de valeurs valide, exprimée en degrés décimaux, correspond à -90,0 <= Valeur de latitude nord de délimitation <= 90,0. +datasetfieldtype.southLongitude.description=Les coordonnées les plus au sud délimitant l'étendue géographique de l'ensemble de données. Une fourchette de valeurs valide, exprimée en degrés décimaux, correspond à -90,0 <= Valeur de latitude sud de délimitation <= 90,0. +datasetfieldtype.geographicCoverage.watermark= +datasetfieldtype.country.watermark= +datasetfieldtype.state.watermark= +datasetfieldtype.city.watermark= +datasetfieldtype.otherGeographicCoverage.watermark= +datasetfieldtype.geographicUnit.watermark= +datasetfieldtype.geographicBoundingBox.watermark= +datasetfieldtype.westLongitude.watermark= +datasetfieldtype.eastLongitude.watermark= +datasetfieldtype.northLongitude.watermark= +datasetfieldtype.southLongitude.watermark= +controlledvocabulary.country.afghanistan=Afghanistan +controlledvocabulary.country.albania=Albanie +controlledvocabulary.country.algeria=Algérie +controlledvocabulary.country.american_samoa=Samoa américaine +controlledvocabulary.country.andorra=Andorre +controlledvocabulary.country.angola=Angola +controlledvocabulary.country.anguilla=Anguilla +controlledvocabulary.country.antarctica=Antarctique +controlledvocabulary.country.antigua_and_barbuda=Antigua-et-Barbuda +controlledvocabulary.country.argentina=Argentine +controlledvocabulary.country.armenia=Arménie +controlledvocabulary.country.aruba=Aruba +controlledvocabulary.country.australia=Australie +controlledvocabulary.country.austria=Autriche +controlledvocabulary.country.azerbaijan=Azerbaïdjan +controlledvocabulary.country.bahamas=Bahamas +controlledvocabulary.country.bahrain=Bahreïn +controlledvocabulary.country.bangladesh=Bangladesh +controlledvocabulary.country.barbados=Barbade +controlledvocabulary.country.belarus=Bélarus +controlledvocabulary.country.belgium=Belgique +controlledvocabulary.country.belize=Belize +controlledvocabulary.country.benin=Bénin +controlledvocabulary.country.bermuda=Bermudes +controlledvocabulary.country.bhutan=Bhoutan +controlledvocabulary.country.bolivia,_plurinational_state_of=Bolivie +controlledvocabulary.country.bonaire,_sint_eustatius_and_saba=Bonaire, Saint-Eustache et Saba +controlledvocabulary.country.bosnia_and_herzegovina=Bosnie-Herzégovine +controlledvocabulary.country.botswana=Botswana +controlledvocabulary.country.bouvet_island=Île Bouvet +controlledvocabulary.country.brazil=Brésil +controlledvocabulary.country.british_indian_ocean_territory=Territoire britannique de l'océan Indien +controlledvocabulary.country.brunei_darussalam=Brunéi Darussalam +controlledvocabulary.country.bulgaria=Bulgarie +controlledvocabulary.country.burkina_faso=Burkina Faso +controlledvocabulary.country.burundi=Burundi +controlledvocabulary.country.cambodia=Cambodge +controlledvocabulary.country.cameroon=Cameroun +controlledvocabulary.country.canada=Canada +controlledvocabulary.country.cape_verde=Cap-Vert +controlledvocabulary.country.cayman_islands=Îles Caïmans +controlledvocabulary.country.central_african_republic=République centrafricaine +controlledvocabulary.country.chad=Tchad +controlledvocabulary.country.chile=Chili +controlledvocabulary.country.china=Chine +controlledvocabulary.country.christmas_island=Île Christmas +controlledvocabulary.country.cocos_(keeling)_islands=Îles Cocos (Keeling) +controlledvocabulary.country.colombia=Colombie +controlledvocabulary.country.comoros=Comores +controlledvocabulary.country.congo=Congo +controlledvocabulary.country.congo,_the_democratic_republic_of_the=Congo, République démocratique du +controlledvocabulary.country.cook_islands=Îles Cook +controlledvocabulary.country.costa_rica=Costa Rica +controlledvocabulary.country.croatia=Croatie +controlledvocabulary.country.cuba=Cuba +controlledvocabulary.country.curacao=Curaçao +controlledvocabulary.country.cyprus=Chypre +controlledvocabulary.country.czech_republic=République tchèque +controlledvocabulary.country.cote_d'ivoire=Côte d'Ivoire +controlledvocabulary.country.denmark=Danemark +controlledvocabulary.country.djibouti=Djibouti +controlledvocabulary.country.dominica=Dominique +controlledvocabulary.country.dominican_republic=République dominicaine +controlledvocabulary.country.ecuador=Équateur +controlledvocabulary.country.egypt=Égypte +controlledvocabulary.country.el_salvador=El Salvador +controlledvocabulary.country.equatorial_guinea=Guinée équatoriale +controlledvocabulary.country.eritrea=Érythrée +controlledvocabulary.country.estonia=Estonie +controlledvocabulary.country.ethiopia=Éthiopie +controlledvocabulary.country.falkland_islands_(malvinas)=Îles Falkland (Malouines) +controlledvocabulary.country.faroe_islands=Îles Féroé +controlledvocabulary.country.fiji=Fidji +controlledvocabulary.country.finland=Finlande +controlledvocabulary.country.france=France +controlledvocabulary.country.french_guiana=Guyane française +controlledvocabulary.country.french_polynesia=Polynésie française +controlledvocabulary.country.french_southern_territories=Terres australes françaises +controlledvocabulary.country.gabon=Gabon +controlledvocabulary.country.gambia=Gambie +controlledvocabulary.country.georgia=Géorgie +controlledvocabulary.country.germany=Allemagne +controlledvocabulary.country.ghana=Ghana +controlledvocabulary.country.gibraltar=Gibraltar +controlledvocabulary.country.greece=Grèce +controlledvocabulary.country.greenland=Groenland +controlledvocabulary.country.grenada=Grenade +controlledvocabulary.country.guadeloupe=Guadeloupe +controlledvocabulary.country.guam=Guam +controlledvocabulary.country.guatemala=Guatemala +controlledvocabulary.country.guernsey=Guernesey +controlledvocabulary.country.guinea=Guinée +controlledvocabulary.country.guinea-bissau=Guinée-Bissau +controlledvocabulary.country.guyana=Guyana +controlledvocabulary.country.haiti=Haïti +controlledvocabulary.country.heard_island_and_mcdonald_islands=Îles Heard et McDonald +controlledvocabulary.country.holy_see_(vatican_city_state)=Saint-Siège (État de la Cité du Vatican) +controlledvocabulary.country.honduras=Honduras +controlledvocabulary.country.hong_kong=Hong Kong +controlledvocabulary.country.hungary=Hongrie +controlledvocabulary.country.iceland=Islande +controlledvocabulary.country.india=Inde +controlledvocabulary.country.indonesia=Indonésie +controlledvocabulary.country.iran,_islamic_republic_of=Iran +controlledvocabulary.country.iraq=Iraq +controlledvocabulary.country.ireland=Irlande +controlledvocabulary.country.isle_of_man=Île de Man +controlledvocabulary.country.israel=Israël +controlledvocabulary.country.italy=Italie +controlledvocabulary.country.jamaica=Jamaïque +controlledvocabulary.country.japan=Japon +controlledvocabulary.country.jersey=Jersey +controlledvocabulary.country.jordan=Jordanie +controlledvocabulary.country.kazakhstan=Kazakhstan +controlledvocabulary.country.kenya=Kenya +controlledvocabulary.country.kiribati=Kiribati +controlledvocabulary.country.korea,_democratic_people's_republic_of=Corée du Nord +controlledvocabulary.country.korea,_republic_of=Corée du Sud +controlledvocabulary.country.kuwait=Koweït +controlledvocabulary.country.kyrgyzstan=Kirghizistan +controlledvocabulary.country.lao_people's_democratic_republic=Laos +controlledvocabulary.country.latvia=Lettonie +controlledvocabulary.country.lebanon=Liban +controlledvocabulary.country.lesotho=Lesotho +controlledvocabulary.country.liberia=Libéria +controlledvocabulary.country.libya=Libye +controlledvocabulary.country.liechtenstein=Liechtenstein +controlledvocabulary.country.lithuania=Lituanie +controlledvocabulary.country.luxembourg=Luxembourg +controlledvocabulary.country.macao=Macao +controlledvocabulary.country.macedonia,_the_former_yugoslav_republic_of=Ancienne République yougoslave de Macédoine +controlledvocabulary.country.madagascar=Madagascar +controlledvocabulary.country.malawi=Malawi +controlledvocabulary.country.malaysia=Malaisie +controlledvocabulary.country.maldives=Maldives +controlledvocabulary.country.mali=Mali +controlledvocabulary.country.malta=Malte +controlledvocabulary.country.marshall_islands=Îles Marshall +controlledvocabulary.country.martinique=Martinique +controlledvocabulary.country.mauritania=Mauritanie +controlledvocabulary.country.mauritius=Maurice +controlledvocabulary.country.mayotte=Mayotte +controlledvocabulary.country.mexico=Mexique +controlledvocabulary.country.micronesia,_federated_states_of=Micronésie +controlledvocabulary.country.moldova,_republic_of=Moldavie +controlledvocabulary.country.monaco=Monaco +controlledvocabulary.country.mongolia=Mongolie +controlledvocabulary.country.montenegro=Monténégro +controlledvocabulary.country.montserrat=Montserrat +controlledvocabulary.country.morocco=Maroc +controlledvocabulary.country.mozambique=Mozambique +controlledvocabulary.country.myanmar=Myanmar +controlledvocabulary.country.namibia=Namibie +controlledvocabulary.country.nauru=Nauru +controlledvocabulary.country.nepal=Népal +controlledvocabulary.country.netherlands=Pays-Bas +controlledvocabulary.country.new_caledonia=Nouvelle-Calédonie +controlledvocabulary.country.new_zealand=Nouvelle-Zélande +controlledvocabulary.country.nicaragua=Nicaragua +controlledvocabulary.country.niger=Niger +controlledvocabulary.country.nigeria=Nigeria +controlledvocabulary.country.niue=Nioué +controlledvocabulary.country.norfolk_island=Norfolk +controlledvocabulary.country.northern_mariana_islands=Mariannes du Nord +controlledvocabulary.country.norway=Norvège +controlledvocabulary.country.oman=Oman +controlledvocabulary.country.pakistan=Pakistan +controlledvocabulary.country.palau=Palaos +controlledvocabulary.country.palestine,_state_of=Palestine +controlledvocabulary.country.panama=Panama +controlledvocabulary.country.papua_new_guinea=Papouasie-Nouvelle-Guinée +controlledvocabulary.country.paraguay=Paraguay +controlledvocabulary.country.peru=Pérou +controlledvocabulary.country.philippines=Philippines +controlledvocabulary.country.pitcairn=Pitcairn +controlledvocabulary.country.poland=Pologne +controlledvocabulary.country.portugal=Portugal +controlledvocabulary.country.puerto_rico=Porto Rico +controlledvocabulary.country.qatar=Qatar +controlledvocabulary.country.romania=Roumanie +controlledvocabulary.country.russian_federation=Russie +controlledvocabulary.country.rwanda=Rwanda +controlledvocabulary.country.reunion=Réunion +controlledvocabulary.country.saint_barthelemy=Saint-Barthélemy +controlledvocabulary.country.saint_helena,_ascension_and_tristan_da_cunha=Sainte-Hélène, Ponape et Tristan da Cunha +controlledvocabulary.country.saint_kitts_and_nevis=Saint-Kitts-et-Nevis +controlledvocabulary.country.saint_lucia=Sainte-Lucie +controlledvocabulary.country.saint_martin_(french_part)=Saint-Martin (partie française) +controlledvocabulary.country.saint_pierre_and_miquelon=Saint-Pierre et Miquelon +controlledvocabulary.country.saint_vincent_and_the_grenadines=Saint-Vincent-et-les Grenadines +controlledvocabulary.country.samoa=Samoa +controlledvocabulary.country.san_marino=Saint-Marin +controlledvocabulary.country.sao_tome_and_principe=Sao Tomé-et-Principe +controlledvocabulary.country.saudi_arabia=Arabie saoudite +controlledvocabulary.country.senegal=Sénégal +controlledvocabulary.country.serbia=Serbie +controlledvocabulary.country.seychelles=Seychelles +controlledvocabulary.country.sierra_leone=Sierra Leone +controlledvocabulary.country.singapore=Singapour +controlledvocabulary.country.sint_maarten_(dutch_part)=Saint-Martin (partie néerlandaise) +controlledvocabulary.country.slovakia=Slovaquie +controlledvocabulary.country.slovenia=Slovénie +controlledvocabulary.country.solomon_islands=Îles Salomon +controlledvocabulary.country.somalia=Somalie +controlledvocabulary.country.south_africa=Afrique du Sud +controlledvocabulary.country.south_georgia_and_the_south_sandwich_islands=Géorgie du Sud et les îles Sandwich du Sud +controlledvocabulary.country.south_sudan=Soudan du Sud +controlledvocabulary.country.spain=Espagne +controlledvocabulary.country.sri_lanka=Sri Lanka +controlledvocabulary.country.sudan=Soudan +controlledvocabulary.country.suriname=Suriname +controlledvocabulary.country.svalbard_and_jan_mayen=Svalbard et île de Jan Mayen +controlledvocabulary.country.swaziland=Swaziland +controlledvocabulary.country.sweden=Suède +controlledvocabulary.country.switzerland=Suisse +controlledvocabulary.country.syrian_arab_republic=Syrie +controlledvocabulary.country.taiwan,_province_of_china=Taïwan, province de Chine +controlledvocabulary.country.tajikistan=Tadjikistan +controlledvocabulary.country.tanzania,_united_republic_of=Tanzanie +controlledvocabulary.country.thailand=Thaïlande +controlledvocabulary.country.timor-leste=Timor-Leste +controlledvocabulary.country.togo=Togo +controlledvocabulary.country.tokelau=Tokelau +controlledvocabulary.country.tonga=Tonga +controlledvocabulary.country.trinidad_and_tobago=Trinité-et-Tobago +controlledvocabulary.country.tunisia=Tunisie +controlledvocabulary.country.turkey=Turquie +controlledvocabulary.country.turkmenistan=Turkménistan +controlledvocabulary.country.turks_and_caicos_islands=Îles Turks et Caicos +controlledvocabulary.country.tuvalu=Tuvalu +controlledvocabulary.country.uganda=Ouganda +controlledvocabulary.country.ukraine=Ukraine +controlledvocabulary.country.united_arab_emirates=Émirats arabes unis +controlledvocabulary.country.united_kingdom=Royaume-Uni +controlledvocabulary.country.united_states=États-Unis +controlledvocabulary.country.united_states_minor_outlying_islands=Petites îles excentriques des États-Unis +controlledvocabulary.country.uruguay=Uruguay +controlledvocabulary.country.uzbekistan=Ouzbékistan +controlledvocabulary.country.vanuatu=Vanuatu +controlledvocabulary.country.venezuela,_bolivarian_republic_of=Venezuela +controlledvocabulary.country.viet_nam=Vietnam +controlledvocabulary.country.virgin_islands,_british=Îles Vierges britanniques +controlledvocabulary.country.virgin_islands,_u.s.=Îles Vierges américaine +controlledvocabulary.country.wallis_and_futuna=Wallis-et-Futuna +controlledvocabulary.country.western_sahara=République arabe sahraouie démocratique +controlledvocabulary.country.yemen=Yémen +controlledvocabulary.country.zambia=Zambie +controlledvocabulary.country.zimbabwe=Zimbabwe +controlledvocabulary.country.aland_islands=Åland \ No newline at end of file diff --git a/src/main/java/journal.properties b/src/main/java/journal.properties new file mode 100644 index 00000000000..e17a9bd6d89 --- /dev/null +++ b/src/main/java/journal.properties @@ -0,0 +1,49 @@ +metadatablock.name=journal +metadatablock.displayName=Journal Metadata +datasetfieldtype.journalVolumeIssue.title=Journal +datasetfieldtype.journalVolume.title=Volume +datasetfieldtype.journalIssue.title=Issue +datasetfieldtype.journalPubDate.title=Publication Date +datasetfieldtype.journalArticleType.title=Type of Article +datasetfieldtype.journalVolumeIssue.description=Indicates the volume, issue and date of a journal, which this Dataset is associated with. +datasetfieldtype.journalVolume.description=The journal volume which this Dataset is associated with (e.g., Volume 4). +datasetfieldtype.journalIssue.description=The journal issue number which this Dataset is associated with (e.g., Number 2, Autumn). +datasetfieldtype.journalPubDate.description=The publication date for this journal volume/issue, which this Dataset is associated with (e.g., 1999). +datasetfieldtype.journalArticleType.description=Indicates what kind of article this is, for example, a research article, a commentary, a book or product review, a case report, a calendar, etc (based on JATS). +datasetfieldtype.journalVolumeIssue.watermark= +datasetfieldtype.journalVolume.watermark= +datasetfieldtype.journalIssue.watermark= +datasetfieldtype.journalPubDate.watermark=YYYY or YYYY-MM or YYYY-MM-DD +datasetfieldtype.journalArticleType.watermark= +controlledvocabulary.journalArticleType.abstract=abstract +controlledvocabulary.journalArticleType.addendum=addendum +controlledvocabulary.journalArticleType.announcement=announcement +controlledvocabulary.journalArticleType.article-commentary=article-commentary +controlledvocabulary.journalArticleType.book_review=book review +controlledvocabulary.journalArticleType.books_received=books received +controlledvocabulary.journalArticleType.brief_report=brief report +controlledvocabulary.journalArticleType.calendar=calendar +controlledvocabulary.journalArticleType.case_report=case report +controlledvocabulary.journalArticleType.collection=collection +controlledvocabulary.journalArticleType.correction=correction +controlledvocabulary.journalArticleType.data_paper=data paper +controlledvocabulary.journalArticleType.discussion=discussion +controlledvocabulary.journalArticleType.dissertation=dissertation +controlledvocabulary.journalArticleType.editorial=editorial +controlledvocabulary.journalArticleType.in_brief=in brief +controlledvocabulary.journalArticleType.introduction=introduction +controlledvocabulary.journalArticleType.letter=letter +controlledvocabulary.journalArticleType.meeting_report=meeting report +controlledvocabulary.journalArticleType.news=news +controlledvocabulary.journalArticleType.obituary=obituary +controlledvocabulary.journalArticleType.oration=oration +controlledvocabulary.journalArticleType.partial_retraction=partial retraction +controlledvocabulary.journalArticleType.product_review=product review +controlledvocabulary.journalArticleType.rapid_communication=rapid communication +controlledvocabulary.journalArticleType.reply=reply +controlledvocabulary.journalArticleType.reprint=reprint +controlledvocabulary.journalArticleType.research_article=research article +controlledvocabulary.journalArticleType.retraction=retraction +controlledvocabulary.journalArticleType.review_article=review article +controlledvocabulary.journalArticleType.translation=translation +controlledvocabulary.journalArticleType.other=other \ No newline at end of file diff --git a/src/main/java/journal_fr.properties b/src/main/java/journal_fr.properties new file mode 100644 index 00000000000..f656f2310dc --- /dev/null +++ b/src/main/java/journal_fr.properties @@ -0,0 +1,49 @@ +metadatablock.name=journal +metadatablock.displayName=Métadonnées liées à la revue +datasetfieldtype.journalVolumeIssue.title=Revue +datasetfieldtype.journalVolume.title=Volume +datasetfieldtype.journalIssue.title=Numéro +datasetfieldtype.journalPubDate.title=Date de publication +datasetfieldtype.journalArticleType.title=Type d'article +datasetfieldtype.journalVolumeIssue.description=Comprend le volume, le numéro et la date de publication de la revue à laquelle cet ensemble de données est associé. +datasetfieldtype.journalVolume.description=Volume de la revue associé à cet ensemble de données (p. ex. le volume 4). +datasetfieldtype.journalIssue.description=Numéro de la revue associé à cet ensemble de données (p. ex. numéro 2, automne). +datasetfieldtype.journalPubDate.description=Date de publication du volume/numéro de cette revue associé à cet ensemble de données (p. ex. 1999). +datasetfieldtype.journalArticleType.description=Indique le type d'article dont il s'agit, par exemple un article de recherche, un commentaire, une critique de livre ou de produit, une étude de cas, un calendrier, etc. (en fonction du JATS) +datasetfieldtype.journalVolumeIssue.watermark= +datasetfieldtype.journalVolume.watermark= +datasetfieldtype.journalIssue.watermark= +datasetfieldtype.journalPubDate.watermark=AAAA ou AAAA-MM ou AAAA-MM-JJ +datasetfieldtype.journalArticleType.watermark= +controlledvocabulary.journalArticleType.abstract=Résumé +controlledvocabulary.journalArticleType.addendum=Addenda +controlledvocabulary.journalArticleType.announcement=Annonce +controlledvocabulary.journalArticleType.article-commentary=Article-commentaire +controlledvocabulary.journalArticleType.book_review=Critique de livre +controlledvocabulary.journalArticleType.books_received=Livres reçus +controlledvocabulary.journalArticleType.brief_report=Rapport sommaire +controlledvocabulary.journalArticleType.calendar=Calendrier +controlledvocabulary.journalArticleType.case_report=Étude de cas +controlledvocabulary.journalArticleType.collection=Collection +controlledvocabulary.journalArticleType.correction=Correction +controlledvocabulary.journalArticleType.data_paper=Document sur les données +controlledvocabulary.journalArticleType.discussion=Discussion +controlledvocabulary.journalArticleType.dissertation=Dissertation +controlledvocabulary.journalArticleType.editorial=Éditorial +controlledvocabulary.journalArticleType.in_brief=En résumé +controlledvocabulary.journalArticleType.introduction=Introduction +controlledvocabulary.journalArticleType.letter=Lettre +controlledvocabulary.journalArticleType.meeting_report=Rapport de réunion +controlledvocabulary.journalArticleType.news=Nouvelles +controlledvocabulary.journalArticleType.obituary=Article nécrologique +controlledvocabulary.journalArticleType.oration=Discours +controlledvocabulary.journalArticleType.partial_retraction=Rétractation partielle +controlledvocabulary.journalArticleType.product_review=Examen des produits +controlledvocabulary.journalArticleType.rapid_communication=Communication rapide +controlledvocabulary.journalArticleType.reply=Réponse +controlledvocabulary.journalArticleType.reprint=Réimpression +controlledvocabulary.journalArticleType.research_article=Article de recherche +controlledvocabulary.journalArticleType.retraction=Rétractation +controlledvocabulary.journalArticleType.review_article=Mise au point +controlledvocabulary.journalArticleType.translation=Traduction +controlledvocabulary.journalArticleType.other=Autre \ No newline at end of file diff --git a/src/main/java/socialscience.properties b/src/main/java/socialscience.properties new file mode 100644 index 00000000000..91e73fa78b9 --- /dev/null +++ b/src/main/java/socialscience.properties @@ -0,0 +1,80 @@ +metadatablock.name=socialscience +metadatablock.displayName=Social Science and Humanities Metadata +datasetfieldtype.unitOfAnalysis.title=Unit of Analysis +datasetfieldtype.universe.title=Universe +datasetfieldtype.timeMethod.title=Time Method +datasetfieldtype.dataCollector.title=Data Collector +datasetfieldtype.collectorTraining.title=Collector Training +datasetfieldtype.frequencyOfDataCollection.title=Frequency +datasetfieldtype.samplingProcedure.title=Sampling Procedure +datasetfieldtype.targetSampleSize.title=Target Sample Size +datasetfieldtype.targetSampleActualSize.title=Actual +datasetfieldtype.targetSampleSizeFormula.title=Formula +datasetfieldtype.deviationsFromSampleDesign.title=Major Deviations for Sample Design +datasetfieldtype.collectionMode.title=Collection Mode +datasetfieldtype.researchInstrument.title=Type of Research Instrument +datasetfieldtype.dataCollectionSituation.title=Characteristics of Data Collection Situation +datasetfieldtype.actionsToMinimizeLoss.title=Actions to Minimize Losses +datasetfieldtype.controlOperations.title=Control Operations +datasetfieldtype.weighting.title=Weighting +datasetfieldtype.cleaningOperations.title=Cleaning Operations +datasetfieldtype.datasetLevelErrorNotes.title=Study Level Error Notes +datasetfieldtype.responseRate.title=Response Rate +datasetfieldtype.samplingErrorEstimates.title=Estimates of Sampling Error +datasetfieldtype.otherDataAppraisal.title=Other Forms of Data Appraisal +datasetfieldtype.socialScienceNotes.title=Notes +datasetfieldtype.socialScienceNotesType.title=Type +datasetfieldtype.socialScienceNotesSubject.title=Subject +datasetfieldtype.socialScienceNotesText.title=Text +datasetfieldtype.unitOfAnalysis.description=Basic unit of analysis or observation that this Dataset describes, such as individuals, families/households, groups, institutions/organizations, administrative units, and more. For information about the DDI's controlled vocabulary for this element, please refer to the DDI web page at http://www.ddialliance.org/controlled-vocabularies. +datasetfieldtype.universe.description=Description of the population covered by the data in the file; the group of people or other elements that are the object of the study and to which the study results refer. Age, nationality, and residence commonly help to delineate a given universe, but any number of other factors may be used, such as age limits, sex, marital status, race, ethnic group, nationality, income, veteran status, criminal convictions, and more. The universe may consist of elements other than persons, such as housing units, court cases, deaths, countries, and so on. In general, it should be possible to tell from the description of the universe whether a given individual or element is a member of the population under study. Also known as the universe of interest, population of interest, and target population. +datasetfieldtype.timeMethod.description=The time method or time dimension of the data collection, such as panel, cross-sectional, trend, time- series, or other. +datasetfieldtype.dataCollector.description=Individual, agency or organization responsible for administering the questionnaire or interview or compiling the data. +datasetfieldtype.collectorTraining.description=Type of training provided to the data collector +datasetfieldtype.frequencyOfDataCollection.description=If the data collected includes more than one point in time, indicate the frequency with which the data was collected; that is, monthly, quarterly, or other. +datasetfieldtype.samplingProcedure.description=Type of sample and sample design used to select the survey respondents to represent the population. May include reference to the target sample size and the sampling fraction. +datasetfieldtype.targetSampleSize.description=Specific information regarding the target sample size, actual sample size, and the formula used to determine this. +datasetfieldtype.targetSampleActualSize.description=Actual sample size. +datasetfieldtype.targetSampleSizeFormula.description=Formula used to determine target sample size. +datasetfieldtype.deviationsFromSampleDesign.description=Show correspondence as well as discrepancies between the sampled units (obtained) and available statistics for the population (age, sex-ratio, marital status, etc.) as a whole. +datasetfieldtype.collectionMode.description=Method used to collect the data; instrumentation characteristics (e.g., telephone interview, mail questionnaire, or other). +datasetfieldtype.researchInstrument.description=Type of data collection instrument used. Structured indicates an instrument in which all respondents are asked the same questions/tests, possibly with precoded answers. If a small portion of such a questionnaire includes open-ended questions, provide appropriate comments. Semi-structured indicates that the research instrument contains mainly open-ended questions. Unstructured indicates that in-depth interviews were conducted. +datasetfieldtype.dataCollectionSituation.description=Description of noteworthy aspects of the data collection situation. Includes information on factors such as cooperativeness of respondents, duration of interviews, number of call backs, or similar. +datasetfieldtype.actionsToMinimizeLoss.description=Summary of actions taken to minimize data loss. Include information on actions such as follow-up visits, supervisory checks, historical matching, estimation, and so on. +datasetfieldtype.controlOperations.description=Control OperationsMethods to facilitate data control performed by the primary investigator or by the data archive. +datasetfieldtype.weighting.description=The use of sampling procedures might make it necessary to apply weights to produce accurate statistical results. Describes the criteria for using weights in analysis of a collection. If a weighting formula or coefficient was developed, the formula is provided, its elements are defined, and it is indicated how the formula was applied to the data. +datasetfieldtype.cleaningOperations.description=Methods used to clean the data collection, such as consistency checking, wildcode checking, or other. +datasetfieldtype.datasetLevelErrorNotes.description=Note element used for any information annotating or clarifying the methodology and processing of the study. +datasetfieldtype.responseRate.description=Percentage of sample members who provided information. +datasetfieldtype.samplingErrorEstimates.description=Measure of how precisely one can estimate a population value from a given sample. +datasetfieldtype.otherDataAppraisal.description=Other issues pertaining to the data appraisal. Describe issues such as response variance, nonresponse rate and testing for bias, interviewer and response bias, confidence levels, question bias, or similar. +datasetfieldtype.socialScienceNotes.description=General notes about this Dataset. +datasetfieldtype.socialScienceNotesType.description=Type of note. +datasetfieldtype.socialScienceNotesSubject.description=Note subject. +datasetfieldtype.socialScienceNotesText.description=Text for this note. +datasetfieldtype.unitOfAnalysis.watermark= +datasetfieldtype.universe.watermark= +datasetfieldtype.timeMethod.watermark= +datasetfieldtype.dataCollector.watermark=FamilyName, GivenName or Organization +datasetfieldtype.collectorTraining.watermark= +datasetfieldtype.frequencyOfDataCollection.watermark= +datasetfieldtype.samplingProcedure.watermark= +datasetfieldtype.targetSampleSize.watermark= +datasetfieldtype.targetSampleActualSize.watermark=Enter an integer... +datasetfieldtype.targetSampleSizeFormula.watermark= +datasetfieldtype.deviationsFromSampleDesign.watermark= +datasetfieldtype.collectionMode.watermark= +datasetfieldtype.researchInstrument.watermark= +datasetfieldtype.dataCollectionSituation.watermark= +datasetfieldtype.actionsToMinimizeLoss.watermark= +datasetfieldtype.controlOperations.watermark= +datasetfieldtype.weighting.watermark= +datasetfieldtype.cleaningOperations.watermark= +datasetfieldtype.datasetLevelErrorNotes.watermark= +datasetfieldtype.responseRate.watermark= +datasetfieldtype.samplingErrorEstimates.watermark= +datasetfieldtype.otherDataAppraisal.watermark= +datasetfieldtype.socialScienceNotes.watermark= +datasetfieldtype.socialScienceNotesType.watermark= +datasetfieldtype.socialScienceNotesSubject.watermark= +datasetfieldtype.socialScienceNotesText.watermark= \ No newline at end of file diff --git a/src/main/java/socialscience_fr.properties b/src/main/java/socialscience_fr.properties new file mode 100644 index 00000000000..fce10adf70e --- /dev/null +++ b/src/main/java/socialscience_fr.properties @@ -0,0 +1,80 @@ +metadatablock.name=socialscience +metadatablock.displayName=Métadonnées sur les sciences sociales et les sciences humaines +datasetfieldtype.unitOfAnalysis.title=Unité d'analyse +datasetfieldtype.universe.title=Univers +datasetfieldtype.timeMethod.title=Méthode temporelle +datasetfieldtype.dataCollector.title=Responsable de la collecte de données +datasetfieldtype.collectorTraining.title=Formation du responsable de la collecte de données +datasetfieldtype.frequencyOfDataCollection.title=Fréquence +datasetfieldtype.samplingProcedure.title=Méthode d?échantillonnage +datasetfieldtype.targetSampleSize.title=Taille de l'échantillon cible +datasetfieldtype.targetSampleActualSize.title=Réelle +datasetfieldtype.targetSampleSizeFormula.title=Formule +datasetfieldtype.deviationsFromSampleDesign.title=Écarts importants pour le plan d'échantillonnage +datasetfieldtype.collectionMode.title=Mode de collecte +datasetfieldtype.researchInstrument.title=Type d'instrument de recherche +datasetfieldtype.dataCollectionSituation.title=Caractéristiques de la collecte de données +datasetfieldtype.actionsToMinimizeLoss.title=Mesures visant à minimiser les pertes +datasetfieldtype.controlOperations.title=Opérations de contrôle +datasetfieldtype.weighting.title=Pondération +datasetfieldtype.cleaningOperations.title=Opérations de nettoyage +datasetfieldtype.datasetLevelErrorNotes.title=Remarques générales d'erreur +datasetfieldtype.responseRate.title=Taux de réponse +datasetfieldtype.samplingErrorEstimates.title=Estimation de l'erreur d'échantillonnage +datasetfieldtype.otherDataAppraisal.title=Autres formes d'évaluation des données +datasetfieldtype.socialScienceNotes.title=Remarques +datasetfieldtype.socialScienceNotesType.title=Type +datasetfieldtype.socialScienceNotesSubject.title=Objet +datasetfieldtype.socialScienceNotesText.title=Texte +datasetfieldtype.unitOfAnalysis.description=Unité de base pour l'analyse ou l'observation décrite par cet ensemble de données, comme les personnes, familles/ménages, groupes, établissements/organisations, unités administratives et autres. Pour de l'information sur le vocabulaire contrôlé de la DDI pour cet élément, visiter la page Web de la DDI à l'adresse http://www.ddialliance.org/controlled-vocabularies (en anglais). +datasetfieldtype.universe.description=Description de la population couverte par les données contenues dans le fichier; le groupe de personnes ou autres éléments qui constituent l?objet de l?enquête et auxquels les résultats de l?enquête font référence. L?âge, la nationalité et le lieu de résidence sont communément employés pour délimiter un univers donné mais n?importe quel facteur peut être invoqué comme les limites d?âge, le sexe, l?état matrimonial, la race, le groupe ethnique, la nationalité, le revenu, le statut d?ancien combattant, les condamnations au criminel et autres. L'univers peut comprendre des éléments autres que des personnes, comme le logement, les affaires judiciaires, les décès, les pays, etc. En général, il doit être possible de dire, à partir de la description de l'univers, dans quelle mesure une personne ou un élément donné est membre de la population étudiée. L?univers c?est aussi les centres d?intérêt, la population d'intérêt, la population cible. +datasetfieldtype.timeMethod.description=Méthode temporelle utilisée ou dimension temporelle de la collecte des données (méthode par panel, transversale, chronologique, série temporelle ou autre). +datasetfieldtype.dataCollector.description=Personne, organisme ou organisation responsable de l?administration du questionnaire, de l?entrevue ou de la compilation des données. +datasetfieldtype.collectorTraining.description=Type de formation offerte au responsable de la collecte de données. +datasetfieldtype.frequencyOfDataCollection.description=Si les données ont été recueillies à plus d?un point dans le temps, indiquer la fréquence à laquelle les données ont été recueillies, par ex. tous les mois, tous les trimestres ou autre. +datasetfieldtype.samplingProcedure.description=Le type d?échantillon et le plan d?échantillonnage utilisés pour sélectionner les répondants à l?enquête afin de représenter la population. Des indications sur la taille de l?échantillon cible et des fractions de l?échantillon peuvent être mentionnées. +datasetfieldtype.targetSampleSize.description=Des renseignements précis sur la taille de l'échantillon cible, la taille réelle de l'échantillon et la formule utilisée pour déterminée la taille. +datasetfieldtype.targetSampleActualSize.description=Taille réelle de l'échantillon +datasetfieldtype.targetSampleSizeFormula.description=Formule utilisée pour déterminer la taille réelle de l'échantillon. +datasetfieldtype.deviationsFromSampleDesign.description=Indiquent les correspondances et les écarts entre les unités échantillonnées (obtenues) et les statistiques disponibles pour la population (âge, rapport hommes-femmes, situation familiale) dans son ensemble. +datasetfieldtype.collectionMode.description=Méthode de collecte des données; caractéristiques de l'instrument (p. ex. entrevue téléphonique, questionnaire envoyé par la poste ou autre). +datasetfieldtype.researchInstrument.description=Type d'instrument utilisé pour la collecte de données. Un instrument structuré correspond à un instrument où tous les répondants doivent répondre aux mêmes questions ou faire les mêmes tests, comportant possiblement des réponses codées. Si une petite partie d'un tel questionnaire comprend des questions ouvertes, fournir des informations à ce sujet. Un instrument semi-structuré indique que l'instrument de recherche comprend principalement des questions ouvertes. Un instrument non structuré indique que des entrevues approfondies ont été réalisées. +datasetfieldtype.dataCollectionSituation.description=Description des aspects notables de la collecte des données. Comprend des renseignements sur les facteurs comme le degré de coopération des répondants, la durée des entrevues, le nombre de rappels ou des éléments similaires. +datasetfieldtype.actionsToMinimizeLoss.description=Résumé des mesures prises pour minimiser la perte de données. Comprend des renseignements sur les mesures comme les visites de suivi, les vérifications de surveillance, l'établissement de correspondances historiques, les estimations, etc. +datasetfieldtype.controlOperations.description=Méthodes utilisées par le chercheur principal ou par les gestionnaires du dépôt de données.pour faciliter le contrôle des données. +datasetfieldtype.weighting.description=La procédure d?échantillonnage utilisée peut nécessiter l?application d?une pondération afin d?obtenir une plus grande précision des résultats statistiques. Décrit les critères d?utilisation des pondérations employés dans l?analyse d?une collecte. Si un coefficient ou une formule de pondération est établi, la formule est fournie, ses éléments sont définis et la façon d'appliquer la formule aux données est indiquée. +datasetfieldtype.cleaningOperations.description=Méthodes utilisées pour nettoyer les données comme la vérification de la cohérence, la vérification de code non valide ou autre. +datasetfieldtype.datasetLevelErrorNotes.description=Remarque utile pour annoter ou clarifier la méthode et le traitement de l'enquête. +datasetfieldtype.responseRate.description=Pourcentage des membres de l'échantillon ayant fourni des renseignements. +datasetfieldtype.samplingErrorEstimates.description=Mesure le degré de précision selon lequel on peut estimer la valeur de la population pour un échantillon donné. +datasetfieldtype.otherDataAppraisal.description=Autres questions liées à l'évaluation des données. Décrit les questions comme la variance de réponse, le taux de non-réponse et la vérification de la partialité, la partialité de l'enquêteur et de la réponse, le niveau de confiance, la partialité de la question ou autre élément similaire. +datasetfieldtype.socialScienceNotes.description=Renseignements généraux sur cet ensemble de données. +datasetfieldtype.socialScienceNotesType.description=Type de remarque +datasetfieldtype.socialScienceNotesSubject.description=Objet de la remarque +datasetfieldtype.socialScienceNotesText.description=Texte pour cette remarque +datasetfieldtype.unitOfAnalysis.watermark= +datasetfieldtype.universe.watermark= +datasetfieldtype.timeMethod.watermark= +datasetfieldtype.dataCollector.watermark=Nom, prénom ou nom de l'organisation +datasetfieldtype.collectorTraining.watermark= +datasetfieldtype.frequencyOfDataCollection.watermark= +datasetfieldtype.samplingProcedure.watermark= +datasetfieldtype.targetSampleSize.watermark= +datasetfieldtype.targetSampleActualSize.watermark=Entrer un nombre entier\u2026 +datasetfieldtype.targetSampleSizeFormula.watermark= +datasetfieldtype.deviationsFromSampleDesign.watermark= +datasetfieldtype.collectionMode.watermark= +datasetfieldtype.researchInstrument.watermark= +datasetfieldtype.dataCollectionSituation.watermark= +datasetfieldtype.actionsToMinimizeLoss.watermark= +datasetfieldtype.controlOperations.watermark= +datasetfieldtype.weighting.watermark= +datasetfieldtype.cleaningOperations.watermark= +datasetfieldtype.datasetLevelErrorNotes.watermark= +datasetfieldtype.responseRate.watermark= +datasetfieldtype.samplingErrorEstimates.watermark= +datasetfieldtype.otherDataAppraisal.watermark= +datasetfieldtype.socialScienceNotes.watermark= +datasetfieldtype.socialScienceNotesType.watermark= +datasetfieldtype.socialScienceNotesSubject.watermark= +datasetfieldtype.socialScienceNotesText.watermark= \ No newline at end of file diff --git a/src/main/webapp/dataset.xhtml b/src/main/webapp/dataset.xhtml index 43bb8b879c9..1404bd62812 100755 --- a/src/main/webapp/dataset.xhtml +++ b/src/main/webapp/dataset.xhtml @@ -375,7 +375,7 @@
#{DatasetPage.datasetVersionUI.keywordDisplay}
@@ -391,8 +391,8 @@
@@ -865,11 +865,11 @@
- +
- + diff --git a/src/main/webapp/datasetFieldForEditFragment.xhtml b/src/main/webapp/datasetFieldForEditFragment.xhtml index 57ce0b980ff..15f89722819 100644 --- a/src/main/webapp/datasetFieldForEditFragment.xhtml +++ b/src/main/webapp/datasetFieldForEditFragment.xhtml @@ -20,13 +20,13 @@ or dsfv.datasetField.datasetFieldType.fieldType == 'EMAIL' )}"/> - + - +
#{dsfv.datasetField.validationMessage} diff --git a/src/main/webapp/dataverse.xhtml b/src/main/webapp/dataverse.xhtml index 6547b2e6631..f3b93f16f1e 100644 --- a/src/main/webapp/dataverse.xhtml +++ b/src/main/webapp/dataverse.xhtml @@ -240,7 +240,7 @@ - - + diff --git a/src/main/webapp/metadataFragment.xhtml b/src/main/webapp/metadataFragment.xhtml index 71e9b880fb8..7090fdeca52 100755 --- a/src/main/webapp/metadataFragment.xhtml +++ b/src/main/webapp/metadataFragment.xhtml @@ -13,7 +13,7 @@ var="metadataBlockVal" varStatus="block">
- #{metadataBlockVal.key.displayName}   + #{metadataBlockVal.key.localeDisplayName}