Files
fe_supplier_frontend/src/locales/en-US/friendLink.ts

96 lines
5.0 KiB
TypeScript
Raw Normal View History

export default {
// Friendly Links Management page
'friendLink.title': 'Friendly Links Management',
'friendLink.name': 'Name',
'friendLink.nameEn': 'English Name',
'friendLink.url': 'URL',
'friendLink.logo': 'Logo',
'friendLink.thumbnail': 'Thumbnail',
'friendLink.sort': 'Sort Order',
'friendLink.status': 'Status',
'friendLink.category': 'Category',
'friendLink.operation': 'Operation',
'friendLink.add': 'Add Link',
'friendLink.edit': 'Edit Link',
'friendLink.delete': 'Delete Link',
'friendLink.batchDelete': 'Batch Delete',
'friendLink.enable': 'Enable',
'friendLink.disable': 'Disable',
'friendLink.enabled': 'Enabled',
'friendLink.disabled': 'Disabled',
'friendLink.selectedCount': '{count} items selected',
// Form related
'friendLink.form.name.required': 'Please enter link name',
'friendLink.form.name.placeholder': 'Please enter link name',
'friendLink.form.nameEn.required': 'Please enter English name',
'friendLink.form.nameEn.placeholder': 'Please enter English name',
'friendLink.form.category.required': 'Please select category',
'friendLink.form.category.placeholder': 'Please select category',
'friendLink.form.url.required': 'Please enter URL',
'friendLink.form.url.invalid': 'Please enter a valid URL',
'friendLink.form.url.placeholder': 'Please enter URL starting with http:// or https://',
'friendLink.form.thumbnail.required': 'Please upload thumbnail',
'friendLink.form.thumbnail.upload': 'Upload Thumbnail',
'friendLink.form.sort.required': 'Please enter sort order',
'friendLink.form.sort.placeholder': 'Please enter sort order, smaller number comes first',
// Operation tips
'friendLink.delete.confirm.title': 'Delete Confirmation',
'friendLink.delete.confirm.content': 'Are you sure you want to delete this link?',
'friendLink.delete.success': 'Deleted successfully',
'friendLink.batchDelete.empty': 'Please select items to delete',
'friendLink.batchDelete.confirm.title': 'Batch Delete Confirmation',
'friendLink.batchDelete.confirm.content': 'Are you sure you want to delete {count} selected items?',
'friendLink.batchDelete.success': 'Batch delete successful',
'friendLink.add.success': 'Added successfully',
'friendLink.update.success': 'Updated successfully',
'friendLink.enable.success': 'Enabled successfully',
'friendLink.disable.success': 'Disabled successfully',
'friendLink.enable.confirm.title': 'Enable Confirmation',
'friendLink.enable.confirm.content': 'Are you sure you want to enable this link?',
'friendLink.disable.confirm.title': 'Disable Confirmation',
'friendLink.disable.confirm.content': 'Are you sure you want to disable this link?',
// Friendly Link Category Management
'friendLink.category.title': 'Friendly Link Category Management',
'friendLink.category.name': 'Category Name',
'friendLink.category.level': 'Level',
'friendLink.category.sort': 'Sort Order',
'friendLink.category.parentCategory': 'Parent Category',
'friendLink.category.operation': 'Operation',
'friendLink.category.add': 'Add Category',
'friendLink.category.addChild': 'Add Subcategory',
'friendLink.category.edit': 'Edit',
'friendLink.category.delete': 'Delete',
'friendLink.category.form.title.add': 'Add Category',
'friendLink.category.form.title.addChild': 'Add Subcategory',
'friendLink.category.form.title.edit': 'Edit Category',
'friendLink.category.form.name': 'Category Name',
'friendLink.category.form.name.placeholder': 'Please enter category name',
'friendLink.category.form.name.required': 'Please enter category name',
'friendLink.category.form.parentCategory': 'Parent Category',
'friendLink.category.form.parentCategory.placeholder': 'Please select parent category',
'friendLink.category.form.parentCategory.required': 'Please select parent category',
'friendLink.category.form.sort': 'Sort Order',
'friendLink.category.form.sort.placeholder': 'Please enter sort value, smaller number comes first',
'friendLink.category.form.sort.required': 'Please enter sort value',
'friendLink.category.delete.confirm.title': 'Delete Category',
'friendLink.category.delete.confirm.content': 'Are you sure you want to delete category "{name}"?',
'friendLink.category.delete.hasChildren': 'This category has subcategories and cannot be deleted directly',
'friendLink.category.delete.success': 'Deleted successfully',
'friendLink.category.add.success': 'Added successfully',
'friendLink.category.update.success': 'Updated successfully',
// Category Type
'friendLink.category.type': 'Type',
'friendLink.category.type.normal': 'Normal Display',
'friendLink.category.type.featured': 'Featured Display',
'friendLink.category.form.type': 'Category Type',
'friendLink.category.form.type.placeholder': 'Please select category type',
'friendLink.category.form.type.required': 'Please select category type',
'friendLink.category.form.remark': 'Remark',
'friendLink.category.form.remark.placeholder': 'Please enter remark',
'friendLink.category.form.remark.required': 'Please enter remark',
};