auto_localize_plus 1.0.0
auto_localize_plus: ^1.0.0 copied to clipboard
Automatically generate multi-language localization JSON files (hi, ta, te, kn, ml, etc.) from a single base file. Supports fast parallel translation for Flutter and Dart projects.
import 'package:auto_localize_plus/auto_localize_plus.dart';
Future<void> main() async {
await AutoLocalize.generate(
inputPath: 'assets/en.json',
outputDir: 'assets',
languages: ['hi', 'ta'],
);
}