Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
eee555 committed Jun 9, 2024
2 parents a538e2f + 92fdf0d commit 9a294bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
1 change: 1 addition & 0 deletions front_end/src/i18n/locales/dev.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export const dev = {
prop: {
bbbv: 'BV',
bbbv_s: 'BVs',
bvs: 'BVs',
cell0: '0',
cell1: '1',
cell2: '2',
Expand Down
8 changes: 4 additions & 4 deletions front_end/src/i18n/locales/zh-cn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ export const zhCn = {
e: '高级',
},
mode: {
standard: '标准',
noFlag: '盲扫',
noGuess: '无猜',
recursive: '递归'
std: '标准',
nf: '盲扫',
ng: '无猜',
dg: '递归'
},
prop: {
action: '操作',
Expand Down
2 changes: 1 addition & 1 deletion front_end/src/views/PlayerRecordView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const username = ref("");
// 个人纪录表格
const records = ref<Record[][]>([]);
const table_title = ['common.mode.standard', 'common.mode.noFlag', 'common.mode.noGuess', 'common.mode.recursive'];
const table_title = ['common.mode.std', 'common.mode.nf', 'common.mode.ng', 'common.mode.dg'];
const indexMethod = (index: number) => {
return ["", t.t('common.level.b'), t.t('common.level.i'), t.t('common.level.e')][index + 1]
Expand Down

0 comments on commit 9a294bb

Please sign in to comment.