7167-testToMaster_2414 #2244

Merged
alexm merged 643 commits from 7167-testToMaster_2414 into master 2024-04-04 05:32:41 +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
title: "La zona {0} ha sido registrada en más de un sitio"
subject: Colisión de zona {0} detectada
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">
<div class="grid-row">
<div class="grid-block vn-pa-ml">
<h1>{{ $t('subject') }}</h1>
<p>{{ $t('title', [this.zoneIncluded.name]) }}</p>
<h1>{{ $t('subject', [zoneSelected]) }}</h1>
<p>{{ $t('title', [geoSelected]) }}</p>
</div>
</div>
</email-body>

View File

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