Skip to content

Commit

Permalink
add i18n item
Browse files Browse the repository at this point in the history
  • Loading branch information
nzomkxia committed Feb 12, 2019
1 parent 40cc846 commit 87669fd
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 2 additions & 2 deletions dubbo-admin-ui/src/components/ServiceSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
color='primary'
:href='getHref(props.item.service, props.item.appName, props.item.group, props.item.version)'
>
Detail
{{ $t('detail') }}
</v-btn>
<v-menu
>
Expand All @@ -95,7 +95,7 @@
small
dark
>
More
{{ $t('more') }}
<v-icon>expand_more</v-icon>
</v-btn>
<v-list>
Expand Down
4 changes: 3 additions & 1 deletion dubbo-admin-ui/src/lang/en.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,7 @@ export default {
execute: 'EXECUTE',
result: 'Result: ',
success: 'SUCCESS',
fail: 'FAIL'
fail: 'FAIL',
detail: 'Detail',
more: 'More'
}
4 changes: 3 additions & 1 deletion dubbo-admin-ui/src/lang/zh.js
Original file line number Diff line number Diff line change
Expand Up @@ -128,5 +128,7 @@ export default {
execute: '执行',
result: '结果: ',
success: ' 成功',
fail: '失败'
fail: '失败',
detail: '详情',
more: '更多'
}

0 comments on commit 87669fd

Please sign in to comment.