Thread history
From Support
Viewing a history listing
Viewing a history listing
Time | User | Activity | Comment |
---|---|---|---|
11:20, 6 February 2011 | Raymond (talk | contribs) | New reply created | (Reply to Customization of number format) |
15:10, 23 December 2010 | EugeneZelenko (talk | contribs) | New reply created | (Reply to Customization of number format) |
11:27, 22 December 2010 | Тест (talk | contribs) | New reply created | (Reply to Customization of number format) |
02:13, 22 December 2010 | Тест (talk | contribs) | New reply created | (Reply to Customization of number format) |
20:46, 21 December 2010 | Raymond (talk | contribs) | New reply created | (Reply to Customization of number format) |
07:20, 21 December 2010 | Тест (talk | contribs) | New thread created |
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.
Тест