Skip to content

Commit

Permalink
feat(CompanyForm): add hint to prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanvanherwijnen committed Jul 10, 2024
1 parent 3714ba5 commit b6685f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/app/src/components/company/CompanyForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
bottom-slots
lazy-rules
name="prefix"
:hint="lang.company.helpers.prefix"
/>
<form-input
v-bind="input"
Expand Down
3 changes: 2 additions & 1 deletion packages/app/src/lang/en-US.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ const lang: Language = {
fieldRequired: 'Field is required'
},
helpers: {
emailBcc: 'All invoices will be sent as BCC to this address.'
emailBcc: 'All invoices will be sent as BCC to this address.',
prefix: 'The company prefix used in the invoice number prefix.'
}
},
client: {
Expand Down
1 change: 1 addition & 0 deletions packages/app/src/lang/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ export interface Language {
}
helpers: {
emailBcc: string
prefix: string
}
}
client: {
Expand Down
4 changes: 3 additions & 1 deletion packages/app/src/lang/nl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,9 @@ const lang: Language = {
fieldRequired: 'Veld is vereist'
},
helpers: {
emailBcc: 'Alle facturen worden BCC verstuurd naar dit adres.'
emailBcc: 'Alle facturen worden BCC verstuurd naar dit adres.',
prefix:
'Het bedrijfsvoorvoegsel gebruikt in het nummervoorvoegsel van een factuur.'
}
},
client: {
Expand Down

0 comments on commit b6685f2

Please sign in to comment.