diff --git a/src/views/reports/components/number-block.vue b/src/views/reports/components/number-block.vue
index 02f97cfa6..d7bf04487 100644
--- a/src/views/reports/components/number-block.vue
+++ b/src/views/reports/components/number-block.vue
@@ -14,6 +14,11 @@
{{ $i18n.get(entityType) }}
+
+ {{ $i18n.get('label_used') + ': ' + summary.totals[entityType].used + ' | ' + $i18n.get('label_not_used') + ': ' + summary.totals[entityType].not_used }}
+
- __( 'Metadata fill distribution', 'tainacan' ),
'label_not_filled' => __( 'Not filled yet', 'tainacan' ),
'label_filled' => __( 'Already filled', 'tainacan' ),
+ /* translators: To be displayed with the number of Taxonomies not used in the colllection */
+ 'label_not_used' => __( 'Not used', 'tainacan' ),
+ /* translators: To be displayed with the number of Taxonomies used in the colllection */
+ 'label_used' => __( 'Used', 'tainacan' ),
// Instructions. More complex sentences to guide user and placeholders
'instruction_delete_selected_collections' => __( 'Delete selected collections', 'tainacan' ),