runners: remove group separator from input first
Reason for the change
In calculator runners, we replace commas with dots. But in locales use comma as group separator, this change the value of the input. For example, 1,000 will be changed to 1.000, which is incorrect. Remove group separator from input first, so the input value remains unchanged.
Test plan
Compile plasma-workspace and krunner using kde-builder. Launch krunner and type "10,000*2". If you want to test other locales, first enable and generate the locales (distro specific), then run krunner with "LC_NUMBERS=es_PE.UTF-8 krunner".
Check if the calculation result is correct.

