Posted by dagmar on January 17, 2009 at 7:13pm
Jump to:
| Project: | File (Field) Paths |
| Version: | 6.x-1.x-dev |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | closed (fixed) |
Issue Summary
The strings of this module are not enclosed with the t() function
For example:
<?php
// Create path settings fieldset
$ffp['form_path'] = array(
'#type' => 'fieldset',
'#title' => 'Path settings',
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
?>Should be:
<?php
// Create path settings fieldset
$ffp['form_path'] = array(
'#type' => 'fieldset',
'#title' => t('Path settings'),
'#collapsible' => TRUE,
'#collapsed' => TRUE
);
?>
Comments
#1
Will be fixed in next dev release.
#2
Committed to HEAD
#3
Committed to DRUPAL-5
#4
Automatically closed -- issue fixed for 2 weeks with no activity.