more translation fixes
This commit is contained in:
@@ -236,12 +236,12 @@ onDeactivated(() => {
|
||||
</div>
|
||||
<div v-else>
|
||||
<div v-if="!search">
|
||||
<h4 v-show="filteredPopularApps.length">{{ $t('appstore.category.popular') }}</h4>
|
||||
<h2 v-show="filteredPopularApps.length">{{ $t('appstore.category.popular') }}</h2>
|
||||
<div class="grid">
|
||||
<AppStoreItem :style="{ width: itemWidth }" v-for="app in filteredPopularApps" :app="app" :key="app.id" :ref="'item-' + app.id" @click="onInstall(app)"/>
|
||||
</div>
|
||||
|
||||
<h4 v-show="filteredAllApps.length">{{ $t('appstore.category.all') }}</h4>
|
||||
<h2 v-show="filteredAllApps.length">{{ $t('appstore.category.all') }}</h2>
|
||||
<div class="grid">
|
||||
<AppStoreItem :style="{ width: itemWidth }" v-for="app in filteredAllApps" :app="app" :key="app.id" :ref="'item-' + app.id" @click="onInstall(app)"/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user