Skip to content

Commit

Permalink
fix loc keys
Browse files Browse the repository at this point in the history
  • Loading branch information
userXinos committed Jan 14, 2024
1 parent 58300e7 commit cf3e437
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/MultiConfigGUI.vue
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function copyConfig(): void {
setTimeout(() => buttonCopy.value = { text: t('COPY'), color: 'yellow' }, 2000);
})
.catch((err) => {
buttonCopy.value = { text: t('Error'), color: 'red' };
buttonCopy.value = { text: t('TID_DLG_TITLE_ERROR'), color: 'red' };
alert(err.message);
console.error(err);
});
Expand Down
2 changes: 1 addition & 1 deletion src/pages/About.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</template>

<template #data>
<Link :text="$t('data')" :to="`${homepage}/tree/master/parser/raw`" />
<Link :text="$t('DATA')" :to="`${homepage}/tree/master/parser/raw`" />
</template>

<template #game_developer>
Expand Down

0 comments on commit cf3e437

Please sign in to comment.