File: ko.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 (31 lines) | stat: -rw-r--r-- 860 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
31
package DateTime::Format::Human::Duration::Locale::ko;

use utf8;
use strict;
use warnings;

sub get_human_span_hashref {
    return {
        'no_oxford_comma' => 1,
        'no_time'         => '시간 없음',
        'and'             => q{},
        'year'            => '년',
        'years'           => '년',
        'month'           => '개월',
        'months'          => '개월',
        'week'            => '주',
        'weeks'           => '주',
        'day'             => '일',
        'days'            => '일',
        'hour'            => '시간',
        'hours'           => '시간',
        'minute'          => '분',
        'minutes'         => '분',
        'second'          => '초',
        'seconds'         => '초',
        'nanosecond'      => '나노초',
        'nanoseconds'     => '나노초',
    };
}

1;