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:
authorYuichiro <yuichiro@pop07.odn.ne.jp>2011-05-15 21:40:11 +0400
committerMarc Delisle <marc@infomarc.info>2011-05-15 21:40:11 +0400
commite53fa429808bca3ac3631519a18b7c26761194a5 (patch)
tree0f90340dce6eddce95bda87dd31866bdced4a5ad
parent8d3f3201fa5a6bf6f11bac28ec7af2c3627cfcbd (diff)
Patch #3302354 Add gettext wrappers around a message
-rw-r--r--ChangeLog1
-rw-r--r--js/import.js2
-rw-r--r--js/messages.php3
3 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 9c9db95786..f1379432c3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,7 @@
+ "up to date" message on main page when current version is up to date
+ Update to jQuery 1.6.1
+ Patch #3256122 [search] Show/hide db search results
++ Patch #3302354 Add gettext wrappers around a message
3.4.1.0 (not yet released)
- bug #3301108 [interface] Synchronize and already configured host
diff --git a/js/import.js b/js/import.js
index 0bcc3d0104..84457163a3 100644
--- a/js/import.js
+++ b/js/import.js
@@ -16,7 +16,7 @@ function changePluginOpts() {
var selected_plugin_name = $("#plugins option:selected").attr("value");
$("#" + selected_plugin_name + "_options").fadeIn('slow');
if(selected_plugin_name == "csv") {
- $("#import_notification").text("Note: If the file contains multiple tables, they will be combined into one");
+ $("#import_notification").text(PMA_messages['strImportCSV']);
} else {
$("#import_notification").text("");
}
diff --git a/js/messages.php b/js/messages.php
index 6d7b0e7c84..ee2b56cf9d 100644
--- a/js/messages.php
+++ b/js/messages.php
@@ -86,6 +86,9 @@ $js_messages['strShowSearchResults'] = __('Show search results');
//$js_messages['strBrowsing'] = __('Browsing');
//$js_messages['strDeleting'] = __('Deleting');
+/* For import.js */
+$js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, they will be combined into one');
+
/* For sql.js */
$js_messages['strHideQueryBox'] = __('Hide query box');
$js_messages['strShowQueryBox'] = __('Show query box');