Skip to content

Commit

Permalink
🌐 Add translations
Browse files Browse the repository at this point in the history
  • Loading branch information
volterra79 committed Oct 17, 2023
1 parent 3a7dbcb commit fb1ed71
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/components/DownloadFieldsLayer.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="g3w-fields-to-downloads">
<h4 style="font-weight: bold">Seleziona campi</h4>
<h4 style="font-weight: bold" v-t="'download.fields.title'"></h4>
<section class="g3w-fields-to-downloads-inputs">
<input
@click.stop = "selectAll"
Expand All @@ -11,7 +11,7 @@
>
<label
:for = "`select_all_fields_to_download`"
style = "color: #FFF"> All
style = "color: #FFF" v-t="'download.fields.all'">
</label>
<divider/>
<div v-for="field in fields" :key="field.name">
Expand Down
8 changes: 7 additions & 1 deletion src/locales/de.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ export default {
no_data: "Keine Daten",
nodatafilterd: "Keine passenden Datensätze gefunden",
infoFiltered: "(gefiltert aus _MAX_ Gesamtsätzen)"
}
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
},
},
};
8 changes: 7 additions & 1 deletion src/locales/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ export default {
no_data: "No data",
nodatafilterd: "No matching records found",
infoFiltered: "(filtered from _MAX_ total records)"
}
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
},
},
};
8 changes: 7 additions & 1 deletion src/locales/fi.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ export default {
no_data: "Ei tietoja",
nodatafilterd: "Vastaavia tietueita ei löytynyt",
infoFiltered: "(filtered from _MAX_ total records)"
}
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
},
},
};
6 changes: 6 additions & 0 deletions src/locales/fr.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,12 @@ export default {
info: "Afficher _START_ à _END_ sur _TOTAL_ lignes",
nodatafilterd: "Aucun résultat trouvé",
infoFiltered: "(Filtré par _MAX_ rangs totaux)"
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
}
},
};
6 changes: 6 additions & 0 deletions src/locales/it.js
Original file line number Diff line number Diff line change
Expand Up @@ -548,5 +548,11 @@ export default {
nodatafilterd: "Nessun risultato trovato",
infoFiltered: "(Filtrati da _MAX_ total righe)"
},
download: {
fields: {
all: 'Tutti',
title: 'Seleziona campi da scaricare'
}
},
},
};
6 changes: 6 additions & 0 deletions src/locales/ro.js
Original file line number Diff line number Diff line change
Expand Up @@ -542,6 +542,12 @@ export default {
no_data: "Fără date",
nodatafilterd: "Niciun rezultat",
infoFiltered: "(filtrat din _MAX_ de rezultate totale)"
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
}
},
};
6 changes: 6 additions & 0 deletions src/locales/se.js
Original file line number Diff line number Diff line change
Expand Up @@ -543,6 +543,12 @@ export default {
no_data: "Inga uppgifter",
nodatafilterd: "Inga motsvarande poster hittades",
infoFiltered: "(filtered from _MAX_ total records)"
},
download: {
fields: {
all: 'All',
title: 'Select fields to download'
}
}
},
};

0 comments on commit fb1ed71

Please sign in to comment.