Skip to content

Commit

Permalink
Fix left & right arrow characters in B&W fonts.
Browse files Browse the repository at this point in the history
  • Loading branch information
philmoz committed Dec 22, 2024
1 parent 2b920a0 commit c90e1cb
Show file tree
Hide file tree
Showing 8 changed files with 7 additions and 7 deletions.
Binary file modified radio/src/fonts/sqt5/font_04x06_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified radio/src/fonts/sqt5/font_05x07_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified radio/src/fonts/sqt5/font_10x14_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified radio/src/fonts/std/font_04x06_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified radio/src/fonts/std/font_05x07_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified radio/src/fonts/std/font_10x14_extra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions radio/src/gui/common/stdlcd/fonts.h
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ constexpr int FONT_BASE_CNT = 96; // Number of characters in standard 5x7
constexpr int FONT_BASE_CNT_10x14 = 68; // Number of characters in compressed 10x14 font

constexpr int FONT_SYMS_CNT = 21; // Max # of extra symbols (based on 5x7 standard font)
constexpr int FONT_SYMS_CNT_4x6 = 8; // # of extra symbols in 4x6 font (adjust if font is changed)
constexpr int FONT_SYMS_CNT_10x14 = 8; // # of extra symbols in 10x14 font (adjust if font is changed)
constexpr int FONT_SYMS_CNT_4x6 = 4; // # of extra symbols in 4x6 font (adjust if font is changed)
constexpr int FONT_SYMS_CNT_10x14 = 4; // # of extra symbols in 10x14 font (adjust if font is changed)

extern const unsigned char font_5x7[];
extern const unsigned char font_5x7_B[];
Expand Down
10 changes: 5 additions & 5 deletions radio/src/translations/cz.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,13 @@
#define TR_SF_MOD_BIND "ModuleBind"
#define TR_SF_RGBLEDS "RGB světlo"

#define TR_SOUND TR3("\200\201Zvuk", "\200\201Zvuk", "Hrát zvuk")
#define TR_PLAY_TRACK TR3("\200\201Stopa", "\200\201Stopa", "Přehrát wav")
#define TR_PLAY_VALUE TR3("\200\201Hlásit ", "\200\201Hlásit ", "Hlásit stav")
#define TR_SOUND TR3("\204\205Zvuk", "\204\205Zvuk", "Hrát zvuk")
#define TR_PLAY_TRACK TR3("\204\205Stopa", "\204\205Stopa", "Přehrát wav")
#define TR_PLAY_VALUE TR3("\204\205Hlásit ", "\204\205Hlásit ", "Hlásit stav")
#define TR_SF_HAPTIC "Vibrovat"
#define TR_SF_PLAY_SCRIPT TR("Lua", "Lua Skript")
#define TR_SF_BG_MUSIC TR3("\200\201Hudba","\200\201Hudba","Hudba")
#define TR_SF_BG_MUSIC_PAUSE TR3("\200\201Hudba ||","\200\201Hudba ||","Hudba pauza")
#define TR_SF_BG_MUSIC TR3("\204\205Hudba","\204\205Hudba","Hudba")
#define TR_SF_BG_MUSIC_PAUSE TR3("\204\205Hudba ||","\204\205Hudba ||","Hudba pauza")
#define TR_SF_LOGS "Loguj na SD"
#define TR_ADJUST_GVAR "Nastav"
#define TR_SF_BACKLIGHT "Podsvětlení"
Expand Down

0 comments on commit c90e1cb

Please sign in to comment.