Hi Everyone,
I want to use testlink with persian language which is a right to left language. the testlink html editor is configured in ltr language. how can i change it to rtl?
Thanks a lot in advance
[SOLVED] change testlink editor for right to left language
Moderators: Amaradana, TurboPT, TL Developers
Re: change testlink editor for right to left language
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;
}
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;
}
Re: [SOLVED] change testlink editor for right to left langua
great!!!!!! thanks for info
Re: [SOLVED] change testlink editor for right to left langua
your welcome.
Thanks for your attention.
Thanks for your attention.
Re: [SOLVED] change testlink editor for right to left langua
Hi
Do you have any suggestion?
using firebug, I understand that below codes works, but I don't know how to change these!
Best regard!
I change these file but it doesn't work in testLink 1.9.18 (in windows).snabavi wrote: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;
}
Do you have any suggestion?
using firebug, I understand that below codes works, but I don't know how to change these!
Code: Select all
html[Attributes Style] {
direction: ltr;
unicode-bidi: isolate;
-webkit-locale: "en-gb";
}