diff --git a/resources/lang/en/texts.php b/resources/lang/en/texts.php index d6d6d2a05ea1..64fc61829c98 100644 --- a/resources/lang/en/texts.php +++ b/resources/lang/en/texts.php @@ -3149,4 +3149,38 @@ return [ 'display_log' => 'Display Log', 'send_fail_logs_to_our_server' => 'Send error logs to our servers for analysis', 'setup' => 'Setup', + + 'quick_overview_statistics' => 'Quick overview & statistics', + 'update_your_personal_info' => 'Update your personal information', + 'name_website_logo' => 'Name, website & logo', + 'make_sure_use_full_link' => 'Make sure you use full link to your site', + 'personal_address' => 'Personal address', + 'enter_your_personal_address' => 'Enter your personal address', + 'enter_your_shipping_address' => 'Enter your shipping address', + 'list_of_invoices' => 'List of invoices', + 'with_selected' => 'With selected', + 'invoice_still_unpaid' => 'This invoice is still not paid. Click the button to complete the payment', + 'list_of_recurring_invoices' => 'List of recurring invoices', + 'details_of_recurring_invoice' => 'Here are some details about recurring invoice', + 'cancellation' => 'Cancellation', + 'about_cancellation' => 'In case you want to stop the recurring invoice, + please click the request the cancellation.', + 'request_cancellation' => 'Request cancellation', + 'cancellation_warning' => 'Warning! You are requesting a cancellation of this service. + Your service may be cancelled with no further notification to you.', + + 'cancellation_pending' => 'Cancellation pending, we\'ll be in touch!', + 'list_of_payments' => 'List of payments', + 'payment_details' => 'Details of the payment', + 'list_of_payment_invoices' => 'List of invoices affected by the payment', + 'list_of_payment_methods' => 'List of payment methods', + 'payment_method_details' => 'Details of payment method', + 'permanently_remove_payment_method' => 'Permanently remove this payment method.', + 'remove_payment_method' => 'Remove payment method', + 'warning_action_cannot_be_reversed' => 'Warning! This action can\'t be reversed!', + 'confirmation' => 'Confirmation', + 'list_of_quotes' => 'List of quotes', + 'waiting_for_approval' => 'Waiting for approval', + 'quote_still_not_approved' => 'This quote is still not approved', + 'list_of_credits' => 'List of credits', ]; diff --git a/resources/views/portal/default/recurring_invoices/request_cancellation.blade.php b/resources/views/portal/default/recurring_invoices/request_cancellation.blade.php index 2768bf8e1725..59fa8926a899 100644 --- a/resources/views/portal/default/recurring_invoices/request_cancellation.blade.php +++ b/resources/views/portal/default/recurring_invoices/request_cancellation.blade.php @@ -1,40 +1,43 @@ @extends('portal.default.layouts.master') -@section('header') -@stop + @section('body') -
-
-
-
-
-
- Request Cancellation -
-
- - - - - - +
+
+
+
+
+
+ {{ ctrans('texts.cancellation') }} +
+
+
{{ctrans('texts.start_date')}}{!! $invoice->start_date !!}
{{ctrans('texts.next_send_date')}}{!! $invoice->next_send_date !!}
{{ctrans('texts.frequency')}}{!! App\Models\RecurringInvoice::frequencyForKey($invoice->frequency_id) !!}
{{ctrans('texts.cycles_remaining')}}{!! $invoice->remaining_cycles !!}
{{ctrans('texts.amount')}}{!! $invoice->amount !!}
+ + + + + + + + + + + + + + + + + + + + -
{{ctrans('texts.start_date')}}{!! $invoice->start_date !!}
{{ctrans('texts.next_send_date')}}{!! $invoice->next_send_date !!}
{{ctrans('texts.frequency')}}{!! App\Models\RecurringInvoice::frequencyForKey($invoice->frequency_id) !!}
{{ctrans('texts.cycles_remaining')}}{!! $invoice->remaining_cycles !!}
{{ctrans('texts.amount')}}{!! $invoice->amount !!}
- - - + + +
- -
- - -@endsection -@push('css') -@endpush -@push('scripts') -@endpush -@section('footer') -@endsection - + +@endsection \ No newline at end of file diff --git a/resources/views/portal/ninja2020/invoices/show.blade.php b/resources/views/portal/ninja2020/invoices/show.blade.php index 19f44e5bda54..6634340f8127 100644 --- a/resources/views/portal/ninja2020/invoices/show.blade.php +++ b/resources/views/portal/ninja2020/invoices/show.blade.php @@ -19,7 +19,7 @@

- {{ ctrans('texts.invoice_unpaid') }} + {{ ctrans('texts.invoice_still_unpaid') }}

diff --git a/resources/views/portal/ninja2020/payment_methods/includes/modals/removal.blade.php b/resources/views/portal/ninja2020/payment_methods/includes/modals/removal.blade.php index 0248d1209d91..6a5cb00cd4f3 100644 --- a/resources/views/portal/ninja2020/payment_methods/includes/modals/removal.blade.php +++ b/resources/views/portal/ninja2020/payment_methods/includes/modals/removal.blade.php @@ -22,11 +22,11 @@

- Are you sure? + {{ ctrans('texts.confirmation') }}

- Warning! This action can't be reversed. + {{ ctrans('texts.warning_action_cannot_be_reversed' )}}

diff --git a/resources/views/portal/ninja2020/payment_methods/index.blade.php b/resources/views/portal/ninja2020/payment_methods/index.blade.php index d9eea112fc14..e91c932a2232 100644 --- a/resources/views/portal/ninja2020/payment_methods/index.blade.php +++ b/resources/views/portal/ninja2020/payment_methods/index.blade.php @@ -14,7 +14,6 @@

{{ ctrans('texts.list_of_payment_methods') }} -

diff --git a/resources/views/portal/ninja2020/payment_methods/show.blade.php b/resources/views/portal/ninja2020/payment_methods/show.blade.php index be3e5c3d18f1..e05e38b8b1b8 100644 --- a/resources/views/portal/ninja2020/payment_methods/show.blade.php +++ b/resources/views/portal/ninja2020/payment_methods/show.blade.php @@ -13,8 +13,7 @@ {{ ctrans("texts.{$payment_method->gateway_type->alias}") }}

- - {{ ctrans('texts.details_of_method') }} + {{ ctrans('texts.payment_method_details') }}

@@ -77,18 +76,18 @@

- Remove + {{ ctrans('texts.remove')}}

- Permanently remove this payment method. + {{ ctrans('texts.permanently_remove_payment_method') }}

@include('portal.ninja2020.payment_methods.includes.modals.removal')
diff --git a/resources/views/portal/ninja2020/payments/index.blade.php b/resources/views/portal/ninja2020/payments/index.blade.php index c0790d8d2bfb..eaa9a86fd941 100644 --- a/resources/views/portal/ninja2020/payments/index.blade.php +++ b/resources/views/portal/ninja2020/payments/index.blade.php @@ -13,7 +13,7 @@

- {{ ctrans('texts.List of your payments.') }} + {{ ctrans('texts.list_of_payments') }}

diff --git a/resources/views/portal/ninja2020/payments/show.blade.php b/resources/views/portal/ninja2020/payments/show.blade.php index 8bc4dc4ab105..acf1fa565575 100644 --- a/resources/views/portal/ninja2020/payments/show.blade.php +++ b/resources/views/portal/ninja2020/payments/show.blade.php @@ -13,7 +13,7 @@ {{ ctrans('texts.payment') }}

- {{ ctrans('texts.Details of the payment.') }} + {{ ctrans('texts.payment_details') }}

@@ -67,7 +67,7 @@ {{ ctrans('texts.invoices') }}

- {{ ctrans('texts.List of invoices affected by payment.') }} + {{ ctrans('texts.list_of_payment_invoices') }}

diff --git a/resources/views/portal/ninja2020/profile/index.blade.php b/resources/views/portal/ninja2020/profile/index.blade.php index 8c5fc03a1b96..0856c7ff6e8c 100644 --- a/resources/views/portal/ninja2020/profile/index.blade.php +++ b/resources/views/portal/ninja2020/profile/index.blade.php @@ -3,7 +3,7 @@ @section('meta_title', ctrans('texts.client_information')) @section('header') -

{{ ctrans('texts.Update your personal information.') }}

+

{{ ctrans('texts.update_your_personal_info') }}

@endsection @section('body') @@ -13,7 +13,7 @@
-

{{ ctrans('texts.profile') }}

+

{{ ctrans('texts.profile') }}

@lang('texts.client_information_text')

@@ -108,8 +108,8 @@

{{ ctrans('texts.name_website_logo') }}

-

- {{ ctrans('texts. Make sure you use full link to your site.') }} +

+ {{ ctrans('texts.make_sure_use_full_link') }}

@@ -161,8 +161,8 @@

{{ ctrans('texts.personal_address') }}

-

- {{ ctrans('texts.your_personal_address') }} +

+ {{ ctrans('texts.enter_your_personal_address') }}

@@ -257,8 +257,8 @@

{{ ctrans('texts.shipping_address') }}

-

- {{ ctrans('texts.your_shipping_address') }} +

+ {{ ctrans('texts.enter_your_shipping_address') }}

diff --git a/resources/views/portal/ninja2020/quotes/show.blade.php b/resources/views/portal/ninja2020/quotes/show.blade.php index 94caa1a3b53d..32779a52a117 100644 --- a/resources/views/portal/ninja2020/quotes/show.blade.php +++ b/resources/views/portal/ninja2020/quotes/show.blade.php @@ -17,7 +17,7 @@

- {{ ctrans('texts.waitin_for_approval') }} + {{ ctrans('texts.waiting_for_approval') }}

diff --git a/resources/views/portal/ninja2020/recurring_invoices/includes/modals/cancellation.blade.php b/resources/views/portal/ninja2020/recurring_invoices/includes/modals/cancellation.blade.php index 8e075c6c8a1d..2075c2594029 100644 --- a/resources/views/portal/ninja2020/recurring_invoices/includes/modals/cancellation.blade.php +++ b/resources/views/portal/ninja2020/recurring_invoices/includes/modals/cancellation.blade.php @@ -22,12 +22,11 @@

- Request Cancellation + {{ ctrans('texts.request_cancellation' )}}

- Warning! You are requesting a cancellation of this service. - Your service may be cancelled with no further notification to you. + {{ ctrans('texts.cancellation_warning') }}

@@ -36,12 +35,12 @@
diff --git a/resources/views/portal/ninja2020/recurring_invoices/show.blade.php b/resources/views/portal/ninja2020/recurring_invoices/show.blade.php index dfc3ce54b881..f0308c092a78 100644 --- a/resources/views/portal/ninja2020/recurring_invoices/show.blade.php +++ b/resources/views/portal/ninja2020/recurring_invoices/show.blade.php @@ -69,8 +69,7 @@

- {{ ctrans('texts.In case you want to stop the recurring invoice, please click the request the - cancellation.') }} + {{ ctrans('texts.about_cancellation') }}

@@ -84,4 +83,4 @@
-@endsection +@endsection \ No newline at end of file