Complete dashboard translations & small UI improvements (#69)

* fix dropdown action Estimate Dashboard and fix translating full Dasboard page

* Update app.php

* fix locale in app.php config

* Wizard install with translation, customer portal with translation, and fixing hardcoding strings to get translation

* fixes asked to review

* fixes pint

---------

Co-authored-by: Max <contact@agencetwogether.fr>
Co-authored-by: Darko Gjorgjijoski <5760249+gdarko@users.noreply.github.com>
This commit is contained in:
agencetwogether
2024-06-05 12:07:46 +02:00
committed by GitHub
parent 3259173066
commit 3b61440e1f
89 changed files with 925 additions and 213 deletions

View File

@@ -128,7 +128,7 @@
class="w-6 h-6 text-gray-400"
/>
<span class="block mt-1">{{ noResultsMessage }}</span>
<span class="block mt-1">{{ $t('general.no_data_found') }}</span>
</div>
<BaseTablePagination

View File

@@ -35,7 +35,7 @@
"
@click="pageClicked(pagination.currentPage - 1)"
>
Previous
{{ $t('general.pagination.previous') }}
</a>
<a
href="#"
@@ -60,13 +60,13 @@
"
@click="pageClicked(pagination.currentPage + 1)"
>
Next
{{ $t('general.pagination.next') }}
</a>
</div>
<div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between">
<div>
<p class="text-sm text-gray-700">
Showing
{{ $t('general.pagination.showing') }}
{{ ' ' }}
<span
v-if="pagination.limit && pagination.currentPage"
@@ -77,7 +77,7 @@
}}
</span>
{{ ' ' }}
to
{{ $t('general.pagination.to') }}
{{ ' ' }}
<span
v-if="pagination.limit && pagination.currentPage"
@@ -96,13 +96,13 @@
</span>
</span>
{{ ' ' }}
of
{{ $t('general.pagination.of') }}
{{ ' ' }}
<span v-if="pagination.totalCount" class="font-medium">
{{ pagination.totalCount }}
</span>
{{ ' ' }}
results
{{ $t('general.pagination.results') }}
</p>
</div>
<div>