Hello,
There is a string in gnome-clocks, which is build of a city name and a country name in vala:
_name = "%s, %s".printf (city_name, nation_name);
The city_name and nation_name are both already localized.
The issue is that in RTL languages the order of city name and country name appearance should change as well. What is the correct way to solve this?