mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31:46 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
21 lines
605 B
TypeScript
21 lines
605 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const nav: TranslationStrings = {
|
|
'nav.trip': '여행',
|
|
'nav.share': '공유',
|
|
'nav.settings': '설정',
|
|
'nav.admin': '관리자',
|
|
'nav.logout': '로그아웃',
|
|
'nav.lightMode': '라이트 모드',
|
|
'nav.darkMode': '다크 모드',
|
|
'nav.autoMode': '자동 모드',
|
|
'nav.administrator': '관리자',
|
|
'nav.myTrips': '내 여행',
|
|
'nav.profile': '프로필',
|
|
'nav.bottomSettings': '설정',
|
|
'nav.bottomAdmin': '관리자 설정',
|
|
'nav.bottomLogout': '로그아웃',
|
|
'nav.bottomAdminBadge': '관리자',
|
|
};
|
|
export default nav;
|