(add) missing translation

This commit is contained in:
kakkokari-gtyih 2023-12-02 02:27:18 +09:00
parent 3e6c509189
commit d0ed76f7aa
4 changed files with 10 additions and 3 deletions

View File

@ -2,9 +2,12 @@
defineProps<{
summary?: string;
}>();
const { t } = useI18n();
const clickToExpand = computed(() => `'${t('clickToExpand')}'` === "'clickToExpand'" ? '' : `'${t('clickToExpand')}'`);
</script>
<template>
<details class="group my-4">
<details class="group my-4" :style="`--details-i18n: ${clickToExpand}`">
<summary class="cursor-pointer outline-none p-2 border dark:border-slate-700 rounded-lg bg-white dark:bg-slate-700 shadow-md group-open:rounded-b-none group-open:bg-slate-200 dark:group-open:bg-slate-800 group-open:shadow-none group-open:border-b-0">
{{summary}}
</summary>
@ -16,6 +19,6 @@ defineProps<{
<style scoped>
summary::after {
@apply text-sm hidden md:inline;
content: "(クリックで展開)";
content: var(--details-i18n);
}
</style>

View File

@ -128,6 +128,8 @@ sudo systemctl start misskey
`systemctl status misskey`と入力すると、サービスの状態を調べることができます。
:::
:::
## Misskeyのアップデート方法
:::warning

View File

@ -124,7 +124,8 @@ sudo systemctl start misskey
:::tip
`systemctl status misskey`と入力すると、サービスの状態を調べることができます。
:::
::::
:::
## Misskeyのアップデート方法
:::warning

View File

@ -1,6 +1,7 @@
noScript: "現在Javascriptが無効になっています。サイトの表示にはJavascriptが必須となりますので有効にしてください。"
learnMore: "詳しく知る"
loading: "読み込み中…"
clickToExpand: "(クリックして展開)"
_seo:
siteName: "Misskey Hub"