In Germany we make a comma instead of a decimal point. (English: 10,000.00 / German: 10.000,00)
Are commas (instead of points) allowed for German users in e-Bills? (charges.php)
FIX!
Logged In: YES user_id=834450
I suggest implementing Locales in the engine via setlocales() calls. this would optimally be done by
#include <locale.h> char *locale; locale = setlocale( LC_ALL, "de_DE");
for example at at strategic position. I cannot do this as my mysql libs seems to be incompatible and SEGFAULTs all the time :/
Log in to post a comment.
Logged In: YES
user_id=834450
I suggest implementing Locales in the engine via
setlocales() calls.
this would optimally be done by
#include <locale.h>
char *locale;
locale = setlocale( LC_ALL, "de_DE");
for example at at strategic position. I cannot do this as my
mysql libs seems to be incompatible and SEGFAULTs all the
time :/