Wrong text domain in admin/manage.php
-
Hi there
I noticed that in admin/manage.php on lines 24 & 25, the textdomain is different.
Consequence is that those strings’s translations don’t always show up correctly. So, currently they are:
$new_columns[ 'shortcode' ] = __( 'Shortcode', 'sc'); $new_columns[ 'desc' ] = __( 'Description', 'sc');
And when I changed them to:
$new_columns[ 'shortcode' ] = __( 'Shortcode', 'shortcoder'); $new_columns[ 'desc' ] = __( 'Description', 'shortcoder');
The translations showed up. ??
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Wrong text domain in admin/manage.php’ is closed to new replies.