i18n.minutes
Since: DateTime 1.0.0
Label for the minutes selection.
Please note - this property requires the DateTime extension for DataTables.
Description
This value is used as a label next to the selection for the value of minutes within DateTime.
Type
string
The string value for the label to indicate minutes selection.
Default
- Value: 'Minute'
Example
Change the value for i18n.minutes:
$(document).ready(function () {
	new DateTime(document.getElementById('test'), {
		format: 'HH:mm',
		i18n: {
			minutes: 'm'
		}
	});
});