iztech-design-system-neo
Version:
Design System of project IZtech
35 lines (29 loc) • 992 B
JavaScript
/**
* This served file dropzone and element uploader
*/
const FILE_DROPZONE = {
GUIDE_DRAG_AND_DROP: "Drag and drop or",
GUIDE_PICK_FILES: "pick your files",
HINT_MAX_NUMBER_OF_FILES: "Max total of files is {0}.",
HINT_MAX_SIZE_OF_FILES: "Max size of all files is {0}MB.",
HINT_TYPES_OF_FILES: "Allowed extension for uploaded files: {0}.",
BTN_CONFIRM_UPLOAD_FILES: "Confirm uploading above files",
}
const FORM = {
DEFAULT_PROGRESS: "Uploading progress: {0}%",
OPTION_TYPE: {
CLIENT_FILES: "Upload from computer",
GOOGLE_DRIVE_URL: "Using Google Drive URL",
YOUTUBE_URL: "Using Youtube URL",
},
OPTION_HINT: {
GOOGLE_DRIVE_URL: "Upload your files to Google Drive, then copy and paste shared link here",
YOUTUBE_URL: "Upload your video to Youtube, then copy and paste shared link here",
},
BTN_CONFIRM_UPLOAD_URL: "Upload URL and complete",
BTN_CHANGE_UPLOADED_FILES: "Change uploaded files",
}
export default {
FILE_DROPZONE,
FORM,
}