=================
Language files for Pixelmon TCG
First, you need an account here on GitHub.com. Go make one if you have not already!
Got an account? Next up, you need to fork this repository by clicking the Fork button up in the top right corner. This will take you to a new page after it's finished, and the URL will be something like https://github.com/YourUsername/Pixelmon-TCG-Language
. Save that webpage, because you will probably want to go there a lot.
Now you're all set to start translating! Here's how you do it. First you need to find the language you are adding to, for this example we will look at U.S English, but obviously this will be different depending on the language you are translating TCG for. Find the .lang file for the language on your fork's main page. Can't find it? Create it! You just hit Create new file
and then copy paste everything from en_US.lang into your created file to give yourself a starting template. Make sure you name it according to the proper language code, such as fr_FR for French or es_MX for Mexican Spanish. If you're unsure what to call it, you should Google it to find out.
For now, however, let's just pretend we're working on U.S English.
Once you're in the file, you will see a very long text file. To edit it, click the little pencil on the right.
From here you will go to each lang key (the text to the left of the =) and translate the text on the right of the =. It is very important you do not change what's on the left-side of the equals sign. For example, item.itemShard.name=Orichalcum Shard
will always be item.itemShard.name=[something]
. Changing the left side will have very bad results!
Inside these language files it is important to make sure all of the achievement keys are close together. Over time, more achievements will be added, and they need to all be in the same place so people can find them. Make sure that everything is properly sorted, so everything achievement related is together, and everything item related is together, and so on. Changing this order will not break the language file, but you still shouldn't do it!
When you are finished with your changes, down the bottom you enter a title for what you have changed, and you can also add a description if you want. Then make sure you have Commit directly to the master branch
ticked, then press Commit changes
.
If you see Propose file change
instead of Commit changes
then you are not looking at your fork!
After that, you'll want to make a 'pull request'. A pull request is what you do when you want your changes to be added to the sidemod. To make one, first go to the pull request tab, then click New pull request
.
After that, it will have a few confusing parts, talking about the base and head and master. Don't touch any of that stuff, just click the nice green button saying Create pull request
. Then all you need to do is put in a helpful description, then click the Create pull request
button to create the 'PR'. Eventually, someone with permission will check your changes and accept them into the sidemod.
When someone has modified the same language file as you, you won't immediately have those changes in your fork. You need to do a pull request in the opposite direction to get updates to yours. You should do this every time you are about to translate. First off, get back to the Pull Request screen, as you need to get up to where the confusing Head and Base stuff was. Then, change the left repository (The "base") to your repository. It will do a little bit of thinking and then show a slightly different page, but then click the Compare across forks link.
Now you just change the "head" to Pixelmon/Pixelmon-TCG-Language. What this does is moves all recent changes from the official repository into your fork. It should end up looking something like this (except instead of "Hiroku" it will have your username!)
Create the pull request - there should be no need to change the title or description.
After you've clicked to create the pull request, it will take you to a page where you need to hit "Merge pull request" which is once again a very nice green button.
Press confirm, and it's done! You've updated your fork. Happy translating!