-
Notifications
You must be signed in to change notification settings - Fork 7
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
Document and modify accessibility vocabulary #19
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,40 +6,52 @@ | |
<> a skos:ConceptScheme ; | ||
dct:title "Barrierefreiheit"@de ; | ||
dct:title "Accessibility"@en ; | ||
dct:description "Accessibility features of an item."@en ; | ||
dct:description "Accessibility rating of some content. If a concept X is narrower than a concept Y, then that means that the rating X has higher requirements. I.e. the follow a partial ordering."@en ; | ||
dct:creator "<https://wirlernenonline.de>" ; | ||
dct:created "2020-11-16"^^xsd:date ; | ||
dct:modified "2020-11-16"^^xsd:date ; | ||
dct:modified "2022-07-19"^^xsd:date ; | ||
dct:issued "2020-11-16"^^xsd:date ; | ||
dct:license <http://creativecommons.org/publicdomain/zero/1.0/> ; | ||
skos:hasTopConcept <none>, <a>, <aa>, <aaa>, <bitv>, <wcag> . | ||
skos:hasTopConcept <b>, <a>, <aa>, <aaa>, <bitv-I>, <bitv-II> . | ||
|
||
<none> a skos:Concept ; | ||
skos:prefLabel "Nicht geprüft"@de ; | ||
skos:prefLabel "Not tested"@en ; | ||
<b> a skos:Concept ; | ||
skos:prefLabel "B" ; | ||
skos:definition "The content does not comply to the WCAG A rating requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt nicht die WCAG Anforderungen für eine A-Wertung."@en ; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. "@de" |
||
skos:topConceptOf <> . | ||
|
||
<a> a skos:Concept ; | ||
skos:prefLabel "A (am niedrigsten)"@de ; | ||
skos:prefLabel "A (lowest)"@en ; | ||
skos:prefLabel "WCAG-A"; | ||
skos:definition "The content does comply to the WCAG A rating requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine A-Wertung."@en ; | ||
skos:narrower <b> ; | ||
skos:topConceptOf <> . | ||
|
||
<aa> a skos:Concept ; | ||
skos:prefLabel "AA (mittel)"@de ; | ||
skos:prefLabel "AA (mid range)"@en ; | ||
skos:prefLabel "WCAG-AA" ; | ||
skos:definition "The content does comply to the WCAG AA rating requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine AA-Wertung."@en ; | ||
skos:narrower <aa> ; | ||
skos:topConceptOf <> . | ||
|
||
<aaa> a skos:Concept ; | ||
skos:prefLabel "AAA (am höchsten)"@de ; | ||
skos:prefLabel "AAA (highest)"@en ; | ||
skos:prefLabel "WCAG-AAA" ; | ||
skos:definition "The content does comply to the WCAG AAA rating requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt die WCAG Anforderungen für eine AAA-Wertung."@en ; | ||
skos:narrower <aaa> ; | ||
skos:topConceptOf <> . | ||
|
||
<bitv> a skos:Concept ; | ||
skos:prefLabel "BITV 2.0 (2019)"@de ; | ||
skos:prefLabel "BITV 2.0 (2019)"@en ; | ||
<bitv-I> a skos:Concept ; | ||
skos:prefLabel "BITV I"; | ||
skos:definition "The content does comply to the BITV 2.0 Priority I requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt die BITV 2.0 Priorität I Anforderungen für eine AAA-Wertung."@en ; | ||
skos:narrower <aa> ; | ||
skos:topConceptOf <> . | ||
|
||
<wcag> a skos:Concept ; | ||
skos:prefLabel "WCAG"@de ; | ||
skos:prefLabel "WCAG"@en ; | ||
skos:topConceptOf <> . | ||
<bitv-II> a skos:Concept ; | ||
skos:prefLabel "BITV II"; | ||
skos:definition "The content does comply to the BITV 2.0 Priority II requirements."@en ; | ||
skos:definition "Der Inhalt erfüllt die BITV 2.0 Priorität II Anforderungen für eine AAA-Wertung."@en ; | ||
skos:narrower <aaa> ; | ||
skos:narrower <bitv-I> ; | ||
skos:topConceptOf <> . |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe instead of just "b" something more meaningful? E.g. "failed" :D