Hello. Is it possible to change the format of numbers on the forum through the user interface in the Admin panel?
The screenshot shows that the separator is a comma.
In our country, the space separator is used.
It is difficult for visitors to understand what the comma means.
It's possible via editing of language files in ...Themes/default/languages.
For example, I use Bulgarian language, the file is index.bulgarian.php
Find:
// Number format.
$txt['number_format'] = '1 234,00';
Find appropriate file for your language and change format with desired.
Speed King, thank you. Since there is no way to do this in the user interface, I will make changes to the code.
It's not really code... it's determined by the language files
Actually, this can be done in the admin interface.
- Go to Administration Center ► Languages ► Edit Languages
- Click the Edit button for the language that you wish to edit.
- In the Edit Language Entries section, choose "General Strings" from the drop-down menu.
- Change the "number_format" entry to match the format you prefer.
Sesquipedalian, thank you.