29 lines
762 B
TypeScript
29 lines
762 B
TypeScript
import { CommonTranslations } from '../types/common';
|
|
|
|
export const commonTranslations: CommonTranslations = {
|
|
welcome: "ようこそ",
|
|
logout: "ログアウト",
|
|
language: "言語",
|
|
english: "English",
|
|
khmer: "Khmer",
|
|
german: "Deutsch",
|
|
japanese: "日本語",
|
|
goodMorning: "おはようございます",
|
|
goodAfternoon: "こんにちは",
|
|
goodEvening: "こんばんは",
|
|
profile: "プロファイル",
|
|
settings: "設定",
|
|
documentation: "ドキュメント",
|
|
notifications: "通知",
|
|
close: "閉じる",
|
|
cancel: "キャンセル",
|
|
view: "表示",
|
|
edit: "編集",
|
|
delete: "削除",
|
|
status: "ステータス",
|
|
time: "時間",
|
|
title: "タイトル",
|
|
description: "説明",
|
|
success: "成功",
|
|
error: "エラー",
|
|
}; |