Bug 31428: 'Configure this table' -> 'Configure'

I agree, the shorter wording should be used.

Signed-off-by: Owen Leonard <oleonard@myacpl.org>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Martin Renvoize 2022-08-22 08:18:46 +01:00 committed by Tomas Cohen Arazi
parent cb2fd089af
commit 994ad3bcfd
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 4 additions and 4 deletions

View file

@ -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: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + _("Configure this table") + '</span>',
titleAttr: _("Table settings"),
text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + _("Configure") + '</span>',
action: function() {
window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
},

View file

@ -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: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + __("Configure this table") + '</span>',
titleAttr: __("Table settings"),
text: '<i class="fa fa-lg fa-wrench"></i> <span class="dt-button-text">' + __("Configure") + '</span>',
action: function() {
window.location = '/cgi-bin/koha/admin/columns_settings.pl?module=' + table_settings['module'] + '&page=' + table_settings['page'] + '&table=' + table_settings['table'];
},