diff options
author | Ctibor Brančík <ctibor@brancik.cz> | 2016-03-20 19:27:01 +0100 |
---|---|---|
committer | Ctibor Brančík <ctibor@brancik.cz> | 2016-03-20 19:27:01 +0100 |
commit | 29a6913890a675ddf1a9239b4407f105e02dc95d (patch) | |
tree | dd9ba21b73e9e704952b49d5153616a9dfa9b98f /sites/all/modules/plupload/js | |
parent | 5ddacae6306ce071d4f7e4d438960d6d3a4c6bd8 (diff) | |
download | brdo-29a6913890a675ddf1a9239b4407f105e02dc95d.tar.gz brdo-29a6913890a675ddf1a9239b4407f105e02dc95d.tar.bz2 |
Added drupal modules for site
Diffstat (limited to 'sites/all/modules/plupload/js')
-rw-r--r-- | sites/all/modules/plupload/js/i18n.js | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sites/all/modules/plupload/js/i18n.js b/sites/all/modules/plupload/js/i18n.js new file mode 100644 index 000000000..01f858401 --- /dev/null +++ b/sites/all/modules/plupload/js/i18n.js @@ -0,0 +1,41 @@ +/** + * @file + * Localization file for Plupload's strings. + */ + +// Add translations. +plupload.addI18n({ + "Select files" : Drupal.t("Select files"), + "Add files to the upload queue and click the start button." : Drupal.t("Add files to the upload queue and click the start button."), + "Filename" : Drupal.t("Filename"), + "Status" : Drupal.t("Status"), + "Size" : Drupal.t("Size"), + "Add files" : Drupal.t("Add files"), + "Stop current upload" : Drupal.t("Stop current upload"), + "Start uploading queue" : Drupal.t("Start uploading queue"), + "Uploaded %d/%d files": Drupal.t("Uploaded %d/%d files"), + "N/A" : Drupal.t("N/A"), + "Drag files here." : Drupal.t("Drag files here."), + "File extension error.": Drupal.t("File extension error."), + "File size error.": Drupal.t("File size error."), + "Init error.": Drupal.t("Init error."), + "HTTP Error.": Drupal.t("HTTP Error."), + "Security error.": Drupal.t("Security error."), + "Generic error.": Drupal.t("Generic error."), + "IO error.": Drupal.t("IO error."), + "Start upload" : Drupal.t("Start upload"), + "Stop upload" : Drupal.t("Stop upload"), + "%d files queued" : Drupal.t("%d files queued"), + "Drag files here." : Drupal.t("Drag files here."), + "Start upload" : Drupal.t("Start upload"), + "%d files queued" : Drupal.t("%d files queued"), + "File: %s" : Drupal.t("File: %s"), + "Close" : Drupal.t("Close"), + "Using runtime: " : Drupal.t("Using runtime: "), + "File: %f, size: %s, max file size: %m" : Drupal.t("File: %f, size: %s, max file size: %m"), + "Upload element accepts only %d file(s) at a time. Extra files were stripped." : Drupal.t("Upload element accepts only %d file(s) at a time. Extra files were stripped."), + "Upload URL might be wrong or doesn\"t exist" : Drupal.t("Upload URL might be wrong or doesn\"t exist"), + "Error: File too large: " : Drupal.t("Error: File too large: "), + "Error: Invalid file extension: " : Drupal.t("Error: Invalid file extension: "), + "File count error." : Drupal.t("File count error.") +}); |