keikoro / Hangman

A Hangman game programmed in Python
MIT License
4 stars 2 forks source link

transform umlauts (ü -> ue) #5

Closed keikoro closed 11 years ago

keikoro commented 11 years ago

Umlauts in German words (ä,ö,ö) must be transformed to their alternate spelling (ae for ä etc.) before they can be included in the game (again).

Reasons: makes playing the game easier for players with different keyboard layouts, who still want to play the German version, and is also how umlauts are usually dealt with in hangman games.

Currently, all words containing umlauts are filtered out.

keikoro commented 11 years ago

basically fixed, though now special characters appear in occurencelist -> need to check that...