r1566: Fixed an issue where header names weren't translated due to the fact that...
[bugdar.git] / includes / definitions.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 $bugsys->columns = array(
23 'bugid' => 1,
24 'summary' => 2,
25 'reporter' => 4,
26 'product' => 8,
27 'component' => 16,
28 'version' => 32,
29 'status' => 64,
30 'resolution' => 128,
31 'priority' => 256,
32 'severity' => 512,
33 'lastpost' => 1024,
34 'votes' => 2048,
35 'assignedto' => 4096
36 );
37
38 $bugsys->columnNames = array(
39 'bugid' => _('ID'),
40 'summary' => _('Summary'),
41 'reporter' => _('Reporter'),
42 'product' => _('Product'),
43 'component' => _('Component'),
44 'version' => _('Version'),
45 'status' => _('Status'),
46 'resolution' => _('Resolution'),
47 'priority' => _('Priority'),
48 'severity' => _('Severity'),
49 'lastpost' => _('Last Post'),
50 'votes' => _('Votes'),
51 'assignedto' => _('Assigned To')
52 );
53
54 /*=====================================================================*\
55 || ###################################################################
56 || # $HeadURL$
57 || # $Id$
58 || ###################################################################
59 \*=====================================================================*/
60 ?>