Advertisement
CodeFerret

LanguageScriptExample2

Oct 27th, 2017
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. # Élie's idea. Equivalent to the blank node approach by naming the blank nodes
  2.  
  3. bdr:BoEwts a :LangScript ;
  4. :language bdr:Tibetan ;
  5. :script bdr:Latin ;
  6. :transliteration bdr:EWTS ; # the transliteration implies the :script?
  7. rdfs:label "Extended Wylie transliteration (of Tibetan)"@en ,
  8. "걄곷굔"@zh .
  9.  
  10. bdr:BoDbuChen a :LangScript ;
  11. :language bdr:Tibetan ;
  12. :script bdr:DbuChen ;
  13. rdfs:label "printed Tibetan"@en ,
  14. "⽣⽇⼦⽊"@zh .
  15.  
  16.  
  17.  
  18. bdr:Tibetan a :Language ;
  19. rdfs:label "Tibetan"@en , "བོ་ཡིག་"@bo .
  20.  
  21. bdr:EWTS a :Transliteration ;
  22. rdfs:label "Extended Wylie"@en .
  23.  
  24. bdr:Latin a :Script ;
  25. rdfs:label "printed Latin"@en .
  26.  
  27. bdr:DbuChen a :Script ;
  28. rdfs:label "printed Tibetan"@en .
  29.  
  30.  
  31. :LangScript
  32. :Language
  33. :Script
  34. :Transliteration
  35.  
  36. :langScript :Work => :LangScript
  37. :otherLangScript :Work => :LangScript
  38. :language :LangScript => :Language
  39. :script :LangScript => :Script
  40. :transliteration :LangScript => :Transliteration
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement