Commit 7bcc1a9c940468d8c069eb16bfd3782fa57ea89d

Authored by Aaron
1 parent 8fd8955f
Exists in master and in 1 other branch legacy

补全剩余的国际化配置文件

Showing 1 changed file with 28 additions and 0 deletions   Show diff stats
lang/i18n.js
1 1 export default {
2 2 'zh-CN': {
3 3 eagle: {
  4 + confirm: {
  5 + title: '是否执行当前操作?',
  6 + yes: '是',
  7 + no: '否',
  8 + },
4 9 detail: {
5 10 basic: '基本信息',
6 11 },
... ... @@ -27,10 +32,24 @@ export default {
27 32 submitSuccess: '提交成功',
28 33 editSuccess: '编辑成功',
29 34 },
  35 + search: {
  36 + search: '查询',
  37 + reset: '重置',
  38 + unfold: '展开',
  39 + fold: '收起',
  40 + },
  41 + select: {
  42 + select: '请选择',
  43 + },
30 44 },
31 45 },
32 46 'en-US': {
33 47 eagle: {
  48 + confirm: {
  49 + title: 'Perform this operation now?',
  50 + yes: 'Yes',
  51 + no: 'No',
  52 + },
34 53 detail: {
35 54 basic: 'Essential Information',
36 55 },
... ... @@ -57,6 +76,15 @@ export default {
57 76 submitSuccess: 'Submit Success',
58 77 editSuccess: 'Edit Success',
59 78 },
  79 + search: {
  80 + search: 'Search',
  81 + reset: 'Reset',
  82 + unfold: 'Unfold',
  83 + fold: 'Fold',
  84 + },
  85 + select: {
  86 + select: 'Select',
  87 + },
60 88 },
61 89 }
62 90 }
63 91 \ No newline at end of file
... ...