-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
34 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,44 +50,46 @@ | |
<x-larastrap::modal title="" id="service-modal"> | ||
</x-larastrap::modal> | ||
|
||
<x-larastrap::modal title="{{ _i('Feedback') }}" id="feedback-modal"> | ||
<div> | ||
@if(Auth::check()) | ||
<x-larastrap::modal title="{{ _i('Feedback') }}" id="feedback-modal"> | ||
<div> | ||
<p> | ||
{{ _i('GASdotto è sviluppato con modello open source!') }} | ||
</p> | ||
<p> | ||
{{ _i('Puoi contribuire mandando una segnalazione o una richiesta:') }} | ||
</p> | ||
<ul> | ||
<li>su GitHub: <a href="https://github.com/madbob/GASdottoNG/" target="_blank">github.com/madbob/GASdottoNG</a></li> | ||
<li>via mail: <a href="mailto:[email protected]">[email protected]</a></li> | ||
<li>sulla mailing list degli utenti: <a href="https://groups.google.com/g/gasdotto-dev">groups.google.com/g/gasdotto-dev</a></li> | ||
</ul> | ||
<p> | ||
{{ _i('O facendo una donazione:') }} | ||
</p> | ||
<p> | ||
<a href="https://paypal.me/m4db0b" target="_blank"><img src="https://www.gasdotto.net/images/paypal.png" border="0"></a> | ||
</p> | ||
</div> | ||
<p> | ||
{{ _i('GASdotto è sviluppato con modello open source!') }} | ||
{!! _i('Puoi anche consultate <a href="https://gasdotto.net/" target="_blank">il sito di GASdotto</a> per dare una occhiata alla documentazione, o seguirci <a href="https://twitter.com/GASdottoNet" target="_blank">su Twitter</a> o <a href="https://sociale.network/@gasdottonet" target="_blank">su Mastodon</a> per aggiornamenti periodici.') !!} | ||
</p> | ||
<p> | ||
{{ _i('Puoi contribuire mandando una segnalazione o una richiesta:') }} | ||
{{ _i('Attenzione: per problemi sui contenuti di questo sito (fornitori, ordini, prenotazioni...) fai riferimento agli amministrazioni del tuo GAS.') }} | ||
</p> | ||
<ul> | ||
<li>su GitHub: <a href="https://github.com/madbob/GASdottoNG/" target="_blank">github.com/madbob/GASdottoNG</a></li> | ||
<li>via mail: <a href="mailto:[email protected]">[email protected]</a></li> | ||
<li>sulla mailing list degli utenti: <a href="https://groups.google.com/g/gasdotto-dev">groups.google.com/g/gasdotto-dev</a></li> | ||
@foreach(everybodyCan('gas.permissions', $currentgas) as $admin) | ||
<li>{{ $admin->printableName() }} - {{ join(', ', $admin->getContactsByType('email')) }}</li> | ||
@endforeach | ||
</ul> | ||
<p> | ||
{{ _i('O facendo una donazione:') }} | ||
</p> | ||
<p> | ||
<a href="https://paypal.me/m4db0b" target="_blank"><img src="https://www.gasdotto.net/images/paypal.png" border="0"></a> | ||
</p> | ||
</div> | ||
<p> | ||
{!! _i('Puoi anche consultate <a href="https://gasdotto.net/" target="_blank">il sito di GASdotto</a> per dare una occhiata alla documentazione, o seguirci <a href="https://twitter.com/GASdottoNet" target="_blank">su Twitter</a> o <a href="https://sociale.network/@gasdottonet" target="_blank">su Mastodon</a> per aggiornamenti periodici.') !!} | ||
</p> | ||
<p> | ||
{{ _i('Attenzione: per problemi sui contenuti di questo sito (fornitori, ordini, prenotazioni...) fai riferimento agli amministrazioni del tuo GAS.') }} | ||
</p> | ||
<ul> | ||
@foreach(everybodyCan('gas.permissions', $currentgas) as $admin) | ||
<li>{{ $admin->printableName() }} - {{ join(', ', $admin->getContactsByType('email')) }}</li> | ||
@endforeach | ||
</ul> | ||
|
||
@if(currentLang() != 'it_IT') | ||
<p> | ||
{!! _i('Se vuoi contribuire alla traduzione nella tua lingua, visita <a href="https://hosted.weblate.org/projects/gasdottong/translations/">questa pagina</a>.') !!} | ||
</p> | ||
@endif | ||
</x-larastrap::modal> | ||
|
||
@if(currentLang() != 'it_IT') | ||
<p> | ||
{!! _i('Se vuoi contribuire alla traduzione nella tua lingua, visita <a href="https://hosted.weblate.org/projects/gasdottong/translations/">questa pagina</a>.') !!} | ||
</p> | ||
@endif | ||
</x-larastrap::modal> | ||
@endif | ||
|
||
@if(Session::has('prompt_message')) | ||
<x-larastrap::modal title="{{ _i('Attenzione') }}" id="prompt-message-modal"> | ||
|