Mike Mitterer

Results 46 comments of Mike Mitterer

The latest version is a complete rewrite. It generates .arb files out of the box and fully supports Intl.messages and l10n(...) syntax. Working example: http://l10n4dart.example.mikemitterer.at/ Source for example: https://github.com/MikeMitterer/dart-l10n-gettext/tree/master/example/web ```bash...

I just tried it with this sample (quick and dirty) https://github.com/MikeMitterer/dart-sunshine/commit/2b8e773a5161ee78313f4c15c82d3d3672fcc90a As you can see I had to import 3libs in addition to mdl (mdlcore, mdlflux, mdlapplication) but it works....

Sorry, but I can't support the Dart-Version anymore. At the moment I'm porting this lib to TS. My resources are limited and I have to focus on one language.

Sorry, for the inconvenience. I upgraded l10n and loosened to constraints to analyzer to `analyzer: '>=0.32.0

I've forked Dice a while ago - https://pub.dartlang.org/packages/dryice Has D2 support and works also on the Web via reflectable

Help is always welcome!!! If you want to try it - it works so far: https://github.com/MikeMitterer/dryice/tree/reflectable I had to fork dice to *DryIce* but the interface/tests are the same. If...

Sorry, but I've already changed all my libs to use DryIce. This is a very basic and essential lib for me. A few weeks ago a change in Dice broke...

This should also work but fails in dart2js ``` dart abstract class Name { String get firstName; } class NameImpl extends Name { @override String get firstName => "Mike"; }...