diff --git a/datatables.module b/datatables.module
index 4f986b5..a60e6fa 100644
--- a/datatables.module
+++ b/datatables.module
@@ -361,6 +361,29 @@ function template_preprocess_datatables_view(&$vars) {
     drupal_add_library('datatables', 'datatables-tabletools');
   }
 
+  $datatable_options['oLanguage'] = array(
+    'sEmptyTable' => t('No data available in table'),
+    'sInfo' => 'Start _START_ to _END_ of _TOTAL_ entries',
+    'sInfoEmpty' => t('Showing 0 to 0 of 0 entries'),
+    'sInfoFiltered' => '(filtered from _MAX_ total entries)',
+    'sInfoPostFix' => '',
+    'sProcessing' => 'Processing...',
+    'sLengthMenu' => 'Show _MENU_ entries',
+    'sLoadingRecords' => 'Loading...',
+    'sZeroRecords' => 'No matching records found',
+    'sSearch' => 'Search',
+    'oPaginate' => array(
+        'sFirst' => 'First',
+        'sPrevious' => 'Previous',
+        'sNext' => 'Next',
+        'sLast' => 'Last',
+    ),
+    'oAria' => array(
+      'sSortAscending' => t(': activate to sort column ascending'),
+      'sSortDescending' => t(': activate to sort column descending'),
+    ),
+  );
+
   $vars['id'] = _datatables_get_id();
   $vars['classes_array'][] = 'display';
 
