This file is indexed.

/usr/share/perl5/DateTime/Format/Human/Duration/Locale/fr.pm is in libdatetime-format-human-duration-perl 0.64-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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::fr;

use strict;
use warnings;

sub get_human_span_hashref {
    return {
        'no_oxford_comma' => 1,
        'no_time' => 'pas le temps',
        'and'     => 'et',    
        'year'  => 'an',
        'years' => 'ans',
        'month'  => 'mois',
        'months' => 'mois',
        'week'  => 'semaine',
        'weeks' => 'semaines',
        'day'  => 'jour',
        'days' => 'jours',
        'hour'  => 'heure',
        'hours' => 'heures',
        'minute'  => 'minute',
        'minutes' => 'minutes',
        'second'  => 'seconde',
        'seconds' => 'seconds',
        'nanosecond'  => 'nanoseconde',
        'nanoseconds' => 'nanosecondes',      
    };
}

1;