diff --git a/project/dalia/query/items/facets/facet_objects.py b/project/dalia/query/items/facets/facet_objects.py
index 971a3eeebf80021149505797893794cdf634e6f3..657c3b31153fb145aa9a0f47f5088c9ce55226cd 100644
--- a/project/dalia/query/items/facets/facet_objects.py
+++ b/project/dalia/query/items/facets/facet_objects.py
@@ -87,6 +87,7 @@ LEARNING_RESOURCE_TYPE_FACET = FacetObject(
         hcrt.experiment: "Experiment",
         MoDalia.Lecture: "Lecture",
         hcrt.lesson_plan: "Lesson Plan",
+        hcrt.other: "Other resource type",
         SCHEMA.PodcastSeries: "PodcastSeries",
         MoDalia.Poster: "Poster",
         hcrt.index: "Reference Work",
@@ -108,7 +109,9 @@ LANGUAGE_FACET = FacetObject(
     predicate=DCTERMS.language,
     items={
         Literal("en"): "English",
+        Literal("fr"): "French",
         Literal("de"): "German",
+        Literal("es"): "Spanish",
     },
     selected_facet_initializer=Literal,
 )
diff --git a/project/dalia/rdf/namespace/hcrt.py b/project/dalia/rdf/namespace/hcrt.py
index 0f96e6023c2855c4d9f6c00fb3effde72e7f919e..5223948e051e33f7b6594e7bb9d5b3f2b1f0c9a2 100644
--- a/project/dalia/rdf/namespace/hcrt.py
+++ b/project/dalia/rdf/namespace/hcrt.py
@@ -16,6 +16,7 @@ educational_game = URIRef(NS + "educational_game")
 experiment = URIRef(NS + "experiment")
 lesson_plan = URIRef(NS + "lesson_plan")
 index = URIRef(NS + "index")
+other = URIRef(NS + "other")
 slide = URIRef(NS + "slide")
 text = URIRef(NS + "text")
 textbook = URIRef(NS + "textbook")