ui: strings: add missing string table entries
Signed-off-by: Silvano Seva <silseva@fastwebnet.it>
This commit is contained in:
parent
1264882004
commit
52a8cd1769
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue