sync_translations 1.0.3
sync_translations: ^1.0.3 copied to clipboard
A Dart CLI tool that synchronizes translation files across multiple locales by ensuring all keys are consistent and complete between source and target files.
import 'package:sync_translations/sync_translations.dart';
/// Example: syncing translation files using the package directly.
void main() async {
await runSyncTranslations();
print('✅ Translations synced successfully!');
}