summaryrefslogtreecommitdiff
path: root/src/ls.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-01-08 21:51:14 +0000
committerJim Meyering <jim@meyering.net>2002-01-08 21:51:14 +0000
commit4471d9eb05e23010c5722acb3e6d80e8944f01fb (patch)
treed8b142226f627335cf1a86d42c565cc4bd615293 /src/ls.c
parent39b517459ff5c0b9500c5b38d87935384e8cbee2 (diff)
downloadcoreutils-4471d9eb05e23010c5722acb3e6d80e8944f01fb.tar.xz
(long_time_format): Extended translator comments.
Diffstat (limited to 'src/ls.c')
-rw-r--r--src/ls.c21
1 files changed, 19 insertions, 2 deletions
diff --git a/src/ls.c b/src/ls.c
index b585b31c7..94fd45f31 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -707,8 +707,25 @@ static int format_needs_type;
/* strftime formats for non-recent and recent files, respectively, in
-l output. */
-static char const *long_time_format[2] = { N_("%b %e %Y"),
- N_("%b %e %H:%M") };
+static char const *long_time_format[2] =
+ {
+ /* strftime format for non-recent files (older than 6 months), in
+ -l output when --time-style=locale is specified. This should
+ contain the year, month and day (at least), in an order that is
+ understood by people in your locale's territory.
+ Please try to keep the number of used screen columns small,
+ because many people work in windows with only 80 columns. But
+ make this as wide as the other string below, for recent files. */
+ N_("%b %e %Y"),
+ /* strftime format for recent files (younger than 6 months), in
+ -l output when --time-style=locale is specified. This should
+ contain the month, day and time (at least), in an order that is
+ understood by people in your locale's territory.
+ Please try to keep the number of used screen columns small,
+ because many people work in windows with only 80 columns. But
+ make this as wide as the other string above, for non-recent files. */
+ N_("%b %e %H:%M")
+ };
/* The exit status to use if we don't get any fatal errors. */