Blame view

src/components/mall/DeleteProductLang.js 568 Bytes
1705091d   wuxw   开发完成 admin 台账功能
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  export const messages = {
    en: {
      deleteProduct: {
        title: 'Please confirm your operation',
        confirm: 'Are you sure to delete this product?',
        cancel: 'Cancel',
        confirmBtn: 'Confirm Delete',
        success: 'Product deleted successfully',
        error: 'Failed to delete product'
      }
    },
    zh: {
      deleteProduct: {
        title: '请确认您的操作',
        confirm: '确定删除该商品吗?',
        cancel: '点错了',
        confirmBtn: '确认删除',
        success: '商品删除成功',
        error: '删除商品失败'
      }
    }
  }