After installing FCKeditor, normal textbox to translate will have FCKeditor appearing and hiding buttons for translating. How can I dsiable FCKeditor for l10n client window? It seems l10n client gets the path from the page, so I can use l10n client in those pages where FCKeditor is disabled by its own rules.

Comments

seutje’s picture

same problem with tinyMCE

making the l10n_client part scrollable or making it popup more if it's bigger than normal would fix this though
coz then u can reach the disable rich text editor button and the translate and copy source buttons n stuff

found a solution to my problem, dunno if this fixes urs though:

l10n_client.css adds the following:

#l10n-client {
overflow:hidden
}

so if u just override that to

#l10n_client {
overflow:auto;
}

u'll at least be able to scroll down and reach the buttons

it's not ideal, but it does the job for me ^^

fletchgqc’s picture

You can configure FCKeditor not to be displayed using the ID string that it gives you under each window.

The other alternative is to use the FCKeditor option that disables FCKeditor unless the text box is larger than e.g. 6 lines.

seutje’s picture

yeah I switched to FCKeditor

id is "edit-target"

fletchgqc’s picture

Status: Active » Closed (fixed)