diff --git a/administrator/language/en-GB/plg_system_accessibility.ini b/administrator/language/en-GB/plg_system_accessibility.ini index 3f96fc6e19..5710b82e6d 100644 --- a/administrator/language/en-GB/plg_system_accessibility.ini +++ b/administrator/language/en-GB/plg_system_accessibility.ini @@ -16,6 +16,7 @@ PLG_SYSTEM_ACCESSIBILITY_INCREASE_SPACING="Increase Text Spacing" PLG_SYSTEM_ACCESSIBILITY_INCREASE_TEXT="Increase Text Size" PLG_SYSTEM_ACCESSIBILITY_INVERT_COLORS="Invert Colours" PLG_SYSTEM_ACCESSIBILITY_MENU_TITLE="Accessibility Options" +PLG_SYSTEM_ACCESSIBILITY_PAUSE_ANIMATIONS="Pause Animations" PLG_SYSTEM_ACCESSIBILITY_READING="Reading Guide" PLG_SYSTEM_ACCESSIBILITY_RESET="Reset" PLG_SYSTEM_ACCESSIBILITY_SECTION="Site Section" diff --git a/plugins/system/accessibility/accessibility.php b/plugins/system/accessibility/accessibility.php index 4bf7f8d9ae..421f6328fb 100644 --- a/plugins/system/accessibility/accessibility.php +++ b/plugins/system/accessibility/accessibility.php @@ -86,6 +86,7 @@ public function onBeforeCompileHead() 'underlineLinks' => Text::_('PLG_SYSTEM_ACCESSIBILITY_UNDERLINE'), 'bigCursor' => Text::_('PLG_SYSTEM_ACCESSIBILITY_CURSOR'), 'readingGuide' => Text::_('PLG_SYSTEM_ACCESSIBILITY_READING'), + 'pauseAnimations' => Text::_('PLG_SYSTEM_ACCESSIBILITY_PAUSE_ANIMATIONS'), 'textToSpeech' => Text::_('PLG_SYSTEM_ACCESSIBILITY_TTS'), 'speechToText' => Text::_('PLG_SYSTEM_ACCESSIBILITY_STT'), 'resetTitle' => Text::_('PLG_SYSTEM_ACCESSIBILITY_RESET'),