diff options
| author | Tusooa Zhu <tusooa@kazv.moe> | 2022-02-21 10:33:47 -0500 |
|---|---|---|
| committer | Tusooa Zhu <tusooa@kazv.moe> | 2022-02-21 10:33:47 -0500 |
| commit | 1b32bb9c51bd6fd1a71d07c61a165004dab63aa6 (patch) | |
| tree | dde44ead7c7228ceadb8f1064cf989cad8c53e3d | |
| parent | 9bc7d99e1651a00ed787a526517e34cc7a364001 (diff) | |
Make media modal counter go through i18n
| -rw-r--r-- | src/components/media_modal/media_modal.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/media_modal/media_modal.vue b/src/components/media_modal/media_modal.vue index bfe7ee6a..8680267b 100644 --- a/src/components/media_modal/media_modal.vue +++ b/src/components/media_modal/media_modal.vue @@ -68,7 +68,7 @@ <span class="counter" > - {{ currentIndex + 1 }} / {{ media.length }} + {{ $tc('media_modal.counter', currentIndex + 1, { current: currentIndex + 1, total: media.length }) }} </span> <span v-if="loading" |
