diff options
author | Jim Meyering <jim@meyering.net> | 2000-10-22 13:15:22 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2000-10-22 13:15:22 +0000 |
commit | 1f2219cabf5b5575f86dea84c19d17a19826d1c1 (patch) | |
tree | c1345cde87e3cbf011bc05b12baf6cd60e5d2630 | |
parent | f0d9306c78d598b98b5c2a94e9b0a05c3c3a26f1 (diff) | |
download | coreutils-1f2219cabf5b5575f86dea84c19d17a19826d1c1.tar.xz |
(print_long_format): Wrap date format strings in _(...)
so they may be internationalized. Suggestion from Christian Rose.
-rw-r--r-- | src/ls.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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"); } } |