fluent_translate 0.0.1 copy "fluent_translate: ^0.0.1" to clipboard
fluent_translate: ^0.0.1 copied to clipboard

Offline translation engine for Flutter with layered processing, dictionary/phrase management, and JSON-file based storage.

fluent_translate #

Offline translation engine for Flutter with JSON/JSONL file-based storage.

Note: This is an early test version. APIs and behavior may change.

Installation #

dependencies:
  fluent_translate: ^0.0.1

Quick start #

import 'package:fluent_translate/src/core/translation_engine.dart';

final engine = TranslationEngine.instance(reset: true);
await engine.initialize(customDatabasePath: './translation_data');

final result = await engine.translate(
  'Hello world',
  sourceLanguage: 'en',
  targetLanguage: 'ru',
);
print(result.translatedText);

License #

MIT (for testing purposes).

0
likes
0
points
34
downloads

Publisher

unverified uploader

Weekly Downloads

Offline translation engine for Flutter with layered processing, dictionary/phrase management, and JSON-file based storage.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, path

More

Packages that depend on fluent_translate