Internationalisation with Country's ISOCODE

Once the languages files were named based on its language name, and I needed to be based on the country's ISOCODE, I copied all of them into this new ISO folder and replaced the names with its respectively country's ISOCODE. Hopefully, this may be usefull for more users.

How to use DataTables internalisation options with Country's ISOCODE

To include internalisation options in DataTables, you just replace the filename you are requesting with the ISOCODE filename

So, instead of using this:

<script type="text/javascript" src="jquery.dataTables.js"></script>
<script type="text/javascript">
	$(document).ready(function() {
		$('#example').dataTable( {
			"oLanguage": {
				"sUrl": "Spanish.lang"
			}
		} );
	} );
</script>

You could use this:

<script type="text/javascript" src="jquery.dataTables.js"></script>
<script type="text/javascript">
	$(document).ready(function() {
		$('#example').dataTable( {
			"oLanguage": {
				"sUrl": "ISO/es.lang"
			}
		} );
	} );
</script>

Or, if it is correctly set, you can get the filename based on <html> laguage property as the sample below:

<script type="text/javascript" src="jquery.dataTables.js"></script>
<script type="text/javascript">
	$(document).ready(function() {
		var language = $('html').attr('lang');
		$('#example').dataTable( {
			"oLanguage": {
				"sUrl": "ISO/"+language+".lang"
			}
		} );
	} );
</script>