app show page typo..
This commit is contained in:
parent
17ddf743ed
commit
632e43ab6c
@ -15,6 +15,7 @@ return [
|
|||||||
'no_apps' => 'There are no apps in this category, yet.',
|
'no_apps' => 'There are no apps in this category, yet.',
|
||||||
'become_developer' => 'Are you a developer? <a href=":url" target="_blank">Here</a> you can learn how to create an app and start selling today!',
|
'become_developer' => 'Are you a developer? <a href=":url" target="_blank">Here</a> you can learn how to create an app and start selling today!',
|
||||||
'recommended_apps' => 'Recommended Apps',
|
'recommended_apps' => 'Recommended Apps',
|
||||||
|
'can_not_install' => 'You can not install :app app. </br> Beacuse monthly subscription just support <a href="https://akaunting.com/start" target="_blank">cloud</a>',
|
||||||
|
|
||||||
'about' => 'About',
|
'about' => 'About',
|
||||||
|
|
||||||
|
@ -144,6 +144,7 @@
|
|||||||
<li class="page-item" :class="[{'active': releases.pagination.current_page == {{ $page }}}]" v-if="releases.pagination.current_page == {{ $page }}">
|
<li class="page-item" :class="[{'active': releases.pagination.current_page == {{ $page }}}]" v-if="releases.pagination.current_page == {{ $page }}">
|
||||||
<span class="page-link">{{ $page }}</span>
|
<span class="page-link">{{ $page }}</span>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="page-item" v-else>
|
<li class="page-item" v-else>
|
||||||
<button type="button" class="page-link" @click="onReleases({{ $page }})" data-page="{{ $page }}">{{ $page }}</button>
|
<button type="button" class="page-link" @click="onReleases({{ $page }})" data-page="{{ $page }}">{{ $page }}</button>
|
||||||
</li>
|
</li>
|
||||||
@ -212,6 +213,7 @@
|
|||||||
<li class="page-item" :class="[{'active': reviews.pagination.current_page == {{ $page }}}]" v-if="reviews.pagination.current_page == {{ $page }}">
|
<li class="page-item" :class="[{'active': reviews.pagination.current_page == {{ $page }}}]" v-if="reviews.pagination.current_page == {{ $page }}">
|
||||||
<span class="page-link">{{ $page }}</span>
|
<span class="page-link">{{ $page }}</span>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li class="page-item" v-else>
|
<li class="page-item" v-else>
|
||||||
<button type="button" class="page-link" @click="onReviews({{ $page }})" data-page="{{ $page }}">{{ $page }}</button>
|
<button type="button" class="page-link" @click="onReviews({{ $page }})" data-page="{{ $page }}">{{ $page }}</button>
|
||||||
</li>
|
</li>
|
||||||
@ -296,9 +298,19 @@
|
|||||||
@else
|
@else
|
||||||
@can('create-modules-item')
|
@can('create-modules-item')
|
||||||
@if ($module->install)
|
@if ($module->install)
|
||||||
<button type="button" @click="onInstall('{{ $module->action_url }}', '{{ $module->slug }}', '{{ $module->name }}', '{{ $module->version }}')" class="btn btn-success btn-block" id="install-module">
|
@if (!empty($module->isPurchase) && (!empty($module->purchase_type) && $module->purchase_type == 'monthly'))
|
||||||
{{ trans('modules.install') }}
|
<el-tooltip placement="right">
|
||||||
</button>
|
<div slot="content">{!! trans('modules.can_not_install', ['app' => $module->name]) !!}</div>
|
||||||
|
|
||||||
|
<button type="button" class="btn btn-success btn-block btn-tooltip disabled">
|
||||||
|
<span class="text-disabled">{{ trans('modules.install') }}</span>
|
||||||
|
</button>
|
||||||
|
</el-tooltip>
|
||||||
|
@else
|
||||||
|
<button type="button" @click="onInstall('{{ $module->action_url }}', '{{ $module->slug }}', '{{ $module->name }}', '{{ $module->version }}')" class="btn btn-success btn-block" id="install-module">
|
||||||
|
{{ trans('modules.install') }}
|
||||||
|
</button>
|
||||||
|
@endif
|
||||||
@else
|
@else
|
||||||
<a href="{{ $module->action_url }}" class="btn btn-success btn-block" target="_blank">
|
<a href="{{ $module->action_url }}" class="btn btn-success btn-block" target="_blank">
|
||||||
{{ trans('modules.buy_now') }}
|
{{ trans('modules.buy_now') }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user