Frappé has a couple of elegant and useful widgets, but some times we need to edit them to add small improvements. This small article will describe how to add new resources to the standard widgets. Let me explain first our goal: > Add `many` alternative translations in `numerous records` and in a `lot of doctypes` Look the highlighted sections in the __goal__, we have _many translations_ to add in _many records_ and in _many doctypes_, so, we heave a **many of work**, so we have a lot to do right? The answer for this question is: _-Of course not! Because we know that if one element exists in many records and in many doctypes, this element is the `Control` or `Widget`_ So, what we need do, is improve your goal based on the `Control`, to reduce our quantity of work. But, where will we find this magic element, the control? _-For now, we can look it in the JavaScript sources - let's look now at [Github](https://github.com/frappe/frappe/blob/develop/frappe/public/js/frappe/form/control.js#L13)_ > Don't worry if you don't understand the code for now, our goal there is simplify our work. Let's go ahead with the thought! We know where we need to make the changes, but how will we dismember which are the controls that are affected by our feature and which aren't ? We need to keep in mind, that `Control` are instance of `DocFields` and the `DocFields` have a field that is very important for us in this case, the field that will help us to dismember which are affected by our feature and which aren't is the field `options` in the `DocField`. _-Wait!, we understood that the field `options` can help us, but, how will it help us?_ Good question, we will define a word to put in the `options` of the `DocFields` that we need to include the feature, this world will be **`Translatable`.** > If you forget how to customize the options of a field look [this article](https://kb.erpnext.com/kb/customize/creating-custom-link-field), it can refresh your knowledge. Well, with the defined word in `options` of our selected `DocFields`, now is time to code: _-At last, we think we would never stop talking!_ frappe.ui.form.ControlData = frappe.ui.form.ControlData.$extend({ make_input: function(){ var options = this.df.options; if (!options || options!=="Translatable"){ this._super(); return; } var me = this; $('