a pure dart package for managing app strings in dart particularly internationalization
- keep your project strings DRY
- Translate all your project strings easily on the fly with one method call
add this to your pubspec.yaml file
dependencies:
string_manager:
import 'package:string_manager/string_manager.dart';
void main() async {
StringManager stringManager = StringManager(language: 'en');
///you must initialize stringManager first
await stringManager.initialize();
///register your project strings synchronously
stringManager.reg('hello world');
///translate your strings to any language (Yoruba in this case) using google translate
await stringManager.translate(to: 'yo');
///saves your strings using hive
await stringManager.save();
print(stringManager.stringResource.resources); //output: ["Mo ki O Ile Aiye"]
await stringManager.close();
}
note that the stringManger.reg('yourString')
method returns your registered string, ie:
//...
print(stringManger.reg('hello world')); //output: hello world
//...
If you face any errors kindly create an issue, and if you wish to add a feature I will be more than happy to merge your PR