SOLVED: Bug loading wp-lightbox-2-de_DE.mo translation files
-
Played around for hours because the translation file would not load. (By the way, the wp-lightbox-2.pot is far from complete and source texts need to be parsed from the source files before you can work on the translation. And I found out it has to be rename to jqlb-de_DE, since the textdomain’s name is jqlb and not wp-lightbox-2)
The bug is the trailing slash after I18n line 67 of wp-lightbox-2.php:
load_plugin_textdomain('jqlb', false, dirname( plugin_basename( __FILE__ ) ) . '/I18n/');<br />
I changed this to
load_plugin_textdomain('jqlb', false, dirname( plugin_basename( __FILE__ ) ) . '/I18n');<br />
and now my file at wp-content/plugins/wp-lightbox-2/I18n/wp-lightbox-2-de_DE.mo is finally loaded. ??
If anyone has use for my translated file: jqlb-de_DE.zip
- The topic ‘SOLVED: Bug loading wp-lightbox-2-de_DE.mo translation files’ is closed to new replies.