Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Localization of ASP.NET MVC websites with GNU Gettext?

This might be an unusual question, but is there any framework or at least some helper classes that would help me use GNU Gettext for localizing a C# ASP.NET MVC website? I've been using Gettext in a previous (managed code) project and really appreciate the possibility to use PoEdit for translating the resources.

I guess this would mean coding a few HtmlHelper extension methods that can extract the resource strings from Gettext. There even seems to be some kind of C# gettext wrapper, but I wasn't able to find a manual or tutorial. Any pointers would be greatly appreciated.

Thanks,

Adrian

like image 560
Adrian Grigore Avatar asked Mar 31 '09 20:03

Adrian Grigore


2 Answers

FairlyLocal is also nice. I modified it to my own needs and am pretty happy with what it offered:

http://www.fairtutor.com/fairlylocal/

like image 176
MytyMyky Avatar answered Oct 19 '22 08:10

MytyMyky


The Mono Project website has a tutorial on how to use gettext in a C# application.

like image 23
Albic Avatar answered Oct 19 '22 07:10

Albic