|
I need to describe Properties and Classes using various languages. For example I'm defining the class 'Crop'. With an URI such as http://example.com/onto#Crop. But I would like also maybe to have a spanish version such as http://example.com/onto#Cultivo (crop in spanish is cultivo). So that my Spanish users can also read the URI. Does this make sense or is it a bad practice? Would I then use |
|
That seems like a very bad idea. You should treat your URI's as id's, in other serialisation formats (e.g. when using a RDBMs) you also don't translate your id's. Usually people add labels to their resources and translate the labels, e.g.: <http://example.com/onto#Crop> rdfs:label "Crop"@en. <http://example.com/onto#Crop> rdfs:label "Cultivo"@es |

