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

chore(knora-base): fix typo #1918

Merged
merged 1 commit into from Oct 12, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions knora-ontologies/knora-base.ttl
Expand Up @@ -757,7 +757,7 @@

rdfs:comment "Region of interest within a digital object (e.g. an image)"@en ;

rdfs:label "is Region von"@de ,
rdfs:label "ist Region von"@de ,
"is region of"@en ,
"est région de"@fr ,
"è regione di"@it ;
Expand All @@ -778,7 +778,7 @@

rdfs:comment "Region of interest within a digital object (e.g. an image)"@en ;

rdfs:label "is Region von"@de ,
rdfs:label "ist Region von"@de ,
"is region of"@en ,
"est région de"@fr ,
"è regione di"@it ;
Expand Down
Expand Up @@ -387,7 +387,7 @@ class OntologyResponderV1Spec extends CoreSpec() with ImplicitSender {
occurrence = "1",
vocabulary = "http://www.knora.org/ontology/knora-base",
description = Some("Region of interest within a digital object (e.g. an image)"),
label = Some("is Region von"),
label = Some("ist Region von"),
name = "http://www.knora.org/ontology/knora-base#isRegionOf",
id = "http://www.knora.org/ontology/knora-base#isRegionOf"
),
Expand Down
Expand Up @@ -144,7 +144,7 @@ object ResourcesResponderV1Spec {
),
PropertyGetV1(
"http://www.knora.org/ontology/knora-base#isRegionOf",
Some("is Region von"),
Some("ist Region von"),
Some("http://www.knora.org/ontology/knora-base#LinkValue"),
Some("textval"),
None,
Expand Down