Project

General

Profile

Actions

Todo #5789

closed

Convert Form_Select option names to gettext translated strings

Added by Anonymous about 8 years ago. Updated about 8 years ago.

Status:
Resolved
Priority:
Normal
Assignee:
-
Category:
-
Target version:
Start date:
01/21/2016
Due date:
% Done:

100%

Estimated time:
Plus Target Version:
Release Notes:

Description

Unless we have a better idea, certain Form_Select arguments will need to have gettext applied before being passed to the class. This is to facilitate "static" string extraction with xgettext

e.g.:

Form_Select(
'color'
'Shirt color',
array('red' => 'Scarlet', 'blue' => 'Sky Blue')
$pconfig['color']
);

will need to become:

Form_Select(
'color'
'Shirt color',
array('red' => gettext('Scarlet'), 'blue' => gettext('Sky Blue'))
$pconfig['color']
);

Actions

Also available in: Atom PDF