Hi,
The admin user can see the translation overview table and can edit and create translations.
However, the translators cannot.
I have granted permissions on all 'nodes' to the role 'translators' but this does not appear to make any difference.
(I hope I am inquiring in the right place?)
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | TrOvPermissions.png | 21.56 KB | davecoventry |
Comments
Comment #1
drewish commenteddid you grant the per language translation overview permissions?
Comment #2
davecoventry commentedYes, I think so.
Comment #3
davecoventry commentedComment #4
drewish commentedthat looks right. what are the translators seeing? access denied errors?
Comment #5
davecoventry commentedThe translators get no menu options to edit the content.
How do I allow them to view the Translation overview table?
Comment #6
swentel commentedBeen bitten by this one too. The db_rewrite_sql() in line 371 in translation_overview.pages.inc is causing the trouble. Trying to find out why it is failing right now.
Comment #7
swentel commentedOk, found the source of the problem. I also have i18n enabled which implements hook_db_rewrite_sql adding an extra value in the where property of the SQL.
This is the query for user 1:
This is the query for a webeditor in my setup. The diff is the '(n.language ='en')'
Removing the db_rewrite_sql obviously fixes the problem, but I'm not sure if we should do that ...
Comment #8
swentel commentedNote, looks like I'm having a different error, sorry about that. I'm seeing the menu item, but I don't see any nodes listed in the overview.
Comment #9
drupaledmonk commentedI am also facing the same problem. The admin user can see the translation overview menu-link,but not the translator. When I tried to access the translation-overview-table from the translator, its fine and the page is loading. The problem is the menu-link of this doesn't show up in the navigation bar. (http://localhost/admin/content/translator_overview_manage).
Comment #10
drewish commentedWhat version are you using? Could you make sure you're on the latest version (2.4).
Comment #11
drupaledmonk commentedI am using the latest version(2.4). I also have i8n installed,maybe its causing this problem. nvm I added a link to it manually and set it to be displayed for the translator role.
Comment #12
drewish commentedOh sounds like that is because the translators don't have "access administration pages" permission they don't see the links. You could grant them that or add links manually as you did.
Comment #13
juniperphoenix commenteddavecoventry, I had the same problem. I worked around it by going into the settings for the navigation menu and dragging Translation Overview out from under the Administration heading (which the translators don't see) to become a top-level menu item in its own right.
Comment #14
drewish commented