Hi,
It didn’t work for me the first time (1.4.7). I noticed that the line numbers were not correct in the .pot file. For example:
#: text-blocks.php:55 text-blocks.php:67
msgid “Text Blocks”
should be:
#: text-blocks.php:62 text-blocks.php:74
msgid “Text Blocks”
…according to the .php file. But it was not the problem.
Then I changed this line of code:
load_plugin_textdomain( ‘text_blocks’, false, dirname( plugin_basename( __FILE__ ) ) . ‘/languages/’ );
to:
load_plugin_textdomain( ‘text-blocks’, false, dirname( plugin_basename( __FILE__ ) ) . ‘/languages/’ );
(“text_blocks” to “text-blocks”) And renamed the
reusable-text-blocks.pot
file to
text-blocks.pot
And now it works! ??