Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix blank state message on billing screen #1187

Merged
merged 1 commit into from
Jul 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resources/js/Pages/Adminland/Billing/Index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
<!-- BLANK STATE -->
<div v-show="invoices.length == 0" class="pa3 mt5">
<p class="tc measure center mb4 lh-copy">
{{ $t('account.employee_statuses_blank') }}
{{ $t('account.billing_show_blank') }}
</p>
<img loading="lazy" class="db center mb4" alt="add a position symbol" srcset="/img/company/account/blank-position-1x.png,
/img/company/account/blank-position-2x.png 2x"
Expand Down
1 change: 1 addition & 0 deletions resources/lang/en/account.php
Original file line number Diff line number Diff line change
Expand Up @@ -681,6 +681,7 @@
'software_show_stat' => '{localUsedSeats}/{seats} seats used',
'software_delete' => 'The software has been deleted.',
'software_edit_title' => 'Edit software',
'billing_show_blank' => 'After one month of activity in your account, you will find here your invoices.',
'billing_show_title' => 'Invoice details for {date}',
'billing_show_description' => 'In {month}, the day with the most active employees in the company was {max_employees}, with {number_active_employees} employees. This is what we will use to bill your account.',
'billing_index_title' => 'All your invoices',
Expand Down