@@ -, +, @@ --- koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc | 4 +++- koha-tmpl/intranet-tmpl/prog/js/datatables.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/columns_settings.inc @@ -164,7 +164,9 @@ function KohaTable(id_selector, dt_parameters, table_settings, add_filters) { if ( CAN_user_parameters_manage_column_config ) { dt_parameters[ "buttons" ].push( { - text: 'Configure this table', + className: "dt_button_configure_table", + titleAttr: __("Configure this table"), + text: ' ' + _("Configure this table") + '', action: function() { window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '#' + table_settings['page'] + '#' + table_settings['table']; }, --- a/koha-tmpl/intranet-tmpl/prog/js/datatables.js +++ a/koha-tmpl/intranet-tmpl/prog/js/datatables.js @@ -816,7 +816,9 @@ jQuery.fn.dataTable.ext.errMode = function(settings, note, message) { if ( CAN_user_parameters_manage_column_config ) { settings[ "buttons" ].push( { - text: 'Configure this table', + className: "dt_button_configure_table", + titleAttr: __("Configure this table"), + text: ' ' + __("Configure this table") + '', action: function() { window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '#' + table_settings['page'] + '#' + table_settings['table']; }, --