diff --git a/resource/css/styles.css b/resource/css/styles.css
index 8dc85da13..ed5ab5119 100644
--- a/resource/css/styles.css
+++ b/resource/css/styles.css
@@ -751,6 +751,10 @@ span.xl-pref-label > img {
padding: 15px 0 15px 10px;
}
+.property-label, .vocab-category > h3 {
+ text-transform: uppercase;
+}
+
.vocab-category {
display: inline-block;
width: 100%;
diff --git a/view/concept-shared.twig b/view/concept-shared.twig
index debd6948a..7670c41ff 100644
--- a/view/concept-shared.twig
+++ b/view/concept-shared.twig
@@ -42,7 +42,7 @@
{% spaceless %}
-
{% set subPrefLabelTranslation = concept.preferredSubpropertyLabelTranslation(request.lang) %}{% if subPrefLabelTranslation %}{{ subPrefLabelTranslation|upper }}{% else %}{{ 'skos:prefLabel'|trans|upper }}{% endif %}
+ {% set subPrefLabelTranslation = concept.preferredSubpropertyLabelTranslation(request.lang) %}{% if subPrefLabelTranslation %}{{ subPrefLabelTranslation }}{% else %}{{ 'skos:prefLabel'|trans }}{% endif %}
{% if concept.foundBy %} {# hit has been found through an alternative label #}
{{ concept.foundBy }} >
@@ -90,7 +90,7 @@
{% if property.getSubPropertyOf != 'skos:hiddenLabel' %}
-
{{ property.label|upper }}
+ {{ property.label }}
{% if request.vocab.config.hasMultiLingualProperty(property.type) %}
@@ -141,7 +141,7 @@
{% set foreignLabels = concept.foreignLabels %}
{% if foreignLabels %}
-
{{ 'foreign prefLabels'|trans|upper }}
+
{{ 'foreign prefLabels'|trans }}
@@ -207,7 +207,7 @@
{{#each properties}}
-
{{toUpperCase label}}
+
{{label}}
{{#each values }} {{! loop through ConceptPropertyValue objects }}
{{#if prefLabel }}
diff --git a/view/vocab-shared.twig b/view/vocab-shared.twig
index cb7e8411f..8a56b8533 100644
--- a/view/vocab-shared.twig
+++ b/view/vocab-shared.twig
@@ -15,7 +15,7 @@
{% for key, values in vocabInfo %}
{% set keytrans = key %}
-
{{ keytrans|trans|upper }}
+
{% for val in values %}
diff --git a/view/vocabularylist.twig b/view/vocabularylist.twig
index ea181beee..aab1edb83 100644
--- a/view/vocabularylist.twig
+++ b/view/vocabularylist.twig
@@ -12,7 +12,7 @@
{% for vocabClassName,vocabArray in request.vocabList %}
-
{{ vocabClassName|upper }}
+
{{ vocabClassName }}