Skip to content

Commit

Permalink
Merge pull request #680 from LedgerHQ/add_br_de_ru_tr
Browse files Browse the repository at this point in the history
Add support for Brazilian/German/Russian/Turkish (BR/DE/RU/TR) languages
  • Loading branch information
dmorais-ledger authored Jun 6, 2024
2 parents 3fae7ab + 5a7b013 commit 222f9ea
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
8 changes: 8 additions & 0 deletions lib_bagl/include/bagl_font_rom.inc
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,14 @@
#include "bolos_pack_fr_glyphes.inc"
#elif (OS_LANGUAGE==LANG_SPANISH)
#include "bolos_pack_es_glyphes.inc"
#elif (OS_LANGUAGE==LANG_BRAZILIAN)
#include "bolos_pack_br_glyphes.inc"
#elif (OS_LANGUAGE==LANG_GERMAN)
#include "bolos_pack_de_glyphes.inc"
#elif (OS_LANGUAGE==LANG_RUSSIAN)
#include "bolos_pack_ru_glyphes.inc"
#elif (OS_LANGUAGE==LANG_TURKISH)
#include "bolos_pack_tr_glyphes.inc"
#else //OS_LANGUAGE
#error No default language defined!
#endif //OS_LANGUAGE
Expand Down
8 changes: 8 additions & 0 deletions lib_nbgl/include/fonts/nbgl_font_rom.inc
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,14 @@
#include "bolos_pack_fr_glyphes.inc"
#elif (OS_LANGUAGE==LANG_SPANISH)
#include "bolos_pack_es_glyphes.inc"
#elif (OS_LANGUAGE==LANG_BRAZILIAN)
#include "bolos_pack_br_glyphes.inc"
#elif (OS_LANGUAGE==LANG_GERMAN)
#include "bolos_pack_de_glyphes.inc"
#elif (OS_LANGUAGE==LANG_RUSSIAN)
#include "bolos_pack_ru_glyphes.inc"
#elif (OS_LANGUAGE==LANG_TURKISH)
#include "bolos_pack_tr_glyphes.inc"
#else //OS_LANGUAGE
#error No default language defined!
#endif //OS_LANGUAGE
Expand Down

0 comments on commit 222f9ea

Please sign in to comment.