Mark Edmondson
Mark Edmondson
Also seeing this problem for our Chinese and Japanese users. I'm happy to dig in but does anyone have any ideas where to start?
We're seeing this too and probably roughly tied to our 7.0 upgrade in timing. Specifically in CI and system tests (Capybara w/Cuprite) but I did manage to replicate locally and...
I think the above turned out to be a case of a bad wait/sleep loop and `url_matches?` - it was particularly tricky to find the trace for for some reason...
You're right, there'd need to be a lazier initializer setting otherwise it'd get a bit gross adding the dataloader to each dataSet on dataSelectorChange to bypass the call to l.loadData...
Thanks for the prompt fix but I think it still exists with the latest version: http://jsfiddle.net/6g6tcbb1/2/ when the dateFormat is set unless I'm missing something?
> we only utilize the one and other pluralization keys for our strings Is this purely for a workaround for the bug noted? Can't you configure this using wildcards and...
> > Can't you configure this using wildcards and per locale settings, eg: > > Apparently not, or I did not get the suggestion > > ``` > 117 ignore_missing:...
Ah, this is supported in my PR in https://github.com/glebm/i18n-tasks/pull/596/files#diff-3a91d9f9d36a17731fb2e6a43d064bbd3d16867bd2bab2c1627eaf30defd0267R120 On main, `ignore_key?` is not checked in missing. Although I noticed I should be passing the locale in - will add...
Happy to try and debug... sounds like bad parsing of a yaml file on line 119. Is that where you have the `ignore_missing` in your config file? Any more backtrace...
@tagliala you need to stringify the ignores in your config, eg: ``` ignore_missing: ar: - '*.zero' - '*.two' - '*.few' - '*.many' ``` Going further in the backtrace pointed me...