7f1dfcdd42
- Update translation index to support Korean
`application/src/translation/index.ts`
- Update translation indexes
`application/src/translation/{de,en,ja,km,zhcn}/index.ts`
- Update dropdown menu item in dashboard header
`application/src/components/dashboard/Header.tsx`
33 lines
753 B
TypeScript
33 lines
753 B
TypeScript
|
|
import { CommonTranslations } from '../types/common';
|
|
|
|
export const commonTranslations: CommonTranslations = {
|
|
welcome: "欢迎",
|
|
logout: "注销",
|
|
language: "语言",
|
|
english: "Englisch",
|
|
khmer: "ភាសាខ្មែរ",
|
|
german: "Deutsch",
|
|
korean: "한국어",
|
|
japanese: "日本語",
|
|
simplifiedChinese: "简体中文",
|
|
goodMorning: "早上好",
|
|
goodAfternoon: "下午好",
|
|
goodEvening: "晚上好",
|
|
profile: "个人资料",
|
|
settings: "设置",
|
|
documentation: "文档",
|
|
notifications: "通知",
|
|
close: "关闭",
|
|
cancel: "取消",
|
|
view: "查看",
|
|
edit: "编辑",
|
|
delete: "删除",
|
|
status: "状态",
|
|
time: "时间",
|
|
title: "标题",
|
|
description: "描述",
|
|
success: "成功",
|
|
error: "错误",
|
|
};
|