more translation fixes

This commit is contained in:
Girish Ramakrishnan
2025-11-06 16:52:34 +01:00
parent 829512dd13
commit 0cf911bcdd
17 changed files with 59 additions and 60 deletions
+2 -2
View File
@@ -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>