mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-07 12:54:31 -04:00
Added plan help text
This commit is contained in:
parent
01869d852c
commit
ee579f91f3
@ -1179,6 +1179,8 @@ $LANG = array(
|
|||||||
'preview' => 'Preview',
|
'preview' => 'Preview',
|
||||||
'list_vendors' => 'List Vendors',
|
'list_vendors' => 'List Vendors',
|
||||||
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
'add_users_not_supported' => 'Upgrade to the Enterprise plan to add additional users to your account.',
|
||||||
|
'enterprise_plan_features' => 'The Enterprise plan adds support for multiple users and file attachments.',
|
||||||
|
'return_to_app' => 'Return to app',
|
||||||
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@ -128,7 +128,8 @@
|
|||||||
@endif
|
@endif
|
||||||
{!! Former::select('plan_term')
|
{!! Former::select('plan_term')
|
||||||
->addOption(trans('texts.plan_term_yearly'), PLAN_TERM_YEARLY)
|
->addOption(trans('texts.plan_term_yearly'), PLAN_TERM_YEARLY)
|
||||||
->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY)!!}
|
->addOption(trans('texts.plan_term_monthly'), PLAN_TERM_MONTHLY)
|
||||||
|
->inlineHelp(trans('texts.enterprise_plan_features')) !!}
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-footer" style="margin-top: 0px">
|
<div class="modal-footer" style="margin-top: 0px">
|
||||||
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.go_back') }}</button>
|
<button type="button" class="btn btn-default" data-dismiss="modal">{{ trans('texts.go_back') }}</button>
|
||||||
|
@ -25,7 +25,10 @@
|
|||||||
@include('partials.checkout_com_payment')
|
@include('partials.checkout_com_payment')
|
||||||
@else
|
@else
|
||||||
<div class="pull-right" style="text-align:right">
|
<div class="pull-right" style="text-align:right">
|
||||||
@if ($invoice->is_quote)
|
@if (Session::get('trackEventAction') === '/buy_pro_plan')
|
||||||
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
||||||
|
{!! Button::primary(trans('texts.return_to_app'))->asLinkTo(URL::to('/dashboard'))->large() !!}
|
||||||
|
@elseif ($invoice->is_quote)
|
||||||
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
{!! Button::normal(trans('texts.download_pdf'))->withAttributes(['onclick' => 'onDownloadClick()'])->large() !!}
|
||||||
@if ($showApprove)
|
@if ($showApprove)
|
||||||
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
|
{!! Button::success(trans('texts.approve'))->asLinkTo(URL::to('/approve/' . $invitation->invitation_key))->large() !!}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user