From 1f2219cabf5b5575f86dea84c19d17a19826d1c1 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sun, 22 Oct 2000 13:15:22 +0000 Subject: [PATCH] (print_long_format): Wrap date format strings in _(...) so they may be internationalized. Suggestion from Christian Rose. --- src/ls.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ls.c b/src/ls.c index 8fe94e9..9230701 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"); } } -- 2.7.4