Edit File by line

Deprecated: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in /home/sportsfever/public_html/filemanger/function.php on line 93
/home/sportsfe.../httpdocs/wp-conte.../plugins/content-.../inc/freemius/includes
File: l10n.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* @package Freemius
[2] Fix | Delete
* @copyright Copyright (c) 2015, Freemius, Inc.
[3] Fix | Delete
* @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
[4] Fix | Delete
* @since 1.2.1.6
[5] Fix | Delete
*/
[6] Fix | Delete
[7] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[8] Fix | Delete
exit;
[9] Fix | Delete
}
[10] Fix | Delete
[11] Fix | Delete
/**
[12] Fix | Delete
* Retrieve the translation of $text.
[13] Fix | Delete
*
[14] Fix | Delete
* @since 1.2.1.6
[15] Fix | Delete
*
[16] Fix | Delete
* @param string $text
[17] Fix | Delete
*
[18] Fix | Delete
* @return string
[19] Fix | Delete
*/
[20] Fix | Delete
function _fs_text( $text ) {
[21] Fix | Delete
// Avoid misleading Theme Check warning.
[22] Fix | Delete
$fn = 'translate';
[23] Fix | Delete
return $fn( $text, 'freemius' );
[24] Fix | Delete
}
[25] Fix | Delete
[26] Fix | Delete
/**
[27] Fix | Delete
* Retrieve translated string with gettext context.
[28] Fix | Delete
*
[29] Fix | Delete
* Quite a few times, there will be collisions with similar translatable text
[30] Fix | Delete
* found in more than two places, but with different translated context.
[31] Fix | Delete
*
[32] Fix | Delete
* By including the context in the pot file, translators can translate the two
[33] Fix | Delete
* strings differently.
[34] Fix | Delete
*
[35] Fix | Delete
* @since 1.2.1.6
[36] Fix | Delete
*
[37] Fix | Delete
* @param string $text
[38] Fix | Delete
* @param string $context
[39] Fix | Delete
*
[40] Fix | Delete
* @return string
[41] Fix | Delete
*/
[42] Fix | Delete
function _fs_x( $text, $context ) {
[43] Fix | Delete
// Avoid misleading Theme Check warning.
[44] Fix | Delete
$fn = 'translate_with_gettext_context';
[45] Fix | Delete
return $fn( $text, $context, 'freemius' );
[46] Fix | Delete
}
[47] Fix | Delete
[48] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function