@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix fabio: <http://purl.org/spar/fabio/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix reg: <http://purl.org/linked-data/registry#> .
@prefix vaem: <http://www.linkedmodel.org/schema/vaem#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix vs: <http://www.w3.org/2003/06/sw-vocab-status/ns#> .

fabio:hasTranslatedTitle a owl:DatatypeProperty ;
    rdfs:label "has translated title"@en ;
    vann:example """
        :my-dataset
                dcterms:title "UK rainfall, June 2012"@en ;
                fabio:hasTranslatedTitle "Acquazzoni nel Regno Unito, giugno 2012"@it .
        """ ;
    vaem:rationale """
This is used in addition to the generic title of a resource (`dcterms:title`), if appropriate.

To express the language of a title, a language-tagged literal should be used as value. 
Values of language tags must follow the pattern defined by the XML schema language type, e.g.: `en`, `it`, `fr`, `cmn`, `nys`, `swh`, and so on.
        """@en ;
    rdfs:comment "A version of the title of an entity translated into another language."@en ;
    rdfs:isDefinedBy fabio: ;
    rdfs:range rdfs:Literal ;
    rdfs:subPropertyOf dcterms:title ;
    vs:term_status reg:statusStable .

