Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2011-06-22 11:13:02 +0400
committerMichal Čihař <mcihar@suse.cz>2011-06-22 11:14:48 +0400
commitcf905b6afe6982d8fdbe5e459f213798f03a521c (patch)
tree7b4516d5c0255540dcbe3f03d0d117aafcc8b415 /db_search.php
parentfaa30ceb64662d7938b141e231684ca614af880d (diff)
Avoid using (s), there can be always multiple choices
Diffstat (limited to 'db_search.php')
-rw-r--r--db_search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/db_search.php b/db_search.php
index a91bf87521..17a28d7b9b 100644
--- a/db_search.php
+++ b/db_search.php
@@ -297,7 +297,7 @@ else {
<legend><?php echo __('Search in database'); ?></legend>
<table class="formlayout">
- <tr><td><?php echo __('Word(s) or value(s) to search for (wildcard: "%"):'); ?></td>
+ <tr><td><?php echo __('Words or values to search for (wildcard: "%"):'); ?></td>
<td><input type="text" name="search_str" size="60"
value="<?php echo $searched; ?>" /></td>
</tr>
@@ -320,7 +320,7 @@ unset($choices);
</td>
</tr>
<tr><td align="right" valign="top">
- <?php echo __('Inside table(s):'); ?></td>
+ <?php echo __('Inside tables:'); ?></td>
<td rowspan="2">
<?php
echo ' <select name="table_select[]" size="6" multiple="multiple">' . "\n";