1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-05-20 15:39:35 +00:00

Row and field translations

This commit is contained in:
Bram Wiepjes 2021-10-27 11:00:57 +00:00
parent c8f53befb8
commit 4a21f4c846
8 changed files with 203 additions and 52 deletions
web-frontend/modules/database/components/row

View file

@ -58,7 +58,7 @@
</ul>
<a v-if="!readOnly" class="add" @click.prevent="showModal()">
<i class="fas fa-plus add__icon"></i>
Add a file
{{ $t('rowEditFieldFile.addFile') }}
</a>
<div v-show="touched && !valid" class="error">
{{ error }}
@ -112,3 +112,18 @@ export default {
},
}
</script>
<i18n>
{
"en": {
"rowEditFieldFile": {
"addFile": "Add a file"
}
},
"fr": {
"rowEditFieldFile": {
"addFile": "Ajouter un fichier"
}
}
}
</i18n>