Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 2.7 KB

File metadata and controls

65 lines (42 loc) · 2.7 KB

cactus-client-logo

Cactus

Fabric mod aiming at improving various aspects of Minecraft with a focus on Redstone and general Gameplay.

Translations

Repository for contributing to translation of cactusmod

Contributing Guidelines

Rules for Translation

  1. File Limitation: Only modify or add JSON files related to translations. Pull requests with changes to other files will not be merged.

  2. Debugging/Testing: Remove any debugging or testing translations that are not actually used in the mod.

  3. Translation Quality: Avoid using automatic translation tools like Google Translate for entire language files. It's acceptable for single terms, but the majority should be manually translated for accuracy.

  4. Submission Permissions: Only the creator or someone with permission from the author should submit the translation file.

Contributing

Contributing to the translation is a straightforward process. Follow these steps:

  1. Fork the Repository: Click on the "Fork" button on the top right of the GitHub repository to create your fork.

  2. Modify Language File: Add or modify your language file in the forked repository.

  3. Commit & Push Changes: Commit your changes and push them to your forked repository.

  4. Create a Pull Request (PR): Go to the original repository, navigate to the "Pull Requests" tab, and create a new pull request. Provide a clear description of your changes.

Pull Requests

If you're new to creating pull requests, here's a basic tutorial:

  1. Navigate to Repository: Go to the original Cactus Mod repository on GitHub.

  2. Fork the Repository: Click on the "Fork" button to create your own copy of the repository.

  3. Clone Your Fork: Open a terminal and clone your forked repository to your local machine using the following command:

    git clone https://github.com/your-username/cactus-mod.git
  4. Create a New Branch: Create a new branch for your changes:

    git checkout -b feature/translation-changes
  5. Make Changes: Add or modify the translation files.

  6. Commit Changes: Commit your changes with a descriptive commit message:

    git commit -m "Add/modify translation for language X"
  7. Push Changes: Push your changes to your forked repository:

    git push origin feature/translation-changes
  8. Create Pull Request: Go to the original repository on GitHub. GitHub will prompt you to create a pull request. Provide details about your changes and submit the pull request.

Thank you for contributing to the Cactus Mod translation!