From: Neil S. <sir...@us...> - 2003-08-13 23:43:03
|
CVSROOT : /cvsroot/publicdnsadmin Module : publicdnsadmin Commit time: 2003-08-13 23:19:10 UTC Modified files: edit_user.php users.php docs/CHANGELOG language/lang-english.php lib/footer.php Log message: Author: SiRVulcaN <sir...@si...> Log message: - Fixed a couple of missed translations. ---------------------- diff included ---------------------- Index: publicdnsadmin/docs/CHANGELOG diff -u publicdnsadmin/docs/CHANGELOG:1.35 publicdnsadmin/docs/CHANGELOG:1.36 --- publicdnsadmin/docs/CHANGELOG:1.35 Wed Aug 13 05:14:13 2003 +++ publicdnsadmin/docs/CHANGELOG Wed Aug 13 16:19:00 2003 @@ -20,3 +20,4 @@ - Added in first stage of multilanguage support. - Default selected language on the main login page is now $language. SiRVulcaN <sir...@si...> - 14/08/2003 - Second stage of multilanguage support added, fully works now. + - Fixed a couple of missed translations. Index: publicdnsadmin/edit_user.php diff -u publicdnsadmin/edit_user.php:1.2 publicdnsadmin/edit_user.php:1.3 --- publicdnsadmin/edit_user.php:1.2 Wed Aug 13 05:14:13 2003 +++ publicdnsadmin/edit_user.php Wed Aug 13 16:19:00 2003 @@ -40,7 +40,7 @@ ?> <form action="update_user.php?id=<?php echo $userid; ?>" method="post"> -<p><b>Username:</b> <?php echo htmlentities($row["username"]); ?></p> +<p><b><? echo _USERNAME; ?>:</b> <?php echo htmlentities($row["username"]); ?></p> <table border="0" cellspacing="0" cellpadding="2"> <tr> <? echo "<td><b>"._NAME.":</b></td>"; ?> Index: publicdnsadmin/language/lang-english.php diff -u publicdnsadmin/language/lang-english.php:1.2 publicdnsadmin/language/lang-english.php:1.3 --- publicdnsadmin/language/lang-english.php:1.2 Wed Aug 13 05:14:14 2003 +++ publicdnsadmin/language/lang-english.php Wed Aug 13 16:19:00 2003 @@ -217,6 +217,7 @@ define("_USERCREATED","The user was successfully created"); define("_TEMPLATECREATED","The template was successfully created"); define("_DOESNOTRESOLVE","does not resolve to"); +define("_POWEREDBY","Powered By"); define("_LICENSEDUNDER","Licensed Under"); define("_REPORTBUGS","Report Bugs To"); define("_DBUNAVAIL","Unable to connect to database"); Index: publicdnsadmin/lib/footer.php diff -u publicdnsadmin/lib/footer.php:1.8 publicdnsadmin/lib/footer.php:1.9 --- publicdnsadmin/lib/footer.php:1.8 Wed Aug 13 05:14:14 2003 +++ publicdnsadmin/lib/footer.php Wed Aug 13 16:19:00 2003 @@ -7,7 +7,7 @@ Distributed under the GPL license, see LICENSE for more information - $Id: footer.php,v 1.8 2003/08/13 12:14:14 sirvulcan Exp $ + $Id: footer.php,v 1.9 2003/08/13 23:19:00 sirvulcan Exp $ */ ?> </td> @@ -21,7 +21,7 @@ <table border="0" cellspacing="1" cellpadding="5" width="100%" height="5%"> <tr> <td valign="top" class="menu" nowrap style="border-top: 1px solid #000000; border-left: 1px solid #000000;border-right: 1px solid #000000; border-bottom: 1px solid #000000;"> - Powered By <a href="http://www.sirvulcan.org/" target="_new">Public DNS Administrator</a>, <? echo _LICENSEDUNDER; ?> <a href="http://www.gnu.org" target="_new">GNU/GPL.</a> <? echo _REPORTBUGS; ?>: + <? echo _POWEREDBY; ?> <a href="http://www.sirvulcan.org/" target="_new">Public DNS Administrator</a>, <? echo _LICENSEDUNDER; ?> <a href="http://www.gnu.org" target="_new">GNU/GPL.</a> <? echo _REPORTBUGS; ?>: <a href="http://sourceforge.net/tracker/?func=add&group_id=78804&atid=554506" target="_new">PublicDNSAdmin Bug Tracker</a>. </td> </tr> Index: publicdnsadmin/users.php diff -u publicdnsadmin/users.php:1.3 publicdnsadmin/users.php:1.4 --- publicdnsadmin/users.php:1.3 Wed Aug 13 05:14:13 2003 +++ publicdnsadmin/users.php Wed Aug 13 16:19:00 2003 @@ -23,7 +23,7 @@ $result = $dbh->query("SELECT * FROM users ORDER BY username"); if (!$dbh->isError($result) && $result->numRows()) { - echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td style=\"background: #000000;\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"2\"><tr><th>". _USERNAME ."</th><th>Name</th><th>". _EMAIL ."</th><th>". _COMPANY ."</th><th>". _DOMAINS ."</th><th></th></tr>\n"; + echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td style=\"background: #000000;\"><table border=\"0\" cellspacing=\"1\" cellpadding=\"2\"><tr><th>". _USERNAME ."</th><th>". _NAME ."</th><th>". _EMAIL ."</th><th>". _COMPANY ."</th><th>". _DOMAINS ."</th><th></th></tr>\n"; $row_id = 0; while ($row = $result->fetchRow()) { ----------------------- End of diff ----------------------- |