/usr/share/tcltk/tcl8.5/msgs/de.msg is in libtcl8.5 8.5.19-4.
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | # created by tools/loadICU.tcl -- do not edit
namespace eval ::tcl::clock {
::msgcat::mcset de DAYS_OF_WEEK_ABBREV [list \
"So"\
"Mo"\
"Di"\
"Mi"\
"Do"\
"Fr"\
"Sa"]
::msgcat::mcset de DAYS_OF_WEEK_FULL [list \
"Sonntag"\
"Montag"\
"Dienstag"\
"Mittwoch"\
"Donnerstag"\
"Freitag"\
"Samstag"]
::msgcat::mcset de MONTHS_ABBREV [list \
"Jan"\
"Feb"\
"Mrz"\
"Apr"\
"Mai"\
"Jun"\
"Jul"\
"Aug"\
"Sep"\
"Okt"\
"Nov"\
"Dez"\
""]
::msgcat::mcset de MONTHS_FULL [list \
"Januar"\
"Februar"\
"M\u00e4rz"\
"April"\
"Mai"\
"Juni"\
"Juli"\
"August"\
"September"\
"Oktober"\
"November"\
"Dezember"\
""]
::msgcat::mcset de BCE "v. Chr."
::msgcat::mcset de CE "n. Chr."
::msgcat::mcset de AM "vorm."
::msgcat::mcset de PM "nachm."
::msgcat::mcset de DATE_FORMAT "%d.%m.%Y"
::msgcat::mcset de TIME_FORMAT "%H:%M:%S"
::msgcat::mcset de DATE_TIME_FORMAT "%d.%m.%Y %H:%M:%S %z"
}
|