mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
Very simple LC_TIME compiler, you fill free to commit more complicated one
This commit is contained in:
parent
0d189a30f2
commit
4a171a9d58
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/cvs2svn/branches/ache/; revision=9946
2 changed files with 89 additions and 0 deletions
13
usr.bin/timedef/Makefile
Normal file
13
usr.bin/timedef/Makefile
Normal file
|
@ -0,0 +1,13 @@
|
|||
# $Id: Makefile,v 1.3 1995/06/19 22:15:35 asami Exp $
|
||||
|
||||
LOCALES= ru_SU.KOI8-R
|
||||
LOCALEDIR= ${DESTDIR}/usr/share/locale
|
||||
|
||||
afterinstall:
|
||||
for l in ${LOCALES}; do \
|
||||
grep -v '^#' < ${.CURDIR}/data/$$l > ${LOCALEDIR}/$$l/LC_TIME; \
|
||||
chown ${BINOWN}.${BINGRP} ${LOCALEDIR}/$$l/LC_TIME; \
|
||||
chmod 644 ${LOCALEDIR}/$$l/LC_TIME; \
|
||||
done
|
||||
|
||||
.include <bsd.prog.mk>
|
76
usr.bin/timedef/data/ru_SU.KOI8-R
Normal file
76
usr.bin/timedef/data/ru_SU.KOI8-R
Normal file
|
@ -0,0 +1,76 @@
|
|||
# WARNING: spaces may be essential at the end of lines
|
||||
# WARNING: empty lines are essential too
|
||||
#
|
||||
# Short months names
|
||||
#
|
||||
ÑÎ×
|
||||
ÆÅ×
|
||||
ÍÁÒ
|
||||
ÁÐÒ
|
||||
ÍÁÑ
|
||||
ÉÀÎ
|
||||
ÉÀÌ
|
||||
Á×Ç
|
||||
ÓÅÎ
|
||||
ÏËÔ
|
||||
ÎÏÑ
|
||||
ÄÅË
|
||||
#
|
||||
# Long months names
|
||||
#
|
||||
ÑÎ×ÁÒÑ
|
||||
ÆÅ×ÒÁÌÑ
|
||||
ÍÁÒÔÁ
|
||||
ÁÐÒÅÌÑ
|
||||
ÍÁÑ
|
||||
ÉÀÎÑ
|
||||
ÉÀÌÑ
|
||||
Á×ÇÕÓÔÁ
|
||||
ÓÅÎÔÑÂÒÑ
|
||||
ÏËÔÑÂÒÑ
|
||||
ÎÏÑÂÒÑ
|
||||
ÄÅËÁÂÒÑ
|
||||
#
|
||||
# Short weekdays names
|
||||
#
|
||||
×ÏÓ
|
||||
ÐÏÎ
|
||||
×ÔÏ
|
||||
ÓÒÅ
|
||||
ÞÅÔ
|
||||
ÐÑÔ
|
||||
ÓÕÂ
|
||||
#
|
||||
# Long weekdays names
|
||||
#
|
||||
×ÏÓËÒÅÓÅÎØÅ
|
||||
ÐÏÎÅÄÅÌØÎÉË
|
||||
×ÔÏÒÎÉË
|
||||
ÓÒÅÄÁ
|
||||
ÞÅÔ×ÅÒÇ
|
||||
ÐÑÔÎÉÃÁ
|
||||
ÓÕÂÂÏÔÁ
|
||||
#
|
||||
# X_fmt
|
||||
#
|
||||
%H:%M:%S
|
||||
#
|
||||
# x_fmt
|
||||
#
|
||||
%d.%m.%y
|
||||
#
|
||||
# c_fmt
|
||||
#
|
||||
%x %X
|
||||
#
|
||||
# am
|
||||
#
|
||||
|
||||
#
|
||||
# pm
|
||||
#
|
||||
ÐÏÐÏÌÕÄÎÉ
|
||||
#
|
||||
# date_fmt
|
||||
#
|
||||
%a %e %b %H:%M:%S %Z %Y
|
Loading…
Reference in a new issue