Sha256: f0687a7ef0edf34db5d32114322ce919f4f1cbb08c19ecac858bb46859a3fb0b
Contents?: true
Size: 1.02 KB
Versions: 1
Compression:
Stored size: 1.02 KB
Contents
/* * 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 */ (function() { var 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" } }; if (typeof define === "function" && define.amd) { define(function () { return locale; }); } else { window.locale = locale; } }());
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jquery-fileupload-requirejs-rails-0.2.0 | app/assets/javascripts/jquery-fileupload/locale.js |