fix(keyboard): rename QWERTY label to ABC (layout is alphabetical, not QWERTY)

The on-screen keyboard grid has been a-b-c...z alphabetical order since
it was first introduced, never an actual QWERTY row layout. The
"QWERTY" name only appeared with the T9 option (needed something to
contrast it against) and was inaccurate from the start.
This commit is contained in:
Jakub
2026-07-02 18:33:40 +02:00
parent 5fe9240fc5
commit 3419e590fe
3 changed files with 5 additions and 5 deletions
@@ -557,7 +557,7 @@ class SettingsScreen : public UIScreen {
} else if (item == KEYBOARD_TYPE) {
display.print("Type");
display.setCursor(valCol(display), y);
display.print((p && p->keyboard_type) ? "T9" : "QWERTY");
display.print((p && p->keyboard_type) ? "T9" : "ABC");
} else if (item == BATT_DISPLAY) {
display.print("BattDisp");
display.setCursor(valCol(display), y);