Bug #622953 - Enable comment for date format string again in gnucash.pot, patch by Frank H. Ellenberger.

git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@19306 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
Geert Janssens 2010-06-27 16:35:28 +00:00
parent ccda70535c
commit 312c993b49

View File

@ -70,11 +70,13 @@
# define GNC_T_FMT "%r"
#endif
/* The default date format for use with strftime. */
const char *gnc_default_strftime_date_format =
#ifdef G_OS_WIN32
/* The default date format for use with strftime in Win32. */
N_("%B %#d, %Y")
#else
/* The default date format for use with strftime in other OS. */
/* Translators: call "man strftime" for possible values. */
N_("%B %e, %Y")
#endif
;