how to change testlink to support right to left language

Ask community to help.

Moderators: Amaradana, TurboPT, TL Developers

Post Reply
snabavi
TestLink user
Posts: 12
Joined: Tue May 20, 2014 7:00 pm

how to change testlink to support right to left language

Post by snabavi »

Hi Everyone,

I want to use testlink with persian language which is a right to left language. testlink html editor is configured in ltr language. how can i change it to rtl?

Thanks a lot in advance
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: how to change testlink to support right to left language

Post by fman »

you need to look for info on HTML site is the best place IMHO
snabavi
TestLink user
Posts: 12
Joined: Tue May 20, 2014 7:00 pm

Re: how to change testlink to support right to left language

Post by snabavi »

Thanks.

I should change html editor (fckeditor) configuration, but i could not succeed.
fman
Member of TestLink Community
Posts: 3123
Joined: Tue Nov 15, 2005 7:19 am

Re: how to change testlink to support right to left language

Post by fman »

May be you can inspect options regarding BROWSER settings provided on HTML pages. If this is the case I do not know if a new option will be needed on testlink to said how rendering need to be done.
snabavi
TestLink user
Posts: 12
Joined: Tue May 20, 2014 7:00 pm

Re: how to change testlink to support right to left language

Post by snabavi »

thanks guys.

it is solved. i edit this file (/var/www/html/testlink/cfg/tl_ckeditor_config.js ) with adding 'source' and rtl bottom to config.toolbar_TestLinkMini .

and i edit /var/www/html/testlink/gui/themes/default/css/testlink.css file with adding this css text:
textarea
{
text-align: right;
direction: rtl;
}
Post Reply