Wrong text domains
-
There are some strings in your source code that use a wrong text domain. For example, in lines 99 and 100 in the
class-settings.php
file, you can see the strings using thefoobox
text domain instead of the correctfoobox-image-lightbox
:$settings[] = array( 'id' => 'hide_caption', 'title' => __( 'Hide Captions', 'foobox' ), 'desc' => __( 'Whether or not to hide captions for images.', 'foobox' ), 'type' => 'checkbox', 'section' => 'settings', 'tab' => 'general' );
This means that those strings are not translated even though a translation exists in the language pack.
Can you fix this, please?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Wrong text domains’ is closed to new replies.