image_annotation/commit

Added field to bird annotation interface.

authorChris Dijkshoorn
Fri Mar 13 18:42:21 2015 +0000
committerChris Dijkshoorn
Fri Mar 13 18:42:21 2015 +0000
commitf07d771c9804176ba300ed7a728e6c85b96b6454
treec70824e66825edeb42479c9d92f4575c55d8711f
parent30bc865d485c4c0cc273ac65720cd23f6448bbdd
Diff style: patch stat
diff --git a/rdf/annotation_ui_bird.ttl b/rdf/annotation_ui_bird.ttl
index 1f952c9..7eca25d 100644
--- a/rdf/annotation_ui_bird.ttl
+++ b/rdf/annotation_ui_bird.ttl
@@ -6,9 +6,33 @@
 @prefix skos:   <http://www.w3.org/2004/02/skos/core#> .
 
 aabir:smallBirdDemoUi a ui:AnnotationUI ;
+        dc:title "Bird annotation UI"@en;
+        ui:agreeLabel "I agree"@en;
+        ui:agreeLabel "mee eens"@nl;
+        ui:cancelCommentLabel "Cancel"@en;
+        ui:cancelCommentLabel "Annuleren"@nl;
+        ui:cancelDeleteLabel  "Annuleren"@nl;
+        ui:cancelDeleteLabel  "Cancel"@en;
+        ui:commentLabel       "Opmerkingen: "@nl;
+        ui:commentLabel       "Comment:"@en;
+        ui:confirmCommentLabel "Add comment"@en;
+        ui:confirmCommentLabel "Voeg toe"@nl;
+        ui:confirmDeleteLabel "Verwijderen"@nl;
+        ui:confirmDeleteLabel "Delete"@en;
+        ui:deleteLabel        "Verwijder:"@nl;
+        ui:deleteLabel        "Remove:"@en;
+        ui:disagreeLabel "I disagree"@en;
+        ui:disagreeLabel "niet mee eens"@nl;
+        ui:unsureLabel "I am not sure"@en;
+        ui:unsureLabel "ik ben niet zeker"@nl;
+
 	ui:fields (
 	     aabir:IOCCommonNameAnnotation
 		 aabir:IOCScientificNameAnnotation
+		 aabir:Gender
+		 aabir:StageOfLife
+		 aabir:RealOrNotAnnotation
+		 aabir:SymbolicField
 	 ) .
 
 aabir:IOCCommonNameAnnotation
@@ -23,4 +47,42 @@ aabir:IOCScientificNameAnnotation
 	rdfs:label "Wetenschappelijke naam"@nl ;
 	dc:comment "add scientificly accepted species or genus name"@en ;
 	dc:comment "voeg de wetenschappelijke soortnaam toe"@nl ;
-	ui:source "/api/autocomplete?q={query}&filter={\"scheme\":\"http://purl.org/collections/birds/IOCConceptScheme\"}&labelrank=['http://lod.taxonconcept.org/ontology/txn.owl%23scientificName'-1]" .
\ No newline at end of file
+	ui:source "/api/autocomplete?q={query}&filter={\"scheme\":\"http://purl.org/collections/birds/IOCConceptScheme\"}&labelrank=['http://lod.taxonconcept.org/ontology/txn.owl%23scientificName'-1]" .
+
+aabir:Gender a ui:Field ;
+	rdfs:label "Geslacht"@nl ;
+	rdfs:label "Gender"@en ;
+	dc:comment "add gender of the species"@en ;
+	dc:comment "voeg het geslacht van het soort toe"@nl ;
+	ui:source ( "male"@en "female"@en ) ;
+	ui:source ( "man"@nl "vrouw"@nl ) .
+
+aabir:StageOfLife a ui:Field ;
+	rdfs:label "Levensfase"@nl ;
+	rdfs:label "Stage of life"@en ;
+	dc:comment "add the stage of life the species is in"@en ;
+	dc:comment "voeg de levensfase van de soort toe"@nl ;
+	ui:source ( "adult"@en "juvenile"@en "chick"@en) ;
+	ui:source ( "adult"@nl "juveniel"@nl "pul"@nl ) .
+
+aabir:Realism
+	rdfs:label "Realisme"@nl ;
+	rdfs:label "Realism"@en ;
+	dc:comment "is the depiction of the subject realistic"@en ;
+	dc:comment "is het onderwerp realistisch afgebeeld"@nl ;
+	ui:source ( "realistisch"@nl "enigzins realtisch"@nl "enigzins abstract"@nl "abstract"@nl ) ;
+	ui:source ( "realistic"@en "somewhat realistic"@en "somewhat abstract"@en "abstract"@en ) .
+
+aabir:RealOrNotAnnotation
+	rdfs:label "Fantasie soort"@nl ;
+	rdfs:label "Imaginary"@en ;
+	dc:comment "use when species only occurs in fiction (e.g. a dragon or unicorn)"@en ;
+	dc:comment "gebruik bij fantasie dieren en planten (zoals draken en eenhoorns)"@nl ;
+	ui:source ( "fantasie"@nl "echt"@nl ) ;
+	ui:source ( "imaginairy"@en "real"@en ) .
+
+aabir:SymbolicField a ui:Field ;
+        rdfs:label "Iconologie"@nl ;
+	rdfs:label "Iconology"@en ;
+	dc:comment "(symbolische) interpretatie, optioneel"@nl ;
+	dc:comment "(symbolic) interpretation, optional"@en .