Localizable strings
quiptime - March 13, 2008 - 14:33
| Project: | Account Types |
| Version: | 5.x-1.4 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | reviewed & tested by the community |
Jump to:
Description
Pleas fix that:
old
$name .= ' <em>(default)</em>';
new
$name .= ' <em>('.t('default').')</em>';
line 366 in accounttypes.module

#1
Next things. Please fix that.
old
$header[] = array('data' => $name. '<br />Allow');$header[] = array('data' => $name. '<br />Init');
new
$header[] = array('data' => $name. '<br />' .t('Allow'));$header[] = array('data' => $name. '<br />' .t('Init'));
lines 553, 554 in accounttypes.module
#2
Sorry about that. I thought I got them all. Thanks. Will be in the next release.