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:
parent
c8f53befb8
commit
4a21f4c846
8 changed files with 203 additions and 52 deletions
web-frontend/modules/database/components/row
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue