in reply to Is there a shorter way to create a german time string?
use POSIX qw(locale_h setlocale strftime); setlocale(LC_TIME, "de"); $de_time = strftime(...); [download]