Skip to content

Instantly share code, notes, and snippets.

@Fohlen
Created July 7, 2017 10:59
Show Gist options
  • Save Fohlen/c23118ee630298021c80d08524cd6458 to your computer and use it in GitHub Desktop.
Save Fohlen/c23118ee630298021c80d08524cd6458 to your computer and use it in GitHub Desktop.
Dropzone.js german localization
export default {
'dictDefaultMessage': 'Legen Sie Dateien hier ab um Sie hochzuladen',
'dictFallbackMessage': 'Ihr Browser unterstützt Drag&Drop Dateiuploads nicht',
'dictFallbackText': 'Benutzen Sie das Formular um Ihre Dateien hochzuladen',
'dictFileTooBig': 'Die Datei ist zu groß. Die maximale Dateigröße beträgt {{maxFileSize}}MB',
'dictInvalidFileType': 'Eine Datei dieses Typs kann nicht hochgeladen werden',
'dictResponseError': 'Der Server hat ihre Anfrage mit Status {{statusCode}} abgelehnt',
'dictCancelUpload': 'Hochladen abbrechen',
'dictCancelUploadConfirmation': null,
'dictRemoveFile': 'Datei entfernen',
'dictMaxFilesExceeded': 'Sie können keine weiteren Dateien mehr hochladen'
}
@psyfreak
Copy link

dictFileTooBig should be:

  • maxFilesize instead of maxFileSize
  • Might be better to indicate the current fileSize: Die Datei ist zu groß ({{filesize}}MB). Die maximale Dateigröße beträgt {{maxFilesize}}MB

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment