AppInfo: <strong> for installed version and alternatives

This commit is contained in:
axolotle 2023-01-18 11:25:56 +01:00
parent d4c23d96f2
commit 3b6b453f43
2 changed files with 3 additions and 3 deletions

View file

@ -55,7 +55,7 @@
"api_not_responding": "The YunoHost API is not responding. Maybe 'yunohost-api' is down or got restarted?", "api_not_responding": "The YunoHost API is not responding. Maybe 'yunohost-api' is down or got restarted?",
"api_waiting": "Waiting for the server's response...", "api_waiting": "Waiting for the server's response...",
"app": { "app": {
"installed_version": "Installed version: {version}", "installed_version": "Installed version:",
"open_this_app": "Open this app", "open_this_app": "Open this app",
"antifeatures": "This app has features you may not like:", "antifeatures": "This app has features you may not like:",
"doc": { "doc": {

View file

@ -72,10 +72,10 @@
</div> </div>
<p class="text-secondary"> <p class="text-secondary">
{{ $t('app.installed_version', { version: app.version }) }}<br> <strong v-t="'app.installed_version'" /> {{ app.version }}<br>
<template v-if="app.alternativeTo"> <template v-if="app.alternativeTo">
{{ $t('app.potential_alternative_to') }} {{ app.alternativeTo }} <strong v-t="'app.potential_alternative_to'" /> {{ app.alternativeTo }}
</template> </template>
</p> </p>