Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hey Folks,
Client has hit me with an unusual request - I need to add the "Tetum" langauge to the choice of languages in umbraco.
https://en.wikipedia.org/wiki/Tetum_language
"Tetum" doesn't appear in the list - is there a way to manually add this as a language to the language list?
Cheers, Dave
Hi Dave,
the list comes from the operating system, (it's a call to CultureInfo.GetCultures(CultureTypes.AllCultures)) to add to the list you need to install your language as a new culture on the server, not 100% sure how to do that to be honest - but this might be a starting point: https://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.getcultures(v=vs.110).aspx
CultureInfo.GetCultures(CultureTypes.AllCultures)
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Adding New (obscure) Language to Umbraco Languages
Hey Folks,
Client has hit me with an unusual request - I need to add the "Tetum" langauge to the choice of languages in umbraco.
https://en.wikipedia.org/wiki/Tetum_language
"Tetum" doesn't appear in the list - is there a way to manually add this as a language to the language list?
Cheers, Dave
Hi Dave,
the list comes from the operating system, (it's a call to
CultureInfo.GetCultures(CultureTypes.AllCultures)
) to add to the list you need to install your language as a new culture on the server, not 100% sure how to do that to be honest - but this might be a starting point: https://msdn.microsoft.com/en-us/library/system.globalization.cultureinfo.getcultures(v=vs.110).aspxis working on a reply...