diff options
Diffstat (limited to 'h-source/Application/Views')
-rw-r--r-- | h-source/Application/Views/Notebooks/form.php | 7 | ||||
-rw-r--r-- | h-source/Application/Views/Notebooks/page.php | 9 | ||||
-rw-r--r-- | h-source/Application/Views/page.php | 2 |
3 files changed, 14 insertions, 4 deletions
diff --git a/h-source/Application/Views/Notebooks/form.php b/h-source/Application/Views/Notebooks/form.php index 2effe36..4a661b1 100644 --- a/h-source/Application/Views/Notebooks/form.php +++ b/h-source/Application/Views/Notebooks/form.php @@ -61,9 +61,14 @@ </div> <div class="form_entry"> - <div class="entry_label"><?php echo gtext("does it have a free bios?");?></div> + <div class="entry_label"><?php echo gtext("does it have a free BIOS?");?></div> <?php echo Html_Form::select('bios',$values['bios'],Notebooks::$biosSelect,"select_entry");?> </div> + + <div class="form_entry"> + <div class="entry_label"><?php echo gtext("can free operating systems be installed?");?></div> + <?php echo Html_Form::select('can_free_systems_be_installed',$values['can_free_systems_be_installed'],Notebooks::$installableSelect,"select_entry");?> + </div> <div class="form_entry"> <div class="entry_label"><?php echo gtext("year of commercialization");?>:</div> diff --git a/h-source/Application/Views/Notebooks/page.php b/h-source/Application/Views/Notebooks/page.php index 9c30f86..6c7a97f 100644 --- a/h-source/Application/Views/Notebooks/page.php +++ b/h-source/Application/Views/Notebooks/page.php @@ -33,7 +33,7 @@ <!--if revision--> <?php if (strcmp($this->action,'revision') === 0) { ?> <div class="revision_alert"> - This is an old revision of this page, as edited by <b><?php echo getLinkToUser($u->getUser($updated_by));?></b> at <b><?php echo smartDate($update_date); ?></b>. It may differ significantly from the <a href="<?php echo $this->baseUrl."/notebooks/view/$lang/$id_hard/".$name.$this->viewStatus;?>">current revision</a>. + <?php echo gtext("This is an old revision of this page, as edited by");?> <b><?php echo $u->getLinkToUserFromId($updated_by);?></b> <?php echo gtext('at');?> <b><?php echo smartDate($update_date); ?></b>. <?php echo gtext("It may differ significantly from the");?> <a href="<?php echo $this->baseUrl."/".$this->controller."/view/$lang/$id_hard/".$name.$this->viewStatus;?>"><?php echo gtext("Current revision");?></a>. </div> <?php } ?> @@ -60,9 +60,14 @@ </div> <div class="notebook_vendor"> - <div class="inner_label"><?php echo gtext("does it have a free bios?");?></div> + <div class="inner_label"><?php echo gtext("does it have a free BIOS?");?></div> <div class="inner_value"><b><?php echo $item[$tableName]['bios'];?></b></div> </div> + + <div class="notebook_vendor"> + <div class="inner_label"><?php echo gtext("can free operating systems be installed?");?></div> + <div class="inner_value"><b><?php echo $item[$tableName]['can_free_systems_be_installed'];?></b></div> + </div> <div class="notebook_vendor"> <div class="inner_label"><?php echo gtext("year of commercialization");?>:</div> diff --git a/h-source/Application/Views/page.php b/h-source/Application/Views/page.php index 082357f..dad60f6 100644 --- a/h-source/Application/Views/page.php +++ b/h-source/Application/Views/page.php @@ -33,7 +33,7 @@ <!--if revision--> <?php if (strcmp($this->action,'revision') === 0) { ?> <div class="revision_alert"> - <?php echo gtext("This is an old revision of this page, as edited by");?> <b><?php echo getLinkToUser($u->getUser($updated_by));?></b> <?php echo gtext('at');?> <b><?php echo smartDate($update_date); ?></b>. <?php echo gtext("It may differ significantly from the");?> <a href="<?php echo $this->baseUrl."/".$this->controller."/view/$lang/$id_hard/".$name.$this->viewStatus;?>"><?php echo gtext("Current revision");?></a>. + <?php echo gtext("This is an old revision of this page, as edited by");?> <b><?php echo $u->getLinkToUserFromId($updated_by);?></b> <?php echo gtext('at');?> <b><?php echo smartDate($update_date); ?></b>. <?php echo gtext("It may differ significantly from the");?> <a href="<?php echo $this->baseUrl."/".$this->controller."/view/$lang/$id_hard/".$name.$this->viewStatus;?>"><?php echo gtext("Current revision");?></a>. </div> <?php } ?> |