diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index 236923e0c1a4..bc9f31b48324 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -4273,6 +4273,10 @@ $LANG = array( 'already_default_payment_method' => 'This is your preferred way of paying.', 'auto_bill_disabled' => 'Auto Bill Disabled', 'select_payment_method' => 'Select a payment method:', + 'login_without_password' => 'Log in without password', + 'email_sent' => 'E-mail sent, please check your inbox.', + 'one_time_purchases' => 'One time purchases', + 'recurring_purchases' => 'Recurring purchases', ); return $LANG; diff --git a/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php b/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php index 0f89b016c970..1dea3ab58cb3 100644 --- a/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php +++ b/resources/views/portal/ninja2020/components/livewire/billing-portal-purchase.blade.php @@ -14,7 +14,7 @@
- One-time purchases: + {{ ctrans('texts.one_time_purchases') }}
@foreach($subscription->service()->products() as $product) @@ -35,7 +35,7 @@- Recurring purchases: + {{ ctrans('texts.recurring_purchases') }}
@foreach($subscription->service()->recurring_products() as $product) @@ -178,12 +178,12 @@ @if($steps['passwordless_login_sent']) E-mail sent. Please check your inbox! + class="block mt-2 text-sm text-green-600">{{ ctrans('texts.email_sent') }} @endif @endif @@ -199,7 +199,7 @@