Merge pull request #3534 from jelicanin/3.1

FIX: i18n support in LookupField
This commit is contained in:
Sean Harvey 2014-10-10 08:56:35 +13:00
commit 6bfbbdcb38

View File

@ -67,7 +67,7 @@ class LookupField extends DropdownField {
$inputValue = implode(', ', array_values($values));
} else {
$attrValue = "<i>(none)</i>";
$attrValue = '<i>('._t('FormField.NONE', 'none').')</i>';
$inputValue = '';
}