90 lines
807 B
Plaintext
90 lines
807 B
Plaintext
# $FreeBSD$
|
|
#
|
|
# Choi Jun Ho <jazz.snu.ac.kr>
|
|
# 27 Mar 1997
|
|
#
|
|
# WARNING: spaces may be essential at the end of lines
|
|
# WARNING: empty lines are essential too
|
|
#
|
|
# Short month names
|
|
# it must be 3 char
|
|
1
|
|
2
|
|
3
|
|
4
|
|
5
|
|
6
|
|
7
|
|
8
|
|
9
|
|
10
|
|
11
|
|
12
|
|
#
|
|
# Long month names
|
|
#
|
|
1월
|
|
2월
|
|
3월
|
|
4월
|
|
5월
|
|
6월
|
|
7월
|
|
8월
|
|
9월
|
|
10월
|
|
11월
|
|
12월
|
|
#
|
|
# Short weekday names
|
|
#
|
|
# it must be 3 char also
|
|
# two char is our weekday name, and be careful one space is in the last
|
|
일
|
|
월
|
|
화
|
|
수
|
|
목
|
|
금
|
|
토
|
|
#
|
|
# Long weekday names
|
|
#
|
|
일요일
|
|
월요일
|
|
화요일
|
|
수요일
|
|
목요일
|
|
금요일
|
|
토요일
|
|
#
|
|
# X_fmt
|
|
#
|
|
%H시 %M분 %S초
|
|
#
|
|
# x_fmt
|
|
#
|
|
%y/%m/%d
|
|
#
|
|
# c_fmt
|
|
#
|
|
# just following tradition...
|
|
# %Y년 %b월 %e일 %a요일 %X
|
|
%a %b %e %H:%M:%S %Y
|
|
#
|
|
# am
|
|
#
|
|
# it must be 2 char
|
|
#오전
|
|
AM
|
|
#
|
|
# pm
|
|
#
|
|
# it must be 2 char
|
|
#오후
|
|
PM
|
|
#
|
|
# date_fmt
|
|
#
|
|
%Y년 %b월 %e일 %a요일 %X %Z
|