diff --git a/app/assets/javascripts/select-kit/templates/components/category-row.hbs b/app/assets/javascripts/select-kit/templates/components/category-row.hbs
index 980a43c306b..985fe9cd74a 100644
--- a/app/assets/javascripts/select-kit/templates/components/category-row.hbs
+++ b/app/assets/javascripts/select-kit/templates/components/category-row.hbs
@@ -1,8 +1,11 @@
{{#if category}}
{{#if hasParentCategory}}
- {{badgeForParentCategory}} {{badgeForCategory}}
- × {{topicCount}}
+ {{#unless hideParentCategory}}
+ {{badgeForParentCategory}}
+ {{/unless}}
+ {{badgeForCategory}}
+ {{topicCount}}
{{else}}
diff --git a/config/locales/client.en.yml b/config/locales/client.en.yml
index d3c2e529daf..6d8082a229e 100644
--- a/config/locales/client.en.yml
+++ b/config/locales/client.en.yml
@@ -520,7 +520,7 @@ en:
categories:
all: "all categories"
- all_subcategories: "all"
+ all_subcategories: "all in %{categoryName}"
no_subcategory: "none"
category: "Category"
category_list: "Display category list"
diff --git a/config/locales/client.fr.yml b/config/locales/client.fr.yml
index 761149dec2a..a7f36511ad6 100644
--- a/config/locales/client.fr.yml
+++ b/config/locales/client.fr.yml
@@ -460,7 +460,7 @@ fr:
'14': "En attente"
categories:
all: "toutes les catégories"
- all_subcategories: "toutes"
+ all_subcategories: "toutes dans %{categoryName}"
no_subcategory: "aucune"
category: "Catégorie"
category_list: "Afficher la liste des catégories"