chore: 🌐 changed payment method missing text

This commit is contained in:
IceToast 2021-12-20 18:56:25 +01:00
parent b775ce6cc7
commit e306dd8104
3 changed files with 8 additions and 10 deletions

View file

@ -95,8 +95,8 @@
"This is what the user sees at checkout": "Dies ist die Beschreibung auf der Rechnung und was der Kunde beim kauf sieht", "This is what the user sees at checkout": "Dies ist die Beschreibung auf der Rechnung und was der Kunde beim kauf sieht",
"Adds 1000 credits to your account": "Fügt deinem Account 1000 Credits hinzu", "Adds 1000 credits to your account": "Fügt deinem Account 1000 Credits hinzu",
"Active": "Aktiv", "Active": "Aktiv",
"Paypal is not configured.": "Paypal ist nicht konfiguriert!", "No payment method is configured.": "Keine Bezahlmethode konfiguriert!",
"To configure PayPal, head to the .env and add your PayPals client id and secret.": "Um Paypal zu konfigurieren, füge deine Paypal client ID und Secretkey in deine .env-Datei hinzu", "To configure the payment methods, head to the .env and add the required options for your prefered payment method.": "Um die Bezahlmethoden einzustellen, setze die passenden Variablen, für eine oder mehrere Bezahlmethoden, in der .env",
"Useful Links": "Nützliche Links", "Useful Links": "Nützliche Links",
"Icon class name": "Icon Klassen-Name", "Icon class name": "Icon Klassen-Name",
"You can find available free icons": "Hier gibt es kostenlose Icons", "You can find available free icons": "Hier gibt es kostenlose Icons",

View file

@ -106,8 +106,8 @@
"Adds 1000 credits to your account": "Adds 1000 credits to your account", "Adds 1000 credits to your account": "Adds 1000 credits to your account",
"Active": "Active", "Active": "Active",
"Paypal is not configured.": "Paypal is not configured.", "No payment method is configured.": "No payment method is configured.",
"To configure PayPal, head to the .env and add your PayPals client id and secret.": "To configure PayPal, head to the .env and add your PayPals client id and secret.", "To configure the payment methods, head to the .env and add the required options for your prefered payment method.": "To configure the payment methods, head to the .env and add the required options for your prefered payment method.",
"Useful Links": "Useful Links", "Useful Links": "Useful Links",
"Icon class name": "Icon class name", "Icon class name": "Icon class name",
@ -164,7 +164,7 @@
"You forgot your password? Here you can easily retrieve a new password.": "You forgot your password? Here you can easily retrieve a new password.", "You forgot your password? Here you can easily retrieve a new password.": "You forgot your password? Here you can easily retrieve a new password.",
"Request new password": "Request new password", "Request new password": "Request new password",
"Login": "Login", "Login": "Login",
"You are only one step a way from your new password, recover your password now.":"You are only one step a way from your new password, recover your password now.", "You are only one step a way from your new password, recover your password now.": "You are only one step a way from your new password, recover your password now.",
"Retype password": "Retype password", "Retype password": "Retype password",
"Change password": "Change password", "Change password": "Change password",
"I already have a membership": "I already have a membership", "I already have a membership": "I already have a membership",
@ -363,8 +363,6 @@
"Amount due": "Amount due", "Amount due": "Amount due",
"Your Payment was successful!": "Your Payment was successful!", "Your Payment was successful!": "Your Payment was successful!",
"Hello":"Hello", "Hello": "Hello",
"Your payment was processed successfully!":"Your payment was processed successfully!" "Your payment was processed successfully!": "Your payment was processed successfully!"
} }

View file

@ -29,7 +29,7 @@
@if ($isPaymentSetup == false) @if ($isPaymentSetup == false)
<div class="callout callout-danger"> <div class="callout callout-danger">
<h4>{{ __('No payment method is configured.') }}</h4> <h4>{{ __('No payment method is configured.') }}</h4>
<p>{{ __('To configure your payment methods, head to the .env and add the required options for your prefered payment method.') }} <p>{{ __('To configure the payment methods, head to the .env and add the required options for your prefered payment method.') }}
</p> </p>
</div> </div>
@endif @endif