File tree Expand file tree Collapse file tree 5 files changed +10
-4
lines changed
Expand file tree Collapse file tree 5 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 44
55## [ Unreleased]
66
7+ ## [ 3.0.0] (2023-03-24)
8+
79### Added
810- Supported OpenAI ChatGPT translator. [ #118 ] ( https://github.com/Airsaid/AndroidLocalizePlugin/pull/118 )
911
140142## [ 1.0.0] (2018-09-24)
141143- Initial release of the plugin.
142144
143- [ Unreleased ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...HEAD
145+ [ Unreleased ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v3.0.0...HEAD
146+ [ 3.0.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.9.0...v3.0.0
144147[ 2.9.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.8.0...v2.9.0
145148[ 2.8.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.7.0...v2.8.0
146149[ 2.7.0 ] : https://github.com/Airsaid/AndroidLocalizePlugin/compare/v2.6.1...v2.7.0
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ Android localization plugin. supports multiple languages and multiple translator
1818 - Youdao translator.
1919 - Ali translator.
2020 - DeepL translator.
21+ - OpenAI ChatGPT translator.
2122- Supports up to 100+ languages.
2223- One key generates all translation files.
2324- Support no translation of existing string.
Original file line number Diff line number Diff line change @@ -17,6 +17,7 @@ Android 本地化插件,支持多种语言和翻译器。
1717 - 有道翻译。
1818 - 阿里翻译。
1919 - DeepL 翻译。
20+ - OpenAI ChatGPT 翻译。
2021- 支持最多 100+ 语言。
2122- 一键生成所有翻译文件。
2223- 支持不翻译已经存在的 string。
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ intellij {
3333
3434// Configure Gradle Changelog Plugin - read more: https://github.com/JetBrains/gradle-changelog-plugin
3535changelog {
36- groups.set(emptyList() )
37- version .set(properties( " pluginVersion " ) )
38- header .set(" [ ${version.get()} ] ( ${date()} ) " )
36+ groups.empty( )
37+ header .set(provider { " ${version.get()} ( ${date()} ) " } )
38+ repositoryUrl .set(properties( " pluginRepositoryUrl " ) )
3939}
4040
4141tasks {
Original file line number Diff line number Diff line change 33
44pluginGroup = com.airsaid
55pluginName = AndroidLocalize
6+ pluginRepositoryUrl = https://github.com/Airsaid/AndroidLocalizePlugin
67# SemVer format -> https://semver.org
78pluginVersion = 3.0.0
89
You can’t perform that action at this time.
0 commit comments