• I18n is not done for some strings:

    – file lithium/includes/theme-options.php :
    – line 31:

    <?php screen_icon(); echo "<h2>" .' Theme Options'. "</h2>"; ?>

    should be:

    <?php screen_icon(); echo "<h2>" .__( 'Theme Options', 'lithium' ). "</h2>"; ?>

    – line 87:

    <input type="submit" class="button-primary" value="<?php echo 'Save Options'; ?>" />

    should be:

    <input type="submit" class="button-primary" value="<?php _e( 'Save Options', 'lithium' ); ?>" />

    – file lithium/content.php :
    – line 46:

    <a href='<?php the_permalink(); ?>' class="post-link clearfix pull-right"> > Read More</a>

    should be:

    <a href='<?php the_permalink(); ?>' class="post-link clearfix pull-right"><?php _e('> Read More', 'lithium'); ?></a>

    – line 58:

    <a href='<?php the_permalink(); ?>' class="post-link clearfix pull-right"> > Read More</a>

    should be:

    <a href='<?php the_permalink(); ?>' class="post-link clearfix pull-right"><?php _e('> Read More', 'lithium'); ?></a>

The topic ‘i18n, content.php and theme-options.php’ is closed to new replies.