• Hallo Anders,

    could you fix some translation issues in the next update for Rowling?

    In comments.php (lines 98 and 101) there are underscores missing, which makes these strings not translatable:

    . _('Leave a Reply')

    and

    . _('Leave a Reply to')

    In content.php, line 40, and
    content-gallery.php, line 32, there’s

    comments_popup_link( '0 Comments', '1 Comment', '% Comments');

    which better should be

    comments_popup_link(
    '0 ' . __('Comments', 'rowling'),
    '1 ' . __('Comment', 'rowling'),
    '% ' . __('Comments', 'rowling')
    );

    in order to make it translatable 🙂

The topic ‘translation issues’ is closed to new replies.