Extension for Nette Framework: Some of form controls modified (no-translate select box options, checkbox list, changeable label text input, etc)
extensions:
controls: Ublaboo\Controls\DI\ExtensionsExtension
This control allows translating input names but not datio titles
$form->addNotTranslatableRadioList('Name', $values);
The same, but with Selet and it's options
$form->addNotTranslatableSelect('Name', $options);
You know, when you want to change input's label for example in form factory, the label stays unchanged when rendering form in template. This can be changed by using TextInputCustomLabel
:
$form->addTextCustomLabel('name', 'Name');