Set decimal separator depending on locale #4029
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
3 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#4029
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "decimal"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Signed-off-by: Gonzalo Pesquero gpesquero@yahoo.es
Proposal for setting the decimal separator based on system locale for distances in some controls and text views of the app in Android, as suggested in issue 3992.
Checking the code, I've noticed that all the displayed distances come as strings from jni calls, so the proposed solution just replaces the decimal dot '.' with the system locale separator (commonly a comma ',') when applicable.
This is just a first approach for only a few controls and panels and it has been correctly tested in a Android simulator with different system languages.
The proposed approach may not be the best solution, so any comment or feedback is welcomed. This PR may be completed later to implement the remaining controls/views.
Thanks! This solution does not fix the core issue, and won't work on all platforms, including iOS.
A proper fix should be done in C++ code that generates these strings. It should be easy now as you already identified the source of these strings.
Thanks @biodranik for your fast response... Your comment makes a lot of sense, so I will have a look at the C++ code and check how we can implement it.
Hello @biodranik... Checking the C++ code it looks like all the distance/speed strings used for routing and search are generated in the same place:
measurement_util.cpp
.I've updated the commit with a new approach, changing the
ToStringPrecision()
function and getting the decimal separator char from the Locale struct, which I've also changed.I've tested these changes with the Android emulator on different languages, and everything seems to work Ok, but I don't know if it would also work on ios.
Again, most probably this solution may not be optimal, so any other proposal is welcomed...
The bicycle was already invented, did you check std::ios_base::imbue?
Yes, I checked
imbue
, but I could not get it working (most probably due to my low knowledge/experience with cpp)The code below does compile, but it crashes....
Yeah, sorry, I forgot that NDK does not support C/C++ locales.
Then we have several possible options:
Let's evaluate and compare pros and cons of all options. Need to test it on iOS too.
Hello again... I've managed to get an iOS dev environment working and I've confirmed that the
ss.imbue(std::locale("es_ES.UTF-8"));
line does work on iOS and it provides localized strings.For the pros and cons analysis, I think that we shall also take into consideration the implementation of the conversion of the thousands separator.
From my point of view, these are the pros and cons if we want to keep the locale conversion in the CPP side (options 1 & 2):
Opt. 1&2 pros:
Opt. 1&2 cons:
And these are the pros and cons for option 3 (perform conversion in Android/iOS side):
Opt. 3 pros:
Opt. 3 cons:
Please fell free to add or comment all these pros and cons...
Thanks for the analysis! If it works on iOS, we can save some time. By the way, did you test it on iOS 12 (the lowest we support)? It is possible to install the simulator and test it.
Another important point IMO is that proper support in C++ will allow it to work properly on all other systems (Linux, Windows, macOS). Otherwise, they must implement the same "conversion" in many places.
There is already some logic to get the current locale/language implemented in platform/preferred_languages.cpp that we can reuse/extend.
The ideal solution should have less code and should not have runtime overhead (e.g. a lot of calculations/allocations each second).
I did the tests on a simulator running iOS 12.4.
I will check
platform/preferred_languages.cpp
and see what we can reuse/extend...Thanks! We can also live well without real-time updates of the changed locale if it helps to make an easier implementation. Users don't change locale often, and it's perfectly ok if after changing the locale OM should be restarted to properly start drawing commas/dots.
Hello @biodranik!! I've pushed a new commit with a draft implementation for the decimal and grouping (thousands) separator for both Android and iOS in the CPP code.
As we confirmed earlier, Android NDK does not support locales, so the separator conversion is done manually extending the Locale struct. The conversion is done in function
FormatDistanceImpl
and only where it's needed in order to optimize performance.For iOS, I haven't been able to get
imbue()
to work properly with system locale, so I've decided to use the same solution as for Android, extending also the Locale struct.I have tested this code using both Android & iOS simulators, and it seems to work OK with some languages and system country settings, but further testing might be needed for many other configurations.
The code also compiles for Linux and macOS desktop environments, though it looks like the
FormatDistance
functions are not used in the desktop versions of the app.I haven't tried to compile/test it on Windows.
Thank you for your efforts, the code is cleaner now IMO.
What exactly did you try?
Did you try to change the locale globally in the main.mm ?
Why are you converting it to a string? That's a lot of overhead. Why jbyte can't be used instead?
ditto
@ -6,1 +6,4 @@
{
std::string const kNonBreakingSpace = "\u00A0";
std::string const kNarrowNonBreakingSpace = "\u202F";
@ -4,11 +4,28 @@
namespace platform
{
Can an empty grouping separator be perfectly valid in some cases?
If yes, can we support these cases without performance degradation? Maybe by using char(0)?
There is no need to create a temporary string, NSString can be used directly, right?
@ -1,10 +1,41 @@
#include "platform/locale.hpp"
#include <locale>
This should be a bit faster:
Can we properly add the Linux code? https://www.systutorials.com/docs/linux/man/7-locale/
@ -28,0 +30,4 @@
return ToStringPrecisionLocale(loc, d, pr);
}
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Can we assume here that the '.' will always be at
out.size() - 2
for better performance?How 3.0 is printed? As 3.0 or as 3?
Is it possible to add unit tests for this and other cases?
We don't use {} for one-liners.
Mac, Linux, and maybe Windows may properly format the string using the system's locale. Can we at least mention it here? If you see that it should not be corrected on Mac, for example, then an
#ifdef
may be needed.We also try to use . at the end of comment sentences. ;-)
ditto, the grouping may be already applied by mac and Linux.
Is it possible to have two or more grouping separators?
On IOS I've set the locale globally in
main.mm
with the callstd::locale::global(std::locale(""));
, and I've added also the liness.imbue(std::locale(""));
in theToStringPrecision(double d, int pr)
function, but the decimal and grouping separators do not change according to the system environment settings.@ -4,11 +4,28 @@
namespace platform
{
Yes, empty grouping separators are valid, so I will modify the code to support these situations using a
char(0)
as grouping separator.I converted both decimal and grouping separators to string so the jni code was the same as for the country and language code. I've already modified the code so instead of string, we use chars.
Same as before... already changed code to use char instead of strings...
@ -6,1 +6,4 @@
{
std::string const kNonBreakingSpace = "\u00A0";
std::string const kNarrowNonBreakingSpace = "\u202F";
Corrected !!
@ -1,10 +1,41 @@
#include "platform/locale.hpp"
#include <locale>
Replaced "" with {}...
Regarding the Linux code, I don't exactly understand what functionality you want to implement here...
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Modified !!
@ -28,0 +30,4 @@
return ToStringPrecisionLocale(loc, d, pr);
}
Modified !!
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Yes, instead of
std::replace()
we could assume that the decimal separator is atout.size() - 2
. I will change the code accordingly...And yes, 3.0 is printed as 3.0
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
And regarding the unit tests, please confirm that the idea is to add to
measurement_tests.cpp
tests of theFormatDistanceImpl()
function to check the functionality of the decimal and grouping separators replacement based on different locales.@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Corrected !!
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
I've added
#ifdef
so the decimal and grouping separators and "manually" replaced only on Android OS.I've also added a comment explaining this.
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
The added
#ifdef
applies for both decimal and grouping separator...@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Yes, I can change the code so we can handle two or mode grouping separators...
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Modified !!
@ -32,0 +49,4 @@
else
{
// Value with no decimals. Check if it's equal or bigger than 10000 to
// insert the grouping (thousands) separator characters.
Done!! I've also moved this piece of code to the function
ToStringPrecision()
so speed strings are also localized...@ -4,11 +4,28 @@
namespace platform
{
Modified code to use NSString directly...
One of the checks on macOS of my last commit has failed... I don't know the reason why...
@ -4,11 +4,28 @@
namespace platform
{
Implemented use of
char(0)
for empty group separatorDoesn't it work on a mac? If it doesn't, then ifdef should also be above near the include. If it does, then ifdef is not needed.
Can it be done in main.mm?
I first assumed that the
std::locale::global(std::locale(""));
call inmain.mm
configured the locale, so certain distance values were displayed with local decimal separator, for example in the place info panel:But now I've realized that these values are correctly displayed with the locale decimal separator because of the use of MKDistanceFormatter that applies the localized decimal separator.
So this call to
std::locale::global(std::locale(""));
inmain.mm
can be deleted, as it doesn't make any use.I've now made further checks with this solution and I've found out that with some language/region combinations, the
imbue()
call crashes. For example, with "es_ES" (Spanish/Spain) locale string it works, but it crashes if I change the region to the US, locale "es_US" (Spanish/US).I honestly don't know how to make things work with
imbue()
, so my proposal right now is to implement the same solution for iOS and Android for the decimal and grouping separators.OK, I've changed the code accordingly.
OK, I've changed the code accordingly.
OK, I've changed the code accordingly.
OK, I've changed the code accordingly.
Can you please add a log and track how often is it called in some common scenarios (like searching, for example)?
Am I correctly understanding that the distance is now properly formatted for each locale, but speed is not?
@AndrewShkrob Does it make sense to extend your distance class with speed support? Or would it be easier to support native speed formatting as it is done right now? Do we need to display speed values from C++ code now (or in the future)?
@AndrewShkrob @vng WDYT?
Align it with (
ditto
stringWithUTF8String
@ -14,3 +19,4 @@
Locale GetCurrentLocale();
bool GetLocale(std::string localeName, Locale& result);
} // namespace platform
Can a decimal separator also be a non-ASCII symbol? Is there a full list somewhere?
@ -257,2 +278,4 @@
{Distance(109, Units::Meters), 110, Units::Meters, "110", MakeDistanceStr("110", "m")},
{Distance(991, Units::Meters), 990, Units::Meters, "990", MakeDistanceStr("990", "m")},
// From Kilometers to Kilometers
@ -14,3 +19,4 @@
Locale GetCurrentLocale();
bool GetLocale(std::string localeName, Locale& result);
} // namespace platform
Yes, according to this Wikipedia article, there's also an Arabic decimal separator (U+066B).
Here's a screenshot of the place info panel with locate set to Farsi/Persian, where the decimal and grouping separators are both non-ASCII chars:

Noted! Commit will be amended accordingly...
Noted! Commit will be amended accordingly...
Noted! Commit will be amended accordingly...
Noted! I will use
stringWithUTF8String
instead ofstringWithCString
.Noted! Commit will be amended accordingly...
@ -257,2 +278,4 @@
{Distance(109, Units::Meters), 110, Units::Meters, "110", MakeDistanceStr("110", "m")},
{Distance(991, Units::Meters), 990, Units::Meters, "990", MakeDistanceStr("990", "m")},
// From Kilometers to Kilometers
Do you mean to test decimal separators on different locales? With the current implementation in
ToStringPrecision()
,GetCurrentLocale()
is only called once at start-up, so we could only make tests with a single locale.We already have a couple of tests for altitude formatting in
UNIT_TEST(Distance_CreateAltitudeFormatted)
indistance_tests.cpp
. I've included tough a third one for high altitudes in meters.Current implementation of
GetCurrentLocale()
in linux does not read system's locale, and forces decimal and grouping separators to '.' and ',' respectively, so tests run flawlessly even with Spanish or French system locales.@ -6,3 +6,3 @@
{
Locale GetCurrentLocale()
Locale NSLocale2Locale(NSLocale *locale)
{
I'm not sure that default value for
groupingSeparator
is OK. In my country we don't use commas: "10 123 m" or "1234 m".I think, it's better to leave it empty because if it happens "somehow" that there is no info about
groupingSeparator
, some people may be confused by the printed values.@ -1,10 +1,41 @@
#include "platform/locale.hpp"
#include <locale>
Same here
@ -6,3 +6,3 @@
{
Locale GetCurrentLocale()
Locale NSLocale2Locale(NSLocale *locale)
{
Yes, maybe an empty grouping separator may be more common across different locales, though this default value will be overwritten by system's configuration in most of the times.
Your comment also confirms that in many languages, the grouping separator is only used in values with more than 4 digits, keeping digits with 4 digits with no grouping separator ("10 123 m" and "1234 m"). Maybe we shall also keep this behavior, which is also suggested as International Standard according to this Wikipedia article about digit grouping. This International Standard also suggests to use always the narrow no-break space char as the grouping separator.
My proposal for the grouping separator would be then: set empty "" (no grouping separator) as default if the system does not provide any & apply grouping separators only on numbers with more that 4 digits.
@ -1,10 +1,41 @@
#include "platform/locale.hpp"
#include <locale>
Same as before, I agree to set the empty "" grouping separator as default, though this change affects the unit testing code, so I will have to change back again the unit tests for distances.
@ -6,3 +6,3 @@
{
Locale GetCurrentLocale()
Locale NSLocale2Locale(NSLocale *locale)
{
Thanks! Looks like a good default is:
P.S. Is non-breaking space used after a number and before the unit name? Should we use it too?
@ -254,3 +264,1 @@
{Distance(101, Units::Meters), 100, Units::Meters, "100", "100 m"},
{Distance(109, Units::Meters), 110, Units::Meters, "110", "110 m"},
{Distance(991, Units::Meters), 990, Units::Meters, "990", "990 m"},
{Distance(0, Units::Meters), 0, Units::Meters, "0", MakeDistanceStr("0", "m")},
If we change defaults to >4 chars for group separators, these tests will change, right?
@ -257,2 +278,4 @@
{Distance(109, Units::Meters), 110, Units::Meters, "110", MakeDistanceStr("110", "m")},
{Distance(991, Units::Meters), 990, Units::Meters, "990", MakeDistanceStr("990", "m")},
// From Kilometers to Kilometers
1/ I meant test cases where a decimal separator is used.
@ -6,3 +6,3 @@
{
Locale GetCurrentLocale()
Locale NSLocale2Locale(NSLocale *locale)
{
@biodranik: I assume that you suggest to use as default the narrow non-breaking space (NNBSP, U+202F), instead of the standard non-breaking space (NBSP, U+00A0).
In this Wikipedia article, it's indeed stated that the NBSP's are also used between the value and the units, so yes, we can also use them there instead of the regular whitespace.
In a first commit I've set the NNBSP as default for iOS and linux and I've modified the UTs accordingly, but after pushing the commit, the iOS tests have failed because the grouping separator is configured to the ',' character. The workaround is to set the default character in linux and the UTs with the ',' character.
I've amended the commit according to these last comments.
@ -254,3 +264,1 @@
{Distance(101, Units::Meters), 100, Units::Meters, "100", "100 m"},
{Distance(109, Units::Meters), 110, Units::Meters, "110", "110 m"},
{Distance(991, Units::Meters), 990, Units::Meters, "990", "990 m"},
{Distance(0, Units::Meters), 0, Units::Meters, "0", MakeDistanceStr("0", "m")},
Yes, the UTs have to be changed.
Good! @Jean-BaptisteC can you please test if it works with different system languages, including Arabic, Hebrew, French, German, US, Chinese, Japanese?
Is + faster/better than String.format?
✅ Pixel 6 - Android 13
French







Arabic
Deutsch
English (US)
Japanese
Chinese
Hebrew
Other examples:

Yes, the + operator seems to be much faster:
First column: String.format, second column: + operator
2778346 ns, 72961 ns
1656885 ns, 341115 ns
1513307 ns, 45154 ns
1233769 ns, 32039 ns
And as we're dealing now only with strings, the code seems to be clearer than with the String.format function.
Doing even faster string generation without iostream and reallocations would be an awesome bonus, but it's good enough already.
@vng WDYT?
Oh wait:
Let's move
\u202F
to a const variable at the beginning of the file:char const kNonBreakingSpace = '\u202F'
measurement_tests.cpp
You can mock locale as it's done for display units with
ScopedSettings guard
.Create
ScopedLocale guard
class, pass separators to the constructor and overwrite current locale settings. In destructor - restore locale.Check
UNIT_TEST(Distance_CreateFormatted)
as an exampleThis solution won't require installing additional locales to the system.
Hm, I was under the impression that we had a place to store the locale, but upon closer examination, I can only locate the
GetCurrentLocale
function. Given this scenario, my original suggestion will indeed not work.Consequently, an additional implementation to store the current locale will be necessary. If you're unable to devise a solution, it might be more prudent to eliminate these tests. Depending on installed system locales for a test is generally inadvisable.
constexpr is even better:
Testing specific locales in a controlled environment is ok. You can edit our .github/workflows actions by adding
sudo locale-gen ru_RU.UTF-8
commands in the beginning.As the non-breaking space
\u202F
is used in different source files, I've included its definition in the filelocale.hpp
.I cannot get it working as
char
, so I've declared it asstd::string
.I've added the
sudo locale-gen xx_YY.UTF-8
commands to.github/workflows/linux_check.yaml
for different languages (en, es, fr & ru) and now the linux checks seem to work Ok.Anyhow, the macOS checks still do not work. Instead of the linux command
locale-gen
, in macOS it looks like the command to use islocaledef
, but I still cannot get it working. I will make further investigations in the incoming days, but any help is welcomed.That will definetly break tests on local machines without all required locales.
At least, consider covering such test cases with
#if CI
We can pass
CI
var through cmake when it's defined in the environment. CI services like GitHub Actions always have this environment variable.https://docs.github.com/en/actions/learn-github-actions/variables#default-environment-variables
@ -166,0 +171,4 @@
sudo locale-gen fr_FR.UTF-8
sudo locale-gen ru_RU
sudo locale-gen ru_RU.UTF-8
sudo update-locale
I think it's better to move this part to a separate job. Probably near the dependencies job or before the tests job with a comment that it's required only for testing
Let me describe the latest tests and implementations that I've perfomed today:
localedef
in macOS. I only had to rename the locales fromxx_YY.UTF8
toxx_YY.UTF-8
to get them working in macOS.std::locale::global()
does not affect the behavior of classNSLocale
, so I've had to implement a new callGetLocale(std::string)
inlocale.mm
order to obtain a new Locale struct based on the locale name in macOS.There's a mix of many different types of space characters in some locales and in different platforms, and the only possible work-around is to fill the testing code with
#ifdef
for the different platforms and locales.Taking into consideration all these tests and the comment from @AndrewShkrob...
... I think that it's no worth the implementation of the UTs for the
ToStringPrecision()
function with different locales.Let me know your opinion whether we shall continue to implement these UTs.
"100" + kNonBreakingSpace + "m"
I apologize for raising what might seem like trivial matters, but I believe it would enhance code readability to establish a distinct function. This way, we can encapsulate the use of kNonBreakingSpace and prevent its repetition on every line.
Hi @AndrewShkrob! Please do not hesitate to make any comment about my code. You're most probably used to the coding standards/style in OM.
I've added the
static
functionDistance::ToString()
which encapsulates the usage ofkNonBreakingSpace
.Please have a look at the code that I've just pushed and confirm that this approach is Ok.
@ -166,0 +171,4 @@
sudo locale-gen fr_FR.UTF-8
sudo locale-gen ru_RU
sudo locale-gen ru_RU.UTF-8
sudo update-locale
Hi @AndrewShkrob! I've removed the UTs for the
ToStringPrecision()
function, so these calls tosudo locale-gen XX_YY
are no longer needed. Thanks anyway for your comment.Certainly, there's no need for such a function inside the Distance class. Since it will solely be utilized in unit tests, I suggest moving it to
platform/platform_tests/distance_tests.cpp
.Moreover, I concur that
ToString
might not be the most suitable name. How about renaming it toMakeDistanceStr
or a similar variant?Ok!! I've moved the function (now called
MakeDistanceStr()
) toplatform/platform_tests/distance_tests.cpp
.Finally I decided to remove the UTs for the
ToStringPrecision()
function with different locales.Testing it on different OSes with different locales actually was quite useful )
Ok, I've brought back the UTs for the
ToStringPrecision()
function with different locales.As the grouping separator is different for Linux and MacOS in some languages, the
UNIT_TEST(ToStringPrecisionLocale)
contains#ifdefs
for different test results in different OS's.I've included also a
#if CI
as suggested by @AndrewShkrob, so these tests are only performed in the GitHub workflows, and local tests do not require locales to be installed.@ -166,0 +171,4 @@
sudo locale-gen fr_FR.UTF-8
sudo locale-gen ru_RU
sudo locale-gen ru_RU.UTF-8
sudo update-locale
Hello again @AndrewShkrob! As I've included back again the UTs for the
ToStringPrecision()
function, I've included thesudo locale-gen xx_YY
calls in the Github workflow for Linux, in the same place that I initially used.You suggested to move this part to a separate job, but I'm not sure how to do it.
Currently, Linux tests are run in the last step 'Tests' of the 'linux-matrix' job.
I'd appreciate if you could provide a piece of code of your proposal for this change.
@ -166,0 +171,4 @@
sudo locale-gen fr_FR.UTF-8
sudo locale-gen ru_RU
sudo locale-gen ru_RU.UTF-8
sudo update-locale
Why setting a global locale required? Does
std::locale(localeName)
work directly?You're right! There's no need to use
std::locale::global()
. Will change accordingly...@ -166,0 +171,4 @@
sudo locale-gen fr_FR.UTF-8
sudo locale-gen ru_RU
sudo locale-gen ru_RU.UTF-8
sudo update-locale
I still don't know where you want these calls to be placed. They already are located in the 'Tests' step of the 'linux-matrix' job, and I don't see any other tests section in this 'linux-check.yaml" file. Please provide a diff file or some direct instructions (like: insert these calls in line XX of file YY), otherwise I'm lost regarding this change request.
I've added some try/catch in the
GetLocale()
function in Linux to detect errors while loading the locales, so now the tests don't crash and we can skip the tests for the missing locales. Under macOS,GetLocale()
never fails, even if a wrong locale is requested.I've removed the
#ifdefs
for grouping separator checking in different OS's by adding aAddGroupingSeparators()
function that uses locale's grouping separator for the tests.Commit amended!!
Thank you very much for your work! And sorry for the delay. Let's see how it works in production :)