aboutsummaryrefslogtreecommitdiff
path: root/h-source/Application/Views/Desktop/Search/form.php
diff options
context:
space:
mode:
Diffstat (limited to 'h-source/Application/Views/Desktop/Search/form.php')
-rw-r--r--h-source/Application/Views/Desktop/Search/form.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/h-source/Application/Views/Desktop/Search/form.php b/h-source/Application/Views/Desktop/Search/form.php
index 22650f5..136c544 100644
--- a/h-source/Application/Views/Desktop/Search/form.php
+++ b/h-source/Application/Views/Desktop/Search/form.php
@@ -24,7 +24,7 @@
$(document).ready(function() {
- $(".search_form table").append("<tr><td><input id=\"search_action_input\" type=\"submit\" name=\"action\" value=\"search\"></td></tr>");
+ $(".search_form table").append("<tr><td><input id=\"search_action_input\" type=\"submit\" name=\"action\" value=\"<?php echo gtext('Search');?>\"></td></tr>");
$("#search_action_input").click(function(){
@@ -32,7 +32,7 @@
var s_model = $("#search_model_input").attr("value");
var s_action = $("#search_action_input").attr("value");
- var s_url = "1/" + s_action + "/" + s_type + "/" + s_model;
+ var s_url = "1/search/" + s_type + "/" + s_model;
location.href="<?php echo $this->baseUrl."/search/results/$lang/";?>"+s_url;
return false;
@@ -86,7 +86,7 @@
<td><?php echo Html_Form::input('pciid','','input_entry_search');?></td>
</tr>
<tr>
- <td><input type="submit" name="search_pci" value="search"></td>
+ <td><input type="submit" name="search_pci" value="<?php echo gtext('Search');?>"></td>
</tr>
</table>
</form>
@@ -103,7 +103,7 @@
<td><?php echo Html_Form::textarea('lspci',gtext('write here the output of lspci -vmmnn'),'textarea_entry_search');?></td>
</tr>
<tr>
- <td><input type="submit" name="search_pci" value="search"></td>
+ <td><input type="submit" name="search_pci" value="<?php echo gtext('Search');?>"></td>
</tr>
</table>
</form>