7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
3 changed files with 7 additions and 7 deletions
Showing only changes of commit a2329e1276 - Show all commits

View File

@ -1,2 +1,2 @@
subject: Colisión de zona detectada subject: Colisión de zona {0} detectada
title: "La zona {0} ha sido registrada en más de un sitio" title: "La localización {0} ha sido registrada en más de un sitio"

View File

@ -1,8 +1,8 @@
<email-body v-bind="$props"> <email-body v-bind="$props">
<div class="grid-row"> <div class="grid-row">
<div class="grid-block vn-pa-ml"> <div class="grid-block vn-pa-ml">
<h1>{{ $t('subject') }}</h1> <h1>{{ $t('subject', [zoneSelected]) }}</h1>
<p>{{ $t('title', [this.zoneIncluded.name]) }}</p> <p>{{ $t('title', [geoSelected]) }}</p>
</div> </div>
</div> </div>
</email-body> </email-body>

View File

@ -15,11 +15,11 @@ module.exports = {
'email-body': emailBody.build(), 'email-body': emailBody.build(),
}, },
props: { props: {
id: { zoneSelected: {
type: Number, type: String,
required: true required: true
}, },
url: { geoSelected: {
type: String, type: String,
required: true required: true
} }