refactor: Relocate `config` translation keys and types under the `commands` namespace.
This commit is contained in:
parent
4246eb90a5
commit
90064491d6
|
|
@ -220,6 +220,20 @@ export const en: TranslationSchema = {
|
||||||
INVITE: 'Invite',
|
INVITE: 'Invite',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
config: {
|
||||||
|
title: 'Feature Configuration',
|
||||||
|
noOptions: 'Please provide at least one option to configure.',
|
||||||
|
mimic: {
|
||||||
|
label: 'Mimic',
|
||||||
|
enabled: 'enabled',
|
||||||
|
disabled: 'disabled',
|
||||||
|
},
|
||||||
|
emoji: {
|
||||||
|
label: 'Big Emoji',
|
||||||
|
enabled: 'enabled',
|
||||||
|
disabled: 'disabled',
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// ── Modals ──────────────────────────────────────────────
|
// ── Modals ──────────────────────────────────────────────
|
||||||
|
|
@ -244,18 +258,4 @@ export const en: TranslationSchema = {
|
||||||
managing: 'Managing Temp Voice Channels',
|
managing: 'Managing Temp Voice Channels',
|
||||||
version: 'Kord v1.0.0',
|
version: 'Kord v1.0.0',
|
||||||
},
|
},
|
||||||
config: {
|
|
||||||
title: 'Feature Configuration',
|
|
||||||
noOptions: 'Please provide at least one option to configure.',
|
|
||||||
mimic: {
|
|
||||||
label: 'Mimic',
|
|
||||||
enabled: 'enabled',
|
|
||||||
disabled: 'disabled',
|
|
||||||
},
|
|
||||||
emoji: {
|
|
||||||
label: 'Big Emoji',
|
|
||||||
enabled: 'enabled',
|
|
||||||
disabled: 'disabled',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -220,6 +220,20 @@ export const ko: TranslationSchema = {
|
||||||
INVITE: '초대',
|
INVITE: '초대',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
config: {
|
||||||
|
title: '기능 설정 변경 결과',
|
||||||
|
noOptions: '변경할 옵션을 하나 이상 선택해주세요.',
|
||||||
|
mimic: {
|
||||||
|
label: '미믹(Mimic)',
|
||||||
|
enabled: '활성화',
|
||||||
|
disabled: '비활성화',
|
||||||
|
},
|
||||||
|
emoji: {
|
||||||
|
label: '이모지 확대(Big Emoji)',
|
||||||
|
enabled: '활성화',
|
||||||
|
disabled: '비활성화',
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// ── 모달 ────────────────────────────────────────────────
|
// ── 모달 ────────────────────────────────────────────────
|
||||||
|
|
@ -244,18 +258,4 @@ export const ko: TranslationSchema = {
|
||||||
managing: '임시 음성 채널 관리 중',
|
managing: '임시 음성 채널 관리 중',
|
||||||
version: 'Kord v1.0.0',
|
version: 'Kord v1.0.0',
|
||||||
},
|
},
|
||||||
config: {
|
|
||||||
title: '기능 설정 변경 결과',
|
|
||||||
noOptions: '변경할 옵션을 하나 이상 선택해주세요.',
|
|
||||||
mimic: {
|
|
||||||
label: '미믹(Mimic)',
|
|
||||||
enabled: '활성화',
|
|
||||||
disabled: '비활성화',
|
|
||||||
},
|
|
||||||
emoji: {
|
|
||||||
label: '이모지 확대(Big Emoji)',
|
|
||||||
enabled: '활성화',
|
|
||||||
disabled: '비활성화',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
|
||||||
|
|
@ -137,7 +137,6 @@ export interface TranslationSchema {
|
||||||
INVITE: string;
|
INVITE: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
|
||||||
config: {
|
config: {
|
||||||
title: string;
|
title: string;
|
||||||
noOptions: string;
|
noOptions: string;
|
||||||
|
|
@ -152,6 +151,7 @@ export interface TranslationSchema {
|
||||||
disabled: string;
|
disabled: string;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
|
|
||||||
// ── Modals ──
|
// ── Modals ──
|
||||||
modals: {
|
modals: {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue