Missing text domain in translation function
-
I found two instances where the __() translation functions are missing the admin-management-xtended text domain. They are located in general-functions.php, line 216. Here is the fixed version
echo '<a href="javascript:void(0);" class="button small" onclick="ame_check_all(' . esc_attr(intval($ame_id)) . ', true);">' . __( 'Check All', 'admin-management-xtended' ) . '</a><a href="javascript:void(0);" class="button small" onclick="ame_check_all(' . esc_attr(intval($ame_id)) . ', false);">' . __( 'Uncheck All', 'admin-management-xtended' ) . '</a>';This fixes the translation for Check All and Uncheck All not working.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Missing text domain in translation function’ is closed to new replies.