diff options
author | Holden Foreman <38192823+hs4man21@users.noreply.github.com> | 2022-12-15 12:46:13 -0500 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2022-12-15 21:07:10 +0100 |
commit | c459625119ec65e04197c993ddf5c3249471dafa (patch) | |
tree | 4eaf37e616263024fb792abf5a55b4e900812e66 /app/javascript/flavours/glitch/features | |
parent | 1ced365371bebe667b05eb1cd593f97a1851a335 (diff) |
[Glitch] Fix language surrounding disability in prompts for alt text and other media descriptions
Port c761e7a5ef89afd4ed7ac470ad1155a78d3c4cfa to glitch-soc Signed-off-by: Claire <claire.github-309c@sitedethib.com>
Diffstat (limited to 'app/javascript/flavours/glitch/features')
-rw-r--r-- | app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js b/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js index de330b3a1..0dd07fb76 100644 --- a/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js +++ b/app/javascript/flavours/glitch/features/ui/components/focal_point_modal.js @@ -291,11 +291,11 @@ class FocalPointModal extends ImmutablePureComponent { let descriptionLabel = null; if (media.get('type') === 'audio') { - descriptionLabel = <FormattedMessage id='upload_form.audio_description' defaultMessage='Describe for people with hearing loss' />; + descriptionLabel = <FormattedMessage id='upload_form.audio_description' defaultMessage='Describe for people who are hard of hearing' />; } else if (media.get('type') === 'video') { - descriptionLabel = <FormattedMessage id='upload_form.video_description' defaultMessage='Describe for people with hearing loss or visual impairment' />; + descriptionLabel = <FormattedMessage id='upload_form.video_description' defaultMessage='Describe for people who are deaf, hard of hearing, blind or have low vision' />; } else { - descriptionLabel = <FormattedMessage id='upload_form.description' defaultMessage='Describe for the visually impaired' />; + descriptionLabel = <FormattedMessage id='upload_form.description' defaultMessage='Describe for people who are blind or have low vision' />; } let ocrMessage = ''; |