Skip to content

Commit 5e8a0ed

Browse files
Merge pull request #6981 from christianbeeznest/fixes-updates172
Internal: Restore positional interpolation for selection counters
2 parents 0ca79ad + bb19218 commit 5e8a0ed

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

assets/vue/components/coursemaintenance/ResourceSelector.vue

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
<div class="flex flex-col gap-3 md:flex-row md:items-center md:justify-between">
55
<div class="flex items-center gap-2 text-sm">
66
<h3 class="text-sm font-semibold text-gray-90">{{ title }}</h3>
7-
<span class="px-2 py-1 rounded-md bg-gray-15 text-gray-50"> {{ $t("Selected") }}: {{ selectedTotal }} </span>
7+
<span class="px-2 py-1 rounded-md bg-gray-15 text-gray-50">
8+
{{ $t("{0} selected", [selectedTotal]) }}
9+
</span>
810
</div>
911

1012
<div class="flex flex-wrap gap-2">

0 commit comments

Comments
 (0)