Owner:
The_Fireplace
A program to convert Minecraft mods' english lang files into en_UD lang files.
https://github.com/The-Fireplace/MC-en-UD-Generator
Sources: https://github.com/The-Fireplace/MC-en-UD-Generator
Version 0.4
Created 29 August 2018.
A program to convert Minecraft mods' english lang files into en_UD lang files.
Add this plugin to your build using the plugins DSL:
plugins {
id("thefireplace.en2ud") version "0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("thefireplace.en2ud:thefireplace.en2ud.gradle.plugin:0.4") }It can then be applied in the precompiled script plugin:plugins { id("thefireplace.en2ud") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("thefireplace.en2ud:thefireplace.en2ud.gradle.plugin:0.4") } } apply(plugin = "thefireplace.en2ud") - Applying plugins to all subprojects .