mirror of
https://github.com/logto-io/logto.git
synced 2025-02-03 21:48:55 -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 = {
|
const translation = {
|
||||||
input: {
|
input: {
|
||||||
username: '사용자 이름',
|
username: '사용자 이름',
|
||||||
|
@ -68,7 +70,7 @@ const translation = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const koKR = Object.freeze({
|
const koKR: typeof en = Object.freeze({
|
||||||
translation,
|
translation,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import en from './en';
|
||||||
|
|
||||||
const translation = {
|
const translation = {
|
||||||
input: {
|
input: {
|
||||||
username: 'Kullanıcı Adı',
|
username: 'Kullanıcı Adı',
|
||||||
|
@ -69,8 +71,8 @@ const translation = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const en = Object.freeze({
|
const trTR: typeof en = Object.freeze({
|
||||||
translation,
|
translation,
|
||||||
});
|
});
|
||||||
|
|
||||||
export default en;
|
export default trTR;
|
||||||
|
|
Loading…
Add table
Reference in a new issue