Language Translation is not working?

My wpconfig.php file:

define('WPLANG', 'tr_TR');

My Code:

echo '<div id="wtdCustomizButtonDetailsPage"><a href="'. $getCustomPage .'?type=wtd_sc_designer&wtd_id='. $id .'">'. __('Customize', 'wctd') .'</a></div>';

My PO File Naming:

enter image description here

Inside of my PO File:

enter image description here

What am I missing ? The text still is in English.

1 Answer
1

Check the following function in your plugin:

load_plugin_textdomain ();

and be sure that the directory to languages folder is correct.

This fixed the issue for above question.

Leave a Comment