Development

#3538 ([PATCH] sfSimpleCMSAdmin : "After" and "Under" radiobutton labels cannot be translated)

You must first sign up to be able to contribute.

Ticket #3538 (new defect)

Opened 4 months ago

[PATCH] sfSimpleCMSAdmin : "After" and "Under" radiobutton labels cannot be translated

Reported by: onanga Assigned to: francois
Priority: minor Milestone:
Component: sfSimpleCMSPlugin Version: 1.0.15
Keywords: i18n, simplecms, sfSimpleCMS, sfSimpleCMSPlugin, translation Cc: bug@onanga.com
Qualification: Unreviewed

Description

replace lines 28 and 29 :

        <?php echo radiobutton_tag('position_type', 'after') ?>After
        <?php echo radiobutton_tag('position_type', 'under', 'selected=selected') ?>Under

By :

        <?php echo radiobutton_tag('position_type', 'after') ?><?php echo __('After') ?>
        <?php echo radiobutton_tag('position_type', 'under', 'selected=selected') ?><?php echo __('Under') ?>