View | Details | Raw Unified | Return to bug 15918
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/includes/datatables-strings.inc (-19 lines)
Lines 1-19 Link Here
1
<script type="text/javascript">
2
//<![CDATA[
3
    var MSG_DT_FIRST = _("First");
4
    var MSG_DT_LAST = _("Last");
5
    var MSG_DT_NEXT = _("Next");
6
    var MSG_DT_PREVIOUS = _("Previous");
7
    var MSG_DT_EMPTY_TABLE = _("No data available in table");
8
    var MSG_DT_INFO = _("Showing _START_ to _END_ of _TOTAL_");
9
    var MSG_DT_INFO_EMPTY = _("No entries to show");
10
    var MSG_DT_INFO_FILTERED = _("(filtered from _MAX_ total entries)");
11
    var MSG_DT_LENGTH_MENU = _("Show _MENU_ entries");
12
    var MSG_DT_LOADING_RECORDS = _("Loading...");
13
    var MSG_DT_PROCESSING = _("Processing...");
14
    var MSG_DT_SEARCH = _("Search:");
15
    var MSG_DT_ZERO_RECORDS = _("No matching records found");
16
    var MSG_DT_ALL = _("All");
17
    var CONFIG_EXCLUDE_ARTICLES_FROM_SORT = _("a an the");
18
//]]>
19
</script>
(-)a/koha-tmpl/intranet-tmpl/prog/en/js/datatables.js (-1 / +1 lines)
Lines 1-6 Link Here
1
// These default options are for translation but can be used
1
// These default options are for translation but can be used
2
// for any other datatables settings
2
// for any other datatables settings
3
// MSG_DT_* variables comes from datatables-strings.inc
3
// MSG_DT_* variables comes from datatables.inc
4
// To use it, write:
4
// To use it, write:
5
//  $("#table_id").dataTable($.extend(true, {}, dataTableDefaults, {
5
//  $("#table_id").dataTable($.extend(true, {}, dataTableDefaults, {
6
//      // other settings
6
//      // other settings
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/quotes.tt (-2 / +1 lines)
Lines 11-17 Link Here
11
    var MSG_ID_HELP = _("Click on the quote's id to select or deselect the quote. Multiple quotes may be selected.");
11
    var MSG_ID_HELP = _("Click on the quote's id to select or deselect the quote. Multiple quotes may be selected.");
12
12
13
    var oTable; /* oTable needs to be global */
13
    var oTable; /* oTable needs to be global */
14
    var sEmptyTable = _("No quotes available. Please use the 'Add quote' button to add a quote."); /* override the default message in datatables-strings.inc */
14
    var sEmptyTable = _("No quotes available. Please use the 'Add quote' button to add a quote."); /* override the default message in datatables.inc */
15
    $(document).ready(function() {
15
    $(document).ready(function() {
16
        /* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
16
        /* NOTE: This is an ajax-source datatable and *not* a server-side sourced datatable. */
17
        /* See the datatable docs if you don't understand this difference. */
17
        /* See the datatable docs if you don't understand this difference. */
18
- 

Return to bug 15918