mirror of
https://github.com/logto-io/logto.git
synced 2025-01-20 21:32:31 -05:00
fix(phrases): phrases-ui typo and types (#1948)
This commit is contained in:
parent
0ca0096d0d
commit
2f373db8e4
2 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,5 @@
|
|||
import en from './en';
|
||||
|
||||
const translation = {
|
||||
input: {
|
||||
username: '사용자 이름',
|
||||
|
@ -68,7 +70,7 @@ const translation = {
|
|||
},
|
||||
};
|
||||
|
||||
const koKR = Object.freeze({
|
||||
const koKR: typeof en = Object.freeze({
|
||||
translation,
|
||||
});
|
||||
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
import en from './en';
|
||||
|
||||
const translation = {
|
||||
input: {
|
||||
username: 'Kullanıcı Adı',
|
||||
|
@ -69,8 +71,8 @@ const translation = {
|
|||
},
|
||||
};
|
||||
|
||||
const en = Object.freeze({
|
||||
const trTR: typeof en = Object.freeze({
|
||||
translation,
|
||||
});
|
||||
|
||||
export default en;
|
||||
export default trTR;
|
||||
|
|
Loading…
Add table
Reference in a new issue