Documentation
- Overview
- Applet configuration
- Exposed interface
- JavaScript callbacks
- Custom attributes
- Partitioned upload
- Resume broken uploads
- GUI customization
- Internationalization
- Running uploader as standalone application
- Server side upload handling
- Zipped upload
- Scaled images upload
Internationalization
(since 1.3)
Please follow instructions below to add new language support:
- Download content of messages.properties (english language) file.
- Translate strings (edit file).
- Save file (NB! File encoding must remain UTF-8).
- Add modified messages.properties file to zip archive (you may give any name to zip, i.e. messages_xx.zip).
- Publish zip to the web server at the same directory where jar exists (or custom directory, just update path for step #6).
- Accordingly modify <applet> element of HTML code — insert zip file location right before jar file location:
archive="messages_xx.zip,jumploader_z.jar"
Translation
Hopefully keys in a messages file are self explanatory. For uploader errors it is possible to use predefined patterns (if applicable):
| Pattern | Description |
| ${file.path} | Current file full path |
| ${file.name} | Current file name |
| ${file.length} | Current file length |
| ${uc.maxLength} | Maximum allowed files length (total) |
| ${uc.maxFiles} | Maximum allowed number of files |
| ${uc.maxFileLength} | Maximum allowed single file length |