backend language strings updates

This commit is contained in:
Čarodej
2022-03-20 14:26:53 +01:00
parent 881facc867
commit 73ef6e6c1f
27 changed files with 257 additions and 116 deletions
@@ -68,7 +68,7 @@
{{ __t('invoice') }}
</h1>
<b class="text-gray-800 text-sm">
Number: {{ $invoice->id }}
{{ __t('number') }}: {{ $invoice->id }}
</b>
</div>
</header>
@@ -91,7 +91,7 @@
<div class="mb-3">
<b class="text-theme text-base font-bold mb-1 block">
Head Office:
{{ __t('head_office') }}:
</b>
@isset($settings->billing_address)
@@ -133,12 +133,12 @@
<div>
<b class="text-theme text-base font-bold mb-1 block">
Billing Information:
{{ __t('billing_information') }}:
</b>
@isset($settings->billing_vat_number)
<span class="font-bold block">
VAT ID: {{ $settings->billing_vat_number }}
{{ __t('vat_id') }}: {{ $settings->billing_vat_number }}
</span>
@endisset
@@ -154,7 +154,7 @@
<div>
<div class="bg-light-background rounded-xl p-4" style="width: 360px">
<b class="text-theme text-base font-bold mb-1.5 block">
Client:
{{ __t('client') }}:
</b>
@isset($invoice->user->settings->name)
@@ -200,7 +200,7 @@
@endisset
</div>
<div class="font-bold block lg:text-right print:text-right pt-3 text-sm">
Date of issue: {{ format_date($invoice->created_at) }}
{{ __t('date_of_issue') }}: {{ format_date($invoice->created_at) }}
</div>
</div>
</div>
@@ -214,22 +214,22 @@
<tr>
<td class="pb-5">
<span class="text-theme dark:text-gray-500 text-gray-400 text-xs font-bold">
Description
{{ __t('description') }}
</span>
</td>
<td class="pb-5">
<span class="text-theme dark:text-gray-500 text-gray-400 text-xs font-bold">
Period
{{ __t('period') }}
</span>
</td>
<td class="pb-5">
<span class="text-theme dark:text-gray-500 text-gray-400 text-xs font-bold">
Usage
{{ __t('usage') }}
</span>
</td>
<td class="pb-5 text-right">
<span class="text-theme dark:text-gray-500 text-gray-400 text-xs font-bold">
Amount
{{ __t('amount') }}
</span>
</td>
</tr>
@@ -266,7 +266,7 @@
<tr class="whitespace-nowrap">
<td class="py-1.5 pr-3">
<span class="text-sm font-bold">
Subscription
{{ __t('subscription') }}
</span>
</td>
<td class="py-1.5">
@@ -299,7 +299,7 @@
<!-- Invoice Items -->
<footer class="text-center">
<p class="font-bold">
Generated by <a href="{{ url('/') }}" target="_blank" class="font-bold text-theme underline">{{ $settings->app_title }}</a>
{{ __t('generated_by') }} <a href="{{ url('/') }}" target="_blank" class="font-bold text-theme underline">{{ $settings->app_title }}</a>
</p>
</footer>
</div>