<?xml version="1.0" encoding="UTF-8" ?>
<dt-option library="DateTime">
	<name>i18n</name>
	<summary>DateTime language options.</summary>
	<since>DateTime 1.0.0</since>

	<type type="object">
		<description>
			This option is capable of holding all of the sub-options for languages for the DateTime picker.
		</description>
	</type>

	<default value="object">
		The default value for this property is an object containing all of the default values for the DateTime picker's options. These are the default values that DateTime uses.
	</default>
	<description>
		<![CDATA[
        As standard, no custom options will be applied to the DateTime specific language options if `i18n` is unaltered. Otherwise the related options will be applied if they are defined within this object.

        This option allows direct configuration on the language options for the DateTime instance and can be different for different instances.
		]]>
	</description>

	<example title="Alter previous and next buttons"><![CDATA[
$(document).ready(function () {
	var dt = new DateTime(document.getElementById('example'), {
		i18n: {
			previous: '&lt;',
			next: '&gt;'
		}
	});
});
]]></example>

</dt-option>
