-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #250 from kbss-cvut/enhancement#249-configurable-t…
…ypes-language Enhancement#249 configurable types language
- Loading branch information
Showing
9 changed files
with
205 additions
and
40 deletions.
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
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
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
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
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
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
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 |
---|---|---|
@@ -1,54 +1,53 @@ | ||
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . | ||
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . | ||
@prefix skos: <http://www.w3.org/2004/02/skos/core#> . | ||
@prefix ufo: <http://onto.fel.cvut.cz/ontologies/ufo/> . | ||
|
||
ufo:individual a skos:Concept ; | ||
rdfs:label "Individuál"@cs, | ||
skos:prefLabel "Individuál"@cs, | ||
"Individual"@en ; | ||
skos:narrower ufo:event, | ||
ufo:intrinsic-trope, | ||
ufo:object, | ||
ufo:relator . | ||
|
||
ufo:type a skos:Concept ; | ||
rdfs:label "Typ"@cs, | ||
skos:prefLabel "Typ"@cs, | ||
"Type"@en ; | ||
skos:narrower ufo:event-type, | ||
ufo:intrinsic-trope-type, | ||
ufo:object-type, | ||
ufo:relator-type . | ||
|
||
ufo:event a skos:Concept ; | ||
rdfs:label "Událost"@cs, | ||
skos:prefLabel "Událost"@cs, | ||
"Event"@en ; | ||
rdfs:comment "An event, perdurant in the ontological sense. Events do not change its properties over time."@en . | ||
skos:scopeNote "An event, perdurant in the ontological sense. Events do not change its properties over time."@en . | ||
|
||
ufo:event-type a skos:Concept ; | ||
rdfs:label "Typ události"@cs, | ||
skos:prefLabel "Typ události"@cs, | ||
"Event Type"@en . | ||
|
||
ufo:intrinsic-trope a skos:Concept ; | ||
rdfs:label "Vlastnost"@cs, | ||
skos:prefLabel "Vlastnost"@cs, | ||
"Aspect"@en . | ||
|
||
ufo:intrinsic-trope-type a skos:Concept ; | ||
rdfs:label "Typ vlastnosti"@cs, | ||
skos:prefLabel "Typ vlastnosti"@cs, | ||
"Aspect Type"@en . | ||
|
||
ufo:object a skos:Concept ; | ||
rdfs:label "Objekt"@cs, | ||
skos:prefLabel "Objekt"@cs, | ||
"Object"@en ; | ||
rdfs:comment "Object is any identifiable endurant entity existence of which is not directly dependent on an existence of another entity."@en . | ||
skos:scopeNote "Object is any identifiable endurant entity existence of which is not directly dependent on an existence of another entity."@en . | ||
|
||
ufo:object-type a skos:Concept ; | ||
rdfs:label "Typ objektu"@cs, | ||
skos:prefLabel "Typ objektu"@cs, | ||
"Object Type"@en . | ||
|
||
ufo:relator a skos:Concept ; | ||
rdfs:label "Vztah"@cs, | ||
skos:prefLabel "Vztah"@cs, | ||
"Relator"@en . | ||
|
||
ufo:relator-type a skos:Concept ; | ||
rdfs:label "Typ vztahu"@cs, | ||
skos:prefLabel "Typ vztahu"@cs, | ||
"Relation"@en . |
Oops, something went wrong.