<?xml version="1.0" encoding="UTF-8" ?>
<dt-option library="DateTime">
	<name>i18n.previous</name>
	<summary>String to use in the previous button.</summary>
	<since>DateTime 1.0.0</since>

	<type type="string">
		<description>
			The string that is used in the previous button.
	    </description>
	</type>

	<default value="'Previous'">
		As default `'Previous'` is the text used within the previous button.
	</default>
	<description>
		<![CDATA[
		This value is used in the previous button to move between months in DateTime.
		]]>
	</description>

	<example title="Change the value for `i18n.previous`"><![CDATA[
$(document).ready(function () {
	new DateTime(document.getElementById('test'), {
		i18n: {
			previous: '&lt;'
		}
	});
});
]]></example>

</dt-option>
