Part Number: MSP430F5659
Tool/software: Code Composer Studio
Good morning TI experts,
today I'm going to ask you a very important question about the design of my application.
I'm going to create a program which will have displayed a set of messages in 6 different languages (english, italian, french, spanish, german...)
This messages are going to be saved in ROM (Flash of my uP) and are going to be the same number for every language.
I also need to have a fast and smart way to address these messages. At the moment I'm thinking about something like a structure for each language where the messages strings are its element.
typedef struct {
char mex_1[100];
char mex_2[100];
char mex_3[100];
...
char mex_N[100]
} language;
language italiano={"Buongiorno", "Buonasera", "Buonanotte"};
language english={"Goodmorning", "Good evening", "Good night"};
language spanish={"Buenos dias", "Buenas tardes", "Buenas noche"};
Which is the best way to carry out this multi language project?
I think my idea isn't the smartest and easiest way to do what I need, so any advice and help would be really appreciated.
Best Regards,
Mery