Make WordPress Core


Ignore:
Timestamp:
03/02/2009 07:20:19 PM (16 years ago)
Author:
ryan
Message:

Use _x() and extracted comments. Props nbachiyski. see #9112

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/themes.php

    r10648 r10680  
    109109<img src="<?php echo WP_CONTENT_URL . $ct->stylesheet_dir . '/' . $ct->screenshot; ?>" alt="<?php _e('Current theme preview'); ?>" />
    110110<?php endif; ?>
    111 <h4><?php printf(_c('%1$s %2$s by %3$s|1: theme title, 2: theme version, 3: theme author'), $ct->title, $ct->version, $ct->author) ; ?></h4>
     111<h4><?php
     112    /* translators: 1: theme title, 2: theme version, 3: theme author */
     113    printf(__('%1$s %2$s by %3$s'), $ct->title, $ct->version, $ct->author) ; ?></h4>
    112114<p class="description"><?php echo $ct->description; ?></p>
    113115<?php if ($ct->parent_theme) { ?>
Note: See TracChangeset for help on using the changeset viewer.