1

Telerik's Scheduler asp.net control got today misspelled. They put it with a lowercase t instead of uppercase T, how can I fix this?

Take a look here for a demo

Brock Adams
  • 90,639
  • 22
  • 233
  • 295
Ahmed
  • 11,063
  • 16
  • 55
  • 67
  • 4
    Actually, it's not misspelt at all. It may be miscapitalised but even that is doubtful. It's neither a proper noun not a sentence. Next, you'll complain that we can run Perl scripts by executing `perl prog.pl` :-) – paxdiablo May 25 '10 at 09:44

2 Answers2

3

Use <rad:RadScheduler Localization-HeaderToday="Today" />

Julien Lebosquain
  • 40,639
  • 8
  • 105
  • 117
0

I like Julien Lebosquain's answer better, but for variety here's a CSS solution.

.rsToday { text-transform: capitalize; }
ricksmt
  • 888
  • 2
  • 13
  • 34