You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in ba51ba8 a lot of issues were introduced when splitting and casing the labels
Abbreviations/initializations need to be call uppercase: Utm, Url, Id, Mime, Sha 2 (here the space also needs to be removed: SHA2), Wsg 84 (here the space also needs to be removed: WSG84),
on labels ending with a number, the label tag was removed: <rdfs:label xml:lang="en">Series 2</rdfs:label> became Series 2 (line 3609 ff)
the same for time zones with a numerical offset (off of them are currently in comments but still this is an issue if they should ever become part of the ontology again ): <!-- <rdfs:label xml:lang="en">Etc/GMT+0</rdfs:label> --> became Etc/GMT+0
the same for Northern and Southern Hemisphere abbreviations: <rdfs:label xml:lang="en">N</rdfs:label> became N and <rdfs:label xml:lang="en">S</rdfs:label> became S
also the same for taxon rank abbreviations: <rdfs:label xml:lang="en">subgen.</rdfs:label> became Subgen., however taxon rank abbreviations are supposed to be lower case anyway
unicode code point references became invalid when changing the capitalization: é became é and ç became ç
all of the file extensions should either be call upper or all lower case but not regular capitalized: MP3 or mp3 instead of Mp3
Those are all the ones I caught by quickly scanning over the diff. There could be more in there that I missed.
The text was updated successfully, but these errors were encountered:
in ba51ba8 a lot of issues were introduced when splitting and casing the labels
<rdfs:label xml:lang="en">Series 2</rdfs:label>
becameSeries 2
(line 3609 ff)<!-- <rdfs:label xml:lang="en">Etc/GMT+0</rdfs:label> -->
becameEtc/GMT+0
<rdfs:label xml:lang="en">N</rdfs:label>
becameN
and<rdfs:label xml:lang="en">S</rdfs:label>
becameS
<rdfs:label xml:lang="en">subgen.</rdfs:label>
becameSubgen.
, however taxon rank abbreviations are supposed to be lower case anywayé
becameé
andç
becameç
MP3
ormp3
instead ofMp3
Those are all the ones I caught by quickly scanning over the diff. There could be more in there that I missed.
The text was updated successfully, but these errors were encountered: