I am faced with a situation where my input elements have language filters attached to them. However, I only want to send the English version back to the server. Currently, this is what I have:
<select ng-model='dropdownModel'>
<option>{{'some text' | translate}}</option>
</select>
But when submitting, I want to make sure that only the English version is sent and not any other translated text like French. Alternatively, I simply want the model to remain as 'some text' regardless of the filter applied. The same requirement applies to other input elements as well.