diff options
author | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-12 21:51:06 +0000 |
---|---|---|
committer | Antonio Gallo <tonicucoz@gmail.com> | 2011-05-12 21:51:06 +0000 |
commit | 3c1f2dfdb82656dc47a1cb467d03e09e52792f24 (patch) | |
tree | 490a63fcaab8213346bb80657e61cde2245bf010 /h-source/Application/Views/Acquisitioncards/form.php | |
parent | 1b84f9bcf2d480431608d8fb08d0671bc945211d (diff) |
h-source:added the other_names entry
Diffstat (limited to 'h-source/Application/Views/Acquisitioncards/form.php')
-rw-r--r-- | h-source/Application/Views/Acquisitioncards/form.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/h-source/Application/Views/Acquisitioncards/form.php b/h-source/Application/Views/Acquisitioncards/form.php index cf7668e..2172e6b 100644 --- a/h-source/Application/Views/Acquisitioncards/form.php +++ b/h-source/Application/Views/Acquisitioncards/form.php @@ -40,9 +40,14 @@ <div class="edit_form"> <div class="form_entry"> - <div class="entry_label"><?php echo gtext("model name");?>: <b>*</b></div> + <div class="entry_label"><?php echo gtext("model name");?>: <b>*</b><br /><span class="entry_label_small"><?php echo gtext("Write here the model name obtained by the lspci or lsusb command.");?></span> <span class="entry_label_small"><?php echo gtext("This is the name of the chipset of your device.");?></span></div> <?php echo Html_Form::input('model',$values['model'],'input_entry');?> </div> + + <div class="form_entry"> + <div class="entry_label"><?php echo gtext("possible other names of the device");?>:<br /><span class="entry_label_small"><?php echo gtext("Add here the device name as written on the device itself or on the device box. Add it only if it is different from the <i>model name</i> already inserted inside the above entry. Add the new name in such a way that there is one name per row.");?></span></div> + <?php echo Html_Form::textarea('other_names',$values['other_names'],'device_textarea_entry');?> + </div> <div class="form_entry"> <div class="entry_label"><?php echo gtext("VendorID:ProductID code of the device");?>: <b>*</b><br /><a target="blank" href="<?php echo $this->baseUrl."/help/index/$lang#vendoridproductid";?>"><?php echo gtext("learn how to find it");?></a></div> |