I have set of options to bind to a select box.
Say the array is defined like whose content is to be bind to the dropdown.
$scope.options = [
        { City: "en", },
        { City: "nl" },
        ....
        ....
        like so
    ];
And the typical code to bind the above options
<select ng-model="selectedcity"                 
            ng-options="i.City for i in options">
</select>
This works fine.
But I would like to implement language specific options.
So what is the correct way to translate this City values and bind to dropdown.Because I have multilingual site where I would need to show the dropdowns in different languages.
 
     
    