excel2l10n 0.1.4
excel2l10n: ^0.1.4 copied to clipboard
A tool to convert excel to l10n files.
0.0.2 #
-
Basic implement for target arb.
Currently supported:
description- Only
Stringtypeplaceholders
0.0.3 #
-
Basic implement target localizations.
What's different with target
arb:- No need to generate
.arbfile, directly generate.dartfile. - Generate
TextSpanforplaceholders. It means you can useText.richto display the value. - Other features supported are the same as target
arb.
- No need to generate
0.1.0 #
- Relaxing dart version restrictions 3.5.3->3.3.0
0.1.1 #
- Add feature escaping for target
localizations
0.1.1+1 #
- Fix escaping error when build get String method for target
localizations
0.1.2 #
-
Add feature extension for target
localizations.You can write your
excel2l10n.yamllike this:```yaml target: name: localizations genExtension: true ```to additional generate a base class for your
localizationsclass.You can write your own localizations as a supplement. And it will not be overwritten by subsequent generation operations.
0.1.2+1 #
- Fix extension error when build extension mixin for target
localizations
0.1.3 #
- Optimize generating
TextSpanfor targetlocalizations. It will not generateTextSpan(text: '').
0.1.4 #
- User
InlineSpaninstead ofTextSpanwhen generatingplaceholders.