feat: update logo logic (#377)

This commit is contained in:
Joaquín Sánchez 2022-12-08 14:30:56 +01:00 committed by GitHub
parent 9c3f32ac69
commit 49a28144fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 2 deletions

View file

@ -1,11 +1,12 @@
<script setup lang="ts"> <script setup lang="ts">
const sub = process.dev ? 'dev' : useRuntimeConfig().public.env === 'staging' ? 'preview' : 'alpha' const env = useRuntimeConfig().public.env
const sub = env === 'local' ? 'dev' : env === 'staging' ? 'preview' : 'alpha'
</script> </script>
<template> <template>
<!-- Use external to force refresh page and jump to top of timeline --> <!-- Use external to force refresh page and jump to top of timeline -->
<NuxtLink flex px3 py2 items-center text-2xl gap-2 hover:bg-active focus-visible:ring="2 current" rounded-full to="/" external> <NuxtLink flex px3 py2 items-center text-2xl gap-2 hover:bg-active focus-visible:ring="2 current" rounded-full to="/" external>
<img alt="Elk Logo" src="/logo.svg" w-10 h-10 height="40" width="40"> <img :alt="$t('app_logo')" src="/logo.svg" w-10 h-10 height="40" width="40">
<div> <div>
{{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ sub }}</sup> {{ $t('app_name') }} <sup text-sm italic text-secondary mt-1>{{ sub }}</sup>
</div> </div>

View file

@ -43,6 +43,7 @@
"vote": "Vote" "vote": "Vote"
}, },
"app_desc_short": "A Mastodon client made with 🧡", "app_desc_short": "A Mastodon client made with 🧡",
"app_logo": "Elk Logo",
"app_name": "Elk", "app_name": "Elk",
"command": { "command": {
"activate": "Activate", "activate": "Activate",

View file

@ -43,6 +43,7 @@
"vote": "Votar" "vote": "Votar"
}, },
"app_desc_short": "Un cliente Mastodon hecho con 🧡", "app_desc_short": "Un cliente Mastodon hecho con 🧡",
"app_logo": "Logotipo de Elk",
"app_name": "Elk", "app_name": "Elk",
"command": { "command": {
"activate": "Activar", "activate": "Activar",