File size: 2,352 Bytes
48f8f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import type { TranslationStrings } from '../types';

const notif: TranslationStrings = {
  'notif.test.title': '[ν…ŒμŠ€νŠΈ] μ•Œλ¦Ό',
  'notif.test.simple.text': 'κ°„λ‹¨ν•œ ν…ŒμŠ€νŠΈ μ•Œλ¦Όμž…λ‹ˆλ‹€.',
  'notif.test.boolean.text': '이 ν…ŒμŠ€νŠΈ μ•Œλ¦Όμ„ μˆ˜λ½ν•˜μ‹œκ² μŠ΅λ‹ˆκΉŒ?',
  'notif.test.navigate.text': 'μ•„λž˜λ₯Ό ν΄λ¦­ν•˜μ—¬ λŒ€μ‹œλ³΄λ“œλ‘œ μ΄λ™ν•˜μ„Έμš”.',
  'notif.trip_invite.title': 'μ—¬ν–‰ μ΄ˆλŒ€',
  'notif.trip_invite.text': '{actor}이(κ°€) {trip}에 μ΄ˆλŒ€ν–ˆμŠ΅λ‹ˆλ‹€',
  'notif.booking_change.title': 'μ˜ˆμ•½ μ—…λ°μ΄νŠΈλ¨',
  'notif.booking_change.text': '{actor}이(κ°€) {trip}의 μ˜ˆμ•½μ„ μ—…λ°μ΄νŠΈν–ˆμŠ΅λ‹ˆλ‹€',
  'notif.trip_reminder.title': 'μ—¬ν–‰ λ¦¬λ§ˆμΈλ”',
  'notif.trip_reminder.text': 'μ—¬ν–‰ {trip}이(κ°€) κ³§ μ‹œμž‘λ©λ‹ˆλ‹€!',
  'notif.todo_due.title': 'ν•  일 마감',
  'notif.todo_due.text': '{trip}의 {todo}이(κ°€) {due}에 λ§ˆκ°λ©λ‹ˆλ‹€',
  'notif.vacay_invite.title': 'Vacay 퓨전 μ΄ˆλŒ€',
  'notif.vacay_invite.text': '{actor}이(κ°€) νœ΄κ°€ κ³„νš κ³΅μœ μ— μ΄ˆλŒ€ν–ˆμŠ΅λ‹ˆλ‹€',
  'notif.photos_shared.title': '사진 곡유됨',
  'notif.photos_shared.text':
    '{actor}이(κ°€) {trip}μ—μ„œ {count}μž₯의 사진을 κ³΅μœ ν–ˆμŠ΅λ‹ˆλ‹€',
  'notif.collab_message.title': 'μƒˆ λ©”μ‹œμ§€',
  'notif.collab_message.text': '{actor}이(κ°€) {trip}μ—μ„œ λ©”μ‹œμ§€λ₯Ό λ³΄λƒˆμŠ΅λ‹ˆλ‹€',
  'notif.packing_tagged.title': '짐 λͺ©λ‘ λ°°μ •',
  'notif.packing_tagged.text':
    '{actor}이(κ°€) {trip}의 {category}에 λ°°μ •ν–ˆμŠ΅λ‹ˆλ‹€',
  'notif.version_available.title': 'μƒˆ 버전 μ‚¬μš© κ°€λŠ₯',
  'notif.version_available.text': 'TREK {version}이(κ°€) μ‚¬μš© κ°€λŠ₯ν•©λ‹ˆλ‹€',
  'notif.action.view_trip': 'μ—¬ν–‰ 보기',
  'notif.action.view_collab': 'λ©”μ‹œμ§€ 보기',
  'notif.action.view_packing': '짐 λͺ©λ‘ 보기',
  'notif.action.view_photos': '사진 보기',
  'notif.action.view_vacay': 'Vacay 보기',
  'notif.action.view_admin': 'κ΄€λ¦¬μžλ‘œ 이동',
  'notif.action.view': '보기',
  'notif.action.accept': '수락',
  'notif.action.decline': '거절',
  'notif.generic.title': 'μ•Œλ¦Ό',
  'notif.generic.text': 'μƒˆ μ•Œλ¦Όμ΄ μžˆμŠ΅λ‹ˆλ‹€',
  'notif.dev.unknown_event.title': '[DEV] μ•Œ 수 μ—†λŠ” 이벀트',
  'notif.dev.unknown_event.text':
    '이벀트 μœ ν˜• "{event}"이(κ°€) EVENT_NOTIFICATION_CONFIG에 λ“±λ‘λ˜μ§€ μ•Šμ•˜μŠ΅λ‹ˆλ‹€',
};
export default notif;