#671632 by yched: Fixed Number formatters capitalization.
parent
caacf80aee
commit
c0a0e5d710
|
@ -226,7 +226,7 @@ function number_field_is_empty($item, $field) {
|
||||||
function number_field_formatter_info() {
|
function number_field_formatter_info() {
|
||||||
return array(
|
return array(
|
||||||
'number_integer' => array(
|
'number_integer' => array(
|
||||||
'label' => t('default'),
|
'label' => t('Default'),
|
||||||
'field types' => array('number_integer'),
|
'field types' => array('number_integer'),
|
||||||
'settings' => array(
|
'settings' => array(
|
||||||
'thousand_separator' => ' ',
|
'thousand_separator' => ' ',
|
||||||
|
@ -236,7 +236,7 @@ function number_field_formatter_info() {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'number_decimal' => array(
|
'number_decimal' => array(
|
||||||
'label' => t('default'),
|
'label' => t('Default'),
|
||||||
'field types' => array('number_decimal', 'number_float'),
|
'field types' => array('number_decimal', 'number_float'),
|
||||||
'settings' => array(
|
'settings' => array(
|
||||||
'thousand_separator' => ' ',
|
'thousand_separator' => ' ',
|
||||||
|
@ -246,7 +246,7 @@ function number_field_formatter_info() {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
'number_unformatted' => array(
|
'number_unformatted' => array(
|
||||||
'label' => t('unformatted'),
|
'label' => t('Unformatted'),
|
||||||
'field types' => array('number_integer', 'number_decimal', 'number_float'),
|
'field types' => array('number_integer', 'number_decimal', 'number_float'),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue