Closed (won't fix)
Project:
ACL
Version:
6.x-1.3
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
25 Jan 2011 at 16:21 UTC
Updated:
26 Jan 2011 at 11:48 UTC
Hello
In the file acl.admin.inc,v 1.3.2.1 in the line 32 appears
'#title' => $label,
which does nor let be translated
I´ve changed to this
'#title' => t($label),
You can see the this text at URL: hxxp://www.yourweb.com/es/node/*/access
Greetings
Comments
Comment #1
salvisNo, only constant strings may be passed to t().
The client module should pass a translated string.
Comment #2
qahuama commentedOk, you were right. There is a string that can be translated:
Grant !op accessBut now one problem:
The original strings that i want to translate (hxxp://www.website.com/es/node/*/access):
After i´ve translated to Spanish I´ve got:
The three words (view, update and delete) can not be translated through Translate interface or, at least, I can find them searching for view, or update or delete.
Thanks
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Edited: Sorry, it seems is a Content Access bug:
Module: Content Access 1.2
content_access.admin.inc (line 36)
foreach (array('view', 'update', 'delete') as $op) {Thanks