mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-20 23:49: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
|
@ -26,7 +26,7 @@
|
|||
@click.prevent="toggleDropdown()"
|
||||
>
|
||||
<i class="fas fa-plus add__icon"></i>
|
||||
Add another option
|
||||
{{ $t('rowEditFieldMultipleSelect.addOption') }}
|
||||
</a>
|
||||
<FieldSelectOptionsDropdown
|
||||
ref="dropdown"
|
||||
|
@ -56,3 +56,18 @@ export default {
|
|||
mixins: [rowEditField, selectOptions, multipleSelectField],
|
||||
}
|
||||
</script>
|
||||
|
||||
<i18n>
|
||||
{
|
||||
"en": {
|
||||
"rowEditFieldMultipleSelect": {
|
||||
"addOption": "Add another option"
|
||||
}
|
||||
},
|
||||
"fr": {
|
||||
"rowEditFieldMultipleSelect": {
|
||||
"addOption": "Ajouter une option"
|
||||
}
|
||||
}
|
||||
}
|
||||
</i18n>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue