excel2l10n 0.1.4 copy "excel2l10n: ^0.1.4" to clipboard
excel2l10n: ^0.1.4 copied to clipboard

A tool to convert excel to l10n files.

excel2l10n #

pub package

A tool to convert excel to l10n files.

Installation #

dart pub add dev:excel2l10n

Usage #

  1. Create a file named excel2l10n.yaml in your project root like this:

    platform:
        # Currently only supports feishu
        name: feishu
        # Get it on https://open.feishu.cn/
        app_id: cli_xxxxxxxxxxxxxxxx
        # Get it on https://open.feishu.cn/
        app_secret: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
        # It's your spreadsheet's token, usually in your spreadsheet url, 
        # like https://xxxxxxxxxx.feishu.cn/sheets/:spreadsheet_token
        spreadsheet_token: xxxxxxxxxxxxxxxxxxxxxxxxxxx
    # Currently supports getx and arb
    target: arb
    # The output directory
    output_dir: output
    

    If your target has additional settings, you can add them in the target section like this:

    target:
        name: arb
        # Other settings
    
    1. Details for target arb:

      • genL10nYaml: true: Whether to generate l10n.yaml file.
    2. Details for target localizations:

      • No need to generate .arb file, directly generate .dart file.
      • Generate TextSpan for placeholders. It means you can use Text.rich to display the value.
  2. Your table should look like this:

    key description en zh ...
    hello Greeting in home page Hello! 你好! ...

    The front two columns are required, and the rest are languages you want to support.

    Do not have empty columns in the middle.

  3. Run the following command in your terminal:

    dart run excel2l10n
    
1
likes
130
points
305
downloads

Publisher

verified publishernysm.dev

Weekly Downloads

A tool to convert excel to l10n files.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

args, dart_style, dio, yaml

More

Packages that depend on excel2l10n