File: it.pm

package info (click to toggle)
libdatetime-format-human-duration-perl 0.64-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 168 kB
  • sloc: perl: 431; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 721 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
package DateTime::Format::Human::Duration::Locale::it;

use strict;
use warnings;

sub get_human_span_hashref {
    return {
        'no_oxford_comma' => 1,
        'no_time' => 'zero secondi',
        'and'     => 'e',
        'year'  => 'anno',
        'years' => 'anni',
        'month'  => 'mese',
        'months' => 'mesi',
        'week'  => 'settimana',
        'weeks' => 'settimane',
        'day'  => 'giorno',
        'days' => 'giorni',
        'hour'  => 'ora',
        'hours' => 'ore',
        'minute'  => 'minuto',
        'minutes' => 'minuti',
        'second'  => 'secondo',
        'seconds' => 'secondi',
        'nanosecond'  => 'nanosecondo',
        'nanoseconds' => 'nanosecondi',
    };
}

1;