Re: [Gambas-user] How to make strings translatable

2010-07-26 Thread Matti
Thanks! Now I understand it. Matti Am 26.07.2010 22:31, schrieb Benoît Minisini: >> Hi List, >> >> I don't understand this: >> If I have a string like >> IF Message.Warning("The file " & aFiles[i] & " will be deleted.", "OK", >> "Cancel") = 2 THEN RETURN >> How should I mark it to be translated?

Re: [Gambas-user] How to make strings translatable

2010-07-26 Thread Benoît Minisini
> Hi List, > > I don't understand this: > If I have a string like > IF Message.Warning("The file " & aFiles[i] & " will be deleted.", "OK", > "Cancel") = 2 THEN RETURN > How should I mark it to be translated? > If I use > IF Message.Warning(("The file ") & aFiles[i] & (" will be deleted."), "OK",

[Gambas-user] How to make strings translatable

2010-07-26 Thread Matti
Hi List, I don't understand this: If I have a string like IF Message.Warning("The file " & aFiles[i] & " will be deleted.", "OK", "Cancel") = 2 THEN RETURN How should I mark it to be translated? If I use IF Message.Warning(("The file ") & aFiles[i] & (" will be deleted."), "OK", ("Cancel")) = 2 TH