Answer the question
In order to leave comments, you need to log in
Locale or language associated with country en_gb / en_us?
Parse
3 entities, Locale, Language, Country
ru_ru ru_
= 2 character language code
_ru = 2 character country code
You can get it like this
Langauge->getLangaugeCodeWithCountryCode() : string {
return $this->code . '_' . $this->language->country->code;
}
...
Locale->language->getLangaugeCodeWithCountryCode();
Locale->getLangaugeCodeWithCountryCode() : string {
return $this->language->code . '_' . $this->country->code;
}
...
Locale->getLangaugeCodeWithCountryCode();
Answer the question
In order to leave comments, you need to log in
en_us
en_gb
They differ, there are a lot of different things. So take control
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question