Hi. I create a resx file according cuture "es-VE" (RadScheduler.Main.es_VE.resx in my App_GlobalResources) but some items as "Day", "Week", Month", "today" links appears in english(I want them in spanish). Also I set in my Page_Load
| Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load |
| Me.RadScheduler1.Culture = New CultureInfo("es-VE") |
| End Sub |
5 Answers, 1 is accepted
0
Hello Yamil,
Please, see step 4 from the Translating Strings topic. You need to translate the values to Spanish yourself.
Greetings,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Please, see step 4 from the Translating Strings topic. You need to translate the values to Spanish yourself.
Greetings,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Yamil
Top achievements
Rank 1
answered on 25 Apr 2008, 04:34 PM
Peter I did:
1) Made a copy of the RadScheduler.Main.resx and rename RadScheduler.Main.es_VE.resx
2) Opened it and translated each entry
But still show me english terms...
1) Made a copy of the RadScheduler.Main.resx and rename RadScheduler.Main.es_VE.resx
2) Opened it and translated each entry
But still show me english terms...
0
Hello Yamil,
I attached a small demo project for reference. I translated day, week and month in the header just for an example. Please, note that when setting the Culture from code behind you need to use the following approach:
All the best,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
I attached a small demo project for reference. I translated day, week and month in the header just for an example. Please, note that when setting the Culture from code behind you need to use the following approach:
| If Not IsPostBack Then |
| Dim currentCulture As String = "es-VE" |
| RadScheduler1.Culture = New CultureInfo(currentCulture) |
| End If |
All the best,
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
0
Yamil
Top achievements
Rank 1
answered on 28 Apr 2008, 07:22 PM
Thanks a lot, Peter!
Looking the sample project I got
1) I created the file with an underscore (RadScheduler.Main.es_VE.resx) and it must be RadScheduler.Main.es-VE.resx. by the way in the chm file, at the "Translating String" page you will find a screen capture with the "hyphen" in the name of the resource file.
2) The original file RadScheduler.Main.resx must be present (I don't know why)
Best regards
Looking the sample project I got
1) I created the file with an underscore (RadScheduler.Main.es_VE.resx) and it must be RadScheduler.Main.es-VE.resx. by the way in the chm file, at the "Translating String" page you will find a screen capture with the "hyphen" in the name of the resource file.
2) The original file RadScheduler.Main.resx must be present (I don't know why)
Best regards
0
Accepted
Hi Yamil,
Thank you for the feedback. I took a note of your observations and we will update the help accordingly. The original file RadScheduler.Main.resx must be present indeed. I guees this is because of the way RadScheduler implements localization.
Thanks.
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center
Thank you for the feedback. I took a note of your observations and we will update the help accordingly. The original file RadScheduler.Main.resx must be present indeed. I guees this is because of the way RadScheduler implements localization.
Thanks.
Peter
the Telerik team
Instantly find answers to your questions at the new Telerik Support Center