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:
Inside of my PO File:
What am I missing ? The text still is in English.
1 Answer
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.