Posted by pebosi on June 24, 2009 at 9:50am
Jump to:
| Project: | Keyboard shortcut utility |
| Version: | 6.x-1.1 |
| Component: | Code |
| Category: | bug report |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | fixed |
Issue Summary
Small patch to remove use of t() in menu.
regards
| Attachment | Size |
|---|---|
| shortcut_menu.patch | 793 bytes |
Comments
#1
Removing the use of t() function is actually against the recommendations of Drupal, this would eliminate support for internationalization.
The use is also promoted in the guides http://api.drupal.org/api/drupal/developer--topics--forms_api_reference....
Will not fix, it is the way has to be.
~Nestor
#2
This patch is actually correct.
In Drupal 6 and higher, titles and descriptions should not be translated in hook_menu(), since they are translated later on display. See http://api.drupal.org/api/drupal/developer--hooks--core.php/function/hoo...
#3
Implemented. Will be available in the next version