You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(34) |
Aug
(215) |
Sep
(180) |
Oct
(135) |
Nov
(105) |
Dec
(81) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(76) |
Feb
(22) |
Mar
(154) |
Apr
(149) |
May
(128) |
Jun
(94) |
Jul
(14) |
Aug
(24) |
Sep
(77) |
Oct
(52) |
Nov
(22) |
Dec
(6) |
| 2003 |
Jan
(4) |
Feb
(10) |
Mar
(6) |
Apr
(29) |
May
(10) |
Jun
(37) |
Jul
(39) |
Aug
(13) |
Sep
(23) |
Oct
(3) |
Nov
(7) |
Dec
(2) |
| 2004 |
Jan
|
Feb
(10) |
Mar
(4) |
Apr
|
May
(35) |
Jun
(4) |
Jul
(17) |
Aug
(6) |
Sep
(14) |
Oct
(18) |
Nov
(2) |
Dec
(14) |
| 2005 |
Jan
(9) |
Feb
(30) |
Mar
(6) |
Apr
|
May
(38) |
Jun
(23) |
Jul
(21) |
Aug
(76) |
Sep
(50) |
Oct
(51) |
Nov
(13) |
Dec
|
|
From: Benjamin C. <bc...@us...> - 2004-09-07 13:26:42
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26376/templates/default Modified Files: Tag: htmltemplates bugdisplay.html Log Message: Fixes bug #1023541 - br tags from nl2br() getting clobbered by htmlspecialchars. Index: bugdisplay.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v retrieving revision 1.45.4.5 retrieving revision 1.45.4.6 diff -u -r1.45.4.5 -r1.45.4.6 --- bugdisplay.html 4 Sep 2004 20:39:57 -0000 1.45.4.5 +++ bugdisplay.html 7 Sep 2004 13:26:31 -0000 1.45.4.6 @@ -248,14 +248,14 @@ <td><?php echo translate("Posted by"); ?>: <?php echo maskemail($reporter); ?> <br> <?php echo translate("Date"); ?>: <?php echo date(TIME_FORMAT.' '.DATE_FORMAT, $created_date); ?></td> </tr><tr> - <td><?php echo stripslashes(htmlspecialchars(format_comments(nl2br($description)))); ?> <br><br></td> + <td><?php echo nl2br(stripslashes(htmlspecialchars(format_comments($description)))); ?> <br><br></td> </tr> <?php for ($i = 0, $ccount = count($comments); $i < $ccount; $i++) { ?> <tr class="alt"> <td><?php echo translate("Posted by"); ?>: <?php echo maskemail($comments[$i]['login']); ?> <br> <?php echo translate("Date"); ?>: <?php echo date(TIME_FORMAT.' '.DATE_FORMAT, $comments[$i]['created_date']); ?></td> </tr><tr> - <td><?php echo stripslashes(htmlspecialchars(format_comments(nl2br($comments[$i]['comment_text'])))); ?> <br><br></td> + <td><?php echo nl2br(stripslashes(htmlspecialchars(format_comments($comments[$i]['comment_text'])))); ?> <br><br></td> </tr> <?php } ?> </table> |
|
From: Benjamin C. <php...@be...> - 2004-09-06 15:09:26
|
Sure, I'd be happy to add SQL Server support if you want to do the work. :) M. Bitner wrote: >Hello, > >I need to add SQL Server support to phpbt in order to use it at work. >Would that be something you guys would be interested in having? I'd be >happy to submit the code after I'm done if you'd like. Thank you very >much. > >Melissa > > >------------------------------------------------------- >This SF.Net email is sponsored by BEA Weblogic Workshop >FREE Java Enterprise J2EE developer tools! >Get your free copy of BEA WebLogic Workshop 8.1 today. >http://ads.osdn.com/?ad_id=5047&alloc_id=10808&op=click >_______________________________________________ >phpbt-dev mailing list >php...@li... >https://lists.sourceforge.net/lists/listinfo/phpbt-dev > > |
|
From: Benjamin C. <bc...@us...> - 2004-09-06 04:54:12
|
Update of /cvsroot/phpbt/phpbt/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11307/languages Modified Files: Tag: htmltemplates en.php Log Message: Added jpgraph error checking. Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.39.2.2 retrieving revision 1.39.2.3 diff -u -r1.39.2.2 -r1.39.2.3 --- en.php 23 Aug 2004 13:01:33 -0000 1.39.2.2 +++ en.php 6 Sep 2004 04:54:02 -0000 1.39.2.3 @@ -347,6 +347,9 @@ "Personal Page" => "Personal Page", "Logout %s" => "Logout %s", "You do not have the rights to view this project." => "You do not have the rights to view this project.", + "Unable to load JPGraph" => "Unable to load JPGraph", + "Unable to load JPGraph pie class" => "Unable to load JPGraph pie class", + "There was a problem when trying to use the JPGraph library. Please fix or disable by setting 'USE_JPGRAPH' to 'NO' on the Configuration page of the Administration Tools." => "There was a problem when trying to use the JPGraph library. Please fix or disable by setting 'USE_JPGRAPH' to 'NO' on the Configuration page of the Administration Tools.", ); ?> \ No newline at end of file |
|
From: Benjamin C. <bc...@us...> - 2004-09-06 04:54:12
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11307 Modified Files: Tag: htmltemplates index.php Log Message: Added jpgraph error checking. Index: index.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/index.php,v retrieving revision 1.39.2.5 retrieving revision 1.39.2.6 diff -u -r1.39.2.5 -r1.39.2.6 --- index.php 21 May 2004 12:27:32 -0000 1.39.2.5 +++ index.php 6 Sep 2004 04:54:03 -0000 1.39.2.6 @@ -45,8 +45,12 @@ function build_image($restricted_projects) { error_reporting(0); // Force this, just in case - include_once JPGRAPH_PATH.'jpgraph.php'; - include_once JPGRAPH_PATH.'jpgraph_pie.php'; + if (!@include_once(JPGRAPH_PATH.'jpgraph.php')) { + return '<span class="error">'.translate("Unable to load JPGraph").'</span>'; + } + if (!@include_once(JPGRAPH_PATH.'jpgraph_pie.php')) { + return '<span class="error">'.translate("Unable to load JPGraph pie class").'</span>'; + } $stats = grab_data($restricted_projects); $totalbugs = 0; @@ -66,25 +70,31 @@ // Create the Pie Graph. $graph = new PieGraph(350,200,"bug_cat_summary"); - $graph->SetShadow(); - - // Set A title for the plot - $graph->title->Set(translate("Bug Summary")); - $graph->title->SetFont(FF_FONT1,FS_BOLD); - - $graph->legend->Pos(0.03, 0.5, 'right', 'center'); - // Create - $p1 = new PiePlot($data); - $p1->value->SetFormat("%d%%"); - $p1->value->Show(); - $p1->SetLegends($legend); - $p1->SetCSIMTargets($targ,$alts); - $p1->SetCenter(0.25); - $graph->Add($p1); - $graph->Stroke('jpgimages/'.GenImgName()); - - return $graph->GetHTMLImageMap("myimagemap"). - "<img align=\"right\" src=\"jpgimages/".GenImgName()."\" ISMAP USEMAP=\"#myimagemap\" border=0>"; + include('inc/is_a.php'); + // Make sure that the library loaded and we could create the library object + if (is_a($graph,'PieGraph')) { + $graph->SetShadow(); + + // Set A title for the plot + $graph->title->Set(translate("Bug Summary")); + $graph->title->SetFont(FF_FONT1,FS_BOLD); + + $graph->legend->Pos(0.03, 0.5, 'right', 'center'); + // Create + $p1 = new PiePlot($data); + $p1->value->SetFormat("%d%%"); + $p1->value->Show(); + $p1->SetLegends($legend); + $p1->SetCSIMTargets($targ,$alts); + $p1->SetCenter(0.25); + $graph->Add($p1); + $graph->Stroke('jpgimages/'.GenImgName()); + + return $graph->GetHTMLImageMap("myimagemap"). + "<img align=\"right\" src=\"jpgimages/".GenImgName()."\" ISMAP USEMAP=\"#myimagemap\" border=0>"; + } else { + return '<span class="error">'.translate("There was a problem when trying to use the JPGraph library. Please fix or disable by setting 'USE_JPGRAPH' to 'NO' on the Configuration page of the Administration Tools.").'</span>'; + } } |
|
From: Benjamin C. <bc...@us...> - 2004-09-06 04:53:39
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11236/inc Added Files: Tag: htmltemplates is_a.php Log Message: --- NEW FILE: is_a.php --- <?php // +----------------------------------------------------------------------+ // | PHP Version 4 | // +----------------------------------------------------------------------+ // | Copyright (c) 1997-2004 The PHP Group | // +----------------------------------------------------------------------+ // | This source file is subject to version 3.0 of the PHP license, | // | that is bundled with this package in the file LICENSE, and is | // | available at through the world-wide-web at | // | http://www.php.net/license/3_0.txt. | // | If you did not receive a copy of the PHP license and are unable to | // | obtain it through the world-wide-web, please send a note to | // | li...@ph... so we can mail you a copy immediately. | // +----------------------------------------------------------------------+ // | Authors: Aidan Lister <ai...@ph...> | // +----------------------------------------------------------------------+ // // This file is originally from PEAR::PHP_Compat // Id: is_a.php,v 1.13 2004/08/19 10:09:53 aidan Exp /** * Replace function is_a() * * @category PHP * @package PHP_Compat * @link http://php.net/function.is_a * @author Aidan Lister <ai...@ph...> * @version Revision: 1.13 * @since PHP 4.2.0 * @require PHP 4.0.0 (is_subclass_of) */ if (!function_exists('is_a')) { function is_a($object, $class) { if (get_class($object) == strtolower($class)) { return true; } else { return is_subclass_of($object, $class); } } } ?> |
|
From: Benjamin C. <bc...@us...> - 2004-09-06 04:50:32
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10894/inc Modified Files: Tag: htmltemplates functions.php Log Message: Formatting Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.44.2.11 retrieving revision 1.44.2.12 diff -u -r1.44.2.11 -r1.44.2.12 --- functions.php 4 Sep 2004 20:37:45 -0000 1.44.2.11 +++ functions.php 6 Sep 2004 04:50:22 -0000 1.44.2.12 @@ -513,7 +513,7 @@ // Handle a database error function handle_db_error(&$obj) { if (!defined('RAWERROR')) { - define('RAWERROR', false); + define('RAWERROR', false); } if (!RAWERROR) { show_text('A database error has occurred'); @@ -529,10 +529,10 @@ } /* quoted-printable encoder function - This encoding has all non-ascii (say >127, <32 and =61 chracters) - encoded as "=" and it's hexadecimal value. Special case is space - (32 decimal) at the end of line, which is converted to =20, other- - wise it's not converted and it's returned as space (32 decimal). */ + This encoding has all non-ascii (say >127, <32 and =61 chracters) + encoded as "=" and it's hexadecimal value. Special case is space + (32 decimal) at the end of line, which is converted to =20, other- + wise it's not converted and it's returned as space (32 decimal). */ function qp_enc($input, $line_max = 76) { // Initialize variables |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:48:19
|
Update of /cvsroot/phpbt/phpbt/templates/default/admin In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19211/templates/default/admin Modified Files: Tag: htmltemplates wrap.html Log Message: Fix from mufasa for bug #1002677 - Wrong path for admin bug search form. Index: wrap.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/admin/wrap.html,v retrieving revision 1.23.4.2 retrieving revision 1.23.4.3 diff -u -r1.23.4.2 -r1.23.4.3 --- wrap.html 17 Nov 2003 12:41:16 -0000 1.23.4.2 +++ wrap.html 4 Sep 2004 20:48:10 -0000 1.23.4.3 @@ -4,7 +4,7 @@ <title>phpBugTracker Admin - <?php echo $page_title; ?></title> <link rel="StyleSheet" href="../styles/<?php echo $STYLE; ?>.css" type="text/css"> <link rel="stylesheet" type"text/css" href="../styles/print.css" media="print"> - <META http-equiv="Content-Type" content="text/html; charset=<?php echo CHARSET; ?>"> + <?php if (defined('CHARSET')) echo '<META http-equiv="Content-Type" content="text/html; charset='.CHARSET.'">'; ?> </head> <body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0"> <div class="nav"> @@ -12,7 +12,7 @@ <img name="title" src="<?php echo $template_path ?>/../images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"> </div> <div class="header_search"> - <form action="bug.php"> + <form action="../bug.php"> <input type="hidden" name="op" value="show"> <?php echo translate("Find Bug") ?> <input name="bugid" type="text" id="bugid" size="4"> |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:46:12
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18900/templates/default Modified Files: Tag: htmltemplates wrap.html Log Message: Fixes for undefined variables. Dynamic CHARSET. Index: wrap.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/wrap.html,v retrieving revision 1.28.4.3 retrieving revision 1.28.4.4 diff -u -r1.28.4.3 -r1.28.4.4 --- wrap.html 2 May 2004 17:06:35 -0000 1.28.4.3 +++ wrap.html 4 Sep 2004 20:46:03 -0000 1.28.4.4 @@ -1,57 +1,57 @@ <html> <head> - <META HTTP-EQUIV="Expires" CONTENT="-1"> - <title>phpBugTracker - <?php echo $page_title ?></title> - <link rel="StyleSheet" href="styles/<?php echo STYLE ?>.css" type="text/css" /> + <META HTTP-EQUIV="Expires" CONTENT="-1"> + <title>phpBugTracker - <?php echo $page_title ?></title> + <link rel="StyleSheet" href="styles/<?php echo STYLE ?>.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="styles/print.css" media="print" /> - <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> + <?php if (defined('CHARSET')) echo '<META http-equiv="Content-Type" content="text/html; charset='.CHARSET.'">'; ?> </head> <body> <div class="nav"> - <div class="header_image"> - <img name="title" src="<?php echo $template_path ?>/images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"> - </div> - <div class="header_search"> - <form action="bug.php"> - <input type="hidden" name="op" value="show"> - <?php echo translate("Find Bug") ?> - <input name="bugid" type="text" id="bugid" size="4"> - - </form> - </div> - <ul id="tabnav"> - <li><a href="index.php" style="border: none;"><?php echo translate("Home"); ?></a></li> - <li><a href="bug.php?op=add"><?php echo translate("Add a new bug"); ?></a></li> - <li><a href="query.php?op=query"><?php echo translate("Query Bugs"); ?></a></li> - <li><a href="report.php"><?php echo translate("View Reports"); ?></a></li> - <?php if (!NEW_ACCOUNTS_DISABLED && empty($_SESSION['uid'])) { ?><li><a href="newaccount.php"><?php echo translate("Create a New Account"); ?></a></li><?php } ?> - <li><a href="docs/html/userguide.html"><?php echo translate("Read Documentation"); ?></a></li> - <?php if (isset($perm) && $perm->have_perm('Administrator')) { ?><li><a href="admin/project.php"><?php echo translate("Administration Tools"); ?></a></li><?php } ?> - </ul> + <div class="header_image"> + <img name="title" src="<?php echo $template_path ?>/images/title.gif" width="500" height="50" border="0" alt="" hspace="0" vspace="0"> + </div> + <div class="header_search"> + <form action="bug.php"> + <input type="hidden" name="op" value="show"> + <?php echo translate("Find Bug") ?> + <input name="bugid" type="text" id="bugid" size="4"> + + </form> + </div> + <ul id="tabnav"> + <li><a href="index.php" style="border: none;"><?php echo translate("Home"); ?></a></li> + <li><a href="bug.php?op=add"><?php echo translate("Add a new bug"); ?></a></li> + <li><a href="query.php?op=query"><?php echo translate("Query Bugs"); ?></a></li> + <li><a href="report.php"><?php echo translate("View Reports"); ?></a></li> + <?php if (!NEW_ACCOUNTS_DISABLED && empty($_SESSION['uid'])) { ?><li><a href="newaccount.php"><?php echo translate("Create a New Account"); ?></a></li><?php } ?> + <li><a href="docs/html/userguide.html"><?php echo translate("Read Documentation"); ?></a></li> + <?php if (isset($perm) && $perm->have_perm('Administrator')) { ?><li><a href="admin/project.php"><?php echo translate("Administration Tools"); ?></a></li><?php } ?> + </ul> </div> <?php if (basename($_SERVER['SCRIPT_NAME']) != 'newaccount.php') { ?> <div class="personalarea"> <form method="post" action="<?php echo $_SERVER['SCRIPT_NAME'].($_SERVER['REQUEST_STRING'] ? '?'.$_SERVER['REQUEST_STRING'] : '') ?>"> -<?php if (!$_SESSION['uid']) { ?> - <?php if (EMAIL_IS_LOGIN) $loginlabel = translate("Email"); - else $loginlabel = translate("Login"); - ?> - <?php echo $loginerror ?> - <?php echo $loginlabel ?>: <input type="text" name="username" class="bottomnavinput" value="<?php echo $_COOKIE['phpbt_user'] ?>"> - <?php echo translate("Password") ?>: <input type="password" name="password" class="bottomnavinput"> - <input type="hidden" name="dologin" value="1"> - <input type="submit" value="<?php echo translate("Login"); ?>" class="bottomnavinput"> - <input type="submit" name="sendpass" value="<?php echo translate("Email Password"); ?>" class="bottomnavinput" title="<?php echo translate("Forgot your password? Have it sent to you") ?>"> - <?php if (RECALL_LOGIN) { ?> - <input type="checkbox" name="savecookie" value="1" <?php if (!empty($_COOKIE['phpbt_user'])) echo 'checked' ?> class="bottomnavinput" title="<?php printf(translate('Remember %s for next time'), $loginlabel) ?>"> <?php echo translate("Remember me"); ?> - <?php } ?> +<?php if (empty($_SESSION['uid'])) { ?> + <?php if (EMAIL_IS_LOGIN) $loginlabel = translate("Email"); + else $loginlabel = translate("Login"); + ?> + <?php echo !empty($loginerror) ? $loginerror : ''; ?> + <?php echo $loginlabel ?>: <input type="text" name="username" class="bottomnavinput" value="<?php echo $_COOKIE['phpbt_user'] ?>"> + <?php echo translate("Password") ?>: <input type="password" name="password" class="bottomnavinput"> + <input type="hidden" name="dologin" value="1"> + <input type="submit" value="<?php echo translate("Login"); ?>" class="bottomnavinput"> + <input type="submit" name="sendpass" value="<?php echo translate("Email Password"); ?>" class="bottomnavinput" title="<?php echo translate("Forgot your password? Have it sent to you") ?>"> + <?php if (RECALL_LOGIN) { ?> + <input type="checkbox" name="savecookie" value="1" <?php if (!empty($_COOKIE['phpbt_user'])) echo 'checked' ?> class="bottomnavinput" title="<?php printf(translate('Remember %s for next time'), $loginlabel) ?>"> <?php echo translate("Remember me"); ?> + <?php } ?> <?php } else { ?> - <?php echo translate("Bugs assigned to me"); ?>: <a href="query.php?op=mybugs&assignedto=1&open=1" title="Open"><?php echo $owner_open ?></a> / <a href="query.php?op=mybugs&assignedto=1&open=0" title="Closed"><?php echo $owner_closed ?></a> - | <?php echo translate("Bugs reported by me"); ?>: <a href="query.php?op=mybugs&reportedby=1&open=1" title="Open"><?php echo $reporter_open ?></a> / <a href="query.php?op=mybugs&reportedby=1&open=0" title="Closed"><?php echo $reporter_closed ?></a> - | <a href="user.php"><?php echo translate("Personal Page"); ?></a> - | <a href="logout.php"><?php echo printf(translate('Logout %s'), $_SESSION['uname']); ?></a> + <?php echo translate("Bugs assigned to me"); ?>: <a href="query.php?op=mybugs&assignedto=1&open=1" title="Open"><?php echo $owner_open ?></a> / <a href="query.php?op=mybugs&assignedto=1&open=0" title="Closed"><?php echo $owner_closed ?></a> + | <?php echo translate("Bugs reported by me"); ?>: <a href="query.php?op=mybugs&reportedby=1&open=1" title="Open"><?php echo $reporter_open ?></a> / <a href="query.php?op=mybugs&reportedby=1&open=0" title="Closed"><?php echo $reporter_closed ?></a> + | <a href="user.php"><?php echo translate("Personal Page"); ?></a> + | <a href="logout.php"><?php echo translate("Logout"); ?></a> <?php } ?> </form> @@ -59,7 +59,7 @@ <?php } ?> <div style="padding: 5px;"> - <?php include($content_template) ?> + <?php include($content_template) ?> </div> </body> |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:44:38
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18687/templates/default Modified Files: Tag: htmltemplates index.html Log Message: Fix from mufasa for undefined variables. Index: index.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/index.html,v retrieving revision 1.12.6.2 retrieving revision 1.12.6.3 diff -u -r1.12.6.2 -r1.12.6.3 --- index.html 23 Aug 2004 13:07:15 -0000 1.12.6.2 +++ index.html 4 Sep 2004 20:44:29 -0000 1.12.6.3 @@ -24,7 +24,7 @@ echo translate("No bugs found"); } ?> - <?php if (count($queries)) { ?> + <?php if (isset($queries) && count($queries)) { ?> <br><br> <b><?php echo translate("Saved Queries") ?></b> <br> |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:43:53
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv18562/templates/default Modified Files: Tag: htmltemplates buglist.html Log Message: Fix from mufasa for severity colors not showing. Index: buglist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v retrieving revision 1.8.6.3 retrieving revision 1.8.6.4 diff -u -r1.8.6.3 -r1.8.6.4 --- buglist.html 19 Jul 2004 13:46:41 -0000 1.8.6.3 +++ buglist.html 4 Sep 2004 20:43:43 -0000 1.8.6.4 @@ -14,7 +14,7 @@ <?php foreach ($bugs[$i] as $var => $val) { if ($var == 'bug_link_id') $bugid = $val; - elseif ($var == 'severity_color') $bgcolor == $val; + elseif ($var == 'severity_color') $bgcolor = $val; else echo '<td '.(USE_SEVERITY_COLOR ? "bgcolor='$bgcolor'" : '').'>'.format_bug_col($val, $var, $bugid, $i).'</td>'; } ?> |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:40:05
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17863/templates/default Modified Files: Tag: htmltemplates bugdisplay.html Log Message: Fixes from mufasa for undefined variables. Index: bugdisplay.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/bugdisplay.html,v retrieving revision 1.45.4.4 retrieving revision 1.45.4.5 diff -u -r1.45.4.4 -r1.45.4.5 --- bugdisplay.html 25 Feb 2004 12:39:11 -0000 1.45.4.4 +++ bugdisplay.html 4 Sep 2004 20:39:57 -0000 1.45.4.5 @@ -61,7 +61,7 @@ <input type="hidden" name="bugid" value="<?php echo $bug_id ?>"> <input type="hidden" name="projectid" value="<?php echo $project_id ?>"> <input type="hidden" name="last_modified_date" value="<?php echo $last_modified_date ?>"> - <input type="hidden" name="pos" value="<?php echo $_REQUEST['pos'] ?>"> + <input type="hidden" name="pos" value="<?php echo isset($_REQUEST['pos']) ? $_REQUEST['pos'] : ''; ?>"> <table border="0" width="100%"> <tr> <td>Bug <b>#<?php echo $bug_id ?></b> - <?php echo stripslashes($title) ?> - <a href="query.php"><?php echo translate("Return to bug list"); ?></a></td> @@ -169,7 +169,7 @@ <table border="0" cellpadding="2" cellspacing="0" width="100%"> <tr class="noprint"> <td valign="top"><?php echo translate("Additional comments"); ?>:<br><br> - <textarea name="comments" rows="6" cols="55" wrap="virtual" <?php echo $disabled ?>><?php echo $_POST['comments']; ?></textarea> + <textarea name="comments" rows="6" cols="55" wrap="virtual" <?php echo $disabled ?>><?php echo isset($_POST['comments']) ? $_POST['comments'] : ''; ?></textarea> <br><br> <div align="right"> <?php if (!empty($_SESSION['uid'])) { ?> |
|
From: Benjamin C. <bc...@us...> - 2004-09-04 20:37:53
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17540/inc Modified Files: Tag: htmltemplates functions.php Log Message: Fix from mufasa for bug #1017792 - Assignable users can show up more than once in the list if they belong to more than one assignable group. Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.44.2.10 retrieving revision 1.44.2.11 diff -u -r1.44.2.10 -r1.44.2.11 --- functions.php 20 Jul 2004 10:39:35 -0000 1.44.2.10 +++ functions.php 4 Sep 2004 20:37:45 -0000 1.44.2.11 @@ -160,10 +160,11 @@ } break; case 'owner': - $rs = $db->query("select u.user_id, login from ".TBL_AUTH_USER." u, ".TBL_USER_GROUP." ug, ".TBL_AUTH_GROUP." g where u.active > 0 and u.user_id = ug.user_id and ug.group_id = g.group_id and g.assignable > 0 order by login"); + // Added the DISTINCT SQL modifier so we don't get duplicated users in the list. (Because of being in multiple groups with assignable rights.) + $rs = $db->query("select DISTINCT u.user_id, login from ".TBL_AUTH_USER." u, ".TBL_USER_GROUP." ug, ".TBL_AUTH_GROUP." g where u.active > 0 and u.user_id = ug.user_id and ug.group_id = g.group_id and g.assignable > 0 order by login"); while ($rs->fetchInto($row)) { // either singular matches, or array matches are acceptable - if (($selected == $row['user_id']) || in_array($row['user_id'], $selected)) { + if (($selected == $row['user_id']) || (is_array($selected) && in_array($row['user_id'], $selected))) { $sel = ' selected'; } else { $sel = ''; @@ -511,7 +512,9 @@ // Handle a database error function handle_db_error(&$obj) { - define(RAWERROR, false); + if (!defined('RAWERROR')) { + define('RAWERROR', false); + } if (!RAWERROR) { show_text('A database error has occurred'); } else { |
|
From: M. B. <mo...@gm...> - 2004-09-03 21:52:42
|
Hello, I need to add SQL Server support to phpbt in order to use it at work. Would that be something you guys would be interested in having? I'd be happy to submit the code after I'm done if you'd like. Thank you very much. Melissa |
|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:09:42
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15182 Modified Files: Tag: htmltemplates include.php Log Message: Fixes bug #990887 - Redefinition of constants. Index: include.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/include.php,v retrieving revision 1.126.4.9 retrieving revision 1.126.4.10 diff -u -r1.126.4.9 -r1.126.4.10 --- include.php 3 Jul 2004 13:08:42 -0000 1.126.4.9 +++ include.php 23 Aug 2004 13:09:15 -0000 1.126.4.10 @@ -60,7 +60,7 @@ // Set up the configuration variables $rs = $db->query('select varname, varvalue from '.TBL_CONFIGURATION); while (list($k, $v) = $rs->fetchRow(DB_FETCHMODE_ORDERED)) { - define($k, $v); + if (!defined($k)) define($k, $v); } define('OPEN_BUG_STATUSES', join(', ', $db->getCol("select status_id from " . TBL_STATUS ." where bug_open = 1"))); |
|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:07:31
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv14544/templates/default Modified Files: Tag: htmltemplates index.html Log Message: Fixes bug #1000254 - Image not showing. Index: index.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/index.html,v retrieving revision 1.12.6.1 retrieving revision 1.12.6.2 diff -u -r1.12.6.1 -r1.12.6.2 --- index.html 30 Aug 2003 22:00:32 -0000 1.12.6.1 +++ index.html 23 Aug 2004 13:07:15 -0000 1.12.6.2 @@ -38,7 +38,7 @@ if (!is_writeable('jpgimages')) { echo translate("The image path is not writeable"); } else { - build_image($restricted_projects); + echo build_image($restricted_projects); } } else { ?> <b><?php echo translate("Quick Stats"); ?></b> |
|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:05:38
|
Update of /cvsroot/phpbt/phpbt/inc/db In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13944/inc/db Modified Files: Tag: htmltemplates pgsql.php Log Message: Fixes bug #1012899 - Query bug Index: pgsql.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/db/pgsql.php,v retrieving revision 1.24.4.1 retrieving revision 1.24.4.2 diff -u -r1.24.4.1 -r1.24.4.2 --- pgsql.php 25 Feb 2004 12:47:48 -0000 1.24.4.1 +++ pgsql.php 23 Aug 2004 13:05:21 -0000 1.24.4.2 @@ -6,7 +6,7 @@ 'from '.TBL_AUTH_GROUP.' ag '. 'left join '.TBL_USER_GROUP.' ug using (group_id) '. 'left join '.TBL_AUTH_USER.' using (user_id) '. - 'group by ag.group_id, group_name, locked '. + 'group by ag.group_id, group_name, locked, assignable '. 'order by %s %s', 'admin-list-oses' => 'select s.os_id, os_name, regex, sort_order, '. 'count(bug_id) as bug_count '. |
|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:01:47
|
Update of /cvsroot/phpbt/phpbt/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12766/languages Modified Files: Tag: htmltemplates en.php Log Message: Fixes bug #1005698 - User can list bugs for a project for which he has no permission to view. Original fix provided by Mufasa. Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.39.2.1 retrieving revision 1.39.2.2 diff -u -r1.39.2.1 -r1.39.2.2 --- en.php 20 Jul 2004 10:36:25 -0000 1.39.2.1 +++ en.php 23 Aug 2004 13:01:33 -0000 1.39.2.2 @@ -346,6 +346,7 @@ "Bugs reported by me" => "Bugs reported by me", "Personal Page" => "Personal Page", "Logout %s" => "Logout %s", + "You do not have the rights to view this project." => "You do not have the rights to view this project.", ); ?> \ No newline at end of file |
|
From: Benjamin C. <bc...@us...> - 2004-08-23 13:01:46
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12766 Modified Files: Tag: htmltemplates query.php Log Message: Fixes bug #1005698 - User can list bugs for a project for which he has no permission to view. Original fix provided by Mufasa. Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.98.2.9 retrieving revision 1.98.2.10 diff -u -r1.98.2.9 -r1.98.2.10 --- query.php 28 Jul 2004 13:34:25 -0000 1.98.2.9 +++ query.php 23 Aug 2004 13:01:32 -0000 1.98.2.10 @@ -100,7 +100,7 @@ $flags[] = 'b.severity_id in ('.@join(',',$severity).')'; } if (!empty($database) and isset($database[0])) { - // $database[0] can be 0, which stands for no database reported + // $database[0] can be 0, which stands for no database reported $flags[] = 'b.database_id in ('.@join(',',$database).')'; } if (!empty($site) and $site[0]) { @@ -408,8 +408,14 @@ $open = !empty($_GET['open']) ? $_GET['open'] : 0; // Make sure the page variable is numeric, if it's populated -if (!empty($_gv['page'])) $_gv['page'] = preg_replace('/[^0-9]/', '', $_gv['page']); +if (!empty($_GET['page'])) $_GET['page'] = preg_replace('/[^0-9]/', '', $_GET['page']); +// Make sure the user has permission to list bugs +if (!empty($_GET['projects']) && isset($restricted_projects) && + in_array($_GET['projects'], explode(',', $restricted_projects))) { + show_text(translate("You do not have the rights to view this project.", true)); + exit; +} if (isset($_GET['op'])) switch($_GET['op']) { case 'query' : show_query(); break; |
|
From: Benjamin C. <bc...@us...> - 2004-08-18 11:29:49
|
Update of /cvsroot/phpbt/phpbt/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15901/languages Modified Files: Tag: htmltemplates de.php Log Message: Updated for 1.0 Index: de.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/de.php,v retrieving revision 1.20 retrieving revision 1.20.4.1 diff -u -r1.20 -r1.20.4.1 --- de.php 29 Oct 2002 14:08:53 -0000 1.20 +++ de.php 18 Aug 2004 11:29:37 -0000 1.20.4.1 @@ -1,294 +1,351 @@ -<?php - -// strings-de.php - Deutsche Strings und Titel -// Translation by Stefan Plank & Stefan Kunstmann -// Translation by Mathias Leinmueller -// ------------------------------------------------------------------------ -// Copyright (c) 2001 The phpBugTracker Group -// ------------------------------------------------------------------------ -// Diese Datei ist Teil des phpBugTracker -// -// phpBugTracker ist freie Software; Sie koennen sie weiterverteilen -// und/oder veraendern unter den Bedingungen der GNU General Public License, -// publiziert durch die Free Software Foundation; entweder nach Version 2 -// der Lizenz, oder (ihrer Wahl nach) irgendeiner spaeterern Version. -// -// phpBugTracker wird in der Hoffnung verteilt, dasz es nuetzlich ist, aber -// OHNE JEDE GARANTIE; selbst ohne die eingeschloszene Garantie der -// VERMARKTBARKEIT [MERCHANTIBILITY] oder EIGNUNG FUER -// EINEN PARTIKULAEREN GEBRAUCH. Sie koennen mehr Details in der -// GNU General Public License nachlesen. -// -// Sie sollten mit dem phpBugTracker eine Kopie der -// GNU General Public License bekommen haben; wenn nicht, schreiben Sie der -// Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, -// MA 02111-1307, USA. -// ------------------------------------------------------------------------- -// $Id$ - -$STRING = array( - 'lang_charset' => 'iso8859-1', - 'nouser' => 'Dieser Benutzer extistiert nicht', - 'dupeofself' => 'Ein Bug kann kein Duplikat von sich selbst sein', - 'nobug' => 'Dieser Bug existiert nicht', - 'givesummary' => 'Bitte geben Sie einen Titel ein', - 'givedesc' => 'Bitte geben Sie eine Beschreibung ein', - 'noprojects' => 'Keine Projekte gefunden', - 'totalbugs' => 'Bugs gesamt', - 'giveemail' => 'Bitte geben Sie eine gültige E-Mail Adresse ein.', - 'givelogin' => 'Bitte geben Sie einen Login an', - 'loginused' => 'Dieser Benutzername ist bereits in Gebrauch', - 'newacctsubject' => 'phpBugTracker Login', - 'newacctmessage' => "Ihr phpBugTracker Passwort ist %s", - 'nobugs' => 'Kein Bug gefunden', - 'givename' => 'Bitte geben Sie einen Namen ein', - 'edit' => 'Bearbeiten', - 'addnew' => 'Neu hinzufügen: ', - 'nooses' => 'Keine Betriebsysteme gefunden', - 'giveinitversion' => 'Bitte geben Sie eine Initialversion für das Projekt an', - 'giveversion' => 'Bitte geben Sie eine Version ein', - 'noversions' => 'Keine Version gefunden', - 'nocomponents' => 'Keine Komponenten gefunden', - 'nostatuses' => 'Keine Status gefunden', - 'noseverities' => 'Keine Schweregrade gefunden', - 'givepassword' => 'Bitte geben Sie ein Passwort ein!', - 'nousers' => 'Keinen Benutzer gefunden', - 'bugbadperm' => 'Sie können diesen Bug nicht ändern', - 'bugbadnum' => 'Dieser Bug existiert nicht', - 'datecollision' => 'Jemand hat diesen Bug behoben seit Sie ihn gesehen haben. Die Buginformation wurde mit den letzten Änderungen erneut geladen.', - 'passwordmatch' => 'Diese Passwörter stimmen nicht -- Bitte probieren Sie es noch einmal', - 'nobughistory' => 'Es gibt keine Historie für diesen Bug', - 'logintomodify' => 'Sie müssen eingeloggt sein, um diesen Bug zu ändern.', - 'dupe_attachment' => 'Dieser Anhang existiert bereits für den Bug.', - 'give_attachment' => 'Bitte geben Sie eine Datei für den Upload an.', - 'no_attachment_save_path' => 'Konnte den Pfad zum Speichern nicht finden!', - 'attachment_path_not_writeable' => 'Konnte keine Datei im Speicherpfad erstellen', - 'attachment_move_error' => 'Es gab einen Fehler beim Bewegen der upzuloadenen Datei', - 'bad_attachment' => 'Dieser Dateianhang existiert nicht', - 'attachment_too_large' => 'Die angegebene Datei ist größer als '.number_format(ATTACHMENT_MAX_SIZE).' byte', - 'bad_permission' => 'Sie haben nicht die erforderlichen Rechte für diese Funktion', - 'project_only_all_groups' => 'Sie können keine spezifischen Gruppen angeben, wenn ALLE gewählt ist!', - 'previous_bug' => 'Letzter', - 'next_bug' => 'Nächster', - 'already_voted' => 'Sie haben für diesen Bug bereits gestimmt', - 'too_many_votes' => 'Die maximale Stimmzahl wurde bereits erreicht', - 'no_votes' => 'Für diesen Bug existieren keine Stimmen', - 'user_filter' => array( - 0 => 'Alle Benutzer', - 1 => 'Aktive Benutzer', - 2 => 'Inaktive Benutzer' - ), - 'dupe_dependency' => 'Diese Bugabhängigkeit wurde bereits hinzugefügt', - 'image_path_not_writeable' => 'In das Unterverzeichnis "jpgimages" kann vom Web-Prozess aus nicht geschrieben werden. Damit kann keine Zusammenfassungsgrafik erzeugt werden.', - 'password_changed' => 'Ihr Passwort wurde geändert', - 'prefs_changed' => 'Ihre Optionen wurden geändert', - 'databaselist' => 'Datenbankliste', - 'database' => 'Datenbank', - 'databases' => 'Datenbanken', - 'name' => 'Name', - 'description' => 'Beschreibung', - 'sortorder' => 'Sortierreihenfolge', - 'suredeletedb' => 'Sind sie sicher, dass sie diese Datenbank löschen wollen?', - 'suredeletesite' => 'Sind sie sicher, dass sie diesen Standort löschen wollen?', - 'delete' => 'Löschen', - 'version' => 'Version', - 'addnewsite' => 'Neuen Standort hinzufügen', - 'sitelist' => 'Standortliste', - 'sites' => 'Standorte', - 'QUERY' => array( - 'opt_All' => 'Alle', - 'Project' => 'Projekt', - 'Version' => 'Version', - 'Component' => 'Komponente', - 'Status' => 'Status', - 'Resolution' => 'Lösung', - 'OpSys' => 'Betriebssystem', - 'Priority' => 'Priorität', - 'Severity' => 'Schweregrad', - 'Database' => 'Datenbank', - 'ReportedOnSite' => 'Berichtet auf Standort', - 'Summary' => 'Zusammenfassung', - 'DescriptionEntry' => 'Ein Beschreibungseintrag', - 'SortBy' => 'Sortiere nach', - 'SortBy_BugNumber' => 'Bug Nummmer', - 'SortBy_Severity' => 'Schweregrad', - 'SortBy_Reporter' => 'Berichterstatter', - 'SortBy_Priority' => 'Priorität', - 'SortBy_Status' => 'Status', - 'SortAsc' => 'Aufsteigend', - 'SortDesc' => 'Absteigend', - 'SaveThisQueryAs' => 'Diese Anfrage speichern als', - 'ResetBackToDefaultQuery' => 'Auf Standardabfrage zurücksetzen', - 'SubmitQuery' => 'Abfrage absenden', - 'SavedQueries' => 'Gespeicherte Abfragen', - 'GoToThe' => 'Gehe zu der', - 'AdvancedQueryPage' => 'Erweiterte Abfrageseite', - 'SimpleQueryPage' => 'Einfache Abfrageseite', - 'SureDeleteSavedQuery' => 'Sind sie sicher, dass sie diese gespeicherte Abfrage löschen wollen?', - 'MatchingAs' => 'Übereinstimmung mit', - 'MatchingAs_Regexp' => 'Regular Expression', - 'MatchingAs_NotRegexp' => 'Keine Regular Expression', - 'MatchingAs_Substring' => 'Teilzeichenfolge', - 'MatchingAs_Exact' => 'Exakt', - 'eMail_Reporter' => 'Berichterstatter', - 'eMail_AssignedTo' => 'Zugewiesen an' - ), - 'WRAP' => array( - 'FindBug' => 'Bug suchen', - 'Home' => 'Home', - 'AddNewBug' => 'Einen neuen Bug hinzufügen', - 'QueryBugs' => 'Bugs abfragen', - 'ViewReports' => 'Berichte anzeigen', - 'Documentation' => 'Dokumentation lesen', - 'AdminTools' => 'Adminwerkzeuge', - 'CreateNewAccount' => 'Neuen Account anlegen', - 'Email' => 'Email', - 'Login' => 'Login', - 'DoLogin' => 'Login', - 'BugsAssigned' => 'Bugs assigned to me', - 'BugsReported' => 'Bugs reported by me', - 'PersonalPage' => 'Personal Page', - 'Logout' => 'Logout', - 'EmailPassword' => 'Passwort per Email', - 'RememberMe' => 'Merke mich', - ), - 'BUGFORM' => array( - 'Project' => 'Projekt', - 'Version' => 'Version', - 'Summary' => 'Zusammenfassung', - 'Description' => 'Beschreibung', - 'Severity' => 'Schweregrad', - 'Priority' => 'Priorität', - 'Site' => 'Standort', - 'Database' => 'Datenbank', - 'Component' => 'Komponente', - 'OS' => 'Betriebssystem', - 'AddAnother' => 'Einen weiteren hinzufügen', - 'Submit' => 'Absenden' - ), - 'BUGDISPLAY' => array( - 'reporter' => 'Berichterstatter', - 'returnto' => 'Zurück zu', - 'buglist' => 'Bugliste', - 'project' => 'Projekt', - 'created' => 'Erzeugt', - 'version' => 'Version', - 'closedinversion' => 'Abgeschlossen in Version', - 'tobeclosedinversion' => 'Abzuschließen in Version', - 'assignedto' => 'Zugewiesen an', - 'assignedtonobody' => 'Niemand', - 'bugdependency' => 'Abhängigkeiten', - 'blocks' => 'Blocks', - 'adddependency' => 'Abhängigkeit hinzufügen', - 'removedependency' => 'Abhängigkeit entfernen', - 'summary' => 'Zusammenfassung', - 'status' => 'Status', - 'description' => 'Beschreibung', - 'severity' => 'Schweregrad', - 'priority' => 'Priorität', - 'component' => 'Komponente', - 'resolution' => 'Lösung', - 'resolutionnone' => 'Keine', - 'addcc' => 'CC hinzufügen', - 'removeselectedcc' => 'Gewählte CCs entfernen', - 'additionalcomments' => 'Zusätzliche Kommentare', - 'attachments' => 'Anhang', - 'createattachment' => 'Anhang erzeugen', - 'suredeleteattachment' => 'Sind sie sicher, dass sie diesen Anhang löschen wollen?', - 'name' => 'Name', - 'size' => 'Größe', - 'type' => 'Typ', - 'created' => 'Erzeugt', - 'voteforthisbug' => 'Für diesen Bug stimmen', - 'viewvotes' => 'Stimmen anzeigen', - 'forthisbug' => 'für diesen Fehler', - 'viewbugactivity' => 'Bug-Aktivität anzeigen', - 'printableview' => 'Druckansicht', - 'noattachments' => 'Keine Anhänge', - 'comments' => 'Kommentare', - 'postedby' => 'Eingetragen durch', - 'date' => 'Datum', - 'dateon' => 'Am', - 'submit' => 'Absenden', - 'site' => 'Berichtet an Standort', - 'database' => 'Datenbank', - 'os' => 'OS', - 'chooseone' => 'Eines auswählen', - 'suppressemail' => 'Benachrichtigungsemail unterdrücken' - ), - 'USER_PREF' => array( - 'ReceiveNotifications' => 'Änderungen an Bugs per E-Mail erhalten', - 'ShowSavedQueries' => 'Gespeicherte Anfragen auf der Homepage anzeigen', - 'ChangePassword' => 'Passwort ändern', - 'EnterNewPassword' => 'Bitte geben sie unterhalb ihr neues Passwort zweimal ein', - 'Password' => 'Passwort', - 'Verify' => 'Bestätigen', - 'ChangePreferences' => 'Einstellungen Ändern', - 'BugListColumns' => 'Spalten der Bug-Liste', - 'ChooseFields' => 'Wählen sie die Felder, die sie in der Bug-Liste sehen wollen', - 'SureDeleteVote' => 'Sind sie sicher, dass sie diese Stimme löschen wollen?', - 'Votes' => 'Stimmen', - 'Bug' => 'Bug', - 'When' => 'Sobald', - 'ColumnPreferencesSaved' => 'Ihre Einstellugen für die Bug-Liste wurden gespeichert' ), - 'INDEX' => array( - 'FiveRecentlySubmitted' => 'Die fünf zuletzt gemeldeten Bugs', - 'FiveRecentlyClosed' => 'Die fünf zuletzt abgeschlossenen Bugs', - 'QuickStats' => 'Kurzstatistik', - 'Status' => 'Status', - 'NumberOfBugs' => '# Bugs', - 'SavedQueries' => 'Gespeicherte Abfragen' - )); - -// Page titles -$TITLE = array( - 'enterbug' => 'Geben Sie einen Bug ein', - 'editbug' => 'Bug Bearbeiten', - 'newaccount' => 'Einen neuen Account anlegen', - 'bugquery' => 'Bugsuche', - 'buglist' => 'Bugliste', - 'addcomponent' => 'Komponente hinzufügen', - 'editcomponent' => 'Komponente bearbeiten', - 'addproject' => 'Projekt hinzufügen', - 'editproject' => 'Projekt bearbeiten', - 'addversion' => 'Version hinzufügen', - 'editversion' => 'Version bearbeiten', - 'addsite' => 'Standort hinzufügen', - 'editsite' => 'Standort bearbeiten', - 'project' => 'Projekte', - 'os' => 'Betriebssysteme', - 'resolution' => 'Lösungen', - 'status' => 'Status', - 'severity' => 'Schweregrad', - 'user' => 'Benutzer', - 'home' => 'Home', - 'reporting' => 'Bericht', - 'group' => 'Guppen', - 'bugvotes' => 'Bug Abstimmung', - 'bughistory' => 'Bug Historie', - 'viewbug' => 'Bug ansehen', - 'addattachment' => 'Anhang anfügen', - 'accountcreated' => 'Account erzeugt', - 'changessaved' => 'Änderungen gespeichert', - 'preferences' => 'Benutzeroptionen', - 'usertools' => 'Benutzerwerkzeuge', - 'edituser' => 'Benutzer bearbeiten', - 'adduser' => 'Benutzer hinzufügen', - 'editstatus' => 'Status ändern', - 'addstatus' => 'Status hinzufügen', - 'editseverity' => 'Schweregrad ändern', - 'addseverity' => 'Schweregrad hinzufügen', - 'editresolution' => 'Lösung bearbeiten', - 'addresolution' => 'Lösung hinzufügen', - 'editos' => 'Betriebssystem bearbeiten', - 'addos' => 'Betriebssystem hinzufügen', - 'editgroup' => 'Gruppe bearbeiten', - 'addgroup' => 'Gruppe hinzufügen', - 'configuration' => 'Konfiguration', - 'adddatabase' => 'Datenbank hinzufügen', - 'editdatabase' => 'Datenbank bearbeiten', - 'database' => 'Datenbanken', - 'site' => 'Standorte' -); - -?> +<?php + +// de.php - German strings and titles +// ------------------------------------------------------------------------ +// Copyright (c) 2001 - 2004 The phpBugTracker Group +// ------------------------------------------------------------------------ +// This file is part of phpBugTracker +// +// phpBugTracker is free software; you can redistribute it and/or modify +// it under the terms of the GNU General Public License as published by +// the Free Software Foundation; either version 2 of the License, or +// (at your option) any later version. +// +// phpBugTracker is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU General Public License for more details. +// +// You should have received a copy of the GNU General Public License +// along with phpBugTracker; if not, write to the Free Software Foundation, +// Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. +// ------------------------------------------------------------------------ +// Translation by Jan Pilarzeck +// $Id$ + +$STRING = array( + "That attachment does not exist" => "Der Anhang existiert nicht", + "Please specify a file to upload" => "Bitte eine Datei zum Upload angeben", + "The file you specified is larger than %s bytes" => "Die angegebene Datei ist größer asl %s Bytes", + "The file you specified is larger than %d bytes" => "Die angegebene Datei ist größer asl %d Bytes", + "That bug does not exist" => "Der Fehler existiert nicht", + "That attachment already exists for this bug" => "Dieser Anhang existiert bereits für diesen Fehler", + "Couldn't find where to save the file!" => "Konnte kein Ziel zum Speichern der Datei finden!", + "Couldn't create a file in the save path" => "Konnte keine Datei im Speichern-Pfad anlegen", + "There was an error moving the uploaded file" => "Es ist ein Fehler beim Verschieben der hochgeladenen Datei aufgetreten!", + "Add Attachment" => "Anhang hinzufügen", + "You do not have the permissions required for that function" => "Sie haben nicht die erforderlichen Rechte für diese Aktion", + "Bug Votes" => "Fehler-Abstimmungen", + "You have already voted for this bug" => "Sie haben bereits für diesen Fehler abgestimmt!", + "You have reached the maximum number of votes per user" => "Sie haben die maximale Zahl an Stimmen pro User erreicht", + "There is no history for this bug" => "Für diesen Fehler gibt es keinen Verlauf", + "Bug History" => "Fehler-Verlauf", + "You can not change this bug" => "Sie können diesen Fehler nicht verändern", + "Someone has updated this bug since you viewed it. The bug info has been reloaded with the latest changes." => "Jemand hat diesen Fehler seit Ihrem letzten Besuch aktualisiert. Die Fehler-Informationen wurden mit der letzten Aktualisierung erneut geladen.", + "That user does not exist" => "Dieser Benutzer existiert nicht", + "That bug dependency has already been added" => "Die Fehler-Abhängigkeit wurde bereits hinzugefügt", + "Please enter a summary" => "Bitte eine Zusammenfassung eingeben", + "Please enter a description" => "Bitte eine Beschreibung eingeben", + "Create Bug" => "Fehler erzeugen", + "View Bug" => "Fehler anzeigen", + "No projects found" => "Keine Projekte gefunden", + "Select Project" => "Projekt auswählen", + "Invalid login" => "Ungültiges Login", + "phpBugTracker Login" => "phpBugTracker Login", + "Your phpBugTracker password is %s" => "Ihr phpBugTracker Passwort ist %s", + "Your password has been emailed to you" => "Ihr Passwort wurde Ihnen per eMail zugesandt", + "No bugs found" => "Keine Fehler gefunden", + "Bug Summary" => "Fehler-Zusammmenfassung", + "Project" => "Projekt", + "Open" => "offen", + "Total" => "Total", + "Home" => "Home", + "Please enter the host name for your database server" => "Bitte den Host-Namen des Datenbankservers eingeben", + "Please enter the name of the database you will be using" => "Bitte den Namen der Datenbank eingeben, die benutzt wird", + "Please enter the user name for connecting to the database" => "Bitte den Benutzernamen für die Datenbankverbindung eingeben", + "Please enter the phpBT email address" => "Bitte die eMail von phpBT eingeben", + "Please enter the admin login" => "Bitte das Admin-Login eingeben", + "Please use a valid email address for the admin login" => "Bitte benutzen Sie eine gültige e-Mail-Adresse für das Admin-Login", + "Please enter the admin password" => "Bitte das Admin-Passwort angeben", + "Please confirm the admin password" => "Bitte das Admin-Passwort bestätigen", + "The admin passwords don't match" => "Das Admin-Passwort stimmt nicht überein", + "Error writing to config.php" => "Konnte nicht in config.php schreiben", + "Please enter a login" => "Bitte ein Login eingeben", + "Please enter a valid email" => "Bitte eine gültige eMail angeben", + "That login has already been used" => "Das Login wird bereits verwendet", + "New account created" => "Neues Konto angelegt", + "Create new account" => "Neues Konto anlegen", + "Query Bugs" => "Fehler abfragen", + "Bug List" => "Fehlerliste", + "Assigned To" => "Zugewiesen an", + "Reporting" => "Reporting", + "Bug Counts by Date" => "Fehler nach Datum", + "Your bug list column preferences have been saved" => "Die Spalten-Einstellungen für Fehlerlisten wurden gespeichert", + "Please enter a password" => "Bitte ein Passwort eingeben", + "Those passwords don't match -- please try again" => "Die Passwörter stimmen nicht überein - bitte wiederholen", + "Password changed" => "Passwort geändert", + "Changes Saved" => "Veränderungen wurden gespeichert", + "Preferences changed" => "Einstellungen gespeichert", + "Receive notifications of bug changes via email" => "per eMail über Änderungen an Fehlern erhalten", + "Show saved queries on the homepage" => "gespeicherte Abfragen auf der Homepage anzeigen", + "User preferences" => "Benutzer-Einstellungen", + "Configuration" => "Konfiguration", + "Please enter a name" => "Bitte einen Namen eingeben", + "Edit Database" => "Datenbank bearbeiten", + "Database List" => "Datenbankliste", + "Edit Group" => "Gruppe bearbeiten", + "Group List" => "Grupppenliste", + "Edit Operating System" => "Betriebssysteme bearbeiten", + "Operating System List" => "Betriebssystemliste", + "Please enter a version" => "Bitte eine Version eingeben", + "Edit Version" => "Version bearbeiten", + "Edit Component" => "Komponente bearbeiten", + "You cannot choose specific groups when \"All Groups\" is chosen" => "Sie können keine Gruppe auswählen wenn \"Alle Gruppen\" ausgewählt ist", + "Edit Project" => "Projekt bearbeiten", + "Project List" => "Projektliste", + "Edit Resolution" => "Lösung bearbeiten", + "Resolution List" => "Lösungsliste", + "Edit Severity" => "Schweregrad bearbeiten", + "Severity List" => "Schweregradliste", + "Edit Site" => "Seite bearbeiten", + "Site List" => "Seitenliste", + "Edit Status" => "Status bearbeiten", + "Status List" => "Statusliste", + "Please enter an email" => "Bitte eine eMail eingeben", + "Edit User" => "Benutzer bearbeiten", + "User List" => "Benutzerliste", + "Name" => "Name", + "Description" => "Beschreibung", + "Owner" => "Besitzer", + "None" => "keine", + "Active" => "Aktiv", + "Submit" => "Absenden", + "Add new project" => "neues Projekt einfügen", + "Created Date" => "Erzeugungsdatum", + "Yes" => "Ja", + "No" => "Nein", + "Variable" => "Variable", + "Value" => "Wert", + "Information" => "Information", + "description" => "Beschreibung", + "Sort Order" => "Sortierreihenfolge", + "Database list" => "Datenbankliste", + "Add new database" => "neue Datenbank einfügen", + "Are you sure you want to delete this item?" => "Wollen Sie diesen Eintrag wirklich löschen?", + "Delete" => "Löschen", + "Add new group" => "neue Gruppe einfügen", + "Users" => "Benutzer", + "Locked" => "Gesperrt", + "This will remove all user assignments to this group and the group itself. Continue?" => "Dies wird alle Benutzerzugehörigkeiten und die Gruppe selbst löschen. Fortfahren?", + "This will remove all user assignments to this group. Continue?" => "Dies wird alle Benutzerzugehörigkeiten dieser Gruppe löschen. Fortfahren?", + "Purge" => "Säubern", + "Assignable" => "zuweisbar", + "Find Bug" => "Fehler finden", + "Projects" => "Projekte", + "Groups" => "Gruppen", + "Documentation" => "Dokumentation", + "User Tools" => "Benutzer-Werkzeuge", + "Statuses" => "Stati", + "Resolutions" => "Lösungen", + "Severities" => "Schweregrade", + "Operating Systems" => "Betriebssysteme", + "Databases" => "Datenbanken", + "Sites" => "Seiten", + "Regex" => "Regex", + "Add new operating system" => "neues Betriebssystem einfügen", + "Are you sure you want to delete this OS" => "Wollen Sie dieses Betriebssystem wirklich löschen?", + "Items with a Sort Order = 0 will not be selectable by users." => "Einträge mit einer Sortierreihenfolge = 0 werden durch Benutzer nicht ausgewählt werden können.", + "Only those items that have no bugs referencing them can be deleted." => "Nur Einträge, denen keine Fehler zugewiesen sind, können gelöscht werden.", + "Project Information" => "Projekt-Informationen", + "Version Information" => "Versions-Informationen", + "Initial Version" => "ursprüngliche Version", + "Component Information" => "Komponenten-Information", + "Initial Component Name" => "ursprünglicher Komponentenname", + "Only users in the following groups can see this project" => "Nur Benutzer der folgenden Gruppen können dieses Projekt sehen", + "These developers can administer this project" => "Diese Entwickler können das Projekt administrieren", + "Versions" => "Versionen", + "Add new version" => "neue Version einfügen", + "Version" => "Version", + "Created" => "Erstellt", + "No versions found" => "keine Versionen gefunden", + "Components" => "Komponenten", + "Add new component" => "neue Komponente einfügen", + "Component" => "Komponente", + "No components found" => "keine Komponenten gefunden", + "Add new resolution" => "neue Lösung einfügen", + "Are you sure you want to delete this resolution?" => "Wollen Sie wirklich diese Lösung löschen?", + "Row Color" => "Farbe der Reihe", + "Add new severity" => "neuen Schweregrad einfügen", + "Are you sure you want to delete this severity?" => "Wollen Sie wirklich diesen Schweregrad löschen?", + "Add new site" => "neue Seite einfügen", + "Open/Closed" => "Offen/Geschlossen", + "Closed" => "Geschlossen", + "Add new status" => "neuen Status einfügen", + "Login" => "Login", + "Email" => "eMail", + "First Name" => "Vorname", + "Last Name" => "Nachname", + "Password" => "Passwort", + "User Groups" => "Benutzergruppen", + "Email Notify" => "eMail-Benachrichtigung", + "Add new user" => "neuen Benutzer einfügen", + "Filter" => "Filter", + "Bug" => "Fehler", + "Reporter" => "Reporter", + "Assigned to" => "zugewiesen an", + "Status" => "Status", + "Resolution" => "Lösung", + "Severity" => "Schweregrad", + "Priority" => "Priorität", + "Operating System" => "Betriebssystem", + "Summary" => "Zusammenfassung", + "URL" => "URL", + "Depends on bugs" => "Abhängig von Fehler", + "Blocks bugs" => "blockiert Fehler", + "Comments" => "Kommentar", + "Posted by" => "übermittelt von", + "Back to bug" => "Zurück zum Fehler", + "You must login to modify this bug" => "Sie müssen sich anmelden um den Fehler zu bearbeiten", + "Return to bug list" => "zur Fehlerlist zurückkehren", + "Previous bug" => "vorhergehender Fehler", + "Next bug" => "nächster Fehler", + "To be closed in version" => "Soll geschlossen werden in Version", + "Choose one" => "bitte auswählen", + "Database" => "Datenbank", + "Closed in version" => "Geschlossen in Version", + "Site" => "Seite", + "Add CC" => "Kopieempfänger hinzufügen", + "Add dependency" => "Abhängigkeit hinzufügen", + "Remove dependency" => "Abhängigkeit entfernen", + "Remove selected CCs" => "ausgewählte Kopieempfänger entfernen", + "Additional comments" => "zusätzliche Kommentare", + "Supress notification email" => "eMail-Benachrichtung unterdrücken", + "Attachments" => "Anlagen", + "Create new attachment" => "neue Anlage einfügen", + "Size" => "Größe", + "Type" => "Typ", + "Are you sure you want to delete this attachment?" => "Wollen Sie wirklich diese Anlage löschen?", + "No attachments found for this bug" => "Zu diesem Fehler wurden keine Anlagen gefunden", + "Vote for this bug" => "zu diesem Bug abstimmen", + "View votes" => "Abstimmung ansehen", + "View bug history" => "Verlauf des Fehlers ansehen", + "Date" => "Datum", + "Who" => "Wer", + "What" => "Was", + "Old Value" => "alter Wert", + "New Value" => "neuer Wert", + "When" => "Wenn", + "No history found for this bug" => "Keinen Verlauf für diesen Fehler gefunden", + "Download to spreadsheet" => "zum Arbeitsblatt herunterladen", + "No votes found for this bug" => "keine Abstimmungen zu dem Fehler gefunden", + "Back" => "zurück", + "Five most recently submitted bugs" => "die fünf zuletzt berichteten Fehler", + "Five most recently closed bugs" => "die fünf zuletzt geschlossenen Fehler", + "Saved Queries" => "gespeicherte Abfragen", + "The image path is not writeable" => "Im Bilder-Pfad kann nicht geschrieben werden", + "Quick Stats" => "Schnell-Statistik", + "# bugs" => "# Fehler", + "phpBugTracker Installation" => "phpBugTracker Installation", + "DB Test Failure" => "Datenbank-Test-Fehelr", + "The installation script could not connect to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Please check these details are correct and that the database already exists then retry." => "Das Installations-Script konnte nicht mit der Datenbank <b>%s</b> am Host <b>%s</b> mit dem angegebenen Benutzernamen und Passwort verbinden.<br>Bitte überprüfen Sie alle Details und versuchen Sie es erneut.", + "DB Test Success" => "Datenbank-Test erfolgreich", + "The installation script successfully connected to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Congratulations!" => "Das Installations-Script konnte sich erfolgreich mit der Datenbank <b>%s</b> am Host <b>%s</b> mit dem angegebenen Benutzernamen und Passwort verbinden.<br>Herzlichen Glückwunsch!", + "Close window" => "Fenster schließen", + "Database Options" => "Datenbank-Optionen", + "Database Name" => "Datenbankname", + "This database must already exist" => "Diese Datenbank muss bereits existieren", + "User" => "Benutzer", + "Table Prefix" => "Tabellen-Präfix", + "Test Database Connection" => "Datenbank-Verbindung testen", + "phpBT Email" => "phpBT eMail", + "The email address used for sending bug updates, etc." => "Diese Adresse wird zum Senden von Fehler-Aktualisierungen verwendet.", + "Admin Login" => "Admin Login", + "Must be a valid email address" => "Muss eine gültige eMail sein", + "Admin Password" => "Admin Passwort", + "Confirm Password" => "Passwort bestätigen", + "Encrypt Passwords in DB" => "Passwörter in Datenbank verschlüsseln", + "When you submit the form, the database tables will be created and config.php will be saved to disk. You will then be able to login and use the bug tracker." => "Wenn Sie das Formular absenden werden alle Tabellen in der Datenbank erzeugt und config.php wird im Installationspfad gespeichert. Sie können sich dann anmelden und phpBugTracker verwenden.", + "Since config.php is not writeable by this script, when you submit this form +you will be prompted to save config.php. Copy this file to +the location of the bug tracker, and then you will be able to +<a href=\index.php\>login to the bug tracker</a>. From the +home page you can go to the Admin Tools and customize your +installation via the Configuration link. Once you have +completed the configuration, you will be ready to add a project and +start reporting bugs!" => "Da in die Datei config.php nicht geschrieben werden kann, werden Sie nach dem Absenden +des Formulars zum Speichern von config.php aufgefordert. Kopieren Sie diese Datei in den Pfad +von phpBugTracker. Danach werden Sie in der Lage sein, sich an +<a href=\index.php\>phpBugTracker anzumelden</a>. Von der Homepage aus +können Sie dann mit den Admin-Werkzeugen die Installation nach Ihren +Wünschen konfigurieren. Wenn Sie die Konfigurationen vorgenommen haben +können Sie die Anwendung verwenden.", + "Save Options" => "Speicher-Optionen", + "User Login" => "Benutzer-Login", + "Invalid login and/or password" => "Ungültiges Login und/oder Passwort", + "Your password has been mailed to you" => "Das Passwort wurde Ihnen zugesandt", + "Email my password" => "Passwort per eMail zusenden", + "Open a new account" => "neues Konto öffnen", + "You have been logged out" => "Sie wurden abgemeldet", + "Return to phpBugTracker home" => "zur phpBugTracker-Homepage zurück kehren", + "Sorry, but the self-creation of new accounts has been disabled. Please contact the administrator to have an account created for you." => "Entschuldigung, aber die eigenständige Erzeugung neuer Konten wurde deaktiviert. Bitte kontaktieren Sie den Administrator, der Ihnen dann ein Konto erstellt.", + "Create a new account" => "neues Konto anlegen", + "optional" => "optional", + "Thanks for creating an account. Check your email for your password." => "Vielen Dank für die Registrierung. Bitte überprüfen Sie Ihr eMails nach Ihrem Passwort.", + "First, you must pick a product on which to enter a bug." => "Zuerst müssen Sie ein Projekt/Produkt auswählen, zu dem Sie einen Bug übermitteln möchten.", + "All" => "Alle", + "Sort by" => "Sortieren nach", + "Bug number" => "Fehlernummer", + "Ascending" => "Aufsteigend", + "Descending" => "Absteigend", + "Save this query as" => "Diese Abfrage speichern als", + "Reset to default query" => "zur Standard-Abfrage zurücksetzen", + "Are you sure you want to delete this saved query?" => "Wollen Sie diese gespeicherte Abfrage wirklich löschen?", + "Go to the advanced query page" => "fortgeschrittene Abfrage-Seite aufrufen", + "Reported on Site" => "Berichtet auf Seite", + "matching as" => "übereinstimmend mit", + "regexp" => "RegEx", + "not regexp" => "kein RegEx", + "substring" => "Teilmenge", + "exact" => "Exakt", + "A description entry" => "Ein Beschreibungs-Eintrag", + "Created Date Range" => "Zeitraum der Erzeugung", + "to" => "an", + "Closed in Version" => "geschlossen in Version", + "To be Closed in Version" => "Muss geschlossen werden in Version", + "Sort By" => "Sortieren nach", + "Go to the simple query page" => "einfache Abfrage-Seite aufrufen", + "Show bug statistics for the selected project" => "zeige Fehler-Statistik für ausgewähltes Projekt", + "All projects" => "Alle Projekte", + "Go" => "Los", + "Bug Resolutions" => "Fehlerlösungen", + "Unassigned" => "nicht zugewiesen", + "Upgade phpBugTracker" => "Upgade phpBugTracker", + "Your database has been updated." => "Ihre Datenbank wurde aktualisiert.", + "phpBugTracker home" => "phpBugTracker Home", + "This script will upgrade your database from version %s to version %s of phpBugTracker." => "Dieses Script wird Ihre Datenbank von phpBugTracker-Version %s auf %s aktualisieren.", + "Do it!" => "Mach es!", + "Change Password" => "Passwort ändern", + "Enter new password" => "neues Passwort eingeben", + "Verify password" => "Passwort überprüfen", + "Change Preferences" => "Einstellungen ändern", + "Number of results per page" => "Anzahl der Ergebnisse pro Seite", + "Bug List Columns" => "Fehlerliste-Spalten", + "Choose the fields you want to see in the bug list" => "Wählen Sie die Felder, die in der Fehlerliste angezeigt werden sollen", + "Votes" => "Abstimmungen", + "Are you sure you want to delete this vote?" => "Wollen Sie diese Abstimmung wirklich löschen?", + "Add a new bug" => "neuen Fehler melden", + "View Reports" => "Report anzeigen", + "Create a New Account" => "neues Konto anlegen", + "Read Documentation" => "Dokumentation lesen", + "Administration Tools" => "Admin-Werkzeuge", + "Email Password" => "Passwort per eMail zusenden", + "Forgot your password? Have it sent to you" => "Passwort vergessen? Lassen Sie es sich zuschicken!", + "Remember %s for next time" => "Merke %s für das nächste mal", + "Remember me" => "Merke mich", + "Bugs assigned to me" => "mir zugwiesene Fehler", + "Bugs reported by me" => "von mir gemeldete Fehler", + "Personal Page" => "Einstellungen", + "Logout %s" => "Logout %s", + ); + +?> |
|
From: Benjamin C. <bc...@us...> - 2004-07-28 13:34:35
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12985 Modified Files: Tag: htmltemplates query.php Log Message: Fixing the sort by last modified by bug Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.98.2.8 retrieving revision 1.98.2.9 diff -u -r1.98.2.8 -r1.98.2.9 --- query.php 27 Jul 2004 13:35:22 -0000 1.98.2.8 +++ query.php 28 Jul 2004 13:34:25 -0000 1.98.2.9 @@ -281,7 +281,7 @@ 'status_name' => 'status.sort_order', 'owner' => 'owner', 'reporter' => 'reporter.login', - 'lastmodifier' => 'last_modifier', + 'lastmodifier' => 'lastmodifier.login', 'created_date' => 'b.created_date', 'last_modified_date' => 'b.last_modified_date', 'project_name' => 'project_name', |
|
From: Benjamin C. <bc...@us...> - 2004-07-27 13:35:31
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27728 Modified Files: Tag: htmltemplates query.php Log Message: Fixed bugs with bug sorting and name conflicts with the various version fields Index: query.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/query.php,v retrieving revision 1.98.2.7 retrieving revision 1.98.2.8 diff -u -r1.98.2.7 -r1.98.2.8 --- query.php 3 May 2004 13:34:38 -0000 1.98.2.7 +++ query.php 27 Jul 2004 13:35:22 -0000 1.98.2.8 @@ -261,8 +261,8 @@ 'last_modified_date' => 'b.last_modified_date', 'project_name' => 'project.project_name', 'version_name' => 'version.version_name', - 'to_be_closed_in_version_name' => 'version2.version_name', - 'closed_in_version_name' => 'version3.version_name', + 'to_be_closed_in_version_name' => 'version2.version_name as to_be_closed_in_version_name', + 'closed_in_version_name' => 'version3.version_name as closed_in_version_name', 'database_name' => TBL_DATABASE.'.database_name', 'site_name' => 'site.site_name', 'component_name' => 'component.component_name', @@ -342,7 +342,7 @@ foreach ($desired_fields as $field) { $query_fields[] = $query_db_fields[$field]; $field_titles[] = $all_db_fields[$field]; - $headers[] = $db_headers[$field]; + $headers[] = $field; } if (empty($_GET['xl'])) { // HTML view @@ -364,7 +364,7 @@ sprintf($QUERY['query-list-bugs'], join(', ', $query_fields), (!empty($_SESSION['queryinfo']['query']) ? "and {$_SESSION['queryinfo']['query']} " : ''), - $order, $sort), $llimit, $selrange))); + $db_headers[$order], $sort), $llimit, $selrange))); sorting_headers($me, $headers, $order, $sort, "page=$page". (!empty($paramstr) ? $paramstr : '')); @@ -374,7 +374,7 @@ sprintf($QUERY['query-list-bugs'], join(', ', $query_fields), (!empty($_SESSION['queryinfo']['query']) ? "and {$_SESSION['queryinfo']['query']} " : ''), - $order, $sort))); + $db_headers[$order], $sort))); } } |
|
From: Benjamin C. <bc...@us...> - 2004-07-24 22:16:28
|
Update of /cvsroot/phpbt/phpbt/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2344/languages Modified Files: Tag: htmltemplates fr.php Log Message: Updated for new templates Index: fr.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/fr.php,v retrieving revision 1.16 retrieving revision 1.16.4.1 diff -u -r1.16 -r1.16.4.1 --- fr.php 28 Oct 2002 22:06:01 -0000 1.16 +++ fr.php 24 Jul 2004 22:16:17 -0000 1.16.4.1 @@ -1,10 +1,9 @@ <?php // fr.php - French strings and titles -// Translation by Pierre Wargnier -// Translation extended by Aurélien Labrosse <aur...@wa...> +// Translation by Alain Portal <aportal AT univ-montp2 DOT fr> // ------------------------------------------------------------------------ -// Copyright (c) 2001 The phpBugTracker Group +// Copyright (c) 2001 - 2004 The phpBugTracker Group // ------------------------------------------------------------------------ // This file is part of phpBugTracker // @@ -25,270 +24,329 @@ // $Id$ $STRING = array( - 'lang_charset' => 'iso8859-1', - 'nouser' => 'Cet utilisateur n\'existe pas', - 'dupeofself' => 'Un bogue ne peut pas être doublon de lui-même', - 'nobug' => 'Ce bogue n\'existe pas', - 'givesummary' => 'Veuillez saisir un résumé', - 'givedesc' => 'Veuillez saisir une description', - 'noprojects' => 'Pas de projet trouvé', - 'totalbugs' => 'Total Bogues', - 'giveemail' => 'Veuillez saisir une adresse électronique valide', - 'givelogin' => 'Please enter a login', - 'loginused' => 'Cet identifiant de connection est déjà utilisé', - 'newacctsubject' => 'Identifiant de connection phpBugTracker', - 'newacctmessage' => "Votre mot de passe phpBugTracker est %s", - 'nobugs' => 'Pas de bogue trouvé', - 'givename' => 'Veuillez saisir un nom', - 'edit' => 'Editer', - 'addnew' => 'Nouveau', - 'nooses' => 'Pas d\'environement trouvé', - 'giveinitversion' => 'Veuillez saisir une version initiale pour ce projet', - 'giveversion' => 'Veuillez saisir une version', - 'noversions' => 'Pas de version trouvée', - 'nocomponents' => 'Pas de composant trouvé', - 'nostatses' => 'Pas de statut trouvé', - 'givepassword' => 'Veuillez saisir un mot de passe', - 'nousers' => 'Pas d\'utilisateur trouvé', - 'bugbadperm' => 'Vous ne pouvez pas modifier ce bogue', - 'bugbadnum' => 'Ce bogue n\'existe pas', - 'datecollision' => 'Ce bogue a été modifié depuis votre dernière lecture. Il a été rechargé avec ses dernières modifications.', - 'passwordmatch' => 'Les mots de passe ne correspondent pas -- veuillez re-essayer', - 'nobughistory' => 'Il n\'y a pas d\'historique pour ce bogue', - 'logintomodify' => 'Vous devez être connecté pour modifier ce bogue', - 'dupe_attachment' => 'Ce fichier attaché existe déjà pour ce bogue', - 'give_attachment' => 'Veuillez spécifier un fichier à envoyer', - 'no_attachment_save_path' => 'Imossible de savoir ou stocker le fichier!', - 'attachment_path_not_writeable' => 'Impossible de créer un fichier dans le répertoire de sauvegarde', - 'attachment_move_error' => 'Une erreur est survenue lors du déplacement du fichier envoyé', - 'bad_attachment' => 'Ce fichier attaché n\'existe pas', - 'attachment_too_large' => 'Le fichier envoyé dépasse la limite des '.number_format(ATTACHMENT_MAX_SIZE).' octets', - 'bad_permission' => 'Vous n\'avez pas les droits pour réaliser cette action', - 'noseverities' => 'Pas de criticités trouvées', + "That attachment does not exist" => "Cette pièce jointe n'existe pas", + "Please specify a file to upload" => "Veuillez spécifier un fichier à télécharger", + "The file you specified is larger than %s bytes" => "Le fichier spécifié a une taille supérieure à %s octets", + "The file you specified is larger than %d bytes" => "Le fichier spécifié a une taille supérieure à %d octets", + "That bug does not exist" => "Ce bogue n'existe pas", + "That attachment already exists for this bug" => "Cette pièce jointe existe déjà pour ce bogue", + "Couldn't find where to save the file!" => "Impossible de trouver où enregister le fichier !", + "Couldn't create a file in the save path" => "Impossible de créer un fichier dans le chemin de sauvegarde", + "There was an error moving the uploaded file" => "Une erreur est survenue lors du déplacement du fichier téléchargé", + "Add Attachment" => "Ajouter une pièce jointe", + "You do not have the permissions required for that function" => "Vous n'avez pas les permissions nécessaires pour cette fonction", + "Bug Votes" => "Votes du bogue", + "You have already voted for this bug" => "Vous avez déjà voté pour ce bogue", + "You have reached the maximum number of votes per user" => "Vous avez atteint le nombre maximum de vote par utilisateur", + "There is no history for this bug" => "Il n'y a pas d'historique pour ce bogue", + "Bug History" => "Historique du bogue", + "You can not change this bug" => "Vous ne pouvez pas modifier ce bogue", + "Someone has updated this bug since you viewed it. The bug info has been reloaded with the latest changes." => "Ce bogue a été modifié depuis votre dernière lecture. Il a été rechargé avec ses dernières modifications.", + "That user does not exist" => "Cet utilisateur n'existe pas", + "That bug dependency has already been added" => "Cette dépendance a déjà été ajoutée", + "Please enter a summary" => "Veuillez entrer un résumé", + "Please enter a description" => "Veuillez entrer une description", + "Create Bug" => "Créer un bogue", + "View Bug" => "Voir un bogue", + "No projects found" => "Aucun projet trouvé", + "Select Project" => "Sélectionner un projet", + "Invalid login" => "Identifiant invalide", + "phpBugTracker Login" => "Identifiant phpBugTracker", + "Your phpBugTracker password is %s" => "Votre mot de passe phpBugTracker est %s", + "Your password has been emailed to you" => "Votre mot de passe vous a été envoyé par courriel", + "No bugs found" => "Aucun bogue trouvé", + "Bug Summary" => "Résumé du bogue", + "Project" => "Projet", + "Open" => "Ouvert", + "Total" => "Total", + "Home" => "Accueil", + "Please enter the host name for your database server" => "Veuillez entrer le nom de l'hôte de votre serveur de base de données", + "Please enter the name of the database you will be using" => "Veuillez entrer le nom de la base de données que vous souhaitez utiliser", + "Please enter the user name for connecting to the database" => "Veuillez entrer le nom d'utilisateur pour vous connecter à la base de données", + "Please enter the phpBT email address" => "Veuillez entrer l'adresse courriel de phpBT", + "Please enter the admin login" => "Veuillez entrer l'identifiant administrateur", + "Please use a valid email address for the admin login" => "Veuillez entrer une adresse courriel valide comme identifiant administrateur", + "Please enter the admin password" => "Veuillez entrer le mot de passe administrateur", + "Please confirm the admin password" => "Veuillez confirmer le mot de passe administrateur", + "The admin passwords don't match" => "Les mots de passe administrateur ne correspondent pas", + "Error writing to config.php" => "Erreur lors de l'écriture de config.php", + "Please enter a login" => "Veuillez entrer un identifiant", + "Please enter a valid email" => "Veuillez entrer une adresse courriel valide", + "That login has already been used" => "Cet identifiant est déjà utilisé", + "New account created" => "Nouveau compte créé", + "Create new account" => "Créer un nouveau compte", + "Query Bugs" => "Recherche de bogues", + "Bug List" => "Liste des bogues", + "Assigned To" => "Affecté à ", + "Reporting" => "Tableaux de bord", + "Bug Counts by Date" => "Nombre de bogues par date", + "Your bug list column preferences have been saved" => "Vos préférences de colonnes pour la liste des bogues ont été enregistrées", + "Please enter a password" => "Veuillez entrer un mot de passe", + "Those passwords don't match -- please try again" => "Les mots de passe ne correspondent pas -- veuillez essayer à nouveau", + "Password changed" => "Mot de passe modifié", + "Changes Saved" => "Modifications enregistrées", + "Preferences changed" => "Préferences modifiées", + "Receive notifications of bug changes via email" => "Recevoir les notifications de modification du bogue par courriel", + "Show saved queries on the homepage" => "Afficher les requêtes sur la page d'accueil", + "User preferences" => "Préférences utilisateur", + "Configuration" => "Configuration", + "Please enter a name" => "Veuillez entrer un nom", + "Edit Database" => "Ãditer la base de données", + "Database List" => "Liste des bases de données", + "Edit Group" => "Ãditer les groupes", + "Group List" => "Liste des groupes", + "Edit Operating System" => "Ãditer les systèmes d'explotation", + "Operating System List" => "Liste des systèmes d'explotation", + "Please enter a version" => "Veuillez entrer une version", + "Edit Version" => "Ãditer les versions", + "Edit Component" => "Ãditer les composants", + "You cannot choose specific groups when \"All Groups\" is chosen" => "Vous ne pouvez pas choisir de groupes spécifiques lorsque « Tous les groupes » est sélectionné", + "Edit Project" => "Ãditer les projets", + "Project List" => "Liste des projets", + "Edit Resolution" => "Ãditer les résolutions", + "Resolution List" => "Liste des résolutions", + "Edit Severity" => "Ãditer les sévérités", + "Severity List" => "Liste des sévérités", + "Edit Site" => "Ãditer les sites", + "Site List" => "Liste des sites", + "Edit Status" => "Ãditer les états", + "Status List" => "Liste des états", + "Please enter an email" => "Veuillez entrer une adresse courriel", + "Edit User" => "Ãditer les utilisateurs", + "User List" => "Liste des utilisateurs", + "Name" => "Nom", + "Description" => "Description", + "Owner" => "Propriétaire", + "None" => "Aucun", + "Active" => "Actif", + "Submit" => "Soumettre", + "Add new project" => "Ajouter un nouveau projet", + "Created Date" => "Date de création", + "Yes" => "Oui", + "No" => "Non", + "Variable" => "Variable", + "Value" => "Valeur", + "Information" => "Information", + "description" => "description", + "Sort Order" => "Ordre de tri", + "Database list" => "Liste des bases de données", + "Add new database" => "Ajouter une nouvelle base de données", + "Are you sure you want to delete this item?" => "Ãtes-vous sûr de vouloir supprimer cette occurrence ?", + "Delete" => "Supprimer", + "Add new group" => "Ajouter un nouveau groupe", + "Users" => "Utilisateurs", + "Locked" => "Verrouillé", + "This will remove all user assignments to this group and the group itself. Continue?" => "Cela supprimera tous les affectations d'utilisateurs de ce groupe ainsi que le groupe lui-même. Continuez ?", + "This will remove all user assignments to this group. Continue?" => "Cela supprimera toutes les affectations d'utilisateurs de ce groupe. Continuez ?", + "Purge" => "Purge", + "Assignable" => "Affectable", + "Find Bug" => "Chercher un bogue", + "Projects" => "Projets", + "Groups" => "Groupes", + "Documentation" => "Documentation", + "User Tools" => "Outils utilisateur", + "Statuses" => "Ãtats", + "Resolutions" => "Résolutions", + "Severities" => "Sévérités", + "Operating Systems" => "Systèmes d'explotation", + "Databases" => "Bases de données", + "Sites" => "Sites", + "Regex" => "Expressions rationnelles", + "Add new operating system" => "Ajouter un nouveau système d'exploitation", + "Are you sure you want to delete this OS" => "Ãtes-vous vraiment certain de vouloir supprimer ce système d'exploitation ?", + "Items with a Sort Order = 0 will not be selectable by users." => "Les items avec un ordre de tri = 0 ne seront pas sélectionnables par les utilisateurs.", + "Only those items that have no bugs referencing them can be deleted." => "Seuls les items qui n'ont pas de référence vers des bogues peuvent être effacés.", + "Project Information" => "Information du projet", + "Version Information" => "Information de version", + "Initial Version" => "Version initiale", + "Component Information" => "Information du composant", + "Initial Component Name" => "Nom du composant initial", + "Only users in the following groups can see this project" => "Seuls les utilisateurs des groupes suivants peuvent voir ce projet", + "These developers can administer this project" => "Ces développeurs peuvent administrer ce projet", + "Versions" => "Versions", + "Add new version" => "Ajouter une nouvelle version", + "Version" => "Version", + "Created" => "Créée", + "No versions found" => "Aucune version trouvée", + "Components" => "Composants", + "Add new component" => "Ajouter un nouveau composant", + "Component" => "Composant", + "No components found" => "Aucun composant trouvé", + "Add new resolution" => "Ajouter une nouvelle résolution", + "Are you sure you want to delete this resolution?" => "Ãtes-vous vraiment certain de vouloir supprimer cette résolution ?", + "Row Color" => "Couleur de ligne", + "Add new severity" => "Ajouter une nouvelle sévérité", + "Are you sure you want to delete this severity?" => "Ãtes-vous vraiment certain de vouloir supprimer cette sévérité ?", + "Add new site" => "Ajouter un nouveau site", + "Open/Closed" => "Ouvert/Clos", + "Closed" => "Clos", + "Add new status" => "Ajouter un nouvel état", + "Login" => "Identifiant", + "Email" => "Courriel", + "First Name" => "Prénom", + "Last Name" => "Nom", + "Password" => "Mot de passe", + "User Groups" => "Groupes d'utilisateur", + "Email Notify" => "Notifier par courriel", + "Add new user" => "Ajouter un nouvel utilisateur", + "Filter" => "Filtre", + "Bug" => "Bogue", + "Reporter" => "Rapporteur", + "Assigned to" => "Affecté à ", + "Status" => "Ãtat", + "Resolution" => "Résolution", + "Severity" => "Sévérité", + "Priority" => "Priorité", + "Operating System" => "Système d'exploitation", + "Summary" => "Résumé", + "URL" => "URL", + "Depends on bugs" => "Dépend des bogues", + "Blocks bugs" => "Bloque le(s) bogue(s)", + "Comments" => "Commentaires", + "Posted by" => "Posté par", + "Back to bug" => "Retour au bogue", + "You must login to modify this bug" => "Vous devez vous identifier pour modifier ce bogue", + "Return to bug list" => "Retour à la liste des bogues", + "Previous bug" => "Bogue précédent", + "Next bug" => "Bogue suivant", + "To be closed in version" => "à clore dans la version", + "Choose one" => "En choisir un", + "Database" => "Base de donnée", + "Closed in version" => "Clos dans la version", + "Site" => "Site", + "Add CC" => "Ajouter un contact", + "Add dependency" => "Ajouter une dépendance", + "Remove dependency" => "Supprimer une dépendance", + "Remove selected CCs" => "Supprimer les contacts sélectionnées", + "Additional comments" => "Comentaires supplémentaires", + "Supress notification email" => "Supprimer la notification par courriel", + "Attachments" => "Pièces jointes", + "Create new attachment" => "Ajouter une nouvelle pièce jointe", + "Size" => "Taille", + "Type" => "Type", + "Are you sure you want to delete this attachment?" => "Ãtes-vous vraiment certain de vouloir supprimer cette pièce jointe ?", + "No attachments found for this bug" => "Aucune pièce jointe n'a été trouvée pour ce bogue", + "Vote for this bug" => "Voter pour ce bogue", + "View votes" => "Voir les votes", + "View bug history" => "Voir l'historique du bogue", + "Date" => "Date", + "Who" => "Qui", + "What" => "Quoi", + "Old Value" => "Ancienne valeur", + "New Value" => "Nouvelle valeur", + "When" => "Quand", + "No history found for this bug" => "Aucun historique n'a été trouvé pour ce bogue", + "Download to spreadsheet" => "Décharger dans un tableur", + "No votes found for this bug" => "Aucun vote n'a été trouvé pour ce bogue", + "Back" => "Retour", + "Five most recently submitted bugs" => "Les cinq derniers bogues soumis", + "Five most recently closed bugs" => "Les cinq derniers bogues clos", + "Saved Queries" => "Requêtes enregistrées", + "The image path is not writeable" => "Le chemin vers les images n'est pas accessible en écriture", + "Quick Stats" => "Statistiques rapides", + "# bugs" => "# bogues", + "phpBugTracker Installation" => "Installation de phpBugTracker", + "DB Test Failure" => "Ãchec du test de la base de données", + "The installation script could not connect to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Please check these details are correct and that the database already exists then retry." => "Le script d'installation n'a pas pu se connecter à la base de données <b>%s</b> sur l'hôte <b>%s</b> en utilisant l'identifiant et le mot de passe spécifiés.<br>Veuillez vérifier que ces informations sont correctes et que la base de données existe déjà puis recommencez.", + "DB Test Success" => "Succès du test de la base de données", + "The installation script successfully connected to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Congratulations!" => "Le script d'installation s'est connecté avec succès à la base de données <b>%s</b> sur l'hôte <b>%s</b> en utilisant l'identifiant et le mot de passe spécifiés.<br>Félicitations !", + "Close window" => "Fermer la fenêtre", + "Database Options" => "Options de la base de données", + "Database Name" => "Nom de la base de données", + "This database must already exist" => "Cette base de données doit déjà exister", + "User" => "Utilisateur", + "Table Prefix" => "Préfixe de la table", + "Test Database Connection" => "Test de connexion de la base de données", + "phpBT Email" => "Courriel phpBT", + "The email address used for sending bug updates, etc." => "L'adresse courriel utilisée pour envoyer les mises à jour de bogues, etc.", + "Admin Login" => "Identifiant administrateur", + "Must be a valid email address" => "Doit être une adresse courriel valide", + "Admin Password" => "Mot de passe administrateur", + "Confirm Password" => "Confirmer le mot de passe", + "Encrypt Passwords in DB" => "Chiffrer les mots de passe dans la base de données", + "When you submit the form, the database tables will be created and config.php will be saved to disk. You will then be able to login and use the bug tracker." => "Lorsque vous soumettrez le formulaire, les tables de la base de données seront créées et le fichier config.php sera sauvegardé sur le disque. Vous pourrez alors vous identifier et utiliser le bugotron.", + "Since config.php is not writeable by this script, when you submit this form +you will be prompted to save config.php. Copy this file to +the location of the bug tracker, and then you will be able to +<a href=\index.php\>login to the bug tracker</a>. From the +home page you can go to the Admin Tools and customize your +installation via the Configuration link. Once you have +completed the configuration, you will be ready to add a project and +start reporting bugs!" => "Bien que ce script n'ait pas d'accès en écriture sur le fichier config.php, lorsque vous validerez le formulaire +on vous demandera d'enregistrer config.php. Copiez le fichier où se trouve +le bugotron, et vous pourrez alors vous +<a href=\index.php\>connecter au bugotron</a>. à partir de la page d'accueil, +vous pourrez accéder aux outils d'administration et personnaliser votre +installation via le lien Configuration. Une fois que vous aurez achevé +la configuration, vous serez prêt pour ajouter un projet +et commencer à soumettre des bogues !", + "Save Options" => "Enregistrer les options", + "User Login" => "Identifiant utilisateur", + "Invalid login and/or password" => "Identifiant et/ou mot de passe invalide", + "Your password has been mailed to you" => "Votre mot de passe vous a été envoyé par courriel", + "Email my password" => "Envoyez-moi mon mot de passe", + "Open a new account" => "Ouvrir un nouveau compte", + "You have been logged out" => "Vous êtes déconnectés", + "Return to phpBugTracker home" => "Retour sur la page d'accueil du phpBugTracker", + "Sorry, but the self-creation of new accounts has been disabled. Please contact the administrator to have an account created for you." => "Désolé, mais l'auto-création de comptes a été déactivée. Veuillez contacter l'administrateur pour qu'il vous crée un compte.", + "Create a new account" => "Créer un nouveau compte", + "optional" => "optionnel", + "Thanks for creating an account. Check your email for your password." => "Merci d'avoir créer un compte. Vous recevrez votre mot de passe dans votre boite aux lettres.", + "First, you must pick a product on which to enter a bug." => "Tout d'abord, vous devez choisir un produit pour lequel entrer un bogue.", + "All" => "Tous", + "Sort by" => "Trier par", + "Bug number" => "Numéro de bogue", + "Ascending" => "Ascendant", + "Descending" => "Descendant", + "Save this query as" => "Enregistrer cette requête sous", + "Reset to default query" => "Revenir à la requête par défaut", + "Are you sure you want to delete this saved query?" => "Ãtes-vous certain de vouloir supprimer cette requête ?", + "Go to the advanced query page" => "Aller sur la page des requêtes avancées", + "Reported on Site" => "Rapporté sur le site", + "matching as" => "correspond à ", + "regexp" => "expression rationnelle", + "not regexp" => "expression non rationnelle", + "substring" => "sous-chaîne", + "exact" => "exactement", + "A description entry" => "Une briève description", + "Created Date Range" => "Plage de dates de création", + "to" => "à ", + "Closed in Version" => "Clos dans la version", + "To be Closed in Version" => "à clore dans la version", + "Sort By" => "Trier par", + "Go to the simple query page" => "Aller sur la page des requêtes simples", + "Show bug statistics for the selected project" => "Montrer les statistiques de bogues pour le projet sélectionné", + "All projects" => "Tous les projets", + "Go" => "Aller", + "Bug Resolutions" => "Résolutions de bogues", + "Unassigned" => "Non affecté", + "Upgade phpBugTracker" => "Mise à jour de phpBugTracker", + "Your database has been updated." => "Votre base de données a été mise à jour.", + "phpBugTracker home" => "Accueil phpBugTracker", + "This script will upgrade your database from version %s to version %s of phpBugTracker." => "Ce script mettra à jour votre base de données de la version %s vers la version %s de phpBugTracker.", + "Do it!" => "Faites-le !", + "Change Password" => "Modifier le mot de passe", + "Enter new password" => "Entrez un nouveau mot de passe", + "Verify password" => "Vérifiez votre mot de passe", + "Change Preferences" => "Modifier les préférences", + "Number of results per page" => "Nombre de résultats par page", + "Bug List Columns" => "Colonnes de la liste des bogues", + "Choose the fields you want to see in the bug list" => "Choisissez les champs que vous voulez voir dans la liste des bogues", + "Votes" => "Votes", + "Are you sure you want to delete this vote?" => "Ãtes-vous sûr de vouloir effacer ce vote ?", + "Add a new bug" => "Ajouter un nouveau bogue", + "View Reports" => "Voir les rapports", + "Create a New Account" => "Créer un nouveau compte", + "Read Documentation" => "Voir la documentation", + "Administration Tools" => "Outils d'administration", + "Email Password" => "Envoyer le mot de passe par courriel", + "Forgot your password? Have it sent to you" => "Mot de passe oublié ? Envoyez-le vous", + "Remember %s for next time" => "Rappeller %s pour la prochaine fois", + "Remember me" => "Se souvenir pour moi", + "Bugs assigned to me" => "Les bogues qui m'ont été affectés", + "Bugs reported by me" => "Les bogues que j'ai signalé", + "Personal Page" => "Page personnelle", + "Logout %s" => "Déconnexion %s", + ); -// To be translated - 'project_only_all_groups' => 'You cannot choose specific groups when "All Groups" is chosen', - 'previous_bug' => 'Précédent', - 'next_bug' => 'Suivant', - 'already_voted' => 'Vous avez déjà voté pour ce bug', - 'too_many_votes' => 'Vous avez atteint le nombre de votes maximum par utilisateur', - 'no_votes' => 'Il n\'y a pas de votes pour ce bogue', - 'user_filter' => array( - 0 => 'Tous les utilisateurs', - 1 => 'Utilisateurs actifs', - 2 => 'Utilisateurs inactifs'), - 'dupe_dependency' => 'Cette dépendance entre bug à déjà été ajoutée', - 'image_path_not_writeable' => 'Le processus du serveur web n\'a pas accès en écriture dans le repertoire "jpgimages", l`image ne peut être affichée', - 'password_changed' => 'Votre mot de passe à été modifié', - 'prefs_changed' => 'Vos préférences ont été sauvegardées', - 'databaselist' => 'Listes des bases de données', - 'database' => 'Base de données', - 'databases' => 'Bases de données', - 'name' => 'Nom', - 'description' => 'Description', - 'sortorder' => 'Ordre de tri', - 'suredeletedb' => 'Etes vous certain de vouloir supprimer cette base de données?', - 'suredeletesite' => 'Etes vous certain de vouloir supprimer ce site?', - 'delete' => 'Effacer', - 'version' => 'Version', - 'addnewsite' => 'Ajouter un nouveau site', - 'sitelist' => 'Liste des sites', - 'sites' => 'Sites', - 'QUERY' => array( - 'opt_All' => 'Tout', - 'Project' => 'Projets', - 'Version' => 'Version', - 'Component' => 'Composants', - 'Status' => 'Etat', - 'Resolution' => 'Resolution', - 'OpSys' => 'OpSys', - 'Priority' => 'Priorité', - 'Severity' => 'Criticité', - 'Database' => 'Base de données', - 'ReportedOnSite' => 'Découvert sur le site', - 'Summary' => 'Résumé', - 'DescriptionEntry' => 'Description', - 'SortBy' => 'Trier par', - 'SortBy_BugNumber' => 'Numéro de bogue', - 'SortBy_Severity' => 'Criticité', - 'SortBy_Reporter' => 'Reporteur', - 'SortBy_Priority' => 'Priorité', - 'SortBy_Status' => 'Etat', - 'SortAsc' => 'Croissant', - 'SortDesc' => 'Decroissant', - 'SaveThisQueryAs' => 'Sauvegarder la requète sous', - 'ResetBackToDefaultQuery' => 'Réinitialiser avec la requète par défaut', - 'SubmitQuery' => 'Envoyer la requète', - 'SavedQueries' => 'Requètes sauvegardées', - 'GoToThe' => 'Aller à', - 'AdvancedQueryPage' => 'Requètes avancées', - 'SimpleQueryPage' => 'Requètes simples', - 'SureDeleteSavedQuery' => 'Etes vous certain de vouloir supprimer cette requète sauvegardée?', - 'MatchingAs' => 'matching as', - 'MatchingAs_Regexp' => 'expression rationnel', - 'MatchingAs_NotRegexp' => 'non expression rationnelle', - 'MatchingAs_Substring' => 'sous chaine', - 'MatchingAs_Exact' => 'exactement', - 'eMail_Reporter' => 'Reporteur', - 'eMail_AssignedTo' => 'Assigné à' - ), - 'WRAP' => array( - 'FindBug' => 'Chercher dans les bogues', - 'Home' => 'Accueil', - 'AddNewBug' => 'Ajouter un bogue', - 'QueryBugs' => 'Chercher dans les bogues', - 'ViewReports' => 'Voir un rapport', - 'Documentation' => 'Lire la documentation', - 'AdminTools' => 'Outils d\'administration', - 'CreateNewAccount' => 'Créer un compte', - 'Email' => 'Email', - 'Login' => 'Login', - 'DoLogin' => 'Login', - 'BugsAssigned' => 'Bugs assigned to me', - 'BugsReported' => 'Bugs reported by me', - 'PersonalPage' => 'Personal Page', - 'Logout' => 'Logout', - 'EmailPassword' => 'Email Password', - 'RememberMe' => 'Remember me', - ), - 'BUGFORM' => array( - 'Project' => 'Projet', - 'Version' => 'Version', - 'Summary' => 'Résumé', - 'Description' => 'Description', - 'Severity' => 'Criticité', - 'Priority' => 'Priorité', - 'Site' => 'Site', - 'Database' => 'Base de données', - 'Component' => 'Composants', - 'OS' => 'Système d\'exploitation', - 'AddAnother' => 'Ajouter encore', - 'Submit' => 'Soumettre' - ), - 'BUGDISPLAY' => array( - 'reporter' => 'Reporteur', - 'returnto' => 'Retourner à', - 'buglist' => 'Liste de bogue', - 'project' => 'Projet', - 'created' => 'Créé', - 'version' => 'Version', - 'closedinversion' => 'Clos en version', - 'tobeclosedinversion' => 'A clore en version', - 'assignedto' => 'Assigné à', - 'assignedtonobody' => 'Personne', - 'bugdependency' => 'Dependances', - 'blocks' => 'Blocks', - 'adddependency' => 'Ajouter une dépendance', - 'removedependency' => 'Supprimer la dépendance', - 'summary' => 'Résumé', - 'status' => 'Etat', - 'description' => 'Description', - 'severity' => 'Criticité', - 'priority' => 'Priorité', - 'component' => 'Composant', - 'resolution' => 'Resolution', - 'resolutionnone' => 'Aucun', - 'addcc' => 'Ajouter un contact', - 'removeselectedcc' => 'Retirer le contact selectionné', - 'additionalcomments' => 'Commentaires complémentaires', - 'attachments' => 'Pièces jointes', - 'createattachment' => 'Ajouter une pièce jointe', - 'suredeleteattachment' => 'Etes vous certain de vouloir supprimer cette pièce jointe?', - 'name' => 'Nom', - 'size' => 'Taille', - 'type' => 'Type', - 'created' => 'Créé', - 'voteforthisbug' => 'Votez pour ce bogue', - 'viewvotes' => 'Voir les votes', - 'forthisbug' => 'Votez pour ce bug', - 'viewbugactivity' => 'Voir l\'activité de ce bogue', - 'printableview' => 'Vue imprimable', - 'noattachments' => 'Pas de pièce jointe', - 'comments' => 'Commentaires', - 'postedby' => 'Posté par', - 'date' => 'Date', - 'dateon' => 'Sur', - 'submit' => 'Soumettre', - 'site' => 'Découvert sur le site', - 'database' => 'Base de données', - 'os' => 'Système d\'exploitation', - 'chooseone' => 'Choisissez', - 'suppressemail' => 'Suppress notification email' - ), - 'USER_PREF' => array( - 'ReceiveNotifications' => 'Recevoir les mises à jour de bogue par email', - 'ShowSavedQueries' => 'Montrer ls requètes sauvegardées sur la page personnelle', - 'ChangePassword' => 'Changer de mot de passe', - 'EnterNewPassword' => 'Saisissez deux fois votre mot de passe ci-dessous', - 'Password' => 'Mot de passe', - 'Verify' => 'Verification', - 'ChangePreferences' => 'ChangePreferences', - 'BugListColumns' => 'Colonnes de liste de bogue', - 'ChooseFields' => 'Choisissez les champs que vous voulez dans la liste de bogue', - 'SureDeleteVote' => 'Etes vous certain de vouloir supprimer ce vote?', - 'Votes' => 'Votes', - 'Bug' => 'Bogue', - 'When' => 'Quand', - 'ColumnPreferencesSaved' => 'Vos préférences de colonnes de liste de bogue ont été enregistrées.' - ), - 'INDEX' => array( - 'FiveRecentlySubmitted' => 'Les cinq derniers bogues découverts', - 'FiveRecentlyClosed' => 'Les cinq plus récent bugs clos', - 'QuickStats' => 'Statistiques', - 'Status' => 'Etat', - 'NumberOfBugs' => '# bogues', - 'SavedQueries' => 'Requètes pré-enregistrées' - ) - ); - -// Page titles -$TITLE = array( - 'enterbug' => 'Saisir un bogue', - 'editbug' => 'Editer un bogue', - 'newaccount' => 'Créer un nouveau compte', - 'bugquery' => 'Recherche de bogues', - 'buglist' => 'Liste de bogues', - 'addcomponent' => 'Ajouter un composant', - 'editcomponent' => 'Editer un composant', - 'addproject' => 'Ajouter un projet', - 'editproject' => 'Editer un projet', - 'addversion' => 'Ajouter une version', - 'editversion' => 'Editer une version', - 'project' => 'Projets', - 'os' => 'Environements', - 'resolution' => 'Resolutions', - 'status' => 'Statuts', - 'user' => 'Utilisateurs', - 'home' => 'Sommaire', - 'reporting' => 'Tableaux de bord', - 'severity' => 'Criticité', - 'group' => 'Groups', - 'addsite' => 'Ajouter un site', - 'editsite' => 'Editer un site', - 'bugvotes' => 'Votes pour ce bogue', - 'bughistory' => 'Historique de ce bogue', - 'viewbug' => 'Voir ce bogue', - 'addattachment' => 'Ajouter une pièce jointe', - 'accountcreated' => 'Compte créé', - 'changessaved' => 'Les modifications ont été enregistrées', - 'preferences' => 'Préférences utilisateur', - 'usertools' => 'Outils utilisateur', - 'edituser' => 'Editer un utilisateur', - 'adduser' => 'Ajouter un utilisateur', - 'editstatus' => 'Editer l\état', - 'addstatus' => 'Ajouter un état', - 'editseverity' => 'Editer la criticité', - 'addseverity' => 'Ajouter une criticité', - 'editresolution' => 'Editer une résolution', - 'addresolution' => 'Ajouter une résolution', - 'editos' => 'Editer le système d\'exploitation', - 'addos' => 'Ajouter un système d\'exploitation', - 'editgroup' => 'Editer le groupe', - 'addgroup' => 'Ajouter un groupe', - 'configuration' => 'Configuration', - 'adddatabase' => 'Ajouter une base de données', - 'editdatabase' => 'Editer une base de données', - 'database' => 'Bases de données', - 'site' => 'Sites' - ); -?> +?> \ No newline at end of file |
|
From: Benjamin C. <bc...@us...> - 2004-07-20 10:39:43
|
Update of /cvsroot/phpbt/phpbt/inc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6512/inc Modified Files: Tag: htmltemplates functions.php Log Message: Disable gettext stuff for now Index: functions.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/inc/functions.php,v retrieving revision 1.44.2.9 retrieving revision 1.44.2.10 diff -u -r1.44.2.9 -r1.44.2.10 --- functions.php 3 Jul 2004 13:19:07 -0000 1.44.2.9 +++ functions.php 20 Jul 2004 10:39:35 -0000 1.44.2.10 @@ -23,7 +23,7 @@ // $Id$ // Set the domain if gettext is available -if (is_callable('gettext')) { +if (false && is_callable('gettext')) { define('USE_GETTEXT', true); setlocale(LC_ALL, LOCALE); bindtextdomain('phpbt', './locale'); |
|
From: Benjamin C. <bc...@us...> - 2004-07-20 10:36:34
|
Update of /cvsroot/phpbt/phpbt/languages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6067 Modified Files: Tag: htmltemplates en.php Log Message: New base language file Index: en.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/languages/en.php,v retrieving revision 1.39 retrieving revision 1.39.2.1 diff -u -r1.39 -r1.39.2.1 --- en.php 23 Jul 2003 01:22:12 -0000 1.39 +++ en.php 20 Jul 2004 10:36:25 -0000 1.39.2.1 @@ -2,7 +2,7 @@ // en.php - English strings and titles // ------------------------------------------------------------------------ -// Copyright (c) 2001, 2002 The phpBugTracker Group +// Copyright (c) 2001 - 2004 The phpBugTracker Group // ------------------------------------------------------------------------ // This file is part of phpBugTracker // @@ -23,270 +23,329 @@ // $Id$ $STRING = array( - 'lang_charset' => 'iso-8859-1', - 'nouser' => 'That user does not exist', - 'dupeofself' => 'A bug can\'t be a duplicate of itself', - 'nobug' => 'That bug does not exist', - 'givesummary' => 'Please enter a summary', - 'givedesc' => 'Please enter a description', - 'noprojects' => 'No projects found', - 'totalbugs' => 'Total Bugs', - 'giveemail' => 'Please enter a valid email address', - 'givelogin' => 'Please enter a login', - 'loginused' => 'That login has already been used', - 'newacctsubject' => 'phpBugTracker Login', - 'newacctmessage' => "Your phpBugTracker password is %s", - 'nobugs' => 'No bugs found', - 'givename' => 'Please enter a name', - 'edit' => 'Edit', - 'addnew' => 'Add new', - 'nooses' => 'No OSes found', - 'giveinitversion' => 'Please enter an initial version for the project', - 'giveversion' => 'Please enter a version', - 'noversions' => 'No versions found', - 'nocomponents' => 'No components found', - 'nostatuses' => 'No statuses found', - 'noseverities' => 'No severities found', - 'givepassword' => 'Please enter a password', - 'nousers' => 'No users found', - 'bugbadperm' => 'You cannot change this bug', - 'bugbadnum' => 'That bug does not exist', - 'datecollision' => 'Someone has updated this bug since you viewed it. The bug info has been reloaded with the latest changes.', - 'passwordmatch' => 'Those passwords don\'t match -- please try again', - 'nobughistory' => 'There is no history for that bug', - 'logintomodify' => 'You must be logged in to modify this bug', - 'dupe_attachment' => 'That attachment already exists for this bug', - 'give_attachment' => 'Please specify a file to upload', - 'no_attachment_save_path' => 'Couldn\'t find where to save the file!', - 'attachment_path_not_writeable' => 'Couldn\'t create a file in the save path', - 'attachment_move_error' => 'There was an error moving the uploaded file', - 'bad_attachment' => 'That attachment does not exist', - 'attachment_too_large' => 'The file you specified is larger than '.number_format(ATTACHMENT_MAX_SIZE).' bytes', - 'bad_permission' => 'You do not have the permissions required for that function', - 'project_only_all_groups' => 'You cannot choose specific groups when "All Groups" is chosen', - 'previous_bug' => 'Previous', - 'next_bug' => 'Next', - 'already_voted' => 'You have already voted for this bug', - 'too_many_votes' => 'You have reached the maximum number of votes per user', - 'no_votes' => 'There are no votes for this bug', - 'user_filter' => array( - 0 => 'All users', - 1 => 'Active users', - 2 => 'Inactive users'), - 'dupe_dependency' => 'That bug dependency has already been added', - 'image_path_not_writeable' => 'The subdirectory "jpgimages" is not writeable by the web process, so the summary image can not be rendered', - 'password_changed' => 'Your password has been changed', - 'prefs_changed' => 'Your preferences have been changed', - 'databaselist' => 'Database list', - 'database' => 'Database', - 'databases' => 'Databases', - 'name' => 'Name', - 'description' => 'Description', - 'sortorder' => 'Sort order', - 'suredeletedb' => 'Are you sure to delete this database?', - 'suredeletesite' => 'Are you sure to delete this site?', - 'delete' => 'Delete', - 'version' => 'Version', - 'addnewsite' => 'Add new Site', - 'sitelist' => 'Site list', - 'sites' => 'Sites', - 'QUERY' => array( - 'opt_All' => 'All', - 'Project' => 'Project', - 'Version' => 'Version', - 'Component' => 'Component', - 'Status' => 'Status', - 'Resolution' => 'Resolution', - 'OpSys' => 'OpSys', - 'Priority' => 'Priority', - 'Severity' => 'Severity', - 'Database' => 'Database', - 'ReportedOnSite' => 'Reported on Site', - 'Summary' => 'Summary', - 'DescriptionEntry' => 'Description / Comment', - 'SortBy' => 'Sort By', - 'SortBy_BugNumber' => 'Bug Number', - 'SortBy_Severity' => 'Severity', - 'SortBy_Reporter' => 'Reporter', - 'SortBy_Priority' => 'Priority', - 'SortBy_Status' => 'Status', - 'SortAsc' => 'Ascending', - 'SortDesc' => 'Descending', - 'SaveThisQueryAs' => 'Save this query as', - 'ResetBackToDefaultQuery' => 'Reset back to default query', - 'SubmitQuery' => 'Submit query', - 'SavedQueries' => 'Saved Queries', - 'GoToThe' => 'Go to the', - 'AdvancedQueryPage' => 'advanced query page', - 'SimpleQueryPage' => 'simple query page', - 'SureDeleteSavedQuery' => 'Are you sure you want to delete this saved query?', - 'MatchingAs' => 'matching as', - 'MatchingAs_Regexp' => 'regexp', - 'MatchingAs_NotRegexp' => 'not regexp', - 'MatchingAs_Substring' => 'substring', - 'MatchingAs_Exact' => 'exact', - 'eMail_Reporter' => 'Reporter', - 'eMail_AssignedTo' => 'Assigned To' - ), - 'WRAP' => array( - 'FindBug' => 'Find Bug', - 'Home' => 'Home', - 'AddNewBug' => 'Add a new Bug', - 'QueryBugs' => 'Query Bugs', - 'ViewReports' => 'View Reports', - 'Documentation' => 'Read Documentation', - 'AdminTools' => 'Admin Tools', - 'CreateNewAccount' => 'Create a new Account', - 'Email' => 'Email', - 'Login' => 'Login', - 'DoLogin' => 'Login', - 'BugsAssigned' => 'Bugs assigned to me', - 'BugsReported' => 'Bugs reported by me', - 'PersonalPage' => 'Personal Page', - 'Logout' => 'Logout', - 'EmailPassword' => 'Email Password', - 'RememberMe' => 'Remember me', - ), - 'BUGFORM' => array( - 'Project' => 'Project', - 'Version' => 'Version', - 'Summary' => 'Summary', - 'Description' => 'Description', - 'Severity' => 'Severity', - 'Priority' => 'Priority', - 'Site' => 'Site', - 'Database' => 'Database', - 'Component' => 'Component', - 'OS' => 'OS', - 'AddAnother' => 'Add another', - 'Submit' => 'Submit' - ), - 'BUGDISPLAY' => array( - 'reporter' => 'Reporter', - 'returnto' => 'Return to', - 'buglist' => 'bug list', - 'project' => 'Project', - 'created' => 'Created', - 'version' => 'Version', - 'closedinversion' => 'Closed in Version', - 'tobeclosedinversion' => 'To be Closed in Version', - 'assignedto' => 'Assigned To', - 'assignedtonobody' => 'Nobody', - 'bugdependency' => 'Dependencies', - 'blocks' => 'Blocks', - 'adddependency' => 'Add Dependency', - 'removedependency' => 'Remove Dependency', - 'summary' => 'Summary', - 'status' => 'Status', - 'description' => 'Description', - 'severity' => 'Severity', - 'priority' => 'Priority', - 'component' => 'Component', - 'resolution' => 'Resolution', - 'resolutionnone' => 'None', - 'addcc' => 'Add CC', - 'removeselectedcc' => 'Remove selected CCs', - 'additionalcomments' => 'Additional Comments', - 'attachments' => 'Attachments', - 'createattachment' => 'Create Attachment', - 'suredeleteattachment' => 'Are you sure you want to delete this attachment?', - 'name' => 'Name', - 'size' => 'Size', - 'type' => 'Type', - 'created' => 'Created', - 'voteforthisbug' => 'Vote for this bug', - 'viewvotes' => 'View votes', - 'forthisbug' => 'for this bug', - 'viewbugactivity' => 'View bug activity', - 'printableview' => 'Printable View', - 'noattachments' => 'No attachments', - 'comments' => 'Comments', - 'postedby' => 'Posted By', - 'date' => 'Date', - 'dateon' => 'On', - 'submit' => 'Submit', - 'site' => 'Reported on Site', - 'database' => 'Database', - 'os' => 'OS', - 'chooseone' => 'Choose One', - 'suppressemail' => 'Suppress notification email' - ), - 'USER_PREF' => array( - 'ReceiveNotifications' => 'Receive notifications of bug changes via email', - 'ShowSavedQueries' => 'Show saved queries on the homepage', - 'ChangePassword' => 'Change password', - 'EnterNewPassword' => 'Please enter your new password twice below', - 'Password' => 'Password', - 'Verify' => 'Verify', - 'ChangePreferences' => 'ChangePreferences', - 'BugListColumns' => 'Bug List Columns', - 'ChooseFields' => 'Choose the fields you want to see in the bug list', - 'SureDeleteVote' => 'Are you sure you want to delete this vote?', - 'Votes' => 'Votes', - 'Bug' => 'Bug', - 'When' => 'When', - 'ColumnPreferencesSaved' => 'Your bug list column preferences have been saved', - 'DefResults' => 'Number of results on query page:' - ), - 'INDEX' => array( - 'FiveRecentlySubmitted' => 'Five most recently submitted bugs', - 'FiveRecentlyClosed' => 'Five most recently closed bugs', - 'QuickStats' => 'Quick stats', - 'Status' => 'Status', - 'NumberOfBugs' => '# bugs', - 'SavedQueries' => 'Saved Queries' - ) -); + "That attachment does not exist" => "That attachment does not exist", + "Please specify a file to upload" => "Please specify a file to upload", + "The file you specified is larger than %s bytes" => "The file you specified is larger than %s bytes", + "The file you specified is larger than %d bytes" => "The file you specified is larger than %d bytes", + "That bug does not exist" => "That bug does not exist", + "That attachment already exists for this bug" => "That attachment already exists for this bug", + "Couldn't find where to save the file!" => "Couldn't find where to save the file!", + "Couldn't create a file in the save path" => "Couldn't create a file in the save path", + "There was an error moving the uploaded file" => "There was an error moving the uploaded file", + "Add Attachment" => "Add Attachment", + "You do not have the permissions required for that function" => "You do not have the permissions required for that function", + "Bug Votes" => "Bug Votes", + "You have already voted for this bug" => "You have already voted for this bug", + "You have reached the maximum number of votes per user" => "You have reached the maximum number of votes per user", + "There is no history for this bug" => "There is no history for this bug", + "Bug History" => "Bug History", + "You can not change this bug" => "You can not change this bug", + "Someone has updated this bug since you viewed it. The bug info has been reloaded with the latest changes." => "Someone has updated this bug since you viewed it. The bug info has been reloaded with the latest changes.", + "That user does not exist" => "That user does not exist", + "That bug dependency has already been added" => "That bug dependency has already been added", + "Please enter a summary" => "Please enter a summary", + "Please enter a description" => "Please enter a description", + "Create Bug" => "Create Bug", + "View Bug" => "View Bug", + "No projects found" => "No projects found", + "Select Project" => "Select Project", + "Invalid login" => "Invalid login", + "phpBugTracker Login" => "phpBugTracker Login", + "Your phpBugTracker password is %s" => "Your phpBugTracker password is %s", + "Your password has been emailed to you" => "Your password has been emailed to you", + "No bugs found" => "No bugs found", + "Bug Summary" => "Bug Summary", + "Project" => "Project", + "Open" => "Open", + "Total" => "Total", + "Home" => "Home", + "Please enter the host name for your database server" => "Please enter the host name for your database server", + "Please enter the name of the database you will be using" => "Please enter the name of the database you will be using", + "Please enter the user name for connecting to the database" => "Please enter the user name for connecting to the database", + "Please enter the phpBT email address" => "Please enter the phpBT email address", + "Please enter the admin login" => "Please enter the admin login", + "Please use a valid email address for the admin login" => "Please use a valid email address for the admin login", + "Please enter the admin password" => "Please enter the admin password", + "Please confirm the admin password" => "Please confirm the admin password", + "The admin passwords don't match" => "The admin passwords don't match", + "Error writing to config.php" => "Error writing to config.php", + "Please enter a login" => "Please enter a login", + "Please enter a valid email" => "Please enter a valid email", + "That login has already been used" => "That login has already been used", + "New account created" => "New account created", + "Create new account" => "Create new account", + "Query Bugs" => "Query Bugs", + "Bug List" => "Bug List", + "Assigned To" => "Assigned To", + "Reporting" => "Reporting", + "Bug Counts by Date" => "Bug Counts by Date", + "Your bug list column preferences have been saved" => "Your bug list column preferences have been saved", + "Please enter a password" => "Please enter a password", + "Those passwords don't match -- please try again" => "Those passwords don't match -- please try again", + "Password changed" => "Password changed", + "Changes Saved" => "Changes Saved", + "Preferences changed" => "Preferences changed", + "Receive notifications of bug changes via email" => "Receive notifications of bug changes via email", + "Show saved queries on the homepage" => "Show saved queries on the homepage", + "User preferences" => "User preferences", + "Configuration" => "Configuration", + "Please enter a name" => "Please enter a name", + "Edit Database" => "Edit Database", + "Database List" => "Database List", + "Edit Group" => "Edit Group", + "Group List" => "Group List", + "Edit Operating System" => "Edit Operating System", + "Operating System List" => "Operating System List", + "Please enter a version" => "Please enter a version", + "Edit Version" => "Edit Version", + "Edit Component" => "Edit Component", + "You cannot choose specific groups when \"All Groups\" is chosen" => "You cannot choose specific groups when \"All Groups\" is chosen", + "Edit Project" => "Edit Project", + "Project List" => "Project List", + "Edit Resolution" => "Edit Resolution", + "Resolution List" => "Resolution List", + "Edit Severity" => "Edit Severity", + "Severity List" => "Severity List", + "Edit Site" => "Edit Site", + "Site List" => "Site List", + "Edit Status" => "Edit Status", + "Status List" => "Status List", + "Please enter an email" => "Please enter an email", + "Edit User" => "Edit User", + "User List" => "User List", + "Name" => "Name", + "Description" => "Description", + "Owner" => "Owner", + "None" => "None", + "Active" => "Active", + "Submit" => "Submit", + "Add new project" => "Add new project", + "Created Date" => "Created Date", + "Yes" => "Yes", + "No" => "No", + "Variable" => "Variable", + "Value" => "Value", + "Information" => "Information", + "description" => "description", + "Sort Order" => "Sort Order", + "Database list" => "Database list", + "Add new database" => "Add new database", + "Are you sure you want to delete this item?" => "Are you sure you want to delete this item?", + "Delete" => "Delete", + "Add new group" => "Add new group", + "Users" => "Users", + "Locked" => "Locked", + "This will remove all user assignments to this group and the group itself. Continue?" => "This will remove all user assignments to this group and the group itself. Continue?", + "This will remove all user assignments to this group. Continue?" => "This will remove all user assignments to this group. Continue?", + "Purge" => "Purge", + "Assignable" => "Assignable", + "Find Bug" => "Find Bug", + "Projects" => "Projects", + "Groups" => "Groups", + "Documentation" => "Documentation", + "User Tools" => "User Tools", + "Statuses" => "Statuses", + "Resolutions" => "Resolutions", + "Severities" => "Severities", + "Operating Systems" => "Operating Systems", + "Databases" => "Databases", + "Sites" => "Sites", + "Regex" => "Regex", + "Add new operating system" => "Add new operating system", + "Are you sure you want to delete this OS" => "Are you sure you want to delete this OS", + "Items with a Sort Order = 0 will not be selectable by users." => "Items with a Sort Order = 0 will not be selectable by users.", + "Only those items that have no bugs referencing them can be deleted." => "Only those items that have no bugs referencing them can be deleted.", + "Project Information" => "Project Information", + "Version Information" => "Version Information", + "Initial Version" => "Initial Version", + "Component Information" => "Component Information", + "Initial Component Name" => "Initial Component Name", + "Only users in the following groups can see this project" => "Only users in the following groups can see this project", + "These developers can administer this project" => "These developers can administer this project", + "Versions" => "Versions", + "Add new version" => "Add new version", + "Version" => "Version", + "Created" => "Created", + "No versions found" => "No versions found", + "Components" => "Components", + "Add new component" => "Add new component", + "Component" => "Component", + "No components found" => "No components found", + "Add new resolution" => "Add new resolution", + "Are you sure you want to delete this resolution?" => "Are you sure you want to delete this resolution?", + "Row Color" => "Row Color", + "Add new severity" => "Add new severity", + "Are you sure you want to delete this severity?" => "Are you sure you want to delete this severity?", + "Add new site" => "Add new site", + "Open/Closed" => "Open/Closed", + "Closed" => "Closed", + "Add new status" => "Add new status", + "Login" => "Login", + "Email" => "Email", + "First Name" => "First Name", + "Last Name" => "Last Name", + "Password" => "Password", + "User Groups" => "User Groups", + "Email Notify" => "Email Notify", + "Add new user" => "Add new user", + "Filter" => "Filter", + "Bug" => "Bug", + "Reporter" => "Reporter", + "Assigned to" => "Assigned to", + "Status" => "Status", + "Resolution" => "Resolution", + "Severity" => "Severity", + "Priority" => "Priority", + "Operating System" => "Operating System", + "Summary" => "Summary", + "URL" => "URL", + "Depends on bugs" => "Depends on bugs", + "Blocks bugs" => "Blocks bugs", + "Comments" => "Comments", + "Posted by" => "Posted by", + "Back to bug" => "Back to bug", + "You must login to modify this bug" => "You must login to modify this bug", + "Return to bug list" => "Return to bug list", + "Previous bug" => "Previous bug", + "Next bug" => "Next bug", + "To be closed in version" => "To be closed in version", + "Choose one" => "Choose one", + "Database" => "Database", + "Closed in version" => "Closed in version", + "Site" => "Site", + "Add CC" => "Add CC", + "Add dependency" => "Add dependency", + "Remove dependency" => "Remove dependency", + "Remove selected CCs" => "Remove selected CCs", + "Additional comments" => "Additional comments", + "Supress notification email" => "Supress notification email", + "Attachments" => "Attachments", + "Create new attachment" => "Create new attachment", + "Size" => "Size", + "Type" => "Type", + "Are you sure you want to delete this attachment?" => "Are you sure you want to delete this attachment?", + "No attachments found for this bug" => "No attachments found for this bug", + "Vote for this bug" => "Vote for this bug", + "View votes" => "View votes", + "View bug history" => "View bug history", + "Date" => "Date", + "Who" => "Who", + "What" => "What", + "Old Value" => "Old Value", + "New Value" => "New Value", + "When" => "When", + "No history found for this bug" => "No history found for this bug", + "Download to spreadsheet" => "Download to spreadsheet", + "No votes found for this bug" => "No votes found for this bug", + "Back" => "Back", + "Five most recently submitted bugs" => "Five most recently submitted bugs", + "Five most recently closed bugs" => "Five most recently closed bugs", + "Saved Queries" => "Saved Queries", + "The image path is not writeable" => "The image path is not writeable", + "Quick Stats" => "Quick Stats", + "# bugs" => "# bugs", + "phpBugTracker Installation" => "phpBugTracker Installation", + "DB Test Failure" => "DB Test Failure", + "The installation script could not connect to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Please check these details are correct and that the database already exists then retry." => "The installation script could not connect to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Please check these details are correct and that the database already exists then retry.", + "DB Test Success" => "DB Test Success", + "The installation script successfully connected to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Congratulations!" => "The installation script successfully connected to the database <b>%s</b> on the host <b>%s</b> using the specified username and password.<br>Congratulations!", + "Close window" => "Close window", + "Database Options" => "Database Options", + "Database Name" => "Database Name", + "This database must already exist" => "This database must already exist", + "User" => "User", + "Table Prefix" => "Table Prefix", + "Test Database Connection" => "Test Database Connection", + "phpBT Email" => "phpBT Email", + "The email address used for sending bug updates, etc." => "The email address used for sending bug updates, etc.", + "Admin Login" => "Admin Login", + "Must be a valid email address" => "Must be a valid email address", + "Admin Password" => "Admin Password", + "Confirm Password" => "Confirm Password", + "Encrypt Passwords in DB" => "Encrypt Passwords in DB", + "When you submit the form, the database tables will be created and config.php will be saved to disk. You will then be able to login and use the bug tracker." => "When you submit the form, the database tables will be created and config.php will be saved to disk. You will then be able to login and use the bug tracker.", + "Since config.php is not writeable by this script, when you submit this form +you will be prompted to save config.php. Copy this file to +the location of the bug tracker, and then you will be able to +<a href=\index.php\>login to the bug tracker</a>. From the +home page you can go to the Admin Tools and customize your +installation via the Configuration link. Once you have +completed the configuration, you will be ready to add a project and +start reporting bugs!" => "Since config.php is not writeable by this script, when you submit this form +you will be prompted to save config.php. Copy this file to +the location of the bug tracker, and then you will be able to +<a href=\index.php\>login to the bug tracker</a>. From the +home page you can go to the Admin Tools and customize your +installation via the Configuration link. Once you have +completed the configuration, you will be ready to add a project and +start reporting bugs!", + "Save Options" => "Save Options", + "User Login" => "User Login", + "Invalid login and/or password" => "Invalid login and/or password", + "Your password has been mailed to you" => "Your password has been mailed to you", + "Email my password" => "Email my password", + "Open a new account" => "Open a new account", + "You have been logged out" => "You have been logged out", + "Return to phpBugTracker home" => "Return to phpBugTracker home", + "Sorry, but the self-creation of new accounts has been disabled. Please contact the administrator to have an account created for you." => "Sorry, but the self-creation of new accounts has been disabled. Please contact the administrator to have an account created for you.", + "Create a new account" => "Create a new account", + "optional" => "optional", + "Thanks for creating an account. Check your email for your password." => "Thanks for creating an account. Check your email for your password.", + "First, you must pick a product on which to enter a bug." => "First, you must pick a product on which to enter a bug.", + "All" => "All", + "Sort by" => "Sort by", + "Bug number" => "Bug number", + "Ascending" => "Ascending", + "Descending" => "Descending", + "Save this query as" => "Save this query as", + "Reset to default query" => "Reset to default query", + "Are you sure you want to delete this saved query?" => "Are you sure you want to delete this saved query?", + "Go to the advanced query page" => "Go to the advanced query page", + "Reported on Site" => "Reported on Site", + "matching as" => "matching as", + "regexp" => "regexp", + "not regexp" => "not regexp", + "substring" => "substring", + "exact" => "exact", + "A description entry" => "A description entry", + "Created Date Range" => "Created Date Range", + "to" => "to", + "Closed in Version" => "Closed in Version", + "To be Closed in Version" => "To be Closed in Version", + "Sort By" => "Sort By", + "Go to the simple query page" => "Go to the simple query page", + "Show bug statistics for the selected project" => "Show bug statistics for the selected project", + "All projects" => "All projects", + "Go" => "Go", + "Bug Resolutions" => "Bug Resolutions", + "Unassigned" => "Unassigned", + "Upgade phpBugTracker" => "Upgade phpBugTracker", + "Your database has been updated." => "Your database has been updated.", + "phpBugTracker home" => "phpBugTracker home", + "This script will upgrade your database from version %s to version %s of phpBugTracker." => "This script will upgrade your database from version %s to version %s of phpBugTracker.", + "Do it!" => "Do it!", + "Change Password" => "Change Password", + "Enter new password" => "Enter new password", + "Verify password" => "Verify password", + "Change Preferences" => "Change Preferences", + "Number of results per page" => "Number of results per page", + "Bug List Columns" => "Bug List Columns", + "Choose the fields you want to see in the bug list" => "Choose the fields you want to see in the bug list", + "Votes" => "Votes", + "Are you sure you want to delete this vote?" => "Are you sure you want to delete this vote?", + "Add a new bug" => "Add a new bug", + "View Reports" => "View Reports", + "Create a New Account" => "Create a New Account", + "Read Documentation" => "Read Documentation", + "Administration Tools" => "Administration Tools", + "Email Password" => "Email Password", + "Forgot your password? Have it sent to you" => "Forgot your password? Have it sent to you", + "Remember %s for next time" => "Remember %s for next time", + "Remember me" => "Remember me", + "Bugs assigned to me" => "Bugs assigned to me", + "Bugs reported by me" => "Bugs reported by me", + "Personal Page" => "Personal Page", + "Logout %s" => "Logout %s", + ); -// Page titles -$TITLE = array( - 'enterbug' => 'Enter a Bug', - 'editbug' => 'Edit Bug', - 'newaccount' => 'Create a new account', - 'bugquery' => 'Bug Query', - 'buglist' => 'Bug List', - 'addcomponent' => 'Add Component', - 'editcomponent' => 'Edit Component', - 'addproject' => 'Add Project', - 'editproject' => 'Edit Project', - 'addversion' => 'Add Version', - 'editversion' => 'Edit Version', - 'addsite' => 'Add Site', - 'editsite' => 'Edit Site', - 'project' => 'Projects', - 'os' => 'Operating Systems', - 'resolution' => 'Resolutions', - 'status' => 'Statuses', - 'severity' => 'Severities', - 'user' => 'Users', - 'home' => 'Home', - 'reporting' => 'Reporting', - 'group' => 'Groups', - 'bugvotes' => 'Bug Votes', - 'bughistory' => 'Bug History', - 'viewbug' => 'View Bug', - 'addattachment' => 'Add Attachment', - 'accountcreated' => 'Account Created', - 'changessaved' => 'Changes Saved', - 'preferences' => 'User Preferences', - 'usertools' => 'User Tools', - 'edituser' => 'Edit User', - 'adduser' => 'Add User', - 'editstatus' => 'Edit Status', - 'addstatus' => 'Add Status', - 'editseverity' => 'Edit Severity', - 'addseverity' => 'Add Severity', - 'editresolution' => 'Edit Resolution', - 'addresolution' => 'Add Resolution', - 'editos' => 'Edit Operating System', - 'addos' => 'Add Operating System', - 'editgroup' => 'Edit Group', - 'addgroup' => 'Add Group', - 'configuration' => 'Configuration', - 'adddatabase' => 'Add Database', - 'editdatabase' => 'Edit Database', - 'database' => 'Databases', - 'site' => 'Sites' -); - -?> +?> \ No newline at end of file |
|
From: Benjamin C. <bc...@us...> - 2004-07-19 13:47:01
|
Update of /cvsroot/phpbt/phpbt/templates/default In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32536/templates/default Modified Files: Tag: htmltemplates buglist.html Log Message: Fixes bug #986339 - Download link not working after viewing a bug then using the return to list link Index: buglist.html =================================================================== RCS file: /cvsroot/phpbt/phpbt/templates/default/buglist.html,v retrieving revision 1.8.6.2 retrieving revision 1.8.6.3 diff -u -r1.8.6.2 -r1.8.6.3 --- buglist.html 2 May 2004 17:08:16 -0000 1.8.6.2 +++ buglist.html 19 Jul 2004 13:46:41 -0000 1.8.6.3 @@ -24,5 +24,5 @@ </table> <?php include('admin/pagination.html'); ?> <div align="center"> - <a href="<?php echo $_SERVER['REQUEST_URI']; ?>&xl=1"><?php echo translate("Download to spreadsheet"); ?></a> + <a href="query.php?xl=1"><?php echo translate("Download to spreadsheet"); ?></a> </div> |