Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Turkish Upper Case Issue

A topic by Wordarch Studio created Jul 03, 2021 Views: 174 Replies: 2
Viewing posts 1 to 2

In Turkish, there are some special characters like İ, Ü, Ö, which have dots on them even in the upper case, and when HTML files convert these to uppercase automatically, sometimes they don't show properly. Is there a way to correct this? As you can see below, dots of the İ don't show up.

There is an article about this in gamasutra. Here it is: https://www.gamasutra.com/blogs/IGDALocalizationSIG/20171127/310354/Problematic_...
but I honestly don't know how to implement it. Any ideas?
Thanks.
Uygar
(2 edits) (+1)

Forced capitalization is handled by the class is-uppercase

<h1 class="title is-size-1 is-uppercase">Get Started!</h1> = GET STARTED!

If you don't want it, you can simply remove it

<h1 class="title is-size-1">Get Started!</h1> = Get started!

Maybe you could also try using html entities to force the browser to use them? http://lilith.fisica.ufmg.br/~wag/TRANSF/codehtml.html

(+1)

Thanks Alain!

So helpful! I've successfully solved the issue and submitted my entry in its all glory!
Cheers!
Uygar