Posted by mfer on September 30, 2010 at 5:39pm
3 followers
| Project: | Views Slideshow |
| Version: | 6.x-3.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
In the code there are examples of t() being used like:
<?php
t('Override ' . $name . ' setting')
?>This really isn't all that good for translators. Instead it should be something like:
<?php
t('Override !name setting', array('!name' => $name))
?>This allows the translators to put the variable where ever it is appropriate in the text.
You can find more detail at http://api.drupal.org/api/function/t/6
Comments
#1
How does this look?
#2
committed
#3
Automatically closed -- issue fixed for 2 weeks with no activity.