1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-06-02 11:24:21 +02:00

fix(frontend): 存在しない翻訳を修正 (#16604)

This commit is contained in:
かっこかり
2025-10-06 10:06:20 +09:00
committed by GitHub
parent 7cd55c31da
commit 7fcbf57a9d
8 changed files with 25 additions and 10 deletions

View File

@@ -21,7 +21,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkButton primary @click="createKey">{{ i18n.ts._registry.createKey }}</MkButton>
<FormSection v-if="keys">
<template #label>{{ i18n.ts.keys }}</template>
<template #label>{{ i18n.ts._registry.keys }}</template>
<div class="_gaps_s">
<FormLink v-for="key in keys" :to="`/registry/value/${props.domain}/${scope.join('/')}/${key[0]}`" class="_monospace">{{ key[0] }}<template #suffix>{{ key[1].toUpperCase() }}</template></FormLink>
</div>