diff --git a/frontend/src/pages/audio/collection.vue b/frontend/src/pages/audio/collection.vue index 9c01fd0a59c..5c26b87bc55 100644 --- a/frontend/src/pages/audio/collection.vue +++ b/frontend/src/pages/audio/collection.vue @@ -53,7 +53,7 @@ export default defineComponent({ } const { collection, ...params } = collectionParams.value return i18n - .t(`collection.label.${collection}.audio`, { ...params }) + .t(`collection.ariaLabel.${collection}.audio`, { ...params }) .toString() }) diff --git a/frontend/src/pages/image/collection.vue b/frontend/src/pages/image/collection.vue index 4cbb5d9a8d8..dc58c0584f3 100644 --- a/frontend/src/pages/image/collection.vue +++ b/frontend/src/pages/image/collection.vue @@ -52,7 +52,7 @@ export default defineComponent({ } const { collection, ...params } = collectionParams.value return i18n - .t(`collection.label.${collection}.image`, { ...params }) + .t(`collection.ariaLabel.${collection}.image`, { ...params }) .toString() })