Working on our app localization and got problems/misunderstanding with en_US locale. Consider Perl example:
use POSIX;
setlocale(LC_ALL, "ru_RU.UTF-8");
print "ru_RU: ".strftime("%c", localtime)."\n";
#OK: ru_RU: Срд 14 Ноя 2012 17:53:27
setlocale(LC_ALL, "ja_JP.UTF-8");
print "ja_JP: ".strftime("%c", localtime)."\n";
#OK: ja_JP: 2012年1月1日... (copyed from one site since on my console chars not shown)
setlocale(LC_ALL, "en_US.UTF-8");
print "en_US: ".strftime("%c", localtime)."\n";
#???: en_US: Wed 14 Nov 2012 05:53:27 PM MSK
man strftime says:
%c The preferred date and time representation for the current locale.
I know U.S. preferred date format is "November, 14 2012". So cant understand why %c generates "day month year" format? Seems it working fine for ja_JP locale(not sure too, but looks good).
Didnot find any prof this format is actually acceptable for U.S. and/or any info why %c generates date this way. Maybe i am not familiar enough with those "standards".. Please share your knowledge about it ;)