diff --git a/ldregistry/boot/system/prefixes/prefixes-register.ttl b/ldregistry/boot/system/prefixes/prefixes-register.ttl
index 3baa9dfd..5b9e3c3f 100644
--- a/ldregistry/boot/system/prefixes/prefixes-register.ttl
+++ b/ldregistry/boot/system/prefixes/prefixes-register.ttl
@@ -2,6 +2,7 @@
@prefix rdfs: .
@prefix owl: .
@prefix xsd: .
+@prefix dbo: .
@prefix dct: .
@prefix dc: .
@prefix foaf: .
@@ -379,4 +380,18 @@ odrs: a owl:Ontology;
dct:description "env-ui prefix registration - properties used in the UI of the environment registry"@en;
vann:preferredNamespacePrefix "env-ui";
vann:preferredNamespaceUri "http://environment.data.gov.uk/registry/structure/ui/";
+ .
+
+<_dbo> a reg:RegisterItem;
+ rdfs:label "dbo"@en;
+ reg:itemClass owl:Ontology;
+ reg:status reg:statusStable;
+ reg:definition [ reg:entity dbo: ];
+ .
+
+dbo: a owl:Ontology;
+ rdfs:label "dbo"@en;
+ dct:description "dbo (DBpedia Ontology) prefix registration."@en;
+ vann:preferredNamespacePrefix "dbo";
+ vann:preferredNamespaceUri "http://dbpedia.org/ontology/";
.
\ No newline at end of file
diff --git a/ldregistry/templates/nav/_menu-language.vm b/ldregistry/templates/nav/_menu-language.vm
new file mode 100644
index 00000000..1fff99cd
--- /dev/null
+++ b/ldregistry/templates/nav/_menu-language.vm
@@ -0,0 +1,17 @@
+## Render the language selection menu within the navigation bar
+
+
+ $lib.escapeHtml($language)
+
+
\ No newline at end of file
diff --git a/ldregistry/templates/nav/_navbar.vm b/ldregistry/templates/nav/_navbar.vm
index 43be4c28..eabd1c0e 100644
--- a/ldregistry/templates/nav/_navbar.vm
+++ b/ldregistry/templates/nav/_navbar.vm
@@ -41,24 +41,28 @@
Submit
+ #if($registry.languageManager.multilingual)
+
+ #parse("nav/_menu-language.vm")
+
+ #end
+
#if($subject.isAuthenticated())
#set($user=$subject.principal)
-
-
-
-
-
+
#end
-
diff --git a/ldregistry/templates/structure/_footer.vm b/ldregistry/templates/structure/_footer.vm
index b4b10ea5..ba91707b 100644
--- a/ldregistry/templates/structure/_footer.vm
+++ b/ldregistry/templates/structure/_footer.vm
@@ -24,6 +24,11 @@
Design and development by
Epimorphics .
+ #if($registry.languageManager.useCookies)
+
+ This website uses cookies to store your language preferences.
+
+ #end
diff --git a/ldregistry/ui/assets/css/ui.css b/ldregistry/ui/assets/css/ui.css
index 2477be8d..192330a4 100644
--- a/ldregistry/ui/assets/css/ui.css
+++ b/ldregistry/ui/assets/css/ui.css
@@ -79,4 +79,21 @@ td.align-right {
.langTable .langValueColumn {
padding-left: 5px;
+}
+
+.dropdown.languages ul li div {
+ display: inline-block;
+}
+
+.dropdown.languages ul li div.langCode {
+ min-width: 1.5em;
+}
+
+.dropdown ul li span {
+ background-color: white;
+ color: black;
+ border-bottom: none;
+ margin-left: 10px;
+ margin-bottom: 3px;
+ font-size: 15.4px;
}
\ No newline at end of file