Skip to content

Commit

Permalink
Fix i18n key
Browse files Browse the repository at this point in the history
Signed-off-by: Olga Bulat <obulat@gmail.com>
  • Loading branch information
obulat committed Mar 19, 2024
1 parent db24dd3 commit c050789
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/audio/collection.vue
Expand Up @@ -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()
})
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/image/collection.vue
Expand Up @@ -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()
})
Expand Down

0 comments on commit c050789

Please sign in to comment.