aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/page.php
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-12-04 19:07:42 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-12-04 19:07:42 +0000
commit9cfcb4bb32e2fb8f5dbabd7faa06e47adf1c23af (patch)
treec1ee0451fe37e64dfe29c98cf8c0905e9ab53767 /h-source/Application/Views/page.php
parentd30d70afd95653bb356603612db6519d6e6ebead (diff)
improved i18n
Diffstat (limited to 'h-source/Application/Views/page.php')
-rw-r--r--h-source/Application/Views/page.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/h-source/Application/Views/page.php b/h-source/Application/Views/page.php
index e879d0e..0cf4e34 100644
--- a/h-source/Application/Views/page.php
+++ b/h-source/Application/Views/page.php
@@ -97,22 +97,22 @@
<?php if (strcmp($this->controller,'videocards') === 0 ) { ?>
<div class="inner_label"><?php echo gtext("how does it work with free software?");?></div>
- <div class="inner_value"><b><?php echo Videocard::$videoReverse[$item[$tableName][$worksField]];?></b></div>
+ <div class="inner_value"><b><?php echo gtext(Videocard::$videoReverse[$item[$tableName][$worksField]]);?></b></div>
<?php } else if (strcmp($this->controller,'printers') === 0 ) { ?>
<div class="inner_label"><?php echo gtext("compatibility with free software");?>:</div>
- <div class="inner_value"><b><?php echo $item[$tableName]['compatibility'];?></b> <a class="open_help_window" target="blank" title="compatibility help page" href="<?php echo $this->baseUrl."/help/index/$lang#printer-compatibility";?>"><img class="top_left_images_help" src="<?php echo $this->baseUrl;?>/Public/Img/Acun/help_hint.png"></a></div>
+ <div class="inner_value"><b><?php echo gtext($item[$tableName]['compatibility']);?></b> <a class="open_help_window" target="blank" title="compatibility help page" href="<?php echo $this->baseUrl."/help/index/$lang#printer-compatibility";?>"><img class="top_left_images_help" src="<?php echo $this->baseUrl;?>/Public/Img/Acun/help_hint.png"></a></div>
<?php } else if (strcmp($this->controller,'scanners') === 0 ) { ?>
<div class="inner_label"><?php echo gtext("compatibility with free software");?>:</div>
- <div class="inner_value"><b><?php echo $item[$tableName]['compatibility'];?></b> <a class="open_help_window" target="blank" title="compatibility help page" href="<?php echo $this->baseUrl."/help/index/$lang#scanner-compatibility";?>"><img class="top_left_images_help" src="<?php echo $this->baseUrl;?>/Public/Img/Acun/help_hint.png"></a></div>
+ <div class="inner_value"><b><?php echo gtext($item[$tableName]['compatibility']);?></b> <a class="open_help_window" target="blank" title="compatibility help page" href="<?php echo $this->baseUrl."/help/index/$lang#scanner-compatibility";?>"><img class="top_left_images_help" src="<?php echo $this->baseUrl;?>/Public/Img/Acun/help_hint.png"></a></div>
<?php } else { ?>
<div class="inner_label"><?php echo gtext("does it work with free software?");?></div>
- <div class="inner_value"><b><?php echo $item[$tableName][$worksField];?></b></div>
+ <div class="inner_value"><b><?php echo gtext($item[$tableName][$worksField]);?></b></div>
<?php } ?>