Hi,
In the program source\function\strings.prg, the line:
{ "Move Down", "Mover abajo", "Déplacer vers le bas", "Mover para cima" ,"Abwärts bewegen","Muovi in giu" },;
should be:
{ "Move Down", "Mover abajo", "Déplacer vers le bas", "Mover para baixo" ,"Abwärts bewegen","Muovi in giu" },;
By the way: what would be the easiest way to fix this in the compilatoin?
Or I will have to include the corrected STRINGS.PRG in my programs list.
Regards
Euclides
FWSetLanguage(4)
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Re: FWSetLanguage(4)
Euclides,
Fixed for next FWH version, many thanks
To quickly fix it do this:
FWSaveStrings() // this will create a "fwstrings.ini" file
// modify "fwstrings.ini"
FWLoadStrings() // this will load "fwstrings.ini"
We could simplify this but we need a new FWH function to return the used aStrings, so it can be modified
Fixed for next FWH version, many thanks
To quickly fix it do this:
FWSaveStrings() // this will create a "fwstrings.ini" file
// modify "fwstrings.ini"
FWLoadStrings() // this will load "fwstrings.ini"
We could simplify this but we need a new FWH function to return the used aStrings, so it can be modified