Changeset 1898 for trunk/wp-admin/themes.php
- Timestamp:
- 11/28/2004 05:48:22 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/themes.php
r1829 r1898 45 45 <h2><?php _e('Current Theme'); ?></h2> 46 46 <div id="currenttheme"> 47 <h3><?php printf(__('% s %s by %s'), $current_title, $current_version, $themes[$current_theme]['Author']) ; ?></h3>47 <h3><?php printf(__('%1$s %2$s by %3$s'), $current_title, $current_version, $themes[$current_theme]['Author']) ; ?></h3> 48 48 <p><?php echo $themes[$current_theme]['Description']; ?></p> 49 49 <?php if ($current_parent_theme) { ?> 50 <p><?php printf(__('The active theme is <strong>% s</strong>. The template files are located in <code>%s</code>. The stylesheet files are located in <code>%s</code>. <strong>%s</strong> uses templates from <strong>%s</strong>. Changes made to the templates will affect both themes.'), $current_theme, $current_template_dir, $current_stylesheet_dir, $current_theme, $current_parent_theme); ?></p>50 <p><?php printf(__('The active theme is <strong>%1$s</strong>. The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>. <strong>%4$s</strong> uses templates from <strong>%5$s</strong>. Changes made to the templates will affect both themes.'), $current_theme, $current_template_dir, $current_stylesheet_dir, $current_theme, $current_parent_theme); ?></p> 51 51 <?php } else { ?> 52 <p><?php printf(__('The active theme is <strong>% s</strong>. The template files are located in <code>%s</code>. The stylesheet files are located in <code>%s</code>.'), $current_theme, $current_template_dir, $current_stylesheet_dir); ?></p>52 <p><?php printf(__('The active theme is <strong>%1$s</strong>. The template files are located in <code>%2$s</code>. The stylesheet files are located in <code>%3$s</code>.'), $current_theme, $current_template_dir, $current_stylesheet_dir); ?></p> 53 53 <?php } ?> 54 54 </div>
Note: See TracChangeset
for help on using the changeset viewer.