mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 21:22:58 +01:00
Merge pull request #5099 from beganovich/v5-1003-fix-setup-linkc
(v5) Fix setup translations & opening links in the new tab
This commit is contained in:
commit
d15c9d23ca
@ -1976,7 +1976,7 @@ $LANG = array(
|
||||
'require_invoice_signature_help' => 'Require client to provide their signature.',
|
||||
'require_quote_signature' => 'Quote Signature',
|
||||
'require_quote_signature_help' => 'Require client to provide their signature.',
|
||||
'i_agree' => 'I Agree To The Terms',
|
||||
'i_agree' => 'I Agree To',
|
||||
'sign_here' => 'Please sign here:',
|
||||
'authorization' => 'Authorization',
|
||||
'signed' => 'Signed',
|
||||
|
@ -58,13 +58,13 @@
|
||||
<div class="mt-4 text-sm">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="terms_of_service" required>
|
||||
<span>{{ ctrans('texts.i_agree') }}
|
||||
<a class="button-link" href="https://www.invoiceninja.com/self-hosting-terms-service/">{{ ctrans('texts.terms_of_service') }}</a>
|
||||
<a class="button-link text-blue-600" target="_blank" href="https://www.invoiceninja.com/self-hosting-terms-service/">{{ ctrans('texts.terms_of_service') }}</a>
|
||||
</span>
|
||||
</div>
|
||||
<div class="mt-2 text-sm">
|
||||
<input type="checkbox" class="form-checkbox mr-2" name="privacy_policy" required>
|
||||
<span>{{ ctrans('texts.i_agree') }}
|
||||
<a class="button-link" href="https://www.invoiceninja.com/self-hosting-privacy-data-control/">{{ ctrans('texts.privacy_policy') }}</a>
|
||||
<a class="button-link text-blue-600" target="_blank" href="https://www.invoiceninja.com/self-hosting-privacy-data-control/">{{ ctrans('texts.privacy_policy') }}</a>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user