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 /js/import.js
parent8d3f3201fa5a6bf6f11bac28ec7af2c3627cfcbd (diff)
Patch #3302354 Add gettext wrappers around a message
Diffstat (limited to 'js/import.js')
-rw-r--r--js/import.js2
1 files changed, 1 insertions, 1 deletions
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("");
}