feat: unify the format of locale keys (#2380)

This commit is contained in:
YRMING 2023-09-06 20:51:01 +08:00 committed by GitHub
parent 907d9999dc
commit ca2ca2bef4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 79 additions and 79 deletions

View file

@ -16,7 +16,7 @@ const pwaIsInstalled = process.client && !!useNuxtApp().$pwa?.isInstalled
<template #title>
<NuxtLink to="/share-target" flex items-center gap-2>
<div i-ri:share-line />
<span>{{ $t('share-target.title') }}</span>
<span>{{ $t('share_target.title') }}</span>
</NuxtLink>
</template>
<slot>
@ -29,9 +29,9 @@ const pwaIsInstalled = process.client && !!useNuxtApp().$pwa?.isInstalled
text-red-600 dark:text-red-400
border="~ base rounded red-600 dark:red-400"
>
{{ $t('share-target.hint') }}
{{ $t('share_target.hint') }}
</div>
<div>{{ $t('share-target.description') }}</div>
<div>{{ $t('share_target.description') }}</div>
</div>
</slot>
</MainContent>