language_helper_generator 0.1.3 copy "language_helper_generator: ^0.1.3" to clipboard
language_helper_generator: ^0.1.3 copied to clipboard

unlisted

Help you to create a base structure for [language_helper](https://pub.dev/packages/language_helper)

Language Helper Generator #

Features #

  • Create a base structure for language_helper.

  • This runner will get all the texts that using language_helper extensions (tr, trP, trT, trF) and translate method then creating a base structure for [LanguageData].

Usage #

Install language_helper_generator to your pubspec.yaml dev dependencies:

dev_dependencies:
  language_helper_generator: ^latest

Run this command to generate the language from current project.

dart run language_helper_generator

This command will generate a structure base files with this format:

|-- .lib
|   |--- resources
|   |    |--- language_helper
|   |    |    |--- _language_data_abstract.g.dart
|   |    |    |--- language_data.dart
  • _language_data_abstract.g.dart: Contains your base language from your all .dart files. This file will be re-generated when you run the command.
  • language_data.dart: Modifiable language data because it's only generated 1 time.

In the _language_data_abstract.g.dart, data will be shown like this:

const analysisLanguageData = {
  ///==============================================
  /// Path: page_1/page_1.dart
  ///==============================================
  'This is a "quoted" string 1': 'This is a "quoted" string 1',
  'This is a string with @{num} parameters 1': 'This is a string with @{num} parameters 1',
  "This is a 'quoted' string 1": "This is a 'quoted' string 1",
  "Hello, world! 1": "Hello, world! 1",
  // 'This text contains variable $text7': 'This text contains variable $text7',  // Commented reason: Contains variable

  ///==============================================
  /// Path: page_1/page_2.dart
  ///==============================================
  // 'This is a "quoted" string 1': 'This is a "quoted" string 1',  // Commented reason: Duplicated
  'This is a string with @{num} parameters 2': 'This is a string with @{num} parameters 2',
  "This is a 'quoted' string 2": "This is a 'quoted' string 2",
  // "Hello, world! 1": "Hello, world! 1",  // Commented reason: Duplicated
}

In the language_data.dart, data will be shown like this:

LanguageData languageData = {
  // TODO: You can use this data as your main language, remember to change this code to your base language code
  LanguageCodes.en: analysisLanguageData,
};

You can use the analysisLanguageData as your main language if you feel it's detailed enough. After that, you can update your other languages by looking at the _language_data_abstract.g.dart. This file will contains all the texts that ending with the supported extensions of LanguageHelper.

If you don't want to use analysisLanguageData as your main language, you can use it for analysis by adding it to the initial like this:

  await LanguageHelper.instance.initial(
    data: data, // <--- This is your data
    analysisKeys: analysisLanguageData.keys, // <--- This is the generated data
    initialCode: LanguageCodes.en,
    isDebug: !kReleaseMode,
  );

Contributions #

The package is currently in its early development stage and may have bugs. If you have any questions, please don't hesitate to file an issue. We are also open to pull requests.

0
likes
0
pub points
27%
popularity

Publisher

verified publisherlamnhan.dev

Help you to create a base structure for [language_helper](https://pub.dev/packages/language_helper)

Repository (GitHub)
View/report issues

License

unknown (license)

More

Packages that depend on language_helper_generator