diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-01 14:01:57 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-01 14:01:57 +0900 |
| commit | 9224b6635f17c4e38e4a35b4aa1a47f94e8a3d2e (patch) | |
| tree | f5e9d461a61dbf711471236331de4f465c99b924 /packages/frontend/src/components/MkSubNoteContent.vue | |
| parent | refactor(frontend): remove $i (diff) | |
| download | sharkey-9224b6635f17c4e38e4a35b4aa1a47f94e8a3d2e.tar.gz sharkey-9224b6635f17c4e38e4a35b4aa1a47f94e8a3d2e.tar.bz2 sharkey-9224b6635f17c4e38e4a35b4aa1a47f94e8a3d2e.zip | |
refactor(frontend): remove $ts and $t
Diffstat (limited to 'packages/frontend/src/components/MkSubNoteContent.vue')
| -rw-r--r-- | packages/frontend/src/components/MkSubNoteContent.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/frontend/src/components/MkSubNoteContent.vue b/packages/frontend/src/components/MkSubNoteContent.vue index 5290129ee7..1ac7107aa7 100644 --- a/packages/frontend/src/components/MkSubNoteContent.vue +++ b/packages/frontend/src/components/MkSubNoteContent.vue @@ -8,7 +8,7 @@ <MkA v-if="note.renoteId" :class="$style.rp" :to="`/notes/${note.renoteId}`">RN: ...</MkA> </div> <details v-if="note.files.length > 0"> - <summary>({{ $t('withNFiles', { n: note.files.length }) }})</summary> + <summary>({{ i18n.t('withNFiles', { n: note.files.length }) }})</summary> <MkMediaList :media-list="note.files"/> </details> <details v-if="note.poll"> |