Brylie Christopher Oxley
Brylie Christopher Oxley
@1u really great find!
Cool. I will manually replace them. Would a fuzzy search be able to suggest when IDs change, such as by checking approximate line number and text value?
Right, I am just thinking that IDs might need to change in some circumstances. E.g. I named my IDs to include the name of their template (such as _blogPost-submitButtonText_). If...
I am not sure where else to bring this up, but what are your thoughts on the [Meteor core i18n draft proposal](https://meteor.hackpad.com/i18n-in-Meteor-m9MhtHa8DR2)?
@gadicc it seems like our [initial keys are remaining in the translation file](https://github.com/Crowducate/crowducate-next/pull/145). Are the old keys supposed to be removed when running mf_extract? We have a distributed translation effort,...
We are basically translating an open source application by crowdsourcing the effort. Translators may or may not be familiar with Github, Git, node, etc, so the simpler we can make...
I moved `matb33:collection-hooks` directly below `aldeed:collection2` and that resolved the issue: ``` aldeed:collection2 matb33:collection-hooks ``` No other changes to ordering were necessary, where before I was getting the following error:...
After further investigation, the issue seems related to the position of `matb33:collection-hooks` and `comments` in the `.meteor/packages` file. ``` # This works matb33:collection-hooks comments ``` ``` # This breaks comments...
I have posted an issue describing the [load order of the 'comments' and 'collection-hooks' packages in yogiben:meteor-starter](https://github.com/yogiben/meteor-starter/issues/84) that may be the underlying cause of this issue.
Alright, I notice your router code looks like this: ``` JavaScript Router.waitOn(function(){ console.log('----------ROUTER waitOn subscriptions for admin'); // this is to verify in the console that this function is actually...