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
how to change testlink to support right to left language
Moderators: Amaradana, TurboPT, TL Developers
Re: how to change testlink to support right to left language
you need to look for info on HTML site is the best place IMHO
Re: how to change testlink to support right to left language
Thanks.
I should change html editor (fckeditor) configuration, but i could not succeed.
I should change html editor (fckeditor) configuration, but i could not succeed.
Re: how to change testlink to support right to left language
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.
Re: how to change testlink to support right to left language
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;
}
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;
}