• Former issue is solved, but in development version the are two strings not localization ready. In index.php:
    lines 71 and 401

    <?php _e('On the post page, show:'); ?>

    must be

    <?php _e('On the post page, show:', 'bbpress-post-topics'); ?>

    lines 75-76 and 408-409

    'newest'	=> __('most recent'),
    'oldest'	=> __('oldest')

    must be

    'newest'	=> __('most recent', 'bbpress-post-topics'),
    'oldest'	=> __('oldest', 'bbpress-post-topics')

    http://ww.wp.xz.cn/extend/plugins/bbpress-post-topics/

Viewing 1 replies (of 1 total)
  • Thanks for catching this! These strings have been fixed in the development version. Please let me know if you find anything else!

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: bbPress Topics for Posts] Localization (again)’ is closed to new replies.