Add czech oled localization (#5661)

* Added support for Czech and Slovak glyphs localization

* Remove accidental commit

* Fix typo

* Fixed formatting
This commit is contained in:
Vít Holásek
2024-12-26 10:08:23 +01:00
committed by GitHub
parent cc357df489
commit d87b7e49e4
5 changed files with 1976 additions and 1 deletions

View File

@@ -126,7 +126,7 @@ static bool heartbeat = false;
/// Check if the display can render a string (detect special chars; emoji)
static bool haveGlyphs(const char *str)
{
#if defined(OLED_PL) || defined(OLED_UA) || defined(OLED_RU)
#if defined(OLED_PL) || defined(OLED_UA) || defined(OLED_RU) || defined(OLED_CS)
// Don't want to make any assumptions about custom language support
return true;
#endif