Skip to content

Commit

Permalink
Fix russian prefLabel for hour
Browse files Browse the repository at this point in the history
  • Loading branch information
white-gecko committed Jan 10, 2024
1 parent ee6176b commit 82be98d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion time/rdf/time.jsonld
Original file line number Diff line number Diff line change
Expand Up @@ -2770,7 +2770,10 @@
"@language" : "en",
"@value" : "Hour (unit of temporal duration)"
},
"prefLabel" : [ "один час\"@ru", {
"prefLabel" : [ {
"@language" : "ru",
"@value" : "один час"
}, {
"@language" : "jp",
"@value" : "一時間"
}, {
Expand Down
2 changes: 1 addition & 1 deletion time/rdf/time.nt
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ _:Ba0297841f1348daab20c90af9a31183a <http://www.w3.org/1999/02/22-rdf-syntax-ns#
<http://www.w3.org/2006/time#GeneralDateTimeDescription> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B25a8c6650bdf6c88aff8c3a5d1239631 .
<http://www.w3.org/2006/time#GeneralDateTimeDescription> <http://www.w3.org/2000/01/rdf-schema#comment> "Description of date and time structured with separate values for the various elements of a calendar-clock system"@en .
<http://www.w3.org/2006/time#GeneralDateTimeDescription> <http://www.w3.org/2004/02/skos/core#definition> "Description of date and time structured with separate values for the various elements of a calendar-clock system"@en .
<http://www.w3.org/2006/time#unitHour> <http://www.w3.org/2004/02/skos/core#prefLabel> "один час\"@ru" .
<http://www.w3.org/2006/time#unitHour> <http://www.w3.org/2004/02/skos/core#prefLabel> "один час"@ru .
<http://www.w3.org/2006/time#unitHour> <http://www.w3.org/2004/02/skos/core#prefLabel> "一時間"@jp .
<http://www.w3.org/2006/time#unitHour> <http://www.w3.org/2006/time#days> "0"^^<http://www.w3.org/2001/XMLSchema#decimal> .
<http://www.w3.org/2006/time#unitHour> <http://www.w3.org/2004/02/skos/core#prefLabel> "godzina"@pl .
Expand Down
2 changes: 1 addition & 1 deletion time/rdf/time.rdf
Original file line number Diff line number Diff line change
Expand Up @@ -1476,7 +1476,7 @@ The range of this property is not specified, so can be replaced by any specific
<skos:prefLabel xml:lang="it">secondo</skos:prefLabel>
</TemporalUnit>
<TemporalUnit rdf:ID="unitHour">
<skos:prefLabel>один час"@ru</skos:prefLabel>
<skos:prefLabel xml:lang="ru">один час</skos:prefLabel>
<skos:prefLabel xml:lang="jp">一時間</skos:prefLabel>
<days rdf:datatype="http://www.w3.org/2001/XMLSchema#decimal"
>0</days>
Expand Down
2 changes: 1 addition & 1 deletion time/rdf/time.ttl
Original file line number Diff line number Diff line change
Expand Up @@ -1233,7 +1233,7 @@ DBPedia provides a set of resources corresponding to the IANA timezones, with a
skos:prefLabel "hour"@en ;
skos:prefLabel "ora"@it ;
skos:prefLabel "uur"@nl ;
skos:prefLabel "один час\"@ru" ;
skos:prefLabel "один час"@ru ;
skos:prefLabel "ساعة واحدة"@ar ;
skos:prefLabel "一小時"@zh ;
skos:prefLabel "一時間"@ja ;
Expand Down

0 comments on commit 82be98d

Please sign in to comment.