Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
MetaGer
Commits
9ce2abe1
Commit
9ce2abe1
authored
Dec 15, 2020
by
Dominik Hebeler
Browse files
added a heading for bank account informations
parent
5ea71099
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
resources/lang/de/spende.php
View file @
9ce2abe1
...
...
@@ -7,7 +7,7 @@ return [
'headline.3'
=>
'Welchen Betrag möchten Sie spenden?'
,
'headline.4'
=>
'Wie regelmäßig möchten Sie spenden?'
,
'headline.5'
=>
'Wie möchten Sie spenden?'
,
'headline.6'
=>
'Kontodaten'
,
'wunschbetrag'
=>
'Wunschbetrag'
,
'wunschbetrag.placeholder'
=>
'Betrag in €'
,
...
...
resources/lang/en/spende.php
View file @
9ce2abe1
...
...
@@ -7,7 +7,7 @@ return [
'headline.3'
=>
'How much would you like to donate?'
,
'headline.4'
=>
'How frequent do you want to donate?'
,
'headline.5'
=>
'Choose a payment method'
,
'headline.6'
=>
'Bank Account Informations'
,
'wunschbetrag'
=>
'Custom amount'
,
'wunschbetrag.placeholder'
=>
'Amount in €'
,
...
...
resources/views/spende/spende.blade.php
View file @
9ce2abe1
...
...
@@ -99,6 +99,7 @@
<
input
type
=
"radio"
class
=
"frequency-radio"
name
=
"frequency"
id
=
"six-monthly"
value
=
"six-monthly"
required
=
"required"
@
if
(
!
empty
(
$data
)
&&
$data
[
"frequency"
]
===
"six-monthly"
)
checked
=
"checked"
@
endif
><
label
class
=
"frequency-label"
for
=
"six-monthly"
><
nobr
>
{
!!
trans
(
'spende.frequency.4'
)
!!
}
</
nobr
></
label
>
<
input
type
=
"radio"
class
=
"frequency-radio"
name
=
"frequency"
id
=
"annual"
value
=
"annual"
required
=
"required"
@
if
(
!
empty
(
$data
)
&&
$data
[
"frequency"
]
===
"annual"
)
checked
=
"checked"
@
endif
><
label
class
=
"frequency-label"
for
=
"annual"
><
nobr
>
{
!!
trans
(
'spende.frequency.5'
)
!!
}
</
nobr
></
label
>
</
div
>
<
h3
>
{
!!
trans
(
'spende.headline.6'
)
!!
}
</
h3
>
<
p
>
{
!!
trans
(
'spende.lastschrift.2'
)
!!
}
</
p
>
<
input
type
=
"hidden"
name
=
"dt"
value
=
"{{ md5(date('Y') . date('m') . date('d')) }}"
>
<
div
class
=
"form-group donation-form-group"
>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment