Hi,

I have enabled the module and set the permissions. The "Translate Text" button does not show up.

Regards,
Stéphane

Comments

Gábor Hojtsy’s picture

Status: Active » Postponed (maintainer needs more info)

Any javascript errors?

Chipie’s picture

No javascript errors so far.

Gábor Hojtsy’s picture

Ok, that should be the only case when this is missing from the page. Are the files for the module present in the page?

Gábor Hojtsy’s picture

And are you on a foreign language (NOT English) page to begin with?

Chipie’s picture

Ok, that should be the only case when this is missing from the page. Are the files for the module present in the page?

Which files do you mean?

And are you on a foreign language (NOT English) page to begin with?

Yes, I have selected a foreign language.

Gábor Hojtsy’s picture

l10n_client.js for example in the page header among other listed JS files.

Chipie’s picture

Yes. The files are (e.g. 10n_client.css, l10n_client.js) are included.

Gábor Hojtsy’s picture

Ok, then keep looking for JS errors, if the file is there, it should run unless JS errors happen.

Chipie’s picture

When I switch to the /admin, the button appears. Does the module work with the overlay module and the panels In-Place-Editor?

justme2013’s picture

Hi,

Having the same problem and not able to solve it in drupal 7

I have enabled this module in order to translate several string (e.g. SHOPPING CART) to WISH LIST). I don't want to translate content only string which are in Ubercart.

- Enabled module localization client, content translation
- Added a language NL, keep standard language EN default
- Check permission, but nothing to change as i'm admin
- file 10n_client.css is included in page when browsing, also l10n_client.js
- Having another JS error:
file was Is missing. This solved by putting this file on that location :-)
- Clear caches, rebuild permissions

Still not there? Any suggestions?

Chipie’s picture

Hi,

when I select the "Seven" theme as default theme, the "Translate Text" button appears.

In the bartik theme, the button is hidden:

<div id="l10n-client" class="hidden l10n-client-processed" style="height: 2em; ">

Do you know why?

Regards,
Stéphane

Chipie’s picture

This patch solved my issue:

http://drupal.org/node/1181356#comment-6161526

Regards,

Stéphane

stevieegee’s picture

I had the same problem and patch - http://drupal.org/node/1181356#comment-6161526 also solved it for me.

Anonymous’s picture

I also had this problem, I guess because I had defined in my own stylesheets the rule:
.hidden {display: none;}

I think this class name should be changed to something unique to this module.

drubb’s picture

I can confirm this, as I stumbled upon this problem using a twitter bootstrap based theme. Twitter bootstrap treats the '.hidden' class with css "display:none;visibility:hidden", so I just had to revert this:

#l10n-client {display:block;visibility:visible;}

This seems to work.

dalin’s picture

For those of you using the Panels In-Place-Editor, please see
http://drupal.org/node/1903570

I'm not sure if there are any people on this ticket still experiencing issues that are not fixed by either the above ticket, or
http://drupal.org/node/1181356#comment-6161526

inkling’s picture