@nadenislamarre Nice ! Tell me how to do, which file to modify and I do so 🙂
This file ? : https://github.com/nadenislamarre/recalbox-emulationstation/blob/batocera-5.X/es-core/src/guis/GuiTextEditPopupKeyboard.h
First Beta release :
// Define keyboard key rows.
const char* numRow[12] = { "1","2","3","4","5","6","7","8","9","0","_","+" };
const char* numRowUp[12] = { "!", "@", "#", "$", "%", "^", "&", "*", "(", ")", "-", "=" };
const char* specialRow[12] = { "à","ä","è","ë","ì","ï","ò","ö","ù","ü","¨","¿" };
const char* specialRowUp[12] = { "á", "â", "é", "ê", "í", "î", "ó", "ô", "ú", "û", "ñ", "¡" };
const char* topRow[12] = { "a","z","e","r","t","y","u","i","o","p","{","}" };
const char* topRowUp[12] = { "A", "Z", "E", "R", "T", "Y", "U", "I", "O", "P", "[", "]" }; // Just so I don't have to deal with toupper
const char* homeRow[12] = { "q","s","d","f","g","h","j","k","l",";","\"","|" };
const char* homeRowUp[12] = { "Q", "S", "D", "F", "G", "H", "J", "K", "L", ":", "'", "\\" };
const char* bottomRow[11] = { "~","w","x","c","v","b","n","m",",",".","?" }; // Shift is handled in the constructor
const char* bottomRowUp[11] = { "`", "W", "X", "C", "V", "B", "N", "M", "<", ">", "/" };
I change the position of accents within a few hours