<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.1" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>THE MOLITOR FORUMS &#187; Topic: Calendar in submission form</title>
		<link>http://www.themolitor.com/forums/topic/calendar-in-submission-form</link>
		<description>THE MOLITOR FORUMS &#187; Topic: Calendar in submission form</description>
		<language>en-US</language>
		<pubDate>Tue, 28 Apr 2026 21:01:10 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>http://www.themolitor.com/forums/search.php</link>
		</textInput>
		<atom:link href="http://www.themolitor.com/forums/rss/topic/calendar-in-submission-form" rel="self" type="application/rss+xml" />

		<item>
			<title>THE MOLITOR on "Calendar in submission form"</title>
			<link>http://www.themolitor.com/forums/topic/calendar-in-submission-form#post-31392</link>
			<pubDate>Fri, 17 Oct 2014 12:35:12 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31392@http://www.themolitor.com/forums/</guid>
			<description><p>Nice! Thanks for following up with your findings!</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>jplac36 on "Calendar in submission form"</title>
			<link>http://www.themolitor.com/forums/topic/calendar-in-submission-form#post-31388</link>
			<pubDate>Fri, 17 Oct 2014 11:27:10 +0000</pubDate>
			<dc:creator>jplac36</dc:creator>
			<guid isPermaLink="false">31388@http://www.themolitor.com/forums/</guid>
			<description><p>Thank you very much,</p>
<p>I just found how to modify the month, you can add parameters like that :</p>
<pre><code>$(function() {
$( &#34;#datepicker&#34; ).datepicker({
altField: &#34;#datepicker&#34;,
closeText: &#039;Fermer&#039;,
prevText: &#039;Précédent&#039;,
nextText: &#039;Suivant&#039;,
currentText: &#039;Aujourd\&#039;hui&#039;,
monthNames: [&#039;Janvier&#039;, &#039;Février&#039;, &#039;Mars&#039;, &#039;Avril&#039;, &#039;Mai&#039;, &#039;Juin&#039;, &#039;Juillet&#039;, &#039;Août&#039;, &#039;Septembre&#039;, &#039;Octobre&#039;, &#039;Novembre&#039;, &#039;Décembre&#039;],
monthNamesShort: [&#039;Janv.&#039;, &#039;Févr.&#039;, &#039;Mars&#039;, &#039;Avril&#039;, &#039;Mai&#039;, &#039;Juin&#039;, &#039;Juil.&#039;, &#039;Août&#039;, &#039;Sept.&#039;, &#039;Oct.&#039;, &#039;Nov.&#039;, &#039;Déc.&#039;],
dayNames: [&#039;Dimanche&#039;, &#039;Lundi&#039;, &#039;Mardi&#039;, &#039;Mercredi&#039;, &#039;Jeudi&#039;, &#039;Vendredi&#039;, &#039;Samedi&#039;],
dayNamesShort: [&#039;Dim.&#039;, &#039;Lun.&#039;, &#039;Mar.&#039;, &#039;Mer.&#039;, &#039;Jeu.&#039;, &#039;Ven.&#039;, &#039;Sam.&#039;],
dayNamesMin: [&#039;D&#039;, &#039;L&#039;, &#039;M&#039;, &#039;M&#039;, &#039;J&#039;, &#039;V&#039;, &#039;S&#039;],
weekHeader: &#039;Sem.&#039;,
dateFormat: &#039;yy-mm-dd&#039;
});
});</code></pre>
<p>Thanks
</p></description>
		</item>
		<item>
			<title>THE MOLITOR on "Calendar in submission form"</title>
			<link>http://www.themolitor.com/forums/topic/calendar-in-submission-form#post-31381</link>
			<pubDate>Fri, 17 Oct 2014 10:03:28 +0000</pubDate>
			<dc:creator>THE MOLITOR</dc:creator>
			<guid isPermaLink="false">31381@http://www.themolitor.com/forums/</guid>
			<description><p>Hi there,</p>
<p>You can see more options for the date picker in custom.js on lines 136-143...</p>
<pre><code>//DATE PICKER
    jQuery(&#039;#postDate&#039;).datepicker({
    	altFormat: &#34;yy-mm-dd&#34;,
    	dateFormat: &#34;yy-mm-dd&#34;,
    	nextText: &#34;&#38;rarr;&#34;,
    	prevText: &#34;&#38;larr;&#34;,
    	dayNamesMin: [ &#34;S&#34;, &#34;M&#34;, &#34;T&#34;, &#34;W&#34;, &#34;T&#34;, &#34;F&#34;, &#34;S&#34; ]
    });</code></pre>
<p>You can see the day names above. For the month, I believe that's automatically determined based on your language settings.</p>
<p>Let me know if that helps.</p>
<p>Best,</p>
<p>Chris
</p></description>
		</item>
		<item>
			<title>jplac36 on "Calendar in submission form"</title>
			<link>http://www.themolitor.com/forums/topic/calendar-in-submission-form#post-31375</link>
			<pubDate>Thu, 16 Oct 2014 15:40:36 +0000</pubDate>
			<dc:creator>jplac36</dc:creator>
			<guid isPermaLink="false">31375@http://www.themolitor.com/forums/</guid>
			<description><p>Hi,</p>
<p>How can I translate the month and the day in the calendar in the submission form.</p>
<p>I have translated all the theme in french but the calendar still has the month in english like 'October' instead of 'Octobre' and the days are also in english like 'Su' for sunday.</p>
<p>Many thanks agnin for your help
</p></description>
		</item>

	</channel>
</rss>
