搜索Gradle插件

name.kropp.kotlinx-gettext

所有者: Victor Kropp

从Kotlin文件中提取字符串以进行i18n并使用Gettext格式

https://github.com/kropp/kotlinx-gettext

来源: https://github.com/kropp/kotlinx-gettext

版本 0.6.1 (最新版本)

0.6.1

创建于2023年12月19日。

从Kotlin文件中提取字符串以进行i18n并使用Gettext格式

使用plugins DSL

plugins {
  id("name.kropp.kotlinx-gettext") version "0.6.1"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.6.1")
  }
}

apply(plugin = "name.kropp.kotlinx-gettext")

使用plugins DSL

plugins {
  id "name.kropp.kotlinx-gettext" version "0.6.1"
}

使用旧的插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.6.1"
  }
}

apply plugin: "name.kropp.kotlinx-gettext"

了解如何将插件应用于子项目