Skip Menu |

This queue is for tickets about the DateTime-Format-Human-Duration CPAN distribution.

Report information
The Basics
Id: 66248
Status: resolved
Priority: 0/
Queue: DateTime-Format-Human-Duration

People
Owner: Nobody in particular
Requestors: stefanos [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: Wishlist
Broken in: 0.0.1
Fixed in: 0.0.3



Subject: add DateTime::Format::Human::Duration::Locale::de
package DateTime::Format::Human::Duration::Locale::de; use strict; use warnings; sub get_human_span_hashref { return { 'no_oxford_comma' => 0, 'no_time' => 'Keine Zeit', 'and' => 'und', 'year' => 'Jahr', 'years' => 'Jahre', 'month' => 'Monat', 'months' => 'Monate', 'week' => 'Woche', 'weeks' => 'Wochen', 'day' => 'Tag', 'days' => 'Tage', 'hour' => 'Stunde', 'hours' => 'Stunden', 'minute' => 'Minute', 'minutes' => 'Minuten', 'second' => 'Sekunde', 'seconds' => 'Sekunden', 'nanosecond' => 'Nanosekunde', 'nanoseconds' => 'Nanosekunden', }; }