Skip to content

Commit

Permalink
fix(editor): resolve untranslated label, fixed #13
Browse files Browse the repository at this point in the history
  • Loading branch information
mekery committed Jun 14, 2020
1 parent f65b5f3 commit f6fd5e7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/common/OBlockCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<section class="row col-12 o-card-toolbar" v-if="toolbar">
<div class="row col">
<div class="q-px-sm" v-if="fullScreen">
<q-btn icon="keyboard_arrow_left" label="返回" class="full-height" flat @click="onToggleScreen" />
<q-btn icon="keyboard_arrow_left" :label="$o.lang.label.back" class="full-height" flat @click="onToggleScreen" />
</div>
<div class="col">
<slot name="toolbar-left"></slot>
Expand Down
1 change: 1 addition & 0 deletions src/i18n/en-us/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export default {
settings: 'Settings',
remove: 'Remove',
help: 'Help',
back: 'Back',
},
table: {
insert: 'Insert Table',
Expand Down
1 change: 1 addition & 0 deletions src/i18n/pl/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export default {
settings: 'Settings',
remove: 'Remove',
help: 'Help',
back: 'Back',
},
table: {
insert: 'Wstaw tabelę',
Expand Down
1 change: 1 addition & 0 deletions src/i18n/zh-hans/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ export default {
settings: '设置',
remove: '删除',
help: '帮助',
back: '返回',
},
table: {
insert: '插入表格',
Expand Down

0 comments on commit f6fd5e7

Please sign in to comment.