Boost C++ Libraries: Ticket #187: locale https://svn.boost.org/trac10/ticket/187 <pre class="wiki">this short example #include &lt;boost/date_time/gregorian/gregorian.hpp&gt; #include &lt;iostream&gt; using namespace boost::gregorian; using namespace std; int main() { date d(day_clock::local_day()); cout &lt;&lt; d &lt;&lt; endl; } outputs 2003-Aug-01 I'm French. Is there any thing that deals with locale in boost ? i'd like somthing so i can display date (and other things in date_time) the way i understand (like 01-Aou-2003, 01082003 or 01-08-2003) </pre> en-us Boost C++ Libraries /htdocs/site/boost.png https://svn.boost.org/trac10/ticket/187 Trac 1.4.3 René Rivera Mon, 21 May 2007 15:48:32 GMT component, description changed; severity set https://svn.boost.org/trac10/ticket/187#comment:1 https://svn.boost.org/trac10/ticket/187#comment:1 <ul> <li><strong>component</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">date_time</span> </li> <li><strong>description</strong> modified (<a href="/trac10/ticket/187?action=diff&amp;version=1">diff</a>) </li> <li><strong>severity</strong> → <span class="trac-field-new">Showstopper</span> </li> </ul> Ticket Dave Abrahams Tue, 03 Jul 2007 15:25:26 GMT owner, status changed https://svn.boost.org/trac10/ticket/187#comment:2 https://svn.boost.org/trac10/ticket/187#comment:2 <ul> <li><strong>owner</strong> changed from <span class="trac-author">nobody</span> to <span class="trac-author">az_sw_dude</span> </li> <li><strong>status</strong> <span class="trac-field-old">assigned</span> → <span class="trac-field-new">new</span> </li> </ul> Ticket Marshall Clow Sun, 31 May 2009 00:18:06 GMT <link>https://svn.boost.org/trac10/ticket/187#comment:3 </link> <guid isPermaLink="false">https://svn.boost.org/trac10/ticket/187#comment:3</guid> <description> <p> Marshall sez: I'm pretty sure that this was addressed in the rewrite of date_time's IO routines for 1.33. This bug should be closed. </p> </description> <category>Ticket</category> </item> <item> <dc:creator>Andrey Semashev</dc:creator> <pubDate>Thu, 04 Jun 2009 08:58:06 GMT</pubDate> <title>status, resolution changed https://svn.boost.org/trac10/ticket/187#comment:4 https://svn.boost.org/trac10/ticket/187#comment:4 <ul> <li><strong>status</strong> <span class="trac-field-old">new</span> → <span class="trac-field-new">closed</span> </li> <li><strong>resolution</strong> <span class="trac-field-old">None</span> → <span class="trac-field-new">fixed</span> </li> </ul> <p> Boost.<a class="missing wiki">DateTime</a> provides locale facets for date/time formatting/parsing. Names for months and weekdays, as well as the overall format, can be customized though the corresponding methods of the facets. </p> <p> <a href="http://www.boost.org/doc/libs/release/doc/html/date_time/date_time_io.html">http://www.boost.org/doc/libs/release/doc/html/date_time/date_time_io.html</a> </p> Ticket