diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-04 11:26:22 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-02-04 11:26:22 +0000 |
commit | 799376543af81e836b175b1eb71368f321b84416 (patch) | |
tree | 36c93375dce2cbe3d4a98542a2c09378e3582f68 /h-source/Application/Views/Download/index.php | |
parent | 190ded0397f9434a1fadd0f06775edb6dcf60272 (diff) |
added webcams - part 2
Diffstat (limited to 'h-source/Application/Views/Download/index.php')
-rw-r--r-- | h-source/Application/Views/Download/index.php | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/h-source/Application/Views/Download/index.php b/h-source/Application/Views/Download/index.php index c13e0b3..c153fb8 100644 --- a/h-source/Application/Views/Download/index.php +++ b/h-source/Application/Views/Download/index.php @@ -29,46 +29,50 @@ <div class="credits_external_box"> <div class="credits_item_title"> - Download the h-node hardware database in xml format: + <?php echo gtext("Download the h-node hardware database in xml format");?>: </div> <div class="credits_item_description"> - You can download all the h-node database in one unique xml file in order to parse its contents by means of some proper script (for example a Python or Perl or PHP script) + <?php echo gtext("You can download all the h-node database in one unique xml file in order to parse its contents by means of some proper script (for example a Python or Perl or PHP script)");?> <div class="download_table"> <table width="95%"> <tr> - <td>Download the xml file of all the database</td> + <td><?php echo gtext("Download the xml file of all the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/all/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>notebooks</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>notebooks</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/notebooks/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>wifi cards</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>wifi cards</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/wifi/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>video cards</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>video cards</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/videocards/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>printers</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>printers</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/printers/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>scanners</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>scanners</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/scanners/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>3G cards</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>3G cards</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/threegcards/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> <tr> - <td>Download the xml file of all the <b>soundcards</b> in the database</td> + <td><?php echo gtext("Download the xml file of all the <b>sound cards</b> in the database");?></td> <td><a href="<?php echo $this->baseUrl."/download/soundcards/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> </tr> + <tr> + <td><?php echo gtext("Download the xml file of all the <b>webcams</b> in the database");?></td> + <td><a href="<?php echo $this->baseUrl."/download/webcams/$lang";?>"><img src="<?php echo $this->baseUrl?>/Public/Img/H2O/download.png"></a></td> + </tr> </table> </div> </div> |