在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):davidsdearaujo/localization开源软件地址(OpenSource Url):https://github.com/davidsdearaujo/localization开源编程语言(OpenSource Language):Dart 38.2%开源软件介绍(OpenSource Introduction):LocalizationPackage to simplify in-app translation. InstallUse the Localization package together with **flutter_localization. Add in your dependencies:
flutter_localizations:
sdk: flutter
localization: <last-version>
flutter:
# json files directory
assets:
- lib/i18n/ Now, add the delegate in MaterialApp or CupertinoApp and define a path where the translation json files will be: @override
Widget build(BuildContext context) {
// set json file directory
// default value is 'lib/i18n'
LocalJsonLocalization.delegate.directory = 'lib/i18n';
return MaterialApp(
localizationsDelegates: [
// delegate from flutter_localization
GlobalMaterialLocalizations.delegate,
GlobalWidgetsLocalizations.delegate,
GlobalCupertinoLocalizations.delegate,
// delegate from localization package.
LocalJsonLocalization.delegate,
],
home: HomePage(),
);
} Json filesThe json file pattern must have the name of the locale and its content must be a json of key and value ONLY.
Create the files in the directory configured (
See an example of a translation json file: en_US.json {
"welcome-text": "This text is in english"
} es_ES.json {
"welcome-text": "Este texto esta en español"
} pt_BR.json {
"welcome-text": "Este texto está em português"
} UsingFor convenience, the i18n() method has been added to the String class via extension. So just add the translation json file key as string and use i18n() method to bring up the translation. String text = 'welcome-text'.i18n();
print(text) // prints 'This text is in english' We can also work with arguments for translation. Use %s notion: {
"welcome-text": "Welcome, %s"
} String text = 'welcome-text'.i18n(['Peter']);
print(text); // Welcome, Peter
The %s notation can also be retrieved positionally. Just use %s0, %s1, %s2... THAT`S IT! Additional settingsAfter installation, the Localization package is fully integrated into Flutter and can reflect changes made natively by the SDK. Here are some examples of configurations that we will be able to do directly in MaterialApp or CupertinoApp. Add supported languagesThis setting is important to tell Flutter which languages your app is prepared to work with. We can do this by simply adding the Locale in the supportedLocales property: return MaterialApp(
supportedLocales: [
Locale('en', 'US'),
Locale('es', 'ES'),
Locale('pt', 'BR'),
],
...
); Locale resolutionOften we will not have to make some decisions about what to do when the device language is not supported by our app or work with a different translation for different countries (eg pt_BR(Brazil) and pt_PT(Portugal). For these and other decisions we can use the dsdsk property to create a resolution strategy: return MaterialApp(
localeResolutionCallback: (locale, supportedLocales) {
if (supportedLocales.contains(locale)) {
return locale;
}
// define pt_BR as default when de language code is 'pt'
if (locale?.languageCode == 'pt') {
return Locale('pt', 'BR');
}
// default language
return Locale('en', 'US');
},
...
); Localization UIWe have an application to help you configure your translation keys. The project is also open-source, so be fine if you want to help it evolve! Features and bugsThe Segmented State Standard is constantly growing. Let us know what you think of all this. If you agree, give a Star in that repository representing that you are signing and consenting to the proposed standard. Questions and ProblemsThe issues channel is open for questions, to report problems and suggestions, do not hesitate to use this communication channel.
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论