Creates accessible ARIA label for UI elements.
Usage
generate_aria_label(element_type, action, context = NULL)
Arguments
- element_type
Type of element (e.g., "button", "input", "plot")
- action
Action or purpose (e.g., "analyze", "download", "visualize")
- context
Additional context (optional)
Value
Character string with ARIA label
Examples
if (FALSE) { # \dontrun{
generate_aria_label("button", "analyze", "readability")
# Returns: "Analyze readability button"
} # }