From 7aecdd300972acbe86c7a01b5f1ed80a7a26123a Mon Sep 17 00:00:00 2001 From: Berke Viktor Date: Mon, 30 Jan 2012 14:37:07 +0100 Subject: avoid confusion about strftime --- src/fe-gtk/setup.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/fe-gtk/setup.c b/src/fe-gtk/setup.c index cce85d30..497d012d 100644 --- a/src/fe-gtk/setup.c +++ b/src/fe-gtk/setup.c @@ -120,7 +120,11 @@ static const setting textbox_settings[] = {ST_HEADER, N_("Time Stamps"),0,0,0}, {ST_TOGGLE, N_("Enable time stamps"), P_OFFINTNL(timestamp),0,0,2}, {ST_ENTRY, N_("Time stamp format:"), P_OFFSETNL(stamp_format), - N_("See strftime manpage for details."),0,sizeof prefs.stamp_format}, +#ifdef WIN32 + N_("See the strftime MSDN article for details."),0,sizeof prefs.stamp_format}, +#else + N_("See the strftime manpage for details."),0,sizeof prefs.stamp_format}, +#endif {ST_HEADER, N_("Auto-Copy Behavior"),0,0,0}, {ST_TOGGLE, N_("Automatically copy selected text"), P_OFFINTNL(autocopy_text), -- cgit 1.4.1