summaryrefslogtreecommitdiff
path: root/bin/rdf2hours
diff options
context:
space:
mode:
Diffstat (limited to 'bin/rdf2hours')
-rwxr-xr-xbin/rdf2hours14
1 files changed, 8 insertions, 6 deletions
diff --git a/bin/rdf2hours b/bin/rdf2hours
index f40c921..766ab52 100755
--- a/bin/rdf2hours
+++ b/bin/rdf2hours
@@ -34,8 +34,9 @@ use HTML::HTML5::Writer;
# TODO: add override options --theme and (multivalued) --category
my @category = <<LIST =~ m/(\S.*\S)/g;
- restaurant
- groceries
+ <http://schema.org/FoodEstablishment>
+ <http://schema.org/GroceryStore>
+ non-grocery store
attraction
transport
public service
@@ -278,10 +279,11 @@ sub daterangedescribe {
sub categorydescribe {
my $cat = shift;
- $cat =~ s/restaurant/spisesteder/;
- $cat =~ s/groceries/dagligvarer/;
- $cat =~ s/attraction/attraktioner og museer/;
- $cat =~ s/public service/offentlige services/;
+ $cat =~ s!<http://schema.org/FoodEstablishment>!spisesteder!;
+ $cat =~ s!<http://schema.org/GroceryStore>!dagligvarebutikker!;
+ $cat =~ s!non-grocery store!øvrige butikker!;
+ $cat =~ s!attraction!attraktioner og museer!;
+ $cat =~ s!public service!offentlige services!;
return ucfirst($cat);
}