Opened 19 years ago
Closed 19 years ago
#1622 closed defect (wontfix)
Superfluous capitalization of table titles in report module
Reported by: | Owned by: | daniel | |
---|---|---|---|
Priority: | lowest | Milestone: | |
Component: | report system | Version: | 0.8.1 |
Severity: | trivial | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
When one makes a report for example:
select 'Total' AS "All problems", count(*) AS 'Count of issues' from ticket where ticket.keywords like '%foobar%';
the synonyms of the fields - "All problems"
, 'Count of issues'
become the titles of the table columns in the report.
However - the first letters of the words become capitalized so what one sees is something like:
All Problems | Count Of Issues |
Total | 123 |
While this is a non-issue for English where titles are capitalized like this, it is distracting to me as a Bulgarian speaker.
Can you please stop the capitalization? If needed the users can enter the words that need capitalization themselves.
Attachments (0)
Change History (3)
comment:1 by , 19 years ago
comment:2 by , 19 years ago
This is due to the following line:
.tickets thead th { text-transform: capitalize }
in source:trunk/htdocs/css/report.css
You can override it with that line
.tickets thead th { text-transform: none }
added to your <trac env>/templates/site_css.cs
file.
comment:3 by , 19 years ago
Milestone: | 0.8.2 |
---|---|
Resolution: | → wontfix |
Status: | new → closed |
Summary: | Superfluous capitalization of table titles in query module → Superfluous capitalization of table titles in report module |
I think most people want the default capitalization, if you don't like it, you can disable it following the instructions by the previous commenter.
banana