diff --git a/frontend/src/components/Section.vue b/frontend/src/components/Section.vue index 4131f74a..c2b8da0d 100644 --- a/frontend/src/components/Section.vue +++ b/frontend/src/components/Section.vue @@ -10,7 +10,7 @@ class="h-4 text-gray-900 transition-all duration-300 ease-in-out" :class="{ 'rotate-90': opened }" /> - {{ label || 'Untitled' }} + {{ __(label) || __('Untitled') }} diff --git a/frontend/src/components/SectionFields.vue b/frontend/src/components/SectionFields.vue index 5ef42aef..914d4c73 100644 --- a/frontend/src/components/SectionFields.vue +++ b/frontend/src/components/SectionFields.vue @@ -7,7 +7,7 @@ class="flex items-center gap-2 px-3 leading-5 first:mt-3" >
- {{ field.label }} + {{ __(field.label) }} {{ field.reqd ? ' *' : '' }}
- +
{{ data[field.name] }}