(print_long_format): Wrap date format strings in _(...)
authorJim Meyering <jim@meyering.net>
Sun, 22 Oct 2000 13:15:22 +0000 (13:15 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 22 Oct 2000 13:15:22 +0000 (13:15 +0000)
so they may be internationalized.  Suggestion from Christian Rose.

src/ls.c

index 8fe94e9..9230701 100644 (file)
--- 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");
        }
     }