0
Fork 0
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:
IceHe 2022-09-16 18:12:32 +08:00 committed by GitHub
parent 0ca0096d0d
commit 2f373db8e4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -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,
}); });

View file

@ -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;