| | @@ -20,11 +20,11 @@ |
| 20 | 20 | ** [email protected] |
| 21 | 21 | ** http://www.hwaci.com/drh/ |
| 22 | 22 | ** |
| 23 | 23 | ******************************************************************************* |
| 24 | 24 | ** |
| 25 | | -** Code to generate the bug report listings |
| 25 | +** Code to generate the ticket listings |
| 26 | 26 | */ |
| 27 | 27 | #include "config.h" |
| 28 | 28 | #include "report.h" |
| 29 | 29 | #include <assert.h> |
| 30 | 30 | |
| | @@ -39,19 +39,19 @@ |
| 39 | 39 | int rn = 0; |
| 40 | 40 | int cnt = 0; |
| 41 | 41 | |
| 42 | 42 | login_check_credentials(); |
| 43 | 43 | if( !g.okRdTkt && !g.okNewTkt ){ login_needed(); return; } |
| 44 | | - style_header("Bug Report Main Menu"); |
| 44 | + style_header("Ticket Main Menu"); |
| 45 | 45 | if( g.okNewTkt ){ |
| 46 | | - @ <p>Enter a new bug report:</p> |
| 47 | | - @ <ol><li value="1"><a href="tktnew">New bug report</a></li></ol> |
| 46 | + @ <p>Enter a new ticket:</p> |
| 47 | + @ <ol><li value="1"><a href="tktnew">New ticket</a></li></ol> |
| 48 | 48 | @ |
| 49 | 49 | cnt++; |
| 50 | 50 | } |
| 51 | 51 | if( !g.okRdTkt ){ |
| 52 | | - @ <p>You are not authorized to view existing bug reports.</p> |
| 52 | + @ <p>You are not authorized to view existing tickets.</p> |
| 53 | 53 | }else{ |
| 54 | 54 | db_prepare(&q, "SELECT rn, title, owner FROM reportfmt ORDER BY title"); |
| 55 | 55 | @ <p>Choose a report format from the following list:</p> |
| 56 | 56 | @ <ol> |
| 57 | 57 | while( db_step(&q)==SQLITE_ROW ){ |
| | @@ -76,11 +76,11 @@ |
| 76 | 76 | @ </li> |
| 77 | 77 | } |
| 78 | 78 | } |
| 79 | 79 | @ </ol> |
| 80 | 80 | if( g.okTktFmt ){ |
| 81 | | - @ <p>Create a new bug report display format:</p> |
| 81 | + @ <p>Create a new ticket display format:</p> |
| 82 | 82 | @ <ol> |
| 83 | 83 | @ <li value="%d(cnt+1)"><a href="rptnew">New report format</a></li> |
| 84 | 84 | @ </ol> |
| 85 | 85 | } |
| 86 | 86 | style_footer(); |
| 87 | 87 | |