Spanish Translation

Discussion and planning of required developer support for multiple languages, and design and commentary on tools and techniques to assist with the automation of generating language specific structures.
Post Reply
MC707
Venturer
Venturer
Posts: 555
Joined: Sun Jan 18, 2009 5:18 am
Location: Quito, Ecuador.
Contact:

Spanish Translation

Post by MC707 »

Does anybody know if there is the spanish version of VS? I ask because I searched the forums a bit, but found no confirmation that somebody is done translating VS to spanish. Maybe I could help doing the translation, but (from what I've heard of) you need some C++ or python knowledge (which I don't possess). My skills in spanish and english are pretty damn good, so I think I could translate the game.

EDIT
I will be translating (slowly, I am alone) in a period of time. Anyone willing to help is free to do so. Note if anyone helps me, I will moderate whatever is translated before I give that to an administrator so he/she put it in SVN (I think). I will moderate since some people might want to "help" using a translation program, which in my experience is terrible for translating.
Translation Progress:
- Aera communications done.
- Andolian communications done.
My Machine: OS: Ubuntu 8.10 (intrepid) 64 bit in a 500GB Maxtor HD @ 7200 RPM, Windows Vista PsyChoses Edition 2009 32 bit in a 500GB Samsung HD @ 7200 RPM CPU: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GPU: nVidia GeForce 9400 GT @ 1024 MB RAM: 3891 MB
Earthlings|The End of the Internet?|FreeWebsite
loki1950
The Shepherd
Posts: 5841
Joined: Fri May 13, 2005 8:37 pm
Location: Ottawa
Contact:

Re: Spanish Translation

Post by loki1950 »

The only Python code involved is because some of the strings that need translating are in Python scripts so some knowledge is needed but no much the rest are in csv and xml files.

Enjoy the Choice :)
my box::HP Envy i5-6400 @2Q70GHzx4 8 Gb ram/1 Tb(Win10 64)/3 Tb Mint 19.2/GTX745 4Gb acer S243HL K222HQL
Q8200/Asus P5QDLX/8 Gb ram/WD 2Tb 2-500 G HD/GF GT640 2Gb Mint 17.3 64 bit Win 10 32 bit acer and Lenovo ideapad 320-15ARB Win 10/Mint 19.2
MC707
Venturer
Venturer
Posts: 555
Joined: Sun Jan 18, 2009 5:18 am
Location: Quito, Ecuador.
Contact:

Re: Spanish Translation

Post by MC707 »

Soooo.... what do I do to translate? I mean, which files do I modify or what? and who would I send the files?
My Machine: OS: Ubuntu 8.10 (intrepid) 64 bit in a 500GB Maxtor HD @ 7200 RPM, Windows Vista PsyChoses Edition 2009 32 bit in a 500GB Samsung HD @ 7200 RPM CPU: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GPU: nVidia GeForce 9400 GT @ 1024 MB RAM: 3891 MB
Earthlings|The End of the Internet?|FreeWebsite
loki1950
The Shepherd
Posts: 5841
Joined: Fri May 13, 2005 8:37 pm
Location: Ottawa
Contact:

Re: Spanish Translation

Post by loki1950 »

I would keep all the files that you have translated in one place the German guys used a svn repo here on sourceforge as a separate project but think about it for a while and you may attract some helpers if they see activity here on the forum :wink:

Enjoy the Choice :)
my box::HP Envy i5-6400 @2Q70GHzx4 8 Gb ram/1 Tb(Win10 64)/3 Tb Mint 19.2/GTX745 4Gb acer S243HL K222HQL
Q8200/Asus P5QDLX/8 Gb ram/WD 2Tb 2-500 G HD/GF GT640 2Gb Mint 17.3 64 bit Win 10 32 bit acer and Lenovo ideapad 320-15ARB Win 10/Mint 19.2
MC707
Venturer
Venturer
Posts: 555
Joined: Sun Jan 18, 2009 5:18 am
Location: Quito, Ecuador.
Contact:

Re: Spanish Translation

Post by MC707 »

Ok so I send the files to you as attachments or something? Oh, and I assume only the data folder needs translation?
Yes, some little help would be nice :) I would lead of course :wink: I'm feeling alone though :cry:
My Machine: OS: Ubuntu 8.10 (intrepid) 64 bit in a 500GB Maxtor HD @ 7200 RPM, Windows Vista PsyChoses Edition 2009 32 bit in a 500GB Samsung HD @ 7200 RPM CPU: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GPU: nVidia GeForce 9400 GT @ 1024 MB RAM: 3891 MB
Earthlings|The End of the Internet?|FreeWebsite
ace123
Lead Network Developer
Lead Network Developer
Posts: 2560
Joined: Sun Jan 12, 2003 9:13 am
Location: Palo Alto CA
Contact:

Re: Spanish Translation

Post by ace123 »

Any luck with this?
It's up to you how you want to do this. If you want you can make a sourceforge project like the german translation did.
Or, you can email or upload them and send to one of the developers--it's easy to make branches in subversion that hold the translated data.

The cleaner you make your format, the easier it will be. You can start with the simple XML files, or you can go directly to the Python code, and to translate strings, you can do something like this:

Code: Select all

all_strings = {'en': {
    "cargomissiondesc": "This cargo mission will cost %f and go to the system %s",
    },
    'es': {
    "cargomissiondesc": "Esta misión tendrá un costo de carga %f e ir al sistema de %s", # (Sorry if this makes no sense -- I ran it through google translate)
    }
  }
LANG='es'
strings = all_strings[LANG]
And then where you see that text, replace it with strings["cargomissiondesc"]

But python code may be tricky to start with so you can try some of the other text--the way I pick something is to play the game and see something that strikes me as important to get translated. For example the help text on screen, or maybe the communictations, or the bartender's speech. Don't waste your time translating stuff that nobody ever will see!
MC707
Venturer
Venturer
Posts: 555
Joined: Sun Jan 18, 2009 5:18 am
Location: Quito, Ecuador.
Contact:

Re: Spanish Translation

Post by MC707 »

Thanks for the help ace!!! :D Yes, as you said I began with simple XML files, communications specifically. I started and have done quite a number of comm translations, so I will keep updating the list of translated stuff in my first post of this thread. Again, thanks for your help ace. Might learn a bit of python as well :wink:
My Machine: OS: Ubuntu 8.10 (intrepid) 64 bit in a 500GB Maxtor HD @ 7200 RPM, Windows Vista PsyChoses Edition 2009 32 bit in a 500GB Samsung HD @ 7200 RPM CPU: Intel(R) Core(TM)2 Quad CPU Q6600 @ 2.40GHz GPU: nVidia GeForce 9400 GT @ 1024 MB RAM: 3891 MB
Earthlings|The End of the Internet?|FreeWebsite
NeilStrauss
Insys Pilot
Insys Pilot
Posts: 2
Joined: Sun Feb 17, 2008 7:08 pm

Re: Spanish Translation

Post by NeilStrauss »

MC707, I could help you with it. Ask me.
Post Reply