Summary | Inconsistent column headings in gollem |
Queue | Gollem |
Queue Version | FRAMEWORK_5_0 |
Type | Bug |
State | No Feedback |
Priority | 1. Low |
Owners | |
Requester | bennettj (at) thebennetthome (dot) com |
Created | 01/10/2015 (3851 days ago) |
Due | |
Updated | 02/05/2015 (3825 days ago) |
Assigned | 01/12/2015 (3849 days ago) |
Resolved | 02/05/2015 (3825 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
You can close this ticket.
State ⇒ Feedback
necessary. In most languages those words are wider than the associated
icons. If we want to be more consistent, we should consider removing
the header for the Type column too instead.
Priority ⇒ 1. Low
Patch ⇒ No
Milestone ⇒
Queue ⇒ Gollem
Summary ⇒ Inconsistent column headings in gollem
Type ⇒ Bug
State ⇒ Unconfirmed
In golem/manager.php You have this info for some of items that appear
as column headings:
case 'share':
$hdr['width'] = '1%';
$hdr['label'] = ' ';
$hdr['align'] = 'center';
break;
case 'edit':
$hdr['width'] = '1%';
$hdr['label'] = ' ';
$hdr['align'] = 'center';
break;
case 'download':
$hdr['width'] = '1%';
$hdr['label'] = ' ';
$hdr['align'] = 'center';
break
I'm asking to replace the  , and add the appropriate names:
$hdr['label'] = _("Share");
$hdr['label'] = _("Edit");
$hdr['label'] = _("Download);
So that all of the column headings being used are shown and give a
consistent look.
Thank you for the consideration,
John