Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate Invalid Aria Prop #57

Merged
merged 6 commits into from
Mar 8, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions content/warnings/invalid-aria-prop.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ layout: single
permalink: warnings/invalid-aria-prop.html
---

The invalid-aria-prop warning will fire if you attempt to render a DOM element with an aria-* prop that does not exist in the Web Accessibility Initiative (WAI) Accessible Rich Internet Application (ARIA) [specification](https://www.w3.org/TR/wai-aria-1.1/#states_and_properties).
웹 접근성 이니셔티브(WAI) 접근 가능한 리치 인터넷 애플리케이션(Rich Internet Application)의 [사양](https://www.w3.org/TR/wai-aria-1.1/#states_and_properties)에 없는 aria-* 프로퍼티로 DOM 요소를 렌더링하려고하면 invalid-aria-prop 경고가 발생합니다.
simsim0709 marked this conversation as resolved.
Show resolved Hide resolved

1. If you feel that you are using a valid prop, check the spelling carefully. `aria-labelledby` and `aria-activedescendant` are often misspelled.
1. 유효한 프로퍼티를 사용한다고 생각되면 철자를 확인하십시오. `aria-labelledby``aria-activedescendant`의 철자를 틀리는 경우가 종종 있습니다.
simsim0709 marked this conversation as resolved.
Show resolved Hide resolved

2. React does not yet recognize the attribute you specified. This will likely be fixed in a future version of React. However, React currently strips all unknown attributes, so specifying them in your React app will not cause them to be rendered
2. React가 아직 작성된 속성을 인식하지 못합니다. 이것은 React의 다음 버전에서 수정될 가능성이 있습니다. 하지만 React는 현재 알 수 없는 모든 속성을 제거하므로 렌더링 되지 않습니다.
simsim0709 marked this conversation as resolved.
Show resolved Hide resolved