localization_pro
एक डायनामिक Flutter पैकेज जो बिना किसी दिक्कत के स्थानीयकरण प्रबंधन करता है।
ahadjonovss/localization_pro open-source repository details.
{"sdk":"flutter"}^2.2.3{"sdk":"flutter"}{"sdk":"flutter"}^3.0.0यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
Logo
A dynamic Flutter package for seamless localization management.
Localization Pro simplifies the process of adding and managing multiple languages in your Flutter applications. Designed with flexibility in mind, it supports dynamic language switching, runtime translation updates, and provides a streamlined API to enhance the localization experience. Whether you're building a small app or a large scale project, Localization Pro makes it easy to deliver a localized interface that adapts to your users' languages on the fly.
Localization Pro, developed and supported by Samandar Ahadjonov in collaboration with the Uzbekistan Flutter community, provides a robust and flexible solution for managing localizations in Flutter applications. This package is designed to cater to the specific needs of developers both globally and within the vibrant tech community of Uzbekistan. Here are some of the standout features:
Supported and endorsed by the local tech community and led by Samandar Ahadjonov, Localization Pro is your go-to solution for adding efficient, dynamic localization to your Flutter apps.
Welcome to Localization Pro, the dynamic localization solution for Flutter apps. This guide will help you integrate Localization Pro into your project effortlessly.
First, you need to add Localization Pro to your project. Insert the following line into your pubspec.yaml under the dependencies section:
dependencies:
localization_pro: ^x.y.z
After updating your pubspec.yaml, run the following command to install the package:
flutter pub get
This command fetches the package and installs it into your project.
Add the following import to the Dart files where you want to use the localization features:
import 'package:localization_pro/localization_provider.dart';
The Localization Pro package offers comprehensive localization functionalities. Below is a guide on how to utilize all features in your Flutter application.
First, define the locales your application will support along with the corresponding translation files. Here's an example of how to set up supported locales and their translations:
List<SupportedTranslation> supportedTranslations = [
SupportedTranslation(name: '1', paths: {
const Locale('en', 'US'): 'assets/locales/en_US/1.json',
const Locale('uz', 'UZ'): 'assets/locales/uz_UZ/1.json',
}),
SupportedTranslation(name: '2', paths: {
const Locale('en', 'US'): 'assets/locales/en_US/2.json',
const Locale('uz', 'UZ'): 'assets/locales/uz_UZ/2.json',
}),
SupportedTranslation(name: '3', paths: {
const Locale('en', 'US'): 'assets/locales/en_US/3.json',
const Locale('uz', 'UZ'): 'assets/locales/uz_UZ/3.json',
})
];
Ensure your JSON translation files are structured properly and stored at the specified paths.
void main(){
// Run the app and wrap MyApp with LocalizationProvider
runApp(LocalizationProvider(
supportedTranslations: supportedTranslations,
initialLocale: const Locale('uz', 'UZ'),
initialTranslations: ['1'],
debugMode: true,
child: MyApp()));
}
To dynamically add or remove translations during runtime, you can use methods provided by the LocalizationManager through the context. For instance:
context.addTranslation('1');
This would load the 'settings' translation for the current locale.
context.removeTranslation('1');
This would unload the 'settings' translation from the current locale.
Change the application's locale dynamically and reload the necessary translations:
context.changeLocale(Locale('es', 'ES'));
This switches the application's locale to Spanish and loads the appropriate translations.
Note: This function is called automatically when hot reload is performed and allows new translations to be loaded without restarting the app.
context.reloadTranslations();
This will refresh all translations in the current locale.
context.reloadTranslation('translationName');
This will refresh the specific translation identified by 'translationName'.
Extend the String class to use translations easily in your UI code:
Text('home_title'.tr())
Suppose you have a translation entry that expects a name and a date. The JSON might look like this:
{
"greeting": "Hello, {name}! Today is {date}."
}
You can use the trParams method to insert dynamic values into this translation:
String greeting = 'greeting'.trParams({
'name': 'Alice',
'date': 'April 4th'
});
Text(greeting); // Displays: "Hello, Alice! Today is April 4th."
trPlural FunctionThe trPlural function is used to translate text keys into their appropriate plural forms based on the given count. This function is essential for handling pluralization in different locales.
count: The number used to determine the plural form of the translation.context: (Optional) The build context from which the locale is resolved. This is used to access the correct localized data.
Text('money'.trPlural(3))
tr FunctionThe tr function is designed to translate text keys into localized strings based on the current locale settings. It supports basic translation, context-based translation, dynamic string formatting with named arguments, and pluralization. This function is ideal for integrating localization directly within UI components like Text widgets.
key: The key corresponding to the text that needs to be translated.context: (Optional) The build context from which the locale is resolved.namedArgs: (Optional) A map of named arguments used for string formatting within the translation.count: (Optional) An integer used for handling plural forms in translations.Text Widget:// Basic translation directly in a Text widget
Text(tr('hello'))
// Translation with context in a Text widget
Text(tr('hello', context: context))
// Translation with named arguments in a Text widget
Text(tr('welcome', namedArgs: {'name': 'Alice'}))
// Translation with pluralization in a Text widget
Text(tr('cats', count: 5))
// Combined named arguments and pluralization in a Text widget
// Useful for complex translations involving both dynamic data and plural forms.
Text(tr('party_invitation', namedArgs: {'name': 'Alice', 'numberOfGuests': '5'}, count: 5))
Handling nested JSON structures allows your localization system to manage complex translation entries organized in a hierarchical manner.
Your JSON file might contain nested keys like so:
{
"settings": {
"audio": {
"volume": "Volume",
"balance": "Balance"
},
"display": {
"brightness": "Brightness",
"contrast": "Contrast"
}
}
}
Access the nested translation using dot notation:
Text('settings.audio.volume'.tr()); // Displays: "Volume"
Here are answers to some of the most common questions about the Localization Pro package:
Localization Pro?Localization Pro is a Flutter package designed to facilitate the easy management of multiple languages in Flutter applications, offering features like dynamic language switching and runtime translation updates.
Localization Pro?Add localization_pro to your pubspec.yaml file under dependencies, and run flutter pub get in your terminal.
Localization Pro in my project?After installation, import the package using import 'package:localization_pro/localization_provider.dart';, define your supported locales and translations, and use the provided APIs to manage translations and locale changes.
Yes, Localization Pro supports dynamic loading and unloading of translations at runtime without needing to restart the application.
Localization Pro?Use the changeLocale method provided by the LocalizationManager to change the language. This can be triggered by user input or any event in your application.
Localization Pro support Right-to-Left (RTL) languages?Yes, it includes full support for RTL languages, ensuring that your application can seamlessly handle languages such as Arabic and Hebrew.
Store your translation files in the assets/locales directory or any directory you prefer, but ensure to specify the correct path when setting up your SupportedTranslation instances.
Translations should be stored in JSON format, which allows for a structured and easily manageable way of handling localization data.
Localization Pro supported by the Uzbekistan Flutter community?Yes, this package is developed with the support and involvement of the Uzbekistan Flutter community, ensuring it meets the specific needs and standards of both local and international developers.
Localization Pro?Contributions are welcome! Check out the repository, submit pull requests, or report issues and feature requests on the GitHub page of the project.
Localization Pro?The package is designed to minimize performance impact through efficient caching mechanisms and dynamic loading, ensuring that localization does not negatively affect the app's performance.
Localization Pro currently requires manual handling of pluralizations and gender-specific translations within your JSON files, but we are looking to add more sophisticated linguistic features in future releases.
This FAQ section aims to clear up common questions and help developers get the most out of Localization Pro. For more detailed documentation, refer to the API reference section or the package documentation.
For support, email samandarahadjonov@gmail.com.