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:
-rw-r--r--db_qbe.php7
-rw-r--r--libraries/DBQbe.class.php8
-rw-r--r--libraries/SavedSearches.class.php4
3 files changed, 11 insertions, 8 deletions
diff --git a/db_qbe.php b/db_qbe.php
index fb991b78b2..d2cebe443b 100644
--- a/db_qbe.php
+++ b/db_qbe.php
@@ -92,7 +92,8 @@ $url_params['goto'] = 'db_qbe.php';
require 'libraries/db_info.inc.php';
if ($message_to_display) {
- PMA_Message::error(__('You have to choose at least one column to display!'))->display();
+ PMA_Message::error(__('You have to choose at least one column to display!'))
+ ->display();
}
unset($message_to_display);
@@ -123,8 +124,8 @@ if ($displayUpdateSearchHint) {
$response->addHTML(
PMA_Message::notice(
__(
- 'After saving or loading a search, you can rename it and save the '
- . 'new criteria.'
+ 'After saving or loading a search bookmark, you can rename it and '
+ . 'save the new criteria.'
)
)
);
diff --git a/libraries/DBQbe.class.php b/libraries/DBQbe.class.php
index 5e62f69faf..f3c3dcc7f4 100644
--- a/libraries/DBQbe.class.php
+++ b/libraries/DBQbe.class.php
@@ -1448,9 +1448,9 @@ class PMA_DbQbe
*/
private function _getSavedSearchesField()
{
- $html_output = __('Saved searches:');
+ $html_output = __('Saved search bookmark:');
$html_output .= ' <select name="searchId" id="searchId">';
- $html_output .= '<option value="">New search</option>';
+ $html_output .= '<option value="">New bookmark</option>';
$currentSearch = $this->_getCurrentSearch();
$currentSearchId = null;
@@ -1476,9 +1476,9 @@ class PMA_DbQbe
. 'value="' . $currentSearchName . '" />';
$html_output .= '<input type="hidden" name="action" id="action" value="" />';
$html_output .= '<input type="submit" name="saveSearch" id="saveSearch" '
- . 'value="' . __('Save search') . '" />';
+ . 'value="' . __('Save bookmark') . '" />';
$html_output .= '<input type="submit" name="deleteSearch" id="deleteSearch" '
- . 'value="' . __('Delete search') . '" />';
+ . 'value="' . __('Delete bookmark') . '" />';
return $html_output;
}
diff --git a/libraries/SavedSearches.class.php b/libraries/SavedSearches.class.php
index 63cca46f41..3a62833d28 100644
--- a/libraries/SavedSearches.class.php
+++ b/libraries/SavedSearches.class.php
@@ -246,7 +246,9 @@ class PMA_SavedSearches
|| null == $this->getSearchName()
|| null == $this->getCriterias()
) {
- PMA_Util::mysqlDie(__('Missing information to save the search.'));
+ PMA_Util::mysqlDie(
+ __('Missing information to save the search bookmark.')
+ );
}
$savedSearchesTbl