Page 1 of 1
Posted: 01-15-17 6:17 am
by Xoco
How can I translate Synthesia from spanish to catalan language?

Thanks.

http://en.wikipedia.org/wiki/Catalan_language

Posted: 01-15-17 5:24 pm
by Nicholas
Community translations have come up a few times now, so I just went ahead and added a forum sticky on the subject, here. You can follow those instructions to add languages. :D

Posted: 01-16-17 6:29 am
by Xoco
Thanks for quickly reply!

But I would need the file language-es.xml. It is easier for me to translate from Spanish to Catalan than from English to Catalan.

Thanks!

Posted: 01-16-17 11:45 pm
by Nicholas
Here's the Spanish translation from Synthesia 10.3.4096:

language_es.xml
Just drop that in the Synthesia data folder, choose Spanish inside the app, and then each time you make changes to the file you can just File -> Save, and then close/open Synthesia to update it with the changes.

April-2020 EDIT: Removed the out-of-date language file. See the Community Translations topic for the always-latest version.

Posted: 02-12-17 5:41 am
by Xoco
Synthesia 10.3.4091

Well, before start to translate I try edit language_es.xml for to see changes in app but to me doesn't work. I try with "language_es.xml" (underscore line) and with "language-es.xml (hyphen line*) but nothing happen.

I copy language_es.xml and languages.xml to synthesia.exe folder (program files (x86)\synthesia) and copy too colors.xml and ui.xml. I try too change some values from ui.xml like font size but nothing happen in Synthesia when I close and open again.

Obviously, if I add this line:
<language version="1" suffix="ca" code="ca-ES" display="Català" />
to languages.xml and I rename (or duplicate) language_es.xml to language_ca.xml or language-ca.xml nothing happens.

I need something more for use this modding tools?

Thank you in advance.

*In this topic viewtopic.php?f=16&t=8170 the examples are with hyphen:
Rename this file "language-[suffix].xml" using the suffix you picked above. (For French, the file should be named "language-fr.xml".)

Posted: 02-12-17 6:04 am
by Xoco
Now, reading this post viewtopic.php?f=9&t=6474 I copy all .xml modding files to "C:\Users\user\AppData\Roaming\Synthesia" and all works fine!

But I can't see special characters, I try to change the first line from language_ca.xml:
<?xml version="1.0" encoding="utf-8"?>


to
<?xml version="1.0" encoding="unicode"?>
but nothing, any suggest?

Posted: 02-12-17 6:15 am
by Xoco
Solved the special characters problem, it was a WordPad issue saving file.

Edit .xml with Microsoft Visual Studio Tools for applications 2.0 work perfectly.

Posted: 04-25-20 11:27 am
by Gregor
Hi, my name is Gregorio from Spain (Catalonia). Congratulations to all the team for the great work you are doing. I love your application.
I wanted to make an inquiry I have about adding the Catalan language to Synthesia. I have followed all the steps that I have seen, when opening the application I select the Catalan language and the following window appears with the following error:

Synthesia 10.6.5425 Error

Synthesia detected a problem and must close!

The 'language_ca' data file couldn't be loaded: Error parsing element atribute

If you contact support@synthesiagame.com we may be able to help.



Let's see if you can give me a little help to solve this problem. Thank you. Cheers! ;)

Posted: 04-25-20 1:29 pm
by Gregor
In the end I have been able to solve it, the fault is in this line, when doing the translation I eliminated the 100 without realizing it :)

<text id="recital2" v="La velocidad de la canción está establecida al 100 % y no puedes modificarla.

Posted: 04-26-20 5:37 am
by Gregor
Hello!, Would it be possible to get the ID of the text labels of the program that I show in the following images? The texts that interest me are underlined in red.My intention is to translate the missing texts into Catalan. Thank you very much to all ;)

Posted: 04-26-20 5:50 am
by Gregor
In case anyone is interested in the Catalan translation I have made, here are the attached files. To install them, just follow these steps:
1- Hold down the Shift key while starting the Synthesia application
2- Click on the Open Data Folder button
3- We copy the two attached files in the previous folder
4- Open Synthesia and change the language in the main window

Greetings to all ! ;)

Posted: 04-27-20 12:08 pm
by Gregor
Hello!, It would be possible to pass the files languages.xml and language_cat.xml to an android mobile for Synthesia to recognize. Could you tell me how it is done if possible. Thank you! ;)

Posted: 04-27-20 6:30 pm
by Nicholas
This is great work, thanks so much!
Gregor wrote: 04-26-20 5:37 am Hello!, Would it be possible to get the ID of the text labels of the program that I show in the following images?
Have you been using the language files from the Community Translations topic? Those should have the newest language strings in them. The file attached to this topic (near the top) is from 2017 so it'll be missing lines and others will have changed since then.

For things like "Microsoft GS Wavetable Synth" and "PianoMaestro", those actually come from the operating system and not Synthesia, so there isn't an easy way to translate them in advanced.
Gregor wrote: 04-27-20 12:08 pmWould it be possible to pass the files languages.xml and language_cat.xml to an android mobile for Synthesia to recognize?
Unfortunately, unless the device is rooted, this most-likely isn't possible. Sorry! It would be nice to add a feature in the future to allow easier debugging of the modding files on Android (and iPad).

Posted: 04-28-20 1:48 am
by Gregor
Thank you very much Nicholas for your great effort and dedication. Sincerely ;)

Posted: 05-15-20 1:13 pm
by Gregor
Hello !
Could someone explain to me how a small application could be created to automatically send the languages.xml and language_cat files to the Synthesia installation path.

C: \ Users \ Gregor \ AppData \ Roaming \ Synthesia

Thank you! ;)

Posted: 06-10-20 6:13 am
by Nicholas
You could use a simple Windows batch file, like this:

Code: Select all

@ECHO OFF
COPY languages.xml %APPDATA%\Synthesia\
COPY language_cat.xml %APPDATA%\Synthesia\
Alternatively, you could just edit the files right from that location in the first place.

Or were you hoping for a kind of deployment script that other users could use?

Posted: 06-10-20 4:55 pm
by Gregor
Thank you very much for the reply ;)