Translate the filemanager

This commit is contained in:
Johannes Zellner
2020-11-10 00:59:03 +01:00
parent 89cde563f6
commit ec00eecab3
3 changed files with 176 additions and 108 deletions

View File

@@ -8,7 +8,9 @@
"dialog": {
"cancel": "Cancel",
"save": "Save",
"close": "Close"
"close": "Close",
"no": "No",
"yes": "Yes"
},
"username": "Username",
"displayName": "Display name",
@@ -358,6 +360,77 @@
}
},
"filemanager": {
"title": "File Manager"
"title": "File Manager",
"removeDialog": {
"reallyDelete": "Really delete {{ fileName }}?"
},
"newDirectoryDialog": {
"title": "New Folder",
"create": "Create"
},
"newFileDialog": {
"title": "New File",
"create": "Create"
},
"renameDialog": {
"title": "Rename {{ fileName }}",
"newName": "New Name",
"rename": "Rename"
},
"chownDialog": {
"title": "Change ownership for {{ fileName }}",
"newOwner": "New Owner",
"change": "Change Owner",
"recursiveCheckbox": "Change ownership recursively"
},
"uploadingDialog": {
"title": "Uploading files ({{ countDone }}/{{ count }})",
"errorAlreadyExists": "One or more files already exist.",
"errorFailed": "Failed to upload one or more files. Please try again.",
"closeWarning": "Do not refresh the page until upload has finished.",
"retry": "Retry",
"overwrite": "Overwrite"
},
"extractDialog": {
"title": "Extracting {{ fileName }}",
"closeWarning": "Do not refresh the page until extract has finished."
},
"textEditorCloseDialog": {
"title": "File has unsaved changes",
"details": "Your changes will be lost if you don't save them",
"dontSave": "Don't Save"
},
"notFound": "Not found",
"toolbar": {
"new": "New",
"upload": "Upload",
"newFile": "New File",
"newFolder": "New Folder",
"uploadFolder": "Upload Folder",
"uploadFile": "Upload File"
},
"list": {
"name": "Name",
"size": "Size",
"owner": "Owner",
"empty": "No files",
"symlink": "symlink to {{ target }}",
"menu": {
"rename": "Rename",
"chown": "Change Ownership",
"extract": "Extract Here",
"download": "Download",
"delete": "Delete"
}
},
"extract": {
"error": "Failed to extract: {{ message }}"
},
"newDirectory": {
"errorAlreadyExists": "Already exists"
},
"newFile": {
"errorAlreadyExists": "Already exists"
}
}
}