ui: strings: add missing string table entries

Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
Silvano Seva 2025-10-04 21:18:06 +02:00
parent 1264882004
commit 52a8cd1769
3 changed files with 11 additions and 2 deletions

View File

@ -102,6 +102,9 @@ const stringsTable_t englishStrings =
.Encode = "Encode", .Encode = "Encode",
.Decode = "Decode", .Decode = "Decode",
.Both = "Both", .Both = "Both",
.None = "None" .None = "None",
.direction = "Direction",
.step = "Step",
.radio = "Radio",
}; };
#endif // ENGLISHSTRINGS_H #endif // ENGLISHSTRINGS_H

View File

@ -103,6 +103,9 @@ const stringsTable_t spanishStrings =
.Encode = "Codificar", .Encode = "Codificar",
.Decode = "Decodificar", .Decode = "Decodificar",
.Both = "Ambos", .Both = "Ambos",
.None = "Ni" .None = "Ni",
.direction = "Dirección",
.step = "Paso",
.radio = "Radio",
}; };
#endif // SPANISHSTRINGS_H #endif // SPANISHSTRINGS_H

View File

@ -107,6 +107,9 @@ typedef struct
const char* Decode; const char* Decode;
const char* Both; const char* Both;
const char* None; const char* None;
const char* direction;
const char* step;
const char* radio;
} }
stringsTable_t; stringsTable_t;