I read a lot of documentation on how to create an internationalized ASP.NET application using C # 3.5. All of them seem to give the general impression that disabling the font and linking the fonts will make font selection easy.
However, the documentation, which, it seems to me, implies that on Windows it will be fine, but does not mention other OSs, for example, for Mac and Linux.
There is no font that supports all characters for all languages, but if your clients use Windows 2000 or later, it is enough to use one font in the entire application due to font binding and discarding the font. This means that your system will determine the font suitable for the machine culture. ( source )
Will it magically work on Mac / Linux, or is there some additional issues with supporting these platforms?
source
share