Make WordPress Core


Ignore:
Timestamp:
08/16/2009 05:51:36 AM (15 years ago)
Author:
azaozz
Message:

Fix non-translated strings in dashboard, fixes #10617

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/includes/dashboard.php

    r11749 r11827  
    340340        if ( current_user_can( 'switch_themes' ) ) {
    341341            echo '<a href="themes.php" class="button rbutton">' . __('Change Theme') . '</a>';
    342             printf('Theme <span class="b"><a href="themes.php">%1$s</a></span>', $ct->title);
     342            printf( __('Theme <span class="b"><a href="themes.php">%1$s</a></span>'), $ct->title );
    343343        } else {
    344             printf('Theme <span class="b">%1$s</span>', $ct->title);
     344            printf( __('Theme <span class="b">%1$s</span>'), $ct->title );
    345345        }
    346346    }
Note: See TracChangeset for help on using the changeset viewer.