SportsPress
SportsPress copied to clipboard
Add Datatable string `emptyTable` to `localized_strings`
This allows us to customize the text shown when the table is empty:
Here's the PHP code for overriding that text assuming this pull request is merged.
/**
* Override some SportsPress translations
*
* - 'No matching records found' => 'Schedules Will Be Uploaded Shortly'
*/
add_filter( 'gettext', function( $translation, $text, $domain ) {
$overrides = [
'No matching records found' => 'Schedules Will Be Uploaded Shortly',
];
/**
* Should we override?
*
* - Domain is SportsPress
* - Locale is en_US
* - String is in the overrides table
*/
$should_override = ( true
&& 'sportspress' === $domain
&& 'en_US' === get_locale()
&& array_key_exists( $text, $overrides )
);
return $should_override
? $overrides[ $text ]
: $translation
;
}, 10, 3 );