mirror of
https://github.com/langgenius/webapp-conversation.git
synced 2025-12-08 17:32:27 +08:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
const translation = {
|
|
api: {
|
|
success: 'Success',
|
|
saved: 'Saved',
|
|
create: 'Created',
|
|
},
|
|
operation: {
|
|
confirm: 'Confirm',
|
|
cancel: 'Cancel',
|
|
clear: 'Clear',
|
|
save: 'Save',
|
|
edit: 'Edit',
|
|
refresh: 'Restart',
|
|
search: 'Search',
|
|
send: 'Send',
|
|
lineBreak: 'Line break',
|
|
like: 'like',
|
|
dislike: 'dislike',
|
|
ok: 'OK',
|
|
},
|
|
imageUploader: {
|
|
uploadFromComputer: 'Upload from Computer',
|
|
uploadFromComputerReadError: 'Image reading failed, please try again.',
|
|
uploadFromComputerUploadError: 'Image upload failed, please upload again.',
|
|
uploadFromComputerLimit: 'Upload images cannot exceed {{size}} MB',
|
|
pasteImageLink: 'Paste image link',
|
|
pasteImageLinkInputPlaceholder: 'Paste image link here',
|
|
pasteImageLinkInvalid: 'Invalid image link',
|
|
imageUpload: 'Image Upload',
|
|
},
|
|
fileUploader: {
|
|
uploadFromComputer: 'Local upload',
|
|
pasteFileLink: 'Paste file link',
|
|
pasteFileLinkInputPlaceholder: 'Enter URL...',
|
|
uploadFromComputerReadError: 'File reading failed, please try again.',
|
|
uploadFromComputerUploadError: 'File upload failed, please upload again.',
|
|
uploadFromComputerLimit: 'Upload {{type}} cannot exceed {{size}}',
|
|
pasteFileLinkInvalid: 'Invalid file link',
|
|
fileExtensionNotSupport: 'File extension not supported',
|
|
},
|
|
}
|
|
|
|
export default translation
|