From: Jim Meyering Date: Sun, 22 Oct 2000 13:15:22 +0000 (+0000) Subject: (print_long_format): Wrap date format strings in _(...) X-Git-Tag: TEXTUTILS-2_0_8~15 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=1f2219cabf5b5575f86dea84c19d17a19826d1c1;p=thirdparty%2Fcoreutils.git (print_long_format): Wrap date format strings in _(...) so they may be internationalized. Suggestion from Christian Rose. --- diff --git a/src/ls.c b/src/ls.c index 8fe94e95c3..9230701676 100644 --- a/src/ls.c +++ b/src/ls.c @@ -2345,11 +2345,11 @@ print_long_format (const struct fileinfo *f) Allow a 1 hour slop factor for what is considered "the future", to allow for NFS server/client clock disagreement. Show the year instead of the time of day. */ - fmt = "%b %e %Y"; + fmt = _("%b %e %Y"); } else { - fmt = "%b %e %H:%M"; + fmt = _("%b %e %H:%M"); } }