diff --git a/frontend/src/components/VMediaInfo/VMediaTags.vue b/frontend/src/components/VMediaInfo/VMediaTags.vue index 919b318fd82..5fa761ef903 100644 --- a/frontend/src/components/VMediaInfo/VMediaTags.vue +++ b/frontend/src/components/VMediaInfo/VMediaTags.vue @@ -13,7 +13,7 @@

{{ $t("mediaDetails.tags.generated.heading") }}

- {{ + {{ $t("mediaDetails.tags.generated.pageTitle") }}
@@ -76,9 +76,9 @@ export default defineComponent({ const { app } = useContext() - const generatedTagsPath = computed(() => app.localePath("/generated-tags")) + const tagsPagePath = computed(() => app.localePath("/tags")) - return { generatedTagsPath, tagsByType, hasSourceTags, hasGeneratedTags } + return { tagsPagePath, tagsByType, hasSourceTags, hasGeneratedTags } }, }) diff --git a/frontend/src/locales/scripts/en.json5 b/frontend/src/locales/scripts/en.json5 index eb48a9fdb40..6552918a2db 100644 --- a/frontend/src/locales/scripts/en.json5 +++ b/frontend/src/locales/scripts/en.json5 @@ -467,10 +467,30 @@ }, }, }, - generatedTags: { - title: "About Generated Tags", + tags: { + title: "Understanding Tags in {openverse}", + /** generatedTags.intro.a-b are parts of a single section explaining how tags work in Openverse. */ intro: { - content: "Generated tags are automatically assigned to media items based on the content of the media item itself. These tags are generated using machine learning models trained on a large dataset of images and audio tracks.", + a: "Each creative work in {openverse} may have tags, an optional set of keywords used to describe the work and make it easier for users to find relevant media for their searches.", + b: "These tags fall into two main categories: source tags and generated tags. Understanding the difference between them can enhance your search experience and improve the accuracy of your results.", + }, + sourceTags: { + title: "Source Tags", + /** sourceTags.content.a-b are parts of a single section explaining how source tags work in Openverse. */ + content: { + a: "Source tags are tags that originate from the original source of the creative work. These tags may be added by different contributors, for example a photographer who uploaded their image to Flickr and added descriptive tags.", + b: "The original platform itself may assign additional tags from community members, automation, or other sources.", + }, + }, + generatedTags: { + title: "Generated Tags", + /** generatedTags.content.a-d are parts of a single section explaining how generated tags work in Openverse. */ + content: { + a: "Generated tags are created through automated machine analysis of creative works, most commonly images. This process involves advanced technologies like AWS Rekognition, Clarifai, and other image recognition services that analyze the content and generate descriptive tags. ", + b: "While generally reliable, automated systems can sometimes misinterpret or miss elements in an image.", + c: "Openverse makes efforts to exclude any generated tags that make inferences about the identities or affiliations of human subjects. ", + d: 'If you encounter any images with generated tags making assumptions about, for example, gender, religion, or political affiliation, please report the images using the "Report" button on our single result pages.', + }, }, }, error: { diff --git a/frontend/src/pages/generated-tags.vue b/frontend/src/pages/generated-tags.vue deleted file mode 100644 index 91833c64c52..00000000000 --- a/frontend/src/pages/generated-tags.vue +++ /dev/null @@ -1,31 +0,0 @@ - - - diff --git a/frontend/src/pages/tags.vue b/frontend/src/pages/tags.vue new file mode 100644 index 00000000000..7a82672ada7 --- /dev/null +++ b/frontend/src/pages/tags.vue @@ -0,0 +1,45 @@ + + +