I have a WPF application that uses the Rad Controls for WPF. On one of the windows, there is a RadDateTimePicker:
<telerik:RadDateTimePicker FontSize="{x:Static res:Car.Common_DataEntryFontSize}" FontWeight="Bold" Grid.Column="1" Grid.Row="2" Height="35" Margin="5,5,30,5" Name="BeginDatePicker" SelectedValue="{Binding Converter={StaticResource DateConverterForPicker}, Mode=TwoWay, Path=LocalBeginDate, UpdateSourceTrigger=PropertyChanged, ValidatesOnDataErrors=True}" SelectionChanged="BeginDatePicker_SelectionChanged" TabIndex="4" Validation.ErrorTemplate="{StaticResource InputErrorTemplate}" VerticalAlignment="Center" Visibility="{Binding Path=CanModify, Converter={StaticResource BoolToVisibility}}" />Everything works fine when the machine's culture is set to en-US. However, when I change my machine's culture to es-CL (Chile), the text "Enter Date" that appears in the control when it is empty does not get translated to Spanish. I still see "Enter Date".
When a date is displayed in the control, it's in the proper format for that region. How do I get the "Enter Date" to display in Spanish?