aboutsummaryrefslogtreecommitdiff
path: root/vendors/jquery-file-upload/js/locale.js
diff options
context:
space:
mode:
authorSem <sembrestels@riseup.net>2012-07-29 10:15:17 +0200
committerSem <sembrestels@riseup.net>2012-07-29 10:15:17 +0200
commitd00e34131d6177f6d22eb3cf32c50216820aafba (patch)
tree8adfab83855f19bc1de2273216707da99bec9c1d /vendors/jquery-file-upload/js/locale.js
parent24ff6662195222479b4d83d41fa89edc8a3c05d1 (diff)
downloadelgg-d00e34131d6177f6d22eb3cf32c50216820aafba.tar.gz
elgg-d00e34131d6177f6d22eb3cf32c50216820aafba.tar.bz2
Added jquery file upload plugin: https://github.com/blueimp/jQuery-File-Upload
Diffstat (limited to 'vendors/jquery-file-upload/js/locale.js')
-rw-r--r--vendors/jquery-file-upload/js/locale.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/vendors/jquery-file-upload/js/locale.js b/vendors/jquery-file-upload/js/locale.js
new file mode 100644
index 000000000..ea64b0a87
--- /dev/null
+++ b/vendors/jquery-file-upload/js/locale.js
@@ -0,0 +1,29 @@
+/*
+ * jQuery File Upload Plugin Localization Example 6.5.1
+ * https://github.com/blueimp/jQuery-File-Upload
+ *
+ * Copyright 2012, Sebastian Tschan
+ * https://blueimp.net
+ *
+ * Licensed under the MIT license:
+ * http://www.opensource.org/licenses/MIT
+ */
+
+/*global window */
+
+window.locale = {
+ "fileupload": {
+ "errors": {
+ "maxFileSize": "File is too big",
+ "minFileSize": "File is too small",
+ "acceptFileTypes": "Filetype not allowed",
+ "maxNumberOfFiles": "Max number of files exceeded",
+ "uploadedBytes": "Uploaded bytes exceed file size",
+ "emptyResult": "Empty file upload result"
+ },
+ "error": "Error",
+ "start": "Start",
+ "cancel": "Cancel",
+ "destroy": "Delete"
+ }
+};