Customization of number format
For example, on history pages in be.wikipedia.org http://be.wikipedia.org/w/index.php?title=Галоўная_старонка&action=history there are dots in numbers.
In ru.wikipedia.org there are no dots http://ru.wikipedia.org/w/index.php?title=Заглавная_страница&action=history.
It possible to change number format in be.wikipedia.org and how?
MessagesBe.php has the following transformation rule from English to Russian numbers:
$separatorTransformTable = array( ',' => '.', '.' => ',' );
MessagesRu.php has this one:
$separatorTransformTable = array( ',' => "\xc2\xa0", '.' => ',' );
with "\xc2\xa0" = nbspp = non breaking space.
Should 'be' use this transformation rule too? Do you have a link to the official (?) standards of the 'be' language?
Ru, uk, be and be-x-old - the same number format / transformation rule.
I think there are no difference in standards, because most likely they originated in USSR time state standards (ГОСТы).
You do not have permission to edit this page, for the following reason:
You can view and copy the source of this page.
Template used on this page:
Return to Thread:Support/Customization of number format/reply (5).