o5 / grido

Grido - DataGrid for Nette Framework
http://o5.github.io/grido-examples/
MIT License
90 stars 88 forks source link

makro {_'...'} využívá další argumenty => nekompatibilita s jinými slovníky implementující `ITranslator` #45

Closed pepakriz closed 11 years ago

pepakriz commented 11 years ago

Jedná se pouze o tento řádek:

{_'Items %d - %d of %d', $paginator->getCountBegin(), $paginator->getCountEnd(), $control->count}
pepakriz commented 11 years ago

Napadá mě přepsat tento řádek na:

{sprintf($template->translate('Items %d - %d of %d'), $paginator->getCountBegin(), $paginator->getCountEnd(), $control->count)}
pepakriz commented 11 years ago

Děkuji, už si to konečně rozumí s mým translátorem ;)