fix (client): undefined locale

This commit is contained in:
naskya 2024-02-21 18:02:13 +09:00
parent 0d4beb9d9b
commit 803d6c2978
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C
3 changed files with 5 additions and 5 deletions

View file

@ -21,7 +21,7 @@
></i>
<i
v-else-if="note.visibility === 'specified'"
v-tooltip="i18n.ts._visibility.private"
v-tooltip="i18n.ts.private"
ref="specified"
:class="icon('ph-eye-slash')"
></i>

View file

@ -96,10 +96,10 @@
</div>
<div :class="$style.body">
<span :class="$style.itemTitle">{{
i18n.ts._visibility.private
i18n.ts.private
}}</span>
<span :class="$style.itemDescription">{{
i18n.ts._visibility.privateDescription
i18n.ts.privateDescription
}}</span>
</div>
</button>

View file

@ -116,7 +116,7 @@
<template
v-else-if="defaultNoteVisibility === 'private'"
#suffix
>{{ i18n.ts._visibility.private }}</template
>{{ i18n.ts.private }}</template
>
<FormSelect v-model="defaultNoteVisibility" class="_formBlock">
@ -131,7 +131,7 @@
{{ i18n.ts._visibility.specified }}
</option>
<option value="private">
{{ i18n.ts._visibility.private }}
{{ i18n.ts.private }}
</option>
</FormSelect>
<FormSwitch v-model="defaultNoteLocalOnly" class="_formBlock">{{