<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.0.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>Gravity Support Forums Topic: Translate Calendar</title>
		<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar</link>
		<description>Gravity Support Forums Topic: Translate Calendar</description>
		<language>en-US</language>
		<pubDate>Sat, 25 Apr 2026 03:10:29 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.0.1</generator>
		<textInput>
			<title><![CDATA[Search]]></title>
			<description><![CDATA[Search all topics from these forums.]]></description>
			<name>q</name>
			<link>https://legacy.forums.gravityhelp.com/search.php</link>
		</textInput>
		<atom:link href="https://legacy.forums.gravityhelp.com/rss/topic/translate-calendar" rel="self" type="application/rss+xml" />

		<item>
			<title>Chris Hajer on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-117003</link>
			<pubDate>Tue, 08 Jan 2013 19:51:27 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">117003@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thank you for the update.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristianltorres on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-116830</link>
			<pubDate>Tue, 08 Jan 2013 11:18:52 +0000</pubDate>
			<dc:creator>cristianltorres</dc:creator>
			<guid isPermaLink="false">116830@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Thanks for your answer Chris, but 2 days after I post my last reply, I've managed to work it out in this way:&#60;/p&#62;
&#60;p&#62;1 - I manually translate the days and months in this file: gravityforms/js/jquery-ui/ui.datepicker.js&#60;br /&#62;
2. I follow these instructions here:&#60;br /&#62;
&#60;a href=&#34;http://stackoverflow.com/questions/1313317/set-start-day-of-the-week-in-jquery-ui-datepicker&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/questions/1313317/set-start-day-of-the-week-in-jquery-ui-datepicker&#60;/a&#62;&#60;br /&#62;
In order to make &#34;monday&#34; the first day of the week, instead of sunday.&#60;/p&#62;
&#60;p&#62;Thanks anyway!
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-105693</link>
			<pubDate>Sat, 22 Dec 2012 01:06:12 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">105693@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Don't modify any Gravity Forms files.&#60;/p&#62;
&#60;p&#62;I would put the language file in your child theme folder, in a js folder beneath that.  Something like this:&#60;/p&#62;
&#60;p&#62;/var/www/public_html/example.com/wp-content/themes/child-theme/js/jquery.ui.datepicker-es.js&#60;/p&#62;
&#60;p&#62;Then, you need to include that in the footer of the page where the form is loaded.  &#60;/p&#62;
&#60;p&#62;Use the WordPress &#60;a href=&#34;http://codex.wordpress.org/Function_Reference/wp_enqueue_script&#34; rel=&#34;nofollow&#34;&#62;wp_enqueue_script&#60;/a&#62; function to make sure the script is loaded in the footer and after jQuery and the jQuery UI datepicker script is loaded.&#60;/p&#62;
&#60;p&#62;That will load the translation file in the footer of your page. View the source of the page and find the script link, then try accessing the file by URL in your browser to make sure you have the path correct.  &#60;/p&#62;
&#60;p&#62;The additional JavaScript to make the language choice global will be added to the header (or footer, I think) section of the page.  You can save this script to a file, and enqueue it in the same way:&#60;/p&#62;
&#60;pre&#62;&#60;code&#62;jQuery(document).ready(function($) {
    $.datepicker.setDefaults($.datepicker.regional[&#38;#39;es&#38;#39;]);
});&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Let us know after you have tried that and link to the page with your datepicker on it if you need any additional assistance.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristianltorres on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-102740</link>
			<pubDate>Fri, 14 Dec 2012 14:51:49 +0000</pubDate>
			<dc:creator>cristianltorres</dc:creator>
			<guid isPermaLink="false">102740@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Im assuming that the file jquery.ui.datepicker-es.js goes in this folder:&#60;/p&#62;
&#60;p&#62;&#34;../gravityforms/js/jquery-ui/&#34;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristianltorres on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-102739</link>
			<pubDate>Fri, 14 Dec 2012 14:50:30 +0000</pubDate>
			<dc:creator>cristianltorres</dc:creator>
			<guid isPermaLink="false">102739@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;Hi Chris, thanks for your answer, Im sorry Im a little bit rookie in this matters.&#60;/p&#62;
&#60;p&#62;I've found the localization file: jquery.ui.datepicker-es.js&#60;/p&#62;
&#60;p&#62;But I get lost in the instruccions in this part:&#60;br /&#62;
&#34;....&#60;br /&#62;
It should then set these values as global defaults so that they are automatically applied when this JavaScript is loaded: $.datepicker.setDefaults($.datepicker.regional['&#38;lt;language&#38;gt;']);. ....&#34;&#60;/p&#62;
&#60;p&#62;wich gravity form file do I have to modify so it works?&#60;/p&#62;
&#60;p&#62;Thanks.
&#60;/p&#62;</description>
		</item>
		<item>
			<title>Chris Hajer on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-102622</link>
			<pubDate>Fri, 14 Dec 2012 08:24:22 +0000</pubDate>
			<dc:creator>Chris Hajer</dc:creator>
			<guid isPermaLink="false">102622@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;The jQuery UI datepicker can be localized:&#60;br /&#62;
&#60;a href=&#34;http://docs.jquery.com/UI/Datepicker/Localization&#34; rel=&#34;nofollow&#34;&#62;http://docs.jquery.com/UI/Datepicker/Localization&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Setting the region should also take care of starting the week on Monday, but you can also change the start day of the week: &#60;a href=&#34;http://stackoverflow.com/q/1313317&#34; rel=&#34;nofollow&#34;&#62;http://stackoverflow.com/q/1313317&#60;/a&#62;
&#60;/p&#62;</description>
		</item>
		<item>
			<title>cristianltorres on "Translate Calendar"</title>
			<link>https://legacy.forums.gravityhelp.com/topic/translate-calendar#post-102360</link>
			<pubDate>Thu, 13 Dec 2012 16:40:58 +0000</pubDate>
			<dc:creator>cristianltorres</dc:creator>
			<guid isPermaLink="false">102360@https://legacy.forums.gravityhelp.com/</guid>
			<description>&#60;p&#62;hi guys!&#60;/p&#62;
&#60;p&#62;I need to translate the language of the datepicker, to spanish.&#60;/p&#62;
&#60;p&#62;And also I need the calendar to start on monday instead of sunday.&#60;/p&#62;
&#60;p&#62;Can you help me please?
&#60;/p&#62;</description>
		</item>

	</channel>
</rss>
