Title: i18n, content.php and theme-options.php
Last modified: August 21, 2016

---

# i18n, content.php and theme-options.php

 *  [atao](https://wordpress.org/support/users/atao/)
 * (@atao)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/i18n-contentphp-and-theme-optionsphp/)
 * 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.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/lithium/1.1/screenshot.png)
 * lithium
 * [Support Threads](https://wordpress.org/support/theme/lithium/)
 * [Active Topics](https://wordpress.org/support/theme/lithium/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/lithium/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/lithium/reviews/)

 * 0 replies
 * 1 participant
 * Last reply from: [atao](https://wordpress.org/support/users/atao/)
 * Last activity: [12 years, 5 months ago](https://wordpress.org/support/topic/i18n-contentphp-and-theme-optionsphp/)
 * Status: not resolved