08-13-2014, 04:27 PM
Any chance of translating the ui, log, and source code comments to Middle Babylonian Aramaic? Thanks in advance.
Also, as sparse as the ui is it's pretty straight forward to make the english strings for the ui conditional so it doesn't really require the attention of a core dev. Really you dont need to know anything about how rpcs3 works to do it, or for that matter programming, just some free time and access to google. As an example in pseudo code of the simplest way of doing it:
This is something that would be perfect for someone who doesn't know a lot about programming but wants to contribute to the project.
Also, as sparse as the ui is it's pretty straight forward to make the english strings for the ui conditional so it doesn't really require the attention of a core dev. Really you dont need to know anything about how rpcs3 works to do it, or for that matter programming, just some free time and access to google. As an example in pseudo code of the simplest way of doing it:
Code:
if lang == "en":
a = "Open File"
b = "Exit"
else if lang =="zulu"
a = "ifayela evulekile"
b = "phuma"
This is something that would be perfect for someone who doesn't know a lot about programming but wants to contribute to the project.