Skip to main content

Translate with Crowdin

Crowdin is a localization management platform that helps you translate your content into multiple languages. It provides a user-friendly interface for translators and project managers to work together on translations. This example configures a Tableau project to use crowding for translations:

build.gradle
tableau {
mod {
// Mod information
modid = 'modid' // Use your own modid here.
group = 'com.example' // Use your own group here.
minecraftVersion = '1.21.3' // Or any other minecraft version.
publisher = 'SomePublisher' // Use your own name here.
url = 'https://github.com/someorg/modid' // Use your own URL here.
}

crowdin {
projectId = 123455
onlyUploadOnBranchMatching = "main"
onlyBuildOnBranchMatching = "main"
exportApprovedOnly = true
skipUntranslatedFiles = true
skipUntranslatedEntries = true
}
}
note

You can find a full example of this project configuration in the Crowdin Example on GitHub.