views:

447

answers:

1

We develop asp.net webforms using visual studio 2008. For multilingual support, we translate all our text. However, when designing, we usually just enter the english text and come back to translation later (it interrupts flow of work otherwise).

I've added a "ToTranslate" tag in the options. Adding //ToTranslate: something in C# code correctly adds the entry to the Task List. I haven't however figured out how to do the same for aspx and ascx files (where most of our user text lives).

Inserting <%-- //ToTranslate: something --%> or <%-- ToTranslate: something --%> doesn't work.

Any ideas?

+7  A: 
Jonas Gorauskas
Yup, the double dash was what was keeping it from working. They don't even need their own line <% //ToTranslate: xxx %>
Mr Grieves