i18n: add missing __() calls to complete French translation

This commit is contained in:
Youssef
2025-08-15 19:51:10 -04:00
parent cf5cc19fd5
commit 16afb24276
14 changed files with 210 additions and 27 deletions

View File

@@ -57,7 +57,7 @@
}"
>
</ListView>
<EmptyState v-else type="Assignments" />
<EmptyState v-else :type="__('Assignments').toLowerCase()" />
<div
v-if="assignments.data && assignments.hasNextPage"
class="flex justify-center my-5"
@@ -198,7 +198,7 @@ const assignmentTypes = computed(() => {
const breadcrumbs = computed(() => [
{
label: 'Assignments',
label: __('Assignments'),
route: { name: 'Assignments' },
},
])