[wpmu-trac] [WordPress MU Trac] #1160: Small modify for an easier translate
WordPress MU Trac
wpmu-trac at lists.automattic.com
Thu Nov 19 17:56:42 UTC 2009
#1160: Small modify for an easier translate
-------------------------+--------------------------------------------------
Reporter: charlie_hun | Owner: somebody
Type: task | Status: new
Priority: lowest | Milestone:
Component: i18n | Version:
Severity: trivial | Keywords:
-------------------------+--------------------------------------------------
In wp-admin/includes/mu.php at line 393 this is the original code:
{{{
<?php _e('<a href="upload.php" title="Manage Uploads..."
class="musublink">'. $used .'MB ('. $percentused .'%)</a>'); ?>
}}}
For the easier transate I modify this line to:
{{{
<?php _e('<a href="upload.php" title="Manage Uploads..."
class="musublink">'); echo $used . __('MB ('. $percentused .'%)</a>'); ?>
}}}
Why?
The
{{{
_e('<a href="upload.php" title="Manage Uploads..." class="musublink">');
}}}
text show at this file at line 391
{{{
<?php _e('<a href="upload.php" title="Manage Uploads..."
class="musublink">'); echo $quota . __('MB</a>'); ?>
}}}
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/1160>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list