This repository was archived by the owner on Oct 24, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +35
-10
lines changed Expand file tree Collapse file tree 3 files changed +35
-10
lines changed Original file line number Diff line number Diff line change 37
37
v-show =" $v.name.$error"
38
38
class =" text-sm self-start ml-2 mb-4 text-red-light"
39
39
>
40
- Please type a valid name
40
+ {{ $t('contact.errors. name') }}
41
41
</span >
42
42
<div
43
43
:class =" {'shadow-white': focusedElement === 'email', 'shadow-red': $v.email.$error}"
62
62
v-show =" $v.email.$error"
63
63
class =" text-sm self-start ml-2 mb-4 text-red-light"
64
64
>
65
- Please insert a valid E-Mail
65
+ {{ $t('contact.errors.email') }}
66
66
</span >
67
67
<div
68
68
:class =" {'shadow-white': focusedElement === 'msg', 'shadow-red': $v.msg.$error}"
87
87
v-show =" $v.msg.$error"
88
88
class =" text-xm self-start ml-2 mb-4 text-red-light"
89
89
>
90
- Please provide a valid message with at least 25 characters
90
+ {{ $t('contact.errors. message') }}
91
91
</span >
92
92
<p class =" text-xs md:text-base my-4 px-2 text-grey-light" >
93
- We use the data you provide us through this form only to process your contact request! You
94
- find more information in our
93
+ {{ $t('contact.privacy.text') }}
95
94
<NuxtLink
96
95
:to =" localePath('privacy')"
97
96
tabindex =" -1"
98
97
class =" text-white hover:text-developmint-lighter"
99
98
>
100
- Privacy Policy
99
+ {{ $t('contact.privacy.policy') }}
101
100
</NuxtLink >
102
101
</p >
103
102
<div class =" flex justify-between lg:block lg:ml-auto" >
120
119
v-show =" isSubmitted"
121
120
class =" text-2xl text-developmint"
122
121
>
123
- Thanks for your submission!
122
+ {{ $t('contact.message.success') }}
124
123
</div >
125
124
<div
126
125
v-if =" error"
127
126
class =" text-2xl text-red-dark"
128
127
>
129
- An error occurred!
128
+ {{ $t('contact.message. error') }}
130
129
</div >
131
130
</div >
132
131
</div >
Original file line number Diff line number Diff line change @@ -18,11 +18,24 @@ module.exports = {
18
18
contact : {
19
19
heading : 'Kommen Sie ihrem Ziel einen Schritt näher' ,
20
20
fields : {
21
- tell : 'Erzählen Sie uns mehr! '
21
+ tell : 'Wie können wir Ihnen weiterhelfen? '
22
22
} ,
23
23
buttons : {
24
24
back : 'Zurück' ,
25
25
submit : 'Absenden'
26
+ } ,
27
+ error : {
28
+ name : 'Bitte geben Sie einen gültigen Namen (Vor- und Nachnamen) ein.' ,
29
+ email : 'Bitte nutzen Sie eine valide E-Mail.' ,
30
+ message : 'Bitte geben Sie eine gültige Nachricht mit mindestens 25 Zeichen ein.'
31
+ } ,
32
+ privacy : {
33
+ text : `Wir nutzen die von Ihnen hier eingegebenen Daten nur um die Kontaktanfrage zu verarbeiten. Mehr Informationen finde Sie in unserer` ,
34
+ policy : 'Datenschutzbestimmung'
35
+ } ,
36
+ message : {
37
+ success : 'Danke für die Anfrage! Wir werden Sie schnellstmöglich kontaktieren.' ,
38
+ error : `Ein unbekannter Fehler ist aufgetreten. Das sollte nicht passieren, aber wir wurden bereits informiert.`
26
39
}
27
40
} ,
28
41
index : {
Original file line number Diff line number Diff line change @@ -18,11 +18,24 @@ module.exports = {
18
18
contact : {
19
19
heading : 'One step closer to your goal' ,
20
20
fields : {
21
- tell : 'Tell us more!'
21
+ tell : 'Tell us more about your inquiry !'
22
22
} ,
23
23
buttons : {
24
24
back : 'Back' ,
25
25
submit : 'Submit'
26
+ } ,
27
+ error : {
28
+ name : 'Please type in a valid name.' ,
29
+ email : 'Please insert a valid email.' ,
30
+ message : 'Please provide a valid message with at least 25 characters.'
31
+ } ,
32
+ privacy : {
33
+ text : `We use the data you provide us through this form only to process your contact request! You can find more information in our` ,
34
+ policy : 'Privacy Policy'
35
+ } ,
36
+ message : {
37
+ success : 'Thanks for your submission! We will contact you as soon as possible.' ,
38
+ error : 'An unknown error occurred. This should not happen, but we were already notified.'
26
39
}
27
40
} ,
28
41
index : {
You can’t perform that action at this time.
0 commit comments