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