refactor: translate
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Vicent Llopis 2022-06-14 08:03:46 +02:00
parent afd95872c8
commit 931c4fb259
4 changed files with 8 additions and 7 deletions

View File

@ -20,8 +20,8 @@
<vn-th th-id="created" shrink-date>Date</vn-th>
<vn-th th-id="m3" number></vn-th>
<vn-th th-id="description">Description</vn-th>
<vn-th th-id="started">Started</vn-th>
<vn-th th-id="finished">Finished</vn-th>
<vn-th th-id="started">Start</vn-th>
<vn-th th-id="finished">Finish</vn-th>
<vn-th shrink></vn-th>
</vn-tr>
</vn-thead>

View File

@ -3,4 +3,5 @@ Download selected routes as PDF: Descargar rutas seleccionadas como PDF
Clone selected routes: Clonar rutas seleccionadas
The date can't be empty: La fecha no puede estar vacía
Starting date: Fecha de inicio
Finished: Fin
Finish: Fin
Start: Inicio

View File

@ -2,7 +2,7 @@
vn-id="model"
url="Routes/filter"
limit="20"
order="id, created DESC">
order="created DESC">
</vn-crud-model>
<vn-portal slot="topbar">
<vn-searchbar

View File

@ -62,9 +62,9 @@ class Controller extends Section {
let url = 'http://gps.buscalia.com/usuario/localizar.aspx?bmi=true&addr=';
lines.forEach(line => {
if lineOld.street <> line.street
addresses = addresses + '+to:' + line.postalCode + ' ' + line.city + ' ' + line.street;
lineOld = line
// if lineOld.street <> line.street
addresses = addresses + '+to:' + line.postalCode + ' ' + line.city + ' ' + line.street;
// lineOld = line
});
window.open(url + addresses, '_blank');