i am doing this.. http://drupal.org/node/166379

can anyone please tell me how i can go about translating the numbers? on the list i still see 1. 2. 3.... cant seem to find them... i use potx to translate...

Comments

prameya’s picture

this is what i mean... that list... http://labs.cjreport.com/nepali/ is still in english

www.CJReport.com | Citizen Journalism Report

vm’s picture

xmacinfo’s picture

You simply see the number generated by the standard < ol > tag. This is language independant.

You may have to use a specially constructed web browser that will display arabic numbers (1, 2, 3...) in another alphabet.

Using CSS you can change the display of < ol > list to letters instead of numbers. Try:

ol {
	list-style-type: lower-alpha;
}
klonos’s picture