add missing i18n

This commit is contained in:
Pete Matsyburka
2024-02-19 23:52:47 +02:00
parent 274259f305
commit c3f3c5d5df
10 changed files with 28 additions and 11 deletions
+1 -1
View File
@@ -90,7 +90,7 @@
<button
v-else-if="editable"
class="pr-1"
title="Remove"
:title="t('remove')"
@click.prevent="$emit('remove')"
>
<IconX width="14" />
@@ -27,7 +27,7 @@
<IconPencil
class="cursor-pointer flex-none opacity-0 group-hover/contenteditable-container:opacity-100 group-hover/contenteditable:opacity-100 align-middle peer-focus:hidden"
:style="iconInline ? {} : { right: -(1.1 * iconWidth) + 'px' }"
title="Edit"
:title="t('edit')"
:class="{ invisible: !editable, 'ml-1': !withRequired, 'absolute': !iconInline, 'inline align-bottom': iconInline }"
:width="iconWidth"
:stroke-width="iconStrokeWidth"
@@ -44,6 +44,7 @@ export default {
components: {
IconPencil
},
inject: ['t'],
props: {
modelValue: {
type: String,
+2 -2
View File
@@ -77,7 +77,7 @@
>
<label
tabindex="0"
title="Settings"
:title="t('settings')"
class="cursor-pointer text-transparent group-hover:text-base-content"
>
<IconSettings
@@ -282,7 +282,7 @@
</span>
<button
class="relative text-transparent group-hover:text-base-content pr-1"
title="Remove"
:title="t('remove')"
@click="$emit('remove', field)"
>
<IconTrashX
@@ -163,7 +163,7 @@
>
<div class="flex-col pr-1 hidden group-hover:flex -mt-1 h-0">
<button
title="Up"
:title="t('up')"
class="relative w-2"
style="font-size: 10px; margin-bottom: -4px"
@click.prevent.stop="[move(submitter, -1), $refs.label.focus()] "
@@ -171,7 +171,7 @@
</button>
<button
title="Down"
:title="t('down')"
class="relative w-2"
style="font-size: 10px; margin-top: -4px"
@click.prevent.stop="[move(submitter, 1), $refs.label.focus()] "
+5
View File
@@ -3,6 +3,11 @@ const en = {
sign_yourself: 'Sign Yourself',
set_signing_date: 'Set signing date',
send: 'Send',
remove: 'Remove',
edit: 'Edit',
settings: 'Settings',
up: 'Up',
down: 'Down',
checked: 'Checked',
save: 'Save',
cancel: 'Cancel',
@@ -5,7 +5,7 @@
>
<label
tabindex="0"
title="Settings"
:title="t('settings')"
class="cursor-pointer text-transparent group-hover:text-base-content"
>
<IconSettings
@@ -167,7 +167,7 @@ export default {
IconInnerShadowTop,
IconBrandStripe
},
inject: ['backgroundColor', 'save', 'currencies'],
inject: ['backgroundColor', 'save', 'currencies', 't'],
props: {
field: {
type: Object,