Changing text according to culture.
Hi All,I have one responsive grid view which we design using css styles. My project is unified project when i am changing language to Spanish that responsive grid Headers should be in that language. I have spend hours but i am unable to catch it.
my css style sheet like this-
.table_ProgrammeMgr td:nth-of-type(1):before {content: "Programme:"; }
.table_ProgrammeMgr td:nth-of-type(2):before {content: "Accepted Publisher Types:"; }
.table_ProgrammeMgr td:nth-of-type(3):before {content: "Status:"; }
.table_ProgrammeMgr td:nth-of-type(4):before {content: "Publishers:"; }
i need to change text specified after content property.
How to load that text from resource file.
Thanks in advance.