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>2013-04-16 15:32:51 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-16 15:32:51 +0400
commit27b213431cd07b3dcaba89d9504d39e166ed0c5f (patch)
tree3281a8f79e8d6925ccdd258c55861ec7a02bfa2e /js/import.js
parentb3ee21036a18c4661d9835083e5b13e8eb6fddc4 (diff)
Reference javascript messages by dot notation instead of using ['strFoo']
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 b78d97bb38..b5ae52ca18 100644
--- a/js/import.js
+++ b/js/import.js
@@ -17,7 +17,7 @@ function changePluginOpts()
var selected_plugin_name = $("#plugins option:selected").val();
$("#" + selected_plugin_name + "_options").fadeIn('slow');
if (selected_plugin_name == "csv") {
- $("#import_notification").text(PMA_messages['strImportCSV']);
+ $("#import_notification").text(PMA_messages.strImportCSV);
} else {
$("#import_notification").text("");
}