Page 1 of 1
Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 9:52 am
by philpla
Hello @all.
Just a short question: Are their any plans to add multilanguage support for country names?
thx
phil
Re: Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 10:20 am
by burt
No plans. I can, however, see that it would be a useful addition.
If you can get it coded (as in done well and professionally) we can take a look at then getting it into the codebase.
Re: Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 10:30 am
by philpla
@burt
thx for the fast reply.
coding of this - without change of core - looks impossible to me.
the DB table "countries" has a primary key countries_id. should be a combined key of country and language id. and this would change many core sql requests.
do you see an easier way of implementation?
Re: Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 10:33 am
by Kofod95
If it's going into core, there is no need to avoid core-changes

I think you are welcome to present your solution, and given it is solid (professional), core-team can include it, as the functionality seems useful (that is my understanding of it, however)
//Daniel
Re: Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 11:01 am
by burt
It would be *something like* how the products tables are split up. Where some parts are language specific (product name) and some parts are agnostic (product price, weight, gtin).
In the case of countries, the language specific bit would be the country name, the rest agnostic (ISO_2, ISO_3 code etc).
It's not a small and easy job, as it affects many areas of the code.
Re: Feature Request: multilanguage country names
Posted: Fri Sep 17, 2021 11:42 am
by philpla
i will talk with my boss and ask if i get the time to code this.